diff --git a/README.md b/README.md index 86c822e..c71574a 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,9 @@ improvements. It supports lag-free 1080p at 60 FPS on moderate PCs and can handl It also supports capturing multiple cameras and alpha channel (transparency) in receiving applications that support it (like [OBS](https://obsproject.com/)). +This fork adds the following changes: +- Open GL support +- Screenshot abilities \[D3D11 and OpenGL\] ## Installation @@ -41,6 +44,16 @@ If you see a message about matching rendering and display resolutions, use the r the 'Game' tab in Unity to set a fixed resolution to match the capture output. +## Setup the CapturePlugin project + +You will now need the following libraries: +- [LibPNG](http://www.libpng.org/pub/png/libpng.html) +- [Glew](https://sourceforge.net/projects/glew/) + +Make sure that the VisualStudio or other IDE is correctly setup wit those libs. +In unity side, make sure that the glew32.dll file is present + + ## Setup in your Unity project Just copy the [UnityCapture asset directory from the included sample project](UnityCaptureSample/Assets/UnityCapture) @@ -136,6 +149,22 @@ You can check the Unity profiler for how much it impacts performance in your pro Otherwise it is recommended to leave scaling and mirroring disabled in the UnityCapture component. +## Fork changes + +The DLL can now stream OpenGL (tested Core). For OpenGLES we 'just' need to use glReadPixels instead of glGetTexImage. +It apprears that with OpenGL we don't need to care about the format. HDR, Gamma/Linear still work with GL_RGBA and GL_UNSIGNED_BYTE + +In order to make OpenGL compatibility works, the DLL methods are now called inside a coroutine by the `GL.IssuePluginEvent();` +because the calls were made outside glBegin()<---->glEnd() + +Added screenshot abilities to the DLL, in order to efficiently take screenshots. + +### Known issues + +- The double buffering system is not implemented in the OpenGL part. +- Unable to take DirectX screenshots with HDR on (16bits color depth) +- OpenGL 16 + Linear color space is darker than it should be. Some correction like gamma may be required + ## Todo - Saving of the output device configuration diff --git a/Source/UnityCapturePlugin.cpp b/Source/UnityCapturePlugin.cpp index a49ceef..2dd17a7 100644 --- a/Source/UnityCapturePlugin.cpp +++ b/Source/UnityCapturePlugin.cpp @@ -15,17 +15,19 @@ freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. + misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ +#include "png.h" #include "shared.inl" #include #include +#include #include "IUnityGraphics.h" enum @@ -38,21 +40,80 @@ enum RET_ERROR_TOOLARGERESOLUTION = 102, RET_ERROR_TEXTUREFORMAT = 103, RET_ERROR_READTEXTURE = 104, + RET_ERROR_READTEXTUREDATA = 105, + RET_ERROR_TEXTUREHANDLE = 106, }; #include +//#include +#include + +#pragma comment(lib, "glew32.lib") static int g_GraphicsDeviceType = -1; static ID3D11Device* g_D3D11GraphicsDevice = 0; +//static ID3D12Device* g_D3D12GraphicsDevice = 0; + struct UnityCaptureInstance { SharedImageMemory* Sender; + void* TextureHandle; int Width, Height; - DXGI_FORMAT Format; - bool UseDoubleBuffering, AlternativeBuffer; + SharedImageMemory::EFormat EFormat; + + void* cachedData_DIRECTSHOW = NULL; + void* cachedData_SCREENSHOT = NULL; + + // DirectX11 stuff + DXGI_FORMAT d3Format; + ID3D11Texture2D* d3dtex; + ID3D11DeviceContext* ctx; ID3D11Texture2D* Textures[2]; + + // DirectX12 stuff + // TODO + + bool UseDoubleBuffering, AlternativeBuffer, IsLinearColorSpace; + SharedImageMemory::EResizeMode ResizeMode; + SharedImageMemory::EMirrorMode MirrorMode; + int Timeout; + + // Screenshot stuff + const wchar_t* ss_fileName = NULL; + + int lastResult = RET_SUCCESS; + + ~UnityCaptureInstance() + { + if (Sender) + { + delete Sender; + Sender = NULL; + } + if (Textures[0]) + { + Textures[0]->Release(); + Textures[0] = NULL; + } + if (Textures[1]) + { + Textures[1]->Release(); + Textures[1] = NULL; + } + if (cachedData_DIRECTSHOW) + { + free(cachedData_DIRECTSHOW); /*alloc 1*/ + cachedData_DIRECTSHOW = NULL; /*alloc 1*/ + } + if (cachedData_SCREENSHOT) + { + free(cachedData_SCREENSHOT); /*alloc 2*/ + cachedData_SCREENSHOT = NULL; /*alloc 2*/ + } + } }; +static UnityCaptureInstance* g_captureInstance = NULL; extern "C" __declspec(dllexport) UnityCaptureInstance* CaptureCreateInstance(int CapNum) { @@ -65,91 +126,592 @@ extern "C" __declspec(dllexport) UnityCaptureInstance* CaptureCreateInstance(int extern "C" __declspec(dllexport) void CaptureDeleteInstance(UnityCaptureInstance* c) { if (!c) return; - delete c->Sender; - if (c->Textures[0]) c->Textures[0]->Release(); - if (c->Textures[1]) c->Textures[1]->Release(); delete c; } -extern "C" __declspec(dllexport) int CaptureSendTexture(UnityCaptureInstance* c, void* TextureNativePtr, int Timeout, bool UseDoubleBuffering, SharedImageMemory::EResizeMode ResizeMode, SharedImageMemory::EMirrorMode MirrorMode, bool IsLinearColorSpace) -{ - if (!c || !TextureNativePtr) return RET_ERROR_PARAMETER; - if (g_GraphicsDeviceType != kUnityGfxRendererD3D11) return RET_ERROR_UNSUPPORTEDGRAPHICSDEVICE; - if (!c->Sender->SendIsReady()) return RET_WARNING_CAPTUREINACTIVE; - - //Get the active D3D11 context - ID3D11DeviceContext* ctx = NULL; - g_D3D11GraphicsDevice->GetImmediateContext(&ctx); - if (!ctx) return RET_ERROR_UNSUPPORTEDGRAPHICSDEVICE; - - //Read the size and format info from the render texture - ID3D11Texture2D* d3dtex = (ID3D11Texture2D*)TextureNativePtr; - D3D11_TEXTURE2D_DESC desc = {0}; - d3dtex->GetDesc(&desc); - if (!desc.Width || !desc.Height) return RET_ERROR_READTEXTURE; - - if (c->Width != desc.Width || c->Height != desc.Height || c->Format != desc.Format || c->UseDoubleBuffering != UseDoubleBuffering) - { - //Allocate a Texture2D resource which holds the texture with CPU memory access - D3D11_TEXTURE2D_DESC textureDesc; - ZeroMemory(&textureDesc, sizeof(textureDesc)); - textureDesc.Width = desc.Width; - textureDesc.Height = desc.Height; - textureDesc.MipLevels = desc.MipLevels; - textureDesc.ArraySize = 1; - textureDesc.Format = desc.Format; - textureDesc.SampleDesc.Count = 1; - textureDesc.SampleDesc.Quality = 0; - textureDesc.Usage = D3D11_USAGE_STAGING; - textureDesc.CPUAccessFlags = D3D11_CPU_ACCESS_READ; - textureDesc.MiscFlags = 0; - if (c->Textures[0]) c->Textures[0]->Release(); - g_D3D11GraphicsDevice->CreateTexture2D(&textureDesc, NULL, &c->Textures[0]); - if (c->Textures[1]) c->Textures[1]->Release(); - if (UseDoubleBuffering) g_D3D11GraphicsDevice->CreateTexture2D(&textureDesc, NULL, &c->Textures[1]); - else c->Textures[1] = NULL; - c->Width = desc.Width; - c->Height = desc.Height; - c->Format = desc.Format; +extern "C" __declspec(dllexport) void SetTextureFromUnity(UnityCaptureInstance* c, void* textureHandle, int Timeout, bool UseDoubleBuffering, SharedImageMemory::EResizeMode ResizeMode, SharedImageMemory::EMirrorMode MirrorMode, bool IsLinearColorSpace, int width, int height) +{ + if (!g_captureInstance || c->Width != width || c->Height != height || c->UseDoubleBuffering != UseDoubleBuffering || c->TextureHandle != textureHandle) + { + c->Width = width; + c->Height = height; + c->TextureHandle = textureHandle; c->UseDoubleBuffering = UseDoubleBuffering; + c->IsLinearColorSpace = IsLinearColorSpace; + c->MirrorMode = MirrorMode; + c->ResizeMode = ResizeMode; + c->Timeout = Timeout; + if (g_GraphicsDeviceType == kUnityGfxRendererD3D11) + { + c->ctx = NULL; + g_D3D11GraphicsDevice->GetImmediateContext(&c->ctx); + if (!c->ctx) + { + c->lastResult = RET_ERROR_UNSUPPORTEDGRAPHICSDEVICE; + c->TextureHandle = NULL; // Safety + return; + } + + c->d3dtex = (ID3D11Texture2D*)textureHandle; + D3D11_TEXTURE2D_DESC desc = { 0 }; + c->d3dtex->GetDesc(&desc); + + //Allocate a Texture2D resource which holds the texture with CPU memory access + D3D11_TEXTURE2D_DESC textureDesc; + ZeroMemory(&textureDesc, sizeof(textureDesc)); + textureDesc.Width = desc.Width; + textureDesc.Height = desc.Height; + textureDesc.MipLevels = desc.MipLevels; + textureDesc.ArraySize = 1; + textureDesc.Format = desc.Format; + c->d3Format = desc.Format; + if (desc.Format == DXGI_FORMAT_R8G8B8A8_UNORM || desc.Format == DXGI_FORMAT_R8G8B8A8_UNORM_SRGB || desc.Format == DXGI_FORMAT_R8G8B8A8_UINT || desc.Format == DXGI_FORMAT_R8G8B8A8_TYPELESS) + { + c->EFormat = SharedImageMemory::FORMAT_UINT8; + } + else if (desc.Format == DXGI_FORMAT_R16G16B16A16_FLOAT || desc.Format == DXGI_FORMAT_R16G16B16A16_TYPELESS) + { + c->EFormat = (IsLinearColorSpace ? SharedImageMemory::FORMAT_FP16_LINEAR : SharedImageMemory::FORMAT_FP16_GAMMA); + } + textureDesc.SampleDesc.Count = 1; + textureDesc.SampleDesc.Quality = 0; + textureDesc.Usage = D3D11_USAGE_STAGING; + textureDesc.CPUAccessFlags = D3D11_CPU_ACCESS_READ; + textureDesc.MiscFlags = 0; + if (c->Textures[0]) + { + c->Textures[0]->Release(); + } + g_D3D11GraphicsDevice->CreateTexture2D(&textureDesc, NULL, &c->Textures[0]); + if (c->Textures[1]) + { + c->Textures[1]->Release(); + } + if (UseDoubleBuffering) + { + g_D3D11GraphicsDevice->CreateTexture2D(&textureDesc, NULL, &c->Textures[1]); + } + else + { + c->Textures[1] = NULL; + } + } + g_captureInstance = c; } +} - //Handle double buffer - if (c->UseDoubleBuffering) c->AlternativeBuffer ^= 1; - ID3D11Texture2D* WriteTexture = c->Textures[c->UseDoubleBuffering && c->AlternativeBuffer ? 1 : 0]; - ID3D11Texture2D* ReadTexture = c->Textures[c->UseDoubleBuffering && !c->AlternativeBuffer ? 1 : 0]; +extern "C" __declspec(dllexport) void PrepareScreenshot(UnityCaptureInstance* c, void* textureHandle, int Timeout, bool UseDoubleBuffering, SharedImageMemory::EResizeMode ResizeMode, SharedImageMemory::EMirrorMode MirrorMode, bool IsLinearColorSpace, int width, int height, const wchar_t* fileName) +{ + SetTextureFromUnity(c, textureHandle, Timeout, UseDoubleBuffering, ResizeMode, MirrorMode, IsLinearColorSpace, width, height); + if (g_captureInstance) + { + g_captureInstance->ss_fileName = fileName; + } +} + +extern "C" __declspec(dllexport) int GetLastResult() +{ + return g_captureInstance->lastResult; +} + +static bool isOpenGL() +{ + return g_GraphicsDeviceType == kUnityGfxRendererOpenGL || g_GraphicsDeviceType == kUnityGfxRendererOpenGLCore; +} + +static void Convert16To8_OpenGL(unsigned short* inputPtr, int height, int width, unsigned char* destPtr, int dataRowPitch) +{ + int destRowPitch = width * 8; + int index = height - 1; + int subIndex = 0; + for (int i = 0; i < height; i++) + { + unsigned short* row = (unsigned short*)inputPtr + i * dataRowPitch; + subIndex = 0; + for (int j = 0; j < dataRowPitch; j++) + { + destPtr[index * destRowPitch + subIndex] = (unsigned char)(row[j] >> 8 & 255); + subIndex++; + destPtr[index * destRowPitch + subIndex] = (unsigned char)(row[j] & 255); + subIndex++; + } + index--; + } +} + + +// This method will setup the sender +static bool PreRenderEvent() +{ + bool result = true; + + if (!g_captureInstance) + { + g_captureInstance->lastResult = RET_WARNING_CAPTUREINACTIVE; + result = false;; + } + if (result && g_GraphicsDeviceType == -1) + { + g_captureInstance->lastResult = RET_ERROR_UNSUPPORTEDGRAPHICSDEVICE; + result = false; + } + if (result && !g_captureInstance->TextureHandle) + { + g_captureInstance->lastResult = RET_ERROR_TEXTUREHANDLE; + result = false; + } + if (result && g_GraphicsDeviceType == kUnityGfxRendererD3D11) + { + if (!g_captureInstance->ctx || !g_captureInstance->d3dtex) + { + g_captureInstance->lastResult = RET_ERROR_PARAMETER; + result = false; + } + } + if (result && !g_captureInstance->Sender->SendIsReady()) + { + g_captureInstance->lastResult = RET_WARNING_CAPTUREINACTIVE; + result = false; + } + + return result; +} + +// Used for DirectX11 Rendering +static void UNITY_INTERFACE_API OnRenderEvent_D3D11(int eventID) +{ + if (!PreRenderEvent()) + { + return; + } - //Check texture format - SharedImageMemory::EFormat Format; - if (desc.Format == DXGI_FORMAT_R8G8B8A8_UNORM || desc.Format == DXGI_FORMAT_R8G8B8A8_UNORM_SRGB || desc.Format == DXGI_FORMAT_R8G8B8A8_UINT || desc.Format == DXGI_FORMAT_R8G8B8A8_TYPELESS) Format = SharedImageMemory::FORMAT_UINT8; - else if (desc.Format == DXGI_FORMAT_R16G16B16A16_FLOAT || desc.Format == DXGI_FORMAT_R16G16B16A16_TYPELESS) Format = (IsLinearColorSpace ? SharedImageMemory::FORMAT_FP16_LINEAR : SharedImageMemory::FORMAT_FP16_GAMMA); - else return RET_ERROR_TEXTUREFORMAT; + D3D11_TEXTURE2D_DESC desc = { 0 }; + g_captureInstance->d3dtex->GetDesc(&desc); + if (!desc.Width || !desc.Height) + { + g_captureInstance->lastResult = RET_ERROR_READTEXTURE; + return; + } + + //Handle double buffer + if (g_captureInstance->UseDoubleBuffering) + { + g_captureInstance->AlternativeBuffer ^= 1; + } + ID3D11Texture2D* WriteTexture = g_captureInstance->Textures[g_captureInstance->UseDoubleBuffering && g_captureInstance->AlternativeBuffer ? 1 : 0]; + ID3D11Texture2D* ReadTexture = g_captureInstance->Textures[g_captureInstance->UseDoubleBuffering && !g_captureInstance->AlternativeBuffer ? 1 : 0]; //Copy render texture to texture with CPU access and map the image data to RAM - ctx->CopyResource(WriteTexture, d3dtex); + g_captureInstance->ctx->CopyResource(WriteTexture, g_captureInstance->d3dtex); D3D11_MAPPED_SUBRESOURCE mapResource; - if (FAILED(ctx->Map(ReadTexture, 0, D3D11_MAP_READ, 0, &mapResource))) return RET_ERROR_READTEXTURE; + if (FAILED(g_captureInstance->ctx->Map(ReadTexture, 0, D3D11_MAP_READ, 0, &mapResource))) + { + g_captureInstance->lastResult = RET_ERROR_READTEXTURE; + return; + } + //memcpy(m_pSharedBuf->data, buffer, DataSize); //Push the captured data to the direct show filter - SharedImageMemory::ESendResult res = c->Sender->Send(desc.Width, desc.Height, mapResource.RowPitch / (Format == SharedImageMemory::FORMAT_UINT8 ? 4 : 8), mapResource.RowPitch * desc.Height, Format, ResizeMode, MirrorMode, Timeout, (const unsigned char*)mapResource.pData); + SharedImageMemory::ESendResult res = g_captureInstance->Sender->Send(desc.Width, desc.Height, mapResource.RowPitch / (g_captureInstance->EFormat == SharedImageMemory::FORMAT_UINT8 ? 4 : 8), mapResource.RowPitch * desc.Height, g_captureInstance->EFormat, g_captureInstance->ResizeMode, g_captureInstance->MirrorMode, g_captureInstance->Timeout, (const unsigned char*)mapResource.pData); + + g_captureInstance->ctx->Unmap(ReadTexture, 0); + + switch (res) + { + case SharedImageMemory::SENDRES_TOOLARGE: + g_captureInstance->lastResult = RET_ERROR_TOOLARGERESOLUTION; + case SharedImageMemory::SENDRES_WARN_FRAMESKIP: + g_captureInstance->lastResult = RET_WARNING_FRAMESKIP; + default: + g_captureInstance->lastResult = RET_SUCCESS; + } +} + +// TODO: I am unable to test on my PC, unity is crashing when switching to D3D12... Need to test on another PC/Upgrade Untiy +static void UNITY_INTERFACE_API OnRenderEvent_D3D12(int eventID) +{ + +} + +// Used for OpenGL rendering +static void UNITY_INTERFACE_API OnRenderEvent_OpenGL(int eventID) +{ + if (!PreRenderEvent()) // Setup sender and other checkups + { + return; + } + + // Gets the GLtex from the texture handle + GLuint gltex = (GLuint)g_captureInstance->TextureHandle; + int error = GL_NO_ERROR; + // Bind the texture to the GL_TEXTURE_2D + glBindTexture(GL_TEXTURE_2D, gltex); + error = glGetError(); + if (error != GL_NO_ERROR) + { + g_captureInstance->lastResult = RET_ERROR_READTEXTURE; + return; + } + + GLint format; + glGetTexLevelParameteriv(GL_TEXTURE_2D, 0, GL_TEXTURE_INTERNAL_FORMAT, &format); + error = glGetError(); + if (error != GL_NO_ERROR) + { + g_captureInstance->lastResult = RET_ERROR_TEXTUREFORMAT; + return; + } + + int rowPitch = g_captureInstance->Width * 4; + g_captureInstance->EFormat = SharedImageMemory::FORMAT_UINT8; + + // I do not know how to handle Linear/gamma 16bit images - ctx->Unmap(ReadTexture, 0); + // TODO : Check HDR, Add double buffering, Check Linear space, Check for the resize mode + /* HDR: + - HDR or not, it seems that GL_RGBA will works in any cases + COLOR SPACE: + - Gamma or Linear => RGBA still works + + I am unable to setup directshow to accept 16bit openGL... + */ + + // Gets the texture buffer for OpenGL ES, use glReadPixels + if (!g_captureInstance->cachedData_DIRECTSHOW) + { + g_captureInstance->cachedData_DIRECTSHOW = malloc(sizeof(unsigned char) * g_captureInstance->Height * rowPitch); /*alloc 1*/ + } + glGetTexImage(GL_TEXTURE_2D, 0, GL_RGBA, GL_UNSIGNED_BYTE, g_captureInstance->cachedData_DIRECTSHOW); + error = glGetError(); + if (error != GL_NO_ERROR) + { + g_captureInstance->lastResult = RET_ERROR_READTEXTUREDATA; + return; + } + + // Send the texture to the DirectShow device + SharedImageMemory::ESendResult res = g_captureInstance->Sender->Send(g_captureInstance->Width, g_captureInstance->Height, + g_captureInstance->Width, + rowPitch * g_captureInstance->Height, g_captureInstance->EFormat, g_captureInstance->ResizeMode, + g_captureInstance->MirrorMode, g_captureInstance->Timeout, (const unsigned char*)g_captureInstance->cachedData_DIRECTSHOW); switch (res) { - case SharedImageMemory::SENDRES_TOOLARGE: return RET_ERROR_TOOLARGERESOLUTION; - case SharedImageMemory::SENDRES_WARN_FRAMESKIP: return RET_WARNING_FRAMESKIP; + case SharedImageMemory::SENDRES_TOOLARGE: + g_captureInstance->lastResult = RET_ERROR_TOOLARGERESOLUTION; + case SharedImageMemory::SENDRES_WARN_FRAMESKIP: + g_captureInstance->lastResult = RET_WARNING_FRAMESKIP; + default: + g_captureInstance->lastResult = RET_SUCCESS; + } +} + +// Void rendering +static void UNITY_INTERFACE_API OnRenderEvent_Void(int eventID) +{ + g_captureInstance->lastResult = RET_ERROR_UNSUPPORTEDGRAPHICSDEVICE; +} + +extern "C" UnityRenderingEvent UNITY_INTERFACE_EXPORT UNITY_INTERFACE_API GetRenderEventFunc() +{ + if (g_GraphicsDeviceType == kUnityGfxRendererD3D11) + { + return OnRenderEvent_D3D11; + } + else if (g_GraphicsDeviceType == kUnityGfxRendererD3D12) + { + return OnRenderEvent_D3D12; + } + else if (g_GraphicsDeviceType == kUnityGfxRendererOpenGL || g_GraphicsDeviceType == kUnityGfxRendererOpenGLCore) + { + return OnRenderEvent_OpenGL; + } + return OnRenderEvent_Void; +} + + +// SCREENSHOT SECTION + + +static void WriteToPNG(void* data, SharedImageMemory::EFormat format, int dataRowPitch/*This is the row pitch gathered fro the original data type. This is mainly for D3D11*/) +{ + FILE *file; + _wfopen_s(&file, g_captureInstance->ss_fileName, L"wb"); + if (!file) + { + return; + } + + png_structp png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); + if (!png_ptr) + { + return; + } + + png_infop info_ptr = png_create_info_struct(png_ptr); + if (!info_ptr) + { + return; + } + + if (setjmp(png_jmpbuf(png_ptr))) + { + return; + } + + png_init_io(png_ptr, file); + if (setjmp(png_jmpbuf(png_ptr))) + { + return; + } + + int bit_depth = format == SharedImageMemory::FORMAT_UINT8 ? 8 : 16; + int transform = PNG_TRANSFORM_IDENTITY; + + + + png_set_IHDR(png_ptr, info_ptr, g_captureInstance->Width, g_captureInstance->Height, + bit_depth, PNG_COLOR_TYPE_RGBA, PNG_INTERLACE_NONE, + PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE); + + if (setjmp(png_jmpbuf(png_ptr))) + { + return; + } + png_init_io(png_ptr, file); + + unsigned char** row_pointers = NULL; + unsigned char* convertedData = NULL; + int numRows = g_captureInstance->Height; + + if (g_GraphicsDeviceType == kUnityGfxRendererD3D11) + { + int bpp = 32; + if (bit_depth == 16) + { + bpp = 64; // For 16bits textures, the PNG bpp is 64 + } + int rowBytes = (uint64_t(g_captureInstance->Width) * bpp + 7u) / 8u; // bytes per row + uint64_t numBytes = rowBytes * g_captureInstance->Height; // total byte count + + row_pointers = (unsigned char**)malloc(sizeof(unsigned char*) * numRows); /*alloc 3*/ + //unsigned char *sptr = (unsigned char*)data; + int msize = std::min(rowBytes, dataRowPitch); + + int index = numRows - 1; + + for (int i = 0; i < numRows; ++i) + { + row_pointers[index] = (unsigned char*)malloc(sizeof(unsigned char) * rowBytes); /*alloc 4*/ + memcpy_s(row_pointers[index], rowBytes, (unsigned char*)data + dataRowPitch * i, msize); + index--; + //sptr += dataRowPitch; + } + } + else + { + row_pointers = (unsigned char**)malloc(sizeof(unsigned char*) * numRows); /*alloc 3*/ + + if (bit_depth == 8) + { + int index = 0; + for (int i = numRows - 1; i >= 0; --i) + { + row_pointers[index] = (unsigned char *)data + i * dataRowPitch; + index++; + } + } + else + { + // We need to convert the unsigned short data into a correct unsigned char array + convertedData = (unsigned char*)malloc(sizeof(unsigned char) * g_captureInstance->Width * g_captureInstance->Height * 4 * 2); /*alloc 5*/ + Convert16To8_OpenGL((unsigned short*)data, g_captureInstance->Height, g_captureInstance->Width, convertedData, dataRowPitch); + + int chunkSize = g_captureInstance->Width * 8; + + for (int i = 0; i < g_captureInstance->Height; i++) + { + row_pointers[i] = convertedData + i * (g_captureInstance->Width * 8); + } + } + } + + png_set_rows(png_ptr, info_ptr, row_pointers); + png_write_png(png_ptr, info_ptr, transform, NULL); + + fclose(file); + + if (g_GraphicsDeviceType == kUnityGfxRendererD3D11) + { + for (int i = 0; i < 1; ++i) + { + free(row_pointers[i]); /*alloc 4*/ + row_pointers[i] = NULL; /*alloc 4*/ + } + } + + if (convertedData) + { + free(convertedData); /*alloc 5*/ + convertedData = NULL; /*alloc 5*/ + } + if (row_pointers) + { + free(row_pointers); /*alloc 3*/ + row_pointers = NULL; /*alloc 3*/ } - return RET_SUCCESS; + if (setjmp(png_jmpbuf(png_ptr))) + { + return; + } + +} + +static void UNITY_INTERFACE_API OnTakeScreenshotEvent_D3D11(int eventID) +{ + D3D11_TEXTURE2D_DESC desc = { 0 }; + g_captureInstance->d3dtex->GetDesc(&desc); + if (!desc.Width || !desc.Height) + { + g_captureInstance->lastResult = RET_ERROR_READTEXTURE; + return; + } + + ID3D11Texture2D* WriteTexture = g_captureInstance->Textures[0]; + ID3D11Texture2D* ReadTexture = g_captureInstance->Textures[0]; + + //Copy render texture to texture with CPU access and map the image data to RAM + g_captureInstance->ctx->CopyResource(WriteTexture, g_captureInstance->d3dtex); + D3D11_MAPPED_SUBRESOURCE mapResource; + if (FAILED(g_captureInstance->ctx->Map(ReadTexture, 0, D3D11_MAP_READ, 0, &mapResource))) + { + g_captureInstance->lastResult = RET_ERROR_READTEXTURE; + return; + } + WriteToPNG(mapResource.pData, g_captureInstance->EFormat, mapResource.RowPitch); + + g_captureInstance->ctx->Unmap(ReadTexture, 0); + + g_captureInstance->lastResult = RET_SUCCESS; +} + +/// Saves an OpenGL buffer to a png +/// Works well with 8bit depth [Gamma and Linear] +/// Have some issues with the 16bit depth with Linear mode (it's darker than it should be).. This needs investigations +static void UNITY_INTERFACE_API OnTakeScreenshotEvent_OpenGL(int eventID) +{ + GLuint gltex = (GLuint)(size_t)(g_captureInstance->TextureHandle); + int error = GL_NO_ERROR; + glBindTexture(GL_TEXTURE_2D, gltex); + error = glGetError(); + if (error != GL_NO_ERROR) + { + g_captureInstance->lastResult = RET_ERROR_READTEXTURE; + return; + } + + GLint format; + glGetTexLevelParameteriv(GL_TEXTURE_2D, 0, GL_TEXTURE_INTERNAL_FORMAT, &format); + error = glGetError(); + if (error != GL_NO_ERROR) + { + g_captureInstance->lastResult = RET_ERROR_TEXTUREFORMAT; + return; + } + + int rowPitch = g_captureInstance->Width * 4; + + if (format == GL_RGBA16F_EXT || format == GL_RGBA16 || format == GL_RGBA16F) + { + g_captureInstance->EFormat = SharedImageMemory::FORMAT_FP16_GAMMA; + if (!g_captureInstance->cachedData_SCREENSHOT) + { + g_captureInstance->cachedData_SCREENSHOT = malloc(sizeof(unsigned short) * rowPitch * g_captureInstance->Height * 2); /*alloc_2*/ + } + glGetTexImage(GL_TEXTURE_2D, 0, GL_RGBA, GL_UNSIGNED_SHORT, g_captureInstance->cachedData_SCREENSHOT); + error = glGetError(); + if (error != GL_NO_ERROR) + { + g_captureInstance->lastResult = RET_ERROR_READTEXTUREDATA; + return; + } + + WriteToPNG(g_captureInstance->cachedData_SCREENSHOT, g_captureInstance->EFormat, rowPitch); + + g_captureInstance->lastResult = RET_SUCCESS; + } + else + { + g_captureInstance->EFormat = SharedImageMemory::FORMAT_UINT8; + if (!g_captureInstance->cachedData_SCREENSHOT) + { + g_captureInstance->cachedData_SCREENSHOT = malloc(sizeof(unsigned char) * g_captureInstance->Height * rowPitch); /*alloc 2*/ + } + glGetTexImage(GL_TEXTURE_2D, 0, GL_RGBA, GL_UNSIGNED_BYTE, g_captureInstance->cachedData_SCREENSHOT); + error = glGetError(); + if (error != GL_NO_ERROR) + { + g_captureInstance->lastResult = RET_ERROR_READTEXTUREDATA; + return; + } + + // Save the file here + WriteToPNG(g_captureInstance->cachedData_SCREENSHOT, g_captureInstance->EFormat, rowPitch); + + g_captureInstance->lastResult = RET_SUCCESS; + } + +} + +static void UNITY_INTERFACE_API OnTakeScreenshotEvent_Void(int eventID) +{ + g_captureInstance->lastResult = RET_ERROR_UNSUPPORTEDGRAPHICSDEVICE; } +extern "C" UnityRenderingEvent UNITY_INTERFACE_EXPORT UNITY_INTERFACE_API GetTakeScreenshotEventFunc(int eventID) +{ + if (g_GraphicsDeviceType == kUnityGfxRendererD3D11) + { + return OnTakeScreenshotEvent_D3D11; + } + else if (g_GraphicsDeviceType == kUnityGfxRendererD3D12) + { + //return OnTakeScreenshotEvent_D3D12; + } + else if (g_GraphicsDeviceType == kUnityGfxRendererOpenGL || g_GraphicsDeviceType == kUnityGfxRendererOpenGLCore) + { + return OnTakeScreenshotEvent_OpenGL; + } + return OnTakeScreenshotEvent_Void; +} + + // If exported by a plugin, this function will be called when graphics device is created, destroyed, and before and after it is reset (ie, resolution changed). extern "C" void UNITY_INTERFACE_EXPORT UnitySetGraphicsDevice(void* device, int deviceType, int eventType) { if (eventType == kUnityGfxDeviceEventInitialize || eventType == kUnityGfxDeviceEventAfterReset) { - g_GraphicsDeviceType = deviceType; - if (deviceType == kUnityGfxRendererD3D11) g_D3D11GraphicsDevice = (ID3D11Device*)device; + if (deviceType == kUnityGfxRendererD3D11) + { + g_D3D11GraphicsDevice = (ID3D11Device*)device; + g_GraphicsDeviceType = deviceType; + } + else if (deviceType == kUnityGfxRendererOpenGLCore || deviceType == kUnityGfxRendererOpenGL) + { + g_GraphicsDeviceType = deviceType; + if (GLEW_OK != glewInit()) + { + // GLEW failed! + //exit(1); + } + } + else + { + g_GraphicsDeviceType = -1; + } + } + else + { + g_GraphicsDeviceType = -1; } - else g_GraphicsDeviceType = -1; } diff --git a/Source/UnityCapturePlugin.vcxproj b/Source/UnityCapturePlugin.vcxproj index 7bfc92c..d693960 100644 --- a/Source/UnityCapturePlugin.vcxproj +++ b/Source/UnityCapturePlugin.vcxproj @@ -22,6 +22,7 @@ UnityCapturePlugin UnityCapturePlugin {727D3AC5-27B5-4288-A475-7A471ECD71B8} + 10.0.17763.0 @@ -63,6 +64,8 @@ Disabled EnableFastChecks MultiThreadedDebugDLL + D:\Programmation\UnityCapture\Source\include + D:\Programmation\UnityCapture\Source\include;%(AdditionalIncludeDirectories) Win32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) @@ -78,13 +81,17 @@ false StreamingSIMDExtensions2 /Gw %(AdditionalOptions) + D:\Programmation\UnityCapture\Source\include + D:\Programmation\UnityCapture\Source\include;%(AdditionalIncludeDirectories) true true Windows false - opengl32.lib;%(AdditionalDependencies) + opengl32.lib;libpng16.lib;glew32.lib;zlib.lib;%(AdditionalDependencies) + D:\Programmation\UnityCapture\Source\lib\x64 + D:\Programmation\UnityCapture\Source\lib\x86;%(AdditionalLibraryDirectories) true @@ -92,6 +99,8 @@ UseLinkTimeCodeGeneration true false + D:\Programmation\UnityCapture\Source\lib\x64 + D:\Programmation\UnityCapture\Source\lib\x86;%(AdditionalLibraryDirectories) diff --git a/Source/include/eglew.h b/Source/include/eglew.h new file mode 100644 index 0000000..4670147 --- /dev/null +++ b/Source/include/eglew.h @@ -0,0 +1,2618 @@ +/* +** The OpenGL Extension Wrangler Library +** Copyright (C) 2008-2017, Nigel Stewart +** Copyright (C) 2002-2008, Milan Ikits +** Copyright (C) 2002-2008, Marcelo E. Magallon +** Copyright (C) 2002, Lev Povalahev +** All rights reserved. +** +** Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are met: +** +** * Redistributions of source code must retain the above copyright notice, +** this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright notice, +** this list of conditions and the following disclaimer in the documentation +** and/or other materials provided with the distribution. +** * The name of the author may be used to endorse or promote products +** derived from this software without specific prior written permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +** THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/* + * Mesa 3-D graphics library + * Version: 7.0 + * + * Copyright (C) 1999-2007 Brian Paul All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN + * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + +/* +** Copyright (c) 2007 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +#ifndef __eglew_h__ +#define __eglew_h__ +#define __EGLEW_H__ + +#ifdef __eglext_h_ +#error eglext.h included before eglew.h +#endif + +#if defined(__egl_h_) +#error egl.h included before eglew.h +#endif + +#define __eglext_h_ + +#define __egl_h_ + +#ifndef EGLAPIENTRY +#define EGLAPIENTRY +#endif +#ifndef EGLAPI +#define EGLAPI extern +#endif + +/* EGL Types */ +#include + +#include +#include + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +typedef int32_t EGLint; + +typedef unsigned int EGLBoolean; +typedef void *EGLDisplay; +typedef void *EGLConfig; +typedef void *EGLSurface; +typedef void *EGLContext; +typedef void (*__eglMustCastToProperFunctionPointerType)(void); + +typedef unsigned int EGLenum; +typedef void *EGLClientBuffer; + +typedef void *EGLSync; +typedef intptr_t EGLAttrib; +typedef khronos_utime_nanoseconds_t EGLTime; +typedef void *EGLImage; + +typedef void *EGLSyncKHR; +typedef intptr_t EGLAttribKHR; +typedef void *EGLLabelKHR; +typedef void *EGLObjectKHR; +typedef void (EGLAPIENTRY *EGLDEBUGPROCKHR)(EGLenum error,const char *command,EGLint messageType,EGLLabelKHR threadLabel,EGLLabelKHR objectLabel,const char* message); +typedef khronos_utime_nanoseconds_t EGLTimeKHR; +typedef void *EGLImageKHR; +typedef void *EGLStreamKHR; +typedef khronos_uint64_t EGLuint64KHR; +typedef int EGLNativeFileDescriptorKHR; +typedef khronos_ssize_t EGLsizeiANDROID; +typedef void (*EGLSetBlobFuncANDROID) (const void *key, EGLsizeiANDROID keySize, const void *value, EGLsizeiANDROID valueSize); +typedef EGLsizeiANDROID (*EGLGetBlobFuncANDROID) (const void *key, EGLsizeiANDROID keySize, void *value, EGLsizeiANDROID valueSize); +typedef void *EGLDeviceEXT; +typedef void *EGLOutputLayerEXT; +typedef void *EGLOutputPortEXT; +typedef void *EGLSyncNV; +typedef khronos_utime_nanoseconds_t EGLTimeNV; +typedef khronos_utime_nanoseconds_t EGLuint64NV; +typedef khronos_stime_nanoseconds_t EGLnsecsANDROID; + +struct EGLClientPixmapHI; + +#define EGL_DONT_CARE ((EGLint)-1) + +#define EGL_NO_CONTEXT ((EGLContext)0) +#define EGL_NO_DISPLAY ((EGLDisplay)0) +#define EGL_NO_IMAGE ((EGLImage)0) +#define EGL_NO_SURFACE ((EGLSurface)0) +#define EGL_NO_SYNC ((EGLSync)0) + +#define EGL_UNKNOWN ((EGLint)-1) + +#define EGL_DEFAULT_DISPLAY ((EGLNativeDisplayType)0) + +EGLAPI __eglMustCastToProperFunctionPointerType EGLAPIENTRY eglGetProcAddress (const char *procname); +/* ---------------------------- EGL_VERSION_1_0 ---------------------------- */ + +#ifndef EGL_VERSION_1_0 +#define EGL_VERSION_1_0 1 + +#define EGL_FALSE 0 +#define EGL_PBUFFER_BIT 0x0001 +#define EGL_TRUE 1 +#define EGL_PIXMAP_BIT 0x0002 +#define EGL_WINDOW_BIT 0x0004 +#define EGL_SUCCESS 0x3000 +#define EGL_NOT_INITIALIZED 0x3001 +#define EGL_BAD_ACCESS 0x3002 +#define EGL_BAD_ALLOC 0x3003 +#define EGL_BAD_ATTRIBUTE 0x3004 +#define EGL_BAD_CONFIG 0x3005 +#define EGL_BAD_CONTEXT 0x3006 +#define EGL_BAD_CURRENT_SURFACE 0x3007 +#define EGL_BAD_DISPLAY 0x3008 +#define EGL_BAD_MATCH 0x3009 +#define EGL_BAD_NATIVE_PIXMAP 0x300A +#define EGL_BAD_NATIVE_WINDOW 0x300B +#define EGL_BAD_PARAMETER 0x300C +#define EGL_BAD_SURFACE 0x300D +#define EGL_BUFFER_SIZE 0x3020 +#define EGL_ALPHA_SIZE 0x3021 +#define EGL_BLUE_SIZE 0x3022 +#define EGL_GREEN_SIZE 0x3023 +#define EGL_RED_SIZE 0x3024 +#define EGL_DEPTH_SIZE 0x3025 +#define EGL_STENCIL_SIZE 0x3026 +#define EGL_CONFIG_CAVEAT 0x3027 +#define EGL_CONFIG_ID 0x3028 +#define EGL_LEVEL 0x3029 +#define EGL_MAX_PBUFFER_HEIGHT 0x302A +#define EGL_MAX_PBUFFER_PIXELS 0x302B +#define EGL_MAX_PBUFFER_WIDTH 0x302C +#define EGL_NATIVE_RENDERABLE 0x302D +#define EGL_NATIVE_VISUAL_ID 0x302E +#define EGL_NATIVE_VISUAL_TYPE 0x302F +#define EGL_SAMPLES 0x3031 +#define EGL_SAMPLE_BUFFERS 0x3032 +#define EGL_SURFACE_TYPE 0x3033 +#define EGL_TRANSPARENT_TYPE 0x3034 +#define EGL_TRANSPARENT_BLUE_VALUE 0x3035 +#define EGL_TRANSPARENT_GREEN_VALUE 0x3036 +#define EGL_TRANSPARENT_RED_VALUE 0x3037 +#define EGL_NONE 0x3038 +#define EGL_SLOW_CONFIG 0x3050 +#define EGL_NON_CONFORMANT_CONFIG 0x3051 +#define EGL_TRANSPARENT_RGB 0x3052 +#define EGL_VENDOR 0x3053 +#define EGL_VERSION 0x3054 +#define EGL_EXTENSIONS 0x3055 +#define EGL_HEIGHT 0x3056 +#define EGL_WIDTH 0x3057 +#define EGL_LARGEST_PBUFFER 0x3058 +#define EGL_DRAW 0x3059 +#define EGL_READ 0x305A +#define EGL_CORE_NATIVE_ENGINE 0x305B + +typedef EGLBoolean ( * PFNEGLCHOOSECONFIGPROC) (EGLDisplay dpy, const EGLint * attrib_list, EGLConfig * configs, EGLint config_size, EGLint * num_config); +typedef EGLBoolean ( * PFNEGLCOPYBUFFERSPROC) (EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target); +typedef EGLContext ( * PFNEGLCREATECONTEXTPROC) (EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint * attrib_list); +typedef EGLSurface ( * PFNEGLCREATEPBUFFERSURFACEPROC) (EGLDisplay dpy, EGLConfig config, const EGLint * attrib_list); +typedef EGLSurface ( * PFNEGLCREATEPIXMAPSURFACEPROC) (EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint * attrib_list); +typedef EGLSurface ( * PFNEGLCREATEWINDOWSURFACEPROC) (EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint * attrib_list); +typedef EGLBoolean ( * PFNEGLDESTROYCONTEXTPROC) (EGLDisplay dpy, EGLContext ctx); +typedef EGLBoolean ( * PFNEGLDESTROYSURFACEPROC) (EGLDisplay dpy, EGLSurface surface); +typedef EGLBoolean ( * PFNEGLGETCONFIGATTRIBPROC) (EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint * value); +typedef EGLBoolean ( * PFNEGLGETCONFIGSPROC) (EGLDisplay dpy, EGLConfig * configs, EGLint config_size, EGLint * num_config); +typedef EGLDisplay ( * PFNEGLGETCURRENTDISPLAYPROC) ( void ); +typedef EGLSurface ( * PFNEGLGETCURRENTSURFACEPROC) (EGLint readdraw); +typedef EGLDisplay ( * PFNEGLGETDISPLAYPROC) (EGLNativeDisplayType display_id); +typedef EGLint ( * PFNEGLGETERRORPROC) ( void ); +typedef EGLBoolean ( * PFNEGLINITIALIZEPROC) (EGLDisplay dpy, EGLint * major, EGLint * minor); +typedef EGLBoolean ( * PFNEGLMAKECURRENTPROC) (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx); +typedef EGLBoolean ( * PFNEGLQUERYCONTEXTPROC) (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint * value); +typedef const char * ( * PFNEGLQUERYSTRINGPROC) (EGLDisplay dpy, EGLint name); +typedef EGLBoolean ( * PFNEGLQUERYSURFACEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint * value); +typedef EGLBoolean ( * PFNEGLSWAPBUFFERSPROC) (EGLDisplay dpy, EGLSurface surface); +typedef EGLBoolean ( * PFNEGLTERMINATEPROC) (EGLDisplay dpy); +typedef EGLBoolean ( * PFNEGLWAITGLPROC) ( void ); +typedef EGLBoolean ( * PFNEGLWAITNATIVEPROC) (EGLint engine); + +#define eglChooseConfig EGLEW_GET_FUN(__eglewChooseConfig) +#define eglCopyBuffers EGLEW_GET_FUN(__eglewCopyBuffers) +#define eglCreateContext EGLEW_GET_FUN(__eglewCreateContext) +#define eglCreatePbufferSurface EGLEW_GET_FUN(__eglewCreatePbufferSurface) +#define eglCreatePixmapSurface EGLEW_GET_FUN(__eglewCreatePixmapSurface) +#define eglCreateWindowSurface EGLEW_GET_FUN(__eglewCreateWindowSurface) +#define eglDestroyContext EGLEW_GET_FUN(__eglewDestroyContext) +#define eglDestroySurface EGLEW_GET_FUN(__eglewDestroySurface) +#define eglGetConfigAttrib EGLEW_GET_FUN(__eglewGetConfigAttrib) +#define eglGetConfigs EGLEW_GET_FUN(__eglewGetConfigs) +#define eglGetCurrentDisplay EGLEW_GET_FUN(__eglewGetCurrentDisplay) +#define eglGetCurrentSurface EGLEW_GET_FUN(__eglewGetCurrentSurface) +#define eglGetDisplay EGLEW_GET_FUN(__eglewGetDisplay) +#define eglGetError EGLEW_GET_FUN(__eglewGetError) +#define eglInitialize EGLEW_GET_FUN(__eglewInitialize) +#define eglMakeCurrent EGLEW_GET_FUN(__eglewMakeCurrent) +#define eglQueryContext EGLEW_GET_FUN(__eglewQueryContext) +#define eglQueryString EGLEW_GET_FUN(__eglewQueryString) +#define eglQuerySurface EGLEW_GET_FUN(__eglewQuerySurface) +#define eglSwapBuffers EGLEW_GET_FUN(__eglewSwapBuffers) +#define eglTerminate EGLEW_GET_FUN(__eglewTerminate) +#define eglWaitGL EGLEW_GET_FUN(__eglewWaitGL) +#define eglWaitNative EGLEW_GET_FUN(__eglewWaitNative) + +#define EGLEW_VERSION_1_0 EGLEW_GET_VAR(__EGLEW_VERSION_1_0) + +#endif /* EGL_VERSION_1_0 */ + +/* ---------------------------- EGL_VERSION_1_1 ---------------------------- */ + +#ifndef EGL_VERSION_1_1 +#define EGL_VERSION_1_1 1 + +#define EGL_CONTEXT_LOST 0x300E +#define EGL_BIND_TO_TEXTURE_RGB 0x3039 +#define EGL_BIND_TO_TEXTURE_RGBA 0x303A +#define EGL_MIN_SWAP_INTERVAL 0x303B +#define EGL_MAX_SWAP_INTERVAL 0x303C +#define EGL_NO_TEXTURE 0x305C +#define EGL_TEXTURE_RGB 0x305D +#define EGL_TEXTURE_RGBA 0x305E +#define EGL_TEXTURE_2D 0x305F +#define EGL_TEXTURE_FORMAT 0x3080 +#define EGL_TEXTURE_TARGET 0x3081 +#define EGL_MIPMAP_TEXTURE 0x3082 +#define EGL_MIPMAP_LEVEL 0x3083 +#define EGL_BACK_BUFFER 0x3084 + +typedef EGLBoolean ( * PFNEGLBINDTEXIMAGEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint buffer); +typedef EGLBoolean ( * PFNEGLRELEASETEXIMAGEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint buffer); +typedef EGLBoolean ( * PFNEGLSURFACEATTRIBPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value); +typedef EGLBoolean ( * PFNEGLSWAPINTERVALPROC) (EGLDisplay dpy, EGLint interval); + +#define eglBindTexImage EGLEW_GET_FUN(__eglewBindTexImage) +#define eglReleaseTexImage EGLEW_GET_FUN(__eglewReleaseTexImage) +#define eglSurfaceAttrib EGLEW_GET_FUN(__eglewSurfaceAttrib) +#define eglSwapInterval EGLEW_GET_FUN(__eglewSwapInterval) + +#define EGLEW_VERSION_1_1 EGLEW_GET_VAR(__EGLEW_VERSION_1_1) + +#endif /* EGL_VERSION_1_1 */ + +/* ---------------------------- EGL_VERSION_1_2 ---------------------------- */ + +#ifndef EGL_VERSION_1_2 +#define EGL_VERSION_1_2 1 + +#define EGL_OPENGL_ES_BIT 0x0001 +#define EGL_OPENVG_BIT 0x0002 +#define EGL_LUMINANCE_SIZE 0x303D +#define EGL_ALPHA_MASK_SIZE 0x303E +#define EGL_COLOR_BUFFER_TYPE 0x303F +#define EGL_RENDERABLE_TYPE 0x3040 +#define EGL_SINGLE_BUFFER 0x3085 +#define EGL_RENDER_BUFFER 0x3086 +#define EGL_COLORSPACE 0x3087 +#define EGL_ALPHA_FORMAT 0x3088 +#define EGL_COLORSPACE_LINEAR 0x308A +#define EGL_ALPHA_FORMAT_NONPRE 0x308B +#define EGL_ALPHA_FORMAT_PRE 0x308C +#define EGL_CLIENT_APIS 0x308D +#define EGL_RGB_BUFFER 0x308E +#define EGL_LUMINANCE_BUFFER 0x308F +#define EGL_HORIZONTAL_RESOLUTION 0x3090 +#define EGL_VERTICAL_RESOLUTION 0x3091 +#define EGL_PIXEL_ASPECT_RATIO 0x3092 +#define EGL_SWAP_BEHAVIOR 0x3093 +#define EGL_BUFFER_PRESERVED 0x3094 +#define EGL_BUFFER_DESTROYED 0x3095 +#define EGL_OPENVG_IMAGE 0x3096 +#define EGL_CONTEXT_CLIENT_TYPE 0x3097 +#define EGL_OPENGL_ES_API 0x30A0 +#define EGL_OPENVG_API 0x30A1 +#define EGL_DISPLAY_SCALING 10000 + +typedef EGLBoolean ( * PFNEGLBINDAPIPROC) (EGLenum api); +typedef EGLSurface ( * PFNEGLCREATEPBUFFERFROMCLIENTBUFFERPROC) (EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint * attrib_list); +typedef EGLenum ( * PFNEGLQUERYAPIPROC) ( void ); +typedef EGLBoolean ( * PFNEGLRELEASETHREADPROC) ( void ); +typedef EGLBoolean ( * PFNEGLWAITCLIENTPROC) ( void ); + +#define eglBindAPI EGLEW_GET_FUN(__eglewBindAPI) +#define eglCreatePbufferFromClientBuffer EGLEW_GET_FUN(__eglewCreatePbufferFromClientBuffer) +#define eglQueryAPI EGLEW_GET_FUN(__eglewQueryAPI) +#define eglReleaseThread EGLEW_GET_FUN(__eglewReleaseThread) +#define eglWaitClient EGLEW_GET_FUN(__eglewWaitClient) + +#define EGLEW_VERSION_1_2 EGLEW_GET_VAR(__EGLEW_VERSION_1_2) + +#endif /* EGL_VERSION_1_2 */ + +/* ---------------------------- EGL_VERSION_1_3 ---------------------------- */ + +#ifndef EGL_VERSION_1_3 +#define EGL_VERSION_1_3 1 + +#define EGL_OPENGL_ES2_BIT 0x0004 +#define EGL_VG_COLORSPACE_LINEAR_BIT 0x0020 +#define EGL_VG_ALPHA_FORMAT_PRE_BIT 0x0040 +#define EGL_MATCH_NATIVE_PIXMAP 0x3041 +#define EGL_CONFORMANT 0x3042 +#define EGL_VG_COLORSPACE 0x3087 +#define EGL_VG_ALPHA_FORMAT 0x3088 +#define EGL_VG_COLORSPACE_LINEAR 0x308A +#define EGL_VG_ALPHA_FORMAT_NONPRE 0x308B +#define EGL_VG_ALPHA_FORMAT_PRE 0x308C +#define EGL_CONTEXT_CLIENT_VERSION 0x3098 + +#define EGLEW_VERSION_1_3 EGLEW_GET_VAR(__EGLEW_VERSION_1_3) + +#endif /* EGL_VERSION_1_3 */ + +/* ---------------------------- EGL_VERSION_1_4 ---------------------------- */ + +#ifndef EGL_VERSION_1_4 +#define EGL_VERSION_1_4 1 + +#define EGL_OPENGL_BIT 0x0008 +#define EGL_MULTISAMPLE_RESOLVE_BOX_BIT 0x0200 +#define EGL_SWAP_BEHAVIOR_PRESERVED_BIT 0x0400 +#define EGL_MULTISAMPLE_RESOLVE 0x3099 +#define EGL_MULTISAMPLE_RESOLVE_DEFAULT 0x309A +#define EGL_MULTISAMPLE_RESOLVE_BOX 0x309B +#define EGL_OPENGL_API 0x30A2 + +typedef EGLContext ( * PFNEGLGETCURRENTCONTEXTPROC) ( void ); + +#define eglGetCurrentContext EGLEW_GET_FUN(__eglewGetCurrentContext) + +#define EGLEW_VERSION_1_4 EGLEW_GET_VAR(__EGLEW_VERSION_1_4) + +#endif /* EGL_VERSION_1_4 */ + +/* ---------------------------- EGL_VERSION_1_5 ---------------------------- */ + +#ifndef EGL_VERSION_1_5 +#define EGL_VERSION_1_5 1 + +#define EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT 0x00000001 +#define EGL_SYNC_FLUSH_COMMANDS_BIT 0x0001 +#define EGL_CONTEXT_OPENGL_COMPATIBILITY_PROFILE_BIT 0x00000002 +#define EGL_OPENGL_ES3_BIT 0x00000040 +#define EGL_GL_COLORSPACE_SRGB 0x3089 +#define EGL_GL_COLORSPACE_LINEAR 0x308A +#define EGL_CONTEXT_MAJOR_VERSION 0x3098 +#define EGL_CL_EVENT_HANDLE 0x309C +#define EGL_GL_COLORSPACE 0x309D +#define EGL_GL_TEXTURE_2D 0x30B1 +#define EGL_GL_TEXTURE_3D 0x30B2 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x30B3 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x30B4 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x30B5 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x30B6 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x30B7 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x30B8 +#define EGL_GL_RENDERBUFFER 0x30B9 +#define EGL_GL_TEXTURE_LEVEL 0x30BC +#define EGL_GL_TEXTURE_ZOFFSET 0x30BD +#define EGL_IMAGE_PRESERVED 0x30D2 +#define EGL_SYNC_PRIOR_COMMANDS_COMPLETE 0x30F0 +#define EGL_SYNC_STATUS 0x30F1 +#define EGL_SIGNALED 0x30F2 +#define EGL_UNSIGNALED 0x30F3 +#define EGL_TIMEOUT_EXPIRED 0x30F5 +#define EGL_CONDITION_SATISFIED 0x30F6 +#define EGL_SYNC_TYPE 0x30F7 +#define EGL_SYNC_CONDITION 0x30F8 +#define EGL_SYNC_FENCE 0x30F9 +#define EGL_CONTEXT_MINOR_VERSION 0x30FB +#define EGL_CONTEXT_OPENGL_PROFILE_MASK 0x30FD +#define EGL_SYNC_CL_EVENT 0x30FE +#define EGL_SYNC_CL_EVENT_COMPLETE 0x30FF +#define EGL_CONTEXT_OPENGL_DEBUG 0x31B0 +#define EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE 0x31B1 +#define EGL_CONTEXT_OPENGL_ROBUST_ACCESS 0x31B2 +#define EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY 0x31BD +#define EGL_NO_RESET_NOTIFICATION 0x31BE +#define EGL_LOSE_CONTEXT_ON_RESET 0x31BF +#define EGL_FOREVER 0xFFFFFFFFFFFFFFFF + +typedef EGLint ( * PFNEGLCLIENTWAITSYNCPROC) (EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTime timeout); +typedef EGLImage ( * PFNEGLCREATEIMAGEPROC) (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib * attrib_list); +typedef EGLSurface ( * PFNEGLCREATEPLATFORMPIXMAPSURFACEPROC) (EGLDisplay dpy, EGLConfig config, void * native_pixmap, const EGLAttrib * attrib_list); +typedef EGLSurface ( * PFNEGLCREATEPLATFORMWINDOWSURFACEPROC) (EGLDisplay dpy, EGLConfig config, void * native_window, const EGLAttrib * attrib_list); +typedef EGLSync ( * PFNEGLCREATESYNCPROC) (EGLDisplay dpy, EGLenum type, const EGLAttrib * attrib_list); +typedef EGLBoolean ( * PFNEGLDESTROYIMAGEPROC) (EGLDisplay dpy, EGLImage image); +typedef EGLBoolean ( * PFNEGLDESTROYSYNCPROC) (EGLDisplay dpy, EGLSync sync); +typedef EGLDisplay ( * PFNEGLGETPLATFORMDISPLAYPROC) (EGLenum platform, void * native_display, const EGLAttrib * attrib_list); +typedef EGLBoolean ( * PFNEGLGETSYNCATTRIBPROC) (EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib * value); +typedef EGLBoolean ( * PFNEGLWAITSYNCPROC) (EGLDisplay dpy, EGLSync sync, EGLint flags); + +#define eglClientWaitSync EGLEW_GET_FUN(__eglewClientWaitSync) +#define eglCreateImage EGLEW_GET_FUN(__eglewCreateImage) +#define eglCreatePlatformPixmapSurface EGLEW_GET_FUN(__eglewCreatePlatformPixmapSurface) +#define eglCreatePlatformWindowSurface EGLEW_GET_FUN(__eglewCreatePlatformWindowSurface) +#define eglCreateSync EGLEW_GET_FUN(__eglewCreateSync) +#define eglDestroyImage EGLEW_GET_FUN(__eglewDestroyImage) +#define eglDestroySync EGLEW_GET_FUN(__eglewDestroySync) +#define eglGetPlatformDisplay EGLEW_GET_FUN(__eglewGetPlatformDisplay) +#define eglGetSyncAttrib EGLEW_GET_FUN(__eglewGetSyncAttrib) +#define eglWaitSync EGLEW_GET_FUN(__eglewWaitSync) + +#define EGLEW_VERSION_1_5 EGLEW_GET_VAR(__EGLEW_VERSION_1_5) + +#endif /* EGL_VERSION_1_5 */ + +/* ------------------------- EGL_ANDROID_blob_cache ------------------------ */ + +#ifndef EGL_ANDROID_blob_cache +#define EGL_ANDROID_blob_cache 1 + +typedef void ( * PFNEGLSETBLOBCACHEFUNCSANDROIDPROC) (EGLDisplay dpy, EGLSetBlobFuncANDROID set, EGLGetBlobFuncANDROID get); + +#define eglSetBlobCacheFuncsANDROID EGLEW_GET_FUN(__eglewSetBlobCacheFuncsANDROID) + +#define EGLEW_ANDROID_blob_cache EGLEW_GET_VAR(__EGLEW_ANDROID_blob_cache) + +#endif /* EGL_ANDROID_blob_cache */ + +/* ---------------- EGL_ANDROID_create_native_client_buffer ---------------- */ + +#ifndef EGL_ANDROID_create_native_client_buffer +#define EGL_ANDROID_create_native_client_buffer 1 + +#define EGL_NATIVE_BUFFER_USAGE_PROTECTED_BIT_ANDROID 0x00000001 +#define EGL_NATIVE_BUFFER_USAGE_RENDERBUFFER_BIT_ANDROID 0x00000002 +#define EGL_NATIVE_BUFFER_USAGE_TEXTURE_BIT_ANDROID 0x00000004 +#define EGL_NATIVE_BUFFER_USAGE_ANDROID 0x3143 + +typedef EGLClientBuffer ( * PFNEGLCREATENATIVECLIENTBUFFERANDROIDPROC) (const EGLint * attrib_list); + +#define eglCreateNativeClientBufferANDROID EGLEW_GET_FUN(__eglewCreateNativeClientBufferANDROID) + +#define EGLEW_ANDROID_create_native_client_buffer EGLEW_GET_VAR(__EGLEW_ANDROID_create_native_client_buffer) + +#endif /* EGL_ANDROID_create_native_client_buffer */ + +/* --------------------- EGL_ANDROID_framebuffer_target -------------------- */ + +#ifndef EGL_ANDROID_framebuffer_target +#define EGL_ANDROID_framebuffer_target 1 + +#define EGL_FRAMEBUFFER_TARGET_ANDROID 0x3147 + +#define EGLEW_ANDROID_framebuffer_target EGLEW_GET_VAR(__EGLEW_ANDROID_framebuffer_target) + +#endif /* EGL_ANDROID_framebuffer_target */ + +/* ----------------- EGL_ANDROID_front_buffer_auto_refresh ----------------- */ + +#ifndef EGL_ANDROID_front_buffer_auto_refresh +#define EGL_ANDROID_front_buffer_auto_refresh 1 + +#define EGL_FRONT_BUFFER_AUTO_REFRESH_ANDROID 0x314C + +#define EGLEW_ANDROID_front_buffer_auto_refresh EGLEW_GET_VAR(__EGLEW_ANDROID_front_buffer_auto_refresh) + +#endif /* EGL_ANDROID_front_buffer_auto_refresh */ + +/* -------------------- EGL_ANDROID_image_native_buffer -------------------- */ + +#ifndef EGL_ANDROID_image_native_buffer +#define EGL_ANDROID_image_native_buffer 1 + +#define EGL_NATIVE_BUFFER_ANDROID 0x3140 + +#define EGLEW_ANDROID_image_native_buffer EGLEW_GET_VAR(__EGLEW_ANDROID_image_native_buffer) + +#endif /* EGL_ANDROID_image_native_buffer */ + +/* --------------------- EGL_ANDROID_native_fence_sync --------------------- */ + +#ifndef EGL_ANDROID_native_fence_sync +#define EGL_ANDROID_native_fence_sync 1 + +#define EGL_SYNC_NATIVE_FENCE_ANDROID 0x3144 +#define EGL_SYNC_NATIVE_FENCE_FD_ANDROID 0x3145 +#define EGL_SYNC_NATIVE_FENCE_SIGNALED_ANDROID 0x3146 + +typedef EGLint ( * PFNEGLDUPNATIVEFENCEFDANDROIDPROC) (EGLDisplay dpy, EGLSyncKHR sync); + +#define eglDupNativeFenceFDANDROID EGLEW_GET_FUN(__eglewDupNativeFenceFDANDROID) + +#define EGLEW_ANDROID_native_fence_sync EGLEW_GET_VAR(__EGLEW_ANDROID_native_fence_sync) + +#endif /* EGL_ANDROID_native_fence_sync */ + +/* --------------------- EGL_ANDROID_presentation_time --------------------- */ + +#ifndef EGL_ANDROID_presentation_time +#define EGL_ANDROID_presentation_time 1 + +typedef EGLBoolean ( * PFNEGLPRESENTATIONTIMEANDROIDPROC) (EGLDisplay dpy, EGLSurface surface, EGLnsecsANDROID time); + +#define eglPresentationTimeANDROID EGLEW_GET_FUN(__eglewPresentationTimeANDROID) + +#define EGLEW_ANDROID_presentation_time EGLEW_GET_VAR(__EGLEW_ANDROID_presentation_time) + +#endif /* EGL_ANDROID_presentation_time */ + +/* ------------------------- EGL_ANDROID_recordable ------------------------ */ + +#ifndef EGL_ANDROID_recordable +#define EGL_ANDROID_recordable 1 + +#define EGL_RECORDABLE_ANDROID 0x3142 + +#define EGLEW_ANDROID_recordable EGLEW_GET_VAR(__EGLEW_ANDROID_recordable) + +#endif /* EGL_ANDROID_recordable */ + +/* ---------------- EGL_ANGLE_d3d_share_handle_client_buffer --------------- */ + +#ifndef EGL_ANGLE_d3d_share_handle_client_buffer +#define EGL_ANGLE_d3d_share_handle_client_buffer 1 + +#define EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE 0x3200 + +#define EGLEW_ANGLE_d3d_share_handle_client_buffer EGLEW_GET_VAR(__EGLEW_ANGLE_d3d_share_handle_client_buffer) + +#endif /* EGL_ANGLE_d3d_share_handle_client_buffer */ + +/* -------------------------- EGL_ANGLE_device_d3d ------------------------- */ + +#ifndef EGL_ANGLE_device_d3d +#define EGL_ANGLE_device_d3d 1 + +#define EGL_D3D9_DEVICE_ANGLE 0x33A0 +#define EGL_D3D11_DEVICE_ANGLE 0x33A1 + +#define EGLEW_ANGLE_device_d3d EGLEW_GET_VAR(__EGLEW_ANGLE_device_d3d) + +#endif /* EGL_ANGLE_device_d3d */ + +/* -------------------- EGL_ANGLE_query_surface_pointer -------------------- */ + +#ifndef EGL_ANGLE_query_surface_pointer +#define EGL_ANGLE_query_surface_pointer 1 + +typedef EGLBoolean ( * PFNEGLQUERYSURFACEPOINTERANGLEPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, void ** value); + +#define eglQuerySurfacePointerANGLE EGLEW_GET_FUN(__eglewQuerySurfacePointerANGLE) + +#define EGLEW_ANGLE_query_surface_pointer EGLEW_GET_VAR(__EGLEW_ANGLE_query_surface_pointer) + +#endif /* EGL_ANGLE_query_surface_pointer */ + +/* ------------- EGL_ANGLE_surface_d3d_texture_2d_share_handle ------------- */ + +#ifndef EGL_ANGLE_surface_d3d_texture_2d_share_handle +#define EGL_ANGLE_surface_d3d_texture_2d_share_handle 1 + +#define EGL_D3D_TEXTURE_2D_SHARE_HANDLE_ANGLE 0x3200 + +#define EGLEW_ANGLE_surface_d3d_texture_2d_share_handle EGLEW_GET_VAR(__EGLEW_ANGLE_surface_d3d_texture_2d_share_handle) + +#endif /* EGL_ANGLE_surface_d3d_texture_2d_share_handle */ + +/* ---------------------- EGL_ANGLE_window_fixed_size ---------------------- */ + +#ifndef EGL_ANGLE_window_fixed_size +#define EGL_ANGLE_window_fixed_size 1 + +#define EGL_FIXED_SIZE_ANGLE 0x3201 + +#define EGLEW_ANGLE_window_fixed_size EGLEW_GET_VAR(__EGLEW_ANGLE_window_fixed_size) + +#endif /* EGL_ANGLE_window_fixed_size */ + +/* --------------------- EGL_ARM_implicit_external_sync -------------------- */ + +#ifndef EGL_ARM_implicit_external_sync +#define EGL_ARM_implicit_external_sync 1 + +#define EGL_SYNC_PRIOR_COMMANDS_IMPLICIT_EXTERNAL_ARM 0x328A + +#define EGLEW_ARM_implicit_external_sync EGLEW_GET_VAR(__EGLEW_ARM_implicit_external_sync) + +#endif /* EGL_ARM_implicit_external_sync */ + +/* ------------------- EGL_ARM_pixmap_multisample_discard ------------------ */ + +#ifndef EGL_ARM_pixmap_multisample_discard +#define EGL_ARM_pixmap_multisample_discard 1 + +#define EGL_DISCARD_SAMPLES_ARM 0x3286 + +#define EGLEW_ARM_pixmap_multisample_discard EGLEW_GET_VAR(__EGLEW_ARM_pixmap_multisample_discard) + +#endif /* EGL_ARM_pixmap_multisample_discard */ + +/* --------------------------- EGL_EXT_buffer_age -------------------------- */ + +#ifndef EGL_EXT_buffer_age +#define EGL_EXT_buffer_age 1 + +#define EGL_BUFFER_AGE_EXT 0x313D + +#define EGLEW_EXT_buffer_age EGLEW_GET_VAR(__EGLEW_EXT_buffer_age) + +#endif /* EGL_EXT_buffer_age */ + +/* ----------------------- EGL_EXT_client_extensions ----------------------- */ + +#ifndef EGL_EXT_client_extensions +#define EGL_EXT_client_extensions 1 + +#define EGLEW_EXT_client_extensions EGLEW_GET_VAR(__EGLEW_EXT_client_extensions) + +#endif /* EGL_EXT_client_extensions */ + +/* ------------------- EGL_EXT_create_context_robustness ------------------- */ + +#ifndef EGL_EXT_create_context_robustness +#define EGL_EXT_create_context_robustness 1 + +#define EGL_CONTEXT_OPENGL_ROBUST_ACCESS_EXT 0x30BF +#define EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY_EXT 0x3138 +#define EGL_NO_RESET_NOTIFICATION_EXT 0x31BE +#define EGL_LOSE_CONTEXT_ON_RESET_EXT 0x31BF + +#define EGLEW_EXT_create_context_robustness EGLEW_GET_VAR(__EGLEW_EXT_create_context_robustness) + +#endif /* EGL_EXT_create_context_robustness */ + +/* -------------------------- EGL_EXT_device_base -------------------------- */ + +#ifndef EGL_EXT_device_base +#define EGL_EXT_device_base 1 + +#define EGL_BAD_DEVICE_EXT 0x322B +#define EGL_DEVICE_EXT 0x322C + +#define EGLEW_EXT_device_base EGLEW_GET_VAR(__EGLEW_EXT_device_base) + +#endif /* EGL_EXT_device_base */ + +/* --------------------------- EGL_EXT_device_drm -------------------------- */ + +#ifndef EGL_EXT_device_drm +#define EGL_EXT_device_drm 1 + +#define EGL_DRM_DEVICE_FILE_EXT 0x3233 + +#define EGLEW_EXT_device_drm EGLEW_GET_VAR(__EGLEW_EXT_device_drm) + +#endif /* EGL_EXT_device_drm */ + +/* ----------------------- EGL_EXT_device_enumeration ---------------------- */ + +#ifndef EGL_EXT_device_enumeration +#define EGL_EXT_device_enumeration 1 + +typedef EGLBoolean ( * PFNEGLQUERYDEVICESEXTPROC) (EGLint max_devices, EGLDeviceEXT * devices, EGLint * num_devices); + +#define eglQueryDevicesEXT EGLEW_GET_FUN(__eglewQueryDevicesEXT) + +#define EGLEW_EXT_device_enumeration EGLEW_GET_VAR(__EGLEW_EXT_device_enumeration) + +#endif /* EGL_EXT_device_enumeration */ + +/* ------------------------- EGL_EXT_device_openwf ------------------------- */ + +#ifndef EGL_EXT_device_openwf +#define EGL_EXT_device_openwf 1 + +#define EGL_OPENWF_DEVICE_ID_EXT 0x3237 + +#define EGLEW_EXT_device_openwf EGLEW_GET_VAR(__EGLEW_EXT_device_openwf) + +#endif /* EGL_EXT_device_openwf */ + +/* -------------------------- EGL_EXT_device_query ------------------------- */ + +#ifndef EGL_EXT_device_query +#define EGL_EXT_device_query 1 + +#define EGL_BAD_DEVICE_EXT 0x322B +#define EGL_DEVICE_EXT 0x322C + +typedef EGLBoolean ( * PFNEGLQUERYDEVICEATTRIBEXTPROC) (EGLDeviceEXT device, EGLint attribute, EGLAttrib * value); +typedef const char * ( * PFNEGLQUERYDEVICESTRINGEXTPROC) (EGLDeviceEXT device, EGLint name); +typedef EGLBoolean ( * PFNEGLQUERYDISPLAYATTRIBEXTPROC) (EGLDisplay dpy, EGLint attribute, EGLAttrib * value); + +#define eglQueryDeviceAttribEXT EGLEW_GET_FUN(__eglewQueryDeviceAttribEXT) +#define eglQueryDeviceStringEXT EGLEW_GET_FUN(__eglewQueryDeviceStringEXT) +#define eglQueryDisplayAttribEXT EGLEW_GET_FUN(__eglewQueryDisplayAttribEXT) + +#define EGLEW_EXT_device_query EGLEW_GET_VAR(__EGLEW_EXT_device_query) + +#endif /* EGL_EXT_device_query */ + +/* ------------------ EGL_EXT_gl_colorspace_bt2020_linear ------------------ */ + +#ifndef EGL_EXT_gl_colorspace_bt2020_linear +#define EGL_EXT_gl_colorspace_bt2020_linear 1 + +#define EGL_GL_COLORSPACE_BT2020_LINEAR_EXT 0x333F + +#define EGLEW_EXT_gl_colorspace_bt2020_linear EGLEW_GET_VAR(__EGLEW_EXT_gl_colorspace_bt2020_linear) + +#endif /* EGL_EXT_gl_colorspace_bt2020_linear */ + +/* -------------------- EGL_EXT_gl_colorspace_bt2020_pq -------------------- */ + +#ifndef EGL_EXT_gl_colorspace_bt2020_pq +#define EGL_EXT_gl_colorspace_bt2020_pq 1 + +#define EGL_GL_COLORSPACE_BT2020_PQ_EXT 0x3340 + +#define EGLEW_EXT_gl_colorspace_bt2020_pq EGLEW_GET_VAR(__EGLEW_EXT_gl_colorspace_bt2020_pq) + +#endif /* EGL_EXT_gl_colorspace_bt2020_pq */ + +/* ------------------- EGL_EXT_gl_colorspace_scrgb_linear ------------------ */ + +#ifndef EGL_EXT_gl_colorspace_scrgb_linear +#define EGL_EXT_gl_colorspace_scrgb_linear 1 + +#define EGL_GL_COLORSPACE_SCRGB_LINEAR_EXT 0x3350 + +#define EGLEW_EXT_gl_colorspace_scrgb_linear EGLEW_GET_VAR(__EGLEW_EXT_gl_colorspace_scrgb_linear) + +#endif /* EGL_EXT_gl_colorspace_scrgb_linear */ + +/* ---------------------- EGL_EXT_image_dma_buf_import --------------------- */ + +#ifndef EGL_EXT_image_dma_buf_import +#define EGL_EXT_image_dma_buf_import 1 + +#define EGL_LINUX_DMA_BUF_EXT 0x3270 +#define EGL_LINUX_DRM_FOURCC_EXT 0x3271 +#define EGL_DMA_BUF_PLANE0_FD_EXT 0x3272 +#define EGL_DMA_BUF_PLANE0_OFFSET_EXT 0x3273 +#define EGL_DMA_BUF_PLANE0_PITCH_EXT 0x3274 +#define EGL_DMA_BUF_PLANE1_FD_EXT 0x3275 +#define EGL_DMA_BUF_PLANE1_OFFSET_EXT 0x3276 +#define EGL_DMA_BUF_PLANE1_PITCH_EXT 0x3277 +#define EGL_DMA_BUF_PLANE2_FD_EXT 0x3278 +#define EGL_DMA_BUF_PLANE2_OFFSET_EXT 0x3279 +#define EGL_DMA_BUF_PLANE2_PITCH_EXT 0x327A +#define EGL_YUV_COLOR_SPACE_HINT_EXT 0x327B +#define EGL_SAMPLE_RANGE_HINT_EXT 0x327C +#define EGL_YUV_CHROMA_HORIZONTAL_SITING_HINT_EXT 0x327D +#define EGL_YUV_CHROMA_VERTICAL_SITING_HINT_EXT 0x327E +#define EGL_ITU_REC601_EXT 0x327F +#define EGL_ITU_REC709_EXT 0x3280 +#define EGL_ITU_REC2020_EXT 0x3281 +#define EGL_YUV_FULL_RANGE_EXT 0x3282 +#define EGL_YUV_NARROW_RANGE_EXT 0x3283 +#define EGL_YUV_CHROMA_SITING_0_EXT 0x3284 +#define EGL_YUV_CHROMA_SITING_0_5_EXT 0x3285 + +#define EGLEW_EXT_image_dma_buf_import EGLEW_GET_VAR(__EGLEW_EXT_image_dma_buf_import) + +#endif /* EGL_EXT_image_dma_buf_import */ + +/* ----------------- EGL_EXT_image_dma_buf_import_modifiers ---------------- */ + +#ifndef EGL_EXT_image_dma_buf_import_modifiers +#define EGL_EXT_image_dma_buf_import_modifiers 1 + +#define EGL_DMA_BUF_PLANE3_FD_EXT 0x3440 +#define EGL_DMA_BUF_PLANE3_OFFSET_EXT 0x3441 +#define EGL_DMA_BUF_PLANE3_PITCH_EXT 0x3442 +#define EGL_DMA_BUF_PLANE0_MODIFIER_LO_EXT 0x3443 +#define EGL_DMA_BUF_PLANE0_MODIFIER_HI_EXT 0x3444 +#define EGL_DMA_BUF_PLANE1_MODIFIER_LO_EXT 0x3445 +#define EGL_DMA_BUF_PLANE1_MODIFIER_HI_EXT 0x3446 +#define EGL_DMA_BUF_PLANE2_MODIFIER_LO_EXT 0x3447 +#define EGL_DMA_BUF_PLANE2_MODIFIER_HI_EXT 0x3448 +#define EGL_DMA_BUF_PLANE3_MODIFIER_LO_EXT 0x3449 +#define EGL_DMA_BUF_PLANE3_MODIFIER_HI_EXT 0x344A + +typedef EGLBoolean ( * PFNEGLQUERYDMABUFFORMATSEXTPROC) (EGLDisplay dpy, EGLint max_formats, EGLint *formats, EGLint *num_formats); +typedef EGLBoolean ( * PFNEGLQUERYDMABUFMODIFIERSEXTPROC) (EGLDisplay dpy, EGLint format, EGLint max_modifiers, EGLuint64KHR *modifiers, EGLBoolean *external_only, EGLint *num_modifiers); + +#define eglQueryDmaBufFormatsEXT EGLEW_GET_FUN(__eglewQueryDmaBufFormatsEXT) +#define eglQueryDmaBufModifiersEXT EGLEW_GET_FUN(__eglewQueryDmaBufModifiersEXT) + +#define EGLEW_EXT_image_dma_buf_import_modifiers EGLEW_GET_VAR(__EGLEW_EXT_image_dma_buf_import_modifiers) + +#endif /* EGL_EXT_image_dma_buf_import_modifiers */ + +/* ------------------------ EGL_EXT_multiview_window ----------------------- */ + +#ifndef EGL_EXT_multiview_window +#define EGL_EXT_multiview_window 1 + +#define EGL_MULTIVIEW_VIEW_COUNT_EXT 0x3134 + +#define EGLEW_EXT_multiview_window EGLEW_GET_VAR(__EGLEW_EXT_multiview_window) + +#endif /* EGL_EXT_multiview_window */ + +/* -------------------------- EGL_EXT_output_base -------------------------- */ + +#ifndef EGL_EXT_output_base +#define EGL_EXT_output_base 1 + +#define EGL_BAD_OUTPUT_LAYER_EXT 0x322D +#define EGL_BAD_OUTPUT_PORT_EXT 0x322E +#define EGL_SWAP_INTERVAL_EXT 0x322F + +typedef EGLBoolean ( * PFNEGLGETOUTPUTLAYERSEXTPROC) (EGLDisplay dpy, const EGLAttrib * attrib_list, EGLOutputLayerEXT * layers, EGLint max_layers, EGLint * num_layers); +typedef EGLBoolean ( * PFNEGLGETOUTPUTPORTSEXTPROC) (EGLDisplay dpy, const EGLAttrib * attrib_list, EGLOutputPortEXT * ports, EGLint max_ports, EGLint * num_ports); +typedef EGLBoolean ( * PFNEGLOUTPUTLAYERATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint attribute, EGLAttrib value); +typedef EGLBoolean ( * PFNEGLOUTPUTPORTATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputPortEXT port, EGLint attribute, EGLAttrib value); +typedef EGLBoolean ( * PFNEGLQUERYOUTPUTLAYERATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint attribute, EGLAttrib * value); +typedef const char * ( * PFNEGLQUERYOUTPUTLAYERSTRINGEXTPROC) (EGLDisplay dpy, EGLOutputLayerEXT layer, EGLint name); +typedef EGLBoolean ( * PFNEGLQUERYOUTPUTPORTATTRIBEXTPROC) (EGLDisplay dpy, EGLOutputPortEXT port, EGLint attribute, EGLAttrib * value); +typedef const char * ( * PFNEGLQUERYOUTPUTPORTSTRINGEXTPROC) (EGLDisplay dpy, EGLOutputPortEXT port, EGLint name); + +#define eglGetOutputLayersEXT EGLEW_GET_FUN(__eglewGetOutputLayersEXT) +#define eglGetOutputPortsEXT EGLEW_GET_FUN(__eglewGetOutputPortsEXT) +#define eglOutputLayerAttribEXT EGLEW_GET_FUN(__eglewOutputLayerAttribEXT) +#define eglOutputPortAttribEXT EGLEW_GET_FUN(__eglewOutputPortAttribEXT) +#define eglQueryOutputLayerAttribEXT EGLEW_GET_FUN(__eglewQueryOutputLayerAttribEXT) +#define eglQueryOutputLayerStringEXT EGLEW_GET_FUN(__eglewQueryOutputLayerStringEXT) +#define eglQueryOutputPortAttribEXT EGLEW_GET_FUN(__eglewQueryOutputPortAttribEXT) +#define eglQueryOutputPortStringEXT EGLEW_GET_FUN(__eglewQueryOutputPortStringEXT) + +#define EGLEW_EXT_output_base EGLEW_GET_VAR(__EGLEW_EXT_output_base) + +#endif /* EGL_EXT_output_base */ + +/* --------------------------- EGL_EXT_output_drm -------------------------- */ + +#ifndef EGL_EXT_output_drm +#define EGL_EXT_output_drm 1 + +#define EGL_DRM_CRTC_EXT 0x3234 +#define EGL_DRM_PLANE_EXT 0x3235 +#define EGL_DRM_CONNECTOR_EXT 0x3236 + +#define EGLEW_EXT_output_drm EGLEW_GET_VAR(__EGLEW_EXT_output_drm) + +#endif /* EGL_EXT_output_drm */ + +/* ------------------------- EGL_EXT_output_openwf ------------------------- */ + +#ifndef EGL_EXT_output_openwf +#define EGL_EXT_output_openwf 1 + +#define EGL_OPENWF_PIPELINE_ID_EXT 0x3238 +#define EGL_OPENWF_PORT_ID_EXT 0x3239 + +#define EGLEW_EXT_output_openwf EGLEW_GET_VAR(__EGLEW_EXT_output_openwf) + +#endif /* EGL_EXT_output_openwf */ + +/* ----------------------- EGL_EXT_pixel_format_float ---------------------- */ + +#ifndef EGL_EXT_pixel_format_float +#define EGL_EXT_pixel_format_float 1 + +#define EGL_COLOR_COMPONENT_TYPE_EXT 0x3339 +#define EGL_COLOR_COMPONENT_TYPE_FIXED_EXT 0x333A +#define EGL_COLOR_COMPONENT_TYPE_FLOAT_EXT 0x333B + +#define EGLEW_EXT_pixel_format_float EGLEW_GET_VAR(__EGLEW_EXT_pixel_format_float) + +#endif /* EGL_EXT_pixel_format_float */ + +/* ------------------------- EGL_EXT_platform_base ------------------------- */ + +#ifndef EGL_EXT_platform_base +#define EGL_EXT_platform_base 1 + +typedef EGLSurface ( * PFNEGLCREATEPLATFORMPIXMAPSURFACEEXTPROC) (EGLDisplay dpy, EGLConfig config, void * native_pixmap, const EGLint * attrib_list); +typedef EGLSurface ( * PFNEGLCREATEPLATFORMWINDOWSURFACEEXTPROC) (EGLDisplay dpy, EGLConfig config, void * native_window, const EGLint * attrib_list); +typedef EGLDisplay ( * PFNEGLGETPLATFORMDISPLAYEXTPROC) (EGLenum platform, void * native_display, const EGLint * attrib_list); + +#define eglCreatePlatformPixmapSurfaceEXT EGLEW_GET_FUN(__eglewCreatePlatformPixmapSurfaceEXT) +#define eglCreatePlatformWindowSurfaceEXT EGLEW_GET_FUN(__eglewCreatePlatformWindowSurfaceEXT) +#define eglGetPlatformDisplayEXT EGLEW_GET_FUN(__eglewGetPlatformDisplayEXT) + +#define EGLEW_EXT_platform_base EGLEW_GET_VAR(__EGLEW_EXT_platform_base) + +#endif /* EGL_EXT_platform_base */ + +/* ------------------------ EGL_EXT_platform_device ------------------------ */ + +#ifndef EGL_EXT_platform_device +#define EGL_EXT_platform_device 1 + +#define EGL_PLATFORM_DEVICE_EXT 0x313F + +#define EGLEW_EXT_platform_device EGLEW_GET_VAR(__EGLEW_EXT_platform_device) + +#endif /* EGL_EXT_platform_device */ + +/* ------------------------ EGL_EXT_platform_wayland ----------------------- */ + +#ifndef EGL_EXT_platform_wayland +#define EGL_EXT_platform_wayland 1 + +#define EGL_PLATFORM_WAYLAND_EXT 0x31D8 + +#define EGLEW_EXT_platform_wayland EGLEW_GET_VAR(__EGLEW_EXT_platform_wayland) + +#endif /* EGL_EXT_platform_wayland */ + +/* -------------------------- EGL_EXT_platform_x11 ------------------------- */ + +#ifndef EGL_EXT_platform_x11 +#define EGL_EXT_platform_x11 1 + +#define EGL_PLATFORM_X11_EXT 0x31D5 +#define EGL_PLATFORM_X11_SCREEN_EXT 0x31D6 + +#define EGLEW_EXT_platform_x11 EGLEW_GET_VAR(__EGLEW_EXT_platform_x11) + +#endif /* EGL_EXT_platform_x11 */ + +/* ----------------------- EGL_EXT_protected_content ----------------------- */ + +#ifndef EGL_EXT_protected_content +#define EGL_EXT_protected_content 1 + +#define EGL_PROTECTED_CONTENT_EXT 0x32C0 + +#define EGLEW_EXT_protected_content EGLEW_GET_VAR(__EGLEW_EXT_protected_content) + +#endif /* EGL_EXT_protected_content */ + +/* ----------------------- EGL_EXT_protected_surface ----------------------- */ + +#ifndef EGL_EXT_protected_surface +#define EGL_EXT_protected_surface 1 + +#define EGL_PROTECTED_CONTENT_EXT 0x32C0 + +#define EGLEW_EXT_protected_surface EGLEW_GET_VAR(__EGLEW_EXT_protected_surface) + +#endif /* EGL_EXT_protected_surface */ + +/* ------------------- EGL_EXT_stream_consumer_egloutput ------------------- */ + +#ifndef EGL_EXT_stream_consumer_egloutput +#define EGL_EXT_stream_consumer_egloutput 1 + +typedef EGLBoolean ( * PFNEGLSTREAMCONSUMEROUTPUTEXTPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLOutputLayerEXT layer); + +#define eglStreamConsumerOutputEXT EGLEW_GET_FUN(__eglewStreamConsumerOutputEXT) + +#define EGLEW_EXT_stream_consumer_egloutput EGLEW_GET_VAR(__EGLEW_EXT_stream_consumer_egloutput) + +#endif /* EGL_EXT_stream_consumer_egloutput */ + +/* ------------------- EGL_EXT_surface_SMPTE2086_metadata ------------------ */ + +#ifndef EGL_EXT_surface_SMPTE2086_metadata +#define EGL_EXT_surface_SMPTE2086_metadata 1 + +#define EGL_SMPTE2086_DISPLAY_PRIMARY_RX_EXT 0x3341 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_RY_EXT 0x3342 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_GX_EXT 0x3343 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_GY_EXT 0x3344 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_BX_EXT 0x3345 +#define EGL_SMPTE2086_DISPLAY_PRIMARY_BY_EXT 0x3346 +#define EGL_SMPTE2086_WHITE_POINT_X_EXT 0x3347 +#define EGL_SMPTE2086_WHITE_POINT_Y_EXT 0x3348 +#define EGL_SMPTE2086_MAX_LUMINANCE_EXT 0x3349 +#define EGL_SMPTE2086_MIN_LUMINANCE_EXT 0x334A + +#define EGLEW_EXT_surface_SMPTE2086_metadata EGLEW_GET_VAR(__EGLEW_EXT_surface_SMPTE2086_metadata) + +#endif /* EGL_EXT_surface_SMPTE2086_metadata */ + +/* -------------------- EGL_EXT_swap_buffers_with_damage ------------------- */ + +#ifndef EGL_EXT_swap_buffers_with_damage +#define EGL_EXT_swap_buffers_with_damage 1 + +typedef EGLBoolean ( * PFNEGLSWAPBUFFERSWITHDAMAGEEXTPROC) (EGLDisplay dpy, EGLSurface surface, EGLint * rects, EGLint n_rects); + +#define eglSwapBuffersWithDamageEXT EGLEW_GET_FUN(__eglewSwapBuffersWithDamageEXT) + +#define EGLEW_EXT_swap_buffers_with_damage EGLEW_GET_VAR(__EGLEW_EXT_swap_buffers_with_damage) + +#endif /* EGL_EXT_swap_buffers_with_damage */ + +/* -------------------------- EGL_EXT_yuv_surface -------------------------- */ + +#ifndef EGL_EXT_yuv_surface +#define EGL_EXT_yuv_surface 1 + +#define EGL_YUV_BUFFER_EXT 0x3300 +#define EGL_YUV_ORDER_EXT 0x3301 +#define EGL_YUV_ORDER_YUV_EXT 0x3302 +#define EGL_YUV_ORDER_YVU_EXT 0x3303 +#define EGL_YUV_ORDER_YUYV_EXT 0x3304 +#define EGL_YUV_ORDER_UYVY_EXT 0x3305 +#define EGL_YUV_ORDER_YVYU_EXT 0x3306 +#define EGL_YUV_ORDER_VYUY_EXT 0x3307 +#define EGL_YUV_ORDER_AYUV_EXT 0x3308 +#define EGL_YUV_CSC_STANDARD_EXT 0x330A +#define EGL_YUV_CSC_STANDARD_601_EXT 0x330B +#define EGL_YUV_CSC_STANDARD_709_EXT 0x330C +#define EGL_YUV_CSC_STANDARD_2020_EXT 0x330D +#define EGL_YUV_NUMBER_OF_PLANES_EXT 0x3311 +#define EGL_YUV_SUBSAMPLE_EXT 0x3312 +#define EGL_YUV_SUBSAMPLE_4_2_0_EXT 0x3313 +#define EGL_YUV_SUBSAMPLE_4_2_2_EXT 0x3314 +#define EGL_YUV_SUBSAMPLE_4_4_4_EXT 0x3315 +#define EGL_YUV_DEPTH_RANGE_EXT 0x3317 +#define EGL_YUV_DEPTH_RANGE_LIMITED_EXT 0x3318 +#define EGL_YUV_DEPTH_RANGE_FULL_EXT 0x3319 +#define EGL_YUV_PLANE_BPP_EXT 0x331A +#define EGL_YUV_PLANE_BPP_0_EXT 0x331B +#define EGL_YUV_PLANE_BPP_8_EXT 0x331C +#define EGL_YUV_PLANE_BPP_10_EXT 0x331D + +#define EGLEW_EXT_yuv_surface EGLEW_GET_VAR(__EGLEW_EXT_yuv_surface) + +#endif /* EGL_EXT_yuv_surface */ + +/* -------------------------- EGL_HI_clientpixmap -------------------------- */ + +#ifndef EGL_HI_clientpixmap +#define EGL_HI_clientpixmap 1 + +#define EGL_CLIENT_PIXMAP_POINTER_HI 0x8F74 + +typedef EGLSurface ( * PFNEGLCREATEPIXMAPSURFACEHIPROC) (EGLDisplay dpy, EGLConfig config, struct EGLClientPixmapHI * pixmap); + +#define eglCreatePixmapSurfaceHI EGLEW_GET_FUN(__eglewCreatePixmapSurfaceHI) + +#define EGLEW_HI_clientpixmap EGLEW_GET_VAR(__EGLEW_HI_clientpixmap) + +#endif /* EGL_HI_clientpixmap */ + +/* -------------------------- EGL_HI_colorformats -------------------------- */ + +#ifndef EGL_HI_colorformats +#define EGL_HI_colorformats 1 + +#define EGL_COLOR_FORMAT_HI 0x8F70 +#define EGL_COLOR_RGB_HI 0x8F71 +#define EGL_COLOR_RGBA_HI 0x8F72 +#define EGL_COLOR_ARGB_HI 0x8F73 + +#define EGLEW_HI_colorformats EGLEW_GET_VAR(__EGLEW_HI_colorformats) + +#endif /* EGL_HI_colorformats */ + +/* ------------------------ EGL_IMG_context_priority ----------------------- */ + +#ifndef EGL_IMG_context_priority +#define EGL_IMG_context_priority 1 + +#define EGL_CONTEXT_PRIORITY_LEVEL_IMG 0x3100 +#define EGL_CONTEXT_PRIORITY_HIGH_IMG 0x3101 +#define EGL_CONTEXT_PRIORITY_MEDIUM_IMG 0x3102 +#define EGL_CONTEXT_PRIORITY_LOW_IMG 0x3103 + +#define EGLEW_IMG_context_priority EGLEW_GET_VAR(__EGLEW_IMG_context_priority) + +#endif /* EGL_IMG_context_priority */ + +/* ---------------------- EGL_IMG_image_plane_attribs ---------------------- */ + +#ifndef EGL_IMG_image_plane_attribs +#define EGL_IMG_image_plane_attribs 1 + +#define EGL_NATIVE_BUFFER_MULTIPLANE_SEPARATE_IMG 0x3105 +#define EGL_NATIVE_BUFFER_PLANE_OFFSET_IMG 0x3106 + +#define EGLEW_IMG_image_plane_attribs EGLEW_GET_VAR(__EGLEW_IMG_image_plane_attribs) + +#endif /* EGL_IMG_image_plane_attribs */ + +/* ---------------------------- EGL_KHR_cl_event --------------------------- */ + +#ifndef EGL_KHR_cl_event +#define EGL_KHR_cl_event 1 + +#define EGL_CL_EVENT_HANDLE_KHR 0x309C +#define EGL_SYNC_CL_EVENT_KHR 0x30FE +#define EGL_SYNC_CL_EVENT_COMPLETE_KHR 0x30FF + +#define EGLEW_KHR_cl_event EGLEW_GET_VAR(__EGLEW_KHR_cl_event) + +#endif /* EGL_KHR_cl_event */ + +/* --------------------------- EGL_KHR_cl_event2 --------------------------- */ + +#ifndef EGL_KHR_cl_event2 +#define EGL_KHR_cl_event2 1 + +#define EGL_CL_EVENT_HANDLE_KHR 0x309C +#define EGL_SYNC_CL_EVENT_KHR 0x30FE +#define EGL_SYNC_CL_EVENT_COMPLETE_KHR 0x30FF + +typedef EGLSyncKHR ( * PFNEGLCREATESYNC64KHRPROC) (EGLDisplay dpy, EGLenum type, const EGLAttribKHR * attrib_list); + +#define eglCreateSync64KHR EGLEW_GET_FUN(__eglewCreateSync64KHR) + +#define EGLEW_KHR_cl_event2 EGLEW_GET_VAR(__EGLEW_KHR_cl_event2) + +#endif /* EGL_KHR_cl_event2 */ + +/* ----------------- EGL_KHR_client_get_all_proc_addresses ----------------- */ + +#ifndef EGL_KHR_client_get_all_proc_addresses +#define EGL_KHR_client_get_all_proc_addresses 1 + +#define EGLEW_KHR_client_get_all_proc_addresses EGLEW_GET_VAR(__EGLEW_KHR_client_get_all_proc_addresses) + +#endif /* EGL_KHR_client_get_all_proc_addresses */ + +/* ------------------------- EGL_KHR_config_attribs ------------------------ */ + +#ifndef EGL_KHR_config_attribs +#define EGL_KHR_config_attribs 1 + +#define EGL_VG_COLORSPACE_LINEAR_BIT_KHR 0x0020 +#define EGL_VG_ALPHA_FORMAT_PRE_BIT_KHR 0x0040 +#define EGL_CONFORMANT_KHR 0x3042 + +#define EGLEW_KHR_config_attribs EGLEW_GET_VAR(__EGLEW_KHR_config_attribs) + +#endif /* EGL_KHR_config_attribs */ + +/* --------------------- EGL_KHR_context_flush_control --------------------- */ + +#ifndef EGL_KHR_context_flush_control +#define EGL_KHR_context_flush_control 1 + +#define EGL_CONTEXT_RELEASE_BEHAVIOR_NONE_KHR 0 +#define EGL_CONTEXT_RELEASE_BEHAVIOR_KHR 0x2097 +#define EGL_CONTEXT_RELEASE_BEHAVIOR_FLUSH_KHR 0x2098 + +#define EGLEW_KHR_context_flush_control EGLEW_GET_VAR(__EGLEW_KHR_context_flush_control) + +#endif /* EGL_KHR_context_flush_control */ + +/* ------------------------- EGL_KHR_create_context ------------------------ */ + +#ifndef EGL_KHR_create_context +#define EGL_KHR_create_context 1 + +#define EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR 0x00000001 +#define EGL_CONTEXT_OPENGL_DEBUG_BIT_KHR 0x00000001 +#define EGL_CONTEXT_OPENGL_COMPATIBILITY_PROFILE_BIT_KHR 0x00000002 +#define EGL_CONTEXT_OPENGL_FORWARD_COMPATIBLE_BIT_KHR 0x00000002 +#define EGL_CONTEXT_OPENGL_ROBUST_ACCESS_BIT_KHR 0x00000004 +#define EGL_OPENGL_ES3_BIT 0x00000040 +#define EGL_OPENGL_ES3_BIT_KHR 0x00000040 +#define EGL_CONTEXT_MAJOR_VERSION_KHR 0x3098 +#define EGL_CONTEXT_MINOR_VERSION_KHR 0x30FB +#define EGL_CONTEXT_FLAGS_KHR 0x30FC +#define EGL_CONTEXT_OPENGL_PROFILE_MASK_KHR 0x30FD +#define EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY_KHR 0x31BD +#define EGL_NO_RESET_NOTIFICATION_KHR 0x31BE +#define EGL_LOSE_CONTEXT_ON_RESET_KHR 0x31BF + +#define EGLEW_KHR_create_context EGLEW_GET_VAR(__EGLEW_KHR_create_context) + +#endif /* EGL_KHR_create_context */ + +/* -------------------- EGL_KHR_create_context_no_error -------------------- */ + +#ifndef EGL_KHR_create_context_no_error +#define EGL_KHR_create_context_no_error 1 + +#define EGL_CONTEXT_OPENGL_NO_ERROR_KHR 0x31B3 + +#define EGLEW_KHR_create_context_no_error EGLEW_GET_VAR(__EGLEW_KHR_create_context_no_error) + +#endif /* EGL_KHR_create_context_no_error */ + +/* ----------------------------- EGL_KHR_debug ----------------------------- */ + +#ifndef EGL_KHR_debug +#define EGL_KHR_debug 1 + +#define EGL_OBJECT_THREAD_KHR 0x33B0 +#define EGL_OBJECT_DISPLAY_KHR 0x33B1 +#define EGL_OBJECT_CONTEXT_KHR 0x33B2 +#define EGL_OBJECT_SURFACE_KHR 0x33B3 +#define EGL_OBJECT_IMAGE_KHR 0x33B4 +#define EGL_OBJECT_SYNC_KHR 0x33B5 +#define EGL_OBJECT_STREAM_KHR 0x33B6 +#define EGL_DEBUG_CALLBACK_KHR 0x33B8 +#define EGL_DEBUG_MSG_CRITICAL_KHR 0x33B9 +#define EGL_DEBUG_MSG_ERROR_KHR 0x33BA +#define EGL_DEBUG_MSG_WARN_KHR 0x33BB +#define EGL_DEBUG_MSG_INFO_KHR 0x33BC + +typedef EGLint ( * PFNEGLDEBUGMESSAGECONTROLKHRPROC) (EGLDEBUGPROCKHR callback, const EGLAttrib * attrib_list); +typedef EGLint ( * PFNEGLLABELOBJECTKHRPROC) (EGLDisplay display, EGLenum objectType, EGLObjectKHR object, EGLLabelKHR label); +typedef EGLBoolean ( * PFNEGLQUERYDEBUGKHRPROC) (EGLint attribute, EGLAttrib * value); + +#define eglDebugMessageControlKHR EGLEW_GET_FUN(__eglewDebugMessageControlKHR) +#define eglLabelObjectKHR EGLEW_GET_FUN(__eglewLabelObjectKHR) +#define eglQueryDebugKHR EGLEW_GET_FUN(__eglewQueryDebugKHR) + +#define EGLEW_KHR_debug EGLEW_GET_VAR(__EGLEW_KHR_debug) + +#endif /* EGL_KHR_debug */ + +/* --------------------------- EGL_KHR_fence_sync -------------------------- */ + +#ifndef EGL_KHR_fence_sync +#define EGL_KHR_fence_sync 1 + +#define EGL_SYNC_PRIOR_COMMANDS_COMPLETE_KHR 0x30F0 +#define EGL_SYNC_CONDITION_KHR 0x30F8 +#define EGL_SYNC_FENCE_KHR 0x30F9 + +#define EGLEW_KHR_fence_sync EGLEW_GET_VAR(__EGLEW_KHR_fence_sync) + +#endif /* EGL_KHR_fence_sync */ + +/* --------------------- EGL_KHR_get_all_proc_addresses -------------------- */ + +#ifndef EGL_KHR_get_all_proc_addresses +#define EGL_KHR_get_all_proc_addresses 1 + +#define EGLEW_KHR_get_all_proc_addresses EGLEW_GET_VAR(__EGLEW_KHR_get_all_proc_addresses) + +#endif /* EGL_KHR_get_all_proc_addresses */ + +/* ------------------------- EGL_KHR_gl_colorspace ------------------------- */ + +#ifndef EGL_KHR_gl_colorspace +#define EGL_KHR_gl_colorspace 1 + +#define EGL_GL_COLORSPACE_SRGB_KHR 0x3089 +#define EGL_GL_COLORSPACE_LINEAR_KHR 0x308A +#define EGL_GL_COLORSPACE_KHR 0x309D + +#define EGLEW_KHR_gl_colorspace EGLEW_GET_VAR(__EGLEW_KHR_gl_colorspace) + +#endif /* EGL_KHR_gl_colorspace */ + +/* --------------------- EGL_KHR_gl_renderbuffer_image --------------------- */ + +#ifndef EGL_KHR_gl_renderbuffer_image +#define EGL_KHR_gl_renderbuffer_image 1 + +#define EGL_GL_RENDERBUFFER_KHR 0x30B9 + +#define EGLEW_KHR_gl_renderbuffer_image EGLEW_GET_VAR(__EGLEW_KHR_gl_renderbuffer_image) + +#endif /* EGL_KHR_gl_renderbuffer_image */ + +/* ---------------------- EGL_KHR_gl_texture_2D_image ---------------------- */ + +#ifndef EGL_KHR_gl_texture_2D_image +#define EGL_KHR_gl_texture_2D_image 1 + +#define EGL_GL_TEXTURE_2D_KHR 0x30B1 +#define EGL_GL_TEXTURE_LEVEL_KHR 0x30BC + +#define EGLEW_KHR_gl_texture_2D_image EGLEW_GET_VAR(__EGLEW_KHR_gl_texture_2D_image) + +#endif /* EGL_KHR_gl_texture_2D_image */ + +/* ---------------------- EGL_KHR_gl_texture_3D_image ---------------------- */ + +#ifndef EGL_KHR_gl_texture_3D_image +#define EGL_KHR_gl_texture_3D_image 1 + +#define EGL_GL_TEXTURE_3D_KHR 0x30B2 +#define EGL_GL_TEXTURE_ZOFFSET_KHR 0x30BD + +#define EGLEW_KHR_gl_texture_3D_image EGLEW_GET_VAR(__EGLEW_KHR_gl_texture_3D_image) + +#endif /* EGL_KHR_gl_texture_3D_image */ + +/* -------------------- EGL_KHR_gl_texture_cubemap_image ------------------- */ + +#ifndef EGL_KHR_gl_texture_cubemap_image +#define EGL_KHR_gl_texture_cubemap_image 1 + +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X_KHR 0x30B3 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X_KHR 0x30B4 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y_KHR 0x30B5 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_KHR 0x30B6 +#define EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z_KHR 0x30B7 +#define EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_KHR 0x30B8 + +#define EGLEW_KHR_gl_texture_cubemap_image EGLEW_GET_VAR(__EGLEW_KHR_gl_texture_cubemap_image) + +#endif /* EGL_KHR_gl_texture_cubemap_image */ + +/* ----------------------------- EGL_KHR_image ----------------------------- */ + +#ifndef EGL_KHR_image +#define EGL_KHR_image 1 + +#define EGL_NATIVE_PIXMAP_KHR 0x30B0 + +typedef EGLImageKHR ( * PFNEGLCREATEIMAGEKHRPROC) (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint * attrib_list); +typedef EGLBoolean ( * PFNEGLDESTROYIMAGEKHRPROC) (EGLDisplay dpy, EGLImageKHR image); + +#define eglCreateImageKHR EGLEW_GET_FUN(__eglewCreateImageKHR) +#define eglDestroyImageKHR EGLEW_GET_FUN(__eglewDestroyImageKHR) + +#define EGLEW_KHR_image EGLEW_GET_VAR(__EGLEW_KHR_image) + +#endif /* EGL_KHR_image */ + +/* --------------------------- EGL_KHR_image_base -------------------------- */ + +#ifndef EGL_KHR_image_base +#define EGL_KHR_image_base 1 + +#define EGL_IMAGE_PRESERVED_KHR 0x30D2 + +#define EGLEW_KHR_image_base EGLEW_GET_VAR(__EGLEW_KHR_image_base) + +#endif /* EGL_KHR_image_base */ + +/* -------------------------- EGL_KHR_image_pixmap ------------------------- */ + +#ifndef EGL_KHR_image_pixmap +#define EGL_KHR_image_pixmap 1 + +#define EGL_NATIVE_PIXMAP_KHR 0x30B0 + +#define EGLEW_KHR_image_pixmap EGLEW_GET_VAR(__EGLEW_KHR_image_pixmap) + +#endif /* EGL_KHR_image_pixmap */ + +/* -------------------------- EGL_KHR_lock_surface ------------------------- */ + +#ifndef EGL_KHR_lock_surface +#define EGL_KHR_lock_surface 1 + +#define EGL_READ_SURFACE_BIT_KHR 0x0001 +#define EGL_WRITE_SURFACE_BIT_KHR 0x0002 +#define EGL_LOCK_SURFACE_BIT_KHR 0x0080 +#define EGL_OPTIMAL_FORMAT_BIT_KHR 0x0100 +#define EGL_MATCH_FORMAT_KHR 0x3043 +#define EGL_FORMAT_RGB_565_EXACT_KHR 0x30C0 +#define EGL_FORMAT_RGB_565_KHR 0x30C1 +#define EGL_FORMAT_RGBA_8888_EXACT_KHR 0x30C2 +#define EGL_FORMAT_RGBA_8888_KHR 0x30C3 +#define EGL_MAP_PRESERVE_PIXELS_KHR 0x30C4 +#define EGL_LOCK_USAGE_HINT_KHR 0x30C5 +#define EGL_BITMAP_POINTER_KHR 0x30C6 +#define EGL_BITMAP_PITCH_KHR 0x30C7 +#define EGL_BITMAP_ORIGIN_KHR 0x30C8 +#define EGL_BITMAP_PIXEL_RED_OFFSET_KHR 0x30C9 +#define EGL_BITMAP_PIXEL_GREEN_OFFSET_KHR 0x30CA +#define EGL_BITMAP_PIXEL_BLUE_OFFSET_KHR 0x30CB +#define EGL_BITMAP_PIXEL_ALPHA_OFFSET_KHR 0x30CC +#define EGL_BITMAP_PIXEL_LUMINANCE_OFFSET_KHR 0x30CD +#define EGL_LOWER_LEFT_KHR 0x30CE +#define EGL_UPPER_LEFT_KHR 0x30CF + +typedef EGLBoolean ( * PFNEGLLOCKSURFACEKHRPROC) (EGLDisplay dpy, EGLSurface surface, const EGLint * attrib_list); +typedef EGLBoolean ( * PFNEGLUNLOCKSURFACEKHRPROC) (EGLDisplay dpy, EGLSurface surface); + +#define eglLockSurfaceKHR EGLEW_GET_FUN(__eglewLockSurfaceKHR) +#define eglUnlockSurfaceKHR EGLEW_GET_FUN(__eglewUnlockSurfaceKHR) + +#define EGLEW_KHR_lock_surface EGLEW_GET_VAR(__EGLEW_KHR_lock_surface) + +#endif /* EGL_KHR_lock_surface */ + +/* ------------------------- EGL_KHR_lock_surface2 ------------------------- */ + +#ifndef EGL_KHR_lock_surface2 +#define EGL_KHR_lock_surface2 1 + +#define EGL_BITMAP_PIXEL_SIZE_KHR 0x3110 + +#define EGLEW_KHR_lock_surface2 EGLEW_GET_VAR(__EGLEW_KHR_lock_surface2) + +#endif /* EGL_KHR_lock_surface2 */ + +/* ------------------------- EGL_KHR_lock_surface3 ------------------------- */ + +#ifndef EGL_KHR_lock_surface3 +#define EGL_KHR_lock_surface3 1 + +#define EGL_READ_SURFACE_BIT_KHR 0x0001 +#define EGL_WRITE_SURFACE_BIT_KHR 0x0002 +#define EGL_LOCK_SURFACE_BIT_KHR 0x0080 +#define EGL_OPTIMAL_FORMAT_BIT_KHR 0x0100 +#define EGL_MATCH_FORMAT_KHR 0x3043 +#define EGL_FORMAT_RGB_565_EXACT_KHR 0x30C0 +#define EGL_FORMAT_RGB_565_KHR 0x30C1 +#define EGL_FORMAT_RGBA_8888_EXACT_KHR 0x30C2 +#define EGL_FORMAT_RGBA_8888_KHR 0x30C3 +#define EGL_MAP_PRESERVE_PIXELS_KHR 0x30C4 +#define EGL_LOCK_USAGE_HINT_KHR 0x30C5 +#define EGL_BITMAP_POINTER_KHR 0x30C6 +#define EGL_BITMAP_PITCH_KHR 0x30C7 +#define EGL_BITMAP_ORIGIN_KHR 0x30C8 +#define EGL_BITMAP_PIXEL_RED_OFFSET_KHR 0x30C9 +#define EGL_BITMAP_PIXEL_GREEN_OFFSET_KHR 0x30CA +#define EGL_BITMAP_PIXEL_BLUE_OFFSET_KHR 0x30CB +#define EGL_BITMAP_PIXEL_ALPHA_OFFSET_KHR 0x30CC +#define EGL_BITMAP_PIXEL_LUMINANCE_OFFSET_KHR 0x30CD +#define EGL_LOWER_LEFT_KHR 0x30CE +#define EGL_UPPER_LEFT_KHR 0x30CF +#define EGL_BITMAP_PIXEL_SIZE_KHR 0x3110 + +typedef EGLBoolean ( * PFNEGLQUERYSURFACE64KHRPROC) (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLAttribKHR * value); + +#define eglQuerySurface64KHR EGLEW_GET_FUN(__eglewQuerySurface64KHR) + +#define EGLEW_KHR_lock_surface3 EGLEW_GET_VAR(__EGLEW_KHR_lock_surface3) + +#endif /* EGL_KHR_lock_surface3 */ + +/* --------------------- EGL_KHR_mutable_render_buffer --------------------- */ + +#ifndef EGL_KHR_mutable_render_buffer +#define EGL_KHR_mutable_render_buffer 1 + +#define EGL_MUTABLE_RENDER_BUFFER_BIT_KHR 0x1000 + +#define EGLEW_KHR_mutable_render_buffer EGLEW_GET_VAR(__EGLEW_KHR_mutable_render_buffer) + +#endif /* EGL_KHR_mutable_render_buffer */ + +/* ----------------------- EGL_KHR_no_config_context ----------------------- */ + +#ifndef EGL_KHR_no_config_context +#define EGL_KHR_no_config_context 1 + +#define EGLEW_KHR_no_config_context EGLEW_GET_VAR(__EGLEW_KHR_no_config_context) + +#endif /* EGL_KHR_no_config_context */ + +/* ------------------------- EGL_KHR_partial_update ------------------------ */ + +#ifndef EGL_KHR_partial_update +#define EGL_KHR_partial_update 1 + +#define EGL_BUFFER_AGE_KHR 0x313D + +typedef EGLBoolean ( * PFNEGLSETDAMAGEREGIONKHRPROC) (EGLDisplay dpy, EGLSurface surface, EGLint * rects, EGLint n_rects); + +#define eglSetDamageRegionKHR EGLEW_GET_FUN(__eglewSetDamageRegionKHR) + +#define EGLEW_KHR_partial_update EGLEW_GET_VAR(__EGLEW_KHR_partial_update) + +#endif /* EGL_KHR_partial_update */ + +/* ------------------------ EGL_KHR_platform_android ----------------------- */ + +#ifndef EGL_KHR_platform_android +#define EGL_KHR_platform_android 1 + +#define EGL_PLATFORM_ANDROID_KHR 0x3141 + +#define EGLEW_KHR_platform_android EGLEW_GET_VAR(__EGLEW_KHR_platform_android) + +#endif /* EGL_KHR_platform_android */ + +/* -------------------------- EGL_KHR_platform_gbm ------------------------- */ + +#ifndef EGL_KHR_platform_gbm +#define EGL_KHR_platform_gbm 1 + +#define EGL_PLATFORM_GBM_KHR 0x31D7 + +#define EGLEW_KHR_platform_gbm EGLEW_GET_VAR(__EGLEW_KHR_platform_gbm) + +#endif /* EGL_KHR_platform_gbm */ + +/* ------------------------ EGL_KHR_platform_wayland ----------------------- */ + +#ifndef EGL_KHR_platform_wayland +#define EGL_KHR_platform_wayland 1 + +#define EGL_PLATFORM_WAYLAND_KHR 0x31D8 + +#define EGLEW_KHR_platform_wayland EGLEW_GET_VAR(__EGLEW_KHR_platform_wayland) + +#endif /* EGL_KHR_platform_wayland */ + +/* -------------------------- EGL_KHR_platform_x11 ------------------------- */ + +#ifndef EGL_KHR_platform_x11 +#define EGL_KHR_platform_x11 1 + +#define EGL_PLATFORM_X11_KHR 0x31D5 +#define EGL_PLATFORM_X11_SCREEN_KHR 0x31D6 + +#define EGLEW_KHR_platform_x11 EGLEW_GET_VAR(__EGLEW_KHR_platform_x11) + +#endif /* EGL_KHR_platform_x11 */ + +/* ------------------------- EGL_KHR_reusable_sync ------------------------- */ + +#ifndef EGL_KHR_reusable_sync +#define EGL_KHR_reusable_sync 1 + +#define EGL_SYNC_FLUSH_COMMANDS_BIT_KHR 0x0001 +#define EGL_SYNC_STATUS_KHR 0x30F1 +#define EGL_SIGNALED_KHR 0x30F2 +#define EGL_UNSIGNALED_KHR 0x30F3 +#define EGL_TIMEOUT_EXPIRED_KHR 0x30F5 +#define EGL_CONDITION_SATISFIED_KHR 0x30F6 +#define EGL_SYNC_TYPE_KHR 0x30F7 +#define EGL_SYNC_REUSABLE_KHR 0x30FA +#define EGL_FOREVER_KHR 0xFFFFFFFFFFFFFFFF + +typedef EGLint ( * PFNEGLCLIENTWAITSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout); +typedef EGLSyncKHR ( * PFNEGLCREATESYNCKHRPROC) (EGLDisplay dpy, EGLenum type, const EGLint * attrib_list); +typedef EGLBoolean ( * PFNEGLDESTROYSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync); +typedef EGLBoolean ( * PFNEGLGETSYNCATTRIBKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint attribute, EGLint * value); +typedef EGLBoolean ( * PFNEGLSIGNALSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode); + +#define eglClientWaitSyncKHR EGLEW_GET_FUN(__eglewClientWaitSyncKHR) +#define eglCreateSyncKHR EGLEW_GET_FUN(__eglewCreateSyncKHR) +#define eglDestroySyncKHR EGLEW_GET_FUN(__eglewDestroySyncKHR) +#define eglGetSyncAttribKHR EGLEW_GET_FUN(__eglewGetSyncAttribKHR) +#define eglSignalSyncKHR EGLEW_GET_FUN(__eglewSignalSyncKHR) + +#define EGLEW_KHR_reusable_sync EGLEW_GET_VAR(__EGLEW_KHR_reusable_sync) + +#endif /* EGL_KHR_reusable_sync */ + +/* ----------------------------- EGL_KHR_stream ---------------------------- */ + +#ifndef EGL_KHR_stream +#define EGL_KHR_stream 1 + +#define EGL_CONSUMER_LATENCY_USEC_KHR 0x3210 +#define EGL_PRODUCER_FRAME_KHR 0x3212 +#define EGL_CONSUMER_FRAME_KHR 0x3213 +#define EGL_STREAM_STATE_KHR 0x3214 +#define EGL_STREAM_STATE_CREATED_KHR 0x3215 +#define EGL_STREAM_STATE_CONNECTING_KHR 0x3216 +#define EGL_STREAM_STATE_EMPTY_KHR 0x3217 +#define EGL_STREAM_STATE_NEW_FRAME_AVAILABLE_KHR 0x3218 +#define EGL_STREAM_STATE_OLD_FRAME_AVAILABLE_KHR 0x3219 +#define EGL_STREAM_STATE_DISCONNECTED_KHR 0x321A +#define EGL_BAD_STREAM_KHR 0x321B +#define EGL_BAD_STATE_KHR 0x321C + +typedef EGLStreamKHR ( * PFNEGLCREATESTREAMKHRPROC) (EGLDisplay dpy, const EGLint * attrib_list); +typedef EGLBoolean ( * PFNEGLDESTROYSTREAMKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +typedef EGLBoolean ( * PFNEGLQUERYSTREAMKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLint * value); +typedef EGLBoolean ( * PFNEGLQUERYSTREAMU64KHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLuint64KHR * value); +typedef EGLBoolean ( * PFNEGLSTREAMATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLint value); + +#define eglCreateStreamKHR EGLEW_GET_FUN(__eglewCreateStreamKHR) +#define eglDestroyStreamKHR EGLEW_GET_FUN(__eglewDestroyStreamKHR) +#define eglQueryStreamKHR EGLEW_GET_FUN(__eglewQueryStreamKHR) +#define eglQueryStreamu64KHR EGLEW_GET_FUN(__eglewQueryStreamu64KHR) +#define eglStreamAttribKHR EGLEW_GET_FUN(__eglewStreamAttribKHR) + +#define EGLEW_KHR_stream EGLEW_GET_VAR(__EGLEW_KHR_stream) + +#endif /* EGL_KHR_stream */ + +/* ------------------------- EGL_KHR_stream_attrib ------------------------- */ + +#ifndef EGL_KHR_stream_attrib +#define EGL_KHR_stream_attrib 1 + +#define EGL_CONSUMER_LATENCY_USEC_KHR 0x3210 +#define EGL_STREAM_STATE_KHR 0x3214 +#define EGL_STREAM_STATE_CREATED_KHR 0x3215 +#define EGL_STREAM_STATE_CONNECTING_KHR 0x3216 + +typedef EGLStreamKHR ( * PFNEGLCREATESTREAMATTRIBKHRPROC) (EGLDisplay dpy, const EGLAttrib * attrib_list); +typedef EGLBoolean ( * PFNEGLQUERYSTREAMATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLAttrib * value); +typedef EGLBoolean ( * PFNEGLSETSTREAMATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLAttrib value); +typedef EGLBoolean ( * PFNEGLSTREAMCONSUMERACQUIREATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib * attrib_list); +typedef EGLBoolean ( * PFNEGLSTREAMCONSUMERRELEASEATTRIBKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib * attrib_list); + +#define eglCreateStreamAttribKHR EGLEW_GET_FUN(__eglewCreateStreamAttribKHR) +#define eglQueryStreamAttribKHR EGLEW_GET_FUN(__eglewQueryStreamAttribKHR) +#define eglSetStreamAttribKHR EGLEW_GET_FUN(__eglewSetStreamAttribKHR) +#define eglStreamConsumerAcquireAttribKHR EGLEW_GET_FUN(__eglewStreamConsumerAcquireAttribKHR) +#define eglStreamConsumerReleaseAttribKHR EGLEW_GET_FUN(__eglewStreamConsumerReleaseAttribKHR) + +#define EGLEW_KHR_stream_attrib EGLEW_GET_VAR(__EGLEW_KHR_stream_attrib) + +#endif /* EGL_KHR_stream_attrib */ + +/* ------------------- EGL_KHR_stream_consumer_gltexture ------------------- */ + +#ifndef EGL_KHR_stream_consumer_gltexture +#define EGL_KHR_stream_consumer_gltexture 1 + +#define EGL_CONSUMER_ACQUIRE_TIMEOUT_USEC_KHR 0x321E + +typedef EGLBoolean ( * PFNEGLSTREAMCONSUMERACQUIREKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +typedef EGLBoolean ( * PFNEGLSTREAMCONSUMERGLTEXTUREEXTERNALKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); +typedef EGLBoolean ( * PFNEGLSTREAMCONSUMERRELEASEKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); + +#define eglStreamConsumerAcquireKHR EGLEW_GET_FUN(__eglewStreamConsumerAcquireKHR) +#define eglStreamConsumerGLTextureExternalKHR EGLEW_GET_FUN(__eglewStreamConsumerGLTextureExternalKHR) +#define eglStreamConsumerReleaseKHR EGLEW_GET_FUN(__eglewStreamConsumerReleaseKHR) + +#define EGLEW_KHR_stream_consumer_gltexture EGLEW_GET_VAR(__EGLEW_KHR_stream_consumer_gltexture) + +#endif /* EGL_KHR_stream_consumer_gltexture */ + +/* -------------------- EGL_KHR_stream_cross_process_fd -------------------- */ + +#ifndef EGL_KHR_stream_cross_process_fd +#define EGL_KHR_stream_cross_process_fd 1 + +typedef EGLStreamKHR ( * PFNEGLCREATESTREAMFROMFILEDESCRIPTORKHRPROC) (EGLDisplay dpy, EGLNativeFileDescriptorKHR file_descriptor); +typedef EGLNativeFileDescriptorKHR ( * PFNEGLGETSTREAMFILEDESCRIPTORKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream); + +#define eglCreateStreamFromFileDescriptorKHR EGLEW_GET_FUN(__eglewCreateStreamFromFileDescriptorKHR) +#define eglGetStreamFileDescriptorKHR EGLEW_GET_FUN(__eglewGetStreamFileDescriptorKHR) + +#define EGLEW_KHR_stream_cross_process_fd EGLEW_GET_VAR(__EGLEW_KHR_stream_cross_process_fd) + +#endif /* EGL_KHR_stream_cross_process_fd */ + +/* -------------------------- EGL_KHR_stream_fifo -------------------------- */ + +#ifndef EGL_KHR_stream_fifo +#define EGL_KHR_stream_fifo 1 + +#define EGL_STREAM_FIFO_LENGTH_KHR 0x31FC +#define EGL_STREAM_TIME_NOW_KHR 0x31FD +#define EGL_STREAM_TIME_CONSUMER_KHR 0x31FE +#define EGL_STREAM_TIME_PRODUCER_KHR 0x31FF + +typedef EGLBoolean ( * PFNEGLQUERYSTREAMTIMEKHRPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, EGLTimeKHR * value); + +#define eglQueryStreamTimeKHR EGLEW_GET_FUN(__eglewQueryStreamTimeKHR) + +#define EGLEW_KHR_stream_fifo EGLEW_GET_VAR(__EGLEW_KHR_stream_fifo) + +#endif /* EGL_KHR_stream_fifo */ + +/* ----------------- EGL_KHR_stream_producer_aldatalocator ----------------- */ + +#ifndef EGL_KHR_stream_producer_aldatalocator +#define EGL_KHR_stream_producer_aldatalocator 1 + +#define EGLEW_KHR_stream_producer_aldatalocator EGLEW_GET_VAR(__EGLEW_KHR_stream_producer_aldatalocator) + +#endif /* EGL_KHR_stream_producer_aldatalocator */ + +/* ------------------- EGL_KHR_stream_producer_eglsurface ------------------ */ + +#ifndef EGL_KHR_stream_producer_eglsurface +#define EGL_KHR_stream_producer_eglsurface 1 + +#define EGL_STREAM_BIT_KHR 0x0800 + +typedef EGLSurface ( * PFNEGLCREATESTREAMPRODUCERSURFACEKHRPROC) (EGLDisplay dpy, EGLConfig config, EGLStreamKHR stream, const EGLint * attrib_list); + +#define eglCreateStreamProducerSurfaceKHR EGLEW_GET_FUN(__eglewCreateStreamProducerSurfaceKHR) + +#define EGLEW_KHR_stream_producer_eglsurface EGLEW_GET_VAR(__EGLEW_KHR_stream_producer_eglsurface) + +#endif /* EGL_KHR_stream_producer_eglsurface */ + +/* ---------------------- EGL_KHR_surfaceless_context ---------------------- */ + +#ifndef EGL_KHR_surfaceless_context +#define EGL_KHR_surfaceless_context 1 + +#define EGLEW_KHR_surfaceless_context EGLEW_GET_VAR(__EGLEW_KHR_surfaceless_context) + +#endif /* EGL_KHR_surfaceless_context */ + +/* -------------------- EGL_KHR_swap_buffers_with_damage ------------------- */ + +#ifndef EGL_KHR_swap_buffers_with_damage +#define EGL_KHR_swap_buffers_with_damage 1 + +typedef EGLBoolean ( * PFNEGLSWAPBUFFERSWITHDAMAGEKHRPROC) (EGLDisplay dpy, EGLSurface surface, EGLint * rects, EGLint n_rects); + +#define eglSwapBuffersWithDamageKHR EGLEW_GET_FUN(__eglewSwapBuffersWithDamageKHR) + +#define EGLEW_KHR_swap_buffers_with_damage EGLEW_GET_VAR(__EGLEW_KHR_swap_buffers_with_damage) + +#endif /* EGL_KHR_swap_buffers_with_damage */ + +/* ------------------------ EGL_KHR_vg_parent_image ------------------------ */ + +#ifndef EGL_KHR_vg_parent_image +#define EGL_KHR_vg_parent_image 1 + +#define EGL_VG_PARENT_IMAGE_KHR 0x30BA + +#define EGLEW_KHR_vg_parent_image EGLEW_GET_VAR(__EGLEW_KHR_vg_parent_image) + +#endif /* EGL_KHR_vg_parent_image */ + +/* --------------------------- EGL_KHR_wait_sync --------------------------- */ + +#ifndef EGL_KHR_wait_sync +#define EGL_KHR_wait_sync 1 + +typedef EGLint ( * PFNEGLWAITSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags); + +#define eglWaitSyncKHR EGLEW_GET_FUN(__eglewWaitSyncKHR) + +#define EGLEW_KHR_wait_sync EGLEW_GET_VAR(__EGLEW_KHR_wait_sync) + +#endif /* EGL_KHR_wait_sync */ + +/* --------------------------- EGL_MESA_drm_image -------------------------- */ + +#ifndef EGL_MESA_drm_image +#define EGL_MESA_drm_image 1 + +#define EGL_DRM_BUFFER_USE_SCANOUT_MESA 0x00000001 +#define EGL_DRM_BUFFER_USE_SHARE_MESA 0x00000002 +#define EGL_DRM_BUFFER_FORMAT_MESA 0x31D0 +#define EGL_DRM_BUFFER_USE_MESA 0x31D1 +#define EGL_DRM_BUFFER_FORMAT_ARGB32_MESA 0x31D2 +#define EGL_DRM_BUFFER_MESA 0x31D3 +#define EGL_DRM_BUFFER_STRIDE_MESA 0x31D4 + +typedef EGLImageKHR ( * PFNEGLCREATEDRMIMAGEMESAPROC) (EGLDisplay dpy, const EGLint * attrib_list); +typedef EGLBoolean ( * PFNEGLEXPORTDRMIMAGEMESAPROC) (EGLDisplay dpy, EGLImageKHR image, EGLint * name, EGLint * handle, EGLint * stride); + +#define eglCreateDRMImageMESA EGLEW_GET_FUN(__eglewCreateDRMImageMESA) +#define eglExportDRMImageMESA EGLEW_GET_FUN(__eglewExportDRMImageMESA) + +#define EGLEW_MESA_drm_image EGLEW_GET_VAR(__EGLEW_MESA_drm_image) + +#endif /* EGL_MESA_drm_image */ + +/* --------------------- EGL_MESA_image_dma_buf_export --------------------- */ + +#ifndef EGL_MESA_image_dma_buf_export +#define EGL_MESA_image_dma_buf_export 1 + +typedef EGLBoolean ( * PFNEGLEXPORTDMABUFIMAGEMESAPROC) (EGLDisplay dpy, EGLImageKHR image, int * fds, EGLint * strides, EGLint * offsets); +typedef EGLBoolean ( * PFNEGLEXPORTDMABUFIMAGEQUERYMESAPROC) (EGLDisplay dpy, EGLImageKHR image, int * fourcc, int * num_planes, EGLuint64KHR * modifiers); + +#define eglExportDMABUFImageMESA EGLEW_GET_FUN(__eglewExportDMABUFImageMESA) +#define eglExportDMABUFImageQueryMESA EGLEW_GET_FUN(__eglewExportDMABUFImageQueryMESA) + +#define EGLEW_MESA_image_dma_buf_export EGLEW_GET_VAR(__EGLEW_MESA_image_dma_buf_export) + +#endif /* EGL_MESA_image_dma_buf_export */ + +/* ------------------------- EGL_MESA_platform_gbm ------------------------- */ + +#ifndef EGL_MESA_platform_gbm +#define EGL_MESA_platform_gbm 1 + +#define EGL_PLATFORM_GBM_MESA 0x31D7 + +#define EGLEW_MESA_platform_gbm EGLEW_GET_VAR(__EGLEW_MESA_platform_gbm) + +#endif /* EGL_MESA_platform_gbm */ + +/* --------------------- EGL_MESA_platform_surfaceless --------------------- */ + +#ifndef EGL_MESA_platform_surfaceless +#define EGL_MESA_platform_surfaceless 1 + +#define EGL_PLATFORM_SURFACELESS_MESA 0x31DD + +#define EGLEW_MESA_platform_surfaceless EGLEW_GET_VAR(__EGLEW_MESA_platform_surfaceless) + +#endif /* EGL_MESA_platform_surfaceless */ + +/* -------------------------- EGL_NOK_swap_region -------------------------- */ + +#ifndef EGL_NOK_swap_region +#define EGL_NOK_swap_region 1 + +typedef EGLBoolean ( * PFNEGLSWAPBUFFERSREGIONNOKPROC) (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint * rects); + +#define eglSwapBuffersRegionNOK EGLEW_GET_FUN(__eglewSwapBuffersRegionNOK) + +#define EGLEW_NOK_swap_region EGLEW_GET_VAR(__EGLEW_NOK_swap_region) + +#endif /* EGL_NOK_swap_region */ + +/* -------------------------- EGL_NOK_swap_region2 ------------------------- */ + +#ifndef EGL_NOK_swap_region2 +#define EGL_NOK_swap_region2 1 + +typedef EGLBoolean ( * PFNEGLSWAPBUFFERSREGION2NOKPROC) (EGLDisplay dpy, EGLSurface surface, EGLint numRects, const EGLint * rects); + +#define eglSwapBuffersRegion2NOK EGLEW_GET_FUN(__eglewSwapBuffersRegion2NOK) + +#define EGLEW_NOK_swap_region2 EGLEW_GET_VAR(__EGLEW_NOK_swap_region2) + +#endif /* EGL_NOK_swap_region2 */ + +/* ---------------------- EGL_NOK_texture_from_pixmap ---------------------- */ + +#ifndef EGL_NOK_texture_from_pixmap +#define EGL_NOK_texture_from_pixmap 1 + +#define EGL_Y_INVERTED_NOK 0x307F + +#define EGLEW_NOK_texture_from_pixmap EGLEW_GET_VAR(__EGLEW_NOK_texture_from_pixmap) + +#endif /* EGL_NOK_texture_from_pixmap */ + +/* ------------------------ EGL_NV_3dvision_surface ------------------------ */ + +#ifndef EGL_NV_3dvision_surface +#define EGL_NV_3dvision_surface 1 + +#define EGL_AUTO_STEREO_NV 0x3136 + +#define EGLEW_NV_3dvision_surface EGLEW_GET_VAR(__EGLEW_NV_3dvision_surface) + +#endif /* EGL_NV_3dvision_surface */ + +/* ------------------------- EGL_NV_coverage_sample ------------------------ */ + +#ifndef EGL_NV_coverage_sample +#define EGL_NV_coverage_sample 1 + +#define EGL_COVERAGE_BUFFERS_NV 0x30E0 +#define EGL_COVERAGE_SAMPLES_NV 0x30E1 + +#define EGLEW_NV_coverage_sample EGLEW_GET_VAR(__EGLEW_NV_coverage_sample) + +#endif /* EGL_NV_coverage_sample */ + +/* --------------------- EGL_NV_coverage_sample_resolve -------------------- */ + +#ifndef EGL_NV_coverage_sample_resolve +#define EGL_NV_coverage_sample_resolve 1 + +#define EGL_COVERAGE_SAMPLE_RESOLVE_NV 0x3131 +#define EGL_COVERAGE_SAMPLE_RESOLVE_DEFAULT_NV 0x3132 +#define EGL_COVERAGE_SAMPLE_RESOLVE_NONE_NV 0x3133 + +#define EGLEW_NV_coverage_sample_resolve EGLEW_GET_VAR(__EGLEW_NV_coverage_sample_resolve) + +#endif /* EGL_NV_coverage_sample_resolve */ + +/* --------------------------- EGL_NV_cuda_event --------------------------- */ + +#ifndef EGL_NV_cuda_event +#define EGL_NV_cuda_event 1 + +#define EGL_CUDA_EVENT_HANDLE_NV 0x323B +#define EGL_SYNC_CUDA_EVENT_NV 0x323C +#define EGL_SYNC_CUDA_EVENT_COMPLETE_NV 0x323D + +#define EGLEW_NV_cuda_event EGLEW_GET_VAR(__EGLEW_NV_cuda_event) + +#endif /* EGL_NV_cuda_event */ + +/* ------------------------- EGL_NV_depth_nonlinear ------------------------ */ + +#ifndef EGL_NV_depth_nonlinear +#define EGL_NV_depth_nonlinear 1 + +#define EGL_DEPTH_ENCODING_NONE_NV 0 +#define EGL_DEPTH_ENCODING_NV 0x30E2 +#define EGL_DEPTH_ENCODING_NONLINEAR_NV 0x30E3 + +#define EGLEW_NV_depth_nonlinear EGLEW_GET_VAR(__EGLEW_NV_depth_nonlinear) + +#endif /* EGL_NV_depth_nonlinear */ + +/* --------------------------- EGL_NV_device_cuda -------------------------- */ + +#ifndef EGL_NV_device_cuda +#define EGL_NV_device_cuda 1 + +#define EGL_CUDA_DEVICE_NV 0x323A + +#define EGLEW_NV_device_cuda EGLEW_GET_VAR(__EGLEW_NV_device_cuda) + +#endif /* EGL_NV_device_cuda */ + +/* -------------------------- EGL_NV_native_query -------------------------- */ + +#ifndef EGL_NV_native_query +#define EGL_NV_native_query 1 + +typedef EGLBoolean ( * PFNEGLQUERYNATIVEDISPLAYNVPROC) (EGLDisplay dpy, EGLNativeDisplayType * display_id); +typedef EGLBoolean ( * PFNEGLQUERYNATIVEPIXMAPNVPROC) (EGLDisplay dpy, EGLSurface surf, EGLNativePixmapType * pixmap); +typedef EGLBoolean ( * PFNEGLQUERYNATIVEWINDOWNVPROC) (EGLDisplay dpy, EGLSurface surf, EGLNativeWindowType * window); + +#define eglQueryNativeDisplayNV EGLEW_GET_FUN(__eglewQueryNativeDisplayNV) +#define eglQueryNativePixmapNV EGLEW_GET_FUN(__eglewQueryNativePixmapNV) +#define eglQueryNativeWindowNV EGLEW_GET_FUN(__eglewQueryNativeWindowNV) + +#define EGLEW_NV_native_query EGLEW_GET_VAR(__EGLEW_NV_native_query) + +#endif /* EGL_NV_native_query */ + +/* ---------------------- EGL_NV_post_convert_rounding --------------------- */ + +#ifndef EGL_NV_post_convert_rounding +#define EGL_NV_post_convert_rounding 1 + +#define EGLEW_NV_post_convert_rounding EGLEW_GET_VAR(__EGLEW_NV_post_convert_rounding) + +#endif /* EGL_NV_post_convert_rounding */ + +/* ------------------------- EGL_NV_post_sub_buffer ------------------------ */ + +#ifndef EGL_NV_post_sub_buffer +#define EGL_NV_post_sub_buffer 1 + +#define EGL_POST_SUB_BUFFER_SUPPORTED_NV 0x30BE + +typedef EGLBoolean ( * PFNEGLPOSTSUBBUFFERNVPROC) (EGLDisplay dpy, EGLSurface surface, EGLint x, EGLint y, EGLint width, EGLint height); + +#define eglPostSubBufferNV EGLEW_GET_FUN(__eglewPostSubBufferNV) + +#define EGLEW_NV_post_sub_buffer EGLEW_GET_VAR(__EGLEW_NV_post_sub_buffer) + +#endif /* EGL_NV_post_sub_buffer */ + +/* ------------------ EGL_NV_robustness_video_memory_purge ----------------- */ + +#ifndef EGL_NV_robustness_video_memory_purge +#define EGL_NV_robustness_video_memory_purge 1 + +#define EGL_GENERATE_RESET_ON_VIDEO_MEMORY_PURGE_NV 0x334C + +#define EGLEW_NV_robustness_video_memory_purge EGLEW_GET_VAR(__EGLEW_NV_robustness_video_memory_purge) + +#endif /* EGL_NV_robustness_video_memory_purge */ + +/* ------------------ EGL_NV_stream_consumer_gltexture_yuv ----------------- */ + +#ifndef EGL_NV_stream_consumer_gltexture_yuv +#define EGL_NV_stream_consumer_gltexture_yuv 1 + +#define EGL_YUV_BUFFER_EXT 0x3300 +#define EGL_YUV_NUMBER_OF_PLANES_EXT 0x3311 +#define EGL_YUV_PLANE0_TEXTURE_UNIT_NV 0x332C +#define EGL_YUV_PLANE1_TEXTURE_UNIT_NV 0x332D +#define EGL_YUV_PLANE2_TEXTURE_UNIT_NV 0x332E + +typedef EGLBoolean ( * PFNEGLSTREAMCONSUMERGLTEXTUREEXTERNALATTRIBSNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLAttrib *attrib_list); + +#define eglStreamConsumerGLTextureExternalAttribsNV EGLEW_GET_FUN(__eglewStreamConsumerGLTextureExternalAttribsNV) + +#define EGLEW_NV_stream_consumer_gltexture_yuv EGLEW_GET_VAR(__EGLEW_NV_stream_consumer_gltexture_yuv) + +#endif /* EGL_NV_stream_consumer_gltexture_yuv */ + +/* ---------------------- EGL_NV_stream_cross_display ---------------------- */ + +#ifndef EGL_NV_stream_cross_display +#define EGL_NV_stream_cross_display 1 + +#define EGL_STREAM_CROSS_DISPLAY_NV 0x334E + +#define EGLEW_NV_stream_cross_display EGLEW_GET_VAR(__EGLEW_NV_stream_cross_display) + +#endif /* EGL_NV_stream_cross_display */ + +/* ----------------------- EGL_NV_stream_cross_object ---------------------- */ + +#ifndef EGL_NV_stream_cross_object +#define EGL_NV_stream_cross_object 1 + +#define EGL_STREAM_CROSS_OBJECT_NV 0x334D + +#define EGLEW_NV_stream_cross_object EGLEW_GET_VAR(__EGLEW_NV_stream_cross_object) + +#endif /* EGL_NV_stream_cross_object */ + +/* --------------------- EGL_NV_stream_cross_partition --------------------- */ + +#ifndef EGL_NV_stream_cross_partition +#define EGL_NV_stream_cross_partition 1 + +#define EGL_STREAM_CROSS_PARTITION_NV 0x323F + +#define EGLEW_NV_stream_cross_partition EGLEW_GET_VAR(__EGLEW_NV_stream_cross_partition) + +#endif /* EGL_NV_stream_cross_partition */ + +/* ---------------------- EGL_NV_stream_cross_process ---------------------- */ + +#ifndef EGL_NV_stream_cross_process +#define EGL_NV_stream_cross_process 1 + +#define EGL_STREAM_CROSS_PROCESS_NV 0x3245 + +#define EGLEW_NV_stream_cross_process EGLEW_GET_VAR(__EGLEW_NV_stream_cross_process) + +#endif /* EGL_NV_stream_cross_process */ + +/* ----------------------- EGL_NV_stream_cross_system ---------------------- */ + +#ifndef EGL_NV_stream_cross_system +#define EGL_NV_stream_cross_system 1 + +#define EGL_STREAM_CROSS_SYSTEM_NV 0x334F + +#define EGLEW_NV_stream_cross_system EGLEW_GET_VAR(__EGLEW_NV_stream_cross_system) + +#endif /* EGL_NV_stream_cross_system */ + +/* ------------------------ EGL_NV_stream_fifo_next ------------------------ */ + +#ifndef EGL_NV_stream_fifo_next +#define EGL_NV_stream_fifo_next 1 + +#define EGL_PENDING_FRAME_NV 0x3329 +#define EGL_STREAM_TIME_PENDING_NV 0x332A + +#define EGLEW_NV_stream_fifo_next EGLEW_GET_VAR(__EGLEW_NV_stream_fifo_next) + +#endif /* EGL_NV_stream_fifo_next */ + +/* --------------------- EGL_NV_stream_fifo_synchronous -------------------- */ + +#ifndef EGL_NV_stream_fifo_synchronous +#define EGL_NV_stream_fifo_synchronous 1 + +#define EGL_STREAM_FIFO_SYNCHRONOUS_NV 0x3336 + +#define EGLEW_NV_stream_fifo_synchronous EGLEW_GET_VAR(__EGLEW_NV_stream_fifo_synchronous) + +#endif /* EGL_NV_stream_fifo_synchronous */ + +/* ----------------------- EGL_NV_stream_frame_limits ---------------------- */ + +#ifndef EGL_NV_stream_frame_limits +#define EGL_NV_stream_frame_limits 1 + +#define EGL_PRODUCER_MAX_FRAME_HINT_NV 0x3337 +#define EGL_CONSUMER_MAX_FRAME_HINT_NV 0x3338 + +#define EGLEW_NV_stream_frame_limits EGLEW_GET_VAR(__EGLEW_NV_stream_frame_limits) + +#endif /* EGL_NV_stream_frame_limits */ + +/* ------------------------- EGL_NV_stream_metadata ------------------------ */ + +#ifndef EGL_NV_stream_metadata +#define EGL_NV_stream_metadata 1 + +#define EGL_MAX_STREAM_METADATA_BLOCKS_NV 0x3250 +#define EGL_MAX_STREAM_METADATA_BLOCK_SIZE_NV 0x3251 +#define EGL_MAX_STREAM_METADATA_TOTAL_SIZE_NV 0x3252 +#define EGL_PRODUCER_METADATA_NV 0x3253 +#define EGL_CONSUMER_METADATA_NV 0x3254 +#define EGL_METADATA0_SIZE_NV 0x3255 +#define EGL_METADATA1_SIZE_NV 0x3256 +#define EGL_METADATA2_SIZE_NV 0x3257 +#define EGL_METADATA3_SIZE_NV 0x3258 +#define EGL_METADATA0_TYPE_NV 0x3259 +#define EGL_METADATA1_TYPE_NV 0x325A +#define EGL_METADATA2_TYPE_NV 0x325B +#define EGL_METADATA3_TYPE_NV 0x325C +#define EGL_PENDING_METADATA_NV 0x3328 + +typedef EGLBoolean ( * PFNEGLQUERYDISPLAYATTRIBNVPROC) (EGLDisplay dpy, EGLint attribute, EGLAttrib * value); +typedef EGLBoolean ( * PFNEGLQUERYSTREAMMETADATANVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum name, EGLint n, EGLint offset, EGLint size, void * data); +typedef EGLBoolean ( * PFNEGLSETSTREAMMETADATANVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLint n, EGLint offset, EGLint size, const void * data); + +#define eglQueryDisplayAttribNV EGLEW_GET_FUN(__eglewQueryDisplayAttribNV) +#define eglQueryStreamMetadataNV EGLEW_GET_FUN(__eglewQueryStreamMetadataNV) +#define eglSetStreamMetadataNV EGLEW_GET_FUN(__eglewSetStreamMetadataNV) + +#define EGLEW_NV_stream_metadata EGLEW_GET_VAR(__EGLEW_NV_stream_metadata) + +#endif /* EGL_NV_stream_metadata */ + +/* -------------------------- EGL_NV_stream_remote ------------------------- */ + +#ifndef EGL_NV_stream_remote +#define EGL_NV_stream_remote 1 + +#define EGL_STREAM_STATE_INITIALIZING_NV 0x3240 +#define EGL_STREAM_TYPE_NV 0x3241 +#define EGL_STREAM_PROTOCOL_NV 0x3242 +#define EGL_STREAM_ENDPOINT_NV 0x3243 +#define EGL_STREAM_LOCAL_NV 0x3244 +#define EGL_STREAM_PROTOCOL_FD_NV 0x3246 +#define EGL_STREAM_PRODUCER_NV 0x3247 +#define EGL_STREAM_CONSUMER_NV 0x3248 + +#define EGLEW_NV_stream_remote EGLEW_GET_VAR(__EGLEW_NV_stream_remote) + +#endif /* EGL_NV_stream_remote */ + +/* -------------------------- EGL_NV_stream_reset -------------------------- */ + +#ifndef EGL_NV_stream_reset +#define EGL_NV_stream_reset 1 + +#define EGL_SUPPORT_RESET_NV 0x3334 +#define EGL_SUPPORT_REUSE_NV 0x3335 + +typedef EGLBoolean ( * PFNEGLRESETSTREAMNVPROC) (EGLDisplay dpy, EGLStreamKHR stream); + +#define eglResetStreamNV EGLEW_GET_FUN(__eglewResetStreamNV) + +#define EGLEW_NV_stream_reset EGLEW_GET_VAR(__EGLEW_NV_stream_reset) + +#endif /* EGL_NV_stream_reset */ + +/* -------------------------- EGL_NV_stream_socket ------------------------- */ + +#ifndef EGL_NV_stream_socket +#define EGL_NV_stream_socket 1 + +#define EGL_STREAM_PROTOCOL_SOCKET_NV 0x324B +#define EGL_SOCKET_HANDLE_NV 0x324C +#define EGL_SOCKET_TYPE_NV 0x324D + +#define EGLEW_NV_stream_socket EGLEW_GET_VAR(__EGLEW_NV_stream_socket) + +#endif /* EGL_NV_stream_socket */ + +/* ----------------------- EGL_NV_stream_socket_inet ----------------------- */ + +#ifndef EGL_NV_stream_socket_inet +#define EGL_NV_stream_socket_inet 1 + +#define EGL_SOCKET_TYPE_INET_NV 0x324F + +#define EGLEW_NV_stream_socket_inet EGLEW_GET_VAR(__EGLEW_NV_stream_socket_inet) + +#endif /* EGL_NV_stream_socket_inet */ + +/* ----------------------- EGL_NV_stream_socket_unix ----------------------- */ + +#ifndef EGL_NV_stream_socket_unix +#define EGL_NV_stream_socket_unix 1 + +#define EGL_SOCKET_TYPE_UNIX_NV 0x324E + +#define EGLEW_NV_stream_socket_unix EGLEW_GET_VAR(__EGLEW_NV_stream_socket_unix) + +#endif /* EGL_NV_stream_socket_unix */ + +/* --------------------------- EGL_NV_stream_sync -------------------------- */ + +#ifndef EGL_NV_stream_sync +#define EGL_NV_stream_sync 1 + +#define EGL_SYNC_TYPE_KHR 0x30F7 +#define EGL_SYNC_NEW_FRAME_NV 0x321F + +typedef EGLSyncKHR ( * PFNEGLCREATESTREAMSYNCNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLenum type, const EGLint * attrib_list); + +#define eglCreateStreamSyncNV EGLEW_GET_FUN(__eglewCreateStreamSyncNV) + +#define EGLEW_NV_stream_sync EGLEW_GET_VAR(__EGLEW_NV_stream_sync) + +#endif /* EGL_NV_stream_sync */ + +/* ------------------------------ EGL_NV_sync ------------------------------ */ + +#ifndef EGL_NV_sync +#define EGL_NV_sync 1 + +#define EGL_SYNC_FLUSH_COMMANDS_BIT_NV 0x0001 +#define EGL_SYNC_PRIOR_COMMANDS_COMPLETE_NV 0x30E6 +#define EGL_SYNC_STATUS_NV 0x30E7 +#define EGL_SIGNALED_NV 0x30E8 +#define EGL_UNSIGNALED_NV 0x30E9 +#define EGL_ALREADY_SIGNALED_NV 0x30EA +#define EGL_TIMEOUT_EXPIRED_NV 0x30EB +#define EGL_CONDITION_SATISFIED_NV 0x30EC +#define EGL_SYNC_TYPE_NV 0x30ED +#define EGL_SYNC_CONDITION_NV 0x30EE +#define EGL_SYNC_FENCE_NV 0x30EF +#define EGL_FOREVER_NV 0xFFFFFFFFFFFFFFFF + +typedef EGLint ( * PFNEGLCLIENTWAITSYNCNVPROC) (EGLSyncNV sync, EGLint flags, EGLTimeNV timeout); +typedef EGLSyncNV ( * PFNEGLCREATEFENCESYNCNVPROC) (EGLDisplay dpy, EGLenum condition, const EGLint * attrib_list); +typedef EGLBoolean ( * PFNEGLDESTROYSYNCNVPROC) (EGLSyncNV sync); +typedef EGLBoolean ( * PFNEGLFENCENVPROC) (EGLSyncNV sync); +typedef EGLBoolean ( * PFNEGLGETSYNCATTRIBNVPROC) (EGLSyncNV sync, EGLint attribute, EGLint * value); +typedef EGLBoolean ( * PFNEGLSIGNALSYNCNVPROC) (EGLSyncNV sync, EGLenum mode); + +#define eglClientWaitSyncNV EGLEW_GET_FUN(__eglewClientWaitSyncNV) +#define eglCreateFenceSyncNV EGLEW_GET_FUN(__eglewCreateFenceSyncNV) +#define eglDestroySyncNV EGLEW_GET_FUN(__eglewDestroySyncNV) +#define eglFenceNV EGLEW_GET_FUN(__eglewFenceNV) +#define eglGetSyncAttribNV EGLEW_GET_FUN(__eglewGetSyncAttribNV) +#define eglSignalSyncNV EGLEW_GET_FUN(__eglewSignalSyncNV) + +#define EGLEW_NV_sync EGLEW_GET_VAR(__EGLEW_NV_sync) + +#endif /* EGL_NV_sync */ + +/* --------------------------- EGL_NV_system_time -------------------------- */ + +#ifndef EGL_NV_system_time +#define EGL_NV_system_time 1 + +typedef EGLuint64NV ( * PFNEGLGETSYSTEMTIMEFREQUENCYNVPROC) ( void ); +typedef EGLuint64NV ( * PFNEGLGETSYSTEMTIMENVPROC) ( void ); + +#define eglGetSystemTimeFrequencyNV EGLEW_GET_FUN(__eglewGetSystemTimeFrequencyNV) +#define eglGetSystemTimeNV EGLEW_GET_FUN(__eglewGetSystemTimeNV) + +#define EGLEW_NV_system_time EGLEW_GET_VAR(__EGLEW_NV_system_time) + +#endif /* EGL_NV_system_time */ + +/* --------------------- EGL_TIZEN_image_native_buffer --------------------- */ + +#ifndef EGL_TIZEN_image_native_buffer +#define EGL_TIZEN_image_native_buffer 1 + +#define EGL_NATIVE_BUFFER_TIZEN 0x32A0 + +#define EGLEW_TIZEN_image_native_buffer EGLEW_GET_VAR(__EGLEW_TIZEN_image_native_buffer) + +#endif /* EGL_TIZEN_image_native_buffer */ + +/* --------------------- EGL_TIZEN_image_native_surface -------------------- */ + +#ifndef EGL_TIZEN_image_native_surface +#define EGL_TIZEN_image_native_surface 1 + +#define EGL_NATIVE_SURFACE_TIZEN 0x32A1 + +#define EGLEW_TIZEN_image_native_surface EGLEW_GET_VAR(__EGLEW_TIZEN_image_native_surface) + +#endif /* EGL_TIZEN_image_native_surface */ + +/* ------------------------------------------------------------------------- */ + +#define EGLEW_FUN_EXPORT GLEW_FUN_EXPORT +#define EGLEW_VAR_EXPORT GLEW_VAR_EXPORT + +EGLEW_FUN_EXPORT PFNEGLCHOOSECONFIGPROC __eglewChooseConfig; +EGLEW_FUN_EXPORT PFNEGLCOPYBUFFERSPROC __eglewCopyBuffers; +EGLEW_FUN_EXPORT PFNEGLCREATECONTEXTPROC __eglewCreateContext; +EGLEW_FUN_EXPORT PFNEGLCREATEPBUFFERSURFACEPROC __eglewCreatePbufferSurface; +EGLEW_FUN_EXPORT PFNEGLCREATEPIXMAPSURFACEPROC __eglewCreatePixmapSurface; +EGLEW_FUN_EXPORT PFNEGLCREATEWINDOWSURFACEPROC __eglewCreateWindowSurface; +EGLEW_FUN_EXPORT PFNEGLDESTROYCONTEXTPROC __eglewDestroyContext; +EGLEW_FUN_EXPORT PFNEGLDESTROYSURFACEPROC __eglewDestroySurface; +EGLEW_FUN_EXPORT PFNEGLGETCONFIGATTRIBPROC __eglewGetConfigAttrib; +EGLEW_FUN_EXPORT PFNEGLGETCONFIGSPROC __eglewGetConfigs; +EGLEW_FUN_EXPORT PFNEGLGETCURRENTDISPLAYPROC __eglewGetCurrentDisplay; +EGLEW_FUN_EXPORT PFNEGLGETCURRENTSURFACEPROC __eglewGetCurrentSurface; +EGLEW_FUN_EXPORT PFNEGLGETDISPLAYPROC __eglewGetDisplay; +EGLEW_FUN_EXPORT PFNEGLGETERRORPROC __eglewGetError; +EGLEW_FUN_EXPORT PFNEGLINITIALIZEPROC __eglewInitialize; +EGLEW_FUN_EXPORT PFNEGLMAKECURRENTPROC __eglewMakeCurrent; +EGLEW_FUN_EXPORT PFNEGLQUERYCONTEXTPROC __eglewQueryContext; +EGLEW_FUN_EXPORT PFNEGLQUERYSTRINGPROC __eglewQueryString; +EGLEW_FUN_EXPORT PFNEGLQUERYSURFACEPROC __eglewQuerySurface; +EGLEW_FUN_EXPORT PFNEGLSWAPBUFFERSPROC __eglewSwapBuffers; +EGLEW_FUN_EXPORT PFNEGLTERMINATEPROC __eglewTerminate; +EGLEW_FUN_EXPORT PFNEGLWAITGLPROC __eglewWaitGL; +EGLEW_FUN_EXPORT PFNEGLWAITNATIVEPROC __eglewWaitNative; + +EGLEW_FUN_EXPORT PFNEGLBINDTEXIMAGEPROC __eglewBindTexImage; +EGLEW_FUN_EXPORT PFNEGLRELEASETEXIMAGEPROC __eglewReleaseTexImage; +EGLEW_FUN_EXPORT PFNEGLSURFACEATTRIBPROC __eglewSurfaceAttrib; +EGLEW_FUN_EXPORT PFNEGLSWAPINTERVALPROC __eglewSwapInterval; + +EGLEW_FUN_EXPORT PFNEGLBINDAPIPROC __eglewBindAPI; +EGLEW_FUN_EXPORT PFNEGLCREATEPBUFFERFROMCLIENTBUFFERPROC __eglewCreatePbufferFromClientBuffer; +EGLEW_FUN_EXPORT PFNEGLQUERYAPIPROC __eglewQueryAPI; +EGLEW_FUN_EXPORT PFNEGLRELEASETHREADPROC __eglewReleaseThread; +EGLEW_FUN_EXPORT PFNEGLWAITCLIENTPROC __eglewWaitClient; + +EGLEW_FUN_EXPORT PFNEGLGETCURRENTCONTEXTPROC __eglewGetCurrentContext; + +EGLEW_FUN_EXPORT PFNEGLCLIENTWAITSYNCPROC __eglewClientWaitSync; +EGLEW_FUN_EXPORT PFNEGLCREATEIMAGEPROC __eglewCreateImage; +EGLEW_FUN_EXPORT PFNEGLCREATEPLATFORMPIXMAPSURFACEPROC __eglewCreatePlatformPixmapSurface; +EGLEW_FUN_EXPORT PFNEGLCREATEPLATFORMWINDOWSURFACEPROC __eglewCreatePlatformWindowSurface; +EGLEW_FUN_EXPORT PFNEGLCREATESYNCPROC __eglewCreateSync; +EGLEW_FUN_EXPORT PFNEGLDESTROYIMAGEPROC __eglewDestroyImage; +EGLEW_FUN_EXPORT PFNEGLDESTROYSYNCPROC __eglewDestroySync; +EGLEW_FUN_EXPORT PFNEGLGETPLATFORMDISPLAYPROC __eglewGetPlatformDisplay; +EGLEW_FUN_EXPORT PFNEGLGETSYNCATTRIBPROC __eglewGetSyncAttrib; +EGLEW_FUN_EXPORT PFNEGLWAITSYNCPROC __eglewWaitSync; + +EGLEW_FUN_EXPORT PFNEGLSETBLOBCACHEFUNCSANDROIDPROC __eglewSetBlobCacheFuncsANDROID; + +EGLEW_FUN_EXPORT PFNEGLCREATENATIVECLIENTBUFFERANDROIDPROC __eglewCreateNativeClientBufferANDROID; + +EGLEW_FUN_EXPORT PFNEGLDUPNATIVEFENCEFDANDROIDPROC __eglewDupNativeFenceFDANDROID; + +EGLEW_FUN_EXPORT PFNEGLPRESENTATIONTIMEANDROIDPROC __eglewPresentationTimeANDROID; + +EGLEW_FUN_EXPORT PFNEGLQUERYSURFACEPOINTERANGLEPROC __eglewQuerySurfacePointerANGLE; + +EGLEW_FUN_EXPORT PFNEGLQUERYDEVICESEXTPROC __eglewQueryDevicesEXT; + +EGLEW_FUN_EXPORT PFNEGLQUERYDEVICEATTRIBEXTPROC __eglewQueryDeviceAttribEXT; +EGLEW_FUN_EXPORT PFNEGLQUERYDEVICESTRINGEXTPROC __eglewQueryDeviceStringEXT; +EGLEW_FUN_EXPORT PFNEGLQUERYDISPLAYATTRIBEXTPROC __eglewQueryDisplayAttribEXT; + +EGLEW_FUN_EXPORT PFNEGLQUERYDMABUFFORMATSEXTPROC __eglewQueryDmaBufFormatsEXT; +EGLEW_FUN_EXPORT PFNEGLQUERYDMABUFMODIFIERSEXTPROC __eglewQueryDmaBufModifiersEXT; + +EGLEW_FUN_EXPORT PFNEGLGETOUTPUTLAYERSEXTPROC __eglewGetOutputLayersEXT; +EGLEW_FUN_EXPORT PFNEGLGETOUTPUTPORTSEXTPROC __eglewGetOutputPortsEXT; +EGLEW_FUN_EXPORT PFNEGLOUTPUTLAYERATTRIBEXTPROC __eglewOutputLayerAttribEXT; +EGLEW_FUN_EXPORT PFNEGLOUTPUTPORTATTRIBEXTPROC __eglewOutputPortAttribEXT; +EGLEW_FUN_EXPORT PFNEGLQUERYOUTPUTLAYERATTRIBEXTPROC __eglewQueryOutputLayerAttribEXT; +EGLEW_FUN_EXPORT PFNEGLQUERYOUTPUTLAYERSTRINGEXTPROC __eglewQueryOutputLayerStringEXT; +EGLEW_FUN_EXPORT PFNEGLQUERYOUTPUTPORTATTRIBEXTPROC __eglewQueryOutputPortAttribEXT; +EGLEW_FUN_EXPORT PFNEGLQUERYOUTPUTPORTSTRINGEXTPROC __eglewQueryOutputPortStringEXT; + +EGLEW_FUN_EXPORT PFNEGLCREATEPLATFORMPIXMAPSURFACEEXTPROC __eglewCreatePlatformPixmapSurfaceEXT; +EGLEW_FUN_EXPORT PFNEGLCREATEPLATFORMWINDOWSURFACEEXTPROC __eglewCreatePlatformWindowSurfaceEXT; +EGLEW_FUN_EXPORT PFNEGLGETPLATFORMDISPLAYEXTPROC __eglewGetPlatformDisplayEXT; + +EGLEW_FUN_EXPORT PFNEGLSTREAMCONSUMEROUTPUTEXTPROC __eglewStreamConsumerOutputEXT; + +EGLEW_FUN_EXPORT PFNEGLSWAPBUFFERSWITHDAMAGEEXTPROC __eglewSwapBuffersWithDamageEXT; + +EGLEW_FUN_EXPORT PFNEGLCREATEPIXMAPSURFACEHIPROC __eglewCreatePixmapSurfaceHI; + +EGLEW_FUN_EXPORT PFNEGLCREATESYNC64KHRPROC __eglewCreateSync64KHR; + +EGLEW_FUN_EXPORT PFNEGLDEBUGMESSAGECONTROLKHRPROC __eglewDebugMessageControlKHR; +EGLEW_FUN_EXPORT PFNEGLLABELOBJECTKHRPROC __eglewLabelObjectKHR; +EGLEW_FUN_EXPORT PFNEGLQUERYDEBUGKHRPROC __eglewQueryDebugKHR; + +EGLEW_FUN_EXPORT PFNEGLCREATEIMAGEKHRPROC __eglewCreateImageKHR; +EGLEW_FUN_EXPORT PFNEGLDESTROYIMAGEKHRPROC __eglewDestroyImageKHR; + +EGLEW_FUN_EXPORT PFNEGLLOCKSURFACEKHRPROC __eglewLockSurfaceKHR; +EGLEW_FUN_EXPORT PFNEGLUNLOCKSURFACEKHRPROC __eglewUnlockSurfaceKHR; + +EGLEW_FUN_EXPORT PFNEGLQUERYSURFACE64KHRPROC __eglewQuerySurface64KHR; + +EGLEW_FUN_EXPORT PFNEGLSETDAMAGEREGIONKHRPROC __eglewSetDamageRegionKHR; + +EGLEW_FUN_EXPORT PFNEGLCLIENTWAITSYNCKHRPROC __eglewClientWaitSyncKHR; +EGLEW_FUN_EXPORT PFNEGLCREATESYNCKHRPROC __eglewCreateSyncKHR; +EGLEW_FUN_EXPORT PFNEGLDESTROYSYNCKHRPROC __eglewDestroySyncKHR; +EGLEW_FUN_EXPORT PFNEGLGETSYNCATTRIBKHRPROC __eglewGetSyncAttribKHR; +EGLEW_FUN_EXPORT PFNEGLSIGNALSYNCKHRPROC __eglewSignalSyncKHR; + +EGLEW_FUN_EXPORT PFNEGLCREATESTREAMKHRPROC __eglewCreateStreamKHR; +EGLEW_FUN_EXPORT PFNEGLDESTROYSTREAMKHRPROC __eglewDestroyStreamKHR; +EGLEW_FUN_EXPORT PFNEGLQUERYSTREAMKHRPROC __eglewQueryStreamKHR; +EGLEW_FUN_EXPORT PFNEGLQUERYSTREAMU64KHRPROC __eglewQueryStreamu64KHR; +EGLEW_FUN_EXPORT PFNEGLSTREAMATTRIBKHRPROC __eglewStreamAttribKHR; + +EGLEW_FUN_EXPORT PFNEGLCREATESTREAMATTRIBKHRPROC __eglewCreateStreamAttribKHR; +EGLEW_FUN_EXPORT PFNEGLQUERYSTREAMATTRIBKHRPROC __eglewQueryStreamAttribKHR; +EGLEW_FUN_EXPORT PFNEGLSETSTREAMATTRIBKHRPROC __eglewSetStreamAttribKHR; +EGLEW_FUN_EXPORT PFNEGLSTREAMCONSUMERACQUIREATTRIBKHRPROC __eglewStreamConsumerAcquireAttribKHR; +EGLEW_FUN_EXPORT PFNEGLSTREAMCONSUMERRELEASEATTRIBKHRPROC __eglewStreamConsumerReleaseAttribKHR; + +EGLEW_FUN_EXPORT PFNEGLSTREAMCONSUMERACQUIREKHRPROC __eglewStreamConsumerAcquireKHR; +EGLEW_FUN_EXPORT PFNEGLSTREAMCONSUMERGLTEXTUREEXTERNALKHRPROC __eglewStreamConsumerGLTextureExternalKHR; +EGLEW_FUN_EXPORT PFNEGLSTREAMCONSUMERRELEASEKHRPROC __eglewStreamConsumerReleaseKHR; + +EGLEW_FUN_EXPORT PFNEGLCREATESTREAMFROMFILEDESCRIPTORKHRPROC __eglewCreateStreamFromFileDescriptorKHR; +EGLEW_FUN_EXPORT PFNEGLGETSTREAMFILEDESCRIPTORKHRPROC __eglewGetStreamFileDescriptorKHR; + +EGLEW_FUN_EXPORT PFNEGLQUERYSTREAMTIMEKHRPROC __eglewQueryStreamTimeKHR; + +EGLEW_FUN_EXPORT PFNEGLCREATESTREAMPRODUCERSURFACEKHRPROC __eglewCreateStreamProducerSurfaceKHR; + +EGLEW_FUN_EXPORT PFNEGLSWAPBUFFERSWITHDAMAGEKHRPROC __eglewSwapBuffersWithDamageKHR; + +EGLEW_FUN_EXPORT PFNEGLWAITSYNCKHRPROC __eglewWaitSyncKHR; + +EGLEW_FUN_EXPORT PFNEGLCREATEDRMIMAGEMESAPROC __eglewCreateDRMImageMESA; +EGLEW_FUN_EXPORT PFNEGLEXPORTDRMIMAGEMESAPROC __eglewExportDRMImageMESA; + +EGLEW_FUN_EXPORT PFNEGLEXPORTDMABUFIMAGEMESAPROC __eglewExportDMABUFImageMESA; +EGLEW_FUN_EXPORT PFNEGLEXPORTDMABUFIMAGEQUERYMESAPROC __eglewExportDMABUFImageQueryMESA; + +EGLEW_FUN_EXPORT PFNEGLSWAPBUFFERSREGIONNOKPROC __eglewSwapBuffersRegionNOK; + +EGLEW_FUN_EXPORT PFNEGLSWAPBUFFERSREGION2NOKPROC __eglewSwapBuffersRegion2NOK; + +EGLEW_FUN_EXPORT PFNEGLQUERYNATIVEDISPLAYNVPROC __eglewQueryNativeDisplayNV; +EGLEW_FUN_EXPORT PFNEGLQUERYNATIVEPIXMAPNVPROC __eglewQueryNativePixmapNV; +EGLEW_FUN_EXPORT PFNEGLQUERYNATIVEWINDOWNVPROC __eglewQueryNativeWindowNV; + +EGLEW_FUN_EXPORT PFNEGLPOSTSUBBUFFERNVPROC __eglewPostSubBufferNV; + +EGLEW_FUN_EXPORT PFNEGLSTREAMCONSUMERGLTEXTUREEXTERNALATTRIBSNVPROC __eglewStreamConsumerGLTextureExternalAttribsNV; + +EGLEW_FUN_EXPORT PFNEGLQUERYDISPLAYATTRIBNVPROC __eglewQueryDisplayAttribNV; +EGLEW_FUN_EXPORT PFNEGLQUERYSTREAMMETADATANVPROC __eglewQueryStreamMetadataNV; +EGLEW_FUN_EXPORT PFNEGLSETSTREAMMETADATANVPROC __eglewSetStreamMetadataNV; + +EGLEW_FUN_EXPORT PFNEGLRESETSTREAMNVPROC __eglewResetStreamNV; + +EGLEW_FUN_EXPORT PFNEGLCREATESTREAMSYNCNVPROC __eglewCreateStreamSyncNV; + +EGLEW_FUN_EXPORT PFNEGLCLIENTWAITSYNCNVPROC __eglewClientWaitSyncNV; +EGLEW_FUN_EXPORT PFNEGLCREATEFENCESYNCNVPROC __eglewCreateFenceSyncNV; +EGLEW_FUN_EXPORT PFNEGLDESTROYSYNCNVPROC __eglewDestroySyncNV; +EGLEW_FUN_EXPORT PFNEGLFENCENVPROC __eglewFenceNV; +EGLEW_FUN_EXPORT PFNEGLGETSYNCATTRIBNVPROC __eglewGetSyncAttribNV; +EGLEW_FUN_EXPORT PFNEGLSIGNALSYNCNVPROC __eglewSignalSyncNV; + +EGLEW_FUN_EXPORT PFNEGLGETSYSTEMTIMEFREQUENCYNVPROC __eglewGetSystemTimeFrequencyNV; +EGLEW_FUN_EXPORT PFNEGLGETSYSTEMTIMENVPROC __eglewGetSystemTimeNV; +EGLEW_VAR_EXPORT GLboolean __EGLEW_VERSION_1_0; +EGLEW_VAR_EXPORT GLboolean __EGLEW_VERSION_1_1; +EGLEW_VAR_EXPORT GLboolean __EGLEW_VERSION_1_2; +EGLEW_VAR_EXPORT GLboolean __EGLEW_VERSION_1_3; +EGLEW_VAR_EXPORT GLboolean __EGLEW_VERSION_1_4; +EGLEW_VAR_EXPORT GLboolean __EGLEW_VERSION_1_5; +EGLEW_VAR_EXPORT GLboolean __EGLEW_ANDROID_blob_cache; +EGLEW_VAR_EXPORT GLboolean __EGLEW_ANDROID_create_native_client_buffer; +EGLEW_VAR_EXPORT GLboolean __EGLEW_ANDROID_framebuffer_target; +EGLEW_VAR_EXPORT GLboolean __EGLEW_ANDROID_front_buffer_auto_refresh; +EGLEW_VAR_EXPORT GLboolean __EGLEW_ANDROID_image_native_buffer; +EGLEW_VAR_EXPORT GLboolean __EGLEW_ANDROID_native_fence_sync; +EGLEW_VAR_EXPORT GLboolean __EGLEW_ANDROID_presentation_time; +EGLEW_VAR_EXPORT GLboolean __EGLEW_ANDROID_recordable; +EGLEW_VAR_EXPORT GLboolean __EGLEW_ANGLE_d3d_share_handle_client_buffer; +EGLEW_VAR_EXPORT GLboolean __EGLEW_ANGLE_device_d3d; +EGLEW_VAR_EXPORT GLboolean __EGLEW_ANGLE_query_surface_pointer; +EGLEW_VAR_EXPORT GLboolean __EGLEW_ANGLE_surface_d3d_texture_2d_share_handle; +EGLEW_VAR_EXPORT GLboolean __EGLEW_ANGLE_window_fixed_size; +EGLEW_VAR_EXPORT GLboolean __EGLEW_ARM_implicit_external_sync; +EGLEW_VAR_EXPORT GLboolean __EGLEW_ARM_pixmap_multisample_discard; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_buffer_age; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_client_extensions; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_create_context_robustness; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_device_base; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_device_drm; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_device_enumeration; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_device_openwf; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_device_query; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_gl_colorspace_bt2020_linear; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_gl_colorspace_bt2020_pq; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_gl_colorspace_scrgb_linear; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_image_dma_buf_import; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_image_dma_buf_import_modifiers; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_multiview_window; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_output_base; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_output_drm; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_output_openwf; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_pixel_format_float; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_platform_base; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_platform_device; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_platform_wayland; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_platform_x11; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_protected_content; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_protected_surface; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_stream_consumer_egloutput; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_surface_SMPTE2086_metadata; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_swap_buffers_with_damage; +EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_yuv_surface; +EGLEW_VAR_EXPORT GLboolean __EGLEW_HI_clientpixmap; +EGLEW_VAR_EXPORT GLboolean __EGLEW_HI_colorformats; +EGLEW_VAR_EXPORT GLboolean __EGLEW_IMG_context_priority; +EGLEW_VAR_EXPORT GLboolean __EGLEW_IMG_image_plane_attribs; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_cl_event; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_cl_event2; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_client_get_all_proc_addresses; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_config_attribs; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_context_flush_control; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_create_context; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_create_context_no_error; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_debug; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_fence_sync; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_get_all_proc_addresses; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_gl_colorspace; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_gl_renderbuffer_image; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_gl_texture_2D_image; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_gl_texture_3D_image; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_gl_texture_cubemap_image; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_image; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_image_base; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_image_pixmap; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_lock_surface; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_lock_surface2; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_lock_surface3; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_mutable_render_buffer; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_no_config_context; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_partial_update; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_platform_android; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_platform_gbm; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_platform_wayland; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_platform_x11; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_reusable_sync; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_stream; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_stream_attrib; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_stream_consumer_gltexture; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_stream_cross_process_fd; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_stream_fifo; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_stream_producer_aldatalocator; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_stream_producer_eglsurface; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_surfaceless_context; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_swap_buffers_with_damage; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_vg_parent_image; +EGLEW_VAR_EXPORT GLboolean __EGLEW_KHR_wait_sync; +EGLEW_VAR_EXPORT GLboolean __EGLEW_MESA_drm_image; +EGLEW_VAR_EXPORT GLboolean __EGLEW_MESA_image_dma_buf_export; +EGLEW_VAR_EXPORT GLboolean __EGLEW_MESA_platform_gbm; +EGLEW_VAR_EXPORT GLboolean __EGLEW_MESA_platform_surfaceless; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NOK_swap_region; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NOK_swap_region2; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NOK_texture_from_pixmap; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_3dvision_surface; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_coverage_sample; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_coverage_sample_resolve; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_cuda_event; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_depth_nonlinear; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_device_cuda; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_native_query; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_post_convert_rounding; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_post_sub_buffer; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_robustness_video_memory_purge; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_stream_consumer_gltexture_yuv; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_stream_cross_display; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_stream_cross_object; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_stream_cross_partition; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_stream_cross_process; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_stream_cross_system; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_stream_fifo_next; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_stream_fifo_synchronous; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_stream_frame_limits; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_stream_metadata; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_stream_remote; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_stream_reset; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_stream_socket; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_stream_socket_inet; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_stream_socket_unix; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_stream_sync; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_sync; +EGLEW_VAR_EXPORT GLboolean __EGLEW_NV_system_time; +EGLEW_VAR_EXPORT GLboolean __EGLEW_TIZEN_image_native_buffer; +EGLEW_VAR_EXPORT GLboolean __EGLEW_TIZEN_image_native_surface; +/* ------------------------------------------------------------------------ */ + +GLEWAPI GLenum GLEWAPIENTRY eglewInit (EGLDisplay display); +GLEWAPI GLboolean GLEWAPIENTRY eglewIsSupported (const char *name); + +#define EGLEW_GET_VAR(x) (*(const GLboolean*)&x) +#define EGLEW_GET_FUN(x) x + +GLEWAPI GLboolean GLEWAPIENTRY eglewGetExtension (const char *name); + +#ifdef __cplusplus +} +#endif + +#endif /* __eglew_h__ */ diff --git a/Source/include/glew.h b/Source/include/glew.h new file mode 100644 index 0000000..b5b6987 --- /dev/null +++ b/Source/include/glew.h @@ -0,0 +1,23686 @@ +/* +** The OpenGL Extension Wrangler Library +** Copyright (C) 2008-2017, Nigel Stewart +** Copyright (C) 2002-2008, Milan Ikits +** Copyright (C) 2002-2008, Marcelo E. Magallon +** Copyright (C) 2002, Lev Povalahev +** All rights reserved. +** +** Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are met: +** +** * Redistributions of source code must retain the above copyright notice, +** this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright notice, +** this list of conditions and the following disclaimer in the documentation +** and/or other materials provided with the distribution. +** * The name of the author may be used to endorse or promote products +** derived from this software without specific prior written permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +** THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/* + * Mesa 3-D graphics library + * Version: 7.0 + * + * Copyright (C) 1999-2007 Brian Paul All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN + * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + +/* +** Copyright (c) 2007 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +#ifndef __glew_h__ +#define __glew_h__ +#define __GLEW_H__ + +#if defined(__gl_h_) || defined(__GL_H__) || defined(_GL_H) || defined(__X_GL_H) +#error gl.h included before glew.h +#endif +#if defined(__gl2_h_) +#error gl2.h included before glew.h +#endif +#if defined(__gltypes_h_) +#error gltypes.h included before glew.h +#endif +#if defined(__REGAL_H__) +#error Regal.h included before glew.h +#endif +#if defined(__glext_h_) || defined(__GLEXT_H_) +#error glext.h included before glew.h +#endif +#if defined(__gl_ATI_h_) +#error glATI.h included before glew.h +#endif + +#define __gl_h_ +#define __gl2_h_ +#define __GL_H__ +#define _GL_H +#define __gltypes_h_ +#define __REGAL_H__ +#define __X_GL_H +#define __glext_h_ +#define __GLEXT_H_ +#define __gl_ATI_h_ + +#if defined(_WIN32) + +/* + * GLEW does not include to avoid name space pollution. + * GL needs GLAPI and GLAPIENTRY, GLU needs APIENTRY, CALLBACK, and wchar_t + * defined properly. + */ +/* and */ +#ifdef APIENTRY +# ifndef GLAPIENTRY +# define GLAPIENTRY APIENTRY +# endif +# ifndef GLEWAPIENTRY +# define GLEWAPIENTRY APIENTRY +# endif +#else +#define GLEW_APIENTRY_DEFINED +# if defined(__MINGW32__) || defined(__CYGWIN__) || (_MSC_VER >= 800) || defined(_STDCALL_SUPPORTED) || defined(__BORLANDC__) +# define APIENTRY __stdcall +# ifndef GLAPIENTRY +# define GLAPIENTRY __stdcall +# endif +# ifndef GLEWAPIENTRY +# define GLEWAPIENTRY __stdcall +# endif +# else +# define APIENTRY +# endif +#endif +#ifndef GLAPI +# if defined(__MINGW32__) || defined(__CYGWIN__) +# define GLAPI extern +# endif +#endif +/* */ +#ifndef CALLBACK +#define GLEW_CALLBACK_DEFINED +# if defined(__MINGW32__) || defined(__CYGWIN__) +# define CALLBACK __attribute__ ((__stdcall__)) +# elif (defined(_M_MRX000) || defined(_M_IX86) || defined(_M_ALPHA) || defined(_M_PPC)) && !defined(MIDL_PASS) +# define CALLBACK __stdcall +# else +# define CALLBACK +# endif +#endif +/* and */ +#ifndef WINGDIAPI +#define GLEW_WINGDIAPI_DEFINED +#define WINGDIAPI __declspec(dllimport) +#endif +/* */ +#if (defined(_MSC_VER) || defined(__BORLANDC__)) && !defined(_WCHAR_T_DEFINED) +typedef unsigned short wchar_t; +# define _WCHAR_T_DEFINED +#endif +/* */ +#if !defined(_W64) +# if !defined(__midl) && (defined(_X86_) || defined(_M_IX86)) && defined(_MSC_VER) && _MSC_VER >= 1300 +# define _W64 __w64 +# else +# define _W64 +# endif +#endif +#if !defined(_PTRDIFF_T_DEFINED) && !defined(_PTRDIFF_T_) && !defined(__MINGW64__) +# ifdef _WIN64 +typedef __int64 ptrdiff_t; +# else +typedef _W64 int ptrdiff_t; +# endif +# define _PTRDIFF_T_DEFINED +# define _PTRDIFF_T_ +#endif + +#ifndef GLAPI +# if defined(__MINGW32__) || defined(__CYGWIN__) +# define GLAPI extern +# else +# define GLAPI WINGDIAPI +# endif +#endif + +/* + * GLEW_STATIC is defined for static library. + * GLEW_BUILD is defined for building the DLL library. + */ + +#ifdef GLEW_STATIC +# define GLEWAPI extern +#else +# ifdef GLEW_BUILD +# define GLEWAPI extern __declspec(dllexport) +# else +# define GLEWAPI extern __declspec(dllimport) +# endif +#endif + +#else /* _UNIX */ + +/* + * Needed for ptrdiff_t in turn needed by VBO. This is defined by ISO + * C. On my system, this amounts to _3 lines_ of included code, all of + * them pretty much harmless. If you know of a way of detecting 32 vs + * 64 _targets_ at compile time you are free to replace this with + * something that's portable. For now, _this_ is the portable solution. + * (mem, 2004-01-04) + */ + +#include + +/* SGI MIPSPro doesn't like stdint.h in C++ mode */ +/* ID: 3376260 Solaris 9 has inttypes.h, but not stdint.h */ + +#if (defined(__sgi) || defined(__sun)) && !defined(__GNUC__) +#include +#else +#include +#endif + +#define GLEW_APIENTRY_DEFINED +#define APIENTRY + +/* + * GLEW_STATIC is defined for static library. + */ + +#ifdef GLEW_STATIC +# define GLEWAPI extern +#else +# if defined(__GNUC__) && __GNUC__>=4 +# define GLEWAPI extern __attribute__ ((visibility("default"))) +# elif defined(__SUNPRO_C) || defined(__SUNPRO_CC) +# define GLEWAPI extern __global +# else +# define GLEWAPI extern +# endif +#endif + +/* */ +#ifndef GLAPI +#define GLAPI extern +#endif + +#endif /* _WIN32 */ + +#ifndef GLAPIENTRY +#define GLAPIENTRY +#endif + +#ifndef GLEWAPIENTRY +#define GLEWAPIENTRY +#endif + +#define GLEW_VAR_EXPORT GLEWAPI +#define GLEW_FUN_EXPORT GLEWAPI + +#ifdef __cplusplus +extern "C" { +#endif + +/* ----------------------------- GL_VERSION_1_1 ---------------------------- */ + +#ifndef GL_VERSION_1_1 +#define GL_VERSION_1_1 1 + +typedef unsigned int GLenum; +typedef unsigned int GLbitfield; +typedef unsigned int GLuint; +typedef int GLint; +typedef int GLsizei; +typedef unsigned char GLboolean; +typedef signed char GLbyte; +typedef short GLshort; +typedef unsigned char GLubyte; +typedef unsigned short GLushort; +typedef unsigned long GLulong; +typedef float GLfloat; +typedef float GLclampf; +typedef double GLdouble; +typedef double GLclampd; +typedef void GLvoid; +#if defined(_MSC_VER) && _MSC_VER < 1400 +typedef __int64 GLint64EXT; +typedef unsigned __int64 GLuint64EXT; +#elif defined(_MSC_VER) || defined(__BORLANDC__) +typedef signed long long GLint64EXT; +typedef unsigned long long GLuint64EXT; +#else +# if defined(__MINGW32__) || defined(__CYGWIN__) +#include +# endif +typedef int64_t GLint64EXT; +typedef uint64_t GLuint64EXT; +#endif +typedef GLint64EXT GLint64; +typedef GLuint64EXT GLuint64; +typedef struct __GLsync *GLsync; + +typedef char GLchar; + +#define GL_ZERO 0 +#define GL_FALSE 0 +#define GL_LOGIC_OP 0x0BF1 +#define GL_NONE 0 +#define GL_TEXTURE_COMPONENTS 0x1003 +#define GL_NO_ERROR 0 +#define GL_POINTS 0x0000 +#define GL_CURRENT_BIT 0x00000001 +#define GL_TRUE 1 +#define GL_ONE 1 +#define GL_CLIENT_PIXEL_STORE_BIT 0x00000001 +#define GL_LINES 0x0001 +#define GL_LINE_LOOP 0x0002 +#define GL_POINT_BIT 0x00000002 +#define GL_CLIENT_VERTEX_ARRAY_BIT 0x00000002 +#define GL_LINE_STRIP 0x0003 +#define GL_LINE_BIT 0x00000004 +#define GL_TRIANGLES 0x0004 +#define GL_TRIANGLE_STRIP 0x0005 +#define GL_TRIANGLE_FAN 0x0006 +#define GL_QUADS 0x0007 +#define GL_QUAD_STRIP 0x0008 +#define GL_POLYGON_BIT 0x00000008 +#define GL_POLYGON 0x0009 +#define GL_POLYGON_STIPPLE_BIT 0x00000010 +#define GL_PIXEL_MODE_BIT 0x00000020 +#define GL_LIGHTING_BIT 0x00000040 +#define GL_FOG_BIT 0x00000080 +#define GL_DEPTH_BUFFER_BIT 0x00000100 +#define GL_ACCUM 0x0100 +#define GL_LOAD 0x0101 +#define GL_RETURN 0x0102 +#define GL_MULT 0x0103 +#define GL_ADD 0x0104 +#define GL_NEVER 0x0200 +#define GL_ACCUM_BUFFER_BIT 0x00000200 +#define GL_LESS 0x0201 +#define GL_EQUAL 0x0202 +#define GL_LEQUAL 0x0203 +#define GL_GREATER 0x0204 +#define GL_NOTEQUAL 0x0205 +#define GL_GEQUAL 0x0206 +#define GL_ALWAYS 0x0207 +#define GL_SRC_COLOR 0x0300 +#define GL_ONE_MINUS_SRC_COLOR 0x0301 +#define GL_SRC_ALPHA 0x0302 +#define GL_ONE_MINUS_SRC_ALPHA 0x0303 +#define GL_DST_ALPHA 0x0304 +#define GL_ONE_MINUS_DST_ALPHA 0x0305 +#define GL_DST_COLOR 0x0306 +#define GL_ONE_MINUS_DST_COLOR 0x0307 +#define GL_SRC_ALPHA_SATURATE 0x0308 +#define GL_STENCIL_BUFFER_BIT 0x00000400 +#define GL_FRONT_LEFT 0x0400 +#define GL_FRONT_RIGHT 0x0401 +#define GL_BACK_LEFT 0x0402 +#define GL_BACK_RIGHT 0x0403 +#define GL_FRONT 0x0404 +#define GL_BACK 0x0405 +#define GL_LEFT 0x0406 +#define GL_RIGHT 0x0407 +#define GL_FRONT_AND_BACK 0x0408 +#define GL_AUX0 0x0409 +#define GL_AUX1 0x040A +#define GL_AUX2 0x040B +#define GL_AUX3 0x040C +#define GL_INVALID_ENUM 0x0500 +#define GL_INVALID_VALUE 0x0501 +#define GL_INVALID_OPERATION 0x0502 +#define GL_STACK_OVERFLOW 0x0503 +#define GL_STACK_UNDERFLOW 0x0504 +#define GL_OUT_OF_MEMORY 0x0505 +#define GL_2D 0x0600 +#define GL_3D 0x0601 +#define GL_3D_COLOR 0x0602 +#define GL_3D_COLOR_TEXTURE 0x0603 +#define GL_4D_COLOR_TEXTURE 0x0604 +#define GL_PASS_THROUGH_TOKEN 0x0700 +#define GL_POINT_TOKEN 0x0701 +#define GL_LINE_TOKEN 0x0702 +#define GL_POLYGON_TOKEN 0x0703 +#define GL_BITMAP_TOKEN 0x0704 +#define GL_DRAW_PIXEL_TOKEN 0x0705 +#define GL_COPY_PIXEL_TOKEN 0x0706 +#define GL_LINE_RESET_TOKEN 0x0707 +#define GL_EXP 0x0800 +#define GL_VIEWPORT_BIT 0x00000800 +#define GL_EXP2 0x0801 +#define GL_CW 0x0900 +#define GL_CCW 0x0901 +#define GL_COEFF 0x0A00 +#define GL_ORDER 0x0A01 +#define GL_DOMAIN 0x0A02 +#define GL_CURRENT_COLOR 0x0B00 +#define GL_CURRENT_INDEX 0x0B01 +#define GL_CURRENT_NORMAL 0x0B02 +#define GL_CURRENT_TEXTURE_COORDS 0x0B03 +#define GL_CURRENT_RASTER_COLOR 0x0B04 +#define GL_CURRENT_RASTER_INDEX 0x0B05 +#define GL_CURRENT_RASTER_TEXTURE_COORDS 0x0B06 +#define GL_CURRENT_RASTER_POSITION 0x0B07 +#define GL_CURRENT_RASTER_POSITION_VALID 0x0B08 +#define GL_CURRENT_RASTER_DISTANCE 0x0B09 +#define GL_POINT_SMOOTH 0x0B10 +#define GL_POINT_SIZE 0x0B11 +#define GL_POINT_SIZE_RANGE 0x0B12 +#define GL_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_LINE_SMOOTH 0x0B20 +#define GL_LINE_WIDTH 0x0B21 +#define GL_LINE_WIDTH_RANGE 0x0B22 +#define GL_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_LINE_STIPPLE 0x0B24 +#define GL_LINE_STIPPLE_PATTERN 0x0B25 +#define GL_LINE_STIPPLE_REPEAT 0x0B26 +#define GL_LIST_MODE 0x0B30 +#define GL_MAX_LIST_NESTING 0x0B31 +#define GL_LIST_BASE 0x0B32 +#define GL_LIST_INDEX 0x0B33 +#define GL_POLYGON_MODE 0x0B40 +#define GL_POLYGON_SMOOTH 0x0B41 +#define GL_POLYGON_STIPPLE 0x0B42 +#define GL_EDGE_FLAG 0x0B43 +#define GL_CULL_FACE 0x0B44 +#define GL_CULL_FACE_MODE 0x0B45 +#define GL_FRONT_FACE 0x0B46 +#define GL_LIGHTING 0x0B50 +#define GL_LIGHT_MODEL_LOCAL_VIEWER 0x0B51 +#define GL_LIGHT_MODEL_TWO_SIDE 0x0B52 +#define GL_LIGHT_MODEL_AMBIENT 0x0B53 +#define GL_SHADE_MODEL 0x0B54 +#define GL_COLOR_MATERIAL_FACE 0x0B55 +#define GL_COLOR_MATERIAL_PARAMETER 0x0B56 +#define GL_COLOR_MATERIAL 0x0B57 +#define GL_FOG 0x0B60 +#define GL_FOG_INDEX 0x0B61 +#define GL_FOG_DENSITY 0x0B62 +#define GL_FOG_START 0x0B63 +#define GL_FOG_END 0x0B64 +#define GL_FOG_MODE 0x0B65 +#define GL_FOG_COLOR 0x0B66 +#define GL_DEPTH_RANGE 0x0B70 +#define GL_DEPTH_TEST 0x0B71 +#define GL_DEPTH_WRITEMASK 0x0B72 +#define GL_DEPTH_CLEAR_VALUE 0x0B73 +#define GL_DEPTH_FUNC 0x0B74 +#define GL_ACCUM_CLEAR_VALUE 0x0B80 +#define GL_STENCIL_TEST 0x0B90 +#define GL_STENCIL_CLEAR_VALUE 0x0B91 +#define GL_STENCIL_FUNC 0x0B92 +#define GL_STENCIL_VALUE_MASK 0x0B93 +#define GL_STENCIL_FAIL 0x0B94 +#define GL_STENCIL_PASS_DEPTH_FAIL 0x0B95 +#define GL_STENCIL_PASS_DEPTH_PASS 0x0B96 +#define GL_STENCIL_REF 0x0B97 +#define GL_STENCIL_WRITEMASK 0x0B98 +#define GL_MATRIX_MODE 0x0BA0 +#define GL_NORMALIZE 0x0BA1 +#define GL_VIEWPORT 0x0BA2 +#define GL_MODELVIEW_STACK_DEPTH 0x0BA3 +#define GL_PROJECTION_STACK_DEPTH 0x0BA4 +#define GL_TEXTURE_STACK_DEPTH 0x0BA5 +#define GL_MODELVIEW_MATRIX 0x0BA6 +#define GL_PROJECTION_MATRIX 0x0BA7 +#define GL_TEXTURE_MATRIX 0x0BA8 +#define GL_ATTRIB_STACK_DEPTH 0x0BB0 +#define GL_CLIENT_ATTRIB_STACK_DEPTH 0x0BB1 +#define GL_ALPHA_TEST 0x0BC0 +#define GL_ALPHA_TEST_FUNC 0x0BC1 +#define GL_ALPHA_TEST_REF 0x0BC2 +#define GL_DITHER 0x0BD0 +#define GL_BLEND_DST 0x0BE0 +#define GL_BLEND_SRC 0x0BE1 +#define GL_BLEND 0x0BE2 +#define GL_LOGIC_OP_MODE 0x0BF0 +#define GL_INDEX_LOGIC_OP 0x0BF1 +#define GL_COLOR_LOGIC_OP 0x0BF2 +#define GL_AUX_BUFFERS 0x0C00 +#define GL_DRAW_BUFFER 0x0C01 +#define GL_READ_BUFFER 0x0C02 +#define GL_SCISSOR_BOX 0x0C10 +#define GL_SCISSOR_TEST 0x0C11 +#define GL_INDEX_CLEAR_VALUE 0x0C20 +#define GL_INDEX_WRITEMASK 0x0C21 +#define GL_COLOR_CLEAR_VALUE 0x0C22 +#define GL_COLOR_WRITEMASK 0x0C23 +#define GL_INDEX_MODE 0x0C30 +#define GL_RGBA_MODE 0x0C31 +#define GL_DOUBLEBUFFER 0x0C32 +#define GL_STEREO 0x0C33 +#define GL_RENDER_MODE 0x0C40 +#define GL_PERSPECTIVE_CORRECTION_HINT 0x0C50 +#define GL_POINT_SMOOTH_HINT 0x0C51 +#define GL_LINE_SMOOTH_HINT 0x0C52 +#define GL_POLYGON_SMOOTH_HINT 0x0C53 +#define GL_FOG_HINT 0x0C54 +#define GL_TEXTURE_GEN_S 0x0C60 +#define GL_TEXTURE_GEN_T 0x0C61 +#define GL_TEXTURE_GEN_R 0x0C62 +#define GL_TEXTURE_GEN_Q 0x0C63 +#define GL_PIXEL_MAP_I_TO_I 0x0C70 +#define GL_PIXEL_MAP_S_TO_S 0x0C71 +#define GL_PIXEL_MAP_I_TO_R 0x0C72 +#define GL_PIXEL_MAP_I_TO_G 0x0C73 +#define GL_PIXEL_MAP_I_TO_B 0x0C74 +#define GL_PIXEL_MAP_I_TO_A 0x0C75 +#define GL_PIXEL_MAP_R_TO_R 0x0C76 +#define GL_PIXEL_MAP_G_TO_G 0x0C77 +#define GL_PIXEL_MAP_B_TO_B 0x0C78 +#define GL_PIXEL_MAP_A_TO_A 0x0C79 +#define GL_PIXEL_MAP_I_TO_I_SIZE 0x0CB0 +#define GL_PIXEL_MAP_S_TO_S_SIZE 0x0CB1 +#define GL_PIXEL_MAP_I_TO_R_SIZE 0x0CB2 +#define GL_PIXEL_MAP_I_TO_G_SIZE 0x0CB3 +#define GL_PIXEL_MAP_I_TO_B_SIZE 0x0CB4 +#define GL_PIXEL_MAP_I_TO_A_SIZE 0x0CB5 +#define GL_PIXEL_MAP_R_TO_R_SIZE 0x0CB6 +#define GL_PIXEL_MAP_G_TO_G_SIZE 0x0CB7 +#define GL_PIXEL_MAP_B_TO_B_SIZE 0x0CB8 +#define GL_PIXEL_MAP_A_TO_A_SIZE 0x0CB9 +#define GL_UNPACK_SWAP_BYTES 0x0CF0 +#define GL_UNPACK_LSB_FIRST 0x0CF1 +#define GL_UNPACK_ROW_LENGTH 0x0CF2 +#define GL_UNPACK_SKIP_ROWS 0x0CF3 +#define GL_UNPACK_SKIP_PIXELS 0x0CF4 +#define GL_UNPACK_ALIGNMENT 0x0CF5 +#define GL_PACK_SWAP_BYTES 0x0D00 +#define GL_PACK_LSB_FIRST 0x0D01 +#define GL_PACK_ROW_LENGTH 0x0D02 +#define GL_PACK_SKIP_ROWS 0x0D03 +#define GL_PACK_SKIP_PIXELS 0x0D04 +#define GL_PACK_ALIGNMENT 0x0D05 +#define GL_MAP_COLOR 0x0D10 +#define GL_MAP_STENCIL 0x0D11 +#define GL_INDEX_SHIFT 0x0D12 +#define GL_INDEX_OFFSET 0x0D13 +#define GL_RED_SCALE 0x0D14 +#define GL_RED_BIAS 0x0D15 +#define GL_ZOOM_X 0x0D16 +#define GL_ZOOM_Y 0x0D17 +#define GL_GREEN_SCALE 0x0D18 +#define GL_GREEN_BIAS 0x0D19 +#define GL_BLUE_SCALE 0x0D1A +#define GL_BLUE_BIAS 0x0D1B +#define GL_ALPHA_SCALE 0x0D1C +#define GL_ALPHA_BIAS 0x0D1D +#define GL_DEPTH_SCALE 0x0D1E +#define GL_DEPTH_BIAS 0x0D1F +#define GL_MAX_EVAL_ORDER 0x0D30 +#define GL_MAX_LIGHTS 0x0D31 +#define GL_MAX_CLIP_PLANES 0x0D32 +#define GL_MAX_TEXTURE_SIZE 0x0D33 +#define GL_MAX_PIXEL_MAP_TABLE 0x0D34 +#define GL_MAX_ATTRIB_STACK_DEPTH 0x0D35 +#define GL_MAX_MODELVIEW_STACK_DEPTH 0x0D36 +#define GL_MAX_NAME_STACK_DEPTH 0x0D37 +#define GL_MAX_PROJECTION_STACK_DEPTH 0x0D38 +#define GL_MAX_TEXTURE_STACK_DEPTH 0x0D39 +#define GL_MAX_VIEWPORT_DIMS 0x0D3A +#define GL_MAX_CLIENT_ATTRIB_STACK_DEPTH 0x0D3B +#define GL_SUBPIXEL_BITS 0x0D50 +#define GL_INDEX_BITS 0x0D51 +#define GL_RED_BITS 0x0D52 +#define GL_GREEN_BITS 0x0D53 +#define GL_BLUE_BITS 0x0D54 +#define GL_ALPHA_BITS 0x0D55 +#define GL_DEPTH_BITS 0x0D56 +#define GL_STENCIL_BITS 0x0D57 +#define GL_ACCUM_RED_BITS 0x0D58 +#define GL_ACCUM_GREEN_BITS 0x0D59 +#define GL_ACCUM_BLUE_BITS 0x0D5A +#define GL_ACCUM_ALPHA_BITS 0x0D5B +#define GL_NAME_STACK_DEPTH 0x0D70 +#define GL_AUTO_NORMAL 0x0D80 +#define GL_MAP1_COLOR_4 0x0D90 +#define GL_MAP1_INDEX 0x0D91 +#define GL_MAP1_NORMAL 0x0D92 +#define GL_MAP1_TEXTURE_COORD_1 0x0D93 +#define GL_MAP1_TEXTURE_COORD_2 0x0D94 +#define GL_MAP1_TEXTURE_COORD_3 0x0D95 +#define GL_MAP1_TEXTURE_COORD_4 0x0D96 +#define GL_MAP1_VERTEX_3 0x0D97 +#define GL_MAP1_VERTEX_4 0x0D98 +#define GL_MAP2_COLOR_4 0x0DB0 +#define GL_MAP2_INDEX 0x0DB1 +#define GL_MAP2_NORMAL 0x0DB2 +#define GL_MAP2_TEXTURE_COORD_1 0x0DB3 +#define GL_MAP2_TEXTURE_COORD_2 0x0DB4 +#define GL_MAP2_TEXTURE_COORD_3 0x0DB5 +#define GL_MAP2_TEXTURE_COORD_4 0x0DB6 +#define GL_MAP2_VERTEX_3 0x0DB7 +#define GL_MAP2_VERTEX_4 0x0DB8 +#define GL_MAP1_GRID_DOMAIN 0x0DD0 +#define GL_MAP1_GRID_SEGMENTS 0x0DD1 +#define GL_MAP2_GRID_DOMAIN 0x0DD2 +#define GL_MAP2_GRID_SEGMENTS 0x0DD3 +#define GL_TEXTURE_1D 0x0DE0 +#define GL_TEXTURE_2D 0x0DE1 +#define GL_FEEDBACK_BUFFER_POINTER 0x0DF0 +#define GL_FEEDBACK_BUFFER_SIZE 0x0DF1 +#define GL_FEEDBACK_BUFFER_TYPE 0x0DF2 +#define GL_SELECTION_BUFFER_POINTER 0x0DF3 +#define GL_SELECTION_BUFFER_SIZE 0x0DF4 +#define GL_TEXTURE_WIDTH 0x1000 +#define GL_TRANSFORM_BIT 0x00001000 +#define GL_TEXTURE_HEIGHT 0x1001 +#define GL_TEXTURE_INTERNAL_FORMAT 0x1003 +#define GL_TEXTURE_BORDER_COLOR 0x1004 +#define GL_TEXTURE_BORDER 0x1005 +#define GL_DONT_CARE 0x1100 +#define GL_FASTEST 0x1101 +#define GL_NICEST 0x1102 +#define GL_AMBIENT 0x1200 +#define GL_DIFFUSE 0x1201 +#define GL_SPECULAR 0x1202 +#define GL_POSITION 0x1203 +#define GL_SPOT_DIRECTION 0x1204 +#define GL_SPOT_EXPONENT 0x1205 +#define GL_SPOT_CUTOFF 0x1206 +#define GL_CONSTANT_ATTENUATION 0x1207 +#define GL_LINEAR_ATTENUATION 0x1208 +#define GL_QUADRATIC_ATTENUATION 0x1209 +#define GL_COMPILE 0x1300 +#define GL_COMPILE_AND_EXECUTE 0x1301 +#define GL_BYTE 0x1400 +#define GL_UNSIGNED_BYTE 0x1401 +#define GL_SHORT 0x1402 +#define GL_UNSIGNED_SHORT 0x1403 +#define GL_INT 0x1404 +#define GL_UNSIGNED_INT 0x1405 +#define GL_FLOAT 0x1406 +#define GL_2_BYTES 0x1407 +#define GL_3_BYTES 0x1408 +#define GL_4_BYTES 0x1409 +#define GL_DOUBLE 0x140A +#define GL_CLEAR 0x1500 +#define GL_AND 0x1501 +#define GL_AND_REVERSE 0x1502 +#define GL_COPY 0x1503 +#define GL_AND_INVERTED 0x1504 +#define GL_NOOP 0x1505 +#define GL_XOR 0x1506 +#define GL_OR 0x1507 +#define GL_NOR 0x1508 +#define GL_EQUIV 0x1509 +#define GL_INVERT 0x150A +#define GL_OR_REVERSE 0x150B +#define GL_COPY_INVERTED 0x150C +#define GL_OR_INVERTED 0x150D +#define GL_NAND 0x150E +#define GL_SET 0x150F +#define GL_EMISSION 0x1600 +#define GL_SHININESS 0x1601 +#define GL_AMBIENT_AND_DIFFUSE 0x1602 +#define GL_COLOR_INDEXES 0x1603 +#define GL_MODELVIEW 0x1700 +#define GL_PROJECTION 0x1701 +#define GL_TEXTURE 0x1702 +#define GL_COLOR 0x1800 +#define GL_DEPTH 0x1801 +#define GL_STENCIL 0x1802 +#define GL_COLOR_INDEX 0x1900 +#define GL_STENCIL_INDEX 0x1901 +#define GL_DEPTH_COMPONENT 0x1902 +#define GL_RED 0x1903 +#define GL_GREEN 0x1904 +#define GL_BLUE 0x1905 +#define GL_ALPHA 0x1906 +#define GL_RGB 0x1907 +#define GL_RGBA 0x1908 +#define GL_LUMINANCE 0x1909 +#define GL_LUMINANCE_ALPHA 0x190A +#define GL_BITMAP 0x1A00 +#define GL_POINT 0x1B00 +#define GL_LINE 0x1B01 +#define GL_FILL 0x1B02 +#define GL_RENDER 0x1C00 +#define GL_FEEDBACK 0x1C01 +#define GL_SELECT 0x1C02 +#define GL_FLAT 0x1D00 +#define GL_SMOOTH 0x1D01 +#define GL_KEEP 0x1E00 +#define GL_REPLACE 0x1E01 +#define GL_INCR 0x1E02 +#define GL_DECR 0x1E03 +#define GL_VENDOR 0x1F00 +#define GL_RENDERER 0x1F01 +#define GL_VERSION 0x1F02 +#define GL_EXTENSIONS 0x1F03 +#define GL_S 0x2000 +#define GL_ENABLE_BIT 0x00002000 +#define GL_T 0x2001 +#define GL_R 0x2002 +#define GL_Q 0x2003 +#define GL_MODULATE 0x2100 +#define GL_DECAL 0x2101 +#define GL_TEXTURE_ENV_MODE 0x2200 +#define GL_TEXTURE_ENV_COLOR 0x2201 +#define GL_TEXTURE_ENV 0x2300 +#define GL_EYE_LINEAR 0x2400 +#define GL_OBJECT_LINEAR 0x2401 +#define GL_SPHERE_MAP 0x2402 +#define GL_TEXTURE_GEN_MODE 0x2500 +#define GL_OBJECT_PLANE 0x2501 +#define GL_EYE_PLANE 0x2502 +#define GL_NEAREST 0x2600 +#define GL_LINEAR 0x2601 +#define GL_NEAREST_MIPMAP_NEAREST 0x2700 +#define GL_LINEAR_MIPMAP_NEAREST 0x2701 +#define GL_NEAREST_MIPMAP_LINEAR 0x2702 +#define GL_LINEAR_MIPMAP_LINEAR 0x2703 +#define GL_TEXTURE_MAG_FILTER 0x2800 +#define GL_TEXTURE_MIN_FILTER 0x2801 +#define GL_TEXTURE_WRAP_S 0x2802 +#define GL_TEXTURE_WRAP_T 0x2803 +#define GL_CLAMP 0x2900 +#define GL_REPEAT 0x2901 +#define GL_POLYGON_OFFSET_UNITS 0x2A00 +#define GL_POLYGON_OFFSET_POINT 0x2A01 +#define GL_POLYGON_OFFSET_LINE 0x2A02 +#define GL_R3_G3_B2 0x2A10 +#define GL_V2F 0x2A20 +#define GL_V3F 0x2A21 +#define GL_C4UB_V2F 0x2A22 +#define GL_C4UB_V3F 0x2A23 +#define GL_C3F_V3F 0x2A24 +#define GL_N3F_V3F 0x2A25 +#define GL_C4F_N3F_V3F 0x2A26 +#define GL_T2F_V3F 0x2A27 +#define GL_T4F_V4F 0x2A28 +#define GL_T2F_C4UB_V3F 0x2A29 +#define GL_T2F_C3F_V3F 0x2A2A +#define GL_T2F_N3F_V3F 0x2A2B +#define GL_T2F_C4F_N3F_V3F 0x2A2C +#define GL_T4F_C4F_N3F_V4F 0x2A2D +#define GL_CLIP_PLANE0 0x3000 +#define GL_CLIP_PLANE1 0x3001 +#define GL_CLIP_PLANE2 0x3002 +#define GL_CLIP_PLANE3 0x3003 +#define GL_CLIP_PLANE4 0x3004 +#define GL_CLIP_PLANE5 0x3005 +#define GL_LIGHT0 0x4000 +#define GL_COLOR_BUFFER_BIT 0x00004000 +#define GL_LIGHT1 0x4001 +#define GL_LIGHT2 0x4002 +#define GL_LIGHT3 0x4003 +#define GL_LIGHT4 0x4004 +#define GL_LIGHT5 0x4005 +#define GL_LIGHT6 0x4006 +#define GL_LIGHT7 0x4007 +#define GL_HINT_BIT 0x00008000 +#define GL_POLYGON_OFFSET_FILL 0x8037 +#define GL_POLYGON_OFFSET_FACTOR 0x8038 +#define GL_ALPHA4 0x803B +#define GL_ALPHA8 0x803C +#define GL_ALPHA12 0x803D +#define GL_ALPHA16 0x803E +#define GL_LUMINANCE4 0x803F +#define GL_LUMINANCE8 0x8040 +#define GL_LUMINANCE12 0x8041 +#define GL_LUMINANCE16 0x8042 +#define GL_LUMINANCE4_ALPHA4 0x8043 +#define GL_LUMINANCE6_ALPHA2 0x8044 +#define GL_LUMINANCE8_ALPHA8 0x8045 +#define GL_LUMINANCE12_ALPHA4 0x8046 +#define GL_LUMINANCE12_ALPHA12 0x8047 +#define GL_LUMINANCE16_ALPHA16 0x8048 +#define GL_INTENSITY 0x8049 +#define GL_INTENSITY4 0x804A +#define GL_INTENSITY8 0x804B +#define GL_INTENSITY12 0x804C +#define GL_INTENSITY16 0x804D +#define GL_RGB4 0x804F +#define GL_RGB5 0x8050 +#define GL_RGB8 0x8051 +#define GL_RGB10 0x8052 +#define GL_RGB12 0x8053 +#define GL_RGB16 0x8054 +#define GL_RGBA2 0x8055 +#define GL_RGBA4 0x8056 +#define GL_RGB5_A1 0x8057 +#define GL_RGBA8 0x8058 +#define GL_RGB10_A2 0x8059 +#define GL_RGBA12 0x805A +#define GL_RGBA16 0x805B +#define GL_TEXTURE_RED_SIZE 0x805C +#define GL_TEXTURE_GREEN_SIZE 0x805D +#define GL_TEXTURE_BLUE_SIZE 0x805E +#define GL_TEXTURE_ALPHA_SIZE 0x805F +#define GL_TEXTURE_LUMINANCE_SIZE 0x8060 +#define GL_TEXTURE_INTENSITY_SIZE 0x8061 +#define GL_PROXY_TEXTURE_1D 0x8063 +#define GL_PROXY_TEXTURE_2D 0x8064 +#define GL_TEXTURE_PRIORITY 0x8066 +#define GL_TEXTURE_RESIDENT 0x8067 +#define GL_TEXTURE_BINDING_1D 0x8068 +#define GL_TEXTURE_BINDING_2D 0x8069 +#define GL_VERTEX_ARRAY 0x8074 +#define GL_NORMAL_ARRAY 0x8075 +#define GL_COLOR_ARRAY 0x8076 +#define GL_INDEX_ARRAY 0x8077 +#define GL_TEXTURE_COORD_ARRAY 0x8078 +#define GL_EDGE_FLAG_ARRAY 0x8079 +#define GL_VERTEX_ARRAY_SIZE 0x807A +#define GL_VERTEX_ARRAY_TYPE 0x807B +#define GL_VERTEX_ARRAY_STRIDE 0x807C +#define GL_NORMAL_ARRAY_TYPE 0x807E +#define GL_NORMAL_ARRAY_STRIDE 0x807F +#define GL_COLOR_ARRAY_SIZE 0x8081 +#define GL_COLOR_ARRAY_TYPE 0x8082 +#define GL_COLOR_ARRAY_STRIDE 0x8083 +#define GL_INDEX_ARRAY_TYPE 0x8085 +#define GL_INDEX_ARRAY_STRIDE 0x8086 +#define GL_TEXTURE_COORD_ARRAY_SIZE 0x8088 +#define GL_TEXTURE_COORD_ARRAY_TYPE 0x8089 +#define GL_TEXTURE_COORD_ARRAY_STRIDE 0x808A +#define GL_EDGE_FLAG_ARRAY_STRIDE 0x808C +#define GL_VERTEX_ARRAY_POINTER 0x808E +#define GL_NORMAL_ARRAY_POINTER 0x808F +#define GL_COLOR_ARRAY_POINTER 0x8090 +#define GL_INDEX_ARRAY_POINTER 0x8091 +#define GL_TEXTURE_COORD_ARRAY_POINTER 0x8092 +#define GL_EDGE_FLAG_ARRAY_POINTER 0x8093 +#define GL_COLOR_INDEX1_EXT 0x80E2 +#define GL_COLOR_INDEX2_EXT 0x80E3 +#define GL_COLOR_INDEX4_EXT 0x80E4 +#define GL_COLOR_INDEX8_EXT 0x80E5 +#define GL_COLOR_INDEX12_EXT 0x80E6 +#define GL_COLOR_INDEX16_EXT 0x80E7 +#define GL_EVAL_BIT 0x00010000 +#define GL_LIST_BIT 0x00020000 +#define GL_TEXTURE_BIT 0x00040000 +#define GL_SCISSOR_BIT 0x00080000 +#define GL_ALL_ATTRIB_BITS 0x000fffff +#define GL_CLIENT_ALL_ATTRIB_BITS 0xffffffff + +GLAPI void GLAPIENTRY glAccum (GLenum op, GLfloat value); +GLAPI void GLAPIENTRY glAlphaFunc (GLenum func, GLclampf ref); +GLAPI GLboolean GLAPIENTRY glAreTexturesResident (GLsizei n, const GLuint *textures, GLboolean *residences); +GLAPI void GLAPIENTRY glArrayElement (GLint i); +GLAPI void GLAPIENTRY glBegin (GLenum mode); +GLAPI void GLAPIENTRY glBindTexture (GLenum target, GLuint texture); +GLAPI void GLAPIENTRY glBitmap (GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte *bitmap); +GLAPI void GLAPIENTRY glBlendFunc (GLenum sfactor, GLenum dfactor); +GLAPI void GLAPIENTRY glCallList (GLuint list); +GLAPI void GLAPIENTRY glCallLists (GLsizei n, GLenum type, const void *lists); +GLAPI void GLAPIENTRY glClear (GLbitfield mask); +GLAPI void GLAPIENTRY glClearAccum (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GLAPI void GLAPIENTRY glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); +GLAPI void GLAPIENTRY glClearDepth (GLclampd depth); +GLAPI void GLAPIENTRY glClearIndex (GLfloat c); +GLAPI void GLAPIENTRY glClearStencil (GLint s); +GLAPI void GLAPIENTRY glClipPlane (GLenum plane, const GLdouble *equation); +GLAPI void GLAPIENTRY glColor3b (GLbyte red, GLbyte green, GLbyte blue); +GLAPI void GLAPIENTRY glColor3bv (const GLbyte *v); +GLAPI void GLAPIENTRY glColor3d (GLdouble red, GLdouble green, GLdouble blue); +GLAPI void GLAPIENTRY glColor3dv (const GLdouble *v); +GLAPI void GLAPIENTRY glColor3f (GLfloat red, GLfloat green, GLfloat blue); +GLAPI void GLAPIENTRY glColor3fv (const GLfloat *v); +GLAPI void GLAPIENTRY glColor3i (GLint red, GLint green, GLint blue); +GLAPI void GLAPIENTRY glColor3iv (const GLint *v); +GLAPI void GLAPIENTRY glColor3s (GLshort red, GLshort green, GLshort blue); +GLAPI void GLAPIENTRY glColor3sv (const GLshort *v); +GLAPI void GLAPIENTRY glColor3ub (GLubyte red, GLubyte green, GLubyte blue); +GLAPI void GLAPIENTRY glColor3ubv (const GLubyte *v); +GLAPI void GLAPIENTRY glColor3ui (GLuint red, GLuint green, GLuint blue); +GLAPI void GLAPIENTRY glColor3uiv (const GLuint *v); +GLAPI void GLAPIENTRY glColor3us (GLushort red, GLushort green, GLushort blue); +GLAPI void GLAPIENTRY glColor3usv (const GLushort *v); +GLAPI void GLAPIENTRY glColor4b (GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha); +GLAPI void GLAPIENTRY glColor4bv (const GLbyte *v); +GLAPI void GLAPIENTRY glColor4d (GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha); +GLAPI void GLAPIENTRY glColor4dv (const GLdouble *v); +GLAPI void GLAPIENTRY glColor4f (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GLAPI void GLAPIENTRY glColor4fv (const GLfloat *v); +GLAPI void GLAPIENTRY glColor4i (GLint red, GLint green, GLint blue, GLint alpha); +GLAPI void GLAPIENTRY glColor4iv (const GLint *v); +GLAPI void GLAPIENTRY glColor4s (GLshort red, GLshort green, GLshort blue, GLshort alpha); +GLAPI void GLAPIENTRY glColor4sv (const GLshort *v); +GLAPI void GLAPIENTRY glColor4ub (GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha); +GLAPI void GLAPIENTRY glColor4ubv (const GLubyte *v); +GLAPI void GLAPIENTRY glColor4ui (GLuint red, GLuint green, GLuint blue, GLuint alpha); +GLAPI void GLAPIENTRY glColor4uiv (const GLuint *v); +GLAPI void GLAPIENTRY glColor4us (GLushort red, GLushort green, GLushort blue, GLushort alpha); +GLAPI void GLAPIENTRY glColor4usv (const GLushort *v); +GLAPI void GLAPIENTRY glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +GLAPI void GLAPIENTRY glColorMaterial (GLenum face, GLenum mode); +GLAPI void GLAPIENTRY glColorPointer (GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void GLAPIENTRY glCopyPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum type); +GLAPI void GLAPIENTRY glCopyTexImage1D (GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLint border); +GLAPI void GLAPIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalFormat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GLAPI void GLAPIENTRY glCopyTexSubImage1D (GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void GLAPIENTRY glCopyTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void GLAPIENTRY glCullFace (GLenum mode); +GLAPI void GLAPIENTRY glDeleteLists (GLuint list, GLsizei range); +GLAPI void GLAPIENTRY glDeleteTextures (GLsizei n, const GLuint *textures); +GLAPI void GLAPIENTRY glDepthFunc (GLenum func); +GLAPI void GLAPIENTRY glDepthMask (GLboolean flag); +GLAPI void GLAPIENTRY glDepthRange (GLclampd zNear, GLclampd zFar); +GLAPI void GLAPIENTRY glDisable (GLenum cap); +GLAPI void GLAPIENTRY glDisableClientState (GLenum array); +GLAPI void GLAPIENTRY glDrawArrays (GLenum mode, GLint first, GLsizei count); +GLAPI void GLAPIENTRY glDrawBuffer (GLenum mode); +GLAPI void GLAPIENTRY glDrawElements (GLenum mode, GLsizei count, GLenum type, const void *indices); +GLAPI void GLAPIENTRY glDrawPixels (GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GLAPI void GLAPIENTRY glEdgeFlag (GLboolean flag); +GLAPI void GLAPIENTRY glEdgeFlagPointer (GLsizei stride, const void *pointer); +GLAPI void GLAPIENTRY glEdgeFlagv (const GLboolean *flag); +GLAPI void GLAPIENTRY glEnable (GLenum cap); +GLAPI void GLAPIENTRY glEnableClientState (GLenum array); +GLAPI void GLAPIENTRY glEnd (void); +GLAPI void GLAPIENTRY glEndList (void); +GLAPI void GLAPIENTRY glEvalCoord1d (GLdouble u); +GLAPI void GLAPIENTRY glEvalCoord1dv (const GLdouble *u); +GLAPI void GLAPIENTRY glEvalCoord1f (GLfloat u); +GLAPI void GLAPIENTRY glEvalCoord1fv (const GLfloat *u); +GLAPI void GLAPIENTRY glEvalCoord2d (GLdouble u, GLdouble v); +GLAPI void GLAPIENTRY glEvalCoord2dv (const GLdouble *u); +GLAPI void GLAPIENTRY glEvalCoord2f (GLfloat u, GLfloat v); +GLAPI void GLAPIENTRY glEvalCoord2fv (const GLfloat *u); +GLAPI void GLAPIENTRY glEvalMesh1 (GLenum mode, GLint i1, GLint i2); +GLAPI void GLAPIENTRY glEvalMesh2 (GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2); +GLAPI void GLAPIENTRY glEvalPoint1 (GLint i); +GLAPI void GLAPIENTRY glEvalPoint2 (GLint i, GLint j); +GLAPI void GLAPIENTRY glFeedbackBuffer (GLsizei size, GLenum type, GLfloat *buffer); +GLAPI void GLAPIENTRY glFinish (void); +GLAPI void GLAPIENTRY glFlush (void); +GLAPI void GLAPIENTRY glFogf (GLenum pname, GLfloat param); +GLAPI void GLAPIENTRY glFogfv (GLenum pname, const GLfloat *params); +GLAPI void GLAPIENTRY glFogi (GLenum pname, GLint param); +GLAPI void GLAPIENTRY glFogiv (GLenum pname, const GLint *params); +GLAPI void GLAPIENTRY glFrontFace (GLenum mode); +GLAPI void GLAPIENTRY glFrustum (GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GLAPI GLuint GLAPIENTRY glGenLists (GLsizei range); +GLAPI void GLAPIENTRY glGenTextures (GLsizei n, GLuint *textures); +GLAPI void GLAPIENTRY glGetBooleanv (GLenum pname, GLboolean *params); +GLAPI void GLAPIENTRY glGetClipPlane (GLenum plane, GLdouble *equation); +GLAPI void GLAPIENTRY glGetDoublev (GLenum pname, GLdouble *params); +GLAPI GLenum GLAPIENTRY glGetError (void); +GLAPI void GLAPIENTRY glGetFloatv (GLenum pname, GLfloat *params); +GLAPI void GLAPIENTRY glGetIntegerv (GLenum pname, GLint *params); +GLAPI void GLAPIENTRY glGetLightfv (GLenum light, GLenum pname, GLfloat *params); +GLAPI void GLAPIENTRY glGetLightiv (GLenum light, GLenum pname, GLint *params); +GLAPI void GLAPIENTRY glGetMapdv (GLenum target, GLenum query, GLdouble *v); +GLAPI void GLAPIENTRY glGetMapfv (GLenum target, GLenum query, GLfloat *v); +GLAPI void GLAPIENTRY glGetMapiv (GLenum target, GLenum query, GLint *v); +GLAPI void GLAPIENTRY glGetMaterialfv (GLenum face, GLenum pname, GLfloat *params); +GLAPI void GLAPIENTRY glGetMaterialiv (GLenum face, GLenum pname, GLint *params); +GLAPI void GLAPIENTRY glGetPixelMapfv (GLenum map, GLfloat *values); +GLAPI void GLAPIENTRY glGetPixelMapuiv (GLenum map, GLuint *values); +GLAPI void GLAPIENTRY glGetPixelMapusv (GLenum map, GLushort *values); +GLAPI void GLAPIENTRY glGetPointerv (GLenum pname, void* *params); +GLAPI void GLAPIENTRY glGetPolygonStipple (GLubyte *mask); +GLAPI const GLubyte * GLAPIENTRY glGetString (GLenum name); +GLAPI void GLAPIENTRY glGetTexEnvfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void GLAPIENTRY glGetTexEnviv (GLenum target, GLenum pname, GLint *params); +GLAPI void GLAPIENTRY glGetTexGendv (GLenum coord, GLenum pname, GLdouble *params); +GLAPI void GLAPIENTRY glGetTexGenfv (GLenum coord, GLenum pname, GLfloat *params); +GLAPI void GLAPIENTRY glGetTexGeniv (GLenum coord, GLenum pname, GLint *params); +GLAPI void GLAPIENTRY glGetTexImage (GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +GLAPI void GLAPIENTRY glGetTexLevelParameterfv (GLenum target, GLint level, GLenum pname, GLfloat *params); +GLAPI void GLAPIENTRY glGetTexLevelParameteriv (GLenum target, GLint level, GLenum pname, GLint *params); +GLAPI void GLAPIENTRY glGetTexParameterfv (GLenum target, GLenum pname, GLfloat *params); +GLAPI void GLAPIENTRY glGetTexParameteriv (GLenum target, GLenum pname, GLint *params); +GLAPI void GLAPIENTRY glHint (GLenum target, GLenum mode); +GLAPI void GLAPIENTRY glIndexMask (GLuint mask); +GLAPI void GLAPIENTRY glIndexPointer (GLenum type, GLsizei stride, const void *pointer); +GLAPI void GLAPIENTRY glIndexd (GLdouble c); +GLAPI void GLAPIENTRY glIndexdv (const GLdouble *c); +GLAPI void GLAPIENTRY glIndexf (GLfloat c); +GLAPI void GLAPIENTRY glIndexfv (const GLfloat *c); +GLAPI void GLAPIENTRY glIndexi (GLint c); +GLAPI void GLAPIENTRY glIndexiv (const GLint *c); +GLAPI void GLAPIENTRY glIndexs (GLshort c); +GLAPI void GLAPIENTRY glIndexsv (const GLshort *c); +GLAPI void GLAPIENTRY glIndexub (GLubyte c); +GLAPI void GLAPIENTRY glIndexubv (const GLubyte *c); +GLAPI void GLAPIENTRY glInitNames (void); +GLAPI void GLAPIENTRY glInterleavedArrays (GLenum format, GLsizei stride, const void *pointer); +GLAPI GLboolean GLAPIENTRY glIsEnabled (GLenum cap); +GLAPI GLboolean GLAPIENTRY glIsList (GLuint list); +GLAPI GLboolean GLAPIENTRY glIsTexture (GLuint texture); +GLAPI void GLAPIENTRY glLightModelf (GLenum pname, GLfloat param); +GLAPI void GLAPIENTRY glLightModelfv (GLenum pname, const GLfloat *params); +GLAPI void GLAPIENTRY glLightModeli (GLenum pname, GLint param); +GLAPI void GLAPIENTRY glLightModeliv (GLenum pname, const GLint *params); +GLAPI void GLAPIENTRY glLightf (GLenum light, GLenum pname, GLfloat param); +GLAPI void GLAPIENTRY glLightfv (GLenum light, GLenum pname, const GLfloat *params); +GLAPI void GLAPIENTRY glLighti (GLenum light, GLenum pname, GLint param); +GLAPI void GLAPIENTRY glLightiv (GLenum light, GLenum pname, const GLint *params); +GLAPI void GLAPIENTRY glLineStipple (GLint factor, GLushort pattern); +GLAPI void GLAPIENTRY glLineWidth (GLfloat width); +GLAPI void GLAPIENTRY glListBase (GLuint base); +GLAPI void GLAPIENTRY glLoadIdentity (void); +GLAPI void GLAPIENTRY glLoadMatrixd (const GLdouble *m); +GLAPI void GLAPIENTRY glLoadMatrixf (const GLfloat *m); +GLAPI void GLAPIENTRY glLoadName (GLuint name); +GLAPI void GLAPIENTRY glLogicOp (GLenum opcode); +GLAPI void GLAPIENTRY glMap1d (GLenum target, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points); +GLAPI void GLAPIENTRY glMap1f (GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points); +GLAPI void GLAPIENTRY glMap2d (GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points); +GLAPI void GLAPIENTRY glMap2f (GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points); +GLAPI void GLAPIENTRY glMapGrid1d (GLint un, GLdouble u1, GLdouble u2); +GLAPI void GLAPIENTRY glMapGrid1f (GLint un, GLfloat u1, GLfloat u2); +GLAPI void GLAPIENTRY glMapGrid2d (GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1, GLdouble v2); +GLAPI void GLAPIENTRY glMapGrid2f (GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, GLfloat v2); +GLAPI void GLAPIENTRY glMaterialf (GLenum face, GLenum pname, GLfloat param); +GLAPI void GLAPIENTRY glMaterialfv (GLenum face, GLenum pname, const GLfloat *params); +GLAPI void GLAPIENTRY glMateriali (GLenum face, GLenum pname, GLint param); +GLAPI void GLAPIENTRY glMaterialiv (GLenum face, GLenum pname, const GLint *params); +GLAPI void GLAPIENTRY glMatrixMode (GLenum mode); +GLAPI void GLAPIENTRY glMultMatrixd (const GLdouble *m); +GLAPI void GLAPIENTRY glMultMatrixf (const GLfloat *m); +GLAPI void GLAPIENTRY glNewList (GLuint list, GLenum mode); +GLAPI void GLAPIENTRY glNormal3b (GLbyte nx, GLbyte ny, GLbyte nz); +GLAPI void GLAPIENTRY glNormal3bv (const GLbyte *v); +GLAPI void GLAPIENTRY glNormal3d (GLdouble nx, GLdouble ny, GLdouble nz); +GLAPI void GLAPIENTRY glNormal3dv (const GLdouble *v); +GLAPI void GLAPIENTRY glNormal3f (GLfloat nx, GLfloat ny, GLfloat nz); +GLAPI void GLAPIENTRY glNormal3fv (const GLfloat *v); +GLAPI void GLAPIENTRY glNormal3i (GLint nx, GLint ny, GLint nz); +GLAPI void GLAPIENTRY glNormal3iv (const GLint *v); +GLAPI void GLAPIENTRY glNormal3s (GLshort nx, GLshort ny, GLshort nz); +GLAPI void GLAPIENTRY glNormal3sv (const GLshort *v); +GLAPI void GLAPIENTRY glNormalPointer (GLenum type, GLsizei stride, const void *pointer); +GLAPI void GLAPIENTRY glOrtho (GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GLAPI void GLAPIENTRY glPassThrough (GLfloat token); +GLAPI void GLAPIENTRY glPixelMapfv (GLenum map, GLsizei mapsize, const GLfloat *values); +GLAPI void GLAPIENTRY glPixelMapuiv (GLenum map, GLsizei mapsize, const GLuint *values); +GLAPI void GLAPIENTRY glPixelMapusv (GLenum map, GLsizei mapsize, const GLushort *values); +GLAPI void GLAPIENTRY glPixelStoref (GLenum pname, GLfloat param); +GLAPI void GLAPIENTRY glPixelStorei (GLenum pname, GLint param); +GLAPI void GLAPIENTRY glPixelTransferf (GLenum pname, GLfloat param); +GLAPI void GLAPIENTRY glPixelTransferi (GLenum pname, GLint param); +GLAPI void GLAPIENTRY glPixelZoom (GLfloat xfactor, GLfloat yfactor); +GLAPI void GLAPIENTRY glPointSize (GLfloat size); +GLAPI void GLAPIENTRY glPolygonMode (GLenum face, GLenum mode); +GLAPI void GLAPIENTRY glPolygonOffset (GLfloat factor, GLfloat units); +GLAPI void GLAPIENTRY glPolygonStipple (const GLubyte *mask); +GLAPI void GLAPIENTRY glPopAttrib (void); +GLAPI void GLAPIENTRY glPopClientAttrib (void); +GLAPI void GLAPIENTRY glPopMatrix (void); +GLAPI void GLAPIENTRY glPopName (void); +GLAPI void GLAPIENTRY glPrioritizeTextures (GLsizei n, const GLuint *textures, const GLclampf *priorities); +GLAPI void GLAPIENTRY glPushAttrib (GLbitfield mask); +GLAPI void GLAPIENTRY glPushClientAttrib (GLbitfield mask); +GLAPI void GLAPIENTRY glPushMatrix (void); +GLAPI void GLAPIENTRY glPushName (GLuint name); +GLAPI void GLAPIENTRY glRasterPos2d (GLdouble x, GLdouble y); +GLAPI void GLAPIENTRY glRasterPos2dv (const GLdouble *v); +GLAPI void GLAPIENTRY glRasterPos2f (GLfloat x, GLfloat y); +GLAPI void GLAPIENTRY glRasterPos2fv (const GLfloat *v); +GLAPI void GLAPIENTRY glRasterPos2i (GLint x, GLint y); +GLAPI void GLAPIENTRY glRasterPos2iv (const GLint *v); +GLAPI void GLAPIENTRY glRasterPos2s (GLshort x, GLshort y); +GLAPI void GLAPIENTRY glRasterPos2sv (const GLshort *v); +GLAPI void GLAPIENTRY glRasterPos3d (GLdouble x, GLdouble y, GLdouble z); +GLAPI void GLAPIENTRY glRasterPos3dv (const GLdouble *v); +GLAPI void GLAPIENTRY glRasterPos3f (GLfloat x, GLfloat y, GLfloat z); +GLAPI void GLAPIENTRY glRasterPos3fv (const GLfloat *v); +GLAPI void GLAPIENTRY glRasterPos3i (GLint x, GLint y, GLint z); +GLAPI void GLAPIENTRY glRasterPos3iv (const GLint *v); +GLAPI void GLAPIENTRY glRasterPos3s (GLshort x, GLshort y, GLshort z); +GLAPI void GLAPIENTRY glRasterPos3sv (const GLshort *v); +GLAPI void GLAPIENTRY glRasterPos4d (GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void GLAPIENTRY glRasterPos4dv (const GLdouble *v); +GLAPI void GLAPIENTRY glRasterPos4f (GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void GLAPIENTRY glRasterPos4fv (const GLfloat *v); +GLAPI void GLAPIENTRY glRasterPos4i (GLint x, GLint y, GLint z, GLint w); +GLAPI void GLAPIENTRY glRasterPos4iv (const GLint *v); +GLAPI void GLAPIENTRY glRasterPos4s (GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void GLAPIENTRY glRasterPos4sv (const GLshort *v); +GLAPI void GLAPIENTRY glReadBuffer (GLenum mode); +GLAPI void GLAPIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels); +GLAPI void GLAPIENTRY glRectd (GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2); +GLAPI void GLAPIENTRY glRectdv (const GLdouble *v1, const GLdouble *v2); +GLAPI void GLAPIENTRY glRectf (GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2); +GLAPI void GLAPIENTRY glRectfv (const GLfloat *v1, const GLfloat *v2); +GLAPI void GLAPIENTRY glRecti (GLint x1, GLint y1, GLint x2, GLint y2); +GLAPI void GLAPIENTRY glRectiv (const GLint *v1, const GLint *v2); +GLAPI void GLAPIENTRY glRects (GLshort x1, GLshort y1, GLshort x2, GLshort y2); +GLAPI void GLAPIENTRY glRectsv (const GLshort *v1, const GLshort *v2); +GLAPI GLint GLAPIENTRY glRenderMode (GLenum mode); +GLAPI void GLAPIENTRY glRotated (GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +GLAPI void GLAPIENTRY glRotatef (GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +GLAPI void GLAPIENTRY glScaled (GLdouble x, GLdouble y, GLdouble z); +GLAPI void GLAPIENTRY glScalef (GLfloat x, GLfloat y, GLfloat z); +GLAPI void GLAPIENTRY glScissor (GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void GLAPIENTRY glSelectBuffer (GLsizei size, GLuint *buffer); +GLAPI void GLAPIENTRY glShadeModel (GLenum mode); +GLAPI void GLAPIENTRY glStencilFunc (GLenum func, GLint ref, GLuint mask); +GLAPI void GLAPIENTRY glStencilMask (GLuint mask); +GLAPI void GLAPIENTRY glStencilOp (GLenum fail, GLenum zfail, GLenum zpass); +GLAPI void GLAPIENTRY glTexCoord1d (GLdouble s); +GLAPI void GLAPIENTRY glTexCoord1dv (const GLdouble *v); +GLAPI void GLAPIENTRY glTexCoord1f (GLfloat s); +GLAPI void GLAPIENTRY glTexCoord1fv (const GLfloat *v); +GLAPI void GLAPIENTRY glTexCoord1i (GLint s); +GLAPI void GLAPIENTRY glTexCoord1iv (const GLint *v); +GLAPI void GLAPIENTRY glTexCoord1s (GLshort s); +GLAPI void GLAPIENTRY glTexCoord1sv (const GLshort *v); +GLAPI void GLAPIENTRY glTexCoord2d (GLdouble s, GLdouble t); +GLAPI void GLAPIENTRY glTexCoord2dv (const GLdouble *v); +GLAPI void GLAPIENTRY glTexCoord2f (GLfloat s, GLfloat t); +GLAPI void GLAPIENTRY glTexCoord2fv (const GLfloat *v); +GLAPI void GLAPIENTRY glTexCoord2i (GLint s, GLint t); +GLAPI void GLAPIENTRY glTexCoord2iv (const GLint *v); +GLAPI void GLAPIENTRY glTexCoord2s (GLshort s, GLshort t); +GLAPI void GLAPIENTRY glTexCoord2sv (const GLshort *v); +GLAPI void GLAPIENTRY glTexCoord3d (GLdouble s, GLdouble t, GLdouble r); +GLAPI void GLAPIENTRY glTexCoord3dv (const GLdouble *v); +GLAPI void GLAPIENTRY glTexCoord3f (GLfloat s, GLfloat t, GLfloat r); +GLAPI void GLAPIENTRY glTexCoord3fv (const GLfloat *v); +GLAPI void GLAPIENTRY glTexCoord3i (GLint s, GLint t, GLint r); +GLAPI void GLAPIENTRY glTexCoord3iv (const GLint *v); +GLAPI void GLAPIENTRY glTexCoord3s (GLshort s, GLshort t, GLshort r); +GLAPI void GLAPIENTRY glTexCoord3sv (const GLshort *v); +GLAPI void GLAPIENTRY glTexCoord4d (GLdouble s, GLdouble t, GLdouble r, GLdouble q); +GLAPI void GLAPIENTRY glTexCoord4dv (const GLdouble *v); +GLAPI void GLAPIENTRY glTexCoord4f (GLfloat s, GLfloat t, GLfloat r, GLfloat q); +GLAPI void GLAPIENTRY glTexCoord4fv (const GLfloat *v); +GLAPI void GLAPIENTRY glTexCoord4i (GLint s, GLint t, GLint r, GLint q); +GLAPI void GLAPIENTRY glTexCoord4iv (const GLint *v); +GLAPI void GLAPIENTRY glTexCoord4s (GLshort s, GLshort t, GLshort r, GLshort q); +GLAPI void GLAPIENTRY glTexCoord4sv (const GLshort *v); +GLAPI void GLAPIENTRY glTexCoordPointer (GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void GLAPIENTRY glTexEnvf (GLenum target, GLenum pname, GLfloat param); +GLAPI void GLAPIENTRY glTexEnvfv (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void GLAPIENTRY glTexEnvi (GLenum target, GLenum pname, GLint param); +GLAPI void GLAPIENTRY glTexEnviv (GLenum target, GLenum pname, const GLint *params); +GLAPI void GLAPIENTRY glTexGend (GLenum coord, GLenum pname, GLdouble param); +GLAPI void GLAPIENTRY glTexGendv (GLenum coord, GLenum pname, const GLdouble *params); +GLAPI void GLAPIENTRY glTexGenf (GLenum coord, GLenum pname, GLfloat param); +GLAPI void GLAPIENTRY glTexGenfv (GLenum coord, GLenum pname, const GLfloat *params); +GLAPI void GLAPIENTRY glTexGeni (GLenum coord, GLenum pname, GLint param); +GLAPI void GLAPIENTRY glTexGeniv (GLenum coord, GLenum pname, const GLint *params); +GLAPI void GLAPIENTRY glTexImage1D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void GLAPIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI void GLAPIENTRY glTexParameterf (GLenum target, GLenum pname, GLfloat param); +GLAPI void GLAPIENTRY glTexParameterfv (GLenum target, GLenum pname, const GLfloat *params); +GLAPI void GLAPIENTRY glTexParameteri (GLenum target, GLenum pname, GLint param); +GLAPI void GLAPIENTRY glTexParameteriv (GLenum target, GLenum pname, const GLint *params); +GLAPI void GLAPIENTRY glTexSubImage1D (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI void GLAPIENTRY glTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GLAPI void GLAPIENTRY glTranslated (GLdouble x, GLdouble y, GLdouble z); +GLAPI void GLAPIENTRY glTranslatef (GLfloat x, GLfloat y, GLfloat z); +GLAPI void GLAPIENTRY glVertex2d (GLdouble x, GLdouble y); +GLAPI void GLAPIENTRY glVertex2dv (const GLdouble *v); +GLAPI void GLAPIENTRY glVertex2f (GLfloat x, GLfloat y); +GLAPI void GLAPIENTRY glVertex2fv (const GLfloat *v); +GLAPI void GLAPIENTRY glVertex2i (GLint x, GLint y); +GLAPI void GLAPIENTRY glVertex2iv (const GLint *v); +GLAPI void GLAPIENTRY glVertex2s (GLshort x, GLshort y); +GLAPI void GLAPIENTRY glVertex2sv (const GLshort *v); +GLAPI void GLAPIENTRY glVertex3d (GLdouble x, GLdouble y, GLdouble z); +GLAPI void GLAPIENTRY glVertex3dv (const GLdouble *v); +GLAPI void GLAPIENTRY glVertex3f (GLfloat x, GLfloat y, GLfloat z); +GLAPI void GLAPIENTRY glVertex3fv (const GLfloat *v); +GLAPI void GLAPIENTRY glVertex3i (GLint x, GLint y, GLint z); +GLAPI void GLAPIENTRY glVertex3iv (const GLint *v); +GLAPI void GLAPIENTRY glVertex3s (GLshort x, GLshort y, GLshort z); +GLAPI void GLAPIENTRY glVertex3sv (const GLshort *v); +GLAPI void GLAPIENTRY glVertex4d (GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI void GLAPIENTRY glVertex4dv (const GLdouble *v); +GLAPI void GLAPIENTRY glVertex4f (GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI void GLAPIENTRY glVertex4fv (const GLfloat *v); +GLAPI void GLAPIENTRY glVertex4i (GLint x, GLint y, GLint z, GLint w); +GLAPI void GLAPIENTRY glVertex4iv (const GLint *v); +GLAPI void GLAPIENTRY glVertex4s (GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI void GLAPIENTRY glVertex4sv (const GLshort *v); +GLAPI void GLAPIENTRY glVertexPointer (GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void GLAPIENTRY glViewport (GLint x, GLint y, GLsizei width, GLsizei height); + +#define GLEW_VERSION_1_1 GLEW_GET_VAR(__GLEW_VERSION_1_1) + +#endif /* GL_VERSION_1_1 */ + +/* ---------------------------------- GLU ---------------------------------- */ + +#ifndef GLEW_NO_GLU +# ifdef __APPLE__ +# include +# if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) +# define GLEW_NO_GLU +# endif +# endif +#endif + +#ifndef GLEW_NO_GLU +/* this is where we can safely include GLU */ +# if defined(__APPLE__) && defined(__MACH__) +# include +# else +# include +# endif +#endif + +/* ----------------------------- GL_VERSION_1_2 ---------------------------- */ + +#ifndef GL_VERSION_1_2 +#define GL_VERSION_1_2 1 + +#define GL_SMOOTH_POINT_SIZE_RANGE 0x0B12 +#define GL_SMOOTH_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_SMOOTH_LINE_WIDTH_RANGE 0x0B22 +#define GL_SMOOTH_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_UNSIGNED_BYTE_3_3_2 0x8032 +#define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 +#define GL_UNSIGNED_INT_8_8_8_8 0x8035 +#define GL_UNSIGNED_INT_10_10_10_2 0x8036 +#define GL_RESCALE_NORMAL 0x803A +#define GL_TEXTURE_BINDING_3D 0x806A +#define GL_PACK_SKIP_IMAGES 0x806B +#define GL_PACK_IMAGE_HEIGHT 0x806C +#define GL_UNPACK_SKIP_IMAGES 0x806D +#define GL_UNPACK_IMAGE_HEIGHT 0x806E +#define GL_TEXTURE_3D 0x806F +#define GL_PROXY_TEXTURE_3D 0x8070 +#define GL_TEXTURE_DEPTH 0x8071 +#define GL_TEXTURE_WRAP_R 0x8072 +#define GL_MAX_3D_TEXTURE_SIZE 0x8073 +#define GL_BGR 0x80E0 +#define GL_BGRA 0x80E1 +#define GL_MAX_ELEMENTS_VERTICES 0x80E8 +#define GL_MAX_ELEMENTS_INDICES 0x80E9 +#define GL_CLAMP_TO_EDGE 0x812F +#define GL_TEXTURE_MIN_LOD 0x813A +#define GL_TEXTURE_MAX_LOD 0x813B +#define GL_TEXTURE_BASE_LEVEL 0x813C +#define GL_TEXTURE_MAX_LEVEL 0x813D +#define GL_LIGHT_MODEL_COLOR_CONTROL 0x81F8 +#define GL_SINGLE_COLOR 0x81F9 +#define GL_SEPARATE_SPECULAR_COLOR 0x81FA +#define GL_UNSIGNED_BYTE_2_3_3_REV 0x8362 +#define GL_UNSIGNED_SHORT_5_6_5 0x8363 +#define GL_UNSIGNED_SHORT_5_6_5_REV 0x8364 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV 0x8365 +#define GL_UNSIGNED_SHORT_1_5_5_5_REV 0x8366 +#define GL_UNSIGNED_INT_8_8_8_8_REV 0x8367 +#define GL_ALIASED_POINT_SIZE_RANGE 0x846D +#define GL_ALIASED_LINE_WIDTH_RANGE 0x846E + +typedef void (GLAPIENTRY * PFNGLCOPYTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLDRAWRANGEELEMENTSPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); +typedef void (GLAPIENTRY * PFNGLTEXIMAGE3DPROC) (GLenum target, GLint level, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (GLAPIENTRY * PFNGLTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); + +#define glCopyTexSubImage3D GLEW_GET_FUN(__glewCopyTexSubImage3D) +#define glDrawRangeElements GLEW_GET_FUN(__glewDrawRangeElements) +#define glTexImage3D GLEW_GET_FUN(__glewTexImage3D) +#define glTexSubImage3D GLEW_GET_FUN(__glewTexSubImage3D) + +#define GLEW_VERSION_1_2 GLEW_GET_VAR(__GLEW_VERSION_1_2) + +#endif /* GL_VERSION_1_2 */ + +/* ---------------------------- GL_VERSION_1_2_1 --------------------------- */ + +#ifndef GL_VERSION_1_2_1 +#define GL_VERSION_1_2_1 1 + +#define GLEW_VERSION_1_2_1 GLEW_GET_VAR(__GLEW_VERSION_1_2_1) + +#endif /* GL_VERSION_1_2_1 */ + +/* ----------------------------- GL_VERSION_1_3 ---------------------------- */ + +#ifndef GL_VERSION_1_3 +#define GL_VERSION_1_3 1 + +#define GL_MULTISAMPLE 0x809D +#define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE 0x809F +#define GL_SAMPLE_COVERAGE 0x80A0 +#define GL_SAMPLE_BUFFERS 0x80A8 +#define GL_SAMPLES 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT 0x80AB +#define GL_CLAMP_TO_BORDER 0x812D +#define GL_TEXTURE0 0x84C0 +#define GL_TEXTURE1 0x84C1 +#define GL_TEXTURE2 0x84C2 +#define GL_TEXTURE3 0x84C3 +#define GL_TEXTURE4 0x84C4 +#define GL_TEXTURE5 0x84C5 +#define GL_TEXTURE6 0x84C6 +#define GL_TEXTURE7 0x84C7 +#define GL_TEXTURE8 0x84C8 +#define GL_TEXTURE9 0x84C9 +#define GL_TEXTURE10 0x84CA +#define GL_TEXTURE11 0x84CB +#define GL_TEXTURE12 0x84CC +#define GL_TEXTURE13 0x84CD +#define GL_TEXTURE14 0x84CE +#define GL_TEXTURE15 0x84CF +#define GL_TEXTURE16 0x84D0 +#define GL_TEXTURE17 0x84D1 +#define GL_TEXTURE18 0x84D2 +#define GL_TEXTURE19 0x84D3 +#define GL_TEXTURE20 0x84D4 +#define GL_TEXTURE21 0x84D5 +#define GL_TEXTURE22 0x84D6 +#define GL_TEXTURE23 0x84D7 +#define GL_TEXTURE24 0x84D8 +#define GL_TEXTURE25 0x84D9 +#define GL_TEXTURE26 0x84DA +#define GL_TEXTURE27 0x84DB +#define GL_TEXTURE28 0x84DC +#define GL_TEXTURE29 0x84DD +#define GL_TEXTURE30 0x84DE +#define GL_TEXTURE31 0x84DF +#define GL_ACTIVE_TEXTURE 0x84E0 +#define GL_CLIENT_ACTIVE_TEXTURE 0x84E1 +#define GL_MAX_TEXTURE_UNITS 0x84E2 +#define GL_TRANSPOSE_MODELVIEW_MATRIX 0x84E3 +#define GL_TRANSPOSE_PROJECTION_MATRIX 0x84E4 +#define GL_TRANSPOSE_TEXTURE_MATRIX 0x84E5 +#define GL_TRANSPOSE_COLOR_MATRIX 0x84E6 +#define GL_SUBTRACT 0x84E7 +#define GL_COMPRESSED_ALPHA 0x84E9 +#define GL_COMPRESSED_LUMINANCE 0x84EA +#define GL_COMPRESSED_LUMINANCE_ALPHA 0x84EB +#define GL_COMPRESSED_INTENSITY 0x84EC +#define GL_COMPRESSED_RGB 0x84ED +#define GL_COMPRESSED_RGBA 0x84EE +#define GL_TEXTURE_COMPRESSION_HINT 0x84EF +#define GL_NORMAL_MAP 0x8511 +#define GL_REFLECTION_MAP 0x8512 +#define GL_TEXTURE_CUBE_MAP 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C +#define GL_COMBINE 0x8570 +#define GL_COMBINE_RGB 0x8571 +#define GL_COMBINE_ALPHA 0x8572 +#define GL_RGB_SCALE 0x8573 +#define GL_ADD_SIGNED 0x8574 +#define GL_INTERPOLATE 0x8575 +#define GL_CONSTANT 0x8576 +#define GL_PRIMARY_COLOR 0x8577 +#define GL_PREVIOUS 0x8578 +#define GL_SOURCE0_RGB 0x8580 +#define GL_SOURCE1_RGB 0x8581 +#define GL_SOURCE2_RGB 0x8582 +#define GL_SOURCE0_ALPHA 0x8588 +#define GL_SOURCE1_ALPHA 0x8589 +#define GL_SOURCE2_ALPHA 0x858A +#define GL_OPERAND0_RGB 0x8590 +#define GL_OPERAND1_RGB 0x8591 +#define GL_OPERAND2_RGB 0x8592 +#define GL_OPERAND0_ALPHA 0x8598 +#define GL_OPERAND1_ALPHA 0x8599 +#define GL_OPERAND2_ALPHA 0x859A +#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE 0x86A0 +#define GL_TEXTURE_COMPRESSED 0x86A1 +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 +#define GL_DOT3_RGB 0x86AE +#define GL_DOT3_RGBA 0x86AF +#define GL_MULTISAMPLE_BIT 0x20000000 + +typedef void (GLAPIENTRY * PFNGLACTIVETEXTUREPROC) (GLenum texture); +typedef void (GLAPIENTRY * PFNGLCLIENTACTIVETEXTUREPROC) (GLenum texture); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXIMAGE1DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXIMAGE3DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLGETCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint lod, void *img); +typedef void (GLAPIENTRY * PFNGLLOADTRANSPOSEMATRIXDPROC) (const GLdouble m[16]); +typedef void (GLAPIENTRY * PFNGLLOADTRANSPOSEMATRIXFPROC) (const GLfloat m[16]); +typedef void (GLAPIENTRY * PFNGLMULTTRANSPOSEMATRIXDPROC) (const GLdouble m[16]); +typedef void (GLAPIENTRY * PFNGLMULTTRANSPOSEMATRIXFPROC) (const GLfloat m[16]); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD1DPROC) (GLenum target, GLdouble s); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD1DVPROC) (GLenum target, const GLdouble *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD1FPROC) (GLenum target, GLfloat s); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD1FVPROC) (GLenum target, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD1IPROC) (GLenum target, GLint s); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD1IVPROC) (GLenum target, const GLint *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD1SPROC) (GLenum target, GLshort s); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD1SVPROC) (GLenum target, const GLshort *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD2DPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD2DVPROC) (GLenum target, const GLdouble *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD2FPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD2FVPROC) (GLenum target, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD2IPROC) (GLenum target, GLint s, GLint t); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD2IVPROC) (GLenum target, const GLint *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD2SPROC) (GLenum target, GLshort s, GLshort t); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD2SVPROC) (GLenum target, const GLshort *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD3DPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD3DVPROC) (GLenum target, const GLdouble *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD3FPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD3FVPROC) (GLenum target, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD3IPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD3IVPROC) (GLenum target, const GLint *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD3SPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD3SVPROC) (GLenum target, const GLshort *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD4DPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD4DVPROC) (GLenum target, const GLdouble *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD4FPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD4FVPROC) (GLenum target, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD4IPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD4IVPROC) (GLenum target, const GLint *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD4SPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD4SVPROC) (GLenum target, const GLshort *v); +typedef void (GLAPIENTRY * PFNGLSAMPLECOVERAGEPROC) (GLclampf value, GLboolean invert); + +#define glActiveTexture GLEW_GET_FUN(__glewActiveTexture) +#define glClientActiveTexture GLEW_GET_FUN(__glewClientActiveTexture) +#define glCompressedTexImage1D GLEW_GET_FUN(__glewCompressedTexImage1D) +#define glCompressedTexImage2D GLEW_GET_FUN(__glewCompressedTexImage2D) +#define glCompressedTexImage3D GLEW_GET_FUN(__glewCompressedTexImage3D) +#define glCompressedTexSubImage1D GLEW_GET_FUN(__glewCompressedTexSubImage1D) +#define glCompressedTexSubImage2D GLEW_GET_FUN(__glewCompressedTexSubImage2D) +#define glCompressedTexSubImage3D GLEW_GET_FUN(__glewCompressedTexSubImage3D) +#define glGetCompressedTexImage GLEW_GET_FUN(__glewGetCompressedTexImage) +#define glLoadTransposeMatrixd GLEW_GET_FUN(__glewLoadTransposeMatrixd) +#define glLoadTransposeMatrixf GLEW_GET_FUN(__glewLoadTransposeMatrixf) +#define glMultTransposeMatrixd GLEW_GET_FUN(__glewMultTransposeMatrixd) +#define glMultTransposeMatrixf GLEW_GET_FUN(__glewMultTransposeMatrixf) +#define glMultiTexCoord1d GLEW_GET_FUN(__glewMultiTexCoord1d) +#define glMultiTexCoord1dv GLEW_GET_FUN(__glewMultiTexCoord1dv) +#define glMultiTexCoord1f GLEW_GET_FUN(__glewMultiTexCoord1f) +#define glMultiTexCoord1fv GLEW_GET_FUN(__glewMultiTexCoord1fv) +#define glMultiTexCoord1i GLEW_GET_FUN(__glewMultiTexCoord1i) +#define glMultiTexCoord1iv GLEW_GET_FUN(__glewMultiTexCoord1iv) +#define glMultiTexCoord1s GLEW_GET_FUN(__glewMultiTexCoord1s) +#define glMultiTexCoord1sv GLEW_GET_FUN(__glewMultiTexCoord1sv) +#define glMultiTexCoord2d GLEW_GET_FUN(__glewMultiTexCoord2d) +#define glMultiTexCoord2dv GLEW_GET_FUN(__glewMultiTexCoord2dv) +#define glMultiTexCoord2f GLEW_GET_FUN(__glewMultiTexCoord2f) +#define glMultiTexCoord2fv GLEW_GET_FUN(__glewMultiTexCoord2fv) +#define glMultiTexCoord2i GLEW_GET_FUN(__glewMultiTexCoord2i) +#define glMultiTexCoord2iv GLEW_GET_FUN(__glewMultiTexCoord2iv) +#define glMultiTexCoord2s GLEW_GET_FUN(__glewMultiTexCoord2s) +#define glMultiTexCoord2sv GLEW_GET_FUN(__glewMultiTexCoord2sv) +#define glMultiTexCoord3d GLEW_GET_FUN(__glewMultiTexCoord3d) +#define glMultiTexCoord3dv GLEW_GET_FUN(__glewMultiTexCoord3dv) +#define glMultiTexCoord3f GLEW_GET_FUN(__glewMultiTexCoord3f) +#define glMultiTexCoord3fv GLEW_GET_FUN(__glewMultiTexCoord3fv) +#define glMultiTexCoord3i GLEW_GET_FUN(__glewMultiTexCoord3i) +#define glMultiTexCoord3iv GLEW_GET_FUN(__glewMultiTexCoord3iv) +#define glMultiTexCoord3s GLEW_GET_FUN(__glewMultiTexCoord3s) +#define glMultiTexCoord3sv GLEW_GET_FUN(__glewMultiTexCoord3sv) +#define glMultiTexCoord4d GLEW_GET_FUN(__glewMultiTexCoord4d) +#define glMultiTexCoord4dv GLEW_GET_FUN(__glewMultiTexCoord4dv) +#define glMultiTexCoord4f GLEW_GET_FUN(__glewMultiTexCoord4f) +#define glMultiTexCoord4fv GLEW_GET_FUN(__glewMultiTexCoord4fv) +#define glMultiTexCoord4i GLEW_GET_FUN(__glewMultiTexCoord4i) +#define glMultiTexCoord4iv GLEW_GET_FUN(__glewMultiTexCoord4iv) +#define glMultiTexCoord4s GLEW_GET_FUN(__glewMultiTexCoord4s) +#define glMultiTexCoord4sv GLEW_GET_FUN(__glewMultiTexCoord4sv) +#define glSampleCoverage GLEW_GET_FUN(__glewSampleCoverage) + +#define GLEW_VERSION_1_3 GLEW_GET_VAR(__GLEW_VERSION_1_3) + +#endif /* GL_VERSION_1_3 */ + +/* ----------------------------- GL_VERSION_1_4 ---------------------------- */ + +#ifndef GL_VERSION_1_4 +#define GL_VERSION_1_4 1 + +#define GL_BLEND_DST_RGB 0x80C8 +#define GL_BLEND_SRC_RGB 0x80C9 +#define GL_BLEND_DST_ALPHA 0x80CA +#define GL_BLEND_SRC_ALPHA 0x80CB +#define GL_POINT_SIZE_MIN 0x8126 +#define GL_POINT_SIZE_MAX 0x8127 +#define GL_POINT_FADE_THRESHOLD_SIZE 0x8128 +#define GL_POINT_DISTANCE_ATTENUATION 0x8129 +#define GL_GENERATE_MIPMAP 0x8191 +#define GL_GENERATE_MIPMAP_HINT 0x8192 +#define GL_DEPTH_COMPONENT16 0x81A5 +#define GL_DEPTH_COMPONENT24 0x81A6 +#define GL_DEPTH_COMPONENT32 0x81A7 +#define GL_MIRRORED_REPEAT 0x8370 +#define GL_FOG_COORDINATE_SOURCE 0x8450 +#define GL_FOG_COORDINATE 0x8451 +#define GL_FRAGMENT_DEPTH 0x8452 +#define GL_CURRENT_FOG_COORDINATE 0x8453 +#define GL_FOG_COORDINATE_ARRAY_TYPE 0x8454 +#define GL_FOG_COORDINATE_ARRAY_STRIDE 0x8455 +#define GL_FOG_COORDINATE_ARRAY_POINTER 0x8456 +#define GL_FOG_COORDINATE_ARRAY 0x8457 +#define GL_COLOR_SUM 0x8458 +#define GL_CURRENT_SECONDARY_COLOR 0x8459 +#define GL_SECONDARY_COLOR_ARRAY_SIZE 0x845A +#define GL_SECONDARY_COLOR_ARRAY_TYPE 0x845B +#define GL_SECONDARY_COLOR_ARRAY_STRIDE 0x845C +#define GL_SECONDARY_COLOR_ARRAY_POINTER 0x845D +#define GL_SECONDARY_COLOR_ARRAY 0x845E +#define GL_MAX_TEXTURE_LOD_BIAS 0x84FD +#define GL_TEXTURE_FILTER_CONTROL 0x8500 +#define GL_TEXTURE_LOD_BIAS 0x8501 +#define GL_INCR_WRAP 0x8507 +#define GL_DECR_WRAP 0x8508 +#define GL_TEXTURE_DEPTH_SIZE 0x884A +#define GL_DEPTH_TEXTURE_MODE 0x884B +#define GL_TEXTURE_COMPARE_MODE 0x884C +#define GL_TEXTURE_COMPARE_FUNC 0x884D +#define GL_COMPARE_R_TO_TEXTURE 0x884E + +typedef void (GLAPIENTRY * PFNGLBLENDCOLORPROC) (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); +typedef void (GLAPIENTRY * PFNGLBLENDEQUATIONPROC) (GLenum mode); +typedef void (GLAPIENTRY * PFNGLBLENDFUNCSEPARATEPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +typedef void (GLAPIENTRY * PFNGLFOGCOORDPOINTERPROC) (GLenum type, GLsizei stride, const void *pointer); +typedef void (GLAPIENTRY * PFNGLFOGCOORDDPROC) (GLdouble coord); +typedef void (GLAPIENTRY * PFNGLFOGCOORDDVPROC) (const GLdouble *coord); +typedef void (GLAPIENTRY * PFNGLFOGCOORDFPROC) (GLfloat coord); +typedef void (GLAPIENTRY * PFNGLFOGCOORDFVPROC) (const GLfloat *coord); +typedef void (GLAPIENTRY * PFNGLMULTIDRAWARRAYSPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei drawcount); +typedef void (GLAPIENTRY * PFNGLMULTIDRAWELEMENTSPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const* indices, GLsizei drawcount); +typedef void (GLAPIENTRY * PFNGLPOINTPARAMETERFPROC) (GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLPOINTPARAMETERFVPROC) (GLenum pname, const GLfloat *params); +typedef void (GLAPIENTRY * PFNGLPOINTPARAMETERIPROC) (GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLPOINTPARAMETERIVPROC) (GLenum pname, const GLint *params); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3BPROC) (GLbyte red, GLbyte green, GLbyte blue); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3BVPROC) (const GLbyte *v); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3DPROC) (GLdouble red, GLdouble green, GLdouble blue); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3DVPROC) (const GLdouble *v); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3FPROC) (GLfloat red, GLfloat green, GLfloat blue); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3FVPROC) (const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3IPROC) (GLint red, GLint green, GLint blue); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3IVPROC) (const GLint *v); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3SPROC) (GLshort red, GLshort green, GLshort blue); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3SVPROC) (const GLshort *v); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3UBPROC) (GLubyte red, GLubyte green, GLubyte blue); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3UBVPROC) (const GLubyte *v); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3UIPROC) (GLuint red, GLuint green, GLuint blue); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3UIVPROC) (const GLuint *v); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3USPROC) (GLushort red, GLushort green, GLushort blue); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3USVPROC) (const GLushort *v); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLORPOINTERPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2DPROC) (GLdouble x, GLdouble y); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2DVPROC) (const GLdouble *p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2FPROC) (GLfloat x, GLfloat y); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2FVPROC) (const GLfloat *p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2IPROC) (GLint x, GLint y); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2IVPROC) (const GLint *p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2SPROC) (GLshort x, GLshort y); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2SVPROC) (const GLshort *p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3DPROC) (GLdouble x, GLdouble y, GLdouble z); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3DVPROC) (const GLdouble *p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3FPROC) (GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3FVPROC) (const GLfloat *p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3IPROC) (GLint x, GLint y, GLint z); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3IVPROC) (const GLint *p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3SPROC) (GLshort x, GLshort y, GLshort z); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3SVPROC) (const GLshort *p); + +#define glBlendColor GLEW_GET_FUN(__glewBlendColor) +#define glBlendEquation GLEW_GET_FUN(__glewBlendEquation) +#define glBlendFuncSeparate GLEW_GET_FUN(__glewBlendFuncSeparate) +#define glFogCoordPointer GLEW_GET_FUN(__glewFogCoordPointer) +#define glFogCoordd GLEW_GET_FUN(__glewFogCoordd) +#define glFogCoorddv GLEW_GET_FUN(__glewFogCoorddv) +#define glFogCoordf GLEW_GET_FUN(__glewFogCoordf) +#define glFogCoordfv GLEW_GET_FUN(__glewFogCoordfv) +#define glMultiDrawArrays GLEW_GET_FUN(__glewMultiDrawArrays) +#define glMultiDrawElements GLEW_GET_FUN(__glewMultiDrawElements) +#define glPointParameterf GLEW_GET_FUN(__glewPointParameterf) +#define glPointParameterfv GLEW_GET_FUN(__glewPointParameterfv) +#define glPointParameteri GLEW_GET_FUN(__glewPointParameteri) +#define glPointParameteriv GLEW_GET_FUN(__glewPointParameteriv) +#define glSecondaryColor3b GLEW_GET_FUN(__glewSecondaryColor3b) +#define glSecondaryColor3bv GLEW_GET_FUN(__glewSecondaryColor3bv) +#define glSecondaryColor3d GLEW_GET_FUN(__glewSecondaryColor3d) +#define glSecondaryColor3dv GLEW_GET_FUN(__glewSecondaryColor3dv) +#define glSecondaryColor3f GLEW_GET_FUN(__glewSecondaryColor3f) +#define glSecondaryColor3fv GLEW_GET_FUN(__glewSecondaryColor3fv) +#define glSecondaryColor3i GLEW_GET_FUN(__glewSecondaryColor3i) +#define glSecondaryColor3iv GLEW_GET_FUN(__glewSecondaryColor3iv) +#define glSecondaryColor3s GLEW_GET_FUN(__glewSecondaryColor3s) +#define glSecondaryColor3sv GLEW_GET_FUN(__glewSecondaryColor3sv) +#define glSecondaryColor3ub GLEW_GET_FUN(__glewSecondaryColor3ub) +#define glSecondaryColor3ubv GLEW_GET_FUN(__glewSecondaryColor3ubv) +#define glSecondaryColor3ui GLEW_GET_FUN(__glewSecondaryColor3ui) +#define glSecondaryColor3uiv GLEW_GET_FUN(__glewSecondaryColor3uiv) +#define glSecondaryColor3us GLEW_GET_FUN(__glewSecondaryColor3us) +#define glSecondaryColor3usv GLEW_GET_FUN(__glewSecondaryColor3usv) +#define glSecondaryColorPointer GLEW_GET_FUN(__glewSecondaryColorPointer) +#define glWindowPos2d GLEW_GET_FUN(__glewWindowPos2d) +#define glWindowPos2dv GLEW_GET_FUN(__glewWindowPos2dv) +#define glWindowPos2f GLEW_GET_FUN(__glewWindowPos2f) +#define glWindowPos2fv GLEW_GET_FUN(__glewWindowPos2fv) +#define glWindowPos2i GLEW_GET_FUN(__glewWindowPos2i) +#define glWindowPos2iv GLEW_GET_FUN(__glewWindowPos2iv) +#define glWindowPos2s GLEW_GET_FUN(__glewWindowPos2s) +#define glWindowPos2sv GLEW_GET_FUN(__glewWindowPos2sv) +#define glWindowPos3d GLEW_GET_FUN(__glewWindowPos3d) +#define glWindowPos3dv GLEW_GET_FUN(__glewWindowPos3dv) +#define glWindowPos3f GLEW_GET_FUN(__glewWindowPos3f) +#define glWindowPos3fv GLEW_GET_FUN(__glewWindowPos3fv) +#define glWindowPos3i GLEW_GET_FUN(__glewWindowPos3i) +#define glWindowPos3iv GLEW_GET_FUN(__glewWindowPos3iv) +#define glWindowPos3s GLEW_GET_FUN(__glewWindowPos3s) +#define glWindowPos3sv GLEW_GET_FUN(__glewWindowPos3sv) + +#define GLEW_VERSION_1_4 GLEW_GET_VAR(__GLEW_VERSION_1_4) + +#endif /* GL_VERSION_1_4 */ + +/* ----------------------------- GL_VERSION_1_5 ---------------------------- */ + +#ifndef GL_VERSION_1_5 +#define GL_VERSION_1_5 1 + +#define GL_CURRENT_FOG_COORD GL_CURRENT_FOG_COORDINATE +#define GL_FOG_COORD GL_FOG_COORDINATE +#define GL_FOG_COORD_ARRAY GL_FOG_COORDINATE_ARRAY +#define GL_FOG_COORD_ARRAY_BUFFER_BINDING GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING +#define GL_FOG_COORD_ARRAY_POINTER GL_FOG_COORDINATE_ARRAY_POINTER +#define GL_FOG_COORD_ARRAY_STRIDE GL_FOG_COORDINATE_ARRAY_STRIDE +#define GL_FOG_COORD_ARRAY_TYPE GL_FOG_COORDINATE_ARRAY_TYPE +#define GL_FOG_COORD_SRC GL_FOG_COORDINATE_SOURCE +#define GL_SRC0_ALPHA GL_SOURCE0_ALPHA +#define GL_SRC0_RGB GL_SOURCE0_RGB +#define GL_SRC1_ALPHA GL_SOURCE1_ALPHA +#define GL_SRC1_RGB GL_SOURCE1_RGB +#define GL_SRC2_ALPHA GL_SOURCE2_ALPHA +#define GL_SRC2_RGB GL_SOURCE2_RGB +#define GL_BUFFER_SIZE 0x8764 +#define GL_BUFFER_USAGE 0x8765 +#define GL_QUERY_COUNTER_BITS 0x8864 +#define GL_CURRENT_QUERY 0x8865 +#define GL_QUERY_RESULT 0x8866 +#define GL_QUERY_RESULT_AVAILABLE 0x8867 +#define GL_ARRAY_BUFFER 0x8892 +#define GL_ELEMENT_ARRAY_BUFFER 0x8893 +#define GL_ARRAY_BUFFER_BINDING 0x8894 +#define GL_ELEMENT_ARRAY_BUFFER_BINDING 0x8895 +#define GL_VERTEX_ARRAY_BUFFER_BINDING 0x8896 +#define GL_NORMAL_ARRAY_BUFFER_BINDING 0x8897 +#define GL_COLOR_ARRAY_BUFFER_BINDING 0x8898 +#define GL_INDEX_ARRAY_BUFFER_BINDING 0x8899 +#define GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING 0x889A +#define GL_EDGE_FLAG_ARRAY_BUFFER_BINDING 0x889B +#define GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING 0x889C +#define GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING 0x889D +#define GL_WEIGHT_ARRAY_BUFFER_BINDING 0x889E +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING 0x889F +#define GL_READ_ONLY 0x88B8 +#define GL_WRITE_ONLY 0x88B9 +#define GL_READ_WRITE 0x88BA +#define GL_BUFFER_ACCESS 0x88BB +#define GL_BUFFER_MAPPED 0x88BC +#define GL_BUFFER_MAP_POINTER 0x88BD +#define GL_STREAM_DRAW 0x88E0 +#define GL_STREAM_READ 0x88E1 +#define GL_STREAM_COPY 0x88E2 +#define GL_STATIC_DRAW 0x88E4 +#define GL_STATIC_READ 0x88E5 +#define GL_STATIC_COPY 0x88E6 +#define GL_DYNAMIC_DRAW 0x88E8 +#define GL_DYNAMIC_READ 0x88E9 +#define GL_DYNAMIC_COPY 0x88EA +#define GL_SAMPLES_PASSED 0x8914 + +typedef ptrdiff_t GLintptr; +typedef ptrdiff_t GLsizeiptr; + +typedef void (GLAPIENTRY * PFNGLBEGINQUERYPROC) (GLenum target, GLuint id); +typedef void (GLAPIENTRY * PFNGLBINDBUFFERPROC) (GLenum target, GLuint buffer); +typedef void (GLAPIENTRY * PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const void* data, GLenum usage); +typedef void (GLAPIENTRY * PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const void* data); +typedef void (GLAPIENTRY * PFNGLDELETEBUFFERSPROC) (GLsizei n, const GLuint* buffers); +typedef void (GLAPIENTRY * PFNGLDELETEQUERIESPROC) (GLsizei n, const GLuint* ids); +typedef void (GLAPIENTRY * PFNGLENDQUERYPROC) (GLenum target); +typedef void (GLAPIENTRY * PFNGLGENBUFFERSPROC) (GLsizei n, GLuint* buffers); +typedef void (GLAPIENTRY * PFNGLGENQUERIESPROC) (GLsizei n, GLuint* ids); +typedef void (GLAPIENTRY * PFNGLGETBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETBUFFERPOINTERVPROC) (GLenum target, GLenum pname, void** params); +typedef void (GLAPIENTRY * PFNGLGETBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, void* data); +typedef void (GLAPIENTRY * PFNGLGETQUERYOBJECTIVPROC) (GLuint id, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETQUERYOBJECTUIVPROC) (GLuint id, GLenum pname, GLuint* params); +typedef void (GLAPIENTRY * PFNGLGETQUERYIVPROC) (GLenum target, GLenum pname, GLint* params); +typedef GLboolean (GLAPIENTRY * PFNGLISBUFFERPROC) (GLuint buffer); +typedef GLboolean (GLAPIENTRY * PFNGLISQUERYPROC) (GLuint id); +typedef void* (GLAPIENTRY * PFNGLMAPBUFFERPROC) (GLenum target, GLenum access); +typedef GLboolean (GLAPIENTRY * PFNGLUNMAPBUFFERPROC) (GLenum target); + +#define glBeginQuery GLEW_GET_FUN(__glewBeginQuery) +#define glBindBuffer GLEW_GET_FUN(__glewBindBuffer) +#define glBufferData GLEW_GET_FUN(__glewBufferData) +#define glBufferSubData GLEW_GET_FUN(__glewBufferSubData) +#define glDeleteBuffers GLEW_GET_FUN(__glewDeleteBuffers) +#define glDeleteQueries GLEW_GET_FUN(__glewDeleteQueries) +#define glEndQuery GLEW_GET_FUN(__glewEndQuery) +#define glGenBuffers GLEW_GET_FUN(__glewGenBuffers) +#define glGenQueries GLEW_GET_FUN(__glewGenQueries) +#define glGetBufferParameteriv GLEW_GET_FUN(__glewGetBufferParameteriv) +#define glGetBufferPointerv GLEW_GET_FUN(__glewGetBufferPointerv) +#define glGetBufferSubData GLEW_GET_FUN(__glewGetBufferSubData) +#define glGetQueryObjectiv GLEW_GET_FUN(__glewGetQueryObjectiv) +#define glGetQueryObjectuiv GLEW_GET_FUN(__glewGetQueryObjectuiv) +#define glGetQueryiv GLEW_GET_FUN(__glewGetQueryiv) +#define glIsBuffer GLEW_GET_FUN(__glewIsBuffer) +#define glIsQuery GLEW_GET_FUN(__glewIsQuery) +#define glMapBuffer GLEW_GET_FUN(__glewMapBuffer) +#define glUnmapBuffer GLEW_GET_FUN(__glewUnmapBuffer) + +#define GLEW_VERSION_1_5 GLEW_GET_VAR(__GLEW_VERSION_1_5) + +#endif /* GL_VERSION_1_5 */ + +/* ----------------------------- GL_VERSION_2_0 ---------------------------- */ + +#ifndef GL_VERSION_2_0 +#define GL_VERSION_2_0 1 + +#define GL_BLEND_EQUATION_RGB GL_BLEND_EQUATION +#define GL_VERTEX_ATTRIB_ARRAY_ENABLED 0x8622 +#define GL_VERTEX_ATTRIB_ARRAY_SIZE 0x8623 +#define GL_VERTEX_ATTRIB_ARRAY_STRIDE 0x8624 +#define GL_VERTEX_ATTRIB_ARRAY_TYPE 0x8625 +#define GL_CURRENT_VERTEX_ATTRIB 0x8626 +#define GL_VERTEX_PROGRAM_POINT_SIZE 0x8642 +#define GL_VERTEX_PROGRAM_TWO_SIDE 0x8643 +#define GL_VERTEX_ATTRIB_ARRAY_POINTER 0x8645 +#define GL_STENCIL_BACK_FUNC 0x8800 +#define GL_STENCIL_BACK_FAIL 0x8801 +#define GL_STENCIL_BACK_PASS_DEPTH_FAIL 0x8802 +#define GL_STENCIL_BACK_PASS_DEPTH_PASS 0x8803 +#define GL_MAX_DRAW_BUFFERS 0x8824 +#define GL_DRAW_BUFFER0 0x8825 +#define GL_DRAW_BUFFER1 0x8826 +#define GL_DRAW_BUFFER2 0x8827 +#define GL_DRAW_BUFFER3 0x8828 +#define GL_DRAW_BUFFER4 0x8829 +#define GL_DRAW_BUFFER5 0x882A +#define GL_DRAW_BUFFER6 0x882B +#define GL_DRAW_BUFFER7 0x882C +#define GL_DRAW_BUFFER8 0x882D +#define GL_DRAW_BUFFER9 0x882E +#define GL_DRAW_BUFFER10 0x882F +#define GL_DRAW_BUFFER11 0x8830 +#define GL_DRAW_BUFFER12 0x8831 +#define GL_DRAW_BUFFER13 0x8832 +#define GL_DRAW_BUFFER14 0x8833 +#define GL_DRAW_BUFFER15 0x8834 +#define GL_BLEND_EQUATION_ALPHA 0x883D +#define GL_POINT_SPRITE 0x8861 +#define GL_COORD_REPLACE 0x8862 +#define GL_MAX_VERTEX_ATTRIBS 0x8869 +#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED 0x886A +#define GL_MAX_TEXTURE_COORDS 0x8871 +#define GL_MAX_TEXTURE_IMAGE_UNITS 0x8872 +#define GL_FRAGMENT_SHADER 0x8B30 +#define GL_VERTEX_SHADER 0x8B31 +#define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS 0x8B49 +#define GL_MAX_VERTEX_UNIFORM_COMPONENTS 0x8B4A +#define GL_MAX_VARYING_FLOATS 0x8B4B +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS 0x8B4C +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D +#define GL_SHADER_TYPE 0x8B4F +#define GL_FLOAT_VEC2 0x8B50 +#define GL_FLOAT_VEC3 0x8B51 +#define GL_FLOAT_VEC4 0x8B52 +#define GL_INT_VEC2 0x8B53 +#define GL_INT_VEC3 0x8B54 +#define GL_INT_VEC4 0x8B55 +#define GL_BOOL 0x8B56 +#define GL_BOOL_VEC2 0x8B57 +#define GL_BOOL_VEC3 0x8B58 +#define GL_BOOL_VEC4 0x8B59 +#define GL_FLOAT_MAT2 0x8B5A +#define GL_FLOAT_MAT3 0x8B5B +#define GL_FLOAT_MAT4 0x8B5C +#define GL_SAMPLER_1D 0x8B5D +#define GL_SAMPLER_2D 0x8B5E +#define GL_SAMPLER_3D 0x8B5F +#define GL_SAMPLER_CUBE 0x8B60 +#define GL_SAMPLER_1D_SHADOW 0x8B61 +#define GL_SAMPLER_2D_SHADOW 0x8B62 +#define GL_DELETE_STATUS 0x8B80 +#define GL_COMPILE_STATUS 0x8B81 +#define GL_LINK_STATUS 0x8B82 +#define GL_VALIDATE_STATUS 0x8B83 +#define GL_INFO_LOG_LENGTH 0x8B84 +#define GL_ATTACHED_SHADERS 0x8B85 +#define GL_ACTIVE_UNIFORMS 0x8B86 +#define GL_ACTIVE_UNIFORM_MAX_LENGTH 0x8B87 +#define GL_SHADER_SOURCE_LENGTH 0x8B88 +#define GL_ACTIVE_ATTRIBUTES 0x8B89 +#define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH 0x8B8A +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT 0x8B8B +#define GL_SHADING_LANGUAGE_VERSION 0x8B8C +#define GL_CURRENT_PROGRAM 0x8B8D +#define GL_POINT_SPRITE_COORD_ORIGIN 0x8CA0 +#define GL_LOWER_LEFT 0x8CA1 +#define GL_UPPER_LEFT 0x8CA2 +#define GL_STENCIL_BACK_REF 0x8CA3 +#define GL_STENCIL_BACK_VALUE_MASK 0x8CA4 +#define GL_STENCIL_BACK_WRITEMASK 0x8CA5 + +typedef void (GLAPIENTRY * PFNGLATTACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (GLAPIENTRY * PFNGLBINDATTRIBLOCATIONPROC) (GLuint program, GLuint index, const GLchar* name); +typedef void (GLAPIENTRY * PFNGLBLENDEQUATIONSEPARATEPROC) (GLenum modeRGB, GLenum modeAlpha); +typedef void (GLAPIENTRY * PFNGLCOMPILESHADERPROC) (GLuint shader); +typedef GLuint (GLAPIENTRY * PFNGLCREATEPROGRAMPROC) (void); +typedef GLuint (GLAPIENTRY * PFNGLCREATESHADERPROC) (GLenum type); +typedef void (GLAPIENTRY * PFNGLDELETEPROGRAMPROC) (GLuint program); +typedef void (GLAPIENTRY * PFNGLDELETESHADERPROC) (GLuint shader); +typedef void (GLAPIENTRY * PFNGLDETACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (GLAPIENTRY * PFNGLDISABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (GLAPIENTRY * PFNGLDRAWBUFFERSPROC) (GLsizei n, const GLenum* bufs); +typedef void (GLAPIENTRY * PFNGLENABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (GLAPIENTRY * PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei maxLength, GLsizei* length, GLint* size, GLenum* type, GLchar* name); +typedef void (GLAPIENTRY * PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei maxLength, GLsizei* length, GLint* size, GLenum* type, GLchar* name); +typedef void (GLAPIENTRY * PFNGLGETATTACHEDSHADERSPROC) (GLuint program, GLsizei maxCount, GLsizei* count, GLuint* shaders); +typedef GLint (GLAPIENTRY * PFNGLGETATTRIBLOCATIONPROC) (GLuint program, const GLchar* name); +typedef void (GLAPIENTRY * PFNGLGETPROGRAMINFOLOGPROC) (GLuint program, GLsizei bufSize, GLsizei* length, GLchar* infoLog); +typedef void (GLAPIENTRY * PFNGLGETPROGRAMIVPROC) (GLuint program, GLenum pname, GLint* param); +typedef void (GLAPIENTRY * PFNGLGETSHADERINFOLOGPROC) (GLuint shader, GLsizei bufSize, GLsizei* length, GLchar* infoLog); +typedef void (GLAPIENTRY * PFNGLGETSHADERSOURCEPROC) (GLuint obj, GLsizei maxLength, GLsizei* length, GLchar* source); +typedef void (GLAPIENTRY * PFNGLGETSHADERIVPROC) (GLuint shader, GLenum pname, GLint* param); +typedef GLint (GLAPIENTRY * PFNGLGETUNIFORMLOCATIONPROC) (GLuint program, const GLchar* name); +typedef void (GLAPIENTRY * PFNGLGETUNIFORMFVPROC) (GLuint program, GLint location, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETUNIFORMIVPROC) (GLuint program, GLint location, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBPOINTERVPROC) (GLuint index, GLenum pname, void** pointer); +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBDVPROC) (GLuint index, GLenum pname, GLdouble* params); +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBFVPROC) (GLuint index, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBIVPROC) (GLuint index, GLenum pname, GLint* params); +typedef GLboolean (GLAPIENTRY * PFNGLISPROGRAMPROC) (GLuint program); +typedef GLboolean (GLAPIENTRY * PFNGLISSHADERPROC) (GLuint shader); +typedef void (GLAPIENTRY * PFNGLLINKPROGRAMPROC) (GLuint program); +typedef void (GLAPIENTRY * PFNGLSHADERSOURCEPROC) (GLuint shader, GLsizei count, const GLchar *const* string, const GLint* length); +typedef void (GLAPIENTRY * PFNGLSTENCILFUNCSEPARATEPROC) (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); +typedef void (GLAPIENTRY * PFNGLSTENCILMASKSEPARATEPROC) (GLenum face, GLuint mask); +typedef void (GLAPIENTRY * PFNGLSTENCILOPSEPARATEPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +typedef void (GLAPIENTRY * PFNGLUNIFORM1FPROC) (GLint location, GLfloat v0); +typedef void (GLAPIENTRY * PFNGLUNIFORM1FVPROC) (GLint location, GLsizei count, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM1IPROC) (GLint location, GLint v0); +typedef void (GLAPIENTRY * PFNGLUNIFORM1IVPROC) (GLint location, GLsizei count, const GLint* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM2FPROC) (GLint location, GLfloat v0, GLfloat v1); +typedef void (GLAPIENTRY * PFNGLUNIFORM2FVPROC) (GLint location, GLsizei count, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM2IPROC) (GLint location, GLint v0, GLint v1); +typedef void (GLAPIENTRY * PFNGLUNIFORM2IVPROC) (GLint location, GLsizei count, const GLint* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM3FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (GLAPIENTRY * PFNGLUNIFORM3FVPROC) (GLint location, GLsizei count, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM3IPROC) (GLint location, GLint v0, GLint v1, GLint v2); +typedef void (GLAPIENTRY * PFNGLUNIFORM3IVPROC) (GLint location, GLsizei count, const GLint* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM4FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (GLAPIENTRY * PFNGLUNIFORM4FVPROC) (GLint location, GLsizei count, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM4IPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (GLAPIENTRY * PFNGLUNIFORM4IVPROC) (GLint location, GLsizei count, const GLint* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUSEPROGRAMPROC) (GLuint program); +typedef void (GLAPIENTRY * PFNGLVALIDATEPROGRAMPROC) (GLuint program); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1DPROC) (GLuint index, GLdouble x); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1DVPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1FPROC) (GLuint index, GLfloat x); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1FVPROC) (GLuint index, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1SPROC) (GLuint index, GLshort x); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1SVPROC) (GLuint index, const GLshort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2DPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2DVPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2FPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2FVPROC) (GLuint index, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2SPROC) (GLuint index, GLshort x, GLshort y); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2SVPROC) (GLuint index, const GLshort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3DVPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3FVPROC) (GLuint index, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3SPROC) (GLuint index, GLshort x, GLshort y, GLshort z); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3SVPROC) (GLuint index, const GLshort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4NBVPROC) (GLuint index, const GLbyte* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4NIVPROC) (GLuint index, const GLint* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4NSVPROC) (GLuint index, const GLshort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4NUBPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4NUBVPROC) (GLuint index, const GLubyte* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4NUIVPROC) (GLuint index, const GLuint* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4NUSVPROC) (GLuint index, const GLushort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4BVPROC) (GLuint index, const GLbyte* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4DVPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4FVPROC) (GLuint index, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4IVPROC) (GLuint index, const GLint* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4SPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4SVPROC) (GLuint index, const GLshort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4UBVPROC) (GLuint index, const GLubyte* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4UIVPROC) (GLuint index, const GLuint* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4USVPROC) (GLuint index, const GLushort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBPOINTERPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void* pointer); + +#define glAttachShader GLEW_GET_FUN(__glewAttachShader) +#define glBindAttribLocation GLEW_GET_FUN(__glewBindAttribLocation) +#define glBlendEquationSeparate GLEW_GET_FUN(__glewBlendEquationSeparate) +#define glCompileShader GLEW_GET_FUN(__glewCompileShader) +#define glCreateProgram GLEW_GET_FUN(__glewCreateProgram) +#define glCreateShader GLEW_GET_FUN(__glewCreateShader) +#define glDeleteProgram GLEW_GET_FUN(__glewDeleteProgram) +#define glDeleteShader GLEW_GET_FUN(__glewDeleteShader) +#define glDetachShader GLEW_GET_FUN(__glewDetachShader) +#define glDisableVertexAttribArray GLEW_GET_FUN(__glewDisableVertexAttribArray) +#define glDrawBuffers GLEW_GET_FUN(__glewDrawBuffers) +#define glEnableVertexAttribArray GLEW_GET_FUN(__glewEnableVertexAttribArray) +#define glGetActiveAttrib GLEW_GET_FUN(__glewGetActiveAttrib) +#define glGetActiveUniform GLEW_GET_FUN(__glewGetActiveUniform) +#define glGetAttachedShaders GLEW_GET_FUN(__glewGetAttachedShaders) +#define glGetAttribLocation GLEW_GET_FUN(__glewGetAttribLocation) +#define glGetProgramInfoLog GLEW_GET_FUN(__glewGetProgramInfoLog) +#define glGetProgramiv GLEW_GET_FUN(__glewGetProgramiv) +#define glGetShaderInfoLog GLEW_GET_FUN(__glewGetShaderInfoLog) +#define glGetShaderSource GLEW_GET_FUN(__glewGetShaderSource) +#define glGetShaderiv GLEW_GET_FUN(__glewGetShaderiv) +#define glGetUniformLocation GLEW_GET_FUN(__glewGetUniformLocation) +#define glGetUniformfv GLEW_GET_FUN(__glewGetUniformfv) +#define glGetUniformiv GLEW_GET_FUN(__glewGetUniformiv) +#define glGetVertexAttribPointerv GLEW_GET_FUN(__glewGetVertexAttribPointerv) +#define glGetVertexAttribdv GLEW_GET_FUN(__glewGetVertexAttribdv) +#define glGetVertexAttribfv GLEW_GET_FUN(__glewGetVertexAttribfv) +#define glGetVertexAttribiv GLEW_GET_FUN(__glewGetVertexAttribiv) +#define glIsProgram GLEW_GET_FUN(__glewIsProgram) +#define glIsShader GLEW_GET_FUN(__glewIsShader) +#define glLinkProgram GLEW_GET_FUN(__glewLinkProgram) +#define glShaderSource GLEW_GET_FUN(__glewShaderSource) +#define glStencilFuncSeparate GLEW_GET_FUN(__glewStencilFuncSeparate) +#define glStencilMaskSeparate GLEW_GET_FUN(__glewStencilMaskSeparate) +#define glStencilOpSeparate GLEW_GET_FUN(__glewStencilOpSeparate) +#define glUniform1f GLEW_GET_FUN(__glewUniform1f) +#define glUniform1fv GLEW_GET_FUN(__glewUniform1fv) +#define glUniform1i GLEW_GET_FUN(__glewUniform1i) +#define glUniform1iv GLEW_GET_FUN(__glewUniform1iv) +#define glUniform2f GLEW_GET_FUN(__glewUniform2f) +#define glUniform2fv GLEW_GET_FUN(__glewUniform2fv) +#define glUniform2i GLEW_GET_FUN(__glewUniform2i) +#define glUniform2iv GLEW_GET_FUN(__glewUniform2iv) +#define glUniform3f GLEW_GET_FUN(__glewUniform3f) +#define glUniform3fv GLEW_GET_FUN(__glewUniform3fv) +#define glUniform3i GLEW_GET_FUN(__glewUniform3i) +#define glUniform3iv GLEW_GET_FUN(__glewUniform3iv) +#define glUniform4f GLEW_GET_FUN(__glewUniform4f) +#define glUniform4fv GLEW_GET_FUN(__glewUniform4fv) +#define glUniform4i GLEW_GET_FUN(__glewUniform4i) +#define glUniform4iv GLEW_GET_FUN(__glewUniform4iv) +#define glUniformMatrix2fv GLEW_GET_FUN(__glewUniformMatrix2fv) +#define glUniformMatrix3fv GLEW_GET_FUN(__glewUniformMatrix3fv) +#define glUniformMatrix4fv GLEW_GET_FUN(__glewUniformMatrix4fv) +#define glUseProgram GLEW_GET_FUN(__glewUseProgram) +#define glValidateProgram GLEW_GET_FUN(__glewValidateProgram) +#define glVertexAttrib1d GLEW_GET_FUN(__glewVertexAttrib1d) +#define glVertexAttrib1dv GLEW_GET_FUN(__glewVertexAttrib1dv) +#define glVertexAttrib1f GLEW_GET_FUN(__glewVertexAttrib1f) +#define glVertexAttrib1fv GLEW_GET_FUN(__glewVertexAttrib1fv) +#define glVertexAttrib1s GLEW_GET_FUN(__glewVertexAttrib1s) +#define glVertexAttrib1sv GLEW_GET_FUN(__glewVertexAttrib1sv) +#define glVertexAttrib2d GLEW_GET_FUN(__glewVertexAttrib2d) +#define glVertexAttrib2dv GLEW_GET_FUN(__glewVertexAttrib2dv) +#define glVertexAttrib2f GLEW_GET_FUN(__glewVertexAttrib2f) +#define glVertexAttrib2fv GLEW_GET_FUN(__glewVertexAttrib2fv) +#define glVertexAttrib2s GLEW_GET_FUN(__glewVertexAttrib2s) +#define glVertexAttrib2sv GLEW_GET_FUN(__glewVertexAttrib2sv) +#define glVertexAttrib3d GLEW_GET_FUN(__glewVertexAttrib3d) +#define glVertexAttrib3dv GLEW_GET_FUN(__glewVertexAttrib3dv) +#define glVertexAttrib3f GLEW_GET_FUN(__glewVertexAttrib3f) +#define glVertexAttrib3fv GLEW_GET_FUN(__glewVertexAttrib3fv) +#define glVertexAttrib3s GLEW_GET_FUN(__glewVertexAttrib3s) +#define glVertexAttrib3sv GLEW_GET_FUN(__glewVertexAttrib3sv) +#define glVertexAttrib4Nbv GLEW_GET_FUN(__glewVertexAttrib4Nbv) +#define glVertexAttrib4Niv GLEW_GET_FUN(__glewVertexAttrib4Niv) +#define glVertexAttrib4Nsv GLEW_GET_FUN(__glewVertexAttrib4Nsv) +#define glVertexAttrib4Nub GLEW_GET_FUN(__glewVertexAttrib4Nub) +#define glVertexAttrib4Nubv GLEW_GET_FUN(__glewVertexAttrib4Nubv) +#define glVertexAttrib4Nuiv GLEW_GET_FUN(__glewVertexAttrib4Nuiv) +#define glVertexAttrib4Nusv GLEW_GET_FUN(__glewVertexAttrib4Nusv) +#define glVertexAttrib4bv GLEW_GET_FUN(__glewVertexAttrib4bv) +#define glVertexAttrib4d GLEW_GET_FUN(__glewVertexAttrib4d) +#define glVertexAttrib4dv GLEW_GET_FUN(__glewVertexAttrib4dv) +#define glVertexAttrib4f GLEW_GET_FUN(__glewVertexAttrib4f) +#define glVertexAttrib4fv GLEW_GET_FUN(__glewVertexAttrib4fv) +#define glVertexAttrib4iv GLEW_GET_FUN(__glewVertexAttrib4iv) +#define glVertexAttrib4s GLEW_GET_FUN(__glewVertexAttrib4s) +#define glVertexAttrib4sv GLEW_GET_FUN(__glewVertexAttrib4sv) +#define glVertexAttrib4ubv GLEW_GET_FUN(__glewVertexAttrib4ubv) +#define glVertexAttrib4uiv GLEW_GET_FUN(__glewVertexAttrib4uiv) +#define glVertexAttrib4usv GLEW_GET_FUN(__glewVertexAttrib4usv) +#define glVertexAttribPointer GLEW_GET_FUN(__glewVertexAttribPointer) + +#define GLEW_VERSION_2_0 GLEW_GET_VAR(__GLEW_VERSION_2_0) + +#endif /* GL_VERSION_2_0 */ + +/* ----------------------------- GL_VERSION_2_1 ---------------------------- */ + +#ifndef GL_VERSION_2_1 +#define GL_VERSION_2_1 1 + +#define GL_CURRENT_RASTER_SECONDARY_COLOR 0x845F +#define GL_PIXEL_PACK_BUFFER 0x88EB +#define GL_PIXEL_UNPACK_BUFFER 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING 0x88EF +#define GL_FLOAT_MAT2x3 0x8B65 +#define GL_FLOAT_MAT2x4 0x8B66 +#define GL_FLOAT_MAT3x2 0x8B67 +#define GL_FLOAT_MAT3x4 0x8B68 +#define GL_FLOAT_MAT4x2 0x8B69 +#define GL_FLOAT_MAT4x3 0x8B6A +#define GL_SRGB 0x8C40 +#define GL_SRGB8 0x8C41 +#define GL_SRGB_ALPHA 0x8C42 +#define GL_SRGB8_ALPHA8 0x8C43 +#define GL_SLUMINANCE_ALPHA 0x8C44 +#define GL_SLUMINANCE8_ALPHA8 0x8C45 +#define GL_SLUMINANCE 0x8C46 +#define GL_SLUMINANCE8 0x8C47 +#define GL_COMPRESSED_SRGB 0x8C48 +#define GL_COMPRESSED_SRGB_ALPHA 0x8C49 +#define GL_COMPRESSED_SLUMINANCE 0x8C4A +#define GL_COMPRESSED_SLUMINANCE_ALPHA 0x8C4B + +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX2X3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX2X4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX3X2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX3X4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX4X2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX4X3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); + +#define glUniformMatrix2x3fv GLEW_GET_FUN(__glewUniformMatrix2x3fv) +#define glUniformMatrix2x4fv GLEW_GET_FUN(__glewUniformMatrix2x4fv) +#define glUniformMatrix3x2fv GLEW_GET_FUN(__glewUniformMatrix3x2fv) +#define glUniformMatrix3x4fv GLEW_GET_FUN(__glewUniformMatrix3x4fv) +#define glUniformMatrix4x2fv GLEW_GET_FUN(__glewUniformMatrix4x2fv) +#define glUniformMatrix4x3fv GLEW_GET_FUN(__glewUniformMatrix4x3fv) + +#define GLEW_VERSION_2_1 GLEW_GET_VAR(__GLEW_VERSION_2_1) + +#endif /* GL_VERSION_2_1 */ + +/* ----------------------------- GL_VERSION_3_0 ---------------------------- */ + +#ifndef GL_VERSION_3_0 +#define GL_VERSION_3_0 1 + +#define GL_CLIP_DISTANCE0 GL_CLIP_PLANE0 +#define GL_CLIP_DISTANCE1 GL_CLIP_PLANE1 +#define GL_CLIP_DISTANCE2 GL_CLIP_PLANE2 +#define GL_CLIP_DISTANCE3 GL_CLIP_PLANE3 +#define GL_CLIP_DISTANCE4 GL_CLIP_PLANE4 +#define GL_CLIP_DISTANCE5 GL_CLIP_PLANE5 +#define GL_COMPARE_REF_TO_TEXTURE GL_COMPARE_R_TO_TEXTURE_ARB +#define GL_MAX_CLIP_DISTANCES GL_MAX_CLIP_PLANES +#define GL_MAX_VARYING_COMPONENTS GL_MAX_VARYING_FLOATS +#define GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT 0x0001 +#define GL_MAJOR_VERSION 0x821B +#define GL_MINOR_VERSION 0x821C +#define GL_NUM_EXTENSIONS 0x821D +#define GL_CONTEXT_FLAGS 0x821E +#define GL_DEPTH_BUFFER 0x8223 +#define GL_STENCIL_BUFFER 0x8224 +#define GL_RGBA32F 0x8814 +#define GL_RGB32F 0x8815 +#define GL_RGBA16F 0x881A +#define GL_RGB16F 0x881B +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER 0x88FD +#define GL_MAX_ARRAY_TEXTURE_LAYERS 0x88FF +#define GL_MIN_PROGRAM_TEXEL_OFFSET 0x8904 +#define GL_MAX_PROGRAM_TEXEL_OFFSET 0x8905 +#define GL_CLAMP_VERTEX_COLOR 0x891A +#define GL_CLAMP_FRAGMENT_COLOR 0x891B +#define GL_CLAMP_READ_COLOR 0x891C +#define GL_FIXED_ONLY 0x891D +#define GL_TEXTURE_RED_TYPE 0x8C10 +#define GL_TEXTURE_GREEN_TYPE 0x8C11 +#define GL_TEXTURE_BLUE_TYPE 0x8C12 +#define GL_TEXTURE_ALPHA_TYPE 0x8C13 +#define GL_TEXTURE_LUMINANCE_TYPE 0x8C14 +#define GL_TEXTURE_INTENSITY_TYPE 0x8C15 +#define GL_TEXTURE_DEPTH_TYPE 0x8C16 +#define GL_TEXTURE_1D_ARRAY 0x8C18 +#define GL_PROXY_TEXTURE_1D_ARRAY 0x8C19 +#define GL_TEXTURE_2D_ARRAY 0x8C1A +#define GL_PROXY_TEXTURE_2D_ARRAY 0x8C1B +#define GL_TEXTURE_BINDING_1D_ARRAY 0x8C1C +#define GL_TEXTURE_BINDING_2D_ARRAY 0x8C1D +#define GL_R11F_G11F_B10F 0x8C3A +#define GL_UNSIGNED_INT_10F_11F_11F_REV 0x8C3B +#define GL_RGB9_E5 0x8C3D +#define GL_UNSIGNED_INT_5_9_9_9_REV 0x8C3E +#define GL_TEXTURE_SHARED_SIZE 0x8C3F +#define GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH 0x8C76 +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE 0x8C7F +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS 0x8C80 +#define GL_TRANSFORM_FEEDBACK_VARYINGS 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_START 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE 0x8C85 +#define GL_PRIMITIVES_GENERATED 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN 0x8C88 +#define GL_RASTERIZER_DISCARD 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS 0x8C8B +#define GL_INTERLEAVED_ATTRIBS 0x8C8C +#define GL_SEPARATE_ATTRIBS 0x8C8D +#define GL_TRANSFORM_FEEDBACK_BUFFER 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING 0x8C8F +#define GL_RGBA32UI 0x8D70 +#define GL_RGB32UI 0x8D71 +#define GL_RGBA16UI 0x8D76 +#define GL_RGB16UI 0x8D77 +#define GL_RGBA8UI 0x8D7C +#define GL_RGB8UI 0x8D7D +#define GL_RGBA32I 0x8D82 +#define GL_RGB32I 0x8D83 +#define GL_RGBA16I 0x8D88 +#define GL_RGB16I 0x8D89 +#define GL_RGBA8I 0x8D8E +#define GL_RGB8I 0x8D8F +#define GL_RED_INTEGER 0x8D94 +#define GL_GREEN_INTEGER 0x8D95 +#define GL_BLUE_INTEGER 0x8D96 +#define GL_ALPHA_INTEGER 0x8D97 +#define GL_RGB_INTEGER 0x8D98 +#define GL_RGBA_INTEGER 0x8D99 +#define GL_BGR_INTEGER 0x8D9A +#define GL_BGRA_INTEGER 0x8D9B +#define GL_SAMPLER_1D_ARRAY 0x8DC0 +#define GL_SAMPLER_2D_ARRAY 0x8DC1 +#define GL_SAMPLER_1D_ARRAY_SHADOW 0x8DC3 +#define GL_SAMPLER_2D_ARRAY_SHADOW 0x8DC4 +#define GL_SAMPLER_CUBE_SHADOW 0x8DC5 +#define GL_UNSIGNED_INT_VEC2 0x8DC6 +#define GL_UNSIGNED_INT_VEC3 0x8DC7 +#define GL_UNSIGNED_INT_VEC4 0x8DC8 +#define GL_INT_SAMPLER_1D 0x8DC9 +#define GL_INT_SAMPLER_2D 0x8DCA +#define GL_INT_SAMPLER_3D 0x8DCB +#define GL_INT_SAMPLER_CUBE 0x8DCC +#define GL_INT_SAMPLER_1D_ARRAY 0x8DCE +#define GL_INT_SAMPLER_2D_ARRAY 0x8DCF +#define GL_UNSIGNED_INT_SAMPLER_1D 0x8DD1 +#define GL_UNSIGNED_INT_SAMPLER_2D 0x8DD2 +#define GL_UNSIGNED_INT_SAMPLER_3D 0x8DD3 +#define GL_UNSIGNED_INT_SAMPLER_CUBE 0x8DD4 +#define GL_UNSIGNED_INT_SAMPLER_1D_ARRAY 0x8DD6 +#define GL_UNSIGNED_INT_SAMPLER_2D_ARRAY 0x8DD7 +#define GL_QUERY_WAIT 0x8E13 +#define GL_QUERY_NO_WAIT 0x8E14 +#define GL_QUERY_BY_REGION_WAIT 0x8E15 +#define GL_QUERY_BY_REGION_NO_WAIT 0x8E16 + +typedef void (GLAPIENTRY * PFNGLBEGINCONDITIONALRENDERPROC) (GLuint id, GLenum mode); +typedef void (GLAPIENTRY * PFNGLBEGINTRANSFORMFEEDBACKPROC) (GLenum primitiveMode); +typedef void (GLAPIENTRY * PFNGLBINDFRAGDATALOCATIONPROC) (GLuint program, GLuint colorNumber, const GLchar* name); +typedef void (GLAPIENTRY * PFNGLCLAMPCOLORPROC) (GLenum target, GLenum clamp); +typedef void (GLAPIENTRY * PFNGLCLEARBUFFERFIPROC) (GLenum buffer, GLint drawBuffer, GLfloat depth, GLint stencil); +typedef void (GLAPIENTRY * PFNGLCLEARBUFFERFVPROC) (GLenum buffer, GLint drawBuffer, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLCLEARBUFFERIVPROC) (GLenum buffer, GLint drawBuffer, const GLint* value); +typedef void (GLAPIENTRY * PFNGLCLEARBUFFERUIVPROC) (GLenum buffer, GLint drawBuffer, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLCOLORMASKIPROC) (GLuint buf, GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +typedef void (GLAPIENTRY * PFNGLDISABLEIPROC) (GLenum cap, GLuint index); +typedef void (GLAPIENTRY * PFNGLENABLEIPROC) (GLenum cap, GLuint index); +typedef void (GLAPIENTRY * PFNGLENDCONDITIONALRENDERPROC) (void); +typedef void (GLAPIENTRY * PFNGLENDTRANSFORMFEEDBACKPROC) (void); +typedef void (GLAPIENTRY * PFNGLGETBOOLEANI_VPROC) (GLenum pname, GLuint index, GLboolean* data); +typedef GLint (GLAPIENTRY * PFNGLGETFRAGDATALOCATIONPROC) (GLuint program, const GLchar* name); +typedef const GLubyte* (GLAPIENTRY * PFNGLGETSTRINGIPROC) (GLenum name, GLuint index); +typedef void (GLAPIENTRY * PFNGLGETTEXPARAMETERIIVPROC) (GLenum target, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETTEXPARAMETERIUIVPROC) (GLenum target, GLenum pname, GLuint* params); +typedef void (GLAPIENTRY * PFNGLGETTRANSFORMFEEDBACKVARYINGPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei * length, GLsizei * size, GLenum * type, GLchar * name); +typedef void (GLAPIENTRY * PFNGLGETUNIFORMUIVPROC) (GLuint program, GLint location, GLuint* params); +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBIIVPROC) (GLuint index, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBIUIVPROC) (GLuint index, GLenum pname, GLuint* params); +typedef GLboolean (GLAPIENTRY * PFNGLISENABLEDIPROC) (GLenum cap, GLuint index); +typedef void (GLAPIENTRY * PFNGLTEXPARAMETERIIVPROC) (GLenum target, GLenum pname, const GLint* params); +typedef void (GLAPIENTRY * PFNGLTEXPARAMETERIUIVPROC) (GLenum target, GLenum pname, const GLuint* params); +typedef void (GLAPIENTRY * PFNGLTRANSFORMFEEDBACKVARYINGSPROC) (GLuint program, GLsizei count, const GLchar *const* varyings, GLenum bufferMode); +typedef void (GLAPIENTRY * PFNGLUNIFORM1UIPROC) (GLint location, GLuint v0); +typedef void (GLAPIENTRY * PFNGLUNIFORM1UIVPROC) (GLint location, GLsizei count, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM2UIPROC) (GLint location, GLuint v0, GLuint v1); +typedef void (GLAPIENTRY * PFNGLUNIFORM2UIVPROC) (GLint location, GLsizei count, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM3UIPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (GLAPIENTRY * PFNGLUNIFORM3UIVPROC) (GLint location, GLsizei count, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM4UIPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (GLAPIENTRY * PFNGLUNIFORM4UIVPROC) (GLint location, GLsizei count, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI1IPROC) (GLuint index, GLint v0); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI1IVPROC) (GLuint index, const GLint* v0); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI1UIPROC) (GLuint index, GLuint v0); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI1UIVPROC) (GLuint index, const GLuint* v0); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI2IPROC) (GLuint index, GLint v0, GLint v1); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI2IVPROC) (GLuint index, const GLint* v0); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI2UIPROC) (GLuint index, GLuint v0, GLuint v1); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI2UIVPROC) (GLuint index, const GLuint* v0); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI3IPROC) (GLuint index, GLint v0, GLint v1, GLint v2); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI3IVPROC) (GLuint index, const GLint* v0); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI3UIPROC) (GLuint index, GLuint v0, GLuint v1, GLuint v2); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI3UIVPROC) (GLuint index, const GLuint* v0); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI4BVPROC) (GLuint index, const GLbyte* v0); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI4IPROC) (GLuint index, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI4IVPROC) (GLuint index, const GLint* v0); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI4SVPROC) (GLuint index, const GLshort* v0); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI4UBVPROC) (GLuint index, const GLubyte* v0); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI4UIPROC) (GLuint index, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI4UIVPROC) (GLuint index, const GLuint* v0); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI4USVPROC) (GLuint index, const GLushort* v0); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBIPOINTERPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void*pointer); + +#define glBeginConditionalRender GLEW_GET_FUN(__glewBeginConditionalRender) +#define glBeginTransformFeedback GLEW_GET_FUN(__glewBeginTransformFeedback) +#define glBindFragDataLocation GLEW_GET_FUN(__glewBindFragDataLocation) +#define glClampColor GLEW_GET_FUN(__glewClampColor) +#define glClearBufferfi GLEW_GET_FUN(__glewClearBufferfi) +#define glClearBufferfv GLEW_GET_FUN(__glewClearBufferfv) +#define glClearBufferiv GLEW_GET_FUN(__glewClearBufferiv) +#define glClearBufferuiv GLEW_GET_FUN(__glewClearBufferuiv) +#define glColorMaski GLEW_GET_FUN(__glewColorMaski) +#define glDisablei GLEW_GET_FUN(__glewDisablei) +#define glEnablei GLEW_GET_FUN(__glewEnablei) +#define glEndConditionalRender GLEW_GET_FUN(__glewEndConditionalRender) +#define glEndTransformFeedback GLEW_GET_FUN(__glewEndTransformFeedback) +#define glGetBooleani_v GLEW_GET_FUN(__glewGetBooleani_v) +#define glGetFragDataLocation GLEW_GET_FUN(__glewGetFragDataLocation) +#define glGetStringi GLEW_GET_FUN(__glewGetStringi) +#define glGetTexParameterIiv GLEW_GET_FUN(__glewGetTexParameterIiv) +#define glGetTexParameterIuiv GLEW_GET_FUN(__glewGetTexParameterIuiv) +#define glGetTransformFeedbackVarying GLEW_GET_FUN(__glewGetTransformFeedbackVarying) +#define glGetUniformuiv GLEW_GET_FUN(__glewGetUniformuiv) +#define glGetVertexAttribIiv GLEW_GET_FUN(__glewGetVertexAttribIiv) +#define glGetVertexAttribIuiv GLEW_GET_FUN(__glewGetVertexAttribIuiv) +#define glIsEnabledi GLEW_GET_FUN(__glewIsEnabledi) +#define glTexParameterIiv GLEW_GET_FUN(__glewTexParameterIiv) +#define glTexParameterIuiv GLEW_GET_FUN(__glewTexParameterIuiv) +#define glTransformFeedbackVaryings GLEW_GET_FUN(__glewTransformFeedbackVaryings) +#define glUniform1ui GLEW_GET_FUN(__glewUniform1ui) +#define glUniform1uiv GLEW_GET_FUN(__glewUniform1uiv) +#define glUniform2ui GLEW_GET_FUN(__glewUniform2ui) +#define glUniform2uiv GLEW_GET_FUN(__glewUniform2uiv) +#define glUniform3ui GLEW_GET_FUN(__glewUniform3ui) +#define glUniform3uiv GLEW_GET_FUN(__glewUniform3uiv) +#define glUniform4ui GLEW_GET_FUN(__glewUniform4ui) +#define glUniform4uiv GLEW_GET_FUN(__glewUniform4uiv) +#define glVertexAttribI1i GLEW_GET_FUN(__glewVertexAttribI1i) +#define glVertexAttribI1iv GLEW_GET_FUN(__glewVertexAttribI1iv) +#define glVertexAttribI1ui GLEW_GET_FUN(__glewVertexAttribI1ui) +#define glVertexAttribI1uiv GLEW_GET_FUN(__glewVertexAttribI1uiv) +#define glVertexAttribI2i GLEW_GET_FUN(__glewVertexAttribI2i) +#define glVertexAttribI2iv GLEW_GET_FUN(__glewVertexAttribI2iv) +#define glVertexAttribI2ui GLEW_GET_FUN(__glewVertexAttribI2ui) +#define glVertexAttribI2uiv GLEW_GET_FUN(__glewVertexAttribI2uiv) +#define glVertexAttribI3i GLEW_GET_FUN(__glewVertexAttribI3i) +#define glVertexAttribI3iv GLEW_GET_FUN(__glewVertexAttribI3iv) +#define glVertexAttribI3ui GLEW_GET_FUN(__glewVertexAttribI3ui) +#define glVertexAttribI3uiv GLEW_GET_FUN(__glewVertexAttribI3uiv) +#define glVertexAttribI4bv GLEW_GET_FUN(__glewVertexAttribI4bv) +#define glVertexAttribI4i GLEW_GET_FUN(__glewVertexAttribI4i) +#define glVertexAttribI4iv GLEW_GET_FUN(__glewVertexAttribI4iv) +#define glVertexAttribI4sv GLEW_GET_FUN(__glewVertexAttribI4sv) +#define glVertexAttribI4ubv GLEW_GET_FUN(__glewVertexAttribI4ubv) +#define glVertexAttribI4ui GLEW_GET_FUN(__glewVertexAttribI4ui) +#define glVertexAttribI4uiv GLEW_GET_FUN(__glewVertexAttribI4uiv) +#define glVertexAttribI4usv GLEW_GET_FUN(__glewVertexAttribI4usv) +#define glVertexAttribIPointer GLEW_GET_FUN(__glewVertexAttribIPointer) + +#define GLEW_VERSION_3_0 GLEW_GET_VAR(__GLEW_VERSION_3_0) + +#endif /* GL_VERSION_3_0 */ + +/* ----------------------------- GL_VERSION_3_1 ---------------------------- */ + +#ifndef GL_VERSION_3_1 +#define GL_VERSION_3_1 1 + +#define GL_TEXTURE_RECTANGLE 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE 0x84F8 +#define GL_SAMPLER_2D_RECT 0x8B63 +#define GL_SAMPLER_2D_RECT_SHADOW 0x8B64 +#define GL_TEXTURE_BUFFER 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING 0x8C2D +#define GL_TEXTURE_BUFFER_FORMAT 0x8C2E +#define GL_SAMPLER_BUFFER 0x8DC2 +#define GL_INT_SAMPLER_2D_RECT 0x8DCD +#define GL_INT_SAMPLER_BUFFER 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_2D_RECT 0x8DD5 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER 0x8DD8 +#define GL_RED_SNORM 0x8F90 +#define GL_RG_SNORM 0x8F91 +#define GL_RGB_SNORM 0x8F92 +#define GL_RGBA_SNORM 0x8F93 +#define GL_R8_SNORM 0x8F94 +#define GL_RG8_SNORM 0x8F95 +#define GL_RGB8_SNORM 0x8F96 +#define GL_RGBA8_SNORM 0x8F97 +#define GL_R16_SNORM 0x8F98 +#define GL_RG16_SNORM 0x8F99 +#define GL_RGB16_SNORM 0x8F9A +#define GL_RGBA16_SNORM 0x8F9B +#define GL_SIGNED_NORMALIZED 0x8F9C +#define GL_PRIMITIVE_RESTART 0x8F9D +#define GL_PRIMITIVE_RESTART_INDEX 0x8F9E +#define GL_BUFFER_ACCESS_FLAGS 0x911F +#define GL_BUFFER_MAP_LENGTH 0x9120 +#define GL_BUFFER_MAP_OFFSET 0x9121 + +typedef void (GLAPIENTRY * PFNGLDRAWARRAYSINSTANCEDPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (GLAPIENTRY * PFNGLDRAWELEMENTSINSTANCEDPROC) (GLenum mode, GLsizei count, GLenum type, const void* indices, GLsizei primcount); +typedef void (GLAPIENTRY * PFNGLPRIMITIVERESTARTINDEXPROC) (GLuint buffer); +typedef void (GLAPIENTRY * PFNGLTEXBUFFERPROC) (GLenum target, GLenum internalFormat, GLuint buffer); + +#define glDrawArraysInstanced GLEW_GET_FUN(__glewDrawArraysInstanced) +#define glDrawElementsInstanced GLEW_GET_FUN(__glewDrawElementsInstanced) +#define glPrimitiveRestartIndex GLEW_GET_FUN(__glewPrimitiveRestartIndex) +#define glTexBuffer GLEW_GET_FUN(__glewTexBuffer) + +#define GLEW_VERSION_3_1 GLEW_GET_VAR(__GLEW_VERSION_3_1) + +#endif /* GL_VERSION_3_1 */ + +/* ----------------------------- GL_VERSION_3_2 ---------------------------- */ + +#ifndef GL_VERSION_3_2 +#define GL_VERSION_3_2 1 + +#define GL_CONTEXT_CORE_PROFILE_BIT 0x00000001 +#define GL_CONTEXT_COMPATIBILITY_PROFILE_BIT 0x00000002 +#define GL_LINES_ADJACENCY 0x000A +#define GL_LINE_STRIP_ADJACENCY 0x000B +#define GL_TRIANGLES_ADJACENCY 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY 0x000D +#define GL_PROGRAM_POINT_SIZE 0x8642 +#define GL_GEOMETRY_VERTICES_OUT 0x8916 +#define GL_GEOMETRY_INPUT_TYPE 0x8917 +#define GL_GEOMETRY_OUTPUT_TYPE 0x8918 +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS 0x8C29 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED 0x8DA7 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS 0x8DA8 +#define GL_GEOMETRY_SHADER 0x8DD9 +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS 0x8DE1 +#define GL_MAX_VERTEX_OUTPUT_COMPONENTS 0x9122 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS 0x9124 +#define GL_MAX_FRAGMENT_INPUT_COMPONENTS 0x9125 +#define GL_CONTEXT_PROFILE_MASK 0x9126 + +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERTEXTUREPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +typedef void (GLAPIENTRY * PFNGLGETBUFFERPARAMETERI64VPROC) (GLenum target, GLenum value, GLint64 * data); +typedef void (GLAPIENTRY * PFNGLGETINTEGER64I_VPROC) (GLenum pname, GLuint index, GLint64 * data); + +#define glFramebufferTexture GLEW_GET_FUN(__glewFramebufferTexture) +#define glGetBufferParameteri64v GLEW_GET_FUN(__glewGetBufferParameteri64v) +#define glGetInteger64i_v GLEW_GET_FUN(__glewGetInteger64i_v) + +#define GLEW_VERSION_3_2 GLEW_GET_VAR(__GLEW_VERSION_3_2) + +#endif /* GL_VERSION_3_2 */ + +/* ----------------------------- GL_VERSION_3_3 ---------------------------- */ + +#ifndef GL_VERSION_3_3 +#define GL_VERSION_3_3 1 + +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR 0x88FE +#define GL_RGB10_A2UI 0x906F + +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBDIVISORPROC) (GLuint index, GLuint divisor); + +#define glVertexAttribDivisor GLEW_GET_FUN(__glewVertexAttribDivisor) + +#define GLEW_VERSION_3_3 GLEW_GET_VAR(__GLEW_VERSION_3_3) + +#endif /* GL_VERSION_3_3 */ + +/* ----------------------------- GL_VERSION_4_0 ---------------------------- */ + +#ifndef GL_VERSION_4_0 +#define GL_VERSION_4_0 1 + +#define GL_SAMPLE_SHADING 0x8C36 +#define GL_MIN_SAMPLE_SHADING_VALUE 0x8C37 +#define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET 0x8E5E +#define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET 0x8E5F +#define GL_MAX_PROGRAM_TEXTURE_GATHER_COMPONENTS 0x8F9F +#define GL_TEXTURE_CUBE_MAP_ARRAY 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY 0x900A +#define GL_PROXY_TEXTURE_CUBE_MAP_ARRAY 0x900B +#define GL_SAMPLER_CUBE_MAP_ARRAY 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY 0x900F + +typedef void (GLAPIENTRY * PFNGLBLENDEQUATIONSEPARATEIPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (GLAPIENTRY * PFNGLBLENDEQUATIONIPROC) (GLuint buf, GLenum mode); +typedef void (GLAPIENTRY * PFNGLBLENDFUNCSEPARATEIPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (GLAPIENTRY * PFNGLBLENDFUNCIPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (GLAPIENTRY * PFNGLMINSAMPLESHADINGPROC) (GLclampf value); + +#define glBlendEquationSeparatei GLEW_GET_FUN(__glewBlendEquationSeparatei) +#define glBlendEquationi GLEW_GET_FUN(__glewBlendEquationi) +#define glBlendFuncSeparatei GLEW_GET_FUN(__glewBlendFuncSeparatei) +#define glBlendFunci GLEW_GET_FUN(__glewBlendFunci) +#define glMinSampleShading GLEW_GET_FUN(__glewMinSampleShading) + +#define GLEW_VERSION_4_0 GLEW_GET_VAR(__GLEW_VERSION_4_0) + +#endif /* GL_VERSION_4_0 */ + +/* ----------------------------- GL_VERSION_4_1 ---------------------------- */ + +#ifndef GL_VERSION_4_1 +#define GL_VERSION_4_1 1 + +#define GLEW_VERSION_4_1 GLEW_GET_VAR(__GLEW_VERSION_4_1) + +#endif /* GL_VERSION_4_1 */ + +/* ----------------------------- GL_VERSION_4_2 ---------------------------- */ + +#ifndef GL_VERSION_4_2 +#define GL_VERSION_4_2 1 + +#define GL_TRANSFORM_FEEDBACK_PAUSED 0x8E23 +#define GL_TRANSFORM_FEEDBACK_ACTIVE 0x8E24 +#define GL_COMPRESSED_RGBA_BPTC_UNORM 0x8E8C +#define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM 0x8E8D +#define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT 0x8E8E +#define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT 0x8E8F +#define GL_COPY_READ_BUFFER_BINDING 0x8F36 +#define GL_COPY_WRITE_BUFFER_BINDING 0x8F37 + +#define GLEW_VERSION_4_2 GLEW_GET_VAR(__GLEW_VERSION_4_2) + +#endif /* GL_VERSION_4_2 */ + +/* ----------------------------- GL_VERSION_4_3 ---------------------------- */ + +#ifndef GL_VERSION_4_3 +#define GL_VERSION_4_3 1 + +#define GL_NUM_SHADING_LANGUAGE_VERSIONS 0x82E9 +#define GL_VERTEX_ATTRIB_ARRAY_LONG 0x874E + +#define GLEW_VERSION_4_3 GLEW_GET_VAR(__GLEW_VERSION_4_3) + +#endif /* GL_VERSION_4_3 */ + +/* ----------------------------- GL_VERSION_4_4 ---------------------------- */ + +#ifndef GL_VERSION_4_4 +#define GL_VERSION_4_4 1 + +#define GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED 0x8221 +#define GL_MAX_VERTEX_ATTRIB_STRIDE 0x82E5 +#define GL_TEXTURE_BUFFER_BINDING 0x8C2A + +#define GLEW_VERSION_4_4 GLEW_GET_VAR(__GLEW_VERSION_4_4) + +#endif /* GL_VERSION_4_4 */ + +/* ----------------------------- GL_VERSION_4_5 ---------------------------- */ + +#ifndef GL_VERSION_4_5 +#define GL_VERSION_4_5 1 + +#define GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT 0x00000004 + +typedef GLenum (GLAPIENTRY * PFNGLGETGRAPHICSRESETSTATUSPROC) (void); +typedef void (GLAPIENTRY * PFNGLGETNCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint lod, GLsizei bufSize, GLvoid *pixels); +typedef void (GLAPIENTRY * PFNGLGETNTEXIMAGEPROC) (GLenum tex, GLint level, GLenum format, GLenum type, GLsizei bufSize, GLvoid *pixels); +typedef void (GLAPIENTRY * PFNGLGETNUNIFORMDVPROC) (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); + +#define glGetGraphicsResetStatus GLEW_GET_FUN(__glewGetGraphicsResetStatus) +#define glGetnCompressedTexImage GLEW_GET_FUN(__glewGetnCompressedTexImage) +#define glGetnTexImage GLEW_GET_FUN(__glewGetnTexImage) +#define glGetnUniformdv GLEW_GET_FUN(__glewGetnUniformdv) + +#define GLEW_VERSION_4_5 GLEW_GET_VAR(__GLEW_VERSION_4_5) + +#endif /* GL_VERSION_4_5 */ + +/* ----------------------------- GL_VERSION_4_6 ---------------------------- */ + +#ifndef GL_VERSION_4_6 +#define GL_VERSION_4_6 1 + +#define GL_CONTEXT_FLAG_NO_ERROR_BIT 0x00000008 +#define GL_PARAMETER_BUFFER 0x80EE +#define GL_PARAMETER_BUFFER_BINDING 0x80EF +#define GL_TRANSFORM_FEEDBACK_OVERFLOW 0x82EC +#define GL_TRANSFORM_FEEDBACK_STREAM_OVERFLOW 0x82ED +#define GL_VERTICES_SUBMITTED 0x82EE +#define GL_PRIMITIVES_SUBMITTED 0x82EF +#define GL_VERTEX_SHADER_INVOCATIONS 0x82F0 +#define GL_TESS_CONTROL_SHADER_PATCHES 0x82F1 +#define GL_TESS_EVALUATION_SHADER_INVOCATIONS 0x82F2 +#define GL_GEOMETRY_SHADER_PRIMITIVES_EMITTED 0x82F3 +#define GL_FRAGMENT_SHADER_INVOCATIONS 0x82F4 +#define GL_COMPUTE_SHADER_INVOCATIONS 0x82F5 +#define GL_CLIPPING_INPUT_PRIMITIVES 0x82F6 +#define GL_CLIPPING_OUTPUT_PRIMITIVES 0x82F7 +#define GL_TEXTURE_MAX_ANISOTROPY 0x84FE +#define GL_MAX_TEXTURE_MAX_ANISOTROPY 0x84FF +#define GL_POLYGON_OFFSET_CLAMP 0x8E1B +#define GL_SHADER_BINARY_FORMAT_SPIR_V 0x9551 +#define GL_SPIR_V_BINARY 0x9552 +#define GL_SPIR_V_EXTENSIONS 0x9553 +#define GL_NUM_SPIR_V_EXTENSIONS 0x9554 + +typedef void (GLAPIENTRY * PFNGLMULTIDRAWARRAYSINDIRECTCOUNTPROC) (GLenum mode, const GLvoid *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +typedef void (GLAPIENTRY * PFNGLMULTIDRAWELEMENTSINDIRECTCOUNTPROC) (GLenum mode, GLenum type, const GLvoid *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +typedef void (GLAPIENTRY * PFNGLSPECIALIZESHADERPROC) (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); + +#define glMultiDrawArraysIndirectCount GLEW_GET_FUN(__glewMultiDrawArraysIndirectCount) +#define glMultiDrawElementsIndirectCount GLEW_GET_FUN(__glewMultiDrawElementsIndirectCount) +#define glSpecializeShader GLEW_GET_FUN(__glewSpecializeShader) + +#define GLEW_VERSION_4_6 GLEW_GET_VAR(__GLEW_VERSION_4_6) + +#endif /* GL_VERSION_4_6 */ + +/* -------------------------- GL_3DFX_multisample -------------------------- */ + +#ifndef GL_3DFX_multisample +#define GL_3DFX_multisample 1 + +#define GL_MULTISAMPLE_3DFX 0x86B2 +#define GL_SAMPLE_BUFFERS_3DFX 0x86B3 +#define GL_SAMPLES_3DFX 0x86B4 +#define GL_MULTISAMPLE_BIT_3DFX 0x20000000 + +#define GLEW_3DFX_multisample GLEW_GET_VAR(__GLEW_3DFX_multisample) + +#endif /* GL_3DFX_multisample */ + +/* ---------------------------- GL_3DFX_tbuffer ---------------------------- */ + +#ifndef GL_3DFX_tbuffer +#define GL_3DFX_tbuffer 1 + +typedef void (GLAPIENTRY * PFNGLTBUFFERMASK3DFXPROC) (GLuint mask); + +#define glTbufferMask3DFX GLEW_GET_FUN(__glewTbufferMask3DFX) + +#define GLEW_3DFX_tbuffer GLEW_GET_VAR(__GLEW_3DFX_tbuffer) + +#endif /* GL_3DFX_tbuffer */ + +/* -------------------- GL_3DFX_texture_compression_FXT1 ------------------- */ + +#ifndef GL_3DFX_texture_compression_FXT1 +#define GL_3DFX_texture_compression_FXT1 1 + +#define GL_COMPRESSED_RGB_FXT1_3DFX 0x86B0 +#define GL_COMPRESSED_RGBA_FXT1_3DFX 0x86B1 + +#define GLEW_3DFX_texture_compression_FXT1 GLEW_GET_VAR(__GLEW_3DFX_texture_compression_FXT1) + +#endif /* GL_3DFX_texture_compression_FXT1 */ + +/* ----------------------- GL_AMD_blend_minmax_factor ---------------------- */ + +#ifndef GL_AMD_blend_minmax_factor +#define GL_AMD_blend_minmax_factor 1 + +#define GL_FACTOR_MIN_AMD 0x901C +#define GL_FACTOR_MAX_AMD 0x901D + +#define GLEW_AMD_blend_minmax_factor GLEW_GET_VAR(__GLEW_AMD_blend_minmax_factor) + +#endif /* GL_AMD_blend_minmax_factor */ + +/* --------------------- GL_AMD_compressed_3DC_texture --------------------- */ + +#ifndef GL_AMD_compressed_3DC_texture +#define GL_AMD_compressed_3DC_texture 1 + +#define GL_3DC_X_AMD 0x87F9 +#define GL_3DC_XY_AMD 0x87FA + +#define GLEW_AMD_compressed_3DC_texture GLEW_GET_VAR(__GLEW_AMD_compressed_3DC_texture) + +#endif /* GL_AMD_compressed_3DC_texture */ + +/* --------------------- GL_AMD_compressed_ATC_texture --------------------- */ + +#ifndef GL_AMD_compressed_ATC_texture +#define GL_AMD_compressed_ATC_texture 1 + +#define GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD 0x87EE +#define GL_ATC_RGB_AMD 0x8C92 +#define GL_ATC_RGBA_EXPLICIT_ALPHA_AMD 0x8C93 + +#define GLEW_AMD_compressed_ATC_texture GLEW_GET_VAR(__GLEW_AMD_compressed_ATC_texture) + +#endif /* GL_AMD_compressed_ATC_texture */ + +/* ----------------------- GL_AMD_conservative_depth ----------------------- */ + +#ifndef GL_AMD_conservative_depth +#define GL_AMD_conservative_depth 1 + +#define GLEW_AMD_conservative_depth GLEW_GET_VAR(__GLEW_AMD_conservative_depth) + +#endif /* GL_AMD_conservative_depth */ + +/* -------------------------- GL_AMD_debug_output -------------------------- */ + +#ifndef GL_AMD_debug_output +#define GL_AMD_debug_output 1 + +#define GL_MAX_DEBUG_MESSAGE_LENGTH_AMD 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES_AMD 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES_AMD 0x9145 +#define GL_DEBUG_SEVERITY_HIGH_AMD 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM_AMD 0x9147 +#define GL_DEBUG_SEVERITY_LOW_AMD 0x9148 +#define GL_DEBUG_CATEGORY_API_ERROR_AMD 0x9149 +#define GL_DEBUG_CATEGORY_WINDOW_SYSTEM_AMD 0x914A +#define GL_DEBUG_CATEGORY_DEPRECATION_AMD 0x914B +#define GL_DEBUG_CATEGORY_UNDEFINED_BEHAVIOR_AMD 0x914C +#define GL_DEBUG_CATEGORY_PERFORMANCE_AMD 0x914D +#define GL_DEBUG_CATEGORY_SHADER_COMPILER_AMD 0x914E +#define GL_DEBUG_CATEGORY_APPLICATION_AMD 0x914F +#define GL_DEBUG_CATEGORY_OTHER_AMD 0x9150 + +typedef void (GLAPIENTRY *GLDEBUGPROCAMD)(GLuint id, GLenum category, GLenum severity, GLsizei length, const GLchar* message, void* userParam); + +typedef void (GLAPIENTRY * PFNGLDEBUGMESSAGECALLBACKAMDPROC) (GLDEBUGPROCAMD callback, void *userParam); +typedef void (GLAPIENTRY * PFNGLDEBUGMESSAGEENABLEAMDPROC) (GLenum category, GLenum severity, GLsizei count, const GLuint* ids, GLboolean enabled); +typedef void (GLAPIENTRY * PFNGLDEBUGMESSAGEINSERTAMDPROC) (GLenum category, GLenum severity, GLuint id, GLsizei length, const GLchar* buf); +typedef GLuint (GLAPIENTRY * PFNGLGETDEBUGMESSAGELOGAMDPROC) (GLuint count, GLsizei bufsize, GLenum* categories, GLuint* severities, GLuint* ids, GLsizei* lengths, GLchar* message); + +#define glDebugMessageCallbackAMD GLEW_GET_FUN(__glewDebugMessageCallbackAMD) +#define glDebugMessageEnableAMD GLEW_GET_FUN(__glewDebugMessageEnableAMD) +#define glDebugMessageInsertAMD GLEW_GET_FUN(__glewDebugMessageInsertAMD) +#define glGetDebugMessageLogAMD GLEW_GET_FUN(__glewGetDebugMessageLogAMD) + +#define GLEW_AMD_debug_output GLEW_GET_VAR(__GLEW_AMD_debug_output) + +#endif /* GL_AMD_debug_output */ + +/* ---------------------- GL_AMD_depth_clamp_separate ---------------------- */ + +#ifndef GL_AMD_depth_clamp_separate +#define GL_AMD_depth_clamp_separate 1 + +#define GL_DEPTH_CLAMP_NEAR_AMD 0x901E +#define GL_DEPTH_CLAMP_FAR_AMD 0x901F + +#define GLEW_AMD_depth_clamp_separate GLEW_GET_VAR(__GLEW_AMD_depth_clamp_separate) + +#endif /* GL_AMD_depth_clamp_separate */ + +/* ----------------------- GL_AMD_draw_buffers_blend ----------------------- */ + +#ifndef GL_AMD_draw_buffers_blend +#define GL_AMD_draw_buffers_blend 1 + +typedef void (GLAPIENTRY * PFNGLBLENDEQUATIONINDEXEDAMDPROC) (GLuint buf, GLenum mode); +typedef void (GLAPIENTRY * PFNGLBLENDEQUATIONSEPARATEINDEXEDAMDPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (GLAPIENTRY * PFNGLBLENDFUNCINDEXEDAMDPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (GLAPIENTRY * PFNGLBLENDFUNCSEPARATEINDEXEDAMDPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); + +#define glBlendEquationIndexedAMD GLEW_GET_FUN(__glewBlendEquationIndexedAMD) +#define glBlendEquationSeparateIndexedAMD GLEW_GET_FUN(__glewBlendEquationSeparateIndexedAMD) +#define glBlendFuncIndexedAMD GLEW_GET_FUN(__glewBlendFuncIndexedAMD) +#define glBlendFuncSeparateIndexedAMD GLEW_GET_FUN(__glewBlendFuncSeparateIndexedAMD) + +#define GLEW_AMD_draw_buffers_blend GLEW_GET_VAR(__GLEW_AMD_draw_buffers_blend) + +#endif /* GL_AMD_draw_buffers_blend */ + +/* ------------------ GL_AMD_framebuffer_sample_positions ------------------ */ + +#ifndef GL_AMD_framebuffer_sample_positions +#define GL_AMD_framebuffer_sample_positions 1 + +#define GL_SUBSAMPLE_DISTANCE_AMD 0x883F +#define GL_PIXELS_PER_SAMPLE_PATTERN_X_AMD 0x91AE +#define GL_PIXELS_PER_SAMPLE_PATTERN_Y_AMD 0x91AF +#define GL_ALL_PIXELS_AMD 0xFFFFFFFF + +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERSAMPLEPOSITIONSFVAMDPROC) (GLenum target, GLuint numsamples, GLuint pixelindex, const GLfloat* values); +typedef void (GLAPIENTRY * PFNGLGETFRAMEBUFFERPARAMETERFVAMDPROC) (GLenum target, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat* values); +typedef void (GLAPIENTRY * PFNGLGETNAMEDFRAMEBUFFERPARAMETERFVAMDPROC) (GLuint framebuffer, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat* values); +typedef void (GLAPIENTRY * PFNGLNAMEDFRAMEBUFFERSAMPLEPOSITIONSFVAMDPROC) (GLuint framebuffer, GLuint numsamples, GLuint pixelindex, const GLfloat* values); + +#define glFramebufferSamplePositionsfvAMD GLEW_GET_FUN(__glewFramebufferSamplePositionsfvAMD) +#define glGetFramebufferParameterfvAMD GLEW_GET_FUN(__glewGetFramebufferParameterfvAMD) +#define glGetNamedFramebufferParameterfvAMD GLEW_GET_FUN(__glewGetNamedFramebufferParameterfvAMD) +#define glNamedFramebufferSamplePositionsfvAMD GLEW_GET_FUN(__glewNamedFramebufferSamplePositionsfvAMD) + +#define GLEW_AMD_framebuffer_sample_positions GLEW_GET_VAR(__GLEW_AMD_framebuffer_sample_positions) + +#endif /* GL_AMD_framebuffer_sample_positions */ + +/* --------------------------- GL_AMD_gcn_shader --------------------------- */ + +#ifndef GL_AMD_gcn_shader +#define GL_AMD_gcn_shader 1 + +#define GLEW_AMD_gcn_shader GLEW_GET_VAR(__GLEW_AMD_gcn_shader) + +#endif /* GL_AMD_gcn_shader */ + +/* ---------------------- GL_AMD_gpu_shader_half_float --------------------- */ + +#ifndef GL_AMD_gpu_shader_half_float +#define GL_AMD_gpu_shader_half_float 1 + +#define GL_FLOAT16_NV 0x8FF8 +#define GL_FLOAT16_VEC2_NV 0x8FF9 +#define GL_FLOAT16_VEC3_NV 0x8FFA +#define GL_FLOAT16_VEC4_NV 0x8FFB +#define GL_FLOAT16_MAT2_AMD 0x91C5 +#define GL_FLOAT16_MAT3_AMD 0x91C6 +#define GL_FLOAT16_MAT4_AMD 0x91C7 +#define GL_FLOAT16_MAT2x3_AMD 0x91C8 +#define GL_FLOAT16_MAT2x4_AMD 0x91C9 +#define GL_FLOAT16_MAT3x2_AMD 0x91CA +#define GL_FLOAT16_MAT3x4_AMD 0x91CB +#define GL_FLOAT16_MAT4x2_AMD 0x91CC +#define GL_FLOAT16_MAT4x3_AMD 0x91CD + +#define GLEW_AMD_gpu_shader_half_float GLEW_GET_VAR(__GLEW_AMD_gpu_shader_half_float) + +#endif /* GL_AMD_gpu_shader_half_float */ + +/* ------------------------ GL_AMD_gpu_shader_int16 ------------------------ */ + +#ifndef GL_AMD_gpu_shader_int16 +#define GL_AMD_gpu_shader_int16 1 + +#define GLEW_AMD_gpu_shader_int16 GLEW_GET_VAR(__GLEW_AMD_gpu_shader_int16) + +#endif /* GL_AMD_gpu_shader_int16 */ + +/* ------------------------ GL_AMD_gpu_shader_int64 ------------------------ */ + +#ifndef GL_AMD_gpu_shader_int64 +#define GL_AMD_gpu_shader_int64 1 + +#define GLEW_AMD_gpu_shader_int64 GLEW_GET_VAR(__GLEW_AMD_gpu_shader_int64) + +#endif /* GL_AMD_gpu_shader_int64 */ + +/* ---------------------- GL_AMD_interleaved_elements ---------------------- */ + +#ifndef GL_AMD_interleaved_elements +#define GL_AMD_interleaved_elements 1 + +#define GL_RED 0x1903 +#define GL_GREEN 0x1904 +#define GL_BLUE 0x1905 +#define GL_ALPHA 0x1906 +#define GL_RG8UI 0x8238 +#define GL_RG16UI 0x823A +#define GL_RGBA8UI 0x8D7C +#define GL_VERTEX_ELEMENT_SWIZZLE_AMD 0x91A4 +#define GL_VERTEX_ID_SWIZZLE_AMD 0x91A5 + +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBPARAMETERIAMDPROC) (GLuint index, GLenum pname, GLint param); + +#define glVertexAttribParameteriAMD GLEW_GET_FUN(__glewVertexAttribParameteriAMD) + +#define GLEW_AMD_interleaved_elements GLEW_GET_VAR(__GLEW_AMD_interleaved_elements) + +#endif /* GL_AMD_interleaved_elements */ + +/* ----------------------- GL_AMD_multi_draw_indirect ---------------------- */ + +#ifndef GL_AMD_multi_draw_indirect +#define GL_AMD_multi_draw_indirect 1 + +typedef void (GLAPIENTRY * PFNGLMULTIDRAWARRAYSINDIRECTAMDPROC) (GLenum mode, const void *indirect, GLsizei primcount, GLsizei stride); +typedef void (GLAPIENTRY * PFNGLMULTIDRAWELEMENTSINDIRECTAMDPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei primcount, GLsizei stride); + +#define glMultiDrawArraysIndirectAMD GLEW_GET_FUN(__glewMultiDrawArraysIndirectAMD) +#define glMultiDrawElementsIndirectAMD GLEW_GET_FUN(__glewMultiDrawElementsIndirectAMD) + +#define GLEW_AMD_multi_draw_indirect GLEW_GET_VAR(__GLEW_AMD_multi_draw_indirect) + +#endif /* GL_AMD_multi_draw_indirect */ + +/* ------------------------- GL_AMD_name_gen_delete ------------------------ */ + +#ifndef GL_AMD_name_gen_delete +#define GL_AMD_name_gen_delete 1 + +#define GL_DATA_BUFFER_AMD 0x9151 +#define GL_PERFORMANCE_MONITOR_AMD 0x9152 +#define GL_QUERY_OBJECT_AMD 0x9153 +#define GL_VERTEX_ARRAY_OBJECT_AMD 0x9154 +#define GL_SAMPLER_OBJECT_AMD 0x9155 + +typedef void (GLAPIENTRY * PFNGLDELETENAMESAMDPROC) (GLenum identifier, GLuint num, const GLuint* names); +typedef void (GLAPIENTRY * PFNGLGENNAMESAMDPROC) (GLenum identifier, GLuint num, GLuint* names); +typedef GLboolean (GLAPIENTRY * PFNGLISNAMEAMDPROC) (GLenum identifier, GLuint name); + +#define glDeleteNamesAMD GLEW_GET_FUN(__glewDeleteNamesAMD) +#define glGenNamesAMD GLEW_GET_FUN(__glewGenNamesAMD) +#define glIsNameAMD GLEW_GET_FUN(__glewIsNameAMD) + +#define GLEW_AMD_name_gen_delete GLEW_GET_VAR(__GLEW_AMD_name_gen_delete) + +#endif /* GL_AMD_name_gen_delete */ + +/* ---------------------- GL_AMD_occlusion_query_event --------------------- */ + +#ifndef GL_AMD_occlusion_query_event +#define GL_AMD_occlusion_query_event 1 + +#define GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD 0x00000001 +#define GL_QUERY_DEPTH_FAIL_EVENT_BIT_AMD 0x00000002 +#define GL_QUERY_STENCIL_FAIL_EVENT_BIT_AMD 0x00000004 +#define GL_QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD 0x00000008 +#define GL_OCCLUSION_QUERY_EVENT_MASK_AMD 0x874F +#define GL_QUERY_ALL_EVENT_BITS_AMD 0xFFFFFFFF + +typedef void (GLAPIENTRY * PFNGLQUERYOBJECTPARAMETERUIAMDPROC) (GLenum target, GLuint id, GLenum pname, GLuint param); + +#define glQueryObjectParameteruiAMD GLEW_GET_FUN(__glewQueryObjectParameteruiAMD) + +#define GLEW_AMD_occlusion_query_event GLEW_GET_VAR(__GLEW_AMD_occlusion_query_event) + +#endif /* GL_AMD_occlusion_query_event */ + +/* ----------------------- GL_AMD_performance_monitor ---------------------- */ + +#ifndef GL_AMD_performance_monitor +#define GL_AMD_performance_monitor 1 + +#define GL_COUNTER_TYPE_AMD 0x8BC0 +#define GL_COUNTER_RANGE_AMD 0x8BC1 +#define GL_UNSIGNED_INT64_AMD 0x8BC2 +#define GL_PERCENTAGE_AMD 0x8BC3 +#define GL_PERFMON_RESULT_AVAILABLE_AMD 0x8BC4 +#define GL_PERFMON_RESULT_SIZE_AMD 0x8BC5 +#define GL_PERFMON_RESULT_AMD 0x8BC6 + +typedef void (GLAPIENTRY * PFNGLBEGINPERFMONITORAMDPROC) (GLuint monitor); +typedef void (GLAPIENTRY * PFNGLDELETEPERFMONITORSAMDPROC) (GLsizei n, GLuint* monitors); +typedef void (GLAPIENTRY * PFNGLENDPERFMONITORAMDPROC) (GLuint monitor); +typedef void (GLAPIENTRY * PFNGLGENPERFMONITORSAMDPROC) (GLsizei n, GLuint* monitors); +typedef void (GLAPIENTRY * PFNGLGETPERFMONITORCOUNTERDATAAMDPROC) (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint* data, GLint *bytesWritten); +typedef void (GLAPIENTRY * PFNGLGETPERFMONITORCOUNTERINFOAMDPROC) (GLuint group, GLuint counter, GLenum pname, void *data); +typedef void (GLAPIENTRY * PFNGLGETPERFMONITORCOUNTERSTRINGAMDPROC) (GLuint group, GLuint counter, GLsizei bufSize, GLsizei* length, GLchar *counterString); +typedef void (GLAPIENTRY * PFNGLGETPERFMONITORCOUNTERSAMDPROC) (GLuint group, GLint* numCounters, GLint *maxActiveCounters, GLsizei countersSize, GLuint *counters); +typedef void (GLAPIENTRY * PFNGLGETPERFMONITORGROUPSTRINGAMDPROC) (GLuint group, GLsizei bufSize, GLsizei* length, GLchar *groupString); +typedef void (GLAPIENTRY * PFNGLGETPERFMONITORGROUPSAMDPROC) (GLint* numGroups, GLsizei groupsSize, GLuint *groups); +typedef void (GLAPIENTRY * PFNGLSELECTPERFMONITORCOUNTERSAMDPROC) (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint* counterList); + +#define glBeginPerfMonitorAMD GLEW_GET_FUN(__glewBeginPerfMonitorAMD) +#define glDeletePerfMonitorsAMD GLEW_GET_FUN(__glewDeletePerfMonitorsAMD) +#define glEndPerfMonitorAMD GLEW_GET_FUN(__glewEndPerfMonitorAMD) +#define glGenPerfMonitorsAMD GLEW_GET_FUN(__glewGenPerfMonitorsAMD) +#define glGetPerfMonitorCounterDataAMD GLEW_GET_FUN(__glewGetPerfMonitorCounterDataAMD) +#define glGetPerfMonitorCounterInfoAMD GLEW_GET_FUN(__glewGetPerfMonitorCounterInfoAMD) +#define glGetPerfMonitorCounterStringAMD GLEW_GET_FUN(__glewGetPerfMonitorCounterStringAMD) +#define glGetPerfMonitorCountersAMD GLEW_GET_FUN(__glewGetPerfMonitorCountersAMD) +#define glGetPerfMonitorGroupStringAMD GLEW_GET_FUN(__glewGetPerfMonitorGroupStringAMD) +#define glGetPerfMonitorGroupsAMD GLEW_GET_FUN(__glewGetPerfMonitorGroupsAMD) +#define glSelectPerfMonitorCountersAMD GLEW_GET_FUN(__glewSelectPerfMonitorCountersAMD) + +#define GLEW_AMD_performance_monitor GLEW_GET_VAR(__GLEW_AMD_performance_monitor) + +#endif /* GL_AMD_performance_monitor */ + +/* -------------------------- GL_AMD_pinned_memory ------------------------- */ + +#ifndef GL_AMD_pinned_memory +#define GL_AMD_pinned_memory 1 + +#define GL_EXTERNAL_VIRTUAL_MEMORY_BUFFER_AMD 0x9160 + +#define GLEW_AMD_pinned_memory GLEW_GET_VAR(__GLEW_AMD_pinned_memory) + +#endif /* GL_AMD_pinned_memory */ + +/* ----------------------- GL_AMD_program_binary_Z400 ---------------------- */ + +#ifndef GL_AMD_program_binary_Z400 +#define GL_AMD_program_binary_Z400 1 + +#define GL_Z400_BINARY_AMD 0x8740 + +#define GLEW_AMD_program_binary_Z400 GLEW_GET_VAR(__GLEW_AMD_program_binary_Z400) + +#endif /* GL_AMD_program_binary_Z400 */ + +/* ----------------------- GL_AMD_query_buffer_object ---------------------- */ + +#ifndef GL_AMD_query_buffer_object +#define GL_AMD_query_buffer_object 1 + +#define GL_QUERY_BUFFER_AMD 0x9192 +#define GL_QUERY_BUFFER_BINDING_AMD 0x9193 +#define GL_QUERY_RESULT_NO_WAIT_AMD 0x9194 + +#define GLEW_AMD_query_buffer_object GLEW_GET_VAR(__GLEW_AMD_query_buffer_object) + +#endif /* GL_AMD_query_buffer_object */ + +/* ------------------------ GL_AMD_sample_positions ------------------------ */ + +#ifndef GL_AMD_sample_positions +#define GL_AMD_sample_positions 1 + +#define GL_SUBSAMPLE_DISTANCE_AMD 0x883F + +typedef void (GLAPIENTRY * PFNGLSETMULTISAMPLEFVAMDPROC) (GLenum pname, GLuint index, const GLfloat* val); + +#define glSetMultisamplefvAMD GLEW_GET_FUN(__glewSetMultisamplefvAMD) + +#define GLEW_AMD_sample_positions GLEW_GET_VAR(__GLEW_AMD_sample_positions) + +#endif /* GL_AMD_sample_positions */ + +/* ------------------ GL_AMD_seamless_cubemap_per_texture ------------------ */ + +#ifndef GL_AMD_seamless_cubemap_per_texture +#define GL_AMD_seamless_cubemap_per_texture 1 + +#define GL_TEXTURE_CUBE_MAP_SEAMLESS 0x884F + +#define GLEW_AMD_seamless_cubemap_per_texture GLEW_GET_VAR(__GLEW_AMD_seamless_cubemap_per_texture) + +#endif /* GL_AMD_seamless_cubemap_per_texture */ + +/* -------------------- GL_AMD_shader_atomic_counter_ops ------------------- */ + +#ifndef GL_AMD_shader_atomic_counter_ops +#define GL_AMD_shader_atomic_counter_ops 1 + +#define GLEW_AMD_shader_atomic_counter_ops GLEW_GET_VAR(__GLEW_AMD_shader_atomic_counter_ops) + +#endif /* GL_AMD_shader_atomic_counter_ops */ + +/* -------------------------- GL_AMD_shader_ballot ------------------------- */ + +#ifndef GL_AMD_shader_ballot +#define GL_AMD_shader_ballot 1 + +#define GLEW_AMD_shader_ballot GLEW_GET_VAR(__GLEW_AMD_shader_ballot) + +#endif /* GL_AMD_shader_ballot */ + +/* ---------------- GL_AMD_shader_explicit_vertex_parameter ---------------- */ + +#ifndef GL_AMD_shader_explicit_vertex_parameter +#define GL_AMD_shader_explicit_vertex_parameter 1 + +#define GLEW_AMD_shader_explicit_vertex_parameter GLEW_GET_VAR(__GLEW_AMD_shader_explicit_vertex_parameter) + +#endif /* GL_AMD_shader_explicit_vertex_parameter */ + +/* ---------------------- GL_AMD_shader_stencil_export --------------------- */ + +#ifndef GL_AMD_shader_stencil_export +#define GL_AMD_shader_stencil_export 1 + +#define GLEW_AMD_shader_stencil_export GLEW_GET_VAR(__GLEW_AMD_shader_stencil_export) + +#endif /* GL_AMD_shader_stencil_export */ + +/* ------------------- GL_AMD_shader_stencil_value_export ------------------ */ + +#ifndef GL_AMD_shader_stencil_value_export +#define GL_AMD_shader_stencil_value_export 1 + +#define GLEW_AMD_shader_stencil_value_export GLEW_GET_VAR(__GLEW_AMD_shader_stencil_value_export) + +#endif /* GL_AMD_shader_stencil_value_export */ + +/* ---------------------- GL_AMD_shader_trinary_minmax --------------------- */ + +#ifndef GL_AMD_shader_trinary_minmax +#define GL_AMD_shader_trinary_minmax 1 + +#define GLEW_AMD_shader_trinary_minmax GLEW_GET_VAR(__GLEW_AMD_shader_trinary_minmax) + +#endif /* GL_AMD_shader_trinary_minmax */ + +/* ------------------------- GL_AMD_sparse_texture ------------------------- */ + +#ifndef GL_AMD_sparse_texture +#define GL_AMD_sparse_texture 1 + +#define GL_TEXTURE_STORAGE_SPARSE_BIT_AMD 0x00000001 +#define GL_VIRTUAL_PAGE_SIZE_X_AMD 0x9195 +#define GL_VIRTUAL_PAGE_SIZE_Y_AMD 0x9196 +#define GL_VIRTUAL_PAGE_SIZE_Z_AMD 0x9197 +#define GL_MAX_SPARSE_TEXTURE_SIZE_AMD 0x9198 +#define GL_MAX_SPARSE_3D_TEXTURE_SIZE_AMD 0x9199 +#define GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS 0x919A +#define GL_MIN_SPARSE_LEVEL_AMD 0x919B +#define GL_MIN_LOD_WARNING_AMD 0x919C + +typedef void (GLAPIENTRY * PFNGLTEXSTORAGESPARSEAMDPROC) (GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags); +typedef void (GLAPIENTRY * PFNGLTEXTURESTORAGESPARSEAMDPROC) (GLuint texture, GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLsizei layers, GLbitfield flags); + +#define glTexStorageSparseAMD GLEW_GET_FUN(__glewTexStorageSparseAMD) +#define glTextureStorageSparseAMD GLEW_GET_FUN(__glewTextureStorageSparseAMD) + +#define GLEW_AMD_sparse_texture GLEW_GET_VAR(__GLEW_AMD_sparse_texture) + +#endif /* GL_AMD_sparse_texture */ + +/* ------------------- GL_AMD_stencil_operation_extended ------------------- */ + +#ifndef GL_AMD_stencil_operation_extended +#define GL_AMD_stencil_operation_extended 1 + +#define GL_SET_AMD 0x874A +#define GL_REPLACE_VALUE_AMD 0x874B +#define GL_STENCIL_OP_VALUE_AMD 0x874C +#define GL_STENCIL_BACK_OP_VALUE_AMD 0x874D + +typedef void (GLAPIENTRY * PFNGLSTENCILOPVALUEAMDPROC) (GLenum face, GLuint value); + +#define glStencilOpValueAMD GLEW_GET_FUN(__glewStencilOpValueAMD) + +#define GLEW_AMD_stencil_operation_extended GLEW_GET_VAR(__GLEW_AMD_stencil_operation_extended) + +#endif /* GL_AMD_stencil_operation_extended */ + +/* --------------------- GL_AMD_texture_gather_bias_lod -------------------- */ + +#ifndef GL_AMD_texture_gather_bias_lod +#define GL_AMD_texture_gather_bias_lod 1 + +#define GLEW_AMD_texture_gather_bias_lod GLEW_GET_VAR(__GLEW_AMD_texture_gather_bias_lod) + +#endif /* GL_AMD_texture_gather_bias_lod */ + +/* ------------------------ GL_AMD_texture_texture4 ------------------------ */ + +#ifndef GL_AMD_texture_texture4 +#define GL_AMD_texture_texture4 1 + +#define GLEW_AMD_texture_texture4 GLEW_GET_VAR(__GLEW_AMD_texture_texture4) + +#endif /* GL_AMD_texture_texture4 */ + +/* --------------- GL_AMD_transform_feedback3_lines_triangles -------------- */ + +#ifndef GL_AMD_transform_feedback3_lines_triangles +#define GL_AMD_transform_feedback3_lines_triangles 1 + +#define GLEW_AMD_transform_feedback3_lines_triangles GLEW_GET_VAR(__GLEW_AMD_transform_feedback3_lines_triangles) + +#endif /* GL_AMD_transform_feedback3_lines_triangles */ + +/* ----------------------- GL_AMD_transform_feedback4 ---------------------- */ + +#ifndef GL_AMD_transform_feedback4 +#define GL_AMD_transform_feedback4 1 + +#define GL_STREAM_RASTERIZATION_AMD 0x91A0 + +#define GLEW_AMD_transform_feedback4 GLEW_GET_VAR(__GLEW_AMD_transform_feedback4) + +#endif /* GL_AMD_transform_feedback4 */ + +/* ----------------------- GL_AMD_vertex_shader_layer ---------------------- */ + +#ifndef GL_AMD_vertex_shader_layer +#define GL_AMD_vertex_shader_layer 1 + +#define GLEW_AMD_vertex_shader_layer GLEW_GET_VAR(__GLEW_AMD_vertex_shader_layer) + +#endif /* GL_AMD_vertex_shader_layer */ + +/* -------------------- GL_AMD_vertex_shader_tessellator ------------------- */ + +#ifndef GL_AMD_vertex_shader_tessellator +#define GL_AMD_vertex_shader_tessellator 1 + +#define GL_SAMPLER_BUFFER_AMD 0x9001 +#define GL_INT_SAMPLER_BUFFER_AMD 0x9002 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_AMD 0x9003 +#define GL_TESSELLATION_MODE_AMD 0x9004 +#define GL_TESSELLATION_FACTOR_AMD 0x9005 +#define GL_DISCRETE_AMD 0x9006 +#define GL_CONTINUOUS_AMD 0x9007 + +typedef void (GLAPIENTRY * PFNGLTESSELLATIONFACTORAMDPROC) (GLfloat factor); +typedef void (GLAPIENTRY * PFNGLTESSELLATIONMODEAMDPROC) (GLenum mode); + +#define glTessellationFactorAMD GLEW_GET_FUN(__glewTessellationFactorAMD) +#define glTessellationModeAMD GLEW_GET_FUN(__glewTessellationModeAMD) + +#define GLEW_AMD_vertex_shader_tessellator GLEW_GET_VAR(__GLEW_AMD_vertex_shader_tessellator) + +#endif /* GL_AMD_vertex_shader_tessellator */ + +/* ------------------ GL_AMD_vertex_shader_viewport_index ------------------ */ + +#ifndef GL_AMD_vertex_shader_viewport_index +#define GL_AMD_vertex_shader_viewport_index 1 + +#define GLEW_AMD_vertex_shader_viewport_index GLEW_GET_VAR(__GLEW_AMD_vertex_shader_viewport_index) + +#endif /* GL_AMD_vertex_shader_viewport_index */ + +/* -------------------- GL_ANDROID_extension_pack_es31a -------------------- */ + +#ifndef GL_ANDROID_extension_pack_es31a +#define GL_ANDROID_extension_pack_es31a 1 + +#define GLEW_ANDROID_extension_pack_es31a GLEW_GET_VAR(__GLEW_ANDROID_extension_pack_es31a) + +#endif /* GL_ANDROID_extension_pack_es31a */ + +/* ------------------------- GL_ANGLE_depth_texture ------------------------ */ + +#ifndef GL_ANGLE_depth_texture +#define GL_ANGLE_depth_texture 1 + +#define GLEW_ANGLE_depth_texture GLEW_GET_VAR(__GLEW_ANGLE_depth_texture) + +#endif /* GL_ANGLE_depth_texture */ + +/* ----------------------- GL_ANGLE_framebuffer_blit ----------------------- */ + +#ifndef GL_ANGLE_framebuffer_blit +#define GL_ANGLE_framebuffer_blit 1 + +#define GL_DRAW_FRAMEBUFFER_BINDING_ANGLE 0x8CA6 +#define GL_READ_FRAMEBUFFER_ANGLE 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_ANGLE 0x8CA9 +#define GL_READ_FRAMEBUFFER_BINDING_ANGLE 0x8CAA + +typedef void (GLAPIENTRY * PFNGLBLITFRAMEBUFFERANGLEPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); + +#define glBlitFramebufferANGLE GLEW_GET_FUN(__glewBlitFramebufferANGLE) + +#define GLEW_ANGLE_framebuffer_blit GLEW_GET_VAR(__GLEW_ANGLE_framebuffer_blit) + +#endif /* GL_ANGLE_framebuffer_blit */ + +/* -------------------- GL_ANGLE_framebuffer_multisample ------------------- */ + +#ifndef GL_ANGLE_framebuffer_multisample +#define GL_ANGLE_framebuffer_multisample 1 + +#define GL_RENDERBUFFER_SAMPLES_ANGLE 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_ANGLE 0x8D56 +#define GL_MAX_SAMPLES_ANGLE 0x8D57 + +typedef void (GLAPIENTRY * PFNGLRENDERBUFFERSTORAGEMULTISAMPLEANGLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); + +#define glRenderbufferStorageMultisampleANGLE GLEW_GET_FUN(__glewRenderbufferStorageMultisampleANGLE) + +#define GLEW_ANGLE_framebuffer_multisample GLEW_GET_VAR(__GLEW_ANGLE_framebuffer_multisample) + +#endif /* GL_ANGLE_framebuffer_multisample */ + +/* ----------------------- GL_ANGLE_instanced_arrays ----------------------- */ + +#ifndef GL_ANGLE_instanced_arrays +#define GL_ANGLE_instanced_arrays 1 + +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE 0x88FE + +typedef void (GLAPIENTRY * PFNGLDRAWARRAYSINSTANCEDANGLEPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (GLAPIENTRY * PFNGLDRAWELEMENTSINSTANCEDANGLEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBDIVISORANGLEPROC) (GLuint index, GLuint divisor); + +#define glDrawArraysInstancedANGLE GLEW_GET_FUN(__glewDrawArraysInstancedANGLE) +#define glDrawElementsInstancedANGLE GLEW_GET_FUN(__glewDrawElementsInstancedANGLE) +#define glVertexAttribDivisorANGLE GLEW_GET_FUN(__glewVertexAttribDivisorANGLE) + +#define GLEW_ANGLE_instanced_arrays GLEW_GET_VAR(__GLEW_ANGLE_instanced_arrays) + +#endif /* GL_ANGLE_instanced_arrays */ + +/* -------------------- GL_ANGLE_pack_reverse_row_order -------------------- */ + +#ifndef GL_ANGLE_pack_reverse_row_order +#define GL_ANGLE_pack_reverse_row_order 1 + +#define GL_PACK_REVERSE_ROW_ORDER_ANGLE 0x93A4 + +#define GLEW_ANGLE_pack_reverse_row_order GLEW_GET_VAR(__GLEW_ANGLE_pack_reverse_row_order) + +#endif /* GL_ANGLE_pack_reverse_row_order */ + +/* ------------------------ GL_ANGLE_program_binary ------------------------ */ + +#ifndef GL_ANGLE_program_binary +#define GL_ANGLE_program_binary 1 + +#define GL_PROGRAM_BINARY_ANGLE 0x93A6 + +#define GLEW_ANGLE_program_binary GLEW_GET_VAR(__GLEW_ANGLE_program_binary) + +#endif /* GL_ANGLE_program_binary */ + +/* ------------------- GL_ANGLE_texture_compression_dxt1 ------------------- */ + +#ifndef GL_ANGLE_texture_compression_dxt1 +#define GL_ANGLE_texture_compression_dxt1 1 + +#define GL_COMPRESSED_RGB_S3TC_DXT1_ANGLE 0x83F0 +#define GL_COMPRESSED_RGBA_S3TC_DXT1_ANGLE 0x83F1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_ANGLE 0x83F2 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_ANGLE 0x83F3 + +#define GLEW_ANGLE_texture_compression_dxt1 GLEW_GET_VAR(__GLEW_ANGLE_texture_compression_dxt1) + +#endif /* GL_ANGLE_texture_compression_dxt1 */ + +/* ------------------- GL_ANGLE_texture_compression_dxt3 ------------------- */ + +#ifndef GL_ANGLE_texture_compression_dxt3 +#define GL_ANGLE_texture_compression_dxt3 1 + +#define GL_COMPRESSED_RGB_S3TC_DXT1_ANGLE 0x83F0 +#define GL_COMPRESSED_RGBA_S3TC_DXT1_ANGLE 0x83F1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_ANGLE 0x83F2 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_ANGLE 0x83F3 + +#define GLEW_ANGLE_texture_compression_dxt3 GLEW_GET_VAR(__GLEW_ANGLE_texture_compression_dxt3) + +#endif /* GL_ANGLE_texture_compression_dxt3 */ + +/* ------------------- GL_ANGLE_texture_compression_dxt5 ------------------- */ + +#ifndef GL_ANGLE_texture_compression_dxt5 +#define GL_ANGLE_texture_compression_dxt5 1 + +#define GL_COMPRESSED_RGB_S3TC_DXT1_ANGLE 0x83F0 +#define GL_COMPRESSED_RGBA_S3TC_DXT1_ANGLE 0x83F1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_ANGLE 0x83F2 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_ANGLE 0x83F3 + +#define GLEW_ANGLE_texture_compression_dxt5 GLEW_GET_VAR(__GLEW_ANGLE_texture_compression_dxt5) + +#endif /* GL_ANGLE_texture_compression_dxt5 */ + +/* ------------------------- GL_ANGLE_texture_usage ------------------------ */ + +#ifndef GL_ANGLE_texture_usage +#define GL_ANGLE_texture_usage 1 + +#define GL_TEXTURE_USAGE_ANGLE 0x93A2 +#define GL_FRAMEBUFFER_ATTACHMENT_ANGLE 0x93A3 + +#define GLEW_ANGLE_texture_usage GLEW_GET_VAR(__GLEW_ANGLE_texture_usage) + +#endif /* GL_ANGLE_texture_usage */ + +/* -------------------------- GL_ANGLE_timer_query ------------------------- */ + +#ifndef GL_ANGLE_timer_query +#define GL_ANGLE_timer_query 1 + +#define GL_QUERY_COUNTER_BITS_ANGLE 0x8864 +#define GL_CURRENT_QUERY_ANGLE 0x8865 +#define GL_QUERY_RESULT_ANGLE 0x8866 +#define GL_QUERY_RESULT_AVAILABLE_ANGLE 0x8867 +#define GL_TIME_ELAPSED_ANGLE 0x88BF +#define GL_TIMESTAMP_ANGLE 0x8E28 + +typedef void (GLAPIENTRY * PFNGLBEGINQUERYANGLEPROC) (GLenum target, GLuint id); +typedef void (GLAPIENTRY * PFNGLDELETEQUERIESANGLEPROC) (GLsizei n, const GLuint* ids); +typedef void (GLAPIENTRY * PFNGLENDQUERYANGLEPROC) (GLenum target); +typedef void (GLAPIENTRY * PFNGLGENQUERIESANGLEPROC) (GLsizei n, GLuint* ids); +typedef void (GLAPIENTRY * PFNGLGETQUERYOBJECTI64VANGLEPROC) (GLuint id, GLenum pname, GLint64* params); +typedef void (GLAPIENTRY * PFNGLGETQUERYOBJECTIVANGLEPROC) (GLuint id, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETQUERYOBJECTUI64VANGLEPROC) (GLuint id, GLenum pname, GLuint64* params); +typedef void (GLAPIENTRY * PFNGLGETQUERYOBJECTUIVANGLEPROC) (GLuint id, GLenum pname, GLuint* params); +typedef void (GLAPIENTRY * PFNGLGETQUERYIVANGLEPROC) (GLenum target, GLenum pname, GLint* params); +typedef GLboolean (GLAPIENTRY * PFNGLISQUERYANGLEPROC) (GLuint id); +typedef void (GLAPIENTRY * PFNGLQUERYCOUNTERANGLEPROC) (GLuint id, GLenum target); + +#define glBeginQueryANGLE GLEW_GET_FUN(__glewBeginQueryANGLE) +#define glDeleteQueriesANGLE GLEW_GET_FUN(__glewDeleteQueriesANGLE) +#define glEndQueryANGLE GLEW_GET_FUN(__glewEndQueryANGLE) +#define glGenQueriesANGLE GLEW_GET_FUN(__glewGenQueriesANGLE) +#define glGetQueryObjecti64vANGLE GLEW_GET_FUN(__glewGetQueryObjecti64vANGLE) +#define glGetQueryObjectivANGLE GLEW_GET_FUN(__glewGetQueryObjectivANGLE) +#define glGetQueryObjectui64vANGLE GLEW_GET_FUN(__glewGetQueryObjectui64vANGLE) +#define glGetQueryObjectuivANGLE GLEW_GET_FUN(__glewGetQueryObjectuivANGLE) +#define glGetQueryivANGLE GLEW_GET_FUN(__glewGetQueryivANGLE) +#define glIsQueryANGLE GLEW_GET_FUN(__glewIsQueryANGLE) +#define glQueryCounterANGLE GLEW_GET_FUN(__glewQueryCounterANGLE) + +#define GLEW_ANGLE_timer_query GLEW_GET_VAR(__GLEW_ANGLE_timer_query) + +#endif /* GL_ANGLE_timer_query */ + +/* ------------------- GL_ANGLE_translated_shader_source ------------------- */ + +#ifndef GL_ANGLE_translated_shader_source +#define GL_ANGLE_translated_shader_source 1 + +#define GL_TRANSLATED_SHADER_SOURCE_LENGTH_ANGLE 0x93A0 + +typedef void (GLAPIENTRY * PFNGLGETTRANSLATEDSHADERSOURCEANGLEPROC) (GLuint shader, GLsizei bufsize, GLsizei* length, GLchar* source); + +#define glGetTranslatedShaderSourceANGLE GLEW_GET_FUN(__glewGetTranslatedShaderSourceANGLE) + +#define GLEW_ANGLE_translated_shader_source GLEW_GET_VAR(__GLEW_ANGLE_translated_shader_source) + +#endif /* GL_ANGLE_translated_shader_source */ + +/* ----------------------- GL_APPLE_aux_depth_stencil ---------------------- */ + +#ifndef GL_APPLE_aux_depth_stencil +#define GL_APPLE_aux_depth_stencil 1 + +#define GL_AUX_DEPTH_STENCIL_APPLE 0x8A14 + +#define GLEW_APPLE_aux_depth_stencil GLEW_GET_VAR(__GLEW_APPLE_aux_depth_stencil) + +#endif /* GL_APPLE_aux_depth_stencil */ + +/* ------------------------ GL_APPLE_client_storage ------------------------ */ + +#ifndef GL_APPLE_client_storage +#define GL_APPLE_client_storage 1 + +#define GL_UNPACK_CLIENT_STORAGE_APPLE 0x85B2 + +#define GLEW_APPLE_client_storage GLEW_GET_VAR(__GLEW_APPLE_client_storage) + +#endif /* GL_APPLE_client_storage */ + +/* ------------------------- GL_APPLE_clip_distance ------------------------ */ + +#ifndef GL_APPLE_clip_distance +#define GL_APPLE_clip_distance 1 + +#define GL_MAX_CLIP_DISTANCES_APPLE 0x0D32 +#define GL_CLIP_DISTANCE0_APPLE 0x3000 +#define GL_CLIP_DISTANCE1_APPLE 0x3001 +#define GL_CLIP_DISTANCE2_APPLE 0x3002 +#define GL_CLIP_DISTANCE3_APPLE 0x3003 +#define GL_CLIP_DISTANCE4_APPLE 0x3004 +#define GL_CLIP_DISTANCE5_APPLE 0x3005 +#define GL_CLIP_DISTANCE6_APPLE 0x3006 +#define GL_CLIP_DISTANCE7_APPLE 0x3007 + +#define GLEW_APPLE_clip_distance GLEW_GET_VAR(__GLEW_APPLE_clip_distance) + +#endif /* GL_APPLE_clip_distance */ + +/* ------------------- GL_APPLE_color_buffer_packed_float ------------------ */ + +#ifndef GL_APPLE_color_buffer_packed_float +#define GL_APPLE_color_buffer_packed_float 1 + +#define GLEW_APPLE_color_buffer_packed_float GLEW_GET_VAR(__GLEW_APPLE_color_buffer_packed_float) + +#endif /* GL_APPLE_color_buffer_packed_float */ + +/* ---------------------- GL_APPLE_copy_texture_levels --------------------- */ + +#ifndef GL_APPLE_copy_texture_levels +#define GL_APPLE_copy_texture_levels 1 + +typedef void (GLAPIENTRY * PFNGLCOPYTEXTURELEVELSAPPLEPROC) (GLuint destinationTexture, GLuint sourceTexture, GLint sourceBaseLevel, GLsizei sourceLevelCount); + +#define glCopyTextureLevelsAPPLE GLEW_GET_FUN(__glewCopyTextureLevelsAPPLE) + +#define GLEW_APPLE_copy_texture_levels GLEW_GET_VAR(__GLEW_APPLE_copy_texture_levels) + +#endif /* GL_APPLE_copy_texture_levels */ + +/* ------------------------- GL_APPLE_element_array ------------------------ */ + +#ifndef GL_APPLE_element_array +#define GL_APPLE_element_array 1 + +#define GL_ELEMENT_ARRAY_APPLE 0x8A0C +#define GL_ELEMENT_ARRAY_TYPE_APPLE 0x8A0D +#define GL_ELEMENT_ARRAY_POINTER_APPLE 0x8A0E + +typedef void (GLAPIENTRY * PFNGLDRAWELEMENTARRAYAPPLEPROC) (GLenum mode, GLint first, GLsizei count); +typedef void (GLAPIENTRY * PFNGLDRAWRANGEELEMENTARRAYAPPLEPROC) (GLenum mode, GLuint start, GLuint end, GLint first, GLsizei count); +typedef void (GLAPIENTRY * PFNGLELEMENTPOINTERAPPLEPROC) (GLenum type, const void *pointer); +typedef void (GLAPIENTRY * PFNGLMULTIDRAWELEMENTARRAYAPPLEPROC) (GLenum mode, const GLint* first, const GLsizei *count, GLsizei primcount); +typedef void (GLAPIENTRY * PFNGLMULTIDRAWRANGEELEMENTARRAYAPPLEPROC) (GLenum mode, GLuint start, GLuint end, const GLint* first, const GLsizei *count, GLsizei primcount); + +#define glDrawElementArrayAPPLE GLEW_GET_FUN(__glewDrawElementArrayAPPLE) +#define glDrawRangeElementArrayAPPLE GLEW_GET_FUN(__glewDrawRangeElementArrayAPPLE) +#define glElementPointerAPPLE GLEW_GET_FUN(__glewElementPointerAPPLE) +#define glMultiDrawElementArrayAPPLE GLEW_GET_FUN(__glewMultiDrawElementArrayAPPLE) +#define glMultiDrawRangeElementArrayAPPLE GLEW_GET_FUN(__glewMultiDrawRangeElementArrayAPPLE) + +#define GLEW_APPLE_element_array GLEW_GET_VAR(__GLEW_APPLE_element_array) + +#endif /* GL_APPLE_element_array */ + +/* ----------------------------- GL_APPLE_fence ---------------------------- */ + +#ifndef GL_APPLE_fence +#define GL_APPLE_fence 1 + +#define GL_DRAW_PIXELS_APPLE 0x8A0A +#define GL_FENCE_APPLE 0x8A0B + +typedef void (GLAPIENTRY * PFNGLDELETEFENCESAPPLEPROC) (GLsizei n, const GLuint* fences); +typedef void (GLAPIENTRY * PFNGLFINISHFENCEAPPLEPROC) (GLuint fence); +typedef void (GLAPIENTRY * PFNGLFINISHOBJECTAPPLEPROC) (GLenum object, GLint name); +typedef void (GLAPIENTRY * PFNGLGENFENCESAPPLEPROC) (GLsizei n, GLuint* fences); +typedef GLboolean (GLAPIENTRY * PFNGLISFENCEAPPLEPROC) (GLuint fence); +typedef void (GLAPIENTRY * PFNGLSETFENCEAPPLEPROC) (GLuint fence); +typedef GLboolean (GLAPIENTRY * PFNGLTESTFENCEAPPLEPROC) (GLuint fence); +typedef GLboolean (GLAPIENTRY * PFNGLTESTOBJECTAPPLEPROC) (GLenum object, GLuint name); + +#define glDeleteFencesAPPLE GLEW_GET_FUN(__glewDeleteFencesAPPLE) +#define glFinishFenceAPPLE GLEW_GET_FUN(__glewFinishFenceAPPLE) +#define glFinishObjectAPPLE GLEW_GET_FUN(__glewFinishObjectAPPLE) +#define glGenFencesAPPLE GLEW_GET_FUN(__glewGenFencesAPPLE) +#define glIsFenceAPPLE GLEW_GET_FUN(__glewIsFenceAPPLE) +#define glSetFenceAPPLE GLEW_GET_FUN(__glewSetFenceAPPLE) +#define glTestFenceAPPLE GLEW_GET_FUN(__glewTestFenceAPPLE) +#define glTestObjectAPPLE GLEW_GET_FUN(__glewTestObjectAPPLE) + +#define GLEW_APPLE_fence GLEW_GET_VAR(__GLEW_APPLE_fence) + +#endif /* GL_APPLE_fence */ + +/* ------------------------- GL_APPLE_float_pixels ------------------------- */ + +#ifndef GL_APPLE_float_pixels +#define GL_APPLE_float_pixels 1 + +#define GL_HALF_APPLE 0x140B +#define GL_RGBA_FLOAT32_APPLE 0x8814 +#define GL_RGB_FLOAT32_APPLE 0x8815 +#define GL_ALPHA_FLOAT32_APPLE 0x8816 +#define GL_INTENSITY_FLOAT32_APPLE 0x8817 +#define GL_LUMINANCE_FLOAT32_APPLE 0x8818 +#define GL_LUMINANCE_ALPHA_FLOAT32_APPLE 0x8819 +#define GL_RGBA_FLOAT16_APPLE 0x881A +#define GL_RGB_FLOAT16_APPLE 0x881B +#define GL_ALPHA_FLOAT16_APPLE 0x881C +#define GL_INTENSITY_FLOAT16_APPLE 0x881D +#define GL_LUMINANCE_FLOAT16_APPLE 0x881E +#define GL_LUMINANCE_ALPHA_FLOAT16_APPLE 0x881F +#define GL_COLOR_FLOAT_APPLE 0x8A0F + +#define GLEW_APPLE_float_pixels GLEW_GET_VAR(__GLEW_APPLE_float_pixels) + +#endif /* GL_APPLE_float_pixels */ + +/* ---------------------- GL_APPLE_flush_buffer_range ---------------------- */ + +#ifndef GL_APPLE_flush_buffer_range +#define GL_APPLE_flush_buffer_range 1 + +#define GL_BUFFER_SERIALIZED_MODIFY_APPLE 0x8A12 +#define GL_BUFFER_FLUSHING_UNMAP_APPLE 0x8A13 + +typedef void (GLAPIENTRY * PFNGLBUFFERPARAMETERIAPPLEPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLFLUSHMAPPEDBUFFERRANGEAPPLEPROC) (GLenum target, GLintptr offset, GLsizeiptr size); + +#define glBufferParameteriAPPLE GLEW_GET_FUN(__glewBufferParameteriAPPLE) +#define glFlushMappedBufferRangeAPPLE GLEW_GET_FUN(__glewFlushMappedBufferRangeAPPLE) + +#define GLEW_APPLE_flush_buffer_range GLEW_GET_VAR(__GLEW_APPLE_flush_buffer_range) + +#endif /* GL_APPLE_flush_buffer_range */ + +/* -------------------- GL_APPLE_framebuffer_multisample ------------------- */ + +#ifndef GL_APPLE_framebuffer_multisample +#define GL_APPLE_framebuffer_multisample 1 + +#define GL_DRAW_FRAMEBUFFER_BINDING_APPLE 0x8CA6 +#define GL_READ_FRAMEBUFFER_APPLE 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_APPLE 0x8CA9 +#define GL_READ_FRAMEBUFFER_BINDING_APPLE 0x8CAA +#define GL_RENDERBUFFER_SAMPLES_APPLE 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_APPLE 0x8D56 +#define GL_MAX_SAMPLES_APPLE 0x8D57 + +typedef void (GLAPIENTRY * PFNGLRENDERBUFFERSTORAGEMULTISAMPLEAPPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLRESOLVEMULTISAMPLEFRAMEBUFFERAPPLEPROC) (void); + +#define glRenderbufferStorageMultisampleAPPLE GLEW_GET_FUN(__glewRenderbufferStorageMultisampleAPPLE) +#define glResolveMultisampleFramebufferAPPLE GLEW_GET_FUN(__glewResolveMultisampleFramebufferAPPLE) + +#define GLEW_APPLE_framebuffer_multisample GLEW_GET_VAR(__GLEW_APPLE_framebuffer_multisample) + +#endif /* GL_APPLE_framebuffer_multisample */ + +/* ----------------------- GL_APPLE_object_purgeable ----------------------- */ + +#ifndef GL_APPLE_object_purgeable +#define GL_APPLE_object_purgeable 1 + +#define GL_BUFFER_OBJECT_APPLE 0x85B3 +#define GL_RELEASED_APPLE 0x8A19 +#define GL_VOLATILE_APPLE 0x8A1A +#define GL_RETAINED_APPLE 0x8A1B +#define GL_UNDEFINED_APPLE 0x8A1C +#define GL_PURGEABLE_APPLE 0x8A1D + +typedef void (GLAPIENTRY * PFNGLGETOBJECTPARAMETERIVAPPLEPROC) (GLenum objectType, GLuint name, GLenum pname, GLint* params); +typedef GLenum (GLAPIENTRY * PFNGLOBJECTPURGEABLEAPPLEPROC) (GLenum objectType, GLuint name, GLenum option); +typedef GLenum (GLAPIENTRY * PFNGLOBJECTUNPURGEABLEAPPLEPROC) (GLenum objectType, GLuint name, GLenum option); + +#define glGetObjectParameterivAPPLE GLEW_GET_FUN(__glewGetObjectParameterivAPPLE) +#define glObjectPurgeableAPPLE GLEW_GET_FUN(__glewObjectPurgeableAPPLE) +#define glObjectUnpurgeableAPPLE GLEW_GET_FUN(__glewObjectUnpurgeableAPPLE) + +#define GLEW_APPLE_object_purgeable GLEW_GET_VAR(__GLEW_APPLE_object_purgeable) + +#endif /* GL_APPLE_object_purgeable */ + +/* ------------------------- GL_APPLE_pixel_buffer ------------------------- */ + +#ifndef GL_APPLE_pixel_buffer +#define GL_APPLE_pixel_buffer 1 + +#define GL_MIN_PBUFFER_VIEWPORT_DIMS_APPLE 0x8A10 + +#define GLEW_APPLE_pixel_buffer GLEW_GET_VAR(__GLEW_APPLE_pixel_buffer) + +#endif /* GL_APPLE_pixel_buffer */ + +/* ---------------------------- GL_APPLE_rgb_422 --------------------------- */ + +#ifndef GL_APPLE_rgb_422 +#define GL_APPLE_rgb_422 1 + +#define GL_UNSIGNED_SHORT_8_8_APPLE 0x85BA +#define GL_UNSIGNED_SHORT_8_8_REV_APPLE 0x85BB +#define GL_RGB_422_APPLE 0x8A1F +#define GL_RGB_RAW_422_APPLE 0x8A51 + +#define GLEW_APPLE_rgb_422 GLEW_GET_VAR(__GLEW_APPLE_rgb_422) + +#endif /* GL_APPLE_rgb_422 */ + +/* --------------------------- GL_APPLE_row_bytes -------------------------- */ + +#ifndef GL_APPLE_row_bytes +#define GL_APPLE_row_bytes 1 + +#define GL_PACK_ROW_BYTES_APPLE 0x8A15 +#define GL_UNPACK_ROW_BYTES_APPLE 0x8A16 + +#define GLEW_APPLE_row_bytes GLEW_GET_VAR(__GLEW_APPLE_row_bytes) + +#endif /* GL_APPLE_row_bytes */ + +/* ------------------------ GL_APPLE_specular_vector ----------------------- */ + +#ifndef GL_APPLE_specular_vector +#define GL_APPLE_specular_vector 1 + +#define GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE 0x85B0 + +#define GLEW_APPLE_specular_vector GLEW_GET_VAR(__GLEW_APPLE_specular_vector) + +#endif /* GL_APPLE_specular_vector */ + +/* ----------------------------- GL_APPLE_sync ----------------------------- */ + +#ifndef GL_APPLE_sync +#define GL_APPLE_sync 1 + +#define GL_SYNC_FLUSH_COMMANDS_BIT_APPLE 0x00000001 +#define GL_SYNC_OBJECT_APPLE 0x8A53 +#define GL_MAX_SERVER_WAIT_TIMEOUT_APPLE 0x9111 +#define GL_OBJECT_TYPE_APPLE 0x9112 +#define GL_SYNC_CONDITION_APPLE 0x9113 +#define GL_SYNC_STATUS_APPLE 0x9114 +#define GL_SYNC_FLAGS_APPLE 0x9115 +#define GL_SYNC_FENCE_APPLE 0x9116 +#define GL_SYNC_GPU_COMMANDS_COMPLETE_APPLE 0x9117 +#define GL_UNSIGNALED_APPLE 0x9118 +#define GL_SIGNALED_APPLE 0x9119 +#define GL_ALREADY_SIGNALED_APPLE 0x911A +#define GL_TIMEOUT_EXPIRED_APPLE 0x911B +#define GL_CONDITION_SATISFIED_APPLE 0x911C +#define GL_WAIT_FAILED_APPLE 0x911D +#define GL_TIMEOUT_IGNORED_APPLE 0xFFFFFFFFFFFFFFFFull + +typedef GLenum (GLAPIENTRY * PFNGLCLIENTWAITSYNCAPPLEPROC) (GLsync GLsync, GLbitfield flags, GLuint64 timeout); +typedef void (GLAPIENTRY * PFNGLDELETESYNCAPPLEPROC) (GLsync GLsync); +typedef GLsync (GLAPIENTRY * PFNGLFENCESYNCAPPLEPROC) (GLenum condition, GLbitfield flags); +typedef void (GLAPIENTRY * PFNGLGETINTEGER64VAPPLEPROC) (GLenum pname, GLint64* params); +typedef void (GLAPIENTRY * PFNGLGETSYNCIVAPPLEPROC) (GLsync GLsync, GLenum pname, GLsizei bufSize, GLsizei* length, GLint *values); +typedef GLboolean (GLAPIENTRY * PFNGLISSYNCAPPLEPROC) (GLsync GLsync); +typedef void (GLAPIENTRY * PFNGLWAITSYNCAPPLEPROC) (GLsync GLsync, GLbitfield flags, GLuint64 timeout); + +#define glClientWaitSyncAPPLE GLEW_GET_FUN(__glewClientWaitSyncAPPLE) +#define glDeleteSyncAPPLE GLEW_GET_FUN(__glewDeleteSyncAPPLE) +#define glFenceSyncAPPLE GLEW_GET_FUN(__glewFenceSyncAPPLE) +#define glGetInteger64vAPPLE GLEW_GET_FUN(__glewGetInteger64vAPPLE) +#define glGetSyncivAPPLE GLEW_GET_FUN(__glewGetSyncivAPPLE) +#define glIsSyncAPPLE GLEW_GET_FUN(__glewIsSyncAPPLE) +#define glWaitSyncAPPLE GLEW_GET_FUN(__glewWaitSyncAPPLE) + +#define GLEW_APPLE_sync GLEW_GET_VAR(__GLEW_APPLE_sync) + +#endif /* GL_APPLE_sync */ + +/* -------------------- GL_APPLE_texture_2D_limited_npot ------------------- */ + +#ifndef GL_APPLE_texture_2D_limited_npot +#define GL_APPLE_texture_2D_limited_npot 1 + +#define GLEW_APPLE_texture_2D_limited_npot GLEW_GET_VAR(__GLEW_APPLE_texture_2D_limited_npot) + +#endif /* GL_APPLE_texture_2D_limited_npot */ + +/* -------------------- GL_APPLE_texture_format_BGRA8888 ------------------- */ + +#ifndef GL_APPLE_texture_format_BGRA8888 +#define GL_APPLE_texture_format_BGRA8888 1 + +#define GL_BGRA_EXT 0x80E1 +#define GL_BGRA8_EXT 0x93A1 + +#define GLEW_APPLE_texture_format_BGRA8888 GLEW_GET_VAR(__GLEW_APPLE_texture_format_BGRA8888) + +#endif /* GL_APPLE_texture_format_BGRA8888 */ + +/* ----------------------- GL_APPLE_texture_max_level ---------------------- */ + +#ifndef GL_APPLE_texture_max_level +#define GL_APPLE_texture_max_level 1 + +#define GL_TEXTURE_MAX_LEVEL_APPLE 0x813D + +#define GLEW_APPLE_texture_max_level GLEW_GET_VAR(__GLEW_APPLE_texture_max_level) + +#endif /* GL_APPLE_texture_max_level */ + +/* --------------------- GL_APPLE_texture_packed_float --------------------- */ + +#ifndef GL_APPLE_texture_packed_float +#define GL_APPLE_texture_packed_float 1 + +#define GL_R11F_G11F_B10F_APPLE 0x8C3A +#define GL_UNSIGNED_INT_10F_11F_11F_REV_APPLE 0x8C3B +#define GL_RGB9_E5_APPLE 0x8C3D +#define GL_UNSIGNED_INT_5_9_9_9_REV_APPLE 0x8C3E + +#define GLEW_APPLE_texture_packed_float GLEW_GET_VAR(__GLEW_APPLE_texture_packed_float) + +#endif /* GL_APPLE_texture_packed_float */ + +/* ------------------------- GL_APPLE_texture_range ------------------------ */ + +#ifndef GL_APPLE_texture_range +#define GL_APPLE_texture_range 1 + +#define GL_TEXTURE_RANGE_LENGTH_APPLE 0x85B7 +#define GL_TEXTURE_RANGE_POINTER_APPLE 0x85B8 +#define GL_TEXTURE_STORAGE_HINT_APPLE 0x85BC +#define GL_STORAGE_PRIVATE_APPLE 0x85BD +#define GL_STORAGE_CACHED_APPLE 0x85BE +#define GL_STORAGE_SHARED_APPLE 0x85BF + +typedef void (GLAPIENTRY * PFNGLGETTEXPARAMETERPOINTERVAPPLEPROC) (GLenum target, GLenum pname, void **params); +typedef void (GLAPIENTRY * PFNGLTEXTURERANGEAPPLEPROC) (GLenum target, GLsizei length, void *pointer); + +#define glGetTexParameterPointervAPPLE GLEW_GET_FUN(__glewGetTexParameterPointervAPPLE) +#define glTextureRangeAPPLE GLEW_GET_FUN(__glewTextureRangeAPPLE) + +#define GLEW_APPLE_texture_range GLEW_GET_VAR(__GLEW_APPLE_texture_range) + +#endif /* GL_APPLE_texture_range */ + +/* ------------------------ GL_APPLE_transform_hint ------------------------ */ + +#ifndef GL_APPLE_transform_hint +#define GL_APPLE_transform_hint 1 + +#define GL_TRANSFORM_HINT_APPLE 0x85B1 + +#define GLEW_APPLE_transform_hint GLEW_GET_VAR(__GLEW_APPLE_transform_hint) + +#endif /* GL_APPLE_transform_hint */ + +/* ---------------------- GL_APPLE_vertex_array_object --------------------- */ + +#ifndef GL_APPLE_vertex_array_object +#define GL_APPLE_vertex_array_object 1 + +#define GL_VERTEX_ARRAY_BINDING_APPLE 0x85B5 + +typedef void (GLAPIENTRY * PFNGLBINDVERTEXARRAYAPPLEPROC) (GLuint array); +typedef void (GLAPIENTRY * PFNGLDELETEVERTEXARRAYSAPPLEPROC) (GLsizei n, const GLuint* arrays); +typedef void (GLAPIENTRY * PFNGLGENVERTEXARRAYSAPPLEPROC) (GLsizei n, const GLuint* arrays); +typedef GLboolean (GLAPIENTRY * PFNGLISVERTEXARRAYAPPLEPROC) (GLuint array); + +#define glBindVertexArrayAPPLE GLEW_GET_FUN(__glewBindVertexArrayAPPLE) +#define glDeleteVertexArraysAPPLE GLEW_GET_FUN(__glewDeleteVertexArraysAPPLE) +#define glGenVertexArraysAPPLE GLEW_GET_FUN(__glewGenVertexArraysAPPLE) +#define glIsVertexArrayAPPLE GLEW_GET_FUN(__glewIsVertexArrayAPPLE) + +#define GLEW_APPLE_vertex_array_object GLEW_GET_VAR(__GLEW_APPLE_vertex_array_object) + +#endif /* GL_APPLE_vertex_array_object */ + +/* ---------------------- GL_APPLE_vertex_array_range ---------------------- */ + +#ifndef GL_APPLE_vertex_array_range +#define GL_APPLE_vertex_array_range 1 + +#define GL_VERTEX_ARRAY_RANGE_APPLE 0x851D +#define GL_VERTEX_ARRAY_RANGE_LENGTH_APPLE 0x851E +#define GL_VERTEX_ARRAY_STORAGE_HINT_APPLE 0x851F +#define GL_MAX_VERTEX_ARRAY_RANGE_ELEMENT_APPLE 0x8520 +#define GL_VERTEX_ARRAY_RANGE_POINTER_APPLE 0x8521 +#define GL_STORAGE_CLIENT_APPLE 0x85B4 +#define GL_STORAGE_CACHED_APPLE 0x85BE +#define GL_STORAGE_SHARED_APPLE 0x85BF + +typedef void (GLAPIENTRY * PFNGLFLUSHVERTEXARRAYRANGEAPPLEPROC) (GLsizei length, void *pointer); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYPARAMETERIAPPLEPROC) (GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYRANGEAPPLEPROC) (GLsizei length, void *pointer); + +#define glFlushVertexArrayRangeAPPLE GLEW_GET_FUN(__glewFlushVertexArrayRangeAPPLE) +#define glVertexArrayParameteriAPPLE GLEW_GET_FUN(__glewVertexArrayParameteriAPPLE) +#define glVertexArrayRangeAPPLE GLEW_GET_FUN(__glewVertexArrayRangeAPPLE) + +#define GLEW_APPLE_vertex_array_range GLEW_GET_VAR(__GLEW_APPLE_vertex_array_range) + +#endif /* GL_APPLE_vertex_array_range */ + +/* ------------------- GL_APPLE_vertex_program_evaluators ------------------ */ + +#ifndef GL_APPLE_vertex_program_evaluators +#define GL_APPLE_vertex_program_evaluators 1 + +#define GL_VERTEX_ATTRIB_MAP1_APPLE 0x8A00 +#define GL_VERTEX_ATTRIB_MAP2_APPLE 0x8A01 +#define GL_VERTEX_ATTRIB_MAP1_SIZE_APPLE 0x8A02 +#define GL_VERTEX_ATTRIB_MAP1_COEFF_APPLE 0x8A03 +#define GL_VERTEX_ATTRIB_MAP1_ORDER_APPLE 0x8A04 +#define GL_VERTEX_ATTRIB_MAP1_DOMAIN_APPLE 0x8A05 +#define GL_VERTEX_ATTRIB_MAP2_SIZE_APPLE 0x8A06 +#define GL_VERTEX_ATTRIB_MAP2_COEFF_APPLE 0x8A07 +#define GL_VERTEX_ATTRIB_MAP2_ORDER_APPLE 0x8A08 +#define GL_VERTEX_ATTRIB_MAP2_DOMAIN_APPLE 0x8A09 + +typedef void (GLAPIENTRY * PFNGLDISABLEVERTEXATTRIBAPPLEPROC) (GLuint index, GLenum pname); +typedef void (GLAPIENTRY * PFNGLENABLEVERTEXATTRIBAPPLEPROC) (GLuint index, GLenum pname); +typedef GLboolean (GLAPIENTRY * PFNGLISVERTEXATTRIBENABLEDAPPLEPROC) (GLuint index, GLenum pname); +typedef void (GLAPIENTRY * PFNGLMAPVERTEXATTRIB1DAPPLEPROC) (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble* points); +typedef void (GLAPIENTRY * PFNGLMAPVERTEXATTRIB1FAPPLEPROC) (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat* points); +typedef void (GLAPIENTRY * PFNGLMAPVERTEXATTRIB2DAPPLEPROC) (GLuint index, GLuint size, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble* points); +typedef void (GLAPIENTRY * PFNGLMAPVERTEXATTRIB2FAPPLEPROC) (GLuint index, GLuint size, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat* points); + +#define glDisableVertexAttribAPPLE GLEW_GET_FUN(__glewDisableVertexAttribAPPLE) +#define glEnableVertexAttribAPPLE GLEW_GET_FUN(__glewEnableVertexAttribAPPLE) +#define glIsVertexAttribEnabledAPPLE GLEW_GET_FUN(__glewIsVertexAttribEnabledAPPLE) +#define glMapVertexAttrib1dAPPLE GLEW_GET_FUN(__glewMapVertexAttrib1dAPPLE) +#define glMapVertexAttrib1fAPPLE GLEW_GET_FUN(__glewMapVertexAttrib1fAPPLE) +#define glMapVertexAttrib2dAPPLE GLEW_GET_FUN(__glewMapVertexAttrib2dAPPLE) +#define glMapVertexAttrib2fAPPLE GLEW_GET_FUN(__glewMapVertexAttrib2fAPPLE) + +#define GLEW_APPLE_vertex_program_evaluators GLEW_GET_VAR(__GLEW_APPLE_vertex_program_evaluators) + +#endif /* GL_APPLE_vertex_program_evaluators */ + +/* --------------------------- GL_APPLE_ycbcr_422 -------------------------- */ + +#ifndef GL_APPLE_ycbcr_422 +#define GL_APPLE_ycbcr_422 1 + +#define GL_YCBCR_422_APPLE 0x85B9 + +#define GLEW_APPLE_ycbcr_422 GLEW_GET_VAR(__GLEW_APPLE_ycbcr_422) + +#endif /* GL_APPLE_ycbcr_422 */ + +/* ------------------------ GL_ARB_ES2_compatibility ----------------------- */ + +#ifndef GL_ARB_ES2_compatibility +#define GL_ARB_ES2_compatibility 1 + +#define GL_FIXED 0x140C +#define GL_IMPLEMENTATION_COLOR_READ_TYPE 0x8B9A +#define GL_IMPLEMENTATION_COLOR_READ_FORMAT 0x8B9B +#define GL_RGB565 0x8D62 +#define GL_LOW_FLOAT 0x8DF0 +#define GL_MEDIUM_FLOAT 0x8DF1 +#define GL_HIGH_FLOAT 0x8DF2 +#define GL_LOW_INT 0x8DF3 +#define GL_MEDIUM_INT 0x8DF4 +#define GL_HIGH_INT 0x8DF5 +#define GL_SHADER_BINARY_FORMATS 0x8DF8 +#define GL_NUM_SHADER_BINARY_FORMATS 0x8DF9 +#define GL_SHADER_COMPILER 0x8DFA +#define GL_MAX_VERTEX_UNIFORM_VECTORS 0x8DFB +#define GL_MAX_VARYING_VECTORS 0x8DFC +#define GL_MAX_FRAGMENT_UNIFORM_VECTORS 0x8DFD + +typedef int GLfixed; + +typedef void (GLAPIENTRY * PFNGLCLEARDEPTHFPROC) (GLclampf d); +typedef void (GLAPIENTRY * PFNGLDEPTHRANGEFPROC) (GLclampf n, GLclampf f); +typedef void (GLAPIENTRY * PFNGLGETSHADERPRECISIONFORMATPROC) (GLenum shadertype, GLenum precisiontype, GLint* range, GLint *precision); +typedef void (GLAPIENTRY * PFNGLRELEASESHADERCOMPILERPROC) (void); +typedef void (GLAPIENTRY * PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint* shaders, GLenum binaryformat, const void*binary, GLsizei length); + +#define glClearDepthf GLEW_GET_FUN(__glewClearDepthf) +#define glDepthRangef GLEW_GET_FUN(__glewDepthRangef) +#define glGetShaderPrecisionFormat GLEW_GET_FUN(__glewGetShaderPrecisionFormat) +#define glReleaseShaderCompiler GLEW_GET_FUN(__glewReleaseShaderCompiler) +#define glShaderBinary GLEW_GET_FUN(__glewShaderBinary) + +#define GLEW_ARB_ES2_compatibility GLEW_GET_VAR(__GLEW_ARB_ES2_compatibility) + +#endif /* GL_ARB_ES2_compatibility */ + +/* ----------------------- GL_ARB_ES3_1_compatibility ---------------------- */ + +#ifndef GL_ARB_ES3_1_compatibility +#define GL_ARB_ES3_1_compatibility 1 + +typedef void (GLAPIENTRY * PFNGLMEMORYBARRIERBYREGIONPROC) (GLbitfield barriers); + +#define glMemoryBarrierByRegion GLEW_GET_FUN(__glewMemoryBarrierByRegion) + +#define GLEW_ARB_ES3_1_compatibility GLEW_GET_VAR(__GLEW_ARB_ES3_1_compatibility) + +#endif /* GL_ARB_ES3_1_compatibility */ + +/* ----------------------- GL_ARB_ES3_2_compatibility ---------------------- */ + +#ifndef GL_ARB_ES3_2_compatibility +#define GL_ARB_ES3_2_compatibility 1 + +#define GL_PRIMITIVE_BOUNDING_BOX_ARB 0x92BE +#define GL_MULTISAMPLE_LINE_WIDTH_RANGE_ARB 0x9381 +#define GL_MULTISAMPLE_LINE_WIDTH_GRANULARITY_ARB 0x9382 + +typedef void (GLAPIENTRY * PFNGLPRIMITIVEBOUNDINGBOXARBPROC) (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); + +#define glPrimitiveBoundingBoxARB GLEW_GET_FUN(__glewPrimitiveBoundingBoxARB) + +#define GLEW_ARB_ES3_2_compatibility GLEW_GET_VAR(__GLEW_ARB_ES3_2_compatibility) + +#endif /* GL_ARB_ES3_2_compatibility */ + +/* ------------------------ GL_ARB_ES3_compatibility ----------------------- */ + +#ifndef GL_ARB_ES3_compatibility +#define GL_ARB_ES3_compatibility 1 + +#define GL_TEXTURE_IMMUTABLE_LEVELS 0x82DF +#define GL_PRIMITIVE_RESTART_FIXED_INDEX 0x8D69 +#define GL_ANY_SAMPLES_PASSED_CONSERVATIVE 0x8D6A +#define GL_MAX_ELEMENT_INDEX 0x8D6B +#define GL_COMPRESSED_R11_EAC 0x9270 +#define GL_COMPRESSED_SIGNED_R11_EAC 0x9271 +#define GL_COMPRESSED_RG11_EAC 0x9272 +#define GL_COMPRESSED_SIGNED_RG11_EAC 0x9273 +#define GL_COMPRESSED_RGB8_ETC2 0x9274 +#define GL_COMPRESSED_SRGB8_ETC2 0x9275 +#define GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 0x9276 +#define GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 0x9277 +#define GL_COMPRESSED_RGBA8_ETC2_EAC 0x9278 +#define GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC 0x9279 + +#define GLEW_ARB_ES3_compatibility GLEW_GET_VAR(__GLEW_ARB_ES3_compatibility) + +#endif /* GL_ARB_ES3_compatibility */ + +/* ------------------------ GL_ARB_arrays_of_arrays ------------------------ */ + +#ifndef GL_ARB_arrays_of_arrays +#define GL_ARB_arrays_of_arrays 1 + +#define GLEW_ARB_arrays_of_arrays GLEW_GET_VAR(__GLEW_ARB_arrays_of_arrays) + +#endif /* GL_ARB_arrays_of_arrays */ + +/* -------------------------- GL_ARB_base_instance ------------------------- */ + +#ifndef GL_ARB_base_instance +#define GL_ARB_base_instance 1 + +typedef void (GLAPIENTRY * PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount, GLuint baseinstance); +typedef void (GLAPIENTRY * PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount, GLuint baseinstance); +typedef void (GLAPIENTRY * PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount, GLint basevertex, GLuint baseinstance); + +#define glDrawArraysInstancedBaseInstance GLEW_GET_FUN(__glewDrawArraysInstancedBaseInstance) +#define glDrawElementsInstancedBaseInstance GLEW_GET_FUN(__glewDrawElementsInstancedBaseInstance) +#define glDrawElementsInstancedBaseVertexBaseInstance GLEW_GET_FUN(__glewDrawElementsInstancedBaseVertexBaseInstance) + +#define GLEW_ARB_base_instance GLEW_GET_VAR(__GLEW_ARB_base_instance) + +#endif /* GL_ARB_base_instance */ + +/* ------------------------ GL_ARB_bindless_texture ------------------------ */ + +#ifndef GL_ARB_bindless_texture +#define GL_ARB_bindless_texture 1 + +#define GL_UNSIGNED_INT64_ARB 0x140F + +typedef GLuint64 (GLAPIENTRY * PFNGLGETIMAGEHANDLEARBPROC) (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +typedef GLuint64 (GLAPIENTRY * PFNGLGETTEXTUREHANDLEARBPROC) (GLuint texture); +typedef GLuint64 (GLAPIENTRY * PFNGLGETTEXTURESAMPLERHANDLEARBPROC) (GLuint texture, GLuint sampler); +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBLUI64VARBPROC) (GLuint index, GLenum pname, GLuint64EXT* params); +typedef GLboolean (GLAPIENTRY * PFNGLISIMAGEHANDLERESIDENTARBPROC) (GLuint64 handle); +typedef GLboolean (GLAPIENTRY * PFNGLISTEXTUREHANDLERESIDENTARBPROC) (GLuint64 handle); +typedef void (GLAPIENTRY * PFNGLMAKEIMAGEHANDLENONRESIDENTARBPROC) (GLuint64 handle); +typedef void (GLAPIENTRY * PFNGLMAKEIMAGEHANDLERESIDENTARBPROC) (GLuint64 handle, GLenum access); +typedef void (GLAPIENTRY * PFNGLMAKETEXTUREHANDLENONRESIDENTARBPROC) (GLuint64 handle); +typedef void (GLAPIENTRY * PFNGLMAKETEXTUREHANDLERESIDENTARBPROC) (GLuint64 handle); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMHANDLEUI64ARBPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMHANDLEUI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64* values); +typedef void (GLAPIENTRY * PFNGLUNIFORMHANDLEUI64ARBPROC) (GLint location, GLuint64 value); +typedef void (GLAPIENTRY * PFNGLUNIFORMHANDLEUI64VARBPROC) (GLint location, GLsizei count, const GLuint64* value); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL1UI64ARBPROC) (GLuint index, GLuint64EXT x); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL1UI64VARBPROC) (GLuint index, const GLuint64EXT* v); + +#define glGetImageHandleARB GLEW_GET_FUN(__glewGetImageHandleARB) +#define glGetTextureHandleARB GLEW_GET_FUN(__glewGetTextureHandleARB) +#define glGetTextureSamplerHandleARB GLEW_GET_FUN(__glewGetTextureSamplerHandleARB) +#define glGetVertexAttribLui64vARB GLEW_GET_FUN(__glewGetVertexAttribLui64vARB) +#define glIsImageHandleResidentARB GLEW_GET_FUN(__glewIsImageHandleResidentARB) +#define glIsTextureHandleResidentARB GLEW_GET_FUN(__glewIsTextureHandleResidentARB) +#define glMakeImageHandleNonResidentARB GLEW_GET_FUN(__glewMakeImageHandleNonResidentARB) +#define glMakeImageHandleResidentARB GLEW_GET_FUN(__glewMakeImageHandleResidentARB) +#define glMakeTextureHandleNonResidentARB GLEW_GET_FUN(__glewMakeTextureHandleNonResidentARB) +#define glMakeTextureHandleResidentARB GLEW_GET_FUN(__glewMakeTextureHandleResidentARB) +#define glProgramUniformHandleui64ARB GLEW_GET_FUN(__glewProgramUniformHandleui64ARB) +#define glProgramUniformHandleui64vARB GLEW_GET_FUN(__glewProgramUniformHandleui64vARB) +#define glUniformHandleui64ARB GLEW_GET_FUN(__glewUniformHandleui64ARB) +#define glUniformHandleui64vARB GLEW_GET_FUN(__glewUniformHandleui64vARB) +#define glVertexAttribL1ui64ARB GLEW_GET_FUN(__glewVertexAttribL1ui64ARB) +#define glVertexAttribL1ui64vARB GLEW_GET_FUN(__glewVertexAttribL1ui64vARB) + +#define GLEW_ARB_bindless_texture GLEW_GET_VAR(__GLEW_ARB_bindless_texture) + +#endif /* GL_ARB_bindless_texture */ + +/* ----------------------- GL_ARB_blend_func_extended ---------------------- */ + +#ifndef GL_ARB_blend_func_extended +#define GL_ARB_blend_func_extended 1 + +#define GL_SRC1_COLOR 0x88F9 +#define GL_ONE_MINUS_SRC1_COLOR 0x88FA +#define GL_ONE_MINUS_SRC1_ALPHA 0x88FB +#define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS 0x88FC + +typedef void (GLAPIENTRY * PFNGLBINDFRAGDATALOCATIONINDEXEDPROC) (GLuint program, GLuint colorNumber, GLuint index, const GLchar * name); +typedef GLint (GLAPIENTRY * PFNGLGETFRAGDATAINDEXPROC) (GLuint program, const GLchar * name); + +#define glBindFragDataLocationIndexed GLEW_GET_FUN(__glewBindFragDataLocationIndexed) +#define glGetFragDataIndex GLEW_GET_FUN(__glewGetFragDataIndex) + +#define GLEW_ARB_blend_func_extended GLEW_GET_VAR(__GLEW_ARB_blend_func_extended) + +#endif /* GL_ARB_blend_func_extended */ + +/* ------------------------- GL_ARB_buffer_storage ------------------------- */ + +#ifndef GL_ARB_buffer_storage +#define GL_ARB_buffer_storage 1 + +#define GL_MAP_READ_BIT 0x0001 +#define GL_MAP_WRITE_BIT 0x0002 +#define GL_MAP_PERSISTENT_BIT 0x00000040 +#define GL_MAP_COHERENT_BIT 0x00000080 +#define GL_DYNAMIC_STORAGE_BIT 0x0100 +#define GL_CLIENT_STORAGE_BIT 0x0200 +#define GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT 0x00004000 +#define GL_BUFFER_IMMUTABLE_STORAGE 0x821F +#define GL_BUFFER_STORAGE_FLAGS 0x8220 + +typedef void (GLAPIENTRY * PFNGLBUFFERSTORAGEPROC) (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); + +#define glBufferStorage GLEW_GET_FUN(__glewBufferStorage) + +#define GLEW_ARB_buffer_storage GLEW_GET_VAR(__GLEW_ARB_buffer_storage) + +#endif /* GL_ARB_buffer_storage */ + +/* ---------------------------- GL_ARB_cl_event ---------------------------- */ + +#ifndef GL_ARB_cl_event +#define GL_ARB_cl_event 1 + +#define GL_SYNC_CL_EVENT_ARB 0x8240 +#define GL_SYNC_CL_EVENT_COMPLETE_ARB 0x8241 + +typedef struct _cl_context *cl_context; +typedef struct _cl_event *cl_event; + +typedef GLsync (GLAPIENTRY * PFNGLCREATESYNCFROMCLEVENTARBPROC) (cl_context context, cl_event event, GLbitfield flags); + +#define glCreateSyncFromCLeventARB GLEW_GET_FUN(__glewCreateSyncFromCLeventARB) + +#define GLEW_ARB_cl_event GLEW_GET_VAR(__GLEW_ARB_cl_event) + +#endif /* GL_ARB_cl_event */ + +/* ----------------------- GL_ARB_clear_buffer_object ---------------------- */ + +#ifndef GL_ARB_clear_buffer_object +#define GL_ARB_clear_buffer_object 1 + +typedef void (GLAPIENTRY * PFNGLCLEARBUFFERDATAPROC) (GLenum target, GLenum internalformat, GLenum format, GLenum type, const void *data); +typedef void (GLAPIENTRY * PFNGLCLEARBUFFERSUBDATAPROC) (GLenum target, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +typedef void (GLAPIENTRY * PFNGLCLEARNAMEDBUFFERDATAEXTPROC) (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +typedef void (GLAPIENTRY * PFNGLCLEARNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); + +#define glClearBufferData GLEW_GET_FUN(__glewClearBufferData) +#define glClearBufferSubData GLEW_GET_FUN(__glewClearBufferSubData) +#define glClearNamedBufferDataEXT GLEW_GET_FUN(__glewClearNamedBufferDataEXT) +#define glClearNamedBufferSubDataEXT GLEW_GET_FUN(__glewClearNamedBufferSubDataEXT) + +#define GLEW_ARB_clear_buffer_object GLEW_GET_VAR(__GLEW_ARB_clear_buffer_object) + +#endif /* GL_ARB_clear_buffer_object */ + +/* -------------------------- GL_ARB_clear_texture ------------------------- */ + +#ifndef GL_ARB_clear_texture +#define GL_ARB_clear_texture 1 + +#define GL_CLEAR_TEXTURE 0x9365 + +typedef void (GLAPIENTRY * PFNGLCLEARTEXIMAGEPROC) (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +typedef void (GLAPIENTRY * PFNGLCLEARTEXSUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); + +#define glClearTexImage GLEW_GET_FUN(__glewClearTexImage) +#define glClearTexSubImage GLEW_GET_FUN(__glewClearTexSubImage) + +#define GLEW_ARB_clear_texture GLEW_GET_VAR(__GLEW_ARB_clear_texture) + +#endif /* GL_ARB_clear_texture */ + +/* -------------------------- GL_ARB_clip_control -------------------------- */ + +#ifndef GL_ARB_clip_control +#define GL_ARB_clip_control 1 + +#define GL_LOWER_LEFT 0x8CA1 +#define GL_UPPER_LEFT 0x8CA2 +#define GL_CLIP_ORIGIN 0x935C +#define GL_CLIP_DEPTH_MODE 0x935D +#define GL_NEGATIVE_ONE_TO_ONE 0x935E +#define GL_ZERO_TO_ONE 0x935F + +typedef void (GLAPIENTRY * PFNGLCLIPCONTROLPROC) (GLenum origin, GLenum depth); + +#define glClipControl GLEW_GET_FUN(__glewClipControl) + +#define GLEW_ARB_clip_control GLEW_GET_VAR(__GLEW_ARB_clip_control) + +#endif /* GL_ARB_clip_control */ + +/* ----------------------- GL_ARB_color_buffer_float ----------------------- */ + +#ifndef GL_ARB_color_buffer_float +#define GL_ARB_color_buffer_float 1 + +#define GL_RGBA_FLOAT_MODE_ARB 0x8820 +#define GL_CLAMP_VERTEX_COLOR_ARB 0x891A +#define GL_CLAMP_FRAGMENT_COLOR_ARB 0x891B +#define GL_CLAMP_READ_COLOR_ARB 0x891C +#define GL_FIXED_ONLY_ARB 0x891D + +typedef void (GLAPIENTRY * PFNGLCLAMPCOLORARBPROC) (GLenum target, GLenum clamp); + +#define glClampColorARB GLEW_GET_FUN(__glewClampColorARB) + +#define GLEW_ARB_color_buffer_float GLEW_GET_VAR(__GLEW_ARB_color_buffer_float) + +#endif /* GL_ARB_color_buffer_float */ + +/* -------------------------- GL_ARB_compatibility ------------------------- */ + +#ifndef GL_ARB_compatibility +#define GL_ARB_compatibility 1 + +#define GLEW_ARB_compatibility GLEW_GET_VAR(__GLEW_ARB_compatibility) + +#endif /* GL_ARB_compatibility */ + +/* ---------------- GL_ARB_compressed_texture_pixel_storage ---------------- */ + +#ifndef GL_ARB_compressed_texture_pixel_storage +#define GL_ARB_compressed_texture_pixel_storage 1 + +#define GL_UNPACK_COMPRESSED_BLOCK_WIDTH 0x9127 +#define GL_UNPACK_COMPRESSED_BLOCK_HEIGHT 0x9128 +#define GL_UNPACK_COMPRESSED_BLOCK_DEPTH 0x9129 +#define GL_UNPACK_COMPRESSED_BLOCK_SIZE 0x912A +#define GL_PACK_COMPRESSED_BLOCK_WIDTH 0x912B +#define GL_PACK_COMPRESSED_BLOCK_HEIGHT 0x912C +#define GL_PACK_COMPRESSED_BLOCK_DEPTH 0x912D +#define GL_PACK_COMPRESSED_BLOCK_SIZE 0x912E + +#define GLEW_ARB_compressed_texture_pixel_storage GLEW_GET_VAR(__GLEW_ARB_compressed_texture_pixel_storage) + +#endif /* GL_ARB_compressed_texture_pixel_storage */ + +/* ------------------------- GL_ARB_compute_shader ------------------------- */ + +#ifndef GL_ARB_compute_shader +#define GL_ARB_compute_shader 1 + +#define GL_COMPUTE_SHADER_BIT 0x00000020 +#define GL_MAX_COMPUTE_SHARED_MEMORY_SIZE 0x8262 +#define GL_MAX_COMPUTE_UNIFORM_COMPONENTS 0x8263 +#define GL_MAX_COMPUTE_ATOMIC_COUNTER_BUFFERS 0x8264 +#define GL_MAX_COMPUTE_ATOMIC_COUNTERS 0x8265 +#define GL_MAX_COMBINED_COMPUTE_UNIFORM_COMPONENTS 0x8266 +#define GL_COMPUTE_WORK_GROUP_SIZE 0x8267 +#define GL_MAX_COMPUTE_WORK_GROUP_INVOCATIONS 0x90EB +#define GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER 0x90EC +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER 0x90ED +#define GL_DISPATCH_INDIRECT_BUFFER 0x90EE +#define GL_DISPATCH_INDIRECT_BUFFER_BINDING 0x90EF +#define GL_COMPUTE_SHADER 0x91B9 +#define GL_MAX_COMPUTE_UNIFORM_BLOCKS 0x91BB +#define GL_MAX_COMPUTE_TEXTURE_IMAGE_UNITS 0x91BC +#define GL_MAX_COMPUTE_IMAGE_UNIFORMS 0x91BD +#define GL_MAX_COMPUTE_WORK_GROUP_COUNT 0x91BE +#define GL_MAX_COMPUTE_WORK_GROUP_SIZE 0x91BF + +typedef void (GLAPIENTRY * PFNGLDISPATCHCOMPUTEPROC) (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z); +typedef void (GLAPIENTRY * PFNGLDISPATCHCOMPUTEINDIRECTPROC) (GLintptr indirect); + +#define glDispatchCompute GLEW_GET_FUN(__glewDispatchCompute) +#define glDispatchComputeIndirect GLEW_GET_FUN(__glewDispatchComputeIndirect) + +#define GLEW_ARB_compute_shader GLEW_GET_VAR(__GLEW_ARB_compute_shader) + +#endif /* GL_ARB_compute_shader */ + +/* ------------------- GL_ARB_compute_variable_group_size ------------------ */ + +#ifndef GL_ARB_compute_variable_group_size +#define GL_ARB_compute_variable_group_size 1 + +#define GL_MAX_COMPUTE_FIXED_GROUP_INVOCATIONS_ARB 0x90EB +#define GL_MAX_COMPUTE_FIXED_GROUP_SIZE_ARB 0x91BF +#define GL_MAX_COMPUTE_VARIABLE_GROUP_INVOCATIONS_ARB 0x9344 +#define GL_MAX_COMPUTE_VARIABLE_GROUP_SIZE_ARB 0x9345 + +typedef void (GLAPIENTRY * PFNGLDISPATCHCOMPUTEGROUPSIZEARBPROC) (GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z, GLuint group_size_x, GLuint group_size_y, GLuint group_size_z); + +#define glDispatchComputeGroupSizeARB GLEW_GET_FUN(__glewDispatchComputeGroupSizeARB) + +#define GLEW_ARB_compute_variable_group_size GLEW_GET_VAR(__GLEW_ARB_compute_variable_group_size) + +#endif /* GL_ARB_compute_variable_group_size */ + +/* ------------------- GL_ARB_conditional_render_inverted ------------------ */ + +#ifndef GL_ARB_conditional_render_inverted +#define GL_ARB_conditional_render_inverted 1 + +#define GL_QUERY_WAIT_INVERTED 0x8E17 +#define GL_QUERY_NO_WAIT_INVERTED 0x8E18 +#define GL_QUERY_BY_REGION_WAIT_INVERTED 0x8E19 +#define GL_QUERY_BY_REGION_NO_WAIT_INVERTED 0x8E1A + +#define GLEW_ARB_conditional_render_inverted GLEW_GET_VAR(__GLEW_ARB_conditional_render_inverted) + +#endif /* GL_ARB_conditional_render_inverted */ + +/* ----------------------- GL_ARB_conservative_depth ----------------------- */ + +#ifndef GL_ARB_conservative_depth +#define GL_ARB_conservative_depth 1 + +#define GLEW_ARB_conservative_depth GLEW_GET_VAR(__GLEW_ARB_conservative_depth) + +#endif /* GL_ARB_conservative_depth */ + +/* --------------------------- GL_ARB_copy_buffer -------------------------- */ + +#ifndef GL_ARB_copy_buffer +#define GL_ARB_copy_buffer 1 + +#define GL_COPY_READ_BUFFER 0x8F36 +#define GL_COPY_WRITE_BUFFER 0x8F37 + +typedef void (GLAPIENTRY * PFNGLCOPYBUFFERSUBDATAPROC) (GLenum readtarget, GLenum writetarget, GLintptr readoffset, GLintptr writeoffset, GLsizeiptr size); + +#define glCopyBufferSubData GLEW_GET_FUN(__glewCopyBufferSubData) + +#define GLEW_ARB_copy_buffer GLEW_GET_VAR(__GLEW_ARB_copy_buffer) + +#endif /* GL_ARB_copy_buffer */ + +/* --------------------------- GL_ARB_copy_image --------------------------- */ + +#ifndef GL_ARB_copy_image +#define GL_ARB_copy_image 1 + +typedef void (GLAPIENTRY * PFNGLCOPYIMAGESUBDATAPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); + +#define glCopyImageSubData GLEW_GET_FUN(__glewCopyImageSubData) + +#define GLEW_ARB_copy_image GLEW_GET_VAR(__GLEW_ARB_copy_image) + +#endif /* GL_ARB_copy_image */ + +/* -------------------------- GL_ARB_cull_distance ------------------------- */ + +#ifndef GL_ARB_cull_distance +#define GL_ARB_cull_distance 1 + +#define GL_MAX_CULL_DISTANCES 0x82F9 +#define GL_MAX_COMBINED_CLIP_AND_CULL_DISTANCES 0x82FA + +#define GLEW_ARB_cull_distance GLEW_GET_VAR(__GLEW_ARB_cull_distance) + +#endif /* GL_ARB_cull_distance */ + +/* -------------------------- GL_ARB_debug_output -------------------------- */ + +#ifndef GL_ARB_debug_output +#define GL_ARB_debug_output 1 + +#define GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB 0x8242 +#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_ARB 0x8243 +#define GL_DEBUG_CALLBACK_FUNCTION_ARB 0x8244 +#define GL_DEBUG_CALLBACK_USER_PARAM_ARB 0x8245 +#define GL_DEBUG_SOURCE_API_ARB 0x8246 +#define GL_DEBUG_SOURCE_WINDOW_SYSTEM_ARB 0x8247 +#define GL_DEBUG_SOURCE_SHADER_COMPILER_ARB 0x8248 +#define GL_DEBUG_SOURCE_THIRD_PARTY_ARB 0x8249 +#define GL_DEBUG_SOURCE_APPLICATION_ARB 0x824A +#define GL_DEBUG_SOURCE_OTHER_ARB 0x824B +#define GL_DEBUG_TYPE_ERROR_ARB 0x824C +#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_ARB 0x824D +#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_ARB 0x824E +#define GL_DEBUG_TYPE_PORTABILITY_ARB 0x824F +#define GL_DEBUG_TYPE_PERFORMANCE_ARB 0x8250 +#define GL_DEBUG_TYPE_OTHER_ARB 0x8251 +#define GL_MAX_DEBUG_MESSAGE_LENGTH_ARB 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES_ARB 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES_ARB 0x9145 +#define GL_DEBUG_SEVERITY_HIGH_ARB 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM_ARB 0x9147 +#define GL_DEBUG_SEVERITY_LOW_ARB 0x9148 + +typedef void (GLAPIENTRY *GLDEBUGPROCARB)(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar* message, const void* userParam); + +typedef void (GLAPIENTRY * PFNGLDEBUGMESSAGECALLBACKARBPROC) (GLDEBUGPROCARB callback, const void *userParam); +typedef void (GLAPIENTRY * PFNGLDEBUGMESSAGECONTROLARBPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint* ids, GLboolean enabled); +typedef void (GLAPIENTRY * PFNGLDEBUGMESSAGEINSERTARBPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar* buf); +typedef GLuint (GLAPIENTRY * PFNGLGETDEBUGMESSAGELOGARBPROC) (GLuint count, GLsizei bufSize, GLenum* sources, GLenum* types, GLuint* ids, GLenum* severities, GLsizei* lengths, GLchar* messageLog); + +#define glDebugMessageCallbackARB GLEW_GET_FUN(__glewDebugMessageCallbackARB) +#define glDebugMessageControlARB GLEW_GET_FUN(__glewDebugMessageControlARB) +#define glDebugMessageInsertARB GLEW_GET_FUN(__glewDebugMessageInsertARB) +#define glGetDebugMessageLogARB GLEW_GET_FUN(__glewGetDebugMessageLogARB) + +#define GLEW_ARB_debug_output GLEW_GET_VAR(__GLEW_ARB_debug_output) + +#endif /* GL_ARB_debug_output */ + +/* ----------------------- GL_ARB_depth_buffer_float ----------------------- */ + +#ifndef GL_ARB_depth_buffer_float +#define GL_ARB_depth_buffer_float 1 + +#define GL_DEPTH_COMPONENT32F 0x8CAC +#define GL_DEPTH32F_STENCIL8 0x8CAD +#define GL_FLOAT_32_UNSIGNED_INT_24_8_REV 0x8DAD + +#define GLEW_ARB_depth_buffer_float GLEW_GET_VAR(__GLEW_ARB_depth_buffer_float) + +#endif /* GL_ARB_depth_buffer_float */ + +/* --------------------------- GL_ARB_depth_clamp -------------------------- */ + +#ifndef GL_ARB_depth_clamp +#define GL_ARB_depth_clamp 1 + +#define GL_DEPTH_CLAMP 0x864F + +#define GLEW_ARB_depth_clamp GLEW_GET_VAR(__GLEW_ARB_depth_clamp) + +#endif /* GL_ARB_depth_clamp */ + +/* -------------------------- GL_ARB_depth_texture ------------------------- */ + +#ifndef GL_ARB_depth_texture +#define GL_ARB_depth_texture 1 + +#define GL_DEPTH_COMPONENT16_ARB 0x81A5 +#define GL_DEPTH_COMPONENT24_ARB 0x81A6 +#define GL_DEPTH_COMPONENT32_ARB 0x81A7 +#define GL_TEXTURE_DEPTH_SIZE_ARB 0x884A +#define GL_DEPTH_TEXTURE_MODE_ARB 0x884B + +#define GLEW_ARB_depth_texture GLEW_GET_VAR(__GLEW_ARB_depth_texture) + +#endif /* GL_ARB_depth_texture */ + +/* ----------------------- GL_ARB_derivative_control ----------------------- */ + +#ifndef GL_ARB_derivative_control +#define GL_ARB_derivative_control 1 + +#define GLEW_ARB_derivative_control GLEW_GET_VAR(__GLEW_ARB_derivative_control) + +#endif /* GL_ARB_derivative_control */ + +/* ----------------------- GL_ARB_direct_state_access ---------------------- */ + +#ifndef GL_ARB_direct_state_access +#define GL_ARB_direct_state_access 1 + +#define GL_TEXTURE_TARGET 0x1006 +#define GL_QUERY_TARGET 0x82EA + +typedef void (GLAPIENTRY * PFNGLBINDTEXTUREUNITPROC) (GLuint unit, GLuint texture); +typedef void (GLAPIENTRY * PFNGLBLITNAMEDFRAMEBUFFERPROC) (GLuint readFramebuffer, GLuint drawFramebuffer, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef GLenum (GLAPIENTRY * PFNGLCHECKNAMEDFRAMEBUFFERSTATUSPROC) (GLuint framebuffer, GLenum target); +typedef void (GLAPIENTRY * PFNGLCLEARNAMEDBUFFERDATAPROC) (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +typedef void (GLAPIENTRY * PFNGLCLEARNAMEDBUFFERSUBDATAPROC) (GLuint buffer, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +typedef void (GLAPIENTRY * PFNGLCLEARNAMEDFRAMEBUFFERFIPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +typedef void (GLAPIENTRY * PFNGLCLEARNAMEDFRAMEBUFFERFVPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, GLfloat* value); +typedef void (GLAPIENTRY * PFNGLCLEARNAMEDFRAMEBUFFERIVPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLint* value); +typedef void (GLAPIENTRY * PFNGLCLEARNAMEDFRAMEBUFFERUIVPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXTURESUBIMAGE1DPROC) (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXTURESUBIMAGE2DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXTURESUBIMAGE3DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOPYNAMEDBUFFERSUBDATAPROC) (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (GLAPIENTRY * PFNGLCOPYTEXTURESUBIMAGE1DPROC) (GLuint texture, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (GLAPIENTRY * PFNGLCOPYTEXTURESUBIMAGE2DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLCOPYTEXTURESUBIMAGE3DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLCREATEBUFFERSPROC) (GLsizei n, GLuint* buffers); +typedef void (GLAPIENTRY * PFNGLCREATEFRAMEBUFFERSPROC) (GLsizei n, GLuint* framebuffers); +typedef void (GLAPIENTRY * PFNGLCREATEPROGRAMPIPELINESPROC) (GLsizei n, GLuint* pipelines); +typedef void (GLAPIENTRY * PFNGLCREATEQUERIESPROC) (GLenum target, GLsizei n, GLuint* ids); +typedef void (GLAPIENTRY * PFNGLCREATERENDERBUFFERSPROC) (GLsizei n, GLuint* renderbuffers); +typedef void (GLAPIENTRY * PFNGLCREATESAMPLERSPROC) (GLsizei n, GLuint* samplers); +typedef void (GLAPIENTRY * PFNGLCREATETEXTURESPROC) (GLenum target, GLsizei n, GLuint* textures); +typedef void (GLAPIENTRY * PFNGLCREATETRANSFORMFEEDBACKSPROC) (GLsizei n, GLuint* ids); +typedef void (GLAPIENTRY * PFNGLCREATEVERTEXARRAYSPROC) (GLsizei n, GLuint* arrays); +typedef void (GLAPIENTRY * PFNGLDISABLEVERTEXARRAYATTRIBPROC) (GLuint vaobj, GLuint index); +typedef void (GLAPIENTRY * PFNGLENABLEVERTEXARRAYATTRIBPROC) (GLuint vaobj, GLuint index); +typedef void (GLAPIENTRY * PFNGLFLUSHMAPPEDNAMEDBUFFERRANGEPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length); +typedef void (GLAPIENTRY * PFNGLGENERATETEXTUREMIPMAPPROC) (GLuint texture); +typedef void (GLAPIENTRY * PFNGLGETCOMPRESSEDTEXTUREIMAGEPROC) (GLuint texture, GLint level, GLsizei bufSize, void *pixels); +typedef void (GLAPIENTRY * PFNGLGETNAMEDBUFFERPARAMETERI64VPROC) (GLuint buffer, GLenum pname, GLint64* params); +typedef void (GLAPIENTRY * PFNGLGETNAMEDBUFFERPARAMETERIVPROC) (GLuint buffer, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETNAMEDBUFFERPOINTERVPROC) (GLuint buffer, GLenum pname, void** params); +typedef void (GLAPIENTRY * PFNGLGETNAMEDBUFFERSUBDATAPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +typedef void (GLAPIENTRY * PFNGLGETNAMEDFRAMEBUFFERATTACHMENTPARAMETERIVPROC) (GLuint framebuffer, GLenum attachment, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVPROC) (GLuint framebuffer, GLenum pname, GLint* param); +typedef void (GLAPIENTRY * PFNGLGETNAMEDRENDERBUFFERPARAMETERIVPROC) (GLuint renderbuffer, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETQUERYBUFFEROBJECTI64VPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (GLAPIENTRY * PFNGLGETQUERYBUFFEROBJECTIVPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (GLAPIENTRY * PFNGLGETQUERYBUFFEROBJECTUI64VPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (GLAPIENTRY * PFNGLGETQUERYBUFFEROBJECTUIVPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (GLAPIENTRY * PFNGLGETTEXTUREIMAGEPROC) (GLuint texture, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +typedef void (GLAPIENTRY * PFNGLGETTEXTURELEVELPARAMETERFVPROC) (GLuint texture, GLint level, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETTEXTURELEVELPARAMETERIVPROC) (GLuint texture, GLint level, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETTEXTUREPARAMETERIIVPROC) (GLuint texture, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETTEXTUREPARAMETERIUIVPROC) (GLuint texture, GLenum pname, GLuint* params); +typedef void (GLAPIENTRY * PFNGLGETTEXTUREPARAMETERFVPROC) (GLuint texture, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETTEXTUREPARAMETERIVPROC) (GLuint texture, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETTRANSFORMFEEDBACKI64_VPROC) (GLuint xfb, GLenum pname, GLuint index, GLint64* param); +typedef void (GLAPIENTRY * PFNGLGETTRANSFORMFEEDBACKI_VPROC) (GLuint xfb, GLenum pname, GLuint index, GLint* param); +typedef void (GLAPIENTRY * PFNGLGETTRANSFORMFEEDBACKIVPROC) (GLuint xfb, GLenum pname, GLint* param); +typedef void (GLAPIENTRY * PFNGLGETVERTEXARRAYINDEXED64IVPROC) (GLuint vaobj, GLuint index, GLenum pname, GLint64* param); +typedef void (GLAPIENTRY * PFNGLGETVERTEXARRAYINDEXEDIVPROC) (GLuint vaobj, GLuint index, GLenum pname, GLint* param); +typedef void (GLAPIENTRY * PFNGLGETVERTEXARRAYIVPROC) (GLuint vaobj, GLenum pname, GLint* param); +typedef void (GLAPIENTRY * PFNGLINVALIDATENAMEDFRAMEBUFFERDATAPROC) (GLuint framebuffer, GLsizei numAttachments, const GLenum* attachments); +typedef void (GLAPIENTRY * PFNGLINVALIDATENAMEDFRAMEBUFFERSUBDATAPROC) (GLuint framebuffer, GLsizei numAttachments, const GLenum* attachments, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void * (GLAPIENTRY * PFNGLMAPNAMEDBUFFERPROC) (GLuint buffer, GLenum access); +typedef void * (GLAPIENTRY * PFNGLMAPNAMEDBUFFERRANGEPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef void (GLAPIENTRY * PFNGLNAMEDBUFFERDATAPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +typedef void (GLAPIENTRY * PFNGLNAMEDBUFFERSTORAGEPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); +typedef void (GLAPIENTRY * PFNGLNAMEDBUFFERSUBDATAPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (GLAPIENTRY * PFNGLNAMEDFRAMEBUFFERDRAWBUFFERPROC) (GLuint framebuffer, GLenum mode); +typedef void (GLAPIENTRY * PFNGLNAMEDFRAMEBUFFERDRAWBUFFERSPROC) (GLuint framebuffer, GLsizei n, const GLenum* bufs); +typedef void (GLAPIENTRY * PFNGLNAMEDFRAMEBUFFERPARAMETERIPROC) (GLuint framebuffer, GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLNAMEDFRAMEBUFFERREADBUFFERPROC) (GLuint framebuffer, GLenum mode); +typedef void (GLAPIENTRY * PFNGLNAMEDFRAMEBUFFERRENDERBUFFERPROC) (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (GLAPIENTRY * PFNGLNAMEDFRAMEBUFFERTEXTUREPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +typedef void (GLAPIENTRY * PFNGLNAMEDFRAMEBUFFERTEXTURELAYERPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (GLAPIENTRY * PFNGLNAMEDRENDERBUFFERSTORAGEPROC) (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEPROC) (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLTEXTUREBUFFERPROC) (GLuint texture, GLenum internalformat, GLuint buffer); +typedef void (GLAPIENTRY * PFNGLTEXTUREBUFFERRANGEPROC) (GLuint texture, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (GLAPIENTRY * PFNGLTEXTUREPARAMETERIIVPROC) (GLuint texture, GLenum pname, const GLint* params); +typedef void (GLAPIENTRY * PFNGLTEXTUREPARAMETERIUIVPROC) (GLuint texture, GLenum pname, const GLuint* params); +typedef void (GLAPIENTRY * PFNGLTEXTUREPARAMETERFPROC) (GLuint texture, GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLTEXTUREPARAMETERFVPROC) (GLuint texture, GLenum pname, const GLfloat* param); +typedef void (GLAPIENTRY * PFNGLTEXTUREPARAMETERIPROC) (GLuint texture, GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLTEXTUREPARAMETERIVPROC) (GLuint texture, GLenum pname, const GLint* param); +typedef void (GLAPIENTRY * PFNGLTEXTURESTORAGE1DPROC) (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (GLAPIENTRY * PFNGLTEXTURESTORAGE2DPROC) (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLTEXTURESTORAGE2DMULTISAMPLEPROC) (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (GLAPIENTRY * PFNGLTEXTURESTORAGE3DPROC) (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (GLAPIENTRY * PFNGLTEXTURESTORAGE3DMULTISAMPLEPROC) (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (GLAPIENTRY * PFNGLTEXTURESUBIMAGE1DPROC) (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (GLAPIENTRY * PFNGLTEXTURESUBIMAGE2DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (GLAPIENTRY * PFNGLTEXTURESUBIMAGE3DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (GLAPIENTRY * PFNGLTRANSFORMFEEDBACKBUFFERBASEPROC) (GLuint xfb, GLuint index, GLuint buffer); +typedef void (GLAPIENTRY * PFNGLTRANSFORMFEEDBACKBUFFERRANGEPROC) (GLuint xfb, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef GLboolean (GLAPIENTRY * PFNGLUNMAPNAMEDBUFFERPROC) (GLuint buffer); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYATTRIBBINDINGPROC) (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYATTRIBFORMATPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYATTRIBIFORMATPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYATTRIBLFORMATPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYBINDINGDIVISORPROC) (GLuint vaobj, GLuint bindingindex, GLuint divisor); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYELEMENTBUFFERPROC) (GLuint vaobj, GLuint buffer); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYVERTEXBUFFERPROC) (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYVERTEXBUFFERSPROC) (GLuint vaobj, GLuint first, GLsizei count, const GLuint* buffers, const GLintptr *offsets, const GLsizei *strides); + +#define glBindTextureUnit GLEW_GET_FUN(__glewBindTextureUnit) +#define glBlitNamedFramebuffer GLEW_GET_FUN(__glewBlitNamedFramebuffer) +#define glCheckNamedFramebufferStatus GLEW_GET_FUN(__glewCheckNamedFramebufferStatus) +#define glClearNamedBufferData GLEW_GET_FUN(__glewClearNamedBufferData) +#define glClearNamedBufferSubData GLEW_GET_FUN(__glewClearNamedBufferSubData) +#define glClearNamedFramebufferfi GLEW_GET_FUN(__glewClearNamedFramebufferfi) +#define glClearNamedFramebufferfv GLEW_GET_FUN(__glewClearNamedFramebufferfv) +#define glClearNamedFramebufferiv GLEW_GET_FUN(__glewClearNamedFramebufferiv) +#define glClearNamedFramebufferuiv GLEW_GET_FUN(__glewClearNamedFramebufferuiv) +#define glCompressedTextureSubImage1D GLEW_GET_FUN(__glewCompressedTextureSubImage1D) +#define glCompressedTextureSubImage2D GLEW_GET_FUN(__glewCompressedTextureSubImage2D) +#define glCompressedTextureSubImage3D GLEW_GET_FUN(__glewCompressedTextureSubImage3D) +#define glCopyNamedBufferSubData GLEW_GET_FUN(__glewCopyNamedBufferSubData) +#define glCopyTextureSubImage1D GLEW_GET_FUN(__glewCopyTextureSubImage1D) +#define glCopyTextureSubImage2D GLEW_GET_FUN(__glewCopyTextureSubImage2D) +#define glCopyTextureSubImage3D GLEW_GET_FUN(__glewCopyTextureSubImage3D) +#define glCreateBuffers GLEW_GET_FUN(__glewCreateBuffers) +#define glCreateFramebuffers GLEW_GET_FUN(__glewCreateFramebuffers) +#define glCreateProgramPipelines GLEW_GET_FUN(__glewCreateProgramPipelines) +#define glCreateQueries GLEW_GET_FUN(__glewCreateQueries) +#define glCreateRenderbuffers GLEW_GET_FUN(__glewCreateRenderbuffers) +#define glCreateSamplers GLEW_GET_FUN(__glewCreateSamplers) +#define glCreateTextures GLEW_GET_FUN(__glewCreateTextures) +#define glCreateTransformFeedbacks GLEW_GET_FUN(__glewCreateTransformFeedbacks) +#define glCreateVertexArrays GLEW_GET_FUN(__glewCreateVertexArrays) +#define glDisableVertexArrayAttrib GLEW_GET_FUN(__glewDisableVertexArrayAttrib) +#define glEnableVertexArrayAttrib GLEW_GET_FUN(__glewEnableVertexArrayAttrib) +#define glFlushMappedNamedBufferRange GLEW_GET_FUN(__glewFlushMappedNamedBufferRange) +#define glGenerateTextureMipmap GLEW_GET_FUN(__glewGenerateTextureMipmap) +#define glGetCompressedTextureImage GLEW_GET_FUN(__glewGetCompressedTextureImage) +#define glGetNamedBufferParameteri64v GLEW_GET_FUN(__glewGetNamedBufferParameteri64v) +#define glGetNamedBufferParameteriv GLEW_GET_FUN(__glewGetNamedBufferParameteriv) +#define glGetNamedBufferPointerv GLEW_GET_FUN(__glewGetNamedBufferPointerv) +#define glGetNamedBufferSubData GLEW_GET_FUN(__glewGetNamedBufferSubData) +#define glGetNamedFramebufferAttachmentParameteriv GLEW_GET_FUN(__glewGetNamedFramebufferAttachmentParameteriv) +#define glGetNamedFramebufferParameteriv GLEW_GET_FUN(__glewGetNamedFramebufferParameteriv) +#define glGetNamedRenderbufferParameteriv GLEW_GET_FUN(__glewGetNamedRenderbufferParameteriv) +#define glGetQueryBufferObjecti64v GLEW_GET_FUN(__glewGetQueryBufferObjecti64v) +#define glGetQueryBufferObjectiv GLEW_GET_FUN(__glewGetQueryBufferObjectiv) +#define glGetQueryBufferObjectui64v GLEW_GET_FUN(__glewGetQueryBufferObjectui64v) +#define glGetQueryBufferObjectuiv GLEW_GET_FUN(__glewGetQueryBufferObjectuiv) +#define glGetTextureImage GLEW_GET_FUN(__glewGetTextureImage) +#define glGetTextureLevelParameterfv GLEW_GET_FUN(__glewGetTextureLevelParameterfv) +#define glGetTextureLevelParameteriv GLEW_GET_FUN(__glewGetTextureLevelParameteriv) +#define glGetTextureParameterIiv GLEW_GET_FUN(__glewGetTextureParameterIiv) +#define glGetTextureParameterIuiv GLEW_GET_FUN(__glewGetTextureParameterIuiv) +#define glGetTextureParameterfv GLEW_GET_FUN(__glewGetTextureParameterfv) +#define glGetTextureParameteriv GLEW_GET_FUN(__glewGetTextureParameteriv) +#define glGetTransformFeedbacki64_v GLEW_GET_FUN(__glewGetTransformFeedbacki64_v) +#define glGetTransformFeedbacki_v GLEW_GET_FUN(__glewGetTransformFeedbacki_v) +#define glGetTransformFeedbackiv GLEW_GET_FUN(__glewGetTransformFeedbackiv) +#define glGetVertexArrayIndexed64iv GLEW_GET_FUN(__glewGetVertexArrayIndexed64iv) +#define glGetVertexArrayIndexediv GLEW_GET_FUN(__glewGetVertexArrayIndexediv) +#define glGetVertexArrayiv GLEW_GET_FUN(__glewGetVertexArrayiv) +#define glInvalidateNamedFramebufferData GLEW_GET_FUN(__glewInvalidateNamedFramebufferData) +#define glInvalidateNamedFramebufferSubData GLEW_GET_FUN(__glewInvalidateNamedFramebufferSubData) +#define glMapNamedBuffer GLEW_GET_FUN(__glewMapNamedBuffer) +#define glMapNamedBufferRange GLEW_GET_FUN(__glewMapNamedBufferRange) +#define glNamedBufferData GLEW_GET_FUN(__glewNamedBufferData) +#define glNamedBufferStorage GLEW_GET_FUN(__glewNamedBufferStorage) +#define glNamedBufferSubData GLEW_GET_FUN(__glewNamedBufferSubData) +#define glNamedFramebufferDrawBuffer GLEW_GET_FUN(__glewNamedFramebufferDrawBuffer) +#define glNamedFramebufferDrawBuffers GLEW_GET_FUN(__glewNamedFramebufferDrawBuffers) +#define glNamedFramebufferParameteri GLEW_GET_FUN(__glewNamedFramebufferParameteri) +#define glNamedFramebufferReadBuffer GLEW_GET_FUN(__glewNamedFramebufferReadBuffer) +#define glNamedFramebufferRenderbuffer GLEW_GET_FUN(__glewNamedFramebufferRenderbuffer) +#define glNamedFramebufferTexture GLEW_GET_FUN(__glewNamedFramebufferTexture) +#define glNamedFramebufferTextureLayer GLEW_GET_FUN(__glewNamedFramebufferTextureLayer) +#define glNamedRenderbufferStorage GLEW_GET_FUN(__glewNamedRenderbufferStorage) +#define glNamedRenderbufferStorageMultisample GLEW_GET_FUN(__glewNamedRenderbufferStorageMultisample) +#define glTextureBuffer GLEW_GET_FUN(__glewTextureBuffer) +#define glTextureBufferRange GLEW_GET_FUN(__glewTextureBufferRange) +#define glTextureParameterIiv GLEW_GET_FUN(__glewTextureParameterIiv) +#define glTextureParameterIuiv GLEW_GET_FUN(__glewTextureParameterIuiv) +#define glTextureParameterf GLEW_GET_FUN(__glewTextureParameterf) +#define glTextureParameterfv GLEW_GET_FUN(__glewTextureParameterfv) +#define glTextureParameteri GLEW_GET_FUN(__glewTextureParameteri) +#define glTextureParameteriv GLEW_GET_FUN(__glewTextureParameteriv) +#define glTextureStorage1D GLEW_GET_FUN(__glewTextureStorage1D) +#define glTextureStorage2D GLEW_GET_FUN(__glewTextureStorage2D) +#define glTextureStorage2DMultisample GLEW_GET_FUN(__glewTextureStorage2DMultisample) +#define glTextureStorage3D GLEW_GET_FUN(__glewTextureStorage3D) +#define glTextureStorage3DMultisample GLEW_GET_FUN(__glewTextureStorage3DMultisample) +#define glTextureSubImage1D GLEW_GET_FUN(__glewTextureSubImage1D) +#define glTextureSubImage2D GLEW_GET_FUN(__glewTextureSubImage2D) +#define glTextureSubImage3D GLEW_GET_FUN(__glewTextureSubImage3D) +#define glTransformFeedbackBufferBase GLEW_GET_FUN(__glewTransformFeedbackBufferBase) +#define glTransformFeedbackBufferRange GLEW_GET_FUN(__glewTransformFeedbackBufferRange) +#define glUnmapNamedBuffer GLEW_GET_FUN(__glewUnmapNamedBuffer) +#define glVertexArrayAttribBinding GLEW_GET_FUN(__glewVertexArrayAttribBinding) +#define glVertexArrayAttribFormat GLEW_GET_FUN(__glewVertexArrayAttribFormat) +#define glVertexArrayAttribIFormat GLEW_GET_FUN(__glewVertexArrayAttribIFormat) +#define glVertexArrayAttribLFormat GLEW_GET_FUN(__glewVertexArrayAttribLFormat) +#define glVertexArrayBindingDivisor GLEW_GET_FUN(__glewVertexArrayBindingDivisor) +#define glVertexArrayElementBuffer GLEW_GET_FUN(__glewVertexArrayElementBuffer) +#define glVertexArrayVertexBuffer GLEW_GET_FUN(__glewVertexArrayVertexBuffer) +#define glVertexArrayVertexBuffers GLEW_GET_FUN(__glewVertexArrayVertexBuffers) + +#define GLEW_ARB_direct_state_access GLEW_GET_VAR(__GLEW_ARB_direct_state_access) + +#endif /* GL_ARB_direct_state_access */ + +/* -------------------------- GL_ARB_draw_buffers -------------------------- */ + +#ifndef GL_ARB_draw_buffers +#define GL_ARB_draw_buffers 1 + +#define GL_MAX_DRAW_BUFFERS_ARB 0x8824 +#define GL_DRAW_BUFFER0_ARB 0x8825 +#define GL_DRAW_BUFFER1_ARB 0x8826 +#define GL_DRAW_BUFFER2_ARB 0x8827 +#define GL_DRAW_BUFFER3_ARB 0x8828 +#define GL_DRAW_BUFFER4_ARB 0x8829 +#define GL_DRAW_BUFFER5_ARB 0x882A +#define GL_DRAW_BUFFER6_ARB 0x882B +#define GL_DRAW_BUFFER7_ARB 0x882C +#define GL_DRAW_BUFFER8_ARB 0x882D +#define GL_DRAW_BUFFER9_ARB 0x882E +#define GL_DRAW_BUFFER10_ARB 0x882F +#define GL_DRAW_BUFFER11_ARB 0x8830 +#define GL_DRAW_BUFFER12_ARB 0x8831 +#define GL_DRAW_BUFFER13_ARB 0x8832 +#define GL_DRAW_BUFFER14_ARB 0x8833 +#define GL_DRAW_BUFFER15_ARB 0x8834 + +typedef void (GLAPIENTRY * PFNGLDRAWBUFFERSARBPROC) (GLsizei n, const GLenum* bufs); + +#define glDrawBuffersARB GLEW_GET_FUN(__glewDrawBuffersARB) + +#define GLEW_ARB_draw_buffers GLEW_GET_VAR(__GLEW_ARB_draw_buffers) + +#endif /* GL_ARB_draw_buffers */ + +/* ----------------------- GL_ARB_draw_buffers_blend ----------------------- */ + +#ifndef GL_ARB_draw_buffers_blend +#define GL_ARB_draw_buffers_blend 1 + +typedef void (GLAPIENTRY * PFNGLBLENDEQUATIONSEPARATEIARBPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (GLAPIENTRY * PFNGLBLENDEQUATIONIARBPROC) (GLuint buf, GLenum mode); +typedef void (GLAPIENTRY * PFNGLBLENDFUNCSEPARATEIARBPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (GLAPIENTRY * PFNGLBLENDFUNCIARBPROC) (GLuint buf, GLenum src, GLenum dst); + +#define glBlendEquationSeparateiARB GLEW_GET_FUN(__glewBlendEquationSeparateiARB) +#define glBlendEquationiARB GLEW_GET_FUN(__glewBlendEquationiARB) +#define glBlendFuncSeparateiARB GLEW_GET_FUN(__glewBlendFuncSeparateiARB) +#define glBlendFunciARB GLEW_GET_FUN(__glewBlendFunciARB) + +#define GLEW_ARB_draw_buffers_blend GLEW_GET_VAR(__GLEW_ARB_draw_buffers_blend) + +#endif /* GL_ARB_draw_buffers_blend */ + +/* -------------------- GL_ARB_draw_elements_base_vertex ------------------- */ + +#ifndef GL_ARB_draw_elements_base_vertex +#define GL_ARB_draw_elements_base_vertex 1 + +typedef void (GLAPIENTRY * PFNGLDRAWELEMENTSBASEVERTEXPROC) (GLenum mode, GLsizei count, GLenum type, void *indices, GLint basevertex); +typedef void (GLAPIENTRY * PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount, GLint basevertex); +typedef void (GLAPIENTRY * PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, void *indices, GLint basevertex); +typedef void (GLAPIENTRY * PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC) (GLenum mode, GLsizei* count, GLenum type, void**indices, GLsizei primcount, GLint *basevertex); + +#define glDrawElementsBaseVertex GLEW_GET_FUN(__glewDrawElementsBaseVertex) +#define glDrawElementsInstancedBaseVertex GLEW_GET_FUN(__glewDrawElementsInstancedBaseVertex) +#define glDrawRangeElementsBaseVertex GLEW_GET_FUN(__glewDrawRangeElementsBaseVertex) +#define glMultiDrawElementsBaseVertex GLEW_GET_FUN(__glewMultiDrawElementsBaseVertex) + +#define GLEW_ARB_draw_elements_base_vertex GLEW_GET_VAR(__GLEW_ARB_draw_elements_base_vertex) + +#endif /* GL_ARB_draw_elements_base_vertex */ + +/* -------------------------- GL_ARB_draw_indirect ------------------------- */ + +#ifndef GL_ARB_draw_indirect +#define GL_ARB_draw_indirect 1 + +#define GL_DRAW_INDIRECT_BUFFER 0x8F3F +#define GL_DRAW_INDIRECT_BUFFER_BINDING 0x8F43 + +typedef void (GLAPIENTRY * PFNGLDRAWARRAYSINDIRECTPROC) (GLenum mode, const void *indirect); +typedef void (GLAPIENTRY * PFNGLDRAWELEMENTSINDIRECTPROC) (GLenum mode, GLenum type, const void *indirect); + +#define glDrawArraysIndirect GLEW_GET_FUN(__glewDrawArraysIndirect) +#define glDrawElementsIndirect GLEW_GET_FUN(__glewDrawElementsIndirect) + +#define GLEW_ARB_draw_indirect GLEW_GET_VAR(__GLEW_ARB_draw_indirect) + +#endif /* GL_ARB_draw_indirect */ + +/* ------------------------- GL_ARB_draw_instanced ------------------------- */ + +#ifndef GL_ARB_draw_instanced +#define GL_ARB_draw_instanced 1 + +#define GLEW_ARB_draw_instanced GLEW_GET_VAR(__GLEW_ARB_draw_instanced) + +#endif /* GL_ARB_draw_instanced */ + +/* ------------------------ GL_ARB_enhanced_layouts ------------------------ */ + +#ifndef GL_ARB_enhanced_layouts +#define GL_ARB_enhanced_layouts 1 + +#define GL_LOCATION_COMPONENT 0x934A +#define GL_TRANSFORM_FEEDBACK_BUFFER_INDEX 0x934B +#define GL_TRANSFORM_FEEDBACK_BUFFER_STRIDE 0x934C + +#define GLEW_ARB_enhanced_layouts GLEW_GET_VAR(__GLEW_ARB_enhanced_layouts) + +#endif /* GL_ARB_enhanced_layouts */ + +/* -------------------- GL_ARB_explicit_attrib_location -------------------- */ + +#ifndef GL_ARB_explicit_attrib_location +#define GL_ARB_explicit_attrib_location 1 + +#define GLEW_ARB_explicit_attrib_location GLEW_GET_VAR(__GLEW_ARB_explicit_attrib_location) + +#endif /* GL_ARB_explicit_attrib_location */ + +/* -------------------- GL_ARB_explicit_uniform_location ------------------- */ + +#ifndef GL_ARB_explicit_uniform_location +#define GL_ARB_explicit_uniform_location 1 + +#define GL_MAX_UNIFORM_LOCATIONS 0x826E + +#define GLEW_ARB_explicit_uniform_location GLEW_GET_VAR(__GLEW_ARB_explicit_uniform_location) + +#endif /* GL_ARB_explicit_uniform_location */ + +/* ------------------- GL_ARB_fragment_coord_conventions ------------------- */ + +#ifndef GL_ARB_fragment_coord_conventions +#define GL_ARB_fragment_coord_conventions 1 + +#define GLEW_ARB_fragment_coord_conventions GLEW_GET_VAR(__GLEW_ARB_fragment_coord_conventions) + +#endif /* GL_ARB_fragment_coord_conventions */ + +/* --------------------- GL_ARB_fragment_layer_viewport -------------------- */ + +#ifndef GL_ARB_fragment_layer_viewport +#define GL_ARB_fragment_layer_viewport 1 + +#define GLEW_ARB_fragment_layer_viewport GLEW_GET_VAR(__GLEW_ARB_fragment_layer_viewport) + +#endif /* GL_ARB_fragment_layer_viewport */ + +/* ------------------------ GL_ARB_fragment_program ------------------------ */ + +#ifndef GL_ARB_fragment_program +#define GL_ARB_fragment_program 1 + +#define GL_FRAGMENT_PROGRAM_ARB 0x8804 +#define GL_PROGRAM_ALU_INSTRUCTIONS_ARB 0x8805 +#define GL_PROGRAM_TEX_INSTRUCTIONS_ARB 0x8806 +#define GL_PROGRAM_TEX_INDIRECTIONS_ARB 0x8807 +#define GL_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB 0x8808 +#define GL_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB 0x8809 +#define GL_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB 0x880A +#define GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB 0x880B +#define GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB 0x880C +#define GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB 0x880D +#define GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB 0x880E +#define GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB 0x880F +#define GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB 0x8810 +#define GL_MAX_TEXTURE_COORDS_ARB 0x8871 +#define GL_MAX_TEXTURE_IMAGE_UNITS_ARB 0x8872 + +#define GLEW_ARB_fragment_program GLEW_GET_VAR(__GLEW_ARB_fragment_program) + +#endif /* GL_ARB_fragment_program */ + +/* --------------------- GL_ARB_fragment_program_shadow -------------------- */ + +#ifndef GL_ARB_fragment_program_shadow +#define GL_ARB_fragment_program_shadow 1 + +#define GLEW_ARB_fragment_program_shadow GLEW_GET_VAR(__GLEW_ARB_fragment_program_shadow) + +#endif /* GL_ARB_fragment_program_shadow */ + +/* ------------------------- GL_ARB_fragment_shader ------------------------ */ + +#ifndef GL_ARB_fragment_shader +#define GL_ARB_fragment_shader 1 + +#define GL_FRAGMENT_SHADER_ARB 0x8B30 +#define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB 0x8B49 +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT_ARB 0x8B8B + +#define GLEW_ARB_fragment_shader GLEW_GET_VAR(__GLEW_ARB_fragment_shader) + +#endif /* GL_ARB_fragment_shader */ + +/* -------------------- GL_ARB_fragment_shader_interlock ------------------- */ + +#ifndef GL_ARB_fragment_shader_interlock +#define GL_ARB_fragment_shader_interlock 1 + +#define GLEW_ARB_fragment_shader_interlock GLEW_GET_VAR(__GLEW_ARB_fragment_shader_interlock) + +#endif /* GL_ARB_fragment_shader_interlock */ + +/* ------------------- GL_ARB_framebuffer_no_attachments ------------------- */ + +#ifndef GL_ARB_framebuffer_no_attachments +#define GL_ARB_framebuffer_no_attachments 1 + +#define GL_FRAMEBUFFER_DEFAULT_WIDTH 0x9310 +#define GL_FRAMEBUFFER_DEFAULT_HEIGHT 0x9311 +#define GL_FRAMEBUFFER_DEFAULT_LAYERS 0x9312 +#define GL_FRAMEBUFFER_DEFAULT_SAMPLES 0x9313 +#define GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS 0x9314 +#define GL_MAX_FRAMEBUFFER_WIDTH 0x9315 +#define GL_MAX_FRAMEBUFFER_HEIGHT 0x9316 +#define GL_MAX_FRAMEBUFFER_LAYERS 0x9317 +#define GL_MAX_FRAMEBUFFER_SAMPLES 0x9318 + +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERPARAMETERIPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLGETFRAMEBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLNAMEDFRAMEBUFFERPARAMETERIEXTPROC) (GLuint framebuffer, GLenum pname, GLint param); + +#define glFramebufferParameteri GLEW_GET_FUN(__glewFramebufferParameteri) +#define glGetFramebufferParameteriv GLEW_GET_FUN(__glewGetFramebufferParameteriv) +#define glGetNamedFramebufferParameterivEXT GLEW_GET_FUN(__glewGetNamedFramebufferParameterivEXT) +#define glNamedFramebufferParameteriEXT GLEW_GET_FUN(__glewNamedFramebufferParameteriEXT) + +#define GLEW_ARB_framebuffer_no_attachments GLEW_GET_VAR(__GLEW_ARB_framebuffer_no_attachments) + +#endif /* GL_ARB_framebuffer_no_attachments */ + +/* ----------------------- GL_ARB_framebuffer_object ----------------------- */ + +#ifndef GL_ARB_framebuffer_object +#define GL_ARB_framebuffer_object 1 + +#define GL_INVALID_FRAMEBUFFER_OPERATION 0x0506 +#define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING 0x8210 +#define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE 0x8211 +#define GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE 0x8212 +#define GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE 0x8213 +#define GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE 0x8214 +#define GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE 0x8215 +#define GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE 0x8216 +#define GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE 0x8217 +#define GL_FRAMEBUFFER_DEFAULT 0x8218 +#define GL_FRAMEBUFFER_UNDEFINED 0x8219 +#define GL_DEPTH_STENCIL_ATTACHMENT 0x821A +#define GL_INDEX 0x8222 +#define GL_MAX_RENDERBUFFER_SIZE 0x84E8 +#define GL_DEPTH_STENCIL 0x84F9 +#define GL_UNSIGNED_INT_24_8 0x84FA +#define GL_DEPTH24_STENCIL8 0x88F0 +#define GL_TEXTURE_STENCIL_SIZE 0x88F1 +#define GL_UNSIGNED_NORMALIZED 0x8C17 +#define GL_SRGB 0x8C40 +#define GL_DRAW_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_RENDERBUFFER_BINDING 0x8CA7 +#define GL_READ_FRAMEBUFFER 0x8CA8 +#define GL_DRAW_FRAMEBUFFER 0x8CA9 +#define GL_READ_FRAMEBUFFER_BINDING 0x8CAA +#define GL_RENDERBUFFER_SAMPLES 0x8CAB +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE 0x8CD0 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME 0x8CD1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL 0x8CD2 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE 0x8CD3 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER 0x8CD4 +#define GL_FRAMEBUFFER_COMPLETE 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER 0x8CDB +#define GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER 0x8CDC +#define GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD +#define GL_MAX_COLOR_ATTACHMENTS 0x8CDF +#define GL_COLOR_ATTACHMENT0 0x8CE0 +#define GL_COLOR_ATTACHMENT1 0x8CE1 +#define GL_COLOR_ATTACHMENT2 0x8CE2 +#define GL_COLOR_ATTACHMENT3 0x8CE3 +#define GL_COLOR_ATTACHMENT4 0x8CE4 +#define GL_COLOR_ATTACHMENT5 0x8CE5 +#define GL_COLOR_ATTACHMENT6 0x8CE6 +#define GL_COLOR_ATTACHMENT7 0x8CE7 +#define GL_COLOR_ATTACHMENT8 0x8CE8 +#define GL_COLOR_ATTACHMENT9 0x8CE9 +#define GL_COLOR_ATTACHMENT10 0x8CEA +#define GL_COLOR_ATTACHMENT11 0x8CEB +#define GL_COLOR_ATTACHMENT12 0x8CEC +#define GL_COLOR_ATTACHMENT13 0x8CED +#define GL_COLOR_ATTACHMENT14 0x8CEE +#define GL_COLOR_ATTACHMENT15 0x8CEF +#define GL_DEPTH_ATTACHMENT 0x8D00 +#define GL_STENCIL_ATTACHMENT 0x8D20 +#define GL_FRAMEBUFFER 0x8D40 +#define GL_RENDERBUFFER 0x8D41 +#define GL_RENDERBUFFER_WIDTH 0x8D42 +#define GL_RENDERBUFFER_HEIGHT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT 0x8D44 +#define GL_STENCIL_INDEX1 0x8D46 +#define GL_STENCIL_INDEX4 0x8D47 +#define GL_STENCIL_INDEX8 0x8D48 +#define GL_STENCIL_INDEX16 0x8D49 +#define GL_RENDERBUFFER_RED_SIZE 0x8D50 +#define GL_RENDERBUFFER_GREEN_SIZE 0x8D51 +#define GL_RENDERBUFFER_BLUE_SIZE 0x8D52 +#define GL_RENDERBUFFER_ALPHA_SIZE 0x8D53 +#define GL_RENDERBUFFER_DEPTH_SIZE 0x8D54 +#define GL_RENDERBUFFER_STENCIL_SIZE 0x8D55 +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE 0x8D56 +#define GL_MAX_SAMPLES 0x8D57 + +typedef void (GLAPIENTRY * PFNGLBINDFRAMEBUFFERPROC) (GLenum target, GLuint framebuffer); +typedef void (GLAPIENTRY * PFNGLBINDRENDERBUFFERPROC) (GLenum target, GLuint renderbuffer); +typedef void (GLAPIENTRY * PFNGLBLITFRAMEBUFFERPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef GLenum (GLAPIENTRY * PFNGLCHECKFRAMEBUFFERSTATUSPROC) (GLenum target); +typedef void (GLAPIENTRY * PFNGLDELETEFRAMEBUFFERSPROC) (GLsizei n, const GLuint* framebuffers); +typedef void (GLAPIENTRY * PFNGLDELETERENDERBUFFERSPROC) (GLsizei n, const GLuint* renderbuffers); +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERRENDERBUFFERPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERTEXTURE1DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERTEXTURE2DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERTEXTURE3DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint layer); +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERTEXTURELAYERPROC) (GLenum target,GLenum attachment, GLuint texture,GLint level,GLint layer); +typedef void (GLAPIENTRY * PFNGLGENFRAMEBUFFERSPROC) (GLsizei n, GLuint* framebuffers); +typedef void (GLAPIENTRY * PFNGLGENRENDERBUFFERSPROC) (GLsizei n, GLuint* renderbuffers); +typedef void (GLAPIENTRY * PFNGLGENERATEMIPMAPPROC) (GLenum target); +typedef void (GLAPIENTRY * PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC) (GLenum target, GLenum attachment, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETRENDERBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint* params); +typedef GLboolean (GLAPIENTRY * PFNGLISFRAMEBUFFERPROC) (GLuint framebuffer); +typedef GLboolean (GLAPIENTRY * PFNGLISRENDERBUFFERPROC) (GLuint renderbuffer); +typedef void (GLAPIENTRY * PFNGLRENDERBUFFERSTORAGEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); + +#define glBindFramebuffer GLEW_GET_FUN(__glewBindFramebuffer) +#define glBindRenderbuffer GLEW_GET_FUN(__glewBindRenderbuffer) +#define glBlitFramebuffer GLEW_GET_FUN(__glewBlitFramebuffer) +#define glCheckFramebufferStatus GLEW_GET_FUN(__glewCheckFramebufferStatus) +#define glDeleteFramebuffers GLEW_GET_FUN(__glewDeleteFramebuffers) +#define glDeleteRenderbuffers GLEW_GET_FUN(__glewDeleteRenderbuffers) +#define glFramebufferRenderbuffer GLEW_GET_FUN(__glewFramebufferRenderbuffer) +#define glFramebufferTexture1D GLEW_GET_FUN(__glewFramebufferTexture1D) +#define glFramebufferTexture2D GLEW_GET_FUN(__glewFramebufferTexture2D) +#define glFramebufferTexture3D GLEW_GET_FUN(__glewFramebufferTexture3D) +#define glFramebufferTextureLayer GLEW_GET_FUN(__glewFramebufferTextureLayer) +#define glGenFramebuffers GLEW_GET_FUN(__glewGenFramebuffers) +#define glGenRenderbuffers GLEW_GET_FUN(__glewGenRenderbuffers) +#define glGenerateMipmap GLEW_GET_FUN(__glewGenerateMipmap) +#define glGetFramebufferAttachmentParameteriv GLEW_GET_FUN(__glewGetFramebufferAttachmentParameteriv) +#define glGetRenderbufferParameteriv GLEW_GET_FUN(__glewGetRenderbufferParameteriv) +#define glIsFramebuffer GLEW_GET_FUN(__glewIsFramebuffer) +#define glIsRenderbuffer GLEW_GET_FUN(__glewIsRenderbuffer) +#define glRenderbufferStorage GLEW_GET_FUN(__glewRenderbufferStorage) +#define glRenderbufferStorageMultisample GLEW_GET_FUN(__glewRenderbufferStorageMultisample) + +#define GLEW_ARB_framebuffer_object GLEW_GET_VAR(__GLEW_ARB_framebuffer_object) + +#endif /* GL_ARB_framebuffer_object */ + +/* ------------------------ GL_ARB_framebuffer_sRGB ------------------------ */ + +#ifndef GL_ARB_framebuffer_sRGB +#define GL_ARB_framebuffer_sRGB 1 + +#define GL_FRAMEBUFFER_SRGB 0x8DB9 + +#define GLEW_ARB_framebuffer_sRGB GLEW_GET_VAR(__GLEW_ARB_framebuffer_sRGB) + +#endif /* GL_ARB_framebuffer_sRGB */ + +/* ------------------------ GL_ARB_geometry_shader4 ------------------------ */ + +#ifndef GL_ARB_geometry_shader4 +#define GL_ARB_geometry_shader4 1 + +#define GL_LINES_ADJACENCY_ARB 0xA +#define GL_LINE_STRIP_ADJACENCY_ARB 0xB +#define GL_TRIANGLES_ADJACENCY_ARB 0xC +#define GL_TRIANGLE_STRIP_ADJACENCY_ARB 0xD +#define GL_PROGRAM_POINT_SIZE_ARB 0x8642 +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_ARB 0x8C29 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER 0x8CD4 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_ARB 0x8DA7 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_ARB 0x8DA8 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_ARB 0x8DA9 +#define GL_GEOMETRY_SHADER_ARB 0x8DD9 +#define GL_GEOMETRY_VERTICES_OUT_ARB 0x8DDA +#define GL_GEOMETRY_INPUT_TYPE_ARB 0x8DDB +#define GL_GEOMETRY_OUTPUT_TYPE_ARB 0x8DDC +#define GL_MAX_GEOMETRY_VARYING_COMPONENTS_ARB 0x8DDD +#define GL_MAX_VERTEX_VARYING_COMPONENTS_ARB 0x8DDE +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_ARB 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_ARB 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_ARB 0x8DE1 + +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERTEXTUREARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERTEXTUREFACEARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERTEXTURELAYERARBPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (GLAPIENTRY * PFNGLPROGRAMPARAMETERIARBPROC) (GLuint program, GLenum pname, GLint value); + +#define glFramebufferTextureARB GLEW_GET_FUN(__glewFramebufferTextureARB) +#define glFramebufferTextureFaceARB GLEW_GET_FUN(__glewFramebufferTextureFaceARB) +#define glFramebufferTextureLayerARB GLEW_GET_FUN(__glewFramebufferTextureLayerARB) +#define glProgramParameteriARB GLEW_GET_FUN(__glewProgramParameteriARB) + +#define GLEW_ARB_geometry_shader4 GLEW_GET_VAR(__GLEW_ARB_geometry_shader4) + +#endif /* GL_ARB_geometry_shader4 */ + +/* ----------------------- GL_ARB_get_program_binary ----------------------- */ + +#ifndef GL_ARB_get_program_binary +#define GL_ARB_get_program_binary 1 + +#define GL_PROGRAM_BINARY_RETRIEVABLE_HINT 0x8257 +#define GL_PROGRAM_BINARY_LENGTH 0x8741 +#define GL_NUM_PROGRAM_BINARY_FORMATS 0x87FE +#define GL_PROGRAM_BINARY_FORMATS 0x87FF + +typedef void (GLAPIENTRY * PFNGLGETPROGRAMBINARYPROC) (GLuint program, GLsizei bufSize, GLsizei* length, GLenum *binaryFormat, void*binary); +typedef void (GLAPIENTRY * PFNGLPROGRAMBINARYPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLsizei length); +typedef void (GLAPIENTRY * PFNGLPROGRAMPARAMETERIPROC) (GLuint program, GLenum pname, GLint value); + +#define glGetProgramBinary GLEW_GET_FUN(__glewGetProgramBinary) +#define glProgramBinary GLEW_GET_FUN(__glewProgramBinary) +#define glProgramParameteri GLEW_GET_FUN(__glewProgramParameteri) + +#define GLEW_ARB_get_program_binary GLEW_GET_VAR(__GLEW_ARB_get_program_binary) + +#endif /* GL_ARB_get_program_binary */ + +/* ---------------------- GL_ARB_get_texture_sub_image --------------------- */ + +#ifndef GL_ARB_get_texture_sub_image +#define GL_ARB_get_texture_sub_image 1 + +typedef void (GLAPIENTRY * PFNGLGETCOMPRESSEDTEXTURESUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei bufSize, void *pixels); +typedef void (GLAPIENTRY * PFNGLGETTEXTURESUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei bufSize, void *pixels); + +#define glGetCompressedTextureSubImage GLEW_GET_FUN(__glewGetCompressedTextureSubImage) +#define glGetTextureSubImage GLEW_GET_FUN(__glewGetTextureSubImage) + +#define GLEW_ARB_get_texture_sub_image GLEW_GET_VAR(__GLEW_ARB_get_texture_sub_image) + +#endif /* GL_ARB_get_texture_sub_image */ + +/* ---------------------------- GL_ARB_gl_spirv ---------------------------- */ + +#ifndef GL_ARB_gl_spirv +#define GL_ARB_gl_spirv 1 + +#define GL_SHADER_BINARY_FORMAT_SPIR_V_ARB 0x9551 +#define GL_SPIR_V_BINARY_ARB 0x9552 + +typedef void (GLAPIENTRY * PFNGLSPECIALIZESHADERARBPROC) (GLuint shader, const GLchar* pEntryPoint, GLuint numSpecializationConstants, const GLuint* pConstantIndex, const GLuint* pConstantValue); + +#define glSpecializeShaderARB GLEW_GET_FUN(__glewSpecializeShaderARB) + +#define GLEW_ARB_gl_spirv GLEW_GET_VAR(__GLEW_ARB_gl_spirv) + +#endif /* GL_ARB_gl_spirv */ + +/* --------------------------- GL_ARB_gpu_shader5 -------------------------- */ + +#ifndef GL_ARB_gpu_shader5 +#define GL_ARB_gpu_shader5 1 + +#define GL_GEOMETRY_SHADER_INVOCATIONS 0x887F +#define GL_MAX_GEOMETRY_SHADER_INVOCATIONS 0x8E5A +#define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET 0x8E5B +#define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET 0x8E5C +#define GL_FRAGMENT_INTERPOLATION_OFFSET_BITS 0x8E5D +#define GL_MAX_VERTEX_STREAMS 0x8E71 + +#define GLEW_ARB_gpu_shader5 GLEW_GET_VAR(__GLEW_ARB_gpu_shader5) + +#endif /* GL_ARB_gpu_shader5 */ + +/* ------------------------- GL_ARB_gpu_shader_fp64 ------------------------ */ + +#ifndef GL_ARB_gpu_shader_fp64 +#define GL_ARB_gpu_shader_fp64 1 + +#define GL_DOUBLE_MAT2 0x8F46 +#define GL_DOUBLE_MAT3 0x8F47 +#define GL_DOUBLE_MAT4 0x8F48 +#define GL_DOUBLE_MAT2x3 0x8F49 +#define GL_DOUBLE_MAT2x4 0x8F4A +#define GL_DOUBLE_MAT3x2 0x8F4B +#define GL_DOUBLE_MAT3x4 0x8F4C +#define GL_DOUBLE_MAT4x2 0x8F4D +#define GL_DOUBLE_MAT4x3 0x8F4E +#define GL_DOUBLE_VEC2 0x8FFC +#define GL_DOUBLE_VEC3 0x8FFD +#define GL_DOUBLE_VEC4 0x8FFE + +typedef void (GLAPIENTRY * PFNGLGETUNIFORMDVPROC) (GLuint program, GLint location, GLdouble* params); +typedef void (GLAPIENTRY * PFNGLUNIFORM1DPROC) (GLint location, GLdouble x); +typedef void (GLAPIENTRY * PFNGLUNIFORM1DVPROC) (GLint location, GLsizei count, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM2DPROC) (GLint location, GLdouble x, GLdouble y); +typedef void (GLAPIENTRY * PFNGLUNIFORM2DVPROC) (GLint location, GLsizei count, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM3DPROC) (GLint location, GLdouble x, GLdouble y, GLdouble z); +typedef void (GLAPIENTRY * PFNGLUNIFORM3DVPROC) (GLint location, GLsizei count, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM4DPROC) (GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (GLAPIENTRY * PFNGLUNIFORM4DVPROC) (GLint location, GLsizei count, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX2X3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX2X4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX3X2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX3X4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX4DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX4X2DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX4X3DVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLdouble* value); + +#define glGetUniformdv GLEW_GET_FUN(__glewGetUniformdv) +#define glUniform1d GLEW_GET_FUN(__glewUniform1d) +#define glUniform1dv GLEW_GET_FUN(__glewUniform1dv) +#define glUniform2d GLEW_GET_FUN(__glewUniform2d) +#define glUniform2dv GLEW_GET_FUN(__glewUniform2dv) +#define glUniform3d GLEW_GET_FUN(__glewUniform3d) +#define glUniform3dv GLEW_GET_FUN(__glewUniform3dv) +#define glUniform4d GLEW_GET_FUN(__glewUniform4d) +#define glUniform4dv GLEW_GET_FUN(__glewUniform4dv) +#define glUniformMatrix2dv GLEW_GET_FUN(__glewUniformMatrix2dv) +#define glUniformMatrix2x3dv GLEW_GET_FUN(__glewUniformMatrix2x3dv) +#define glUniformMatrix2x4dv GLEW_GET_FUN(__glewUniformMatrix2x4dv) +#define glUniformMatrix3dv GLEW_GET_FUN(__glewUniformMatrix3dv) +#define glUniformMatrix3x2dv GLEW_GET_FUN(__glewUniformMatrix3x2dv) +#define glUniformMatrix3x4dv GLEW_GET_FUN(__glewUniformMatrix3x4dv) +#define glUniformMatrix4dv GLEW_GET_FUN(__glewUniformMatrix4dv) +#define glUniformMatrix4x2dv GLEW_GET_FUN(__glewUniformMatrix4x2dv) +#define glUniformMatrix4x3dv GLEW_GET_FUN(__glewUniformMatrix4x3dv) + +#define GLEW_ARB_gpu_shader_fp64 GLEW_GET_VAR(__GLEW_ARB_gpu_shader_fp64) + +#endif /* GL_ARB_gpu_shader_fp64 */ + +/* ------------------------ GL_ARB_gpu_shader_int64 ------------------------ */ + +#ifndef GL_ARB_gpu_shader_int64 +#define GL_ARB_gpu_shader_int64 1 + +#define GL_INT64_ARB 0x140E +#define GL_UNSIGNED_INT64_ARB 0x140F +#define GL_INT64_VEC2_ARB 0x8FE9 +#define GL_INT64_VEC3_ARB 0x8FEA +#define GL_INT64_VEC4_ARB 0x8FEB +#define GL_UNSIGNED_INT64_VEC2_ARB 0x8FF5 +#define GL_UNSIGNED_INT64_VEC3_ARB 0x8FF6 +#define GL_UNSIGNED_INT64_VEC4_ARB 0x8FF7 + +typedef void (GLAPIENTRY * PFNGLGETUNIFORMI64VARBPROC) (GLuint program, GLint location, GLint64* params); +typedef void (GLAPIENTRY * PFNGLGETUNIFORMUI64VARBPROC) (GLuint program, GLint location, GLuint64* params); +typedef void (GLAPIENTRY * PFNGLGETNUNIFORMI64VARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLint64* params); +typedef void (GLAPIENTRY * PFNGLGETNUNIFORMUI64VARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint64* params); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1I64ARBPROC) (GLuint program, GLint location, GLint64 x); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1UI64ARBPROC) (GLuint program, GLint location, GLuint64 x); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2I64ARBPROC) (GLuint program, GLint location, GLint64 x, GLint64 y); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2UI64ARBPROC) (GLuint program, GLint location, GLuint64 x, GLuint64 y); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3I64ARBPROC) (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3UI64ARBPROC) (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4I64ARBPROC) (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4UI64ARBPROC) (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM1I64ARBPROC) (GLint location, GLint64 x); +typedef void (GLAPIENTRY * PFNGLUNIFORM1I64VARBPROC) (GLint location, GLsizei count, const GLint64* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM1UI64ARBPROC) (GLint location, GLuint64 x); +typedef void (GLAPIENTRY * PFNGLUNIFORM1UI64VARBPROC) (GLint location, GLsizei count, const GLuint64* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM2I64ARBPROC) (GLint location, GLint64 x, GLint64 y); +typedef void (GLAPIENTRY * PFNGLUNIFORM2I64VARBPROC) (GLint location, GLsizei count, const GLint64* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM2UI64ARBPROC) (GLint location, GLuint64 x, GLuint64 y); +typedef void (GLAPIENTRY * PFNGLUNIFORM2UI64VARBPROC) (GLint location, GLsizei count, const GLuint64* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM3I64ARBPROC) (GLint location, GLint64 x, GLint64 y, GLint64 z); +typedef void (GLAPIENTRY * PFNGLUNIFORM3I64VARBPROC) (GLint location, GLsizei count, const GLint64* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM3UI64ARBPROC) (GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +typedef void (GLAPIENTRY * PFNGLUNIFORM3UI64VARBPROC) (GLint location, GLsizei count, const GLuint64* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM4I64ARBPROC) (GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +typedef void (GLAPIENTRY * PFNGLUNIFORM4I64VARBPROC) (GLint location, GLsizei count, const GLint64* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM4UI64ARBPROC) (GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +typedef void (GLAPIENTRY * PFNGLUNIFORM4UI64VARBPROC) (GLint location, GLsizei count, const GLuint64* value); + +#define glGetUniformi64vARB GLEW_GET_FUN(__glewGetUniformi64vARB) +#define glGetUniformui64vARB GLEW_GET_FUN(__glewGetUniformui64vARB) +#define glGetnUniformi64vARB GLEW_GET_FUN(__glewGetnUniformi64vARB) +#define glGetnUniformui64vARB GLEW_GET_FUN(__glewGetnUniformui64vARB) +#define glProgramUniform1i64ARB GLEW_GET_FUN(__glewProgramUniform1i64ARB) +#define glProgramUniform1i64vARB GLEW_GET_FUN(__glewProgramUniform1i64vARB) +#define glProgramUniform1ui64ARB GLEW_GET_FUN(__glewProgramUniform1ui64ARB) +#define glProgramUniform1ui64vARB GLEW_GET_FUN(__glewProgramUniform1ui64vARB) +#define glProgramUniform2i64ARB GLEW_GET_FUN(__glewProgramUniform2i64ARB) +#define glProgramUniform2i64vARB GLEW_GET_FUN(__glewProgramUniform2i64vARB) +#define glProgramUniform2ui64ARB GLEW_GET_FUN(__glewProgramUniform2ui64ARB) +#define glProgramUniform2ui64vARB GLEW_GET_FUN(__glewProgramUniform2ui64vARB) +#define glProgramUniform3i64ARB GLEW_GET_FUN(__glewProgramUniform3i64ARB) +#define glProgramUniform3i64vARB GLEW_GET_FUN(__glewProgramUniform3i64vARB) +#define glProgramUniform3ui64ARB GLEW_GET_FUN(__glewProgramUniform3ui64ARB) +#define glProgramUniform3ui64vARB GLEW_GET_FUN(__glewProgramUniform3ui64vARB) +#define glProgramUniform4i64ARB GLEW_GET_FUN(__glewProgramUniform4i64ARB) +#define glProgramUniform4i64vARB GLEW_GET_FUN(__glewProgramUniform4i64vARB) +#define glProgramUniform4ui64ARB GLEW_GET_FUN(__glewProgramUniform4ui64ARB) +#define glProgramUniform4ui64vARB GLEW_GET_FUN(__glewProgramUniform4ui64vARB) +#define glUniform1i64ARB GLEW_GET_FUN(__glewUniform1i64ARB) +#define glUniform1i64vARB GLEW_GET_FUN(__glewUniform1i64vARB) +#define glUniform1ui64ARB GLEW_GET_FUN(__glewUniform1ui64ARB) +#define glUniform1ui64vARB GLEW_GET_FUN(__glewUniform1ui64vARB) +#define glUniform2i64ARB GLEW_GET_FUN(__glewUniform2i64ARB) +#define glUniform2i64vARB GLEW_GET_FUN(__glewUniform2i64vARB) +#define glUniform2ui64ARB GLEW_GET_FUN(__glewUniform2ui64ARB) +#define glUniform2ui64vARB GLEW_GET_FUN(__glewUniform2ui64vARB) +#define glUniform3i64ARB GLEW_GET_FUN(__glewUniform3i64ARB) +#define glUniform3i64vARB GLEW_GET_FUN(__glewUniform3i64vARB) +#define glUniform3ui64ARB GLEW_GET_FUN(__glewUniform3ui64ARB) +#define glUniform3ui64vARB GLEW_GET_FUN(__glewUniform3ui64vARB) +#define glUniform4i64ARB GLEW_GET_FUN(__glewUniform4i64ARB) +#define glUniform4i64vARB GLEW_GET_FUN(__glewUniform4i64vARB) +#define glUniform4ui64ARB GLEW_GET_FUN(__glewUniform4ui64ARB) +#define glUniform4ui64vARB GLEW_GET_FUN(__glewUniform4ui64vARB) + +#define GLEW_ARB_gpu_shader_int64 GLEW_GET_VAR(__GLEW_ARB_gpu_shader_int64) + +#endif /* GL_ARB_gpu_shader_int64 */ + +/* ------------------------ GL_ARB_half_float_pixel ------------------------ */ + +#ifndef GL_ARB_half_float_pixel +#define GL_ARB_half_float_pixel 1 + +#define GL_HALF_FLOAT_ARB 0x140B + +#define GLEW_ARB_half_float_pixel GLEW_GET_VAR(__GLEW_ARB_half_float_pixel) + +#endif /* GL_ARB_half_float_pixel */ + +/* ------------------------ GL_ARB_half_float_vertex ----------------------- */ + +#ifndef GL_ARB_half_float_vertex +#define GL_ARB_half_float_vertex 1 + +#define GL_HALF_FLOAT 0x140B + +#define GLEW_ARB_half_float_vertex GLEW_GET_VAR(__GLEW_ARB_half_float_vertex) + +#endif /* GL_ARB_half_float_vertex */ + +/* ----------------------------- GL_ARB_imaging ---------------------------- */ + +#ifndef GL_ARB_imaging +#define GL_ARB_imaging 1 + +#define GL_CONSTANT_COLOR 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 +#define GL_CONSTANT_ALPHA 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 +#define GL_BLEND_COLOR 0x8005 +#define GL_FUNC_ADD 0x8006 +#define GL_MIN 0x8007 +#define GL_MAX 0x8008 +#define GL_BLEND_EQUATION 0x8009 +#define GL_FUNC_SUBTRACT 0x800A +#define GL_FUNC_REVERSE_SUBTRACT 0x800B +#define GL_CONVOLUTION_1D 0x8010 +#define GL_CONVOLUTION_2D 0x8011 +#define GL_SEPARABLE_2D 0x8012 +#define GL_CONVOLUTION_BORDER_MODE 0x8013 +#define GL_CONVOLUTION_FILTER_SCALE 0x8014 +#define GL_CONVOLUTION_FILTER_BIAS 0x8015 +#define GL_REDUCE 0x8016 +#define GL_CONVOLUTION_FORMAT 0x8017 +#define GL_CONVOLUTION_WIDTH 0x8018 +#define GL_CONVOLUTION_HEIGHT 0x8019 +#define GL_MAX_CONVOLUTION_WIDTH 0x801A +#define GL_MAX_CONVOLUTION_HEIGHT 0x801B +#define GL_POST_CONVOLUTION_RED_SCALE 0x801C +#define GL_POST_CONVOLUTION_GREEN_SCALE 0x801D +#define GL_POST_CONVOLUTION_BLUE_SCALE 0x801E +#define GL_POST_CONVOLUTION_ALPHA_SCALE 0x801F +#define GL_POST_CONVOLUTION_RED_BIAS 0x8020 +#define GL_POST_CONVOLUTION_GREEN_BIAS 0x8021 +#define GL_POST_CONVOLUTION_BLUE_BIAS 0x8022 +#define GL_POST_CONVOLUTION_ALPHA_BIAS 0x8023 +#define GL_HISTOGRAM 0x8024 +#define GL_PROXY_HISTOGRAM 0x8025 +#define GL_HISTOGRAM_WIDTH 0x8026 +#define GL_HISTOGRAM_FORMAT 0x8027 +#define GL_HISTOGRAM_RED_SIZE 0x8028 +#define GL_HISTOGRAM_GREEN_SIZE 0x8029 +#define GL_HISTOGRAM_BLUE_SIZE 0x802A +#define GL_HISTOGRAM_ALPHA_SIZE 0x802B +#define GL_HISTOGRAM_LUMINANCE_SIZE 0x802C +#define GL_HISTOGRAM_SINK 0x802D +#define GL_MINMAX 0x802E +#define GL_MINMAX_FORMAT 0x802F +#define GL_MINMAX_SINK 0x8030 +#define GL_TABLE_TOO_LARGE 0x8031 +#define GL_COLOR_MATRIX 0x80B1 +#define GL_COLOR_MATRIX_STACK_DEPTH 0x80B2 +#define GL_MAX_COLOR_MATRIX_STACK_DEPTH 0x80B3 +#define GL_POST_COLOR_MATRIX_RED_SCALE 0x80B4 +#define GL_POST_COLOR_MATRIX_GREEN_SCALE 0x80B5 +#define GL_POST_COLOR_MATRIX_BLUE_SCALE 0x80B6 +#define GL_POST_COLOR_MATRIX_ALPHA_SCALE 0x80B7 +#define GL_POST_COLOR_MATRIX_RED_BIAS 0x80B8 +#define GL_POST_COLOR_MATRIX_GREEN_BIAS 0x80B9 +#define GL_POST_COLOR_MATRIX_BLUE_BIAS 0x80BA +#define GL_POST_COLOR_MATRIX_ALPHA_BIAS 0x80BB +#define GL_COLOR_TABLE 0x80D0 +#define GL_POST_CONVOLUTION_COLOR_TABLE 0x80D1 +#define GL_POST_COLOR_MATRIX_COLOR_TABLE 0x80D2 +#define GL_PROXY_COLOR_TABLE 0x80D3 +#define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE 0x80D4 +#define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE 0x80D5 +#define GL_COLOR_TABLE_SCALE 0x80D6 +#define GL_COLOR_TABLE_BIAS 0x80D7 +#define GL_COLOR_TABLE_FORMAT 0x80D8 +#define GL_COLOR_TABLE_WIDTH 0x80D9 +#define GL_COLOR_TABLE_RED_SIZE 0x80DA +#define GL_COLOR_TABLE_GREEN_SIZE 0x80DB +#define GL_COLOR_TABLE_BLUE_SIZE 0x80DC +#define GL_COLOR_TABLE_ALPHA_SIZE 0x80DD +#define GL_COLOR_TABLE_LUMINANCE_SIZE 0x80DE +#define GL_COLOR_TABLE_INTENSITY_SIZE 0x80DF +#define GL_IGNORE_BORDER 0x8150 +#define GL_CONSTANT_BORDER 0x8151 +#define GL_WRAP_BORDER 0x8152 +#define GL_REPLICATE_BORDER 0x8153 +#define GL_CONVOLUTION_BORDER_COLOR 0x8154 + +typedef void (GLAPIENTRY * PFNGLCOLORSUBTABLEPROC) (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void *data); +typedef void (GLAPIENTRY * PFNGLCOLORTABLEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *table); +typedef void (GLAPIENTRY * PFNGLCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (GLAPIENTRY * PFNGLCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (GLAPIENTRY * PFNGLCONVOLUTIONFILTER1DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *image); +typedef void (GLAPIENTRY * PFNGLCONVOLUTIONFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *image); +typedef void (GLAPIENTRY * PFNGLCONVOLUTIONPARAMETERFPROC) (GLenum target, GLenum pname, GLfloat params); +typedef void (GLAPIENTRY * PFNGLCONVOLUTIONPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (GLAPIENTRY * PFNGLCONVOLUTIONPARAMETERIPROC) (GLenum target, GLenum pname, GLint params); +typedef void (GLAPIENTRY * PFNGLCONVOLUTIONPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (GLAPIENTRY * PFNGLCOPYCOLORSUBTABLEPROC) (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); +typedef void (GLAPIENTRY * PFNGLCOPYCOLORTABLEPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (GLAPIENTRY * PFNGLCOPYCONVOLUTIONFILTER1DPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (GLAPIENTRY * PFNGLCOPYCONVOLUTIONFILTER2DPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLGETCOLORTABLEPROC) (GLenum target, GLenum format, GLenum type, void *table); +typedef void (GLAPIENTRY * PFNGLGETCOLORTABLEPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (GLAPIENTRY * PFNGLGETCOLORTABLEPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GLAPIENTRY * PFNGLGETCONVOLUTIONFILTERPROC) (GLenum target, GLenum format, GLenum type, void *image); +typedef void (GLAPIENTRY * PFNGLGETCONVOLUTIONPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (GLAPIENTRY * PFNGLGETCONVOLUTIONPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GLAPIENTRY * PFNGLGETHISTOGRAMPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +typedef void (GLAPIENTRY * PFNGLGETHISTOGRAMPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (GLAPIENTRY * PFNGLGETHISTOGRAMPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GLAPIENTRY * PFNGLGETMINMAXPROC) (GLenum target, GLboolean reset, GLenum format, GLenum types, void *values); +typedef void (GLAPIENTRY * PFNGLGETMINMAXPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (GLAPIENTRY * PFNGLGETMINMAXPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GLAPIENTRY * PFNGLGETSEPARABLEFILTERPROC) (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); +typedef void (GLAPIENTRY * PFNGLHISTOGRAMPROC) (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +typedef void (GLAPIENTRY * PFNGLMINMAXPROC) (GLenum target, GLenum internalformat, GLboolean sink); +typedef void (GLAPIENTRY * PFNGLRESETHISTOGRAMPROC) (GLenum target); +typedef void (GLAPIENTRY * PFNGLRESETMINMAXPROC) (GLenum target); +typedef void (GLAPIENTRY * PFNGLSEPARABLEFILTER2DPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); + +#define glColorSubTable GLEW_GET_FUN(__glewColorSubTable) +#define glColorTable GLEW_GET_FUN(__glewColorTable) +#define glColorTableParameterfv GLEW_GET_FUN(__glewColorTableParameterfv) +#define glColorTableParameteriv GLEW_GET_FUN(__glewColorTableParameteriv) +#define glConvolutionFilter1D GLEW_GET_FUN(__glewConvolutionFilter1D) +#define glConvolutionFilter2D GLEW_GET_FUN(__glewConvolutionFilter2D) +#define glConvolutionParameterf GLEW_GET_FUN(__glewConvolutionParameterf) +#define glConvolutionParameterfv GLEW_GET_FUN(__glewConvolutionParameterfv) +#define glConvolutionParameteri GLEW_GET_FUN(__glewConvolutionParameteri) +#define glConvolutionParameteriv GLEW_GET_FUN(__glewConvolutionParameteriv) +#define glCopyColorSubTable GLEW_GET_FUN(__glewCopyColorSubTable) +#define glCopyColorTable GLEW_GET_FUN(__glewCopyColorTable) +#define glCopyConvolutionFilter1D GLEW_GET_FUN(__glewCopyConvolutionFilter1D) +#define glCopyConvolutionFilter2D GLEW_GET_FUN(__glewCopyConvolutionFilter2D) +#define glGetColorTable GLEW_GET_FUN(__glewGetColorTable) +#define glGetColorTableParameterfv GLEW_GET_FUN(__glewGetColorTableParameterfv) +#define glGetColorTableParameteriv GLEW_GET_FUN(__glewGetColorTableParameteriv) +#define glGetConvolutionFilter GLEW_GET_FUN(__glewGetConvolutionFilter) +#define glGetConvolutionParameterfv GLEW_GET_FUN(__glewGetConvolutionParameterfv) +#define glGetConvolutionParameteriv GLEW_GET_FUN(__glewGetConvolutionParameteriv) +#define glGetHistogram GLEW_GET_FUN(__glewGetHistogram) +#define glGetHistogramParameterfv GLEW_GET_FUN(__glewGetHistogramParameterfv) +#define glGetHistogramParameteriv GLEW_GET_FUN(__glewGetHistogramParameteriv) +#define glGetMinmax GLEW_GET_FUN(__glewGetMinmax) +#define glGetMinmaxParameterfv GLEW_GET_FUN(__glewGetMinmaxParameterfv) +#define glGetMinmaxParameteriv GLEW_GET_FUN(__glewGetMinmaxParameteriv) +#define glGetSeparableFilter GLEW_GET_FUN(__glewGetSeparableFilter) +#define glHistogram GLEW_GET_FUN(__glewHistogram) +#define glMinmax GLEW_GET_FUN(__glewMinmax) +#define glResetHistogram GLEW_GET_FUN(__glewResetHistogram) +#define glResetMinmax GLEW_GET_FUN(__glewResetMinmax) +#define glSeparableFilter2D GLEW_GET_FUN(__glewSeparableFilter2D) + +#define GLEW_ARB_imaging GLEW_GET_VAR(__GLEW_ARB_imaging) + +#endif /* GL_ARB_imaging */ + +/* ----------------------- GL_ARB_indirect_parameters ---------------------- */ + +#ifndef GL_ARB_indirect_parameters +#define GL_ARB_indirect_parameters 1 + +#define GL_PARAMETER_BUFFER_ARB 0x80EE +#define GL_PARAMETER_BUFFER_BINDING_ARB 0x80EF + +typedef void (GLAPIENTRY * PFNGLMULTIDRAWARRAYSINDIRECTCOUNTARBPROC) (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +typedef void (GLAPIENTRY * PFNGLMULTIDRAWELEMENTSINDIRECTCOUNTARBPROC) (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); + +#define glMultiDrawArraysIndirectCountARB GLEW_GET_FUN(__glewMultiDrawArraysIndirectCountARB) +#define glMultiDrawElementsIndirectCountARB GLEW_GET_FUN(__glewMultiDrawElementsIndirectCountARB) + +#define GLEW_ARB_indirect_parameters GLEW_GET_VAR(__GLEW_ARB_indirect_parameters) + +#endif /* GL_ARB_indirect_parameters */ + +/* ------------------------ GL_ARB_instanced_arrays ------------------------ */ + +#ifndef GL_ARB_instanced_arrays +#define GL_ARB_instanced_arrays 1 + +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB 0x88FE + +typedef void (GLAPIENTRY * PFNGLDRAWARRAYSINSTANCEDARBPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (GLAPIENTRY * PFNGLDRAWELEMENTSINSTANCEDARBPROC) (GLenum mode, GLsizei count, GLenum type, const void* indices, GLsizei primcount); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBDIVISORARBPROC) (GLuint index, GLuint divisor); + +#define glDrawArraysInstancedARB GLEW_GET_FUN(__glewDrawArraysInstancedARB) +#define glDrawElementsInstancedARB GLEW_GET_FUN(__glewDrawElementsInstancedARB) +#define glVertexAttribDivisorARB GLEW_GET_FUN(__glewVertexAttribDivisorARB) + +#define GLEW_ARB_instanced_arrays GLEW_GET_VAR(__GLEW_ARB_instanced_arrays) + +#endif /* GL_ARB_instanced_arrays */ + +/* ---------------------- GL_ARB_internalformat_query ---------------------- */ + +#ifndef GL_ARB_internalformat_query +#define GL_ARB_internalformat_query 1 + +#define GL_NUM_SAMPLE_COUNTS 0x9380 + +typedef void (GLAPIENTRY * PFNGLGETINTERNALFORMATIVPROC) (GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint* params); + +#define glGetInternalformativ GLEW_GET_FUN(__glewGetInternalformativ) + +#define GLEW_ARB_internalformat_query GLEW_GET_VAR(__GLEW_ARB_internalformat_query) + +#endif /* GL_ARB_internalformat_query */ + +/* ---------------------- GL_ARB_internalformat_query2 --------------------- */ + +#ifndef GL_ARB_internalformat_query2 +#define GL_ARB_internalformat_query2 1 + +#define GL_INTERNALFORMAT_SUPPORTED 0x826F +#define GL_INTERNALFORMAT_PREFERRED 0x8270 +#define GL_INTERNALFORMAT_RED_SIZE 0x8271 +#define GL_INTERNALFORMAT_GREEN_SIZE 0x8272 +#define GL_INTERNALFORMAT_BLUE_SIZE 0x8273 +#define GL_INTERNALFORMAT_ALPHA_SIZE 0x8274 +#define GL_INTERNALFORMAT_DEPTH_SIZE 0x8275 +#define GL_INTERNALFORMAT_STENCIL_SIZE 0x8276 +#define GL_INTERNALFORMAT_SHARED_SIZE 0x8277 +#define GL_INTERNALFORMAT_RED_TYPE 0x8278 +#define GL_INTERNALFORMAT_GREEN_TYPE 0x8279 +#define GL_INTERNALFORMAT_BLUE_TYPE 0x827A +#define GL_INTERNALFORMAT_ALPHA_TYPE 0x827B +#define GL_INTERNALFORMAT_DEPTH_TYPE 0x827C +#define GL_INTERNALFORMAT_STENCIL_TYPE 0x827D +#define GL_MAX_WIDTH 0x827E +#define GL_MAX_HEIGHT 0x827F +#define GL_MAX_DEPTH 0x8280 +#define GL_MAX_LAYERS 0x8281 +#define GL_MAX_COMBINED_DIMENSIONS 0x8282 +#define GL_COLOR_COMPONENTS 0x8283 +#define GL_DEPTH_COMPONENTS 0x8284 +#define GL_STENCIL_COMPONENTS 0x8285 +#define GL_COLOR_RENDERABLE 0x8286 +#define GL_DEPTH_RENDERABLE 0x8287 +#define GL_STENCIL_RENDERABLE 0x8288 +#define GL_FRAMEBUFFER_RENDERABLE 0x8289 +#define GL_FRAMEBUFFER_RENDERABLE_LAYERED 0x828A +#define GL_FRAMEBUFFER_BLEND 0x828B +#define GL_READ_PIXELS 0x828C +#define GL_READ_PIXELS_FORMAT 0x828D +#define GL_READ_PIXELS_TYPE 0x828E +#define GL_TEXTURE_IMAGE_FORMAT 0x828F +#define GL_TEXTURE_IMAGE_TYPE 0x8290 +#define GL_GET_TEXTURE_IMAGE_FORMAT 0x8291 +#define GL_GET_TEXTURE_IMAGE_TYPE 0x8292 +#define GL_MIPMAP 0x8293 +#define GL_MANUAL_GENERATE_MIPMAP 0x8294 +#define GL_AUTO_GENERATE_MIPMAP 0x8295 +#define GL_COLOR_ENCODING 0x8296 +#define GL_SRGB_READ 0x8297 +#define GL_SRGB_WRITE 0x8298 +#define GL_SRGB_DECODE_ARB 0x8299 +#define GL_FILTER 0x829A +#define GL_VERTEX_TEXTURE 0x829B +#define GL_TESS_CONTROL_TEXTURE 0x829C +#define GL_TESS_EVALUATION_TEXTURE 0x829D +#define GL_GEOMETRY_TEXTURE 0x829E +#define GL_FRAGMENT_TEXTURE 0x829F +#define GL_COMPUTE_TEXTURE 0x82A0 +#define GL_TEXTURE_SHADOW 0x82A1 +#define GL_TEXTURE_GATHER 0x82A2 +#define GL_TEXTURE_GATHER_SHADOW 0x82A3 +#define GL_SHADER_IMAGE_LOAD 0x82A4 +#define GL_SHADER_IMAGE_STORE 0x82A5 +#define GL_SHADER_IMAGE_ATOMIC 0x82A6 +#define GL_IMAGE_TEXEL_SIZE 0x82A7 +#define GL_IMAGE_COMPATIBILITY_CLASS 0x82A8 +#define GL_IMAGE_PIXEL_FORMAT 0x82A9 +#define GL_IMAGE_PIXEL_TYPE 0x82AA +#define GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST 0x82AC +#define GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST 0x82AD +#define GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE 0x82AE +#define GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE 0x82AF +#define GL_TEXTURE_COMPRESSED_BLOCK_WIDTH 0x82B1 +#define GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT 0x82B2 +#define GL_TEXTURE_COMPRESSED_BLOCK_SIZE 0x82B3 +#define GL_CLEAR_BUFFER 0x82B4 +#define GL_TEXTURE_VIEW 0x82B5 +#define GL_VIEW_COMPATIBILITY_CLASS 0x82B6 +#define GL_FULL_SUPPORT 0x82B7 +#define GL_CAVEAT_SUPPORT 0x82B8 +#define GL_IMAGE_CLASS_4_X_32 0x82B9 +#define GL_IMAGE_CLASS_2_X_32 0x82BA +#define GL_IMAGE_CLASS_1_X_32 0x82BB +#define GL_IMAGE_CLASS_4_X_16 0x82BC +#define GL_IMAGE_CLASS_2_X_16 0x82BD +#define GL_IMAGE_CLASS_1_X_16 0x82BE +#define GL_IMAGE_CLASS_4_X_8 0x82BF +#define GL_IMAGE_CLASS_2_X_8 0x82C0 +#define GL_IMAGE_CLASS_1_X_8 0x82C1 +#define GL_IMAGE_CLASS_11_11_10 0x82C2 +#define GL_IMAGE_CLASS_10_10_10_2 0x82C3 +#define GL_VIEW_CLASS_128_BITS 0x82C4 +#define GL_VIEW_CLASS_96_BITS 0x82C5 +#define GL_VIEW_CLASS_64_BITS 0x82C6 +#define GL_VIEW_CLASS_48_BITS 0x82C7 +#define GL_VIEW_CLASS_32_BITS 0x82C8 +#define GL_VIEW_CLASS_24_BITS 0x82C9 +#define GL_VIEW_CLASS_16_BITS 0x82CA +#define GL_VIEW_CLASS_8_BITS 0x82CB +#define GL_VIEW_CLASS_S3TC_DXT1_RGB 0x82CC +#define GL_VIEW_CLASS_S3TC_DXT1_RGBA 0x82CD +#define GL_VIEW_CLASS_S3TC_DXT3_RGBA 0x82CE +#define GL_VIEW_CLASS_S3TC_DXT5_RGBA 0x82CF +#define GL_VIEW_CLASS_RGTC1_RED 0x82D0 +#define GL_VIEW_CLASS_RGTC2_RG 0x82D1 +#define GL_VIEW_CLASS_BPTC_UNORM 0x82D2 +#define GL_VIEW_CLASS_BPTC_FLOAT 0x82D3 + +typedef void (GLAPIENTRY * PFNGLGETINTERNALFORMATI64VPROC) (GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint64* params); + +#define glGetInternalformati64v GLEW_GET_FUN(__glewGetInternalformati64v) + +#define GLEW_ARB_internalformat_query2 GLEW_GET_VAR(__GLEW_ARB_internalformat_query2) + +#endif /* GL_ARB_internalformat_query2 */ + +/* ----------------------- GL_ARB_invalidate_subdata ----------------------- */ + +#ifndef GL_ARB_invalidate_subdata +#define GL_ARB_invalidate_subdata 1 + +typedef void (GLAPIENTRY * PFNGLINVALIDATEBUFFERDATAPROC) (GLuint buffer); +typedef void (GLAPIENTRY * PFNGLINVALIDATEBUFFERSUBDATAPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length); +typedef void (GLAPIENTRY * PFNGLINVALIDATEFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, const GLenum* attachments); +typedef void (GLAPIENTRY * PFNGLINVALIDATESUBFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, const GLenum* attachments, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLINVALIDATETEXIMAGEPROC) (GLuint texture, GLint level); +typedef void (GLAPIENTRY * PFNGLINVALIDATETEXSUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth); + +#define glInvalidateBufferData GLEW_GET_FUN(__glewInvalidateBufferData) +#define glInvalidateBufferSubData GLEW_GET_FUN(__glewInvalidateBufferSubData) +#define glInvalidateFramebuffer GLEW_GET_FUN(__glewInvalidateFramebuffer) +#define glInvalidateSubFramebuffer GLEW_GET_FUN(__glewInvalidateSubFramebuffer) +#define glInvalidateTexImage GLEW_GET_FUN(__glewInvalidateTexImage) +#define glInvalidateTexSubImage GLEW_GET_FUN(__glewInvalidateTexSubImage) + +#define GLEW_ARB_invalidate_subdata GLEW_GET_VAR(__GLEW_ARB_invalidate_subdata) + +#endif /* GL_ARB_invalidate_subdata */ + +/* ---------------------- GL_ARB_map_buffer_alignment ---------------------- */ + +#ifndef GL_ARB_map_buffer_alignment +#define GL_ARB_map_buffer_alignment 1 + +#define GL_MIN_MAP_BUFFER_ALIGNMENT 0x90BC + +#define GLEW_ARB_map_buffer_alignment GLEW_GET_VAR(__GLEW_ARB_map_buffer_alignment) + +#endif /* GL_ARB_map_buffer_alignment */ + +/* ------------------------ GL_ARB_map_buffer_range ------------------------ */ + +#ifndef GL_ARB_map_buffer_range +#define GL_ARB_map_buffer_range 1 + +#define GL_MAP_READ_BIT 0x0001 +#define GL_MAP_WRITE_BIT 0x0002 +#define GL_MAP_INVALIDATE_RANGE_BIT 0x0004 +#define GL_MAP_INVALIDATE_BUFFER_BIT 0x0008 +#define GL_MAP_FLUSH_EXPLICIT_BIT 0x0010 +#define GL_MAP_UNSYNCHRONIZED_BIT 0x0020 + +typedef void (GLAPIENTRY * PFNGLFLUSHMAPPEDBUFFERRANGEPROC) (GLenum target, GLintptr offset, GLsizeiptr length); +typedef void * (GLAPIENTRY * PFNGLMAPBUFFERRANGEPROC) (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); + +#define glFlushMappedBufferRange GLEW_GET_FUN(__glewFlushMappedBufferRange) +#define glMapBufferRange GLEW_GET_FUN(__glewMapBufferRange) + +#define GLEW_ARB_map_buffer_range GLEW_GET_VAR(__GLEW_ARB_map_buffer_range) + +#endif /* GL_ARB_map_buffer_range */ + +/* ------------------------- GL_ARB_matrix_palette ------------------------- */ + +#ifndef GL_ARB_matrix_palette +#define GL_ARB_matrix_palette 1 + +#define GL_MATRIX_PALETTE_ARB 0x8840 +#define GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB 0x8841 +#define GL_MAX_PALETTE_MATRICES_ARB 0x8842 +#define GL_CURRENT_PALETTE_MATRIX_ARB 0x8843 +#define GL_MATRIX_INDEX_ARRAY_ARB 0x8844 +#define GL_CURRENT_MATRIX_INDEX_ARB 0x8845 +#define GL_MATRIX_INDEX_ARRAY_SIZE_ARB 0x8846 +#define GL_MATRIX_INDEX_ARRAY_TYPE_ARB 0x8847 +#define GL_MATRIX_INDEX_ARRAY_STRIDE_ARB 0x8848 +#define GL_MATRIX_INDEX_ARRAY_POINTER_ARB 0x8849 + +typedef void (GLAPIENTRY * PFNGLCURRENTPALETTEMATRIXARBPROC) (GLint index); +typedef void (GLAPIENTRY * PFNGLMATRIXINDEXPOINTERARBPROC) (GLint size, GLenum type, GLsizei stride, void *pointer); +typedef void (GLAPIENTRY * PFNGLMATRIXINDEXUBVARBPROC) (GLint size, GLubyte *indices); +typedef void (GLAPIENTRY * PFNGLMATRIXINDEXUIVARBPROC) (GLint size, GLuint *indices); +typedef void (GLAPIENTRY * PFNGLMATRIXINDEXUSVARBPROC) (GLint size, GLushort *indices); + +#define glCurrentPaletteMatrixARB GLEW_GET_FUN(__glewCurrentPaletteMatrixARB) +#define glMatrixIndexPointerARB GLEW_GET_FUN(__glewMatrixIndexPointerARB) +#define glMatrixIndexubvARB GLEW_GET_FUN(__glewMatrixIndexubvARB) +#define glMatrixIndexuivARB GLEW_GET_FUN(__glewMatrixIndexuivARB) +#define glMatrixIndexusvARB GLEW_GET_FUN(__glewMatrixIndexusvARB) + +#define GLEW_ARB_matrix_palette GLEW_GET_VAR(__GLEW_ARB_matrix_palette) + +#endif /* GL_ARB_matrix_palette */ + +/* --------------------------- GL_ARB_multi_bind --------------------------- */ + +#ifndef GL_ARB_multi_bind +#define GL_ARB_multi_bind 1 + +typedef void (GLAPIENTRY * PFNGLBINDBUFFERSBASEPROC) (GLenum target, GLuint first, GLsizei count, const GLuint* buffers); +typedef void (GLAPIENTRY * PFNGLBINDBUFFERSRANGEPROC) (GLenum target, GLuint first, GLsizei count, const GLuint* buffers, const GLintptr *offsets, const GLsizeiptr *sizes); +typedef void (GLAPIENTRY * PFNGLBINDIMAGETEXTURESPROC) (GLuint first, GLsizei count, const GLuint* textures); +typedef void (GLAPIENTRY * PFNGLBINDSAMPLERSPROC) (GLuint first, GLsizei count, const GLuint* samplers); +typedef void (GLAPIENTRY * PFNGLBINDTEXTURESPROC) (GLuint first, GLsizei count, const GLuint* textures); +typedef void (GLAPIENTRY * PFNGLBINDVERTEXBUFFERSPROC) (GLuint first, GLsizei count, const GLuint* buffers, const GLintptr *offsets, const GLsizei *strides); + +#define glBindBuffersBase GLEW_GET_FUN(__glewBindBuffersBase) +#define glBindBuffersRange GLEW_GET_FUN(__glewBindBuffersRange) +#define glBindImageTextures GLEW_GET_FUN(__glewBindImageTextures) +#define glBindSamplers GLEW_GET_FUN(__glewBindSamplers) +#define glBindTextures GLEW_GET_FUN(__glewBindTextures) +#define glBindVertexBuffers GLEW_GET_FUN(__glewBindVertexBuffers) + +#define GLEW_ARB_multi_bind GLEW_GET_VAR(__GLEW_ARB_multi_bind) + +#endif /* GL_ARB_multi_bind */ + +/* ----------------------- GL_ARB_multi_draw_indirect ---------------------- */ + +#ifndef GL_ARB_multi_draw_indirect +#define GL_ARB_multi_draw_indirect 1 + +typedef void (GLAPIENTRY * PFNGLMULTIDRAWARRAYSINDIRECTPROC) (GLenum mode, const void *indirect, GLsizei primcount, GLsizei stride); +typedef void (GLAPIENTRY * PFNGLMULTIDRAWELEMENTSINDIRECTPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei primcount, GLsizei stride); + +#define glMultiDrawArraysIndirect GLEW_GET_FUN(__glewMultiDrawArraysIndirect) +#define glMultiDrawElementsIndirect GLEW_GET_FUN(__glewMultiDrawElementsIndirect) + +#define GLEW_ARB_multi_draw_indirect GLEW_GET_VAR(__GLEW_ARB_multi_draw_indirect) + +#endif /* GL_ARB_multi_draw_indirect */ + +/* --------------------------- GL_ARB_multisample -------------------------- */ + +#ifndef GL_ARB_multisample +#define GL_ARB_multisample 1 + +#define GL_MULTISAMPLE_ARB 0x809D +#define GL_SAMPLE_ALPHA_TO_COVERAGE_ARB 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE_ARB 0x809F +#define GL_SAMPLE_COVERAGE_ARB 0x80A0 +#define GL_SAMPLE_BUFFERS_ARB 0x80A8 +#define GL_SAMPLES_ARB 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE_ARB 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT_ARB 0x80AB +#define GL_MULTISAMPLE_BIT_ARB 0x20000000 + +typedef void (GLAPIENTRY * PFNGLSAMPLECOVERAGEARBPROC) (GLclampf value, GLboolean invert); + +#define glSampleCoverageARB GLEW_GET_FUN(__glewSampleCoverageARB) + +#define GLEW_ARB_multisample GLEW_GET_VAR(__GLEW_ARB_multisample) + +#endif /* GL_ARB_multisample */ + +/* -------------------------- GL_ARB_multitexture -------------------------- */ + +#ifndef GL_ARB_multitexture +#define GL_ARB_multitexture 1 + +#define GL_TEXTURE0_ARB 0x84C0 +#define GL_TEXTURE1_ARB 0x84C1 +#define GL_TEXTURE2_ARB 0x84C2 +#define GL_TEXTURE3_ARB 0x84C3 +#define GL_TEXTURE4_ARB 0x84C4 +#define GL_TEXTURE5_ARB 0x84C5 +#define GL_TEXTURE6_ARB 0x84C6 +#define GL_TEXTURE7_ARB 0x84C7 +#define GL_TEXTURE8_ARB 0x84C8 +#define GL_TEXTURE9_ARB 0x84C9 +#define GL_TEXTURE10_ARB 0x84CA +#define GL_TEXTURE11_ARB 0x84CB +#define GL_TEXTURE12_ARB 0x84CC +#define GL_TEXTURE13_ARB 0x84CD +#define GL_TEXTURE14_ARB 0x84CE +#define GL_TEXTURE15_ARB 0x84CF +#define GL_TEXTURE16_ARB 0x84D0 +#define GL_TEXTURE17_ARB 0x84D1 +#define GL_TEXTURE18_ARB 0x84D2 +#define GL_TEXTURE19_ARB 0x84D3 +#define GL_TEXTURE20_ARB 0x84D4 +#define GL_TEXTURE21_ARB 0x84D5 +#define GL_TEXTURE22_ARB 0x84D6 +#define GL_TEXTURE23_ARB 0x84D7 +#define GL_TEXTURE24_ARB 0x84D8 +#define GL_TEXTURE25_ARB 0x84D9 +#define GL_TEXTURE26_ARB 0x84DA +#define GL_TEXTURE27_ARB 0x84DB +#define GL_TEXTURE28_ARB 0x84DC +#define GL_TEXTURE29_ARB 0x84DD +#define GL_TEXTURE30_ARB 0x84DE +#define GL_TEXTURE31_ARB 0x84DF +#define GL_ACTIVE_TEXTURE_ARB 0x84E0 +#define GL_CLIENT_ACTIVE_TEXTURE_ARB 0x84E1 +#define GL_MAX_TEXTURE_UNITS_ARB 0x84E2 + +typedef void (GLAPIENTRY * PFNGLACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (GLAPIENTRY * PFNGLCLIENTACTIVETEXTUREARBPROC) (GLenum texture); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD1DARBPROC) (GLenum target, GLdouble s); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD1DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD1FARBPROC) (GLenum target, GLfloat s); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD1FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD1IARBPROC) (GLenum target, GLint s); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD1IVARBPROC) (GLenum target, const GLint *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD1SARBPROC) (GLenum target, GLshort s); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD1SVARBPROC) (GLenum target, const GLshort *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD2DARBPROC) (GLenum target, GLdouble s, GLdouble t); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD2DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD2FARBPROC) (GLenum target, GLfloat s, GLfloat t); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD2FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD2IARBPROC) (GLenum target, GLint s, GLint t); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD2IVARBPROC) (GLenum target, const GLint *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD2SARBPROC) (GLenum target, GLshort s, GLshort t); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD2SVARBPROC) (GLenum target, const GLshort *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD3DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD3DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD3FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD3FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD3IARBPROC) (GLenum target, GLint s, GLint t, GLint r); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD3IVARBPROC) (GLenum target, const GLint *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD3SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD3SVARBPROC) (GLenum target, const GLshort *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD4DARBPROC) (GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD4DVARBPROC) (GLenum target, const GLdouble *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD4FARBPROC) (GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD4FVARBPROC) (GLenum target, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD4IARBPROC) (GLenum target, GLint s, GLint t, GLint r, GLint q); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD4IVARBPROC) (GLenum target, const GLint *v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD4SARBPROC) (GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLshort *v); + +#define glActiveTextureARB GLEW_GET_FUN(__glewActiveTextureARB) +#define glClientActiveTextureARB GLEW_GET_FUN(__glewClientActiveTextureARB) +#define glMultiTexCoord1dARB GLEW_GET_FUN(__glewMultiTexCoord1dARB) +#define glMultiTexCoord1dvARB GLEW_GET_FUN(__glewMultiTexCoord1dvARB) +#define glMultiTexCoord1fARB GLEW_GET_FUN(__glewMultiTexCoord1fARB) +#define glMultiTexCoord1fvARB GLEW_GET_FUN(__glewMultiTexCoord1fvARB) +#define glMultiTexCoord1iARB GLEW_GET_FUN(__glewMultiTexCoord1iARB) +#define glMultiTexCoord1ivARB GLEW_GET_FUN(__glewMultiTexCoord1ivARB) +#define glMultiTexCoord1sARB GLEW_GET_FUN(__glewMultiTexCoord1sARB) +#define glMultiTexCoord1svARB GLEW_GET_FUN(__glewMultiTexCoord1svARB) +#define glMultiTexCoord2dARB GLEW_GET_FUN(__glewMultiTexCoord2dARB) +#define glMultiTexCoord2dvARB GLEW_GET_FUN(__glewMultiTexCoord2dvARB) +#define glMultiTexCoord2fARB GLEW_GET_FUN(__glewMultiTexCoord2fARB) +#define glMultiTexCoord2fvARB GLEW_GET_FUN(__glewMultiTexCoord2fvARB) +#define glMultiTexCoord2iARB GLEW_GET_FUN(__glewMultiTexCoord2iARB) +#define glMultiTexCoord2ivARB GLEW_GET_FUN(__glewMultiTexCoord2ivARB) +#define glMultiTexCoord2sARB GLEW_GET_FUN(__glewMultiTexCoord2sARB) +#define glMultiTexCoord2svARB GLEW_GET_FUN(__glewMultiTexCoord2svARB) +#define glMultiTexCoord3dARB GLEW_GET_FUN(__glewMultiTexCoord3dARB) +#define glMultiTexCoord3dvARB GLEW_GET_FUN(__glewMultiTexCoord3dvARB) +#define glMultiTexCoord3fARB GLEW_GET_FUN(__glewMultiTexCoord3fARB) +#define glMultiTexCoord3fvARB GLEW_GET_FUN(__glewMultiTexCoord3fvARB) +#define glMultiTexCoord3iARB GLEW_GET_FUN(__glewMultiTexCoord3iARB) +#define glMultiTexCoord3ivARB GLEW_GET_FUN(__glewMultiTexCoord3ivARB) +#define glMultiTexCoord3sARB GLEW_GET_FUN(__glewMultiTexCoord3sARB) +#define glMultiTexCoord3svARB GLEW_GET_FUN(__glewMultiTexCoord3svARB) +#define glMultiTexCoord4dARB GLEW_GET_FUN(__glewMultiTexCoord4dARB) +#define glMultiTexCoord4dvARB GLEW_GET_FUN(__glewMultiTexCoord4dvARB) +#define glMultiTexCoord4fARB GLEW_GET_FUN(__glewMultiTexCoord4fARB) +#define glMultiTexCoord4fvARB GLEW_GET_FUN(__glewMultiTexCoord4fvARB) +#define glMultiTexCoord4iARB GLEW_GET_FUN(__glewMultiTexCoord4iARB) +#define glMultiTexCoord4ivARB GLEW_GET_FUN(__glewMultiTexCoord4ivARB) +#define glMultiTexCoord4sARB GLEW_GET_FUN(__glewMultiTexCoord4sARB) +#define glMultiTexCoord4svARB GLEW_GET_FUN(__glewMultiTexCoord4svARB) + +#define GLEW_ARB_multitexture GLEW_GET_VAR(__GLEW_ARB_multitexture) + +#endif /* GL_ARB_multitexture */ + +/* ------------------------- GL_ARB_occlusion_query ------------------------ */ + +#ifndef GL_ARB_occlusion_query +#define GL_ARB_occlusion_query 1 + +#define GL_QUERY_COUNTER_BITS_ARB 0x8864 +#define GL_CURRENT_QUERY_ARB 0x8865 +#define GL_QUERY_RESULT_ARB 0x8866 +#define GL_QUERY_RESULT_AVAILABLE_ARB 0x8867 +#define GL_SAMPLES_PASSED_ARB 0x8914 + +typedef void (GLAPIENTRY * PFNGLBEGINQUERYARBPROC) (GLenum target, GLuint id); +typedef void (GLAPIENTRY * PFNGLDELETEQUERIESARBPROC) (GLsizei n, const GLuint* ids); +typedef void (GLAPIENTRY * PFNGLENDQUERYARBPROC) (GLenum target); +typedef void (GLAPIENTRY * PFNGLGENQUERIESARBPROC) (GLsizei n, GLuint* ids); +typedef void (GLAPIENTRY * PFNGLGETQUERYOBJECTIVARBPROC) (GLuint id, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETQUERYOBJECTUIVARBPROC) (GLuint id, GLenum pname, GLuint* params); +typedef void (GLAPIENTRY * PFNGLGETQUERYIVARBPROC) (GLenum target, GLenum pname, GLint* params); +typedef GLboolean (GLAPIENTRY * PFNGLISQUERYARBPROC) (GLuint id); + +#define glBeginQueryARB GLEW_GET_FUN(__glewBeginQueryARB) +#define glDeleteQueriesARB GLEW_GET_FUN(__glewDeleteQueriesARB) +#define glEndQueryARB GLEW_GET_FUN(__glewEndQueryARB) +#define glGenQueriesARB GLEW_GET_FUN(__glewGenQueriesARB) +#define glGetQueryObjectivARB GLEW_GET_FUN(__glewGetQueryObjectivARB) +#define glGetQueryObjectuivARB GLEW_GET_FUN(__glewGetQueryObjectuivARB) +#define glGetQueryivARB GLEW_GET_FUN(__glewGetQueryivARB) +#define glIsQueryARB GLEW_GET_FUN(__glewIsQueryARB) + +#define GLEW_ARB_occlusion_query GLEW_GET_VAR(__GLEW_ARB_occlusion_query) + +#endif /* GL_ARB_occlusion_query */ + +/* ------------------------ GL_ARB_occlusion_query2 ------------------------ */ + +#ifndef GL_ARB_occlusion_query2 +#define GL_ARB_occlusion_query2 1 + +#define GL_ANY_SAMPLES_PASSED 0x8C2F + +#define GLEW_ARB_occlusion_query2 GLEW_GET_VAR(__GLEW_ARB_occlusion_query2) + +#endif /* GL_ARB_occlusion_query2 */ + +/* --------------------- GL_ARB_parallel_shader_compile -------------------- */ + +#ifndef GL_ARB_parallel_shader_compile +#define GL_ARB_parallel_shader_compile 1 + +#define GL_MAX_SHADER_COMPILER_THREADS_ARB 0x91B0 +#define GL_COMPLETION_STATUS_ARB 0x91B1 + +typedef void (GLAPIENTRY * PFNGLMAXSHADERCOMPILERTHREADSARBPROC) (GLuint count); + +#define glMaxShaderCompilerThreadsARB GLEW_GET_FUN(__glewMaxShaderCompilerThreadsARB) + +#define GLEW_ARB_parallel_shader_compile GLEW_GET_VAR(__GLEW_ARB_parallel_shader_compile) + +#endif /* GL_ARB_parallel_shader_compile */ + +/* -------------------- GL_ARB_pipeline_statistics_query ------------------- */ + +#ifndef GL_ARB_pipeline_statistics_query +#define GL_ARB_pipeline_statistics_query 1 + +#define GL_VERTICES_SUBMITTED_ARB 0x82EE +#define GL_PRIMITIVES_SUBMITTED_ARB 0x82EF +#define GL_VERTEX_SHADER_INVOCATIONS_ARB 0x82F0 +#define GL_TESS_CONTROL_SHADER_PATCHES_ARB 0x82F1 +#define GL_TESS_EVALUATION_SHADER_INVOCATIONS_ARB 0x82F2 +#define GL_GEOMETRY_SHADER_PRIMITIVES_EMITTED_ARB 0x82F3 +#define GL_FRAGMENT_SHADER_INVOCATIONS_ARB 0x82F4 +#define GL_COMPUTE_SHADER_INVOCATIONS_ARB 0x82F5 +#define GL_CLIPPING_INPUT_PRIMITIVES_ARB 0x82F6 +#define GL_CLIPPING_OUTPUT_PRIMITIVES_ARB 0x82F7 +#define GL_GEOMETRY_SHADER_INVOCATIONS 0x887F + +#define GLEW_ARB_pipeline_statistics_query GLEW_GET_VAR(__GLEW_ARB_pipeline_statistics_query) + +#endif /* GL_ARB_pipeline_statistics_query */ + +/* ----------------------- GL_ARB_pixel_buffer_object ---------------------- */ + +#ifndef GL_ARB_pixel_buffer_object +#define GL_ARB_pixel_buffer_object 1 + +#define GL_PIXEL_PACK_BUFFER_ARB 0x88EB +#define GL_PIXEL_UNPACK_BUFFER_ARB 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING_ARB 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING_ARB 0x88EF + +#define GLEW_ARB_pixel_buffer_object GLEW_GET_VAR(__GLEW_ARB_pixel_buffer_object) + +#endif /* GL_ARB_pixel_buffer_object */ + +/* ------------------------ GL_ARB_point_parameters ------------------------ */ + +#ifndef GL_ARB_point_parameters +#define GL_ARB_point_parameters 1 + +#define GL_POINT_SIZE_MIN_ARB 0x8126 +#define GL_POINT_SIZE_MAX_ARB 0x8127 +#define GL_POINT_FADE_THRESHOLD_SIZE_ARB 0x8128 +#define GL_POINT_DISTANCE_ATTENUATION_ARB 0x8129 + +typedef void (GLAPIENTRY * PFNGLPOINTPARAMETERFARBPROC) (GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLPOINTPARAMETERFVARBPROC) (GLenum pname, const GLfloat* params); + +#define glPointParameterfARB GLEW_GET_FUN(__glewPointParameterfARB) +#define glPointParameterfvARB GLEW_GET_FUN(__glewPointParameterfvARB) + +#define GLEW_ARB_point_parameters GLEW_GET_VAR(__GLEW_ARB_point_parameters) + +#endif /* GL_ARB_point_parameters */ + +/* -------------------------- GL_ARB_point_sprite -------------------------- */ + +#ifndef GL_ARB_point_sprite +#define GL_ARB_point_sprite 1 + +#define GL_POINT_SPRITE_ARB 0x8861 +#define GL_COORD_REPLACE_ARB 0x8862 + +#define GLEW_ARB_point_sprite GLEW_GET_VAR(__GLEW_ARB_point_sprite) + +#endif /* GL_ARB_point_sprite */ + +/* ---------------------- GL_ARB_polygon_offset_clamp ---------------------- */ + +#ifndef GL_ARB_polygon_offset_clamp +#define GL_ARB_polygon_offset_clamp 1 + +#define GL_POLYGON_OFFSET_CLAMP 0x8E1B + +typedef void (GLAPIENTRY * PFNGLPOLYGONOFFSETCLAMPPROC) (GLfloat factor, GLfloat units, GLfloat clamp); + +#define glPolygonOffsetClamp GLEW_GET_FUN(__glewPolygonOffsetClamp) + +#define GLEW_ARB_polygon_offset_clamp GLEW_GET_VAR(__GLEW_ARB_polygon_offset_clamp) + +#endif /* GL_ARB_polygon_offset_clamp */ + +/* ----------------------- GL_ARB_post_depth_coverage ---------------------- */ + +#ifndef GL_ARB_post_depth_coverage +#define GL_ARB_post_depth_coverage 1 + +#define GLEW_ARB_post_depth_coverage GLEW_GET_VAR(__GLEW_ARB_post_depth_coverage) + +#endif /* GL_ARB_post_depth_coverage */ + +/* --------------------- GL_ARB_program_interface_query -------------------- */ + +#ifndef GL_ARB_program_interface_query +#define GL_ARB_program_interface_query 1 + +#define GL_UNIFORM 0x92E1 +#define GL_UNIFORM_BLOCK 0x92E2 +#define GL_PROGRAM_INPUT 0x92E3 +#define GL_PROGRAM_OUTPUT 0x92E4 +#define GL_BUFFER_VARIABLE 0x92E5 +#define GL_SHADER_STORAGE_BLOCK 0x92E6 +#define GL_IS_PER_PATCH 0x92E7 +#define GL_VERTEX_SUBROUTINE 0x92E8 +#define GL_TESS_CONTROL_SUBROUTINE 0x92E9 +#define GL_TESS_EVALUATION_SUBROUTINE 0x92EA +#define GL_GEOMETRY_SUBROUTINE 0x92EB +#define GL_FRAGMENT_SUBROUTINE 0x92EC +#define GL_COMPUTE_SUBROUTINE 0x92ED +#define GL_VERTEX_SUBROUTINE_UNIFORM 0x92EE +#define GL_TESS_CONTROL_SUBROUTINE_UNIFORM 0x92EF +#define GL_TESS_EVALUATION_SUBROUTINE_UNIFORM 0x92F0 +#define GL_GEOMETRY_SUBROUTINE_UNIFORM 0x92F1 +#define GL_FRAGMENT_SUBROUTINE_UNIFORM 0x92F2 +#define GL_COMPUTE_SUBROUTINE_UNIFORM 0x92F3 +#define GL_TRANSFORM_FEEDBACK_VARYING 0x92F4 +#define GL_ACTIVE_RESOURCES 0x92F5 +#define GL_MAX_NAME_LENGTH 0x92F6 +#define GL_MAX_NUM_ACTIVE_VARIABLES 0x92F7 +#define GL_MAX_NUM_COMPATIBLE_SUBROUTINES 0x92F8 +#define GL_NAME_LENGTH 0x92F9 +#define GL_TYPE 0x92FA +#define GL_ARRAY_SIZE 0x92FB +#define GL_OFFSET 0x92FC +#define GL_BLOCK_INDEX 0x92FD +#define GL_ARRAY_STRIDE 0x92FE +#define GL_MATRIX_STRIDE 0x92FF +#define GL_IS_ROW_MAJOR 0x9300 +#define GL_ATOMIC_COUNTER_BUFFER_INDEX 0x9301 +#define GL_BUFFER_BINDING 0x9302 +#define GL_BUFFER_DATA_SIZE 0x9303 +#define GL_NUM_ACTIVE_VARIABLES 0x9304 +#define GL_ACTIVE_VARIABLES 0x9305 +#define GL_REFERENCED_BY_VERTEX_SHADER 0x9306 +#define GL_REFERENCED_BY_TESS_CONTROL_SHADER 0x9307 +#define GL_REFERENCED_BY_TESS_EVALUATION_SHADER 0x9308 +#define GL_REFERENCED_BY_GEOMETRY_SHADER 0x9309 +#define GL_REFERENCED_BY_FRAGMENT_SHADER 0x930A +#define GL_REFERENCED_BY_COMPUTE_SHADER 0x930B +#define GL_TOP_LEVEL_ARRAY_SIZE 0x930C +#define GL_TOP_LEVEL_ARRAY_STRIDE 0x930D +#define GL_LOCATION 0x930E +#define GL_LOCATION_INDEX 0x930F + +typedef void (GLAPIENTRY * PFNGLGETPROGRAMINTERFACEIVPROC) (GLuint program, GLenum programInterface, GLenum pname, GLint* params); +typedef GLuint (GLAPIENTRY * PFNGLGETPROGRAMRESOURCEINDEXPROC) (GLuint program, GLenum programInterface, const GLchar* name); +typedef GLint (GLAPIENTRY * PFNGLGETPROGRAMRESOURCELOCATIONPROC) (GLuint program, GLenum programInterface, const GLchar* name); +typedef GLint (GLAPIENTRY * PFNGLGETPROGRAMRESOURCELOCATIONINDEXPROC) (GLuint program, GLenum programInterface, const GLchar* name); +typedef void (GLAPIENTRY * PFNGLGETPROGRAMRESOURCENAMEPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei bufSize, GLsizei* length, GLchar *name); +typedef void (GLAPIENTRY * PFNGLGETPROGRAMRESOURCEIVPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum* props, GLsizei bufSize, GLsizei *length, GLint *params); + +#define glGetProgramInterfaceiv GLEW_GET_FUN(__glewGetProgramInterfaceiv) +#define glGetProgramResourceIndex GLEW_GET_FUN(__glewGetProgramResourceIndex) +#define glGetProgramResourceLocation GLEW_GET_FUN(__glewGetProgramResourceLocation) +#define glGetProgramResourceLocationIndex GLEW_GET_FUN(__glewGetProgramResourceLocationIndex) +#define glGetProgramResourceName GLEW_GET_FUN(__glewGetProgramResourceName) +#define glGetProgramResourceiv GLEW_GET_FUN(__glewGetProgramResourceiv) + +#define GLEW_ARB_program_interface_query GLEW_GET_VAR(__GLEW_ARB_program_interface_query) + +#endif /* GL_ARB_program_interface_query */ + +/* ------------------------ GL_ARB_provoking_vertex ------------------------ */ + +#ifndef GL_ARB_provoking_vertex +#define GL_ARB_provoking_vertex 1 + +#define GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION 0x8E4C +#define GL_FIRST_VERTEX_CONVENTION 0x8E4D +#define GL_LAST_VERTEX_CONVENTION 0x8E4E +#define GL_PROVOKING_VERTEX 0x8E4F + +typedef void (GLAPIENTRY * PFNGLPROVOKINGVERTEXPROC) (GLenum mode); + +#define glProvokingVertex GLEW_GET_FUN(__glewProvokingVertex) + +#define GLEW_ARB_provoking_vertex GLEW_GET_VAR(__GLEW_ARB_provoking_vertex) + +#endif /* GL_ARB_provoking_vertex */ + +/* ----------------------- GL_ARB_query_buffer_object ---------------------- */ + +#ifndef GL_ARB_query_buffer_object +#define GL_ARB_query_buffer_object 1 + +#define GL_QUERY_BUFFER_BARRIER_BIT 0x00008000 +#define GL_QUERY_BUFFER 0x9192 +#define GL_QUERY_BUFFER_BINDING 0x9193 +#define GL_QUERY_RESULT_NO_WAIT 0x9194 + +#define GLEW_ARB_query_buffer_object GLEW_GET_VAR(__GLEW_ARB_query_buffer_object) + +#endif /* GL_ARB_query_buffer_object */ + +/* ------------------ GL_ARB_robust_buffer_access_behavior ----------------- */ + +#ifndef GL_ARB_robust_buffer_access_behavior +#define GL_ARB_robust_buffer_access_behavior 1 + +#define GLEW_ARB_robust_buffer_access_behavior GLEW_GET_VAR(__GLEW_ARB_robust_buffer_access_behavior) + +#endif /* GL_ARB_robust_buffer_access_behavior */ + +/* --------------------------- GL_ARB_robustness --------------------------- */ + +#ifndef GL_ARB_robustness +#define GL_ARB_robustness 1 + +#define GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB 0x00000004 +#define GL_LOSE_CONTEXT_ON_RESET_ARB 0x8252 +#define GL_GUILTY_CONTEXT_RESET_ARB 0x8253 +#define GL_INNOCENT_CONTEXT_RESET_ARB 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET_ARB 0x8255 +#define GL_RESET_NOTIFICATION_STRATEGY_ARB 0x8256 +#define GL_NO_RESET_NOTIFICATION_ARB 0x8261 + +typedef GLenum (GLAPIENTRY * PFNGLGETGRAPHICSRESETSTATUSARBPROC) (void); +typedef void (GLAPIENTRY * PFNGLGETNCOLORTABLEARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void* table); +typedef void (GLAPIENTRY * PFNGLGETNCOMPRESSEDTEXIMAGEARBPROC) (GLenum target, GLint lod, GLsizei bufSize, void* img); +typedef void (GLAPIENTRY * PFNGLGETNCONVOLUTIONFILTERARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void* image); +typedef void (GLAPIENTRY * PFNGLGETNHISTOGRAMARBPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void* values); +typedef void (GLAPIENTRY * PFNGLGETNMAPDVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLdouble* v); +typedef void (GLAPIENTRY * PFNGLGETNMAPFVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLfloat* v); +typedef void (GLAPIENTRY * PFNGLGETNMAPIVARBPROC) (GLenum target, GLenum query, GLsizei bufSize, GLint* v); +typedef void (GLAPIENTRY * PFNGLGETNMINMAXARBPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void* values); +typedef void (GLAPIENTRY * PFNGLGETNPIXELMAPFVARBPROC) (GLenum map, GLsizei bufSize, GLfloat* values); +typedef void (GLAPIENTRY * PFNGLGETNPIXELMAPUIVARBPROC) (GLenum map, GLsizei bufSize, GLuint* values); +typedef void (GLAPIENTRY * PFNGLGETNPIXELMAPUSVARBPROC) (GLenum map, GLsizei bufSize, GLushort* values); +typedef void (GLAPIENTRY * PFNGLGETNPOLYGONSTIPPLEARBPROC) (GLsizei bufSize, GLubyte* pattern); +typedef void (GLAPIENTRY * PFNGLGETNSEPARABLEFILTERARBPROC) (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void* row, GLsizei columnBufSize, void*column, void*span); +typedef void (GLAPIENTRY * PFNGLGETNTEXIMAGEARBPROC) (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void* img); +typedef void (GLAPIENTRY * PFNGLGETNUNIFORMDVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLdouble* params); +typedef void (GLAPIENTRY * PFNGLGETNUNIFORMFVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETNUNIFORMIVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETNUNIFORMUIVARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint* params); +typedef void (GLAPIENTRY * PFNGLREADNPIXELSARBPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void* data); + +#define glGetGraphicsResetStatusARB GLEW_GET_FUN(__glewGetGraphicsResetStatusARB) +#define glGetnColorTableARB GLEW_GET_FUN(__glewGetnColorTableARB) +#define glGetnCompressedTexImageARB GLEW_GET_FUN(__glewGetnCompressedTexImageARB) +#define glGetnConvolutionFilterARB GLEW_GET_FUN(__glewGetnConvolutionFilterARB) +#define glGetnHistogramARB GLEW_GET_FUN(__glewGetnHistogramARB) +#define glGetnMapdvARB GLEW_GET_FUN(__glewGetnMapdvARB) +#define glGetnMapfvARB GLEW_GET_FUN(__glewGetnMapfvARB) +#define glGetnMapivARB GLEW_GET_FUN(__glewGetnMapivARB) +#define glGetnMinmaxARB GLEW_GET_FUN(__glewGetnMinmaxARB) +#define glGetnPixelMapfvARB GLEW_GET_FUN(__glewGetnPixelMapfvARB) +#define glGetnPixelMapuivARB GLEW_GET_FUN(__glewGetnPixelMapuivARB) +#define glGetnPixelMapusvARB GLEW_GET_FUN(__glewGetnPixelMapusvARB) +#define glGetnPolygonStippleARB GLEW_GET_FUN(__glewGetnPolygonStippleARB) +#define glGetnSeparableFilterARB GLEW_GET_FUN(__glewGetnSeparableFilterARB) +#define glGetnTexImageARB GLEW_GET_FUN(__glewGetnTexImageARB) +#define glGetnUniformdvARB GLEW_GET_FUN(__glewGetnUniformdvARB) +#define glGetnUniformfvARB GLEW_GET_FUN(__glewGetnUniformfvARB) +#define glGetnUniformivARB GLEW_GET_FUN(__glewGetnUniformivARB) +#define glGetnUniformuivARB GLEW_GET_FUN(__glewGetnUniformuivARB) +#define glReadnPixelsARB GLEW_GET_FUN(__glewReadnPixelsARB) + +#define GLEW_ARB_robustness GLEW_GET_VAR(__GLEW_ARB_robustness) + +#endif /* GL_ARB_robustness */ + +/* ---------------- GL_ARB_robustness_application_isolation ---------------- */ + +#ifndef GL_ARB_robustness_application_isolation +#define GL_ARB_robustness_application_isolation 1 + +#define GLEW_ARB_robustness_application_isolation GLEW_GET_VAR(__GLEW_ARB_robustness_application_isolation) + +#endif /* GL_ARB_robustness_application_isolation */ + +/* ---------------- GL_ARB_robustness_share_group_isolation ---------------- */ + +#ifndef GL_ARB_robustness_share_group_isolation +#define GL_ARB_robustness_share_group_isolation 1 + +#define GLEW_ARB_robustness_share_group_isolation GLEW_GET_VAR(__GLEW_ARB_robustness_share_group_isolation) + +#endif /* GL_ARB_robustness_share_group_isolation */ + +/* ------------------------ GL_ARB_sample_locations ------------------------ */ + +#ifndef GL_ARB_sample_locations +#define GL_ARB_sample_locations 1 + +#define GL_SAMPLE_LOCATION_ARB 0x8E50 +#define GL_SAMPLE_LOCATION_SUBPIXEL_BITS_ARB 0x933D +#define GL_SAMPLE_LOCATION_PIXEL_GRID_WIDTH_ARB 0x933E +#define GL_SAMPLE_LOCATION_PIXEL_GRID_HEIGHT_ARB 0x933F +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_TABLE_SIZE_ARB 0x9340 +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_ARB 0x9341 +#define GL_FRAMEBUFFER_PROGRAMMABLE_SAMPLE_LOCATIONS_ARB 0x9342 +#define GL_FRAMEBUFFER_SAMPLE_LOCATION_PIXEL_GRID_ARB 0x9343 + +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERSAMPLELOCATIONSFVARBPROC) (GLenum target, GLuint start, GLsizei count, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLNAMEDFRAMEBUFFERSAMPLELOCATIONSFVARBPROC) (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat* v); + +#define glFramebufferSampleLocationsfvARB GLEW_GET_FUN(__glewFramebufferSampleLocationsfvARB) +#define glNamedFramebufferSampleLocationsfvARB GLEW_GET_FUN(__glewNamedFramebufferSampleLocationsfvARB) + +#define GLEW_ARB_sample_locations GLEW_GET_VAR(__GLEW_ARB_sample_locations) + +#endif /* GL_ARB_sample_locations */ + +/* ------------------------- GL_ARB_sample_shading ------------------------- */ + +#ifndef GL_ARB_sample_shading +#define GL_ARB_sample_shading 1 + +#define GL_SAMPLE_SHADING_ARB 0x8C36 +#define GL_MIN_SAMPLE_SHADING_VALUE_ARB 0x8C37 + +typedef void (GLAPIENTRY * PFNGLMINSAMPLESHADINGARBPROC) (GLclampf value); + +#define glMinSampleShadingARB GLEW_GET_FUN(__glewMinSampleShadingARB) + +#define GLEW_ARB_sample_shading GLEW_GET_VAR(__GLEW_ARB_sample_shading) + +#endif /* GL_ARB_sample_shading */ + +/* ------------------------- GL_ARB_sampler_objects ------------------------ */ + +#ifndef GL_ARB_sampler_objects +#define GL_ARB_sampler_objects 1 + +#define GL_SAMPLER_BINDING 0x8919 + +typedef void (GLAPIENTRY * PFNGLBINDSAMPLERPROC) (GLuint unit, GLuint sampler); +typedef void (GLAPIENTRY * PFNGLDELETESAMPLERSPROC) (GLsizei count, const GLuint * samplers); +typedef void (GLAPIENTRY * PFNGLGENSAMPLERSPROC) (GLsizei count, GLuint* samplers); +typedef void (GLAPIENTRY * PFNGLGETSAMPLERPARAMETERIIVPROC) (GLuint sampler, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETSAMPLERPARAMETERIUIVPROC) (GLuint sampler, GLenum pname, GLuint* params); +typedef void (GLAPIENTRY * PFNGLGETSAMPLERPARAMETERFVPROC) (GLuint sampler, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETSAMPLERPARAMETERIVPROC) (GLuint sampler, GLenum pname, GLint* params); +typedef GLboolean (GLAPIENTRY * PFNGLISSAMPLERPROC) (GLuint sampler); +typedef void (GLAPIENTRY * PFNGLSAMPLERPARAMETERIIVPROC) (GLuint sampler, GLenum pname, const GLint* params); +typedef void (GLAPIENTRY * PFNGLSAMPLERPARAMETERIUIVPROC) (GLuint sampler, GLenum pname, const GLuint* params); +typedef void (GLAPIENTRY * PFNGLSAMPLERPARAMETERFPROC) (GLuint sampler, GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLSAMPLERPARAMETERFVPROC) (GLuint sampler, GLenum pname, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLSAMPLERPARAMETERIPROC) (GLuint sampler, GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLSAMPLERPARAMETERIVPROC) (GLuint sampler, GLenum pname, const GLint* params); + +#define glBindSampler GLEW_GET_FUN(__glewBindSampler) +#define glDeleteSamplers GLEW_GET_FUN(__glewDeleteSamplers) +#define glGenSamplers GLEW_GET_FUN(__glewGenSamplers) +#define glGetSamplerParameterIiv GLEW_GET_FUN(__glewGetSamplerParameterIiv) +#define glGetSamplerParameterIuiv GLEW_GET_FUN(__glewGetSamplerParameterIuiv) +#define glGetSamplerParameterfv GLEW_GET_FUN(__glewGetSamplerParameterfv) +#define glGetSamplerParameteriv GLEW_GET_FUN(__glewGetSamplerParameteriv) +#define glIsSampler GLEW_GET_FUN(__glewIsSampler) +#define glSamplerParameterIiv GLEW_GET_FUN(__glewSamplerParameterIiv) +#define glSamplerParameterIuiv GLEW_GET_FUN(__glewSamplerParameterIuiv) +#define glSamplerParameterf GLEW_GET_FUN(__glewSamplerParameterf) +#define glSamplerParameterfv GLEW_GET_FUN(__glewSamplerParameterfv) +#define glSamplerParameteri GLEW_GET_FUN(__glewSamplerParameteri) +#define glSamplerParameteriv GLEW_GET_FUN(__glewSamplerParameteriv) + +#define GLEW_ARB_sampler_objects GLEW_GET_VAR(__GLEW_ARB_sampler_objects) + +#endif /* GL_ARB_sampler_objects */ + +/* ------------------------ GL_ARB_seamless_cube_map ----------------------- */ + +#ifndef GL_ARB_seamless_cube_map +#define GL_ARB_seamless_cube_map 1 + +#define GL_TEXTURE_CUBE_MAP_SEAMLESS 0x884F + +#define GLEW_ARB_seamless_cube_map GLEW_GET_VAR(__GLEW_ARB_seamless_cube_map) + +#endif /* GL_ARB_seamless_cube_map */ + +/* ------------------ GL_ARB_seamless_cubemap_per_texture ------------------ */ + +#ifndef GL_ARB_seamless_cubemap_per_texture +#define GL_ARB_seamless_cubemap_per_texture 1 + +#define GL_TEXTURE_CUBE_MAP_SEAMLESS 0x884F + +#define GLEW_ARB_seamless_cubemap_per_texture GLEW_GET_VAR(__GLEW_ARB_seamless_cubemap_per_texture) + +#endif /* GL_ARB_seamless_cubemap_per_texture */ + +/* --------------------- GL_ARB_separate_shader_objects -------------------- */ + +#ifndef GL_ARB_separate_shader_objects +#define GL_ARB_separate_shader_objects 1 + +#define GL_VERTEX_SHADER_BIT 0x00000001 +#define GL_FRAGMENT_SHADER_BIT 0x00000002 +#define GL_GEOMETRY_SHADER_BIT 0x00000004 +#define GL_TESS_CONTROL_SHADER_BIT 0x00000008 +#define GL_TESS_EVALUATION_SHADER_BIT 0x00000010 +#define GL_PROGRAM_SEPARABLE 0x8258 +#define GL_ACTIVE_PROGRAM 0x8259 +#define GL_PROGRAM_PIPELINE_BINDING 0x825A +#define GL_ALL_SHADER_BITS 0xFFFFFFFF + +typedef void (GLAPIENTRY * PFNGLACTIVESHADERPROGRAMPROC) (GLuint pipeline, GLuint program); +typedef void (GLAPIENTRY * PFNGLBINDPROGRAMPIPELINEPROC) (GLuint pipeline); +typedef GLuint (GLAPIENTRY * PFNGLCREATESHADERPROGRAMVPROC) (GLenum type, GLsizei count, const GLchar * const * strings); +typedef void (GLAPIENTRY * PFNGLDELETEPROGRAMPIPELINESPROC) (GLsizei n, const GLuint* pipelines); +typedef void (GLAPIENTRY * PFNGLGENPROGRAMPIPELINESPROC) (GLsizei n, GLuint* pipelines); +typedef void (GLAPIENTRY * PFNGLGETPROGRAMPIPELINEINFOLOGPROC) (GLuint pipeline, GLsizei bufSize, GLsizei* length, GLchar *infoLog); +typedef void (GLAPIENTRY * PFNGLGETPROGRAMPIPELINEIVPROC) (GLuint pipeline, GLenum pname, GLint* params); +typedef GLboolean (GLAPIENTRY * PFNGLISPROGRAMPIPELINEPROC) (GLuint pipeline); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1DPROC) (GLuint program, GLint location, GLdouble x); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1FPROC) (GLuint program, GLint location, GLfloat x); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1IPROC) (GLuint program, GLint location, GLint x); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1IVPROC) (GLuint program, GLint location, GLsizei count, const GLint* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1UIPROC) (GLuint program, GLint location, GLuint x); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2DPROC) (GLuint program, GLint location, GLdouble x, GLdouble y); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2FPROC) (GLuint program, GLint location, GLfloat x, GLfloat y); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2IPROC) (GLuint program, GLint location, GLint x, GLint y); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2IVPROC) (GLuint program, GLint location, GLsizei count, const GLint* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2UIPROC) (GLuint program, GLint location, GLuint x, GLuint y); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3DPROC) (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3FPROC) (GLuint program, GLint location, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3IPROC) (GLuint program, GLint location, GLint x, GLint y, GLint z); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3IVPROC) (GLuint program, GLint location, GLsizei count, const GLint* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3UIPROC) (GLuint program, GLint location, GLuint x, GLuint y, GLuint z); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4DPROC) (GLuint program, GLint location, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4DVPROC) (GLuint program, GLint location, GLsizei count, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4FPROC) (GLuint program, GLint location, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4FVPROC) (GLuint program, GLint location, GLsizei count, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4IPROC) (GLuint program, GLint location, GLint x, GLint y, GLint z, GLint w); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4IVPROC) (GLuint program, GLint location, GLsizei count, const GLint* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4UIPROC) (GLuint program, GLint location, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4UIVPROC) (GLuint program, GLint location, GLsizei count, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX2X3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX2X3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX2X4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX2X4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX3X2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX3X2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX3X4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX3X4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX4DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX4FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX4X2DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX4X2FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX4X3DVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLdouble* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX4X3FVPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUSEPROGRAMSTAGESPROC) (GLuint pipeline, GLbitfield stages, GLuint program); +typedef void (GLAPIENTRY * PFNGLVALIDATEPROGRAMPIPELINEPROC) (GLuint pipeline); + +#define glActiveShaderProgram GLEW_GET_FUN(__glewActiveShaderProgram) +#define glBindProgramPipeline GLEW_GET_FUN(__glewBindProgramPipeline) +#define glCreateShaderProgramv GLEW_GET_FUN(__glewCreateShaderProgramv) +#define glDeleteProgramPipelines GLEW_GET_FUN(__glewDeleteProgramPipelines) +#define glGenProgramPipelines GLEW_GET_FUN(__glewGenProgramPipelines) +#define glGetProgramPipelineInfoLog GLEW_GET_FUN(__glewGetProgramPipelineInfoLog) +#define glGetProgramPipelineiv GLEW_GET_FUN(__glewGetProgramPipelineiv) +#define glIsProgramPipeline GLEW_GET_FUN(__glewIsProgramPipeline) +#define glProgramUniform1d GLEW_GET_FUN(__glewProgramUniform1d) +#define glProgramUniform1dv GLEW_GET_FUN(__glewProgramUniform1dv) +#define glProgramUniform1f GLEW_GET_FUN(__glewProgramUniform1f) +#define glProgramUniform1fv GLEW_GET_FUN(__glewProgramUniform1fv) +#define glProgramUniform1i GLEW_GET_FUN(__glewProgramUniform1i) +#define glProgramUniform1iv GLEW_GET_FUN(__glewProgramUniform1iv) +#define glProgramUniform1ui GLEW_GET_FUN(__glewProgramUniform1ui) +#define glProgramUniform1uiv GLEW_GET_FUN(__glewProgramUniform1uiv) +#define glProgramUniform2d GLEW_GET_FUN(__glewProgramUniform2d) +#define glProgramUniform2dv GLEW_GET_FUN(__glewProgramUniform2dv) +#define glProgramUniform2f GLEW_GET_FUN(__glewProgramUniform2f) +#define glProgramUniform2fv GLEW_GET_FUN(__glewProgramUniform2fv) +#define glProgramUniform2i GLEW_GET_FUN(__glewProgramUniform2i) +#define glProgramUniform2iv GLEW_GET_FUN(__glewProgramUniform2iv) +#define glProgramUniform2ui GLEW_GET_FUN(__glewProgramUniform2ui) +#define glProgramUniform2uiv GLEW_GET_FUN(__glewProgramUniform2uiv) +#define glProgramUniform3d GLEW_GET_FUN(__glewProgramUniform3d) +#define glProgramUniform3dv GLEW_GET_FUN(__glewProgramUniform3dv) +#define glProgramUniform3f GLEW_GET_FUN(__glewProgramUniform3f) +#define glProgramUniform3fv GLEW_GET_FUN(__glewProgramUniform3fv) +#define glProgramUniform3i GLEW_GET_FUN(__glewProgramUniform3i) +#define glProgramUniform3iv GLEW_GET_FUN(__glewProgramUniform3iv) +#define glProgramUniform3ui GLEW_GET_FUN(__glewProgramUniform3ui) +#define glProgramUniform3uiv GLEW_GET_FUN(__glewProgramUniform3uiv) +#define glProgramUniform4d GLEW_GET_FUN(__glewProgramUniform4d) +#define glProgramUniform4dv GLEW_GET_FUN(__glewProgramUniform4dv) +#define glProgramUniform4f GLEW_GET_FUN(__glewProgramUniform4f) +#define glProgramUniform4fv GLEW_GET_FUN(__glewProgramUniform4fv) +#define glProgramUniform4i GLEW_GET_FUN(__glewProgramUniform4i) +#define glProgramUniform4iv GLEW_GET_FUN(__glewProgramUniform4iv) +#define glProgramUniform4ui GLEW_GET_FUN(__glewProgramUniform4ui) +#define glProgramUniform4uiv GLEW_GET_FUN(__glewProgramUniform4uiv) +#define glProgramUniformMatrix2dv GLEW_GET_FUN(__glewProgramUniformMatrix2dv) +#define glProgramUniformMatrix2fv GLEW_GET_FUN(__glewProgramUniformMatrix2fv) +#define glProgramUniformMatrix2x3dv GLEW_GET_FUN(__glewProgramUniformMatrix2x3dv) +#define glProgramUniformMatrix2x3fv GLEW_GET_FUN(__glewProgramUniformMatrix2x3fv) +#define glProgramUniformMatrix2x4dv GLEW_GET_FUN(__glewProgramUniformMatrix2x4dv) +#define glProgramUniformMatrix2x4fv GLEW_GET_FUN(__glewProgramUniformMatrix2x4fv) +#define glProgramUniformMatrix3dv GLEW_GET_FUN(__glewProgramUniformMatrix3dv) +#define glProgramUniformMatrix3fv GLEW_GET_FUN(__glewProgramUniformMatrix3fv) +#define glProgramUniformMatrix3x2dv GLEW_GET_FUN(__glewProgramUniformMatrix3x2dv) +#define glProgramUniformMatrix3x2fv GLEW_GET_FUN(__glewProgramUniformMatrix3x2fv) +#define glProgramUniformMatrix3x4dv GLEW_GET_FUN(__glewProgramUniformMatrix3x4dv) +#define glProgramUniformMatrix3x4fv GLEW_GET_FUN(__glewProgramUniformMatrix3x4fv) +#define glProgramUniformMatrix4dv GLEW_GET_FUN(__glewProgramUniformMatrix4dv) +#define glProgramUniformMatrix4fv GLEW_GET_FUN(__glewProgramUniformMatrix4fv) +#define glProgramUniformMatrix4x2dv GLEW_GET_FUN(__glewProgramUniformMatrix4x2dv) +#define glProgramUniformMatrix4x2fv GLEW_GET_FUN(__glewProgramUniformMatrix4x2fv) +#define glProgramUniformMatrix4x3dv GLEW_GET_FUN(__glewProgramUniformMatrix4x3dv) +#define glProgramUniformMatrix4x3fv GLEW_GET_FUN(__glewProgramUniformMatrix4x3fv) +#define glUseProgramStages GLEW_GET_FUN(__glewUseProgramStages) +#define glValidateProgramPipeline GLEW_GET_FUN(__glewValidateProgramPipeline) + +#define GLEW_ARB_separate_shader_objects GLEW_GET_VAR(__GLEW_ARB_separate_shader_objects) + +#endif /* GL_ARB_separate_shader_objects */ + +/* -------------------- GL_ARB_shader_atomic_counter_ops ------------------- */ + +#ifndef GL_ARB_shader_atomic_counter_ops +#define GL_ARB_shader_atomic_counter_ops 1 + +#define GLEW_ARB_shader_atomic_counter_ops GLEW_GET_VAR(__GLEW_ARB_shader_atomic_counter_ops) + +#endif /* GL_ARB_shader_atomic_counter_ops */ + +/* --------------------- GL_ARB_shader_atomic_counters --------------------- */ + +#ifndef GL_ARB_shader_atomic_counters +#define GL_ARB_shader_atomic_counters 1 + +#define GL_ATOMIC_COUNTER_BUFFER 0x92C0 +#define GL_ATOMIC_COUNTER_BUFFER_BINDING 0x92C1 +#define GL_ATOMIC_COUNTER_BUFFER_START 0x92C2 +#define GL_ATOMIC_COUNTER_BUFFER_SIZE 0x92C3 +#define GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE 0x92C4 +#define GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS 0x92C5 +#define GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES 0x92C6 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER 0x92C7 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER 0x92C8 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER 0x92C9 +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER 0x92CA +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER 0x92CB +#define GL_MAX_VERTEX_ATOMIC_COUNTER_BUFFERS 0x92CC +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS 0x92CD +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS 0x92CE +#define GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS 0x92CF +#define GL_MAX_FRAGMENT_ATOMIC_COUNTER_BUFFERS 0x92D0 +#define GL_MAX_COMBINED_ATOMIC_COUNTER_BUFFERS 0x92D1 +#define GL_MAX_VERTEX_ATOMIC_COUNTERS 0x92D2 +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS 0x92D3 +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS 0x92D4 +#define GL_MAX_GEOMETRY_ATOMIC_COUNTERS 0x92D5 +#define GL_MAX_FRAGMENT_ATOMIC_COUNTERS 0x92D6 +#define GL_MAX_COMBINED_ATOMIC_COUNTERS 0x92D7 +#define GL_MAX_ATOMIC_COUNTER_BUFFER_SIZE 0x92D8 +#define GL_ACTIVE_ATOMIC_COUNTER_BUFFERS 0x92D9 +#define GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX 0x92DA +#define GL_UNSIGNED_INT_ATOMIC_COUNTER 0x92DB +#define GL_MAX_ATOMIC_COUNTER_BUFFER_BINDINGS 0x92DC + +typedef void (GLAPIENTRY * PFNGLGETACTIVEATOMICCOUNTERBUFFERIVPROC) (GLuint program, GLuint bufferIndex, GLenum pname, GLint* params); + +#define glGetActiveAtomicCounterBufferiv GLEW_GET_FUN(__glewGetActiveAtomicCounterBufferiv) + +#define GLEW_ARB_shader_atomic_counters GLEW_GET_VAR(__GLEW_ARB_shader_atomic_counters) + +#endif /* GL_ARB_shader_atomic_counters */ + +/* -------------------------- GL_ARB_shader_ballot ------------------------- */ + +#ifndef GL_ARB_shader_ballot +#define GL_ARB_shader_ballot 1 + +#define GLEW_ARB_shader_ballot GLEW_GET_VAR(__GLEW_ARB_shader_ballot) + +#endif /* GL_ARB_shader_ballot */ + +/* ----------------------- GL_ARB_shader_bit_encoding ---------------------- */ + +#ifndef GL_ARB_shader_bit_encoding +#define GL_ARB_shader_bit_encoding 1 + +#define GLEW_ARB_shader_bit_encoding GLEW_GET_VAR(__GLEW_ARB_shader_bit_encoding) + +#endif /* GL_ARB_shader_bit_encoding */ + +/* -------------------------- GL_ARB_shader_clock -------------------------- */ + +#ifndef GL_ARB_shader_clock +#define GL_ARB_shader_clock 1 + +#define GLEW_ARB_shader_clock GLEW_GET_VAR(__GLEW_ARB_shader_clock) + +#endif /* GL_ARB_shader_clock */ + +/* --------------------- GL_ARB_shader_draw_parameters --------------------- */ + +#ifndef GL_ARB_shader_draw_parameters +#define GL_ARB_shader_draw_parameters 1 + +#define GLEW_ARB_shader_draw_parameters GLEW_GET_VAR(__GLEW_ARB_shader_draw_parameters) + +#endif /* GL_ARB_shader_draw_parameters */ + +/* ------------------------ GL_ARB_shader_group_vote ----------------------- */ + +#ifndef GL_ARB_shader_group_vote +#define GL_ARB_shader_group_vote 1 + +#define GLEW_ARB_shader_group_vote GLEW_GET_VAR(__GLEW_ARB_shader_group_vote) + +#endif /* GL_ARB_shader_group_vote */ + +/* --------------------- GL_ARB_shader_image_load_store -------------------- */ + +#ifndef GL_ARB_shader_image_load_store +#define GL_ARB_shader_image_load_store 1 + +#define GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT 0x00000001 +#define GL_ELEMENT_ARRAY_BARRIER_BIT 0x00000002 +#define GL_UNIFORM_BARRIER_BIT 0x00000004 +#define GL_TEXTURE_FETCH_BARRIER_BIT 0x00000008 +#define GL_SHADER_IMAGE_ACCESS_BARRIER_BIT 0x00000020 +#define GL_COMMAND_BARRIER_BIT 0x00000040 +#define GL_PIXEL_BUFFER_BARRIER_BIT 0x00000080 +#define GL_TEXTURE_UPDATE_BARRIER_BIT 0x00000100 +#define GL_BUFFER_UPDATE_BARRIER_BIT 0x00000200 +#define GL_FRAMEBUFFER_BARRIER_BIT 0x00000400 +#define GL_TRANSFORM_FEEDBACK_BARRIER_BIT 0x00000800 +#define GL_ATOMIC_COUNTER_BARRIER_BIT 0x00001000 +#define GL_MAX_IMAGE_UNITS 0x8F38 +#define GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS 0x8F39 +#define GL_IMAGE_BINDING_NAME 0x8F3A +#define GL_IMAGE_BINDING_LEVEL 0x8F3B +#define GL_IMAGE_BINDING_LAYERED 0x8F3C +#define GL_IMAGE_BINDING_LAYER 0x8F3D +#define GL_IMAGE_BINDING_ACCESS 0x8F3E +#define GL_IMAGE_1D 0x904C +#define GL_IMAGE_2D 0x904D +#define GL_IMAGE_3D 0x904E +#define GL_IMAGE_2D_RECT 0x904F +#define GL_IMAGE_CUBE 0x9050 +#define GL_IMAGE_BUFFER 0x9051 +#define GL_IMAGE_1D_ARRAY 0x9052 +#define GL_IMAGE_2D_ARRAY 0x9053 +#define GL_IMAGE_CUBE_MAP_ARRAY 0x9054 +#define GL_IMAGE_2D_MULTISAMPLE 0x9055 +#define GL_IMAGE_2D_MULTISAMPLE_ARRAY 0x9056 +#define GL_INT_IMAGE_1D 0x9057 +#define GL_INT_IMAGE_2D 0x9058 +#define GL_INT_IMAGE_3D 0x9059 +#define GL_INT_IMAGE_2D_RECT 0x905A +#define GL_INT_IMAGE_CUBE 0x905B +#define GL_INT_IMAGE_BUFFER 0x905C +#define GL_INT_IMAGE_1D_ARRAY 0x905D +#define GL_INT_IMAGE_2D_ARRAY 0x905E +#define GL_INT_IMAGE_CUBE_MAP_ARRAY 0x905F +#define GL_INT_IMAGE_2D_MULTISAMPLE 0x9060 +#define GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY 0x9061 +#define GL_UNSIGNED_INT_IMAGE_1D 0x9062 +#define GL_UNSIGNED_INT_IMAGE_2D 0x9063 +#define GL_UNSIGNED_INT_IMAGE_3D 0x9064 +#define GL_UNSIGNED_INT_IMAGE_2D_RECT 0x9065 +#define GL_UNSIGNED_INT_IMAGE_CUBE 0x9066 +#define GL_UNSIGNED_INT_IMAGE_BUFFER 0x9067 +#define GL_UNSIGNED_INT_IMAGE_1D_ARRAY 0x9068 +#define GL_UNSIGNED_INT_IMAGE_2D_ARRAY 0x9069 +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY 0x906A +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE 0x906B +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY 0x906C +#define GL_MAX_IMAGE_SAMPLES 0x906D +#define GL_IMAGE_BINDING_FORMAT 0x906E +#define GL_IMAGE_FORMAT_COMPATIBILITY_TYPE 0x90C7 +#define GL_IMAGE_FORMAT_COMPATIBILITY_BY_SIZE 0x90C8 +#define GL_IMAGE_FORMAT_COMPATIBILITY_BY_CLASS 0x90C9 +#define GL_MAX_VERTEX_IMAGE_UNIFORMS 0x90CA +#define GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS 0x90CB +#define GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS 0x90CC +#define GL_MAX_GEOMETRY_IMAGE_UNIFORMS 0x90CD +#define GL_MAX_FRAGMENT_IMAGE_UNIFORMS 0x90CE +#define GL_MAX_COMBINED_IMAGE_UNIFORMS 0x90CF +#define GL_ALL_BARRIER_BITS 0xFFFFFFFF + +typedef void (GLAPIENTRY * PFNGLBINDIMAGETEXTUREPROC) (GLuint unit, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLenum format); +typedef void (GLAPIENTRY * PFNGLMEMORYBARRIERPROC) (GLbitfield barriers); + +#define glBindImageTexture GLEW_GET_FUN(__glewBindImageTexture) +#define glMemoryBarrier GLEW_GET_FUN(__glewMemoryBarrier) + +#define GLEW_ARB_shader_image_load_store GLEW_GET_VAR(__GLEW_ARB_shader_image_load_store) + +#endif /* GL_ARB_shader_image_load_store */ + +/* ------------------------ GL_ARB_shader_image_size ----------------------- */ + +#ifndef GL_ARB_shader_image_size +#define GL_ARB_shader_image_size 1 + +#define GLEW_ARB_shader_image_size GLEW_GET_VAR(__GLEW_ARB_shader_image_size) + +#endif /* GL_ARB_shader_image_size */ + +/* ------------------------- GL_ARB_shader_objects ------------------------- */ + +#ifndef GL_ARB_shader_objects +#define GL_ARB_shader_objects 1 + +#define GL_PROGRAM_OBJECT_ARB 0x8B40 +#define GL_SHADER_OBJECT_ARB 0x8B48 +#define GL_OBJECT_TYPE_ARB 0x8B4E +#define GL_OBJECT_SUBTYPE_ARB 0x8B4F +#define GL_FLOAT_VEC2_ARB 0x8B50 +#define GL_FLOAT_VEC3_ARB 0x8B51 +#define GL_FLOAT_VEC4_ARB 0x8B52 +#define GL_INT_VEC2_ARB 0x8B53 +#define GL_INT_VEC3_ARB 0x8B54 +#define GL_INT_VEC4_ARB 0x8B55 +#define GL_BOOL_ARB 0x8B56 +#define GL_BOOL_VEC2_ARB 0x8B57 +#define GL_BOOL_VEC3_ARB 0x8B58 +#define GL_BOOL_VEC4_ARB 0x8B59 +#define GL_FLOAT_MAT2_ARB 0x8B5A +#define GL_FLOAT_MAT3_ARB 0x8B5B +#define GL_FLOAT_MAT4_ARB 0x8B5C +#define GL_SAMPLER_1D_ARB 0x8B5D +#define GL_SAMPLER_2D_ARB 0x8B5E +#define GL_SAMPLER_3D_ARB 0x8B5F +#define GL_SAMPLER_CUBE_ARB 0x8B60 +#define GL_SAMPLER_1D_SHADOW_ARB 0x8B61 +#define GL_SAMPLER_2D_SHADOW_ARB 0x8B62 +#define GL_SAMPLER_2D_RECT_ARB 0x8B63 +#define GL_SAMPLER_2D_RECT_SHADOW_ARB 0x8B64 +#define GL_OBJECT_DELETE_STATUS_ARB 0x8B80 +#define GL_OBJECT_COMPILE_STATUS_ARB 0x8B81 +#define GL_OBJECT_LINK_STATUS_ARB 0x8B82 +#define GL_OBJECT_VALIDATE_STATUS_ARB 0x8B83 +#define GL_OBJECT_INFO_LOG_LENGTH_ARB 0x8B84 +#define GL_OBJECT_ATTACHED_OBJECTS_ARB 0x8B85 +#define GL_OBJECT_ACTIVE_UNIFORMS_ARB 0x8B86 +#define GL_OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB 0x8B87 +#define GL_OBJECT_SHADER_SOURCE_LENGTH_ARB 0x8B88 + +typedef char GLcharARB; +typedef unsigned int GLhandleARB; + +typedef void (GLAPIENTRY * PFNGLATTACHOBJECTARBPROC) (GLhandleARB containerObj, GLhandleARB obj); +typedef void (GLAPIENTRY * PFNGLCOMPILESHADERARBPROC) (GLhandleARB shaderObj); +typedef GLhandleARB (GLAPIENTRY * PFNGLCREATEPROGRAMOBJECTARBPROC) (void); +typedef GLhandleARB (GLAPIENTRY * PFNGLCREATESHADEROBJECTARBPROC) (GLenum shaderType); +typedef void (GLAPIENTRY * PFNGLDELETEOBJECTARBPROC) (GLhandleARB obj); +typedef void (GLAPIENTRY * PFNGLDETACHOBJECTARBPROC) (GLhandleARB containerObj, GLhandleARB attachedObj); +typedef void (GLAPIENTRY * PFNGLGETACTIVEUNIFORMARBPROC) (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei* length, GLint *size, GLenum *type, GLcharARB *name); +typedef void (GLAPIENTRY * PFNGLGETATTACHEDOBJECTSARBPROC) (GLhandleARB containerObj, GLsizei maxCount, GLsizei* count, GLhandleARB *obj); +typedef GLhandleARB (GLAPIENTRY * PFNGLGETHANDLEARBPROC) (GLenum pname); +typedef void (GLAPIENTRY * PFNGLGETINFOLOGARBPROC) (GLhandleARB obj, GLsizei maxLength, GLsizei* length, GLcharARB *infoLog); +typedef void (GLAPIENTRY * PFNGLGETOBJECTPARAMETERFVARBPROC) (GLhandleARB obj, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETOBJECTPARAMETERIVARBPROC) (GLhandleARB obj, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETSHADERSOURCEARBPROC) (GLhandleARB obj, GLsizei maxLength, GLsizei* length, GLcharARB *source); +typedef GLint (GLAPIENTRY * PFNGLGETUNIFORMLOCATIONARBPROC) (GLhandleARB programObj, const GLcharARB* name); +typedef void (GLAPIENTRY * PFNGLGETUNIFORMFVARBPROC) (GLhandleARB programObj, GLint location, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETUNIFORMIVARBPROC) (GLhandleARB programObj, GLint location, GLint* params); +typedef void (GLAPIENTRY * PFNGLLINKPROGRAMARBPROC) (GLhandleARB programObj); +typedef void (GLAPIENTRY * PFNGLSHADERSOURCEARBPROC) (GLhandleARB shaderObj, GLsizei count, const GLcharARB ** string, const GLint *length); +typedef void (GLAPIENTRY * PFNGLUNIFORM1FARBPROC) (GLint location, GLfloat v0); +typedef void (GLAPIENTRY * PFNGLUNIFORM1FVARBPROC) (GLint location, GLsizei count, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM1IARBPROC) (GLint location, GLint v0); +typedef void (GLAPIENTRY * PFNGLUNIFORM1IVARBPROC) (GLint location, GLsizei count, const GLint* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM2FARBPROC) (GLint location, GLfloat v0, GLfloat v1); +typedef void (GLAPIENTRY * PFNGLUNIFORM2FVARBPROC) (GLint location, GLsizei count, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM2IARBPROC) (GLint location, GLint v0, GLint v1); +typedef void (GLAPIENTRY * PFNGLUNIFORM2IVARBPROC) (GLint location, GLsizei count, const GLint* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM3FARBPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (GLAPIENTRY * PFNGLUNIFORM3FVARBPROC) (GLint location, GLsizei count, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM3IARBPROC) (GLint location, GLint v0, GLint v1, GLint v2); +typedef void (GLAPIENTRY * PFNGLUNIFORM3IVARBPROC) (GLint location, GLsizei count, const GLint* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM4FARBPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (GLAPIENTRY * PFNGLUNIFORM4FVARBPROC) (GLint location, GLsizei count, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM4IARBPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (GLAPIENTRY * PFNGLUNIFORM4IVARBPROC) (GLint location, GLsizei count, const GLint* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX2FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX3FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX4FVARBPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUSEPROGRAMOBJECTARBPROC) (GLhandleARB programObj); +typedef void (GLAPIENTRY * PFNGLVALIDATEPROGRAMARBPROC) (GLhandleARB programObj); + +#define glAttachObjectARB GLEW_GET_FUN(__glewAttachObjectARB) +#define glCompileShaderARB GLEW_GET_FUN(__glewCompileShaderARB) +#define glCreateProgramObjectARB GLEW_GET_FUN(__glewCreateProgramObjectARB) +#define glCreateShaderObjectARB GLEW_GET_FUN(__glewCreateShaderObjectARB) +#define glDeleteObjectARB GLEW_GET_FUN(__glewDeleteObjectARB) +#define glDetachObjectARB GLEW_GET_FUN(__glewDetachObjectARB) +#define glGetActiveUniformARB GLEW_GET_FUN(__glewGetActiveUniformARB) +#define glGetAttachedObjectsARB GLEW_GET_FUN(__glewGetAttachedObjectsARB) +#define glGetHandleARB GLEW_GET_FUN(__glewGetHandleARB) +#define glGetInfoLogARB GLEW_GET_FUN(__glewGetInfoLogARB) +#define glGetObjectParameterfvARB GLEW_GET_FUN(__glewGetObjectParameterfvARB) +#define glGetObjectParameterivARB GLEW_GET_FUN(__glewGetObjectParameterivARB) +#define glGetShaderSourceARB GLEW_GET_FUN(__glewGetShaderSourceARB) +#define glGetUniformLocationARB GLEW_GET_FUN(__glewGetUniformLocationARB) +#define glGetUniformfvARB GLEW_GET_FUN(__glewGetUniformfvARB) +#define glGetUniformivARB GLEW_GET_FUN(__glewGetUniformivARB) +#define glLinkProgramARB GLEW_GET_FUN(__glewLinkProgramARB) +#define glShaderSourceARB GLEW_GET_FUN(__glewShaderSourceARB) +#define glUniform1fARB GLEW_GET_FUN(__glewUniform1fARB) +#define glUniform1fvARB GLEW_GET_FUN(__glewUniform1fvARB) +#define glUniform1iARB GLEW_GET_FUN(__glewUniform1iARB) +#define glUniform1ivARB GLEW_GET_FUN(__glewUniform1ivARB) +#define glUniform2fARB GLEW_GET_FUN(__glewUniform2fARB) +#define glUniform2fvARB GLEW_GET_FUN(__glewUniform2fvARB) +#define glUniform2iARB GLEW_GET_FUN(__glewUniform2iARB) +#define glUniform2ivARB GLEW_GET_FUN(__glewUniform2ivARB) +#define glUniform3fARB GLEW_GET_FUN(__glewUniform3fARB) +#define glUniform3fvARB GLEW_GET_FUN(__glewUniform3fvARB) +#define glUniform3iARB GLEW_GET_FUN(__glewUniform3iARB) +#define glUniform3ivARB GLEW_GET_FUN(__glewUniform3ivARB) +#define glUniform4fARB GLEW_GET_FUN(__glewUniform4fARB) +#define glUniform4fvARB GLEW_GET_FUN(__glewUniform4fvARB) +#define glUniform4iARB GLEW_GET_FUN(__glewUniform4iARB) +#define glUniform4ivARB GLEW_GET_FUN(__glewUniform4ivARB) +#define glUniformMatrix2fvARB GLEW_GET_FUN(__glewUniformMatrix2fvARB) +#define glUniformMatrix3fvARB GLEW_GET_FUN(__glewUniformMatrix3fvARB) +#define glUniformMatrix4fvARB GLEW_GET_FUN(__glewUniformMatrix4fvARB) +#define glUseProgramObjectARB GLEW_GET_FUN(__glewUseProgramObjectARB) +#define glValidateProgramARB GLEW_GET_FUN(__glewValidateProgramARB) + +#define GLEW_ARB_shader_objects GLEW_GET_VAR(__GLEW_ARB_shader_objects) + +#endif /* GL_ARB_shader_objects */ + +/* ------------------------ GL_ARB_shader_precision ------------------------ */ + +#ifndef GL_ARB_shader_precision +#define GL_ARB_shader_precision 1 + +#define GLEW_ARB_shader_precision GLEW_GET_VAR(__GLEW_ARB_shader_precision) + +#endif /* GL_ARB_shader_precision */ + +/* ---------------------- GL_ARB_shader_stencil_export --------------------- */ + +#ifndef GL_ARB_shader_stencil_export +#define GL_ARB_shader_stencil_export 1 + +#define GLEW_ARB_shader_stencil_export GLEW_GET_VAR(__GLEW_ARB_shader_stencil_export) + +#endif /* GL_ARB_shader_stencil_export */ + +/* ------------------ GL_ARB_shader_storage_buffer_object ------------------ */ + +#ifndef GL_ARB_shader_storage_buffer_object +#define GL_ARB_shader_storage_buffer_object 1 + +#define GL_SHADER_STORAGE_BARRIER_BIT 0x2000 +#define GL_MAX_COMBINED_SHADER_OUTPUT_RESOURCES 0x8F39 +#define GL_SHADER_STORAGE_BUFFER 0x90D2 +#define GL_SHADER_STORAGE_BUFFER_BINDING 0x90D3 +#define GL_SHADER_STORAGE_BUFFER_START 0x90D4 +#define GL_SHADER_STORAGE_BUFFER_SIZE 0x90D5 +#define GL_MAX_VERTEX_SHADER_STORAGE_BLOCKS 0x90D6 +#define GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS 0x90D7 +#define GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS 0x90D8 +#define GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS 0x90D9 +#define GL_MAX_FRAGMENT_SHADER_STORAGE_BLOCKS 0x90DA +#define GL_MAX_COMPUTE_SHADER_STORAGE_BLOCKS 0x90DB +#define GL_MAX_COMBINED_SHADER_STORAGE_BLOCKS 0x90DC +#define GL_MAX_SHADER_STORAGE_BUFFER_BINDINGS 0x90DD +#define GL_MAX_SHADER_STORAGE_BLOCK_SIZE 0x90DE +#define GL_SHADER_STORAGE_BUFFER_OFFSET_ALIGNMENT 0x90DF + +typedef void (GLAPIENTRY * PFNGLSHADERSTORAGEBLOCKBINDINGPROC) (GLuint program, GLuint storageBlockIndex, GLuint storageBlockBinding); + +#define glShaderStorageBlockBinding GLEW_GET_FUN(__glewShaderStorageBlockBinding) + +#define GLEW_ARB_shader_storage_buffer_object GLEW_GET_VAR(__GLEW_ARB_shader_storage_buffer_object) + +#endif /* GL_ARB_shader_storage_buffer_object */ + +/* ------------------------ GL_ARB_shader_subroutine ----------------------- */ + +#ifndef GL_ARB_shader_subroutine +#define GL_ARB_shader_subroutine 1 + +#define GL_ACTIVE_SUBROUTINES 0x8DE5 +#define GL_ACTIVE_SUBROUTINE_UNIFORMS 0x8DE6 +#define GL_MAX_SUBROUTINES 0x8DE7 +#define GL_MAX_SUBROUTINE_UNIFORM_LOCATIONS 0x8DE8 +#define GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS 0x8E47 +#define GL_ACTIVE_SUBROUTINE_MAX_LENGTH 0x8E48 +#define GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH 0x8E49 +#define GL_NUM_COMPATIBLE_SUBROUTINES 0x8E4A +#define GL_COMPATIBLE_SUBROUTINES 0x8E4B + +typedef void (GLAPIENTRY * PFNGLGETACTIVESUBROUTINENAMEPROC) (GLuint program, GLenum shadertype, GLuint index, GLsizei bufsize, GLsizei* length, GLchar *name); +typedef void (GLAPIENTRY * PFNGLGETACTIVESUBROUTINEUNIFORMNAMEPROC) (GLuint program, GLenum shadertype, GLuint index, GLsizei bufsize, GLsizei* length, GLchar *name); +typedef void (GLAPIENTRY * PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC) (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint* values); +typedef void (GLAPIENTRY * PFNGLGETPROGRAMSTAGEIVPROC) (GLuint program, GLenum shadertype, GLenum pname, GLint* values); +typedef GLuint (GLAPIENTRY * PFNGLGETSUBROUTINEINDEXPROC) (GLuint program, GLenum shadertype, const GLchar* name); +typedef GLint (GLAPIENTRY * PFNGLGETSUBROUTINEUNIFORMLOCATIONPROC) (GLuint program, GLenum shadertype, const GLchar* name); +typedef void (GLAPIENTRY * PFNGLGETUNIFORMSUBROUTINEUIVPROC) (GLenum shadertype, GLint location, GLuint* params); +typedef void (GLAPIENTRY * PFNGLUNIFORMSUBROUTINESUIVPROC) (GLenum shadertype, GLsizei count, const GLuint* indices); + +#define glGetActiveSubroutineName GLEW_GET_FUN(__glewGetActiveSubroutineName) +#define glGetActiveSubroutineUniformName GLEW_GET_FUN(__glewGetActiveSubroutineUniformName) +#define glGetActiveSubroutineUniformiv GLEW_GET_FUN(__glewGetActiveSubroutineUniformiv) +#define glGetProgramStageiv GLEW_GET_FUN(__glewGetProgramStageiv) +#define glGetSubroutineIndex GLEW_GET_FUN(__glewGetSubroutineIndex) +#define glGetSubroutineUniformLocation GLEW_GET_FUN(__glewGetSubroutineUniformLocation) +#define glGetUniformSubroutineuiv GLEW_GET_FUN(__glewGetUniformSubroutineuiv) +#define glUniformSubroutinesuiv GLEW_GET_FUN(__glewUniformSubroutinesuiv) + +#define GLEW_ARB_shader_subroutine GLEW_GET_VAR(__GLEW_ARB_shader_subroutine) + +#endif /* GL_ARB_shader_subroutine */ + +/* ------------------ GL_ARB_shader_texture_image_samples ------------------ */ + +#ifndef GL_ARB_shader_texture_image_samples +#define GL_ARB_shader_texture_image_samples 1 + +#define GLEW_ARB_shader_texture_image_samples GLEW_GET_VAR(__GLEW_ARB_shader_texture_image_samples) + +#endif /* GL_ARB_shader_texture_image_samples */ + +/* ----------------------- GL_ARB_shader_texture_lod ----------------------- */ + +#ifndef GL_ARB_shader_texture_lod +#define GL_ARB_shader_texture_lod 1 + +#define GLEW_ARB_shader_texture_lod GLEW_GET_VAR(__GLEW_ARB_shader_texture_lod) + +#endif /* GL_ARB_shader_texture_lod */ + +/* ------------------- GL_ARB_shader_viewport_layer_array ------------------ */ + +#ifndef GL_ARB_shader_viewport_layer_array +#define GL_ARB_shader_viewport_layer_array 1 + +#define GLEW_ARB_shader_viewport_layer_array GLEW_GET_VAR(__GLEW_ARB_shader_viewport_layer_array) + +#endif /* GL_ARB_shader_viewport_layer_array */ + +/* ---------------------- GL_ARB_shading_language_100 ---------------------- */ + +#ifndef GL_ARB_shading_language_100 +#define GL_ARB_shading_language_100 1 + +#define GL_SHADING_LANGUAGE_VERSION_ARB 0x8B8C + +#define GLEW_ARB_shading_language_100 GLEW_GET_VAR(__GLEW_ARB_shading_language_100) + +#endif /* GL_ARB_shading_language_100 */ + +/* -------------------- GL_ARB_shading_language_420pack -------------------- */ + +#ifndef GL_ARB_shading_language_420pack +#define GL_ARB_shading_language_420pack 1 + +#define GLEW_ARB_shading_language_420pack GLEW_GET_VAR(__GLEW_ARB_shading_language_420pack) + +#endif /* GL_ARB_shading_language_420pack */ + +/* -------------------- GL_ARB_shading_language_include -------------------- */ + +#ifndef GL_ARB_shading_language_include +#define GL_ARB_shading_language_include 1 + +#define GL_SHADER_INCLUDE_ARB 0x8DAE +#define GL_NAMED_STRING_LENGTH_ARB 0x8DE9 +#define GL_NAMED_STRING_TYPE_ARB 0x8DEA + +typedef void (GLAPIENTRY * PFNGLCOMPILESHADERINCLUDEARBPROC) (GLuint shader, GLsizei count, const GLchar* const *path, const GLint *length); +typedef void (GLAPIENTRY * PFNGLDELETENAMEDSTRINGARBPROC) (GLint namelen, const GLchar* name); +typedef void (GLAPIENTRY * PFNGLGETNAMEDSTRINGARBPROC) (GLint namelen, const GLchar* name, GLsizei bufSize, GLint *stringlen, GLchar *string); +typedef void (GLAPIENTRY * PFNGLGETNAMEDSTRINGIVARBPROC) (GLint namelen, const GLchar* name, GLenum pname, GLint *params); +typedef GLboolean (GLAPIENTRY * PFNGLISNAMEDSTRINGARBPROC) (GLint namelen, const GLchar* name); +typedef void (GLAPIENTRY * PFNGLNAMEDSTRINGARBPROC) (GLenum type, GLint namelen, const GLchar* name, GLint stringlen, const GLchar *string); + +#define glCompileShaderIncludeARB GLEW_GET_FUN(__glewCompileShaderIncludeARB) +#define glDeleteNamedStringARB GLEW_GET_FUN(__glewDeleteNamedStringARB) +#define glGetNamedStringARB GLEW_GET_FUN(__glewGetNamedStringARB) +#define glGetNamedStringivARB GLEW_GET_FUN(__glewGetNamedStringivARB) +#define glIsNamedStringARB GLEW_GET_FUN(__glewIsNamedStringARB) +#define glNamedStringARB GLEW_GET_FUN(__glewNamedStringARB) + +#define GLEW_ARB_shading_language_include GLEW_GET_VAR(__GLEW_ARB_shading_language_include) + +#endif /* GL_ARB_shading_language_include */ + +/* -------------------- GL_ARB_shading_language_packing -------------------- */ + +#ifndef GL_ARB_shading_language_packing +#define GL_ARB_shading_language_packing 1 + +#define GLEW_ARB_shading_language_packing GLEW_GET_VAR(__GLEW_ARB_shading_language_packing) + +#endif /* GL_ARB_shading_language_packing */ + +/* ----------------------------- GL_ARB_shadow ----------------------------- */ + +#ifndef GL_ARB_shadow +#define GL_ARB_shadow 1 + +#define GL_TEXTURE_COMPARE_MODE_ARB 0x884C +#define GL_TEXTURE_COMPARE_FUNC_ARB 0x884D +#define GL_COMPARE_R_TO_TEXTURE_ARB 0x884E + +#define GLEW_ARB_shadow GLEW_GET_VAR(__GLEW_ARB_shadow) + +#endif /* GL_ARB_shadow */ + +/* ------------------------- GL_ARB_shadow_ambient ------------------------- */ + +#ifndef GL_ARB_shadow_ambient +#define GL_ARB_shadow_ambient 1 + +#define GL_TEXTURE_COMPARE_FAIL_VALUE_ARB 0x80BF + +#define GLEW_ARB_shadow_ambient GLEW_GET_VAR(__GLEW_ARB_shadow_ambient) + +#endif /* GL_ARB_shadow_ambient */ + +/* -------------------------- GL_ARB_sparse_buffer ------------------------- */ + +#ifndef GL_ARB_sparse_buffer +#define GL_ARB_sparse_buffer 1 + +#define GL_SPARSE_STORAGE_BIT_ARB 0x0400 +#define GL_SPARSE_BUFFER_PAGE_SIZE_ARB 0x82F8 + +typedef void (GLAPIENTRY * PFNGLBUFFERPAGECOMMITMENTARBPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLboolean commit); + +#define glBufferPageCommitmentARB GLEW_GET_FUN(__glewBufferPageCommitmentARB) + +#define GLEW_ARB_sparse_buffer GLEW_GET_VAR(__GLEW_ARB_sparse_buffer) + +#endif /* GL_ARB_sparse_buffer */ + +/* ------------------------- GL_ARB_sparse_texture ------------------------- */ + +#ifndef GL_ARB_sparse_texture +#define GL_ARB_sparse_texture 1 + +#define GL_VIRTUAL_PAGE_SIZE_X_ARB 0x9195 +#define GL_VIRTUAL_PAGE_SIZE_Y_ARB 0x9196 +#define GL_VIRTUAL_PAGE_SIZE_Z_ARB 0x9197 +#define GL_MAX_SPARSE_TEXTURE_SIZE_ARB 0x9198 +#define GL_MAX_SPARSE_3D_TEXTURE_SIZE_ARB 0x9199 +#define GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS_ARB 0x919A +#define GL_TEXTURE_SPARSE_ARB 0x91A6 +#define GL_VIRTUAL_PAGE_SIZE_INDEX_ARB 0x91A7 +#define GL_NUM_VIRTUAL_PAGE_SIZES_ARB 0x91A8 +#define GL_SPARSE_TEXTURE_FULL_ARRAY_CUBE_MIPMAPS_ARB 0x91A9 +#define GL_NUM_SPARSE_LEVELS_ARB 0x91AA + +typedef void (GLAPIENTRY * PFNGLTEXPAGECOMMITMENTARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); + +#define glTexPageCommitmentARB GLEW_GET_FUN(__glewTexPageCommitmentARB) + +#define GLEW_ARB_sparse_texture GLEW_GET_VAR(__GLEW_ARB_sparse_texture) + +#endif /* GL_ARB_sparse_texture */ + +/* ------------------------- GL_ARB_sparse_texture2 ------------------------ */ + +#ifndef GL_ARB_sparse_texture2 +#define GL_ARB_sparse_texture2 1 + +#define GLEW_ARB_sparse_texture2 GLEW_GET_VAR(__GLEW_ARB_sparse_texture2) + +#endif /* GL_ARB_sparse_texture2 */ + +/* ---------------------- GL_ARB_sparse_texture_clamp ---------------------- */ + +#ifndef GL_ARB_sparse_texture_clamp +#define GL_ARB_sparse_texture_clamp 1 + +#define GLEW_ARB_sparse_texture_clamp GLEW_GET_VAR(__GLEW_ARB_sparse_texture_clamp) + +#endif /* GL_ARB_sparse_texture_clamp */ + +/* ------------------------ GL_ARB_spirv_extensions ------------------------ */ + +#ifndef GL_ARB_spirv_extensions +#define GL_ARB_spirv_extensions 1 + +#define GL_SPIR_V_EXTENSIONS 0x9553 +#define GL_NUM_SPIR_V_EXTENSIONS 0x9554 + +#define GLEW_ARB_spirv_extensions GLEW_GET_VAR(__GLEW_ARB_spirv_extensions) + +#endif /* GL_ARB_spirv_extensions */ + +/* ------------------------ GL_ARB_stencil_texturing ----------------------- */ + +#ifndef GL_ARB_stencil_texturing +#define GL_ARB_stencil_texturing 1 + +#define GL_DEPTH_STENCIL_TEXTURE_MODE 0x90EA + +#define GLEW_ARB_stencil_texturing GLEW_GET_VAR(__GLEW_ARB_stencil_texturing) + +#endif /* GL_ARB_stencil_texturing */ + +/* ------------------------------ GL_ARB_sync ------------------------------ */ + +#ifndef GL_ARB_sync +#define GL_ARB_sync 1 + +#define GL_SYNC_FLUSH_COMMANDS_BIT 0x00000001 +#define GL_MAX_SERVER_WAIT_TIMEOUT 0x9111 +#define GL_OBJECT_TYPE 0x9112 +#define GL_SYNC_CONDITION 0x9113 +#define GL_SYNC_STATUS 0x9114 +#define GL_SYNC_FLAGS 0x9115 +#define GL_SYNC_FENCE 0x9116 +#define GL_SYNC_GPU_COMMANDS_COMPLETE 0x9117 +#define GL_UNSIGNALED 0x9118 +#define GL_SIGNALED 0x9119 +#define GL_ALREADY_SIGNALED 0x911A +#define GL_TIMEOUT_EXPIRED 0x911B +#define GL_CONDITION_SATISFIED 0x911C +#define GL_WAIT_FAILED 0x911D +#define GL_TIMEOUT_IGNORED 0xFFFFFFFFFFFFFFFFull + +typedef GLenum (GLAPIENTRY * PFNGLCLIENTWAITSYNCPROC) (GLsync GLsync,GLbitfield flags,GLuint64 timeout); +typedef void (GLAPIENTRY * PFNGLDELETESYNCPROC) (GLsync GLsync); +typedef GLsync (GLAPIENTRY * PFNGLFENCESYNCPROC) (GLenum condition,GLbitfield flags); +typedef void (GLAPIENTRY * PFNGLGETINTEGER64VPROC) (GLenum pname, GLint64* params); +typedef void (GLAPIENTRY * PFNGLGETSYNCIVPROC) (GLsync GLsync,GLenum pname,GLsizei bufSize,GLsizei* length, GLint *values); +typedef GLboolean (GLAPIENTRY * PFNGLISSYNCPROC) (GLsync GLsync); +typedef void (GLAPIENTRY * PFNGLWAITSYNCPROC) (GLsync GLsync,GLbitfield flags,GLuint64 timeout); + +#define glClientWaitSync GLEW_GET_FUN(__glewClientWaitSync) +#define glDeleteSync GLEW_GET_FUN(__glewDeleteSync) +#define glFenceSync GLEW_GET_FUN(__glewFenceSync) +#define glGetInteger64v GLEW_GET_FUN(__glewGetInteger64v) +#define glGetSynciv GLEW_GET_FUN(__glewGetSynciv) +#define glIsSync GLEW_GET_FUN(__glewIsSync) +#define glWaitSync GLEW_GET_FUN(__glewWaitSync) + +#define GLEW_ARB_sync GLEW_GET_VAR(__GLEW_ARB_sync) + +#endif /* GL_ARB_sync */ + +/* ----------------------- GL_ARB_tessellation_shader ---------------------- */ + +#ifndef GL_ARB_tessellation_shader +#define GL_ARB_tessellation_shader 1 + +#define GL_PATCHES 0xE +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER 0x84F0 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER 0x84F1 +#define GL_MAX_TESS_CONTROL_INPUT_COMPONENTS 0x886C +#define GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS 0x886D +#define GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS 0x8E1E +#define GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS 0x8E1F +#define GL_PATCH_VERTICES 0x8E72 +#define GL_PATCH_DEFAULT_INNER_LEVEL 0x8E73 +#define GL_PATCH_DEFAULT_OUTER_LEVEL 0x8E74 +#define GL_TESS_CONTROL_OUTPUT_VERTICES 0x8E75 +#define GL_TESS_GEN_MODE 0x8E76 +#define GL_TESS_GEN_SPACING 0x8E77 +#define GL_TESS_GEN_VERTEX_ORDER 0x8E78 +#define GL_TESS_GEN_POINT_MODE 0x8E79 +#define GL_ISOLINES 0x8E7A +#define GL_FRACTIONAL_ODD 0x8E7B +#define GL_FRACTIONAL_EVEN 0x8E7C +#define GL_MAX_PATCH_VERTICES 0x8E7D +#define GL_MAX_TESS_GEN_LEVEL 0x8E7E +#define GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS 0x8E7F +#define GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS 0x8E80 +#define GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS 0x8E81 +#define GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS 0x8E82 +#define GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS 0x8E83 +#define GL_MAX_TESS_PATCH_COMPONENTS 0x8E84 +#define GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS 0x8E85 +#define GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS 0x8E86 +#define GL_TESS_EVALUATION_SHADER 0x8E87 +#define GL_TESS_CONTROL_SHADER 0x8E88 +#define GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS 0x8E89 +#define GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS 0x8E8A + +typedef void (GLAPIENTRY * PFNGLPATCHPARAMETERFVPROC) (GLenum pname, const GLfloat* values); +typedef void (GLAPIENTRY * PFNGLPATCHPARAMETERIPROC) (GLenum pname, GLint value); + +#define glPatchParameterfv GLEW_GET_FUN(__glewPatchParameterfv) +#define glPatchParameteri GLEW_GET_FUN(__glewPatchParameteri) + +#define GLEW_ARB_tessellation_shader GLEW_GET_VAR(__GLEW_ARB_tessellation_shader) + +#endif /* GL_ARB_tessellation_shader */ + +/* ------------------------- GL_ARB_texture_barrier ------------------------ */ + +#ifndef GL_ARB_texture_barrier +#define GL_ARB_texture_barrier 1 + +typedef void (GLAPIENTRY * PFNGLTEXTUREBARRIERPROC) (void); + +#define glTextureBarrier GLEW_GET_FUN(__glewTextureBarrier) + +#define GLEW_ARB_texture_barrier GLEW_GET_VAR(__GLEW_ARB_texture_barrier) + +#endif /* GL_ARB_texture_barrier */ + +/* ---------------------- GL_ARB_texture_border_clamp ---------------------- */ + +#ifndef GL_ARB_texture_border_clamp +#define GL_ARB_texture_border_clamp 1 + +#define GL_CLAMP_TO_BORDER_ARB 0x812D + +#define GLEW_ARB_texture_border_clamp GLEW_GET_VAR(__GLEW_ARB_texture_border_clamp) + +#endif /* GL_ARB_texture_border_clamp */ + +/* ---------------------- GL_ARB_texture_buffer_object --------------------- */ + +#ifndef GL_ARB_texture_buffer_object +#define GL_ARB_texture_buffer_object 1 + +#define GL_TEXTURE_BUFFER_ARB 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_ARB 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_ARB 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_ARB 0x8C2D +#define GL_TEXTURE_BUFFER_FORMAT_ARB 0x8C2E + +typedef void (GLAPIENTRY * PFNGLTEXBUFFERARBPROC) (GLenum target, GLenum internalformat, GLuint buffer); + +#define glTexBufferARB GLEW_GET_FUN(__glewTexBufferARB) + +#define GLEW_ARB_texture_buffer_object GLEW_GET_VAR(__GLEW_ARB_texture_buffer_object) + +#endif /* GL_ARB_texture_buffer_object */ + +/* ------------------- GL_ARB_texture_buffer_object_rgb32 ------------------ */ + +#ifndef GL_ARB_texture_buffer_object_rgb32 +#define GL_ARB_texture_buffer_object_rgb32 1 + +#define GLEW_ARB_texture_buffer_object_rgb32 GLEW_GET_VAR(__GLEW_ARB_texture_buffer_object_rgb32) + +#endif /* GL_ARB_texture_buffer_object_rgb32 */ + +/* ---------------------- GL_ARB_texture_buffer_range ---------------------- */ + +#ifndef GL_ARB_texture_buffer_range +#define GL_ARB_texture_buffer_range 1 + +#define GL_TEXTURE_BUFFER_OFFSET 0x919D +#define GL_TEXTURE_BUFFER_SIZE 0x919E +#define GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT 0x919F + +typedef void (GLAPIENTRY * PFNGLTEXBUFFERRANGEPROC) (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (GLAPIENTRY * PFNGLTEXTUREBUFFERRANGEEXTPROC) (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); + +#define glTexBufferRange GLEW_GET_FUN(__glewTexBufferRange) +#define glTextureBufferRangeEXT GLEW_GET_FUN(__glewTextureBufferRangeEXT) + +#define GLEW_ARB_texture_buffer_range GLEW_GET_VAR(__GLEW_ARB_texture_buffer_range) + +#endif /* GL_ARB_texture_buffer_range */ + +/* ----------------------- GL_ARB_texture_compression ---------------------- */ + +#ifndef GL_ARB_texture_compression +#define GL_ARB_texture_compression 1 + +#define GL_COMPRESSED_ALPHA_ARB 0x84E9 +#define GL_COMPRESSED_LUMINANCE_ARB 0x84EA +#define GL_COMPRESSED_LUMINANCE_ALPHA_ARB 0x84EB +#define GL_COMPRESSED_INTENSITY_ARB 0x84EC +#define GL_COMPRESSED_RGB_ARB 0x84ED +#define GL_COMPRESSED_RGBA_ARB 0x84EE +#define GL_TEXTURE_COMPRESSION_HINT_ARB 0x84EF +#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB 0x86A0 +#define GL_TEXTURE_COMPRESSED_ARB 0x86A1 +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS_ARB 0x86A3 + +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXIMAGE1DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXIMAGE2DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXIMAGE3DARBPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXSUBIMAGE1DARBPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXSUBIMAGE2DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXSUBIMAGE3DARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLGETCOMPRESSEDTEXIMAGEARBPROC) (GLenum target, GLint lod, void *img); + +#define glCompressedTexImage1DARB GLEW_GET_FUN(__glewCompressedTexImage1DARB) +#define glCompressedTexImage2DARB GLEW_GET_FUN(__glewCompressedTexImage2DARB) +#define glCompressedTexImage3DARB GLEW_GET_FUN(__glewCompressedTexImage3DARB) +#define glCompressedTexSubImage1DARB GLEW_GET_FUN(__glewCompressedTexSubImage1DARB) +#define glCompressedTexSubImage2DARB GLEW_GET_FUN(__glewCompressedTexSubImage2DARB) +#define glCompressedTexSubImage3DARB GLEW_GET_FUN(__glewCompressedTexSubImage3DARB) +#define glGetCompressedTexImageARB GLEW_GET_FUN(__glewGetCompressedTexImageARB) + +#define GLEW_ARB_texture_compression GLEW_GET_VAR(__GLEW_ARB_texture_compression) + +#endif /* GL_ARB_texture_compression */ + +/* -------------------- GL_ARB_texture_compression_bptc -------------------- */ + +#ifndef GL_ARB_texture_compression_bptc +#define GL_ARB_texture_compression_bptc 1 + +#define GL_COMPRESSED_RGBA_BPTC_UNORM_ARB 0x8E8C +#define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB 0x8E8D +#define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB 0x8E8E +#define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB 0x8E8F + +#define GLEW_ARB_texture_compression_bptc GLEW_GET_VAR(__GLEW_ARB_texture_compression_bptc) + +#endif /* GL_ARB_texture_compression_bptc */ + +/* -------------------- GL_ARB_texture_compression_rgtc -------------------- */ + +#ifndef GL_ARB_texture_compression_rgtc +#define GL_ARB_texture_compression_rgtc 1 + +#define GL_COMPRESSED_RED_RGTC1 0x8DBB +#define GL_COMPRESSED_SIGNED_RED_RGTC1 0x8DBC +#define GL_COMPRESSED_RG_RGTC2 0x8DBD +#define GL_COMPRESSED_SIGNED_RG_RGTC2 0x8DBE + +#define GLEW_ARB_texture_compression_rgtc GLEW_GET_VAR(__GLEW_ARB_texture_compression_rgtc) + +#endif /* GL_ARB_texture_compression_rgtc */ + +/* ------------------------ GL_ARB_texture_cube_map ------------------------ */ + +#ifndef GL_ARB_texture_cube_map +#define GL_ARB_texture_cube_map 1 + +#define GL_NORMAL_MAP_ARB 0x8511 +#define GL_REFLECTION_MAP_ARB 0x8512 +#define GL_TEXTURE_CUBE_MAP_ARB 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARB 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP_ARB 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB 0x851C + +#define GLEW_ARB_texture_cube_map GLEW_GET_VAR(__GLEW_ARB_texture_cube_map) + +#endif /* GL_ARB_texture_cube_map */ + +/* --------------------- GL_ARB_texture_cube_map_array --------------------- */ + +#ifndef GL_ARB_texture_cube_map_array +#define GL_ARB_texture_cube_map_array 1 + +#define GL_TEXTURE_CUBE_MAP_ARRAY_ARB 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_ARB 0x900A +#define GL_PROXY_TEXTURE_CUBE_MAP_ARRAY_ARB 0x900B +#define GL_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_ARB 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900F + +#define GLEW_ARB_texture_cube_map_array GLEW_GET_VAR(__GLEW_ARB_texture_cube_map_array) + +#endif /* GL_ARB_texture_cube_map_array */ + +/* ------------------------- GL_ARB_texture_env_add ------------------------ */ + +#ifndef GL_ARB_texture_env_add +#define GL_ARB_texture_env_add 1 + +#define GLEW_ARB_texture_env_add GLEW_GET_VAR(__GLEW_ARB_texture_env_add) + +#endif /* GL_ARB_texture_env_add */ + +/* ----------------------- GL_ARB_texture_env_combine ---------------------- */ + +#ifndef GL_ARB_texture_env_combine +#define GL_ARB_texture_env_combine 1 + +#define GL_SUBTRACT_ARB 0x84E7 +#define GL_COMBINE_ARB 0x8570 +#define GL_COMBINE_RGB_ARB 0x8571 +#define GL_COMBINE_ALPHA_ARB 0x8572 +#define GL_RGB_SCALE_ARB 0x8573 +#define GL_ADD_SIGNED_ARB 0x8574 +#define GL_INTERPOLATE_ARB 0x8575 +#define GL_CONSTANT_ARB 0x8576 +#define GL_PRIMARY_COLOR_ARB 0x8577 +#define GL_PREVIOUS_ARB 0x8578 +#define GL_SOURCE0_RGB_ARB 0x8580 +#define GL_SOURCE1_RGB_ARB 0x8581 +#define GL_SOURCE2_RGB_ARB 0x8582 +#define GL_SOURCE0_ALPHA_ARB 0x8588 +#define GL_SOURCE1_ALPHA_ARB 0x8589 +#define GL_SOURCE2_ALPHA_ARB 0x858A +#define GL_OPERAND0_RGB_ARB 0x8590 +#define GL_OPERAND1_RGB_ARB 0x8591 +#define GL_OPERAND2_RGB_ARB 0x8592 +#define GL_OPERAND0_ALPHA_ARB 0x8598 +#define GL_OPERAND1_ALPHA_ARB 0x8599 +#define GL_OPERAND2_ALPHA_ARB 0x859A + +#define GLEW_ARB_texture_env_combine GLEW_GET_VAR(__GLEW_ARB_texture_env_combine) + +#endif /* GL_ARB_texture_env_combine */ + +/* ---------------------- GL_ARB_texture_env_crossbar ---------------------- */ + +#ifndef GL_ARB_texture_env_crossbar +#define GL_ARB_texture_env_crossbar 1 + +#define GLEW_ARB_texture_env_crossbar GLEW_GET_VAR(__GLEW_ARB_texture_env_crossbar) + +#endif /* GL_ARB_texture_env_crossbar */ + +/* ------------------------ GL_ARB_texture_env_dot3 ------------------------ */ + +#ifndef GL_ARB_texture_env_dot3 +#define GL_ARB_texture_env_dot3 1 + +#define GL_DOT3_RGB_ARB 0x86AE +#define GL_DOT3_RGBA_ARB 0x86AF + +#define GLEW_ARB_texture_env_dot3 GLEW_GET_VAR(__GLEW_ARB_texture_env_dot3) + +#endif /* GL_ARB_texture_env_dot3 */ + +/* ------------------- GL_ARB_texture_filter_anisotropic ------------------- */ + +#ifndef GL_ARB_texture_filter_anisotropic +#define GL_ARB_texture_filter_anisotropic 1 + +#define GL_TEXTURE_MAX_ANISOTROPY 0x84FE +#define GL_MAX_TEXTURE_MAX_ANISOTROPY 0x84FF + +#define GLEW_ARB_texture_filter_anisotropic GLEW_GET_VAR(__GLEW_ARB_texture_filter_anisotropic) + +#endif /* GL_ARB_texture_filter_anisotropic */ + +/* ---------------------- GL_ARB_texture_filter_minmax --------------------- */ + +#ifndef GL_ARB_texture_filter_minmax +#define GL_ARB_texture_filter_minmax 1 + +#define GL_TEXTURE_REDUCTION_MODE_ARB 0x9366 +#define GL_WEIGHTED_AVERAGE_ARB 0x9367 + +#define GLEW_ARB_texture_filter_minmax GLEW_GET_VAR(__GLEW_ARB_texture_filter_minmax) + +#endif /* GL_ARB_texture_filter_minmax */ + +/* -------------------------- GL_ARB_texture_float ------------------------- */ + +#ifndef GL_ARB_texture_float +#define GL_ARB_texture_float 1 + +#define GL_RGBA32F_ARB 0x8814 +#define GL_RGB32F_ARB 0x8815 +#define GL_ALPHA32F_ARB 0x8816 +#define GL_INTENSITY32F_ARB 0x8817 +#define GL_LUMINANCE32F_ARB 0x8818 +#define GL_LUMINANCE_ALPHA32F_ARB 0x8819 +#define GL_RGBA16F_ARB 0x881A +#define GL_RGB16F_ARB 0x881B +#define GL_ALPHA16F_ARB 0x881C +#define GL_INTENSITY16F_ARB 0x881D +#define GL_LUMINANCE16F_ARB 0x881E +#define GL_LUMINANCE_ALPHA16F_ARB 0x881F +#define GL_TEXTURE_RED_TYPE_ARB 0x8C10 +#define GL_TEXTURE_GREEN_TYPE_ARB 0x8C11 +#define GL_TEXTURE_BLUE_TYPE_ARB 0x8C12 +#define GL_TEXTURE_ALPHA_TYPE_ARB 0x8C13 +#define GL_TEXTURE_LUMINANCE_TYPE_ARB 0x8C14 +#define GL_TEXTURE_INTENSITY_TYPE_ARB 0x8C15 +#define GL_TEXTURE_DEPTH_TYPE_ARB 0x8C16 +#define GL_UNSIGNED_NORMALIZED_ARB 0x8C17 + +#define GLEW_ARB_texture_float GLEW_GET_VAR(__GLEW_ARB_texture_float) + +#endif /* GL_ARB_texture_float */ + +/* ------------------------- GL_ARB_texture_gather ------------------------- */ + +#ifndef GL_ARB_texture_gather +#define GL_ARB_texture_gather 1 + +#define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_ARB 0x8E5E +#define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_ARB 0x8E5F +#define GL_MAX_PROGRAM_TEXTURE_GATHER_COMPONENTS_ARB 0x8F9F + +#define GLEW_ARB_texture_gather GLEW_GET_VAR(__GLEW_ARB_texture_gather) + +#endif /* GL_ARB_texture_gather */ + +/* ------------------ GL_ARB_texture_mirror_clamp_to_edge ------------------ */ + +#ifndef GL_ARB_texture_mirror_clamp_to_edge +#define GL_ARB_texture_mirror_clamp_to_edge 1 + +#define GL_MIRROR_CLAMP_TO_EDGE 0x8743 + +#define GLEW_ARB_texture_mirror_clamp_to_edge GLEW_GET_VAR(__GLEW_ARB_texture_mirror_clamp_to_edge) + +#endif /* GL_ARB_texture_mirror_clamp_to_edge */ + +/* --------------------- GL_ARB_texture_mirrored_repeat -------------------- */ + +#ifndef GL_ARB_texture_mirrored_repeat +#define GL_ARB_texture_mirrored_repeat 1 + +#define GL_MIRRORED_REPEAT_ARB 0x8370 + +#define GLEW_ARB_texture_mirrored_repeat GLEW_GET_VAR(__GLEW_ARB_texture_mirrored_repeat) + +#endif /* GL_ARB_texture_mirrored_repeat */ + +/* ----------------------- GL_ARB_texture_multisample ---------------------- */ + +#ifndef GL_ARB_texture_multisample +#define GL_ARB_texture_multisample 1 + +#define GL_SAMPLE_POSITION 0x8E50 +#define GL_SAMPLE_MASK 0x8E51 +#define GL_SAMPLE_MASK_VALUE 0x8E52 +#define GL_MAX_SAMPLE_MASK_WORDS 0x8E59 +#define GL_TEXTURE_2D_MULTISAMPLE 0x9100 +#define GL_PROXY_TEXTURE_2D_MULTISAMPLE 0x9101 +#define GL_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9102 +#define GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9103 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE 0x9104 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY 0x9105 +#define GL_TEXTURE_SAMPLES 0x9106 +#define GL_TEXTURE_FIXED_SAMPLE_LOCATIONS 0x9107 +#define GL_SAMPLER_2D_MULTISAMPLE 0x9108 +#define GL_INT_SAMPLER_2D_MULTISAMPLE 0x9109 +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE 0x910A +#define GL_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910B +#define GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910C +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910D +#define GL_MAX_COLOR_TEXTURE_SAMPLES 0x910E +#define GL_MAX_DEPTH_TEXTURE_SAMPLES 0x910F +#define GL_MAX_INTEGER_SAMPLES 0x9110 + +typedef void (GLAPIENTRY * PFNGLGETMULTISAMPLEFVPROC) (GLenum pname, GLuint index, GLfloat* val); +typedef void (GLAPIENTRY * PFNGLSAMPLEMASKIPROC) (GLuint index, GLbitfield mask); +typedef void (GLAPIENTRY * PFNGLTEXIMAGE2DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (GLAPIENTRY * PFNGLTEXIMAGE3DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); + +#define glGetMultisamplefv GLEW_GET_FUN(__glewGetMultisamplefv) +#define glSampleMaski GLEW_GET_FUN(__glewSampleMaski) +#define glTexImage2DMultisample GLEW_GET_FUN(__glewTexImage2DMultisample) +#define glTexImage3DMultisample GLEW_GET_FUN(__glewTexImage3DMultisample) + +#define GLEW_ARB_texture_multisample GLEW_GET_VAR(__GLEW_ARB_texture_multisample) + +#endif /* GL_ARB_texture_multisample */ + +/* -------------------- GL_ARB_texture_non_power_of_two -------------------- */ + +#ifndef GL_ARB_texture_non_power_of_two +#define GL_ARB_texture_non_power_of_two 1 + +#define GLEW_ARB_texture_non_power_of_two GLEW_GET_VAR(__GLEW_ARB_texture_non_power_of_two) + +#endif /* GL_ARB_texture_non_power_of_two */ + +/* ---------------------- GL_ARB_texture_query_levels ---------------------- */ + +#ifndef GL_ARB_texture_query_levels +#define GL_ARB_texture_query_levels 1 + +#define GLEW_ARB_texture_query_levels GLEW_GET_VAR(__GLEW_ARB_texture_query_levels) + +#endif /* GL_ARB_texture_query_levels */ + +/* ------------------------ GL_ARB_texture_query_lod ----------------------- */ + +#ifndef GL_ARB_texture_query_lod +#define GL_ARB_texture_query_lod 1 + +#define GLEW_ARB_texture_query_lod GLEW_GET_VAR(__GLEW_ARB_texture_query_lod) + +#endif /* GL_ARB_texture_query_lod */ + +/* ------------------------ GL_ARB_texture_rectangle ----------------------- */ + +#ifndef GL_ARB_texture_rectangle +#define GL_ARB_texture_rectangle 1 + +#define GL_TEXTURE_RECTANGLE_ARB 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE_ARB 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE_ARB 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB 0x84F8 +#define GL_SAMPLER_2D_RECT_ARB 0x8B63 +#define GL_SAMPLER_2D_RECT_SHADOW_ARB 0x8B64 + +#define GLEW_ARB_texture_rectangle GLEW_GET_VAR(__GLEW_ARB_texture_rectangle) + +#endif /* GL_ARB_texture_rectangle */ + +/* --------------------------- GL_ARB_texture_rg --------------------------- */ + +#ifndef GL_ARB_texture_rg +#define GL_ARB_texture_rg 1 + +#define GL_COMPRESSED_RED 0x8225 +#define GL_COMPRESSED_RG 0x8226 +#define GL_RG 0x8227 +#define GL_RG_INTEGER 0x8228 +#define GL_R8 0x8229 +#define GL_R16 0x822A +#define GL_RG8 0x822B +#define GL_RG16 0x822C +#define GL_R16F 0x822D +#define GL_R32F 0x822E +#define GL_RG16F 0x822F +#define GL_RG32F 0x8230 +#define GL_R8I 0x8231 +#define GL_R8UI 0x8232 +#define GL_R16I 0x8233 +#define GL_R16UI 0x8234 +#define GL_R32I 0x8235 +#define GL_R32UI 0x8236 +#define GL_RG8I 0x8237 +#define GL_RG8UI 0x8238 +#define GL_RG16I 0x8239 +#define GL_RG16UI 0x823A +#define GL_RG32I 0x823B +#define GL_RG32UI 0x823C + +#define GLEW_ARB_texture_rg GLEW_GET_VAR(__GLEW_ARB_texture_rg) + +#endif /* GL_ARB_texture_rg */ + +/* ----------------------- GL_ARB_texture_rgb10_a2ui ----------------------- */ + +#ifndef GL_ARB_texture_rgb10_a2ui +#define GL_ARB_texture_rgb10_a2ui 1 + +#define GL_RGB10_A2UI 0x906F + +#define GLEW_ARB_texture_rgb10_a2ui GLEW_GET_VAR(__GLEW_ARB_texture_rgb10_a2ui) + +#endif /* GL_ARB_texture_rgb10_a2ui */ + +/* ------------------------ GL_ARB_texture_stencil8 ------------------------ */ + +#ifndef GL_ARB_texture_stencil8 +#define GL_ARB_texture_stencil8 1 + +#define GL_STENCIL_INDEX 0x1901 +#define GL_STENCIL_INDEX8 0x8D48 + +#define GLEW_ARB_texture_stencil8 GLEW_GET_VAR(__GLEW_ARB_texture_stencil8) + +#endif /* GL_ARB_texture_stencil8 */ + +/* ------------------------- GL_ARB_texture_storage ------------------------ */ + +#ifndef GL_ARB_texture_storage +#define GL_ARB_texture_storage 1 + +#define GL_TEXTURE_IMMUTABLE_FORMAT 0x912F + +typedef void (GLAPIENTRY * PFNGLTEXSTORAGE1DPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (GLAPIENTRY * PFNGLTEXSTORAGE2DPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLTEXSTORAGE3DPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); + +#define glTexStorage1D GLEW_GET_FUN(__glewTexStorage1D) +#define glTexStorage2D GLEW_GET_FUN(__glewTexStorage2D) +#define glTexStorage3D GLEW_GET_FUN(__glewTexStorage3D) + +#define GLEW_ARB_texture_storage GLEW_GET_VAR(__GLEW_ARB_texture_storage) + +#endif /* GL_ARB_texture_storage */ + +/* ------------------- GL_ARB_texture_storage_multisample ------------------ */ + +#ifndef GL_ARB_texture_storage_multisample +#define GL_ARB_texture_storage_multisample 1 + +typedef void (GLAPIENTRY * PFNGLTEXSTORAGE2DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (GLAPIENTRY * PFNGLTEXSTORAGE3DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (GLAPIENTRY * PFNGLTEXTURESTORAGE2DMULTISAMPLEEXTPROC) (GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (GLAPIENTRY * PFNGLTEXTURESTORAGE3DMULTISAMPLEEXTPROC) (GLuint texture, GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); + +#define glTexStorage2DMultisample GLEW_GET_FUN(__glewTexStorage2DMultisample) +#define glTexStorage3DMultisample GLEW_GET_FUN(__glewTexStorage3DMultisample) +#define glTextureStorage2DMultisampleEXT GLEW_GET_FUN(__glewTextureStorage2DMultisampleEXT) +#define glTextureStorage3DMultisampleEXT GLEW_GET_FUN(__glewTextureStorage3DMultisampleEXT) + +#define GLEW_ARB_texture_storage_multisample GLEW_GET_VAR(__GLEW_ARB_texture_storage_multisample) + +#endif /* GL_ARB_texture_storage_multisample */ + +/* ------------------------- GL_ARB_texture_swizzle ------------------------ */ + +#ifndef GL_ARB_texture_swizzle +#define GL_ARB_texture_swizzle 1 + +#define GL_TEXTURE_SWIZZLE_R 0x8E42 +#define GL_TEXTURE_SWIZZLE_G 0x8E43 +#define GL_TEXTURE_SWIZZLE_B 0x8E44 +#define GL_TEXTURE_SWIZZLE_A 0x8E45 +#define GL_TEXTURE_SWIZZLE_RGBA 0x8E46 + +#define GLEW_ARB_texture_swizzle GLEW_GET_VAR(__GLEW_ARB_texture_swizzle) + +#endif /* GL_ARB_texture_swizzle */ + +/* -------------------------- GL_ARB_texture_view -------------------------- */ + +#ifndef GL_ARB_texture_view +#define GL_ARB_texture_view 1 + +#define GL_TEXTURE_VIEW_MIN_LEVEL 0x82DB +#define GL_TEXTURE_VIEW_NUM_LEVELS 0x82DC +#define GL_TEXTURE_VIEW_MIN_LAYER 0x82DD +#define GL_TEXTURE_VIEW_NUM_LAYERS 0x82DE +#define GL_TEXTURE_IMMUTABLE_LEVELS 0x82DF + +typedef void (GLAPIENTRY * PFNGLTEXTUREVIEWPROC) (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); + +#define glTextureView GLEW_GET_FUN(__glewTextureView) + +#define GLEW_ARB_texture_view GLEW_GET_VAR(__GLEW_ARB_texture_view) + +#endif /* GL_ARB_texture_view */ + +/* --------------------------- GL_ARB_timer_query -------------------------- */ + +#ifndef GL_ARB_timer_query +#define GL_ARB_timer_query 1 + +#define GL_TIME_ELAPSED 0x88BF +#define GL_TIMESTAMP 0x8E28 + +typedef void (GLAPIENTRY * PFNGLGETQUERYOBJECTI64VPROC) (GLuint id, GLenum pname, GLint64* params); +typedef void (GLAPIENTRY * PFNGLGETQUERYOBJECTUI64VPROC) (GLuint id, GLenum pname, GLuint64* params); +typedef void (GLAPIENTRY * PFNGLQUERYCOUNTERPROC) (GLuint id, GLenum target); + +#define glGetQueryObjecti64v GLEW_GET_FUN(__glewGetQueryObjecti64v) +#define glGetQueryObjectui64v GLEW_GET_FUN(__glewGetQueryObjectui64v) +#define glQueryCounter GLEW_GET_FUN(__glewQueryCounter) + +#define GLEW_ARB_timer_query GLEW_GET_VAR(__GLEW_ARB_timer_query) + +#endif /* GL_ARB_timer_query */ + +/* ----------------------- GL_ARB_transform_feedback2 ---------------------- */ + +#ifndef GL_ARB_transform_feedback2 +#define GL_ARB_transform_feedback2 1 + +#define GL_TRANSFORM_FEEDBACK 0x8E22 +#define GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED 0x8E23 +#define GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE 0x8E24 +#define GL_TRANSFORM_FEEDBACK_BINDING 0x8E25 + +typedef void (GLAPIENTRY * PFNGLBINDTRANSFORMFEEDBACKPROC) (GLenum target, GLuint id); +typedef void (GLAPIENTRY * PFNGLDELETETRANSFORMFEEDBACKSPROC) (GLsizei n, const GLuint* ids); +typedef void (GLAPIENTRY * PFNGLDRAWTRANSFORMFEEDBACKPROC) (GLenum mode, GLuint id); +typedef void (GLAPIENTRY * PFNGLGENTRANSFORMFEEDBACKSPROC) (GLsizei n, GLuint* ids); +typedef GLboolean (GLAPIENTRY * PFNGLISTRANSFORMFEEDBACKPROC) (GLuint id); +typedef void (GLAPIENTRY * PFNGLPAUSETRANSFORMFEEDBACKPROC) (void); +typedef void (GLAPIENTRY * PFNGLRESUMETRANSFORMFEEDBACKPROC) (void); + +#define glBindTransformFeedback GLEW_GET_FUN(__glewBindTransformFeedback) +#define glDeleteTransformFeedbacks GLEW_GET_FUN(__glewDeleteTransformFeedbacks) +#define glDrawTransformFeedback GLEW_GET_FUN(__glewDrawTransformFeedback) +#define glGenTransformFeedbacks GLEW_GET_FUN(__glewGenTransformFeedbacks) +#define glIsTransformFeedback GLEW_GET_FUN(__glewIsTransformFeedback) +#define glPauseTransformFeedback GLEW_GET_FUN(__glewPauseTransformFeedback) +#define glResumeTransformFeedback GLEW_GET_FUN(__glewResumeTransformFeedback) + +#define GLEW_ARB_transform_feedback2 GLEW_GET_VAR(__GLEW_ARB_transform_feedback2) + +#endif /* GL_ARB_transform_feedback2 */ + +/* ----------------------- GL_ARB_transform_feedback3 ---------------------- */ + +#ifndef GL_ARB_transform_feedback3 +#define GL_ARB_transform_feedback3 1 + +#define GL_MAX_TRANSFORM_FEEDBACK_BUFFERS 0x8E70 +#define GL_MAX_VERTEX_STREAMS 0x8E71 + +typedef void (GLAPIENTRY * PFNGLBEGINQUERYINDEXEDPROC) (GLenum target, GLuint index, GLuint id); +typedef void (GLAPIENTRY * PFNGLDRAWTRANSFORMFEEDBACKSTREAMPROC) (GLenum mode, GLuint id, GLuint stream); +typedef void (GLAPIENTRY * PFNGLENDQUERYINDEXEDPROC) (GLenum target, GLuint index); +typedef void (GLAPIENTRY * PFNGLGETQUERYINDEXEDIVPROC) (GLenum target, GLuint index, GLenum pname, GLint* params); + +#define glBeginQueryIndexed GLEW_GET_FUN(__glewBeginQueryIndexed) +#define glDrawTransformFeedbackStream GLEW_GET_FUN(__glewDrawTransformFeedbackStream) +#define glEndQueryIndexed GLEW_GET_FUN(__glewEndQueryIndexed) +#define glGetQueryIndexediv GLEW_GET_FUN(__glewGetQueryIndexediv) + +#define GLEW_ARB_transform_feedback3 GLEW_GET_VAR(__GLEW_ARB_transform_feedback3) + +#endif /* GL_ARB_transform_feedback3 */ + +/* ------------------ GL_ARB_transform_feedback_instanced ------------------ */ + +#ifndef GL_ARB_transform_feedback_instanced +#define GL_ARB_transform_feedback_instanced 1 + +typedef void (GLAPIENTRY * PFNGLDRAWTRANSFORMFEEDBACKINSTANCEDPROC) (GLenum mode, GLuint id, GLsizei primcount); +typedef void (GLAPIENTRY * PFNGLDRAWTRANSFORMFEEDBACKSTREAMINSTANCEDPROC) (GLenum mode, GLuint id, GLuint stream, GLsizei primcount); + +#define glDrawTransformFeedbackInstanced GLEW_GET_FUN(__glewDrawTransformFeedbackInstanced) +#define glDrawTransformFeedbackStreamInstanced GLEW_GET_FUN(__glewDrawTransformFeedbackStreamInstanced) + +#define GLEW_ARB_transform_feedback_instanced GLEW_GET_VAR(__GLEW_ARB_transform_feedback_instanced) + +#endif /* GL_ARB_transform_feedback_instanced */ + +/* ---------------- GL_ARB_transform_feedback_overflow_query --------------- */ + +#ifndef GL_ARB_transform_feedback_overflow_query +#define GL_ARB_transform_feedback_overflow_query 1 + +#define GL_TRANSFORM_FEEDBACK_OVERFLOW_ARB 0x82EC +#define GL_TRANSFORM_FEEDBACK_STREAM_OVERFLOW_ARB 0x82ED + +#define GLEW_ARB_transform_feedback_overflow_query GLEW_GET_VAR(__GLEW_ARB_transform_feedback_overflow_query) + +#endif /* GL_ARB_transform_feedback_overflow_query */ + +/* ------------------------ GL_ARB_transpose_matrix ------------------------ */ + +#ifndef GL_ARB_transpose_matrix +#define GL_ARB_transpose_matrix 1 + +#define GL_TRANSPOSE_MODELVIEW_MATRIX_ARB 0x84E3 +#define GL_TRANSPOSE_PROJECTION_MATRIX_ARB 0x84E4 +#define GL_TRANSPOSE_TEXTURE_MATRIX_ARB 0x84E5 +#define GL_TRANSPOSE_COLOR_MATRIX_ARB 0x84E6 + +typedef void (GLAPIENTRY * PFNGLLOADTRANSPOSEMATRIXDARBPROC) (GLdouble m[16]); +typedef void (GLAPIENTRY * PFNGLLOADTRANSPOSEMATRIXFARBPROC) (GLfloat m[16]); +typedef void (GLAPIENTRY * PFNGLMULTTRANSPOSEMATRIXDARBPROC) (GLdouble m[16]); +typedef void (GLAPIENTRY * PFNGLMULTTRANSPOSEMATRIXFARBPROC) (GLfloat m[16]); + +#define glLoadTransposeMatrixdARB GLEW_GET_FUN(__glewLoadTransposeMatrixdARB) +#define glLoadTransposeMatrixfARB GLEW_GET_FUN(__glewLoadTransposeMatrixfARB) +#define glMultTransposeMatrixdARB GLEW_GET_FUN(__glewMultTransposeMatrixdARB) +#define glMultTransposeMatrixfARB GLEW_GET_FUN(__glewMultTransposeMatrixfARB) + +#define GLEW_ARB_transpose_matrix GLEW_GET_VAR(__GLEW_ARB_transpose_matrix) + +#endif /* GL_ARB_transpose_matrix */ + +/* ---------------------- GL_ARB_uniform_buffer_object --------------------- */ + +#ifndef GL_ARB_uniform_buffer_object +#define GL_ARB_uniform_buffer_object 1 + +#define GL_UNIFORM_BUFFER 0x8A11 +#define GL_UNIFORM_BUFFER_BINDING 0x8A28 +#define GL_UNIFORM_BUFFER_START 0x8A29 +#define GL_UNIFORM_BUFFER_SIZE 0x8A2A +#define GL_MAX_VERTEX_UNIFORM_BLOCKS 0x8A2B +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS 0x8A2C +#define GL_MAX_FRAGMENT_UNIFORM_BLOCKS 0x8A2D +#define GL_MAX_COMBINED_UNIFORM_BLOCKS 0x8A2E +#define GL_MAX_UNIFORM_BUFFER_BINDINGS 0x8A2F +#define GL_MAX_UNIFORM_BLOCK_SIZE 0x8A30 +#define GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS 0x8A31 +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS 0x8A32 +#define GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS 0x8A33 +#define GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT 0x8A34 +#define GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH 0x8A35 +#define GL_ACTIVE_UNIFORM_BLOCKS 0x8A36 +#define GL_UNIFORM_TYPE 0x8A37 +#define GL_UNIFORM_SIZE 0x8A38 +#define GL_UNIFORM_NAME_LENGTH 0x8A39 +#define GL_UNIFORM_BLOCK_INDEX 0x8A3A +#define GL_UNIFORM_OFFSET 0x8A3B +#define GL_UNIFORM_ARRAY_STRIDE 0x8A3C +#define GL_UNIFORM_MATRIX_STRIDE 0x8A3D +#define GL_UNIFORM_IS_ROW_MAJOR 0x8A3E +#define GL_UNIFORM_BLOCK_BINDING 0x8A3F +#define GL_UNIFORM_BLOCK_DATA_SIZE 0x8A40 +#define GL_UNIFORM_BLOCK_NAME_LENGTH 0x8A41 +#define GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS 0x8A42 +#define GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES 0x8A43 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER 0x8A44 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER 0x8A45 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER 0x8A46 +#define GL_INVALID_INDEX 0xFFFFFFFFu + +typedef void (GLAPIENTRY * PFNGLBINDBUFFERBASEPROC) (GLenum target, GLuint index, GLuint buffer); +typedef void (GLAPIENTRY * PFNGLBINDBUFFERRANGEPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (GLAPIENTRY * PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC) (GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei* length, GLchar* uniformBlockName); +typedef void (GLAPIENTRY * PFNGLGETACTIVEUNIFORMBLOCKIVPROC) (GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETACTIVEUNIFORMNAMEPROC) (GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei* length, GLchar* uniformName); +typedef void (GLAPIENTRY * PFNGLGETACTIVEUNIFORMSIVPROC) (GLuint program, GLsizei uniformCount, const GLuint* uniformIndices, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETINTEGERI_VPROC) (GLenum target, GLuint index, GLint* data); +typedef GLuint (GLAPIENTRY * PFNGLGETUNIFORMBLOCKINDEXPROC) (GLuint program, const GLchar* uniformBlockName); +typedef void (GLAPIENTRY * PFNGLGETUNIFORMINDICESPROC) (GLuint program, GLsizei uniformCount, const GLchar* const * uniformNames, GLuint* uniformIndices); +typedef void (GLAPIENTRY * PFNGLUNIFORMBLOCKBINDINGPROC) (GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding); + +#define glBindBufferBase GLEW_GET_FUN(__glewBindBufferBase) +#define glBindBufferRange GLEW_GET_FUN(__glewBindBufferRange) +#define glGetActiveUniformBlockName GLEW_GET_FUN(__glewGetActiveUniformBlockName) +#define glGetActiveUniformBlockiv GLEW_GET_FUN(__glewGetActiveUniformBlockiv) +#define glGetActiveUniformName GLEW_GET_FUN(__glewGetActiveUniformName) +#define glGetActiveUniformsiv GLEW_GET_FUN(__glewGetActiveUniformsiv) +#define glGetIntegeri_v GLEW_GET_FUN(__glewGetIntegeri_v) +#define glGetUniformBlockIndex GLEW_GET_FUN(__glewGetUniformBlockIndex) +#define glGetUniformIndices GLEW_GET_FUN(__glewGetUniformIndices) +#define glUniformBlockBinding GLEW_GET_FUN(__glewUniformBlockBinding) + +#define GLEW_ARB_uniform_buffer_object GLEW_GET_VAR(__GLEW_ARB_uniform_buffer_object) + +#endif /* GL_ARB_uniform_buffer_object */ + +/* ------------------------ GL_ARB_vertex_array_bgra ----------------------- */ + +#ifndef GL_ARB_vertex_array_bgra +#define GL_ARB_vertex_array_bgra 1 + +#define GL_BGRA 0x80E1 + +#define GLEW_ARB_vertex_array_bgra GLEW_GET_VAR(__GLEW_ARB_vertex_array_bgra) + +#endif /* GL_ARB_vertex_array_bgra */ + +/* ----------------------- GL_ARB_vertex_array_object ---------------------- */ + +#ifndef GL_ARB_vertex_array_object +#define GL_ARB_vertex_array_object 1 + +#define GL_VERTEX_ARRAY_BINDING 0x85B5 + +typedef void (GLAPIENTRY * PFNGLBINDVERTEXARRAYPROC) (GLuint array); +typedef void (GLAPIENTRY * PFNGLDELETEVERTEXARRAYSPROC) (GLsizei n, const GLuint* arrays); +typedef void (GLAPIENTRY * PFNGLGENVERTEXARRAYSPROC) (GLsizei n, GLuint* arrays); +typedef GLboolean (GLAPIENTRY * PFNGLISVERTEXARRAYPROC) (GLuint array); + +#define glBindVertexArray GLEW_GET_FUN(__glewBindVertexArray) +#define glDeleteVertexArrays GLEW_GET_FUN(__glewDeleteVertexArrays) +#define glGenVertexArrays GLEW_GET_FUN(__glewGenVertexArrays) +#define glIsVertexArray GLEW_GET_FUN(__glewIsVertexArray) + +#define GLEW_ARB_vertex_array_object GLEW_GET_VAR(__GLEW_ARB_vertex_array_object) + +#endif /* GL_ARB_vertex_array_object */ + +/* ----------------------- GL_ARB_vertex_attrib_64bit ---------------------- */ + +#ifndef GL_ARB_vertex_attrib_64bit +#define GL_ARB_vertex_attrib_64bit 1 + +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBLDVPROC) (GLuint index, GLenum pname, GLdouble* params); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL1DPROC) (GLuint index, GLdouble x); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL1DVPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL2DPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL2DVPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL3DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL3DVPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL4DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL4DVPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBLPOINTERPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void* pointer); + +#define glGetVertexAttribLdv GLEW_GET_FUN(__glewGetVertexAttribLdv) +#define glVertexAttribL1d GLEW_GET_FUN(__glewVertexAttribL1d) +#define glVertexAttribL1dv GLEW_GET_FUN(__glewVertexAttribL1dv) +#define glVertexAttribL2d GLEW_GET_FUN(__glewVertexAttribL2d) +#define glVertexAttribL2dv GLEW_GET_FUN(__glewVertexAttribL2dv) +#define glVertexAttribL3d GLEW_GET_FUN(__glewVertexAttribL3d) +#define glVertexAttribL3dv GLEW_GET_FUN(__glewVertexAttribL3dv) +#define glVertexAttribL4d GLEW_GET_FUN(__glewVertexAttribL4d) +#define glVertexAttribL4dv GLEW_GET_FUN(__glewVertexAttribL4dv) +#define glVertexAttribLPointer GLEW_GET_FUN(__glewVertexAttribLPointer) + +#define GLEW_ARB_vertex_attrib_64bit GLEW_GET_VAR(__GLEW_ARB_vertex_attrib_64bit) + +#endif /* GL_ARB_vertex_attrib_64bit */ + +/* ---------------------- GL_ARB_vertex_attrib_binding --------------------- */ + +#ifndef GL_ARB_vertex_attrib_binding +#define GL_ARB_vertex_attrib_binding 1 + +#define GL_VERTEX_ATTRIB_BINDING 0x82D4 +#define GL_VERTEX_ATTRIB_RELATIVE_OFFSET 0x82D5 +#define GL_VERTEX_BINDING_DIVISOR 0x82D6 +#define GL_VERTEX_BINDING_OFFSET 0x82D7 +#define GL_VERTEX_BINDING_STRIDE 0x82D8 +#define GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET 0x82D9 +#define GL_MAX_VERTEX_ATTRIB_BINDINGS 0x82DA +#define GL_VERTEX_BINDING_BUFFER 0x8F4F + +typedef void (GLAPIENTRY * PFNGLBINDVERTEXBUFFERPROC) (GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYBINDVERTEXBUFFEREXTPROC) (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYVERTEXATTRIBBINDINGEXTPROC) (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYVERTEXATTRIBFORMATEXTPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYVERTEXATTRIBIFORMATEXTPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYVERTEXATTRIBLFORMATEXTPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYVERTEXBINDINGDIVISOREXTPROC) (GLuint vaobj, GLuint bindingindex, GLuint divisor); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBBINDINGPROC) (GLuint attribindex, GLuint bindingindex); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBFORMATPROC) (GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBIFORMATPROC) (GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBLFORMATPROC) (GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (GLAPIENTRY * PFNGLVERTEXBINDINGDIVISORPROC) (GLuint bindingindex, GLuint divisor); + +#define glBindVertexBuffer GLEW_GET_FUN(__glewBindVertexBuffer) +#define glVertexArrayBindVertexBufferEXT GLEW_GET_FUN(__glewVertexArrayBindVertexBufferEXT) +#define glVertexArrayVertexAttribBindingEXT GLEW_GET_FUN(__glewVertexArrayVertexAttribBindingEXT) +#define glVertexArrayVertexAttribFormatEXT GLEW_GET_FUN(__glewVertexArrayVertexAttribFormatEXT) +#define glVertexArrayVertexAttribIFormatEXT GLEW_GET_FUN(__glewVertexArrayVertexAttribIFormatEXT) +#define glVertexArrayVertexAttribLFormatEXT GLEW_GET_FUN(__glewVertexArrayVertexAttribLFormatEXT) +#define glVertexArrayVertexBindingDivisorEXT GLEW_GET_FUN(__glewVertexArrayVertexBindingDivisorEXT) +#define glVertexAttribBinding GLEW_GET_FUN(__glewVertexAttribBinding) +#define glVertexAttribFormat GLEW_GET_FUN(__glewVertexAttribFormat) +#define glVertexAttribIFormat GLEW_GET_FUN(__glewVertexAttribIFormat) +#define glVertexAttribLFormat GLEW_GET_FUN(__glewVertexAttribLFormat) +#define glVertexBindingDivisor GLEW_GET_FUN(__glewVertexBindingDivisor) + +#define GLEW_ARB_vertex_attrib_binding GLEW_GET_VAR(__GLEW_ARB_vertex_attrib_binding) + +#endif /* GL_ARB_vertex_attrib_binding */ + +/* -------------------------- GL_ARB_vertex_blend -------------------------- */ + +#ifndef GL_ARB_vertex_blend +#define GL_ARB_vertex_blend 1 + +#define GL_MODELVIEW0_ARB 0x1700 +#define GL_MODELVIEW1_ARB 0x850A +#define GL_MAX_VERTEX_UNITS_ARB 0x86A4 +#define GL_ACTIVE_VERTEX_UNITS_ARB 0x86A5 +#define GL_WEIGHT_SUM_UNITY_ARB 0x86A6 +#define GL_VERTEX_BLEND_ARB 0x86A7 +#define GL_CURRENT_WEIGHT_ARB 0x86A8 +#define GL_WEIGHT_ARRAY_TYPE_ARB 0x86A9 +#define GL_WEIGHT_ARRAY_STRIDE_ARB 0x86AA +#define GL_WEIGHT_ARRAY_SIZE_ARB 0x86AB +#define GL_WEIGHT_ARRAY_POINTER_ARB 0x86AC +#define GL_WEIGHT_ARRAY_ARB 0x86AD +#define GL_MODELVIEW2_ARB 0x8722 +#define GL_MODELVIEW3_ARB 0x8723 +#define GL_MODELVIEW4_ARB 0x8724 +#define GL_MODELVIEW5_ARB 0x8725 +#define GL_MODELVIEW6_ARB 0x8726 +#define GL_MODELVIEW7_ARB 0x8727 +#define GL_MODELVIEW8_ARB 0x8728 +#define GL_MODELVIEW9_ARB 0x8729 +#define GL_MODELVIEW10_ARB 0x872A +#define GL_MODELVIEW11_ARB 0x872B +#define GL_MODELVIEW12_ARB 0x872C +#define GL_MODELVIEW13_ARB 0x872D +#define GL_MODELVIEW14_ARB 0x872E +#define GL_MODELVIEW15_ARB 0x872F +#define GL_MODELVIEW16_ARB 0x8730 +#define GL_MODELVIEW17_ARB 0x8731 +#define GL_MODELVIEW18_ARB 0x8732 +#define GL_MODELVIEW19_ARB 0x8733 +#define GL_MODELVIEW20_ARB 0x8734 +#define GL_MODELVIEW21_ARB 0x8735 +#define GL_MODELVIEW22_ARB 0x8736 +#define GL_MODELVIEW23_ARB 0x8737 +#define GL_MODELVIEW24_ARB 0x8738 +#define GL_MODELVIEW25_ARB 0x8739 +#define GL_MODELVIEW26_ARB 0x873A +#define GL_MODELVIEW27_ARB 0x873B +#define GL_MODELVIEW28_ARB 0x873C +#define GL_MODELVIEW29_ARB 0x873D +#define GL_MODELVIEW30_ARB 0x873E +#define GL_MODELVIEW31_ARB 0x873F + +typedef void (GLAPIENTRY * PFNGLVERTEXBLENDARBPROC) (GLint count); +typedef void (GLAPIENTRY * PFNGLWEIGHTPOINTERARBPROC) (GLint size, GLenum type, GLsizei stride, void *pointer); +typedef void (GLAPIENTRY * PFNGLWEIGHTBVARBPROC) (GLint size, GLbyte *weights); +typedef void (GLAPIENTRY * PFNGLWEIGHTDVARBPROC) (GLint size, GLdouble *weights); +typedef void (GLAPIENTRY * PFNGLWEIGHTFVARBPROC) (GLint size, GLfloat *weights); +typedef void (GLAPIENTRY * PFNGLWEIGHTIVARBPROC) (GLint size, GLint *weights); +typedef void (GLAPIENTRY * PFNGLWEIGHTSVARBPROC) (GLint size, GLshort *weights); +typedef void (GLAPIENTRY * PFNGLWEIGHTUBVARBPROC) (GLint size, GLubyte *weights); +typedef void (GLAPIENTRY * PFNGLWEIGHTUIVARBPROC) (GLint size, GLuint *weights); +typedef void (GLAPIENTRY * PFNGLWEIGHTUSVARBPROC) (GLint size, GLushort *weights); + +#define glVertexBlendARB GLEW_GET_FUN(__glewVertexBlendARB) +#define glWeightPointerARB GLEW_GET_FUN(__glewWeightPointerARB) +#define glWeightbvARB GLEW_GET_FUN(__glewWeightbvARB) +#define glWeightdvARB GLEW_GET_FUN(__glewWeightdvARB) +#define glWeightfvARB GLEW_GET_FUN(__glewWeightfvARB) +#define glWeightivARB GLEW_GET_FUN(__glewWeightivARB) +#define glWeightsvARB GLEW_GET_FUN(__glewWeightsvARB) +#define glWeightubvARB GLEW_GET_FUN(__glewWeightubvARB) +#define glWeightuivARB GLEW_GET_FUN(__glewWeightuivARB) +#define glWeightusvARB GLEW_GET_FUN(__glewWeightusvARB) + +#define GLEW_ARB_vertex_blend GLEW_GET_VAR(__GLEW_ARB_vertex_blend) + +#endif /* GL_ARB_vertex_blend */ + +/* ---------------------- GL_ARB_vertex_buffer_object ---------------------- */ + +#ifndef GL_ARB_vertex_buffer_object +#define GL_ARB_vertex_buffer_object 1 + +#define GL_BUFFER_SIZE_ARB 0x8764 +#define GL_BUFFER_USAGE_ARB 0x8765 +#define GL_ARRAY_BUFFER_ARB 0x8892 +#define GL_ELEMENT_ARRAY_BUFFER_ARB 0x8893 +#define GL_ARRAY_BUFFER_BINDING_ARB 0x8894 +#define GL_ELEMENT_ARRAY_BUFFER_BINDING_ARB 0x8895 +#define GL_VERTEX_ARRAY_BUFFER_BINDING_ARB 0x8896 +#define GL_NORMAL_ARRAY_BUFFER_BINDING_ARB 0x8897 +#define GL_COLOR_ARRAY_BUFFER_BINDING_ARB 0x8898 +#define GL_INDEX_ARRAY_BUFFER_BINDING_ARB 0x8899 +#define GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB 0x889A +#define GL_EDGE_FLAG_ARRAY_BUFFER_BINDING_ARB 0x889B +#define GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB 0x889C +#define GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING_ARB 0x889D +#define GL_WEIGHT_ARRAY_BUFFER_BINDING_ARB 0x889E +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB 0x889F +#define GL_READ_ONLY_ARB 0x88B8 +#define GL_WRITE_ONLY_ARB 0x88B9 +#define GL_READ_WRITE_ARB 0x88BA +#define GL_BUFFER_ACCESS_ARB 0x88BB +#define GL_BUFFER_MAPPED_ARB 0x88BC +#define GL_BUFFER_MAP_POINTER_ARB 0x88BD +#define GL_STREAM_DRAW_ARB 0x88E0 +#define GL_STREAM_READ_ARB 0x88E1 +#define GL_STREAM_COPY_ARB 0x88E2 +#define GL_STATIC_DRAW_ARB 0x88E4 +#define GL_STATIC_READ_ARB 0x88E5 +#define GL_STATIC_COPY_ARB 0x88E6 +#define GL_DYNAMIC_DRAW_ARB 0x88E8 +#define GL_DYNAMIC_READ_ARB 0x88E9 +#define GL_DYNAMIC_COPY_ARB 0x88EA + +typedef ptrdiff_t GLintptrARB; +typedef ptrdiff_t GLsizeiptrARB; + +typedef void (GLAPIENTRY * PFNGLBINDBUFFERARBPROC) (GLenum target, GLuint buffer); +typedef void (GLAPIENTRY * PFNGLBUFFERDATAARBPROC) (GLenum target, GLsizeiptrARB size, const void *data, GLenum usage); +typedef void (GLAPIENTRY * PFNGLBUFFERSUBDATAARBPROC) (GLenum target, GLintptrARB offset, GLsizeiptrARB size, const void *data); +typedef void (GLAPIENTRY * PFNGLDELETEBUFFERSARBPROC) (GLsizei n, const GLuint* buffers); +typedef void (GLAPIENTRY * PFNGLGENBUFFERSARBPROC) (GLsizei n, GLuint* buffers); +typedef void (GLAPIENTRY * PFNGLGETBUFFERPARAMETERIVARBPROC) (GLenum target, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETBUFFERPOINTERVARBPROC) (GLenum target, GLenum pname, void** params); +typedef void (GLAPIENTRY * PFNGLGETBUFFERSUBDATAARBPROC) (GLenum target, GLintptrARB offset, GLsizeiptrARB size, void *data); +typedef GLboolean (GLAPIENTRY * PFNGLISBUFFERARBPROC) (GLuint buffer); +typedef void * (GLAPIENTRY * PFNGLMAPBUFFERARBPROC) (GLenum target, GLenum access); +typedef GLboolean (GLAPIENTRY * PFNGLUNMAPBUFFERARBPROC) (GLenum target); + +#define glBindBufferARB GLEW_GET_FUN(__glewBindBufferARB) +#define glBufferDataARB GLEW_GET_FUN(__glewBufferDataARB) +#define glBufferSubDataARB GLEW_GET_FUN(__glewBufferSubDataARB) +#define glDeleteBuffersARB GLEW_GET_FUN(__glewDeleteBuffersARB) +#define glGenBuffersARB GLEW_GET_FUN(__glewGenBuffersARB) +#define glGetBufferParameterivARB GLEW_GET_FUN(__glewGetBufferParameterivARB) +#define glGetBufferPointervARB GLEW_GET_FUN(__glewGetBufferPointervARB) +#define glGetBufferSubDataARB GLEW_GET_FUN(__glewGetBufferSubDataARB) +#define glIsBufferARB GLEW_GET_FUN(__glewIsBufferARB) +#define glMapBufferARB GLEW_GET_FUN(__glewMapBufferARB) +#define glUnmapBufferARB GLEW_GET_FUN(__glewUnmapBufferARB) + +#define GLEW_ARB_vertex_buffer_object GLEW_GET_VAR(__GLEW_ARB_vertex_buffer_object) + +#endif /* GL_ARB_vertex_buffer_object */ + +/* ------------------------- GL_ARB_vertex_program ------------------------- */ + +#ifndef GL_ARB_vertex_program +#define GL_ARB_vertex_program 1 + +#define GL_COLOR_SUM_ARB 0x8458 +#define GL_VERTEX_PROGRAM_ARB 0x8620 +#define GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB 0x8622 +#define GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB 0x8623 +#define GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB 0x8624 +#define GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB 0x8625 +#define GL_CURRENT_VERTEX_ATTRIB_ARB 0x8626 +#define GL_PROGRAM_LENGTH_ARB 0x8627 +#define GL_PROGRAM_STRING_ARB 0x8628 +#define GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB 0x862E +#define GL_MAX_PROGRAM_MATRICES_ARB 0x862F +#define GL_CURRENT_MATRIX_STACK_DEPTH_ARB 0x8640 +#define GL_CURRENT_MATRIX_ARB 0x8641 +#define GL_VERTEX_PROGRAM_POINT_SIZE_ARB 0x8642 +#define GL_VERTEX_PROGRAM_TWO_SIDE_ARB 0x8643 +#define GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB 0x8645 +#define GL_PROGRAM_ERROR_POSITION_ARB 0x864B +#define GL_PROGRAM_BINDING_ARB 0x8677 +#define GL_MAX_VERTEX_ATTRIBS_ARB 0x8869 +#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB 0x886A +#define GL_PROGRAM_ERROR_STRING_ARB 0x8874 +#define GL_PROGRAM_FORMAT_ASCII_ARB 0x8875 +#define GL_PROGRAM_FORMAT_ARB 0x8876 +#define GL_PROGRAM_INSTRUCTIONS_ARB 0x88A0 +#define GL_MAX_PROGRAM_INSTRUCTIONS_ARB 0x88A1 +#define GL_PROGRAM_NATIVE_INSTRUCTIONS_ARB 0x88A2 +#define GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB 0x88A3 +#define GL_PROGRAM_TEMPORARIES_ARB 0x88A4 +#define GL_MAX_PROGRAM_TEMPORARIES_ARB 0x88A5 +#define GL_PROGRAM_NATIVE_TEMPORARIES_ARB 0x88A6 +#define GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB 0x88A7 +#define GL_PROGRAM_PARAMETERS_ARB 0x88A8 +#define GL_MAX_PROGRAM_PARAMETERS_ARB 0x88A9 +#define GL_PROGRAM_NATIVE_PARAMETERS_ARB 0x88AA +#define GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB 0x88AB +#define GL_PROGRAM_ATTRIBS_ARB 0x88AC +#define GL_MAX_PROGRAM_ATTRIBS_ARB 0x88AD +#define GL_PROGRAM_NATIVE_ATTRIBS_ARB 0x88AE +#define GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB 0x88AF +#define GL_PROGRAM_ADDRESS_REGISTERS_ARB 0x88B0 +#define GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB 0x88B1 +#define GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB 0x88B2 +#define GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB 0x88B3 +#define GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB 0x88B4 +#define GL_MAX_PROGRAM_ENV_PARAMETERS_ARB 0x88B5 +#define GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB 0x88B6 +#define GL_TRANSPOSE_CURRENT_MATRIX_ARB 0x88B7 +#define GL_MATRIX0_ARB 0x88C0 +#define GL_MATRIX1_ARB 0x88C1 +#define GL_MATRIX2_ARB 0x88C2 +#define GL_MATRIX3_ARB 0x88C3 +#define GL_MATRIX4_ARB 0x88C4 +#define GL_MATRIX5_ARB 0x88C5 +#define GL_MATRIX6_ARB 0x88C6 +#define GL_MATRIX7_ARB 0x88C7 +#define GL_MATRIX8_ARB 0x88C8 +#define GL_MATRIX9_ARB 0x88C9 +#define GL_MATRIX10_ARB 0x88CA +#define GL_MATRIX11_ARB 0x88CB +#define GL_MATRIX12_ARB 0x88CC +#define GL_MATRIX13_ARB 0x88CD +#define GL_MATRIX14_ARB 0x88CE +#define GL_MATRIX15_ARB 0x88CF +#define GL_MATRIX16_ARB 0x88D0 +#define GL_MATRIX17_ARB 0x88D1 +#define GL_MATRIX18_ARB 0x88D2 +#define GL_MATRIX19_ARB 0x88D3 +#define GL_MATRIX20_ARB 0x88D4 +#define GL_MATRIX21_ARB 0x88D5 +#define GL_MATRIX22_ARB 0x88D6 +#define GL_MATRIX23_ARB 0x88D7 +#define GL_MATRIX24_ARB 0x88D8 +#define GL_MATRIX25_ARB 0x88D9 +#define GL_MATRIX26_ARB 0x88DA +#define GL_MATRIX27_ARB 0x88DB +#define GL_MATRIX28_ARB 0x88DC +#define GL_MATRIX29_ARB 0x88DD +#define GL_MATRIX30_ARB 0x88DE +#define GL_MATRIX31_ARB 0x88DF + +typedef void (GLAPIENTRY * PFNGLBINDPROGRAMARBPROC) (GLenum target, GLuint program); +typedef void (GLAPIENTRY * PFNGLDELETEPROGRAMSARBPROC) (GLsizei n, const GLuint* programs); +typedef void (GLAPIENTRY * PFNGLDISABLEVERTEXATTRIBARRAYARBPROC) (GLuint index); +typedef void (GLAPIENTRY * PFNGLENABLEVERTEXATTRIBARRAYARBPROC) (GLuint index); +typedef void (GLAPIENTRY * PFNGLGENPROGRAMSARBPROC) (GLsizei n, GLuint* programs); +typedef void (GLAPIENTRY * PFNGLGETPROGRAMENVPARAMETERDVARBPROC) (GLenum target, GLuint index, GLdouble* params); +typedef void (GLAPIENTRY * PFNGLGETPROGRAMENVPARAMETERFVARBPROC) (GLenum target, GLuint index, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETPROGRAMLOCALPARAMETERDVARBPROC) (GLenum target, GLuint index, GLdouble* params); +typedef void (GLAPIENTRY * PFNGLGETPROGRAMLOCALPARAMETERFVARBPROC) (GLenum target, GLuint index, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETPROGRAMSTRINGARBPROC) (GLenum target, GLenum pname, void *string); +typedef void (GLAPIENTRY * PFNGLGETPROGRAMIVARBPROC) (GLenum target, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBPOINTERVARBPROC) (GLuint index, GLenum pname, void** pointer); +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBDVARBPROC) (GLuint index, GLenum pname, GLdouble* params); +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBFVARBPROC) (GLuint index, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBIVARBPROC) (GLuint index, GLenum pname, GLint* params); +typedef GLboolean (GLAPIENTRY * PFNGLISPROGRAMARBPROC) (GLuint program); +typedef void (GLAPIENTRY * PFNGLPROGRAMENVPARAMETER4DARBPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (GLAPIENTRY * PFNGLPROGRAMENVPARAMETER4DVARBPROC) (GLenum target, GLuint index, const GLdouble* params); +typedef void (GLAPIENTRY * PFNGLPROGRAMENVPARAMETER4FARBPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (GLAPIENTRY * PFNGLPROGRAMENVPARAMETER4FVARBPROC) (GLenum target, GLuint index, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLPROGRAMLOCALPARAMETER4DARBPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (GLAPIENTRY * PFNGLPROGRAMLOCALPARAMETER4DVARBPROC) (GLenum target, GLuint index, const GLdouble* params); +typedef void (GLAPIENTRY * PFNGLPROGRAMLOCALPARAMETER4FARBPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (GLAPIENTRY * PFNGLPROGRAMLOCALPARAMETER4FVARBPROC) (GLenum target, GLuint index, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLPROGRAMSTRINGARBPROC) (GLenum target, GLenum format, GLsizei len, const void *string); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1DARBPROC) (GLuint index, GLdouble x); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1DVARBPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1FARBPROC) (GLuint index, GLfloat x); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1FVARBPROC) (GLuint index, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1SARBPROC) (GLuint index, GLshort x); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1SVARBPROC) (GLuint index, const GLshort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2DARBPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2DVARBPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2FARBPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2FVARBPROC) (GLuint index, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2SARBPROC) (GLuint index, GLshort x, GLshort y); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2SVARBPROC) (GLuint index, const GLshort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3DARBPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3DVARBPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3FARBPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3FVARBPROC) (GLuint index, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3SARBPROC) (GLuint index, GLshort x, GLshort y, GLshort z); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3SVARBPROC) (GLuint index, const GLshort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4NBVARBPROC) (GLuint index, const GLbyte* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4NIVARBPROC) (GLuint index, const GLint* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4NSVARBPROC) (GLuint index, const GLshort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4NUBARBPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4NUBVARBPROC) (GLuint index, const GLubyte* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4NUIVARBPROC) (GLuint index, const GLuint* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4NUSVARBPROC) (GLuint index, const GLushort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4BVARBPROC) (GLuint index, const GLbyte* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4DARBPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4DVARBPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4FARBPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4FVARBPROC) (GLuint index, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4IVARBPROC) (GLuint index, const GLint* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4SARBPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4SVARBPROC) (GLuint index, const GLshort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4UBVARBPROC) (GLuint index, const GLubyte* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4UIVARBPROC) (GLuint index, const GLuint* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4USVARBPROC) (GLuint index, const GLushort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBPOINTERARBPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); + +#define glBindProgramARB GLEW_GET_FUN(__glewBindProgramARB) +#define glDeleteProgramsARB GLEW_GET_FUN(__glewDeleteProgramsARB) +#define glDisableVertexAttribArrayARB GLEW_GET_FUN(__glewDisableVertexAttribArrayARB) +#define glEnableVertexAttribArrayARB GLEW_GET_FUN(__glewEnableVertexAttribArrayARB) +#define glGenProgramsARB GLEW_GET_FUN(__glewGenProgramsARB) +#define glGetProgramEnvParameterdvARB GLEW_GET_FUN(__glewGetProgramEnvParameterdvARB) +#define glGetProgramEnvParameterfvARB GLEW_GET_FUN(__glewGetProgramEnvParameterfvARB) +#define glGetProgramLocalParameterdvARB GLEW_GET_FUN(__glewGetProgramLocalParameterdvARB) +#define glGetProgramLocalParameterfvARB GLEW_GET_FUN(__glewGetProgramLocalParameterfvARB) +#define glGetProgramStringARB GLEW_GET_FUN(__glewGetProgramStringARB) +#define glGetProgramivARB GLEW_GET_FUN(__glewGetProgramivARB) +#define glGetVertexAttribPointervARB GLEW_GET_FUN(__glewGetVertexAttribPointervARB) +#define glGetVertexAttribdvARB GLEW_GET_FUN(__glewGetVertexAttribdvARB) +#define glGetVertexAttribfvARB GLEW_GET_FUN(__glewGetVertexAttribfvARB) +#define glGetVertexAttribivARB GLEW_GET_FUN(__glewGetVertexAttribivARB) +#define glIsProgramARB GLEW_GET_FUN(__glewIsProgramARB) +#define glProgramEnvParameter4dARB GLEW_GET_FUN(__glewProgramEnvParameter4dARB) +#define glProgramEnvParameter4dvARB GLEW_GET_FUN(__glewProgramEnvParameter4dvARB) +#define glProgramEnvParameter4fARB GLEW_GET_FUN(__glewProgramEnvParameter4fARB) +#define glProgramEnvParameter4fvARB GLEW_GET_FUN(__glewProgramEnvParameter4fvARB) +#define glProgramLocalParameter4dARB GLEW_GET_FUN(__glewProgramLocalParameter4dARB) +#define glProgramLocalParameter4dvARB GLEW_GET_FUN(__glewProgramLocalParameter4dvARB) +#define glProgramLocalParameter4fARB GLEW_GET_FUN(__glewProgramLocalParameter4fARB) +#define glProgramLocalParameter4fvARB GLEW_GET_FUN(__glewProgramLocalParameter4fvARB) +#define glProgramStringARB GLEW_GET_FUN(__glewProgramStringARB) +#define glVertexAttrib1dARB GLEW_GET_FUN(__glewVertexAttrib1dARB) +#define glVertexAttrib1dvARB GLEW_GET_FUN(__glewVertexAttrib1dvARB) +#define glVertexAttrib1fARB GLEW_GET_FUN(__glewVertexAttrib1fARB) +#define glVertexAttrib1fvARB GLEW_GET_FUN(__glewVertexAttrib1fvARB) +#define glVertexAttrib1sARB GLEW_GET_FUN(__glewVertexAttrib1sARB) +#define glVertexAttrib1svARB GLEW_GET_FUN(__glewVertexAttrib1svARB) +#define glVertexAttrib2dARB GLEW_GET_FUN(__glewVertexAttrib2dARB) +#define glVertexAttrib2dvARB GLEW_GET_FUN(__glewVertexAttrib2dvARB) +#define glVertexAttrib2fARB GLEW_GET_FUN(__glewVertexAttrib2fARB) +#define glVertexAttrib2fvARB GLEW_GET_FUN(__glewVertexAttrib2fvARB) +#define glVertexAttrib2sARB GLEW_GET_FUN(__glewVertexAttrib2sARB) +#define glVertexAttrib2svARB GLEW_GET_FUN(__glewVertexAttrib2svARB) +#define glVertexAttrib3dARB GLEW_GET_FUN(__glewVertexAttrib3dARB) +#define glVertexAttrib3dvARB GLEW_GET_FUN(__glewVertexAttrib3dvARB) +#define glVertexAttrib3fARB GLEW_GET_FUN(__glewVertexAttrib3fARB) +#define glVertexAttrib3fvARB GLEW_GET_FUN(__glewVertexAttrib3fvARB) +#define glVertexAttrib3sARB GLEW_GET_FUN(__glewVertexAttrib3sARB) +#define glVertexAttrib3svARB GLEW_GET_FUN(__glewVertexAttrib3svARB) +#define glVertexAttrib4NbvARB GLEW_GET_FUN(__glewVertexAttrib4NbvARB) +#define glVertexAttrib4NivARB GLEW_GET_FUN(__glewVertexAttrib4NivARB) +#define glVertexAttrib4NsvARB GLEW_GET_FUN(__glewVertexAttrib4NsvARB) +#define glVertexAttrib4NubARB GLEW_GET_FUN(__glewVertexAttrib4NubARB) +#define glVertexAttrib4NubvARB GLEW_GET_FUN(__glewVertexAttrib4NubvARB) +#define glVertexAttrib4NuivARB GLEW_GET_FUN(__glewVertexAttrib4NuivARB) +#define glVertexAttrib4NusvARB GLEW_GET_FUN(__glewVertexAttrib4NusvARB) +#define glVertexAttrib4bvARB GLEW_GET_FUN(__glewVertexAttrib4bvARB) +#define glVertexAttrib4dARB GLEW_GET_FUN(__glewVertexAttrib4dARB) +#define glVertexAttrib4dvARB GLEW_GET_FUN(__glewVertexAttrib4dvARB) +#define glVertexAttrib4fARB GLEW_GET_FUN(__glewVertexAttrib4fARB) +#define glVertexAttrib4fvARB GLEW_GET_FUN(__glewVertexAttrib4fvARB) +#define glVertexAttrib4ivARB GLEW_GET_FUN(__glewVertexAttrib4ivARB) +#define glVertexAttrib4sARB GLEW_GET_FUN(__glewVertexAttrib4sARB) +#define glVertexAttrib4svARB GLEW_GET_FUN(__glewVertexAttrib4svARB) +#define glVertexAttrib4ubvARB GLEW_GET_FUN(__glewVertexAttrib4ubvARB) +#define glVertexAttrib4uivARB GLEW_GET_FUN(__glewVertexAttrib4uivARB) +#define glVertexAttrib4usvARB GLEW_GET_FUN(__glewVertexAttrib4usvARB) +#define glVertexAttribPointerARB GLEW_GET_FUN(__glewVertexAttribPointerARB) + +#define GLEW_ARB_vertex_program GLEW_GET_VAR(__GLEW_ARB_vertex_program) + +#endif /* GL_ARB_vertex_program */ + +/* -------------------------- GL_ARB_vertex_shader ------------------------- */ + +#ifndef GL_ARB_vertex_shader +#define GL_ARB_vertex_shader 1 + +#define GL_VERTEX_SHADER_ARB 0x8B31 +#define GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB 0x8B4A +#define GL_MAX_VARYING_FLOATS_ARB 0x8B4B +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB 0x8B4C +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB 0x8B4D +#define GL_OBJECT_ACTIVE_ATTRIBUTES_ARB 0x8B89 +#define GL_OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB 0x8B8A + +typedef void (GLAPIENTRY * PFNGLBINDATTRIBLOCATIONARBPROC) (GLhandleARB programObj, GLuint index, const GLcharARB* name); +typedef void (GLAPIENTRY * PFNGLGETACTIVEATTRIBARBPROC) (GLhandleARB programObj, GLuint index, GLsizei maxLength, GLsizei* length, GLint *size, GLenum *type, GLcharARB *name); +typedef GLint (GLAPIENTRY * PFNGLGETATTRIBLOCATIONARBPROC) (GLhandleARB programObj, const GLcharARB* name); + +#define glBindAttribLocationARB GLEW_GET_FUN(__glewBindAttribLocationARB) +#define glGetActiveAttribARB GLEW_GET_FUN(__glewGetActiveAttribARB) +#define glGetAttribLocationARB GLEW_GET_FUN(__glewGetAttribLocationARB) + +#define GLEW_ARB_vertex_shader GLEW_GET_VAR(__GLEW_ARB_vertex_shader) + +#endif /* GL_ARB_vertex_shader */ + +/* ------------------- GL_ARB_vertex_type_10f_11f_11f_rev ------------------ */ + +#ifndef GL_ARB_vertex_type_10f_11f_11f_rev +#define GL_ARB_vertex_type_10f_11f_11f_rev 1 + +#define GL_UNSIGNED_INT_10F_11F_11F_REV 0x8C3B + +#define GLEW_ARB_vertex_type_10f_11f_11f_rev GLEW_GET_VAR(__GLEW_ARB_vertex_type_10f_11f_11f_rev) + +#endif /* GL_ARB_vertex_type_10f_11f_11f_rev */ + +/* ------------------- GL_ARB_vertex_type_2_10_10_10_rev ------------------- */ + +#ifndef GL_ARB_vertex_type_2_10_10_10_rev +#define GL_ARB_vertex_type_2_10_10_10_rev 1 + +#define GL_UNSIGNED_INT_2_10_10_10_REV 0x8368 +#define GL_INT_2_10_10_10_REV 0x8D9F + +typedef void (GLAPIENTRY * PFNGLCOLORP3UIPROC) (GLenum type, GLuint color); +typedef void (GLAPIENTRY * PFNGLCOLORP3UIVPROC) (GLenum type, const GLuint* color); +typedef void (GLAPIENTRY * PFNGLCOLORP4UIPROC) (GLenum type, GLuint color); +typedef void (GLAPIENTRY * PFNGLCOLORP4UIVPROC) (GLenum type, const GLuint* color); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORDP1UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORDP1UIVPROC) (GLenum texture, GLenum type, const GLuint* coords); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORDP2UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORDP2UIVPROC) (GLenum texture, GLenum type, const GLuint* coords); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORDP3UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORDP3UIVPROC) (GLenum texture, GLenum type, const GLuint* coords); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORDP4UIPROC) (GLenum texture, GLenum type, GLuint coords); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORDP4UIVPROC) (GLenum texture, GLenum type, const GLuint* coords); +typedef void (GLAPIENTRY * PFNGLNORMALP3UIPROC) (GLenum type, GLuint coords); +typedef void (GLAPIENTRY * PFNGLNORMALP3UIVPROC) (GLenum type, const GLuint* coords); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLORP3UIPROC) (GLenum type, GLuint color); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLORP3UIVPROC) (GLenum type, const GLuint* color); +typedef void (GLAPIENTRY * PFNGLTEXCOORDP1UIPROC) (GLenum type, GLuint coords); +typedef void (GLAPIENTRY * PFNGLTEXCOORDP1UIVPROC) (GLenum type, const GLuint* coords); +typedef void (GLAPIENTRY * PFNGLTEXCOORDP2UIPROC) (GLenum type, GLuint coords); +typedef void (GLAPIENTRY * PFNGLTEXCOORDP2UIVPROC) (GLenum type, const GLuint* coords); +typedef void (GLAPIENTRY * PFNGLTEXCOORDP3UIPROC) (GLenum type, GLuint coords); +typedef void (GLAPIENTRY * PFNGLTEXCOORDP3UIVPROC) (GLenum type, const GLuint* coords); +typedef void (GLAPIENTRY * PFNGLTEXCOORDP4UIPROC) (GLenum type, GLuint coords); +typedef void (GLAPIENTRY * PFNGLTEXCOORDP4UIVPROC) (GLenum type, const GLuint* coords); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBP1UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBP1UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBP2UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBP2UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBP3UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBP3UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBP4UIPROC) (GLuint index, GLenum type, GLboolean normalized, GLuint value); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBP4UIVPROC) (GLuint index, GLenum type, GLboolean normalized, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLVERTEXP2UIPROC) (GLenum type, GLuint value); +typedef void (GLAPIENTRY * PFNGLVERTEXP2UIVPROC) (GLenum type, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLVERTEXP3UIPROC) (GLenum type, GLuint value); +typedef void (GLAPIENTRY * PFNGLVERTEXP3UIVPROC) (GLenum type, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLVERTEXP4UIPROC) (GLenum type, GLuint value); +typedef void (GLAPIENTRY * PFNGLVERTEXP4UIVPROC) (GLenum type, const GLuint* value); + +#define glColorP3ui GLEW_GET_FUN(__glewColorP3ui) +#define glColorP3uiv GLEW_GET_FUN(__glewColorP3uiv) +#define glColorP4ui GLEW_GET_FUN(__glewColorP4ui) +#define glColorP4uiv GLEW_GET_FUN(__glewColorP4uiv) +#define glMultiTexCoordP1ui GLEW_GET_FUN(__glewMultiTexCoordP1ui) +#define glMultiTexCoordP1uiv GLEW_GET_FUN(__glewMultiTexCoordP1uiv) +#define glMultiTexCoordP2ui GLEW_GET_FUN(__glewMultiTexCoordP2ui) +#define glMultiTexCoordP2uiv GLEW_GET_FUN(__glewMultiTexCoordP2uiv) +#define glMultiTexCoordP3ui GLEW_GET_FUN(__glewMultiTexCoordP3ui) +#define glMultiTexCoordP3uiv GLEW_GET_FUN(__glewMultiTexCoordP3uiv) +#define glMultiTexCoordP4ui GLEW_GET_FUN(__glewMultiTexCoordP4ui) +#define glMultiTexCoordP4uiv GLEW_GET_FUN(__glewMultiTexCoordP4uiv) +#define glNormalP3ui GLEW_GET_FUN(__glewNormalP3ui) +#define glNormalP3uiv GLEW_GET_FUN(__glewNormalP3uiv) +#define glSecondaryColorP3ui GLEW_GET_FUN(__glewSecondaryColorP3ui) +#define glSecondaryColorP3uiv GLEW_GET_FUN(__glewSecondaryColorP3uiv) +#define glTexCoordP1ui GLEW_GET_FUN(__glewTexCoordP1ui) +#define glTexCoordP1uiv GLEW_GET_FUN(__glewTexCoordP1uiv) +#define glTexCoordP2ui GLEW_GET_FUN(__glewTexCoordP2ui) +#define glTexCoordP2uiv GLEW_GET_FUN(__glewTexCoordP2uiv) +#define glTexCoordP3ui GLEW_GET_FUN(__glewTexCoordP3ui) +#define glTexCoordP3uiv GLEW_GET_FUN(__glewTexCoordP3uiv) +#define glTexCoordP4ui GLEW_GET_FUN(__glewTexCoordP4ui) +#define glTexCoordP4uiv GLEW_GET_FUN(__glewTexCoordP4uiv) +#define glVertexAttribP1ui GLEW_GET_FUN(__glewVertexAttribP1ui) +#define glVertexAttribP1uiv GLEW_GET_FUN(__glewVertexAttribP1uiv) +#define glVertexAttribP2ui GLEW_GET_FUN(__glewVertexAttribP2ui) +#define glVertexAttribP2uiv GLEW_GET_FUN(__glewVertexAttribP2uiv) +#define glVertexAttribP3ui GLEW_GET_FUN(__glewVertexAttribP3ui) +#define glVertexAttribP3uiv GLEW_GET_FUN(__glewVertexAttribP3uiv) +#define glVertexAttribP4ui GLEW_GET_FUN(__glewVertexAttribP4ui) +#define glVertexAttribP4uiv GLEW_GET_FUN(__glewVertexAttribP4uiv) +#define glVertexP2ui GLEW_GET_FUN(__glewVertexP2ui) +#define glVertexP2uiv GLEW_GET_FUN(__glewVertexP2uiv) +#define glVertexP3ui GLEW_GET_FUN(__glewVertexP3ui) +#define glVertexP3uiv GLEW_GET_FUN(__glewVertexP3uiv) +#define glVertexP4ui GLEW_GET_FUN(__glewVertexP4ui) +#define glVertexP4uiv GLEW_GET_FUN(__glewVertexP4uiv) + +#define GLEW_ARB_vertex_type_2_10_10_10_rev GLEW_GET_VAR(__GLEW_ARB_vertex_type_2_10_10_10_rev) + +#endif /* GL_ARB_vertex_type_2_10_10_10_rev */ + +/* ------------------------- GL_ARB_viewport_array ------------------------- */ + +#ifndef GL_ARB_viewport_array +#define GL_ARB_viewport_array 1 + +#define GL_DEPTH_RANGE 0x0B70 +#define GL_VIEWPORT 0x0BA2 +#define GL_SCISSOR_BOX 0x0C10 +#define GL_SCISSOR_TEST 0x0C11 +#define GL_MAX_VIEWPORTS 0x825B +#define GL_VIEWPORT_SUBPIXEL_BITS 0x825C +#define GL_VIEWPORT_BOUNDS_RANGE 0x825D +#define GL_LAYER_PROVOKING_VERTEX 0x825E +#define GL_VIEWPORT_INDEX_PROVOKING_VERTEX 0x825F +#define GL_UNDEFINED_VERTEX 0x8260 +#define GL_FIRST_VERTEX_CONVENTION 0x8E4D +#define GL_LAST_VERTEX_CONVENTION 0x8E4E +#define GL_PROVOKING_VERTEX 0x8E4F + +typedef void (GLAPIENTRY * PFNGLDEPTHRANGEARRAYVPROC) (GLuint first, GLsizei count, const GLclampd * v); +typedef void (GLAPIENTRY * PFNGLDEPTHRANGEINDEXEDPROC) (GLuint index, GLclampd n, GLclampd f); +typedef void (GLAPIENTRY * PFNGLGETDOUBLEI_VPROC) (GLenum target, GLuint index, GLdouble* data); +typedef void (GLAPIENTRY * PFNGLGETFLOATI_VPROC) (GLenum target, GLuint index, GLfloat* data); +typedef void (GLAPIENTRY * PFNGLSCISSORARRAYVPROC) (GLuint first, GLsizei count, const GLint * v); +typedef void (GLAPIENTRY * PFNGLSCISSORINDEXEDPROC) (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLSCISSORINDEXEDVPROC) (GLuint index, const GLint * v); +typedef void (GLAPIENTRY * PFNGLVIEWPORTARRAYVPROC) (GLuint first, GLsizei count, const GLfloat * v); +typedef void (GLAPIENTRY * PFNGLVIEWPORTINDEXEDFPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +typedef void (GLAPIENTRY * PFNGLVIEWPORTINDEXEDFVPROC) (GLuint index, const GLfloat * v); + +#define glDepthRangeArrayv GLEW_GET_FUN(__glewDepthRangeArrayv) +#define glDepthRangeIndexed GLEW_GET_FUN(__glewDepthRangeIndexed) +#define glGetDoublei_v GLEW_GET_FUN(__glewGetDoublei_v) +#define glGetFloati_v GLEW_GET_FUN(__glewGetFloati_v) +#define glScissorArrayv GLEW_GET_FUN(__glewScissorArrayv) +#define glScissorIndexed GLEW_GET_FUN(__glewScissorIndexed) +#define glScissorIndexedv GLEW_GET_FUN(__glewScissorIndexedv) +#define glViewportArrayv GLEW_GET_FUN(__glewViewportArrayv) +#define glViewportIndexedf GLEW_GET_FUN(__glewViewportIndexedf) +#define glViewportIndexedfv GLEW_GET_FUN(__glewViewportIndexedfv) + +#define GLEW_ARB_viewport_array GLEW_GET_VAR(__GLEW_ARB_viewport_array) + +#endif /* GL_ARB_viewport_array */ + +/* --------------------------- GL_ARB_window_pos --------------------------- */ + +#ifndef GL_ARB_window_pos +#define GL_ARB_window_pos 1 + +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2DARBPROC) (GLdouble x, GLdouble y); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2DVARBPROC) (const GLdouble* p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2FARBPROC) (GLfloat x, GLfloat y); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2FVARBPROC) (const GLfloat* p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2IARBPROC) (GLint x, GLint y); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2IVARBPROC) (const GLint* p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2SARBPROC) (GLshort x, GLshort y); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2SVARBPROC) (const GLshort* p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3DARBPROC) (GLdouble x, GLdouble y, GLdouble z); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3DVARBPROC) (const GLdouble* p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3FARBPROC) (GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3FVARBPROC) (const GLfloat* p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3IARBPROC) (GLint x, GLint y, GLint z); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3IVARBPROC) (const GLint* p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3SARBPROC) (GLshort x, GLshort y, GLshort z); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3SVARBPROC) (const GLshort* p); + +#define glWindowPos2dARB GLEW_GET_FUN(__glewWindowPos2dARB) +#define glWindowPos2dvARB GLEW_GET_FUN(__glewWindowPos2dvARB) +#define glWindowPos2fARB GLEW_GET_FUN(__glewWindowPos2fARB) +#define glWindowPos2fvARB GLEW_GET_FUN(__glewWindowPos2fvARB) +#define glWindowPos2iARB GLEW_GET_FUN(__glewWindowPos2iARB) +#define glWindowPos2ivARB GLEW_GET_FUN(__glewWindowPos2ivARB) +#define glWindowPos2sARB GLEW_GET_FUN(__glewWindowPos2sARB) +#define glWindowPos2svARB GLEW_GET_FUN(__glewWindowPos2svARB) +#define glWindowPos3dARB GLEW_GET_FUN(__glewWindowPos3dARB) +#define glWindowPos3dvARB GLEW_GET_FUN(__glewWindowPos3dvARB) +#define glWindowPos3fARB GLEW_GET_FUN(__glewWindowPos3fARB) +#define glWindowPos3fvARB GLEW_GET_FUN(__glewWindowPos3fvARB) +#define glWindowPos3iARB GLEW_GET_FUN(__glewWindowPos3iARB) +#define glWindowPos3ivARB GLEW_GET_FUN(__glewWindowPos3ivARB) +#define glWindowPos3sARB GLEW_GET_FUN(__glewWindowPos3sARB) +#define glWindowPos3svARB GLEW_GET_FUN(__glewWindowPos3svARB) + +#define GLEW_ARB_window_pos GLEW_GET_VAR(__GLEW_ARB_window_pos) + +#endif /* GL_ARB_window_pos */ + +/* ----------------------- GL_ARM_mali_program_binary ---------------------- */ + +#ifndef GL_ARM_mali_program_binary +#define GL_ARM_mali_program_binary 1 + +#define GL_MALI_PROGRAM_BINARY_ARM 0x8F61 + +#define GLEW_ARM_mali_program_binary GLEW_GET_VAR(__GLEW_ARM_mali_program_binary) + +#endif /* GL_ARM_mali_program_binary */ + +/* ----------------------- GL_ARM_mali_shader_binary ----------------------- */ + +#ifndef GL_ARM_mali_shader_binary +#define GL_ARM_mali_shader_binary 1 + +#define GL_MALI_SHADER_BINARY_ARM 0x8F60 + +#define GLEW_ARM_mali_shader_binary GLEW_GET_VAR(__GLEW_ARM_mali_shader_binary) + +#endif /* GL_ARM_mali_shader_binary */ + +/* ------------------------------ GL_ARM_rgba8 ----------------------------- */ + +#ifndef GL_ARM_rgba8 +#define GL_ARM_rgba8 1 + +#define GL_RGBA8_OES 0x8058 + +#define GLEW_ARM_rgba8 GLEW_GET_VAR(__GLEW_ARM_rgba8) + +#endif /* GL_ARM_rgba8 */ + +/* -------------------- GL_ARM_shader_framebuffer_fetch -------------------- */ + +#ifndef GL_ARM_shader_framebuffer_fetch +#define GL_ARM_shader_framebuffer_fetch 1 + +#define GL_FETCH_PER_SAMPLE_ARM 0x8F65 +#define GL_FRAGMENT_SHADER_FRAMEBUFFER_FETCH_MRT_ARM 0x8F66 + +#define GLEW_ARM_shader_framebuffer_fetch GLEW_GET_VAR(__GLEW_ARM_shader_framebuffer_fetch) + +#endif /* GL_ARM_shader_framebuffer_fetch */ + +/* ------------- GL_ARM_shader_framebuffer_fetch_depth_stencil ------------- */ + +#ifndef GL_ARM_shader_framebuffer_fetch_depth_stencil +#define GL_ARM_shader_framebuffer_fetch_depth_stencil 1 + +#define GLEW_ARM_shader_framebuffer_fetch_depth_stencil GLEW_GET_VAR(__GLEW_ARM_shader_framebuffer_fetch_depth_stencil) + +#endif /* GL_ARM_shader_framebuffer_fetch_depth_stencil */ + +/* ------------------------- GL_ATIX_point_sprites ------------------------- */ + +#ifndef GL_ATIX_point_sprites +#define GL_ATIX_point_sprites 1 + +#define GL_TEXTURE_POINT_MODE_ATIX 0x60B0 +#define GL_TEXTURE_POINT_ONE_COORD_ATIX 0x60B1 +#define GL_TEXTURE_POINT_SPRITE_ATIX 0x60B2 +#define GL_POINT_SPRITE_CULL_MODE_ATIX 0x60B3 +#define GL_POINT_SPRITE_CULL_CENTER_ATIX 0x60B4 +#define GL_POINT_SPRITE_CULL_CLIP_ATIX 0x60B5 + +#define GLEW_ATIX_point_sprites GLEW_GET_VAR(__GLEW_ATIX_point_sprites) + +#endif /* GL_ATIX_point_sprites */ + +/* ---------------------- GL_ATIX_texture_env_combine3 --------------------- */ + +#ifndef GL_ATIX_texture_env_combine3 +#define GL_ATIX_texture_env_combine3 1 + +#define GL_MODULATE_ADD_ATIX 0x8744 +#define GL_MODULATE_SIGNED_ADD_ATIX 0x8745 +#define GL_MODULATE_SUBTRACT_ATIX 0x8746 + +#define GLEW_ATIX_texture_env_combine3 GLEW_GET_VAR(__GLEW_ATIX_texture_env_combine3) + +#endif /* GL_ATIX_texture_env_combine3 */ + +/* ----------------------- GL_ATIX_texture_env_route ----------------------- */ + +#ifndef GL_ATIX_texture_env_route +#define GL_ATIX_texture_env_route 1 + +#define GL_SECONDARY_COLOR_ATIX 0x8747 +#define GL_TEXTURE_OUTPUT_RGB_ATIX 0x8748 +#define GL_TEXTURE_OUTPUT_ALPHA_ATIX 0x8749 + +#define GLEW_ATIX_texture_env_route GLEW_GET_VAR(__GLEW_ATIX_texture_env_route) + +#endif /* GL_ATIX_texture_env_route */ + +/* ---------------- GL_ATIX_vertex_shader_output_point_size ---------------- */ + +#ifndef GL_ATIX_vertex_shader_output_point_size +#define GL_ATIX_vertex_shader_output_point_size 1 + +#define GL_OUTPUT_POINT_SIZE_ATIX 0x610E + +#define GLEW_ATIX_vertex_shader_output_point_size GLEW_GET_VAR(__GLEW_ATIX_vertex_shader_output_point_size) + +#endif /* GL_ATIX_vertex_shader_output_point_size */ + +/* -------------------------- GL_ATI_draw_buffers -------------------------- */ + +#ifndef GL_ATI_draw_buffers +#define GL_ATI_draw_buffers 1 + +#define GL_MAX_DRAW_BUFFERS_ATI 0x8824 +#define GL_DRAW_BUFFER0_ATI 0x8825 +#define GL_DRAW_BUFFER1_ATI 0x8826 +#define GL_DRAW_BUFFER2_ATI 0x8827 +#define GL_DRAW_BUFFER3_ATI 0x8828 +#define GL_DRAW_BUFFER4_ATI 0x8829 +#define GL_DRAW_BUFFER5_ATI 0x882A +#define GL_DRAW_BUFFER6_ATI 0x882B +#define GL_DRAW_BUFFER7_ATI 0x882C +#define GL_DRAW_BUFFER8_ATI 0x882D +#define GL_DRAW_BUFFER9_ATI 0x882E +#define GL_DRAW_BUFFER10_ATI 0x882F +#define GL_DRAW_BUFFER11_ATI 0x8830 +#define GL_DRAW_BUFFER12_ATI 0x8831 +#define GL_DRAW_BUFFER13_ATI 0x8832 +#define GL_DRAW_BUFFER14_ATI 0x8833 +#define GL_DRAW_BUFFER15_ATI 0x8834 + +typedef void (GLAPIENTRY * PFNGLDRAWBUFFERSATIPROC) (GLsizei n, const GLenum* bufs); + +#define glDrawBuffersATI GLEW_GET_FUN(__glewDrawBuffersATI) + +#define GLEW_ATI_draw_buffers GLEW_GET_VAR(__GLEW_ATI_draw_buffers) + +#endif /* GL_ATI_draw_buffers */ + +/* -------------------------- GL_ATI_element_array ------------------------- */ + +#ifndef GL_ATI_element_array +#define GL_ATI_element_array 1 + +#define GL_ELEMENT_ARRAY_ATI 0x8768 +#define GL_ELEMENT_ARRAY_TYPE_ATI 0x8769 +#define GL_ELEMENT_ARRAY_POINTER_ATI 0x876A + +typedef void (GLAPIENTRY * PFNGLDRAWELEMENTARRAYATIPROC) (GLenum mode, GLsizei count); +typedef void (GLAPIENTRY * PFNGLDRAWRANGEELEMENTARRAYATIPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count); +typedef void (GLAPIENTRY * PFNGLELEMENTPOINTERATIPROC) (GLenum type, const void *pointer); + +#define glDrawElementArrayATI GLEW_GET_FUN(__glewDrawElementArrayATI) +#define glDrawRangeElementArrayATI GLEW_GET_FUN(__glewDrawRangeElementArrayATI) +#define glElementPointerATI GLEW_GET_FUN(__glewElementPointerATI) + +#define GLEW_ATI_element_array GLEW_GET_VAR(__GLEW_ATI_element_array) + +#endif /* GL_ATI_element_array */ + +/* ------------------------- GL_ATI_envmap_bumpmap ------------------------- */ + +#ifndef GL_ATI_envmap_bumpmap +#define GL_ATI_envmap_bumpmap 1 + +#define GL_BUMP_ROT_MATRIX_ATI 0x8775 +#define GL_BUMP_ROT_MATRIX_SIZE_ATI 0x8776 +#define GL_BUMP_NUM_TEX_UNITS_ATI 0x8777 +#define GL_BUMP_TEX_UNITS_ATI 0x8778 +#define GL_DUDV_ATI 0x8779 +#define GL_DU8DV8_ATI 0x877A +#define GL_BUMP_ENVMAP_ATI 0x877B +#define GL_BUMP_TARGET_ATI 0x877C + +typedef void (GLAPIENTRY * PFNGLGETTEXBUMPPARAMETERFVATIPROC) (GLenum pname, GLfloat *param); +typedef void (GLAPIENTRY * PFNGLGETTEXBUMPPARAMETERIVATIPROC) (GLenum pname, GLint *param); +typedef void (GLAPIENTRY * PFNGLTEXBUMPPARAMETERFVATIPROC) (GLenum pname, GLfloat *param); +typedef void (GLAPIENTRY * PFNGLTEXBUMPPARAMETERIVATIPROC) (GLenum pname, GLint *param); + +#define glGetTexBumpParameterfvATI GLEW_GET_FUN(__glewGetTexBumpParameterfvATI) +#define glGetTexBumpParameterivATI GLEW_GET_FUN(__glewGetTexBumpParameterivATI) +#define glTexBumpParameterfvATI GLEW_GET_FUN(__glewTexBumpParameterfvATI) +#define glTexBumpParameterivATI GLEW_GET_FUN(__glewTexBumpParameterivATI) + +#define GLEW_ATI_envmap_bumpmap GLEW_GET_VAR(__GLEW_ATI_envmap_bumpmap) + +#endif /* GL_ATI_envmap_bumpmap */ + +/* ------------------------- GL_ATI_fragment_shader ------------------------ */ + +#ifndef GL_ATI_fragment_shader +#define GL_ATI_fragment_shader 1 + +#define GL_2X_BIT_ATI 0x00000001 +#define GL_RED_BIT_ATI 0x00000001 +#define GL_4X_BIT_ATI 0x00000002 +#define GL_COMP_BIT_ATI 0x00000002 +#define GL_GREEN_BIT_ATI 0x00000002 +#define GL_8X_BIT_ATI 0x00000004 +#define GL_BLUE_BIT_ATI 0x00000004 +#define GL_NEGATE_BIT_ATI 0x00000004 +#define GL_BIAS_BIT_ATI 0x00000008 +#define GL_HALF_BIT_ATI 0x00000008 +#define GL_QUARTER_BIT_ATI 0x00000010 +#define GL_EIGHTH_BIT_ATI 0x00000020 +#define GL_SATURATE_BIT_ATI 0x00000040 +#define GL_FRAGMENT_SHADER_ATI 0x8920 +#define GL_REG_0_ATI 0x8921 +#define GL_REG_1_ATI 0x8922 +#define GL_REG_2_ATI 0x8923 +#define GL_REG_3_ATI 0x8924 +#define GL_REG_4_ATI 0x8925 +#define GL_REG_5_ATI 0x8926 +#define GL_CON_0_ATI 0x8941 +#define GL_CON_1_ATI 0x8942 +#define GL_CON_2_ATI 0x8943 +#define GL_CON_3_ATI 0x8944 +#define GL_CON_4_ATI 0x8945 +#define GL_CON_5_ATI 0x8946 +#define GL_CON_6_ATI 0x8947 +#define GL_CON_7_ATI 0x8948 +#define GL_MOV_ATI 0x8961 +#define GL_ADD_ATI 0x8963 +#define GL_MUL_ATI 0x8964 +#define GL_SUB_ATI 0x8965 +#define GL_DOT3_ATI 0x8966 +#define GL_DOT4_ATI 0x8967 +#define GL_MAD_ATI 0x8968 +#define GL_LERP_ATI 0x8969 +#define GL_CND_ATI 0x896A +#define GL_CND0_ATI 0x896B +#define GL_DOT2_ADD_ATI 0x896C +#define GL_SECONDARY_INTERPOLATOR_ATI 0x896D +#define GL_NUM_FRAGMENT_REGISTERS_ATI 0x896E +#define GL_NUM_FRAGMENT_CONSTANTS_ATI 0x896F +#define GL_NUM_PASSES_ATI 0x8970 +#define GL_NUM_INSTRUCTIONS_PER_PASS_ATI 0x8971 +#define GL_NUM_INSTRUCTIONS_TOTAL_ATI 0x8972 +#define GL_NUM_INPUT_INTERPOLATOR_COMPONENTS_ATI 0x8973 +#define GL_NUM_LOOPBACK_COMPONENTS_ATI 0x8974 +#define GL_COLOR_ALPHA_PAIRING_ATI 0x8975 +#define GL_SWIZZLE_STR_ATI 0x8976 +#define GL_SWIZZLE_STQ_ATI 0x8977 +#define GL_SWIZZLE_STR_DR_ATI 0x8978 +#define GL_SWIZZLE_STQ_DQ_ATI 0x8979 +#define GL_SWIZZLE_STRQ_ATI 0x897A +#define GL_SWIZZLE_STRQ_DQ_ATI 0x897B + +typedef void (GLAPIENTRY * PFNGLALPHAFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +typedef void (GLAPIENTRY * PFNGLALPHAFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +typedef void (GLAPIENTRY * PFNGLALPHAFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +typedef void (GLAPIENTRY * PFNGLBEGINFRAGMENTSHADERATIPROC) (void); +typedef void (GLAPIENTRY * PFNGLBINDFRAGMENTSHADERATIPROC) (GLuint id); +typedef void (GLAPIENTRY * PFNGLCOLORFRAGMENTOP1ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); +typedef void (GLAPIENTRY * PFNGLCOLORFRAGMENTOP2ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); +typedef void (GLAPIENTRY * PFNGLCOLORFRAGMENTOP3ATIPROC) (GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod); +typedef void (GLAPIENTRY * PFNGLDELETEFRAGMENTSHADERATIPROC) (GLuint id); +typedef void (GLAPIENTRY * PFNGLENDFRAGMENTSHADERATIPROC) (void); +typedef GLuint (GLAPIENTRY * PFNGLGENFRAGMENTSHADERSATIPROC) (GLuint range); +typedef void (GLAPIENTRY * PFNGLPASSTEXCOORDATIPROC) (GLuint dst, GLuint coord, GLenum swizzle); +typedef void (GLAPIENTRY * PFNGLSAMPLEMAPATIPROC) (GLuint dst, GLuint interp, GLenum swizzle); +typedef void (GLAPIENTRY * PFNGLSETFRAGMENTSHADERCONSTANTATIPROC) (GLuint dst, const GLfloat* value); + +#define glAlphaFragmentOp1ATI GLEW_GET_FUN(__glewAlphaFragmentOp1ATI) +#define glAlphaFragmentOp2ATI GLEW_GET_FUN(__glewAlphaFragmentOp2ATI) +#define glAlphaFragmentOp3ATI GLEW_GET_FUN(__glewAlphaFragmentOp3ATI) +#define glBeginFragmentShaderATI GLEW_GET_FUN(__glewBeginFragmentShaderATI) +#define glBindFragmentShaderATI GLEW_GET_FUN(__glewBindFragmentShaderATI) +#define glColorFragmentOp1ATI GLEW_GET_FUN(__glewColorFragmentOp1ATI) +#define glColorFragmentOp2ATI GLEW_GET_FUN(__glewColorFragmentOp2ATI) +#define glColorFragmentOp3ATI GLEW_GET_FUN(__glewColorFragmentOp3ATI) +#define glDeleteFragmentShaderATI GLEW_GET_FUN(__glewDeleteFragmentShaderATI) +#define glEndFragmentShaderATI GLEW_GET_FUN(__glewEndFragmentShaderATI) +#define glGenFragmentShadersATI GLEW_GET_FUN(__glewGenFragmentShadersATI) +#define glPassTexCoordATI GLEW_GET_FUN(__glewPassTexCoordATI) +#define glSampleMapATI GLEW_GET_FUN(__glewSampleMapATI) +#define glSetFragmentShaderConstantATI GLEW_GET_FUN(__glewSetFragmentShaderConstantATI) + +#define GLEW_ATI_fragment_shader GLEW_GET_VAR(__GLEW_ATI_fragment_shader) + +#endif /* GL_ATI_fragment_shader */ + +/* ------------------------ GL_ATI_map_object_buffer ----------------------- */ + +#ifndef GL_ATI_map_object_buffer +#define GL_ATI_map_object_buffer 1 + +typedef void * (GLAPIENTRY * PFNGLMAPOBJECTBUFFERATIPROC) (GLuint buffer); +typedef void (GLAPIENTRY * PFNGLUNMAPOBJECTBUFFERATIPROC) (GLuint buffer); + +#define glMapObjectBufferATI GLEW_GET_FUN(__glewMapObjectBufferATI) +#define glUnmapObjectBufferATI GLEW_GET_FUN(__glewUnmapObjectBufferATI) + +#define GLEW_ATI_map_object_buffer GLEW_GET_VAR(__GLEW_ATI_map_object_buffer) + +#endif /* GL_ATI_map_object_buffer */ + +/* ----------------------------- GL_ATI_meminfo ---------------------------- */ + +#ifndef GL_ATI_meminfo +#define GL_ATI_meminfo 1 + +#define GL_VBO_FREE_MEMORY_ATI 0x87FB +#define GL_TEXTURE_FREE_MEMORY_ATI 0x87FC +#define GL_RENDERBUFFER_FREE_MEMORY_ATI 0x87FD + +#define GLEW_ATI_meminfo GLEW_GET_VAR(__GLEW_ATI_meminfo) + +#endif /* GL_ATI_meminfo */ + +/* -------------------------- GL_ATI_pn_triangles -------------------------- */ + +#ifndef GL_ATI_pn_triangles +#define GL_ATI_pn_triangles 1 + +#define GL_PN_TRIANGLES_ATI 0x87F0 +#define GL_MAX_PN_TRIANGLES_TESSELATION_LEVEL_ATI 0x87F1 +#define GL_PN_TRIANGLES_POINT_MODE_ATI 0x87F2 +#define GL_PN_TRIANGLES_NORMAL_MODE_ATI 0x87F3 +#define GL_PN_TRIANGLES_TESSELATION_LEVEL_ATI 0x87F4 +#define GL_PN_TRIANGLES_POINT_MODE_LINEAR_ATI 0x87F5 +#define GL_PN_TRIANGLES_POINT_MODE_CUBIC_ATI 0x87F6 +#define GL_PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI 0x87F7 +#define GL_PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI 0x87F8 + +typedef void (GLAPIENTRY * PFNGLPNTRIANGLESFATIPROC) (GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLPNTRIANGLESIATIPROC) (GLenum pname, GLint param); + +#define glPNTrianglesfATI GLEW_GET_FUN(__glewPNTrianglesfATI) +#define glPNTrianglesiATI GLEW_GET_FUN(__glewPNTrianglesiATI) + +#define GLEW_ATI_pn_triangles GLEW_GET_VAR(__GLEW_ATI_pn_triangles) + +#endif /* GL_ATI_pn_triangles */ + +/* ------------------------ GL_ATI_separate_stencil ------------------------ */ + +#ifndef GL_ATI_separate_stencil +#define GL_ATI_separate_stencil 1 + +#define GL_STENCIL_BACK_FUNC_ATI 0x8800 +#define GL_STENCIL_BACK_FAIL_ATI 0x8801 +#define GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI 0x8802 +#define GL_STENCIL_BACK_PASS_DEPTH_PASS_ATI 0x8803 + +typedef void (GLAPIENTRY * PFNGLSTENCILFUNCSEPARATEATIPROC) (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); +typedef void (GLAPIENTRY * PFNGLSTENCILOPSEPARATEATIPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); + +#define glStencilFuncSeparateATI GLEW_GET_FUN(__glewStencilFuncSeparateATI) +#define glStencilOpSeparateATI GLEW_GET_FUN(__glewStencilOpSeparateATI) + +#define GLEW_ATI_separate_stencil GLEW_GET_VAR(__GLEW_ATI_separate_stencil) + +#endif /* GL_ATI_separate_stencil */ + +/* ----------------------- GL_ATI_shader_texture_lod ----------------------- */ + +#ifndef GL_ATI_shader_texture_lod +#define GL_ATI_shader_texture_lod 1 + +#define GLEW_ATI_shader_texture_lod GLEW_GET_VAR(__GLEW_ATI_shader_texture_lod) + +#endif /* GL_ATI_shader_texture_lod */ + +/* ---------------------- GL_ATI_text_fragment_shader ---------------------- */ + +#ifndef GL_ATI_text_fragment_shader +#define GL_ATI_text_fragment_shader 1 + +#define GL_TEXT_FRAGMENT_SHADER_ATI 0x8200 + +#define GLEW_ATI_text_fragment_shader GLEW_GET_VAR(__GLEW_ATI_text_fragment_shader) + +#endif /* GL_ATI_text_fragment_shader */ + +/* --------------------- GL_ATI_texture_compression_3dc -------------------- */ + +#ifndef GL_ATI_texture_compression_3dc +#define GL_ATI_texture_compression_3dc 1 + +#define GL_COMPRESSED_LUMINANCE_ALPHA_3DC_ATI 0x8837 + +#define GLEW_ATI_texture_compression_3dc GLEW_GET_VAR(__GLEW_ATI_texture_compression_3dc) + +#endif /* GL_ATI_texture_compression_3dc */ + +/* ---------------------- GL_ATI_texture_env_combine3 ---------------------- */ + +#ifndef GL_ATI_texture_env_combine3 +#define GL_ATI_texture_env_combine3 1 + +#define GL_MODULATE_ADD_ATI 0x8744 +#define GL_MODULATE_SIGNED_ADD_ATI 0x8745 +#define GL_MODULATE_SUBTRACT_ATI 0x8746 + +#define GLEW_ATI_texture_env_combine3 GLEW_GET_VAR(__GLEW_ATI_texture_env_combine3) + +#endif /* GL_ATI_texture_env_combine3 */ + +/* -------------------------- GL_ATI_texture_float ------------------------- */ + +#ifndef GL_ATI_texture_float +#define GL_ATI_texture_float 1 + +#define GL_RGBA_FLOAT32_ATI 0x8814 +#define GL_RGB_FLOAT32_ATI 0x8815 +#define GL_ALPHA_FLOAT32_ATI 0x8816 +#define GL_INTENSITY_FLOAT32_ATI 0x8817 +#define GL_LUMINANCE_FLOAT32_ATI 0x8818 +#define GL_LUMINANCE_ALPHA_FLOAT32_ATI 0x8819 +#define GL_RGBA_FLOAT16_ATI 0x881A +#define GL_RGB_FLOAT16_ATI 0x881B +#define GL_ALPHA_FLOAT16_ATI 0x881C +#define GL_INTENSITY_FLOAT16_ATI 0x881D +#define GL_LUMINANCE_FLOAT16_ATI 0x881E +#define GL_LUMINANCE_ALPHA_FLOAT16_ATI 0x881F + +#define GLEW_ATI_texture_float GLEW_GET_VAR(__GLEW_ATI_texture_float) + +#endif /* GL_ATI_texture_float */ + +/* ----------------------- GL_ATI_texture_mirror_once ---------------------- */ + +#ifndef GL_ATI_texture_mirror_once +#define GL_ATI_texture_mirror_once 1 + +#define GL_MIRROR_CLAMP_ATI 0x8742 +#define GL_MIRROR_CLAMP_TO_EDGE_ATI 0x8743 + +#define GLEW_ATI_texture_mirror_once GLEW_GET_VAR(__GLEW_ATI_texture_mirror_once) + +#endif /* GL_ATI_texture_mirror_once */ + +/* ----------------------- GL_ATI_vertex_array_object ---------------------- */ + +#ifndef GL_ATI_vertex_array_object +#define GL_ATI_vertex_array_object 1 + +#define GL_STATIC_ATI 0x8760 +#define GL_DYNAMIC_ATI 0x8761 +#define GL_PRESERVE_ATI 0x8762 +#define GL_DISCARD_ATI 0x8763 +#define GL_OBJECT_BUFFER_SIZE_ATI 0x8764 +#define GL_OBJECT_BUFFER_USAGE_ATI 0x8765 +#define GL_ARRAY_OBJECT_BUFFER_ATI 0x8766 +#define GL_ARRAY_OBJECT_OFFSET_ATI 0x8767 + +typedef void (GLAPIENTRY * PFNGLARRAYOBJECTATIPROC) (GLenum array, GLint size, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); +typedef void (GLAPIENTRY * PFNGLFREEOBJECTBUFFERATIPROC) (GLuint buffer); +typedef void (GLAPIENTRY * PFNGLGETARRAYOBJECTFVATIPROC) (GLenum array, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETARRAYOBJECTIVATIPROC) (GLenum array, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETOBJECTBUFFERFVATIPROC) (GLuint buffer, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETOBJECTBUFFERIVATIPROC) (GLuint buffer, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETVARIANTARRAYOBJECTFVATIPROC) (GLuint id, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETVARIANTARRAYOBJECTIVATIPROC) (GLuint id, GLenum pname, GLint* params); +typedef GLboolean (GLAPIENTRY * PFNGLISOBJECTBUFFERATIPROC) (GLuint buffer); +typedef GLuint (GLAPIENTRY * PFNGLNEWOBJECTBUFFERATIPROC) (GLsizei size, const void *pointer, GLenum usage); +typedef void (GLAPIENTRY * PFNGLUPDATEOBJECTBUFFERATIPROC) (GLuint buffer, GLuint offset, GLsizei size, const void *pointer, GLenum preserve); +typedef void (GLAPIENTRY * PFNGLVARIANTARRAYOBJECTATIPROC) (GLuint id, GLenum type, GLsizei stride, GLuint buffer, GLuint offset); + +#define glArrayObjectATI GLEW_GET_FUN(__glewArrayObjectATI) +#define glFreeObjectBufferATI GLEW_GET_FUN(__glewFreeObjectBufferATI) +#define glGetArrayObjectfvATI GLEW_GET_FUN(__glewGetArrayObjectfvATI) +#define glGetArrayObjectivATI GLEW_GET_FUN(__glewGetArrayObjectivATI) +#define glGetObjectBufferfvATI GLEW_GET_FUN(__glewGetObjectBufferfvATI) +#define glGetObjectBufferivATI GLEW_GET_FUN(__glewGetObjectBufferivATI) +#define glGetVariantArrayObjectfvATI GLEW_GET_FUN(__glewGetVariantArrayObjectfvATI) +#define glGetVariantArrayObjectivATI GLEW_GET_FUN(__glewGetVariantArrayObjectivATI) +#define glIsObjectBufferATI GLEW_GET_FUN(__glewIsObjectBufferATI) +#define glNewObjectBufferATI GLEW_GET_FUN(__glewNewObjectBufferATI) +#define glUpdateObjectBufferATI GLEW_GET_FUN(__glewUpdateObjectBufferATI) +#define glVariantArrayObjectATI GLEW_GET_FUN(__glewVariantArrayObjectATI) + +#define GLEW_ATI_vertex_array_object GLEW_GET_VAR(__GLEW_ATI_vertex_array_object) + +#endif /* GL_ATI_vertex_array_object */ + +/* ------------------- GL_ATI_vertex_attrib_array_object ------------------- */ + +#ifndef GL_ATI_vertex_attrib_array_object +#define GL_ATI_vertex_attrib_array_object 1 + +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBARRAYOBJECTFVATIPROC) (GLuint index, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBARRAYOBJECTIVATIPROC) (GLuint index, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBARRAYOBJECTATIPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLuint buffer, GLuint offset); + +#define glGetVertexAttribArrayObjectfvATI GLEW_GET_FUN(__glewGetVertexAttribArrayObjectfvATI) +#define glGetVertexAttribArrayObjectivATI GLEW_GET_FUN(__glewGetVertexAttribArrayObjectivATI) +#define glVertexAttribArrayObjectATI GLEW_GET_FUN(__glewVertexAttribArrayObjectATI) + +#define GLEW_ATI_vertex_attrib_array_object GLEW_GET_VAR(__GLEW_ATI_vertex_attrib_array_object) + +#endif /* GL_ATI_vertex_attrib_array_object */ + +/* ------------------------- GL_ATI_vertex_streams ------------------------- */ + +#ifndef GL_ATI_vertex_streams +#define GL_ATI_vertex_streams 1 + +#define GL_MAX_VERTEX_STREAMS_ATI 0x876B +#define GL_VERTEX_SOURCE_ATI 0x876C +#define GL_VERTEX_STREAM0_ATI 0x876D +#define GL_VERTEX_STREAM1_ATI 0x876E +#define GL_VERTEX_STREAM2_ATI 0x876F +#define GL_VERTEX_STREAM3_ATI 0x8770 +#define GL_VERTEX_STREAM4_ATI 0x8771 +#define GL_VERTEX_STREAM5_ATI 0x8772 +#define GL_VERTEX_STREAM6_ATI 0x8773 +#define GL_VERTEX_STREAM7_ATI 0x8774 + +typedef void (GLAPIENTRY * PFNGLCLIENTACTIVEVERTEXSTREAMATIPROC) (GLenum stream); +typedef void (GLAPIENTRY * PFNGLNORMALSTREAM3BATIPROC) (GLenum stream, GLbyte x, GLbyte y, GLbyte z); +typedef void (GLAPIENTRY * PFNGLNORMALSTREAM3BVATIPROC) (GLenum stream, const GLbyte *coords); +typedef void (GLAPIENTRY * PFNGLNORMALSTREAM3DATIPROC) (GLenum stream, GLdouble x, GLdouble y, GLdouble z); +typedef void (GLAPIENTRY * PFNGLNORMALSTREAM3DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (GLAPIENTRY * PFNGLNORMALSTREAM3FATIPROC) (GLenum stream, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLNORMALSTREAM3FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (GLAPIENTRY * PFNGLNORMALSTREAM3IATIPROC) (GLenum stream, GLint x, GLint y, GLint z); +typedef void (GLAPIENTRY * PFNGLNORMALSTREAM3IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (GLAPIENTRY * PFNGLNORMALSTREAM3SATIPROC) (GLenum stream, GLshort x, GLshort y, GLshort z); +typedef void (GLAPIENTRY * PFNGLNORMALSTREAM3SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (GLAPIENTRY * PFNGLVERTEXBLENDENVFATIPROC) (GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLVERTEXBLENDENVIATIPROC) (GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM1DATIPROC) (GLenum stream, GLdouble x); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM1DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM1FATIPROC) (GLenum stream, GLfloat x); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM1FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM1IATIPROC) (GLenum stream, GLint x); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM1IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM1SATIPROC) (GLenum stream, GLshort x); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM1SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM2DATIPROC) (GLenum stream, GLdouble x, GLdouble y); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM2DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM2FATIPROC) (GLenum stream, GLfloat x, GLfloat y); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM2FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM2IATIPROC) (GLenum stream, GLint x, GLint y); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM2IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM2SATIPROC) (GLenum stream, GLshort x, GLshort y); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM2SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM3DATIPROC) (GLenum stream, GLdouble x, GLdouble y, GLdouble z); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM3DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM3FATIPROC) (GLenum stream, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM3FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM3IATIPROC) (GLenum stream, GLint x, GLint y, GLint z); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM3IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM3SATIPROC) (GLenum stream, GLshort x, GLshort y, GLshort z); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM3SVATIPROC) (GLenum stream, const GLshort *coords); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM4DATIPROC) (GLenum stream, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM4DVATIPROC) (GLenum stream, const GLdouble *coords); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM4FATIPROC) (GLenum stream, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM4FVATIPROC) (GLenum stream, const GLfloat *coords); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM4IATIPROC) (GLenum stream, GLint x, GLint y, GLint z, GLint w); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM4IVATIPROC) (GLenum stream, const GLint *coords); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM4SATIPROC) (GLenum stream, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (GLAPIENTRY * PFNGLVERTEXSTREAM4SVATIPROC) (GLenum stream, const GLshort *coords); + +#define glClientActiveVertexStreamATI GLEW_GET_FUN(__glewClientActiveVertexStreamATI) +#define glNormalStream3bATI GLEW_GET_FUN(__glewNormalStream3bATI) +#define glNormalStream3bvATI GLEW_GET_FUN(__glewNormalStream3bvATI) +#define glNormalStream3dATI GLEW_GET_FUN(__glewNormalStream3dATI) +#define glNormalStream3dvATI GLEW_GET_FUN(__glewNormalStream3dvATI) +#define glNormalStream3fATI GLEW_GET_FUN(__glewNormalStream3fATI) +#define glNormalStream3fvATI GLEW_GET_FUN(__glewNormalStream3fvATI) +#define glNormalStream3iATI GLEW_GET_FUN(__glewNormalStream3iATI) +#define glNormalStream3ivATI GLEW_GET_FUN(__glewNormalStream3ivATI) +#define glNormalStream3sATI GLEW_GET_FUN(__glewNormalStream3sATI) +#define glNormalStream3svATI GLEW_GET_FUN(__glewNormalStream3svATI) +#define glVertexBlendEnvfATI GLEW_GET_FUN(__glewVertexBlendEnvfATI) +#define glVertexBlendEnviATI GLEW_GET_FUN(__glewVertexBlendEnviATI) +#define glVertexStream1dATI GLEW_GET_FUN(__glewVertexStream1dATI) +#define glVertexStream1dvATI GLEW_GET_FUN(__glewVertexStream1dvATI) +#define glVertexStream1fATI GLEW_GET_FUN(__glewVertexStream1fATI) +#define glVertexStream1fvATI GLEW_GET_FUN(__glewVertexStream1fvATI) +#define glVertexStream1iATI GLEW_GET_FUN(__glewVertexStream1iATI) +#define glVertexStream1ivATI GLEW_GET_FUN(__glewVertexStream1ivATI) +#define glVertexStream1sATI GLEW_GET_FUN(__glewVertexStream1sATI) +#define glVertexStream1svATI GLEW_GET_FUN(__glewVertexStream1svATI) +#define glVertexStream2dATI GLEW_GET_FUN(__glewVertexStream2dATI) +#define glVertexStream2dvATI GLEW_GET_FUN(__glewVertexStream2dvATI) +#define glVertexStream2fATI GLEW_GET_FUN(__glewVertexStream2fATI) +#define glVertexStream2fvATI GLEW_GET_FUN(__glewVertexStream2fvATI) +#define glVertexStream2iATI GLEW_GET_FUN(__glewVertexStream2iATI) +#define glVertexStream2ivATI GLEW_GET_FUN(__glewVertexStream2ivATI) +#define glVertexStream2sATI GLEW_GET_FUN(__glewVertexStream2sATI) +#define glVertexStream2svATI GLEW_GET_FUN(__glewVertexStream2svATI) +#define glVertexStream3dATI GLEW_GET_FUN(__glewVertexStream3dATI) +#define glVertexStream3dvATI GLEW_GET_FUN(__glewVertexStream3dvATI) +#define glVertexStream3fATI GLEW_GET_FUN(__glewVertexStream3fATI) +#define glVertexStream3fvATI GLEW_GET_FUN(__glewVertexStream3fvATI) +#define glVertexStream3iATI GLEW_GET_FUN(__glewVertexStream3iATI) +#define glVertexStream3ivATI GLEW_GET_FUN(__glewVertexStream3ivATI) +#define glVertexStream3sATI GLEW_GET_FUN(__glewVertexStream3sATI) +#define glVertexStream3svATI GLEW_GET_FUN(__glewVertexStream3svATI) +#define glVertexStream4dATI GLEW_GET_FUN(__glewVertexStream4dATI) +#define glVertexStream4dvATI GLEW_GET_FUN(__glewVertexStream4dvATI) +#define glVertexStream4fATI GLEW_GET_FUN(__glewVertexStream4fATI) +#define glVertexStream4fvATI GLEW_GET_FUN(__glewVertexStream4fvATI) +#define glVertexStream4iATI GLEW_GET_FUN(__glewVertexStream4iATI) +#define glVertexStream4ivATI GLEW_GET_FUN(__glewVertexStream4ivATI) +#define glVertexStream4sATI GLEW_GET_FUN(__glewVertexStream4sATI) +#define glVertexStream4svATI GLEW_GET_FUN(__glewVertexStream4svATI) + +#define GLEW_ATI_vertex_streams GLEW_GET_VAR(__GLEW_ATI_vertex_streams) + +#endif /* GL_ATI_vertex_streams */ + +/* -------------------- GL_EGL_KHR_context_flush_control ------------------- */ + +#ifndef GL_EGL_KHR_context_flush_control +#define GL_EGL_KHR_context_flush_control 1 + +#define GLEW_EGL_KHR_context_flush_control GLEW_GET_VAR(__GLEW_EGL_KHR_context_flush_control) + +#endif /* GL_EGL_KHR_context_flush_control */ + +/* ---------------- GL_EGL_NV_robustness_video_memory_purge ---------------- */ + +#ifndef GL_EGL_NV_robustness_video_memory_purge +#define GL_EGL_NV_robustness_video_memory_purge 1 + +#define GL_EGL_GENERATE_RESET_ON_VIDEO_MEMORY_PURGE_NV 0x334C +#define GL_PURGED_CONTEXT_RESET_NV 0x92BB + +#define GLEW_EGL_NV_robustness_video_memory_purge GLEW_GET_VAR(__GLEW_EGL_NV_robustness_video_memory_purge) + +#endif /* GL_EGL_NV_robustness_video_memory_purge */ + +/* --------------------------- GL_EXT_422_pixels --------------------------- */ + +#ifndef GL_EXT_422_pixels +#define GL_EXT_422_pixels 1 + +#define GL_422_EXT 0x80CC +#define GL_422_REV_EXT 0x80CD +#define GL_422_AVERAGE_EXT 0x80CE +#define GL_422_REV_AVERAGE_EXT 0x80CF + +#define GLEW_EXT_422_pixels GLEW_GET_VAR(__GLEW_EXT_422_pixels) + +#endif /* GL_EXT_422_pixels */ + +/* ---------------------------- GL_EXT_Cg_shader --------------------------- */ + +#ifndef GL_EXT_Cg_shader +#define GL_EXT_Cg_shader 1 + +#define GL_CG_VERTEX_SHADER_EXT 0x890E +#define GL_CG_FRAGMENT_SHADER_EXT 0x890F + +#define GLEW_EXT_Cg_shader GLEW_GET_VAR(__GLEW_EXT_Cg_shader) + +#endif /* GL_EXT_Cg_shader */ + +/* ------------------------- GL_EXT_EGL_image_array ------------------------ */ + +#ifndef GL_EXT_EGL_image_array +#define GL_EXT_EGL_image_array 1 + +#define GLEW_EXT_EGL_image_array GLEW_GET_VAR(__GLEW_EXT_EGL_image_array) + +#endif /* GL_EXT_EGL_image_array */ + +/* --------------------------- GL_EXT_YUV_target --------------------------- */ + +#ifndef GL_EXT_YUV_target +#define GL_EXT_YUV_target 1 + +#define GL_SAMPLER_EXTERNAL_2D_Y2Y_EXT 0x8BE7 + +#define GLEW_EXT_YUV_target GLEW_GET_VAR(__GLEW_EXT_YUV_target) + +#endif /* GL_EXT_YUV_target */ + +/* ------------------------------ GL_EXT_abgr ------------------------------ */ + +#ifndef GL_EXT_abgr +#define GL_EXT_abgr 1 + +#define GL_ABGR_EXT 0x8000 + +#define GLEW_EXT_abgr GLEW_GET_VAR(__GLEW_EXT_abgr) + +#endif /* GL_EXT_abgr */ + +/* -------------------------- GL_EXT_base_instance ------------------------- */ + +#ifndef GL_EXT_base_instance +#define GL_EXT_base_instance 1 + +typedef void (GLAPIENTRY * PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEEXTPROC) (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); +typedef void (GLAPIENTRY * PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); +typedef void (GLAPIENTRY * PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); + +#define glDrawArraysInstancedBaseInstanceEXT GLEW_GET_FUN(__glewDrawArraysInstancedBaseInstanceEXT) +#define glDrawElementsInstancedBaseInstanceEXT GLEW_GET_FUN(__glewDrawElementsInstancedBaseInstanceEXT) +#define glDrawElementsInstancedBaseVertexBaseInstanceEXT GLEW_GET_FUN(__glewDrawElementsInstancedBaseVertexBaseInstanceEXT) + +#define GLEW_EXT_base_instance GLEW_GET_VAR(__GLEW_EXT_base_instance) + +#endif /* GL_EXT_base_instance */ + +/* ------------------------------ GL_EXT_bgra ------------------------------ */ + +#ifndef GL_EXT_bgra +#define GL_EXT_bgra 1 + +#define GL_BGR_EXT 0x80E0 +#define GL_BGRA_EXT 0x80E1 + +#define GLEW_EXT_bgra GLEW_GET_VAR(__GLEW_EXT_bgra) + +#endif /* GL_EXT_bgra */ + +/* ------------------------ GL_EXT_bindable_uniform ------------------------ */ + +#ifndef GL_EXT_bindable_uniform +#define GL_EXT_bindable_uniform 1 + +#define GL_MAX_VERTEX_BINDABLE_UNIFORMS_EXT 0x8DE2 +#define GL_MAX_FRAGMENT_BINDABLE_UNIFORMS_EXT 0x8DE3 +#define GL_MAX_GEOMETRY_BINDABLE_UNIFORMS_EXT 0x8DE4 +#define GL_MAX_BINDABLE_UNIFORM_SIZE_EXT 0x8DED +#define GL_UNIFORM_BUFFER_EXT 0x8DEE +#define GL_UNIFORM_BUFFER_BINDING_EXT 0x8DEF + +typedef GLint (GLAPIENTRY * PFNGLGETUNIFORMBUFFERSIZEEXTPROC) (GLuint program, GLint location); +typedef GLintptr (GLAPIENTRY * PFNGLGETUNIFORMOFFSETEXTPROC) (GLuint program, GLint location); +typedef void (GLAPIENTRY * PFNGLUNIFORMBUFFEREXTPROC) (GLuint program, GLint location, GLuint buffer); + +#define glGetUniformBufferSizeEXT GLEW_GET_FUN(__glewGetUniformBufferSizeEXT) +#define glGetUniformOffsetEXT GLEW_GET_FUN(__glewGetUniformOffsetEXT) +#define glUniformBufferEXT GLEW_GET_FUN(__glewUniformBufferEXT) + +#define GLEW_EXT_bindable_uniform GLEW_GET_VAR(__GLEW_EXT_bindable_uniform) + +#endif /* GL_EXT_bindable_uniform */ + +/* --------------------------- GL_EXT_blend_color -------------------------- */ + +#ifndef GL_EXT_blend_color +#define GL_EXT_blend_color 1 + +#define GL_CONSTANT_COLOR_EXT 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR_EXT 0x8002 +#define GL_CONSTANT_ALPHA_EXT 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA_EXT 0x8004 +#define GL_BLEND_COLOR_EXT 0x8005 + +typedef void (GLAPIENTRY * PFNGLBLENDCOLOREXTPROC) (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); + +#define glBlendColorEXT GLEW_GET_FUN(__glewBlendColorEXT) + +#define GLEW_EXT_blend_color GLEW_GET_VAR(__GLEW_EXT_blend_color) + +#endif /* GL_EXT_blend_color */ + +/* --------------------- GL_EXT_blend_equation_separate -------------------- */ + +#ifndef GL_EXT_blend_equation_separate +#define GL_EXT_blend_equation_separate 1 + +#define GL_BLEND_EQUATION_RGB_EXT 0x8009 +#define GL_BLEND_EQUATION_ALPHA_EXT 0x883D + +typedef void (GLAPIENTRY * PFNGLBLENDEQUATIONSEPARATEEXTPROC) (GLenum modeRGB, GLenum modeAlpha); + +#define glBlendEquationSeparateEXT GLEW_GET_FUN(__glewBlendEquationSeparateEXT) + +#define GLEW_EXT_blend_equation_separate GLEW_GET_VAR(__GLEW_EXT_blend_equation_separate) + +#endif /* GL_EXT_blend_equation_separate */ + +/* ----------------------- GL_EXT_blend_func_extended ---------------------- */ + +#ifndef GL_EXT_blend_func_extended +#define GL_EXT_blend_func_extended 1 + +#define GL_SRC_ALPHA_SATURATE_EXT 0x0308 +#define GL_SRC1_ALPHA_EXT 0x8589 +#define GL_SRC1_COLOR_EXT 0x88F9 +#define GL_ONE_MINUS_SRC1_COLOR_EXT 0x88FA +#define GL_ONE_MINUS_SRC1_ALPHA_EXT 0x88FB +#define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS_EXT 0x88FC +#define GL_LOCATION_INDEX_EXT 0x930F + +typedef void (GLAPIENTRY * PFNGLBINDFRAGDATALOCATIONINDEXEDEXTPROC) (GLuint program, GLuint colorNumber, GLuint index, const GLchar * name); +typedef GLint (GLAPIENTRY * PFNGLGETFRAGDATAINDEXEXTPROC) (GLuint program, const GLchar * name); +typedef GLint (GLAPIENTRY * PFNGLGETPROGRAMRESOURCELOCATIONINDEXEXTPROC) (GLuint program, GLenum programInterface, const GLchar* name); + +#define glBindFragDataLocationIndexedEXT GLEW_GET_FUN(__glewBindFragDataLocationIndexedEXT) +#define glGetFragDataIndexEXT GLEW_GET_FUN(__glewGetFragDataIndexEXT) +#define glGetProgramResourceLocationIndexEXT GLEW_GET_FUN(__glewGetProgramResourceLocationIndexEXT) + +#define GLEW_EXT_blend_func_extended GLEW_GET_VAR(__GLEW_EXT_blend_func_extended) + +#endif /* GL_EXT_blend_func_extended */ + +/* ----------------------- GL_EXT_blend_func_separate ---------------------- */ + +#ifndef GL_EXT_blend_func_separate +#define GL_EXT_blend_func_separate 1 + +#define GL_BLEND_DST_RGB_EXT 0x80C8 +#define GL_BLEND_SRC_RGB_EXT 0x80C9 +#define GL_BLEND_DST_ALPHA_EXT 0x80CA +#define GL_BLEND_SRC_ALPHA_EXT 0x80CB + +typedef void (GLAPIENTRY * PFNGLBLENDFUNCSEPARATEEXTPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); + +#define glBlendFuncSeparateEXT GLEW_GET_FUN(__glewBlendFuncSeparateEXT) + +#define GLEW_EXT_blend_func_separate GLEW_GET_VAR(__GLEW_EXT_blend_func_separate) + +#endif /* GL_EXT_blend_func_separate */ + +/* ------------------------- GL_EXT_blend_logic_op ------------------------- */ + +#ifndef GL_EXT_blend_logic_op +#define GL_EXT_blend_logic_op 1 + +#define GLEW_EXT_blend_logic_op GLEW_GET_VAR(__GLEW_EXT_blend_logic_op) + +#endif /* GL_EXT_blend_logic_op */ + +/* -------------------------- GL_EXT_blend_minmax -------------------------- */ + +#ifndef GL_EXT_blend_minmax +#define GL_EXT_blend_minmax 1 + +#define GL_FUNC_ADD_EXT 0x8006 +#define GL_MIN_EXT 0x8007 +#define GL_MAX_EXT 0x8008 +#define GL_BLEND_EQUATION_EXT 0x8009 + +typedef void (GLAPIENTRY * PFNGLBLENDEQUATIONEXTPROC) (GLenum mode); + +#define glBlendEquationEXT GLEW_GET_FUN(__glewBlendEquationEXT) + +#define GLEW_EXT_blend_minmax GLEW_GET_VAR(__GLEW_EXT_blend_minmax) + +#endif /* GL_EXT_blend_minmax */ + +/* ------------------------- GL_EXT_blend_subtract ------------------------- */ + +#ifndef GL_EXT_blend_subtract +#define GL_EXT_blend_subtract 1 + +#define GL_FUNC_SUBTRACT_EXT 0x800A +#define GL_FUNC_REVERSE_SUBTRACT_EXT 0x800B + +#define GLEW_EXT_blend_subtract GLEW_GET_VAR(__GLEW_EXT_blend_subtract) + +#endif /* GL_EXT_blend_subtract */ + +/* ------------------------- GL_EXT_buffer_storage ------------------------- */ + +#ifndef GL_EXT_buffer_storage +#define GL_EXT_buffer_storage 1 + +#define GL_MAP_READ_BIT 0x0001 +#define GL_MAP_WRITE_BIT 0x0002 +#define GL_MAP_PERSISTENT_BIT_EXT 0x0040 +#define GL_MAP_COHERENT_BIT_EXT 0x0080 +#define GL_DYNAMIC_STORAGE_BIT_EXT 0x0100 +#define GL_CLIENT_STORAGE_BIT_EXT 0x0200 +#define GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT_EXT 0x00004000 +#define GL_BUFFER_IMMUTABLE_STORAGE_EXT 0x821F +#define GL_BUFFER_STORAGE_FLAGS_EXT 0x8220 + +typedef void (GLAPIENTRY * PFNGLBUFFERSTORAGEEXTPROC) (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); +typedef void (GLAPIENTRY * PFNGLNAMEDBUFFERSTORAGEEXTPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); + +#define glBufferStorageEXT GLEW_GET_FUN(__glewBufferStorageEXT) +#define glNamedBufferStorageEXT GLEW_GET_FUN(__glewNamedBufferStorageEXT) + +#define GLEW_EXT_buffer_storage GLEW_GET_VAR(__GLEW_EXT_buffer_storage) + +#endif /* GL_EXT_buffer_storage */ + +/* -------------------------- GL_EXT_clear_texture ------------------------- */ + +#ifndef GL_EXT_clear_texture +#define GL_EXT_clear_texture 1 + +typedef void (GLAPIENTRY * PFNGLCLEARTEXIMAGEEXTPROC) (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +typedef void (GLAPIENTRY * PFNGLCLEARTEXSUBIMAGEEXTPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); + +#define glClearTexImageEXT GLEW_GET_FUN(__glewClearTexImageEXT) +#define glClearTexSubImageEXT GLEW_GET_FUN(__glewClearTexSubImageEXT) + +#define GLEW_EXT_clear_texture GLEW_GET_VAR(__GLEW_EXT_clear_texture) + +#endif /* GL_EXT_clear_texture */ + +/* ----------------------- GL_EXT_clip_cull_distance ----------------------- */ + +#ifndef GL_EXT_clip_cull_distance +#define GL_EXT_clip_cull_distance 1 + +#define GL_MAX_CLIP_DISTANCES_EXT 0x0D32 +#define GL_CLIP_DISTANCE0_EXT 0x3000 +#define GL_CLIP_DISTANCE1_EXT 0x3001 +#define GL_CLIP_DISTANCE2_EXT 0x3002 +#define GL_CLIP_DISTANCE3_EXT 0x3003 +#define GL_CLIP_DISTANCE4_EXT 0x3004 +#define GL_CLIP_DISTANCE5_EXT 0x3005 +#define GL_CLIP_DISTANCE6_EXT 0x3006 +#define GL_CLIP_DISTANCE7_EXT 0x3007 +#define GL_MAX_CULL_DISTANCES_EXT 0x82F9 +#define GL_MAX_COMBINED_CLIP_AND_CULL_DISTANCES_EXT 0x82FA + +#define GLEW_EXT_clip_cull_distance GLEW_GET_VAR(__GLEW_EXT_clip_cull_distance) + +#endif /* GL_EXT_clip_cull_distance */ + +/* ------------------------ GL_EXT_clip_volume_hint ------------------------ */ + +#ifndef GL_EXT_clip_volume_hint +#define GL_EXT_clip_volume_hint 1 + +#define GL_CLIP_VOLUME_CLIPPING_HINT_EXT 0x80F0 + +#define GLEW_EXT_clip_volume_hint GLEW_GET_VAR(__GLEW_EXT_clip_volume_hint) + +#endif /* GL_EXT_clip_volume_hint */ + +/* ------------------------------ GL_EXT_cmyka ----------------------------- */ + +#ifndef GL_EXT_cmyka +#define GL_EXT_cmyka 1 + +#define GL_CMYK_EXT 0x800C +#define GL_CMYKA_EXT 0x800D +#define GL_PACK_CMYK_HINT_EXT 0x800E +#define GL_UNPACK_CMYK_HINT_EXT 0x800F + +#define GLEW_EXT_cmyka GLEW_GET_VAR(__GLEW_EXT_cmyka) + +#endif /* GL_EXT_cmyka */ + +/* ----------------------- GL_EXT_color_buffer_float ----------------------- */ + +#ifndef GL_EXT_color_buffer_float +#define GL_EXT_color_buffer_float 1 + +#define GLEW_EXT_color_buffer_float GLEW_GET_VAR(__GLEW_EXT_color_buffer_float) + +#endif /* GL_EXT_color_buffer_float */ + +/* --------------------- GL_EXT_color_buffer_half_float -------------------- */ + +#ifndef GL_EXT_color_buffer_half_float +#define GL_EXT_color_buffer_half_float 1 + +#define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT 0x8211 +#define GL_R16F_EXT 0x822D +#define GL_RG16F_EXT 0x822F +#define GL_RGBA16F_EXT 0x881A +#define GL_RGB16F_EXT 0x881B +#define GL_UNSIGNED_NORMALIZED_EXT 0x8C17 + +#define GLEW_EXT_color_buffer_half_float GLEW_GET_VAR(__GLEW_EXT_color_buffer_half_float) + +#endif /* GL_EXT_color_buffer_half_float */ + +/* ------------------------- GL_EXT_color_subtable ------------------------- */ + +#ifndef GL_EXT_color_subtable +#define GL_EXT_color_subtable 1 + +typedef void (GLAPIENTRY * PFNGLCOLORSUBTABLEEXTPROC) (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void *data); +typedef void (GLAPIENTRY * PFNGLCOPYCOLORSUBTABLEEXTPROC) (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width); + +#define glColorSubTableEXT GLEW_GET_FUN(__glewColorSubTableEXT) +#define glCopyColorSubTableEXT GLEW_GET_FUN(__glewCopyColorSubTableEXT) + +#define GLEW_EXT_color_subtable GLEW_GET_VAR(__GLEW_EXT_color_subtable) + +#endif /* GL_EXT_color_subtable */ + +/* ---------------------- GL_EXT_compiled_vertex_array --------------------- */ + +#ifndef GL_EXT_compiled_vertex_array +#define GL_EXT_compiled_vertex_array 1 + +#define GL_ARRAY_ELEMENT_LOCK_FIRST_EXT 0x81A8 +#define GL_ARRAY_ELEMENT_LOCK_COUNT_EXT 0x81A9 + +typedef void (GLAPIENTRY * PFNGLLOCKARRAYSEXTPROC) (GLint first, GLsizei count); +typedef void (GLAPIENTRY * PFNGLUNLOCKARRAYSEXTPROC) (void); + +#define glLockArraysEXT GLEW_GET_FUN(__glewLockArraysEXT) +#define glUnlockArraysEXT GLEW_GET_FUN(__glewUnlockArraysEXT) + +#define GLEW_EXT_compiled_vertex_array GLEW_GET_VAR(__GLEW_EXT_compiled_vertex_array) + +#endif /* GL_EXT_compiled_vertex_array */ + +/* ---------------- GL_EXT_compressed_ETC1_RGB8_sub_texture ---------------- */ + +#ifndef GL_EXT_compressed_ETC1_RGB8_sub_texture +#define GL_EXT_compressed_ETC1_RGB8_sub_texture 1 + +#define GLEW_EXT_compressed_ETC1_RGB8_sub_texture GLEW_GET_VAR(__GLEW_EXT_compressed_ETC1_RGB8_sub_texture) + +#endif /* GL_EXT_compressed_ETC1_RGB8_sub_texture */ + +/* ----------------------- GL_EXT_conservative_depth ----------------------- */ + +#ifndef GL_EXT_conservative_depth +#define GL_EXT_conservative_depth 1 + +#define GLEW_EXT_conservative_depth GLEW_GET_VAR(__GLEW_EXT_conservative_depth) + +#endif /* GL_EXT_conservative_depth */ + +/* --------------------------- GL_EXT_convolution -------------------------- */ + +#ifndef GL_EXT_convolution +#define GL_EXT_convolution 1 + +#define GL_CONVOLUTION_1D_EXT 0x8010 +#define GL_CONVOLUTION_2D_EXT 0x8011 +#define GL_SEPARABLE_2D_EXT 0x8012 +#define GL_CONVOLUTION_BORDER_MODE_EXT 0x8013 +#define GL_CONVOLUTION_FILTER_SCALE_EXT 0x8014 +#define GL_CONVOLUTION_FILTER_BIAS_EXT 0x8015 +#define GL_REDUCE_EXT 0x8016 +#define GL_CONVOLUTION_FORMAT_EXT 0x8017 +#define GL_CONVOLUTION_WIDTH_EXT 0x8018 +#define GL_CONVOLUTION_HEIGHT_EXT 0x8019 +#define GL_MAX_CONVOLUTION_WIDTH_EXT 0x801A +#define GL_MAX_CONVOLUTION_HEIGHT_EXT 0x801B +#define GL_POST_CONVOLUTION_RED_SCALE_EXT 0x801C +#define GL_POST_CONVOLUTION_GREEN_SCALE_EXT 0x801D +#define GL_POST_CONVOLUTION_BLUE_SCALE_EXT 0x801E +#define GL_POST_CONVOLUTION_ALPHA_SCALE_EXT 0x801F +#define GL_POST_CONVOLUTION_RED_BIAS_EXT 0x8020 +#define GL_POST_CONVOLUTION_GREEN_BIAS_EXT 0x8021 +#define GL_POST_CONVOLUTION_BLUE_BIAS_EXT 0x8022 +#define GL_POST_CONVOLUTION_ALPHA_BIAS_EXT 0x8023 + +typedef void (GLAPIENTRY * PFNGLCONVOLUTIONFILTER1DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *image); +typedef void (GLAPIENTRY * PFNGLCONVOLUTIONFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *image); +typedef void (GLAPIENTRY * PFNGLCONVOLUTIONPARAMETERFEXTPROC) (GLenum target, GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLCONVOLUTIONPARAMETERFVEXTPROC) (GLenum target, GLenum pname, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLCONVOLUTIONPARAMETERIEXTPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLCONVOLUTIONPARAMETERIVEXTPROC) (GLenum target, GLenum pname, const GLint* params); +typedef void (GLAPIENTRY * PFNGLCOPYCONVOLUTIONFILTER1DEXTPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (GLAPIENTRY * PFNGLCOPYCONVOLUTIONFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLGETCONVOLUTIONFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, void *image); +typedef void (GLAPIENTRY * PFNGLGETCONVOLUTIONPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETCONVOLUTIONPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETSEPARABLEFILTEREXTPROC) (GLenum target, GLenum format, GLenum type, void *row, void *column, void *span); +typedef void (GLAPIENTRY * PFNGLSEPARABLEFILTER2DEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *row, const void *column); + +#define glConvolutionFilter1DEXT GLEW_GET_FUN(__glewConvolutionFilter1DEXT) +#define glConvolutionFilter2DEXT GLEW_GET_FUN(__glewConvolutionFilter2DEXT) +#define glConvolutionParameterfEXT GLEW_GET_FUN(__glewConvolutionParameterfEXT) +#define glConvolutionParameterfvEXT GLEW_GET_FUN(__glewConvolutionParameterfvEXT) +#define glConvolutionParameteriEXT GLEW_GET_FUN(__glewConvolutionParameteriEXT) +#define glConvolutionParameterivEXT GLEW_GET_FUN(__glewConvolutionParameterivEXT) +#define glCopyConvolutionFilter1DEXT GLEW_GET_FUN(__glewCopyConvolutionFilter1DEXT) +#define glCopyConvolutionFilter2DEXT GLEW_GET_FUN(__glewCopyConvolutionFilter2DEXT) +#define glGetConvolutionFilterEXT GLEW_GET_FUN(__glewGetConvolutionFilterEXT) +#define glGetConvolutionParameterfvEXT GLEW_GET_FUN(__glewGetConvolutionParameterfvEXT) +#define glGetConvolutionParameterivEXT GLEW_GET_FUN(__glewGetConvolutionParameterivEXT) +#define glGetSeparableFilterEXT GLEW_GET_FUN(__glewGetSeparableFilterEXT) +#define glSeparableFilter2DEXT GLEW_GET_FUN(__glewSeparableFilter2DEXT) + +#define GLEW_EXT_convolution GLEW_GET_VAR(__GLEW_EXT_convolution) + +#endif /* GL_EXT_convolution */ + +/* ------------------------ GL_EXT_coordinate_frame ------------------------ */ + +#ifndef GL_EXT_coordinate_frame +#define GL_EXT_coordinate_frame 1 + +#define GL_TANGENT_ARRAY_EXT 0x8439 +#define GL_BINORMAL_ARRAY_EXT 0x843A +#define GL_CURRENT_TANGENT_EXT 0x843B +#define GL_CURRENT_BINORMAL_EXT 0x843C +#define GL_TANGENT_ARRAY_TYPE_EXT 0x843E +#define GL_TANGENT_ARRAY_STRIDE_EXT 0x843F +#define GL_BINORMAL_ARRAY_TYPE_EXT 0x8440 +#define GL_BINORMAL_ARRAY_STRIDE_EXT 0x8441 +#define GL_TANGENT_ARRAY_POINTER_EXT 0x8442 +#define GL_BINORMAL_ARRAY_POINTER_EXT 0x8443 +#define GL_MAP1_TANGENT_EXT 0x8444 +#define GL_MAP2_TANGENT_EXT 0x8445 +#define GL_MAP1_BINORMAL_EXT 0x8446 +#define GL_MAP2_BINORMAL_EXT 0x8447 + +typedef void (GLAPIENTRY * PFNGLBINORMALPOINTEREXTPROC) (GLenum type, GLsizei stride, void *pointer); +typedef void (GLAPIENTRY * PFNGLTANGENTPOINTEREXTPROC) (GLenum type, GLsizei stride, void *pointer); + +#define glBinormalPointerEXT GLEW_GET_FUN(__glewBinormalPointerEXT) +#define glTangentPointerEXT GLEW_GET_FUN(__glewTangentPointerEXT) + +#define GLEW_EXT_coordinate_frame GLEW_GET_VAR(__GLEW_EXT_coordinate_frame) + +#endif /* GL_EXT_coordinate_frame */ + +/* --------------------------- GL_EXT_copy_image --------------------------- */ + +#ifndef GL_EXT_copy_image +#define GL_EXT_copy_image 1 + +typedef void (GLAPIENTRY * PFNGLCOPYIMAGESUBDATAEXTPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); + +#define glCopyImageSubDataEXT GLEW_GET_FUN(__glewCopyImageSubDataEXT) + +#define GLEW_EXT_copy_image GLEW_GET_VAR(__GLEW_EXT_copy_image) + +#endif /* GL_EXT_copy_image */ + +/* -------------------------- GL_EXT_copy_texture -------------------------- */ + +#ifndef GL_EXT_copy_texture +#define GL_EXT_copy_texture 1 + +typedef void (GLAPIENTRY * PFNGLCOPYTEXIMAGE1DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +typedef void (GLAPIENTRY * PFNGLCOPYTEXIMAGE2DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (GLAPIENTRY * PFNGLCOPYTEXSUBIMAGE1DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (GLAPIENTRY * PFNGLCOPYTEXSUBIMAGE2DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLCOPYTEXSUBIMAGE3DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); + +#define glCopyTexImage1DEXT GLEW_GET_FUN(__glewCopyTexImage1DEXT) +#define glCopyTexImage2DEXT GLEW_GET_FUN(__glewCopyTexImage2DEXT) +#define glCopyTexSubImage1DEXT GLEW_GET_FUN(__glewCopyTexSubImage1DEXT) +#define glCopyTexSubImage2DEXT GLEW_GET_FUN(__glewCopyTexSubImage2DEXT) +#define glCopyTexSubImage3DEXT GLEW_GET_FUN(__glewCopyTexSubImage3DEXT) + +#define GLEW_EXT_copy_texture GLEW_GET_VAR(__GLEW_EXT_copy_texture) + +#endif /* GL_EXT_copy_texture */ + +/* --------------------------- GL_EXT_cull_vertex -------------------------- */ + +#ifndef GL_EXT_cull_vertex +#define GL_EXT_cull_vertex 1 + +#define GL_CULL_VERTEX_EXT 0x81AA +#define GL_CULL_VERTEX_EYE_POSITION_EXT 0x81AB +#define GL_CULL_VERTEX_OBJECT_POSITION_EXT 0x81AC + +typedef void (GLAPIENTRY * PFNGLCULLPARAMETERDVEXTPROC) (GLenum pname, GLdouble* params); +typedef void (GLAPIENTRY * PFNGLCULLPARAMETERFVEXTPROC) (GLenum pname, GLfloat* params); + +#define glCullParameterdvEXT GLEW_GET_FUN(__glewCullParameterdvEXT) +#define glCullParameterfvEXT GLEW_GET_FUN(__glewCullParameterfvEXT) + +#define GLEW_EXT_cull_vertex GLEW_GET_VAR(__GLEW_EXT_cull_vertex) + +#endif /* GL_EXT_cull_vertex */ + +/* --------------------------- GL_EXT_debug_label -------------------------- */ + +#ifndef GL_EXT_debug_label +#define GL_EXT_debug_label 1 + +#define GL_PROGRAM_PIPELINE_OBJECT_EXT 0x8A4F +#define GL_PROGRAM_OBJECT_EXT 0x8B40 +#define GL_SHADER_OBJECT_EXT 0x8B48 +#define GL_BUFFER_OBJECT_EXT 0x9151 +#define GL_QUERY_OBJECT_EXT 0x9153 +#define GL_VERTEX_ARRAY_OBJECT_EXT 0x9154 + +typedef void (GLAPIENTRY * PFNGLGETOBJECTLABELEXTPROC) (GLenum type, GLuint object, GLsizei bufSize, GLsizei* length, GLchar *label); +typedef void (GLAPIENTRY * PFNGLLABELOBJECTEXTPROC) (GLenum type, GLuint object, GLsizei length, const GLchar* label); + +#define glGetObjectLabelEXT GLEW_GET_FUN(__glewGetObjectLabelEXT) +#define glLabelObjectEXT GLEW_GET_FUN(__glewLabelObjectEXT) + +#define GLEW_EXT_debug_label GLEW_GET_VAR(__GLEW_EXT_debug_label) + +#endif /* GL_EXT_debug_label */ + +/* -------------------------- GL_EXT_debug_marker -------------------------- */ + +#ifndef GL_EXT_debug_marker +#define GL_EXT_debug_marker 1 + +typedef void (GLAPIENTRY * PFNGLINSERTEVENTMARKEREXTPROC) (GLsizei length, const GLchar* marker); +typedef void (GLAPIENTRY * PFNGLPOPGROUPMARKEREXTPROC) (void); +typedef void (GLAPIENTRY * PFNGLPUSHGROUPMARKEREXTPROC) (GLsizei length, const GLchar* marker); + +#define glInsertEventMarkerEXT GLEW_GET_FUN(__glewInsertEventMarkerEXT) +#define glPopGroupMarkerEXT GLEW_GET_FUN(__glewPopGroupMarkerEXT) +#define glPushGroupMarkerEXT GLEW_GET_FUN(__glewPushGroupMarkerEXT) + +#define GLEW_EXT_debug_marker GLEW_GET_VAR(__GLEW_EXT_debug_marker) + +#endif /* GL_EXT_debug_marker */ + +/* ------------------------ GL_EXT_depth_bounds_test ----------------------- */ + +#ifndef GL_EXT_depth_bounds_test +#define GL_EXT_depth_bounds_test 1 + +#define GL_DEPTH_BOUNDS_TEST_EXT 0x8890 +#define GL_DEPTH_BOUNDS_EXT 0x8891 + +typedef void (GLAPIENTRY * PFNGLDEPTHBOUNDSEXTPROC) (GLclampd zmin, GLclampd zmax); + +#define glDepthBoundsEXT GLEW_GET_FUN(__glewDepthBoundsEXT) + +#define GLEW_EXT_depth_bounds_test GLEW_GET_VAR(__GLEW_EXT_depth_bounds_test) + +#endif /* GL_EXT_depth_bounds_test */ + +/* ----------------------- GL_EXT_direct_state_access ---------------------- */ + +#ifndef GL_EXT_direct_state_access +#define GL_EXT_direct_state_access 1 + +#define GL_PROGRAM_MATRIX_EXT 0x8E2D +#define GL_TRANSPOSE_PROGRAM_MATRIX_EXT 0x8E2E +#define GL_PROGRAM_MATRIX_STACK_DEPTH_EXT 0x8E2F + +typedef void (GLAPIENTRY * PFNGLBINDMULTITEXTUREEXTPROC) (GLenum texunit, GLenum target, GLuint texture); +typedef GLenum (GLAPIENTRY * PFNGLCHECKNAMEDFRAMEBUFFERSTATUSEXTPROC) (GLuint framebuffer, GLenum target); +typedef void (GLAPIENTRY * PFNGLCLIENTATTRIBDEFAULTEXTPROC) (GLbitfield mask); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDMULTITEXIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXTUREIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOPYMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +typedef void (GLAPIENTRY * PFNGLCOPYMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (GLAPIENTRY * PFNGLCOPYMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (GLAPIENTRY * PFNGLCOPYMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLCOPYMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLCOPYTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +typedef void (GLAPIENTRY * PFNGLCOPYTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (GLAPIENTRY * PFNGLCOPYTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (GLAPIENTRY * PFNGLCOPYTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLCOPYTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLDISABLECLIENTSTATEINDEXEDEXTPROC) (GLenum array, GLuint index); +typedef void (GLAPIENTRY * PFNGLDISABLECLIENTSTATEIEXTPROC) (GLenum array, GLuint index); +typedef void (GLAPIENTRY * PFNGLDISABLEVERTEXARRAYATTRIBEXTPROC) (GLuint vaobj, GLuint index); +typedef void (GLAPIENTRY * PFNGLDISABLEVERTEXARRAYEXTPROC) (GLuint vaobj, GLenum array); +typedef void (GLAPIENTRY * PFNGLENABLECLIENTSTATEINDEXEDEXTPROC) (GLenum array, GLuint index); +typedef void (GLAPIENTRY * PFNGLENABLECLIENTSTATEIEXTPROC) (GLenum array, GLuint index); +typedef void (GLAPIENTRY * PFNGLENABLEVERTEXARRAYATTRIBEXTPROC) (GLuint vaobj, GLuint index); +typedef void (GLAPIENTRY * PFNGLENABLEVERTEXARRAYEXTPROC) (GLuint vaobj, GLenum array); +typedef void (GLAPIENTRY * PFNGLFLUSHMAPPEDNAMEDBUFFERRANGEEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length); +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERDRAWBUFFEREXTPROC) (GLuint framebuffer, GLenum mode); +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERDRAWBUFFERSEXTPROC) (GLuint framebuffer, GLsizei n, const GLenum* bufs); +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERREADBUFFEREXTPROC) (GLuint framebuffer, GLenum mode); +typedef void (GLAPIENTRY * PFNGLGENERATEMULTITEXMIPMAPEXTPROC) (GLenum texunit, GLenum target); +typedef void (GLAPIENTRY * PFNGLGENERATETEXTUREMIPMAPEXTPROC) (GLuint texture, GLenum target); +typedef void (GLAPIENTRY * PFNGLGETCOMPRESSEDMULTITEXIMAGEEXTPROC) (GLenum texunit, GLenum target, GLint level, void *img); +typedef void (GLAPIENTRY * PFNGLGETCOMPRESSEDTEXTUREIMAGEEXTPROC) (GLuint texture, GLenum target, GLint level, void *img); +typedef void (GLAPIENTRY * PFNGLGETDOUBLEINDEXEDVEXTPROC) (GLenum target, GLuint index, GLdouble* params); +typedef void (GLAPIENTRY * PFNGLGETDOUBLEI_VEXTPROC) (GLenum pname, GLuint index, GLdouble* params); +typedef void (GLAPIENTRY * PFNGLGETFLOATINDEXEDVEXTPROC) (GLenum target, GLuint index, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETFLOATI_VEXTPROC) (GLenum pname, GLuint index, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETFRAMEBUFFERPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum pname, GLint* param); +typedef void (GLAPIENTRY * PFNGLGETMULTITEXENVFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETMULTITEXENVIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETMULTITEXGENDVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLdouble* params); +typedef void (GLAPIENTRY * PFNGLGETMULTITEXGENFVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETMULTITEXGENIVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETMULTITEXIMAGEEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +typedef void (GLAPIENTRY * PFNGLGETMULTITEXLEVELPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETMULTITEXLEVELPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLint level, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETMULTITEXPARAMETERIIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETMULTITEXPARAMETERIUIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLuint* params); +typedef void (GLAPIENTRY * PFNGLGETMULTITEXPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETMULTITEXPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETNAMEDBUFFERPARAMETERIVEXTPROC) (GLuint buffer, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETNAMEDBUFFERPOINTERVEXTPROC) (GLuint buffer, GLenum pname, void** params); +typedef void (GLAPIENTRY * PFNGLGETNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +typedef void (GLAPIENTRY * PFNGLGETNAMEDFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETNAMEDPROGRAMLOCALPARAMETERIIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETNAMEDPROGRAMLOCALPARAMETERIUIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLuint* params); +typedef void (GLAPIENTRY * PFNGLGETNAMEDPROGRAMLOCALPARAMETERDVEXTPROC) (GLuint program, GLenum target, GLuint index, GLdouble* params); +typedef void (GLAPIENTRY * PFNGLGETNAMEDPROGRAMLOCALPARAMETERFVEXTPROC) (GLuint program, GLenum target, GLuint index, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETNAMEDPROGRAMSTRINGEXTPROC) (GLuint program, GLenum target, GLenum pname, void *string); +typedef void (GLAPIENTRY * PFNGLGETNAMEDPROGRAMIVEXTPROC) (GLuint program, GLenum target, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETNAMEDRENDERBUFFERPARAMETERIVEXTPROC) (GLuint renderbuffer, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETPOINTERINDEXEDVEXTPROC) (GLenum target, GLuint index, void** params); +typedef void (GLAPIENTRY * PFNGLGETPOINTERI_VEXTPROC) (GLenum pname, GLuint index, void** params); +typedef void (GLAPIENTRY * PFNGLGETTEXTUREIMAGEEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +typedef void (GLAPIENTRY * PFNGLGETTEXTURELEVELPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETTEXTURELEVELPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLint level, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETTEXTUREPARAMETERIIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETTEXTUREPARAMETERIUIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLuint* params); +typedef void (GLAPIENTRY * PFNGLGETTEXTUREPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETTEXTUREPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETVERTEXARRAYINTEGERI_VEXTPROC) (GLuint vaobj, GLuint index, GLenum pname, GLint* param); +typedef void (GLAPIENTRY * PFNGLGETVERTEXARRAYINTEGERVEXTPROC) (GLuint vaobj, GLenum pname, GLint* param); +typedef void (GLAPIENTRY * PFNGLGETVERTEXARRAYPOINTERI_VEXTPROC) (GLuint vaobj, GLuint index, GLenum pname, void** param); +typedef void (GLAPIENTRY * PFNGLGETVERTEXARRAYPOINTERVEXTPROC) (GLuint vaobj, GLenum pname, void** param); +typedef void * (GLAPIENTRY * PFNGLMAPNAMEDBUFFEREXTPROC) (GLuint buffer, GLenum access); +typedef void * (GLAPIENTRY * PFNGLMAPNAMEDBUFFERRANGEEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef void (GLAPIENTRY * PFNGLMATRIXFRUSTUMEXTPROC) (GLenum matrixMode, GLdouble l, GLdouble r, GLdouble b, GLdouble t, GLdouble n, GLdouble f); +typedef void (GLAPIENTRY * PFNGLMATRIXLOADIDENTITYEXTPROC) (GLenum matrixMode); +typedef void (GLAPIENTRY * PFNGLMATRIXLOADTRANSPOSEDEXTPROC) (GLenum matrixMode, const GLdouble* m); +typedef void (GLAPIENTRY * PFNGLMATRIXLOADTRANSPOSEFEXTPROC) (GLenum matrixMode, const GLfloat* m); +typedef void (GLAPIENTRY * PFNGLMATRIXLOADDEXTPROC) (GLenum matrixMode, const GLdouble* m); +typedef void (GLAPIENTRY * PFNGLMATRIXLOADFEXTPROC) (GLenum matrixMode, const GLfloat* m); +typedef void (GLAPIENTRY * PFNGLMATRIXMULTTRANSPOSEDEXTPROC) (GLenum matrixMode, const GLdouble* m); +typedef void (GLAPIENTRY * PFNGLMATRIXMULTTRANSPOSEFEXTPROC) (GLenum matrixMode, const GLfloat* m); +typedef void (GLAPIENTRY * PFNGLMATRIXMULTDEXTPROC) (GLenum matrixMode, const GLdouble* m); +typedef void (GLAPIENTRY * PFNGLMATRIXMULTFEXTPROC) (GLenum matrixMode, const GLfloat* m); +typedef void (GLAPIENTRY * PFNGLMATRIXORTHOEXTPROC) (GLenum matrixMode, GLdouble l, GLdouble r, GLdouble b, GLdouble t, GLdouble n, GLdouble f); +typedef void (GLAPIENTRY * PFNGLMATRIXPOPEXTPROC) (GLenum matrixMode); +typedef void (GLAPIENTRY * PFNGLMATRIXPUSHEXTPROC) (GLenum matrixMode); +typedef void (GLAPIENTRY * PFNGLMATRIXROTATEDEXTPROC) (GLenum matrixMode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +typedef void (GLAPIENTRY * PFNGLMATRIXROTATEFEXTPROC) (GLenum matrixMode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLMATRIXSCALEDEXTPROC) (GLenum matrixMode, GLdouble x, GLdouble y, GLdouble z); +typedef void (GLAPIENTRY * PFNGLMATRIXSCALEFEXTPROC) (GLenum matrixMode, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLMATRIXTRANSLATEDEXTPROC) (GLenum matrixMode, GLdouble x, GLdouble y, GLdouble z); +typedef void (GLAPIENTRY * PFNGLMATRIXTRANSLATEFEXTPROC) (GLenum matrixMode, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLMULTITEXBUFFEREXTPROC) (GLenum texunit, GLenum target, GLenum internalformat, GLuint buffer); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORDPOINTEREXTPROC) (GLenum texunit, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (GLAPIENTRY * PFNGLMULTITEXENVFEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLMULTITEXENVFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLMULTITEXENVIEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLMULTITEXENVIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint* params); +typedef void (GLAPIENTRY * PFNGLMULTITEXGENDEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLdouble param); +typedef void (GLAPIENTRY * PFNGLMULTITEXGENDVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLdouble* params); +typedef void (GLAPIENTRY * PFNGLMULTITEXGENFEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLMULTITEXGENFVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLMULTITEXGENIEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLMULTITEXGENIVEXTPROC) (GLenum texunit, GLenum coord, GLenum pname, const GLint* params); +typedef void (GLAPIENTRY * PFNGLMULTITEXIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (GLAPIENTRY * PFNGLMULTITEXIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (GLAPIENTRY * PFNGLMULTITEXIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (GLAPIENTRY * PFNGLMULTITEXPARAMETERIIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint* params); +typedef void (GLAPIENTRY * PFNGLMULTITEXPARAMETERIUIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLuint* params); +typedef void (GLAPIENTRY * PFNGLMULTITEXPARAMETERFEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLMULTITEXPARAMETERFVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLfloat* param); +typedef void (GLAPIENTRY * PFNGLMULTITEXPARAMETERIEXTPROC) (GLenum texunit, GLenum target, GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLMULTITEXPARAMETERIVEXTPROC) (GLenum texunit, GLenum target, GLenum pname, const GLint* param); +typedef void (GLAPIENTRY * PFNGLMULTITEXRENDERBUFFEREXTPROC) (GLenum texunit, GLenum target, GLuint renderbuffer); +typedef void (GLAPIENTRY * PFNGLMULTITEXSUBIMAGE1DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (GLAPIENTRY * PFNGLMULTITEXSUBIMAGE2DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (GLAPIENTRY * PFNGLMULTITEXSUBIMAGE3DEXTPROC) (GLenum texunit, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (GLAPIENTRY * PFNGLNAMEDBUFFERDATAEXTPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +typedef void (GLAPIENTRY * PFNGLNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (GLAPIENTRY * PFNGLNAMEDCOPYBUFFERSUBDATAEXTPROC) (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (GLAPIENTRY * PFNGLNAMEDFRAMEBUFFERRENDERBUFFEREXTPROC) (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (GLAPIENTRY * PFNGLNAMEDFRAMEBUFFERTEXTURE1DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (GLAPIENTRY * PFNGLNAMEDFRAMEBUFFERTEXTURE2DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (GLAPIENTRY * PFNGLNAMEDFRAMEBUFFERTEXTURE3DEXTPROC) (GLuint framebuffer, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +typedef void (GLAPIENTRY * PFNGLNAMEDFRAMEBUFFERTEXTUREEXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +typedef void (GLAPIENTRY * PFNGLNAMEDFRAMEBUFFERTEXTUREFACEEXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLenum face); +typedef void (GLAPIENTRY * PFNGLNAMEDFRAMEBUFFERTEXTURELAYEREXTPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (GLAPIENTRY * PFNGLNAMEDPROGRAMLOCALPARAMETER4DEXTPROC) (GLuint program, GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (GLAPIENTRY * PFNGLNAMEDPROGRAMLOCALPARAMETER4DVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLdouble* params); +typedef void (GLAPIENTRY * PFNGLNAMEDPROGRAMLOCALPARAMETER4FEXTPROC) (GLuint program, GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (GLAPIENTRY * PFNGLNAMEDPROGRAMLOCALPARAMETER4FVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLNAMEDPROGRAMLOCALPARAMETERI4IEXTPROC) (GLuint program, GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (GLAPIENTRY * PFNGLNAMEDPROGRAMLOCALPARAMETERI4IVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLint* params); +typedef void (GLAPIENTRY * PFNGLNAMEDPROGRAMLOCALPARAMETERI4UIEXTPROC) (GLuint program, GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (GLAPIENTRY * PFNGLNAMEDPROGRAMLOCALPARAMETERI4UIVEXTPROC) (GLuint program, GLenum target, GLuint index, const GLuint* params); +typedef void (GLAPIENTRY * PFNGLNAMEDPROGRAMLOCALPARAMETERS4FVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLNAMEDPROGRAMLOCALPARAMETERSI4IVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLint* params); +typedef void (GLAPIENTRY * PFNGLNAMEDPROGRAMLOCALPARAMETERSI4UIVEXTPROC) (GLuint program, GLenum target, GLuint index, GLsizei count, const GLuint* params); +typedef void (GLAPIENTRY * PFNGLNAMEDPROGRAMSTRINGEXTPROC) (GLuint program, GLenum target, GLenum format, GLsizei len, const void *string); +typedef void (GLAPIENTRY * PFNGLNAMEDRENDERBUFFERSTORAGEEXTPROC) (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLECOVERAGEEXTPROC) (GLuint renderbuffer, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1FEXTPROC) (GLuint program, GLint location, GLfloat v0); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1IEXTPROC) (GLuint program, GLint location, GLint v0); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1UIEXTPROC) (GLuint program, GLint location, GLuint v0); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX2X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX2X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX3X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX3X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX4X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMMATRIX4X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPUSHCLIENTATTRIBDEFAULTEXTPROC) (GLbitfield mask); +typedef void (GLAPIENTRY * PFNGLTEXTUREBUFFEREXTPROC) (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer); +typedef void (GLAPIENTRY * PFNGLTEXTUREIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (GLAPIENTRY * PFNGLTEXTUREIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (GLAPIENTRY * PFNGLTEXTUREIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (GLAPIENTRY * PFNGLTEXTUREPARAMETERIIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLint* params); +typedef void (GLAPIENTRY * PFNGLTEXTUREPARAMETERIUIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLuint* params); +typedef void (GLAPIENTRY * PFNGLTEXTUREPARAMETERFEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLTEXTUREPARAMETERFVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLfloat* param); +typedef void (GLAPIENTRY * PFNGLTEXTUREPARAMETERIEXTPROC) (GLuint texture, GLenum target, GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLTEXTUREPARAMETERIVEXTPROC) (GLuint texture, GLenum target, GLenum pname, const GLint* param); +typedef void (GLAPIENTRY * PFNGLTEXTURERENDERBUFFEREXTPROC) (GLuint texture, GLenum target, GLuint renderbuffer); +typedef void (GLAPIENTRY * PFNGLTEXTURESUBIMAGE1DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (GLAPIENTRY * PFNGLTEXTURESUBIMAGE2DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (GLAPIENTRY * PFNGLTEXTURESUBIMAGE3DEXTPROC) (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef GLboolean (GLAPIENTRY * PFNGLUNMAPNAMEDBUFFEREXTPROC) (GLuint buffer); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYCOLOROFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYEDGEFLAGOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLsizei stride, GLintptr offset); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYFOGCOORDOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYINDEXOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYMULTITEXCOORDOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum texunit, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYNORMALOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLenum type, GLsizei stride, GLintptr offset); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYSECONDARYCOLOROFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYTEXCOORDOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYVERTEXATTRIBDIVISOREXTPROC) (GLuint vaobj, GLuint index, GLuint divisor); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYVERTEXATTRIBIOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYVERTEXATTRIBOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLintptr offset); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYVERTEXOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLint size, GLenum type, GLsizei stride, GLintptr offset); + +#define glBindMultiTextureEXT GLEW_GET_FUN(__glewBindMultiTextureEXT) +#define glCheckNamedFramebufferStatusEXT GLEW_GET_FUN(__glewCheckNamedFramebufferStatusEXT) +#define glClientAttribDefaultEXT GLEW_GET_FUN(__glewClientAttribDefaultEXT) +#define glCompressedMultiTexImage1DEXT GLEW_GET_FUN(__glewCompressedMultiTexImage1DEXT) +#define glCompressedMultiTexImage2DEXT GLEW_GET_FUN(__glewCompressedMultiTexImage2DEXT) +#define glCompressedMultiTexImage3DEXT GLEW_GET_FUN(__glewCompressedMultiTexImage3DEXT) +#define glCompressedMultiTexSubImage1DEXT GLEW_GET_FUN(__glewCompressedMultiTexSubImage1DEXT) +#define glCompressedMultiTexSubImage2DEXT GLEW_GET_FUN(__glewCompressedMultiTexSubImage2DEXT) +#define glCompressedMultiTexSubImage3DEXT GLEW_GET_FUN(__glewCompressedMultiTexSubImage3DEXT) +#define glCompressedTextureImage1DEXT GLEW_GET_FUN(__glewCompressedTextureImage1DEXT) +#define glCompressedTextureImage2DEXT GLEW_GET_FUN(__glewCompressedTextureImage2DEXT) +#define glCompressedTextureImage3DEXT GLEW_GET_FUN(__glewCompressedTextureImage3DEXT) +#define glCompressedTextureSubImage1DEXT GLEW_GET_FUN(__glewCompressedTextureSubImage1DEXT) +#define glCompressedTextureSubImage2DEXT GLEW_GET_FUN(__glewCompressedTextureSubImage2DEXT) +#define glCompressedTextureSubImage3DEXT GLEW_GET_FUN(__glewCompressedTextureSubImage3DEXT) +#define glCopyMultiTexImage1DEXT GLEW_GET_FUN(__glewCopyMultiTexImage1DEXT) +#define glCopyMultiTexImage2DEXT GLEW_GET_FUN(__glewCopyMultiTexImage2DEXT) +#define glCopyMultiTexSubImage1DEXT GLEW_GET_FUN(__glewCopyMultiTexSubImage1DEXT) +#define glCopyMultiTexSubImage2DEXT GLEW_GET_FUN(__glewCopyMultiTexSubImage2DEXT) +#define glCopyMultiTexSubImage3DEXT GLEW_GET_FUN(__glewCopyMultiTexSubImage3DEXT) +#define glCopyTextureImage1DEXT GLEW_GET_FUN(__glewCopyTextureImage1DEXT) +#define glCopyTextureImage2DEXT GLEW_GET_FUN(__glewCopyTextureImage2DEXT) +#define glCopyTextureSubImage1DEXT GLEW_GET_FUN(__glewCopyTextureSubImage1DEXT) +#define glCopyTextureSubImage2DEXT GLEW_GET_FUN(__glewCopyTextureSubImage2DEXT) +#define glCopyTextureSubImage3DEXT GLEW_GET_FUN(__glewCopyTextureSubImage3DEXT) +#define glDisableClientStateIndexedEXT GLEW_GET_FUN(__glewDisableClientStateIndexedEXT) +#define glDisableClientStateiEXT GLEW_GET_FUN(__glewDisableClientStateiEXT) +#define glDisableVertexArrayAttribEXT GLEW_GET_FUN(__glewDisableVertexArrayAttribEXT) +#define glDisableVertexArrayEXT GLEW_GET_FUN(__glewDisableVertexArrayEXT) +#define glEnableClientStateIndexedEXT GLEW_GET_FUN(__glewEnableClientStateIndexedEXT) +#define glEnableClientStateiEXT GLEW_GET_FUN(__glewEnableClientStateiEXT) +#define glEnableVertexArrayAttribEXT GLEW_GET_FUN(__glewEnableVertexArrayAttribEXT) +#define glEnableVertexArrayEXT GLEW_GET_FUN(__glewEnableVertexArrayEXT) +#define glFlushMappedNamedBufferRangeEXT GLEW_GET_FUN(__glewFlushMappedNamedBufferRangeEXT) +#define glFramebufferDrawBufferEXT GLEW_GET_FUN(__glewFramebufferDrawBufferEXT) +#define glFramebufferDrawBuffersEXT GLEW_GET_FUN(__glewFramebufferDrawBuffersEXT) +#define glFramebufferReadBufferEXT GLEW_GET_FUN(__glewFramebufferReadBufferEXT) +#define glGenerateMultiTexMipmapEXT GLEW_GET_FUN(__glewGenerateMultiTexMipmapEXT) +#define glGenerateTextureMipmapEXT GLEW_GET_FUN(__glewGenerateTextureMipmapEXT) +#define glGetCompressedMultiTexImageEXT GLEW_GET_FUN(__glewGetCompressedMultiTexImageEXT) +#define glGetCompressedTextureImageEXT GLEW_GET_FUN(__glewGetCompressedTextureImageEXT) +#define glGetDoubleIndexedvEXT GLEW_GET_FUN(__glewGetDoubleIndexedvEXT) +#define glGetDoublei_vEXT GLEW_GET_FUN(__glewGetDoublei_vEXT) +#define glGetFloatIndexedvEXT GLEW_GET_FUN(__glewGetFloatIndexedvEXT) +#define glGetFloati_vEXT GLEW_GET_FUN(__glewGetFloati_vEXT) +#define glGetFramebufferParameterivEXT GLEW_GET_FUN(__glewGetFramebufferParameterivEXT) +#define glGetMultiTexEnvfvEXT GLEW_GET_FUN(__glewGetMultiTexEnvfvEXT) +#define glGetMultiTexEnvivEXT GLEW_GET_FUN(__glewGetMultiTexEnvivEXT) +#define glGetMultiTexGendvEXT GLEW_GET_FUN(__glewGetMultiTexGendvEXT) +#define glGetMultiTexGenfvEXT GLEW_GET_FUN(__glewGetMultiTexGenfvEXT) +#define glGetMultiTexGenivEXT GLEW_GET_FUN(__glewGetMultiTexGenivEXT) +#define glGetMultiTexImageEXT GLEW_GET_FUN(__glewGetMultiTexImageEXT) +#define glGetMultiTexLevelParameterfvEXT GLEW_GET_FUN(__glewGetMultiTexLevelParameterfvEXT) +#define glGetMultiTexLevelParameterivEXT GLEW_GET_FUN(__glewGetMultiTexLevelParameterivEXT) +#define glGetMultiTexParameterIivEXT GLEW_GET_FUN(__glewGetMultiTexParameterIivEXT) +#define glGetMultiTexParameterIuivEXT GLEW_GET_FUN(__glewGetMultiTexParameterIuivEXT) +#define glGetMultiTexParameterfvEXT GLEW_GET_FUN(__glewGetMultiTexParameterfvEXT) +#define glGetMultiTexParameterivEXT GLEW_GET_FUN(__glewGetMultiTexParameterivEXT) +#define glGetNamedBufferParameterivEXT GLEW_GET_FUN(__glewGetNamedBufferParameterivEXT) +#define glGetNamedBufferPointervEXT GLEW_GET_FUN(__glewGetNamedBufferPointervEXT) +#define glGetNamedBufferSubDataEXT GLEW_GET_FUN(__glewGetNamedBufferSubDataEXT) +#define glGetNamedFramebufferAttachmentParameterivEXT GLEW_GET_FUN(__glewGetNamedFramebufferAttachmentParameterivEXT) +#define glGetNamedProgramLocalParameterIivEXT GLEW_GET_FUN(__glewGetNamedProgramLocalParameterIivEXT) +#define glGetNamedProgramLocalParameterIuivEXT GLEW_GET_FUN(__glewGetNamedProgramLocalParameterIuivEXT) +#define glGetNamedProgramLocalParameterdvEXT GLEW_GET_FUN(__glewGetNamedProgramLocalParameterdvEXT) +#define glGetNamedProgramLocalParameterfvEXT GLEW_GET_FUN(__glewGetNamedProgramLocalParameterfvEXT) +#define glGetNamedProgramStringEXT GLEW_GET_FUN(__glewGetNamedProgramStringEXT) +#define glGetNamedProgramivEXT GLEW_GET_FUN(__glewGetNamedProgramivEXT) +#define glGetNamedRenderbufferParameterivEXT GLEW_GET_FUN(__glewGetNamedRenderbufferParameterivEXT) +#define glGetPointerIndexedvEXT GLEW_GET_FUN(__glewGetPointerIndexedvEXT) +#define glGetPointeri_vEXT GLEW_GET_FUN(__glewGetPointeri_vEXT) +#define glGetTextureImageEXT GLEW_GET_FUN(__glewGetTextureImageEXT) +#define glGetTextureLevelParameterfvEXT GLEW_GET_FUN(__glewGetTextureLevelParameterfvEXT) +#define glGetTextureLevelParameterivEXT GLEW_GET_FUN(__glewGetTextureLevelParameterivEXT) +#define glGetTextureParameterIivEXT GLEW_GET_FUN(__glewGetTextureParameterIivEXT) +#define glGetTextureParameterIuivEXT GLEW_GET_FUN(__glewGetTextureParameterIuivEXT) +#define glGetTextureParameterfvEXT GLEW_GET_FUN(__glewGetTextureParameterfvEXT) +#define glGetTextureParameterivEXT GLEW_GET_FUN(__glewGetTextureParameterivEXT) +#define glGetVertexArrayIntegeri_vEXT GLEW_GET_FUN(__glewGetVertexArrayIntegeri_vEXT) +#define glGetVertexArrayIntegervEXT GLEW_GET_FUN(__glewGetVertexArrayIntegervEXT) +#define glGetVertexArrayPointeri_vEXT GLEW_GET_FUN(__glewGetVertexArrayPointeri_vEXT) +#define glGetVertexArrayPointervEXT GLEW_GET_FUN(__glewGetVertexArrayPointervEXT) +#define glMapNamedBufferEXT GLEW_GET_FUN(__glewMapNamedBufferEXT) +#define glMapNamedBufferRangeEXT GLEW_GET_FUN(__glewMapNamedBufferRangeEXT) +#define glMatrixFrustumEXT GLEW_GET_FUN(__glewMatrixFrustumEXT) +#define glMatrixLoadIdentityEXT GLEW_GET_FUN(__glewMatrixLoadIdentityEXT) +#define glMatrixLoadTransposedEXT GLEW_GET_FUN(__glewMatrixLoadTransposedEXT) +#define glMatrixLoadTransposefEXT GLEW_GET_FUN(__glewMatrixLoadTransposefEXT) +#define glMatrixLoaddEXT GLEW_GET_FUN(__glewMatrixLoaddEXT) +#define glMatrixLoadfEXT GLEW_GET_FUN(__glewMatrixLoadfEXT) +#define glMatrixMultTransposedEXT GLEW_GET_FUN(__glewMatrixMultTransposedEXT) +#define glMatrixMultTransposefEXT GLEW_GET_FUN(__glewMatrixMultTransposefEXT) +#define glMatrixMultdEXT GLEW_GET_FUN(__glewMatrixMultdEXT) +#define glMatrixMultfEXT GLEW_GET_FUN(__glewMatrixMultfEXT) +#define glMatrixOrthoEXT GLEW_GET_FUN(__glewMatrixOrthoEXT) +#define glMatrixPopEXT GLEW_GET_FUN(__glewMatrixPopEXT) +#define glMatrixPushEXT GLEW_GET_FUN(__glewMatrixPushEXT) +#define glMatrixRotatedEXT GLEW_GET_FUN(__glewMatrixRotatedEXT) +#define glMatrixRotatefEXT GLEW_GET_FUN(__glewMatrixRotatefEXT) +#define glMatrixScaledEXT GLEW_GET_FUN(__glewMatrixScaledEXT) +#define glMatrixScalefEXT GLEW_GET_FUN(__glewMatrixScalefEXT) +#define glMatrixTranslatedEXT GLEW_GET_FUN(__glewMatrixTranslatedEXT) +#define glMatrixTranslatefEXT GLEW_GET_FUN(__glewMatrixTranslatefEXT) +#define glMultiTexBufferEXT GLEW_GET_FUN(__glewMultiTexBufferEXT) +#define glMultiTexCoordPointerEXT GLEW_GET_FUN(__glewMultiTexCoordPointerEXT) +#define glMultiTexEnvfEXT GLEW_GET_FUN(__glewMultiTexEnvfEXT) +#define glMultiTexEnvfvEXT GLEW_GET_FUN(__glewMultiTexEnvfvEXT) +#define glMultiTexEnviEXT GLEW_GET_FUN(__glewMultiTexEnviEXT) +#define glMultiTexEnvivEXT GLEW_GET_FUN(__glewMultiTexEnvivEXT) +#define glMultiTexGendEXT GLEW_GET_FUN(__glewMultiTexGendEXT) +#define glMultiTexGendvEXT GLEW_GET_FUN(__glewMultiTexGendvEXT) +#define glMultiTexGenfEXT GLEW_GET_FUN(__glewMultiTexGenfEXT) +#define glMultiTexGenfvEXT GLEW_GET_FUN(__glewMultiTexGenfvEXT) +#define glMultiTexGeniEXT GLEW_GET_FUN(__glewMultiTexGeniEXT) +#define glMultiTexGenivEXT GLEW_GET_FUN(__glewMultiTexGenivEXT) +#define glMultiTexImage1DEXT GLEW_GET_FUN(__glewMultiTexImage1DEXT) +#define glMultiTexImage2DEXT GLEW_GET_FUN(__glewMultiTexImage2DEXT) +#define glMultiTexImage3DEXT GLEW_GET_FUN(__glewMultiTexImage3DEXT) +#define glMultiTexParameterIivEXT GLEW_GET_FUN(__glewMultiTexParameterIivEXT) +#define glMultiTexParameterIuivEXT GLEW_GET_FUN(__glewMultiTexParameterIuivEXT) +#define glMultiTexParameterfEXT GLEW_GET_FUN(__glewMultiTexParameterfEXT) +#define glMultiTexParameterfvEXT GLEW_GET_FUN(__glewMultiTexParameterfvEXT) +#define glMultiTexParameteriEXT GLEW_GET_FUN(__glewMultiTexParameteriEXT) +#define glMultiTexParameterivEXT GLEW_GET_FUN(__glewMultiTexParameterivEXT) +#define glMultiTexRenderbufferEXT GLEW_GET_FUN(__glewMultiTexRenderbufferEXT) +#define glMultiTexSubImage1DEXT GLEW_GET_FUN(__glewMultiTexSubImage1DEXT) +#define glMultiTexSubImage2DEXT GLEW_GET_FUN(__glewMultiTexSubImage2DEXT) +#define glMultiTexSubImage3DEXT GLEW_GET_FUN(__glewMultiTexSubImage3DEXT) +#define glNamedBufferDataEXT GLEW_GET_FUN(__glewNamedBufferDataEXT) +#define glNamedBufferSubDataEXT GLEW_GET_FUN(__glewNamedBufferSubDataEXT) +#define glNamedCopyBufferSubDataEXT GLEW_GET_FUN(__glewNamedCopyBufferSubDataEXT) +#define glNamedFramebufferRenderbufferEXT GLEW_GET_FUN(__glewNamedFramebufferRenderbufferEXT) +#define glNamedFramebufferTexture1DEXT GLEW_GET_FUN(__glewNamedFramebufferTexture1DEXT) +#define glNamedFramebufferTexture2DEXT GLEW_GET_FUN(__glewNamedFramebufferTexture2DEXT) +#define glNamedFramebufferTexture3DEXT GLEW_GET_FUN(__glewNamedFramebufferTexture3DEXT) +#define glNamedFramebufferTextureEXT GLEW_GET_FUN(__glewNamedFramebufferTextureEXT) +#define glNamedFramebufferTextureFaceEXT GLEW_GET_FUN(__glewNamedFramebufferTextureFaceEXT) +#define glNamedFramebufferTextureLayerEXT GLEW_GET_FUN(__glewNamedFramebufferTextureLayerEXT) +#define glNamedProgramLocalParameter4dEXT GLEW_GET_FUN(__glewNamedProgramLocalParameter4dEXT) +#define glNamedProgramLocalParameter4dvEXT GLEW_GET_FUN(__glewNamedProgramLocalParameter4dvEXT) +#define glNamedProgramLocalParameter4fEXT GLEW_GET_FUN(__glewNamedProgramLocalParameter4fEXT) +#define glNamedProgramLocalParameter4fvEXT GLEW_GET_FUN(__glewNamedProgramLocalParameter4fvEXT) +#define glNamedProgramLocalParameterI4iEXT GLEW_GET_FUN(__glewNamedProgramLocalParameterI4iEXT) +#define glNamedProgramLocalParameterI4ivEXT GLEW_GET_FUN(__glewNamedProgramLocalParameterI4ivEXT) +#define glNamedProgramLocalParameterI4uiEXT GLEW_GET_FUN(__glewNamedProgramLocalParameterI4uiEXT) +#define glNamedProgramLocalParameterI4uivEXT GLEW_GET_FUN(__glewNamedProgramLocalParameterI4uivEXT) +#define glNamedProgramLocalParameters4fvEXT GLEW_GET_FUN(__glewNamedProgramLocalParameters4fvEXT) +#define glNamedProgramLocalParametersI4ivEXT GLEW_GET_FUN(__glewNamedProgramLocalParametersI4ivEXT) +#define glNamedProgramLocalParametersI4uivEXT GLEW_GET_FUN(__glewNamedProgramLocalParametersI4uivEXT) +#define glNamedProgramStringEXT GLEW_GET_FUN(__glewNamedProgramStringEXT) +#define glNamedRenderbufferStorageEXT GLEW_GET_FUN(__glewNamedRenderbufferStorageEXT) +#define glNamedRenderbufferStorageMultisampleCoverageEXT GLEW_GET_FUN(__glewNamedRenderbufferStorageMultisampleCoverageEXT) +#define glNamedRenderbufferStorageMultisampleEXT GLEW_GET_FUN(__glewNamedRenderbufferStorageMultisampleEXT) +#define glProgramUniform1fEXT GLEW_GET_FUN(__glewProgramUniform1fEXT) +#define glProgramUniform1fvEXT GLEW_GET_FUN(__glewProgramUniform1fvEXT) +#define glProgramUniform1iEXT GLEW_GET_FUN(__glewProgramUniform1iEXT) +#define glProgramUniform1ivEXT GLEW_GET_FUN(__glewProgramUniform1ivEXT) +#define glProgramUniform1uiEXT GLEW_GET_FUN(__glewProgramUniform1uiEXT) +#define glProgramUniform1uivEXT GLEW_GET_FUN(__glewProgramUniform1uivEXT) +#define glProgramUniform2fEXT GLEW_GET_FUN(__glewProgramUniform2fEXT) +#define glProgramUniform2fvEXT GLEW_GET_FUN(__glewProgramUniform2fvEXT) +#define glProgramUniform2iEXT GLEW_GET_FUN(__glewProgramUniform2iEXT) +#define glProgramUniform2ivEXT GLEW_GET_FUN(__glewProgramUniform2ivEXT) +#define glProgramUniform2uiEXT GLEW_GET_FUN(__glewProgramUniform2uiEXT) +#define glProgramUniform2uivEXT GLEW_GET_FUN(__glewProgramUniform2uivEXT) +#define glProgramUniform3fEXT GLEW_GET_FUN(__glewProgramUniform3fEXT) +#define glProgramUniform3fvEXT GLEW_GET_FUN(__glewProgramUniform3fvEXT) +#define glProgramUniform3iEXT GLEW_GET_FUN(__glewProgramUniform3iEXT) +#define glProgramUniform3ivEXT GLEW_GET_FUN(__glewProgramUniform3ivEXT) +#define glProgramUniform3uiEXT GLEW_GET_FUN(__glewProgramUniform3uiEXT) +#define glProgramUniform3uivEXT GLEW_GET_FUN(__glewProgramUniform3uivEXT) +#define glProgramUniform4fEXT GLEW_GET_FUN(__glewProgramUniform4fEXT) +#define glProgramUniform4fvEXT GLEW_GET_FUN(__glewProgramUniform4fvEXT) +#define glProgramUniform4iEXT GLEW_GET_FUN(__glewProgramUniform4iEXT) +#define glProgramUniform4ivEXT GLEW_GET_FUN(__glewProgramUniform4ivEXT) +#define glProgramUniform4uiEXT GLEW_GET_FUN(__glewProgramUniform4uiEXT) +#define glProgramUniform4uivEXT GLEW_GET_FUN(__glewProgramUniform4uivEXT) +#define glProgramUniformMatrix2fvEXT GLEW_GET_FUN(__glewProgramUniformMatrix2fvEXT) +#define glProgramUniformMatrix2x3fvEXT GLEW_GET_FUN(__glewProgramUniformMatrix2x3fvEXT) +#define glProgramUniformMatrix2x4fvEXT GLEW_GET_FUN(__glewProgramUniformMatrix2x4fvEXT) +#define glProgramUniformMatrix3fvEXT GLEW_GET_FUN(__glewProgramUniformMatrix3fvEXT) +#define glProgramUniformMatrix3x2fvEXT GLEW_GET_FUN(__glewProgramUniformMatrix3x2fvEXT) +#define glProgramUniformMatrix3x4fvEXT GLEW_GET_FUN(__glewProgramUniformMatrix3x4fvEXT) +#define glProgramUniformMatrix4fvEXT GLEW_GET_FUN(__glewProgramUniformMatrix4fvEXT) +#define glProgramUniformMatrix4x2fvEXT GLEW_GET_FUN(__glewProgramUniformMatrix4x2fvEXT) +#define glProgramUniformMatrix4x3fvEXT GLEW_GET_FUN(__glewProgramUniformMatrix4x3fvEXT) +#define glPushClientAttribDefaultEXT GLEW_GET_FUN(__glewPushClientAttribDefaultEXT) +#define glTextureBufferEXT GLEW_GET_FUN(__glewTextureBufferEXT) +#define glTextureImage1DEXT GLEW_GET_FUN(__glewTextureImage1DEXT) +#define glTextureImage2DEXT GLEW_GET_FUN(__glewTextureImage2DEXT) +#define glTextureImage3DEXT GLEW_GET_FUN(__glewTextureImage3DEXT) +#define glTextureParameterIivEXT GLEW_GET_FUN(__glewTextureParameterIivEXT) +#define glTextureParameterIuivEXT GLEW_GET_FUN(__glewTextureParameterIuivEXT) +#define glTextureParameterfEXT GLEW_GET_FUN(__glewTextureParameterfEXT) +#define glTextureParameterfvEXT GLEW_GET_FUN(__glewTextureParameterfvEXT) +#define glTextureParameteriEXT GLEW_GET_FUN(__glewTextureParameteriEXT) +#define glTextureParameterivEXT GLEW_GET_FUN(__glewTextureParameterivEXT) +#define glTextureRenderbufferEXT GLEW_GET_FUN(__glewTextureRenderbufferEXT) +#define glTextureSubImage1DEXT GLEW_GET_FUN(__glewTextureSubImage1DEXT) +#define glTextureSubImage2DEXT GLEW_GET_FUN(__glewTextureSubImage2DEXT) +#define glTextureSubImage3DEXT GLEW_GET_FUN(__glewTextureSubImage3DEXT) +#define glUnmapNamedBufferEXT GLEW_GET_FUN(__glewUnmapNamedBufferEXT) +#define glVertexArrayColorOffsetEXT GLEW_GET_FUN(__glewVertexArrayColorOffsetEXT) +#define glVertexArrayEdgeFlagOffsetEXT GLEW_GET_FUN(__glewVertexArrayEdgeFlagOffsetEXT) +#define glVertexArrayFogCoordOffsetEXT GLEW_GET_FUN(__glewVertexArrayFogCoordOffsetEXT) +#define glVertexArrayIndexOffsetEXT GLEW_GET_FUN(__glewVertexArrayIndexOffsetEXT) +#define glVertexArrayMultiTexCoordOffsetEXT GLEW_GET_FUN(__glewVertexArrayMultiTexCoordOffsetEXT) +#define glVertexArrayNormalOffsetEXT GLEW_GET_FUN(__glewVertexArrayNormalOffsetEXT) +#define glVertexArraySecondaryColorOffsetEXT GLEW_GET_FUN(__glewVertexArraySecondaryColorOffsetEXT) +#define glVertexArrayTexCoordOffsetEXT GLEW_GET_FUN(__glewVertexArrayTexCoordOffsetEXT) +#define glVertexArrayVertexAttribDivisorEXT GLEW_GET_FUN(__glewVertexArrayVertexAttribDivisorEXT) +#define glVertexArrayVertexAttribIOffsetEXT GLEW_GET_FUN(__glewVertexArrayVertexAttribIOffsetEXT) +#define glVertexArrayVertexAttribOffsetEXT GLEW_GET_FUN(__glewVertexArrayVertexAttribOffsetEXT) +#define glVertexArrayVertexOffsetEXT GLEW_GET_FUN(__glewVertexArrayVertexOffsetEXT) + +#define GLEW_EXT_direct_state_access GLEW_GET_VAR(__GLEW_EXT_direct_state_access) + +#endif /* GL_EXT_direct_state_access */ + +/* ----------------------- GL_EXT_discard_framebuffer ---------------------- */ + +#ifndef GL_EXT_discard_framebuffer +#define GL_EXT_discard_framebuffer 1 + +#define GL_COLOR_EXT 0x1800 +#define GL_DEPTH_EXT 0x1801 +#define GL_STENCIL_EXT 0x1802 + +typedef void (GLAPIENTRY * PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum* attachments); + +#define glDiscardFramebufferEXT GLEW_GET_FUN(__glewDiscardFramebufferEXT) + +#define GLEW_EXT_discard_framebuffer GLEW_GET_VAR(__GLEW_EXT_discard_framebuffer) + +#endif /* GL_EXT_discard_framebuffer */ + +/* -------------------------- GL_EXT_draw_buffers -------------------------- */ + +#ifndef GL_EXT_draw_buffers +#define GL_EXT_draw_buffers 1 + +#define GL_MAX_DRAW_BUFFERS_EXT 0x8824 +#define GL_DRAW_BUFFER0_EXT 0x8825 +#define GL_DRAW_BUFFER1_EXT 0x8826 +#define GL_DRAW_BUFFER2_EXT 0x8827 +#define GL_DRAW_BUFFER3_EXT 0x8828 +#define GL_DRAW_BUFFER4_EXT 0x8829 +#define GL_DRAW_BUFFER5_EXT 0x882A +#define GL_DRAW_BUFFER6_EXT 0x882B +#define GL_DRAW_BUFFER7_EXT 0x882C +#define GL_DRAW_BUFFER8_EXT 0x882D +#define GL_DRAW_BUFFER9_EXT 0x882E +#define GL_DRAW_BUFFER10_EXT 0x882F +#define GL_DRAW_BUFFER11_EXT 0x8830 +#define GL_DRAW_BUFFER12_EXT 0x8831 +#define GL_DRAW_BUFFER13_EXT 0x8832 +#define GL_DRAW_BUFFER14_EXT 0x8833 +#define GL_DRAW_BUFFER15_EXT 0x8834 +#define GL_MAX_COLOR_ATTACHMENTS_EXT 0x8CDF +#define GL_COLOR_ATTACHMENT0_EXT 0x8CE0 +#define GL_COLOR_ATTACHMENT1_EXT 0x8CE1 +#define GL_COLOR_ATTACHMENT2_EXT 0x8CE2 +#define GL_COLOR_ATTACHMENT3_EXT 0x8CE3 +#define GL_COLOR_ATTACHMENT4_EXT 0x8CE4 +#define GL_COLOR_ATTACHMENT5_EXT 0x8CE5 +#define GL_COLOR_ATTACHMENT6_EXT 0x8CE6 +#define GL_COLOR_ATTACHMENT7_EXT 0x8CE7 +#define GL_COLOR_ATTACHMENT8_EXT 0x8CE8 +#define GL_COLOR_ATTACHMENT9_EXT 0x8CE9 +#define GL_COLOR_ATTACHMENT10_EXT 0x8CEA +#define GL_COLOR_ATTACHMENT11_EXT 0x8CEB +#define GL_COLOR_ATTACHMENT12_EXT 0x8CEC +#define GL_COLOR_ATTACHMENT13_EXT 0x8CED +#define GL_COLOR_ATTACHMENT14_EXT 0x8CEE +#define GL_COLOR_ATTACHMENT15_EXT 0x8CEF + +typedef void (GLAPIENTRY * PFNGLDRAWBUFFERSEXTPROC) (GLsizei n, const GLenum* bufs); + +#define glDrawBuffersEXT GLEW_GET_FUN(__glewDrawBuffersEXT) + +#define GLEW_EXT_draw_buffers GLEW_GET_VAR(__GLEW_EXT_draw_buffers) + +#endif /* GL_EXT_draw_buffers */ + +/* -------------------------- GL_EXT_draw_buffers2 ------------------------- */ + +#ifndef GL_EXT_draw_buffers2 +#define GL_EXT_draw_buffers2 1 + +typedef void (GLAPIENTRY * PFNGLCOLORMASKINDEXEDEXTPROC) (GLuint buf, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +typedef void (GLAPIENTRY * PFNGLDISABLEINDEXEDEXTPROC) (GLenum target, GLuint index); +typedef void (GLAPIENTRY * PFNGLENABLEINDEXEDEXTPROC) (GLenum target, GLuint index); +typedef void (GLAPIENTRY * PFNGLGETBOOLEANINDEXEDVEXTPROC) (GLenum value, GLuint index, GLboolean* data); +typedef void (GLAPIENTRY * PFNGLGETINTEGERINDEXEDVEXTPROC) (GLenum value, GLuint index, GLint* data); +typedef GLboolean (GLAPIENTRY * PFNGLISENABLEDINDEXEDEXTPROC) (GLenum target, GLuint index); + +#define glColorMaskIndexedEXT GLEW_GET_FUN(__glewColorMaskIndexedEXT) +#define glDisableIndexedEXT GLEW_GET_FUN(__glewDisableIndexedEXT) +#define glEnableIndexedEXT GLEW_GET_FUN(__glewEnableIndexedEXT) +#define glGetBooleanIndexedvEXT GLEW_GET_FUN(__glewGetBooleanIndexedvEXT) +#define glGetIntegerIndexedvEXT GLEW_GET_FUN(__glewGetIntegerIndexedvEXT) +#define glIsEnabledIndexedEXT GLEW_GET_FUN(__glewIsEnabledIndexedEXT) + +#define GLEW_EXT_draw_buffers2 GLEW_GET_VAR(__GLEW_EXT_draw_buffers2) + +#endif /* GL_EXT_draw_buffers2 */ + +/* ---------------------- GL_EXT_draw_buffers_indexed ---------------------- */ + +#ifndef GL_EXT_draw_buffers_indexed +#define GL_EXT_draw_buffers_indexed 1 + +typedef void (GLAPIENTRY * PFNGLBLENDEQUATIONSEPARATEIEXTPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (GLAPIENTRY * PFNGLBLENDEQUATIONIEXTPROC) (GLuint buf, GLenum mode); +typedef void (GLAPIENTRY * PFNGLBLENDFUNCSEPARATEIEXTPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (GLAPIENTRY * PFNGLBLENDFUNCIEXTPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (GLAPIENTRY * PFNGLCOLORMASKIEXTPROC) (GLuint buf, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +typedef void (GLAPIENTRY * PFNGLDISABLEIEXTPROC) (GLenum target, GLuint index); +typedef void (GLAPIENTRY * PFNGLENABLEIEXTPROC) (GLenum target, GLuint index); +typedef GLboolean (GLAPIENTRY * PFNGLISENABLEDIEXTPROC) (GLenum target, GLuint index); + +#define glBlendEquationSeparateiEXT GLEW_GET_FUN(__glewBlendEquationSeparateiEXT) +#define glBlendEquationiEXT GLEW_GET_FUN(__glewBlendEquationiEXT) +#define glBlendFuncSeparateiEXT GLEW_GET_FUN(__glewBlendFuncSeparateiEXT) +#define glBlendFunciEXT GLEW_GET_FUN(__glewBlendFunciEXT) +#define glColorMaskiEXT GLEW_GET_FUN(__glewColorMaskiEXT) +#define glDisableiEXT GLEW_GET_FUN(__glewDisableiEXT) +#define glEnableiEXT GLEW_GET_FUN(__glewEnableiEXT) +#define glIsEnablediEXT GLEW_GET_FUN(__glewIsEnablediEXT) + +#define GLEW_EXT_draw_buffers_indexed GLEW_GET_VAR(__GLEW_EXT_draw_buffers_indexed) + +#endif /* GL_EXT_draw_buffers_indexed */ + +/* -------------------- GL_EXT_draw_elements_base_vertex ------------------- */ + +#ifndef GL_EXT_draw_elements_base_vertex +#define GL_EXT_draw_elements_base_vertex 1 + +typedef void (GLAPIENTRY * PFNGLDRAWELEMENTSBASEVERTEXEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GLAPIENTRY * PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +typedef void (GLAPIENTRY * PFNGLDRAWRANGEELEMENTSBASEVERTEXEXTPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GLAPIENTRY * PFNGLMULTIDRAWELEMENTSBASEVERTEXEXTPROC) (GLenum mode, const GLsizei* count, GLenum type, const void *const *indices, GLsizei primcount, const GLint *basevertex); + +#define glDrawElementsBaseVertexEXT GLEW_GET_FUN(__glewDrawElementsBaseVertexEXT) +#define glDrawElementsInstancedBaseVertexEXT GLEW_GET_FUN(__glewDrawElementsInstancedBaseVertexEXT) +#define glDrawRangeElementsBaseVertexEXT GLEW_GET_FUN(__glewDrawRangeElementsBaseVertexEXT) +#define glMultiDrawElementsBaseVertexEXT GLEW_GET_FUN(__glewMultiDrawElementsBaseVertexEXT) + +#define GLEW_EXT_draw_elements_base_vertex GLEW_GET_VAR(__GLEW_EXT_draw_elements_base_vertex) + +#endif /* GL_EXT_draw_elements_base_vertex */ + +/* ------------------------- GL_EXT_draw_instanced ------------------------- */ + +#ifndef GL_EXT_draw_instanced +#define GL_EXT_draw_instanced 1 + +typedef void (GLAPIENTRY * PFNGLDRAWARRAYSINSTANCEDEXTPROC) (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +typedef void (GLAPIENTRY * PFNGLDRAWELEMENTSINSTANCEDEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); + +#define glDrawArraysInstancedEXT GLEW_GET_FUN(__glewDrawArraysInstancedEXT) +#define glDrawElementsInstancedEXT GLEW_GET_FUN(__glewDrawElementsInstancedEXT) + +#define GLEW_EXT_draw_instanced GLEW_GET_VAR(__GLEW_EXT_draw_instanced) + +#endif /* GL_EXT_draw_instanced */ + +/* ----------------------- GL_EXT_draw_range_elements ---------------------- */ + +#ifndef GL_EXT_draw_range_elements +#define GL_EXT_draw_range_elements 1 + +#define GL_MAX_ELEMENTS_VERTICES_EXT 0x80E8 +#define GL_MAX_ELEMENTS_INDICES_EXT 0x80E9 + +typedef void (GLAPIENTRY * PFNGLDRAWRANGEELEMENTSEXTPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); + +#define glDrawRangeElementsEXT GLEW_GET_FUN(__glewDrawRangeElementsEXT) + +#define GLEW_EXT_draw_range_elements GLEW_GET_VAR(__GLEW_EXT_draw_range_elements) + +#endif /* GL_EXT_draw_range_elements */ + +/* ------------------------- GL_EXT_external_buffer ------------------------ */ + +#ifndef GL_EXT_external_buffer +#define GL_EXT_external_buffer 1 + +typedef void* GLeglClientBufferEXT; + +typedef void (GLAPIENTRY * PFNGLBUFFERSTORAGEEXTERNALEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +typedef void (GLAPIENTRY * PFNGLNAMEDBUFFERSTORAGEEXTERNALEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); + +#define glBufferStorageExternalEXT GLEW_GET_FUN(__glewBufferStorageExternalEXT) +#define glNamedBufferStorageExternalEXT GLEW_GET_FUN(__glewNamedBufferStorageExternalEXT) + +#define GLEW_EXT_external_buffer GLEW_GET_VAR(__GLEW_EXT_external_buffer) + +#endif /* GL_EXT_external_buffer */ + +/* --------------------------- GL_EXT_float_blend -------------------------- */ + +#ifndef GL_EXT_float_blend +#define GL_EXT_float_blend 1 + +#define GLEW_EXT_float_blend GLEW_GET_VAR(__GLEW_EXT_float_blend) + +#endif /* GL_EXT_float_blend */ + +/* ---------------------------- GL_EXT_fog_coord --------------------------- */ + +#ifndef GL_EXT_fog_coord +#define GL_EXT_fog_coord 1 + +#define GL_FOG_COORDINATE_SOURCE_EXT 0x8450 +#define GL_FOG_COORDINATE_EXT 0x8451 +#define GL_FRAGMENT_DEPTH_EXT 0x8452 +#define GL_CURRENT_FOG_COORDINATE_EXT 0x8453 +#define GL_FOG_COORDINATE_ARRAY_TYPE_EXT 0x8454 +#define GL_FOG_COORDINATE_ARRAY_STRIDE_EXT 0x8455 +#define GL_FOG_COORDINATE_ARRAY_POINTER_EXT 0x8456 +#define GL_FOG_COORDINATE_ARRAY_EXT 0x8457 + +typedef void (GLAPIENTRY * PFNGLFOGCOORDPOINTEREXTPROC) (GLenum type, GLsizei stride, const void *pointer); +typedef void (GLAPIENTRY * PFNGLFOGCOORDDEXTPROC) (GLdouble coord); +typedef void (GLAPIENTRY * PFNGLFOGCOORDDVEXTPROC) (const GLdouble *coord); +typedef void (GLAPIENTRY * PFNGLFOGCOORDFEXTPROC) (GLfloat coord); +typedef void (GLAPIENTRY * PFNGLFOGCOORDFVEXTPROC) (const GLfloat *coord); + +#define glFogCoordPointerEXT GLEW_GET_FUN(__glewFogCoordPointerEXT) +#define glFogCoorddEXT GLEW_GET_FUN(__glewFogCoorddEXT) +#define glFogCoorddvEXT GLEW_GET_FUN(__glewFogCoorddvEXT) +#define glFogCoordfEXT GLEW_GET_FUN(__glewFogCoordfEXT) +#define glFogCoordfvEXT GLEW_GET_FUN(__glewFogCoordfvEXT) + +#define GLEW_EXT_fog_coord GLEW_GET_VAR(__GLEW_EXT_fog_coord) + +#endif /* GL_EXT_fog_coord */ + +/* --------------------------- GL_EXT_frag_depth --------------------------- */ + +#ifndef GL_EXT_frag_depth +#define GL_EXT_frag_depth 1 + +#define GLEW_EXT_frag_depth GLEW_GET_VAR(__GLEW_EXT_frag_depth) + +#endif /* GL_EXT_frag_depth */ + +/* ------------------------ GL_EXT_fragment_lighting ----------------------- */ + +#ifndef GL_EXT_fragment_lighting +#define GL_EXT_fragment_lighting 1 + +#define GL_FRAGMENT_LIGHTING_EXT 0x8400 +#define GL_FRAGMENT_COLOR_MATERIAL_EXT 0x8401 +#define GL_FRAGMENT_COLOR_MATERIAL_FACE_EXT 0x8402 +#define GL_FRAGMENT_COLOR_MATERIAL_PARAMETER_EXT 0x8403 +#define GL_MAX_FRAGMENT_LIGHTS_EXT 0x8404 +#define GL_MAX_ACTIVE_LIGHTS_EXT 0x8405 +#define GL_CURRENT_RASTER_NORMAL_EXT 0x8406 +#define GL_LIGHT_ENV_MODE_EXT 0x8407 +#define GL_FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_EXT 0x8408 +#define GL_FRAGMENT_LIGHT_MODEL_TWO_SIDE_EXT 0x8409 +#define GL_FRAGMENT_LIGHT_MODEL_AMBIENT_EXT 0x840A +#define GL_FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_EXT 0x840B +#define GL_FRAGMENT_LIGHT0_EXT 0x840C +#define GL_FRAGMENT_LIGHT7_EXT 0x8413 + +typedef void (GLAPIENTRY * PFNGLFRAGMENTCOLORMATERIALEXTPROC) (GLenum face, GLenum mode); +typedef void (GLAPIENTRY * PFNGLFRAGMENTLIGHTMODELFEXTPROC) (GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLFRAGMENTLIGHTMODELFVEXTPROC) (GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLFRAGMENTLIGHTMODELIEXTPROC) (GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLFRAGMENTLIGHTMODELIVEXTPROC) (GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLFRAGMENTLIGHTFEXTPROC) (GLenum light, GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLFRAGMENTLIGHTFVEXTPROC) (GLenum light, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLFRAGMENTLIGHTIEXTPROC) (GLenum light, GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLFRAGMENTLIGHTIVEXTPROC) (GLenum light, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLFRAGMENTMATERIALFEXTPROC) (GLenum face, GLenum pname, const GLfloat param); +typedef void (GLAPIENTRY * PFNGLFRAGMENTMATERIALFVEXTPROC) (GLenum face, GLenum pname, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLFRAGMENTMATERIALIEXTPROC) (GLenum face, GLenum pname, const GLint param); +typedef void (GLAPIENTRY * PFNGLFRAGMENTMATERIALIVEXTPROC) (GLenum face, GLenum pname, const GLint* params); +typedef void (GLAPIENTRY * PFNGLGETFRAGMENTLIGHTFVEXTPROC) (GLenum light, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETFRAGMENTLIGHTIVEXTPROC) (GLenum light, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETFRAGMENTMATERIALFVEXTPROC) (GLenum face, GLenum pname, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETFRAGMENTMATERIALIVEXTPROC) (GLenum face, GLenum pname, const GLint* params); +typedef void (GLAPIENTRY * PFNGLLIGHTENVIEXTPROC) (GLenum pname, GLint param); + +#define glFragmentColorMaterialEXT GLEW_GET_FUN(__glewFragmentColorMaterialEXT) +#define glFragmentLightModelfEXT GLEW_GET_FUN(__glewFragmentLightModelfEXT) +#define glFragmentLightModelfvEXT GLEW_GET_FUN(__glewFragmentLightModelfvEXT) +#define glFragmentLightModeliEXT GLEW_GET_FUN(__glewFragmentLightModeliEXT) +#define glFragmentLightModelivEXT GLEW_GET_FUN(__glewFragmentLightModelivEXT) +#define glFragmentLightfEXT GLEW_GET_FUN(__glewFragmentLightfEXT) +#define glFragmentLightfvEXT GLEW_GET_FUN(__glewFragmentLightfvEXT) +#define glFragmentLightiEXT GLEW_GET_FUN(__glewFragmentLightiEXT) +#define glFragmentLightivEXT GLEW_GET_FUN(__glewFragmentLightivEXT) +#define glFragmentMaterialfEXT GLEW_GET_FUN(__glewFragmentMaterialfEXT) +#define glFragmentMaterialfvEXT GLEW_GET_FUN(__glewFragmentMaterialfvEXT) +#define glFragmentMaterialiEXT GLEW_GET_FUN(__glewFragmentMaterialiEXT) +#define glFragmentMaterialivEXT GLEW_GET_FUN(__glewFragmentMaterialivEXT) +#define glGetFragmentLightfvEXT GLEW_GET_FUN(__glewGetFragmentLightfvEXT) +#define glGetFragmentLightivEXT GLEW_GET_FUN(__glewGetFragmentLightivEXT) +#define glGetFragmentMaterialfvEXT GLEW_GET_FUN(__glewGetFragmentMaterialfvEXT) +#define glGetFragmentMaterialivEXT GLEW_GET_FUN(__glewGetFragmentMaterialivEXT) +#define glLightEnviEXT GLEW_GET_FUN(__glewLightEnviEXT) + +#define GLEW_EXT_fragment_lighting GLEW_GET_VAR(__GLEW_EXT_fragment_lighting) + +#endif /* GL_EXT_fragment_lighting */ + +/* ------------------------ GL_EXT_framebuffer_blit ------------------------ */ + +#ifndef GL_EXT_framebuffer_blit +#define GL_EXT_framebuffer_blit 1 + +#define GL_DRAW_FRAMEBUFFER_BINDING_EXT 0x8CA6 +#define GL_READ_FRAMEBUFFER_EXT 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_EXT 0x8CA9 +#define GL_READ_FRAMEBUFFER_BINDING_EXT 0x8CAA + +typedef void (GLAPIENTRY * PFNGLBLITFRAMEBUFFEREXTPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); + +#define glBlitFramebufferEXT GLEW_GET_FUN(__glewBlitFramebufferEXT) + +#define GLEW_EXT_framebuffer_blit GLEW_GET_VAR(__GLEW_EXT_framebuffer_blit) + +#endif /* GL_EXT_framebuffer_blit */ + +/* --------------------- GL_EXT_framebuffer_multisample -------------------- */ + +#ifndef GL_EXT_framebuffer_multisample +#define GL_EXT_framebuffer_multisample 1 + +#define GL_RENDERBUFFER_SAMPLES_EXT 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT 0x8D56 +#define GL_MAX_SAMPLES_EXT 0x8D57 + +typedef void (GLAPIENTRY * PFNGLRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); + +#define glRenderbufferStorageMultisampleEXT GLEW_GET_FUN(__glewRenderbufferStorageMultisampleEXT) + +#define GLEW_EXT_framebuffer_multisample GLEW_GET_VAR(__GLEW_EXT_framebuffer_multisample) + +#endif /* GL_EXT_framebuffer_multisample */ + +/* --------------- GL_EXT_framebuffer_multisample_blit_scaled -------------- */ + +#ifndef GL_EXT_framebuffer_multisample_blit_scaled +#define GL_EXT_framebuffer_multisample_blit_scaled 1 + +#define GL_SCALED_RESOLVE_FASTEST_EXT 0x90BA +#define GL_SCALED_RESOLVE_NICEST_EXT 0x90BB + +#define GLEW_EXT_framebuffer_multisample_blit_scaled GLEW_GET_VAR(__GLEW_EXT_framebuffer_multisample_blit_scaled) + +#endif /* GL_EXT_framebuffer_multisample_blit_scaled */ + +/* ----------------------- GL_EXT_framebuffer_object ----------------------- */ + +#ifndef GL_EXT_framebuffer_object +#define GL_EXT_framebuffer_object 1 + +#define GL_INVALID_FRAMEBUFFER_OPERATION_EXT 0x0506 +#define GL_MAX_RENDERBUFFER_SIZE_EXT 0x84E8 +#define GL_FRAMEBUFFER_BINDING_EXT 0x8CA6 +#define GL_RENDERBUFFER_BINDING_EXT 0x8CA7 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_EXT 0x8CD0 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_EXT 0x8CD1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_EXT 0x8CD2 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT 0x8CD3 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT 0x8CD4 +#define GL_FRAMEBUFFER_COMPLETE_EXT 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT 0x8CD9 +#define GL_FRAMEBUFFER_INCOMPLETE_FORMATS_EXT 0x8CDA +#define GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT 0x8CDB +#define GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT 0x8CDC +#define GL_FRAMEBUFFER_UNSUPPORTED_EXT 0x8CDD +#define GL_MAX_COLOR_ATTACHMENTS_EXT 0x8CDF +#define GL_COLOR_ATTACHMENT0_EXT 0x8CE0 +#define GL_COLOR_ATTACHMENT1_EXT 0x8CE1 +#define GL_COLOR_ATTACHMENT2_EXT 0x8CE2 +#define GL_COLOR_ATTACHMENT3_EXT 0x8CE3 +#define GL_COLOR_ATTACHMENT4_EXT 0x8CE4 +#define GL_COLOR_ATTACHMENT5_EXT 0x8CE5 +#define GL_COLOR_ATTACHMENT6_EXT 0x8CE6 +#define GL_COLOR_ATTACHMENT7_EXT 0x8CE7 +#define GL_COLOR_ATTACHMENT8_EXT 0x8CE8 +#define GL_COLOR_ATTACHMENT9_EXT 0x8CE9 +#define GL_COLOR_ATTACHMENT10_EXT 0x8CEA +#define GL_COLOR_ATTACHMENT11_EXT 0x8CEB +#define GL_COLOR_ATTACHMENT12_EXT 0x8CEC +#define GL_COLOR_ATTACHMENT13_EXT 0x8CED +#define GL_COLOR_ATTACHMENT14_EXT 0x8CEE +#define GL_COLOR_ATTACHMENT15_EXT 0x8CEF +#define GL_DEPTH_ATTACHMENT_EXT 0x8D00 +#define GL_STENCIL_ATTACHMENT_EXT 0x8D20 +#define GL_FRAMEBUFFER_EXT 0x8D40 +#define GL_RENDERBUFFER_EXT 0x8D41 +#define GL_RENDERBUFFER_WIDTH_EXT 0x8D42 +#define GL_RENDERBUFFER_HEIGHT_EXT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT_EXT 0x8D44 +#define GL_STENCIL_INDEX1_EXT 0x8D46 +#define GL_STENCIL_INDEX4_EXT 0x8D47 +#define GL_STENCIL_INDEX8_EXT 0x8D48 +#define GL_STENCIL_INDEX16_EXT 0x8D49 +#define GL_RENDERBUFFER_RED_SIZE_EXT 0x8D50 +#define GL_RENDERBUFFER_GREEN_SIZE_EXT 0x8D51 +#define GL_RENDERBUFFER_BLUE_SIZE_EXT 0x8D52 +#define GL_RENDERBUFFER_ALPHA_SIZE_EXT 0x8D53 +#define GL_RENDERBUFFER_DEPTH_SIZE_EXT 0x8D54 +#define GL_RENDERBUFFER_STENCIL_SIZE_EXT 0x8D55 + +typedef void (GLAPIENTRY * PFNGLBINDFRAMEBUFFEREXTPROC) (GLenum target, GLuint framebuffer); +typedef void (GLAPIENTRY * PFNGLBINDRENDERBUFFEREXTPROC) (GLenum target, GLuint renderbuffer); +typedef GLenum (GLAPIENTRY * PFNGLCHECKFRAMEBUFFERSTATUSEXTPROC) (GLenum target); +typedef void (GLAPIENTRY * PFNGLDELETEFRAMEBUFFERSEXTPROC) (GLsizei n, const GLuint* framebuffers); +typedef void (GLAPIENTRY * PFNGLDELETERENDERBUFFERSEXTPROC) (GLsizei n, const GLuint* renderbuffers); +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERRENDERBUFFEREXTPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERTEXTURE1DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERTEXTURE2DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERTEXTURE3DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +typedef void (GLAPIENTRY * PFNGLGENFRAMEBUFFERSEXTPROC) (GLsizei n, GLuint* framebuffers); +typedef void (GLAPIENTRY * PFNGLGENRENDERBUFFERSEXTPROC) (GLsizei n, GLuint* renderbuffers); +typedef void (GLAPIENTRY * PFNGLGENERATEMIPMAPEXTPROC) (GLenum target); +typedef void (GLAPIENTRY * PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC) (GLenum target, GLenum attachment, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETRENDERBUFFERPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint* params); +typedef GLboolean (GLAPIENTRY * PFNGLISFRAMEBUFFEREXTPROC) (GLuint framebuffer); +typedef GLboolean (GLAPIENTRY * PFNGLISRENDERBUFFEREXTPROC) (GLuint renderbuffer); +typedef void (GLAPIENTRY * PFNGLRENDERBUFFERSTORAGEEXTPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); + +#define glBindFramebufferEXT GLEW_GET_FUN(__glewBindFramebufferEXT) +#define glBindRenderbufferEXT GLEW_GET_FUN(__glewBindRenderbufferEXT) +#define glCheckFramebufferStatusEXT GLEW_GET_FUN(__glewCheckFramebufferStatusEXT) +#define glDeleteFramebuffersEXT GLEW_GET_FUN(__glewDeleteFramebuffersEXT) +#define glDeleteRenderbuffersEXT GLEW_GET_FUN(__glewDeleteRenderbuffersEXT) +#define glFramebufferRenderbufferEXT GLEW_GET_FUN(__glewFramebufferRenderbufferEXT) +#define glFramebufferTexture1DEXT GLEW_GET_FUN(__glewFramebufferTexture1DEXT) +#define glFramebufferTexture2DEXT GLEW_GET_FUN(__glewFramebufferTexture2DEXT) +#define glFramebufferTexture3DEXT GLEW_GET_FUN(__glewFramebufferTexture3DEXT) +#define glGenFramebuffersEXT GLEW_GET_FUN(__glewGenFramebuffersEXT) +#define glGenRenderbuffersEXT GLEW_GET_FUN(__glewGenRenderbuffersEXT) +#define glGenerateMipmapEXT GLEW_GET_FUN(__glewGenerateMipmapEXT) +#define glGetFramebufferAttachmentParameterivEXT GLEW_GET_FUN(__glewGetFramebufferAttachmentParameterivEXT) +#define glGetRenderbufferParameterivEXT GLEW_GET_FUN(__glewGetRenderbufferParameterivEXT) +#define glIsFramebufferEXT GLEW_GET_FUN(__glewIsFramebufferEXT) +#define glIsRenderbufferEXT GLEW_GET_FUN(__glewIsRenderbufferEXT) +#define glRenderbufferStorageEXT GLEW_GET_FUN(__glewRenderbufferStorageEXT) + +#define GLEW_EXT_framebuffer_object GLEW_GET_VAR(__GLEW_EXT_framebuffer_object) + +#endif /* GL_EXT_framebuffer_object */ + +/* ------------------------ GL_EXT_framebuffer_sRGB ------------------------ */ + +#ifndef GL_EXT_framebuffer_sRGB +#define GL_EXT_framebuffer_sRGB 1 + +#define GL_FRAMEBUFFER_SRGB_EXT 0x8DB9 +#define GL_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x8DBA + +#define GLEW_EXT_framebuffer_sRGB GLEW_GET_VAR(__GLEW_EXT_framebuffer_sRGB) + +#endif /* GL_EXT_framebuffer_sRGB */ + +/* ----------------------- GL_EXT_geometry_point_size ---------------------- */ + +#ifndef GL_EXT_geometry_point_size +#define GL_EXT_geometry_point_size 1 + +#define GL_GEOMETRY_SHADER_BIT_EXT 0x00000004 +#define GL_LINES_ADJACENCY_EXT 0xA +#define GL_LINE_STRIP_ADJACENCY_EXT 0xB +#define GL_TRIANGLES_ADJACENCY_EXT 0xC +#define GL_TRIANGLE_STRIP_ADJACENCY_EXT 0xD +#define GL_LAYER_PROVOKING_VERTEX_EXT 0x825E +#define GL_UNDEFINED_VERTEX_EXT 0x8260 +#define GL_GEOMETRY_SHADER_INVOCATIONS_EXT 0x887F +#define GL_GEOMETRY_LINKED_VERTICES_OUT_EXT 0x8916 +#define GL_GEOMETRY_LINKED_INPUT_TYPE_EXT 0x8917 +#define GL_GEOMETRY_LINKED_OUTPUT_TYPE_EXT 0x8918 +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS_EXT 0x8A2C +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8A32 +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT 0x8C29 +#define GL_PRIMITIVES_GENERATED_EXT 0x8C87 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT 0x8DA7 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT 0x8DA8 +#define GL_GEOMETRY_SHADER_EXT 0x8DD9 +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_EXT 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT 0x8DE1 +#define GL_FIRST_VERTEX_CONVENTION_EXT 0x8E4D +#define GL_LAST_VERTEX_CONVENTION_EXT 0x8E4E +#define GL_MAX_GEOMETRY_SHADER_INVOCATIONS_EXT 0x8E5A +#define GL_MAX_GEOMETRY_IMAGE_UNIFORMS_EXT 0x90CD +#define GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS_EXT 0x90D7 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS_EXT 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS_EXT 0x9124 +#define GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS_EXT 0x92CF +#define GL_MAX_GEOMETRY_ATOMIC_COUNTERS_EXT 0x92D5 +#define GL_REFERENCED_BY_GEOMETRY_SHADER_EXT 0x9309 +#define GL_FRAMEBUFFER_DEFAULT_LAYERS_EXT 0x9312 +#define GL_MAX_FRAMEBUFFER_LAYERS_EXT 0x9317 + +#define GLEW_EXT_geometry_point_size GLEW_GET_VAR(__GLEW_EXT_geometry_point_size) + +#endif /* GL_EXT_geometry_point_size */ + +/* ------------------------- GL_EXT_geometry_shader ------------------------ */ + +#ifndef GL_EXT_geometry_shader +#define GL_EXT_geometry_shader 1 + +#define GL_GEOMETRY_SHADER_BIT_EXT 0x00000004 +#define GL_LINES_ADJACENCY_EXT 0xA +#define GL_LINE_STRIP_ADJACENCY_EXT 0xB +#define GL_TRIANGLES_ADJACENCY_EXT 0xC +#define GL_TRIANGLE_STRIP_ADJACENCY_EXT 0xD +#define GL_LAYER_PROVOKING_VERTEX_EXT 0x825E +#define GL_UNDEFINED_VERTEX_EXT 0x8260 +#define GL_GEOMETRY_SHADER_INVOCATIONS_EXT 0x887F +#define GL_GEOMETRY_LINKED_VERTICES_OUT_EXT 0x8916 +#define GL_GEOMETRY_LINKED_INPUT_TYPE_EXT 0x8917 +#define GL_GEOMETRY_LINKED_OUTPUT_TYPE_EXT 0x8918 +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS_EXT 0x8A2C +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8A32 +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT 0x8C29 +#define GL_PRIMITIVES_GENERATED_EXT 0x8C87 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT 0x8DA7 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT 0x8DA8 +#define GL_GEOMETRY_SHADER_EXT 0x8DD9 +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_EXT 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT 0x8DE1 +#define GL_FIRST_VERTEX_CONVENTION_EXT 0x8E4D +#define GL_LAST_VERTEX_CONVENTION_EXT 0x8E4E +#define GL_MAX_GEOMETRY_SHADER_INVOCATIONS_EXT 0x8E5A +#define GL_MAX_GEOMETRY_IMAGE_UNIFORMS_EXT 0x90CD +#define GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS_EXT 0x90D7 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS_EXT 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS_EXT 0x9124 +#define GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS_EXT 0x92CF +#define GL_MAX_GEOMETRY_ATOMIC_COUNTERS_EXT 0x92D5 +#define GL_REFERENCED_BY_GEOMETRY_SHADER_EXT 0x9309 +#define GL_FRAMEBUFFER_DEFAULT_LAYERS_EXT 0x9312 +#define GL_MAX_FRAMEBUFFER_LAYERS_EXT 0x9317 + +#define GLEW_EXT_geometry_shader GLEW_GET_VAR(__GLEW_EXT_geometry_shader) + +#endif /* GL_EXT_geometry_shader */ + +/* ------------------------ GL_EXT_geometry_shader4 ------------------------ */ + +#ifndef GL_EXT_geometry_shader4 +#define GL_EXT_geometry_shader4 1 + +#define GL_LINES_ADJACENCY_EXT 0xA +#define GL_LINE_STRIP_ADJACENCY_EXT 0xB +#define GL_TRIANGLES_ADJACENCY_EXT 0xC +#define GL_TRIANGLE_STRIP_ADJACENCY_EXT 0xD +#define GL_PROGRAM_POINT_SIZE_EXT 0x8642 +#define GL_MAX_VARYING_COMPONENTS_EXT 0x8B4B +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT 0x8C29 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT 0x8CD4 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT 0x8DA7 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT 0x8DA8 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_EXT 0x8DA9 +#define GL_GEOMETRY_SHADER_EXT 0x8DD9 +#define GL_GEOMETRY_VERTICES_OUT_EXT 0x8DDA +#define GL_GEOMETRY_INPUT_TYPE_EXT 0x8DDB +#define GL_GEOMETRY_OUTPUT_TYPE_EXT 0x8DDC +#define GL_MAX_GEOMETRY_VARYING_COMPONENTS_EXT 0x8DDD +#define GL_MAX_VERTEX_VARYING_COMPONENTS_EXT 0x8DDE +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_EXT 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT 0x8DE1 + +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERTEXTUREEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERTEXTUREFACEEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); +typedef void (GLAPIENTRY * PFNGLPROGRAMPARAMETERIEXTPROC) (GLuint program, GLenum pname, GLint value); + +#define glFramebufferTextureEXT GLEW_GET_FUN(__glewFramebufferTextureEXT) +#define glFramebufferTextureFaceEXT GLEW_GET_FUN(__glewFramebufferTextureFaceEXT) +#define glProgramParameteriEXT GLEW_GET_FUN(__glewProgramParameteriEXT) + +#define GLEW_EXT_geometry_shader4 GLEW_GET_VAR(__GLEW_EXT_geometry_shader4) + +#endif /* GL_EXT_geometry_shader4 */ + +/* --------------------- GL_EXT_gpu_program_parameters --------------------- */ + +#ifndef GL_EXT_gpu_program_parameters +#define GL_EXT_gpu_program_parameters 1 + +typedef void (GLAPIENTRY * PFNGLPROGRAMENVPARAMETERS4FVEXTPROC) (GLenum target, GLuint index, GLsizei count, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLPROGRAMLOCALPARAMETERS4FVEXTPROC) (GLenum target, GLuint index, GLsizei count, const GLfloat* params); + +#define glProgramEnvParameters4fvEXT GLEW_GET_FUN(__glewProgramEnvParameters4fvEXT) +#define glProgramLocalParameters4fvEXT GLEW_GET_FUN(__glewProgramLocalParameters4fvEXT) + +#define GLEW_EXT_gpu_program_parameters GLEW_GET_VAR(__GLEW_EXT_gpu_program_parameters) + +#endif /* GL_EXT_gpu_program_parameters */ + +/* --------------------------- GL_EXT_gpu_shader4 -------------------------- */ + +#ifndef GL_EXT_gpu_shader4 +#define GL_EXT_gpu_shader4 1 + +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER_EXT 0x88FD +#define GL_SAMPLER_1D_ARRAY_EXT 0x8DC0 +#define GL_SAMPLER_2D_ARRAY_EXT 0x8DC1 +#define GL_SAMPLER_BUFFER_EXT 0x8DC2 +#define GL_SAMPLER_1D_ARRAY_SHADOW_EXT 0x8DC3 +#define GL_SAMPLER_2D_ARRAY_SHADOW_EXT 0x8DC4 +#define GL_SAMPLER_CUBE_SHADOW_EXT 0x8DC5 +#define GL_UNSIGNED_INT_VEC2_EXT 0x8DC6 +#define GL_UNSIGNED_INT_VEC3_EXT 0x8DC7 +#define GL_UNSIGNED_INT_VEC4_EXT 0x8DC8 +#define GL_INT_SAMPLER_1D_EXT 0x8DC9 +#define GL_INT_SAMPLER_2D_EXT 0x8DCA +#define GL_INT_SAMPLER_3D_EXT 0x8DCB +#define GL_INT_SAMPLER_CUBE_EXT 0x8DCC +#define GL_INT_SAMPLER_2D_RECT_EXT 0x8DCD +#define GL_INT_SAMPLER_1D_ARRAY_EXT 0x8DCE +#define GL_INT_SAMPLER_2D_ARRAY_EXT 0x8DCF +#define GL_INT_SAMPLER_BUFFER_EXT 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_1D_EXT 0x8DD1 +#define GL_UNSIGNED_INT_SAMPLER_2D_EXT 0x8DD2 +#define GL_UNSIGNED_INT_SAMPLER_3D_EXT 0x8DD3 +#define GL_UNSIGNED_INT_SAMPLER_CUBE_EXT 0x8DD4 +#define GL_UNSIGNED_INT_SAMPLER_2D_RECT_EXT 0x8DD5 +#define GL_UNSIGNED_INT_SAMPLER_1D_ARRAY_EXT 0x8DD6 +#define GL_UNSIGNED_INT_SAMPLER_2D_ARRAY_EXT 0x8DD7 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT 0x8DD8 + +typedef void (GLAPIENTRY * PFNGLBINDFRAGDATALOCATIONEXTPROC) (GLuint program, GLuint color, const GLchar *name); +typedef GLint (GLAPIENTRY * PFNGLGETFRAGDATALOCATIONEXTPROC) (GLuint program, const GLchar *name); +typedef void (GLAPIENTRY * PFNGLGETUNIFORMUIVEXTPROC) (GLuint program, GLint location, GLuint *params); +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBIIVEXTPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBIUIVEXTPROC) (GLuint index, GLenum pname, GLuint *params); +typedef void (GLAPIENTRY * PFNGLUNIFORM1UIEXTPROC) (GLint location, GLuint v0); +typedef void (GLAPIENTRY * PFNGLUNIFORM1UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (GLAPIENTRY * PFNGLUNIFORM2UIEXTPROC) (GLint location, GLuint v0, GLuint v1); +typedef void (GLAPIENTRY * PFNGLUNIFORM2UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (GLAPIENTRY * PFNGLUNIFORM3UIEXTPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (GLAPIENTRY * PFNGLUNIFORM3UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (GLAPIENTRY * PFNGLUNIFORM4UIEXTPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (GLAPIENTRY * PFNGLUNIFORM4UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI1IEXTPROC) (GLuint index, GLint x); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI1IVEXTPROC) (GLuint index, const GLint *v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI1UIEXTPROC) (GLuint index, GLuint x); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI1UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI2IEXTPROC) (GLuint index, GLint x, GLint y); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI2IVEXTPROC) (GLuint index, const GLint *v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI2UIEXTPROC) (GLuint index, GLuint x, GLuint y); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI2UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI3IEXTPROC) (GLuint index, GLint x, GLint y, GLint z); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI3IVEXTPROC) (GLuint index, const GLint *v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI3UIEXTPROC) (GLuint index, GLuint x, GLuint y, GLuint z); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI3UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI4BVEXTPROC) (GLuint index, const GLbyte *v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI4IEXTPROC) (GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI4IVEXTPROC) (GLuint index, const GLint *v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI4SVEXTPROC) (GLuint index, const GLshort *v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI4UBVEXTPROC) (GLuint index, const GLubyte *v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI4UIEXTPROC) (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI4UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBI4USVEXTPROC) (GLuint index, const GLushort *v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBIPOINTEREXTPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); + +#define glBindFragDataLocationEXT GLEW_GET_FUN(__glewBindFragDataLocationEXT) +#define glGetFragDataLocationEXT GLEW_GET_FUN(__glewGetFragDataLocationEXT) +#define glGetUniformuivEXT GLEW_GET_FUN(__glewGetUniformuivEXT) +#define glGetVertexAttribIivEXT GLEW_GET_FUN(__glewGetVertexAttribIivEXT) +#define glGetVertexAttribIuivEXT GLEW_GET_FUN(__glewGetVertexAttribIuivEXT) +#define glUniform1uiEXT GLEW_GET_FUN(__glewUniform1uiEXT) +#define glUniform1uivEXT GLEW_GET_FUN(__glewUniform1uivEXT) +#define glUniform2uiEXT GLEW_GET_FUN(__glewUniform2uiEXT) +#define glUniform2uivEXT GLEW_GET_FUN(__glewUniform2uivEXT) +#define glUniform3uiEXT GLEW_GET_FUN(__glewUniform3uiEXT) +#define glUniform3uivEXT GLEW_GET_FUN(__glewUniform3uivEXT) +#define glUniform4uiEXT GLEW_GET_FUN(__glewUniform4uiEXT) +#define glUniform4uivEXT GLEW_GET_FUN(__glewUniform4uivEXT) +#define glVertexAttribI1iEXT GLEW_GET_FUN(__glewVertexAttribI1iEXT) +#define glVertexAttribI1ivEXT GLEW_GET_FUN(__glewVertexAttribI1ivEXT) +#define glVertexAttribI1uiEXT GLEW_GET_FUN(__glewVertexAttribI1uiEXT) +#define glVertexAttribI1uivEXT GLEW_GET_FUN(__glewVertexAttribI1uivEXT) +#define glVertexAttribI2iEXT GLEW_GET_FUN(__glewVertexAttribI2iEXT) +#define glVertexAttribI2ivEXT GLEW_GET_FUN(__glewVertexAttribI2ivEXT) +#define glVertexAttribI2uiEXT GLEW_GET_FUN(__glewVertexAttribI2uiEXT) +#define glVertexAttribI2uivEXT GLEW_GET_FUN(__glewVertexAttribI2uivEXT) +#define glVertexAttribI3iEXT GLEW_GET_FUN(__glewVertexAttribI3iEXT) +#define glVertexAttribI3ivEXT GLEW_GET_FUN(__glewVertexAttribI3ivEXT) +#define glVertexAttribI3uiEXT GLEW_GET_FUN(__glewVertexAttribI3uiEXT) +#define glVertexAttribI3uivEXT GLEW_GET_FUN(__glewVertexAttribI3uivEXT) +#define glVertexAttribI4bvEXT GLEW_GET_FUN(__glewVertexAttribI4bvEXT) +#define glVertexAttribI4iEXT GLEW_GET_FUN(__glewVertexAttribI4iEXT) +#define glVertexAttribI4ivEXT GLEW_GET_FUN(__glewVertexAttribI4ivEXT) +#define glVertexAttribI4svEXT GLEW_GET_FUN(__glewVertexAttribI4svEXT) +#define glVertexAttribI4ubvEXT GLEW_GET_FUN(__glewVertexAttribI4ubvEXT) +#define glVertexAttribI4uiEXT GLEW_GET_FUN(__glewVertexAttribI4uiEXT) +#define glVertexAttribI4uivEXT GLEW_GET_FUN(__glewVertexAttribI4uivEXT) +#define glVertexAttribI4usvEXT GLEW_GET_FUN(__glewVertexAttribI4usvEXT) +#define glVertexAttribIPointerEXT GLEW_GET_FUN(__glewVertexAttribIPointerEXT) + +#define GLEW_EXT_gpu_shader4 GLEW_GET_VAR(__GLEW_EXT_gpu_shader4) + +#endif /* GL_EXT_gpu_shader4 */ + +/* --------------------------- GL_EXT_gpu_shader5 -------------------------- */ + +#ifndef GL_EXT_gpu_shader5 +#define GL_EXT_gpu_shader5 1 + +#define GLEW_EXT_gpu_shader5 GLEW_GET_VAR(__GLEW_EXT_gpu_shader5) + +#endif /* GL_EXT_gpu_shader5 */ + +/* ---------------------------- GL_EXT_histogram --------------------------- */ + +#ifndef GL_EXT_histogram +#define GL_EXT_histogram 1 + +#define GL_HISTOGRAM_EXT 0x8024 +#define GL_PROXY_HISTOGRAM_EXT 0x8025 +#define GL_HISTOGRAM_WIDTH_EXT 0x8026 +#define GL_HISTOGRAM_FORMAT_EXT 0x8027 +#define GL_HISTOGRAM_RED_SIZE_EXT 0x8028 +#define GL_HISTOGRAM_GREEN_SIZE_EXT 0x8029 +#define GL_HISTOGRAM_BLUE_SIZE_EXT 0x802A +#define GL_HISTOGRAM_ALPHA_SIZE_EXT 0x802B +#define GL_HISTOGRAM_LUMINANCE_SIZE_EXT 0x802C +#define GL_HISTOGRAM_SINK_EXT 0x802D +#define GL_MINMAX_EXT 0x802E +#define GL_MINMAX_FORMAT_EXT 0x802F +#define GL_MINMAX_SINK_EXT 0x8030 + +typedef void (GLAPIENTRY * PFNGLGETHISTOGRAMEXTPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +typedef void (GLAPIENTRY * PFNGLGETHISTOGRAMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETHISTOGRAMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETMINMAXEXTPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, void *values); +typedef void (GLAPIENTRY * PFNGLGETMINMAXPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETMINMAXPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLHISTOGRAMEXTPROC) (GLenum target, GLsizei width, GLenum internalformat, GLboolean sink); +typedef void (GLAPIENTRY * PFNGLMINMAXEXTPROC) (GLenum target, GLenum internalformat, GLboolean sink); +typedef void (GLAPIENTRY * PFNGLRESETHISTOGRAMEXTPROC) (GLenum target); +typedef void (GLAPIENTRY * PFNGLRESETMINMAXEXTPROC) (GLenum target); + +#define glGetHistogramEXT GLEW_GET_FUN(__glewGetHistogramEXT) +#define glGetHistogramParameterfvEXT GLEW_GET_FUN(__glewGetHistogramParameterfvEXT) +#define glGetHistogramParameterivEXT GLEW_GET_FUN(__glewGetHistogramParameterivEXT) +#define glGetMinmaxEXT GLEW_GET_FUN(__glewGetMinmaxEXT) +#define glGetMinmaxParameterfvEXT GLEW_GET_FUN(__glewGetMinmaxParameterfvEXT) +#define glGetMinmaxParameterivEXT GLEW_GET_FUN(__glewGetMinmaxParameterivEXT) +#define glHistogramEXT GLEW_GET_FUN(__glewHistogramEXT) +#define glMinmaxEXT GLEW_GET_FUN(__glewMinmaxEXT) +#define glResetHistogramEXT GLEW_GET_FUN(__glewResetHistogramEXT) +#define glResetMinmaxEXT GLEW_GET_FUN(__glewResetMinmaxEXT) + +#define GLEW_EXT_histogram GLEW_GET_VAR(__GLEW_EXT_histogram) + +#endif /* GL_EXT_histogram */ + +/* ----------------------- GL_EXT_index_array_formats ---------------------- */ + +#ifndef GL_EXT_index_array_formats +#define GL_EXT_index_array_formats 1 + +#define GLEW_EXT_index_array_formats GLEW_GET_VAR(__GLEW_EXT_index_array_formats) + +#endif /* GL_EXT_index_array_formats */ + +/* --------------------------- GL_EXT_index_func --------------------------- */ + +#ifndef GL_EXT_index_func +#define GL_EXT_index_func 1 + +typedef void (GLAPIENTRY * PFNGLINDEXFUNCEXTPROC) (GLenum func, GLfloat ref); + +#define glIndexFuncEXT GLEW_GET_FUN(__glewIndexFuncEXT) + +#define GLEW_EXT_index_func GLEW_GET_VAR(__GLEW_EXT_index_func) + +#endif /* GL_EXT_index_func */ + +/* ------------------------- GL_EXT_index_material ------------------------- */ + +#ifndef GL_EXT_index_material +#define GL_EXT_index_material 1 + +typedef void (GLAPIENTRY * PFNGLINDEXMATERIALEXTPROC) (GLenum face, GLenum mode); + +#define glIndexMaterialEXT GLEW_GET_FUN(__glewIndexMaterialEXT) + +#define GLEW_EXT_index_material GLEW_GET_VAR(__GLEW_EXT_index_material) + +#endif /* GL_EXT_index_material */ + +/* -------------------------- GL_EXT_index_texture ------------------------- */ + +#ifndef GL_EXT_index_texture +#define GL_EXT_index_texture 1 + +#define GLEW_EXT_index_texture GLEW_GET_VAR(__GLEW_EXT_index_texture) + +#endif /* GL_EXT_index_texture */ + +/* ------------------------ GL_EXT_instanced_arrays ------------------------ */ + +#ifndef GL_EXT_instanced_arrays +#define GL_EXT_instanced_arrays 1 + +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_EXT 0x88FE + +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBDIVISOREXTPROC) (GLuint index, GLuint divisor); + +#define glVertexAttribDivisorEXT GLEW_GET_FUN(__glewVertexAttribDivisorEXT) + +#define GLEW_EXT_instanced_arrays GLEW_GET_VAR(__GLEW_EXT_instanced_arrays) + +#endif /* GL_EXT_instanced_arrays */ + +/* -------------------------- GL_EXT_light_texture ------------------------- */ + +#ifndef GL_EXT_light_texture +#define GL_EXT_light_texture 1 + +#define GL_FRAGMENT_MATERIAL_EXT 0x8349 +#define GL_FRAGMENT_NORMAL_EXT 0x834A +#define GL_FRAGMENT_COLOR_EXT 0x834C +#define GL_ATTENUATION_EXT 0x834D +#define GL_SHADOW_ATTENUATION_EXT 0x834E +#define GL_TEXTURE_APPLICATION_MODE_EXT 0x834F +#define GL_TEXTURE_LIGHT_EXT 0x8350 +#define GL_TEXTURE_MATERIAL_FACE_EXT 0x8351 +#define GL_TEXTURE_MATERIAL_PARAMETER_EXT 0x8352 + +typedef void (GLAPIENTRY * PFNGLAPPLYTEXTUREEXTPROC) (GLenum mode); +typedef void (GLAPIENTRY * PFNGLTEXTURELIGHTEXTPROC) (GLenum pname); +typedef void (GLAPIENTRY * PFNGLTEXTUREMATERIALEXTPROC) (GLenum face, GLenum mode); + +#define glApplyTextureEXT GLEW_GET_FUN(__glewApplyTextureEXT) +#define glTextureLightEXT GLEW_GET_FUN(__glewTextureLightEXT) +#define glTextureMaterialEXT GLEW_GET_FUN(__glewTextureMaterialEXT) + +#define GLEW_EXT_light_texture GLEW_GET_VAR(__GLEW_EXT_light_texture) + +#endif /* GL_EXT_light_texture */ + +/* ------------------------ GL_EXT_map_buffer_range ------------------------ */ + +#ifndef GL_EXT_map_buffer_range +#define GL_EXT_map_buffer_range 1 + +#define GL_MAP_READ_BIT_EXT 0x0001 +#define GL_MAP_WRITE_BIT_EXT 0x0002 +#define GL_MAP_INVALIDATE_RANGE_BIT_EXT 0x0004 +#define GL_MAP_INVALIDATE_BUFFER_BIT_EXT 0x0008 +#define GL_MAP_FLUSH_EXPLICIT_BIT_EXT 0x0010 +#define GL_MAP_UNSYNCHRONIZED_BIT_EXT 0x0020 + +typedef void (GLAPIENTRY * PFNGLFLUSHMAPPEDBUFFERRANGEEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr length); +typedef void * (GLAPIENTRY * PFNGLMAPBUFFERRANGEEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); + +#define glFlushMappedBufferRangeEXT GLEW_GET_FUN(__glewFlushMappedBufferRangeEXT) +#define glMapBufferRangeEXT GLEW_GET_FUN(__glewMapBufferRangeEXT) + +#define GLEW_EXT_map_buffer_range GLEW_GET_VAR(__GLEW_EXT_map_buffer_range) + +#endif /* GL_EXT_map_buffer_range */ + +/* -------------------------- GL_EXT_memory_object ------------------------- */ + +#ifndef GL_EXT_memory_object +#define GL_EXT_memory_object 1 + +#define GL_UUID_SIZE_EXT 16 +#define GL_TEXTURE_TILING_EXT 0x9580 +#define GL_DEDICATED_MEMORY_OBJECT_EXT 0x9581 +#define GL_NUM_TILING_TYPES_EXT 0x9582 +#define GL_TILING_TYPES_EXT 0x9583 +#define GL_OPTIMAL_TILING_EXT 0x9584 +#define GL_LINEAR_TILING_EXT 0x9585 +#define GL_LAYOUT_GENERAL_EXT 0x958D +#define GL_LAYOUT_COLOR_ATTACHMENT_EXT 0x958E +#define GL_LAYOUT_DEPTH_STENCIL_ATTACHMENT_EXT 0x958F +#define GL_LAYOUT_DEPTH_STENCIL_READ_ONLY_EXT 0x9590 +#define GL_LAYOUT_SHADER_READ_ONLY_EXT 0x9591 +#define GL_LAYOUT_TRANSFER_SRC_EXT 0x9592 +#define GL_LAYOUT_TRANSFER_DST_EXT 0x9593 +#define GL_NUM_DEVICE_UUIDS_EXT 0x9596 +#define GL_DEVICE_UUID_EXT 0x9597 +#define GL_DRIVER_UUID_EXT 0x9598 +#define GL_PROTECTED_MEMORY_OBJECT_EXT 0x959B + +typedef void (GLAPIENTRY * PFNGLBUFFERSTORAGEMEMEXTPROC) (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +typedef void (GLAPIENTRY * PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint* memoryObjects); +typedef void (GLAPIENTRY * PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint* memoryObjects); +typedef void (GLAPIENTRY * PFNGLGETMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETUNSIGNEDBYTEI_VEXTPROC) (GLenum target, GLuint index, GLubyte* data); +typedef void (GLAPIENTRY * PFNGLGETUNSIGNEDBYTEVEXTPROC) (GLenum pname, GLubyte* data); +typedef GLboolean (GLAPIENTRY * PFNGLISMEMORYOBJECTEXTPROC) (GLuint memoryObject); +typedef void (GLAPIENTRY * PFNGLMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, const GLint* params); +typedef void (GLAPIENTRY * PFNGLNAMEDBUFFERSTORAGEMEMEXTPROC) (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +typedef void (GLAPIENTRY * PFNGLTEXSTORAGEMEM1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +typedef void (GLAPIENTRY * PFNGLTEXSTORAGEMEM2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (GLAPIENTRY * PFNGLTEXSTORAGEMEM2DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GLAPIENTRY * PFNGLTEXSTORAGEMEM3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (GLAPIENTRY * PFNGLTEXSTORAGEMEM3DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GLAPIENTRY * PFNGLTEXTURESTORAGEMEM1DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +typedef void (GLAPIENTRY * PFNGLTEXTURESTORAGEMEM2DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (GLAPIENTRY * PFNGLTEXTURESTORAGEMEM2DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GLAPIENTRY * PFNGLTEXTURESTORAGEMEM3DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (GLAPIENTRY * PFNGLTEXTURESTORAGEMEM3DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); + +#define glBufferStorageMemEXT GLEW_GET_FUN(__glewBufferStorageMemEXT) +#define glCreateMemoryObjectsEXT GLEW_GET_FUN(__glewCreateMemoryObjectsEXT) +#define glDeleteMemoryObjectsEXT GLEW_GET_FUN(__glewDeleteMemoryObjectsEXT) +#define glGetMemoryObjectParameterivEXT GLEW_GET_FUN(__glewGetMemoryObjectParameterivEXT) +#define glGetUnsignedBytei_vEXT GLEW_GET_FUN(__glewGetUnsignedBytei_vEXT) +#define glGetUnsignedBytevEXT GLEW_GET_FUN(__glewGetUnsignedBytevEXT) +#define glIsMemoryObjectEXT GLEW_GET_FUN(__glewIsMemoryObjectEXT) +#define glMemoryObjectParameterivEXT GLEW_GET_FUN(__glewMemoryObjectParameterivEXT) +#define glNamedBufferStorageMemEXT GLEW_GET_FUN(__glewNamedBufferStorageMemEXT) +#define glTexStorageMem1DEXT GLEW_GET_FUN(__glewTexStorageMem1DEXT) +#define glTexStorageMem2DEXT GLEW_GET_FUN(__glewTexStorageMem2DEXT) +#define glTexStorageMem2DMultisampleEXT GLEW_GET_FUN(__glewTexStorageMem2DMultisampleEXT) +#define glTexStorageMem3DEXT GLEW_GET_FUN(__glewTexStorageMem3DEXT) +#define glTexStorageMem3DMultisampleEXT GLEW_GET_FUN(__glewTexStorageMem3DMultisampleEXT) +#define glTextureStorageMem1DEXT GLEW_GET_FUN(__glewTextureStorageMem1DEXT) +#define glTextureStorageMem2DEXT GLEW_GET_FUN(__glewTextureStorageMem2DEXT) +#define glTextureStorageMem2DMultisampleEXT GLEW_GET_FUN(__glewTextureStorageMem2DMultisampleEXT) +#define glTextureStorageMem3DEXT GLEW_GET_FUN(__glewTextureStorageMem3DEXT) +#define glTextureStorageMem3DMultisampleEXT GLEW_GET_FUN(__glewTextureStorageMem3DMultisampleEXT) + +#define GLEW_EXT_memory_object GLEW_GET_VAR(__GLEW_EXT_memory_object) + +#endif /* GL_EXT_memory_object */ + +/* ------------------------ GL_EXT_memory_object_fd ------------------------ */ + +#ifndef GL_EXT_memory_object_fd +#define GL_EXT_memory_object_fd 1 + +#define GL_HANDLE_TYPE_OPAQUE_FD_EXT 0x9586 + +typedef void (GLAPIENTRY * PFNGLIMPORTMEMORYFDEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); + +#define glImportMemoryFdEXT GLEW_GET_FUN(__glewImportMemoryFdEXT) + +#define GLEW_EXT_memory_object_fd GLEW_GET_VAR(__GLEW_EXT_memory_object_fd) + +#endif /* GL_EXT_memory_object_fd */ + +/* ----------------------- GL_EXT_memory_object_win32 ---------------------- */ + +#ifndef GL_EXT_memory_object_win32 +#define GL_EXT_memory_object_win32 1 + +#define GL_LUID_SIZE_EXT 8 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_EXT 0x9587 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_KMT_EXT 0x9588 +#define GL_HANDLE_TYPE_D3D12_TILEPOOL_EXT 0x9589 +#define GL_HANDLE_TYPE_D3D12_RESOURCE_EXT 0x958A +#define GL_HANDLE_TYPE_D3D11_IMAGE_EXT 0x958B +#define GL_HANDLE_TYPE_D3D11_IMAGE_KMT_EXT 0x958C +#define GL_HANDLE_TYPE_D3D12_FENCE_EXT 0x9594 +#define GL_D3D12_FENCE_VALUE_EXT 0x9595 +#define GL_DEVICE_LUID_EXT 0x9599 +#define GL_DEVICE_NODE_MASK_EXT 0x959A + +typedef void (GLAPIENTRY * PFNGLIMPORTMEMORYWIN32HANDLEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +typedef void (GLAPIENTRY * PFNGLIMPORTMEMORYWIN32NAMEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, const void *name); + +#define glImportMemoryWin32HandleEXT GLEW_GET_FUN(__glewImportMemoryWin32HandleEXT) +#define glImportMemoryWin32NameEXT GLEW_GET_FUN(__glewImportMemoryWin32NameEXT) + +#define GLEW_EXT_memory_object_win32 GLEW_GET_VAR(__GLEW_EXT_memory_object_win32) + +#endif /* GL_EXT_memory_object_win32 */ + +/* ------------------------- GL_EXT_misc_attribute ------------------------- */ + +#ifndef GL_EXT_misc_attribute +#define GL_EXT_misc_attribute 1 + +#define GLEW_EXT_misc_attribute GLEW_GET_VAR(__GLEW_EXT_misc_attribute) + +#endif /* GL_EXT_misc_attribute */ + +/* ------------------------ GL_EXT_multi_draw_arrays ----------------------- */ + +#ifndef GL_EXT_multi_draw_arrays +#define GL_EXT_multi_draw_arrays 1 + +typedef void (GLAPIENTRY * PFNGLMULTIDRAWARRAYSEXTPROC) (GLenum mode, const GLint* first, const GLsizei *count, GLsizei primcount); +typedef void (GLAPIENTRY * PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, GLsizei* count, GLenum type, const void *const *indices, GLsizei primcount); + +#define glMultiDrawArraysEXT GLEW_GET_FUN(__glewMultiDrawArraysEXT) +#define glMultiDrawElementsEXT GLEW_GET_FUN(__glewMultiDrawElementsEXT) + +#define GLEW_EXT_multi_draw_arrays GLEW_GET_VAR(__GLEW_EXT_multi_draw_arrays) + +#endif /* GL_EXT_multi_draw_arrays */ + +/* ----------------------- GL_EXT_multi_draw_indirect ---------------------- */ + +#ifndef GL_EXT_multi_draw_indirect +#define GL_EXT_multi_draw_indirect 1 + +typedef void (GLAPIENTRY * PFNGLMULTIDRAWARRAYSINDIRECTEXTPROC) (GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); +typedef void (GLAPIENTRY * PFNGLMULTIDRAWELEMENTSINDIRECTEXTPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); + +#define glMultiDrawArraysIndirectEXT GLEW_GET_FUN(__glewMultiDrawArraysIndirectEXT) +#define glMultiDrawElementsIndirectEXT GLEW_GET_FUN(__glewMultiDrawElementsIndirectEXT) + +#define GLEW_EXT_multi_draw_indirect GLEW_GET_VAR(__GLEW_EXT_multi_draw_indirect) + +#endif /* GL_EXT_multi_draw_indirect */ + +/* ------------------------ GL_EXT_multiple_textures ----------------------- */ + +#ifndef GL_EXT_multiple_textures +#define GL_EXT_multiple_textures 1 + +#define GLEW_EXT_multiple_textures GLEW_GET_VAR(__GLEW_EXT_multiple_textures) + +#endif /* GL_EXT_multiple_textures */ + +/* --------------------------- GL_EXT_multisample -------------------------- */ + +#ifndef GL_EXT_multisample +#define GL_EXT_multisample 1 + +#define GL_MULTISAMPLE_EXT 0x809D +#define GL_SAMPLE_ALPHA_TO_MASK_EXT 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE_EXT 0x809F +#define GL_SAMPLE_MASK_EXT 0x80A0 +#define GL_1PASS_EXT 0x80A1 +#define GL_2PASS_0_EXT 0x80A2 +#define GL_2PASS_1_EXT 0x80A3 +#define GL_4PASS_0_EXT 0x80A4 +#define GL_4PASS_1_EXT 0x80A5 +#define GL_4PASS_2_EXT 0x80A6 +#define GL_4PASS_3_EXT 0x80A7 +#define GL_SAMPLE_BUFFERS_EXT 0x80A8 +#define GL_SAMPLES_EXT 0x80A9 +#define GL_SAMPLE_MASK_VALUE_EXT 0x80AA +#define GL_SAMPLE_MASK_INVERT_EXT 0x80AB +#define GL_SAMPLE_PATTERN_EXT 0x80AC +#define GL_MULTISAMPLE_BIT_EXT 0x20000000 + +typedef void (GLAPIENTRY * PFNGLSAMPLEMASKEXTPROC) (GLclampf value, GLboolean invert); +typedef void (GLAPIENTRY * PFNGLSAMPLEPATTERNEXTPROC) (GLenum pattern); + +#define glSampleMaskEXT GLEW_GET_FUN(__glewSampleMaskEXT) +#define glSamplePatternEXT GLEW_GET_FUN(__glewSamplePatternEXT) + +#define GLEW_EXT_multisample GLEW_GET_VAR(__GLEW_EXT_multisample) + +#endif /* GL_EXT_multisample */ + +/* -------------------- GL_EXT_multisample_compatibility ------------------- */ + +#ifndef GL_EXT_multisample_compatibility +#define GL_EXT_multisample_compatibility 1 + +#define GL_MULTISAMPLE_EXT 0x809D +#define GL_SAMPLE_ALPHA_TO_ONE_EXT 0x809F + +#define GLEW_EXT_multisample_compatibility GLEW_GET_VAR(__GLEW_EXT_multisample_compatibility) + +#endif /* GL_EXT_multisample_compatibility */ + +/* ----------------- GL_EXT_multisampled_render_to_texture ----------------- */ + +#ifndef GL_EXT_multisampled_render_to_texture +#define GL_EXT_multisampled_render_to_texture 1 + +#define GL_RENDERBUFFER_SAMPLES_EXT 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT 0x8D56 +#define GL_MAX_SAMPLES_EXT 0x8D57 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SAMPLES_EXT 0x8D6C + +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERTEXTURE2DMULTISAMPLEEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); + +#define glFramebufferTexture2DMultisampleEXT GLEW_GET_FUN(__glewFramebufferTexture2DMultisampleEXT) + +#define GLEW_EXT_multisampled_render_to_texture GLEW_GET_VAR(__GLEW_EXT_multisampled_render_to_texture) + +#endif /* GL_EXT_multisampled_render_to_texture */ + +/* ----------------- GL_EXT_multisampled_render_to_texture2 ---------------- */ + +#ifndef GL_EXT_multisampled_render_to_texture2 +#define GL_EXT_multisampled_render_to_texture2 1 + +#define GLEW_EXT_multisampled_render_to_texture2 GLEW_GET_VAR(__GLEW_EXT_multisampled_render_to_texture2) + +#endif /* GL_EXT_multisampled_render_to_texture2 */ + +/* --------------------- GL_EXT_multiview_draw_buffers --------------------- */ + +#ifndef GL_EXT_multiview_draw_buffers +#define GL_EXT_multiview_draw_buffers 1 + +#define GL_DRAW_BUFFER_EXT 0x0C01 +#define GL_READ_BUFFER_EXT 0x0C02 +#define GL_COLOR_ATTACHMENT_EXT 0x90F0 +#define GL_MULTIVIEW_EXT 0x90F1 +#define GL_MAX_MULTIVIEW_BUFFERS_EXT 0x90F2 + +typedef void (GLAPIENTRY * PFNGLDRAWBUFFERSINDEXEDEXTPROC) (GLint n, const GLenum* location, const GLint *indices); +typedef void (GLAPIENTRY * PFNGLGETINTEGERI_VEXTPROC) (GLenum target, GLuint index, GLint* data); +typedef void (GLAPIENTRY * PFNGLREADBUFFERINDEXEDEXTPROC) (GLenum src, GLint index); + +#define glDrawBuffersIndexedEXT GLEW_GET_FUN(__glewDrawBuffersIndexedEXT) +#define glGetIntegeri_vEXT GLEW_GET_FUN(__glewGetIntegeri_vEXT) +#define glReadBufferIndexedEXT GLEW_GET_FUN(__glewReadBufferIndexedEXT) + +#define GLEW_EXT_multiview_draw_buffers GLEW_GET_VAR(__GLEW_EXT_multiview_draw_buffers) + +#endif /* GL_EXT_multiview_draw_buffers */ + +/* ---------------------- GL_EXT_packed_depth_stencil ---------------------- */ + +#ifndef GL_EXT_packed_depth_stencil +#define GL_EXT_packed_depth_stencil 1 + +#define GL_DEPTH_STENCIL_EXT 0x84F9 +#define GL_UNSIGNED_INT_24_8_EXT 0x84FA +#define GL_DEPTH24_STENCIL8_EXT 0x88F0 +#define GL_TEXTURE_STENCIL_SIZE_EXT 0x88F1 + +#define GLEW_EXT_packed_depth_stencil GLEW_GET_VAR(__GLEW_EXT_packed_depth_stencil) + +#endif /* GL_EXT_packed_depth_stencil */ + +/* -------------------------- GL_EXT_packed_float -------------------------- */ + +#ifndef GL_EXT_packed_float +#define GL_EXT_packed_float 1 + +#define GL_R11F_G11F_B10F_EXT 0x8C3A +#define GL_UNSIGNED_INT_10F_11F_11F_REV_EXT 0x8C3B +#define GL_RGBA_SIGNED_COMPONENTS_EXT 0x8C3C + +#define GLEW_EXT_packed_float GLEW_GET_VAR(__GLEW_EXT_packed_float) + +#endif /* GL_EXT_packed_float */ + +/* -------------------------- GL_EXT_packed_pixels ------------------------- */ + +#ifndef GL_EXT_packed_pixels +#define GL_EXT_packed_pixels 1 + +#define GL_UNSIGNED_BYTE_3_3_2_EXT 0x8032 +#define GL_UNSIGNED_SHORT_4_4_4_4_EXT 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1_EXT 0x8034 +#define GL_UNSIGNED_INT_8_8_8_8_EXT 0x8035 +#define GL_UNSIGNED_INT_10_10_10_2_EXT 0x8036 + +#define GLEW_EXT_packed_pixels GLEW_GET_VAR(__GLEW_EXT_packed_pixels) + +#endif /* GL_EXT_packed_pixels */ + +/* ------------------------ GL_EXT_paletted_texture ------------------------ */ + +#ifndef GL_EXT_paletted_texture +#define GL_EXT_paletted_texture 1 + +#define GL_TEXTURE_1D 0x0DE0 +#define GL_TEXTURE_2D 0x0DE1 +#define GL_PROXY_TEXTURE_1D 0x8063 +#define GL_PROXY_TEXTURE_2D 0x8064 +#define GL_COLOR_TABLE_FORMAT_EXT 0x80D8 +#define GL_COLOR_TABLE_WIDTH_EXT 0x80D9 +#define GL_COLOR_TABLE_RED_SIZE_EXT 0x80DA +#define GL_COLOR_TABLE_GREEN_SIZE_EXT 0x80DB +#define GL_COLOR_TABLE_BLUE_SIZE_EXT 0x80DC +#define GL_COLOR_TABLE_ALPHA_SIZE_EXT 0x80DD +#define GL_COLOR_TABLE_LUMINANCE_SIZE_EXT 0x80DE +#define GL_COLOR_TABLE_INTENSITY_SIZE_EXT 0x80DF +#define GL_COLOR_INDEX1_EXT 0x80E2 +#define GL_COLOR_INDEX2_EXT 0x80E3 +#define GL_COLOR_INDEX4_EXT 0x80E4 +#define GL_COLOR_INDEX8_EXT 0x80E5 +#define GL_COLOR_INDEX12_EXT 0x80E6 +#define GL_COLOR_INDEX16_EXT 0x80E7 +#define GL_TEXTURE_INDEX_SIZE_EXT 0x80ED +#define GL_TEXTURE_CUBE_MAP_ARB 0x8513 +#define GL_PROXY_TEXTURE_CUBE_MAP_ARB 0x851B + +typedef void (GLAPIENTRY * PFNGLCOLORTABLEEXTPROC) (GLenum target, GLenum internalFormat, GLsizei width, GLenum format, GLenum type, const void *data); +typedef void (GLAPIENTRY * PFNGLGETCOLORTABLEEXTPROC) (GLenum target, GLenum format, GLenum type, void *data); +typedef void (GLAPIENTRY * PFNGLGETCOLORTABLEPARAMETERFVEXTPROC) (GLenum target, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETCOLORTABLEPARAMETERIVEXTPROC) (GLenum target, GLenum pname, GLint* params); + +#define glColorTableEXT GLEW_GET_FUN(__glewColorTableEXT) +#define glGetColorTableEXT GLEW_GET_FUN(__glewGetColorTableEXT) +#define glGetColorTableParameterfvEXT GLEW_GET_FUN(__glewGetColorTableParameterfvEXT) +#define glGetColorTableParameterivEXT GLEW_GET_FUN(__glewGetColorTableParameterivEXT) + +#define GLEW_EXT_paletted_texture GLEW_GET_VAR(__GLEW_EXT_paletted_texture) + +#endif /* GL_EXT_paletted_texture */ + +/* ----------------------- GL_EXT_pixel_buffer_object ---------------------- */ + +#ifndef GL_EXT_pixel_buffer_object +#define GL_EXT_pixel_buffer_object 1 + +#define GL_PIXEL_PACK_BUFFER_EXT 0x88EB +#define GL_PIXEL_UNPACK_BUFFER_EXT 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING_EXT 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING_EXT 0x88EF + +#define GLEW_EXT_pixel_buffer_object GLEW_GET_VAR(__GLEW_EXT_pixel_buffer_object) + +#endif /* GL_EXT_pixel_buffer_object */ + +/* ------------------------- GL_EXT_pixel_transform ------------------------ */ + +#ifndef GL_EXT_pixel_transform +#define GL_EXT_pixel_transform 1 + +#define GL_PIXEL_TRANSFORM_2D_EXT 0x8330 +#define GL_PIXEL_MAG_FILTER_EXT 0x8331 +#define GL_PIXEL_MIN_FILTER_EXT 0x8332 +#define GL_PIXEL_CUBIC_WEIGHT_EXT 0x8333 +#define GL_CUBIC_EXT 0x8334 +#define GL_AVERAGE_EXT 0x8335 +#define GL_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8336 +#define GL_MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT 0x8337 +#define GL_PIXEL_TRANSFORM_2D_MATRIX_EXT 0x8338 + +typedef void (GLAPIENTRY * PFNGLGETPIXELTRANSFORMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETPIXELTRANSFORMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, const GLint* params); +typedef void (GLAPIENTRY * PFNGLPIXELTRANSFORMPARAMETERFEXTPROC) (GLenum target, GLenum pname, const GLfloat param); +typedef void (GLAPIENTRY * PFNGLPIXELTRANSFORMPARAMETERFVEXTPROC) (GLenum target, GLenum pname, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLPIXELTRANSFORMPARAMETERIEXTPROC) (GLenum target, GLenum pname, const GLint param); +typedef void (GLAPIENTRY * PFNGLPIXELTRANSFORMPARAMETERIVEXTPROC) (GLenum target, GLenum pname, const GLint* params); + +#define glGetPixelTransformParameterfvEXT GLEW_GET_FUN(__glewGetPixelTransformParameterfvEXT) +#define glGetPixelTransformParameterivEXT GLEW_GET_FUN(__glewGetPixelTransformParameterivEXT) +#define glPixelTransformParameterfEXT GLEW_GET_FUN(__glewPixelTransformParameterfEXT) +#define glPixelTransformParameterfvEXT GLEW_GET_FUN(__glewPixelTransformParameterfvEXT) +#define glPixelTransformParameteriEXT GLEW_GET_FUN(__glewPixelTransformParameteriEXT) +#define glPixelTransformParameterivEXT GLEW_GET_FUN(__glewPixelTransformParameterivEXT) + +#define GLEW_EXT_pixel_transform GLEW_GET_VAR(__GLEW_EXT_pixel_transform) + +#endif /* GL_EXT_pixel_transform */ + +/* ------------------- GL_EXT_pixel_transform_color_table ------------------ */ + +#ifndef GL_EXT_pixel_transform_color_table +#define GL_EXT_pixel_transform_color_table 1 + +#define GLEW_EXT_pixel_transform_color_table GLEW_GET_VAR(__GLEW_EXT_pixel_transform_color_table) + +#endif /* GL_EXT_pixel_transform_color_table */ + +/* ------------------------ GL_EXT_point_parameters ------------------------ */ + +#ifndef GL_EXT_point_parameters +#define GL_EXT_point_parameters 1 + +#define GL_POINT_SIZE_MIN_EXT 0x8126 +#define GL_POINT_SIZE_MAX_EXT 0x8127 +#define GL_POINT_FADE_THRESHOLD_SIZE_EXT 0x8128 +#define GL_DISTANCE_ATTENUATION_EXT 0x8129 + +typedef void (GLAPIENTRY * PFNGLPOINTPARAMETERFEXTPROC) (GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLPOINTPARAMETERFVEXTPROC) (GLenum pname, const GLfloat* params); + +#define glPointParameterfEXT GLEW_GET_FUN(__glewPointParameterfEXT) +#define glPointParameterfvEXT GLEW_GET_FUN(__glewPointParameterfvEXT) + +#define GLEW_EXT_point_parameters GLEW_GET_VAR(__GLEW_EXT_point_parameters) + +#endif /* GL_EXT_point_parameters */ + +/* ------------------------- GL_EXT_polygon_offset ------------------------- */ + +#ifndef GL_EXT_polygon_offset +#define GL_EXT_polygon_offset 1 + +#define GL_POLYGON_OFFSET_EXT 0x8037 +#define GL_POLYGON_OFFSET_FACTOR_EXT 0x8038 +#define GL_POLYGON_OFFSET_BIAS_EXT 0x8039 + +typedef void (GLAPIENTRY * PFNGLPOLYGONOFFSETEXTPROC) (GLfloat factor, GLfloat bias); + +#define glPolygonOffsetEXT GLEW_GET_FUN(__glewPolygonOffsetEXT) + +#define GLEW_EXT_polygon_offset GLEW_GET_VAR(__GLEW_EXT_polygon_offset) + +#endif /* GL_EXT_polygon_offset */ + +/* ---------------------- GL_EXT_polygon_offset_clamp ---------------------- */ + +#ifndef GL_EXT_polygon_offset_clamp +#define GL_EXT_polygon_offset_clamp 1 + +#define GL_POLYGON_OFFSET_CLAMP_EXT 0x8E1B + +typedef void (GLAPIENTRY * PFNGLPOLYGONOFFSETCLAMPEXTPROC) (GLfloat factor, GLfloat units, GLfloat clamp); + +#define glPolygonOffsetClampEXT GLEW_GET_FUN(__glewPolygonOffsetClampEXT) + +#define GLEW_EXT_polygon_offset_clamp GLEW_GET_VAR(__GLEW_EXT_polygon_offset_clamp) + +#endif /* GL_EXT_polygon_offset_clamp */ + +/* ----------------------- GL_EXT_post_depth_coverage ---------------------- */ + +#ifndef GL_EXT_post_depth_coverage +#define GL_EXT_post_depth_coverage 1 + +#define GLEW_EXT_post_depth_coverage GLEW_GET_VAR(__GLEW_EXT_post_depth_coverage) + +#endif /* GL_EXT_post_depth_coverage */ + +/* ------------------------ GL_EXT_provoking_vertex ------------------------ */ + +#ifndef GL_EXT_provoking_vertex +#define GL_EXT_provoking_vertex 1 + +#define GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION_EXT 0x8E4C +#define GL_FIRST_VERTEX_CONVENTION_EXT 0x8E4D +#define GL_LAST_VERTEX_CONVENTION_EXT 0x8E4E +#define GL_PROVOKING_VERTEX_EXT 0x8E4F + +typedef void (GLAPIENTRY * PFNGLPROVOKINGVERTEXEXTPROC) (GLenum mode); + +#define glProvokingVertexEXT GLEW_GET_FUN(__glewProvokingVertexEXT) + +#define GLEW_EXT_provoking_vertex GLEW_GET_VAR(__GLEW_EXT_provoking_vertex) + +#endif /* GL_EXT_provoking_vertex */ + +/* --------------------------- GL_EXT_pvrtc_sRGB --------------------------- */ + +#ifndef GL_EXT_pvrtc_sRGB +#define GL_EXT_pvrtc_sRGB 1 + +#define GL_COMPRESSED_SRGB_PVRTC_2BPPV1_EXT 0x8A54 +#define GL_COMPRESSED_SRGB_PVRTC_4BPPV1_EXT 0x8A55 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_2BPPV1_EXT 0x8A56 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_4BPPV1_EXT 0x8A57 + +#define GLEW_EXT_pvrtc_sRGB GLEW_GET_VAR(__GLEW_EXT_pvrtc_sRGB) + +#endif /* GL_EXT_pvrtc_sRGB */ + +/* ----------------------- GL_EXT_raster_multisample ----------------------- */ + +#ifndef GL_EXT_raster_multisample +#define GL_EXT_raster_multisample 1 + +#define GL_COLOR_SAMPLES_NV 0x8E20 +#define GL_RASTER_MULTISAMPLE_EXT 0x9327 +#define GL_RASTER_SAMPLES_EXT 0x9328 +#define GL_MAX_RASTER_SAMPLES_EXT 0x9329 +#define GL_RASTER_FIXED_SAMPLE_LOCATIONS_EXT 0x932A +#define GL_MULTISAMPLE_RASTERIZATION_ALLOWED_EXT 0x932B +#define GL_EFFECTIVE_RASTER_SAMPLES_EXT 0x932C +#define GL_DEPTH_SAMPLES_NV 0x932D +#define GL_STENCIL_SAMPLES_NV 0x932E +#define GL_MIXED_DEPTH_SAMPLES_SUPPORTED_NV 0x932F +#define GL_MIXED_STENCIL_SAMPLES_SUPPORTED_NV 0x9330 +#define GL_COVERAGE_MODULATION_TABLE_NV 0x9331 +#define GL_COVERAGE_MODULATION_NV 0x9332 +#define GL_COVERAGE_MODULATION_TABLE_SIZE_NV 0x9333 + +typedef void (GLAPIENTRY * PFNGLCOVERAGEMODULATIONNVPROC) (GLenum components); +typedef void (GLAPIENTRY * PFNGLCOVERAGEMODULATIONTABLENVPROC) (GLsizei n, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLGETCOVERAGEMODULATIONTABLENVPROC) (GLsizei bufsize, GLfloat* v); +typedef void (GLAPIENTRY * PFNGLRASTERSAMPLESEXTPROC) (GLuint samples, GLboolean fixedsamplelocations); + +#define glCoverageModulationNV GLEW_GET_FUN(__glewCoverageModulationNV) +#define glCoverageModulationTableNV GLEW_GET_FUN(__glewCoverageModulationTableNV) +#define glGetCoverageModulationTableNV GLEW_GET_FUN(__glewGetCoverageModulationTableNV) +#define glRasterSamplesEXT GLEW_GET_FUN(__glewRasterSamplesEXT) + +#define GLEW_EXT_raster_multisample GLEW_GET_VAR(__GLEW_EXT_raster_multisample) + +#endif /* GL_EXT_raster_multisample */ + +/* ------------------------ GL_EXT_read_format_bgra ------------------------ */ + +#ifndef GL_EXT_read_format_bgra +#define GL_EXT_read_format_bgra 1 + +#define GL_BGRA_EXT 0x80E1 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV_EXT 0x8365 +#define GL_UNSIGNED_SHORT_1_5_5_5_REV_EXT 0x8366 + +#define GLEW_EXT_read_format_bgra GLEW_GET_VAR(__GLEW_EXT_read_format_bgra) + +#endif /* GL_EXT_read_format_bgra */ + +/* -------------------------- GL_EXT_render_snorm -------------------------- */ + +#ifndef GL_EXT_render_snorm +#define GL_EXT_render_snorm 1 + +#define GL_BYTE 0x1400 +#define GL_SHORT 0x1402 +#define GL_R8_SNORM 0x8F94 +#define GL_RG8_SNORM 0x8F95 +#define GL_RGBA8_SNORM 0x8F97 +#define GL_R16_SNORM_EXT 0x8F98 +#define GL_RG16_SNORM_EXT 0x8F99 +#define GL_RGBA16_SNORM_EXT 0x8F9B + +#define GLEW_EXT_render_snorm GLEW_GET_VAR(__GLEW_EXT_render_snorm) + +#endif /* GL_EXT_render_snorm */ + +/* ------------------------- GL_EXT_rescale_normal ------------------------- */ + +#ifndef GL_EXT_rescale_normal +#define GL_EXT_rescale_normal 1 + +#define GL_RESCALE_NORMAL_EXT 0x803A + +#define GLEW_EXT_rescale_normal GLEW_GET_VAR(__GLEW_EXT_rescale_normal) + +#endif /* GL_EXT_rescale_normal */ + +/* ------------------------------ GL_EXT_sRGB ------------------------------ */ + +#ifndef GL_EXT_sRGB +#define GL_EXT_sRGB 1 + +#define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT 0x8210 +#define GL_SRGB_EXT 0x8C40 +#define GL_SRGB_ALPHA_EXT 0x8C42 +#define GL_SRGB8_ALPHA8_EXT 0x8C43 + +#define GLEW_EXT_sRGB GLEW_GET_VAR(__GLEW_EXT_sRGB) + +#endif /* GL_EXT_sRGB */ + +/* ----------------------- GL_EXT_sRGB_write_control ----------------------- */ + +#ifndef GL_EXT_sRGB_write_control +#define GL_EXT_sRGB_write_control 1 + +#define GL_FRAMEBUFFER_SRGB_EXT 0x8DB9 + +#define GLEW_EXT_sRGB_write_control GLEW_GET_VAR(__GLEW_EXT_sRGB_write_control) + +#endif /* GL_EXT_sRGB_write_control */ + +/* -------------------------- GL_EXT_scene_marker -------------------------- */ + +#ifndef GL_EXT_scene_marker +#define GL_EXT_scene_marker 1 + +typedef void (GLAPIENTRY * PFNGLBEGINSCENEEXTPROC) (void); +typedef void (GLAPIENTRY * PFNGLENDSCENEEXTPROC) (void); + +#define glBeginSceneEXT GLEW_GET_FUN(__glewBeginSceneEXT) +#define glEndSceneEXT GLEW_GET_FUN(__glewEndSceneEXT) + +#define GLEW_EXT_scene_marker GLEW_GET_VAR(__GLEW_EXT_scene_marker) + +#endif /* GL_EXT_scene_marker */ + +/* ------------------------- GL_EXT_secondary_color ------------------------ */ + +#ifndef GL_EXT_secondary_color +#define GL_EXT_secondary_color 1 + +#define GL_COLOR_SUM_EXT 0x8458 +#define GL_CURRENT_SECONDARY_COLOR_EXT 0x8459 +#define GL_SECONDARY_COLOR_ARRAY_SIZE_EXT 0x845A +#define GL_SECONDARY_COLOR_ARRAY_TYPE_EXT 0x845B +#define GL_SECONDARY_COLOR_ARRAY_STRIDE_EXT 0x845C +#define GL_SECONDARY_COLOR_ARRAY_POINTER_EXT 0x845D +#define GL_SECONDARY_COLOR_ARRAY_EXT 0x845E + +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3BEXTPROC) (GLbyte red, GLbyte green, GLbyte blue); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3BVEXTPROC) (const GLbyte *v); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3DEXTPROC) (GLdouble red, GLdouble green, GLdouble blue); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3DVEXTPROC) (const GLdouble *v); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3FEXTPROC) (GLfloat red, GLfloat green, GLfloat blue); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3FVEXTPROC) (const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3IEXTPROC) (GLint red, GLint green, GLint blue); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3IVEXTPROC) (const GLint *v); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3SEXTPROC) (GLshort red, GLshort green, GLshort blue); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3SVEXTPROC) (const GLshort *v); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3UBEXTPROC) (GLubyte red, GLubyte green, GLubyte blue); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3UBVEXTPROC) (const GLubyte *v); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3UIEXTPROC) (GLuint red, GLuint green, GLuint blue); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3UIVEXTPROC) (const GLuint *v); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3USEXTPROC) (GLushort red, GLushort green, GLushort blue); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3USVEXTPROC) (const GLushort *v); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLORPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, const void *pointer); + +#define glSecondaryColor3bEXT GLEW_GET_FUN(__glewSecondaryColor3bEXT) +#define glSecondaryColor3bvEXT GLEW_GET_FUN(__glewSecondaryColor3bvEXT) +#define glSecondaryColor3dEXT GLEW_GET_FUN(__glewSecondaryColor3dEXT) +#define glSecondaryColor3dvEXT GLEW_GET_FUN(__glewSecondaryColor3dvEXT) +#define glSecondaryColor3fEXT GLEW_GET_FUN(__glewSecondaryColor3fEXT) +#define glSecondaryColor3fvEXT GLEW_GET_FUN(__glewSecondaryColor3fvEXT) +#define glSecondaryColor3iEXT GLEW_GET_FUN(__glewSecondaryColor3iEXT) +#define glSecondaryColor3ivEXT GLEW_GET_FUN(__glewSecondaryColor3ivEXT) +#define glSecondaryColor3sEXT GLEW_GET_FUN(__glewSecondaryColor3sEXT) +#define glSecondaryColor3svEXT GLEW_GET_FUN(__glewSecondaryColor3svEXT) +#define glSecondaryColor3ubEXT GLEW_GET_FUN(__glewSecondaryColor3ubEXT) +#define glSecondaryColor3ubvEXT GLEW_GET_FUN(__glewSecondaryColor3ubvEXT) +#define glSecondaryColor3uiEXT GLEW_GET_FUN(__glewSecondaryColor3uiEXT) +#define glSecondaryColor3uivEXT GLEW_GET_FUN(__glewSecondaryColor3uivEXT) +#define glSecondaryColor3usEXT GLEW_GET_FUN(__glewSecondaryColor3usEXT) +#define glSecondaryColor3usvEXT GLEW_GET_FUN(__glewSecondaryColor3usvEXT) +#define glSecondaryColorPointerEXT GLEW_GET_FUN(__glewSecondaryColorPointerEXT) + +#define GLEW_EXT_secondary_color GLEW_GET_VAR(__GLEW_EXT_secondary_color) + +#endif /* GL_EXT_secondary_color */ + +/* ---------------------------- GL_EXT_semaphore --------------------------- */ + +#ifndef GL_EXT_semaphore +#define GL_EXT_semaphore 1 + +typedef void (GLAPIENTRY * PFNGLDELETESEMAPHORESEXTPROC) (GLsizei n, const GLuint* semaphores); +typedef void (GLAPIENTRY * PFNGLGENSEMAPHORESEXTPROC) (GLsizei n, GLuint* semaphores); +typedef void (GLAPIENTRY * PFNGLGETSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, GLuint64* params); +typedef GLboolean (GLAPIENTRY * PFNGLISSEMAPHOREEXTPROC) (GLuint semaphore); +typedef void (GLAPIENTRY * PFNGLSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, const GLuint64* params); +typedef void (GLAPIENTRY * PFNGLSIGNALSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint* buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +typedef void (GLAPIENTRY * PFNGLWAITSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint* buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); + +#define glDeleteSemaphoresEXT GLEW_GET_FUN(__glewDeleteSemaphoresEXT) +#define glGenSemaphoresEXT GLEW_GET_FUN(__glewGenSemaphoresEXT) +#define glGetSemaphoreParameterui64vEXT GLEW_GET_FUN(__glewGetSemaphoreParameterui64vEXT) +#define glIsSemaphoreEXT GLEW_GET_FUN(__glewIsSemaphoreEXT) +#define glSemaphoreParameterui64vEXT GLEW_GET_FUN(__glewSemaphoreParameterui64vEXT) +#define glSignalSemaphoreEXT GLEW_GET_FUN(__glewSignalSemaphoreEXT) +#define glWaitSemaphoreEXT GLEW_GET_FUN(__glewWaitSemaphoreEXT) + +#define GLEW_EXT_semaphore GLEW_GET_VAR(__GLEW_EXT_semaphore) + +#endif /* GL_EXT_semaphore */ + +/* -------------------------- GL_EXT_semaphore_fd -------------------------- */ + +#ifndef GL_EXT_semaphore_fd +#define GL_EXT_semaphore_fd 1 + +typedef void (GLAPIENTRY * PFNGLIMPORTSEMAPHOREFDEXTPROC) (GLuint semaphore, GLenum handleType, GLint fd); + +#define glImportSemaphoreFdEXT GLEW_GET_FUN(__glewImportSemaphoreFdEXT) + +#define GLEW_EXT_semaphore_fd GLEW_GET_VAR(__GLEW_EXT_semaphore_fd) + +#endif /* GL_EXT_semaphore_fd */ + +/* ------------------------- GL_EXT_semaphore_win32 ------------------------ */ + +#ifndef GL_EXT_semaphore_win32 +#define GL_EXT_semaphore_win32 1 + +typedef void (GLAPIENTRY * PFNGLIMPORTSEMAPHOREWIN32HANDLEEXTPROC) (GLuint semaphore, GLenum handleType, void *handle); +typedef void (GLAPIENTRY * PFNGLIMPORTSEMAPHOREWIN32NAMEEXTPROC) (GLuint semaphore, GLenum handleType, const void *name); + +#define glImportSemaphoreWin32HandleEXT GLEW_GET_FUN(__glewImportSemaphoreWin32HandleEXT) +#define glImportSemaphoreWin32NameEXT GLEW_GET_FUN(__glewImportSemaphoreWin32NameEXT) + +#define GLEW_EXT_semaphore_win32 GLEW_GET_VAR(__GLEW_EXT_semaphore_win32) + +#endif /* GL_EXT_semaphore_win32 */ + +/* --------------------- GL_EXT_separate_shader_objects -------------------- */ + +#ifndef GL_EXT_separate_shader_objects +#define GL_EXT_separate_shader_objects 1 + +#define GL_ACTIVE_PROGRAM_EXT 0x8B8D + +typedef void (GLAPIENTRY * PFNGLACTIVEPROGRAMEXTPROC) (GLuint program); +typedef GLuint (GLAPIENTRY * PFNGLCREATESHADERPROGRAMEXTPROC) (GLenum type, const GLchar* string); +typedef void (GLAPIENTRY * PFNGLUSESHADERPROGRAMEXTPROC) (GLenum type, GLuint program); + +#define glActiveProgramEXT GLEW_GET_FUN(__glewActiveProgramEXT) +#define glCreateShaderProgramEXT GLEW_GET_FUN(__glewCreateShaderProgramEXT) +#define glUseShaderProgramEXT GLEW_GET_FUN(__glewUseShaderProgramEXT) + +#define GLEW_EXT_separate_shader_objects GLEW_GET_VAR(__GLEW_EXT_separate_shader_objects) + +#endif /* GL_EXT_separate_shader_objects */ + +/* --------------------- GL_EXT_separate_specular_color -------------------- */ + +#ifndef GL_EXT_separate_specular_color +#define GL_EXT_separate_specular_color 1 + +#define GL_LIGHT_MODEL_COLOR_CONTROL_EXT 0x81F8 +#define GL_SINGLE_COLOR_EXT 0x81F9 +#define GL_SEPARATE_SPECULAR_COLOR_EXT 0x81FA + +#define GLEW_EXT_separate_specular_color GLEW_GET_VAR(__GLEW_EXT_separate_specular_color) + +#endif /* GL_EXT_separate_specular_color */ + +/* -------------------- GL_EXT_shader_framebuffer_fetch -------------------- */ + +#ifndef GL_EXT_shader_framebuffer_fetch +#define GL_EXT_shader_framebuffer_fetch 1 + +#define GL_FRAGMENT_SHADER_DISCARDS_SAMPLES_EXT 0x8A52 + +#define GLEW_EXT_shader_framebuffer_fetch GLEW_GET_VAR(__GLEW_EXT_shader_framebuffer_fetch) + +#endif /* GL_EXT_shader_framebuffer_fetch */ + +/* ------------------------ GL_EXT_shader_group_vote ----------------------- */ + +#ifndef GL_EXT_shader_group_vote +#define GL_EXT_shader_group_vote 1 + +#define GLEW_EXT_shader_group_vote GLEW_GET_VAR(__GLEW_EXT_shader_group_vote) + +#endif /* GL_EXT_shader_group_vote */ + +/* ------------------- GL_EXT_shader_image_load_formatted ------------------ */ + +#ifndef GL_EXT_shader_image_load_formatted +#define GL_EXT_shader_image_load_formatted 1 + +#define GLEW_EXT_shader_image_load_formatted GLEW_GET_VAR(__GLEW_EXT_shader_image_load_formatted) + +#endif /* GL_EXT_shader_image_load_formatted */ + +/* --------------------- GL_EXT_shader_image_load_store -------------------- */ + +#ifndef GL_EXT_shader_image_load_store +#define GL_EXT_shader_image_load_store 1 + +#define GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT_EXT 0x00000001 +#define GL_ELEMENT_ARRAY_BARRIER_BIT_EXT 0x00000002 +#define GL_UNIFORM_BARRIER_BIT_EXT 0x00000004 +#define GL_TEXTURE_FETCH_BARRIER_BIT_EXT 0x00000008 +#define GL_SHADER_IMAGE_ACCESS_BARRIER_BIT_EXT 0x00000020 +#define GL_COMMAND_BARRIER_BIT_EXT 0x00000040 +#define GL_PIXEL_BUFFER_BARRIER_BIT_EXT 0x00000080 +#define GL_TEXTURE_UPDATE_BARRIER_BIT_EXT 0x00000100 +#define GL_BUFFER_UPDATE_BARRIER_BIT_EXT 0x00000200 +#define GL_FRAMEBUFFER_BARRIER_BIT_EXT 0x00000400 +#define GL_TRANSFORM_FEEDBACK_BARRIER_BIT_EXT 0x00000800 +#define GL_ATOMIC_COUNTER_BARRIER_BIT_EXT 0x00001000 +#define GL_MAX_IMAGE_UNITS_EXT 0x8F38 +#define GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS_EXT 0x8F39 +#define GL_IMAGE_BINDING_NAME_EXT 0x8F3A +#define GL_IMAGE_BINDING_LEVEL_EXT 0x8F3B +#define GL_IMAGE_BINDING_LAYERED_EXT 0x8F3C +#define GL_IMAGE_BINDING_LAYER_EXT 0x8F3D +#define GL_IMAGE_BINDING_ACCESS_EXT 0x8F3E +#define GL_IMAGE_1D_EXT 0x904C +#define GL_IMAGE_2D_EXT 0x904D +#define GL_IMAGE_3D_EXT 0x904E +#define GL_IMAGE_2D_RECT_EXT 0x904F +#define GL_IMAGE_CUBE_EXT 0x9050 +#define GL_IMAGE_BUFFER_EXT 0x9051 +#define GL_IMAGE_1D_ARRAY_EXT 0x9052 +#define GL_IMAGE_2D_ARRAY_EXT 0x9053 +#define GL_IMAGE_CUBE_MAP_ARRAY_EXT 0x9054 +#define GL_IMAGE_2D_MULTISAMPLE_EXT 0x9055 +#define GL_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x9056 +#define GL_INT_IMAGE_1D_EXT 0x9057 +#define GL_INT_IMAGE_2D_EXT 0x9058 +#define GL_INT_IMAGE_3D_EXT 0x9059 +#define GL_INT_IMAGE_2D_RECT_EXT 0x905A +#define GL_INT_IMAGE_CUBE_EXT 0x905B +#define GL_INT_IMAGE_BUFFER_EXT 0x905C +#define GL_INT_IMAGE_1D_ARRAY_EXT 0x905D +#define GL_INT_IMAGE_2D_ARRAY_EXT 0x905E +#define GL_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x905F +#define GL_INT_IMAGE_2D_MULTISAMPLE_EXT 0x9060 +#define GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x9061 +#define GL_UNSIGNED_INT_IMAGE_1D_EXT 0x9062 +#define GL_UNSIGNED_INT_IMAGE_2D_EXT 0x9063 +#define GL_UNSIGNED_INT_IMAGE_3D_EXT 0x9064 +#define GL_UNSIGNED_INT_IMAGE_2D_RECT_EXT 0x9065 +#define GL_UNSIGNED_INT_IMAGE_CUBE_EXT 0x9066 +#define GL_UNSIGNED_INT_IMAGE_BUFFER_EXT 0x9067 +#define GL_UNSIGNED_INT_IMAGE_1D_ARRAY_EXT 0x9068 +#define GL_UNSIGNED_INT_IMAGE_2D_ARRAY_EXT 0x9069 +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x906A +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_EXT 0x906B +#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT 0x906C +#define GL_MAX_IMAGE_SAMPLES_EXT 0x906D +#define GL_IMAGE_BINDING_FORMAT_EXT 0x906E +#define GL_ALL_BARRIER_BITS_EXT 0xFFFFFFFF + +typedef void (GLAPIENTRY * PFNGLBINDIMAGETEXTUREEXTPROC) (GLuint index, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLint format); +typedef void (GLAPIENTRY * PFNGLMEMORYBARRIEREXTPROC) (GLbitfield barriers); + +#define glBindImageTextureEXT GLEW_GET_FUN(__glewBindImageTextureEXT) +#define glMemoryBarrierEXT GLEW_GET_FUN(__glewMemoryBarrierEXT) + +#define GLEW_EXT_shader_image_load_store GLEW_GET_VAR(__GLEW_EXT_shader_image_load_store) + +#endif /* GL_EXT_shader_image_load_store */ + +/* ------------------- GL_EXT_shader_implicit_conversions ------------------ */ + +#ifndef GL_EXT_shader_implicit_conversions +#define GL_EXT_shader_implicit_conversions 1 + +#define GLEW_EXT_shader_implicit_conversions GLEW_GET_VAR(__GLEW_EXT_shader_implicit_conversions) + +#endif /* GL_EXT_shader_implicit_conversions */ + +/* ----------------------- GL_EXT_shader_integer_mix ----------------------- */ + +#ifndef GL_EXT_shader_integer_mix +#define GL_EXT_shader_integer_mix 1 + +#define GLEW_EXT_shader_integer_mix GLEW_GET_VAR(__GLEW_EXT_shader_integer_mix) + +#endif /* GL_EXT_shader_integer_mix */ + +/* ------------------------ GL_EXT_shader_io_blocks ------------------------ */ + +#ifndef GL_EXT_shader_io_blocks +#define GL_EXT_shader_io_blocks 1 + +#define GLEW_EXT_shader_io_blocks GLEW_GET_VAR(__GLEW_EXT_shader_io_blocks) + +#endif /* GL_EXT_shader_io_blocks */ + +/* ------------- GL_EXT_shader_non_constant_global_initializers ------------ */ + +#ifndef GL_EXT_shader_non_constant_global_initializers +#define GL_EXT_shader_non_constant_global_initializers 1 + +#define GLEW_EXT_shader_non_constant_global_initializers GLEW_GET_VAR(__GLEW_EXT_shader_non_constant_global_initializers) + +#endif /* GL_EXT_shader_non_constant_global_initializers */ + +/* ------------------- GL_EXT_shader_pixel_local_storage ------------------- */ + +#ifndef GL_EXT_shader_pixel_local_storage +#define GL_EXT_shader_pixel_local_storage 1 + +#define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT 0x8F63 +#define GL_SHADER_PIXEL_LOCAL_STORAGE_EXT 0x8F64 +#define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_SIZE_EXT 0x8F67 + +#define GLEW_EXT_shader_pixel_local_storage GLEW_GET_VAR(__GLEW_EXT_shader_pixel_local_storage) + +#endif /* GL_EXT_shader_pixel_local_storage */ + +/* ------------------- GL_EXT_shader_pixel_local_storage2 ------------------ */ + +#ifndef GL_EXT_shader_pixel_local_storage2 +#define GL_EXT_shader_pixel_local_storage2 1 + +#define GL_MAX_SHADER_COMBINED_LOCAL_STORAGE_FAST_SIZE_EXT 0x9650 +#define GL_MAX_SHADER_COMBINED_LOCAL_STORAGE_SIZE_EXT 0x9651 +#define GL_FRAMEBUFFER_INCOMPLETE_INSUFFICIENT_SHADER_COMBINED_LOCAL_STORAGE_EXT 0x9652 + +typedef void (GLAPIENTRY * PFNGLCLEARPIXELLOCALSTORAGEUIEXTPROC) (GLsizei offset, GLsizei n, const GLuint* values); +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERPIXELLOCALSTORAGESIZEEXTPROC) (GLuint target, GLsizei size); +typedef GLsizei (GLAPIENTRY * PFNGLGETFRAMEBUFFERPIXELLOCALSTORAGESIZEEXTPROC) (GLuint target); + +#define glClearPixelLocalStorageuiEXT GLEW_GET_FUN(__glewClearPixelLocalStorageuiEXT) +#define glFramebufferPixelLocalStorageSizeEXT GLEW_GET_FUN(__glewFramebufferPixelLocalStorageSizeEXT) +#define glGetFramebufferPixelLocalStorageSizeEXT GLEW_GET_FUN(__glewGetFramebufferPixelLocalStorageSizeEXT) + +#define GLEW_EXT_shader_pixel_local_storage2 GLEW_GET_VAR(__GLEW_EXT_shader_pixel_local_storage2) + +#endif /* GL_EXT_shader_pixel_local_storage2 */ + +/* ----------------------- GL_EXT_shader_texture_lod ----------------------- */ + +#ifndef GL_EXT_shader_texture_lod +#define GL_EXT_shader_texture_lod 1 + +#define GLEW_EXT_shader_texture_lod GLEW_GET_VAR(__GLEW_EXT_shader_texture_lod) + +#endif /* GL_EXT_shader_texture_lod */ + +/* -------------------------- GL_EXT_shadow_funcs -------------------------- */ + +#ifndef GL_EXT_shadow_funcs +#define GL_EXT_shadow_funcs 1 + +#define GLEW_EXT_shadow_funcs GLEW_GET_VAR(__GLEW_EXT_shadow_funcs) + +#endif /* GL_EXT_shadow_funcs */ + +/* ------------------------- GL_EXT_shadow_samplers ------------------------ */ + +#ifndef GL_EXT_shadow_samplers +#define GL_EXT_shadow_samplers 1 + +#define GL_TEXTURE_COMPARE_MODE_EXT 0x884C +#define GL_TEXTURE_COMPARE_FUNC_EXT 0x884D +#define GL_COMPARE_REF_TO_TEXTURE_EXT 0x884E +#define GL_SAMPLER_2D_SHADOW_EXT 0x8B62 + +#define GLEW_EXT_shadow_samplers GLEW_GET_VAR(__GLEW_EXT_shadow_samplers) + +#endif /* GL_EXT_shadow_samplers */ + +/* --------------------- GL_EXT_shared_texture_palette --------------------- */ + +#ifndef GL_EXT_shared_texture_palette +#define GL_EXT_shared_texture_palette 1 + +#define GL_SHARED_TEXTURE_PALETTE_EXT 0x81FB + +#define GLEW_EXT_shared_texture_palette GLEW_GET_VAR(__GLEW_EXT_shared_texture_palette) + +#endif /* GL_EXT_shared_texture_palette */ + +/* ------------------------- GL_EXT_sparse_texture ------------------------- */ + +#ifndef GL_EXT_sparse_texture +#define GL_EXT_sparse_texture 1 + +#define GL_TEXTURE_2D 0x0DE1 +#define GL_TEXTURE_3D 0x806F +#define GL_TEXTURE_CUBE_MAP 0x8513 +#define GL_TEXTURE_2D_ARRAY 0x8C1A +#define GL_TEXTURE_CUBE_MAP_ARRAY_OES 0x9009 +#define GL_VIRTUAL_PAGE_SIZE_X_EXT 0x9195 +#define GL_VIRTUAL_PAGE_SIZE_Y_EXT 0x9196 +#define GL_VIRTUAL_PAGE_SIZE_Z_EXT 0x9197 +#define GL_MAX_SPARSE_TEXTURE_SIZE_EXT 0x9198 +#define GL_MAX_SPARSE_3D_TEXTURE_SIZE_EXT 0x9199 +#define GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS_EXT 0x919A +#define GL_TEXTURE_SPARSE_EXT 0x91A6 +#define GL_VIRTUAL_PAGE_SIZE_INDEX_EXT 0x91A7 +#define GL_NUM_VIRTUAL_PAGE_SIZES_EXT 0x91A8 +#define GL_SPARSE_TEXTURE_FULL_ARRAY_CUBE_MIPMAPS_EXT 0x91A9 +#define GL_NUM_SPARSE_LEVELS_EXT 0x91AA + +typedef void (GLAPIENTRY * PFNGLTEXPAGECOMMITMENTEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +typedef void (GLAPIENTRY * PFNGLTEXTUREPAGECOMMITMENTEXTPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); + +#define glTexPageCommitmentEXT GLEW_GET_FUN(__glewTexPageCommitmentEXT) +#define glTexturePageCommitmentEXT GLEW_GET_FUN(__glewTexturePageCommitmentEXT) + +#define GLEW_EXT_sparse_texture GLEW_GET_VAR(__GLEW_EXT_sparse_texture) + +#endif /* GL_EXT_sparse_texture */ + +/* ------------------------- GL_EXT_sparse_texture2 ------------------------ */ + +#ifndef GL_EXT_sparse_texture2 +#define GL_EXT_sparse_texture2 1 + +#define GLEW_EXT_sparse_texture2 GLEW_GET_VAR(__GLEW_EXT_sparse_texture2) + +#endif /* GL_EXT_sparse_texture2 */ + +/* ------------------------ GL_EXT_stencil_clear_tag ----------------------- */ + +#ifndef GL_EXT_stencil_clear_tag +#define GL_EXT_stencil_clear_tag 1 + +#define GL_STENCIL_TAG_BITS_EXT 0x88F2 +#define GL_STENCIL_CLEAR_TAG_VALUE_EXT 0x88F3 + +#define GLEW_EXT_stencil_clear_tag GLEW_GET_VAR(__GLEW_EXT_stencil_clear_tag) + +#endif /* GL_EXT_stencil_clear_tag */ + +/* ------------------------ GL_EXT_stencil_two_side ------------------------ */ + +#ifndef GL_EXT_stencil_two_side +#define GL_EXT_stencil_two_side 1 + +#define GL_STENCIL_TEST_TWO_SIDE_EXT 0x8910 +#define GL_ACTIVE_STENCIL_FACE_EXT 0x8911 + +typedef void (GLAPIENTRY * PFNGLACTIVESTENCILFACEEXTPROC) (GLenum face); + +#define glActiveStencilFaceEXT GLEW_GET_FUN(__glewActiveStencilFaceEXT) + +#define GLEW_EXT_stencil_two_side GLEW_GET_VAR(__GLEW_EXT_stencil_two_side) + +#endif /* GL_EXT_stencil_two_side */ + +/* -------------------------- GL_EXT_stencil_wrap -------------------------- */ + +#ifndef GL_EXT_stencil_wrap +#define GL_EXT_stencil_wrap 1 + +#define GL_INCR_WRAP_EXT 0x8507 +#define GL_DECR_WRAP_EXT 0x8508 + +#define GLEW_EXT_stencil_wrap GLEW_GET_VAR(__GLEW_EXT_stencil_wrap) + +#endif /* GL_EXT_stencil_wrap */ + +/* --------------------------- GL_EXT_subtexture --------------------------- */ + +#ifndef GL_EXT_subtexture +#define GL_EXT_subtexture 1 + +typedef void (GLAPIENTRY * PFNGLTEXSUBIMAGE1DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (GLAPIENTRY * PFNGLTEXSUBIMAGE2DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (GLAPIENTRY * PFNGLTEXSUBIMAGE3DEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); + +#define glTexSubImage1DEXT GLEW_GET_FUN(__glewTexSubImage1DEXT) +#define glTexSubImage2DEXT GLEW_GET_FUN(__glewTexSubImage2DEXT) +#define glTexSubImage3DEXT GLEW_GET_FUN(__glewTexSubImage3DEXT) + +#define GLEW_EXT_subtexture GLEW_GET_VAR(__GLEW_EXT_subtexture) + +#endif /* GL_EXT_subtexture */ + +/* ----------------------------- GL_EXT_texture ---------------------------- */ + +#ifndef GL_EXT_texture +#define GL_EXT_texture 1 + +#define GL_ALPHA4_EXT 0x803B +#define GL_ALPHA8_EXT 0x803C +#define GL_ALPHA12_EXT 0x803D +#define GL_ALPHA16_EXT 0x803E +#define GL_LUMINANCE4_EXT 0x803F +#define GL_LUMINANCE8_EXT 0x8040 +#define GL_LUMINANCE12_EXT 0x8041 +#define GL_LUMINANCE16_EXT 0x8042 +#define GL_LUMINANCE4_ALPHA4_EXT 0x8043 +#define GL_LUMINANCE6_ALPHA2_EXT 0x8044 +#define GL_LUMINANCE8_ALPHA8_EXT 0x8045 +#define GL_LUMINANCE12_ALPHA4_EXT 0x8046 +#define GL_LUMINANCE12_ALPHA12_EXT 0x8047 +#define GL_LUMINANCE16_ALPHA16_EXT 0x8048 +#define GL_INTENSITY_EXT 0x8049 +#define GL_INTENSITY4_EXT 0x804A +#define GL_INTENSITY8_EXT 0x804B +#define GL_INTENSITY12_EXT 0x804C +#define GL_INTENSITY16_EXT 0x804D +#define GL_RGB2_EXT 0x804E +#define GL_RGB4_EXT 0x804F +#define GL_RGB5_EXT 0x8050 +#define GL_RGB8_EXT 0x8051 +#define GL_RGB10_EXT 0x8052 +#define GL_RGB12_EXT 0x8053 +#define GL_RGB16_EXT 0x8054 +#define GL_RGBA2_EXT 0x8055 +#define GL_RGBA4_EXT 0x8056 +#define GL_RGB5_A1_EXT 0x8057 +#define GL_RGBA8_EXT 0x8058 +#define GL_RGB10_A2_EXT 0x8059 +#define GL_RGBA12_EXT 0x805A +#define GL_RGBA16_EXT 0x805B +#define GL_TEXTURE_RED_SIZE_EXT 0x805C +#define GL_TEXTURE_GREEN_SIZE_EXT 0x805D +#define GL_TEXTURE_BLUE_SIZE_EXT 0x805E +#define GL_TEXTURE_ALPHA_SIZE_EXT 0x805F +#define GL_TEXTURE_LUMINANCE_SIZE_EXT 0x8060 +#define GL_TEXTURE_INTENSITY_SIZE_EXT 0x8061 +#define GL_REPLACE_EXT 0x8062 +#define GL_PROXY_TEXTURE_1D_EXT 0x8063 +#define GL_PROXY_TEXTURE_2D_EXT 0x8064 + +#define GLEW_EXT_texture GLEW_GET_VAR(__GLEW_EXT_texture) + +#endif /* GL_EXT_texture */ + +/* ---------------------------- GL_EXT_texture3D --------------------------- */ + +#ifndef GL_EXT_texture3D +#define GL_EXT_texture3D 1 + +#define GL_PACK_SKIP_IMAGES_EXT 0x806B +#define GL_PACK_IMAGE_HEIGHT_EXT 0x806C +#define GL_UNPACK_SKIP_IMAGES_EXT 0x806D +#define GL_UNPACK_IMAGE_HEIGHT_EXT 0x806E +#define GL_TEXTURE_3D_EXT 0x806F +#define GL_PROXY_TEXTURE_3D_EXT 0x8070 +#define GL_TEXTURE_DEPTH_EXT 0x8071 +#define GL_TEXTURE_WRAP_R_EXT 0x8072 +#define GL_MAX_3D_TEXTURE_SIZE_EXT 0x8073 + +typedef void (GLAPIENTRY * PFNGLTEXIMAGE3DEXTPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); + +#define glTexImage3DEXT GLEW_GET_FUN(__glewTexImage3DEXT) + +#define GLEW_EXT_texture3D GLEW_GET_VAR(__GLEW_EXT_texture3D) + +#endif /* GL_EXT_texture3D */ + +/* -------------------------- GL_EXT_texture_array ------------------------- */ + +#ifndef GL_EXT_texture_array +#define GL_EXT_texture_array 1 + +#define GL_COMPARE_REF_DEPTH_TO_TEXTURE_EXT 0x884E +#define GL_MAX_ARRAY_TEXTURE_LAYERS_EXT 0x88FF +#define GL_TEXTURE_1D_ARRAY_EXT 0x8C18 +#define GL_PROXY_TEXTURE_1D_ARRAY_EXT 0x8C19 +#define GL_TEXTURE_2D_ARRAY_EXT 0x8C1A +#define GL_PROXY_TEXTURE_2D_ARRAY_EXT 0x8C1B +#define GL_TEXTURE_BINDING_1D_ARRAY_EXT 0x8C1C +#define GL_TEXTURE_BINDING_2D_ARRAY_EXT 0x8C1D + +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERTEXTURELAYEREXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); + +#define glFramebufferTextureLayerEXT GLEW_GET_FUN(__glewFramebufferTextureLayerEXT) + +#define GLEW_EXT_texture_array GLEW_GET_VAR(__GLEW_EXT_texture_array) + +#endif /* GL_EXT_texture_array */ + +/* ---------------------- GL_EXT_texture_buffer_object --------------------- */ + +#ifndef GL_EXT_texture_buffer_object +#define GL_EXT_texture_buffer_object 1 + +#define GL_TEXTURE_BUFFER_EXT 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_EXT 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_EXT 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT 0x8C2D +#define GL_TEXTURE_BUFFER_FORMAT_EXT 0x8C2E + +typedef void (GLAPIENTRY * PFNGLTEXBUFFEREXTPROC) (GLenum target, GLenum internalformat, GLuint buffer); + +#define glTexBufferEXT GLEW_GET_FUN(__glewTexBufferEXT) + +#define GLEW_EXT_texture_buffer_object GLEW_GET_VAR(__GLEW_EXT_texture_buffer_object) + +#endif /* GL_EXT_texture_buffer_object */ + +/* -------------- GL_EXT_texture_compression_astc_decode_mode -------------- */ + +#ifndef GL_EXT_texture_compression_astc_decode_mode +#define GL_EXT_texture_compression_astc_decode_mode 1 + +#define GL_TEXTURE_ASTC_DECODE_PRECISION_EXT 0x8F69 + +#define GLEW_EXT_texture_compression_astc_decode_mode GLEW_GET_VAR(__GLEW_EXT_texture_compression_astc_decode_mode) + +#endif /* GL_EXT_texture_compression_astc_decode_mode */ + +/* ----------- GL_EXT_texture_compression_astc_decode_mode_rgb9e5 ---------- */ + +#ifndef GL_EXT_texture_compression_astc_decode_mode_rgb9e5 +#define GL_EXT_texture_compression_astc_decode_mode_rgb9e5 1 + +#define GL_TEXTURE_ASTC_DECODE_PRECISION_EXT 0x8F69 + +#define GLEW_EXT_texture_compression_astc_decode_mode_rgb9e5 GLEW_GET_VAR(__GLEW_EXT_texture_compression_astc_decode_mode_rgb9e5) + +#endif /* GL_EXT_texture_compression_astc_decode_mode_rgb9e5 */ + +/* -------------------- GL_EXT_texture_compression_bptc -------------------- */ + +#ifndef GL_EXT_texture_compression_bptc +#define GL_EXT_texture_compression_bptc 1 + +#define GL_COMPRESSED_RGBA_BPTC_UNORM_EXT 0x8E8C +#define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_EXT 0x8E8D +#define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_EXT 0x8E8E +#define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_EXT 0x8E8F + +#define GLEW_EXT_texture_compression_bptc GLEW_GET_VAR(__GLEW_EXT_texture_compression_bptc) + +#endif /* GL_EXT_texture_compression_bptc */ + +/* -------------------- GL_EXT_texture_compression_dxt1 -------------------- */ + +#ifndef GL_EXT_texture_compression_dxt1 +#define GL_EXT_texture_compression_dxt1 1 + +#define GLEW_EXT_texture_compression_dxt1 GLEW_GET_VAR(__GLEW_EXT_texture_compression_dxt1) + +#endif /* GL_EXT_texture_compression_dxt1 */ + +/* -------------------- GL_EXT_texture_compression_latc -------------------- */ + +#ifndef GL_EXT_texture_compression_latc +#define GL_EXT_texture_compression_latc 1 + +#define GL_COMPRESSED_LUMINANCE_LATC1_EXT 0x8C70 +#define GL_COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT 0x8C71 +#define GL_COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT 0x8C72 +#define GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT 0x8C73 + +#define GLEW_EXT_texture_compression_latc GLEW_GET_VAR(__GLEW_EXT_texture_compression_latc) + +#endif /* GL_EXT_texture_compression_latc */ + +/* -------------------- GL_EXT_texture_compression_rgtc -------------------- */ + +#ifndef GL_EXT_texture_compression_rgtc +#define GL_EXT_texture_compression_rgtc 1 + +#define GL_COMPRESSED_RED_RGTC1_EXT 0x8DBB +#define GL_COMPRESSED_SIGNED_RED_RGTC1_EXT 0x8DBC +#define GL_COMPRESSED_RED_GREEN_RGTC2_EXT 0x8DBD +#define GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT 0x8DBE + +#define GLEW_EXT_texture_compression_rgtc GLEW_GET_VAR(__GLEW_EXT_texture_compression_rgtc) + +#endif /* GL_EXT_texture_compression_rgtc */ + +/* -------------------- GL_EXT_texture_compression_s3tc -------------------- */ + +#ifndef GL_EXT_texture_compression_s3tc +#define GL_EXT_texture_compression_s3tc 1 + +#define GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0 +#define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_EXT 0x83F2 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_EXT 0x83F3 + +#define GLEW_EXT_texture_compression_s3tc GLEW_GET_VAR(__GLEW_EXT_texture_compression_s3tc) + +#endif /* GL_EXT_texture_compression_s3tc */ + +/* ------------------------ GL_EXT_texture_cube_map ------------------------ */ + +#ifndef GL_EXT_texture_cube_map +#define GL_EXT_texture_cube_map 1 + +#define GL_NORMAL_MAP_EXT 0x8511 +#define GL_REFLECTION_MAP_EXT 0x8512 +#define GL_TEXTURE_CUBE_MAP_EXT 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP_EXT 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X_EXT 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X_EXT 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y_EXT 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z_EXT 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP_EXT 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE_EXT 0x851C + +#define GLEW_EXT_texture_cube_map GLEW_GET_VAR(__GLEW_EXT_texture_cube_map) + +#endif /* GL_EXT_texture_cube_map */ + +/* --------------------- GL_EXT_texture_cube_map_array --------------------- */ + +#ifndef GL_EXT_texture_cube_map_array +#define GL_EXT_texture_cube_map_array 1 + +#define GL_TEXTURE_CUBE_MAP_ARRAY_EXT 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_EXT 0x900A +#define GL_SAMPLER_CUBE_MAP_ARRAY_EXT 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_EXT 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY_EXT 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_EXT 0x900F +#define GL_IMAGE_CUBE_MAP_ARRAY_EXT 0x9054 +#define GL_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x905F +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x906A + +#define GLEW_EXT_texture_cube_map_array GLEW_GET_VAR(__GLEW_EXT_texture_cube_map_array) + +#endif /* GL_EXT_texture_cube_map_array */ + +/* ----------------------- GL_EXT_texture_edge_clamp ----------------------- */ + +#ifndef GL_EXT_texture_edge_clamp +#define GL_EXT_texture_edge_clamp 1 + +#define GL_CLAMP_TO_EDGE_EXT 0x812F + +#define GLEW_EXT_texture_edge_clamp GLEW_GET_VAR(__GLEW_EXT_texture_edge_clamp) + +#endif /* GL_EXT_texture_edge_clamp */ + +/* --------------------------- GL_EXT_texture_env -------------------------- */ + +#ifndef GL_EXT_texture_env +#define GL_EXT_texture_env 1 + +#define GLEW_EXT_texture_env GLEW_GET_VAR(__GLEW_EXT_texture_env) + +#endif /* GL_EXT_texture_env */ + +/* ------------------------- GL_EXT_texture_env_add ------------------------ */ + +#ifndef GL_EXT_texture_env_add +#define GL_EXT_texture_env_add 1 + +#define GLEW_EXT_texture_env_add GLEW_GET_VAR(__GLEW_EXT_texture_env_add) + +#endif /* GL_EXT_texture_env_add */ + +/* ----------------------- GL_EXT_texture_env_combine ---------------------- */ + +#ifndef GL_EXT_texture_env_combine +#define GL_EXT_texture_env_combine 1 + +#define GL_COMBINE_EXT 0x8570 +#define GL_COMBINE_RGB_EXT 0x8571 +#define GL_COMBINE_ALPHA_EXT 0x8572 +#define GL_RGB_SCALE_EXT 0x8573 +#define GL_ADD_SIGNED_EXT 0x8574 +#define GL_INTERPOLATE_EXT 0x8575 +#define GL_CONSTANT_EXT 0x8576 +#define GL_PRIMARY_COLOR_EXT 0x8577 +#define GL_PREVIOUS_EXT 0x8578 +#define GL_SOURCE0_RGB_EXT 0x8580 +#define GL_SOURCE1_RGB_EXT 0x8581 +#define GL_SOURCE2_RGB_EXT 0x8582 +#define GL_SOURCE0_ALPHA_EXT 0x8588 +#define GL_SOURCE1_ALPHA_EXT 0x8589 +#define GL_SOURCE2_ALPHA_EXT 0x858A +#define GL_OPERAND0_RGB_EXT 0x8590 +#define GL_OPERAND1_RGB_EXT 0x8591 +#define GL_OPERAND2_RGB_EXT 0x8592 +#define GL_OPERAND0_ALPHA_EXT 0x8598 +#define GL_OPERAND1_ALPHA_EXT 0x8599 +#define GL_OPERAND2_ALPHA_EXT 0x859A + +#define GLEW_EXT_texture_env_combine GLEW_GET_VAR(__GLEW_EXT_texture_env_combine) + +#endif /* GL_EXT_texture_env_combine */ + +/* ------------------------ GL_EXT_texture_env_dot3 ------------------------ */ + +#ifndef GL_EXT_texture_env_dot3 +#define GL_EXT_texture_env_dot3 1 + +#define GL_DOT3_RGB_EXT 0x8740 +#define GL_DOT3_RGBA_EXT 0x8741 + +#define GLEW_EXT_texture_env_dot3 GLEW_GET_VAR(__GLEW_EXT_texture_env_dot3) + +#endif /* GL_EXT_texture_env_dot3 */ + +/* ------------------- GL_EXT_texture_filter_anisotropic ------------------- */ + +#ifndef GL_EXT_texture_filter_anisotropic +#define GL_EXT_texture_filter_anisotropic 1 + +#define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE +#define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF + +#define GLEW_EXT_texture_filter_anisotropic GLEW_GET_VAR(__GLEW_EXT_texture_filter_anisotropic) + +#endif /* GL_EXT_texture_filter_anisotropic */ + +/* ---------------------- GL_EXT_texture_filter_minmax --------------------- */ + +#ifndef GL_EXT_texture_filter_minmax +#define GL_EXT_texture_filter_minmax 1 + +#define GL_TEXTURE_REDUCTION_MODE_EXT 0x9366 +#define GL_WEIGHTED_AVERAGE_EXT 0x9367 + +#define GLEW_EXT_texture_filter_minmax GLEW_GET_VAR(__GLEW_EXT_texture_filter_minmax) + +#endif /* GL_EXT_texture_filter_minmax */ + +/* --------------------- GL_EXT_texture_format_BGRA8888 -------------------- */ + +#ifndef GL_EXT_texture_format_BGRA8888 +#define GL_EXT_texture_format_BGRA8888 1 + +#define GL_BGRA_EXT 0x80E1 + +#define GLEW_EXT_texture_format_BGRA8888 GLEW_GET_VAR(__GLEW_EXT_texture_format_BGRA8888) + +#endif /* GL_EXT_texture_format_BGRA8888 */ + +/* ------------------------- GL_EXT_texture_integer ------------------------ */ + +#ifndef GL_EXT_texture_integer +#define GL_EXT_texture_integer 1 + +#define GL_RGBA32UI_EXT 0x8D70 +#define GL_RGB32UI_EXT 0x8D71 +#define GL_ALPHA32UI_EXT 0x8D72 +#define GL_INTENSITY32UI_EXT 0x8D73 +#define GL_LUMINANCE32UI_EXT 0x8D74 +#define GL_LUMINANCE_ALPHA32UI_EXT 0x8D75 +#define GL_RGBA16UI_EXT 0x8D76 +#define GL_RGB16UI_EXT 0x8D77 +#define GL_ALPHA16UI_EXT 0x8D78 +#define GL_INTENSITY16UI_EXT 0x8D79 +#define GL_LUMINANCE16UI_EXT 0x8D7A +#define GL_LUMINANCE_ALPHA16UI_EXT 0x8D7B +#define GL_RGBA8UI_EXT 0x8D7C +#define GL_RGB8UI_EXT 0x8D7D +#define GL_ALPHA8UI_EXT 0x8D7E +#define GL_INTENSITY8UI_EXT 0x8D7F +#define GL_LUMINANCE8UI_EXT 0x8D80 +#define GL_LUMINANCE_ALPHA8UI_EXT 0x8D81 +#define GL_RGBA32I_EXT 0x8D82 +#define GL_RGB32I_EXT 0x8D83 +#define GL_ALPHA32I_EXT 0x8D84 +#define GL_INTENSITY32I_EXT 0x8D85 +#define GL_LUMINANCE32I_EXT 0x8D86 +#define GL_LUMINANCE_ALPHA32I_EXT 0x8D87 +#define GL_RGBA16I_EXT 0x8D88 +#define GL_RGB16I_EXT 0x8D89 +#define GL_ALPHA16I_EXT 0x8D8A +#define GL_INTENSITY16I_EXT 0x8D8B +#define GL_LUMINANCE16I_EXT 0x8D8C +#define GL_LUMINANCE_ALPHA16I_EXT 0x8D8D +#define GL_RGBA8I_EXT 0x8D8E +#define GL_RGB8I_EXT 0x8D8F +#define GL_ALPHA8I_EXT 0x8D90 +#define GL_INTENSITY8I_EXT 0x8D91 +#define GL_LUMINANCE8I_EXT 0x8D92 +#define GL_LUMINANCE_ALPHA8I_EXT 0x8D93 +#define GL_RED_INTEGER_EXT 0x8D94 +#define GL_GREEN_INTEGER_EXT 0x8D95 +#define GL_BLUE_INTEGER_EXT 0x8D96 +#define GL_ALPHA_INTEGER_EXT 0x8D97 +#define GL_RGB_INTEGER_EXT 0x8D98 +#define GL_RGBA_INTEGER_EXT 0x8D99 +#define GL_BGR_INTEGER_EXT 0x8D9A +#define GL_BGRA_INTEGER_EXT 0x8D9B +#define GL_LUMINANCE_INTEGER_EXT 0x8D9C +#define GL_LUMINANCE_ALPHA_INTEGER_EXT 0x8D9D +#define GL_RGBA_INTEGER_MODE_EXT 0x8D9E + +typedef void (GLAPIENTRY * PFNGLCLEARCOLORIIEXTPROC) (GLint red, GLint green, GLint blue, GLint alpha); +typedef void (GLAPIENTRY * PFNGLCLEARCOLORIUIEXTPROC) (GLuint red, GLuint green, GLuint blue, GLuint alpha); +typedef void (GLAPIENTRY * PFNGLGETTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GLAPIENTRY * PFNGLGETTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (GLAPIENTRY * PFNGLTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (GLAPIENTRY * PFNGLTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, const GLuint *params); + +#define glClearColorIiEXT GLEW_GET_FUN(__glewClearColorIiEXT) +#define glClearColorIuiEXT GLEW_GET_FUN(__glewClearColorIuiEXT) +#define glGetTexParameterIivEXT GLEW_GET_FUN(__glewGetTexParameterIivEXT) +#define glGetTexParameterIuivEXT GLEW_GET_FUN(__glewGetTexParameterIuivEXT) +#define glTexParameterIivEXT GLEW_GET_FUN(__glewTexParameterIivEXT) +#define glTexParameterIuivEXT GLEW_GET_FUN(__glewTexParameterIuivEXT) + +#define GLEW_EXT_texture_integer GLEW_GET_VAR(__GLEW_EXT_texture_integer) + +#endif /* GL_EXT_texture_integer */ + +/* ------------------------ GL_EXT_texture_lod_bias ------------------------ */ + +#ifndef GL_EXT_texture_lod_bias +#define GL_EXT_texture_lod_bias 1 + +#define GL_MAX_TEXTURE_LOD_BIAS_EXT 0x84FD +#define GL_TEXTURE_FILTER_CONTROL_EXT 0x8500 +#define GL_TEXTURE_LOD_BIAS_EXT 0x8501 + +#define GLEW_EXT_texture_lod_bias GLEW_GET_VAR(__GLEW_EXT_texture_lod_bias) + +#endif /* GL_EXT_texture_lod_bias */ + +/* ---------------------- GL_EXT_texture_mirror_clamp ---------------------- */ + +#ifndef GL_EXT_texture_mirror_clamp +#define GL_EXT_texture_mirror_clamp 1 + +#define GL_MIRROR_CLAMP_EXT 0x8742 +#define GL_MIRROR_CLAMP_TO_EDGE_EXT 0x8743 +#define GL_MIRROR_CLAMP_TO_BORDER_EXT 0x8912 + +#define GLEW_EXT_texture_mirror_clamp GLEW_GET_VAR(__GLEW_EXT_texture_mirror_clamp) + +#endif /* GL_EXT_texture_mirror_clamp */ + +/* ------------------------- GL_EXT_texture_norm16 ------------------------- */ + +#ifndef GL_EXT_texture_norm16 +#define GL_EXT_texture_norm16 1 + +#define GL_RGB16_EXT 0x8054 +#define GL_RGBA16_EXT 0x805B +#define GL_R16_EXT 0x822A +#define GL_RG16_EXT 0x822C +#define GL_R16_SNORM_EXT 0x8F98 +#define GL_RG16_SNORM_EXT 0x8F99 +#define GL_RGB16_SNORM_EXT 0x8F9A +#define GL_RGBA16_SNORM_EXT 0x8F9B + +#define GLEW_EXT_texture_norm16 GLEW_GET_VAR(__GLEW_EXT_texture_norm16) + +#endif /* GL_EXT_texture_norm16 */ + +/* ------------------------- GL_EXT_texture_object ------------------------- */ + +#ifndef GL_EXT_texture_object +#define GL_EXT_texture_object 1 + +#define GL_TEXTURE_PRIORITY_EXT 0x8066 +#define GL_TEXTURE_RESIDENT_EXT 0x8067 +#define GL_TEXTURE_1D_BINDING_EXT 0x8068 +#define GL_TEXTURE_2D_BINDING_EXT 0x8069 +#define GL_TEXTURE_3D_BINDING_EXT 0x806A + +typedef GLboolean (GLAPIENTRY * PFNGLARETEXTURESRESIDENTEXTPROC) (GLsizei n, const GLuint* textures, GLboolean* residences); +typedef void (GLAPIENTRY * PFNGLBINDTEXTUREEXTPROC) (GLenum target, GLuint texture); +typedef void (GLAPIENTRY * PFNGLDELETETEXTURESEXTPROC) (GLsizei n, const GLuint* textures); +typedef void (GLAPIENTRY * PFNGLGENTEXTURESEXTPROC) (GLsizei n, GLuint* textures); +typedef GLboolean (GLAPIENTRY * PFNGLISTEXTUREEXTPROC) (GLuint texture); +typedef void (GLAPIENTRY * PFNGLPRIORITIZETEXTURESEXTPROC) (GLsizei n, const GLuint* textures, const GLclampf* priorities); + +#define glAreTexturesResidentEXT GLEW_GET_FUN(__glewAreTexturesResidentEXT) +#define glBindTextureEXT GLEW_GET_FUN(__glewBindTextureEXT) +#define glDeleteTexturesEXT GLEW_GET_FUN(__glewDeleteTexturesEXT) +#define glGenTexturesEXT GLEW_GET_FUN(__glewGenTexturesEXT) +#define glIsTextureEXT GLEW_GET_FUN(__glewIsTextureEXT) +#define glPrioritizeTexturesEXT GLEW_GET_FUN(__glewPrioritizeTexturesEXT) + +#define GLEW_EXT_texture_object GLEW_GET_VAR(__GLEW_EXT_texture_object) + +#endif /* GL_EXT_texture_object */ + +/* --------------------- GL_EXT_texture_perturb_normal --------------------- */ + +#ifndef GL_EXT_texture_perturb_normal +#define GL_EXT_texture_perturb_normal 1 + +#define GL_PERTURB_EXT 0x85AE +#define GL_TEXTURE_NORMAL_EXT 0x85AF + +typedef void (GLAPIENTRY * PFNGLTEXTURENORMALEXTPROC) (GLenum mode); + +#define glTextureNormalEXT GLEW_GET_FUN(__glewTextureNormalEXT) + +#define GLEW_EXT_texture_perturb_normal GLEW_GET_VAR(__GLEW_EXT_texture_perturb_normal) + +#endif /* GL_EXT_texture_perturb_normal */ + +/* ------------------------ GL_EXT_texture_rectangle ----------------------- */ + +#ifndef GL_EXT_texture_rectangle +#define GL_EXT_texture_rectangle 1 + +#define GL_TEXTURE_RECTANGLE_EXT 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE_EXT 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE_EXT 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE_EXT 0x84F8 + +#define GLEW_EXT_texture_rectangle GLEW_GET_VAR(__GLEW_EXT_texture_rectangle) + +#endif /* GL_EXT_texture_rectangle */ + +/* --------------------------- GL_EXT_texture_rg --------------------------- */ + +#ifndef GL_EXT_texture_rg +#define GL_EXT_texture_rg 1 + +#define GL_RED_EXT 0x1903 +#define GL_RG_EXT 0x8227 +#define GL_R8_EXT 0x8229 +#define GL_RG8_EXT 0x822B + +#define GLEW_EXT_texture_rg GLEW_GET_VAR(__GLEW_EXT_texture_rg) + +#endif /* GL_EXT_texture_rg */ + +/* -------------------------- GL_EXT_texture_sRGB -------------------------- */ + +#ifndef GL_EXT_texture_sRGB +#define GL_EXT_texture_sRGB 1 + +#define GL_SRGB_EXT 0x8C40 +#define GL_SRGB8_EXT 0x8C41 +#define GL_SRGB_ALPHA_EXT 0x8C42 +#define GL_SRGB8_ALPHA8_EXT 0x8C43 +#define GL_SLUMINANCE_ALPHA_EXT 0x8C44 +#define GL_SLUMINANCE8_ALPHA8_EXT 0x8C45 +#define GL_SLUMINANCE_EXT 0x8C46 +#define GL_SLUMINANCE8_EXT 0x8C47 +#define GL_COMPRESSED_SRGB_EXT 0x8C48 +#define GL_COMPRESSED_SRGB_ALPHA_EXT 0x8C49 +#define GL_COMPRESSED_SLUMINANCE_EXT 0x8C4A +#define GL_COMPRESSED_SLUMINANCE_ALPHA_EXT 0x8C4B +#define GL_COMPRESSED_SRGB_S3TC_DXT1_EXT 0x8C4C +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT 0x8C4D +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT 0x8C4E +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT 0x8C4F + +#define GLEW_EXT_texture_sRGB GLEW_GET_VAR(__GLEW_EXT_texture_sRGB) + +#endif /* GL_EXT_texture_sRGB */ + +/* ------------------------- GL_EXT_texture_sRGB_R8 ------------------------ */ + +#ifndef GL_EXT_texture_sRGB_R8 +#define GL_EXT_texture_sRGB_R8 1 + +#define GL_SR8_EXT 0x8FBD + +#define GLEW_EXT_texture_sRGB_R8 GLEW_GET_VAR(__GLEW_EXT_texture_sRGB_R8) + +#endif /* GL_EXT_texture_sRGB_R8 */ + +/* ------------------------ GL_EXT_texture_sRGB_RG8 ------------------------ */ + +#ifndef GL_EXT_texture_sRGB_RG8 +#define GL_EXT_texture_sRGB_RG8 1 + +#define GL_SRG8_EXT 0x8FBE + +#define GLEW_EXT_texture_sRGB_RG8 GLEW_GET_VAR(__GLEW_EXT_texture_sRGB_RG8) + +#endif /* GL_EXT_texture_sRGB_RG8 */ + +/* ----------------------- GL_EXT_texture_sRGB_decode ---------------------- */ + +#ifndef GL_EXT_texture_sRGB_decode +#define GL_EXT_texture_sRGB_decode 1 + +#define GL_TEXTURE_SRGB_DECODE_EXT 0x8A48 +#define GL_DECODE_EXT 0x8A49 +#define GL_SKIP_DECODE_EXT 0x8A4A + +#define GLEW_EXT_texture_sRGB_decode GLEW_GET_VAR(__GLEW_EXT_texture_sRGB_decode) + +#endif /* GL_EXT_texture_sRGB_decode */ + +/* --------------------- GL_EXT_texture_shared_exponent -------------------- */ + +#ifndef GL_EXT_texture_shared_exponent +#define GL_EXT_texture_shared_exponent 1 + +#define GL_RGB9_E5_EXT 0x8C3D +#define GL_UNSIGNED_INT_5_9_9_9_REV_EXT 0x8C3E +#define GL_TEXTURE_SHARED_SIZE_EXT 0x8C3F + +#define GLEW_EXT_texture_shared_exponent GLEW_GET_VAR(__GLEW_EXT_texture_shared_exponent) + +#endif /* GL_EXT_texture_shared_exponent */ + +/* -------------------------- GL_EXT_texture_snorm ------------------------- */ + +#ifndef GL_EXT_texture_snorm +#define GL_EXT_texture_snorm 1 + +#define GL_RED_SNORM 0x8F90 +#define GL_RG_SNORM 0x8F91 +#define GL_RGB_SNORM 0x8F92 +#define GL_RGBA_SNORM 0x8F93 +#define GL_R8_SNORM 0x8F94 +#define GL_RG8_SNORM 0x8F95 +#define GL_RGB8_SNORM 0x8F96 +#define GL_RGBA8_SNORM 0x8F97 +#define GL_R16_SNORM 0x8F98 +#define GL_RG16_SNORM 0x8F99 +#define GL_RGB16_SNORM 0x8F9A +#define GL_RGBA16_SNORM 0x8F9B +#define GL_SIGNED_NORMALIZED 0x8F9C +#define GL_ALPHA_SNORM 0x9010 +#define GL_LUMINANCE_SNORM 0x9011 +#define GL_LUMINANCE_ALPHA_SNORM 0x9012 +#define GL_INTENSITY_SNORM 0x9013 +#define GL_ALPHA8_SNORM 0x9014 +#define GL_LUMINANCE8_SNORM 0x9015 +#define GL_LUMINANCE8_ALPHA8_SNORM 0x9016 +#define GL_INTENSITY8_SNORM 0x9017 +#define GL_ALPHA16_SNORM 0x9018 +#define GL_LUMINANCE16_SNORM 0x9019 +#define GL_LUMINANCE16_ALPHA16_SNORM 0x901A +#define GL_INTENSITY16_SNORM 0x901B + +#define GLEW_EXT_texture_snorm GLEW_GET_VAR(__GLEW_EXT_texture_snorm) + +#endif /* GL_EXT_texture_snorm */ + +/* ------------------------- GL_EXT_texture_storage ------------------------ */ + +#ifndef GL_EXT_texture_storage +#define GL_EXT_texture_storage 1 + +#define GL_ALPHA8_EXT 0x803C +#define GL_LUMINANCE8_EXT 0x8040 +#define GL_LUMINANCE8_ALPHA8_EXT 0x8045 +#define GL_RGB10_EXT 0x8052 +#define GL_RGB10_A2_EXT 0x8059 +#define GL_R8_EXT 0x8229 +#define GL_RG8_EXT 0x822B +#define GL_R16F_EXT 0x822D +#define GL_R32F_EXT 0x822E +#define GL_RG16F_EXT 0x822F +#define GL_RG32F_EXT 0x8230 +#define GL_RGBA32F_EXT 0x8814 +#define GL_RGB32F_EXT 0x8815 +#define GL_ALPHA32F_EXT 0x8816 +#define GL_LUMINANCE32F_EXT 0x8818 +#define GL_LUMINANCE_ALPHA32F_EXT 0x8819 +#define GL_RGBA16F_EXT 0x881A +#define GL_RGB16F_EXT 0x881B +#define GL_ALPHA16F_EXT 0x881C +#define GL_LUMINANCE16F_EXT 0x881E +#define GL_LUMINANCE_ALPHA16F_EXT 0x881F +#define GL_RGB_RAW_422_APPLE 0x8A51 +#define GL_TEXTURE_IMMUTABLE_FORMAT_EXT 0x912F +#define GL_BGRA8_EXT 0x93A1 + +typedef void (GLAPIENTRY * PFNGLTEXSTORAGE1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (GLAPIENTRY * PFNGLTEXSTORAGE2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLTEXSTORAGE3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (GLAPIENTRY * PFNGLTEXTURESTORAGE1DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (GLAPIENTRY * PFNGLTEXTURESTORAGE2DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLTEXTURESTORAGE3DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); + +#define glTexStorage1DEXT GLEW_GET_FUN(__glewTexStorage1DEXT) +#define glTexStorage2DEXT GLEW_GET_FUN(__glewTexStorage2DEXT) +#define glTexStorage3DEXT GLEW_GET_FUN(__glewTexStorage3DEXT) +#define glTextureStorage1DEXT GLEW_GET_FUN(__glewTextureStorage1DEXT) +#define glTextureStorage2DEXT GLEW_GET_FUN(__glewTextureStorage2DEXT) +#define glTextureStorage3DEXT GLEW_GET_FUN(__glewTextureStorage3DEXT) + +#define GLEW_EXT_texture_storage GLEW_GET_VAR(__GLEW_EXT_texture_storage) + +#endif /* GL_EXT_texture_storage */ + +/* ------------------------- GL_EXT_texture_swizzle ------------------------ */ + +#ifndef GL_EXT_texture_swizzle +#define GL_EXT_texture_swizzle 1 + +#define GL_TEXTURE_SWIZZLE_R_EXT 0x8E42 +#define GL_TEXTURE_SWIZZLE_G_EXT 0x8E43 +#define GL_TEXTURE_SWIZZLE_B_EXT 0x8E44 +#define GL_TEXTURE_SWIZZLE_A_EXT 0x8E45 +#define GL_TEXTURE_SWIZZLE_RGBA_EXT 0x8E46 + +#define GLEW_EXT_texture_swizzle GLEW_GET_VAR(__GLEW_EXT_texture_swizzle) + +#endif /* GL_EXT_texture_swizzle */ + +/* ------------------- GL_EXT_texture_type_2_10_10_10_REV ------------------ */ + +#ifndef GL_EXT_texture_type_2_10_10_10_REV +#define GL_EXT_texture_type_2_10_10_10_REV 1 + +#define GL_UNSIGNED_INT_2_10_10_10_REV_EXT 0x8368 + +#define GLEW_EXT_texture_type_2_10_10_10_REV GLEW_GET_VAR(__GLEW_EXT_texture_type_2_10_10_10_REV) + +#endif /* GL_EXT_texture_type_2_10_10_10_REV */ + +/* -------------------------- GL_EXT_texture_view -------------------------- */ + +#ifndef GL_EXT_texture_view +#define GL_EXT_texture_view 1 + +#define GL_TEXTURE_VIEW_MIN_LEVEL_EXT 0x82DB +#define GL_TEXTURE_VIEW_NUM_LEVELS_EXT 0x82DC +#define GL_TEXTURE_VIEW_MIN_LAYER_EXT 0x82DD +#define GL_TEXTURE_VIEW_NUM_LAYERS_EXT 0x82DE +#define GL_TEXTURE_IMMUTABLE_LEVELS 0x82DF + +typedef void (GLAPIENTRY * PFNGLTEXTUREVIEWEXTPROC) (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); + +#define glTextureViewEXT GLEW_GET_FUN(__glewTextureViewEXT) + +#define GLEW_EXT_texture_view GLEW_GET_VAR(__GLEW_EXT_texture_view) + +#endif /* GL_EXT_texture_view */ + +/* --------------------------- GL_EXT_timer_query -------------------------- */ + +#ifndef GL_EXT_timer_query +#define GL_EXT_timer_query 1 + +#define GL_TIME_ELAPSED_EXT 0x88BF + +typedef void (GLAPIENTRY * PFNGLGETQUERYOBJECTI64VEXTPROC) (GLuint id, GLenum pname, GLint64EXT *params); +typedef void (GLAPIENTRY * PFNGLGETQUERYOBJECTUI64VEXTPROC) (GLuint id, GLenum pname, GLuint64EXT *params); + +#define glGetQueryObjecti64vEXT GLEW_GET_FUN(__glewGetQueryObjecti64vEXT) +#define glGetQueryObjectui64vEXT GLEW_GET_FUN(__glewGetQueryObjectui64vEXT) + +#define GLEW_EXT_timer_query GLEW_GET_VAR(__GLEW_EXT_timer_query) + +#endif /* GL_EXT_timer_query */ + +/* ----------------------- GL_EXT_transform_feedback ----------------------- */ + +#ifndef GL_EXT_transform_feedback +#define GL_EXT_transform_feedback 1 + +#define GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH_EXT 0x8C76 +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE_EXT 0x8C7F +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_EXT 0x8C80 +#define GL_TRANSFORM_FEEDBACK_VARYINGS_EXT 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_START_EXT 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_EXT 0x8C85 +#define GL_PRIMITIVES_GENERATED_EXT 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_EXT 0x8C88 +#define GL_RASTERIZER_DISCARD_EXT 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_EXT 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_EXT 0x8C8B +#define GL_INTERLEAVED_ATTRIBS_EXT 0x8C8C +#define GL_SEPARATE_ATTRIBS_EXT 0x8C8D +#define GL_TRANSFORM_FEEDBACK_BUFFER_EXT 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_EXT 0x8C8F + +typedef void (GLAPIENTRY * PFNGLBEGINTRANSFORMFEEDBACKEXTPROC) (GLenum primitiveMode); +typedef void (GLAPIENTRY * PFNGLBINDBUFFERBASEEXTPROC) (GLenum target, GLuint index, GLuint buffer); +typedef void (GLAPIENTRY * PFNGLBINDBUFFEROFFSETEXTPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +typedef void (GLAPIENTRY * PFNGLBINDBUFFERRANGEEXTPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (GLAPIENTRY * PFNGLENDTRANSFORMFEEDBACKEXTPROC) (void); +typedef void (GLAPIENTRY * PFNGLGETTRANSFORMFEEDBACKVARYINGEXTPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei* length, GLsizei *size, GLenum *type, GLchar *name); +typedef void (GLAPIENTRY * PFNGLTRANSFORMFEEDBACKVARYINGSEXTPROC) (GLuint program, GLsizei count, const GLchar * const* varyings, GLenum bufferMode); + +#define glBeginTransformFeedbackEXT GLEW_GET_FUN(__glewBeginTransformFeedbackEXT) +#define glBindBufferBaseEXT GLEW_GET_FUN(__glewBindBufferBaseEXT) +#define glBindBufferOffsetEXT GLEW_GET_FUN(__glewBindBufferOffsetEXT) +#define glBindBufferRangeEXT GLEW_GET_FUN(__glewBindBufferRangeEXT) +#define glEndTransformFeedbackEXT GLEW_GET_FUN(__glewEndTransformFeedbackEXT) +#define glGetTransformFeedbackVaryingEXT GLEW_GET_FUN(__glewGetTransformFeedbackVaryingEXT) +#define glTransformFeedbackVaryingsEXT GLEW_GET_FUN(__glewTransformFeedbackVaryingsEXT) + +#define GLEW_EXT_transform_feedback GLEW_GET_VAR(__GLEW_EXT_transform_feedback) + +#endif /* GL_EXT_transform_feedback */ + +/* ------------------------- GL_EXT_unpack_subimage ------------------------ */ + +#ifndef GL_EXT_unpack_subimage +#define GL_EXT_unpack_subimage 1 + +#define GL_UNPACK_ROW_LENGTH_EXT 0x0CF2 +#define GL_UNPACK_SKIP_ROWS_EXT 0x0CF3 +#define GL_UNPACK_SKIP_PIXELS_EXT 0x0CF4 + +#define GLEW_EXT_unpack_subimage GLEW_GET_VAR(__GLEW_EXT_unpack_subimage) + +#endif /* GL_EXT_unpack_subimage */ + +/* -------------------------- GL_EXT_vertex_array -------------------------- */ + +#ifndef GL_EXT_vertex_array +#define GL_EXT_vertex_array 1 + +#define GL_DOUBLE_EXT 0x140A +#define GL_VERTEX_ARRAY_EXT 0x8074 +#define GL_NORMAL_ARRAY_EXT 0x8075 +#define GL_COLOR_ARRAY_EXT 0x8076 +#define GL_INDEX_ARRAY_EXT 0x8077 +#define GL_TEXTURE_COORD_ARRAY_EXT 0x8078 +#define GL_EDGE_FLAG_ARRAY_EXT 0x8079 +#define GL_VERTEX_ARRAY_SIZE_EXT 0x807A +#define GL_VERTEX_ARRAY_TYPE_EXT 0x807B +#define GL_VERTEX_ARRAY_STRIDE_EXT 0x807C +#define GL_VERTEX_ARRAY_COUNT_EXT 0x807D +#define GL_NORMAL_ARRAY_TYPE_EXT 0x807E +#define GL_NORMAL_ARRAY_STRIDE_EXT 0x807F +#define GL_NORMAL_ARRAY_COUNT_EXT 0x8080 +#define GL_COLOR_ARRAY_SIZE_EXT 0x8081 +#define GL_COLOR_ARRAY_TYPE_EXT 0x8082 +#define GL_COLOR_ARRAY_STRIDE_EXT 0x8083 +#define GL_COLOR_ARRAY_COUNT_EXT 0x8084 +#define GL_INDEX_ARRAY_TYPE_EXT 0x8085 +#define GL_INDEX_ARRAY_STRIDE_EXT 0x8086 +#define GL_INDEX_ARRAY_COUNT_EXT 0x8087 +#define GL_TEXTURE_COORD_ARRAY_SIZE_EXT 0x8088 +#define GL_TEXTURE_COORD_ARRAY_TYPE_EXT 0x8089 +#define GL_TEXTURE_COORD_ARRAY_STRIDE_EXT 0x808A +#define GL_TEXTURE_COORD_ARRAY_COUNT_EXT 0x808B +#define GL_EDGE_FLAG_ARRAY_STRIDE_EXT 0x808C +#define GL_EDGE_FLAG_ARRAY_COUNT_EXT 0x808D +#define GL_VERTEX_ARRAY_POINTER_EXT 0x808E +#define GL_NORMAL_ARRAY_POINTER_EXT 0x808F +#define GL_COLOR_ARRAY_POINTER_EXT 0x8090 +#define GL_INDEX_ARRAY_POINTER_EXT 0x8091 +#define GL_TEXTURE_COORD_ARRAY_POINTER_EXT 0x8092 +#define GL_EDGE_FLAG_ARRAY_POINTER_EXT 0x8093 + +typedef void (GLAPIENTRY * PFNGLARRAYELEMENTEXTPROC) (GLint i); +typedef void (GLAPIENTRY * PFNGLCOLORPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (GLAPIENTRY * PFNGLDRAWARRAYSEXTPROC) (GLenum mode, GLint first, GLsizei count); +typedef void (GLAPIENTRY * PFNGLEDGEFLAGPOINTEREXTPROC) (GLsizei stride, GLsizei count, const GLboolean* pointer); +typedef void (GLAPIENTRY * PFNGLINDEXPOINTEREXTPROC) (GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (GLAPIENTRY * PFNGLNORMALPOINTEREXTPROC) (GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (GLAPIENTRY * PFNGLTEXCOORDPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); +typedef void (GLAPIENTRY * PFNGLVERTEXPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, GLsizei count, const void *pointer); + +#define glArrayElementEXT GLEW_GET_FUN(__glewArrayElementEXT) +#define glColorPointerEXT GLEW_GET_FUN(__glewColorPointerEXT) +#define glDrawArraysEXT GLEW_GET_FUN(__glewDrawArraysEXT) +#define glEdgeFlagPointerEXT GLEW_GET_FUN(__glewEdgeFlagPointerEXT) +#define glIndexPointerEXT GLEW_GET_FUN(__glewIndexPointerEXT) +#define glNormalPointerEXT GLEW_GET_FUN(__glewNormalPointerEXT) +#define glTexCoordPointerEXT GLEW_GET_FUN(__glewTexCoordPointerEXT) +#define glVertexPointerEXT GLEW_GET_FUN(__glewVertexPointerEXT) + +#define GLEW_EXT_vertex_array GLEW_GET_VAR(__GLEW_EXT_vertex_array) + +#endif /* GL_EXT_vertex_array */ + +/* ------------------------ GL_EXT_vertex_array_bgra ----------------------- */ + +#ifndef GL_EXT_vertex_array_bgra +#define GL_EXT_vertex_array_bgra 1 + +#define GL_BGRA 0x80E1 + +#define GLEW_EXT_vertex_array_bgra GLEW_GET_VAR(__GLEW_EXT_vertex_array_bgra) + +#endif /* GL_EXT_vertex_array_bgra */ + +/* ----------------------- GL_EXT_vertex_array_setXXX ---------------------- */ + +#ifndef GL_EXT_vertex_array_setXXX +#define GL_EXT_vertex_array_setXXX 1 + +typedef void (GLAPIENTRY * PFNGLBINDARRAYSETEXTPROC) (const void *arrayset); +typedef const void * (GLAPIENTRY * PFNGLCREATEARRAYSETEXTPROC) (void); +typedef void (GLAPIENTRY * PFNGLDELETEARRAYSETSEXTPROC) (GLsizei n, const void *arrayset[]); + +#define glBindArraySetEXT GLEW_GET_FUN(__glewBindArraySetEXT) +#define glCreateArraySetExt GLEW_GET_FUN(__glewCreateArraySetExt) +#define glDeleteArraySetsEXT GLEW_GET_FUN(__glewDeleteArraySetsEXT) + +#define GLEW_EXT_vertex_array_setXXX GLEW_GET_VAR(__GLEW_EXT_vertex_array_setXXX) + +#endif /* GL_EXT_vertex_array_setXXX */ + +/* ----------------------- GL_EXT_vertex_attrib_64bit ---------------------- */ + +#ifndef GL_EXT_vertex_attrib_64bit +#define GL_EXT_vertex_attrib_64bit 1 + +#define GL_DOUBLE_MAT2_EXT 0x8F46 +#define GL_DOUBLE_MAT3_EXT 0x8F47 +#define GL_DOUBLE_MAT4_EXT 0x8F48 +#define GL_DOUBLE_MAT2x3_EXT 0x8F49 +#define GL_DOUBLE_MAT2x4_EXT 0x8F4A +#define GL_DOUBLE_MAT3x2_EXT 0x8F4B +#define GL_DOUBLE_MAT3x4_EXT 0x8F4C +#define GL_DOUBLE_MAT4x2_EXT 0x8F4D +#define GL_DOUBLE_MAT4x3_EXT 0x8F4E +#define GL_DOUBLE_VEC2_EXT 0x8FFC +#define GL_DOUBLE_VEC3_EXT 0x8FFD +#define GL_DOUBLE_VEC4_EXT 0x8FFE + +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBLDVEXTPROC) (GLuint index, GLenum pname, GLdouble* params); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYVERTEXATTRIBLOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL1DEXTPROC) (GLuint index, GLdouble x); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL1DVEXTPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL2DEXTPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL2DVEXTPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL3DEXTPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL3DVEXTPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL4DEXTPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL4DVEXTPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBLPOINTEREXTPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); + +#define glGetVertexAttribLdvEXT GLEW_GET_FUN(__glewGetVertexAttribLdvEXT) +#define glVertexArrayVertexAttribLOffsetEXT GLEW_GET_FUN(__glewVertexArrayVertexAttribLOffsetEXT) +#define glVertexAttribL1dEXT GLEW_GET_FUN(__glewVertexAttribL1dEXT) +#define glVertexAttribL1dvEXT GLEW_GET_FUN(__glewVertexAttribL1dvEXT) +#define glVertexAttribL2dEXT GLEW_GET_FUN(__glewVertexAttribL2dEXT) +#define glVertexAttribL2dvEXT GLEW_GET_FUN(__glewVertexAttribL2dvEXT) +#define glVertexAttribL3dEXT GLEW_GET_FUN(__glewVertexAttribL3dEXT) +#define glVertexAttribL3dvEXT GLEW_GET_FUN(__glewVertexAttribL3dvEXT) +#define glVertexAttribL4dEXT GLEW_GET_FUN(__glewVertexAttribL4dEXT) +#define glVertexAttribL4dvEXT GLEW_GET_FUN(__glewVertexAttribL4dvEXT) +#define glVertexAttribLPointerEXT GLEW_GET_FUN(__glewVertexAttribLPointerEXT) + +#define GLEW_EXT_vertex_attrib_64bit GLEW_GET_VAR(__GLEW_EXT_vertex_attrib_64bit) + +#endif /* GL_EXT_vertex_attrib_64bit */ + +/* -------------------------- GL_EXT_vertex_shader ------------------------- */ + +#ifndef GL_EXT_vertex_shader +#define GL_EXT_vertex_shader 1 + +#define GL_VERTEX_SHADER_EXT 0x8780 +#define GL_VERTEX_SHADER_BINDING_EXT 0x8781 +#define GL_OP_INDEX_EXT 0x8782 +#define GL_OP_NEGATE_EXT 0x8783 +#define GL_OP_DOT3_EXT 0x8784 +#define GL_OP_DOT4_EXT 0x8785 +#define GL_OP_MUL_EXT 0x8786 +#define GL_OP_ADD_EXT 0x8787 +#define GL_OP_MADD_EXT 0x8788 +#define GL_OP_FRAC_EXT 0x8789 +#define GL_OP_MAX_EXT 0x878A +#define GL_OP_MIN_EXT 0x878B +#define GL_OP_SET_GE_EXT 0x878C +#define GL_OP_SET_LT_EXT 0x878D +#define GL_OP_CLAMP_EXT 0x878E +#define GL_OP_FLOOR_EXT 0x878F +#define GL_OP_ROUND_EXT 0x8790 +#define GL_OP_EXP_BASE_2_EXT 0x8791 +#define GL_OP_LOG_BASE_2_EXT 0x8792 +#define GL_OP_POWER_EXT 0x8793 +#define GL_OP_RECIP_EXT 0x8794 +#define GL_OP_RECIP_SQRT_EXT 0x8795 +#define GL_OP_SUB_EXT 0x8796 +#define GL_OP_CROSS_PRODUCT_EXT 0x8797 +#define GL_OP_MULTIPLY_MATRIX_EXT 0x8798 +#define GL_OP_MOV_EXT 0x8799 +#define GL_OUTPUT_VERTEX_EXT 0x879A +#define GL_OUTPUT_COLOR0_EXT 0x879B +#define GL_OUTPUT_COLOR1_EXT 0x879C +#define GL_OUTPUT_TEXTURE_COORD0_EXT 0x879D +#define GL_OUTPUT_TEXTURE_COORD1_EXT 0x879E +#define GL_OUTPUT_TEXTURE_COORD2_EXT 0x879F +#define GL_OUTPUT_TEXTURE_COORD3_EXT 0x87A0 +#define GL_OUTPUT_TEXTURE_COORD4_EXT 0x87A1 +#define GL_OUTPUT_TEXTURE_COORD5_EXT 0x87A2 +#define GL_OUTPUT_TEXTURE_COORD6_EXT 0x87A3 +#define GL_OUTPUT_TEXTURE_COORD7_EXT 0x87A4 +#define GL_OUTPUT_TEXTURE_COORD8_EXT 0x87A5 +#define GL_OUTPUT_TEXTURE_COORD9_EXT 0x87A6 +#define GL_OUTPUT_TEXTURE_COORD10_EXT 0x87A7 +#define GL_OUTPUT_TEXTURE_COORD11_EXT 0x87A8 +#define GL_OUTPUT_TEXTURE_COORD12_EXT 0x87A9 +#define GL_OUTPUT_TEXTURE_COORD13_EXT 0x87AA +#define GL_OUTPUT_TEXTURE_COORD14_EXT 0x87AB +#define GL_OUTPUT_TEXTURE_COORD15_EXT 0x87AC +#define GL_OUTPUT_TEXTURE_COORD16_EXT 0x87AD +#define GL_OUTPUT_TEXTURE_COORD17_EXT 0x87AE +#define GL_OUTPUT_TEXTURE_COORD18_EXT 0x87AF +#define GL_OUTPUT_TEXTURE_COORD19_EXT 0x87B0 +#define GL_OUTPUT_TEXTURE_COORD20_EXT 0x87B1 +#define GL_OUTPUT_TEXTURE_COORD21_EXT 0x87B2 +#define GL_OUTPUT_TEXTURE_COORD22_EXT 0x87B3 +#define GL_OUTPUT_TEXTURE_COORD23_EXT 0x87B4 +#define GL_OUTPUT_TEXTURE_COORD24_EXT 0x87B5 +#define GL_OUTPUT_TEXTURE_COORD25_EXT 0x87B6 +#define GL_OUTPUT_TEXTURE_COORD26_EXT 0x87B7 +#define GL_OUTPUT_TEXTURE_COORD27_EXT 0x87B8 +#define GL_OUTPUT_TEXTURE_COORD28_EXT 0x87B9 +#define GL_OUTPUT_TEXTURE_COORD29_EXT 0x87BA +#define GL_OUTPUT_TEXTURE_COORD30_EXT 0x87BB +#define GL_OUTPUT_TEXTURE_COORD31_EXT 0x87BC +#define GL_OUTPUT_FOG_EXT 0x87BD +#define GL_SCALAR_EXT 0x87BE +#define GL_VECTOR_EXT 0x87BF +#define GL_MATRIX_EXT 0x87C0 +#define GL_VARIANT_EXT 0x87C1 +#define GL_INVARIANT_EXT 0x87C2 +#define GL_LOCAL_CONSTANT_EXT 0x87C3 +#define GL_LOCAL_EXT 0x87C4 +#define GL_MAX_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87C5 +#define GL_MAX_VERTEX_SHADER_VARIANTS_EXT 0x87C6 +#define GL_MAX_VERTEX_SHADER_INVARIANTS_EXT 0x87C7 +#define GL_MAX_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87C8 +#define GL_MAX_VERTEX_SHADER_LOCALS_EXT 0x87C9 +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87CA +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_VARIANTS_EXT 0x87CB +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_INVARIANTS_EXT 0x87CC +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87CD +#define GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCALS_EXT 0x87CE +#define GL_VERTEX_SHADER_INSTRUCTIONS_EXT 0x87CF +#define GL_VERTEX_SHADER_VARIANTS_EXT 0x87D0 +#define GL_VERTEX_SHADER_INVARIANTS_EXT 0x87D1 +#define GL_VERTEX_SHADER_LOCAL_CONSTANTS_EXT 0x87D2 +#define GL_VERTEX_SHADER_LOCALS_EXT 0x87D3 +#define GL_VERTEX_SHADER_OPTIMIZED_EXT 0x87D4 +#define GL_X_EXT 0x87D5 +#define GL_Y_EXT 0x87D6 +#define GL_Z_EXT 0x87D7 +#define GL_W_EXT 0x87D8 +#define GL_NEGATIVE_X_EXT 0x87D9 +#define GL_NEGATIVE_Y_EXT 0x87DA +#define GL_NEGATIVE_Z_EXT 0x87DB +#define GL_NEGATIVE_W_EXT 0x87DC +#define GL_ZERO_EXT 0x87DD +#define GL_ONE_EXT 0x87DE +#define GL_NEGATIVE_ONE_EXT 0x87DF +#define GL_NORMALIZED_RANGE_EXT 0x87E0 +#define GL_FULL_RANGE_EXT 0x87E1 +#define GL_CURRENT_VERTEX_EXT 0x87E2 +#define GL_MVP_MATRIX_EXT 0x87E3 +#define GL_VARIANT_VALUE_EXT 0x87E4 +#define GL_VARIANT_DATATYPE_EXT 0x87E5 +#define GL_VARIANT_ARRAY_STRIDE_EXT 0x87E6 +#define GL_VARIANT_ARRAY_TYPE_EXT 0x87E7 +#define GL_VARIANT_ARRAY_EXT 0x87E8 +#define GL_VARIANT_ARRAY_POINTER_EXT 0x87E9 +#define GL_INVARIANT_VALUE_EXT 0x87EA +#define GL_INVARIANT_DATATYPE_EXT 0x87EB +#define GL_LOCAL_CONSTANT_VALUE_EXT 0x87EC +#define GL_LOCAL_CONSTANT_DATATYPE_EXT 0x87ED + +typedef void (GLAPIENTRY * PFNGLBEGINVERTEXSHADEREXTPROC) (void); +typedef GLuint (GLAPIENTRY * PFNGLBINDLIGHTPARAMETEREXTPROC) (GLenum light, GLenum value); +typedef GLuint (GLAPIENTRY * PFNGLBINDMATERIALPARAMETEREXTPROC) (GLenum face, GLenum value); +typedef GLuint (GLAPIENTRY * PFNGLBINDPARAMETEREXTPROC) (GLenum value); +typedef GLuint (GLAPIENTRY * PFNGLBINDTEXGENPARAMETEREXTPROC) (GLenum unit, GLenum coord, GLenum value); +typedef GLuint (GLAPIENTRY * PFNGLBINDTEXTUREUNITPARAMETEREXTPROC) (GLenum unit, GLenum value); +typedef void (GLAPIENTRY * PFNGLBINDVERTEXSHADEREXTPROC) (GLuint id); +typedef void (GLAPIENTRY * PFNGLDELETEVERTEXSHADEREXTPROC) (GLuint id); +typedef void (GLAPIENTRY * PFNGLDISABLEVARIANTCLIENTSTATEEXTPROC) (GLuint id); +typedef void (GLAPIENTRY * PFNGLENABLEVARIANTCLIENTSTATEEXTPROC) (GLuint id); +typedef void (GLAPIENTRY * PFNGLENDVERTEXSHADEREXTPROC) (void); +typedef void (GLAPIENTRY * PFNGLEXTRACTCOMPONENTEXTPROC) (GLuint res, GLuint src, GLuint num); +typedef GLuint (GLAPIENTRY * PFNGLGENSYMBOLSEXTPROC) (GLenum dataType, GLenum storageType, GLenum range, GLuint components); +typedef GLuint (GLAPIENTRY * PFNGLGENVERTEXSHADERSEXTPROC) (GLuint range); +typedef void (GLAPIENTRY * PFNGLGETINVARIANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); +typedef void (GLAPIENTRY * PFNGLGETINVARIANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); +typedef void (GLAPIENTRY * PFNGLGETINVARIANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); +typedef void (GLAPIENTRY * PFNGLGETLOCALCONSTANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); +typedef void (GLAPIENTRY * PFNGLGETLOCALCONSTANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); +typedef void (GLAPIENTRY * PFNGLGETLOCALCONSTANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); +typedef void (GLAPIENTRY * PFNGLGETVARIANTBOOLEANVEXTPROC) (GLuint id, GLenum value, GLboolean *data); +typedef void (GLAPIENTRY * PFNGLGETVARIANTFLOATVEXTPROC) (GLuint id, GLenum value, GLfloat *data); +typedef void (GLAPIENTRY * PFNGLGETVARIANTINTEGERVEXTPROC) (GLuint id, GLenum value, GLint *data); +typedef void (GLAPIENTRY * PFNGLGETVARIANTPOINTERVEXTPROC) (GLuint id, GLenum value, void **data); +typedef void (GLAPIENTRY * PFNGLINSERTCOMPONENTEXTPROC) (GLuint res, GLuint src, GLuint num); +typedef GLboolean (GLAPIENTRY * PFNGLISVARIANTENABLEDEXTPROC) (GLuint id, GLenum cap); +typedef void (GLAPIENTRY * PFNGLSETINVARIANTEXTPROC) (GLuint id, GLenum type, void *addr); +typedef void (GLAPIENTRY * PFNGLSETLOCALCONSTANTEXTPROC) (GLuint id, GLenum type, void *addr); +typedef void (GLAPIENTRY * PFNGLSHADEROP1EXTPROC) (GLenum op, GLuint res, GLuint arg1); +typedef void (GLAPIENTRY * PFNGLSHADEROP2EXTPROC) (GLenum op, GLuint res, GLuint arg1, GLuint arg2); +typedef void (GLAPIENTRY * PFNGLSHADEROP3EXTPROC) (GLenum op, GLuint res, GLuint arg1, GLuint arg2, GLuint arg3); +typedef void (GLAPIENTRY * PFNGLSWIZZLEEXTPROC) (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); +typedef void (GLAPIENTRY * PFNGLVARIANTPOINTEREXTPROC) (GLuint id, GLenum type, GLuint stride, void *addr); +typedef void (GLAPIENTRY * PFNGLVARIANTBVEXTPROC) (GLuint id, GLbyte *addr); +typedef void (GLAPIENTRY * PFNGLVARIANTDVEXTPROC) (GLuint id, GLdouble *addr); +typedef void (GLAPIENTRY * PFNGLVARIANTFVEXTPROC) (GLuint id, GLfloat *addr); +typedef void (GLAPIENTRY * PFNGLVARIANTIVEXTPROC) (GLuint id, GLint *addr); +typedef void (GLAPIENTRY * PFNGLVARIANTSVEXTPROC) (GLuint id, GLshort *addr); +typedef void (GLAPIENTRY * PFNGLVARIANTUBVEXTPROC) (GLuint id, GLubyte *addr); +typedef void (GLAPIENTRY * PFNGLVARIANTUIVEXTPROC) (GLuint id, GLuint *addr); +typedef void (GLAPIENTRY * PFNGLVARIANTUSVEXTPROC) (GLuint id, GLushort *addr); +typedef void (GLAPIENTRY * PFNGLWRITEMASKEXTPROC) (GLuint res, GLuint in, GLenum outX, GLenum outY, GLenum outZ, GLenum outW); + +#define glBeginVertexShaderEXT GLEW_GET_FUN(__glewBeginVertexShaderEXT) +#define glBindLightParameterEXT GLEW_GET_FUN(__glewBindLightParameterEXT) +#define glBindMaterialParameterEXT GLEW_GET_FUN(__glewBindMaterialParameterEXT) +#define glBindParameterEXT GLEW_GET_FUN(__glewBindParameterEXT) +#define glBindTexGenParameterEXT GLEW_GET_FUN(__glewBindTexGenParameterEXT) +#define glBindTextureUnitParameterEXT GLEW_GET_FUN(__glewBindTextureUnitParameterEXT) +#define glBindVertexShaderEXT GLEW_GET_FUN(__glewBindVertexShaderEXT) +#define glDeleteVertexShaderEXT GLEW_GET_FUN(__glewDeleteVertexShaderEXT) +#define glDisableVariantClientStateEXT GLEW_GET_FUN(__glewDisableVariantClientStateEXT) +#define glEnableVariantClientStateEXT GLEW_GET_FUN(__glewEnableVariantClientStateEXT) +#define glEndVertexShaderEXT GLEW_GET_FUN(__glewEndVertexShaderEXT) +#define glExtractComponentEXT GLEW_GET_FUN(__glewExtractComponentEXT) +#define glGenSymbolsEXT GLEW_GET_FUN(__glewGenSymbolsEXT) +#define glGenVertexShadersEXT GLEW_GET_FUN(__glewGenVertexShadersEXT) +#define glGetInvariantBooleanvEXT GLEW_GET_FUN(__glewGetInvariantBooleanvEXT) +#define glGetInvariantFloatvEXT GLEW_GET_FUN(__glewGetInvariantFloatvEXT) +#define glGetInvariantIntegervEXT GLEW_GET_FUN(__glewGetInvariantIntegervEXT) +#define glGetLocalConstantBooleanvEXT GLEW_GET_FUN(__glewGetLocalConstantBooleanvEXT) +#define glGetLocalConstantFloatvEXT GLEW_GET_FUN(__glewGetLocalConstantFloatvEXT) +#define glGetLocalConstantIntegervEXT GLEW_GET_FUN(__glewGetLocalConstantIntegervEXT) +#define glGetVariantBooleanvEXT GLEW_GET_FUN(__glewGetVariantBooleanvEXT) +#define glGetVariantFloatvEXT GLEW_GET_FUN(__glewGetVariantFloatvEXT) +#define glGetVariantIntegervEXT GLEW_GET_FUN(__glewGetVariantIntegervEXT) +#define glGetVariantPointervEXT GLEW_GET_FUN(__glewGetVariantPointervEXT) +#define glInsertComponentEXT GLEW_GET_FUN(__glewInsertComponentEXT) +#define glIsVariantEnabledEXT GLEW_GET_FUN(__glewIsVariantEnabledEXT) +#define glSetInvariantEXT GLEW_GET_FUN(__glewSetInvariantEXT) +#define glSetLocalConstantEXT GLEW_GET_FUN(__glewSetLocalConstantEXT) +#define glShaderOp1EXT GLEW_GET_FUN(__glewShaderOp1EXT) +#define glShaderOp2EXT GLEW_GET_FUN(__glewShaderOp2EXT) +#define glShaderOp3EXT GLEW_GET_FUN(__glewShaderOp3EXT) +#define glSwizzleEXT GLEW_GET_FUN(__glewSwizzleEXT) +#define glVariantPointerEXT GLEW_GET_FUN(__glewVariantPointerEXT) +#define glVariantbvEXT GLEW_GET_FUN(__glewVariantbvEXT) +#define glVariantdvEXT GLEW_GET_FUN(__glewVariantdvEXT) +#define glVariantfvEXT GLEW_GET_FUN(__glewVariantfvEXT) +#define glVariantivEXT GLEW_GET_FUN(__glewVariantivEXT) +#define glVariantsvEXT GLEW_GET_FUN(__glewVariantsvEXT) +#define glVariantubvEXT GLEW_GET_FUN(__glewVariantubvEXT) +#define glVariantuivEXT GLEW_GET_FUN(__glewVariantuivEXT) +#define glVariantusvEXT GLEW_GET_FUN(__glewVariantusvEXT) +#define glWriteMaskEXT GLEW_GET_FUN(__glewWriteMaskEXT) + +#define GLEW_EXT_vertex_shader GLEW_GET_VAR(__GLEW_EXT_vertex_shader) + +#endif /* GL_EXT_vertex_shader */ + +/* ------------------------ GL_EXT_vertex_weighting ------------------------ */ + +#ifndef GL_EXT_vertex_weighting +#define GL_EXT_vertex_weighting 1 + +#define GL_MODELVIEW0_STACK_DEPTH_EXT 0x0BA3 +#define GL_MODELVIEW0_MATRIX_EXT 0x0BA6 +#define GL_MODELVIEW0_EXT 0x1700 +#define GL_MODELVIEW1_STACK_DEPTH_EXT 0x8502 +#define GL_MODELVIEW1_MATRIX_EXT 0x8506 +#define GL_VERTEX_WEIGHTING_EXT 0x8509 +#define GL_MODELVIEW1_EXT 0x850A +#define GL_CURRENT_VERTEX_WEIGHT_EXT 0x850B +#define GL_VERTEX_WEIGHT_ARRAY_EXT 0x850C +#define GL_VERTEX_WEIGHT_ARRAY_SIZE_EXT 0x850D +#define GL_VERTEX_WEIGHT_ARRAY_TYPE_EXT 0x850E +#define GL_VERTEX_WEIGHT_ARRAY_STRIDE_EXT 0x850F +#define GL_VERTEX_WEIGHT_ARRAY_POINTER_EXT 0x8510 + +typedef void (GLAPIENTRY * PFNGLVERTEXWEIGHTPOINTEREXTPROC) (GLint size, GLenum type, GLsizei stride, void *pointer); +typedef void (GLAPIENTRY * PFNGLVERTEXWEIGHTFEXTPROC) (GLfloat weight); +typedef void (GLAPIENTRY * PFNGLVERTEXWEIGHTFVEXTPROC) (GLfloat* weight); + +#define glVertexWeightPointerEXT GLEW_GET_FUN(__glewVertexWeightPointerEXT) +#define glVertexWeightfEXT GLEW_GET_FUN(__glewVertexWeightfEXT) +#define glVertexWeightfvEXT GLEW_GET_FUN(__glewVertexWeightfvEXT) + +#define GLEW_EXT_vertex_weighting GLEW_GET_VAR(__GLEW_EXT_vertex_weighting) + +#endif /* GL_EXT_vertex_weighting */ + +/* ------------------------ GL_EXT_win32_keyed_mutex ----------------------- */ + +#ifndef GL_EXT_win32_keyed_mutex +#define GL_EXT_win32_keyed_mutex 1 + +typedef GLboolean (GLAPIENTRY * PFNGLACQUIREKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key, GLuint timeout); +typedef GLboolean (GLAPIENTRY * PFNGLRELEASEKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key); + +#define glAcquireKeyedMutexWin32EXT GLEW_GET_FUN(__glewAcquireKeyedMutexWin32EXT) +#define glReleaseKeyedMutexWin32EXT GLEW_GET_FUN(__glewReleaseKeyedMutexWin32EXT) + +#define GLEW_EXT_win32_keyed_mutex GLEW_GET_VAR(__GLEW_EXT_win32_keyed_mutex) + +#endif /* GL_EXT_win32_keyed_mutex */ + +/* ------------------------ GL_EXT_window_rectangles ----------------------- */ + +#ifndef GL_EXT_window_rectangles +#define GL_EXT_window_rectangles 1 + +#define GL_INCLUSIVE_EXT 0x8F10 +#define GL_EXCLUSIVE_EXT 0x8F11 +#define GL_WINDOW_RECTANGLE_EXT 0x8F12 +#define GL_WINDOW_RECTANGLE_MODE_EXT 0x8F13 +#define GL_MAX_WINDOW_RECTANGLES_EXT 0x8F14 +#define GL_NUM_WINDOW_RECTANGLES_EXT 0x8F15 + +typedef void (GLAPIENTRY * PFNGLWINDOWRECTANGLESEXTPROC) (GLenum mode, GLsizei count, const GLint box[]); + +#define glWindowRectanglesEXT GLEW_GET_FUN(__glewWindowRectanglesEXT) + +#define GLEW_EXT_window_rectangles GLEW_GET_VAR(__GLEW_EXT_window_rectangles) + +#endif /* GL_EXT_window_rectangles */ + +/* ------------------------- GL_EXT_x11_sync_object ------------------------ */ + +#ifndef GL_EXT_x11_sync_object +#define GL_EXT_x11_sync_object 1 + +#define GL_SYNC_X11_FENCE_EXT 0x90E1 + +typedef GLsync (GLAPIENTRY * PFNGLIMPORTSYNCEXTPROC) (GLenum external_sync_type, GLintptr external_sync, GLbitfield flags); + +#define glImportSyncEXT GLEW_GET_FUN(__glewImportSyncEXT) + +#define GLEW_EXT_x11_sync_object GLEW_GET_VAR(__GLEW_EXT_x11_sync_object) + +#endif /* GL_EXT_x11_sync_object */ + +/* ---------------------- GL_GREMEDY_frame_terminator ---------------------- */ + +#ifndef GL_GREMEDY_frame_terminator +#define GL_GREMEDY_frame_terminator 1 + +typedef void (GLAPIENTRY * PFNGLFRAMETERMINATORGREMEDYPROC) (void); + +#define glFrameTerminatorGREMEDY GLEW_GET_FUN(__glewFrameTerminatorGREMEDY) + +#define GLEW_GREMEDY_frame_terminator GLEW_GET_VAR(__GLEW_GREMEDY_frame_terminator) + +#endif /* GL_GREMEDY_frame_terminator */ + +/* ------------------------ GL_GREMEDY_string_marker ----------------------- */ + +#ifndef GL_GREMEDY_string_marker +#define GL_GREMEDY_string_marker 1 + +typedef void (GLAPIENTRY * PFNGLSTRINGMARKERGREMEDYPROC) (GLsizei len, const void *string); + +#define glStringMarkerGREMEDY GLEW_GET_FUN(__glewStringMarkerGREMEDY) + +#define GLEW_GREMEDY_string_marker GLEW_GET_VAR(__GLEW_GREMEDY_string_marker) + +#endif /* GL_GREMEDY_string_marker */ + +/* --------------------- GL_HP_convolution_border_modes -------------------- */ + +#ifndef GL_HP_convolution_border_modes +#define GL_HP_convolution_border_modes 1 + +#define GLEW_HP_convolution_border_modes GLEW_GET_VAR(__GLEW_HP_convolution_border_modes) + +#endif /* GL_HP_convolution_border_modes */ + +/* ------------------------- GL_HP_image_transform ------------------------- */ + +#ifndef GL_HP_image_transform +#define GL_HP_image_transform 1 + +typedef void (GLAPIENTRY * PFNGLGETIMAGETRANSFORMPARAMETERFVHPPROC) (GLenum target, GLenum pname, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETIMAGETRANSFORMPARAMETERIVHPPROC) (GLenum target, GLenum pname, const GLint* params); +typedef void (GLAPIENTRY * PFNGLIMAGETRANSFORMPARAMETERFHPPROC) (GLenum target, GLenum pname, const GLfloat param); +typedef void (GLAPIENTRY * PFNGLIMAGETRANSFORMPARAMETERFVHPPROC) (GLenum target, GLenum pname, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLIMAGETRANSFORMPARAMETERIHPPROC) (GLenum target, GLenum pname, const GLint param); +typedef void (GLAPIENTRY * PFNGLIMAGETRANSFORMPARAMETERIVHPPROC) (GLenum target, GLenum pname, const GLint* params); + +#define glGetImageTransformParameterfvHP GLEW_GET_FUN(__glewGetImageTransformParameterfvHP) +#define glGetImageTransformParameterivHP GLEW_GET_FUN(__glewGetImageTransformParameterivHP) +#define glImageTransformParameterfHP GLEW_GET_FUN(__glewImageTransformParameterfHP) +#define glImageTransformParameterfvHP GLEW_GET_FUN(__glewImageTransformParameterfvHP) +#define glImageTransformParameteriHP GLEW_GET_FUN(__glewImageTransformParameteriHP) +#define glImageTransformParameterivHP GLEW_GET_FUN(__glewImageTransformParameterivHP) + +#define GLEW_HP_image_transform GLEW_GET_VAR(__GLEW_HP_image_transform) + +#endif /* GL_HP_image_transform */ + +/* -------------------------- GL_HP_occlusion_test ------------------------- */ + +#ifndef GL_HP_occlusion_test +#define GL_HP_occlusion_test 1 + +#define GLEW_HP_occlusion_test GLEW_GET_VAR(__GLEW_HP_occlusion_test) + +#endif /* GL_HP_occlusion_test */ + +/* ------------------------- GL_HP_texture_lighting ------------------------ */ + +#ifndef GL_HP_texture_lighting +#define GL_HP_texture_lighting 1 + +#define GLEW_HP_texture_lighting GLEW_GET_VAR(__GLEW_HP_texture_lighting) + +#endif /* GL_HP_texture_lighting */ + +/* --------------------------- GL_IBM_cull_vertex -------------------------- */ + +#ifndef GL_IBM_cull_vertex +#define GL_IBM_cull_vertex 1 + +#define GL_CULL_VERTEX_IBM 103050 + +#define GLEW_IBM_cull_vertex GLEW_GET_VAR(__GLEW_IBM_cull_vertex) + +#endif /* GL_IBM_cull_vertex */ + +/* ---------------------- GL_IBM_multimode_draw_arrays --------------------- */ + +#ifndef GL_IBM_multimode_draw_arrays +#define GL_IBM_multimode_draw_arrays 1 + +typedef void (GLAPIENTRY * PFNGLMULTIMODEDRAWARRAYSIBMPROC) (const GLenum* mode, const GLint *first, const GLsizei *count, GLsizei primcount, GLint modestride); +typedef void (GLAPIENTRY * PFNGLMULTIMODEDRAWELEMENTSIBMPROC) (const GLenum* mode, const GLsizei *count, GLenum type, const void *const *indices, GLsizei primcount, GLint modestride); + +#define glMultiModeDrawArraysIBM GLEW_GET_FUN(__glewMultiModeDrawArraysIBM) +#define glMultiModeDrawElementsIBM GLEW_GET_FUN(__glewMultiModeDrawElementsIBM) + +#define GLEW_IBM_multimode_draw_arrays GLEW_GET_VAR(__GLEW_IBM_multimode_draw_arrays) + +#endif /* GL_IBM_multimode_draw_arrays */ + +/* ------------------------- GL_IBM_rasterpos_clip ------------------------- */ + +#ifndef GL_IBM_rasterpos_clip +#define GL_IBM_rasterpos_clip 1 + +#define GL_RASTER_POSITION_UNCLIPPED_IBM 103010 + +#define GLEW_IBM_rasterpos_clip GLEW_GET_VAR(__GLEW_IBM_rasterpos_clip) + +#endif /* GL_IBM_rasterpos_clip */ + +/* --------------------------- GL_IBM_static_data -------------------------- */ + +#ifndef GL_IBM_static_data +#define GL_IBM_static_data 1 + +#define GL_ALL_STATIC_DATA_IBM 103060 +#define GL_STATIC_VERTEX_ARRAY_IBM 103061 + +#define GLEW_IBM_static_data GLEW_GET_VAR(__GLEW_IBM_static_data) + +#endif /* GL_IBM_static_data */ + +/* --------------------- GL_IBM_texture_mirrored_repeat -------------------- */ + +#ifndef GL_IBM_texture_mirrored_repeat +#define GL_IBM_texture_mirrored_repeat 1 + +#define GL_MIRRORED_REPEAT_IBM 0x8370 + +#define GLEW_IBM_texture_mirrored_repeat GLEW_GET_VAR(__GLEW_IBM_texture_mirrored_repeat) + +#endif /* GL_IBM_texture_mirrored_repeat */ + +/* ----------------------- GL_IBM_vertex_array_lists ----------------------- */ + +#ifndef GL_IBM_vertex_array_lists +#define GL_IBM_vertex_array_lists 1 + +#define GL_VERTEX_ARRAY_LIST_IBM 103070 +#define GL_NORMAL_ARRAY_LIST_IBM 103071 +#define GL_COLOR_ARRAY_LIST_IBM 103072 +#define GL_INDEX_ARRAY_LIST_IBM 103073 +#define GL_TEXTURE_COORD_ARRAY_LIST_IBM 103074 +#define GL_EDGE_FLAG_ARRAY_LIST_IBM 103075 +#define GL_FOG_COORDINATE_ARRAY_LIST_IBM 103076 +#define GL_SECONDARY_COLOR_ARRAY_LIST_IBM 103077 +#define GL_VERTEX_ARRAY_LIST_STRIDE_IBM 103080 +#define GL_NORMAL_ARRAY_LIST_STRIDE_IBM 103081 +#define GL_COLOR_ARRAY_LIST_STRIDE_IBM 103082 +#define GL_INDEX_ARRAY_LIST_STRIDE_IBM 103083 +#define GL_TEXTURE_COORD_ARRAY_LIST_STRIDE_IBM 103084 +#define GL_EDGE_FLAG_ARRAY_LIST_STRIDE_IBM 103085 +#define GL_FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM 103086 +#define GL_SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM 103087 + +typedef void (GLAPIENTRY * PFNGLCOLORPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void** pointer, GLint ptrstride); +typedef void (GLAPIENTRY * PFNGLEDGEFLAGPOINTERLISTIBMPROC) (GLint stride, const GLboolean ** pointer, GLint ptrstride); +typedef void (GLAPIENTRY * PFNGLFOGCOORDPOINTERLISTIBMPROC) (GLenum type, GLint stride, const void** pointer, GLint ptrstride); +typedef void (GLAPIENTRY * PFNGLINDEXPOINTERLISTIBMPROC) (GLenum type, GLint stride, const void** pointer, GLint ptrstride); +typedef void (GLAPIENTRY * PFNGLNORMALPOINTERLISTIBMPROC) (GLenum type, GLint stride, const void** pointer, GLint ptrstride); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLORPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void** pointer, GLint ptrstride); +typedef void (GLAPIENTRY * PFNGLTEXCOORDPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void** pointer, GLint ptrstride); +typedef void (GLAPIENTRY * PFNGLVERTEXPOINTERLISTIBMPROC) (GLint size, GLenum type, GLint stride, const void** pointer, GLint ptrstride); + +#define glColorPointerListIBM GLEW_GET_FUN(__glewColorPointerListIBM) +#define glEdgeFlagPointerListIBM GLEW_GET_FUN(__glewEdgeFlagPointerListIBM) +#define glFogCoordPointerListIBM GLEW_GET_FUN(__glewFogCoordPointerListIBM) +#define glIndexPointerListIBM GLEW_GET_FUN(__glewIndexPointerListIBM) +#define glNormalPointerListIBM GLEW_GET_FUN(__glewNormalPointerListIBM) +#define glSecondaryColorPointerListIBM GLEW_GET_FUN(__glewSecondaryColorPointerListIBM) +#define glTexCoordPointerListIBM GLEW_GET_FUN(__glewTexCoordPointerListIBM) +#define glVertexPointerListIBM GLEW_GET_FUN(__glewVertexPointerListIBM) + +#define GLEW_IBM_vertex_array_lists GLEW_GET_VAR(__GLEW_IBM_vertex_array_lists) + +#endif /* GL_IBM_vertex_array_lists */ + +/* -------------------------- GL_INGR_color_clamp -------------------------- */ + +#ifndef GL_INGR_color_clamp +#define GL_INGR_color_clamp 1 + +#define GL_RED_MIN_CLAMP_INGR 0x8560 +#define GL_GREEN_MIN_CLAMP_INGR 0x8561 +#define GL_BLUE_MIN_CLAMP_INGR 0x8562 +#define GL_ALPHA_MIN_CLAMP_INGR 0x8563 +#define GL_RED_MAX_CLAMP_INGR 0x8564 +#define GL_GREEN_MAX_CLAMP_INGR 0x8565 +#define GL_BLUE_MAX_CLAMP_INGR 0x8566 +#define GL_ALPHA_MAX_CLAMP_INGR 0x8567 + +#define GLEW_INGR_color_clamp GLEW_GET_VAR(__GLEW_INGR_color_clamp) + +#endif /* GL_INGR_color_clamp */ + +/* ------------------------- GL_INGR_interlace_read ------------------------ */ + +#ifndef GL_INGR_interlace_read +#define GL_INGR_interlace_read 1 + +#define GL_INTERLACE_READ_INGR 0x8568 + +#define GLEW_INGR_interlace_read GLEW_GET_VAR(__GLEW_INGR_interlace_read) + +#endif /* GL_INGR_interlace_read */ + +/* ------------------ GL_INTEL_conservative_rasterization ------------------ */ + +#ifndef GL_INTEL_conservative_rasterization +#define GL_INTEL_conservative_rasterization 1 + +#define GL_CONSERVATIVE_RASTERIZATION_INTEL 0x83FE + +#define GLEW_INTEL_conservative_rasterization GLEW_GET_VAR(__GLEW_INTEL_conservative_rasterization) + +#endif /* GL_INTEL_conservative_rasterization */ + +/* ------------------- GL_INTEL_fragment_shader_ordering ------------------- */ + +#ifndef GL_INTEL_fragment_shader_ordering +#define GL_INTEL_fragment_shader_ordering 1 + +#define GLEW_INTEL_fragment_shader_ordering GLEW_GET_VAR(__GLEW_INTEL_fragment_shader_ordering) + +#endif /* GL_INTEL_fragment_shader_ordering */ + +/* ----------------------- GL_INTEL_framebuffer_CMAA ----------------------- */ + +#ifndef GL_INTEL_framebuffer_CMAA +#define GL_INTEL_framebuffer_CMAA 1 + +#define GLEW_INTEL_framebuffer_CMAA GLEW_GET_VAR(__GLEW_INTEL_framebuffer_CMAA) + +#endif /* GL_INTEL_framebuffer_CMAA */ + +/* -------------------------- GL_INTEL_map_texture ------------------------- */ + +#ifndef GL_INTEL_map_texture +#define GL_INTEL_map_texture 1 + +#define GL_LAYOUT_DEFAULT_INTEL 0 +#define GL_LAYOUT_LINEAR_INTEL 1 +#define GL_LAYOUT_LINEAR_CPU_CACHED_INTEL 2 +#define GL_TEXTURE_MEMORY_LAYOUT_INTEL 0x83FF + +typedef void * (GLAPIENTRY * PFNGLMAPTEXTURE2DINTELPROC) (GLuint texture, GLint level, GLbitfield access, GLint* stride, GLenum *layout); +typedef void (GLAPIENTRY * PFNGLSYNCTEXTUREINTELPROC) (GLuint texture); +typedef void (GLAPIENTRY * PFNGLUNMAPTEXTURE2DINTELPROC) (GLuint texture, GLint level); + +#define glMapTexture2DINTEL GLEW_GET_FUN(__glewMapTexture2DINTEL) +#define glSyncTextureINTEL GLEW_GET_FUN(__glewSyncTextureINTEL) +#define glUnmapTexture2DINTEL GLEW_GET_FUN(__glewUnmapTexture2DINTEL) + +#define GLEW_INTEL_map_texture GLEW_GET_VAR(__GLEW_INTEL_map_texture) + +#endif /* GL_INTEL_map_texture */ + +/* ------------------------ GL_INTEL_parallel_arrays ----------------------- */ + +#ifndef GL_INTEL_parallel_arrays +#define GL_INTEL_parallel_arrays 1 + +#define GL_PARALLEL_ARRAYS_INTEL 0x83F4 +#define GL_VERTEX_ARRAY_PARALLEL_POINTERS_INTEL 0x83F5 +#define GL_NORMAL_ARRAY_PARALLEL_POINTERS_INTEL 0x83F6 +#define GL_COLOR_ARRAY_PARALLEL_POINTERS_INTEL 0x83F7 +#define GL_TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL 0x83F8 + +typedef void (GLAPIENTRY * PFNGLCOLORPOINTERVINTELPROC) (GLint size, GLenum type, const void** pointer); +typedef void (GLAPIENTRY * PFNGLNORMALPOINTERVINTELPROC) (GLenum type, const void** pointer); +typedef void (GLAPIENTRY * PFNGLTEXCOORDPOINTERVINTELPROC) (GLint size, GLenum type, const void** pointer); +typedef void (GLAPIENTRY * PFNGLVERTEXPOINTERVINTELPROC) (GLint size, GLenum type, const void** pointer); + +#define glColorPointervINTEL GLEW_GET_FUN(__glewColorPointervINTEL) +#define glNormalPointervINTEL GLEW_GET_FUN(__glewNormalPointervINTEL) +#define glTexCoordPointervINTEL GLEW_GET_FUN(__glewTexCoordPointervINTEL) +#define glVertexPointervINTEL GLEW_GET_FUN(__glewVertexPointervINTEL) + +#define GLEW_INTEL_parallel_arrays GLEW_GET_VAR(__GLEW_INTEL_parallel_arrays) + +#endif /* GL_INTEL_parallel_arrays */ + +/* ----------------------- GL_INTEL_performance_query ---------------------- */ + +#ifndef GL_INTEL_performance_query +#define GL_INTEL_performance_query 1 + +#define GL_PERFQUERY_SINGLE_CONTEXT_INTEL 0x0000 +#define GL_PERFQUERY_GLOBAL_CONTEXT_INTEL 0x0001 +#define GL_PERFQUERY_DONOT_FLUSH_INTEL 0x83F9 +#define GL_PERFQUERY_FLUSH_INTEL 0x83FA +#define GL_PERFQUERY_WAIT_INTEL 0x83FB +#define GL_PERFQUERY_COUNTER_EVENT_INTEL 0x94F0 +#define GL_PERFQUERY_COUNTER_DURATION_NORM_INTEL 0x94F1 +#define GL_PERFQUERY_COUNTER_DURATION_RAW_INTEL 0x94F2 +#define GL_PERFQUERY_COUNTER_THROUGHPUT_INTEL 0x94F3 +#define GL_PERFQUERY_COUNTER_RAW_INTEL 0x94F4 +#define GL_PERFQUERY_COUNTER_TIMESTAMP_INTEL 0x94F5 +#define GL_PERFQUERY_COUNTER_DATA_UINT32_INTEL 0x94F8 +#define GL_PERFQUERY_COUNTER_DATA_UINT64_INTEL 0x94F9 +#define GL_PERFQUERY_COUNTER_DATA_FLOAT_INTEL 0x94FA +#define GL_PERFQUERY_COUNTER_DATA_DOUBLE_INTEL 0x94FB +#define GL_PERFQUERY_COUNTER_DATA_BOOL32_INTEL 0x94FC +#define GL_PERFQUERY_QUERY_NAME_LENGTH_MAX_INTEL 0x94FD +#define GL_PERFQUERY_COUNTER_NAME_LENGTH_MAX_INTEL 0x94FE +#define GL_PERFQUERY_COUNTER_DESC_LENGTH_MAX_INTEL 0x94FF +#define GL_PERFQUERY_GPA_EXTENDED_COUNTERS_INTEL 0x9500 + +typedef void (GLAPIENTRY * PFNGLBEGINPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (GLAPIENTRY * PFNGLCREATEPERFQUERYINTELPROC) (GLuint queryId, GLuint* queryHandle); +typedef void (GLAPIENTRY * PFNGLDELETEPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (GLAPIENTRY * PFNGLENDPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (GLAPIENTRY * PFNGLGETFIRSTPERFQUERYIDINTELPROC) (GLuint* queryId); +typedef void (GLAPIENTRY * PFNGLGETNEXTPERFQUERYIDINTELPROC) (GLuint queryId, GLuint* nextQueryId); +typedef void (GLAPIENTRY * PFNGLGETPERFCOUNTERINFOINTELPROC) (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar* counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); +typedef void (GLAPIENTRY * PFNGLGETPERFQUERYDATAINTELPROC) (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); +typedef void (GLAPIENTRY * PFNGLGETPERFQUERYIDBYNAMEINTELPROC) (GLchar* queryName, GLuint *queryId); +typedef void (GLAPIENTRY * PFNGLGETPERFQUERYINFOINTELPROC) (GLuint queryId, GLuint queryNameLength, GLchar* queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); + +#define glBeginPerfQueryINTEL GLEW_GET_FUN(__glewBeginPerfQueryINTEL) +#define glCreatePerfQueryINTEL GLEW_GET_FUN(__glewCreatePerfQueryINTEL) +#define glDeletePerfQueryINTEL GLEW_GET_FUN(__glewDeletePerfQueryINTEL) +#define glEndPerfQueryINTEL GLEW_GET_FUN(__glewEndPerfQueryINTEL) +#define glGetFirstPerfQueryIdINTEL GLEW_GET_FUN(__glewGetFirstPerfQueryIdINTEL) +#define glGetNextPerfQueryIdINTEL GLEW_GET_FUN(__glewGetNextPerfQueryIdINTEL) +#define glGetPerfCounterInfoINTEL GLEW_GET_FUN(__glewGetPerfCounterInfoINTEL) +#define glGetPerfQueryDataINTEL GLEW_GET_FUN(__glewGetPerfQueryDataINTEL) +#define glGetPerfQueryIdByNameINTEL GLEW_GET_FUN(__glewGetPerfQueryIdByNameINTEL) +#define glGetPerfQueryInfoINTEL GLEW_GET_FUN(__glewGetPerfQueryInfoINTEL) + +#define GLEW_INTEL_performance_query GLEW_GET_VAR(__GLEW_INTEL_performance_query) + +#endif /* GL_INTEL_performance_query */ + +/* ------------------------ GL_INTEL_texture_scissor ----------------------- */ + +#ifndef GL_INTEL_texture_scissor +#define GL_INTEL_texture_scissor 1 + +typedef void (GLAPIENTRY * PFNGLTEXSCISSORFUNCINTELPROC) (GLenum target, GLenum lfunc, GLenum hfunc); +typedef void (GLAPIENTRY * PFNGLTEXSCISSORINTELPROC) (GLenum target, GLclampf tlow, GLclampf thigh); + +#define glTexScissorFuncINTEL GLEW_GET_FUN(__glewTexScissorFuncINTEL) +#define glTexScissorINTEL GLEW_GET_FUN(__glewTexScissorINTEL) + +#define GLEW_INTEL_texture_scissor GLEW_GET_VAR(__GLEW_INTEL_texture_scissor) + +#endif /* GL_INTEL_texture_scissor */ + +/* --------------------- GL_KHR_blend_equation_advanced -------------------- */ + +#ifndef GL_KHR_blend_equation_advanced +#define GL_KHR_blend_equation_advanced 1 + +#define GL_BLEND_ADVANCED_COHERENT_KHR 0x9285 +#define GL_MULTIPLY_KHR 0x9294 +#define GL_SCREEN_KHR 0x9295 +#define GL_OVERLAY_KHR 0x9296 +#define GL_DARKEN_KHR 0x9297 +#define GL_LIGHTEN_KHR 0x9298 +#define GL_COLORDODGE_KHR 0x9299 +#define GL_COLORBURN_KHR 0x929A +#define GL_HARDLIGHT_KHR 0x929B +#define GL_SOFTLIGHT_KHR 0x929C +#define GL_DIFFERENCE_KHR 0x929E +#define GL_EXCLUSION_KHR 0x92A0 +#define GL_HSL_HUE_KHR 0x92AD +#define GL_HSL_SATURATION_KHR 0x92AE +#define GL_HSL_COLOR_KHR 0x92AF +#define GL_HSL_LUMINOSITY_KHR 0x92B0 + +typedef void (GLAPIENTRY * PFNGLBLENDBARRIERKHRPROC) (void); + +#define glBlendBarrierKHR GLEW_GET_FUN(__glewBlendBarrierKHR) + +#define GLEW_KHR_blend_equation_advanced GLEW_GET_VAR(__GLEW_KHR_blend_equation_advanced) + +#endif /* GL_KHR_blend_equation_advanced */ + +/* ---------------- GL_KHR_blend_equation_advanced_coherent ---------------- */ + +#ifndef GL_KHR_blend_equation_advanced_coherent +#define GL_KHR_blend_equation_advanced_coherent 1 + +#define GLEW_KHR_blend_equation_advanced_coherent GLEW_GET_VAR(__GLEW_KHR_blend_equation_advanced_coherent) + +#endif /* GL_KHR_blend_equation_advanced_coherent */ + +/* ---------------------- GL_KHR_context_flush_control --------------------- */ + +#ifndef GL_KHR_context_flush_control +#define GL_KHR_context_flush_control 1 + +#define GLEW_KHR_context_flush_control GLEW_GET_VAR(__GLEW_KHR_context_flush_control) + +#endif /* GL_KHR_context_flush_control */ + +/* ------------------------------ GL_KHR_debug ----------------------------- */ + +#ifndef GL_KHR_debug +#define GL_KHR_debug 1 + +#define GL_CONTEXT_FLAG_DEBUG_BIT 0x00000002 +#define GL_STACK_OVERFLOW 0x0503 +#define GL_STACK_UNDERFLOW 0x0504 +#define GL_DEBUG_OUTPUT_SYNCHRONOUS 0x8242 +#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH 0x8243 +#define GL_DEBUG_CALLBACK_FUNCTION 0x8244 +#define GL_DEBUG_CALLBACK_USER_PARAM 0x8245 +#define GL_DEBUG_SOURCE_API 0x8246 +#define GL_DEBUG_SOURCE_WINDOW_SYSTEM 0x8247 +#define GL_DEBUG_SOURCE_SHADER_COMPILER 0x8248 +#define GL_DEBUG_SOURCE_THIRD_PARTY 0x8249 +#define GL_DEBUG_SOURCE_APPLICATION 0x824A +#define GL_DEBUG_SOURCE_OTHER 0x824B +#define GL_DEBUG_TYPE_ERROR 0x824C +#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR 0x824D +#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR 0x824E +#define GL_DEBUG_TYPE_PORTABILITY 0x824F +#define GL_DEBUG_TYPE_PERFORMANCE 0x8250 +#define GL_DEBUG_TYPE_OTHER 0x8251 +#define GL_DEBUG_TYPE_MARKER 0x8268 +#define GL_DEBUG_TYPE_PUSH_GROUP 0x8269 +#define GL_DEBUG_TYPE_POP_GROUP 0x826A +#define GL_DEBUG_SEVERITY_NOTIFICATION 0x826B +#define GL_MAX_DEBUG_GROUP_STACK_DEPTH 0x826C +#define GL_DEBUG_GROUP_STACK_DEPTH 0x826D +#define GL_BUFFER 0x82E0 +#define GL_SHADER 0x82E1 +#define GL_PROGRAM 0x82E2 +#define GL_QUERY 0x82E3 +#define GL_PROGRAM_PIPELINE 0x82E4 +#define GL_SAMPLER 0x82E6 +#define GL_DISPLAY_LIST 0x82E7 +#define GL_MAX_LABEL_LENGTH 0x82E8 +#define GL_MAX_DEBUG_MESSAGE_LENGTH 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES 0x9145 +#define GL_DEBUG_SEVERITY_HIGH 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM 0x9147 +#define GL_DEBUG_SEVERITY_LOW 0x9148 +#define GL_DEBUG_OUTPUT 0x92E0 + +typedef void (GLAPIENTRY *GLDEBUGPROC)(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar* message, const void* userParam); + +typedef void (GLAPIENTRY * PFNGLDEBUGMESSAGECALLBACKPROC) (GLDEBUGPROC callback, const void *userParam); +typedef void (GLAPIENTRY * PFNGLDEBUGMESSAGECONTROLPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint* ids, GLboolean enabled); +typedef void (GLAPIENTRY * PFNGLDEBUGMESSAGEINSERTPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar* buf); +typedef GLuint (GLAPIENTRY * PFNGLGETDEBUGMESSAGELOGPROC) (GLuint count, GLsizei bufSize, GLenum* sources, GLenum* types, GLuint* ids, GLenum* severities, GLsizei* lengths, GLchar* messageLog); +typedef void (GLAPIENTRY * PFNGLGETOBJECTLABELPROC) (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei* length, GLchar *label); +typedef void (GLAPIENTRY * PFNGLGETOBJECTPTRLABELPROC) (void* ptr, GLsizei bufSize, GLsizei* length, GLchar *label); +typedef void (GLAPIENTRY * PFNGLOBJECTLABELPROC) (GLenum identifier, GLuint name, GLsizei length, const GLchar* label); +typedef void (GLAPIENTRY * PFNGLOBJECTPTRLABELPROC) (void* ptr, GLsizei length, const GLchar* label); +typedef void (GLAPIENTRY * PFNGLPOPDEBUGGROUPPROC) (void); +typedef void (GLAPIENTRY * PFNGLPUSHDEBUGGROUPPROC) (GLenum source, GLuint id, GLsizei length, const GLchar * message); + +#define glDebugMessageCallback GLEW_GET_FUN(__glewDebugMessageCallback) +#define glDebugMessageControl GLEW_GET_FUN(__glewDebugMessageControl) +#define glDebugMessageInsert GLEW_GET_FUN(__glewDebugMessageInsert) +#define glGetDebugMessageLog GLEW_GET_FUN(__glewGetDebugMessageLog) +#define glGetObjectLabel GLEW_GET_FUN(__glewGetObjectLabel) +#define glGetObjectPtrLabel GLEW_GET_FUN(__glewGetObjectPtrLabel) +#define glObjectLabel GLEW_GET_FUN(__glewObjectLabel) +#define glObjectPtrLabel GLEW_GET_FUN(__glewObjectPtrLabel) +#define glPopDebugGroup GLEW_GET_FUN(__glewPopDebugGroup) +#define glPushDebugGroup GLEW_GET_FUN(__glewPushDebugGroup) + +#define GLEW_KHR_debug GLEW_GET_VAR(__GLEW_KHR_debug) + +#endif /* GL_KHR_debug */ + +/* ---------------------------- GL_KHR_no_error ---------------------------- */ + +#ifndef GL_KHR_no_error +#define GL_KHR_no_error 1 + +#define GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR 0x00000008 + +#define GLEW_KHR_no_error GLEW_GET_VAR(__GLEW_KHR_no_error) + +#endif /* GL_KHR_no_error */ + +/* --------------------- GL_KHR_parallel_shader_compile -------------------- */ + +#ifndef GL_KHR_parallel_shader_compile +#define GL_KHR_parallel_shader_compile 1 + +#define GL_MAX_SHADER_COMPILER_THREADS_KHR 0x91B0 +#define GL_COMPLETION_STATUS_KHR 0x91B1 + +typedef void (GLAPIENTRY * PFNGLMAXSHADERCOMPILERTHREADSKHRPROC) (GLuint count); + +#define glMaxShaderCompilerThreadsKHR GLEW_GET_FUN(__glewMaxShaderCompilerThreadsKHR) + +#define GLEW_KHR_parallel_shader_compile GLEW_GET_VAR(__GLEW_KHR_parallel_shader_compile) + +#endif /* GL_KHR_parallel_shader_compile */ + +/* ------------------ GL_KHR_robust_buffer_access_behavior ----------------- */ + +#ifndef GL_KHR_robust_buffer_access_behavior +#define GL_KHR_robust_buffer_access_behavior 1 + +#define GLEW_KHR_robust_buffer_access_behavior GLEW_GET_VAR(__GLEW_KHR_robust_buffer_access_behavior) + +#endif /* GL_KHR_robust_buffer_access_behavior */ + +/* --------------------------- GL_KHR_robustness --------------------------- */ + +#ifndef GL_KHR_robustness +#define GL_KHR_robustness 1 + +#define GL_CONTEXT_LOST 0x0507 +#define GL_LOSE_CONTEXT_ON_RESET 0x8252 +#define GL_GUILTY_CONTEXT_RESET 0x8253 +#define GL_INNOCENT_CONTEXT_RESET 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET 0x8255 +#define GL_RESET_NOTIFICATION_STRATEGY 0x8256 +#define GL_NO_RESET_NOTIFICATION 0x8261 +#define GL_CONTEXT_ROBUST_ACCESS 0x90F3 + +typedef void (GLAPIENTRY * PFNGLGETNUNIFORMFVPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETNUNIFORMIVPROC) (GLuint program, GLint location, GLsizei bufSize, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETNUNIFORMUIVPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint* params); +typedef void (GLAPIENTRY * PFNGLREADNPIXELSPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); + +#define glGetnUniformfv GLEW_GET_FUN(__glewGetnUniformfv) +#define glGetnUniformiv GLEW_GET_FUN(__glewGetnUniformiv) +#define glGetnUniformuiv GLEW_GET_FUN(__glewGetnUniformuiv) +#define glReadnPixels GLEW_GET_FUN(__glewReadnPixels) + +#define GLEW_KHR_robustness GLEW_GET_VAR(__GLEW_KHR_robustness) + +#endif /* GL_KHR_robustness */ + +/* ------------------ GL_KHR_texture_compression_astc_hdr ------------------ */ + +#ifndef GL_KHR_texture_compression_astc_hdr +#define GL_KHR_texture_compression_astc_hdr 1 + +#define GL_COMPRESSED_RGBA_ASTC_4x4_KHR 0x93B0 +#define GL_COMPRESSED_RGBA_ASTC_5x4_KHR 0x93B1 +#define GL_COMPRESSED_RGBA_ASTC_5x5_KHR 0x93B2 +#define GL_COMPRESSED_RGBA_ASTC_6x5_KHR 0x93B3 +#define GL_COMPRESSED_RGBA_ASTC_6x6_KHR 0x93B4 +#define GL_COMPRESSED_RGBA_ASTC_8x5_KHR 0x93B5 +#define GL_COMPRESSED_RGBA_ASTC_8x6_KHR 0x93B6 +#define GL_COMPRESSED_RGBA_ASTC_8x8_KHR 0x93B7 +#define GL_COMPRESSED_RGBA_ASTC_10x5_KHR 0x93B8 +#define GL_COMPRESSED_RGBA_ASTC_10x6_KHR 0x93B9 +#define GL_COMPRESSED_RGBA_ASTC_10x8_KHR 0x93BA +#define GL_COMPRESSED_RGBA_ASTC_10x10_KHR 0x93BB +#define GL_COMPRESSED_RGBA_ASTC_12x10_KHR 0x93BC +#define GL_COMPRESSED_RGBA_ASTC_12x12_KHR 0x93BD +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR 0x93D0 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR 0x93D1 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR 0x93D2 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR 0x93D3 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR 0x93D4 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR 0x93D5 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR 0x93D6 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR 0x93D7 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR 0x93D8 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR 0x93D9 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR 0x93DA +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR 0x93DB +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR 0x93DC +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR 0x93DD + +#define GLEW_KHR_texture_compression_astc_hdr GLEW_GET_VAR(__GLEW_KHR_texture_compression_astc_hdr) + +#endif /* GL_KHR_texture_compression_astc_hdr */ + +/* ------------------ GL_KHR_texture_compression_astc_ldr ------------------ */ + +#ifndef GL_KHR_texture_compression_astc_ldr +#define GL_KHR_texture_compression_astc_ldr 1 + +#define GL_COMPRESSED_RGBA_ASTC_4x4_KHR 0x93B0 +#define GL_COMPRESSED_RGBA_ASTC_5x4_KHR 0x93B1 +#define GL_COMPRESSED_RGBA_ASTC_5x5_KHR 0x93B2 +#define GL_COMPRESSED_RGBA_ASTC_6x5_KHR 0x93B3 +#define GL_COMPRESSED_RGBA_ASTC_6x6_KHR 0x93B4 +#define GL_COMPRESSED_RGBA_ASTC_8x5_KHR 0x93B5 +#define GL_COMPRESSED_RGBA_ASTC_8x6_KHR 0x93B6 +#define GL_COMPRESSED_RGBA_ASTC_8x8_KHR 0x93B7 +#define GL_COMPRESSED_RGBA_ASTC_10x5_KHR 0x93B8 +#define GL_COMPRESSED_RGBA_ASTC_10x6_KHR 0x93B9 +#define GL_COMPRESSED_RGBA_ASTC_10x8_KHR 0x93BA +#define GL_COMPRESSED_RGBA_ASTC_10x10_KHR 0x93BB +#define GL_COMPRESSED_RGBA_ASTC_12x10_KHR 0x93BC +#define GL_COMPRESSED_RGBA_ASTC_12x12_KHR 0x93BD +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR 0x93D0 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR 0x93D1 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR 0x93D2 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR 0x93D3 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR 0x93D4 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR 0x93D5 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR 0x93D6 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR 0x93D7 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR 0x93D8 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR 0x93D9 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR 0x93DA +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR 0x93DB +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR 0x93DC +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR 0x93DD + +#define GLEW_KHR_texture_compression_astc_ldr GLEW_GET_VAR(__GLEW_KHR_texture_compression_astc_ldr) + +#endif /* GL_KHR_texture_compression_astc_ldr */ + +/* --------------- GL_KHR_texture_compression_astc_sliced_3d --------------- */ + +#ifndef GL_KHR_texture_compression_astc_sliced_3d +#define GL_KHR_texture_compression_astc_sliced_3d 1 + +#define GLEW_KHR_texture_compression_astc_sliced_3d GLEW_GET_VAR(__GLEW_KHR_texture_compression_astc_sliced_3d) + +#endif /* GL_KHR_texture_compression_astc_sliced_3d */ + +/* -------------------------- GL_KTX_buffer_region ------------------------- */ + +#ifndef GL_KTX_buffer_region +#define GL_KTX_buffer_region 1 + +#define GL_KTX_FRONT_REGION 0x0 +#define GL_KTX_BACK_REGION 0x1 +#define GL_KTX_Z_REGION 0x2 +#define GL_KTX_STENCIL_REGION 0x3 + +typedef GLuint (GLAPIENTRY * PFNGLBUFFERREGIONENABLEDPROC) (void); +typedef void (GLAPIENTRY * PFNGLDELETEBUFFERREGIONPROC) (GLenum region); +typedef void (GLAPIENTRY * PFNGLDRAWBUFFERREGIONPROC) (GLuint region, GLint x, GLint y, GLsizei width, GLsizei height, GLint xDest, GLint yDest); +typedef GLuint (GLAPIENTRY * PFNGLNEWBUFFERREGIONPROC) (GLenum region); +typedef void (GLAPIENTRY * PFNGLREADBUFFERREGIONPROC) (GLuint region, GLint x, GLint y, GLsizei width, GLsizei height); + +#define glBufferRegionEnabled GLEW_GET_FUN(__glewBufferRegionEnabled) +#define glDeleteBufferRegion GLEW_GET_FUN(__glewDeleteBufferRegion) +#define glDrawBufferRegion GLEW_GET_FUN(__glewDrawBufferRegion) +#define glNewBufferRegion GLEW_GET_FUN(__glewNewBufferRegion) +#define glReadBufferRegion GLEW_GET_FUN(__glewReadBufferRegion) + +#define GLEW_KTX_buffer_region GLEW_GET_VAR(__GLEW_KTX_buffer_region) + +#endif /* GL_KTX_buffer_region */ + +/* ------------------------- GL_MESAX_texture_stack ------------------------ */ + +#ifndef GL_MESAX_texture_stack +#define GL_MESAX_texture_stack 1 + +#define GL_TEXTURE_1D_STACK_MESAX 0x8759 +#define GL_TEXTURE_2D_STACK_MESAX 0x875A +#define GL_PROXY_TEXTURE_1D_STACK_MESAX 0x875B +#define GL_PROXY_TEXTURE_2D_STACK_MESAX 0x875C +#define GL_TEXTURE_1D_STACK_BINDING_MESAX 0x875D +#define GL_TEXTURE_2D_STACK_BINDING_MESAX 0x875E + +#define GLEW_MESAX_texture_stack GLEW_GET_VAR(__GLEW_MESAX_texture_stack) + +#endif /* GL_MESAX_texture_stack */ + +/* -------------------------- GL_MESA_pack_invert -------------------------- */ + +#ifndef GL_MESA_pack_invert +#define GL_MESA_pack_invert 1 + +#define GL_PACK_INVERT_MESA 0x8758 + +#define GLEW_MESA_pack_invert GLEW_GET_VAR(__GLEW_MESA_pack_invert) + +#endif /* GL_MESA_pack_invert */ + +/* ------------------------- GL_MESA_resize_buffers ------------------------ */ + +#ifndef GL_MESA_resize_buffers +#define GL_MESA_resize_buffers 1 + +typedef void (GLAPIENTRY * PFNGLRESIZEBUFFERSMESAPROC) (void); + +#define glResizeBuffersMESA GLEW_GET_FUN(__glewResizeBuffersMESA) + +#define GLEW_MESA_resize_buffers GLEW_GET_VAR(__GLEW_MESA_resize_buffers) + +#endif /* GL_MESA_resize_buffers */ + +/* -------------------- GL_MESA_shader_integer_functions ------------------- */ + +#ifndef GL_MESA_shader_integer_functions +#define GL_MESA_shader_integer_functions 1 + +#define GLEW_MESA_shader_integer_functions GLEW_GET_VAR(__GLEW_MESA_shader_integer_functions) + +#endif /* GL_MESA_shader_integer_functions */ + +/* --------------------------- GL_MESA_window_pos -------------------------- */ + +#ifndef GL_MESA_window_pos +#define GL_MESA_window_pos 1 + +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2DMESAPROC) (GLdouble x, GLdouble y); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2DVMESAPROC) (const GLdouble* p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2FMESAPROC) (GLfloat x, GLfloat y); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2FVMESAPROC) (const GLfloat* p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2IMESAPROC) (GLint x, GLint y); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2IVMESAPROC) (const GLint* p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2SMESAPROC) (GLshort x, GLshort y); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS2SVMESAPROC) (const GLshort* p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3DMESAPROC) (GLdouble x, GLdouble y, GLdouble z); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3DVMESAPROC) (const GLdouble* p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3FMESAPROC) (GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3FVMESAPROC) (const GLfloat* p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3IMESAPROC) (GLint x, GLint y, GLint z); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3IVMESAPROC) (const GLint* p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3SMESAPROC) (GLshort x, GLshort y, GLshort z); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS3SVMESAPROC) (const GLshort* p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS4DMESAPROC) (GLdouble x, GLdouble y, GLdouble z, GLdouble); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS4DVMESAPROC) (const GLdouble* p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS4FMESAPROC) (GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS4FVMESAPROC) (const GLfloat* p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS4IMESAPROC) (GLint x, GLint y, GLint z, GLint w); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS4IVMESAPROC) (const GLint* p); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS4SMESAPROC) (GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (GLAPIENTRY * PFNGLWINDOWPOS4SVMESAPROC) (const GLshort* p); + +#define glWindowPos2dMESA GLEW_GET_FUN(__glewWindowPos2dMESA) +#define glWindowPos2dvMESA GLEW_GET_FUN(__glewWindowPos2dvMESA) +#define glWindowPos2fMESA GLEW_GET_FUN(__glewWindowPos2fMESA) +#define glWindowPos2fvMESA GLEW_GET_FUN(__glewWindowPos2fvMESA) +#define glWindowPos2iMESA GLEW_GET_FUN(__glewWindowPos2iMESA) +#define glWindowPos2ivMESA GLEW_GET_FUN(__glewWindowPos2ivMESA) +#define glWindowPos2sMESA GLEW_GET_FUN(__glewWindowPos2sMESA) +#define glWindowPos2svMESA GLEW_GET_FUN(__glewWindowPos2svMESA) +#define glWindowPos3dMESA GLEW_GET_FUN(__glewWindowPos3dMESA) +#define glWindowPos3dvMESA GLEW_GET_FUN(__glewWindowPos3dvMESA) +#define glWindowPos3fMESA GLEW_GET_FUN(__glewWindowPos3fMESA) +#define glWindowPos3fvMESA GLEW_GET_FUN(__glewWindowPos3fvMESA) +#define glWindowPos3iMESA GLEW_GET_FUN(__glewWindowPos3iMESA) +#define glWindowPos3ivMESA GLEW_GET_FUN(__glewWindowPos3ivMESA) +#define glWindowPos3sMESA GLEW_GET_FUN(__glewWindowPos3sMESA) +#define glWindowPos3svMESA GLEW_GET_FUN(__glewWindowPos3svMESA) +#define glWindowPos4dMESA GLEW_GET_FUN(__glewWindowPos4dMESA) +#define glWindowPos4dvMESA GLEW_GET_FUN(__glewWindowPos4dvMESA) +#define glWindowPos4fMESA GLEW_GET_FUN(__glewWindowPos4fMESA) +#define glWindowPos4fvMESA GLEW_GET_FUN(__glewWindowPos4fvMESA) +#define glWindowPos4iMESA GLEW_GET_FUN(__glewWindowPos4iMESA) +#define glWindowPos4ivMESA GLEW_GET_FUN(__glewWindowPos4ivMESA) +#define glWindowPos4sMESA GLEW_GET_FUN(__glewWindowPos4sMESA) +#define glWindowPos4svMESA GLEW_GET_FUN(__glewWindowPos4svMESA) + +#define GLEW_MESA_window_pos GLEW_GET_VAR(__GLEW_MESA_window_pos) + +#endif /* GL_MESA_window_pos */ + +/* ------------------------- GL_MESA_ycbcr_texture ------------------------- */ + +#ifndef GL_MESA_ycbcr_texture +#define GL_MESA_ycbcr_texture 1 + +#define GL_UNSIGNED_SHORT_8_8_MESA 0x85BA +#define GL_UNSIGNED_SHORT_8_8_REV_MESA 0x85BB +#define GL_YCBCR_MESA 0x8757 + +#define GLEW_MESA_ycbcr_texture GLEW_GET_VAR(__GLEW_MESA_ycbcr_texture) + +#endif /* GL_MESA_ycbcr_texture */ + +/* ----------- GL_NVX_blend_equation_advanced_multi_draw_buffers ----------- */ + +#ifndef GL_NVX_blend_equation_advanced_multi_draw_buffers +#define GL_NVX_blend_equation_advanced_multi_draw_buffers 1 + +#define GLEW_NVX_blend_equation_advanced_multi_draw_buffers GLEW_GET_VAR(__GLEW_NVX_blend_equation_advanced_multi_draw_buffers) + +#endif /* GL_NVX_blend_equation_advanced_multi_draw_buffers */ + +/* ----------------------- GL_NVX_conditional_render ----------------------- */ + +#ifndef GL_NVX_conditional_render +#define GL_NVX_conditional_render 1 + +typedef void (GLAPIENTRY * PFNGLBEGINCONDITIONALRENDERNVXPROC) (GLuint id); +typedef void (GLAPIENTRY * PFNGLENDCONDITIONALRENDERNVXPROC) (void); + +#define glBeginConditionalRenderNVX GLEW_GET_FUN(__glewBeginConditionalRenderNVX) +#define glEndConditionalRenderNVX GLEW_GET_FUN(__glewEndConditionalRenderNVX) + +#define GLEW_NVX_conditional_render GLEW_GET_VAR(__GLEW_NVX_conditional_render) + +#endif /* GL_NVX_conditional_render */ + +/* ------------------------- GL_NVX_gpu_memory_info ------------------------ */ + +#ifndef GL_NVX_gpu_memory_info +#define GL_NVX_gpu_memory_info 1 + +#define GL_GPU_MEMORY_INFO_DEDICATED_VIDMEM_NVX 0x9047 +#define GL_GPU_MEMORY_INFO_TOTAL_AVAILABLE_MEMORY_NVX 0x9048 +#define GL_GPU_MEMORY_INFO_CURRENT_AVAILABLE_VIDMEM_NVX 0x9049 +#define GL_GPU_MEMORY_INFO_EVICTION_COUNT_NVX 0x904A +#define GL_GPU_MEMORY_INFO_EVICTED_MEMORY_NVX 0x904B + +#define GLEW_NVX_gpu_memory_info GLEW_GET_VAR(__GLEW_NVX_gpu_memory_info) + +#endif /* GL_NVX_gpu_memory_info */ + +/* ---------------------- GL_NVX_linked_gpu_multicast ---------------------- */ + +#ifndef GL_NVX_linked_gpu_multicast +#define GL_NVX_linked_gpu_multicast 1 + +#define GL_LGPU_SEPARATE_STORAGE_BIT_NVX 0x0800 +#define GL_MAX_LGPU_GPUS_NVX 0x92BA + +typedef void (GLAPIENTRY * PFNGLLGPUCOPYIMAGESUBDATANVXPROC) (GLuint sourceGpu, GLbitfield destinationGpuMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srxY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +typedef void (GLAPIENTRY * PFNGLLGPUINTERLOCKNVXPROC) (void); +typedef void (GLAPIENTRY * PFNGLLGPUNAMEDBUFFERSUBDATANVXPROC) (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); + +#define glLGPUCopyImageSubDataNVX GLEW_GET_FUN(__glewLGPUCopyImageSubDataNVX) +#define glLGPUInterlockNVX GLEW_GET_FUN(__glewLGPUInterlockNVX) +#define glLGPUNamedBufferSubDataNVX GLEW_GET_FUN(__glewLGPUNamedBufferSubDataNVX) + +#define GLEW_NVX_linked_gpu_multicast GLEW_GET_VAR(__GLEW_NVX_linked_gpu_multicast) + +#endif /* GL_NVX_linked_gpu_multicast */ + +/* ------------------------ GL_NV_3dvision_settings ------------------------ */ + +#ifndef GL_NV_3dvision_settings +#define GL_NV_3dvision_settings 1 + +#define GL_3DVISION_STEREO_NV 0x90F4 +#define GL_STEREO_SEPARATION_NV 0x90F5 +#define GL_STEREO_CONVERGENCE_NV 0x90F6 +#define GL_STEREO_CUTOFF_NV 0x90F7 +#define GL_STEREO_PROJECTION_NV 0x90F8 +#define GL_STEREO_PROJECTION_PERSPECTIVE_NV 0x90F9 +#define GL_STEREO_PROJECTION_ORTHO_NV 0x90FA + +typedef void (GLAPIENTRY * PFNGLSTEREOPARAMETERFNVPROC) (GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLSTEREOPARAMETERINVPROC) (GLenum pname, GLint param); + +#define glStereoParameterfNV GLEW_GET_FUN(__glewStereoParameterfNV) +#define glStereoParameteriNV GLEW_GET_FUN(__glewStereoParameteriNV) + +#define GLEW_NV_3dvision_settings GLEW_GET_VAR(__GLEW_NV_3dvision_settings) + +#endif /* GL_NV_3dvision_settings */ + +/* ------------------- GL_NV_EGL_stream_consumer_external ------------------ */ + +#ifndef GL_NV_EGL_stream_consumer_external +#define GL_NV_EGL_stream_consumer_external 1 + +#define GL_TEXTURE_EXTERNAL_OES 0x8D65 +#define GL_SAMPLER_EXTERNAL_OES 0x8D66 +#define GL_TEXTURE_BINDING_EXTERNAL_OES 0x8D67 +#define GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES 0x8D68 + +#define GLEW_NV_EGL_stream_consumer_external GLEW_GET_VAR(__GLEW_NV_EGL_stream_consumer_external) + +#endif /* GL_NV_EGL_stream_consumer_external */ + +/* ----------------- GL_NV_alpha_to_coverage_dither_control ---------------- */ + +#ifndef GL_NV_alpha_to_coverage_dither_control +#define GL_NV_alpha_to_coverage_dither_control 1 + +#define GL_ALPHA_TO_COVERAGE_DITHER_MODE_NV 0x92BF +#define GL_ALPHA_TO_COVERAGE_DITHER_DEFAULT_NV 0x934D +#define GL_ALPHA_TO_COVERAGE_DITHER_ENABLE_NV 0x934E +#define GL_ALPHA_TO_COVERAGE_DITHER_DISABLE_NV 0x934F + +#define GLEW_NV_alpha_to_coverage_dither_control GLEW_GET_VAR(__GLEW_NV_alpha_to_coverage_dither_control) + +#endif /* GL_NV_alpha_to_coverage_dither_control */ + +/* ------------------------------- GL_NV_bgr ------------------------------- */ + +#ifndef GL_NV_bgr +#define GL_NV_bgr 1 + +#define GL_BGR_NV 0x80E0 + +#define GLEW_NV_bgr GLEW_GET_VAR(__GLEW_NV_bgr) + +#endif /* GL_NV_bgr */ + +/* ------------------- GL_NV_bindless_multi_draw_indirect ------------------ */ + +#ifndef GL_NV_bindless_multi_draw_indirect +#define GL_NV_bindless_multi_draw_indirect 1 + +typedef void (GLAPIENTRY * PFNGLMULTIDRAWARRAYSINDIRECTBINDLESSNVPROC) (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei stride, GLint vertexBufferCount); +typedef void (GLAPIENTRY * PFNGLMULTIDRAWELEMENTSINDIRECTBINDLESSNVPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawCount, GLsizei stride, GLint vertexBufferCount); + +#define glMultiDrawArraysIndirectBindlessNV GLEW_GET_FUN(__glewMultiDrawArraysIndirectBindlessNV) +#define glMultiDrawElementsIndirectBindlessNV GLEW_GET_FUN(__glewMultiDrawElementsIndirectBindlessNV) + +#define GLEW_NV_bindless_multi_draw_indirect GLEW_GET_VAR(__GLEW_NV_bindless_multi_draw_indirect) + +#endif /* GL_NV_bindless_multi_draw_indirect */ + +/* ---------------- GL_NV_bindless_multi_draw_indirect_count --------------- */ + +#ifndef GL_NV_bindless_multi_draw_indirect_count +#define GL_NV_bindless_multi_draw_indirect_count 1 + +typedef void (GLAPIENTRY * PFNGLMULTIDRAWARRAYSINDIRECTBINDLESSCOUNTNVPROC) (GLenum mode, const void *indirect, GLintptr drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +typedef void (GLAPIENTRY * PFNGLMULTIDRAWELEMENTSINDIRECTBINDLESSCOUNTNVPROC) (GLenum mode, GLenum type, const void *indirect, GLintptr drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); + +#define glMultiDrawArraysIndirectBindlessCountNV GLEW_GET_FUN(__glewMultiDrawArraysIndirectBindlessCountNV) +#define glMultiDrawElementsIndirectBindlessCountNV GLEW_GET_FUN(__glewMultiDrawElementsIndirectBindlessCountNV) + +#define GLEW_NV_bindless_multi_draw_indirect_count GLEW_GET_VAR(__GLEW_NV_bindless_multi_draw_indirect_count) + +#endif /* GL_NV_bindless_multi_draw_indirect_count */ + +/* ------------------------- GL_NV_bindless_texture ------------------------ */ + +#ifndef GL_NV_bindless_texture +#define GL_NV_bindless_texture 1 + +typedef GLuint64 (GLAPIENTRY * PFNGLGETIMAGEHANDLENVPROC) (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +typedef GLuint64 (GLAPIENTRY * PFNGLGETTEXTUREHANDLENVPROC) (GLuint texture); +typedef GLuint64 (GLAPIENTRY * PFNGLGETTEXTURESAMPLERHANDLENVPROC) (GLuint texture, GLuint sampler); +typedef GLboolean (GLAPIENTRY * PFNGLISIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef GLboolean (GLAPIENTRY * PFNGLISTEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef void (GLAPIENTRY * PFNGLMAKEIMAGEHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef void (GLAPIENTRY * PFNGLMAKEIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle, GLenum access); +typedef void (GLAPIENTRY * PFNGLMAKETEXTUREHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef void (GLAPIENTRY * PFNGLMAKETEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMHANDLEUI64NVPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMHANDLEUI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64* values); +typedef void (GLAPIENTRY * PFNGLUNIFORMHANDLEUI64NVPROC) (GLint location, GLuint64 value); +typedef void (GLAPIENTRY * PFNGLUNIFORMHANDLEUI64VNVPROC) (GLint location, GLsizei count, const GLuint64* value); + +#define glGetImageHandleNV GLEW_GET_FUN(__glewGetImageHandleNV) +#define glGetTextureHandleNV GLEW_GET_FUN(__glewGetTextureHandleNV) +#define glGetTextureSamplerHandleNV GLEW_GET_FUN(__glewGetTextureSamplerHandleNV) +#define glIsImageHandleResidentNV GLEW_GET_FUN(__glewIsImageHandleResidentNV) +#define glIsTextureHandleResidentNV GLEW_GET_FUN(__glewIsTextureHandleResidentNV) +#define glMakeImageHandleNonResidentNV GLEW_GET_FUN(__glewMakeImageHandleNonResidentNV) +#define glMakeImageHandleResidentNV GLEW_GET_FUN(__glewMakeImageHandleResidentNV) +#define glMakeTextureHandleNonResidentNV GLEW_GET_FUN(__glewMakeTextureHandleNonResidentNV) +#define glMakeTextureHandleResidentNV GLEW_GET_FUN(__glewMakeTextureHandleResidentNV) +#define glProgramUniformHandleui64NV GLEW_GET_FUN(__glewProgramUniformHandleui64NV) +#define glProgramUniformHandleui64vNV GLEW_GET_FUN(__glewProgramUniformHandleui64vNV) +#define glUniformHandleui64NV GLEW_GET_FUN(__glewUniformHandleui64NV) +#define glUniformHandleui64vNV GLEW_GET_FUN(__glewUniformHandleui64vNV) + +#define GLEW_NV_bindless_texture GLEW_GET_VAR(__GLEW_NV_bindless_texture) + +#endif /* GL_NV_bindless_texture */ + +/* --------------------- GL_NV_blend_equation_advanced --------------------- */ + +#ifndef GL_NV_blend_equation_advanced +#define GL_NV_blend_equation_advanced 1 + +#define GL_XOR_NV 0x1506 +#define GL_RED_NV 0x1903 +#define GL_GREEN_NV 0x1904 +#define GL_BLUE_NV 0x1905 +#define GL_BLEND_PREMULTIPLIED_SRC_NV 0x9280 +#define GL_BLEND_OVERLAP_NV 0x9281 +#define GL_UNCORRELATED_NV 0x9282 +#define GL_DISJOINT_NV 0x9283 +#define GL_CONJOINT_NV 0x9284 +#define GL_BLEND_ADVANCED_COHERENT_NV 0x9285 +#define GL_SRC_NV 0x9286 +#define GL_DST_NV 0x9287 +#define GL_SRC_OVER_NV 0x9288 +#define GL_DST_OVER_NV 0x9289 +#define GL_SRC_IN_NV 0x928A +#define GL_DST_IN_NV 0x928B +#define GL_SRC_OUT_NV 0x928C +#define GL_DST_OUT_NV 0x928D +#define GL_SRC_ATOP_NV 0x928E +#define GL_DST_ATOP_NV 0x928F +#define GL_PLUS_NV 0x9291 +#define GL_PLUS_DARKER_NV 0x9292 +#define GL_MULTIPLY_NV 0x9294 +#define GL_SCREEN_NV 0x9295 +#define GL_OVERLAY_NV 0x9296 +#define GL_DARKEN_NV 0x9297 +#define GL_LIGHTEN_NV 0x9298 +#define GL_COLORDODGE_NV 0x9299 +#define GL_COLORBURN_NV 0x929A +#define GL_HARDLIGHT_NV 0x929B +#define GL_SOFTLIGHT_NV 0x929C +#define GL_DIFFERENCE_NV 0x929E +#define GL_MINUS_NV 0x929F +#define GL_EXCLUSION_NV 0x92A0 +#define GL_CONTRAST_NV 0x92A1 +#define GL_INVERT_RGB_NV 0x92A3 +#define GL_LINEARDODGE_NV 0x92A4 +#define GL_LINEARBURN_NV 0x92A5 +#define GL_VIVIDLIGHT_NV 0x92A6 +#define GL_LINEARLIGHT_NV 0x92A7 +#define GL_PINLIGHT_NV 0x92A8 +#define GL_HARDMIX_NV 0x92A9 +#define GL_HSL_HUE_NV 0x92AD +#define GL_HSL_SATURATION_NV 0x92AE +#define GL_HSL_COLOR_NV 0x92AF +#define GL_HSL_LUMINOSITY_NV 0x92B0 +#define GL_PLUS_CLAMPED_NV 0x92B1 +#define GL_PLUS_CLAMPED_ALPHA_NV 0x92B2 +#define GL_MINUS_CLAMPED_NV 0x92B3 +#define GL_INVERT_OVG_NV 0x92B4 + +typedef void (GLAPIENTRY * PFNGLBLENDBARRIERNVPROC) (void); +typedef void (GLAPIENTRY * PFNGLBLENDPARAMETERINVPROC) (GLenum pname, GLint value); + +#define glBlendBarrierNV GLEW_GET_FUN(__glewBlendBarrierNV) +#define glBlendParameteriNV GLEW_GET_FUN(__glewBlendParameteriNV) + +#define GLEW_NV_blend_equation_advanced GLEW_GET_VAR(__GLEW_NV_blend_equation_advanced) + +#endif /* GL_NV_blend_equation_advanced */ + +/* ----------------- GL_NV_blend_equation_advanced_coherent ---------------- */ + +#ifndef GL_NV_blend_equation_advanced_coherent +#define GL_NV_blend_equation_advanced_coherent 1 + +#define GLEW_NV_blend_equation_advanced_coherent GLEW_GET_VAR(__GLEW_NV_blend_equation_advanced_coherent) + +#endif /* GL_NV_blend_equation_advanced_coherent */ + +/* ----------------------- GL_NV_blend_minmax_factor ----------------------- */ + +#ifndef GL_NV_blend_minmax_factor +#define GL_NV_blend_minmax_factor 1 + +#define GL_FACTOR_MIN_AMD 0x901C +#define GL_FACTOR_MAX_AMD 0x901D + +#define GLEW_NV_blend_minmax_factor GLEW_GET_VAR(__GLEW_NV_blend_minmax_factor) + +#endif /* GL_NV_blend_minmax_factor */ + +/* --------------------------- GL_NV_blend_square -------------------------- */ + +#ifndef GL_NV_blend_square +#define GL_NV_blend_square 1 + +#define GLEW_NV_blend_square GLEW_GET_VAR(__GLEW_NV_blend_square) + +#endif /* GL_NV_blend_square */ + +/* ----------------------- GL_NV_clip_space_w_scaling ---------------------- */ + +#ifndef GL_NV_clip_space_w_scaling +#define GL_NV_clip_space_w_scaling 1 + +#define GL_VIEWPORT_POSITION_W_SCALE_NV 0x937C +#define GL_VIEWPORT_POSITION_W_SCALE_X_COEFF_NV 0x937D +#define GL_VIEWPORT_POSITION_W_SCALE_Y_COEFF_NV 0x937E + +typedef void (GLAPIENTRY * PFNGLVIEWPORTPOSITIONWSCALENVPROC) (GLuint index, GLfloat xcoeff, GLfloat ycoeff); + +#define glViewportPositionWScaleNV GLEW_GET_FUN(__glewViewportPositionWScaleNV) + +#define GLEW_NV_clip_space_w_scaling GLEW_GET_VAR(__GLEW_NV_clip_space_w_scaling) + +#endif /* GL_NV_clip_space_w_scaling */ + +/* --------------------------- GL_NV_command_list -------------------------- */ + +#ifndef GL_NV_command_list +#define GL_NV_command_list 1 + +#define GL_TERMINATE_SEQUENCE_COMMAND_NV 0x0000 +#define GL_NOP_COMMAND_NV 0x0001 +#define GL_DRAW_ELEMENTS_COMMAND_NV 0x0002 +#define GL_DRAW_ARRAYS_COMMAND_NV 0x0003 +#define GL_DRAW_ELEMENTS_STRIP_COMMAND_NV 0x0004 +#define GL_DRAW_ARRAYS_STRIP_COMMAND_NV 0x0005 +#define GL_DRAW_ELEMENTS_INSTANCED_COMMAND_NV 0x0006 +#define GL_DRAW_ARRAYS_INSTANCED_COMMAND_NV 0x0007 +#define GL_ELEMENT_ADDRESS_COMMAND_NV 0x0008 +#define GL_ATTRIBUTE_ADDRESS_COMMAND_NV 0x0009 +#define GL_UNIFORM_ADDRESS_COMMAND_NV 0x000a +#define GL_BLEND_COLOR_COMMAND_NV 0x000b +#define GL_STENCIL_REF_COMMAND_NV 0x000c +#define GL_LINE_WIDTH_COMMAND_NV 0x000d +#define GL_POLYGON_OFFSET_COMMAND_NV 0x000e +#define GL_ALPHA_REF_COMMAND_NV 0x000f +#define GL_VIEWPORT_COMMAND_NV 0x0010 +#define GL_SCISSOR_COMMAND_NV 0x0011 +#define GL_FRONT_FACE_COMMAND_NV 0x0012 + +typedef void (GLAPIENTRY * PFNGLCALLCOMMANDLISTNVPROC) (GLuint list); +typedef void (GLAPIENTRY * PFNGLCOMMANDLISTSEGMENTSNVPROC) (GLuint list, GLuint segments); +typedef void (GLAPIENTRY * PFNGLCOMPILECOMMANDLISTNVPROC) (GLuint list); +typedef void (GLAPIENTRY * PFNGLCREATECOMMANDLISTSNVPROC) (GLsizei n, GLuint* lists); +typedef void (GLAPIENTRY * PFNGLCREATESTATESNVPROC) (GLsizei n, GLuint* states); +typedef void (GLAPIENTRY * PFNGLDELETECOMMANDLISTSNVPROC) (GLsizei n, const GLuint* lists); +typedef void (GLAPIENTRY * PFNGLDELETESTATESNVPROC) (GLsizei n, const GLuint* states); +typedef void (GLAPIENTRY * PFNGLDRAWCOMMANDSADDRESSNVPROC) (GLenum primitiveMode, const GLuint64* indirects, const GLsizei* sizes, GLuint count); +typedef void (GLAPIENTRY * PFNGLDRAWCOMMANDSNVPROC) (GLenum primitiveMode, GLuint buffer, const GLintptr* indirects, const GLsizei* sizes, GLuint count); +typedef void (GLAPIENTRY * PFNGLDRAWCOMMANDSSTATESADDRESSNVPROC) (const GLuint64* indirects, const GLsizei* sizes, const GLuint* states, const GLuint* fbos, GLuint count); +typedef void (GLAPIENTRY * PFNGLDRAWCOMMANDSSTATESNVPROC) (GLuint buffer, const GLintptr* indirects, const GLsizei* sizes, const GLuint* states, const GLuint* fbos, GLuint count); +typedef GLuint (GLAPIENTRY * PFNGLGETCOMMANDHEADERNVPROC) (GLenum tokenID, GLuint size); +typedef GLushort (GLAPIENTRY * PFNGLGETSTAGEINDEXNVPROC) (GLenum shadertype); +typedef GLboolean (GLAPIENTRY * PFNGLISCOMMANDLISTNVPROC) (GLuint list); +typedef GLboolean (GLAPIENTRY * PFNGLISSTATENVPROC) (GLuint state); +typedef void (GLAPIENTRY * PFNGLLISTDRAWCOMMANDSSTATESCLIENTNVPROC) (GLuint list, GLuint segment, const void** indirects, const GLsizei* sizes, const GLuint* states, const GLuint* fbos, GLuint count); +typedef void (GLAPIENTRY * PFNGLSTATECAPTURENVPROC) (GLuint state, GLenum mode); + +#define glCallCommandListNV GLEW_GET_FUN(__glewCallCommandListNV) +#define glCommandListSegmentsNV GLEW_GET_FUN(__glewCommandListSegmentsNV) +#define glCompileCommandListNV GLEW_GET_FUN(__glewCompileCommandListNV) +#define glCreateCommandListsNV GLEW_GET_FUN(__glewCreateCommandListsNV) +#define glCreateStatesNV GLEW_GET_FUN(__glewCreateStatesNV) +#define glDeleteCommandListsNV GLEW_GET_FUN(__glewDeleteCommandListsNV) +#define glDeleteStatesNV GLEW_GET_FUN(__glewDeleteStatesNV) +#define glDrawCommandsAddressNV GLEW_GET_FUN(__glewDrawCommandsAddressNV) +#define glDrawCommandsNV GLEW_GET_FUN(__glewDrawCommandsNV) +#define glDrawCommandsStatesAddressNV GLEW_GET_FUN(__glewDrawCommandsStatesAddressNV) +#define glDrawCommandsStatesNV GLEW_GET_FUN(__glewDrawCommandsStatesNV) +#define glGetCommandHeaderNV GLEW_GET_FUN(__glewGetCommandHeaderNV) +#define glGetStageIndexNV GLEW_GET_FUN(__glewGetStageIndexNV) +#define glIsCommandListNV GLEW_GET_FUN(__glewIsCommandListNV) +#define glIsStateNV GLEW_GET_FUN(__glewIsStateNV) +#define glListDrawCommandsStatesClientNV GLEW_GET_FUN(__glewListDrawCommandsStatesClientNV) +#define glStateCaptureNV GLEW_GET_FUN(__glewStateCaptureNV) + +#define GLEW_NV_command_list GLEW_GET_VAR(__GLEW_NV_command_list) + +#endif /* GL_NV_command_list */ + +/* ------------------------- GL_NV_compute_program5 ------------------------ */ + +#ifndef GL_NV_compute_program5 +#define GL_NV_compute_program5 1 + +#define GL_COMPUTE_PROGRAM_NV 0x90FB +#define GL_COMPUTE_PROGRAM_PARAMETER_BUFFER_NV 0x90FC + +#define GLEW_NV_compute_program5 GLEW_GET_VAR(__GLEW_NV_compute_program5) + +#endif /* GL_NV_compute_program5 */ + +/* ------------------------ GL_NV_conditional_render ----------------------- */ + +#ifndef GL_NV_conditional_render +#define GL_NV_conditional_render 1 + +#define GL_QUERY_WAIT_NV 0x8E13 +#define GL_QUERY_NO_WAIT_NV 0x8E14 +#define GL_QUERY_BY_REGION_WAIT_NV 0x8E15 +#define GL_QUERY_BY_REGION_NO_WAIT_NV 0x8E16 + +typedef void (GLAPIENTRY * PFNGLBEGINCONDITIONALRENDERNVPROC) (GLuint id, GLenum mode); +typedef void (GLAPIENTRY * PFNGLENDCONDITIONALRENDERNVPROC) (void); + +#define glBeginConditionalRenderNV GLEW_GET_FUN(__glewBeginConditionalRenderNV) +#define glEndConditionalRenderNV GLEW_GET_FUN(__glewEndConditionalRenderNV) + +#define GLEW_NV_conditional_render GLEW_GET_VAR(__GLEW_NV_conditional_render) + +#endif /* GL_NV_conditional_render */ + +/* ----------------------- GL_NV_conservative_raster ----------------------- */ + +#ifndef GL_NV_conservative_raster +#define GL_NV_conservative_raster 1 + +#define GL_CONSERVATIVE_RASTERIZATION_NV 0x9346 +#define GL_SUBPIXEL_PRECISION_BIAS_X_BITS_NV 0x9347 +#define GL_SUBPIXEL_PRECISION_BIAS_Y_BITS_NV 0x9348 +#define GL_MAX_SUBPIXEL_PRECISION_BIAS_BITS_NV 0x9349 + +typedef void (GLAPIENTRY * PFNGLSUBPIXELPRECISIONBIASNVPROC) (GLuint xbits, GLuint ybits); + +#define glSubpixelPrecisionBiasNV GLEW_GET_FUN(__glewSubpixelPrecisionBiasNV) + +#define GLEW_NV_conservative_raster GLEW_GET_VAR(__GLEW_NV_conservative_raster) + +#endif /* GL_NV_conservative_raster */ + +/* -------------------- GL_NV_conservative_raster_dilate ------------------- */ + +#ifndef GL_NV_conservative_raster_dilate +#define GL_NV_conservative_raster_dilate 1 + +#define GL_CONSERVATIVE_RASTER_DILATE_NV 0x9379 +#define GL_CONSERVATIVE_RASTER_DILATE_RANGE_NV 0x937A +#define GL_CONSERVATIVE_RASTER_DILATE_GRANULARITY_NV 0x937B + +typedef void (GLAPIENTRY * PFNGLCONSERVATIVERASTERPARAMETERFNVPROC) (GLenum pname, GLfloat value); + +#define glConservativeRasterParameterfNV GLEW_GET_FUN(__glewConservativeRasterParameterfNV) + +#define GLEW_NV_conservative_raster_dilate GLEW_GET_VAR(__GLEW_NV_conservative_raster_dilate) + +#endif /* GL_NV_conservative_raster_dilate */ + +/* -------------- GL_NV_conservative_raster_pre_snap_triangles ------------- */ + +#ifndef GL_NV_conservative_raster_pre_snap_triangles +#define GL_NV_conservative_raster_pre_snap_triangles 1 + +#define GL_CONSERVATIVE_RASTER_MODE_NV 0x954D +#define GL_CONSERVATIVE_RASTER_MODE_POST_SNAP_NV 0x954E +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_TRIANGLES_NV 0x954F + +typedef void (GLAPIENTRY * PFNGLCONSERVATIVERASTERPARAMETERINVPROC) (GLenum pname, GLint param); + +#define glConservativeRasterParameteriNV GLEW_GET_FUN(__glewConservativeRasterParameteriNV) + +#define GLEW_NV_conservative_raster_pre_snap_triangles GLEW_GET_VAR(__GLEW_NV_conservative_raster_pre_snap_triangles) + +#endif /* GL_NV_conservative_raster_pre_snap_triangles */ + +/* --------------------------- GL_NV_copy_buffer --------------------------- */ + +#ifndef GL_NV_copy_buffer +#define GL_NV_copy_buffer 1 + +#define GL_COPY_READ_BUFFER_NV 0x8F36 +#define GL_COPY_WRITE_BUFFER_NV 0x8F37 + +typedef void (GLAPIENTRY * PFNGLCOPYBUFFERSUBDATANVPROC) (GLenum readtarget, GLenum writetarget, GLintptr readoffset, GLintptr writeoffset, GLsizeiptr size); + +#define glCopyBufferSubDataNV GLEW_GET_FUN(__glewCopyBufferSubDataNV) + +#define GLEW_NV_copy_buffer GLEW_GET_VAR(__GLEW_NV_copy_buffer) + +#endif /* GL_NV_copy_buffer */ + +/* ----------------------- GL_NV_copy_depth_to_color ----------------------- */ + +#ifndef GL_NV_copy_depth_to_color +#define GL_NV_copy_depth_to_color 1 + +#define GL_DEPTH_STENCIL_TO_RGBA_NV 0x886E +#define GL_DEPTH_STENCIL_TO_BGRA_NV 0x886F + +#define GLEW_NV_copy_depth_to_color GLEW_GET_VAR(__GLEW_NV_copy_depth_to_color) + +#endif /* GL_NV_copy_depth_to_color */ + +/* ---------------------------- GL_NV_copy_image --------------------------- */ + +#ifndef GL_NV_copy_image +#define GL_NV_copy_image 1 + +typedef void (GLAPIENTRY * PFNGLCOPYIMAGESUBDATANVPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); + +#define glCopyImageSubDataNV GLEW_GET_FUN(__glewCopyImageSubDataNV) + +#define GLEW_NV_copy_image GLEW_GET_VAR(__GLEW_NV_copy_image) + +#endif /* GL_NV_copy_image */ + +/* -------------------------- GL_NV_deep_texture3D ------------------------- */ + +#ifndef GL_NV_deep_texture3D +#define GL_NV_deep_texture3D 1 + +#define GL_MAX_DEEP_3D_TEXTURE_WIDTH_HEIGHT_NV 0x90D0 +#define GL_MAX_DEEP_3D_TEXTURE_DEPTH_NV 0x90D1 + +#define GLEW_NV_deep_texture3D GLEW_GET_VAR(__GLEW_NV_deep_texture3D) + +#endif /* GL_NV_deep_texture3D */ + +/* ------------------------ GL_NV_depth_buffer_float ----------------------- */ + +#ifndef GL_NV_depth_buffer_float +#define GL_NV_depth_buffer_float 1 + +#define GL_DEPTH_COMPONENT32F_NV 0x8DAB +#define GL_DEPTH32F_STENCIL8_NV 0x8DAC +#define GL_FLOAT_32_UNSIGNED_INT_24_8_REV_NV 0x8DAD +#define GL_DEPTH_BUFFER_FLOAT_MODE_NV 0x8DAF + +typedef void (GLAPIENTRY * PFNGLCLEARDEPTHDNVPROC) (GLdouble depth); +typedef void (GLAPIENTRY * PFNGLDEPTHBOUNDSDNVPROC) (GLdouble zmin, GLdouble zmax); +typedef void (GLAPIENTRY * PFNGLDEPTHRANGEDNVPROC) (GLdouble zNear, GLdouble zFar); + +#define glClearDepthdNV GLEW_GET_FUN(__glewClearDepthdNV) +#define glDepthBoundsdNV GLEW_GET_FUN(__glewDepthBoundsdNV) +#define glDepthRangedNV GLEW_GET_FUN(__glewDepthRangedNV) + +#define GLEW_NV_depth_buffer_float GLEW_GET_VAR(__GLEW_NV_depth_buffer_float) + +#endif /* GL_NV_depth_buffer_float */ + +/* --------------------------- GL_NV_depth_clamp --------------------------- */ + +#ifndef GL_NV_depth_clamp +#define GL_NV_depth_clamp 1 + +#define GL_DEPTH_CLAMP_NV 0x864F + +#define GLEW_NV_depth_clamp GLEW_GET_VAR(__GLEW_NV_depth_clamp) + +#endif /* GL_NV_depth_clamp */ + +/* ---------------------- GL_NV_depth_range_unclamped ---------------------- */ + +#ifndef GL_NV_depth_range_unclamped +#define GL_NV_depth_range_unclamped 1 + +#define GL_SAMPLE_COUNT_BITS_NV 0x8864 +#define GL_CURRENT_SAMPLE_COUNT_QUERY_NV 0x8865 +#define GL_QUERY_RESULT_NV 0x8866 +#define GL_QUERY_RESULT_AVAILABLE_NV 0x8867 +#define GL_SAMPLE_COUNT_NV 0x8914 + +#define GLEW_NV_depth_range_unclamped GLEW_GET_VAR(__GLEW_NV_depth_range_unclamped) + +#endif /* GL_NV_depth_range_unclamped */ + +/* --------------------------- GL_NV_draw_buffers -------------------------- */ + +#ifndef GL_NV_draw_buffers +#define GL_NV_draw_buffers 1 + +#define GL_MAX_DRAW_BUFFERS_NV 0x8824 +#define GL_DRAW_BUFFER0_NV 0x8825 +#define GL_DRAW_BUFFER1_NV 0x8826 +#define GL_DRAW_BUFFER2_NV 0x8827 +#define GL_DRAW_BUFFER3_NV 0x8828 +#define GL_DRAW_BUFFER4_NV 0x8829 +#define GL_DRAW_BUFFER5_NV 0x882A +#define GL_DRAW_BUFFER6_NV 0x882B +#define GL_DRAW_BUFFER7_NV 0x882C +#define GL_DRAW_BUFFER8_NV 0x882D +#define GL_DRAW_BUFFER9_NV 0x882E +#define GL_DRAW_BUFFER10_NV 0x882F +#define GL_DRAW_BUFFER11_NV 0x8830 +#define GL_DRAW_BUFFER12_NV 0x8831 +#define GL_DRAW_BUFFER13_NV 0x8832 +#define GL_DRAW_BUFFER14_NV 0x8833 +#define GL_DRAW_BUFFER15_NV 0x8834 +#define GL_COLOR_ATTACHMENT0_NV 0x8CE0 +#define GL_COLOR_ATTACHMENT1_NV 0x8CE1 +#define GL_COLOR_ATTACHMENT2_NV 0x8CE2 +#define GL_COLOR_ATTACHMENT3_NV 0x8CE3 +#define GL_COLOR_ATTACHMENT4_NV 0x8CE4 +#define GL_COLOR_ATTACHMENT5_NV 0x8CE5 +#define GL_COLOR_ATTACHMENT6_NV 0x8CE6 +#define GL_COLOR_ATTACHMENT7_NV 0x8CE7 +#define GL_COLOR_ATTACHMENT8_NV 0x8CE8 +#define GL_COLOR_ATTACHMENT9_NV 0x8CE9 +#define GL_COLOR_ATTACHMENT10_NV 0x8CEA +#define GL_COLOR_ATTACHMENT11_NV 0x8CEB +#define GL_COLOR_ATTACHMENT12_NV 0x8CEC +#define GL_COLOR_ATTACHMENT13_NV 0x8CED +#define GL_COLOR_ATTACHMENT14_NV 0x8CEE +#define GL_COLOR_ATTACHMENT15_NV 0x8CEF + +typedef void (GLAPIENTRY * PFNGLDRAWBUFFERSNVPROC) (GLsizei n, const GLenum* bufs); + +#define glDrawBuffersNV GLEW_GET_FUN(__glewDrawBuffersNV) + +#define GLEW_NV_draw_buffers GLEW_GET_VAR(__GLEW_NV_draw_buffers) + +#endif /* GL_NV_draw_buffers */ + +/* -------------------------- GL_NV_draw_instanced ------------------------- */ + +#ifndef GL_NV_draw_instanced +#define GL_NV_draw_instanced 1 + +typedef void (GLAPIENTRY * PFNGLDRAWARRAYSINSTANCEDNVPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (GLAPIENTRY * PFNGLDRAWELEMENTSINSTANCEDNVPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); + +#define glDrawArraysInstancedNV GLEW_GET_FUN(__glewDrawArraysInstancedNV) +#define glDrawElementsInstancedNV GLEW_GET_FUN(__glewDrawElementsInstancedNV) + +#define GLEW_NV_draw_instanced GLEW_GET_VAR(__GLEW_NV_draw_instanced) + +#endif /* GL_NV_draw_instanced */ + +/* --------------------------- GL_NV_draw_texture -------------------------- */ + +#ifndef GL_NV_draw_texture +#define GL_NV_draw_texture 1 + +typedef void (GLAPIENTRY * PFNGLDRAWTEXTURENVPROC) (GLuint texture, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); + +#define glDrawTextureNV GLEW_GET_FUN(__glewDrawTextureNV) + +#define GLEW_NV_draw_texture GLEW_GET_VAR(__GLEW_NV_draw_texture) + +#endif /* GL_NV_draw_texture */ + +/* ------------------------ GL_NV_draw_vulkan_image ------------------------ */ + +#ifndef GL_NV_draw_vulkan_image +#define GL_NV_draw_vulkan_image 1 + +typedef void (APIENTRY *GLVULKANPROCNV)(void); + +typedef void (GLAPIENTRY * PFNGLDRAWVKIMAGENVPROC) (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +typedef GLVULKANPROCNV (GLAPIENTRY * PFNGLGETVKPROCADDRNVPROC) (const GLchar* name); +typedef void (GLAPIENTRY * PFNGLSIGNALVKFENCENVPROC) (GLuint64 vkFence); +typedef void (GLAPIENTRY * PFNGLSIGNALVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (GLAPIENTRY * PFNGLWAITVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); + +#define glDrawVkImageNV GLEW_GET_FUN(__glewDrawVkImageNV) +#define glGetVkProcAddrNV GLEW_GET_FUN(__glewGetVkProcAddrNV) +#define glSignalVkFenceNV GLEW_GET_FUN(__glewSignalVkFenceNV) +#define glSignalVkSemaphoreNV GLEW_GET_FUN(__glewSignalVkSemaphoreNV) +#define glWaitVkSemaphoreNV GLEW_GET_FUN(__glewWaitVkSemaphoreNV) + +#define GLEW_NV_draw_vulkan_image GLEW_GET_VAR(__GLEW_NV_draw_vulkan_image) + +#endif /* GL_NV_draw_vulkan_image */ + +/* ---------------------------- GL_NV_evaluators --------------------------- */ + +#ifndef GL_NV_evaluators +#define GL_NV_evaluators 1 + +#define GL_EVAL_2D_NV 0x86C0 +#define GL_EVAL_TRIANGULAR_2D_NV 0x86C1 +#define GL_MAP_TESSELLATION_NV 0x86C2 +#define GL_MAP_ATTRIB_U_ORDER_NV 0x86C3 +#define GL_MAP_ATTRIB_V_ORDER_NV 0x86C4 +#define GL_EVAL_FRACTIONAL_TESSELLATION_NV 0x86C5 +#define GL_EVAL_VERTEX_ATTRIB0_NV 0x86C6 +#define GL_EVAL_VERTEX_ATTRIB1_NV 0x86C7 +#define GL_EVAL_VERTEX_ATTRIB2_NV 0x86C8 +#define GL_EVAL_VERTEX_ATTRIB3_NV 0x86C9 +#define GL_EVAL_VERTEX_ATTRIB4_NV 0x86CA +#define GL_EVAL_VERTEX_ATTRIB5_NV 0x86CB +#define GL_EVAL_VERTEX_ATTRIB6_NV 0x86CC +#define GL_EVAL_VERTEX_ATTRIB7_NV 0x86CD +#define GL_EVAL_VERTEX_ATTRIB8_NV 0x86CE +#define GL_EVAL_VERTEX_ATTRIB9_NV 0x86CF +#define GL_EVAL_VERTEX_ATTRIB10_NV 0x86D0 +#define GL_EVAL_VERTEX_ATTRIB11_NV 0x86D1 +#define GL_EVAL_VERTEX_ATTRIB12_NV 0x86D2 +#define GL_EVAL_VERTEX_ATTRIB13_NV 0x86D3 +#define GL_EVAL_VERTEX_ATTRIB14_NV 0x86D4 +#define GL_EVAL_VERTEX_ATTRIB15_NV 0x86D5 +#define GL_MAX_MAP_TESSELLATION_NV 0x86D6 +#define GL_MAX_RATIONAL_EVAL_ORDER_NV 0x86D7 + +typedef void (GLAPIENTRY * PFNGLEVALMAPSNVPROC) (GLenum target, GLenum mode); +typedef void (GLAPIENTRY * PFNGLGETMAPATTRIBPARAMETERFVNVPROC) (GLenum target, GLuint index, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETMAPATTRIBPARAMETERIVNVPROC) (GLenum target, GLuint index, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETMAPCONTROLPOINTSNVPROC) (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLboolean packed, void *points); +typedef void (GLAPIENTRY * PFNGLGETMAPPARAMETERFVNVPROC) (GLenum target, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETMAPPARAMETERIVNVPROC) (GLenum target, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLMAPCONTROLPOINTSNVPROC) (GLenum target, GLuint index, GLenum type, GLsizei ustride, GLsizei vstride, GLint uorder, GLint vorder, GLboolean packed, const void *points); +typedef void (GLAPIENTRY * PFNGLMAPPARAMETERFVNVPROC) (GLenum target, GLenum pname, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLMAPPARAMETERIVNVPROC) (GLenum target, GLenum pname, const GLint* params); + +#define glEvalMapsNV GLEW_GET_FUN(__glewEvalMapsNV) +#define glGetMapAttribParameterfvNV GLEW_GET_FUN(__glewGetMapAttribParameterfvNV) +#define glGetMapAttribParameterivNV GLEW_GET_FUN(__glewGetMapAttribParameterivNV) +#define glGetMapControlPointsNV GLEW_GET_FUN(__glewGetMapControlPointsNV) +#define glGetMapParameterfvNV GLEW_GET_FUN(__glewGetMapParameterfvNV) +#define glGetMapParameterivNV GLEW_GET_FUN(__glewGetMapParameterivNV) +#define glMapControlPointsNV GLEW_GET_FUN(__glewMapControlPointsNV) +#define glMapParameterfvNV GLEW_GET_FUN(__glewMapParameterfvNV) +#define glMapParameterivNV GLEW_GET_FUN(__glewMapParameterivNV) + +#define GLEW_NV_evaluators GLEW_GET_VAR(__GLEW_NV_evaluators) + +#endif /* GL_NV_evaluators */ + +/* --------------------- GL_NV_explicit_attrib_location -------------------- */ + +#ifndef GL_NV_explicit_attrib_location +#define GL_NV_explicit_attrib_location 1 + +#define GLEW_NV_explicit_attrib_location GLEW_GET_VAR(__GLEW_NV_explicit_attrib_location) + +#endif /* GL_NV_explicit_attrib_location */ + +/* ----------------------- GL_NV_explicit_multisample ---------------------- */ + +#ifndef GL_NV_explicit_multisample +#define GL_NV_explicit_multisample 1 + +#define GL_SAMPLE_POSITION_NV 0x8E50 +#define GL_SAMPLE_MASK_NV 0x8E51 +#define GL_SAMPLE_MASK_VALUE_NV 0x8E52 +#define GL_TEXTURE_BINDING_RENDERBUFFER_NV 0x8E53 +#define GL_TEXTURE_RENDERBUFFER_DATA_STORE_BINDING_NV 0x8E54 +#define GL_TEXTURE_RENDERBUFFER_NV 0x8E55 +#define GL_SAMPLER_RENDERBUFFER_NV 0x8E56 +#define GL_INT_SAMPLER_RENDERBUFFER_NV 0x8E57 +#define GL_UNSIGNED_INT_SAMPLER_RENDERBUFFER_NV 0x8E58 +#define GL_MAX_SAMPLE_MASK_WORDS_NV 0x8E59 + +typedef void (GLAPIENTRY * PFNGLGETMULTISAMPLEFVNVPROC) (GLenum pname, GLuint index, GLfloat* val); +typedef void (GLAPIENTRY * PFNGLSAMPLEMASKINDEXEDNVPROC) (GLuint index, GLbitfield mask); +typedef void (GLAPIENTRY * PFNGLTEXRENDERBUFFERNVPROC) (GLenum target, GLuint renderbuffer); + +#define glGetMultisamplefvNV GLEW_GET_FUN(__glewGetMultisamplefvNV) +#define glSampleMaskIndexedNV GLEW_GET_FUN(__glewSampleMaskIndexedNV) +#define glTexRenderbufferNV GLEW_GET_FUN(__glewTexRenderbufferNV) + +#define GLEW_NV_explicit_multisample GLEW_GET_VAR(__GLEW_NV_explicit_multisample) + +#endif /* GL_NV_explicit_multisample */ + +/* ---------------------- GL_NV_fbo_color_attachments ---------------------- */ + +#ifndef GL_NV_fbo_color_attachments +#define GL_NV_fbo_color_attachments 1 + +#define GL_MAX_COLOR_ATTACHMENTS_NV 0x8CDF +#define GL_COLOR_ATTACHMENT0_NV 0x8CE0 +#define GL_COLOR_ATTACHMENT1_NV 0x8CE1 +#define GL_COLOR_ATTACHMENT2_NV 0x8CE2 +#define GL_COLOR_ATTACHMENT3_NV 0x8CE3 +#define GL_COLOR_ATTACHMENT4_NV 0x8CE4 +#define GL_COLOR_ATTACHMENT5_NV 0x8CE5 +#define GL_COLOR_ATTACHMENT6_NV 0x8CE6 +#define GL_COLOR_ATTACHMENT7_NV 0x8CE7 +#define GL_COLOR_ATTACHMENT8_NV 0x8CE8 +#define GL_COLOR_ATTACHMENT9_NV 0x8CE9 +#define GL_COLOR_ATTACHMENT10_NV 0x8CEA +#define GL_COLOR_ATTACHMENT11_NV 0x8CEB +#define GL_COLOR_ATTACHMENT12_NV 0x8CEC +#define GL_COLOR_ATTACHMENT13_NV 0x8CED +#define GL_COLOR_ATTACHMENT14_NV 0x8CEE +#define GL_COLOR_ATTACHMENT15_NV 0x8CEF + +#define GLEW_NV_fbo_color_attachments GLEW_GET_VAR(__GLEW_NV_fbo_color_attachments) + +#endif /* GL_NV_fbo_color_attachments */ + +/* ------------------------------ GL_NV_fence ------------------------------ */ + +#ifndef GL_NV_fence +#define GL_NV_fence 1 + +#define GL_ALL_COMPLETED_NV 0x84F2 +#define GL_FENCE_STATUS_NV 0x84F3 +#define GL_FENCE_CONDITION_NV 0x84F4 + +typedef void (GLAPIENTRY * PFNGLDELETEFENCESNVPROC) (GLsizei n, const GLuint* fences); +typedef void (GLAPIENTRY * PFNGLFINISHFENCENVPROC) (GLuint fence); +typedef void (GLAPIENTRY * PFNGLGENFENCESNVPROC) (GLsizei n, GLuint* fences); +typedef void (GLAPIENTRY * PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint* params); +typedef GLboolean (GLAPIENTRY * PFNGLISFENCENVPROC) (GLuint fence); +typedef void (GLAPIENTRY * PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition); +typedef GLboolean (GLAPIENTRY * PFNGLTESTFENCENVPROC) (GLuint fence); + +#define glDeleteFencesNV GLEW_GET_FUN(__glewDeleteFencesNV) +#define glFinishFenceNV GLEW_GET_FUN(__glewFinishFenceNV) +#define glGenFencesNV GLEW_GET_FUN(__glewGenFencesNV) +#define glGetFenceivNV GLEW_GET_FUN(__glewGetFenceivNV) +#define glIsFenceNV GLEW_GET_FUN(__glewIsFenceNV) +#define glSetFenceNV GLEW_GET_FUN(__glewSetFenceNV) +#define glTestFenceNV GLEW_GET_FUN(__glewTestFenceNV) + +#define GLEW_NV_fence GLEW_GET_VAR(__GLEW_NV_fence) + +#endif /* GL_NV_fence */ + +/* -------------------------- GL_NV_fill_rectangle ------------------------- */ + +#ifndef GL_NV_fill_rectangle +#define GL_NV_fill_rectangle 1 + +#define GL_FILL_RECTANGLE_NV 0x933C + +#define GLEW_NV_fill_rectangle GLEW_GET_VAR(__GLEW_NV_fill_rectangle) + +#endif /* GL_NV_fill_rectangle */ + +/* --------------------------- GL_NV_float_buffer -------------------------- */ + +#ifndef GL_NV_float_buffer +#define GL_NV_float_buffer 1 + +#define GL_FLOAT_R_NV 0x8880 +#define GL_FLOAT_RG_NV 0x8881 +#define GL_FLOAT_RGB_NV 0x8882 +#define GL_FLOAT_RGBA_NV 0x8883 +#define GL_FLOAT_R16_NV 0x8884 +#define GL_FLOAT_R32_NV 0x8885 +#define GL_FLOAT_RG16_NV 0x8886 +#define GL_FLOAT_RG32_NV 0x8887 +#define GL_FLOAT_RGB16_NV 0x8888 +#define GL_FLOAT_RGB32_NV 0x8889 +#define GL_FLOAT_RGBA16_NV 0x888A +#define GL_FLOAT_RGBA32_NV 0x888B +#define GL_TEXTURE_FLOAT_COMPONENTS_NV 0x888C +#define GL_FLOAT_CLEAR_COLOR_VALUE_NV 0x888D +#define GL_FLOAT_RGBA_MODE_NV 0x888E + +#define GLEW_NV_float_buffer GLEW_GET_VAR(__GLEW_NV_float_buffer) + +#endif /* GL_NV_float_buffer */ + +/* --------------------------- GL_NV_fog_distance -------------------------- */ + +#ifndef GL_NV_fog_distance +#define GL_NV_fog_distance 1 + +#define GL_FOG_DISTANCE_MODE_NV 0x855A +#define GL_EYE_RADIAL_NV 0x855B +#define GL_EYE_PLANE_ABSOLUTE_NV 0x855C + +#define GLEW_NV_fog_distance GLEW_GET_VAR(__GLEW_NV_fog_distance) + +#endif /* GL_NV_fog_distance */ + +/* -------------------- GL_NV_fragment_coverage_to_color ------------------- */ + +#ifndef GL_NV_fragment_coverage_to_color +#define GL_NV_fragment_coverage_to_color 1 + +#define GL_FRAGMENT_COVERAGE_TO_COLOR_NV 0x92DD +#define GL_FRAGMENT_COVERAGE_COLOR_NV 0x92DE + +typedef void (GLAPIENTRY * PFNGLFRAGMENTCOVERAGECOLORNVPROC) (GLuint color); + +#define glFragmentCoverageColorNV GLEW_GET_FUN(__glewFragmentCoverageColorNV) + +#define GLEW_NV_fragment_coverage_to_color GLEW_GET_VAR(__GLEW_NV_fragment_coverage_to_color) + +#endif /* GL_NV_fragment_coverage_to_color */ + +/* ------------------------- GL_NV_fragment_program ------------------------ */ + +#ifndef GL_NV_fragment_program +#define GL_NV_fragment_program 1 + +#define GL_MAX_FRAGMENT_PROGRAM_LOCAL_PARAMETERS_NV 0x8868 +#define GL_FRAGMENT_PROGRAM_NV 0x8870 +#define GL_MAX_TEXTURE_COORDS_NV 0x8871 +#define GL_MAX_TEXTURE_IMAGE_UNITS_NV 0x8872 +#define GL_FRAGMENT_PROGRAM_BINDING_NV 0x8873 +#define GL_PROGRAM_ERROR_STRING_NV 0x8874 + +typedef void (GLAPIENTRY * PFNGLGETPROGRAMNAMEDPARAMETERDVNVPROC) (GLuint id, GLsizei len, const GLubyte* name, GLdouble *params); +typedef void (GLAPIENTRY * PFNGLGETPROGRAMNAMEDPARAMETERFVNVPROC) (GLuint id, GLsizei len, const GLubyte* name, GLfloat *params); +typedef void (GLAPIENTRY * PFNGLPROGRAMNAMEDPARAMETER4DNVPROC) (GLuint id, GLsizei len, const GLubyte* name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (GLAPIENTRY * PFNGLPROGRAMNAMEDPARAMETER4DVNVPROC) (GLuint id, GLsizei len, const GLubyte* name, const GLdouble v[]); +typedef void (GLAPIENTRY * PFNGLPROGRAMNAMEDPARAMETER4FNVPROC) (GLuint id, GLsizei len, const GLubyte* name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (GLAPIENTRY * PFNGLPROGRAMNAMEDPARAMETER4FVNVPROC) (GLuint id, GLsizei len, const GLubyte* name, const GLfloat v[]); + +#define glGetProgramNamedParameterdvNV GLEW_GET_FUN(__glewGetProgramNamedParameterdvNV) +#define glGetProgramNamedParameterfvNV GLEW_GET_FUN(__glewGetProgramNamedParameterfvNV) +#define glProgramNamedParameter4dNV GLEW_GET_FUN(__glewProgramNamedParameter4dNV) +#define glProgramNamedParameter4dvNV GLEW_GET_FUN(__glewProgramNamedParameter4dvNV) +#define glProgramNamedParameter4fNV GLEW_GET_FUN(__glewProgramNamedParameter4fNV) +#define glProgramNamedParameter4fvNV GLEW_GET_FUN(__glewProgramNamedParameter4fvNV) + +#define GLEW_NV_fragment_program GLEW_GET_VAR(__GLEW_NV_fragment_program) + +#endif /* GL_NV_fragment_program */ + +/* ------------------------ GL_NV_fragment_program2 ------------------------ */ + +#ifndef GL_NV_fragment_program2 +#define GL_NV_fragment_program2 1 + +#define GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV 0x88F4 +#define GL_MAX_PROGRAM_CALL_DEPTH_NV 0x88F5 +#define GL_MAX_PROGRAM_IF_DEPTH_NV 0x88F6 +#define GL_MAX_PROGRAM_LOOP_DEPTH_NV 0x88F7 +#define GL_MAX_PROGRAM_LOOP_COUNT_NV 0x88F8 + +#define GLEW_NV_fragment_program2 GLEW_GET_VAR(__GLEW_NV_fragment_program2) + +#endif /* GL_NV_fragment_program2 */ + +/* ------------------------ GL_NV_fragment_program4 ------------------------ */ + +#ifndef GL_NV_fragment_program4 +#define GL_NV_fragment_program4 1 + +#define GLEW_NV_fragment_program4 GLEW_GET_VAR(__GLEW_NV_fragment_program4) + +#endif /* GL_NV_fragment_program4 */ + +/* --------------------- GL_NV_fragment_program_option --------------------- */ + +#ifndef GL_NV_fragment_program_option +#define GL_NV_fragment_program_option 1 + +#define GLEW_NV_fragment_program_option GLEW_GET_VAR(__GLEW_NV_fragment_program_option) + +#endif /* GL_NV_fragment_program_option */ + +/* -------------------- GL_NV_fragment_shader_interlock -------------------- */ + +#ifndef GL_NV_fragment_shader_interlock +#define GL_NV_fragment_shader_interlock 1 + +#define GLEW_NV_fragment_shader_interlock GLEW_GET_VAR(__GLEW_NV_fragment_shader_interlock) + +#endif /* GL_NV_fragment_shader_interlock */ + +/* ------------------------- GL_NV_framebuffer_blit ------------------------ */ + +#ifndef GL_NV_framebuffer_blit +#define GL_NV_framebuffer_blit 1 + +#define GL_DRAW_FRAMEBUFFER_BINDING_NV 0x8CA6 +#define GL_READ_FRAMEBUFFER_NV 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_NV 0x8CA9 +#define GL_READ_FRAMEBUFFER_BINDING_NV 0x8CAA + +typedef void (GLAPIENTRY * PFNGLBLITFRAMEBUFFERNVPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); + +#define glBlitFramebufferNV GLEW_GET_FUN(__glewBlitFramebufferNV) + +#define GLEW_NV_framebuffer_blit GLEW_GET_VAR(__GLEW_NV_framebuffer_blit) + +#endif /* GL_NV_framebuffer_blit */ + +/* -------------------- GL_NV_framebuffer_mixed_samples -------------------- */ + +#ifndef GL_NV_framebuffer_mixed_samples +#define GL_NV_framebuffer_mixed_samples 1 + +#define GL_COLOR_SAMPLES_NV 0x8E20 +#define GL_RASTER_MULTISAMPLE_EXT 0x9327 +#define GL_RASTER_SAMPLES_EXT 0x9328 +#define GL_MAX_RASTER_SAMPLES_EXT 0x9329 +#define GL_RASTER_FIXED_SAMPLE_LOCATIONS_EXT 0x932A +#define GL_MULTISAMPLE_RASTERIZATION_ALLOWED_EXT 0x932B +#define GL_EFFECTIVE_RASTER_SAMPLES_EXT 0x932C +#define GL_DEPTH_SAMPLES_NV 0x932D +#define GL_STENCIL_SAMPLES_NV 0x932E +#define GL_MIXED_DEPTH_SAMPLES_SUPPORTED_NV 0x932F +#define GL_MIXED_STENCIL_SAMPLES_SUPPORTED_NV 0x9330 +#define GL_COVERAGE_MODULATION_TABLE_NV 0x9331 +#define GL_COVERAGE_MODULATION_NV 0x9332 +#define GL_COVERAGE_MODULATION_TABLE_SIZE_NV 0x9333 + +#define GLEW_NV_framebuffer_mixed_samples GLEW_GET_VAR(__GLEW_NV_framebuffer_mixed_samples) + +#endif /* GL_NV_framebuffer_mixed_samples */ + +/* --------------------- GL_NV_framebuffer_multisample --------------------- */ + +#ifndef GL_NV_framebuffer_multisample +#define GL_NV_framebuffer_multisample 1 + +#define GL_RENDERBUFFER_SAMPLES_NV 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_NV 0x8D56 +#define GL_MAX_SAMPLES_NV 0x8D57 + +typedef void (GLAPIENTRY * PFNGLRENDERBUFFERSTORAGEMULTISAMPLENVPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); + +#define glRenderbufferStorageMultisampleNV GLEW_GET_FUN(__glewRenderbufferStorageMultisampleNV) + +#define GLEW_NV_framebuffer_multisample GLEW_GET_VAR(__GLEW_NV_framebuffer_multisample) + +#endif /* GL_NV_framebuffer_multisample */ + +/* ----------------- GL_NV_framebuffer_multisample_coverage ---------------- */ + +#ifndef GL_NV_framebuffer_multisample_coverage +#define GL_NV_framebuffer_multisample_coverage 1 + +#define GL_RENDERBUFFER_COVERAGE_SAMPLES_NV 0x8CAB +#define GL_RENDERBUFFER_COLOR_SAMPLES_NV 0x8E10 +#define GL_MAX_MULTISAMPLE_COVERAGE_MODES_NV 0x8E11 +#define GL_MULTISAMPLE_COVERAGE_MODES_NV 0x8E12 + +typedef void (GLAPIENTRY * PFNGLRENDERBUFFERSTORAGEMULTISAMPLECOVERAGENVPROC) (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height); + +#define glRenderbufferStorageMultisampleCoverageNV GLEW_GET_FUN(__glewRenderbufferStorageMultisampleCoverageNV) + +#define GLEW_NV_framebuffer_multisample_coverage GLEW_GET_VAR(__GLEW_NV_framebuffer_multisample_coverage) + +#endif /* GL_NV_framebuffer_multisample_coverage */ + +/* ----------------------- GL_NV_generate_mipmap_sRGB ---------------------- */ + +#ifndef GL_NV_generate_mipmap_sRGB +#define GL_NV_generate_mipmap_sRGB 1 + +#define GLEW_NV_generate_mipmap_sRGB GLEW_GET_VAR(__GLEW_NV_generate_mipmap_sRGB) + +#endif /* GL_NV_generate_mipmap_sRGB */ + +/* ------------------------ GL_NV_geometry_program4 ------------------------ */ + +#ifndef GL_NV_geometry_program4 +#define GL_NV_geometry_program4 1 + +#define GL_GEOMETRY_PROGRAM_NV 0x8C26 +#define GL_MAX_PROGRAM_OUTPUT_VERTICES_NV 0x8C27 +#define GL_MAX_PROGRAM_TOTAL_OUTPUT_COMPONENTS_NV 0x8C28 + +typedef void (GLAPIENTRY * PFNGLPROGRAMVERTEXLIMITNVPROC) (GLenum target, GLint limit); + +#define glProgramVertexLimitNV GLEW_GET_FUN(__glewProgramVertexLimitNV) + +#define GLEW_NV_geometry_program4 GLEW_GET_VAR(__GLEW_NV_geometry_program4) + +#endif /* GL_NV_geometry_program4 */ + +/* ------------------------- GL_NV_geometry_shader4 ------------------------ */ + +#ifndef GL_NV_geometry_shader4 +#define GL_NV_geometry_shader4 1 + +#define GLEW_NV_geometry_shader4 GLEW_GET_VAR(__GLEW_NV_geometry_shader4) + +#endif /* GL_NV_geometry_shader4 */ + +/* ------------------- GL_NV_geometry_shader_passthrough ------------------- */ + +#ifndef GL_NV_geometry_shader_passthrough +#define GL_NV_geometry_shader_passthrough 1 + +#define GLEW_NV_geometry_shader_passthrough GLEW_GET_VAR(__GLEW_NV_geometry_shader_passthrough) + +#endif /* GL_NV_geometry_shader_passthrough */ + +/* -------------------------- GL_NV_gpu_multicast -------------------------- */ + +#ifndef GL_NV_gpu_multicast +#define GL_NV_gpu_multicast 1 + +#define GL_PER_GPU_STORAGE_BIT_NV 0x0800 +#define GL_MULTICAST_GPUS_NV 0x92BA +#define GL_PER_GPU_STORAGE_NV 0x9548 +#define GL_MULTICAST_PROGRAMMABLE_SAMPLE_LOCATION_NV 0x9549 +#define GL_RENDER_GPU_MASK_NV 0x9558 + +typedef void (GLAPIENTRY * PFNGLMULTICASTBARRIERNVPROC) (void); +typedef void (GLAPIENTRY * PFNGLMULTICASTBLITFRAMEBUFFERNVPROC) (GLuint srcGpu, GLuint dstGpu, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef void (GLAPIENTRY * PFNGLMULTICASTBUFFERSUBDATANVPROC) (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (GLAPIENTRY * PFNGLMULTICASTCOPYBUFFERSUBDATANVPROC) (GLuint readGpu, GLbitfield writeGpuMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (GLAPIENTRY * PFNGLMULTICASTCOPYIMAGESUBDATANVPROC) (GLuint srcGpu, GLbitfield dstGpuMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +typedef void (GLAPIENTRY * PFNGLMULTICASTFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLuint gpu, GLuint framebuffer, GLuint start, GLsizei count, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLMULTICASTGETQUERYOBJECTI64VNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLint64* params); +typedef void (GLAPIENTRY * PFNGLMULTICASTGETQUERYOBJECTIVNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLMULTICASTGETQUERYOBJECTUI64VNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLuint64* params); +typedef void (GLAPIENTRY * PFNGLMULTICASTGETQUERYOBJECTUIVNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLuint* params); +typedef void (GLAPIENTRY * PFNGLMULTICASTWAITSYNCNVPROC) (GLuint signalGpu, GLbitfield waitGpuMask); +typedef void (GLAPIENTRY * PFNGLRENDERGPUMASKNVPROC) (GLbitfield mask); + +#define glMulticastBarrierNV GLEW_GET_FUN(__glewMulticastBarrierNV) +#define glMulticastBlitFramebufferNV GLEW_GET_FUN(__glewMulticastBlitFramebufferNV) +#define glMulticastBufferSubDataNV GLEW_GET_FUN(__glewMulticastBufferSubDataNV) +#define glMulticastCopyBufferSubDataNV GLEW_GET_FUN(__glewMulticastCopyBufferSubDataNV) +#define glMulticastCopyImageSubDataNV GLEW_GET_FUN(__glewMulticastCopyImageSubDataNV) +#define glMulticastFramebufferSampleLocationsfvNV GLEW_GET_FUN(__glewMulticastFramebufferSampleLocationsfvNV) +#define glMulticastGetQueryObjecti64vNV GLEW_GET_FUN(__glewMulticastGetQueryObjecti64vNV) +#define glMulticastGetQueryObjectivNV GLEW_GET_FUN(__glewMulticastGetQueryObjectivNV) +#define glMulticastGetQueryObjectui64vNV GLEW_GET_FUN(__glewMulticastGetQueryObjectui64vNV) +#define glMulticastGetQueryObjectuivNV GLEW_GET_FUN(__glewMulticastGetQueryObjectuivNV) +#define glMulticastWaitSyncNV GLEW_GET_FUN(__glewMulticastWaitSyncNV) +#define glRenderGpuMaskNV GLEW_GET_FUN(__glewRenderGpuMaskNV) + +#define GLEW_NV_gpu_multicast GLEW_GET_VAR(__GLEW_NV_gpu_multicast) + +#endif /* GL_NV_gpu_multicast */ + +/* --------------------------- GL_NV_gpu_program4 -------------------------- */ + +#ifndef GL_NV_gpu_program4 +#define GL_NV_gpu_program4 1 + +#define GL_MIN_PROGRAM_TEXEL_OFFSET_NV 0x8904 +#define GL_MAX_PROGRAM_TEXEL_OFFSET_NV 0x8905 +#define GL_PROGRAM_ATTRIB_COMPONENTS_NV 0x8906 +#define GL_PROGRAM_RESULT_COMPONENTS_NV 0x8907 +#define GL_MAX_PROGRAM_ATTRIB_COMPONENTS_NV 0x8908 +#define GL_MAX_PROGRAM_RESULT_COMPONENTS_NV 0x8909 +#define GL_MAX_PROGRAM_GENERIC_ATTRIBS_NV 0x8DA5 +#define GL_MAX_PROGRAM_GENERIC_RESULTS_NV 0x8DA6 + +typedef void (GLAPIENTRY * PFNGLPROGRAMENVPARAMETERI4INVPROC) (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (GLAPIENTRY * PFNGLPROGRAMENVPARAMETERI4IVNVPROC) (GLenum target, GLuint index, const GLint *params); +typedef void (GLAPIENTRY * PFNGLPROGRAMENVPARAMETERI4UINVPROC) (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (GLAPIENTRY * PFNGLPROGRAMENVPARAMETERI4UIVNVPROC) (GLenum target, GLuint index, const GLuint *params); +typedef void (GLAPIENTRY * PFNGLPROGRAMENVPARAMETERSI4IVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLint *params); +typedef void (GLAPIENTRY * PFNGLPROGRAMENVPARAMETERSI4UIVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLuint *params); +typedef void (GLAPIENTRY * PFNGLPROGRAMLOCALPARAMETERI4INVPROC) (GLenum target, GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (GLAPIENTRY * PFNGLPROGRAMLOCALPARAMETERI4IVNVPROC) (GLenum target, GLuint index, const GLint *params); +typedef void (GLAPIENTRY * PFNGLPROGRAMLOCALPARAMETERI4UINVPROC) (GLenum target, GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (GLAPIENTRY * PFNGLPROGRAMLOCALPARAMETERI4UIVNVPROC) (GLenum target, GLuint index, const GLuint *params); +typedef void (GLAPIENTRY * PFNGLPROGRAMLOCALPARAMETERSI4IVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLint *params); +typedef void (GLAPIENTRY * PFNGLPROGRAMLOCALPARAMETERSI4UIVNVPROC) (GLenum target, GLuint index, GLsizei count, const GLuint *params); + +#define glProgramEnvParameterI4iNV GLEW_GET_FUN(__glewProgramEnvParameterI4iNV) +#define glProgramEnvParameterI4ivNV GLEW_GET_FUN(__glewProgramEnvParameterI4ivNV) +#define glProgramEnvParameterI4uiNV GLEW_GET_FUN(__glewProgramEnvParameterI4uiNV) +#define glProgramEnvParameterI4uivNV GLEW_GET_FUN(__glewProgramEnvParameterI4uivNV) +#define glProgramEnvParametersI4ivNV GLEW_GET_FUN(__glewProgramEnvParametersI4ivNV) +#define glProgramEnvParametersI4uivNV GLEW_GET_FUN(__glewProgramEnvParametersI4uivNV) +#define glProgramLocalParameterI4iNV GLEW_GET_FUN(__glewProgramLocalParameterI4iNV) +#define glProgramLocalParameterI4ivNV GLEW_GET_FUN(__glewProgramLocalParameterI4ivNV) +#define glProgramLocalParameterI4uiNV GLEW_GET_FUN(__glewProgramLocalParameterI4uiNV) +#define glProgramLocalParameterI4uivNV GLEW_GET_FUN(__glewProgramLocalParameterI4uivNV) +#define glProgramLocalParametersI4ivNV GLEW_GET_FUN(__glewProgramLocalParametersI4ivNV) +#define glProgramLocalParametersI4uivNV GLEW_GET_FUN(__glewProgramLocalParametersI4uivNV) + +#define GLEW_NV_gpu_program4 GLEW_GET_VAR(__GLEW_NV_gpu_program4) + +#endif /* GL_NV_gpu_program4 */ + +/* --------------------------- GL_NV_gpu_program5 -------------------------- */ + +#ifndef GL_NV_gpu_program5 +#define GL_NV_gpu_program5 1 + +#define GL_MAX_GEOMETRY_PROGRAM_INVOCATIONS_NV 0x8E5A +#define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5B +#define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5C +#define GL_FRAGMENT_PROGRAM_INTERPOLATION_OFFSET_BITS_NV 0x8E5D +#define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_NV 0x8E5E +#define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_NV 0x8E5F + +#define GLEW_NV_gpu_program5 GLEW_GET_VAR(__GLEW_NV_gpu_program5) + +#endif /* GL_NV_gpu_program5 */ + +/* -------------------- GL_NV_gpu_program5_mem_extended -------------------- */ + +#ifndef GL_NV_gpu_program5_mem_extended +#define GL_NV_gpu_program5_mem_extended 1 + +#define GLEW_NV_gpu_program5_mem_extended GLEW_GET_VAR(__GLEW_NV_gpu_program5_mem_extended) + +#endif /* GL_NV_gpu_program5_mem_extended */ + +/* ------------------------- GL_NV_gpu_program_fp64 ------------------------ */ + +#ifndef GL_NV_gpu_program_fp64 +#define GL_NV_gpu_program_fp64 1 + +#define GLEW_NV_gpu_program_fp64 GLEW_GET_VAR(__GLEW_NV_gpu_program_fp64) + +#endif /* GL_NV_gpu_program_fp64 */ + +/* --------------------------- GL_NV_gpu_shader5 --------------------------- */ + +#ifndef GL_NV_gpu_shader5 +#define GL_NV_gpu_shader5 1 + +#define GL_INT64_NV 0x140E +#define GL_UNSIGNED_INT64_NV 0x140F +#define GL_INT8_NV 0x8FE0 +#define GL_INT8_VEC2_NV 0x8FE1 +#define GL_INT8_VEC3_NV 0x8FE2 +#define GL_INT8_VEC4_NV 0x8FE3 +#define GL_INT16_NV 0x8FE4 +#define GL_INT16_VEC2_NV 0x8FE5 +#define GL_INT16_VEC3_NV 0x8FE6 +#define GL_INT16_VEC4_NV 0x8FE7 +#define GL_INT64_VEC2_NV 0x8FE9 +#define GL_INT64_VEC3_NV 0x8FEA +#define GL_INT64_VEC4_NV 0x8FEB +#define GL_UNSIGNED_INT8_NV 0x8FEC +#define GL_UNSIGNED_INT8_VEC2_NV 0x8FED +#define GL_UNSIGNED_INT8_VEC3_NV 0x8FEE +#define GL_UNSIGNED_INT8_VEC4_NV 0x8FEF +#define GL_UNSIGNED_INT16_NV 0x8FF0 +#define GL_UNSIGNED_INT16_VEC2_NV 0x8FF1 +#define GL_UNSIGNED_INT16_VEC3_NV 0x8FF2 +#define GL_UNSIGNED_INT16_VEC4_NV 0x8FF3 +#define GL_UNSIGNED_INT64_VEC2_NV 0x8FF5 +#define GL_UNSIGNED_INT64_VEC3_NV 0x8FF6 +#define GL_UNSIGNED_INT64_VEC4_NV 0x8FF7 +#define GL_FLOAT16_NV 0x8FF8 +#define GL_FLOAT16_VEC2_NV 0x8FF9 +#define GL_FLOAT16_VEC3_NV 0x8FFA +#define GL_FLOAT16_VEC4_NV 0x8FFB + +typedef void (GLAPIENTRY * PFNGLGETUNIFORMI64VNVPROC) (GLuint program, GLint location, GLint64EXT* params); +typedef void (GLAPIENTRY * PFNGLGETUNIFORMUI64VNVPROC) (GLuint program, GLint location, GLuint64EXT* params); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1I64NVPROC) (GLuint program, GLint location, GLint64EXT x); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM1UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM2UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM3UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT* value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORM4UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM1I64NVPROC) (GLint location, GLint64EXT x); +typedef void (GLAPIENTRY * PFNGLUNIFORM1I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM1UI64NVPROC) (GLint location, GLuint64EXT x); +typedef void (GLAPIENTRY * PFNGLUNIFORM1UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM2I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y); +typedef void (GLAPIENTRY * PFNGLUNIFORM2I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM2UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (GLAPIENTRY * PFNGLUNIFORM2UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM3I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (GLAPIENTRY * PFNGLUNIFORM3I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM3UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (GLAPIENTRY * PFNGLUNIFORM3UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM4I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (GLAPIENTRY * PFNGLUNIFORM4I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT* value); +typedef void (GLAPIENTRY * PFNGLUNIFORM4UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (GLAPIENTRY * PFNGLUNIFORM4UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT* value); + +#define glGetUniformi64vNV GLEW_GET_FUN(__glewGetUniformi64vNV) +#define glGetUniformui64vNV GLEW_GET_FUN(__glewGetUniformui64vNV) +#define glProgramUniform1i64NV GLEW_GET_FUN(__glewProgramUniform1i64NV) +#define glProgramUniform1i64vNV GLEW_GET_FUN(__glewProgramUniform1i64vNV) +#define glProgramUniform1ui64NV GLEW_GET_FUN(__glewProgramUniform1ui64NV) +#define glProgramUniform1ui64vNV GLEW_GET_FUN(__glewProgramUniform1ui64vNV) +#define glProgramUniform2i64NV GLEW_GET_FUN(__glewProgramUniform2i64NV) +#define glProgramUniform2i64vNV GLEW_GET_FUN(__glewProgramUniform2i64vNV) +#define glProgramUniform2ui64NV GLEW_GET_FUN(__glewProgramUniform2ui64NV) +#define glProgramUniform2ui64vNV GLEW_GET_FUN(__glewProgramUniform2ui64vNV) +#define glProgramUniform3i64NV GLEW_GET_FUN(__glewProgramUniform3i64NV) +#define glProgramUniform3i64vNV GLEW_GET_FUN(__glewProgramUniform3i64vNV) +#define glProgramUniform3ui64NV GLEW_GET_FUN(__glewProgramUniform3ui64NV) +#define glProgramUniform3ui64vNV GLEW_GET_FUN(__glewProgramUniform3ui64vNV) +#define glProgramUniform4i64NV GLEW_GET_FUN(__glewProgramUniform4i64NV) +#define glProgramUniform4i64vNV GLEW_GET_FUN(__glewProgramUniform4i64vNV) +#define glProgramUniform4ui64NV GLEW_GET_FUN(__glewProgramUniform4ui64NV) +#define glProgramUniform4ui64vNV GLEW_GET_FUN(__glewProgramUniform4ui64vNV) +#define glUniform1i64NV GLEW_GET_FUN(__glewUniform1i64NV) +#define glUniform1i64vNV GLEW_GET_FUN(__glewUniform1i64vNV) +#define glUniform1ui64NV GLEW_GET_FUN(__glewUniform1ui64NV) +#define glUniform1ui64vNV GLEW_GET_FUN(__glewUniform1ui64vNV) +#define glUniform2i64NV GLEW_GET_FUN(__glewUniform2i64NV) +#define glUniform2i64vNV GLEW_GET_FUN(__glewUniform2i64vNV) +#define glUniform2ui64NV GLEW_GET_FUN(__glewUniform2ui64NV) +#define glUniform2ui64vNV GLEW_GET_FUN(__glewUniform2ui64vNV) +#define glUniform3i64NV GLEW_GET_FUN(__glewUniform3i64NV) +#define glUniform3i64vNV GLEW_GET_FUN(__glewUniform3i64vNV) +#define glUniform3ui64NV GLEW_GET_FUN(__glewUniform3ui64NV) +#define glUniform3ui64vNV GLEW_GET_FUN(__glewUniform3ui64vNV) +#define glUniform4i64NV GLEW_GET_FUN(__glewUniform4i64NV) +#define glUniform4i64vNV GLEW_GET_FUN(__glewUniform4i64vNV) +#define glUniform4ui64NV GLEW_GET_FUN(__glewUniform4ui64NV) +#define glUniform4ui64vNV GLEW_GET_FUN(__glewUniform4ui64vNV) + +#define GLEW_NV_gpu_shader5 GLEW_GET_VAR(__GLEW_NV_gpu_shader5) + +#endif /* GL_NV_gpu_shader5 */ + +/* ---------------------------- GL_NV_half_float --------------------------- */ + +#ifndef GL_NV_half_float +#define GL_NV_half_float 1 + +#define GL_HALF_FLOAT_NV 0x140B + +typedef unsigned short GLhalf; + +typedef void (GLAPIENTRY * PFNGLCOLOR3HNVPROC) (GLhalf red, GLhalf green, GLhalf blue); +typedef void (GLAPIENTRY * PFNGLCOLOR3HVNVPROC) (const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLCOLOR4HNVPROC) (GLhalf red, GLhalf green, GLhalf blue, GLhalf alpha); +typedef void (GLAPIENTRY * PFNGLCOLOR4HVNVPROC) (const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLFOGCOORDHNVPROC) (GLhalf fog); +typedef void (GLAPIENTRY * PFNGLFOGCOORDHVNVPROC) (const GLhalf* fog); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD1HNVPROC) (GLenum target, GLhalf s); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD1HVNVPROC) (GLenum target, const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD2HNVPROC) (GLenum target, GLhalf s, GLhalf t); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD2HVNVPROC) (GLenum target, const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD3HNVPROC) (GLenum target, GLhalf s, GLhalf t, GLhalf r); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD3HVNVPROC) (GLenum target, const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD4HNVPROC) (GLenum target, GLhalf s, GLhalf t, GLhalf r, GLhalf q); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD4HVNVPROC) (GLenum target, const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLNORMAL3HNVPROC) (GLhalf nx, GLhalf ny, GLhalf nz); +typedef void (GLAPIENTRY * PFNGLNORMAL3HVNVPROC) (const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3HNVPROC) (GLhalf red, GLhalf green, GLhalf blue); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLOR3HVNVPROC) (const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLTEXCOORD1HNVPROC) (GLhalf s); +typedef void (GLAPIENTRY * PFNGLTEXCOORD1HVNVPROC) (const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLTEXCOORD2HNVPROC) (GLhalf s, GLhalf t); +typedef void (GLAPIENTRY * PFNGLTEXCOORD2HVNVPROC) (const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLTEXCOORD3HNVPROC) (GLhalf s, GLhalf t, GLhalf r); +typedef void (GLAPIENTRY * PFNGLTEXCOORD3HVNVPROC) (const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLTEXCOORD4HNVPROC) (GLhalf s, GLhalf t, GLhalf r, GLhalf q); +typedef void (GLAPIENTRY * PFNGLTEXCOORD4HVNVPROC) (const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLVERTEX2HNVPROC) (GLhalf x, GLhalf y); +typedef void (GLAPIENTRY * PFNGLVERTEX2HVNVPROC) (const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLVERTEX3HNVPROC) (GLhalf x, GLhalf y, GLhalf z); +typedef void (GLAPIENTRY * PFNGLVERTEX3HVNVPROC) (const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLVERTEX4HNVPROC) (GLhalf x, GLhalf y, GLhalf z, GLhalf w); +typedef void (GLAPIENTRY * PFNGLVERTEX4HVNVPROC) (const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1HNVPROC) (GLuint index, GLhalf x); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1HVNVPROC) (GLuint index, const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2HNVPROC) (GLuint index, GLhalf x, GLhalf y); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2HVNVPROC) (GLuint index, const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3HNVPROC) (GLuint index, GLhalf x, GLhalf y, GLhalf z); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3HVNVPROC) (GLuint index, const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4HNVPROC) (GLuint index, GLhalf x, GLhalf y, GLhalf z, GLhalf w); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4HVNVPROC) (GLuint index, const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBS1HVNVPROC) (GLuint index, GLsizei n, const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBS2HVNVPROC) (GLuint index, GLsizei n, const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBS3HVNVPROC) (GLuint index, GLsizei n, const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBS4HVNVPROC) (GLuint index, GLsizei n, const GLhalf* v); +typedef void (GLAPIENTRY * PFNGLVERTEXWEIGHTHNVPROC) (GLhalf weight); +typedef void (GLAPIENTRY * PFNGLVERTEXWEIGHTHVNVPROC) (const GLhalf* weight); + +#define glColor3hNV GLEW_GET_FUN(__glewColor3hNV) +#define glColor3hvNV GLEW_GET_FUN(__glewColor3hvNV) +#define glColor4hNV GLEW_GET_FUN(__glewColor4hNV) +#define glColor4hvNV GLEW_GET_FUN(__glewColor4hvNV) +#define glFogCoordhNV GLEW_GET_FUN(__glewFogCoordhNV) +#define glFogCoordhvNV GLEW_GET_FUN(__glewFogCoordhvNV) +#define glMultiTexCoord1hNV GLEW_GET_FUN(__glewMultiTexCoord1hNV) +#define glMultiTexCoord1hvNV GLEW_GET_FUN(__glewMultiTexCoord1hvNV) +#define glMultiTexCoord2hNV GLEW_GET_FUN(__glewMultiTexCoord2hNV) +#define glMultiTexCoord2hvNV GLEW_GET_FUN(__glewMultiTexCoord2hvNV) +#define glMultiTexCoord3hNV GLEW_GET_FUN(__glewMultiTexCoord3hNV) +#define glMultiTexCoord3hvNV GLEW_GET_FUN(__glewMultiTexCoord3hvNV) +#define glMultiTexCoord4hNV GLEW_GET_FUN(__glewMultiTexCoord4hNV) +#define glMultiTexCoord4hvNV GLEW_GET_FUN(__glewMultiTexCoord4hvNV) +#define glNormal3hNV GLEW_GET_FUN(__glewNormal3hNV) +#define glNormal3hvNV GLEW_GET_FUN(__glewNormal3hvNV) +#define glSecondaryColor3hNV GLEW_GET_FUN(__glewSecondaryColor3hNV) +#define glSecondaryColor3hvNV GLEW_GET_FUN(__glewSecondaryColor3hvNV) +#define glTexCoord1hNV GLEW_GET_FUN(__glewTexCoord1hNV) +#define glTexCoord1hvNV GLEW_GET_FUN(__glewTexCoord1hvNV) +#define glTexCoord2hNV GLEW_GET_FUN(__glewTexCoord2hNV) +#define glTexCoord2hvNV GLEW_GET_FUN(__glewTexCoord2hvNV) +#define glTexCoord3hNV GLEW_GET_FUN(__glewTexCoord3hNV) +#define glTexCoord3hvNV GLEW_GET_FUN(__glewTexCoord3hvNV) +#define glTexCoord4hNV GLEW_GET_FUN(__glewTexCoord4hNV) +#define glTexCoord4hvNV GLEW_GET_FUN(__glewTexCoord4hvNV) +#define glVertex2hNV GLEW_GET_FUN(__glewVertex2hNV) +#define glVertex2hvNV GLEW_GET_FUN(__glewVertex2hvNV) +#define glVertex3hNV GLEW_GET_FUN(__glewVertex3hNV) +#define glVertex3hvNV GLEW_GET_FUN(__glewVertex3hvNV) +#define glVertex4hNV GLEW_GET_FUN(__glewVertex4hNV) +#define glVertex4hvNV GLEW_GET_FUN(__glewVertex4hvNV) +#define glVertexAttrib1hNV GLEW_GET_FUN(__glewVertexAttrib1hNV) +#define glVertexAttrib1hvNV GLEW_GET_FUN(__glewVertexAttrib1hvNV) +#define glVertexAttrib2hNV GLEW_GET_FUN(__glewVertexAttrib2hNV) +#define glVertexAttrib2hvNV GLEW_GET_FUN(__glewVertexAttrib2hvNV) +#define glVertexAttrib3hNV GLEW_GET_FUN(__glewVertexAttrib3hNV) +#define glVertexAttrib3hvNV GLEW_GET_FUN(__glewVertexAttrib3hvNV) +#define glVertexAttrib4hNV GLEW_GET_FUN(__glewVertexAttrib4hNV) +#define glVertexAttrib4hvNV GLEW_GET_FUN(__glewVertexAttrib4hvNV) +#define glVertexAttribs1hvNV GLEW_GET_FUN(__glewVertexAttribs1hvNV) +#define glVertexAttribs2hvNV GLEW_GET_FUN(__glewVertexAttribs2hvNV) +#define glVertexAttribs3hvNV GLEW_GET_FUN(__glewVertexAttribs3hvNV) +#define glVertexAttribs4hvNV GLEW_GET_FUN(__glewVertexAttribs4hvNV) +#define glVertexWeighthNV GLEW_GET_FUN(__glewVertexWeighthNV) +#define glVertexWeighthvNV GLEW_GET_FUN(__glewVertexWeighthvNV) + +#define GLEW_NV_half_float GLEW_GET_VAR(__GLEW_NV_half_float) + +#endif /* GL_NV_half_float */ + +/* -------------------------- GL_NV_image_formats -------------------------- */ + +#ifndef GL_NV_image_formats +#define GL_NV_image_formats 1 + +#define GLEW_NV_image_formats GLEW_GET_VAR(__GLEW_NV_image_formats) + +#endif /* GL_NV_image_formats */ + +/* ------------------------- GL_NV_instanced_arrays ------------------------ */ + +#ifndef GL_NV_instanced_arrays +#define GL_NV_instanced_arrays 1 + +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_NV 0x88FE + +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBDIVISORNVPROC) (GLuint index, GLuint divisor); + +#define glVertexAttribDivisorNV GLEW_GET_FUN(__glewVertexAttribDivisorNV) + +#define GLEW_NV_instanced_arrays GLEW_GET_VAR(__GLEW_NV_instanced_arrays) + +#endif /* GL_NV_instanced_arrays */ + +/* ------------------- GL_NV_internalformat_sample_query ------------------- */ + +#ifndef GL_NV_internalformat_sample_query +#define GL_NV_internalformat_sample_query 1 + +#define GL_MULTISAMPLES_NV 0x9371 +#define GL_SUPERSAMPLE_SCALE_X_NV 0x9372 +#define GL_SUPERSAMPLE_SCALE_Y_NV 0x9373 +#define GL_CONFORMANT_NV 0x9374 + +typedef void (GLAPIENTRY * PFNGLGETINTERNALFORMATSAMPLEIVNVPROC) (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei bufSize, GLint* params); + +#define glGetInternalformatSampleivNV GLEW_GET_FUN(__glewGetInternalformatSampleivNV) + +#define GLEW_NV_internalformat_sample_query GLEW_GET_VAR(__GLEW_NV_internalformat_sample_query) + +#endif /* GL_NV_internalformat_sample_query */ + +/* ------------------------ GL_NV_light_max_exponent ----------------------- */ + +#ifndef GL_NV_light_max_exponent +#define GL_NV_light_max_exponent 1 + +#define GL_MAX_SHININESS_NV 0x8504 +#define GL_MAX_SPOT_EXPONENT_NV 0x8505 + +#define GLEW_NV_light_max_exponent GLEW_GET_VAR(__GLEW_NV_light_max_exponent) + +#endif /* GL_NV_light_max_exponent */ + +/* ----------------------- GL_NV_multisample_coverage ---------------------- */ + +#ifndef GL_NV_multisample_coverage +#define GL_NV_multisample_coverage 1 + +#define GL_COLOR_SAMPLES_NV 0x8E20 + +#define GLEW_NV_multisample_coverage GLEW_GET_VAR(__GLEW_NV_multisample_coverage) + +#endif /* GL_NV_multisample_coverage */ + +/* --------------------- GL_NV_multisample_filter_hint --------------------- */ + +#ifndef GL_NV_multisample_filter_hint +#define GL_NV_multisample_filter_hint 1 + +#define GL_MULTISAMPLE_FILTER_HINT_NV 0x8534 + +#define GLEW_NV_multisample_filter_hint GLEW_GET_VAR(__GLEW_NV_multisample_filter_hint) + +#endif /* GL_NV_multisample_filter_hint */ + +/* ----------------------- GL_NV_non_square_matrices ----------------------- */ + +#ifndef GL_NV_non_square_matrices +#define GL_NV_non_square_matrices 1 + +#define GL_FLOAT_MAT2x3_NV 0x8B65 +#define GL_FLOAT_MAT2x4_NV 0x8B66 +#define GL_FLOAT_MAT3x2_NV 0x8B67 +#define GL_FLOAT_MAT3x4_NV 0x8B68 +#define GL_FLOAT_MAT4x2_NV 0x8B69 +#define GL_FLOAT_MAT4x3_NV 0x8B6A + +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX2X3FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX2X4FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX3X2FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX3X4FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX4X2FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX4X3FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); + +#define glUniformMatrix2x3fvNV GLEW_GET_FUN(__glewUniformMatrix2x3fvNV) +#define glUniformMatrix2x4fvNV GLEW_GET_FUN(__glewUniformMatrix2x4fvNV) +#define glUniformMatrix3x2fvNV GLEW_GET_FUN(__glewUniformMatrix3x2fvNV) +#define glUniformMatrix3x4fvNV GLEW_GET_FUN(__glewUniformMatrix3x4fvNV) +#define glUniformMatrix4x2fvNV GLEW_GET_FUN(__glewUniformMatrix4x2fvNV) +#define glUniformMatrix4x3fvNV GLEW_GET_FUN(__glewUniformMatrix4x3fvNV) + +#define GLEW_NV_non_square_matrices GLEW_GET_VAR(__GLEW_NV_non_square_matrices) + +#endif /* GL_NV_non_square_matrices */ + +/* ------------------------- GL_NV_occlusion_query ------------------------- */ + +#ifndef GL_NV_occlusion_query +#define GL_NV_occlusion_query 1 + +#define GL_PIXEL_COUNTER_BITS_NV 0x8864 +#define GL_CURRENT_OCCLUSION_QUERY_ID_NV 0x8865 +#define GL_PIXEL_COUNT_NV 0x8866 +#define GL_PIXEL_COUNT_AVAILABLE_NV 0x8867 + +typedef void (GLAPIENTRY * PFNGLBEGINOCCLUSIONQUERYNVPROC) (GLuint id); +typedef void (GLAPIENTRY * PFNGLDELETEOCCLUSIONQUERIESNVPROC) (GLsizei n, const GLuint* ids); +typedef void (GLAPIENTRY * PFNGLENDOCCLUSIONQUERYNVPROC) (void); +typedef void (GLAPIENTRY * PFNGLGENOCCLUSIONQUERIESNVPROC) (GLsizei n, GLuint* ids); +typedef void (GLAPIENTRY * PFNGLGETOCCLUSIONQUERYIVNVPROC) (GLuint id, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETOCCLUSIONQUERYUIVNVPROC) (GLuint id, GLenum pname, GLuint* params); +typedef GLboolean (GLAPIENTRY * PFNGLISOCCLUSIONQUERYNVPROC) (GLuint id); + +#define glBeginOcclusionQueryNV GLEW_GET_FUN(__glewBeginOcclusionQueryNV) +#define glDeleteOcclusionQueriesNV GLEW_GET_FUN(__glewDeleteOcclusionQueriesNV) +#define glEndOcclusionQueryNV GLEW_GET_FUN(__glewEndOcclusionQueryNV) +#define glGenOcclusionQueriesNV GLEW_GET_FUN(__glewGenOcclusionQueriesNV) +#define glGetOcclusionQueryivNV GLEW_GET_FUN(__glewGetOcclusionQueryivNV) +#define glGetOcclusionQueryuivNV GLEW_GET_FUN(__glewGetOcclusionQueryuivNV) +#define glIsOcclusionQueryNV GLEW_GET_FUN(__glewIsOcclusionQueryNV) + +#define GLEW_NV_occlusion_query GLEW_GET_VAR(__GLEW_NV_occlusion_query) + +#endif /* GL_NV_occlusion_query */ + +/* -------------------------- GL_NV_pack_subimage -------------------------- */ + +#ifndef GL_NV_pack_subimage +#define GL_NV_pack_subimage 1 + +#define GL_PACK_ROW_LENGTH_NV 0x0D02 +#define GL_PACK_SKIP_ROWS_NV 0x0D03 +#define GL_PACK_SKIP_PIXELS_NV 0x0D04 + +#define GLEW_NV_pack_subimage GLEW_GET_VAR(__GLEW_NV_pack_subimage) + +#endif /* GL_NV_pack_subimage */ + +/* ----------------------- GL_NV_packed_depth_stencil ---------------------- */ + +#ifndef GL_NV_packed_depth_stencil +#define GL_NV_packed_depth_stencil 1 + +#define GL_DEPTH_STENCIL_NV 0x84F9 +#define GL_UNSIGNED_INT_24_8_NV 0x84FA + +#define GLEW_NV_packed_depth_stencil GLEW_GET_VAR(__GLEW_NV_packed_depth_stencil) + +#endif /* GL_NV_packed_depth_stencil */ + +/* --------------------------- GL_NV_packed_float -------------------------- */ + +#ifndef GL_NV_packed_float +#define GL_NV_packed_float 1 + +#define GL_R11F_G11F_B10F_NV 0x8C3A +#define GL_UNSIGNED_INT_10F_11F_11F_REV_NV 0x8C3B + +#define GLEW_NV_packed_float GLEW_GET_VAR(__GLEW_NV_packed_float) + +#endif /* GL_NV_packed_float */ + +/* ----------------------- GL_NV_packed_float_linear ----------------------- */ + +#ifndef GL_NV_packed_float_linear +#define GL_NV_packed_float_linear 1 + +#define GL_R11F_G11F_B10F_NV 0x8C3A +#define GL_UNSIGNED_INT_10F_11F_11F_REV_NV 0x8C3B + +#define GLEW_NV_packed_float_linear GLEW_GET_VAR(__GLEW_NV_packed_float_linear) + +#endif /* GL_NV_packed_float_linear */ + +/* --------------------- GL_NV_parameter_buffer_object --------------------- */ + +#ifndef GL_NV_parameter_buffer_object +#define GL_NV_parameter_buffer_object 1 + +#define GL_MAX_PROGRAM_PARAMETER_BUFFER_BINDINGS_NV 0x8DA0 +#define GL_MAX_PROGRAM_PARAMETER_BUFFER_SIZE_NV 0x8DA1 +#define GL_VERTEX_PROGRAM_PARAMETER_BUFFER_NV 0x8DA2 +#define GL_GEOMETRY_PROGRAM_PARAMETER_BUFFER_NV 0x8DA3 +#define GL_FRAGMENT_PROGRAM_PARAMETER_BUFFER_NV 0x8DA4 + +typedef void (GLAPIENTRY * PFNGLPROGRAMBUFFERPARAMETERSIIVNVPROC) (GLenum target, GLuint buffer, GLuint index, GLsizei count, const GLint *params); +typedef void (GLAPIENTRY * PFNGLPROGRAMBUFFERPARAMETERSIUIVNVPROC) (GLenum target, GLuint buffer, GLuint index, GLsizei count, const GLuint *params); +typedef void (GLAPIENTRY * PFNGLPROGRAMBUFFERPARAMETERSFVNVPROC) (GLenum target, GLuint buffer, GLuint index, GLsizei count, const GLfloat *params); + +#define glProgramBufferParametersIivNV GLEW_GET_FUN(__glewProgramBufferParametersIivNV) +#define glProgramBufferParametersIuivNV GLEW_GET_FUN(__glewProgramBufferParametersIuivNV) +#define glProgramBufferParametersfvNV GLEW_GET_FUN(__glewProgramBufferParametersfvNV) + +#define GLEW_NV_parameter_buffer_object GLEW_GET_VAR(__GLEW_NV_parameter_buffer_object) + +#endif /* GL_NV_parameter_buffer_object */ + +/* --------------------- GL_NV_parameter_buffer_object2 -------------------- */ + +#ifndef GL_NV_parameter_buffer_object2 +#define GL_NV_parameter_buffer_object2 1 + +#define GLEW_NV_parameter_buffer_object2 GLEW_GET_VAR(__GLEW_NV_parameter_buffer_object2) + +#endif /* GL_NV_parameter_buffer_object2 */ + +/* -------------------------- GL_NV_path_rendering ------------------------- */ + +#ifndef GL_NV_path_rendering +#define GL_NV_path_rendering 1 + +#define GL_CLOSE_PATH_NV 0x00 +#define GL_BOLD_BIT_NV 0x01 +#define GL_GLYPH_WIDTH_BIT_NV 0x01 +#define GL_GLYPH_HEIGHT_BIT_NV 0x02 +#define GL_ITALIC_BIT_NV 0x02 +#define GL_MOVE_TO_NV 0x02 +#define GL_RELATIVE_MOVE_TO_NV 0x03 +#define GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV 0x04 +#define GL_LINE_TO_NV 0x04 +#define GL_RELATIVE_LINE_TO_NV 0x05 +#define GL_HORIZONTAL_LINE_TO_NV 0x06 +#define GL_RELATIVE_HORIZONTAL_LINE_TO_NV 0x07 +#define GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV 0x08 +#define GL_VERTICAL_LINE_TO_NV 0x08 +#define GL_RELATIVE_VERTICAL_LINE_TO_NV 0x09 +#define GL_QUADRATIC_CURVE_TO_NV 0x0A +#define GL_RELATIVE_QUADRATIC_CURVE_TO_NV 0x0B +#define GL_CUBIC_CURVE_TO_NV 0x0C +#define GL_RELATIVE_CUBIC_CURVE_TO_NV 0x0D +#define GL_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0E +#define GL_RELATIVE_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0F +#define GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV 0x10 +#define GL_SMOOTH_CUBIC_CURVE_TO_NV 0x10 +#define GL_RELATIVE_SMOOTH_CUBIC_CURVE_TO_NV 0x11 +#define GL_SMALL_CCW_ARC_TO_NV 0x12 +#define GL_RELATIVE_SMALL_CCW_ARC_TO_NV 0x13 +#define GL_SMALL_CW_ARC_TO_NV 0x14 +#define GL_RELATIVE_SMALL_CW_ARC_TO_NV 0x15 +#define GL_LARGE_CCW_ARC_TO_NV 0x16 +#define GL_RELATIVE_LARGE_CCW_ARC_TO_NV 0x17 +#define GL_LARGE_CW_ARC_TO_NV 0x18 +#define GL_RELATIVE_LARGE_CW_ARC_TO_NV 0x19 +#define GL_CONIC_CURVE_TO_NV 0x1A +#define GL_RELATIVE_CONIC_CURVE_TO_NV 0x1B +#define GL_GLYPH_VERTICAL_BEARING_X_BIT_NV 0x20 +#define GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV 0x40 +#define GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV 0x80 +#define GL_ROUNDED_RECT_NV 0xE8 +#define GL_RELATIVE_ROUNDED_RECT_NV 0xE9 +#define GL_ROUNDED_RECT2_NV 0xEA +#define GL_RELATIVE_ROUNDED_RECT2_NV 0xEB +#define GL_ROUNDED_RECT4_NV 0xEC +#define GL_RELATIVE_ROUNDED_RECT4_NV 0xED +#define GL_ROUNDED_RECT8_NV 0xEE +#define GL_RELATIVE_ROUNDED_RECT8_NV 0xEF +#define GL_RESTART_PATH_NV 0xF0 +#define GL_DUP_FIRST_CUBIC_CURVE_TO_NV 0xF2 +#define GL_DUP_LAST_CUBIC_CURVE_TO_NV 0xF4 +#define GL_RECT_NV 0xF6 +#define GL_RELATIVE_RECT_NV 0xF7 +#define GL_CIRCULAR_CCW_ARC_TO_NV 0xF8 +#define GL_CIRCULAR_CW_ARC_TO_NV 0xFA +#define GL_CIRCULAR_TANGENT_ARC_TO_NV 0xFC +#define GL_ARC_TO_NV 0xFE +#define GL_RELATIVE_ARC_TO_NV 0xFF +#define GL_GLYPH_HAS_KERNING_BIT_NV 0x100 +#define GL_PRIMARY_COLOR_NV 0x852C +#define GL_SECONDARY_COLOR_NV 0x852D +#define GL_PRIMARY_COLOR 0x8577 +#define GL_PATH_FORMAT_SVG_NV 0x9070 +#define GL_PATH_FORMAT_PS_NV 0x9071 +#define GL_STANDARD_FONT_NAME_NV 0x9072 +#define GL_SYSTEM_FONT_NAME_NV 0x9073 +#define GL_FILE_NAME_NV 0x9074 +#define GL_PATH_STROKE_WIDTH_NV 0x9075 +#define GL_PATH_END_CAPS_NV 0x9076 +#define GL_PATH_INITIAL_END_CAP_NV 0x9077 +#define GL_PATH_TERMINAL_END_CAP_NV 0x9078 +#define GL_PATH_JOIN_STYLE_NV 0x9079 +#define GL_PATH_MITER_LIMIT_NV 0x907A +#define GL_PATH_DASH_CAPS_NV 0x907B +#define GL_PATH_INITIAL_DASH_CAP_NV 0x907C +#define GL_PATH_TERMINAL_DASH_CAP_NV 0x907D +#define GL_PATH_DASH_OFFSET_NV 0x907E +#define GL_PATH_CLIENT_LENGTH_NV 0x907F +#define GL_PATH_FILL_MODE_NV 0x9080 +#define GL_PATH_FILL_MASK_NV 0x9081 +#define GL_PATH_FILL_COVER_MODE_NV 0x9082 +#define GL_PATH_STROKE_COVER_MODE_NV 0x9083 +#define GL_PATH_STROKE_MASK_NV 0x9084 +#define GL_PATH_STROKE_BOUND_NV 0x9086 +#define GL_COUNT_UP_NV 0x9088 +#define GL_COUNT_DOWN_NV 0x9089 +#define GL_PATH_OBJECT_BOUNDING_BOX_NV 0x908A +#define GL_CONVEX_HULL_NV 0x908B +#define GL_BOUNDING_BOX_NV 0x908D +#define GL_TRANSLATE_X_NV 0x908E +#define GL_TRANSLATE_Y_NV 0x908F +#define GL_TRANSLATE_2D_NV 0x9090 +#define GL_TRANSLATE_3D_NV 0x9091 +#define GL_AFFINE_2D_NV 0x9092 +#define GL_AFFINE_3D_NV 0x9094 +#define GL_TRANSPOSE_AFFINE_2D_NV 0x9096 +#define GL_TRANSPOSE_AFFINE_3D_NV 0x9098 +#define GL_UTF8_NV 0x909A +#define GL_UTF16_NV 0x909B +#define GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV 0x909C +#define GL_PATH_COMMAND_COUNT_NV 0x909D +#define GL_PATH_COORD_COUNT_NV 0x909E +#define GL_PATH_DASH_ARRAY_COUNT_NV 0x909F +#define GL_PATH_COMPUTED_LENGTH_NV 0x90A0 +#define GL_PATH_FILL_BOUNDING_BOX_NV 0x90A1 +#define GL_PATH_STROKE_BOUNDING_BOX_NV 0x90A2 +#define GL_SQUARE_NV 0x90A3 +#define GL_ROUND_NV 0x90A4 +#define GL_TRIANGULAR_NV 0x90A5 +#define GL_BEVEL_NV 0x90A6 +#define GL_MITER_REVERT_NV 0x90A7 +#define GL_MITER_TRUNCATE_NV 0x90A8 +#define GL_SKIP_MISSING_GLYPH_NV 0x90A9 +#define GL_USE_MISSING_GLYPH_NV 0x90AA +#define GL_PATH_ERROR_POSITION_NV 0x90AB +#define GL_PATH_FOG_GEN_MODE_NV 0x90AC +#define GL_ACCUM_ADJACENT_PAIRS_NV 0x90AD +#define GL_ADJACENT_PAIRS_NV 0x90AE +#define GL_FIRST_TO_REST_NV 0x90AF +#define GL_PATH_GEN_MODE_NV 0x90B0 +#define GL_PATH_GEN_COEFF_NV 0x90B1 +#define GL_PATH_GEN_COLOR_FORMAT_NV 0x90B2 +#define GL_PATH_GEN_COMPONENTS_NV 0x90B3 +#define GL_PATH_DASH_OFFSET_RESET_NV 0x90B4 +#define GL_MOVE_TO_RESETS_NV 0x90B5 +#define GL_MOVE_TO_CONTINUES_NV 0x90B6 +#define GL_PATH_STENCIL_FUNC_NV 0x90B7 +#define GL_PATH_STENCIL_REF_NV 0x90B8 +#define GL_PATH_STENCIL_VALUE_MASK_NV 0x90B9 +#define GL_PATH_STENCIL_DEPTH_OFFSET_FACTOR_NV 0x90BD +#define GL_PATH_STENCIL_DEPTH_OFFSET_UNITS_NV 0x90BE +#define GL_PATH_COVER_DEPTH_FUNC_NV 0x90BF +#define GL_FONT_GLYPHS_AVAILABLE_NV 0x9368 +#define GL_FONT_TARGET_UNAVAILABLE_NV 0x9369 +#define GL_FONT_UNAVAILABLE_NV 0x936A +#define GL_FONT_UNINTELLIGIBLE_NV 0x936B +#define GL_STANDARD_FONT_FORMAT_NV 0x936C +#define GL_FRAGMENT_INPUT_NV 0x936D +#define GL_FONT_X_MIN_BOUNDS_BIT_NV 0x00010000 +#define GL_FONT_Y_MIN_BOUNDS_BIT_NV 0x00020000 +#define GL_FONT_X_MAX_BOUNDS_BIT_NV 0x00040000 +#define GL_FONT_Y_MAX_BOUNDS_BIT_NV 0x00080000 +#define GL_FONT_UNITS_PER_EM_BIT_NV 0x00100000 +#define GL_FONT_ASCENDER_BIT_NV 0x00200000 +#define GL_FONT_DESCENDER_BIT_NV 0x00400000 +#define GL_FONT_HEIGHT_BIT_NV 0x00800000 +#define GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV 0x01000000 +#define GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV 0x02000000 +#define GL_FONT_UNDERLINE_POSITION_BIT_NV 0x04000000 +#define GL_FONT_UNDERLINE_THICKNESS_BIT_NV 0x08000000 +#define GL_FONT_HAS_KERNING_BIT_NV 0x10000000 +#define GL_FONT_NUM_GLYPH_INDICES_BIT_NV 0x20000000 + +typedef void (GLAPIENTRY * PFNGLCOPYPATHNVPROC) (GLuint resultPath, GLuint srcPath); +typedef void (GLAPIENTRY * PFNGLCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (GLAPIENTRY * PFNGLCOVERFILLPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (GLAPIENTRY * PFNGLCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (GLAPIENTRY * PFNGLCOVERSTROKEPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (GLAPIENTRY * PFNGLDELETEPATHSNVPROC) (GLuint path, GLsizei range); +typedef GLuint (GLAPIENTRY * PFNGLGENPATHSNVPROC) (GLsizei range); +typedef void (GLAPIENTRY * PFNGLGETPATHCOLORGENFVNVPROC) (GLenum color, GLenum pname, GLfloat* value); +typedef void (GLAPIENTRY * PFNGLGETPATHCOLORGENIVNVPROC) (GLenum color, GLenum pname, GLint* value); +typedef void (GLAPIENTRY * PFNGLGETPATHCOMMANDSNVPROC) (GLuint path, GLubyte* commands); +typedef void (GLAPIENTRY * PFNGLGETPATHCOORDSNVPROC) (GLuint path, GLfloat* coords); +typedef void (GLAPIENTRY * PFNGLGETPATHDASHARRAYNVPROC) (GLuint path, GLfloat* dashArray); +typedef GLfloat (GLAPIENTRY * PFNGLGETPATHLENGTHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments); +typedef void (GLAPIENTRY * PFNGLGETPATHMETRICRANGENVPROC) (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat* metrics); +typedef void (GLAPIENTRY * PFNGLGETPATHMETRICSNVPROC) (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); +typedef void (GLAPIENTRY * PFNGLGETPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, GLfloat* value); +typedef void (GLAPIENTRY * PFNGLGETPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, GLint* value); +typedef void (GLAPIENTRY * PFNGLGETPATHSPACINGNVPROC) (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); +typedef void (GLAPIENTRY * PFNGLGETPATHTEXGENFVNVPROC) (GLenum texCoordSet, GLenum pname, GLfloat* value); +typedef void (GLAPIENTRY * PFNGLGETPATHTEXGENIVNVPROC) (GLenum texCoordSet, GLenum pname, GLint* value); +typedef void (GLAPIENTRY * PFNGLGETPROGRAMRESOURCEFVNVPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum* props, GLsizei bufSize, GLsizei *length, GLfloat *params); +typedef void (GLAPIENTRY * PFNGLINTERPOLATEPATHSNVPROC) (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight); +typedef GLboolean (GLAPIENTRY * PFNGLISPATHNVPROC) (GLuint path); +typedef GLboolean (GLAPIENTRY * PFNGLISPOINTINFILLPATHNVPROC) (GLuint path, GLuint mask, GLfloat x, GLfloat y); +typedef GLboolean (GLAPIENTRY * PFNGLISPOINTINSTROKEPATHNVPROC) (GLuint path, GLfloat x, GLfloat y); +typedef void (GLAPIENTRY * PFNGLMATRIXLOAD3X2FNVPROC) (GLenum matrixMode, const GLfloat* m); +typedef void (GLAPIENTRY * PFNGLMATRIXLOAD3X3FNVPROC) (GLenum matrixMode, const GLfloat* m); +typedef void (GLAPIENTRY * PFNGLMATRIXLOADTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat* m); +typedef void (GLAPIENTRY * PFNGLMATRIXMULT3X2FNVPROC) (GLenum matrixMode, const GLfloat* m); +typedef void (GLAPIENTRY * PFNGLMATRIXMULT3X3FNVPROC) (GLenum matrixMode, const GLfloat* m); +typedef void (GLAPIENTRY * PFNGLMATRIXMULTTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat* m); +typedef void (GLAPIENTRY * PFNGLPATHCOLORGENNVPROC) (GLenum color, GLenum genMode, GLenum colorFormat, const GLfloat* coeffs); +typedef void (GLAPIENTRY * PFNGLPATHCOMMANDSNVPROC) (GLuint path, GLsizei numCommands, const GLubyte* commands, GLsizei numCoords, GLenum coordType, const void*coords); +typedef void (GLAPIENTRY * PFNGLPATHCOORDSNVPROC) (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GLAPIENTRY * PFNGLPATHCOVERDEPTHFUNCNVPROC) (GLenum zfunc); +typedef void (GLAPIENTRY * PFNGLPATHDASHARRAYNVPROC) (GLuint path, GLsizei dashCount, const GLfloat* dashArray); +typedef void (GLAPIENTRY * PFNGLPATHFOGGENNVPROC) (GLenum genMode); +typedef GLenum (GLAPIENTRY * PFNGLPATHGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef GLenum (GLAPIENTRY * PFNGLPATHGLYPHINDEXRANGENVPROC) (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint baseAndCount[2]); +typedef void (GLAPIENTRY * PFNGLPATHGLYPHRANGENVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (GLAPIENTRY * PFNGLPATHGLYPHSNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const void*charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef GLenum (GLAPIENTRY * PFNGLPATHMEMORYGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (GLAPIENTRY * PFNGLPATHPARAMETERFNVPROC) (GLuint path, GLenum pname, GLfloat value); +typedef void (GLAPIENTRY * PFNGLPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, const GLfloat* value); +typedef void (GLAPIENTRY * PFNGLPATHPARAMETERINVPROC) (GLuint path, GLenum pname, GLint value); +typedef void (GLAPIENTRY * PFNGLPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, const GLint* value); +typedef void (GLAPIENTRY * PFNGLPATHSTENCILDEPTHOFFSETNVPROC) (GLfloat factor, GLfloat units); +typedef void (GLAPIENTRY * PFNGLPATHSTENCILFUNCNVPROC) (GLenum func, GLint ref, GLuint mask); +typedef void (GLAPIENTRY * PFNGLPATHSTRINGNVPROC) (GLuint path, GLenum format, GLsizei length, const void *pathString); +typedef void (GLAPIENTRY * PFNGLPATHSUBCOMMANDSNVPROC) (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte* commands, GLsizei numCoords, GLenum coordType, const void*coords); +typedef void (GLAPIENTRY * PFNGLPATHSUBCOORDSNVPROC) (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GLAPIENTRY * PFNGLPATHTEXGENNVPROC) (GLenum texCoordSet, GLenum genMode, GLint components, const GLfloat* coeffs); +typedef GLboolean (GLAPIENTRY * PFNGLPOINTALONGPATHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat* x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +typedef void (GLAPIENTRY * PFNGLPROGRAMPATHFRAGMENTINPUTGENNVPROC) (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat* coeffs); +typedef void (GLAPIENTRY * PFNGLSTENCILFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (GLAPIENTRY * PFNGLSTENCILFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask); +typedef void (GLAPIENTRY * PFNGLSTENCILSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (GLAPIENTRY * PFNGLSTENCILSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask); +typedef void (GLAPIENTRY * PFNGLSTENCILTHENCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (GLAPIENTRY * PFNGLSTENCILTHENCOVERFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +typedef void (GLAPIENTRY * PFNGLSTENCILTHENCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (GLAPIENTRY * PFNGLSTENCILTHENCOVERSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +typedef void (GLAPIENTRY * PFNGLTRANSFORMPATHNVPROC) (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat* transformValues); +typedef void (GLAPIENTRY * PFNGLWEIGHTPATHSNVPROC) (GLuint resultPath, GLsizei numPaths, const GLuint paths[], const GLfloat weights[]); + +#define glCopyPathNV GLEW_GET_FUN(__glewCopyPathNV) +#define glCoverFillPathInstancedNV GLEW_GET_FUN(__glewCoverFillPathInstancedNV) +#define glCoverFillPathNV GLEW_GET_FUN(__glewCoverFillPathNV) +#define glCoverStrokePathInstancedNV GLEW_GET_FUN(__glewCoverStrokePathInstancedNV) +#define glCoverStrokePathNV GLEW_GET_FUN(__glewCoverStrokePathNV) +#define glDeletePathsNV GLEW_GET_FUN(__glewDeletePathsNV) +#define glGenPathsNV GLEW_GET_FUN(__glewGenPathsNV) +#define glGetPathColorGenfvNV GLEW_GET_FUN(__glewGetPathColorGenfvNV) +#define glGetPathColorGenivNV GLEW_GET_FUN(__glewGetPathColorGenivNV) +#define glGetPathCommandsNV GLEW_GET_FUN(__glewGetPathCommandsNV) +#define glGetPathCoordsNV GLEW_GET_FUN(__glewGetPathCoordsNV) +#define glGetPathDashArrayNV GLEW_GET_FUN(__glewGetPathDashArrayNV) +#define glGetPathLengthNV GLEW_GET_FUN(__glewGetPathLengthNV) +#define glGetPathMetricRangeNV GLEW_GET_FUN(__glewGetPathMetricRangeNV) +#define glGetPathMetricsNV GLEW_GET_FUN(__glewGetPathMetricsNV) +#define glGetPathParameterfvNV GLEW_GET_FUN(__glewGetPathParameterfvNV) +#define glGetPathParameterivNV GLEW_GET_FUN(__glewGetPathParameterivNV) +#define glGetPathSpacingNV GLEW_GET_FUN(__glewGetPathSpacingNV) +#define glGetPathTexGenfvNV GLEW_GET_FUN(__glewGetPathTexGenfvNV) +#define glGetPathTexGenivNV GLEW_GET_FUN(__glewGetPathTexGenivNV) +#define glGetProgramResourcefvNV GLEW_GET_FUN(__glewGetProgramResourcefvNV) +#define glInterpolatePathsNV GLEW_GET_FUN(__glewInterpolatePathsNV) +#define glIsPathNV GLEW_GET_FUN(__glewIsPathNV) +#define glIsPointInFillPathNV GLEW_GET_FUN(__glewIsPointInFillPathNV) +#define glIsPointInStrokePathNV GLEW_GET_FUN(__glewIsPointInStrokePathNV) +#define glMatrixLoad3x2fNV GLEW_GET_FUN(__glewMatrixLoad3x2fNV) +#define glMatrixLoad3x3fNV GLEW_GET_FUN(__glewMatrixLoad3x3fNV) +#define glMatrixLoadTranspose3x3fNV GLEW_GET_FUN(__glewMatrixLoadTranspose3x3fNV) +#define glMatrixMult3x2fNV GLEW_GET_FUN(__glewMatrixMult3x2fNV) +#define glMatrixMult3x3fNV GLEW_GET_FUN(__glewMatrixMult3x3fNV) +#define glMatrixMultTranspose3x3fNV GLEW_GET_FUN(__glewMatrixMultTranspose3x3fNV) +#define glPathColorGenNV GLEW_GET_FUN(__glewPathColorGenNV) +#define glPathCommandsNV GLEW_GET_FUN(__glewPathCommandsNV) +#define glPathCoordsNV GLEW_GET_FUN(__glewPathCoordsNV) +#define glPathCoverDepthFuncNV GLEW_GET_FUN(__glewPathCoverDepthFuncNV) +#define glPathDashArrayNV GLEW_GET_FUN(__glewPathDashArrayNV) +#define glPathFogGenNV GLEW_GET_FUN(__glewPathFogGenNV) +#define glPathGlyphIndexArrayNV GLEW_GET_FUN(__glewPathGlyphIndexArrayNV) +#define glPathGlyphIndexRangeNV GLEW_GET_FUN(__glewPathGlyphIndexRangeNV) +#define glPathGlyphRangeNV GLEW_GET_FUN(__glewPathGlyphRangeNV) +#define glPathGlyphsNV GLEW_GET_FUN(__glewPathGlyphsNV) +#define glPathMemoryGlyphIndexArrayNV GLEW_GET_FUN(__glewPathMemoryGlyphIndexArrayNV) +#define glPathParameterfNV GLEW_GET_FUN(__glewPathParameterfNV) +#define glPathParameterfvNV GLEW_GET_FUN(__glewPathParameterfvNV) +#define glPathParameteriNV GLEW_GET_FUN(__glewPathParameteriNV) +#define glPathParameterivNV GLEW_GET_FUN(__glewPathParameterivNV) +#define glPathStencilDepthOffsetNV GLEW_GET_FUN(__glewPathStencilDepthOffsetNV) +#define glPathStencilFuncNV GLEW_GET_FUN(__glewPathStencilFuncNV) +#define glPathStringNV GLEW_GET_FUN(__glewPathStringNV) +#define glPathSubCommandsNV GLEW_GET_FUN(__glewPathSubCommandsNV) +#define glPathSubCoordsNV GLEW_GET_FUN(__glewPathSubCoordsNV) +#define glPathTexGenNV GLEW_GET_FUN(__glewPathTexGenNV) +#define glPointAlongPathNV GLEW_GET_FUN(__glewPointAlongPathNV) +#define glProgramPathFragmentInputGenNV GLEW_GET_FUN(__glewProgramPathFragmentInputGenNV) +#define glStencilFillPathInstancedNV GLEW_GET_FUN(__glewStencilFillPathInstancedNV) +#define glStencilFillPathNV GLEW_GET_FUN(__glewStencilFillPathNV) +#define glStencilStrokePathInstancedNV GLEW_GET_FUN(__glewStencilStrokePathInstancedNV) +#define glStencilStrokePathNV GLEW_GET_FUN(__glewStencilStrokePathNV) +#define glStencilThenCoverFillPathInstancedNV GLEW_GET_FUN(__glewStencilThenCoverFillPathInstancedNV) +#define glStencilThenCoverFillPathNV GLEW_GET_FUN(__glewStencilThenCoverFillPathNV) +#define glStencilThenCoverStrokePathInstancedNV GLEW_GET_FUN(__glewStencilThenCoverStrokePathInstancedNV) +#define glStencilThenCoverStrokePathNV GLEW_GET_FUN(__glewStencilThenCoverStrokePathNV) +#define glTransformPathNV GLEW_GET_FUN(__glewTransformPathNV) +#define glWeightPathsNV GLEW_GET_FUN(__glewWeightPathsNV) + +#define GLEW_NV_path_rendering GLEW_GET_VAR(__GLEW_NV_path_rendering) + +#endif /* GL_NV_path_rendering */ + +/* -------------------- GL_NV_path_rendering_shared_edge ------------------- */ + +#ifndef GL_NV_path_rendering_shared_edge +#define GL_NV_path_rendering_shared_edge 1 + +#define GL_SHARED_EDGE_NV 0xC0 + +#define GLEW_NV_path_rendering_shared_edge GLEW_GET_VAR(__GLEW_NV_path_rendering_shared_edge) + +#endif /* GL_NV_path_rendering_shared_edge */ + +/* ----------------------- GL_NV_pixel_buffer_object ----------------------- */ + +#ifndef GL_NV_pixel_buffer_object +#define GL_NV_pixel_buffer_object 1 + +#define GL_PIXEL_PACK_BUFFER_NV 0x88EB +#define GL_PIXEL_UNPACK_BUFFER_NV 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING_NV 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING_NV 0x88EF + +#define GLEW_NV_pixel_buffer_object GLEW_GET_VAR(__GLEW_NV_pixel_buffer_object) + +#endif /* GL_NV_pixel_buffer_object */ + +/* ------------------------- GL_NV_pixel_data_range ------------------------ */ + +#ifndef GL_NV_pixel_data_range +#define GL_NV_pixel_data_range 1 + +#define GL_WRITE_PIXEL_DATA_RANGE_NV 0x8878 +#define GL_READ_PIXEL_DATA_RANGE_NV 0x8879 +#define GL_WRITE_PIXEL_DATA_RANGE_LENGTH_NV 0x887A +#define GL_READ_PIXEL_DATA_RANGE_LENGTH_NV 0x887B +#define GL_WRITE_PIXEL_DATA_RANGE_POINTER_NV 0x887C +#define GL_READ_PIXEL_DATA_RANGE_POINTER_NV 0x887D + +typedef void (GLAPIENTRY * PFNGLFLUSHPIXELDATARANGENVPROC) (GLenum target); +typedef void (GLAPIENTRY * PFNGLPIXELDATARANGENVPROC) (GLenum target, GLsizei length, void *pointer); + +#define glFlushPixelDataRangeNV GLEW_GET_FUN(__glewFlushPixelDataRangeNV) +#define glPixelDataRangeNV GLEW_GET_FUN(__glewPixelDataRangeNV) + +#define GLEW_NV_pixel_data_range GLEW_GET_VAR(__GLEW_NV_pixel_data_range) + +#endif /* GL_NV_pixel_data_range */ + +/* ------------------------- GL_NV_platform_binary ------------------------- */ + +#ifndef GL_NV_platform_binary +#define GL_NV_platform_binary 1 + +#define GL_NVIDIA_PLATFORM_BINARY_NV 0x890B + +#define GLEW_NV_platform_binary GLEW_GET_VAR(__GLEW_NV_platform_binary) + +#endif /* GL_NV_platform_binary */ + +/* --------------------------- GL_NV_point_sprite -------------------------- */ + +#ifndef GL_NV_point_sprite +#define GL_NV_point_sprite 1 + +#define GL_POINT_SPRITE_NV 0x8861 +#define GL_COORD_REPLACE_NV 0x8862 +#define GL_POINT_SPRITE_R_MODE_NV 0x8863 + +typedef void (GLAPIENTRY * PFNGLPOINTPARAMETERINVPROC) (GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLPOINTPARAMETERIVNVPROC) (GLenum pname, const GLint* params); + +#define glPointParameteriNV GLEW_GET_FUN(__glewPointParameteriNV) +#define glPointParameterivNV GLEW_GET_FUN(__glewPointParameterivNV) + +#define GLEW_NV_point_sprite GLEW_GET_VAR(__GLEW_NV_point_sprite) + +#endif /* GL_NV_point_sprite */ + +/* --------------------------- GL_NV_polygon_mode -------------------------- */ + +#ifndef GL_NV_polygon_mode +#define GL_NV_polygon_mode 1 + +#define GL_POLYGON_MODE_NV 0x0B40 +#define GL_POINT_NV 0x1B00 +#define GL_LINE_NV 0x1B01 +#define GL_FILL_NV 0x1B02 +#define GL_POLYGON_OFFSET_POINT_NV 0x2A01 +#define GL_POLYGON_OFFSET_LINE_NV 0x2A02 + +typedef void (GLAPIENTRY * PFNGLPOLYGONMODENVPROC) (GLenum face, GLenum mode); + +#define glPolygonModeNV GLEW_GET_FUN(__glewPolygonModeNV) + +#define GLEW_NV_polygon_mode GLEW_GET_VAR(__GLEW_NV_polygon_mode) + +#endif /* GL_NV_polygon_mode */ + +/* -------------------------- GL_NV_present_video -------------------------- */ + +#ifndef GL_NV_present_video +#define GL_NV_present_video 1 + +#define GL_FRAME_NV 0x8E26 +#define GL_FIELDS_NV 0x8E27 +#define GL_CURRENT_TIME_NV 0x8E28 +#define GL_NUM_FILL_STREAMS_NV 0x8E29 +#define GL_PRESENT_TIME_NV 0x8E2A +#define GL_PRESENT_DURATION_NV 0x8E2B + +typedef void (GLAPIENTRY * PFNGLGETVIDEOI64VNVPROC) (GLuint video_slot, GLenum pname, GLint64EXT* params); +typedef void (GLAPIENTRY * PFNGLGETVIDEOIVNVPROC) (GLuint video_slot, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETVIDEOUI64VNVPROC) (GLuint video_slot, GLenum pname, GLuint64EXT* params); +typedef void (GLAPIENTRY * PFNGLGETVIDEOUIVNVPROC) (GLuint video_slot, GLenum pname, GLuint* params); +typedef void (GLAPIENTRY * PFNGLPRESENTFRAMEDUALFILLNVPROC) (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLenum target1, GLuint fill1, GLenum target2, GLuint fill2, GLenum target3, GLuint fill3); +typedef void (GLAPIENTRY * PFNGLPRESENTFRAMEKEYEDNVPROC) (GLuint video_slot, GLuint64EXT minPresentTime, GLuint beginPresentTimeId, GLuint presentDurationId, GLenum type, GLenum target0, GLuint fill0, GLuint key0, GLenum target1, GLuint fill1, GLuint key1); + +#define glGetVideoi64vNV GLEW_GET_FUN(__glewGetVideoi64vNV) +#define glGetVideoivNV GLEW_GET_FUN(__glewGetVideoivNV) +#define glGetVideoui64vNV GLEW_GET_FUN(__glewGetVideoui64vNV) +#define glGetVideouivNV GLEW_GET_FUN(__glewGetVideouivNV) +#define glPresentFrameDualFillNV GLEW_GET_FUN(__glewPresentFrameDualFillNV) +#define glPresentFrameKeyedNV GLEW_GET_FUN(__glewPresentFrameKeyedNV) + +#define GLEW_NV_present_video GLEW_GET_VAR(__GLEW_NV_present_video) + +#endif /* GL_NV_present_video */ + +/* ------------------------ GL_NV_primitive_restart ------------------------ */ + +#ifndef GL_NV_primitive_restart +#define GL_NV_primitive_restart 1 + +#define GL_PRIMITIVE_RESTART_NV 0x8558 +#define GL_PRIMITIVE_RESTART_INDEX_NV 0x8559 + +typedef void (GLAPIENTRY * PFNGLPRIMITIVERESTARTINDEXNVPROC) (GLuint index); +typedef void (GLAPIENTRY * PFNGLPRIMITIVERESTARTNVPROC) (void); + +#define glPrimitiveRestartIndexNV GLEW_GET_FUN(__glewPrimitiveRestartIndexNV) +#define glPrimitiveRestartNV GLEW_GET_FUN(__glewPrimitiveRestartNV) + +#define GLEW_NV_primitive_restart GLEW_GET_VAR(__GLEW_NV_primitive_restart) + +#endif /* GL_NV_primitive_restart */ + +/* ---------------------------- GL_NV_read_depth --------------------------- */ + +#ifndef GL_NV_read_depth +#define GL_NV_read_depth 1 + +#define GLEW_NV_read_depth GLEW_GET_VAR(__GLEW_NV_read_depth) + +#endif /* GL_NV_read_depth */ + +/* ------------------------ GL_NV_read_depth_stencil ----------------------- */ + +#ifndef GL_NV_read_depth_stencil +#define GL_NV_read_depth_stencil 1 + +#define GLEW_NV_read_depth_stencil GLEW_GET_VAR(__GLEW_NV_read_depth_stencil) + +#endif /* GL_NV_read_depth_stencil */ + +/* --------------------------- GL_NV_read_stencil -------------------------- */ + +#ifndef GL_NV_read_stencil +#define GL_NV_read_stencil 1 + +#define GLEW_NV_read_stencil GLEW_GET_VAR(__GLEW_NV_read_stencil) + +#endif /* GL_NV_read_stencil */ + +/* ------------------------ GL_NV_register_combiners ----------------------- */ + +#ifndef GL_NV_register_combiners +#define GL_NV_register_combiners 1 + +#define GL_REGISTER_COMBINERS_NV 0x8522 +#define GL_VARIABLE_A_NV 0x8523 +#define GL_VARIABLE_B_NV 0x8524 +#define GL_VARIABLE_C_NV 0x8525 +#define GL_VARIABLE_D_NV 0x8526 +#define GL_VARIABLE_E_NV 0x8527 +#define GL_VARIABLE_F_NV 0x8528 +#define GL_VARIABLE_G_NV 0x8529 +#define GL_CONSTANT_COLOR0_NV 0x852A +#define GL_CONSTANT_COLOR1_NV 0x852B +#define GL_PRIMARY_COLOR_NV 0x852C +#define GL_SECONDARY_COLOR_NV 0x852D +#define GL_SPARE0_NV 0x852E +#define GL_SPARE1_NV 0x852F +#define GL_DISCARD_NV 0x8530 +#define GL_E_TIMES_F_NV 0x8531 +#define GL_SPARE0_PLUS_SECONDARY_COLOR_NV 0x8532 +#define GL_UNSIGNED_IDENTITY_NV 0x8536 +#define GL_UNSIGNED_INVERT_NV 0x8537 +#define GL_EXPAND_NORMAL_NV 0x8538 +#define GL_EXPAND_NEGATE_NV 0x8539 +#define GL_HALF_BIAS_NORMAL_NV 0x853A +#define GL_HALF_BIAS_NEGATE_NV 0x853B +#define GL_SIGNED_IDENTITY_NV 0x853C +#define GL_SIGNED_NEGATE_NV 0x853D +#define GL_SCALE_BY_TWO_NV 0x853E +#define GL_SCALE_BY_FOUR_NV 0x853F +#define GL_SCALE_BY_ONE_HALF_NV 0x8540 +#define GL_BIAS_BY_NEGATIVE_ONE_HALF_NV 0x8541 +#define GL_COMBINER_INPUT_NV 0x8542 +#define GL_COMBINER_MAPPING_NV 0x8543 +#define GL_COMBINER_COMPONENT_USAGE_NV 0x8544 +#define GL_COMBINER_AB_DOT_PRODUCT_NV 0x8545 +#define GL_COMBINER_CD_DOT_PRODUCT_NV 0x8546 +#define GL_COMBINER_MUX_SUM_NV 0x8547 +#define GL_COMBINER_SCALE_NV 0x8548 +#define GL_COMBINER_BIAS_NV 0x8549 +#define GL_COMBINER_AB_OUTPUT_NV 0x854A +#define GL_COMBINER_CD_OUTPUT_NV 0x854B +#define GL_COMBINER_SUM_OUTPUT_NV 0x854C +#define GL_MAX_GENERAL_COMBINERS_NV 0x854D +#define GL_NUM_GENERAL_COMBINERS_NV 0x854E +#define GL_COLOR_SUM_CLAMP_NV 0x854F +#define GL_COMBINER0_NV 0x8550 +#define GL_COMBINER1_NV 0x8551 +#define GL_COMBINER2_NV 0x8552 +#define GL_COMBINER3_NV 0x8553 +#define GL_COMBINER4_NV 0x8554 +#define GL_COMBINER5_NV 0x8555 +#define GL_COMBINER6_NV 0x8556 +#define GL_COMBINER7_NV 0x8557 + +typedef void (GLAPIENTRY * PFNGLCOMBINERINPUTNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +typedef void (GLAPIENTRY * PFNGLCOMBINEROUTPUTNVPROC) (GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); +typedef void (GLAPIENTRY * PFNGLCOMBINERPARAMETERFNVPROC) (GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLCOMBINERPARAMETERFVNVPROC) (GLenum pname, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLCOMBINERPARAMETERINVPROC) (GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLCOMBINERPARAMETERIVNVPROC) (GLenum pname, const GLint* params); +typedef void (GLAPIENTRY * PFNGLFINALCOMBINERINPUTNVPROC) (GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); +typedef void (GLAPIENTRY * PFNGLGETCOMBINERINPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETCOMBINERINPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETCOMBINEROUTPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETCOMBINEROUTPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETFINALCOMBINERINPUTPARAMETERFVNVPROC) (GLenum variable, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETFINALCOMBINERINPUTPARAMETERIVNVPROC) (GLenum variable, GLenum pname, GLint* params); + +#define glCombinerInputNV GLEW_GET_FUN(__glewCombinerInputNV) +#define glCombinerOutputNV GLEW_GET_FUN(__glewCombinerOutputNV) +#define glCombinerParameterfNV GLEW_GET_FUN(__glewCombinerParameterfNV) +#define glCombinerParameterfvNV GLEW_GET_FUN(__glewCombinerParameterfvNV) +#define glCombinerParameteriNV GLEW_GET_FUN(__glewCombinerParameteriNV) +#define glCombinerParameterivNV GLEW_GET_FUN(__glewCombinerParameterivNV) +#define glFinalCombinerInputNV GLEW_GET_FUN(__glewFinalCombinerInputNV) +#define glGetCombinerInputParameterfvNV GLEW_GET_FUN(__glewGetCombinerInputParameterfvNV) +#define glGetCombinerInputParameterivNV GLEW_GET_FUN(__glewGetCombinerInputParameterivNV) +#define glGetCombinerOutputParameterfvNV GLEW_GET_FUN(__glewGetCombinerOutputParameterfvNV) +#define glGetCombinerOutputParameterivNV GLEW_GET_FUN(__glewGetCombinerOutputParameterivNV) +#define glGetFinalCombinerInputParameterfvNV GLEW_GET_FUN(__glewGetFinalCombinerInputParameterfvNV) +#define glGetFinalCombinerInputParameterivNV GLEW_GET_FUN(__glewGetFinalCombinerInputParameterivNV) + +#define GLEW_NV_register_combiners GLEW_GET_VAR(__GLEW_NV_register_combiners) + +#endif /* GL_NV_register_combiners */ + +/* ----------------------- GL_NV_register_combiners2 ----------------------- */ + +#ifndef GL_NV_register_combiners2 +#define GL_NV_register_combiners2 1 + +#define GL_PER_STAGE_CONSTANTS_NV 0x8535 + +typedef void (GLAPIENTRY * PFNGLCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, GLfloat* params); + +#define glCombinerStageParameterfvNV GLEW_GET_FUN(__glewCombinerStageParameterfvNV) +#define glGetCombinerStageParameterfvNV GLEW_GET_FUN(__glewGetCombinerStageParameterfvNV) + +#define GLEW_NV_register_combiners2 GLEW_GET_VAR(__GLEW_NV_register_combiners2) + +#endif /* GL_NV_register_combiners2 */ + +/* ------------------ GL_NV_robustness_video_memory_purge ------------------ */ + +#ifndef GL_NV_robustness_video_memory_purge +#define GL_NV_robustness_video_memory_purge 1 + +#define GL_EGL_GENERATE_RESET_ON_VIDEO_MEMORY_PURGE_NV 0x334C +#define GL_PURGED_CONTEXT_RESET_NV 0x92BB + +#define GLEW_NV_robustness_video_memory_purge GLEW_GET_VAR(__GLEW_NV_robustness_video_memory_purge) + +#endif /* GL_NV_robustness_video_memory_purge */ + +/* --------------------------- GL_NV_sRGB_formats -------------------------- */ + +#ifndef GL_NV_sRGB_formats +#define GL_NV_sRGB_formats 1 + +#define GL_ETC1_SRGB8_NV 0x88EE +#define GL_SRGB8_NV 0x8C41 +#define GL_SLUMINANCE_ALPHA_NV 0x8C44 +#define GL_SLUMINANCE8_ALPHA8_NV 0x8C45 +#define GL_SLUMINANCE_NV 0x8C46 +#define GL_SLUMINANCE8_NV 0x8C47 +#define GL_COMPRESSED_SRGB_S3TC_DXT1_NV 0x8C4C +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_NV 0x8C4D +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_NV 0x8C4E +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_NV 0x8C4F + +#define GLEW_NV_sRGB_formats GLEW_GET_VAR(__GLEW_NV_sRGB_formats) + +#endif /* GL_NV_sRGB_formats */ + +/* ------------------------- GL_NV_sample_locations ------------------------ */ + +#ifndef GL_NV_sample_locations +#define GL_NV_sample_locations 1 + +#define GL_SAMPLE_LOCATION_NV 0x8E50 +#define GL_SAMPLE_LOCATION_SUBPIXEL_BITS_NV 0x933D +#define GL_SAMPLE_LOCATION_PIXEL_GRID_WIDTH_NV 0x933E +#define GL_SAMPLE_LOCATION_PIXEL_GRID_HEIGHT_NV 0x933F +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_TABLE_SIZE_NV 0x9340 +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_NV 0x9341 +#define GL_FRAMEBUFFER_PROGRAMMABLE_SAMPLE_LOCATIONS_NV 0x9342 +#define GL_FRAMEBUFFER_SAMPLE_LOCATION_PIXEL_GRID_NV 0x9343 + +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLenum target, GLuint start, GLsizei count, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLNAMEDFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat* v); + +#define glFramebufferSampleLocationsfvNV GLEW_GET_FUN(__glewFramebufferSampleLocationsfvNV) +#define glNamedFramebufferSampleLocationsfvNV GLEW_GET_FUN(__glewNamedFramebufferSampleLocationsfvNV) + +#define GLEW_NV_sample_locations GLEW_GET_VAR(__GLEW_NV_sample_locations) + +#endif /* GL_NV_sample_locations */ + +/* ------------------ GL_NV_sample_mask_override_coverage ------------------ */ + +#ifndef GL_NV_sample_mask_override_coverage +#define GL_NV_sample_mask_override_coverage 1 + +#define GLEW_NV_sample_mask_override_coverage GLEW_GET_VAR(__GLEW_NV_sample_mask_override_coverage) + +#endif /* GL_NV_sample_mask_override_coverage */ + +/* ---------------------- GL_NV_shader_atomic_counters --------------------- */ + +#ifndef GL_NV_shader_atomic_counters +#define GL_NV_shader_atomic_counters 1 + +#define GLEW_NV_shader_atomic_counters GLEW_GET_VAR(__GLEW_NV_shader_atomic_counters) + +#endif /* GL_NV_shader_atomic_counters */ + +/* ----------------------- GL_NV_shader_atomic_float ----------------------- */ + +#ifndef GL_NV_shader_atomic_float +#define GL_NV_shader_atomic_float 1 + +#define GLEW_NV_shader_atomic_float GLEW_GET_VAR(__GLEW_NV_shader_atomic_float) + +#endif /* GL_NV_shader_atomic_float */ + +/* ---------------------- GL_NV_shader_atomic_float64 ---------------------- */ + +#ifndef GL_NV_shader_atomic_float64 +#define GL_NV_shader_atomic_float64 1 + +#define GLEW_NV_shader_atomic_float64 GLEW_GET_VAR(__GLEW_NV_shader_atomic_float64) + +#endif /* GL_NV_shader_atomic_float64 */ + +/* -------------------- GL_NV_shader_atomic_fp16_vector -------------------- */ + +#ifndef GL_NV_shader_atomic_fp16_vector +#define GL_NV_shader_atomic_fp16_vector 1 + +#define GLEW_NV_shader_atomic_fp16_vector GLEW_GET_VAR(__GLEW_NV_shader_atomic_fp16_vector) + +#endif /* GL_NV_shader_atomic_fp16_vector */ + +/* ----------------------- GL_NV_shader_atomic_int64 ----------------------- */ + +#ifndef GL_NV_shader_atomic_int64 +#define GL_NV_shader_atomic_int64 1 + +#define GLEW_NV_shader_atomic_int64 GLEW_GET_VAR(__GLEW_NV_shader_atomic_int64) + +#endif /* GL_NV_shader_atomic_int64 */ + +/* ------------------------ GL_NV_shader_buffer_load ----------------------- */ + +#ifndef GL_NV_shader_buffer_load +#define GL_NV_shader_buffer_load 1 + +#define GL_BUFFER_GPU_ADDRESS_NV 0x8F1D +#define GL_GPU_ADDRESS_NV 0x8F34 +#define GL_MAX_SHADER_BUFFER_ADDRESS_NV 0x8F35 + +typedef void (GLAPIENTRY * PFNGLGETBUFFERPARAMETERUI64VNVPROC) (GLenum target, GLenum pname, GLuint64EXT* params); +typedef void (GLAPIENTRY * PFNGLGETINTEGERUI64VNVPROC) (GLenum value, GLuint64EXT* result); +typedef void (GLAPIENTRY * PFNGLGETNAMEDBUFFERPARAMETERUI64VNVPROC) (GLuint buffer, GLenum pname, GLuint64EXT* params); +typedef GLboolean (GLAPIENTRY * PFNGLISBUFFERRESIDENTNVPROC) (GLenum target); +typedef GLboolean (GLAPIENTRY * PFNGLISNAMEDBUFFERRESIDENTNVPROC) (GLuint buffer); +typedef void (GLAPIENTRY * PFNGLMAKEBUFFERNONRESIDENTNVPROC) (GLenum target); +typedef void (GLAPIENTRY * PFNGLMAKEBUFFERRESIDENTNVPROC) (GLenum target, GLenum access); +typedef void (GLAPIENTRY * PFNGLMAKENAMEDBUFFERNONRESIDENTNVPROC) (GLuint buffer); +typedef void (GLAPIENTRY * PFNGLMAKENAMEDBUFFERRESIDENTNVPROC) (GLuint buffer, GLenum access); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMUI64NVPROC) (GLuint program, GLint location, GLuint64EXT value); +typedef void (GLAPIENTRY * PFNGLPROGRAMUNIFORMUI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT* value); +typedef void (GLAPIENTRY * PFNGLUNIFORMUI64NVPROC) (GLint location, GLuint64EXT value); +typedef void (GLAPIENTRY * PFNGLUNIFORMUI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT* value); + +#define glGetBufferParameterui64vNV GLEW_GET_FUN(__glewGetBufferParameterui64vNV) +#define glGetIntegerui64vNV GLEW_GET_FUN(__glewGetIntegerui64vNV) +#define glGetNamedBufferParameterui64vNV GLEW_GET_FUN(__glewGetNamedBufferParameterui64vNV) +#define glIsBufferResidentNV GLEW_GET_FUN(__glewIsBufferResidentNV) +#define glIsNamedBufferResidentNV GLEW_GET_FUN(__glewIsNamedBufferResidentNV) +#define glMakeBufferNonResidentNV GLEW_GET_FUN(__glewMakeBufferNonResidentNV) +#define glMakeBufferResidentNV GLEW_GET_FUN(__glewMakeBufferResidentNV) +#define glMakeNamedBufferNonResidentNV GLEW_GET_FUN(__glewMakeNamedBufferNonResidentNV) +#define glMakeNamedBufferResidentNV GLEW_GET_FUN(__glewMakeNamedBufferResidentNV) +#define glProgramUniformui64NV GLEW_GET_FUN(__glewProgramUniformui64NV) +#define glProgramUniformui64vNV GLEW_GET_FUN(__glewProgramUniformui64vNV) +#define glUniformui64NV GLEW_GET_FUN(__glewUniformui64NV) +#define glUniformui64vNV GLEW_GET_FUN(__glewUniformui64vNV) + +#define GLEW_NV_shader_buffer_load GLEW_GET_VAR(__GLEW_NV_shader_buffer_load) + +#endif /* GL_NV_shader_buffer_load */ + +/* ---------------- GL_NV_shader_noperspective_interpolation --------------- */ + +#ifndef GL_NV_shader_noperspective_interpolation +#define GL_NV_shader_noperspective_interpolation 1 + +#define GLEW_NV_shader_noperspective_interpolation GLEW_GET_VAR(__GLEW_NV_shader_noperspective_interpolation) + +#endif /* GL_NV_shader_noperspective_interpolation */ + +/* ------------------- GL_NV_shader_storage_buffer_object ------------------ */ + +#ifndef GL_NV_shader_storage_buffer_object +#define GL_NV_shader_storage_buffer_object 1 + +#define GLEW_NV_shader_storage_buffer_object GLEW_GET_VAR(__GLEW_NV_shader_storage_buffer_object) + +#endif /* GL_NV_shader_storage_buffer_object */ + +/* ----------------------- GL_NV_shader_thread_group ----------------------- */ + +#ifndef GL_NV_shader_thread_group +#define GL_NV_shader_thread_group 1 + +#define GL_WARP_SIZE_NV 0x9339 +#define GL_WARPS_PER_SM_NV 0x933A +#define GL_SM_COUNT_NV 0x933B + +#define GLEW_NV_shader_thread_group GLEW_GET_VAR(__GLEW_NV_shader_thread_group) + +#endif /* GL_NV_shader_thread_group */ + +/* ---------------------- GL_NV_shader_thread_shuffle ---------------------- */ + +#ifndef GL_NV_shader_thread_shuffle +#define GL_NV_shader_thread_shuffle 1 + +#define GLEW_NV_shader_thread_shuffle GLEW_GET_VAR(__GLEW_NV_shader_thread_shuffle) + +#endif /* GL_NV_shader_thread_shuffle */ + +/* ---------------------- GL_NV_shadow_samplers_array ---------------------- */ + +#ifndef GL_NV_shadow_samplers_array +#define GL_NV_shadow_samplers_array 1 + +#define GL_SAMPLER_2D_ARRAY_SHADOW_NV 0x8DC4 + +#define GLEW_NV_shadow_samplers_array GLEW_GET_VAR(__GLEW_NV_shadow_samplers_array) + +#endif /* GL_NV_shadow_samplers_array */ + +/* ----------------------- GL_NV_shadow_samplers_cube ---------------------- */ + +#ifndef GL_NV_shadow_samplers_cube +#define GL_NV_shadow_samplers_cube 1 + +#define GL_SAMPLER_CUBE_SHADOW_NV 0x8DC5 + +#define GLEW_NV_shadow_samplers_cube GLEW_GET_VAR(__GLEW_NV_shadow_samplers_cube) + +#endif /* GL_NV_shadow_samplers_cube */ + +/* ---------------------- GL_NV_stereo_view_rendering ---------------------- */ + +#ifndef GL_NV_stereo_view_rendering +#define GL_NV_stereo_view_rendering 1 + +#define GLEW_NV_stereo_view_rendering GLEW_GET_VAR(__GLEW_NV_stereo_view_rendering) + +#endif /* GL_NV_stereo_view_rendering */ + +/* ---------------------- GL_NV_tessellation_program5 ---------------------- */ + +#ifndef GL_NV_tessellation_program5 +#define GL_NV_tessellation_program5 1 + +#define GL_MAX_PROGRAM_PATCH_ATTRIBS_NV 0x86D8 +#define GL_TESS_CONTROL_PROGRAM_NV 0x891E +#define GL_TESS_EVALUATION_PROGRAM_NV 0x891F +#define GL_TESS_CONTROL_PROGRAM_PARAMETER_BUFFER_NV 0x8C74 +#define GL_TESS_EVALUATION_PROGRAM_PARAMETER_BUFFER_NV 0x8C75 + +#define GLEW_NV_tessellation_program5 GLEW_GET_VAR(__GLEW_NV_tessellation_program5) + +#endif /* GL_NV_tessellation_program5 */ + +/* -------------------------- GL_NV_texgen_emboss -------------------------- */ + +#ifndef GL_NV_texgen_emboss +#define GL_NV_texgen_emboss 1 + +#define GL_EMBOSS_LIGHT_NV 0x855D +#define GL_EMBOSS_CONSTANT_NV 0x855E +#define GL_EMBOSS_MAP_NV 0x855F + +#define GLEW_NV_texgen_emboss GLEW_GET_VAR(__GLEW_NV_texgen_emboss) + +#endif /* GL_NV_texgen_emboss */ + +/* ------------------------ GL_NV_texgen_reflection ------------------------ */ + +#ifndef GL_NV_texgen_reflection +#define GL_NV_texgen_reflection 1 + +#define GL_NORMAL_MAP_NV 0x8511 +#define GL_REFLECTION_MAP_NV 0x8512 + +#define GLEW_NV_texgen_reflection GLEW_GET_VAR(__GLEW_NV_texgen_reflection) + +#endif /* GL_NV_texgen_reflection */ + +/* -------------------------- GL_NV_texture_array -------------------------- */ + +#ifndef GL_NV_texture_array +#define GL_NV_texture_array 1 + +#define GL_UNPACK_SKIP_IMAGES_NV 0x806D +#define GL_UNPACK_IMAGE_HEIGHT_NV 0x806E +#define GL_MAX_ARRAY_TEXTURE_LAYERS_NV 0x88FF +#define GL_TEXTURE_2D_ARRAY_NV 0x8C1A +#define GL_TEXTURE_BINDING_2D_ARRAY_NV 0x8C1D +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_NV 0x8CD4 +#define GL_SAMPLER_2D_ARRAY_NV 0x8DC1 + +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXIMAGE3DNVPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOMPRESSEDTEXSUBIMAGE3DNVPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (GLAPIENTRY * PFNGLCOPYTEXSUBIMAGE3DNVPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERTEXTURELAYERNVPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (GLAPIENTRY * PFNGLTEXIMAGE3DNVPROC) (GLenum target, GLint level, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (GLAPIENTRY * PFNGLTEXSUBIMAGE3DNVPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); + +#define glCompressedTexImage3DNV GLEW_GET_FUN(__glewCompressedTexImage3DNV) +#define glCompressedTexSubImage3DNV GLEW_GET_FUN(__glewCompressedTexSubImage3DNV) +#define glCopyTexSubImage3DNV GLEW_GET_FUN(__glewCopyTexSubImage3DNV) +#define glFramebufferTextureLayerNV GLEW_GET_FUN(__glewFramebufferTextureLayerNV) +#define glTexImage3DNV GLEW_GET_FUN(__glewTexImage3DNV) +#define glTexSubImage3DNV GLEW_GET_FUN(__glewTexSubImage3DNV) + +#define GLEW_NV_texture_array GLEW_GET_VAR(__GLEW_NV_texture_array) + +#endif /* GL_NV_texture_array */ + +/* ------------------------- GL_NV_texture_barrier ------------------------- */ + +#ifndef GL_NV_texture_barrier +#define GL_NV_texture_barrier 1 + +typedef void (GLAPIENTRY * PFNGLTEXTUREBARRIERNVPROC) (void); + +#define glTextureBarrierNV GLEW_GET_FUN(__glewTextureBarrierNV) + +#define GLEW_NV_texture_barrier GLEW_GET_VAR(__GLEW_NV_texture_barrier) + +#endif /* GL_NV_texture_barrier */ + +/* ----------------------- GL_NV_texture_border_clamp ---------------------- */ + +#ifndef GL_NV_texture_border_clamp +#define GL_NV_texture_border_clamp 1 + +#define GL_TEXTURE_BORDER_COLOR_NV 0x1004 +#define GL_CLAMP_TO_BORDER_NV 0x812D + +#define GLEW_NV_texture_border_clamp GLEW_GET_VAR(__GLEW_NV_texture_border_clamp) + +#endif /* GL_NV_texture_border_clamp */ + +/* --------------------- GL_NV_texture_compression_latc -------------------- */ + +#ifndef GL_NV_texture_compression_latc +#define GL_NV_texture_compression_latc 1 + +#define GL_COMPRESSED_LUMINANCE_LATC1_NV 0x8C70 +#define GL_COMPRESSED_SIGNED_LUMINANCE_LATC1_NV 0x8C71 +#define GL_COMPRESSED_LUMINANCE_ALPHA_LATC2_NV 0x8C72 +#define GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_NV 0x8C73 + +#define GLEW_NV_texture_compression_latc GLEW_GET_VAR(__GLEW_NV_texture_compression_latc) + +#endif /* GL_NV_texture_compression_latc */ + +/* --------------------- GL_NV_texture_compression_s3tc -------------------- */ + +#ifndef GL_NV_texture_compression_s3tc +#define GL_NV_texture_compression_s3tc 1 + +#define GL_COMPRESSED_RGB_S3TC_DXT1_NV 0x83F0 +#define GL_COMPRESSED_RGBA_S3TC_DXT1_NV 0x83F1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_NV 0x83F2 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_NV 0x83F3 + +#define GLEW_NV_texture_compression_s3tc GLEW_GET_VAR(__GLEW_NV_texture_compression_s3tc) + +#endif /* GL_NV_texture_compression_s3tc */ + +/* ----------------- GL_NV_texture_compression_s3tc_update ----------------- */ + +#ifndef GL_NV_texture_compression_s3tc_update +#define GL_NV_texture_compression_s3tc_update 1 + +#define GLEW_NV_texture_compression_s3tc_update GLEW_GET_VAR(__GLEW_NV_texture_compression_s3tc_update) + +#endif /* GL_NV_texture_compression_s3tc_update */ + +/* --------------------- GL_NV_texture_compression_vtc --------------------- */ + +#ifndef GL_NV_texture_compression_vtc +#define GL_NV_texture_compression_vtc 1 + +#define GLEW_NV_texture_compression_vtc GLEW_GET_VAR(__GLEW_NV_texture_compression_vtc) + +#endif /* GL_NV_texture_compression_vtc */ + +/* ----------------------- GL_NV_texture_env_combine4 ---------------------- */ + +#ifndef GL_NV_texture_env_combine4 +#define GL_NV_texture_env_combine4 1 + +#define GL_COMBINE4_NV 0x8503 +#define GL_SOURCE3_RGB_NV 0x8583 +#define GL_SOURCE3_ALPHA_NV 0x858B +#define GL_OPERAND3_RGB_NV 0x8593 +#define GL_OPERAND3_ALPHA_NV 0x859B + +#define GLEW_NV_texture_env_combine4 GLEW_GET_VAR(__GLEW_NV_texture_env_combine4) + +#endif /* GL_NV_texture_env_combine4 */ + +/* ---------------------- GL_NV_texture_expand_normal ---------------------- */ + +#ifndef GL_NV_texture_expand_normal +#define GL_NV_texture_expand_normal 1 + +#define GL_TEXTURE_UNSIGNED_REMAP_MODE_NV 0x888F + +#define GLEW_NV_texture_expand_normal GLEW_GET_VAR(__GLEW_NV_texture_expand_normal) + +#endif /* GL_NV_texture_expand_normal */ + +/* ----------------------- GL_NV_texture_multisample ----------------------- */ + +#ifndef GL_NV_texture_multisample +#define GL_NV_texture_multisample 1 + +#define GL_TEXTURE_COVERAGE_SAMPLES_NV 0x9045 +#define GL_TEXTURE_COLOR_SAMPLES_NV 0x9046 + +typedef void (GLAPIENTRY * PFNGLTEXIMAGE2DMULTISAMPLECOVERAGENVPROC) (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +typedef void (GLAPIENTRY * PFNGLTEXIMAGE3DMULTISAMPLECOVERAGENVPROC) (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +typedef void (GLAPIENTRY * PFNGLTEXTUREIMAGE2DMULTISAMPLECOVERAGENVPROC) (GLuint texture, GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +typedef void (GLAPIENTRY * PFNGLTEXTUREIMAGE2DMULTISAMPLENVPROC) (GLuint texture, GLenum target, GLsizei samples, GLint internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations); +typedef void (GLAPIENTRY * PFNGLTEXTUREIMAGE3DMULTISAMPLECOVERAGENVPROC) (GLuint texture, GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); +typedef void (GLAPIENTRY * PFNGLTEXTUREIMAGE3DMULTISAMPLENVPROC) (GLuint texture, GLenum target, GLsizei samples, GLint internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations); + +#define glTexImage2DMultisampleCoverageNV GLEW_GET_FUN(__glewTexImage2DMultisampleCoverageNV) +#define glTexImage3DMultisampleCoverageNV GLEW_GET_FUN(__glewTexImage3DMultisampleCoverageNV) +#define glTextureImage2DMultisampleCoverageNV GLEW_GET_FUN(__glewTextureImage2DMultisampleCoverageNV) +#define glTextureImage2DMultisampleNV GLEW_GET_FUN(__glewTextureImage2DMultisampleNV) +#define glTextureImage3DMultisampleCoverageNV GLEW_GET_FUN(__glewTextureImage3DMultisampleCoverageNV) +#define glTextureImage3DMultisampleNV GLEW_GET_FUN(__glewTextureImage3DMultisampleNV) + +#define GLEW_NV_texture_multisample GLEW_GET_VAR(__GLEW_NV_texture_multisample) + +#endif /* GL_NV_texture_multisample */ + +/* ---------------------- GL_NV_texture_npot_2D_mipmap --------------------- */ + +#ifndef GL_NV_texture_npot_2D_mipmap +#define GL_NV_texture_npot_2D_mipmap 1 + +#define GLEW_NV_texture_npot_2D_mipmap GLEW_GET_VAR(__GLEW_NV_texture_npot_2D_mipmap) + +#endif /* GL_NV_texture_npot_2D_mipmap */ + +/* ------------------------ GL_NV_texture_rectangle ------------------------ */ + +#ifndef GL_NV_texture_rectangle +#define GL_NV_texture_rectangle 1 + +#define GL_TEXTURE_RECTANGLE_NV 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE_NV 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE_NV 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE_NV 0x84F8 + +#define GLEW_NV_texture_rectangle GLEW_GET_VAR(__GLEW_NV_texture_rectangle) + +#endif /* GL_NV_texture_rectangle */ + +/* ------------------- GL_NV_texture_rectangle_compressed ------------------ */ + +#ifndef GL_NV_texture_rectangle_compressed +#define GL_NV_texture_rectangle_compressed 1 + +#define GLEW_NV_texture_rectangle_compressed GLEW_GET_VAR(__GLEW_NV_texture_rectangle_compressed) + +#endif /* GL_NV_texture_rectangle_compressed */ + +/* -------------------------- GL_NV_texture_shader ------------------------- */ + +#ifndef GL_NV_texture_shader +#define GL_NV_texture_shader 1 + +#define GL_OFFSET_TEXTURE_RECTANGLE_NV 0x864C +#define GL_OFFSET_TEXTURE_RECTANGLE_SCALE_NV 0x864D +#define GL_DOT_PRODUCT_TEXTURE_RECTANGLE_NV 0x864E +#define GL_RGBA_UNSIGNED_DOT_PRODUCT_MAPPING_NV 0x86D9 +#define GL_UNSIGNED_INT_S8_S8_8_8_NV 0x86DA +#define GL_UNSIGNED_INT_8_8_S8_S8_REV_NV 0x86DB +#define GL_DSDT_MAG_INTENSITY_NV 0x86DC +#define GL_SHADER_CONSISTENT_NV 0x86DD +#define GL_TEXTURE_SHADER_NV 0x86DE +#define GL_SHADER_OPERATION_NV 0x86DF +#define GL_CULL_MODES_NV 0x86E0 +#define GL_OFFSET_TEXTURE_2D_MATRIX_NV 0x86E1 +#define GL_OFFSET_TEXTURE_MATRIX_NV 0x86E1 +#define GL_OFFSET_TEXTURE_2D_SCALE_NV 0x86E2 +#define GL_OFFSET_TEXTURE_SCALE_NV 0x86E2 +#define GL_OFFSET_TEXTURE_2D_BIAS_NV 0x86E3 +#define GL_OFFSET_TEXTURE_BIAS_NV 0x86E3 +#define GL_PREVIOUS_TEXTURE_INPUT_NV 0x86E4 +#define GL_CONST_EYE_NV 0x86E5 +#define GL_PASS_THROUGH_NV 0x86E6 +#define GL_CULL_FRAGMENT_NV 0x86E7 +#define GL_OFFSET_TEXTURE_2D_NV 0x86E8 +#define GL_DEPENDENT_AR_TEXTURE_2D_NV 0x86E9 +#define GL_DEPENDENT_GB_TEXTURE_2D_NV 0x86EA +#define GL_DOT_PRODUCT_NV 0x86EC +#define GL_DOT_PRODUCT_DEPTH_REPLACE_NV 0x86ED +#define GL_DOT_PRODUCT_TEXTURE_2D_NV 0x86EE +#define GL_DOT_PRODUCT_TEXTURE_CUBE_MAP_NV 0x86F0 +#define GL_DOT_PRODUCT_DIFFUSE_CUBE_MAP_NV 0x86F1 +#define GL_DOT_PRODUCT_REFLECT_CUBE_MAP_NV 0x86F2 +#define GL_DOT_PRODUCT_CONST_EYE_REFLECT_CUBE_MAP_NV 0x86F3 +#define GL_HILO_NV 0x86F4 +#define GL_DSDT_NV 0x86F5 +#define GL_DSDT_MAG_NV 0x86F6 +#define GL_DSDT_MAG_VIB_NV 0x86F7 +#define GL_HILO16_NV 0x86F8 +#define GL_SIGNED_HILO_NV 0x86F9 +#define GL_SIGNED_HILO16_NV 0x86FA +#define GL_SIGNED_RGBA_NV 0x86FB +#define GL_SIGNED_RGBA8_NV 0x86FC +#define GL_SIGNED_RGB_NV 0x86FE +#define GL_SIGNED_RGB8_NV 0x86FF +#define GL_SIGNED_LUMINANCE_NV 0x8701 +#define GL_SIGNED_LUMINANCE8_NV 0x8702 +#define GL_SIGNED_LUMINANCE_ALPHA_NV 0x8703 +#define GL_SIGNED_LUMINANCE8_ALPHA8_NV 0x8704 +#define GL_SIGNED_ALPHA_NV 0x8705 +#define GL_SIGNED_ALPHA8_NV 0x8706 +#define GL_SIGNED_INTENSITY_NV 0x8707 +#define GL_SIGNED_INTENSITY8_NV 0x8708 +#define GL_DSDT8_NV 0x8709 +#define GL_DSDT8_MAG8_NV 0x870A +#define GL_DSDT8_MAG8_INTENSITY8_NV 0x870B +#define GL_SIGNED_RGB_UNSIGNED_ALPHA_NV 0x870C +#define GL_SIGNED_RGB8_UNSIGNED_ALPHA8_NV 0x870D +#define GL_HI_SCALE_NV 0x870E +#define GL_LO_SCALE_NV 0x870F +#define GL_DS_SCALE_NV 0x8710 +#define GL_DT_SCALE_NV 0x8711 +#define GL_MAGNITUDE_SCALE_NV 0x8712 +#define GL_VIBRANCE_SCALE_NV 0x8713 +#define GL_HI_BIAS_NV 0x8714 +#define GL_LO_BIAS_NV 0x8715 +#define GL_DS_BIAS_NV 0x8716 +#define GL_DT_BIAS_NV 0x8717 +#define GL_MAGNITUDE_BIAS_NV 0x8718 +#define GL_VIBRANCE_BIAS_NV 0x8719 +#define GL_TEXTURE_BORDER_VALUES_NV 0x871A +#define GL_TEXTURE_HI_SIZE_NV 0x871B +#define GL_TEXTURE_LO_SIZE_NV 0x871C +#define GL_TEXTURE_DS_SIZE_NV 0x871D +#define GL_TEXTURE_DT_SIZE_NV 0x871E +#define GL_TEXTURE_MAG_SIZE_NV 0x871F + +#define GLEW_NV_texture_shader GLEW_GET_VAR(__GLEW_NV_texture_shader) + +#endif /* GL_NV_texture_shader */ + +/* ------------------------- GL_NV_texture_shader2 ------------------------- */ + +#ifndef GL_NV_texture_shader2 +#define GL_NV_texture_shader2 1 + +#define GL_UNSIGNED_INT_S8_S8_8_8_NV 0x86DA +#define GL_UNSIGNED_INT_8_8_S8_S8_REV_NV 0x86DB +#define GL_DSDT_MAG_INTENSITY_NV 0x86DC +#define GL_DOT_PRODUCT_TEXTURE_3D_NV 0x86EF +#define GL_HILO_NV 0x86F4 +#define GL_DSDT_NV 0x86F5 +#define GL_DSDT_MAG_NV 0x86F6 +#define GL_DSDT_MAG_VIB_NV 0x86F7 +#define GL_HILO16_NV 0x86F8 +#define GL_SIGNED_HILO_NV 0x86F9 +#define GL_SIGNED_HILO16_NV 0x86FA +#define GL_SIGNED_RGBA_NV 0x86FB +#define GL_SIGNED_RGBA8_NV 0x86FC +#define GL_SIGNED_RGB_NV 0x86FE +#define GL_SIGNED_RGB8_NV 0x86FF +#define GL_SIGNED_LUMINANCE_NV 0x8701 +#define GL_SIGNED_LUMINANCE8_NV 0x8702 +#define GL_SIGNED_LUMINANCE_ALPHA_NV 0x8703 +#define GL_SIGNED_LUMINANCE8_ALPHA8_NV 0x8704 +#define GL_SIGNED_ALPHA_NV 0x8705 +#define GL_SIGNED_ALPHA8_NV 0x8706 +#define GL_SIGNED_INTENSITY_NV 0x8707 +#define GL_SIGNED_INTENSITY8_NV 0x8708 +#define GL_DSDT8_NV 0x8709 +#define GL_DSDT8_MAG8_NV 0x870A +#define GL_DSDT8_MAG8_INTENSITY8_NV 0x870B +#define GL_SIGNED_RGB_UNSIGNED_ALPHA_NV 0x870C +#define GL_SIGNED_RGB8_UNSIGNED_ALPHA8_NV 0x870D + +#define GLEW_NV_texture_shader2 GLEW_GET_VAR(__GLEW_NV_texture_shader2) + +#endif /* GL_NV_texture_shader2 */ + +/* ------------------------- GL_NV_texture_shader3 ------------------------- */ + +#ifndef GL_NV_texture_shader3 +#define GL_NV_texture_shader3 1 + +#define GL_OFFSET_PROJECTIVE_TEXTURE_2D_NV 0x8850 +#define GL_OFFSET_PROJECTIVE_TEXTURE_2D_SCALE_NV 0x8851 +#define GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_NV 0x8852 +#define GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_SCALE_NV 0x8853 +#define GL_OFFSET_HILO_TEXTURE_2D_NV 0x8854 +#define GL_OFFSET_HILO_TEXTURE_RECTANGLE_NV 0x8855 +#define GL_OFFSET_HILO_PROJECTIVE_TEXTURE_2D_NV 0x8856 +#define GL_OFFSET_HILO_PROJECTIVE_TEXTURE_RECTANGLE_NV 0x8857 +#define GL_DEPENDENT_HILO_TEXTURE_2D_NV 0x8858 +#define GL_DEPENDENT_RGB_TEXTURE_3D_NV 0x8859 +#define GL_DEPENDENT_RGB_TEXTURE_CUBE_MAP_NV 0x885A +#define GL_DOT_PRODUCT_PASS_THROUGH_NV 0x885B +#define GL_DOT_PRODUCT_TEXTURE_1D_NV 0x885C +#define GL_DOT_PRODUCT_AFFINE_DEPTH_REPLACE_NV 0x885D +#define GL_HILO8_NV 0x885E +#define GL_SIGNED_HILO8_NV 0x885F +#define GL_FORCE_BLUE_TO_ONE_NV 0x8860 + +#define GLEW_NV_texture_shader3 GLEW_GET_VAR(__GLEW_NV_texture_shader3) + +#endif /* GL_NV_texture_shader3 */ + +/* ------------------------ GL_NV_transform_feedback ----------------------- */ + +#ifndef GL_NV_transform_feedback +#define GL_NV_transform_feedback 1 + +#define GL_BACK_PRIMARY_COLOR_NV 0x8C77 +#define GL_BACK_SECONDARY_COLOR_NV 0x8C78 +#define GL_TEXTURE_COORD_NV 0x8C79 +#define GL_CLIP_DISTANCE_NV 0x8C7A +#define GL_VERTEX_ID_NV 0x8C7B +#define GL_PRIMITIVE_ID_NV 0x8C7C +#define GL_GENERIC_ATTRIB_NV 0x8C7D +#define GL_TRANSFORM_FEEDBACK_ATTRIBS_NV 0x8C7E +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE_NV 0x8C7F +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_NV 0x8C80 +#define GL_ACTIVE_VARYINGS_NV 0x8C81 +#define GL_ACTIVE_VARYING_MAX_LENGTH_NV 0x8C82 +#define GL_TRANSFORM_FEEDBACK_VARYINGS_NV 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_START_NV 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_NV 0x8C85 +#define GL_TRANSFORM_FEEDBACK_RECORD_NV 0x8C86 +#define GL_PRIMITIVES_GENERATED_NV 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_NV 0x8C88 +#define GL_RASTERIZER_DISCARD_NV 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_NV 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_NV 0x8C8B +#define GL_INTERLEAVED_ATTRIBS_NV 0x8C8C +#define GL_SEPARATE_ATTRIBS_NV 0x8C8D +#define GL_TRANSFORM_FEEDBACK_BUFFER_NV 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_NV 0x8C8F + +typedef void (GLAPIENTRY * PFNGLACTIVEVARYINGNVPROC) (GLuint program, const GLchar *name); +typedef void (GLAPIENTRY * PFNGLBEGINTRANSFORMFEEDBACKNVPROC) (GLenum primitiveMode); +typedef void (GLAPIENTRY * PFNGLBINDBUFFERBASENVPROC) (GLenum target, GLuint index, GLuint buffer); +typedef void (GLAPIENTRY * PFNGLBINDBUFFEROFFSETNVPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset); +typedef void (GLAPIENTRY * PFNGLBINDBUFFERRANGENVPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (GLAPIENTRY * PFNGLENDTRANSFORMFEEDBACKNVPROC) (void); +typedef void (GLAPIENTRY * PFNGLGETACTIVEVARYINGNVPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +typedef void (GLAPIENTRY * PFNGLGETTRANSFORMFEEDBACKVARYINGNVPROC) (GLuint program, GLuint index, GLint *location); +typedef GLint (GLAPIENTRY * PFNGLGETVARYINGLOCATIONNVPROC) (GLuint program, const GLchar *name); +typedef void (GLAPIENTRY * PFNGLTRANSFORMFEEDBACKATTRIBSNVPROC) (GLuint count, const GLint *attribs, GLenum bufferMode); +typedef void (GLAPIENTRY * PFNGLTRANSFORMFEEDBACKVARYINGSNVPROC) (GLuint program, GLsizei count, const GLint *locations, GLenum bufferMode); + +#define glActiveVaryingNV GLEW_GET_FUN(__glewActiveVaryingNV) +#define glBeginTransformFeedbackNV GLEW_GET_FUN(__glewBeginTransformFeedbackNV) +#define glBindBufferBaseNV GLEW_GET_FUN(__glewBindBufferBaseNV) +#define glBindBufferOffsetNV GLEW_GET_FUN(__glewBindBufferOffsetNV) +#define glBindBufferRangeNV GLEW_GET_FUN(__glewBindBufferRangeNV) +#define glEndTransformFeedbackNV GLEW_GET_FUN(__glewEndTransformFeedbackNV) +#define glGetActiveVaryingNV GLEW_GET_FUN(__glewGetActiveVaryingNV) +#define glGetTransformFeedbackVaryingNV GLEW_GET_FUN(__glewGetTransformFeedbackVaryingNV) +#define glGetVaryingLocationNV GLEW_GET_FUN(__glewGetVaryingLocationNV) +#define glTransformFeedbackAttribsNV GLEW_GET_FUN(__glewTransformFeedbackAttribsNV) +#define glTransformFeedbackVaryingsNV GLEW_GET_FUN(__glewTransformFeedbackVaryingsNV) + +#define GLEW_NV_transform_feedback GLEW_GET_VAR(__GLEW_NV_transform_feedback) + +#endif /* GL_NV_transform_feedback */ + +/* ----------------------- GL_NV_transform_feedback2 ----------------------- */ + +#ifndef GL_NV_transform_feedback2 +#define GL_NV_transform_feedback2 1 + +#define GL_TRANSFORM_FEEDBACK_NV 0x8E22 +#define GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED_NV 0x8E23 +#define GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE_NV 0x8E24 +#define GL_TRANSFORM_FEEDBACK_BINDING_NV 0x8E25 + +typedef void (GLAPIENTRY * PFNGLBINDTRANSFORMFEEDBACKNVPROC) (GLenum target, GLuint id); +typedef void (GLAPIENTRY * PFNGLDELETETRANSFORMFEEDBACKSNVPROC) (GLsizei n, const GLuint* ids); +typedef void (GLAPIENTRY * PFNGLDRAWTRANSFORMFEEDBACKNVPROC) (GLenum mode, GLuint id); +typedef void (GLAPIENTRY * PFNGLGENTRANSFORMFEEDBACKSNVPROC) (GLsizei n, GLuint* ids); +typedef GLboolean (GLAPIENTRY * PFNGLISTRANSFORMFEEDBACKNVPROC) (GLuint id); +typedef void (GLAPIENTRY * PFNGLPAUSETRANSFORMFEEDBACKNVPROC) (void); +typedef void (GLAPIENTRY * PFNGLRESUMETRANSFORMFEEDBACKNVPROC) (void); + +#define glBindTransformFeedbackNV GLEW_GET_FUN(__glewBindTransformFeedbackNV) +#define glDeleteTransformFeedbacksNV GLEW_GET_FUN(__glewDeleteTransformFeedbacksNV) +#define glDrawTransformFeedbackNV GLEW_GET_FUN(__glewDrawTransformFeedbackNV) +#define glGenTransformFeedbacksNV GLEW_GET_FUN(__glewGenTransformFeedbacksNV) +#define glIsTransformFeedbackNV GLEW_GET_FUN(__glewIsTransformFeedbackNV) +#define glPauseTransformFeedbackNV GLEW_GET_FUN(__glewPauseTransformFeedbackNV) +#define glResumeTransformFeedbackNV GLEW_GET_FUN(__glewResumeTransformFeedbackNV) + +#define GLEW_NV_transform_feedback2 GLEW_GET_VAR(__GLEW_NV_transform_feedback2) + +#endif /* GL_NV_transform_feedback2 */ + +/* ------------------ GL_NV_uniform_buffer_unified_memory ------------------ */ + +#ifndef GL_NV_uniform_buffer_unified_memory +#define GL_NV_uniform_buffer_unified_memory 1 + +#define GL_UNIFORM_BUFFER_UNIFIED_NV 0x936E +#define GL_UNIFORM_BUFFER_ADDRESS_NV 0x936F +#define GL_UNIFORM_BUFFER_LENGTH_NV 0x9370 + +#define GLEW_NV_uniform_buffer_unified_memory GLEW_GET_VAR(__GLEW_NV_uniform_buffer_unified_memory) + +#endif /* GL_NV_uniform_buffer_unified_memory */ + +/* -------------------------- GL_NV_vdpau_interop -------------------------- */ + +#ifndef GL_NV_vdpau_interop +#define GL_NV_vdpau_interop 1 + +#define GL_SURFACE_STATE_NV 0x86EB +#define GL_SURFACE_REGISTERED_NV 0x86FD +#define GL_SURFACE_MAPPED_NV 0x8700 +#define GL_WRITE_DISCARD_NV 0x88BE + +typedef GLintptr GLvdpauSurfaceNV; + +typedef void (GLAPIENTRY * PFNGLVDPAUFININVPROC) (void); +typedef void (GLAPIENTRY * PFNGLVDPAUGETSURFACEIVNVPROC) (GLvdpauSurfaceNV surface, GLenum pname, GLsizei bufSize, GLsizei* length, GLint *values); +typedef void (GLAPIENTRY * PFNGLVDPAUINITNVPROC) (const void* vdpDevice, const void*getProcAddress); +typedef void (GLAPIENTRY * PFNGLVDPAUISSURFACENVPROC) (GLvdpauSurfaceNV surface); +typedef void (GLAPIENTRY * PFNGLVDPAUMAPSURFACESNVPROC) (GLsizei numSurfaces, const GLvdpauSurfaceNV* surfaces); +typedef GLvdpauSurfaceNV (GLAPIENTRY * PFNGLVDPAUREGISTEROUTPUTSURFACENVPROC) (const void* vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +typedef GLvdpauSurfaceNV (GLAPIENTRY * PFNGLVDPAUREGISTERVIDEOSURFACENVPROC) (const void* vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); +typedef void (GLAPIENTRY * PFNGLVDPAUSURFACEACCESSNVPROC) (GLvdpauSurfaceNV surface, GLenum access); +typedef void (GLAPIENTRY * PFNGLVDPAUUNMAPSURFACESNVPROC) (GLsizei numSurface, const GLvdpauSurfaceNV* surfaces); +typedef void (GLAPIENTRY * PFNGLVDPAUUNREGISTERSURFACENVPROC) (GLvdpauSurfaceNV surface); + +#define glVDPAUFiniNV GLEW_GET_FUN(__glewVDPAUFiniNV) +#define glVDPAUGetSurfaceivNV GLEW_GET_FUN(__glewVDPAUGetSurfaceivNV) +#define glVDPAUInitNV GLEW_GET_FUN(__glewVDPAUInitNV) +#define glVDPAUIsSurfaceNV GLEW_GET_FUN(__glewVDPAUIsSurfaceNV) +#define glVDPAUMapSurfacesNV GLEW_GET_FUN(__glewVDPAUMapSurfacesNV) +#define glVDPAURegisterOutputSurfaceNV GLEW_GET_FUN(__glewVDPAURegisterOutputSurfaceNV) +#define glVDPAURegisterVideoSurfaceNV GLEW_GET_FUN(__glewVDPAURegisterVideoSurfaceNV) +#define glVDPAUSurfaceAccessNV GLEW_GET_FUN(__glewVDPAUSurfaceAccessNV) +#define glVDPAUUnmapSurfacesNV GLEW_GET_FUN(__glewVDPAUUnmapSurfacesNV) +#define glVDPAUUnregisterSurfaceNV GLEW_GET_FUN(__glewVDPAUUnregisterSurfaceNV) + +#define GLEW_NV_vdpau_interop GLEW_GET_VAR(__GLEW_NV_vdpau_interop) + +#endif /* GL_NV_vdpau_interop */ + +/* ------------------------ GL_NV_vertex_array_range ----------------------- */ + +#ifndef GL_NV_vertex_array_range +#define GL_NV_vertex_array_range 1 + +#define GL_VERTEX_ARRAY_RANGE_NV 0x851D +#define GL_VERTEX_ARRAY_RANGE_LENGTH_NV 0x851E +#define GL_VERTEX_ARRAY_RANGE_VALID_NV 0x851F +#define GL_MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV 0x8520 +#define GL_VERTEX_ARRAY_RANGE_POINTER_NV 0x8521 + +typedef void (GLAPIENTRY * PFNGLFLUSHVERTEXARRAYRANGENVPROC) (void); +typedef void (GLAPIENTRY * PFNGLVERTEXARRAYRANGENVPROC) (GLsizei length, void *pointer); + +#define glFlushVertexArrayRangeNV GLEW_GET_FUN(__glewFlushVertexArrayRangeNV) +#define glVertexArrayRangeNV GLEW_GET_FUN(__glewVertexArrayRangeNV) + +#define GLEW_NV_vertex_array_range GLEW_GET_VAR(__GLEW_NV_vertex_array_range) + +#endif /* GL_NV_vertex_array_range */ + +/* ----------------------- GL_NV_vertex_array_range2 ----------------------- */ + +#ifndef GL_NV_vertex_array_range2 +#define GL_NV_vertex_array_range2 1 + +#define GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV 0x8533 + +#define GLEW_NV_vertex_array_range2 GLEW_GET_VAR(__GLEW_NV_vertex_array_range2) + +#endif /* GL_NV_vertex_array_range2 */ + +/* ------------------- GL_NV_vertex_attrib_integer_64bit ------------------- */ + +#ifndef GL_NV_vertex_attrib_integer_64bit +#define GL_NV_vertex_attrib_integer_64bit 1 + +#define GL_INT64_NV 0x140E +#define GL_UNSIGNED_INT64_NV 0x140F + +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBLI64VNVPROC) (GLuint index, GLenum pname, GLint64EXT* params); +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBLUI64VNVPROC) (GLuint index, GLenum pname, GLuint64EXT* params); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL1I64NVPROC) (GLuint index, GLint64EXT x); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL1I64VNVPROC) (GLuint index, const GLint64EXT* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL1UI64NVPROC) (GLuint index, GLuint64EXT x); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL1UI64VNVPROC) (GLuint index, const GLuint64EXT* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL2I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL2I64VNVPROC) (GLuint index, const GLint64EXT* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL2UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL2UI64VNVPROC) (GLuint index, const GLuint64EXT* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL3I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL3I64VNVPROC) (GLuint index, const GLint64EXT* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL3UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL3UI64VNVPROC) (GLuint index, const GLuint64EXT* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL4I64NVPROC) (GLuint index, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL4I64VNVPROC) (GLuint index, const GLint64EXT* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL4UI64NVPROC) (GLuint index, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBL4UI64VNVPROC) (GLuint index, const GLuint64EXT* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBLFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLsizei stride); + +#define glGetVertexAttribLi64vNV GLEW_GET_FUN(__glewGetVertexAttribLi64vNV) +#define glGetVertexAttribLui64vNV GLEW_GET_FUN(__glewGetVertexAttribLui64vNV) +#define glVertexAttribL1i64NV GLEW_GET_FUN(__glewVertexAttribL1i64NV) +#define glVertexAttribL1i64vNV GLEW_GET_FUN(__glewVertexAttribL1i64vNV) +#define glVertexAttribL1ui64NV GLEW_GET_FUN(__glewVertexAttribL1ui64NV) +#define glVertexAttribL1ui64vNV GLEW_GET_FUN(__glewVertexAttribL1ui64vNV) +#define glVertexAttribL2i64NV GLEW_GET_FUN(__glewVertexAttribL2i64NV) +#define glVertexAttribL2i64vNV GLEW_GET_FUN(__glewVertexAttribL2i64vNV) +#define glVertexAttribL2ui64NV GLEW_GET_FUN(__glewVertexAttribL2ui64NV) +#define glVertexAttribL2ui64vNV GLEW_GET_FUN(__glewVertexAttribL2ui64vNV) +#define glVertexAttribL3i64NV GLEW_GET_FUN(__glewVertexAttribL3i64NV) +#define glVertexAttribL3i64vNV GLEW_GET_FUN(__glewVertexAttribL3i64vNV) +#define glVertexAttribL3ui64NV GLEW_GET_FUN(__glewVertexAttribL3ui64NV) +#define glVertexAttribL3ui64vNV GLEW_GET_FUN(__glewVertexAttribL3ui64vNV) +#define glVertexAttribL4i64NV GLEW_GET_FUN(__glewVertexAttribL4i64NV) +#define glVertexAttribL4i64vNV GLEW_GET_FUN(__glewVertexAttribL4i64vNV) +#define glVertexAttribL4ui64NV GLEW_GET_FUN(__glewVertexAttribL4ui64NV) +#define glVertexAttribL4ui64vNV GLEW_GET_FUN(__glewVertexAttribL4ui64vNV) +#define glVertexAttribLFormatNV GLEW_GET_FUN(__glewVertexAttribLFormatNV) + +#define GLEW_NV_vertex_attrib_integer_64bit GLEW_GET_VAR(__GLEW_NV_vertex_attrib_integer_64bit) + +#endif /* GL_NV_vertex_attrib_integer_64bit */ + +/* ------------------- GL_NV_vertex_buffer_unified_memory ------------------ */ + +#ifndef GL_NV_vertex_buffer_unified_memory +#define GL_NV_vertex_buffer_unified_memory 1 + +#define GL_VERTEX_ATTRIB_ARRAY_UNIFIED_NV 0x8F1E +#define GL_ELEMENT_ARRAY_UNIFIED_NV 0x8F1F +#define GL_VERTEX_ATTRIB_ARRAY_ADDRESS_NV 0x8F20 +#define GL_VERTEX_ARRAY_ADDRESS_NV 0x8F21 +#define GL_NORMAL_ARRAY_ADDRESS_NV 0x8F22 +#define GL_COLOR_ARRAY_ADDRESS_NV 0x8F23 +#define GL_INDEX_ARRAY_ADDRESS_NV 0x8F24 +#define GL_TEXTURE_COORD_ARRAY_ADDRESS_NV 0x8F25 +#define GL_EDGE_FLAG_ARRAY_ADDRESS_NV 0x8F26 +#define GL_SECONDARY_COLOR_ARRAY_ADDRESS_NV 0x8F27 +#define GL_FOG_COORD_ARRAY_ADDRESS_NV 0x8F28 +#define GL_ELEMENT_ARRAY_ADDRESS_NV 0x8F29 +#define GL_VERTEX_ATTRIB_ARRAY_LENGTH_NV 0x8F2A +#define GL_VERTEX_ARRAY_LENGTH_NV 0x8F2B +#define GL_NORMAL_ARRAY_LENGTH_NV 0x8F2C +#define GL_COLOR_ARRAY_LENGTH_NV 0x8F2D +#define GL_INDEX_ARRAY_LENGTH_NV 0x8F2E +#define GL_TEXTURE_COORD_ARRAY_LENGTH_NV 0x8F2F +#define GL_EDGE_FLAG_ARRAY_LENGTH_NV 0x8F30 +#define GL_SECONDARY_COLOR_ARRAY_LENGTH_NV 0x8F31 +#define GL_FOG_COORD_ARRAY_LENGTH_NV 0x8F32 +#define GL_ELEMENT_ARRAY_LENGTH_NV 0x8F33 +#define GL_DRAW_INDIRECT_UNIFIED_NV 0x8F40 +#define GL_DRAW_INDIRECT_ADDRESS_NV 0x8F41 +#define GL_DRAW_INDIRECT_LENGTH_NV 0x8F42 + +typedef void (GLAPIENTRY * PFNGLBUFFERADDRESSRANGENVPROC) (GLenum pname, GLuint index, GLuint64EXT address, GLsizeiptr length); +typedef void (GLAPIENTRY * PFNGLCOLORFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (GLAPIENTRY * PFNGLEDGEFLAGFORMATNVPROC) (GLsizei stride); +typedef void (GLAPIENTRY * PFNGLFOGCOORDFORMATNVPROC) (GLenum type, GLsizei stride); +typedef void (GLAPIENTRY * PFNGLGETINTEGERUI64I_VNVPROC) (GLenum value, GLuint index, GLuint64EXT result[]); +typedef void (GLAPIENTRY * PFNGLINDEXFORMATNVPROC) (GLenum type, GLsizei stride); +typedef void (GLAPIENTRY * PFNGLNORMALFORMATNVPROC) (GLenum type, GLsizei stride); +typedef void (GLAPIENTRY * PFNGLSECONDARYCOLORFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (GLAPIENTRY * PFNGLTEXCOORDFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBIFORMATNVPROC) (GLuint index, GLint size, GLenum type, GLsizei stride); +typedef void (GLAPIENTRY * PFNGLVERTEXFORMATNVPROC) (GLint size, GLenum type, GLsizei stride); + +#define glBufferAddressRangeNV GLEW_GET_FUN(__glewBufferAddressRangeNV) +#define glColorFormatNV GLEW_GET_FUN(__glewColorFormatNV) +#define glEdgeFlagFormatNV GLEW_GET_FUN(__glewEdgeFlagFormatNV) +#define glFogCoordFormatNV GLEW_GET_FUN(__glewFogCoordFormatNV) +#define glGetIntegerui64i_vNV GLEW_GET_FUN(__glewGetIntegerui64i_vNV) +#define glIndexFormatNV GLEW_GET_FUN(__glewIndexFormatNV) +#define glNormalFormatNV GLEW_GET_FUN(__glewNormalFormatNV) +#define glSecondaryColorFormatNV GLEW_GET_FUN(__glewSecondaryColorFormatNV) +#define glTexCoordFormatNV GLEW_GET_FUN(__glewTexCoordFormatNV) +#define glVertexAttribFormatNV GLEW_GET_FUN(__glewVertexAttribFormatNV) +#define glVertexAttribIFormatNV GLEW_GET_FUN(__glewVertexAttribIFormatNV) +#define glVertexFormatNV GLEW_GET_FUN(__glewVertexFormatNV) + +#define GLEW_NV_vertex_buffer_unified_memory GLEW_GET_VAR(__GLEW_NV_vertex_buffer_unified_memory) + +#endif /* GL_NV_vertex_buffer_unified_memory */ + +/* -------------------------- GL_NV_vertex_program ------------------------- */ + +#ifndef GL_NV_vertex_program +#define GL_NV_vertex_program 1 + +#define GL_VERTEX_PROGRAM_NV 0x8620 +#define GL_VERTEX_STATE_PROGRAM_NV 0x8621 +#define GL_ATTRIB_ARRAY_SIZE_NV 0x8623 +#define GL_ATTRIB_ARRAY_STRIDE_NV 0x8624 +#define GL_ATTRIB_ARRAY_TYPE_NV 0x8625 +#define GL_CURRENT_ATTRIB_NV 0x8626 +#define GL_PROGRAM_LENGTH_NV 0x8627 +#define GL_PROGRAM_STRING_NV 0x8628 +#define GL_MODELVIEW_PROJECTION_NV 0x8629 +#define GL_IDENTITY_NV 0x862A +#define GL_INVERSE_NV 0x862B +#define GL_TRANSPOSE_NV 0x862C +#define GL_INVERSE_TRANSPOSE_NV 0x862D +#define GL_MAX_TRACK_MATRIX_STACK_DEPTH_NV 0x862E +#define GL_MAX_TRACK_MATRICES_NV 0x862F +#define GL_MATRIX0_NV 0x8630 +#define GL_MATRIX1_NV 0x8631 +#define GL_MATRIX2_NV 0x8632 +#define GL_MATRIX3_NV 0x8633 +#define GL_MATRIX4_NV 0x8634 +#define GL_MATRIX5_NV 0x8635 +#define GL_MATRIX6_NV 0x8636 +#define GL_MATRIX7_NV 0x8637 +#define GL_CURRENT_MATRIX_STACK_DEPTH_NV 0x8640 +#define GL_CURRENT_MATRIX_NV 0x8641 +#define GL_VERTEX_PROGRAM_POINT_SIZE_NV 0x8642 +#define GL_VERTEX_PROGRAM_TWO_SIDE_NV 0x8643 +#define GL_PROGRAM_PARAMETER_NV 0x8644 +#define GL_ATTRIB_ARRAY_POINTER_NV 0x8645 +#define GL_PROGRAM_TARGET_NV 0x8646 +#define GL_PROGRAM_RESIDENT_NV 0x8647 +#define GL_TRACK_MATRIX_NV 0x8648 +#define GL_TRACK_MATRIX_TRANSFORM_NV 0x8649 +#define GL_VERTEX_PROGRAM_BINDING_NV 0x864A +#define GL_PROGRAM_ERROR_POSITION_NV 0x864B +#define GL_VERTEX_ATTRIB_ARRAY0_NV 0x8650 +#define GL_VERTEX_ATTRIB_ARRAY1_NV 0x8651 +#define GL_VERTEX_ATTRIB_ARRAY2_NV 0x8652 +#define GL_VERTEX_ATTRIB_ARRAY3_NV 0x8653 +#define GL_VERTEX_ATTRIB_ARRAY4_NV 0x8654 +#define GL_VERTEX_ATTRIB_ARRAY5_NV 0x8655 +#define GL_VERTEX_ATTRIB_ARRAY6_NV 0x8656 +#define GL_VERTEX_ATTRIB_ARRAY7_NV 0x8657 +#define GL_VERTEX_ATTRIB_ARRAY8_NV 0x8658 +#define GL_VERTEX_ATTRIB_ARRAY9_NV 0x8659 +#define GL_VERTEX_ATTRIB_ARRAY10_NV 0x865A +#define GL_VERTEX_ATTRIB_ARRAY11_NV 0x865B +#define GL_VERTEX_ATTRIB_ARRAY12_NV 0x865C +#define GL_VERTEX_ATTRIB_ARRAY13_NV 0x865D +#define GL_VERTEX_ATTRIB_ARRAY14_NV 0x865E +#define GL_VERTEX_ATTRIB_ARRAY15_NV 0x865F +#define GL_MAP1_VERTEX_ATTRIB0_4_NV 0x8660 +#define GL_MAP1_VERTEX_ATTRIB1_4_NV 0x8661 +#define GL_MAP1_VERTEX_ATTRIB2_4_NV 0x8662 +#define GL_MAP1_VERTEX_ATTRIB3_4_NV 0x8663 +#define GL_MAP1_VERTEX_ATTRIB4_4_NV 0x8664 +#define GL_MAP1_VERTEX_ATTRIB5_4_NV 0x8665 +#define GL_MAP1_VERTEX_ATTRIB6_4_NV 0x8666 +#define GL_MAP1_VERTEX_ATTRIB7_4_NV 0x8667 +#define GL_MAP1_VERTEX_ATTRIB8_4_NV 0x8668 +#define GL_MAP1_VERTEX_ATTRIB9_4_NV 0x8669 +#define GL_MAP1_VERTEX_ATTRIB10_4_NV 0x866A +#define GL_MAP1_VERTEX_ATTRIB11_4_NV 0x866B +#define GL_MAP1_VERTEX_ATTRIB12_4_NV 0x866C +#define GL_MAP1_VERTEX_ATTRIB13_4_NV 0x866D +#define GL_MAP1_VERTEX_ATTRIB14_4_NV 0x866E +#define GL_MAP1_VERTEX_ATTRIB15_4_NV 0x866F +#define GL_MAP2_VERTEX_ATTRIB0_4_NV 0x8670 +#define GL_MAP2_VERTEX_ATTRIB1_4_NV 0x8671 +#define GL_MAP2_VERTEX_ATTRIB2_4_NV 0x8672 +#define GL_MAP2_VERTEX_ATTRIB3_4_NV 0x8673 +#define GL_MAP2_VERTEX_ATTRIB4_4_NV 0x8674 +#define GL_MAP2_VERTEX_ATTRIB5_4_NV 0x8675 +#define GL_MAP2_VERTEX_ATTRIB6_4_NV 0x8676 +#define GL_MAP2_VERTEX_ATTRIB7_4_NV 0x8677 +#define GL_MAP2_VERTEX_ATTRIB8_4_NV 0x8678 +#define GL_MAP2_VERTEX_ATTRIB9_4_NV 0x8679 +#define GL_MAP2_VERTEX_ATTRIB10_4_NV 0x867A +#define GL_MAP2_VERTEX_ATTRIB11_4_NV 0x867B +#define GL_MAP2_VERTEX_ATTRIB12_4_NV 0x867C +#define GL_MAP2_VERTEX_ATTRIB13_4_NV 0x867D +#define GL_MAP2_VERTEX_ATTRIB14_4_NV 0x867E +#define GL_MAP2_VERTEX_ATTRIB15_4_NV 0x867F + +typedef GLboolean (GLAPIENTRY * PFNGLAREPROGRAMSRESIDENTNVPROC) (GLsizei n, const GLuint* ids, GLboolean *residences); +typedef void (GLAPIENTRY * PFNGLBINDPROGRAMNVPROC) (GLenum target, GLuint id); +typedef void (GLAPIENTRY * PFNGLDELETEPROGRAMSNVPROC) (GLsizei n, const GLuint* ids); +typedef void (GLAPIENTRY * PFNGLEXECUTEPROGRAMNVPROC) (GLenum target, GLuint id, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGENPROGRAMSNVPROC) (GLsizei n, GLuint* ids); +typedef void (GLAPIENTRY * PFNGLGETPROGRAMPARAMETERDVNVPROC) (GLenum target, GLuint index, GLenum pname, GLdouble* params); +typedef void (GLAPIENTRY * PFNGLGETPROGRAMPARAMETERFVNVPROC) (GLenum target, GLuint index, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETPROGRAMSTRINGNVPROC) (GLuint id, GLenum pname, GLubyte* program); +typedef void (GLAPIENTRY * PFNGLGETPROGRAMIVNVPROC) (GLuint id, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETTRACKMATRIXIVNVPROC) (GLenum target, GLuint address, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBPOINTERVNVPROC) (GLuint index, GLenum pname, void** pointer); +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBDVNVPROC) (GLuint index, GLenum pname, GLdouble* params); +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBFVNVPROC) (GLuint index, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETVERTEXATTRIBIVNVPROC) (GLuint index, GLenum pname, GLint* params); +typedef GLboolean (GLAPIENTRY * PFNGLISPROGRAMNVPROC) (GLuint id); +typedef void (GLAPIENTRY * PFNGLLOADPROGRAMNVPROC) (GLenum target, GLuint id, GLsizei len, const GLubyte* program); +typedef void (GLAPIENTRY * PFNGLPROGRAMPARAMETER4DNVPROC) (GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (GLAPIENTRY * PFNGLPROGRAMPARAMETER4DVNVPROC) (GLenum target, GLuint index, const GLdouble* params); +typedef void (GLAPIENTRY * PFNGLPROGRAMPARAMETER4FNVPROC) (GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (GLAPIENTRY * PFNGLPROGRAMPARAMETER4FVNVPROC) (GLenum target, GLuint index, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLPROGRAMPARAMETERS4DVNVPROC) (GLenum target, GLuint index, GLsizei num, const GLdouble* params); +typedef void (GLAPIENTRY * PFNGLPROGRAMPARAMETERS4FVNVPROC) (GLenum target, GLuint index, GLsizei num, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLREQUESTRESIDENTPROGRAMSNVPROC) (GLsizei n, GLuint* ids); +typedef void (GLAPIENTRY * PFNGLTRACKMATRIXNVPROC) (GLenum target, GLuint address, GLenum matrix, GLenum transform); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1DNVPROC) (GLuint index, GLdouble x); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1DVNVPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1FNVPROC) (GLuint index, GLfloat x); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1FVNVPROC) (GLuint index, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1SNVPROC) (GLuint index, GLshort x); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB1SVNVPROC) (GLuint index, const GLshort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2DNVPROC) (GLuint index, GLdouble x, GLdouble y); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2DVNVPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2FNVPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2FVNVPROC) (GLuint index, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2SNVPROC) (GLuint index, GLshort x, GLshort y); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB2SVNVPROC) (GLuint index, const GLshort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3DNVPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3DVNVPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3FNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3FVNVPROC) (GLuint index, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3SNVPROC) (GLuint index, GLshort x, GLshort y, GLshort z); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB3SVNVPROC) (GLuint index, const GLshort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4DNVPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4DVNVPROC) (GLuint index, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4FNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4FVNVPROC) (GLuint index, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4SNVPROC) (GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4SVNVPROC) (GLuint index, const GLshort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4UBNVPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIB4UBVNVPROC) (GLuint index, const GLubyte* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBPOINTERNVPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBS1DVNVPROC) (GLuint index, GLsizei n, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBS1FVNVPROC) (GLuint index, GLsizei n, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBS1SVNVPROC) (GLuint index, GLsizei n, const GLshort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBS2DVNVPROC) (GLuint index, GLsizei n, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBS2FVNVPROC) (GLuint index, GLsizei n, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBS2SVNVPROC) (GLuint index, GLsizei n, const GLshort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBS3DVNVPROC) (GLuint index, GLsizei n, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBS3FVNVPROC) (GLuint index, GLsizei n, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBS3SVNVPROC) (GLuint index, GLsizei n, const GLshort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBS4DVNVPROC) (GLuint index, GLsizei n, const GLdouble* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBS4FVNVPROC) (GLuint index, GLsizei n, const GLfloat* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBS4SVNVPROC) (GLuint index, GLsizei n, const GLshort* v); +typedef void (GLAPIENTRY * PFNGLVERTEXATTRIBS4UBVNVPROC) (GLuint index, GLsizei n, const GLubyte* v); + +#define glAreProgramsResidentNV GLEW_GET_FUN(__glewAreProgramsResidentNV) +#define glBindProgramNV GLEW_GET_FUN(__glewBindProgramNV) +#define glDeleteProgramsNV GLEW_GET_FUN(__glewDeleteProgramsNV) +#define glExecuteProgramNV GLEW_GET_FUN(__glewExecuteProgramNV) +#define glGenProgramsNV GLEW_GET_FUN(__glewGenProgramsNV) +#define glGetProgramParameterdvNV GLEW_GET_FUN(__glewGetProgramParameterdvNV) +#define glGetProgramParameterfvNV GLEW_GET_FUN(__glewGetProgramParameterfvNV) +#define glGetProgramStringNV GLEW_GET_FUN(__glewGetProgramStringNV) +#define glGetProgramivNV GLEW_GET_FUN(__glewGetProgramivNV) +#define glGetTrackMatrixivNV GLEW_GET_FUN(__glewGetTrackMatrixivNV) +#define glGetVertexAttribPointervNV GLEW_GET_FUN(__glewGetVertexAttribPointervNV) +#define glGetVertexAttribdvNV GLEW_GET_FUN(__glewGetVertexAttribdvNV) +#define glGetVertexAttribfvNV GLEW_GET_FUN(__glewGetVertexAttribfvNV) +#define glGetVertexAttribivNV GLEW_GET_FUN(__glewGetVertexAttribivNV) +#define glIsProgramNV GLEW_GET_FUN(__glewIsProgramNV) +#define glLoadProgramNV GLEW_GET_FUN(__glewLoadProgramNV) +#define glProgramParameter4dNV GLEW_GET_FUN(__glewProgramParameter4dNV) +#define glProgramParameter4dvNV GLEW_GET_FUN(__glewProgramParameter4dvNV) +#define glProgramParameter4fNV GLEW_GET_FUN(__glewProgramParameter4fNV) +#define glProgramParameter4fvNV GLEW_GET_FUN(__glewProgramParameter4fvNV) +#define glProgramParameters4dvNV GLEW_GET_FUN(__glewProgramParameters4dvNV) +#define glProgramParameters4fvNV GLEW_GET_FUN(__glewProgramParameters4fvNV) +#define glRequestResidentProgramsNV GLEW_GET_FUN(__glewRequestResidentProgramsNV) +#define glTrackMatrixNV GLEW_GET_FUN(__glewTrackMatrixNV) +#define glVertexAttrib1dNV GLEW_GET_FUN(__glewVertexAttrib1dNV) +#define glVertexAttrib1dvNV GLEW_GET_FUN(__glewVertexAttrib1dvNV) +#define glVertexAttrib1fNV GLEW_GET_FUN(__glewVertexAttrib1fNV) +#define glVertexAttrib1fvNV GLEW_GET_FUN(__glewVertexAttrib1fvNV) +#define glVertexAttrib1sNV GLEW_GET_FUN(__glewVertexAttrib1sNV) +#define glVertexAttrib1svNV GLEW_GET_FUN(__glewVertexAttrib1svNV) +#define glVertexAttrib2dNV GLEW_GET_FUN(__glewVertexAttrib2dNV) +#define glVertexAttrib2dvNV GLEW_GET_FUN(__glewVertexAttrib2dvNV) +#define glVertexAttrib2fNV GLEW_GET_FUN(__glewVertexAttrib2fNV) +#define glVertexAttrib2fvNV GLEW_GET_FUN(__glewVertexAttrib2fvNV) +#define glVertexAttrib2sNV GLEW_GET_FUN(__glewVertexAttrib2sNV) +#define glVertexAttrib2svNV GLEW_GET_FUN(__glewVertexAttrib2svNV) +#define glVertexAttrib3dNV GLEW_GET_FUN(__glewVertexAttrib3dNV) +#define glVertexAttrib3dvNV GLEW_GET_FUN(__glewVertexAttrib3dvNV) +#define glVertexAttrib3fNV GLEW_GET_FUN(__glewVertexAttrib3fNV) +#define glVertexAttrib3fvNV GLEW_GET_FUN(__glewVertexAttrib3fvNV) +#define glVertexAttrib3sNV GLEW_GET_FUN(__glewVertexAttrib3sNV) +#define glVertexAttrib3svNV GLEW_GET_FUN(__glewVertexAttrib3svNV) +#define glVertexAttrib4dNV GLEW_GET_FUN(__glewVertexAttrib4dNV) +#define glVertexAttrib4dvNV GLEW_GET_FUN(__glewVertexAttrib4dvNV) +#define glVertexAttrib4fNV GLEW_GET_FUN(__glewVertexAttrib4fNV) +#define glVertexAttrib4fvNV GLEW_GET_FUN(__glewVertexAttrib4fvNV) +#define glVertexAttrib4sNV GLEW_GET_FUN(__glewVertexAttrib4sNV) +#define glVertexAttrib4svNV GLEW_GET_FUN(__glewVertexAttrib4svNV) +#define glVertexAttrib4ubNV GLEW_GET_FUN(__glewVertexAttrib4ubNV) +#define glVertexAttrib4ubvNV GLEW_GET_FUN(__glewVertexAttrib4ubvNV) +#define glVertexAttribPointerNV GLEW_GET_FUN(__glewVertexAttribPointerNV) +#define glVertexAttribs1dvNV GLEW_GET_FUN(__glewVertexAttribs1dvNV) +#define glVertexAttribs1fvNV GLEW_GET_FUN(__glewVertexAttribs1fvNV) +#define glVertexAttribs1svNV GLEW_GET_FUN(__glewVertexAttribs1svNV) +#define glVertexAttribs2dvNV GLEW_GET_FUN(__glewVertexAttribs2dvNV) +#define glVertexAttribs2fvNV GLEW_GET_FUN(__glewVertexAttribs2fvNV) +#define glVertexAttribs2svNV GLEW_GET_FUN(__glewVertexAttribs2svNV) +#define glVertexAttribs3dvNV GLEW_GET_FUN(__glewVertexAttribs3dvNV) +#define glVertexAttribs3fvNV GLEW_GET_FUN(__glewVertexAttribs3fvNV) +#define glVertexAttribs3svNV GLEW_GET_FUN(__glewVertexAttribs3svNV) +#define glVertexAttribs4dvNV GLEW_GET_FUN(__glewVertexAttribs4dvNV) +#define glVertexAttribs4fvNV GLEW_GET_FUN(__glewVertexAttribs4fvNV) +#define glVertexAttribs4svNV GLEW_GET_FUN(__glewVertexAttribs4svNV) +#define glVertexAttribs4ubvNV GLEW_GET_FUN(__glewVertexAttribs4ubvNV) + +#define GLEW_NV_vertex_program GLEW_GET_VAR(__GLEW_NV_vertex_program) + +#endif /* GL_NV_vertex_program */ + +/* ------------------------ GL_NV_vertex_program1_1 ------------------------ */ + +#ifndef GL_NV_vertex_program1_1 +#define GL_NV_vertex_program1_1 1 + +#define GLEW_NV_vertex_program1_1 GLEW_GET_VAR(__GLEW_NV_vertex_program1_1) + +#endif /* GL_NV_vertex_program1_1 */ + +/* ------------------------- GL_NV_vertex_program2 ------------------------- */ + +#ifndef GL_NV_vertex_program2 +#define GL_NV_vertex_program2 1 + +#define GLEW_NV_vertex_program2 GLEW_GET_VAR(__GLEW_NV_vertex_program2) + +#endif /* GL_NV_vertex_program2 */ + +/* ---------------------- GL_NV_vertex_program2_option --------------------- */ + +#ifndef GL_NV_vertex_program2_option +#define GL_NV_vertex_program2_option 1 + +#define GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV 0x88F4 +#define GL_MAX_PROGRAM_CALL_DEPTH_NV 0x88F5 + +#define GLEW_NV_vertex_program2_option GLEW_GET_VAR(__GLEW_NV_vertex_program2_option) + +#endif /* GL_NV_vertex_program2_option */ + +/* ------------------------- GL_NV_vertex_program3 ------------------------- */ + +#ifndef GL_NV_vertex_program3 +#define GL_NV_vertex_program3 1 + +#define MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB 0x8B4C + +#define GLEW_NV_vertex_program3 GLEW_GET_VAR(__GLEW_NV_vertex_program3) + +#endif /* GL_NV_vertex_program3 */ + +/* ------------------------- GL_NV_vertex_program4 ------------------------- */ + +#ifndef GL_NV_vertex_program4 +#define GL_NV_vertex_program4 1 + +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER_NV 0x88FD + +#define GLEW_NV_vertex_program4 GLEW_GET_VAR(__GLEW_NV_vertex_program4) + +#endif /* GL_NV_vertex_program4 */ + +/* -------------------------- GL_NV_video_capture -------------------------- */ + +#ifndef GL_NV_video_capture +#define GL_NV_video_capture 1 + +#define GL_VIDEO_BUFFER_NV 0x9020 +#define GL_VIDEO_BUFFER_BINDING_NV 0x9021 +#define GL_FIELD_UPPER_NV 0x9022 +#define GL_FIELD_LOWER_NV 0x9023 +#define GL_NUM_VIDEO_CAPTURE_STREAMS_NV 0x9024 +#define GL_NEXT_VIDEO_CAPTURE_BUFFER_STATUS_NV 0x9025 +#define GL_VIDEO_CAPTURE_TO_422_SUPPORTED_NV 0x9026 +#define GL_LAST_VIDEO_CAPTURE_STATUS_NV 0x9027 +#define GL_VIDEO_BUFFER_PITCH_NV 0x9028 +#define GL_VIDEO_COLOR_CONVERSION_MATRIX_NV 0x9029 +#define GL_VIDEO_COLOR_CONVERSION_MAX_NV 0x902A +#define GL_VIDEO_COLOR_CONVERSION_MIN_NV 0x902B +#define GL_VIDEO_COLOR_CONVERSION_OFFSET_NV 0x902C +#define GL_VIDEO_BUFFER_INTERNAL_FORMAT_NV 0x902D +#define GL_PARTIAL_SUCCESS_NV 0x902E +#define GL_SUCCESS_NV 0x902F +#define GL_FAILURE_NV 0x9030 +#define GL_YCBYCR8_422_NV 0x9031 +#define GL_YCBAYCR8A_4224_NV 0x9032 +#define GL_Z6Y10Z6CB10Z6Y10Z6CR10_422_NV 0x9033 +#define GL_Z6Y10Z6CB10Z6A10Z6Y10Z6CR10Z6A10_4224_NV 0x9034 +#define GL_Z4Y12Z4CB12Z4Y12Z4CR12_422_NV 0x9035 +#define GL_Z4Y12Z4CB12Z4A12Z4Y12Z4CR12Z4A12_4224_NV 0x9036 +#define GL_Z4Y12Z4CB12Z4CR12_444_NV 0x9037 +#define GL_VIDEO_CAPTURE_FRAME_WIDTH_NV 0x9038 +#define GL_VIDEO_CAPTURE_FRAME_HEIGHT_NV 0x9039 +#define GL_VIDEO_CAPTURE_FIELD_UPPER_HEIGHT_NV 0x903A +#define GL_VIDEO_CAPTURE_FIELD_LOWER_HEIGHT_NV 0x903B +#define GL_VIDEO_CAPTURE_SURFACE_ORIGIN_NV 0x903C + +typedef void (GLAPIENTRY * PFNGLBEGINVIDEOCAPTURENVPROC) (GLuint video_capture_slot); +typedef void (GLAPIENTRY * PFNGLBINDVIDEOCAPTURESTREAMBUFFERNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLintptrARB offset); +typedef void (GLAPIENTRY * PFNGLBINDVIDEOCAPTURESTREAMTEXTURENVPROC) (GLuint video_capture_slot, GLuint stream, GLenum frame_region, GLenum target, GLuint texture); +typedef void (GLAPIENTRY * PFNGLENDVIDEOCAPTURENVPROC) (GLuint video_capture_slot); +typedef void (GLAPIENTRY * PFNGLGETVIDEOCAPTURESTREAMDVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLdouble* params); +typedef void (GLAPIENTRY * PFNGLGETVIDEOCAPTURESTREAMFVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETVIDEOCAPTURESTREAMIVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETVIDEOCAPTUREIVNVPROC) (GLuint video_capture_slot, GLenum pname, GLint* params); +typedef GLenum (GLAPIENTRY * PFNGLVIDEOCAPTURENVPROC) (GLuint video_capture_slot, GLuint* sequence_num, GLuint64EXT *capture_time); +typedef void (GLAPIENTRY * PFNGLVIDEOCAPTURESTREAMPARAMETERDVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLdouble* params); +typedef void (GLAPIENTRY * PFNGLVIDEOCAPTURESTREAMPARAMETERFVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLVIDEOCAPTURESTREAMPARAMETERIVNVPROC) (GLuint video_capture_slot, GLuint stream, GLenum pname, const GLint* params); + +#define glBeginVideoCaptureNV GLEW_GET_FUN(__glewBeginVideoCaptureNV) +#define glBindVideoCaptureStreamBufferNV GLEW_GET_FUN(__glewBindVideoCaptureStreamBufferNV) +#define glBindVideoCaptureStreamTextureNV GLEW_GET_FUN(__glewBindVideoCaptureStreamTextureNV) +#define glEndVideoCaptureNV GLEW_GET_FUN(__glewEndVideoCaptureNV) +#define glGetVideoCaptureStreamdvNV GLEW_GET_FUN(__glewGetVideoCaptureStreamdvNV) +#define glGetVideoCaptureStreamfvNV GLEW_GET_FUN(__glewGetVideoCaptureStreamfvNV) +#define glGetVideoCaptureStreamivNV GLEW_GET_FUN(__glewGetVideoCaptureStreamivNV) +#define glGetVideoCaptureivNV GLEW_GET_FUN(__glewGetVideoCaptureivNV) +#define glVideoCaptureNV GLEW_GET_FUN(__glewVideoCaptureNV) +#define glVideoCaptureStreamParameterdvNV GLEW_GET_FUN(__glewVideoCaptureStreamParameterdvNV) +#define glVideoCaptureStreamParameterfvNV GLEW_GET_FUN(__glewVideoCaptureStreamParameterfvNV) +#define glVideoCaptureStreamParameterivNV GLEW_GET_FUN(__glewVideoCaptureStreamParameterivNV) + +#define GLEW_NV_video_capture GLEW_GET_VAR(__GLEW_NV_video_capture) + +#endif /* GL_NV_video_capture */ + +/* -------------------------- GL_NV_viewport_array ------------------------- */ + +#ifndef GL_NV_viewport_array +#define GL_NV_viewport_array 1 + +#define GL_DEPTH_RANGE 0x0B70 +#define GL_VIEWPORT 0x0BA2 +#define GL_SCISSOR_BOX 0x0C10 +#define GL_SCISSOR_TEST 0x0C11 +#define GL_MAX_VIEWPORTS_NV 0x825B +#define GL_VIEWPORT_SUBPIXEL_BITS_NV 0x825C +#define GL_VIEWPORT_BOUNDS_RANGE_NV 0x825D +#define GL_VIEWPORT_INDEX_PROVOKING_VERTEX_NV 0x825F + +typedef void (GLAPIENTRY * PFNGLDEPTHRANGEARRAYFVNVPROC) (GLuint first, GLsizei count, const GLfloat * v); +typedef void (GLAPIENTRY * PFNGLDEPTHRANGEINDEXEDFNVPROC) (GLuint index, GLfloat n, GLfloat f); +typedef void (GLAPIENTRY * PFNGLDISABLEINVPROC) (GLenum target, GLuint index); +typedef void (GLAPIENTRY * PFNGLENABLEINVPROC) (GLenum target, GLuint index); +typedef void (GLAPIENTRY * PFNGLGETFLOATI_VNVPROC) (GLenum target, GLuint index, GLfloat* data); +typedef GLboolean (GLAPIENTRY * PFNGLISENABLEDINVPROC) (GLenum target, GLuint index); +typedef void (GLAPIENTRY * PFNGLSCISSORARRAYVNVPROC) (GLuint first, GLsizei count, const GLint * v); +typedef void (GLAPIENTRY * PFNGLSCISSORINDEXEDNVPROC) (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +typedef void (GLAPIENTRY * PFNGLSCISSORINDEXEDVNVPROC) (GLuint index, const GLint * v); +typedef void (GLAPIENTRY * PFNGLVIEWPORTARRAYVNVPROC) (GLuint first, GLsizei count, const GLfloat * v); +typedef void (GLAPIENTRY * PFNGLVIEWPORTINDEXEDFNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +typedef void (GLAPIENTRY * PFNGLVIEWPORTINDEXEDFVNVPROC) (GLuint index, const GLfloat * v); + +#define glDepthRangeArrayfvNV GLEW_GET_FUN(__glewDepthRangeArrayfvNV) +#define glDepthRangeIndexedfNV GLEW_GET_FUN(__glewDepthRangeIndexedfNV) +#define glDisableiNV GLEW_GET_FUN(__glewDisableiNV) +#define glEnableiNV GLEW_GET_FUN(__glewEnableiNV) +#define glGetFloati_vNV GLEW_GET_FUN(__glewGetFloati_vNV) +#define glIsEnablediNV GLEW_GET_FUN(__glewIsEnablediNV) +#define glScissorArrayvNV GLEW_GET_FUN(__glewScissorArrayvNV) +#define glScissorIndexedNV GLEW_GET_FUN(__glewScissorIndexedNV) +#define glScissorIndexedvNV GLEW_GET_FUN(__glewScissorIndexedvNV) +#define glViewportArrayvNV GLEW_GET_FUN(__glewViewportArrayvNV) +#define glViewportIndexedfNV GLEW_GET_FUN(__glewViewportIndexedfNV) +#define glViewportIndexedfvNV GLEW_GET_FUN(__glewViewportIndexedfvNV) + +#define GLEW_NV_viewport_array GLEW_GET_VAR(__GLEW_NV_viewport_array) + +#endif /* GL_NV_viewport_array */ + +/* ------------------------- GL_NV_viewport_array2 ------------------------- */ + +#ifndef GL_NV_viewport_array2 +#define GL_NV_viewport_array2 1 + +#define GLEW_NV_viewport_array2 GLEW_GET_VAR(__GLEW_NV_viewport_array2) + +#endif /* GL_NV_viewport_array2 */ + +/* ------------------------- GL_NV_viewport_swizzle ------------------------ */ + +#ifndef GL_NV_viewport_swizzle +#define GL_NV_viewport_swizzle 1 + +#define GL_VIEWPORT_SWIZZLE_POSITIVE_X_NV 0x9350 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_X_NV 0x9351 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Y_NV 0x9352 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Y_NV 0x9353 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Z_NV 0x9354 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Z_NV 0x9355 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_W_NV 0x9356 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_W_NV 0x9357 +#define GL_VIEWPORT_SWIZZLE_X_NV 0x9358 +#define GL_VIEWPORT_SWIZZLE_Y_NV 0x9359 +#define GL_VIEWPORT_SWIZZLE_Z_NV 0x935A +#define GL_VIEWPORT_SWIZZLE_W_NV 0x935B + +typedef void (GLAPIENTRY * PFNGLVIEWPORTSWIZZLENVPROC) (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); + +#define glViewportSwizzleNV GLEW_GET_FUN(__glewViewportSwizzleNV) + +#define GLEW_NV_viewport_swizzle GLEW_GET_VAR(__GLEW_NV_viewport_swizzle) + +#endif /* GL_NV_viewport_swizzle */ + +/* ------------------------ GL_OES_byte_coordinates ------------------------ */ + +#ifndef GL_OES_byte_coordinates +#define GL_OES_byte_coordinates 1 + +#define GLEW_OES_byte_coordinates GLEW_GET_VAR(__GLEW_OES_byte_coordinates) + +#endif /* GL_OES_byte_coordinates */ + +/* ---------------------------- GL_OML_interlace --------------------------- */ + +#ifndef GL_OML_interlace +#define GL_OML_interlace 1 + +#define GL_INTERLACE_OML 0x8980 +#define GL_INTERLACE_READ_OML 0x8981 + +#define GLEW_OML_interlace GLEW_GET_VAR(__GLEW_OML_interlace) + +#endif /* GL_OML_interlace */ + +/* ---------------------------- GL_OML_resample ---------------------------- */ + +#ifndef GL_OML_resample +#define GL_OML_resample 1 + +#define GL_PACK_RESAMPLE_OML 0x8984 +#define GL_UNPACK_RESAMPLE_OML 0x8985 +#define GL_RESAMPLE_REPLICATE_OML 0x8986 +#define GL_RESAMPLE_ZERO_FILL_OML 0x8987 +#define GL_RESAMPLE_AVERAGE_OML 0x8988 +#define GL_RESAMPLE_DECIMATE_OML 0x8989 + +#define GLEW_OML_resample GLEW_GET_VAR(__GLEW_OML_resample) + +#endif /* GL_OML_resample */ + +/* ---------------------------- GL_OML_subsample --------------------------- */ + +#ifndef GL_OML_subsample +#define GL_OML_subsample 1 + +#define GL_FORMAT_SUBSAMPLE_24_24_OML 0x8982 +#define GL_FORMAT_SUBSAMPLE_244_244_OML 0x8983 + +#define GLEW_OML_subsample GLEW_GET_VAR(__GLEW_OML_subsample) + +#endif /* GL_OML_subsample */ + +/* ---------------------------- GL_OVR_multiview --------------------------- */ + +#ifndef GL_OVR_multiview +#define GL_OVR_multiview 1 + +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_NUM_VIEWS_OVR 0x9630 +#define GL_MAX_VIEWS_OVR 0x9631 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_BASE_VIEW_INDEX_OVR 0x9632 +#define GL_FRAMEBUFFER_INCOMPLETE_VIEW_TARGETS_OVR 0x9633 + +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERTEXTUREMULTIVIEWOVRPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); + +#define glFramebufferTextureMultiviewOVR GLEW_GET_FUN(__glewFramebufferTextureMultiviewOVR) + +#define GLEW_OVR_multiview GLEW_GET_VAR(__GLEW_OVR_multiview) + +#endif /* GL_OVR_multiview */ + +/* --------------------------- GL_OVR_multiview2 --------------------------- */ + +#ifndef GL_OVR_multiview2 +#define GL_OVR_multiview2 1 + +#define GLEW_OVR_multiview2 GLEW_GET_VAR(__GLEW_OVR_multiview2) + +#endif /* GL_OVR_multiview2 */ + +/* ------------ GL_OVR_multiview_multisampled_render_to_texture ------------ */ + +#ifndef GL_OVR_multiview_multisampled_render_to_texture +#define GL_OVR_multiview_multisampled_render_to_texture 1 + +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERTEXTUREMULTISAMPLEMULTIVIEWOVRPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLsizei samples, GLint baseViewIndex, GLsizei numViews); + +#define glFramebufferTextureMultisampleMultiviewOVR GLEW_GET_FUN(__glewFramebufferTextureMultisampleMultiviewOVR) + +#define GLEW_OVR_multiview_multisampled_render_to_texture GLEW_GET_VAR(__GLEW_OVR_multiview_multisampled_render_to_texture) + +#endif /* GL_OVR_multiview_multisampled_render_to_texture */ + +/* --------------------------- GL_PGI_misc_hints --------------------------- */ + +#ifndef GL_PGI_misc_hints +#define GL_PGI_misc_hints 1 + +#define GL_PREFER_DOUBLEBUFFER_HINT_PGI 107000 +#define GL_CONSERVE_MEMORY_HINT_PGI 107005 +#define GL_RECLAIM_MEMORY_HINT_PGI 107006 +#define GL_NATIVE_GRAPHICS_HANDLE_PGI 107010 +#define GL_NATIVE_GRAPHICS_BEGIN_HINT_PGI 107011 +#define GL_NATIVE_GRAPHICS_END_HINT_PGI 107012 +#define GL_ALWAYS_FAST_HINT_PGI 107020 +#define GL_ALWAYS_SOFT_HINT_PGI 107021 +#define GL_ALLOW_DRAW_OBJ_HINT_PGI 107022 +#define GL_ALLOW_DRAW_WIN_HINT_PGI 107023 +#define GL_ALLOW_DRAW_FRG_HINT_PGI 107024 +#define GL_ALLOW_DRAW_MEM_HINT_PGI 107025 +#define GL_STRICT_DEPTHFUNC_HINT_PGI 107030 +#define GL_STRICT_LIGHTING_HINT_PGI 107031 +#define GL_STRICT_SCISSOR_HINT_PGI 107032 +#define GL_FULL_STIPPLE_HINT_PGI 107033 +#define GL_CLIP_NEAR_HINT_PGI 107040 +#define GL_CLIP_FAR_HINT_PGI 107041 +#define GL_WIDE_LINE_HINT_PGI 107042 +#define GL_BACK_NORMALS_HINT_PGI 107043 + +#define GLEW_PGI_misc_hints GLEW_GET_VAR(__GLEW_PGI_misc_hints) + +#endif /* GL_PGI_misc_hints */ + +/* -------------------------- GL_PGI_vertex_hints -------------------------- */ + +#ifndef GL_PGI_vertex_hints +#define GL_PGI_vertex_hints 1 + +#define GL_VERTEX23_BIT_PGI 0x00000004 +#define GL_VERTEX4_BIT_PGI 0x00000008 +#define GL_COLOR3_BIT_PGI 0x00010000 +#define GL_COLOR4_BIT_PGI 0x00020000 +#define GL_EDGEFLAG_BIT_PGI 0x00040000 +#define GL_INDEX_BIT_PGI 0x00080000 +#define GL_MAT_AMBIENT_BIT_PGI 0x00100000 +#define GL_VERTEX_DATA_HINT_PGI 107050 +#define GL_VERTEX_CONSISTENT_HINT_PGI 107051 +#define GL_MATERIAL_SIDE_HINT_PGI 107052 +#define GL_MAX_VERTEX_HINT_PGI 107053 +#define GL_MAT_AMBIENT_AND_DIFFUSE_BIT_PGI 0x00200000 +#define GL_MAT_DIFFUSE_BIT_PGI 0x00400000 +#define GL_MAT_EMISSION_BIT_PGI 0x00800000 +#define GL_MAT_COLOR_INDEXES_BIT_PGI 0x01000000 +#define GL_MAT_SHININESS_BIT_PGI 0x02000000 +#define GL_MAT_SPECULAR_BIT_PGI 0x04000000 +#define GL_NORMAL_BIT_PGI 0x08000000 +#define GL_TEXCOORD1_BIT_PGI 0x10000000 +#define GL_TEXCOORD2_BIT_PGI 0x20000000 +#define GL_TEXCOORD3_BIT_PGI 0x40000000 +#define GL_TEXCOORD4_BIT_PGI 0x80000000 + +#define GLEW_PGI_vertex_hints GLEW_GET_VAR(__GLEW_PGI_vertex_hints) + +#endif /* GL_PGI_vertex_hints */ + +/* --------------------------- GL_QCOM_alpha_test -------------------------- */ + +#ifndef GL_QCOM_alpha_test +#define GL_QCOM_alpha_test 1 + +#define GL_ALPHA_TEST_QCOM 0x0BC0 +#define GL_ALPHA_TEST_FUNC_QCOM 0x0BC1 +#define GL_ALPHA_TEST_REF_QCOM 0x0BC2 + +typedef void (GLAPIENTRY * PFNGLALPHAFUNCQCOMPROC) (GLenum func, GLclampf ref); + +#define glAlphaFuncQCOM GLEW_GET_FUN(__glewAlphaFuncQCOM) + +#define GLEW_QCOM_alpha_test GLEW_GET_VAR(__GLEW_QCOM_alpha_test) + +#endif /* GL_QCOM_alpha_test */ + +/* ------------------------ GL_QCOM_binning_control ------------------------ */ + +#ifndef GL_QCOM_binning_control +#define GL_QCOM_binning_control 1 + +#define GL_DONT_CARE 0x1100 +#define GL_BINNING_CONTROL_HINT_QCOM 0x8FB0 +#define GL_CPU_OPTIMIZED_QCOM 0x8FB1 +#define GL_GPU_OPTIMIZED_QCOM 0x8FB2 +#define GL_RENDER_DIRECT_TO_FRAMEBUFFER_QCOM 0x8FB3 + +#define GLEW_QCOM_binning_control GLEW_GET_VAR(__GLEW_QCOM_binning_control) + +#endif /* GL_QCOM_binning_control */ + +/* ------------------------- GL_QCOM_driver_control ------------------------ */ + +#ifndef GL_QCOM_driver_control +#define GL_QCOM_driver_control 1 + +typedef void (GLAPIENTRY * PFNGLDISABLEDRIVERCONTROLQCOMPROC) (GLuint driverControl); +typedef void (GLAPIENTRY * PFNGLENABLEDRIVERCONTROLQCOMPROC) (GLuint driverControl); +typedef void (GLAPIENTRY * PFNGLGETDRIVERCONTROLSTRINGQCOMPROC) (GLuint driverControl, GLsizei bufSize, GLsizei* length, GLchar *driverControlString); +typedef void (GLAPIENTRY * PFNGLGETDRIVERCONTROLSQCOMPROC) (GLint* num, GLsizei size, GLuint *driverControls); + +#define glDisableDriverControlQCOM GLEW_GET_FUN(__glewDisableDriverControlQCOM) +#define glEnableDriverControlQCOM GLEW_GET_FUN(__glewEnableDriverControlQCOM) +#define glGetDriverControlStringQCOM GLEW_GET_FUN(__glewGetDriverControlStringQCOM) +#define glGetDriverControlsQCOM GLEW_GET_FUN(__glewGetDriverControlsQCOM) + +#define GLEW_QCOM_driver_control GLEW_GET_VAR(__GLEW_QCOM_driver_control) + +#endif /* GL_QCOM_driver_control */ + +/* -------------------------- GL_QCOM_extended_get ------------------------- */ + +#ifndef GL_QCOM_extended_get +#define GL_QCOM_extended_get 1 + +#define GL_TEXTURE_WIDTH_QCOM 0x8BD2 +#define GL_TEXTURE_HEIGHT_QCOM 0x8BD3 +#define GL_TEXTURE_DEPTH_QCOM 0x8BD4 +#define GL_TEXTURE_INTERNAL_FORMAT_QCOM 0x8BD5 +#define GL_TEXTURE_FORMAT_QCOM 0x8BD6 +#define GL_TEXTURE_TYPE_QCOM 0x8BD7 +#define GL_TEXTURE_IMAGE_VALID_QCOM 0x8BD8 +#define GL_TEXTURE_NUM_LEVELS_QCOM 0x8BD9 +#define GL_TEXTURE_TARGET_QCOM 0x8BDA +#define GL_TEXTURE_OBJECT_VALID_QCOM 0x8BDB +#define GL_STATE_RESTORE 0x8BDC + +typedef void (GLAPIENTRY * PFNGLEXTGETBUFFERPOINTERVQCOMPROC) (GLenum target, void** params); +typedef void (GLAPIENTRY * PFNGLEXTGETBUFFERSQCOMPROC) (GLuint* buffers, GLint maxBuffers, GLint* numBuffers); +typedef void (GLAPIENTRY * PFNGLEXTGETFRAMEBUFFERSQCOMPROC) (GLuint* framebuffers, GLint maxFramebuffers, GLint* numFramebuffers); +typedef void (GLAPIENTRY * PFNGLEXTGETRENDERBUFFERSQCOMPROC) (GLuint* renderbuffers, GLint maxRenderbuffers, GLint* numRenderbuffers); +typedef void (GLAPIENTRY * PFNGLEXTGETTEXLEVELPARAMETERIVQCOMPROC) (GLuint texture, GLenum face, GLint level, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLEXTGETTEXSUBIMAGEQCOMPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void *texels); +typedef void (GLAPIENTRY * PFNGLEXTGETTEXTURESQCOMPROC) (GLuint* textures, GLint maxTextures, GLint* numTextures); +typedef void (GLAPIENTRY * PFNGLEXTTEXOBJECTSTATEOVERRIDEIQCOMPROC) (GLenum target, GLenum pname, GLint param); + +#define glExtGetBufferPointervQCOM GLEW_GET_FUN(__glewExtGetBufferPointervQCOM) +#define glExtGetBuffersQCOM GLEW_GET_FUN(__glewExtGetBuffersQCOM) +#define glExtGetFramebuffersQCOM GLEW_GET_FUN(__glewExtGetFramebuffersQCOM) +#define glExtGetRenderbuffersQCOM GLEW_GET_FUN(__glewExtGetRenderbuffersQCOM) +#define glExtGetTexLevelParameterivQCOM GLEW_GET_FUN(__glewExtGetTexLevelParameterivQCOM) +#define glExtGetTexSubImageQCOM GLEW_GET_FUN(__glewExtGetTexSubImageQCOM) +#define glExtGetTexturesQCOM GLEW_GET_FUN(__glewExtGetTexturesQCOM) +#define glExtTexObjectStateOverrideiQCOM GLEW_GET_FUN(__glewExtTexObjectStateOverrideiQCOM) + +#define GLEW_QCOM_extended_get GLEW_GET_VAR(__GLEW_QCOM_extended_get) + +#endif /* GL_QCOM_extended_get */ + +/* ------------------------- GL_QCOM_extended_get2 ------------------------- */ + +#ifndef GL_QCOM_extended_get2 +#define GL_QCOM_extended_get2 1 + +typedef void (GLAPIENTRY * PFNGLEXTGETPROGRAMBINARYSOURCEQCOMPROC) (GLuint program, GLenum shadertype, GLchar* source, GLint* length); +typedef void (GLAPIENTRY * PFNGLEXTGETPROGRAMSQCOMPROC) (GLuint* programs, GLint maxPrograms, GLint* numPrograms); +typedef void (GLAPIENTRY * PFNGLEXTGETSHADERSQCOMPROC) (GLuint* shaders, GLint maxShaders, GLint* numShaders); +typedef GLboolean (GLAPIENTRY * PFNGLEXTISPROGRAMBINARYQCOMPROC) (GLuint program); + +#define glExtGetProgramBinarySourceQCOM GLEW_GET_FUN(__glewExtGetProgramBinarySourceQCOM) +#define glExtGetProgramsQCOM GLEW_GET_FUN(__glewExtGetProgramsQCOM) +#define glExtGetShadersQCOM GLEW_GET_FUN(__glewExtGetShadersQCOM) +#define glExtIsProgramBinaryQCOM GLEW_GET_FUN(__glewExtIsProgramBinaryQCOM) + +#define GLEW_QCOM_extended_get2 GLEW_GET_VAR(__GLEW_QCOM_extended_get2) + +#endif /* GL_QCOM_extended_get2 */ + +/* ---------------------- GL_QCOM_framebuffer_foveated --------------------- */ + +#ifndef GL_QCOM_framebuffer_foveated +#define GL_QCOM_framebuffer_foveated 1 + +#define GL_FOVEATION_ENABLE_BIT_QCOM 0x1 +#define GL_FOVEATION_SCALED_BIN_METHOD_BIT_QCOM 0x2 + +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERFOVEATIONCONFIGQCOMPROC) (GLuint fbo, GLuint numLayers, GLuint focalPointsPerLayer, GLuint requestedFeatures, GLuint* providedFeatures); +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERFOVEATIONPARAMETERSQCOMPROC) (GLuint fbo, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); + +#define glFramebufferFoveationConfigQCOM GLEW_GET_FUN(__glewFramebufferFoveationConfigQCOM) +#define glFramebufferFoveationParametersQCOM GLEW_GET_FUN(__glewFramebufferFoveationParametersQCOM) + +#define GLEW_QCOM_framebuffer_foveated GLEW_GET_VAR(__GLEW_QCOM_framebuffer_foveated) + +#endif /* GL_QCOM_framebuffer_foveated */ + +/* ---------------------- GL_QCOM_perfmon_global_mode ---------------------- */ + +#ifndef GL_QCOM_perfmon_global_mode +#define GL_QCOM_perfmon_global_mode 1 + +#define GL_PERFMON_GLOBAL_MODE_QCOM 0x8FA0 + +#define GLEW_QCOM_perfmon_global_mode GLEW_GET_VAR(__GLEW_QCOM_perfmon_global_mode) + +#endif /* GL_QCOM_perfmon_global_mode */ + +/* -------------- GL_QCOM_shader_framebuffer_fetch_noncoherent ------------- */ + +#ifndef GL_QCOM_shader_framebuffer_fetch_noncoherent +#define GL_QCOM_shader_framebuffer_fetch_noncoherent 1 + +#define GL_FRAMEBUFFER_FETCH_NONCOHERENT_QCOM 0x96A2 + +typedef void (GLAPIENTRY * PFNGLFRAMEBUFFERFETCHBARRIERQCOMPROC) (void); + +#define glFramebufferFetchBarrierQCOM GLEW_GET_FUN(__glewFramebufferFetchBarrierQCOM) + +#define GLEW_QCOM_shader_framebuffer_fetch_noncoherent GLEW_GET_VAR(__GLEW_QCOM_shader_framebuffer_fetch_noncoherent) + +#endif /* GL_QCOM_shader_framebuffer_fetch_noncoherent */ + +/* ------------------------ GL_QCOM_tiled_rendering ------------------------ */ + +#ifndef GL_QCOM_tiled_rendering +#define GL_QCOM_tiled_rendering 1 + +#define GL_COLOR_BUFFER_BIT0_QCOM 0x00000001 +#define GL_COLOR_BUFFER_BIT1_QCOM 0x00000002 +#define GL_COLOR_BUFFER_BIT2_QCOM 0x00000004 +#define GL_COLOR_BUFFER_BIT3_QCOM 0x00000008 +#define GL_COLOR_BUFFER_BIT4_QCOM 0x00000010 +#define GL_COLOR_BUFFER_BIT5_QCOM 0x00000020 +#define GL_COLOR_BUFFER_BIT6_QCOM 0x00000040 +#define GL_COLOR_BUFFER_BIT7_QCOM 0x00000080 +#define GL_DEPTH_BUFFER_BIT0_QCOM 0x00000100 +#define GL_DEPTH_BUFFER_BIT1_QCOM 0x00000200 +#define GL_DEPTH_BUFFER_BIT2_QCOM 0x00000400 +#define GL_DEPTH_BUFFER_BIT3_QCOM 0x00000800 +#define GL_DEPTH_BUFFER_BIT4_QCOM 0x00001000 +#define GL_DEPTH_BUFFER_BIT5_QCOM 0x00002000 +#define GL_DEPTH_BUFFER_BIT6_QCOM 0x00004000 +#define GL_DEPTH_BUFFER_BIT7_QCOM 0x00008000 +#define GL_STENCIL_BUFFER_BIT0_QCOM 0x00010000 +#define GL_STENCIL_BUFFER_BIT1_QCOM 0x00020000 +#define GL_STENCIL_BUFFER_BIT2_QCOM 0x00040000 +#define GL_STENCIL_BUFFER_BIT3_QCOM 0x00080000 +#define GL_STENCIL_BUFFER_BIT4_QCOM 0x00100000 +#define GL_STENCIL_BUFFER_BIT5_QCOM 0x00200000 +#define GL_STENCIL_BUFFER_BIT6_QCOM 0x00400000 +#define GL_STENCIL_BUFFER_BIT7_QCOM 0x00800000 +#define GL_MULTISAMPLE_BUFFER_BIT0_QCOM 0x01000000 +#define GL_MULTISAMPLE_BUFFER_BIT1_QCOM 0x02000000 +#define GL_MULTISAMPLE_BUFFER_BIT2_QCOM 0x04000000 +#define GL_MULTISAMPLE_BUFFER_BIT3_QCOM 0x08000000 +#define GL_MULTISAMPLE_BUFFER_BIT4_QCOM 0x10000000 +#define GL_MULTISAMPLE_BUFFER_BIT5_QCOM 0x20000000 +#define GL_MULTISAMPLE_BUFFER_BIT6_QCOM 0x40000000 +#define GL_MULTISAMPLE_BUFFER_BIT7_QCOM 0x80000000 + +typedef void (GLAPIENTRY * PFNGLENDTILINGQCOMPROC) (GLbitfield preserveMask); +typedef void (GLAPIENTRY * PFNGLSTARTTILINGQCOMPROC) (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask); + +#define glEndTilingQCOM GLEW_GET_FUN(__glewEndTilingQCOM) +#define glStartTilingQCOM GLEW_GET_FUN(__glewStartTilingQCOM) + +#define GLEW_QCOM_tiled_rendering GLEW_GET_VAR(__GLEW_QCOM_tiled_rendering) + +#endif /* GL_QCOM_tiled_rendering */ + +/* ---------------------- GL_QCOM_writeonly_rendering ---------------------- */ + +#ifndef GL_QCOM_writeonly_rendering +#define GL_QCOM_writeonly_rendering 1 + +#define GL_WRITEONLY_RENDERING_QCOM 0x8823 + +#define GLEW_QCOM_writeonly_rendering GLEW_GET_VAR(__GLEW_QCOM_writeonly_rendering) + +#endif /* GL_QCOM_writeonly_rendering */ + +/* ---------------------- GL_REGAL_ES1_0_compatibility --------------------- */ + +#ifndef GL_REGAL_ES1_0_compatibility +#define GL_REGAL_ES1_0_compatibility 1 + +typedef int GLclampx; + +typedef void (GLAPIENTRY * PFNGLALPHAFUNCXPROC) (GLenum func, GLclampx ref); +typedef void (GLAPIENTRY * PFNGLCLEARCOLORXPROC) (GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha); +typedef void (GLAPIENTRY * PFNGLCLEARDEPTHXPROC) (GLclampx depth); +typedef void (GLAPIENTRY * PFNGLCOLOR4XPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +typedef void (GLAPIENTRY * PFNGLDEPTHRANGEXPROC) (GLclampx zNear, GLclampx zFar); +typedef void (GLAPIENTRY * PFNGLFOGXPROC) (GLenum pname, GLfixed param); +typedef void (GLAPIENTRY * PFNGLFOGXVPROC) (GLenum pname, const GLfixed* params); +typedef void (GLAPIENTRY * PFNGLFRUSTUMFPROC) (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); +typedef void (GLAPIENTRY * PFNGLFRUSTUMXPROC) (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); +typedef void (GLAPIENTRY * PFNGLLIGHTMODELXPROC) (GLenum pname, GLfixed param); +typedef void (GLAPIENTRY * PFNGLLIGHTMODELXVPROC) (GLenum pname, const GLfixed* params); +typedef void (GLAPIENTRY * PFNGLLIGHTXPROC) (GLenum light, GLenum pname, GLfixed param); +typedef void (GLAPIENTRY * PFNGLLIGHTXVPROC) (GLenum light, GLenum pname, const GLfixed* params); +typedef void (GLAPIENTRY * PFNGLLINEWIDTHXPROC) (GLfixed width); +typedef void (GLAPIENTRY * PFNGLLOADMATRIXXPROC) (const GLfixed* m); +typedef void (GLAPIENTRY * PFNGLMATERIALXPROC) (GLenum face, GLenum pname, GLfixed param); +typedef void (GLAPIENTRY * PFNGLMATERIALXVPROC) (GLenum face, GLenum pname, const GLfixed* params); +typedef void (GLAPIENTRY * PFNGLMULTMATRIXXPROC) (const GLfixed* m); +typedef void (GLAPIENTRY * PFNGLMULTITEXCOORD4XPROC) (GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q); +typedef void (GLAPIENTRY * PFNGLNORMAL3XPROC) (GLfixed nx, GLfixed ny, GLfixed nz); +typedef void (GLAPIENTRY * PFNGLORTHOFPROC) (GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); +typedef void (GLAPIENTRY * PFNGLORTHOXPROC) (GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); +typedef void (GLAPIENTRY * PFNGLPOINTSIZEXPROC) (GLfixed size); +typedef void (GLAPIENTRY * PFNGLPOLYGONOFFSETXPROC) (GLfixed factor, GLfixed units); +typedef void (GLAPIENTRY * PFNGLROTATEXPROC) (GLfixed angle, GLfixed x, GLfixed y, GLfixed z); +typedef void (GLAPIENTRY * PFNGLSAMPLECOVERAGEXPROC) (GLclampx value, GLboolean invert); +typedef void (GLAPIENTRY * PFNGLSCALEXPROC) (GLfixed x, GLfixed y, GLfixed z); +typedef void (GLAPIENTRY * PFNGLTEXENVXPROC) (GLenum target, GLenum pname, GLfixed param); +typedef void (GLAPIENTRY * PFNGLTEXENVXVPROC) (GLenum target, GLenum pname, const GLfixed* params); +typedef void (GLAPIENTRY * PFNGLTEXPARAMETERXPROC) (GLenum target, GLenum pname, GLfixed param); +typedef void (GLAPIENTRY * PFNGLTRANSLATEXPROC) (GLfixed x, GLfixed y, GLfixed z); + +#define glAlphaFuncx GLEW_GET_FUN(__glewAlphaFuncx) +#define glClearColorx GLEW_GET_FUN(__glewClearColorx) +#define glClearDepthx GLEW_GET_FUN(__glewClearDepthx) +#define glColor4x GLEW_GET_FUN(__glewColor4x) +#define glDepthRangex GLEW_GET_FUN(__glewDepthRangex) +#define glFogx GLEW_GET_FUN(__glewFogx) +#define glFogxv GLEW_GET_FUN(__glewFogxv) +#define glFrustumf GLEW_GET_FUN(__glewFrustumf) +#define glFrustumx GLEW_GET_FUN(__glewFrustumx) +#define glLightModelx GLEW_GET_FUN(__glewLightModelx) +#define glLightModelxv GLEW_GET_FUN(__glewLightModelxv) +#define glLightx GLEW_GET_FUN(__glewLightx) +#define glLightxv GLEW_GET_FUN(__glewLightxv) +#define glLineWidthx GLEW_GET_FUN(__glewLineWidthx) +#define glLoadMatrixx GLEW_GET_FUN(__glewLoadMatrixx) +#define glMaterialx GLEW_GET_FUN(__glewMaterialx) +#define glMaterialxv GLEW_GET_FUN(__glewMaterialxv) +#define glMultMatrixx GLEW_GET_FUN(__glewMultMatrixx) +#define glMultiTexCoord4x GLEW_GET_FUN(__glewMultiTexCoord4x) +#define glNormal3x GLEW_GET_FUN(__glewNormal3x) +#define glOrthof GLEW_GET_FUN(__glewOrthof) +#define glOrthox GLEW_GET_FUN(__glewOrthox) +#define glPointSizex GLEW_GET_FUN(__glewPointSizex) +#define glPolygonOffsetx GLEW_GET_FUN(__glewPolygonOffsetx) +#define glRotatex GLEW_GET_FUN(__glewRotatex) +#define glSampleCoveragex GLEW_GET_FUN(__glewSampleCoveragex) +#define glScalex GLEW_GET_FUN(__glewScalex) +#define glTexEnvx GLEW_GET_FUN(__glewTexEnvx) +#define glTexEnvxv GLEW_GET_FUN(__glewTexEnvxv) +#define glTexParameterx GLEW_GET_FUN(__glewTexParameterx) +#define glTranslatex GLEW_GET_FUN(__glewTranslatex) + +#define GLEW_REGAL_ES1_0_compatibility GLEW_GET_VAR(__GLEW_REGAL_ES1_0_compatibility) + +#endif /* GL_REGAL_ES1_0_compatibility */ + +/* ---------------------- GL_REGAL_ES1_1_compatibility --------------------- */ + +#ifndef GL_REGAL_ES1_1_compatibility +#define GL_REGAL_ES1_1_compatibility 1 + +typedef void (GLAPIENTRY * PFNGLCLIPPLANEFPROC) (GLenum plane, const GLfloat* equation); +typedef void (GLAPIENTRY * PFNGLCLIPPLANEXPROC) (GLenum plane, const GLfixed* equation); +typedef void (GLAPIENTRY * PFNGLGETCLIPPLANEFPROC) (GLenum pname, GLfloat eqn[4]); +typedef void (GLAPIENTRY * PFNGLGETCLIPPLANEXPROC) (GLenum pname, GLfixed eqn[4]); +typedef void (GLAPIENTRY * PFNGLGETFIXEDVPROC) (GLenum pname, GLfixed* params); +typedef void (GLAPIENTRY * PFNGLGETLIGHTXVPROC) (GLenum light, GLenum pname, GLfixed* params); +typedef void (GLAPIENTRY * PFNGLGETMATERIALXVPROC) (GLenum face, GLenum pname, GLfixed* params); +typedef void (GLAPIENTRY * PFNGLGETTEXENVXVPROC) (GLenum env, GLenum pname, GLfixed* params); +typedef void (GLAPIENTRY * PFNGLGETTEXPARAMETERXVPROC) (GLenum target, GLenum pname, GLfixed* params); +typedef void (GLAPIENTRY * PFNGLPOINTPARAMETERXPROC) (GLenum pname, GLfixed param); +typedef void (GLAPIENTRY * PFNGLPOINTPARAMETERXVPROC) (GLenum pname, const GLfixed* params); +typedef void (GLAPIENTRY * PFNGLPOINTSIZEPOINTEROESPROC) (GLenum type, GLsizei stride, const void *pointer); +typedef void (GLAPIENTRY * PFNGLTEXPARAMETERXVPROC) (GLenum target, GLenum pname, const GLfixed* params); + +#define glClipPlanef GLEW_GET_FUN(__glewClipPlanef) +#define glClipPlanex GLEW_GET_FUN(__glewClipPlanex) +#define glGetClipPlanef GLEW_GET_FUN(__glewGetClipPlanef) +#define glGetClipPlanex GLEW_GET_FUN(__glewGetClipPlanex) +#define glGetFixedv GLEW_GET_FUN(__glewGetFixedv) +#define glGetLightxv GLEW_GET_FUN(__glewGetLightxv) +#define glGetMaterialxv GLEW_GET_FUN(__glewGetMaterialxv) +#define glGetTexEnvxv GLEW_GET_FUN(__glewGetTexEnvxv) +#define glGetTexParameterxv GLEW_GET_FUN(__glewGetTexParameterxv) +#define glPointParameterx GLEW_GET_FUN(__glewPointParameterx) +#define glPointParameterxv GLEW_GET_FUN(__glewPointParameterxv) +#define glPointSizePointerOES GLEW_GET_FUN(__glewPointSizePointerOES) +#define glTexParameterxv GLEW_GET_FUN(__glewTexParameterxv) + +#define GLEW_REGAL_ES1_1_compatibility GLEW_GET_VAR(__GLEW_REGAL_ES1_1_compatibility) + +#endif /* GL_REGAL_ES1_1_compatibility */ + +/* ---------------------------- GL_REGAL_enable ---------------------------- */ + +#ifndef GL_REGAL_enable +#define GL_REGAL_enable 1 + +#define GL_ERROR_REGAL 0x9322 +#define GL_DEBUG_REGAL 0x9323 +#define GL_LOG_REGAL 0x9324 +#define GL_EMULATION_REGAL 0x9325 +#define GL_DRIVER_REGAL 0x9326 +#define GL_MISSING_REGAL 0x9360 +#define GL_TRACE_REGAL 0x9361 +#define GL_CACHE_REGAL 0x9362 +#define GL_CODE_REGAL 0x9363 +#define GL_STATISTICS_REGAL 0x9364 + +#define GLEW_REGAL_enable GLEW_GET_VAR(__GLEW_REGAL_enable) + +#endif /* GL_REGAL_enable */ + +/* ------------------------- GL_REGAL_error_string ------------------------- */ + +#ifndef GL_REGAL_error_string +#define GL_REGAL_error_string 1 + +typedef const GLchar* (GLAPIENTRY * PFNGLERRORSTRINGREGALPROC) (GLenum error); + +#define glErrorStringREGAL GLEW_GET_FUN(__glewErrorStringREGAL) + +#define GLEW_REGAL_error_string GLEW_GET_VAR(__GLEW_REGAL_error_string) + +#endif /* GL_REGAL_error_string */ + +/* ------------------------ GL_REGAL_extension_query ----------------------- */ + +#ifndef GL_REGAL_extension_query +#define GL_REGAL_extension_query 1 + +typedef GLboolean (GLAPIENTRY * PFNGLGETEXTENSIONREGALPROC) (const GLchar* ext); +typedef GLboolean (GLAPIENTRY * PFNGLISSUPPORTEDREGALPROC) (const GLchar* ext); + +#define glGetExtensionREGAL GLEW_GET_FUN(__glewGetExtensionREGAL) +#define glIsSupportedREGAL GLEW_GET_FUN(__glewIsSupportedREGAL) + +#define GLEW_REGAL_extension_query GLEW_GET_VAR(__GLEW_REGAL_extension_query) + +#endif /* GL_REGAL_extension_query */ + +/* ------------------------------ GL_REGAL_log ----------------------------- */ + +#ifndef GL_REGAL_log +#define GL_REGAL_log 1 + +#define GL_LOG_ERROR_REGAL 0x9319 +#define GL_LOG_WARNING_REGAL 0x931A +#define GL_LOG_INFO_REGAL 0x931B +#define GL_LOG_APP_REGAL 0x931C +#define GL_LOG_DRIVER_REGAL 0x931D +#define GL_LOG_INTERNAL_REGAL 0x931E +#define GL_LOG_DEBUG_REGAL 0x931F +#define GL_LOG_STATUS_REGAL 0x9320 +#define GL_LOG_HTTP_REGAL 0x9321 + +typedef void (APIENTRY *GLLOGPROCREGAL)(GLenum stream, GLsizei length, const GLchar *message, void *context); + +typedef void (GLAPIENTRY * PFNGLLOGMESSAGECALLBACKREGALPROC) (GLLOGPROCREGAL callback); + +#define glLogMessageCallbackREGAL GLEW_GET_FUN(__glewLogMessageCallbackREGAL) + +#define GLEW_REGAL_log GLEW_GET_VAR(__GLEW_REGAL_log) + +#endif /* GL_REGAL_log */ + +/* ------------------------- GL_REGAL_proc_address ------------------------- */ + +#ifndef GL_REGAL_proc_address +#define GL_REGAL_proc_address 1 + +typedef void * (GLAPIENTRY * PFNGLGETPROCADDRESSREGALPROC) (const GLchar *name); + +#define glGetProcAddressREGAL GLEW_GET_FUN(__glewGetProcAddressREGAL) + +#define GLEW_REGAL_proc_address GLEW_GET_VAR(__GLEW_REGAL_proc_address) + +#endif /* GL_REGAL_proc_address */ + +/* ----------------------- GL_REND_screen_coordinates ---------------------- */ + +#ifndef GL_REND_screen_coordinates +#define GL_REND_screen_coordinates 1 + +#define GL_SCREEN_COORDINATES_REND 0x8490 +#define GL_INVERTED_SCREEN_W_REND 0x8491 + +#define GLEW_REND_screen_coordinates GLEW_GET_VAR(__GLEW_REND_screen_coordinates) + +#endif /* GL_REND_screen_coordinates */ + +/* ------------------------------- GL_S3_s3tc ------------------------------ */ + +#ifndef GL_S3_s3tc +#define GL_S3_s3tc 1 + +#define GL_RGB_S3TC 0x83A0 +#define GL_RGB4_S3TC 0x83A1 +#define GL_RGBA_S3TC 0x83A2 +#define GL_RGBA4_S3TC 0x83A3 +#define GL_RGBA_DXT5_S3TC 0x83A4 +#define GL_RGBA4_DXT5_S3TC 0x83A5 + +#define GLEW_S3_s3tc GLEW_GET_VAR(__GLEW_S3_s3tc) + +#endif /* GL_S3_s3tc */ + +/* ------------------------- GL_SGIS_clip_band_hint ------------------------ */ + +#ifndef GL_SGIS_clip_band_hint +#define GL_SGIS_clip_band_hint 1 + +#define GLEW_SGIS_clip_band_hint GLEW_GET_VAR(__GLEW_SGIS_clip_band_hint) + +#endif /* GL_SGIS_clip_band_hint */ + +/* -------------------------- GL_SGIS_color_range -------------------------- */ + +#ifndef GL_SGIS_color_range +#define GL_SGIS_color_range 1 + +#define GL_EXTENDED_RANGE_SGIS 0x85A5 +#define GL_MIN_RED_SGIS 0x85A6 +#define GL_MAX_RED_SGIS 0x85A7 +#define GL_MIN_GREEN_SGIS 0x85A8 +#define GL_MAX_GREEN_SGIS 0x85A9 +#define GL_MIN_BLUE_SGIS 0x85AA +#define GL_MAX_BLUE_SGIS 0x85AB +#define GL_MIN_ALPHA_SGIS 0x85AC +#define GL_MAX_ALPHA_SGIS 0x85AD + +#define GLEW_SGIS_color_range GLEW_GET_VAR(__GLEW_SGIS_color_range) + +#endif /* GL_SGIS_color_range */ + +/* ------------------------- GL_SGIS_detail_texture ------------------------ */ + +#ifndef GL_SGIS_detail_texture +#define GL_SGIS_detail_texture 1 + +typedef void (GLAPIENTRY * PFNGLDETAILTEXFUNCSGISPROC) (GLenum target, GLsizei n, const GLfloat* points); +typedef void (GLAPIENTRY * PFNGLGETDETAILTEXFUNCSGISPROC) (GLenum target, GLfloat* points); + +#define glDetailTexFuncSGIS GLEW_GET_FUN(__glewDetailTexFuncSGIS) +#define glGetDetailTexFuncSGIS GLEW_GET_FUN(__glewGetDetailTexFuncSGIS) + +#define GLEW_SGIS_detail_texture GLEW_GET_VAR(__GLEW_SGIS_detail_texture) + +#endif /* GL_SGIS_detail_texture */ + +/* -------------------------- GL_SGIS_fog_function ------------------------- */ + +#ifndef GL_SGIS_fog_function +#define GL_SGIS_fog_function 1 + +typedef void (GLAPIENTRY * PFNGLFOGFUNCSGISPROC) (GLsizei n, const GLfloat* points); +typedef void (GLAPIENTRY * PFNGLGETFOGFUNCSGISPROC) (GLfloat* points); + +#define glFogFuncSGIS GLEW_GET_FUN(__glewFogFuncSGIS) +#define glGetFogFuncSGIS GLEW_GET_FUN(__glewGetFogFuncSGIS) + +#define GLEW_SGIS_fog_function GLEW_GET_VAR(__GLEW_SGIS_fog_function) + +#endif /* GL_SGIS_fog_function */ + +/* ------------------------ GL_SGIS_generate_mipmap ------------------------ */ + +#ifndef GL_SGIS_generate_mipmap +#define GL_SGIS_generate_mipmap 1 + +#define GL_GENERATE_MIPMAP_SGIS 0x8191 +#define GL_GENERATE_MIPMAP_HINT_SGIS 0x8192 + +#define GLEW_SGIS_generate_mipmap GLEW_GET_VAR(__GLEW_SGIS_generate_mipmap) + +#endif /* GL_SGIS_generate_mipmap */ + +/* -------------------------- GL_SGIS_line_texgen -------------------------- */ + +#ifndef GL_SGIS_line_texgen +#define GL_SGIS_line_texgen 1 + +#define GLEW_SGIS_line_texgen GLEW_GET_VAR(__GLEW_SGIS_line_texgen) + +#endif /* GL_SGIS_line_texgen */ + +/* -------------------------- GL_SGIS_multisample -------------------------- */ + +#ifndef GL_SGIS_multisample +#define GL_SGIS_multisample 1 + +#define GL_MULTISAMPLE_SGIS 0x809D +#define GL_SAMPLE_ALPHA_TO_MASK_SGIS 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE_SGIS 0x809F +#define GL_SAMPLE_MASK_SGIS 0x80A0 +#define GL_1PASS_SGIS 0x80A1 +#define GL_2PASS_0_SGIS 0x80A2 +#define GL_2PASS_1_SGIS 0x80A3 +#define GL_4PASS_0_SGIS 0x80A4 +#define GL_4PASS_1_SGIS 0x80A5 +#define GL_4PASS_2_SGIS 0x80A6 +#define GL_4PASS_3_SGIS 0x80A7 +#define GL_SAMPLE_BUFFERS_SGIS 0x80A8 +#define GL_SAMPLES_SGIS 0x80A9 +#define GL_SAMPLE_MASK_VALUE_SGIS 0x80AA +#define GL_SAMPLE_MASK_INVERT_SGIS 0x80AB +#define GL_SAMPLE_PATTERN_SGIS 0x80AC + +typedef void (GLAPIENTRY * PFNGLSAMPLEMASKSGISPROC) (GLclampf value, GLboolean invert); +typedef void (GLAPIENTRY * PFNGLSAMPLEPATTERNSGISPROC) (GLenum pattern); + +#define glSampleMaskSGIS GLEW_GET_FUN(__glewSampleMaskSGIS) +#define glSamplePatternSGIS GLEW_GET_FUN(__glewSamplePatternSGIS) + +#define GLEW_SGIS_multisample GLEW_GET_VAR(__GLEW_SGIS_multisample) + +#endif /* GL_SGIS_multisample */ + +/* -------------------------- GL_SGIS_multitexture ------------------------- */ + +#ifndef GL_SGIS_multitexture +#define GL_SGIS_multitexture 1 + +#define GL_SELECTED_TEXTURE_SGIS 0x83C0 +#define GL_SELECTED_TEXTURE_COORD_SET_SGIS 0x83C1 +#define GL_SELECTED_TEXTURE_TRANSFORM_SGIS 0x83C2 +#define GL_MAX_TEXTURES_SGIS 0x83C3 +#define GL_MAX_TEXTURE_COORD_SETS_SGIS 0x83C4 +#define GL_TEXTURE_COORD_SET_INTERLEAVE_FACTOR_SGIS 0x83C5 +#define GL_TEXTURE_ENV_COORD_SET_SGIS 0x83C6 +#define GL_TEXTURE0_SGIS 0x83C7 +#define GL_TEXTURE1_SGIS 0x83C8 +#define GL_TEXTURE2_SGIS 0x83C9 +#define GL_TEXTURE3_SGIS 0x83CA + +typedef void (GLAPIENTRY * PFNGLINTERLEAVEDTEXTURECOORDSETSSGISPROC) (GLint factor); +typedef void (GLAPIENTRY * PFNGLSELECTTEXTURECOORDSETSGISPROC) (GLenum target); +typedef void (GLAPIENTRY * PFNGLSELECTTEXTURESGISPROC) (GLenum target); +typedef void (GLAPIENTRY * PFNGLSELECTTEXTURETRANSFORMSGISPROC) (GLenum target); + +#define glInterleavedTextureCoordSetsSGIS GLEW_GET_FUN(__glewInterleavedTextureCoordSetsSGIS) +#define glSelectTextureCoordSetSGIS GLEW_GET_FUN(__glewSelectTextureCoordSetSGIS) +#define glSelectTextureSGIS GLEW_GET_FUN(__glewSelectTextureSGIS) +#define glSelectTextureTransformSGIS GLEW_GET_FUN(__glewSelectTextureTransformSGIS) + +#define GLEW_SGIS_multitexture GLEW_GET_VAR(__GLEW_SGIS_multitexture) + +#endif /* GL_SGIS_multitexture */ + +/* ------------------------- GL_SGIS_pixel_texture ------------------------- */ + +#ifndef GL_SGIS_pixel_texture +#define GL_SGIS_pixel_texture 1 + +#define GLEW_SGIS_pixel_texture GLEW_GET_VAR(__GLEW_SGIS_pixel_texture) + +#endif /* GL_SGIS_pixel_texture */ + +/* ----------------------- GL_SGIS_point_line_texgen ----------------------- */ + +#ifndef GL_SGIS_point_line_texgen +#define GL_SGIS_point_line_texgen 1 + +#define GL_EYE_DISTANCE_TO_POINT_SGIS 0x81F0 +#define GL_OBJECT_DISTANCE_TO_POINT_SGIS 0x81F1 +#define GL_EYE_DISTANCE_TO_LINE_SGIS 0x81F2 +#define GL_OBJECT_DISTANCE_TO_LINE_SGIS 0x81F3 +#define GL_EYE_POINT_SGIS 0x81F4 +#define GL_OBJECT_POINT_SGIS 0x81F5 +#define GL_EYE_LINE_SGIS 0x81F6 +#define GL_OBJECT_LINE_SGIS 0x81F7 + +#define GLEW_SGIS_point_line_texgen GLEW_GET_VAR(__GLEW_SGIS_point_line_texgen) + +#endif /* GL_SGIS_point_line_texgen */ + +/* ----------------------- GL_SGIS_shared_multisample ---------------------- */ + +#ifndef GL_SGIS_shared_multisample +#define GL_SGIS_shared_multisample 1 + +typedef void (GLAPIENTRY * PFNGLMULTISAMPLESUBRECTPOSSGISPROC) (GLint x, GLint y); + +#define glMultisampleSubRectPosSGIS GLEW_GET_FUN(__glewMultisampleSubRectPosSGIS) + +#define GLEW_SGIS_shared_multisample GLEW_GET_VAR(__GLEW_SGIS_shared_multisample) + +#endif /* GL_SGIS_shared_multisample */ + +/* ------------------------ GL_SGIS_sharpen_texture ------------------------ */ + +#ifndef GL_SGIS_sharpen_texture +#define GL_SGIS_sharpen_texture 1 + +typedef void (GLAPIENTRY * PFNGLGETSHARPENTEXFUNCSGISPROC) (GLenum target, GLfloat* points); +typedef void (GLAPIENTRY * PFNGLSHARPENTEXFUNCSGISPROC) (GLenum target, GLsizei n, const GLfloat* points); + +#define glGetSharpenTexFuncSGIS GLEW_GET_FUN(__glewGetSharpenTexFuncSGIS) +#define glSharpenTexFuncSGIS GLEW_GET_FUN(__glewSharpenTexFuncSGIS) + +#define GLEW_SGIS_sharpen_texture GLEW_GET_VAR(__GLEW_SGIS_sharpen_texture) + +#endif /* GL_SGIS_sharpen_texture */ + +/* --------------------------- GL_SGIS_texture4D --------------------------- */ + +#ifndef GL_SGIS_texture4D +#define GL_SGIS_texture4D 1 + +typedef void (GLAPIENTRY * PFNGLTEXIMAGE4DSGISPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLsizei extent, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (GLAPIENTRY * PFNGLTEXSUBIMAGE4DSGISPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint woffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei extent, GLenum format, GLenum type, const void *pixels); + +#define glTexImage4DSGIS GLEW_GET_FUN(__glewTexImage4DSGIS) +#define glTexSubImage4DSGIS GLEW_GET_FUN(__glewTexSubImage4DSGIS) + +#define GLEW_SGIS_texture4D GLEW_GET_VAR(__GLEW_SGIS_texture4D) + +#endif /* GL_SGIS_texture4D */ + +/* ---------------------- GL_SGIS_texture_border_clamp --------------------- */ + +#ifndef GL_SGIS_texture_border_clamp +#define GL_SGIS_texture_border_clamp 1 + +#define GL_CLAMP_TO_BORDER_SGIS 0x812D + +#define GLEW_SGIS_texture_border_clamp GLEW_GET_VAR(__GLEW_SGIS_texture_border_clamp) + +#endif /* GL_SGIS_texture_border_clamp */ + +/* ----------------------- GL_SGIS_texture_edge_clamp ---------------------- */ + +#ifndef GL_SGIS_texture_edge_clamp +#define GL_SGIS_texture_edge_clamp 1 + +#define GL_CLAMP_TO_EDGE_SGIS 0x812F + +#define GLEW_SGIS_texture_edge_clamp GLEW_GET_VAR(__GLEW_SGIS_texture_edge_clamp) + +#endif /* GL_SGIS_texture_edge_clamp */ + +/* ------------------------ GL_SGIS_texture_filter4 ------------------------ */ + +#ifndef GL_SGIS_texture_filter4 +#define GL_SGIS_texture_filter4 1 + +typedef void (GLAPIENTRY * PFNGLGETTEXFILTERFUNCSGISPROC) (GLenum target, GLenum filter, GLfloat* weights); +typedef void (GLAPIENTRY * PFNGLTEXFILTERFUNCSGISPROC) (GLenum target, GLenum filter, GLsizei n, const GLfloat* weights); + +#define glGetTexFilterFuncSGIS GLEW_GET_FUN(__glewGetTexFilterFuncSGIS) +#define glTexFilterFuncSGIS GLEW_GET_FUN(__glewTexFilterFuncSGIS) + +#define GLEW_SGIS_texture_filter4 GLEW_GET_VAR(__GLEW_SGIS_texture_filter4) + +#endif /* GL_SGIS_texture_filter4 */ + +/* -------------------------- GL_SGIS_texture_lod -------------------------- */ + +#ifndef GL_SGIS_texture_lod +#define GL_SGIS_texture_lod 1 + +#define GL_TEXTURE_MIN_LOD_SGIS 0x813A +#define GL_TEXTURE_MAX_LOD_SGIS 0x813B +#define GL_TEXTURE_BASE_LEVEL_SGIS 0x813C +#define GL_TEXTURE_MAX_LEVEL_SGIS 0x813D + +#define GLEW_SGIS_texture_lod GLEW_GET_VAR(__GLEW_SGIS_texture_lod) + +#endif /* GL_SGIS_texture_lod */ + +/* ------------------------- GL_SGIS_texture_select ------------------------ */ + +#ifndef GL_SGIS_texture_select +#define GL_SGIS_texture_select 1 + +#define GLEW_SGIS_texture_select GLEW_GET_VAR(__GLEW_SGIS_texture_select) + +#endif /* GL_SGIS_texture_select */ + +/* ----------------------------- GL_SGIX_async ----------------------------- */ + +#ifndef GL_SGIX_async +#define GL_SGIX_async 1 + +#define GL_ASYNC_MARKER_SGIX 0x8329 + +typedef void (GLAPIENTRY * PFNGLASYNCMARKERSGIXPROC) (GLuint marker); +typedef void (GLAPIENTRY * PFNGLDELETEASYNCMARKERSSGIXPROC) (GLuint marker, GLsizei range); +typedef GLint (GLAPIENTRY * PFNGLFINISHASYNCSGIXPROC) (GLuint* markerp); +typedef GLuint (GLAPIENTRY * PFNGLGENASYNCMARKERSSGIXPROC) (GLsizei range); +typedef GLboolean (GLAPIENTRY * PFNGLISASYNCMARKERSGIXPROC) (GLuint marker); +typedef GLint (GLAPIENTRY * PFNGLPOLLASYNCSGIXPROC) (GLuint* markerp); + +#define glAsyncMarkerSGIX GLEW_GET_FUN(__glewAsyncMarkerSGIX) +#define glDeleteAsyncMarkersSGIX GLEW_GET_FUN(__glewDeleteAsyncMarkersSGIX) +#define glFinishAsyncSGIX GLEW_GET_FUN(__glewFinishAsyncSGIX) +#define glGenAsyncMarkersSGIX GLEW_GET_FUN(__glewGenAsyncMarkersSGIX) +#define glIsAsyncMarkerSGIX GLEW_GET_FUN(__glewIsAsyncMarkerSGIX) +#define glPollAsyncSGIX GLEW_GET_FUN(__glewPollAsyncSGIX) + +#define GLEW_SGIX_async GLEW_GET_VAR(__GLEW_SGIX_async) + +#endif /* GL_SGIX_async */ + +/* ------------------------ GL_SGIX_async_histogram ------------------------ */ + +#ifndef GL_SGIX_async_histogram +#define GL_SGIX_async_histogram 1 + +#define GL_ASYNC_HISTOGRAM_SGIX 0x832C +#define GL_MAX_ASYNC_HISTOGRAM_SGIX 0x832D + +#define GLEW_SGIX_async_histogram GLEW_GET_VAR(__GLEW_SGIX_async_histogram) + +#endif /* GL_SGIX_async_histogram */ + +/* -------------------------- GL_SGIX_async_pixel -------------------------- */ + +#ifndef GL_SGIX_async_pixel +#define GL_SGIX_async_pixel 1 + +#define GL_ASYNC_TEX_IMAGE_SGIX 0x835C +#define GL_ASYNC_DRAW_PIXELS_SGIX 0x835D +#define GL_ASYNC_READ_PIXELS_SGIX 0x835E +#define GL_MAX_ASYNC_TEX_IMAGE_SGIX 0x835F +#define GL_MAX_ASYNC_DRAW_PIXELS_SGIX 0x8360 +#define GL_MAX_ASYNC_READ_PIXELS_SGIX 0x8361 + +#define GLEW_SGIX_async_pixel GLEW_GET_VAR(__GLEW_SGIX_async_pixel) + +#endif /* GL_SGIX_async_pixel */ + +/* ----------------------- GL_SGIX_bali_g_instruments ---------------------- */ + +#ifndef GL_SGIX_bali_g_instruments +#define GL_SGIX_bali_g_instruments 1 + +#define GL_BALI_NUM_TRIS_CULLED_INSTRUMENT 0x6080 +#define GL_BALI_NUM_PRIMS_CLIPPED_INSTRUMENT 0x6081 +#define GL_BALI_NUM_PRIMS_REJECT_INSTRUMENT 0x6082 +#define GL_BALI_NUM_PRIMS_CLIP_RESULT_INSTRUMENT 0x6083 + +#define GLEW_SGIX_bali_g_instruments GLEW_GET_VAR(__GLEW_SGIX_bali_g_instruments) + +#endif /* GL_SGIX_bali_g_instruments */ + +/* ----------------------- GL_SGIX_bali_r_instruments ---------------------- */ + +#ifndef GL_SGIX_bali_r_instruments +#define GL_SGIX_bali_r_instruments 1 + +#define GL_BALI_FRAGMENTS_GENERATED_INSTRUMENT 0x6090 +#define GL_BALI_DEPTH_PASS_INSTRUMENT 0x6091 +#define GL_BALI_R_CHIP_COUNT 0x6092 + +#define GLEW_SGIX_bali_r_instruments GLEW_GET_VAR(__GLEW_SGIX_bali_r_instruments) + +#endif /* GL_SGIX_bali_r_instruments */ + +/* --------------------- GL_SGIX_bali_timer_instruments -------------------- */ + +#ifndef GL_SGIX_bali_timer_instruments +#define GL_SGIX_bali_timer_instruments 1 + +#define GLEW_SGIX_bali_timer_instruments GLEW_GET_VAR(__GLEW_SGIX_bali_timer_instruments) + +#endif /* GL_SGIX_bali_timer_instruments */ + +/* ----------------------- GL_SGIX_blend_alpha_minmax ---------------------- */ + +#ifndef GL_SGIX_blend_alpha_minmax +#define GL_SGIX_blend_alpha_minmax 1 + +#define GL_ALPHA_MIN_SGIX 0x8320 +#define GL_ALPHA_MAX_SGIX 0x8321 + +#define GLEW_SGIX_blend_alpha_minmax GLEW_GET_VAR(__GLEW_SGIX_blend_alpha_minmax) + +#endif /* GL_SGIX_blend_alpha_minmax */ + +/* --------------------------- GL_SGIX_blend_cadd -------------------------- */ + +#ifndef GL_SGIX_blend_cadd +#define GL_SGIX_blend_cadd 1 + +#define GL_FUNC_COMPLEX_ADD_EXT 0x601C + +#define GLEW_SGIX_blend_cadd GLEW_GET_VAR(__GLEW_SGIX_blend_cadd) + +#endif /* GL_SGIX_blend_cadd */ + +/* ------------------------ GL_SGIX_blend_cmultiply ------------------------ */ + +#ifndef GL_SGIX_blend_cmultiply +#define GL_SGIX_blend_cmultiply 1 + +#define GL_FUNC_COMPLEX_MULTIPLY_EXT 0x601B + +#define GLEW_SGIX_blend_cmultiply GLEW_GET_VAR(__GLEW_SGIX_blend_cmultiply) + +#endif /* GL_SGIX_blend_cmultiply */ + +/* --------------------- GL_SGIX_calligraphic_fragment --------------------- */ + +#ifndef GL_SGIX_calligraphic_fragment +#define GL_SGIX_calligraphic_fragment 1 + +#define GLEW_SGIX_calligraphic_fragment GLEW_GET_VAR(__GLEW_SGIX_calligraphic_fragment) + +#endif /* GL_SGIX_calligraphic_fragment */ + +/* ---------------------------- GL_SGIX_clipmap ---------------------------- */ + +#ifndef GL_SGIX_clipmap +#define GL_SGIX_clipmap 1 + +#define GLEW_SGIX_clipmap GLEW_GET_VAR(__GLEW_SGIX_clipmap) + +#endif /* GL_SGIX_clipmap */ + +/* --------------------- GL_SGIX_color_matrix_accuracy --------------------- */ + +#ifndef GL_SGIX_color_matrix_accuracy +#define GL_SGIX_color_matrix_accuracy 1 + +#define GL_COLOR_MATRIX_HINT 0x8317 + +#define GLEW_SGIX_color_matrix_accuracy GLEW_GET_VAR(__GLEW_SGIX_color_matrix_accuracy) + +#endif /* GL_SGIX_color_matrix_accuracy */ + +/* --------------------- GL_SGIX_color_table_index_mode -------------------- */ + +#ifndef GL_SGIX_color_table_index_mode +#define GL_SGIX_color_table_index_mode 1 + +#define GLEW_SGIX_color_table_index_mode GLEW_GET_VAR(__GLEW_SGIX_color_table_index_mode) + +#endif /* GL_SGIX_color_table_index_mode */ + +/* ------------------------- GL_SGIX_complex_polar ------------------------- */ + +#ifndef GL_SGIX_complex_polar +#define GL_SGIX_complex_polar 1 + +#define GLEW_SGIX_complex_polar GLEW_GET_VAR(__GLEW_SGIX_complex_polar) + +#endif /* GL_SGIX_complex_polar */ + +/* ---------------------- GL_SGIX_convolution_accuracy --------------------- */ + +#ifndef GL_SGIX_convolution_accuracy +#define GL_SGIX_convolution_accuracy 1 + +#define GL_CONVOLUTION_HINT_SGIX 0x8316 + +#define GLEW_SGIX_convolution_accuracy GLEW_GET_VAR(__GLEW_SGIX_convolution_accuracy) + +#endif /* GL_SGIX_convolution_accuracy */ + +/* ---------------------------- GL_SGIX_cube_map --------------------------- */ + +#ifndef GL_SGIX_cube_map +#define GL_SGIX_cube_map 1 + +#define GL_ENV_MAP_SGIX 0x8340 +#define GL_CUBE_MAP_SGIX 0x8341 +#define GL_CUBE_MAP_ZP_SGIX 0x8342 +#define GL_CUBE_MAP_ZN_SGIX 0x8343 +#define GL_CUBE_MAP_XN_SGIX 0x8344 +#define GL_CUBE_MAP_XP_SGIX 0x8345 +#define GL_CUBE_MAP_YN_SGIX 0x8346 +#define GL_CUBE_MAP_YP_SGIX 0x8347 +#define GL_CUBE_MAP_BINDING_SGIX 0x8348 + +#define GLEW_SGIX_cube_map GLEW_GET_VAR(__GLEW_SGIX_cube_map) + +#endif /* GL_SGIX_cube_map */ + +/* ------------------------ GL_SGIX_cylinder_texgen ------------------------ */ + +#ifndef GL_SGIX_cylinder_texgen +#define GL_SGIX_cylinder_texgen 1 + +#define GLEW_SGIX_cylinder_texgen GLEW_GET_VAR(__GLEW_SGIX_cylinder_texgen) + +#endif /* GL_SGIX_cylinder_texgen */ + +/* ---------------------------- GL_SGIX_datapipe --------------------------- */ + +#ifndef GL_SGIX_datapipe +#define GL_SGIX_datapipe 1 + +#define GL_GEOMETRY_BIT 0x1 +#define GL_IMAGE_BIT 0x2 + +typedef void (GLAPIENTRY * PFNGLADDRESSSPACEPROC) (GLenum space, GLbitfield mask); +typedef GLint (GLAPIENTRY * PFNGLDATAPIPEPROC) (GLenum space); + +#define glAddressSpace GLEW_GET_FUN(__glewAddressSpace) +#define glDataPipe GLEW_GET_FUN(__glewDataPipe) + +#define GLEW_SGIX_datapipe GLEW_GET_VAR(__GLEW_SGIX_datapipe) + +#endif /* GL_SGIX_datapipe */ + +/* --------------------------- GL_SGIX_decimation -------------------------- */ + +#ifndef GL_SGIX_decimation +#define GL_SGIX_decimation 1 + +#define GLEW_SGIX_decimation GLEW_GET_VAR(__GLEW_SGIX_decimation) + +#endif /* GL_SGIX_decimation */ + +/* --------------------- GL_SGIX_depth_pass_instrument --------------------- */ + +#ifndef GL_SGIX_depth_pass_instrument +#define GL_SGIX_depth_pass_instrument 1 + +#define GL_DEPTH_PASS_INSTRUMENT_SGIX 0x8310 +#define GL_DEPTH_PASS_INSTRUMENT_COUNTERS_SGIX 0x8311 +#define GL_DEPTH_PASS_INSTRUMENT_MAX_SGIX 0x8312 + +#define GLEW_SGIX_depth_pass_instrument GLEW_GET_VAR(__GLEW_SGIX_depth_pass_instrument) + +#endif /* GL_SGIX_depth_pass_instrument */ + +/* ------------------------- GL_SGIX_depth_texture ------------------------- */ + +#ifndef GL_SGIX_depth_texture +#define GL_SGIX_depth_texture 1 + +#define GL_DEPTH_COMPONENT16_SGIX 0x81A5 +#define GL_DEPTH_COMPONENT24_SGIX 0x81A6 +#define GL_DEPTH_COMPONENT32_SGIX 0x81A7 + +#define GLEW_SGIX_depth_texture GLEW_GET_VAR(__GLEW_SGIX_depth_texture) + +#endif /* GL_SGIX_depth_texture */ + +/* ------------------------------ GL_SGIX_dvc ------------------------------ */ + +#ifndef GL_SGIX_dvc +#define GL_SGIX_dvc 1 + +#define GLEW_SGIX_dvc GLEW_GET_VAR(__GLEW_SGIX_dvc) + +#endif /* GL_SGIX_dvc */ + +/* -------------------------- GL_SGIX_flush_raster ------------------------- */ + +#ifndef GL_SGIX_flush_raster +#define GL_SGIX_flush_raster 1 + +typedef void (GLAPIENTRY * PFNGLFLUSHRASTERSGIXPROC) (void); + +#define glFlushRasterSGIX GLEW_GET_FUN(__glewFlushRasterSGIX) + +#define GLEW_SGIX_flush_raster GLEW_GET_VAR(__GLEW_SGIX_flush_raster) + +#endif /* GL_SGIX_flush_raster */ + +/* --------------------------- GL_SGIX_fog_blend --------------------------- */ + +#ifndef GL_SGIX_fog_blend +#define GL_SGIX_fog_blend 1 + +#define GL_FOG_BLEND_ALPHA_SGIX 0x81FE +#define GL_FOG_BLEND_COLOR_SGIX 0x81FF + +#define GLEW_SGIX_fog_blend GLEW_GET_VAR(__GLEW_SGIX_fog_blend) + +#endif /* GL_SGIX_fog_blend */ + +/* ---------------------- GL_SGIX_fog_factor_to_alpha ---------------------- */ + +#ifndef GL_SGIX_fog_factor_to_alpha +#define GL_SGIX_fog_factor_to_alpha 1 + +#define GLEW_SGIX_fog_factor_to_alpha GLEW_GET_VAR(__GLEW_SGIX_fog_factor_to_alpha) + +#endif /* GL_SGIX_fog_factor_to_alpha */ + +/* --------------------------- GL_SGIX_fog_layers -------------------------- */ + +#ifndef GL_SGIX_fog_layers +#define GL_SGIX_fog_layers 1 + +#define GL_FOG_TYPE_SGIX 0x8323 +#define GL_UNIFORM_SGIX 0x8324 +#define GL_LAYERED_SGIX 0x8325 +#define GL_FOG_GROUND_PLANE_SGIX 0x8326 +#define GL_FOG_LAYERS_POINTS_SGIX 0x8327 +#define GL_MAX_FOG_LAYERS_POINTS_SGIX 0x8328 + +typedef void (GLAPIENTRY * PFNGLFOGLAYERSSGIXPROC) (GLsizei n, const GLfloat* points); +typedef void (GLAPIENTRY * PFNGLGETFOGLAYERSSGIXPROC) (GLfloat* points); + +#define glFogLayersSGIX GLEW_GET_FUN(__glewFogLayersSGIX) +#define glGetFogLayersSGIX GLEW_GET_FUN(__glewGetFogLayersSGIX) + +#define GLEW_SGIX_fog_layers GLEW_GET_VAR(__GLEW_SGIX_fog_layers) + +#endif /* GL_SGIX_fog_layers */ + +/* --------------------------- GL_SGIX_fog_offset -------------------------- */ + +#ifndef GL_SGIX_fog_offset +#define GL_SGIX_fog_offset 1 + +#define GL_FOG_OFFSET_SGIX 0x8198 +#define GL_FOG_OFFSET_VALUE_SGIX 0x8199 + +#define GLEW_SGIX_fog_offset GLEW_GET_VAR(__GLEW_SGIX_fog_offset) + +#endif /* GL_SGIX_fog_offset */ + +/* --------------------------- GL_SGIX_fog_patchy -------------------------- */ + +#ifndef GL_SGIX_fog_patchy +#define GL_SGIX_fog_patchy 1 + +#define GLEW_SGIX_fog_patchy GLEW_GET_VAR(__GLEW_SGIX_fog_patchy) + +#endif /* GL_SGIX_fog_patchy */ + +/* --------------------------- GL_SGIX_fog_scale --------------------------- */ + +#ifndef GL_SGIX_fog_scale +#define GL_SGIX_fog_scale 1 + +#define GL_FOG_SCALE_SGIX 0x81FC +#define GL_FOG_SCALE_VALUE_SGIX 0x81FD + +#define GLEW_SGIX_fog_scale GLEW_GET_VAR(__GLEW_SGIX_fog_scale) + +#endif /* GL_SGIX_fog_scale */ + +/* -------------------------- GL_SGIX_fog_texture -------------------------- */ + +#ifndef GL_SGIX_fog_texture +#define GL_SGIX_fog_texture 1 + +typedef void (GLAPIENTRY * PFNGLTEXTUREFOGSGIXPROC) (GLenum pname); + +#define glTextureFogSGIX GLEW_GET_FUN(__glewTextureFogSGIX) + +#define GLEW_SGIX_fog_texture GLEW_GET_VAR(__GLEW_SGIX_fog_texture) + +#endif /* GL_SGIX_fog_texture */ + +/* -------------------- GL_SGIX_fragment_lighting_space -------------------- */ + +#ifndef GL_SGIX_fragment_lighting_space +#define GL_SGIX_fragment_lighting_space 1 + +#define GL_EYE_SPACE_SGIX 0x8436 +#define GL_TANGENT_SPACE_SGIX 0x8437 +#define GL_OBJECT_SPACE_SGIX 0x8438 +#define GL_FRAGMENT_LIGHT_SPACE_SGIX 0x843D + +#define GLEW_SGIX_fragment_lighting_space GLEW_GET_VAR(__GLEW_SGIX_fragment_lighting_space) + +#endif /* GL_SGIX_fragment_lighting_space */ + +/* ------------------- GL_SGIX_fragment_specular_lighting ------------------ */ + +#ifndef GL_SGIX_fragment_specular_lighting +#define GL_SGIX_fragment_specular_lighting 1 + +typedef void (GLAPIENTRY * PFNGLFRAGMENTCOLORMATERIALSGIXPROC) (GLenum face, GLenum mode); +typedef void (GLAPIENTRY * PFNGLFRAGMENTLIGHTMODELFSGIXPROC) (GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLFRAGMENTLIGHTMODELFVSGIXPROC) (GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLFRAGMENTLIGHTMODELISGIXPROC) (GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLFRAGMENTLIGHTMODELIVSGIXPROC) (GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLFRAGMENTLIGHTFSGIXPROC) (GLenum light, GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLFRAGMENTLIGHTFVSGIXPROC) (GLenum light, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLFRAGMENTLIGHTISGIXPROC) (GLenum light, GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLFRAGMENTLIGHTIVSGIXPROC) (GLenum light, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLFRAGMENTMATERIALFSGIXPROC) (GLenum face, GLenum pname, const GLfloat param); +typedef void (GLAPIENTRY * PFNGLFRAGMENTMATERIALFVSGIXPROC) (GLenum face, GLenum pname, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLFRAGMENTMATERIALISGIXPROC) (GLenum face, GLenum pname, const GLint param); +typedef void (GLAPIENTRY * PFNGLFRAGMENTMATERIALIVSGIXPROC) (GLenum face, GLenum pname, const GLint* params); +typedef void (GLAPIENTRY * PFNGLGETFRAGMENTLIGHTFVSGIXPROC) (GLenum light, GLenum value, GLfloat* data); +typedef void (GLAPIENTRY * PFNGLGETFRAGMENTLIGHTIVSGIXPROC) (GLenum light, GLenum value, GLint* data); +typedef void (GLAPIENTRY * PFNGLGETFRAGMENTMATERIALFVSGIXPROC) (GLenum face, GLenum pname, const GLfloat* data); +typedef void (GLAPIENTRY * PFNGLGETFRAGMENTMATERIALIVSGIXPROC) (GLenum face, GLenum pname, const GLint* data); + +#define glFragmentColorMaterialSGIX GLEW_GET_FUN(__glewFragmentColorMaterialSGIX) +#define glFragmentLightModelfSGIX GLEW_GET_FUN(__glewFragmentLightModelfSGIX) +#define glFragmentLightModelfvSGIX GLEW_GET_FUN(__glewFragmentLightModelfvSGIX) +#define glFragmentLightModeliSGIX GLEW_GET_FUN(__glewFragmentLightModeliSGIX) +#define glFragmentLightModelivSGIX GLEW_GET_FUN(__glewFragmentLightModelivSGIX) +#define glFragmentLightfSGIX GLEW_GET_FUN(__glewFragmentLightfSGIX) +#define glFragmentLightfvSGIX GLEW_GET_FUN(__glewFragmentLightfvSGIX) +#define glFragmentLightiSGIX GLEW_GET_FUN(__glewFragmentLightiSGIX) +#define glFragmentLightivSGIX GLEW_GET_FUN(__glewFragmentLightivSGIX) +#define glFragmentMaterialfSGIX GLEW_GET_FUN(__glewFragmentMaterialfSGIX) +#define glFragmentMaterialfvSGIX GLEW_GET_FUN(__glewFragmentMaterialfvSGIX) +#define glFragmentMaterialiSGIX GLEW_GET_FUN(__glewFragmentMaterialiSGIX) +#define glFragmentMaterialivSGIX GLEW_GET_FUN(__glewFragmentMaterialivSGIX) +#define glGetFragmentLightfvSGIX GLEW_GET_FUN(__glewGetFragmentLightfvSGIX) +#define glGetFragmentLightivSGIX GLEW_GET_FUN(__glewGetFragmentLightivSGIX) +#define glGetFragmentMaterialfvSGIX GLEW_GET_FUN(__glewGetFragmentMaterialfvSGIX) +#define glGetFragmentMaterialivSGIX GLEW_GET_FUN(__glewGetFragmentMaterialivSGIX) + +#define GLEW_SGIX_fragment_specular_lighting GLEW_GET_VAR(__GLEW_SGIX_fragment_specular_lighting) + +#endif /* GL_SGIX_fragment_specular_lighting */ + +/* ---------------------- GL_SGIX_fragments_instrument --------------------- */ + +#ifndef GL_SGIX_fragments_instrument +#define GL_SGIX_fragments_instrument 1 + +#define GL_FRAGMENTS_INSTRUMENT_SGIX 0x8313 +#define GL_FRAGMENTS_INSTRUMENT_COUNTERS_SGIX 0x8314 +#define GL_FRAGMENTS_INSTRUMENT_MAX_SGIX 0x8315 + +#define GLEW_SGIX_fragments_instrument GLEW_GET_VAR(__GLEW_SGIX_fragments_instrument) + +#endif /* GL_SGIX_fragments_instrument */ + +/* --------------------------- GL_SGIX_framezoom --------------------------- */ + +#ifndef GL_SGIX_framezoom +#define GL_SGIX_framezoom 1 + +typedef void (GLAPIENTRY * PFNGLFRAMEZOOMSGIXPROC) (GLint factor); + +#define glFrameZoomSGIX GLEW_GET_FUN(__glewFrameZoomSGIX) + +#define GLEW_SGIX_framezoom GLEW_GET_VAR(__GLEW_SGIX_framezoom) + +#endif /* GL_SGIX_framezoom */ + +/* -------------------------- GL_SGIX_icc_texture -------------------------- */ + +#ifndef GL_SGIX_icc_texture +#define GL_SGIX_icc_texture 1 + +#define GL_RGB_ICC_SGIX 0x8460 +#define GL_RGBA_ICC_SGIX 0x8461 +#define GL_ALPHA_ICC_SGIX 0x8462 +#define GL_LUMINANCE_ICC_SGIX 0x8463 +#define GL_INTENSITY_ICC_SGIX 0x8464 +#define GL_LUMINANCE_ALPHA_ICC_SGIX 0x8465 +#define GL_R5_G6_B5_ICC_SGIX 0x8466 +#define GL_R5_G6_B5_A8_ICC_SGIX 0x8467 +#define GL_ALPHA16_ICC_SGIX 0x8468 +#define GL_LUMINANCE16_ICC_SGIX 0x8469 +#define GL_INTENSITY16_ICC_SGIX 0x846A +#define GL_LUMINANCE16_ALPHA8_ICC_SGIX 0x846B + +#define GLEW_SGIX_icc_texture GLEW_GET_VAR(__GLEW_SGIX_icc_texture) + +#endif /* GL_SGIX_icc_texture */ + +/* ------------------------ GL_SGIX_igloo_interface ------------------------ */ + +#ifndef GL_SGIX_igloo_interface +#define GL_SGIX_igloo_interface 1 + +#define GL_IGLOO_FULLSCREEN_SGIX 0x819E +#define GL_IGLOO_VIEWPORT_OFFSET_SGIX 0x819F +#define GL_IGLOO_SWAPTMESH_SGIX 0x81A0 +#define GL_IGLOO_COLORNORMAL_SGIX 0x81A1 +#define GL_IGLOO_IRISGL_MODE_SGIX 0x81A2 +#define GL_IGLOO_LMC_COLOR_SGIX 0x81A3 +#define GL_IGLOO_TMESHMODE_SGIX 0x81A4 +#define GL_LIGHT31 0xBEAD + +typedef void (GLAPIENTRY * PFNGLIGLOOINTERFACESGIXPROC) (GLenum pname, void *param); + +#define glIglooInterfaceSGIX GLEW_GET_FUN(__glewIglooInterfaceSGIX) + +#define GLEW_SGIX_igloo_interface GLEW_GET_VAR(__GLEW_SGIX_igloo_interface) + +#endif /* GL_SGIX_igloo_interface */ + +/* ----------------------- GL_SGIX_image_compression ----------------------- */ + +#ifndef GL_SGIX_image_compression +#define GL_SGIX_image_compression 1 + +#define GLEW_SGIX_image_compression GLEW_GET_VAR(__GLEW_SGIX_image_compression) + +#endif /* GL_SGIX_image_compression */ + +/* ---------------------- GL_SGIX_impact_pixel_texture --------------------- */ + +#ifndef GL_SGIX_impact_pixel_texture +#define GL_SGIX_impact_pixel_texture 1 + +#define GLEW_SGIX_impact_pixel_texture GLEW_GET_VAR(__GLEW_SGIX_impact_pixel_texture) + +#endif /* GL_SGIX_impact_pixel_texture */ + +/* ------------------------ GL_SGIX_instrument_error ----------------------- */ + +#ifndef GL_SGIX_instrument_error +#define GL_SGIX_instrument_error 1 + +#define GLEW_SGIX_instrument_error GLEW_GET_VAR(__GLEW_SGIX_instrument_error) + +#endif /* GL_SGIX_instrument_error */ + +/* --------------------------- GL_SGIX_interlace --------------------------- */ + +#ifndef GL_SGIX_interlace +#define GL_SGIX_interlace 1 + +#define GL_INTERLACE_SGIX 0x8094 + +#define GLEW_SGIX_interlace GLEW_GET_VAR(__GLEW_SGIX_interlace) + +#endif /* GL_SGIX_interlace */ + +/* ------------------------- GL_SGIX_ir_instrument1 ------------------------ */ + +#ifndef GL_SGIX_ir_instrument1 +#define GL_SGIX_ir_instrument1 1 + +#define GLEW_SGIX_ir_instrument1 GLEW_GET_VAR(__GLEW_SGIX_ir_instrument1) + +#endif /* GL_SGIX_ir_instrument1 */ + +/* ----------------------- GL_SGIX_line_quality_hint ----------------------- */ + +#ifndef GL_SGIX_line_quality_hint +#define GL_SGIX_line_quality_hint 1 + +#define GL_LINE_QUALITY_HINT_SGIX 0x835B + +#define GLEW_SGIX_line_quality_hint GLEW_GET_VAR(__GLEW_SGIX_line_quality_hint) + +#endif /* GL_SGIX_line_quality_hint */ + +/* ------------------------- GL_SGIX_list_priority ------------------------- */ + +#ifndef GL_SGIX_list_priority +#define GL_SGIX_list_priority 1 + +#define GLEW_SGIX_list_priority GLEW_GET_VAR(__GLEW_SGIX_list_priority) + +#endif /* GL_SGIX_list_priority */ + +/* ----------------------------- GL_SGIX_mpeg1 ----------------------------- */ + +#ifndef GL_SGIX_mpeg1 +#define GL_SGIX_mpeg1 1 + +typedef void (GLAPIENTRY * PFNGLALLOCMPEGPREDICTORSSGIXPROC) (GLsizei width, GLsizei height, GLsizei n, GLuint* predictors); +typedef void (GLAPIENTRY * PFNGLDELETEMPEGPREDICTORSSGIXPROC) (GLsizei n, GLuint* predictors); +typedef void (GLAPIENTRY * PFNGLGENMPEGPREDICTORSSGIXPROC) (GLsizei n, GLuint* predictors); +typedef void (GLAPIENTRY * PFNGLGETMPEGPARAMETERFVSGIXPROC) (GLenum target, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETMPEGPARAMETERIVSGIXPROC) (GLenum target, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETMPEGPREDICTORSGIXPROC) (GLenum target, GLenum format, GLenum type, void *pixels); +typedef void (GLAPIENTRY * PFNGLGETMPEGQUANTTABLEUBVPROC) (GLenum target, GLubyte* values); +typedef GLboolean (GLAPIENTRY * PFNGLISMPEGPREDICTORSGIXPROC) (GLuint predictor); +typedef void (GLAPIENTRY * PFNGLMPEGPREDICTORSGIXPROC) (GLenum target, GLenum format, GLenum type, void *pixels); +typedef void (GLAPIENTRY * PFNGLMPEGQUANTTABLEUBVPROC) (GLenum target, GLubyte* values); +typedef void (GLAPIENTRY * PFNGLSWAPMPEGPREDICTORSSGIXPROC) (GLenum target0, GLenum target1); + +#define glAllocMPEGPredictorsSGIX GLEW_GET_FUN(__glewAllocMPEGPredictorsSGIX) +#define glDeleteMPEGPredictorsSGIX GLEW_GET_FUN(__glewDeleteMPEGPredictorsSGIX) +#define glGenMPEGPredictorsSGIX GLEW_GET_FUN(__glewGenMPEGPredictorsSGIX) +#define glGetMPEGParameterfvSGIX GLEW_GET_FUN(__glewGetMPEGParameterfvSGIX) +#define glGetMPEGParameterivSGIX GLEW_GET_FUN(__glewGetMPEGParameterivSGIX) +#define glGetMPEGPredictorSGIX GLEW_GET_FUN(__glewGetMPEGPredictorSGIX) +#define glGetMPEGQuantTableubv GLEW_GET_FUN(__glewGetMPEGQuantTableubv) +#define glIsMPEGPredictorSGIX GLEW_GET_FUN(__glewIsMPEGPredictorSGIX) +#define glMPEGPredictorSGIX GLEW_GET_FUN(__glewMPEGPredictorSGIX) +#define glMPEGQuantTableubv GLEW_GET_FUN(__glewMPEGQuantTableubv) +#define glSwapMPEGPredictorsSGIX GLEW_GET_FUN(__glewSwapMPEGPredictorsSGIX) + +#define GLEW_SGIX_mpeg1 GLEW_GET_VAR(__GLEW_SGIX_mpeg1) + +#endif /* GL_SGIX_mpeg1 */ + +/* ----------------------------- GL_SGIX_mpeg2 ----------------------------- */ + +#ifndef GL_SGIX_mpeg2 +#define GL_SGIX_mpeg2 1 + +#define GLEW_SGIX_mpeg2 GLEW_GET_VAR(__GLEW_SGIX_mpeg2) + +#endif /* GL_SGIX_mpeg2 */ + +/* ------------------ GL_SGIX_nonlinear_lighting_pervertex ----------------- */ + +#ifndef GL_SGIX_nonlinear_lighting_pervertex +#define GL_SGIX_nonlinear_lighting_pervertex 1 + +typedef void (GLAPIENTRY * PFNGLGETNONLINLIGHTFVSGIXPROC) (GLenum light, GLenum pname, GLint* terms, GLfloat *data); +typedef void (GLAPIENTRY * PFNGLGETNONLINMATERIALFVSGIXPROC) (GLenum face, GLenum pname, GLint* terms, const GLfloat *data); +typedef void (GLAPIENTRY * PFNGLNONLINLIGHTFVSGIXPROC) (GLenum light, GLenum pname, GLint terms, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLNONLINMATERIALFVSGIXPROC) (GLenum face, GLenum pname, GLint terms, const GLfloat* params); + +#define glGetNonlinLightfvSGIX GLEW_GET_FUN(__glewGetNonlinLightfvSGIX) +#define glGetNonlinMaterialfvSGIX GLEW_GET_FUN(__glewGetNonlinMaterialfvSGIX) +#define glNonlinLightfvSGIX GLEW_GET_FUN(__glewNonlinLightfvSGIX) +#define glNonlinMaterialfvSGIX GLEW_GET_FUN(__glewNonlinMaterialfvSGIX) + +#define GLEW_SGIX_nonlinear_lighting_pervertex GLEW_GET_VAR(__GLEW_SGIX_nonlinear_lighting_pervertex) + +#endif /* GL_SGIX_nonlinear_lighting_pervertex */ + +/* --------------------------- GL_SGIX_nurbs_eval -------------------------- */ + +#ifndef GL_SGIX_nurbs_eval +#define GL_SGIX_nurbs_eval 1 + +#define GL_MAP1_VERTEX_3_NURBS_SGIX 0x81CB +#define GL_MAP1_VERTEX_4_NURBS_SGIX 0x81CC +#define GL_MAP1_INDEX_NURBS_SGIX 0x81CD +#define GL_MAP1_COLOR_4_NURBS_SGIX 0x81CE +#define GL_MAP1_NORMAL_NURBS_SGIX 0x81CF +#define GL_MAP1_TEXTURE_COORD_1_NURBS_SGIX 0x81E0 +#define GL_MAP1_TEXTURE_COORD_2_NURBS_SGIX 0x81E1 +#define GL_MAP1_TEXTURE_COORD_3_NURBS_SGIX 0x81E2 +#define GL_MAP1_TEXTURE_COORD_4_NURBS_SGIX 0x81E3 +#define GL_MAP2_VERTEX_3_NURBS_SGIX 0x81E4 +#define GL_MAP2_VERTEX_4_NURBS_SGIX 0x81E5 +#define GL_MAP2_INDEX_NURBS_SGIX 0x81E6 +#define GL_MAP2_COLOR_4_NURBS_SGIX 0x81E7 +#define GL_MAP2_NORMAL_NURBS_SGIX 0x81E8 +#define GL_MAP2_TEXTURE_COORD_1_NURBS_SGIX 0x81E9 +#define GL_MAP2_TEXTURE_COORD_2_NURBS_SGIX 0x81EA +#define GL_MAP2_TEXTURE_COORD_3_NURBS_SGIX 0x81EB +#define GL_MAP2_TEXTURE_COORD_4_NURBS_SGIX 0x81EC +#define GL_NURBS_KNOT_COUNT_SGIX 0x81ED +#define GL_NURBS_KNOT_VECTOR_SGIX 0x81EE + +#define GLEW_SGIX_nurbs_eval GLEW_GET_VAR(__GLEW_SGIX_nurbs_eval) + +#endif /* GL_SGIX_nurbs_eval */ + +/* ---------------------- GL_SGIX_occlusion_instrument --------------------- */ + +#ifndef GL_SGIX_occlusion_instrument +#define GL_SGIX_occlusion_instrument 1 + +#define GL_OCCLUSION_INSTRUMENT_SGIX 0x6060 + +#define GLEW_SGIX_occlusion_instrument GLEW_GET_VAR(__GLEW_SGIX_occlusion_instrument) + +#endif /* GL_SGIX_occlusion_instrument */ + +/* ------------------------- GL_SGIX_packed_6bytes ------------------------- */ + +#ifndef GL_SGIX_packed_6bytes +#define GL_SGIX_packed_6bytes 1 + +#define GLEW_SGIX_packed_6bytes GLEW_GET_VAR(__GLEW_SGIX_packed_6bytes) + +#endif /* GL_SGIX_packed_6bytes */ + +/* ------------------------- GL_SGIX_pixel_texture ------------------------- */ + +#ifndef GL_SGIX_pixel_texture +#define GL_SGIX_pixel_texture 1 + +typedef void (GLAPIENTRY * PFNGLPIXELTEXGENSGIXPROC) (GLenum mode); + +#define glPixelTexGenSGIX GLEW_GET_FUN(__glewPixelTexGenSGIX) + +#define GLEW_SGIX_pixel_texture GLEW_GET_VAR(__GLEW_SGIX_pixel_texture) + +#endif /* GL_SGIX_pixel_texture */ + +/* ----------------------- GL_SGIX_pixel_texture_bits ---------------------- */ + +#ifndef GL_SGIX_pixel_texture_bits +#define GL_SGIX_pixel_texture_bits 1 + +#define GLEW_SGIX_pixel_texture_bits GLEW_GET_VAR(__GLEW_SGIX_pixel_texture_bits) + +#endif /* GL_SGIX_pixel_texture_bits */ + +/* ----------------------- GL_SGIX_pixel_texture_lod ----------------------- */ + +#ifndef GL_SGIX_pixel_texture_lod +#define GL_SGIX_pixel_texture_lod 1 + +#define GLEW_SGIX_pixel_texture_lod GLEW_GET_VAR(__GLEW_SGIX_pixel_texture_lod) + +#endif /* GL_SGIX_pixel_texture_lod */ + +/* -------------------------- GL_SGIX_pixel_tiles -------------------------- */ + +#ifndef GL_SGIX_pixel_tiles +#define GL_SGIX_pixel_tiles 1 + +#define GLEW_SGIX_pixel_tiles GLEW_GET_VAR(__GLEW_SGIX_pixel_tiles) + +#endif /* GL_SGIX_pixel_tiles */ + +/* ------------------------- GL_SGIX_polynomial_ffd ------------------------ */ + +#ifndef GL_SGIX_polynomial_ffd +#define GL_SGIX_polynomial_ffd 1 + +#define GL_TEXTURE_DEFORMATION_BIT_SGIX 0x1 +#define GL_GEOMETRY_DEFORMATION_BIT_SGIX 0x2 + +typedef void (GLAPIENTRY * PFNGLDEFORMSGIXPROC) (GLbitfield mask); +typedef void (GLAPIENTRY * PFNGLLOADIDENTITYDEFORMATIONMAPSGIXPROC) (GLbitfield mask); + +#define glDeformSGIX GLEW_GET_FUN(__glewDeformSGIX) +#define glLoadIdentityDeformationMapSGIX GLEW_GET_FUN(__glewLoadIdentityDeformationMapSGIX) + +#define GLEW_SGIX_polynomial_ffd GLEW_GET_VAR(__GLEW_SGIX_polynomial_ffd) + +#endif /* GL_SGIX_polynomial_ffd */ + +/* --------------------------- GL_SGIX_quad_mesh --------------------------- */ + +#ifndef GL_SGIX_quad_mesh +#define GL_SGIX_quad_mesh 1 + +typedef void (GLAPIENTRY * PFNGLMESHBREADTHSGIXPROC) (GLint breadth); +typedef void (GLAPIENTRY * PFNGLMESHSTRIDESGIXPROC) (GLint stride); + +#define glMeshBreadthSGIX GLEW_GET_FUN(__glewMeshBreadthSGIX) +#define glMeshStrideSGIX GLEW_GET_FUN(__glewMeshStrideSGIX) + +#define GLEW_SGIX_quad_mesh GLEW_GET_VAR(__GLEW_SGIX_quad_mesh) + +#endif /* GL_SGIX_quad_mesh */ + +/* ------------------------ GL_SGIX_reference_plane ------------------------ */ + +#ifndef GL_SGIX_reference_plane +#define GL_SGIX_reference_plane 1 + +typedef void (GLAPIENTRY * PFNGLREFERENCEPLANESGIXPROC) (const GLdouble* equation); + +#define glReferencePlaneSGIX GLEW_GET_FUN(__glewReferencePlaneSGIX) + +#define GLEW_SGIX_reference_plane GLEW_GET_VAR(__GLEW_SGIX_reference_plane) + +#endif /* GL_SGIX_reference_plane */ + +/* ---------------------------- GL_SGIX_resample --------------------------- */ + +#ifndef GL_SGIX_resample +#define GL_SGIX_resample 1 + +#define GL_PACK_RESAMPLE_SGIX 0x842E +#define GL_UNPACK_RESAMPLE_SGIX 0x842F +#define GL_RESAMPLE_DECIMATE_SGIX 0x8430 +#define GL_RESAMPLE_REPLICATE_SGIX 0x8433 +#define GL_RESAMPLE_ZERO_FILL_SGIX 0x8434 + +#define GLEW_SGIX_resample GLEW_GET_VAR(__GLEW_SGIX_resample) + +#endif /* GL_SGIX_resample */ + +/* ------------------------- GL_SGIX_scalebias_hint ------------------------ */ + +#ifndef GL_SGIX_scalebias_hint +#define GL_SGIX_scalebias_hint 1 + +#define GL_SCALEBIAS_HINT_SGIX 0x8322 + +#define GLEW_SGIX_scalebias_hint GLEW_GET_VAR(__GLEW_SGIX_scalebias_hint) + +#endif /* GL_SGIX_scalebias_hint */ + +/* ----------------------------- GL_SGIX_shadow ---------------------------- */ + +#ifndef GL_SGIX_shadow +#define GL_SGIX_shadow 1 + +#define GL_TEXTURE_COMPARE_SGIX 0x819A +#define GL_TEXTURE_COMPARE_OPERATOR_SGIX 0x819B +#define GL_TEXTURE_LEQUAL_R_SGIX 0x819C +#define GL_TEXTURE_GEQUAL_R_SGIX 0x819D + +#define GLEW_SGIX_shadow GLEW_GET_VAR(__GLEW_SGIX_shadow) + +#endif /* GL_SGIX_shadow */ + +/* ------------------------- GL_SGIX_shadow_ambient ------------------------ */ + +#ifndef GL_SGIX_shadow_ambient +#define GL_SGIX_shadow_ambient 1 + +#define GL_SHADOW_AMBIENT_SGIX 0x80BF + +#define GLEW_SGIX_shadow_ambient GLEW_GET_VAR(__GLEW_SGIX_shadow_ambient) + +#endif /* GL_SGIX_shadow_ambient */ + +/* ------------------------------ GL_SGIX_slim ----------------------------- */ + +#ifndef GL_SGIX_slim +#define GL_SGIX_slim 1 + +#define GL_PACK_MAX_COMPRESSED_SIZE_SGIX 0x831B +#define GL_SLIM8U_SGIX 0x831D +#define GL_SLIM10U_SGIX 0x831E +#define GL_SLIM12S_SGIX 0x831F + +#define GLEW_SGIX_slim GLEW_GET_VAR(__GLEW_SGIX_slim) + +#endif /* GL_SGIX_slim */ + +/* ------------------------ GL_SGIX_spotlight_cutoff ----------------------- */ + +#ifndef GL_SGIX_spotlight_cutoff +#define GL_SGIX_spotlight_cutoff 1 + +#define GL_SPOT_CUTOFF_DELTA_SGIX 0x8193 + +#define GLEW_SGIX_spotlight_cutoff GLEW_GET_VAR(__GLEW_SGIX_spotlight_cutoff) + +#endif /* GL_SGIX_spotlight_cutoff */ + +/* ----------------------------- GL_SGIX_sprite ---------------------------- */ + +#ifndef GL_SGIX_sprite +#define GL_SGIX_sprite 1 + +typedef void (GLAPIENTRY * PFNGLSPRITEPARAMETERFSGIXPROC) (GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLSPRITEPARAMETERFVSGIXPROC) (GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLSPRITEPARAMETERISGIXPROC) (GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLSPRITEPARAMETERIVSGIXPROC) (GLenum pname, GLint* params); + +#define glSpriteParameterfSGIX GLEW_GET_FUN(__glewSpriteParameterfSGIX) +#define glSpriteParameterfvSGIX GLEW_GET_FUN(__glewSpriteParameterfvSGIX) +#define glSpriteParameteriSGIX GLEW_GET_FUN(__glewSpriteParameteriSGIX) +#define glSpriteParameterivSGIX GLEW_GET_FUN(__glewSpriteParameterivSGIX) + +#define GLEW_SGIX_sprite GLEW_GET_VAR(__GLEW_SGIX_sprite) + +#endif /* GL_SGIX_sprite */ + +/* -------------------------- GL_SGIX_subdiv_patch ------------------------- */ + +#ifndef GL_SGIX_subdiv_patch +#define GL_SGIX_subdiv_patch 1 + +#define GLEW_SGIX_subdiv_patch GLEW_GET_VAR(__GLEW_SGIX_subdiv_patch) + +#endif /* GL_SGIX_subdiv_patch */ + +/* --------------------------- GL_SGIX_subsample --------------------------- */ + +#ifndef GL_SGIX_subsample +#define GL_SGIX_subsample 1 + +#define GL_PACK_SUBSAMPLE_RATE_SGIX 0x85A0 +#define GL_UNPACK_SUBSAMPLE_RATE_SGIX 0x85A1 +#define GL_PIXEL_SUBSAMPLE_4444_SGIX 0x85A2 +#define GL_PIXEL_SUBSAMPLE_2424_SGIX 0x85A3 +#define GL_PIXEL_SUBSAMPLE_4242_SGIX 0x85A4 + +#define GLEW_SGIX_subsample GLEW_GET_VAR(__GLEW_SGIX_subsample) + +#endif /* GL_SGIX_subsample */ + +/* ----------------------- GL_SGIX_tag_sample_buffer ----------------------- */ + +#ifndef GL_SGIX_tag_sample_buffer +#define GL_SGIX_tag_sample_buffer 1 + +typedef void (GLAPIENTRY * PFNGLTAGSAMPLEBUFFERSGIXPROC) (void); + +#define glTagSampleBufferSGIX GLEW_GET_FUN(__glewTagSampleBufferSGIX) + +#define GLEW_SGIX_tag_sample_buffer GLEW_GET_VAR(__GLEW_SGIX_tag_sample_buffer) + +#endif /* GL_SGIX_tag_sample_buffer */ + +/* ------------------------ GL_SGIX_texture_add_env ------------------------ */ + +#ifndef GL_SGIX_texture_add_env +#define GL_SGIX_texture_add_env 1 + +#define GLEW_SGIX_texture_add_env GLEW_GET_VAR(__GLEW_SGIX_texture_add_env) + +#endif /* GL_SGIX_texture_add_env */ + +/* -------------------- GL_SGIX_texture_coordinate_clamp ------------------- */ + +#ifndef GL_SGIX_texture_coordinate_clamp +#define GL_SGIX_texture_coordinate_clamp 1 + +#define GL_TEXTURE_MAX_CLAMP_S_SGIX 0x8369 +#define GL_TEXTURE_MAX_CLAMP_T_SGIX 0x836A +#define GL_TEXTURE_MAX_CLAMP_R_SGIX 0x836B + +#define GLEW_SGIX_texture_coordinate_clamp GLEW_GET_VAR(__GLEW_SGIX_texture_coordinate_clamp) + +#endif /* GL_SGIX_texture_coordinate_clamp */ + +/* ------------------------ GL_SGIX_texture_lod_bias ----------------------- */ + +#ifndef GL_SGIX_texture_lod_bias +#define GL_SGIX_texture_lod_bias 1 + +#define GLEW_SGIX_texture_lod_bias GLEW_GET_VAR(__GLEW_SGIX_texture_lod_bias) + +#endif /* GL_SGIX_texture_lod_bias */ + +/* ------------------- GL_SGIX_texture_mipmap_anisotropic ------------------ */ + +#ifndef GL_SGIX_texture_mipmap_anisotropic +#define GL_SGIX_texture_mipmap_anisotropic 1 + +#define GL_TEXTURE_MIPMAP_ANISOTROPY_SGIX 0x832E +#define GL_MAX_MIPMAP_ANISOTROPY_SGIX 0x832F + +#define GLEW_SGIX_texture_mipmap_anisotropic GLEW_GET_VAR(__GLEW_SGIX_texture_mipmap_anisotropic) + +#endif /* GL_SGIX_texture_mipmap_anisotropic */ + +/* ---------------------- GL_SGIX_texture_multi_buffer --------------------- */ + +#ifndef GL_SGIX_texture_multi_buffer +#define GL_SGIX_texture_multi_buffer 1 + +#define GL_TEXTURE_MULTI_BUFFER_HINT_SGIX 0x812E + +#define GLEW_SGIX_texture_multi_buffer GLEW_GET_VAR(__GLEW_SGIX_texture_multi_buffer) + +#endif /* GL_SGIX_texture_multi_buffer */ + +/* ------------------------- GL_SGIX_texture_phase ------------------------- */ + +#ifndef GL_SGIX_texture_phase +#define GL_SGIX_texture_phase 1 + +#define GL_PHASE_SGIX 0x832A + +#define GLEW_SGIX_texture_phase GLEW_GET_VAR(__GLEW_SGIX_texture_phase) + +#endif /* GL_SGIX_texture_phase */ + +/* ------------------------- GL_SGIX_texture_range ------------------------- */ + +#ifndef GL_SGIX_texture_range +#define GL_SGIX_texture_range 1 + +#define GL_RGB_SIGNED_SGIX 0x85E0 +#define GL_RGBA_SIGNED_SGIX 0x85E1 +#define GL_ALPHA_SIGNED_SGIX 0x85E2 +#define GL_LUMINANCE_SIGNED_SGIX 0x85E3 +#define GL_INTENSITY_SIGNED_SGIX 0x85E4 +#define GL_LUMINANCE_ALPHA_SIGNED_SGIX 0x85E5 +#define GL_RGB16_SIGNED_SGIX 0x85E6 +#define GL_RGBA16_SIGNED_SGIX 0x85E7 +#define GL_ALPHA16_SIGNED_SGIX 0x85E8 +#define GL_LUMINANCE16_SIGNED_SGIX 0x85E9 +#define GL_INTENSITY16_SIGNED_SGIX 0x85EA +#define GL_LUMINANCE16_ALPHA16_SIGNED_SGIX 0x85EB +#define GL_RGB_EXTENDED_RANGE_SGIX 0x85EC +#define GL_RGBA_EXTENDED_RANGE_SGIX 0x85ED +#define GL_ALPHA_EXTENDED_RANGE_SGIX 0x85EE +#define GL_LUMINANCE_EXTENDED_RANGE_SGIX 0x85EF +#define GL_INTENSITY_EXTENDED_RANGE_SGIX 0x85F0 +#define GL_LUMINANCE_ALPHA_EXTENDED_RANGE_SGIX 0x85F1 +#define GL_RGB16_EXTENDED_RANGE_SGIX 0x85F2 +#define GL_RGBA16_EXTENDED_RANGE_SGIX 0x85F3 +#define GL_ALPHA16_EXTENDED_RANGE_SGIX 0x85F4 +#define GL_LUMINANCE16_EXTENDED_RANGE_SGIX 0x85F5 +#define GL_INTENSITY16_EXTENDED_RANGE_SGIX 0x85F6 +#define GL_LUMINANCE16_ALPHA16_EXTENDED_RANGE_SGIX 0x85F7 +#define GL_MIN_LUMINANCE_SGIS 0x85F8 +#define GL_MAX_LUMINANCE_SGIS 0x85F9 +#define GL_MIN_INTENSITY_SGIS 0x85FA +#define GL_MAX_INTENSITY_SGIS 0x85FB + +#define GLEW_SGIX_texture_range GLEW_GET_VAR(__GLEW_SGIX_texture_range) + +#endif /* GL_SGIX_texture_range */ + +/* ----------------------- GL_SGIX_texture_scale_bias ---------------------- */ + +#ifndef GL_SGIX_texture_scale_bias +#define GL_SGIX_texture_scale_bias 1 + +#define GL_POST_TEXTURE_FILTER_BIAS_SGIX 0x8179 +#define GL_POST_TEXTURE_FILTER_SCALE_SGIX 0x817A +#define GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX 0x817B +#define GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX 0x817C + +#define GLEW_SGIX_texture_scale_bias GLEW_GET_VAR(__GLEW_SGIX_texture_scale_bias) + +#endif /* GL_SGIX_texture_scale_bias */ + +/* ---------------------- GL_SGIX_texture_supersample ---------------------- */ + +#ifndef GL_SGIX_texture_supersample +#define GL_SGIX_texture_supersample 1 + +#define GLEW_SGIX_texture_supersample GLEW_GET_VAR(__GLEW_SGIX_texture_supersample) + +#endif /* GL_SGIX_texture_supersample */ + +/* --------------------------- GL_SGIX_vector_ops -------------------------- */ + +#ifndef GL_SGIX_vector_ops +#define GL_SGIX_vector_ops 1 + +typedef void (GLAPIENTRY * PFNGLGETVECTOROPERATIONSGIXPROC) (GLenum operation); +typedef void (GLAPIENTRY * PFNGLVECTOROPERATIONSGIXPROC) (GLenum operation); + +#define glGetVectorOperationSGIX GLEW_GET_FUN(__glewGetVectorOperationSGIX) +#define glVectorOperationSGIX GLEW_GET_FUN(__glewVectorOperationSGIX) + +#define GLEW_SGIX_vector_ops GLEW_GET_VAR(__GLEW_SGIX_vector_ops) + +#endif /* GL_SGIX_vector_ops */ + +/* ---------------------- GL_SGIX_vertex_array_object ---------------------- */ + +#ifndef GL_SGIX_vertex_array_object +#define GL_SGIX_vertex_array_object 1 + +typedef GLboolean (GLAPIENTRY * PFNGLAREVERTEXARRAYSRESIDENTSGIXPROC) (GLsizei n, const GLuint* arrays, GLboolean* residences); +typedef void (GLAPIENTRY * PFNGLBINDVERTEXARRAYSGIXPROC) (GLuint array); +typedef void (GLAPIENTRY * PFNGLDELETEVERTEXARRAYSSGIXPROC) (GLsizei n, const GLuint* arrays); +typedef void (GLAPIENTRY * PFNGLGENVERTEXARRAYSSGIXPROC) (GLsizei n, GLuint* arrays); +typedef GLboolean (GLAPIENTRY * PFNGLISVERTEXARRAYSGIXPROC) (GLuint array); +typedef void (GLAPIENTRY * PFNGLPRIORITIZEVERTEXARRAYSSGIXPROC) (GLsizei n, const GLuint* arrays, const GLclampf* priorities); + +#define glAreVertexArraysResidentSGIX GLEW_GET_FUN(__glewAreVertexArraysResidentSGIX) +#define glBindVertexArraySGIX GLEW_GET_FUN(__glewBindVertexArraySGIX) +#define glDeleteVertexArraysSGIX GLEW_GET_FUN(__glewDeleteVertexArraysSGIX) +#define glGenVertexArraysSGIX GLEW_GET_FUN(__glewGenVertexArraysSGIX) +#define glIsVertexArraySGIX GLEW_GET_FUN(__glewIsVertexArraySGIX) +#define glPrioritizeVertexArraysSGIX GLEW_GET_FUN(__glewPrioritizeVertexArraysSGIX) + +#define GLEW_SGIX_vertex_array_object GLEW_GET_VAR(__GLEW_SGIX_vertex_array_object) + +#endif /* GL_SGIX_vertex_array_object */ + +/* ------------------------- GL_SGIX_vertex_preclip ------------------------ */ + +#ifndef GL_SGIX_vertex_preclip +#define GL_SGIX_vertex_preclip 1 + +#define GL_VERTEX_PRECLIP_SGIX 0x83EE +#define GL_VERTEX_PRECLIP_HINT_SGIX 0x83EF + +#define GLEW_SGIX_vertex_preclip GLEW_GET_VAR(__GLEW_SGIX_vertex_preclip) + +#endif /* GL_SGIX_vertex_preclip */ + +/* ---------------------- GL_SGIX_vertex_preclip_hint ---------------------- */ + +#ifndef GL_SGIX_vertex_preclip_hint +#define GL_SGIX_vertex_preclip_hint 1 + +#define GL_VERTEX_PRECLIP_SGIX 0x83EE +#define GL_VERTEX_PRECLIP_HINT_SGIX 0x83EF + +#define GLEW_SGIX_vertex_preclip_hint GLEW_GET_VAR(__GLEW_SGIX_vertex_preclip_hint) + +#endif /* GL_SGIX_vertex_preclip_hint */ + +/* ----------------------------- GL_SGIX_ycrcb ----------------------------- */ + +#ifndef GL_SGIX_ycrcb +#define GL_SGIX_ycrcb 1 + +#define GLEW_SGIX_ycrcb GLEW_GET_VAR(__GLEW_SGIX_ycrcb) + +#endif /* GL_SGIX_ycrcb */ + +/* ------------------------ GL_SGIX_ycrcb_subsample ------------------------ */ + +#ifndef GL_SGIX_ycrcb_subsample +#define GL_SGIX_ycrcb_subsample 1 + +#define GLEW_SGIX_ycrcb_subsample GLEW_GET_VAR(__GLEW_SGIX_ycrcb_subsample) + +#endif /* GL_SGIX_ycrcb_subsample */ + +/* ----------------------------- GL_SGIX_ycrcba ---------------------------- */ + +#ifndef GL_SGIX_ycrcba +#define GL_SGIX_ycrcba 1 + +#define GL_YCRCB_SGIX 0x8318 +#define GL_YCRCBA_SGIX 0x8319 + +#define GLEW_SGIX_ycrcba GLEW_GET_VAR(__GLEW_SGIX_ycrcba) + +#endif /* GL_SGIX_ycrcba */ + +/* -------------------------- GL_SGI_color_matrix -------------------------- */ + +#ifndef GL_SGI_color_matrix +#define GL_SGI_color_matrix 1 + +#define GL_COLOR_MATRIX_SGI 0x80B1 +#define GL_COLOR_MATRIX_STACK_DEPTH_SGI 0x80B2 +#define GL_MAX_COLOR_MATRIX_STACK_DEPTH_SGI 0x80B3 +#define GL_POST_COLOR_MATRIX_RED_SCALE_SGI 0x80B4 +#define GL_POST_COLOR_MATRIX_GREEN_SCALE_SGI 0x80B5 +#define GL_POST_COLOR_MATRIX_BLUE_SCALE_SGI 0x80B6 +#define GL_POST_COLOR_MATRIX_ALPHA_SCALE_SGI 0x80B7 +#define GL_POST_COLOR_MATRIX_RED_BIAS_SGI 0x80B8 +#define GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI 0x80B9 +#define GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI 0x80BA +#define GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI 0x80BB + +#define GLEW_SGI_color_matrix GLEW_GET_VAR(__GLEW_SGI_color_matrix) + +#endif /* GL_SGI_color_matrix */ + +/* --------------------------- GL_SGI_color_table -------------------------- */ + +#ifndef GL_SGI_color_table +#define GL_SGI_color_table 1 + +#define GL_COLOR_TABLE_SGI 0x80D0 +#define GL_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D1 +#define GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D2 +#define GL_PROXY_COLOR_TABLE_SGI 0x80D3 +#define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI 0x80D4 +#define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI 0x80D5 +#define GL_COLOR_TABLE_SCALE_SGI 0x80D6 +#define GL_COLOR_TABLE_BIAS_SGI 0x80D7 +#define GL_COLOR_TABLE_FORMAT_SGI 0x80D8 +#define GL_COLOR_TABLE_WIDTH_SGI 0x80D9 +#define GL_COLOR_TABLE_RED_SIZE_SGI 0x80DA +#define GL_COLOR_TABLE_GREEN_SIZE_SGI 0x80DB +#define GL_COLOR_TABLE_BLUE_SIZE_SGI 0x80DC +#define GL_COLOR_TABLE_ALPHA_SIZE_SGI 0x80DD +#define GL_COLOR_TABLE_LUMINANCE_SIZE_SGI 0x80DE +#define GL_COLOR_TABLE_INTENSITY_SIZE_SGI 0x80DF + +typedef void (GLAPIENTRY * PFNGLCOLORTABLEPARAMETERFVSGIPROC) (GLenum target, GLenum pname, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLCOLORTABLEPARAMETERIVSGIPROC) (GLenum target, GLenum pname, const GLint* params); +typedef void (GLAPIENTRY * PFNGLCOLORTABLESGIPROC) (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *table); +typedef void (GLAPIENTRY * PFNGLCOPYCOLORTABLESGIPROC) (GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width); +typedef void (GLAPIENTRY * PFNGLGETCOLORTABLEPARAMETERFVSGIPROC) (GLenum target, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETCOLORTABLEPARAMETERIVSGIPROC) (GLenum target, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLGETCOLORTABLESGIPROC) (GLenum target, GLenum format, GLenum type, void *table); + +#define glColorTableParameterfvSGI GLEW_GET_FUN(__glewColorTableParameterfvSGI) +#define glColorTableParameterivSGI GLEW_GET_FUN(__glewColorTableParameterivSGI) +#define glColorTableSGI GLEW_GET_FUN(__glewColorTableSGI) +#define glCopyColorTableSGI GLEW_GET_FUN(__glewCopyColorTableSGI) +#define glGetColorTableParameterfvSGI GLEW_GET_FUN(__glewGetColorTableParameterfvSGI) +#define glGetColorTableParameterivSGI GLEW_GET_FUN(__glewGetColorTableParameterivSGI) +#define glGetColorTableSGI GLEW_GET_FUN(__glewGetColorTableSGI) + +#define GLEW_SGI_color_table GLEW_GET_VAR(__GLEW_SGI_color_table) + +#endif /* GL_SGI_color_table */ + +/* ----------------------------- GL_SGI_complex ---------------------------- */ + +#ifndef GL_SGI_complex +#define GL_SGI_complex 1 + +#define GLEW_SGI_complex GLEW_GET_VAR(__GLEW_SGI_complex) + +#endif /* GL_SGI_complex */ + +/* -------------------------- GL_SGI_complex_type -------------------------- */ + +#ifndef GL_SGI_complex_type +#define GL_SGI_complex_type 1 + +#define GL_COMPLEX_UNSIGNED_BYTE_SGI 0x81BD +#define GL_COMPLEX_BYTE_SGI 0x81BE +#define GL_COMPLEX_UNSIGNED_SHORT_SGI 0x81BF +#define GL_COMPLEX_SHORT_SGI 0x81C0 +#define GL_COMPLEX_UNSIGNED_INT_SGI 0x81C1 +#define GL_COMPLEX_INT_SGI 0x81C2 +#define GL_COMPLEX_FLOAT_SGI 0x81C3 + +#define GLEW_SGI_complex_type GLEW_GET_VAR(__GLEW_SGI_complex_type) + +#endif /* GL_SGI_complex_type */ + +/* ------------------------------- GL_SGI_fft ------------------------------ */ + +#ifndef GL_SGI_fft +#define GL_SGI_fft 1 + +#define GL_PIXEL_TRANSFORM_OPERATOR_SGI 0x81C4 +#define GL_CONVOLUTION_SGI 0x81C5 +#define GL_FFT_1D_SGI 0x81C6 +#define GL_PIXEL_TRANSFORM_SGI 0x81C7 +#define GL_MAX_FFT_WIDTH_SGI 0x81C8 + +typedef void (GLAPIENTRY * PFNGLGETPIXELTRANSFORMPARAMETERFVSGIPROC) (GLenum target, GLenum pname, GLfloat* params); +typedef void (GLAPIENTRY * PFNGLGETPIXELTRANSFORMPARAMETERIVSGIPROC) (GLenum target, GLenum pname, GLint* params); +typedef void (GLAPIENTRY * PFNGLPIXELTRANSFORMPARAMETERFSGIPROC) (GLenum target, GLenum pname, GLfloat param); +typedef void (GLAPIENTRY * PFNGLPIXELTRANSFORMPARAMETERFVSGIPROC) (GLenum target, GLenum pname, const GLfloat* params); +typedef void (GLAPIENTRY * PFNGLPIXELTRANSFORMPARAMETERISGIPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GLAPIENTRY * PFNGLPIXELTRANSFORMPARAMETERIVSGIPROC) (GLenum target, GLenum pname, const GLint* params); +typedef void (GLAPIENTRY * PFNGLPIXELTRANSFORMSGIPROC) (GLenum target); + +#define glGetPixelTransformParameterfvSGI GLEW_GET_FUN(__glewGetPixelTransformParameterfvSGI) +#define glGetPixelTransformParameterivSGI GLEW_GET_FUN(__glewGetPixelTransformParameterivSGI) +#define glPixelTransformParameterfSGI GLEW_GET_FUN(__glewPixelTransformParameterfSGI) +#define glPixelTransformParameterfvSGI GLEW_GET_FUN(__glewPixelTransformParameterfvSGI) +#define glPixelTransformParameteriSGI GLEW_GET_FUN(__glewPixelTransformParameteriSGI) +#define glPixelTransformParameterivSGI GLEW_GET_FUN(__glewPixelTransformParameterivSGI) +#define glPixelTransformSGI GLEW_GET_FUN(__glewPixelTransformSGI) + +#define GLEW_SGI_fft GLEW_GET_VAR(__GLEW_SGI_fft) + +#endif /* GL_SGI_fft */ + +/* ----------------------- GL_SGI_texture_color_table ---------------------- */ + +#ifndef GL_SGI_texture_color_table +#define GL_SGI_texture_color_table 1 + +#define GL_TEXTURE_COLOR_TABLE_SGI 0x80BC +#define GL_PROXY_TEXTURE_COLOR_TABLE_SGI 0x80BD + +#define GLEW_SGI_texture_color_table GLEW_GET_VAR(__GLEW_SGI_texture_color_table) + +#endif /* GL_SGI_texture_color_table */ + +/* ------------------------- GL_SUNX_constant_data ------------------------- */ + +#ifndef GL_SUNX_constant_data +#define GL_SUNX_constant_data 1 + +#define GL_UNPACK_CONSTANT_DATA_SUNX 0x81D5 +#define GL_TEXTURE_CONSTANT_DATA_SUNX 0x81D6 + +typedef void (GLAPIENTRY * PFNGLFINISHTEXTURESUNXPROC) (void); + +#define glFinishTextureSUNX GLEW_GET_FUN(__glewFinishTextureSUNX) + +#define GLEW_SUNX_constant_data GLEW_GET_VAR(__GLEW_SUNX_constant_data) + +#endif /* GL_SUNX_constant_data */ + +/* -------------------- GL_SUN_convolution_border_modes -------------------- */ + +#ifndef GL_SUN_convolution_border_modes +#define GL_SUN_convolution_border_modes 1 + +#define GL_WRAP_BORDER_SUN 0x81D4 + +#define GLEW_SUN_convolution_border_modes GLEW_GET_VAR(__GLEW_SUN_convolution_border_modes) + +#endif /* GL_SUN_convolution_border_modes */ + +/* -------------------------- GL_SUN_global_alpha -------------------------- */ + +#ifndef GL_SUN_global_alpha +#define GL_SUN_global_alpha 1 + +#define GL_GLOBAL_ALPHA_SUN 0x81D9 +#define GL_GLOBAL_ALPHA_FACTOR_SUN 0x81DA + +typedef void (GLAPIENTRY * PFNGLGLOBALALPHAFACTORBSUNPROC) (GLbyte factor); +typedef void (GLAPIENTRY * PFNGLGLOBALALPHAFACTORDSUNPROC) (GLdouble factor); +typedef void (GLAPIENTRY * PFNGLGLOBALALPHAFACTORFSUNPROC) (GLfloat factor); +typedef void (GLAPIENTRY * PFNGLGLOBALALPHAFACTORISUNPROC) (GLint factor); +typedef void (GLAPIENTRY * PFNGLGLOBALALPHAFACTORSSUNPROC) (GLshort factor); +typedef void (GLAPIENTRY * PFNGLGLOBALALPHAFACTORUBSUNPROC) (GLubyte factor); +typedef void (GLAPIENTRY * PFNGLGLOBALALPHAFACTORUISUNPROC) (GLuint factor); +typedef void (GLAPIENTRY * PFNGLGLOBALALPHAFACTORUSSUNPROC) (GLushort factor); + +#define glGlobalAlphaFactorbSUN GLEW_GET_FUN(__glewGlobalAlphaFactorbSUN) +#define glGlobalAlphaFactordSUN GLEW_GET_FUN(__glewGlobalAlphaFactordSUN) +#define glGlobalAlphaFactorfSUN GLEW_GET_FUN(__glewGlobalAlphaFactorfSUN) +#define glGlobalAlphaFactoriSUN GLEW_GET_FUN(__glewGlobalAlphaFactoriSUN) +#define glGlobalAlphaFactorsSUN GLEW_GET_FUN(__glewGlobalAlphaFactorsSUN) +#define glGlobalAlphaFactorubSUN GLEW_GET_FUN(__glewGlobalAlphaFactorubSUN) +#define glGlobalAlphaFactoruiSUN GLEW_GET_FUN(__glewGlobalAlphaFactoruiSUN) +#define glGlobalAlphaFactorusSUN GLEW_GET_FUN(__glewGlobalAlphaFactorusSUN) + +#define GLEW_SUN_global_alpha GLEW_GET_VAR(__GLEW_SUN_global_alpha) + +#endif /* GL_SUN_global_alpha */ + +/* --------------------------- GL_SUN_mesh_array --------------------------- */ + +#ifndef GL_SUN_mesh_array +#define GL_SUN_mesh_array 1 + +#define GL_QUAD_MESH_SUN 0x8614 +#define GL_TRIANGLE_MESH_SUN 0x8615 + +#define GLEW_SUN_mesh_array GLEW_GET_VAR(__GLEW_SUN_mesh_array) + +#endif /* GL_SUN_mesh_array */ + +/* ------------------------ GL_SUN_read_video_pixels ----------------------- */ + +#ifndef GL_SUN_read_video_pixels +#define GL_SUN_read_video_pixels 1 + +typedef void (GLAPIENTRY * PFNGLREADVIDEOPIXELSSUNPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void* pixels); + +#define glReadVideoPixelsSUN GLEW_GET_FUN(__glewReadVideoPixelsSUN) + +#define GLEW_SUN_read_video_pixels GLEW_GET_VAR(__GLEW_SUN_read_video_pixels) + +#endif /* GL_SUN_read_video_pixels */ + +/* --------------------------- GL_SUN_slice_accum -------------------------- */ + +#ifndef GL_SUN_slice_accum +#define GL_SUN_slice_accum 1 + +#define GL_SLICE_ACCUM_SUN 0x85CC + +#define GLEW_SUN_slice_accum GLEW_GET_VAR(__GLEW_SUN_slice_accum) + +#endif /* GL_SUN_slice_accum */ + +/* -------------------------- GL_SUN_triangle_list ------------------------- */ + +#ifndef GL_SUN_triangle_list +#define GL_SUN_triangle_list 1 + +#define GL_RESTART_SUN 0x01 +#define GL_REPLACE_MIDDLE_SUN 0x02 +#define GL_REPLACE_OLDEST_SUN 0x03 +#define GL_TRIANGLE_LIST_SUN 0x81D7 +#define GL_REPLACEMENT_CODE_SUN 0x81D8 +#define GL_REPLACEMENT_CODE_ARRAY_SUN 0x85C0 +#define GL_REPLACEMENT_CODE_ARRAY_TYPE_SUN 0x85C1 +#define GL_REPLACEMENT_CODE_ARRAY_STRIDE_SUN 0x85C2 +#define GL_REPLACEMENT_CODE_ARRAY_POINTER_SUN 0x85C3 +#define GL_R1UI_V3F_SUN 0x85C4 +#define GL_R1UI_C4UB_V3F_SUN 0x85C5 +#define GL_R1UI_C3F_V3F_SUN 0x85C6 +#define GL_R1UI_N3F_V3F_SUN 0x85C7 +#define GL_R1UI_C4F_N3F_V3F_SUN 0x85C8 +#define GL_R1UI_T2F_V3F_SUN 0x85C9 +#define GL_R1UI_T2F_N3F_V3F_SUN 0x85CA +#define GL_R1UI_T2F_C4F_N3F_V3F_SUN 0x85CB + +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEPOINTERSUNPROC) (GLenum type, GLsizei stride, const void *pointer); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUBSUNPROC) (GLubyte code); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUBVSUNPROC) (const GLubyte* code); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUISUNPROC) (GLuint code); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUIVSUNPROC) (const GLuint* code); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUSSUNPROC) (GLushort code); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUSVSUNPROC) (const GLushort* code); + +#define glReplacementCodePointerSUN GLEW_GET_FUN(__glewReplacementCodePointerSUN) +#define glReplacementCodeubSUN GLEW_GET_FUN(__glewReplacementCodeubSUN) +#define glReplacementCodeubvSUN GLEW_GET_FUN(__glewReplacementCodeubvSUN) +#define glReplacementCodeuiSUN GLEW_GET_FUN(__glewReplacementCodeuiSUN) +#define glReplacementCodeuivSUN GLEW_GET_FUN(__glewReplacementCodeuivSUN) +#define glReplacementCodeusSUN GLEW_GET_FUN(__glewReplacementCodeusSUN) +#define glReplacementCodeusvSUN GLEW_GET_FUN(__glewReplacementCodeusvSUN) + +#define GLEW_SUN_triangle_list GLEW_GET_VAR(__GLEW_SUN_triangle_list) + +#endif /* GL_SUN_triangle_list */ + +/* ----------------------------- GL_SUN_vertex ----------------------------- */ + +#ifndef GL_SUN_vertex +#define GL_SUN_vertex 1 + +typedef void (GLAPIENTRY * PFNGLCOLOR3FVERTEX3FSUNPROC) (GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLCOLOR3FVERTEX3FVSUNPROC) (const GLfloat* c, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat* c, const GLfloat *n, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLCOLOR4UBVERTEX2FSUNPROC) (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y); +typedef void (GLAPIENTRY * PFNGLCOLOR4UBVERTEX2FVSUNPROC) (const GLubyte* c, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLCOLOR4UBVERTEX3FSUNPROC) (GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLCOLOR4UBVERTEX3FVSUNPROC) (const GLubyte* c, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLNORMAL3FVERTEX3FSUNPROC) (GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLNORMAL3FVERTEX3FVSUNPROC) (const GLfloat* n, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FSUNPROC) (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FVSUNPROC) (const GLuint* rc, const GLfloat *c, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLuint* rc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FSUNPROC) (GLuint rc, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FVSUNPROC) (const GLuint* rc, const GLubyte *c, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FVSUNPROC) (const GLuint* rc, const GLfloat *n, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLuint* rc, const GLfloat *tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLuint* rc, const GLfloat *tc, const GLfloat *n, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FSUNPROC) (GLuint rc, GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FVSUNPROC) (const GLuint* rc, const GLfloat *tc, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUIVERTEX3FSUNPROC) (GLuint rc, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLREPLACEMENTCODEUIVERTEX3FVSUNPROC) (const GLuint* rc, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLTEXCOORD2FCOLOR3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLTEXCOORD2FCOLOR3FVERTEX3FVSUNPROC) (const GLfloat* tc, const GLfloat *c, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat* tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLTEXCOORD2FCOLOR4UBVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLubyte r, GLubyte g, GLubyte b, GLubyte a, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLTEXCOORD2FCOLOR4UBVERTEX3FVSUNPROC) (const GLfloat* tc, const GLubyte *c, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLTEXCOORD2FNORMAL3FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLTEXCOORD2FNORMAL3FVERTEX3FVSUNPROC) (const GLfloat* tc, const GLfloat *n, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLTEXCOORD2FVERTEX3FSUNPROC) (GLfloat s, GLfloat t, GLfloat x, GLfloat y, GLfloat z); +typedef void (GLAPIENTRY * PFNGLTEXCOORD2FVERTEX3FVSUNPROC) (const GLfloat* tc, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FSUNPROC) (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat r, GLfloat g, GLfloat b, GLfloat a, GLfloat nx, GLfloat ny, GLfloat nz, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (GLAPIENTRY * PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FVSUNPROC) (const GLfloat* tc, const GLfloat *c, const GLfloat *n, const GLfloat *v); +typedef void (GLAPIENTRY * PFNGLTEXCOORD4FVERTEX4FSUNPROC) (GLfloat s, GLfloat t, GLfloat p, GLfloat q, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (GLAPIENTRY * PFNGLTEXCOORD4FVERTEX4FVSUNPROC) (const GLfloat* tc, const GLfloat *v); + +#define glColor3fVertex3fSUN GLEW_GET_FUN(__glewColor3fVertex3fSUN) +#define glColor3fVertex3fvSUN GLEW_GET_FUN(__glewColor3fVertex3fvSUN) +#define glColor4fNormal3fVertex3fSUN GLEW_GET_FUN(__glewColor4fNormal3fVertex3fSUN) +#define glColor4fNormal3fVertex3fvSUN GLEW_GET_FUN(__glewColor4fNormal3fVertex3fvSUN) +#define glColor4ubVertex2fSUN GLEW_GET_FUN(__glewColor4ubVertex2fSUN) +#define glColor4ubVertex2fvSUN GLEW_GET_FUN(__glewColor4ubVertex2fvSUN) +#define glColor4ubVertex3fSUN GLEW_GET_FUN(__glewColor4ubVertex3fSUN) +#define glColor4ubVertex3fvSUN GLEW_GET_FUN(__glewColor4ubVertex3fvSUN) +#define glNormal3fVertex3fSUN GLEW_GET_FUN(__glewNormal3fVertex3fSUN) +#define glNormal3fVertex3fvSUN GLEW_GET_FUN(__glewNormal3fVertex3fvSUN) +#define glReplacementCodeuiColor3fVertex3fSUN GLEW_GET_FUN(__glewReplacementCodeuiColor3fVertex3fSUN) +#define glReplacementCodeuiColor3fVertex3fvSUN GLEW_GET_FUN(__glewReplacementCodeuiColor3fVertex3fvSUN) +#define glReplacementCodeuiColor4fNormal3fVertex3fSUN GLEW_GET_FUN(__glewReplacementCodeuiColor4fNormal3fVertex3fSUN) +#define glReplacementCodeuiColor4fNormal3fVertex3fvSUN GLEW_GET_FUN(__glewReplacementCodeuiColor4fNormal3fVertex3fvSUN) +#define glReplacementCodeuiColor4ubVertex3fSUN GLEW_GET_FUN(__glewReplacementCodeuiColor4ubVertex3fSUN) +#define glReplacementCodeuiColor4ubVertex3fvSUN GLEW_GET_FUN(__glewReplacementCodeuiColor4ubVertex3fvSUN) +#define glReplacementCodeuiNormal3fVertex3fSUN GLEW_GET_FUN(__glewReplacementCodeuiNormal3fVertex3fSUN) +#define glReplacementCodeuiNormal3fVertex3fvSUN GLEW_GET_FUN(__glewReplacementCodeuiNormal3fVertex3fvSUN) +#define glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN GLEW_GET_FUN(__glewReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN) +#define glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN GLEW_GET_FUN(__glewReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN) +#define glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN GLEW_GET_FUN(__glewReplacementCodeuiTexCoord2fNormal3fVertex3fSUN) +#define glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN GLEW_GET_FUN(__glewReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN) +#define glReplacementCodeuiTexCoord2fVertex3fSUN GLEW_GET_FUN(__glewReplacementCodeuiTexCoord2fVertex3fSUN) +#define glReplacementCodeuiTexCoord2fVertex3fvSUN GLEW_GET_FUN(__glewReplacementCodeuiTexCoord2fVertex3fvSUN) +#define glReplacementCodeuiVertex3fSUN GLEW_GET_FUN(__glewReplacementCodeuiVertex3fSUN) +#define glReplacementCodeuiVertex3fvSUN GLEW_GET_FUN(__glewReplacementCodeuiVertex3fvSUN) +#define glTexCoord2fColor3fVertex3fSUN GLEW_GET_FUN(__glewTexCoord2fColor3fVertex3fSUN) +#define glTexCoord2fColor3fVertex3fvSUN GLEW_GET_FUN(__glewTexCoord2fColor3fVertex3fvSUN) +#define glTexCoord2fColor4fNormal3fVertex3fSUN GLEW_GET_FUN(__glewTexCoord2fColor4fNormal3fVertex3fSUN) +#define glTexCoord2fColor4fNormal3fVertex3fvSUN GLEW_GET_FUN(__glewTexCoord2fColor4fNormal3fVertex3fvSUN) +#define glTexCoord2fColor4ubVertex3fSUN GLEW_GET_FUN(__glewTexCoord2fColor4ubVertex3fSUN) +#define glTexCoord2fColor4ubVertex3fvSUN GLEW_GET_FUN(__glewTexCoord2fColor4ubVertex3fvSUN) +#define glTexCoord2fNormal3fVertex3fSUN GLEW_GET_FUN(__glewTexCoord2fNormal3fVertex3fSUN) +#define glTexCoord2fNormal3fVertex3fvSUN GLEW_GET_FUN(__glewTexCoord2fNormal3fVertex3fvSUN) +#define glTexCoord2fVertex3fSUN GLEW_GET_FUN(__glewTexCoord2fVertex3fSUN) +#define glTexCoord2fVertex3fvSUN GLEW_GET_FUN(__glewTexCoord2fVertex3fvSUN) +#define glTexCoord4fColor4fNormal3fVertex4fSUN GLEW_GET_FUN(__glewTexCoord4fColor4fNormal3fVertex4fSUN) +#define glTexCoord4fColor4fNormal3fVertex4fvSUN GLEW_GET_FUN(__glewTexCoord4fColor4fNormal3fVertex4fvSUN) +#define glTexCoord4fVertex4fSUN GLEW_GET_FUN(__glewTexCoord4fVertex4fSUN) +#define glTexCoord4fVertex4fvSUN GLEW_GET_FUN(__glewTexCoord4fVertex4fvSUN) + +#define GLEW_SUN_vertex GLEW_GET_VAR(__GLEW_SUN_vertex) + +#endif /* GL_SUN_vertex */ + +/* -------------------------- GL_WIN_phong_shading ------------------------- */ + +#ifndef GL_WIN_phong_shading +#define GL_WIN_phong_shading 1 + +#define GL_PHONG_WIN 0x80EA +#define GL_PHONG_HINT_WIN 0x80EB + +#define GLEW_WIN_phong_shading GLEW_GET_VAR(__GLEW_WIN_phong_shading) + +#endif /* GL_WIN_phong_shading */ + +/* ------------------------- GL_WIN_scene_markerXXX ------------------------ */ + +#ifndef GL_WIN_scene_markerXXX +#define GL_WIN_scene_markerXXX 1 + +#define GLEW_WIN_scene_markerXXX GLEW_GET_VAR(__GLEW_WIN_scene_markerXXX) + +#endif /* GL_WIN_scene_markerXXX */ + +/* -------------------------- GL_WIN_specular_fog -------------------------- */ + +#ifndef GL_WIN_specular_fog +#define GL_WIN_specular_fog 1 + +#define GL_FOG_SPECULAR_TEXTURE_WIN 0x80EC + +#define GLEW_WIN_specular_fog GLEW_GET_VAR(__GLEW_WIN_specular_fog) + +#endif /* GL_WIN_specular_fog */ + +/* ---------------------------- GL_WIN_swap_hint --------------------------- */ + +#ifndef GL_WIN_swap_hint +#define GL_WIN_swap_hint 1 + +typedef void (GLAPIENTRY * PFNGLADDSWAPHINTRECTWINPROC) (GLint x, GLint y, GLsizei width, GLsizei height); + +#define glAddSwapHintRectWIN GLEW_GET_FUN(__glewAddSwapHintRectWIN) + +#define GLEW_WIN_swap_hint GLEW_GET_VAR(__GLEW_WIN_swap_hint) + +#endif /* GL_WIN_swap_hint */ + +/* ------------------------------------------------------------------------- */ + + + +GLEW_FUN_EXPORT PFNGLCOPYTEXSUBIMAGE3DPROC __glewCopyTexSubImage3D; +GLEW_FUN_EXPORT PFNGLDRAWRANGEELEMENTSPROC __glewDrawRangeElements; +GLEW_FUN_EXPORT PFNGLTEXIMAGE3DPROC __glewTexImage3D; +GLEW_FUN_EXPORT PFNGLTEXSUBIMAGE3DPROC __glewTexSubImage3D; + +GLEW_FUN_EXPORT PFNGLACTIVETEXTUREPROC __glewActiveTexture; +GLEW_FUN_EXPORT PFNGLCLIENTACTIVETEXTUREPROC __glewClientActiveTexture; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXIMAGE1DPROC __glewCompressedTexImage1D; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXIMAGE2DPROC __glewCompressedTexImage2D; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXIMAGE3DPROC __glewCompressedTexImage3D; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC __glewCompressedTexSubImage1D; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC __glewCompressedTexSubImage2D; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC __glewCompressedTexSubImage3D; +GLEW_FUN_EXPORT PFNGLGETCOMPRESSEDTEXIMAGEPROC __glewGetCompressedTexImage; +GLEW_FUN_EXPORT PFNGLLOADTRANSPOSEMATRIXDPROC __glewLoadTransposeMatrixd; +GLEW_FUN_EXPORT PFNGLLOADTRANSPOSEMATRIXFPROC __glewLoadTransposeMatrixf; +GLEW_FUN_EXPORT PFNGLMULTTRANSPOSEMATRIXDPROC __glewMultTransposeMatrixd; +GLEW_FUN_EXPORT PFNGLMULTTRANSPOSEMATRIXFPROC __glewMultTransposeMatrixf; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD1DPROC __glewMultiTexCoord1d; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD1DVPROC __glewMultiTexCoord1dv; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD1FPROC __glewMultiTexCoord1f; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD1FVPROC __glewMultiTexCoord1fv; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD1IPROC __glewMultiTexCoord1i; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD1IVPROC __glewMultiTexCoord1iv; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD1SPROC __glewMultiTexCoord1s; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD1SVPROC __glewMultiTexCoord1sv; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD2DPROC __glewMultiTexCoord2d; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD2DVPROC __glewMultiTexCoord2dv; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD2FPROC __glewMultiTexCoord2f; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD2FVPROC __glewMultiTexCoord2fv; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD2IPROC __glewMultiTexCoord2i; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD2IVPROC __glewMultiTexCoord2iv; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD2SPROC __glewMultiTexCoord2s; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD2SVPROC __glewMultiTexCoord2sv; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD3DPROC __glewMultiTexCoord3d; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD3DVPROC __glewMultiTexCoord3dv; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD3FPROC __glewMultiTexCoord3f; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD3FVPROC __glewMultiTexCoord3fv; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD3IPROC __glewMultiTexCoord3i; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD3IVPROC __glewMultiTexCoord3iv; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD3SPROC __glewMultiTexCoord3s; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD3SVPROC __glewMultiTexCoord3sv; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD4DPROC __glewMultiTexCoord4d; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD4DVPROC __glewMultiTexCoord4dv; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD4FPROC __glewMultiTexCoord4f; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD4FVPROC __glewMultiTexCoord4fv; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD4IPROC __glewMultiTexCoord4i; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD4IVPROC __glewMultiTexCoord4iv; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD4SPROC __glewMultiTexCoord4s; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD4SVPROC __glewMultiTexCoord4sv; +GLEW_FUN_EXPORT PFNGLSAMPLECOVERAGEPROC __glewSampleCoverage; + +GLEW_FUN_EXPORT PFNGLBLENDCOLORPROC __glewBlendColor; +GLEW_FUN_EXPORT PFNGLBLENDEQUATIONPROC __glewBlendEquation; +GLEW_FUN_EXPORT PFNGLBLENDFUNCSEPARATEPROC __glewBlendFuncSeparate; +GLEW_FUN_EXPORT PFNGLFOGCOORDPOINTERPROC __glewFogCoordPointer; +GLEW_FUN_EXPORT PFNGLFOGCOORDDPROC __glewFogCoordd; +GLEW_FUN_EXPORT PFNGLFOGCOORDDVPROC __glewFogCoorddv; +GLEW_FUN_EXPORT PFNGLFOGCOORDFPROC __glewFogCoordf; +GLEW_FUN_EXPORT PFNGLFOGCOORDFVPROC __glewFogCoordfv; +GLEW_FUN_EXPORT PFNGLMULTIDRAWARRAYSPROC __glewMultiDrawArrays; +GLEW_FUN_EXPORT PFNGLMULTIDRAWELEMENTSPROC __glewMultiDrawElements; +GLEW_FUN_EXPORT PFNGLPOINTPARAMETERFPROC __glewPointParameterf; +GLEW_FUN_EXPORT PFNGLPOINTPARAMETERFVPROC __glewPointParameterfv; +GLEW_FUN_EXPORT PFNGLPOINTPARAMETERIPROC __glewPointParameteri; +GLEW_FUN_EXPORT PFNGLPOINTPARAMETERIVPROC __glewPointParameteriv; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3BPROC __glewSecondaryColor3b; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3BVPROC __glewSecondaryColor3bv; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3DPROC __glewSecondaryColor3d; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3DVPROC __glewSecondaryColor3dv; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3FPROC __glewSecondaryColor3f; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3FVPROC __glewSecondaryColor3fv; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3IPROC __glewSecondaryColor3i; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3IVPROC __glewSecondaryColor3iv; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3SPROC __glewSecondaryColor3s; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3SVPROC __glewSecondaryColor3sv; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3UBPROC __glewSecondaryColor3ub; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3UBVPROC __glewSecondaryColor3ubv; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3UIPROC __glewSecondaryColor3ui; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3UIVPROC __glewSecondaryColor3uiv; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3USPROC __glewSecondaryColor3us; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3USVPROC __glewSecondaryColor3usv; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLORPOINTERPROC __glewSecondaryColorPointer; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2DPROC __glewWindowPos2d; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2DVPROC __glewWindowPos2dv; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2FPROC __glewWindowPos2f; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2FVPROC __glewWindowPos2fv; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2IPROC __glewWindowPos2i; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2IVPROC __glewWindowPos2iv; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2SPROC __glewWindowPos2s; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2SVPROC __glewWindowPos2sv; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3DPROC __glewWindowPos3d; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3DVPROC __glewWindowPos3dv; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3FPROC __glewWindowPos3f; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3FVPROC __glewWindowPos3fv; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3IPROC __glewWindowPos3i; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3IVPROC __glewWindowPos3iv; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3SPROC __glewWindowPos3s; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3SVPROC __glewWindowPos3sv; + +GLEW_FUN_EXPORT PFNGLBEGINQUERYPROC __glewBeginQuery; +GLEW_FUN_EXPORT PFNGLBINDBUFFERPROC __glewBindBuffer; +GLEW_FUN_EXPORT PFNGLBUFFERDATAPROC __glewBufferData; +GLEW_FUN_EXPORT PFNGLBUFFERSUBDATAPROC __glewBufferSubData; +GLEW_FUN_EXPORT PFNGLDELETEBUFFERSPROC __glewDeleteBuffers; +GLEW_FUN_EXPORT PFNGLDELETEQUERIESPROC __glewDeleteQueries; +GLEW_FUN_EXPORT PFNGLENDQUERYPROC __glewEndQuery; +GLEW_FUN_EXPORT PFNGLGENBUFFERSPROC __glewGenBuffers; +GLEW_FUN_EXPORT PFNGLGENQUERIESPROC __glewGenQueries; +GLEW_FUN_EXPORT PFNGLGETBUFFERPARAMETERIVPROC __glewGetBufferParameteriv; +GLEW_FUN_EXPORT PFNGLGETBUFFERPOINTERVPROC __glewGetBufferPointerv; +GLEW_FUN_EXPORT PFNGLGETBUFFERSUBDATAPROC __glewGetBufferSubData; +GLEW_FUN_EXPORT PFNGLGETQUERYOBJECTIVPROC __glewGetQueryObjectiv; +GLEW_FUN_EXPORT PFNGLGETQUERYOBJECTUIVPROC __glewGetQueryObjectuiv; +GLEW_FUN_EXPORT PFNGLGETQUERYIVPROC __glewGetQueryiv; +GLEW_FUN_EXPORT PFNGLISBUFFERPROC __glewIsBuffer; +GLEW_FUN_EXPORT PFNGLISQUERYPROC __glewIsQuery; +GLEW_FUN_EXPORT PFNGLMAPBUFFERPROC __glewMapBuffer; +GLEW_FUN_EXPORT PFNGLUNMAPBUFFERPROC __glewUnmapBuffer; + +GLEW_FUN_EXPORT PFNGLATTACHSHADERPROC __glewAttachShader; +GLEW_FUN_EXPORT PFNGLBINDATTRIBLOCATIONPROC __glewBindAttribLocation; +GLEW_FUN_EXPORT PFNGLBLENDEQUATIONSEPARATEPROC __glewBlendEquationSeparate; +GLEW_FUN_EXPORT PFNGLCOMPILESHADERPROC __glewCompileShader; +GLEW_FUN_EXPORT PFNGLCREATEPROGRAMPROC __glewCreateProgram; +GLEW_FUN_EXPORT PFNGLCREATESHADERPROC __glewCreateShader; +GLEW_FUN_EXPORT PFNGLDELETEPROGRAMPROC __glewDeleteProgram; +GLEW_FUN_EXPORT PFNGLDELETESHADERPROC __glewDeleteShader; +GLEW_FUN_EXPORT PFNGLDETACHSHADERPROC __glewDetachShader; +GLEW_FUN_EXPORT PFNGLDISABLEVERTEXATTRIBARRAYPROC __glewDisableVertexAttribArray; +GLEW_FUN_EXPORT PFNGLDRAWBUFFERSPROC __glewDrawBuffers; +GLEW_FUN_EXPORT PFNGLENABLEVERTEXATTRIBARRAYPROC __glewEnableVertexAttribArray; +GLEW_FUN_EXPORT PFNGLGETACTIVEATTRIBPROC __glewGetActiveAttrib; +GLEW_FUN_EXPORT PFNGLGETACTIVEUNIFORMPROC __glewGetActiveUniform; +GLEW_FUN_EXPORT PFNGLGETATTACHEDSHADERSPROC __glewGetAttachedShaders; +GLEW_FUN_EXPORT PFNGLGETATTRIBLOCATIONPROC __glewGetAttribLocation; +GLEW_FUN_EXPORT PFNGLGETPROGRAMINFOLOGPROC __glewGetProgramInfoLog; +GLEW_FUN_EXPORT PFNGLGETPROGRAMIVPROC __glewGetProgramiv; +GLEW_FUN_EXPORT PFNGLGETSHADERINFOLOGPROC __glewGetShaderInfoLog; +GLEW_FUN_EXPORT PFNGLGETSHADERSOURCEPROC __glewGetShaderSource; +GLEW_FUN_EXPORT PFNGLGETSHADERIVPROC __glewGetShaderiv; +GLEW_FUN_EXPORT PFNGLGETUNIFORMLOCATIONPROC __glewGetUniformLocation; +GLEW_FUN_EXPORT PFNGLGETUNIFORMFVPROC __glewGetUniformfv; +GLEW_FUN_EXPORT PFNGLGETUNIFORMIVPROC __glewGetUniformiv; +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBPOINTERVPROC __glewGetVertexAttribPointerv; +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBDVPROC __glewGetVertexAttribdv; +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBFVPROC __glewGetVertexAttribfv; +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBIVPROC __glewGetVertexAttribiv; +GLEW_FUN_EXPORT PFNGLISPROGRAMPROC __glewIsProgram; +GLEW_FUN_EXPORT PFNGLISSHADERPROC __glewIsShader; +GLEW_FUN_EXPORT PFNGLLINKPROGRAMPROC __glewLinkProgram; +GLEW_FUN_EXPORT PFNGLSHADERSOURCEPROC __glewShaderSource; +GLEW_FUN_EXPORT PFNGLSTENCILFUNCSEPARATEPROC __glewStencilFuncSeparate; +GLEW_FUN_EXPORT PFNGLSTENCILMASKSEPARATEPROC __glewStencilMaskSeparate; +GLEW_FUN_EXPORT PFNGLSTENCILOPSEPARATEPROC __glewStencilOpSeparate; +GLEW_FUN_EXPORT PFNGLUNIFORM1FPROC __glewUniform1f; +GLEW_FUN_EXPORT PFNGLUNIFORM1FVPROC __glewUniform1fv; +GLEW_FUN_EXPORT PFNGLUNIFORM1IPROC __glewUniform1i; +GLEW_FUN_EXPORT PFNGLUNIFORM1IVPROC __glewUniform1iv; +GLEW_FUN_EXPORT PFNGLUNIFORM2FPROC __glewUniform2f; +GLEW_FUN_EXPORT PFNGLUNIFORM2FVPROC __glewUniform2fv; +GLEW_FUN_EXPORT PFNGLUNIFORM2IPROC __glewUniform2i; +GLEW_FUN_EXPORT PFNGLUNIFORM2IVPROC __glewUniform2iv; +GLEW_FUN_EXPORT PFNGLUNIFORM3FPROC __glewUniform3f; +GLEW_FUN_EXPORT PFNGLUNIFORM3FVPROC __glewUniform3fv; +GLEW_FUN_EXPORT PFNGLUNIFORM3IPROC __glewUniform3i; +GLEW_FUN_EXPORT PFNGLUNIFORM3IVPROC __glewUniform3iv; +GLEW_FUN_EXPORT PFNGLUNIFORM4FPROC __glewUniform4f; +GLEW_FUN_EXPORT PFNGLUNIFORM4FVPROC __glewUniform4fv; +GLEW_FUN_EXPORT PFNGLUNIFORM4IPROC __glewUniform4i; +GLEW_FUN_EXPORT PFNGLUNIFORM4IVPROC __glewUniform4iv; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX2FVPROC __glewUniformMatrix2fv; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX3FVPROC __glewUniformMatrix3fv; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX4FVPROC __glewUniformMatrix4fv; +GLEW_FUN_EXPORT PFNGLUSEPROGRAMPROC __glewUseProgram; +GLEW_FUN_EXPORT PFNGLVALIDATEPROGRAMPROC __glewValidateProgram; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1DPROC __glewVertexAttrib1d; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1DVPROC __glewVertexAttrib1dv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1FPROC __glewVertexAttrib1f; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1FVPROC __glewVertexAttrib1fv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1SPROC __glewVertexAttrib1s; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1SVPROC __glewVertexAttrib1sv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2DPROC __glewVertexAttrib2d; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2DVPROC __glewVertexAttrib2dv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2FPROC __glewVertexAttrib2f; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2FVPROC __glewVertexAttrib2fv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2SPROC __glewVertexAttrib2s; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2SVPROC __glewVertexAttrib2sv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3DPROC __glewVertexAttrib3d; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3DVPROC __glewVertexAttrib3dv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3FPROC __glewVertexAttrib3f; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3FVPROC __glewVertexAttrib3fv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3SPROC __glewVertexAttrib3s; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3SVPROC __glewVertexAttrib3sv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4NBVPROC __glewVertexAttrib4Nbv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4NIVPROC __glewVertexAttrib4Niv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4NSVPROC __glewVertexAttrib4Nsv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4NUBPROC __glewVertexAttrib4Nub; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4NUBVPROC __glewVertexAttrib4Nubv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4NUIVPROC __glewVertexAttrib4Nuiv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4NUSVPROC __glewVertexAttrib4Nusv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4BVPROC __glewVertexAttrib4bv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4DPROC __glewVertexAttrib4d; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4DVPROC __glewVertexAttrib4dv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4FPROC __glewVertexAttrib4f; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4FVPROC __glewVertexAttrib4fv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4IVPROC __glewVertexAttrib4iv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4SPROC __glewVertexAttrib4s; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4SVPROC __glewVertexAttrib4sv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4UBVPROC __glewVertexAttrib4ubv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4UIVPROC __glewVertexAttrib4uiv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4USVPROC __glewVertexAttrib4usv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBPOINTERPROC __glewVertexAttribPointer; + +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX2X3FVPROC __glewUniformMatrix2x3fv; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX2X4FVPROC __glewUniformMatrix2x4fv; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX3X2FVPROC __glewUniformMatrix3x2fv; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX3X4FVPROC __glewUniformMatrix3x4fv; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX4X2FVPROC __glewUniformMatrix4x2fv; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX4X3FVPROC __glewUniformMatrix4x3fv; + +GLEW_FUN_EXPORT PFNGLBEGINCONDITIONALRENDERPROC __glewBeginConditionalRender; +GLEW_FUN_EXPORT PFNGLBEGINTRANSFORMFEEDBACKPROC __glewBeginTransformFeedback; +GLEW_FUN_EXPORT PFNGLBINDFRAGDATALOCATIONPROC __glewBindFragDataLocation; +GLEW_FUN_EXPORT PFNGLCLAMPCOLORPROC __glewClampColor; +GLEW_FUN_EXPORT PFNGLCLEARBUFFERFIPROC __glewClearBufferfi; +GLEW_FUN_EXPORT PFNGLCLEARBUFFERFVPROC __glewClearBufferfv; +GLEW_FUN_EXPORT PFNGLCLEARBUFFERIVPROC __glewClearBufferiv; +GLEW_FUN_EXPORT PFNGLCLEARBUFFERUIVPROC __glewClearBufferuiv; +GLEW_FUN_EXPORT PFNGLCOLORMASKIPROC __glewColorMaski; +GLEW_FUN_EXPORT PFNGLDISABLEIPROC __glewDisablei; +GLEW_FUN_EXPORT PFNGLENABLEIPROC __glewEnablei; +GLEW_FUN_EXPORT PFNGLENDCONDITIONALRENDERPROC __glewEndConditionalRender; +GLEW_FUN_EXPORT PFNGLENDTRANSFORMFEEDBACKPROC __glewEndTransformFeedback; +GLEW_FUN_EXPORT PFNGLGETBOOLEANI_VPROC __glewGetBooleani_v; +GLEW_FUN_EXPORT PFNGLGETFRAGDATALOCATIONPROC __glewGetFragDataLocation; +GLEW_FUN_EXPORT PFNGLGETSTRINGIPROC __glewGetStringi; +GLEW_FUN_EXPORT PFNGLGETTEXPARAMETERIIVPROC __glewGetTexParameterIiv; +GLEW_FUN_EXPORT PFNGLGETTEXPARAMETERIUIVPROC __glewGetTexParameterIuiv; +GLEW_FUN_EXPORT PFNGLGETTRANSFORMFEEDBACKVARYINGPROC __glewGetTransformFeedbackVarying; +GLEW_FUN_EXPORT PFNGLGETUNIFORMUIVPROC __glewGetUniformuiv; +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBIIVPROC __glewGetVertexAttribIiv; +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBIUIVPROC __glewGetVertexAttribIuiv; +GLEW_FUN_EXPORT PFNGLISENABLEDIPROC __glewIsEnabledi; +GLEW_FUN_EXPORT PFNGLTEXPARAMETERIIVPROC __glewTexParameterIiv; +GLEW_FUN_EXPORT PFNGLTEXPARAMETERIUIVPROC __glewTexParameterIuiv; +GLEW_FUN_EXPORT PFNGLTRANSFORMFEEDBACKVARYINGSPROC __glewTransformFeedbackVaryings; +GLEW_FUN_EXPORT PFNGLUNIFORM1UIPROC __glewUniform1ui; +GLEW_FUN_EXPORT PFNGLUNIFORM1UIVPROC __glewUniform1uiv; +GLEW_FUN_EXPORT PFNGLUNIFORM2UIPROC __glewUniform2ui; +GLEW_FUN_EXPORT PFNGLUNIFORM2UIVPROC __glewUniform2uiv; +GLEW_FUN_EXPORT PFNGLUNIFORM3UIPROC __glewUniform3ui; +GLEW_FUN_EXPORT PFNGLUNIFORM3UIVPROC __glewUniform3uiv; +GLEW_FUN_EXPORT PFNGLUNIFORM4UIPROC __glewUniform4ui; +GLEW_FUN_EXPORT PFNGLUNIFORM4UIVPROC __glewUniform4uiv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI1IPROC __glewVertexAttribI1i; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI1IVPROC __glewVertexAttribI1iv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI1UIPROC __glewVertexAttribI1ui; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI1UIVPROC __glewVertexAttribI1uiv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI2IPROC __glewVertexAttribI2i; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI2IVPROC __glewVertexAttribI2iv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI2UIPROC __glewVertexAttribI2ui; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI2UIVPROC __glewVertexAttribI2uiv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI3IPROC __glewVertexAttribI3i; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI3IVPROC __glewVertexAttribI3iv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI3UIPROC __glewVertexAttribI3ui; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI3UIVPROC __glewVertexAttribI3uiv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI4BVPROC __glewVertexAttribI4bv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI4IPROC __glewVertexAttribI4i; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI4IVPROC __glewVertexAttribI4iv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI4SVPROC __glewVertexAttribI4sv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI4UBVPROC __glewVertexAttribI4ubv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI4UIPROC __glewVertexAttribI4ui; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI4UIVPROC __glewVertexAttribI4uiv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI4USVPROC __glewVertexAttribI4usv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBIPOINTERPROC __glewVertexAttribIPointer; + +GLEW_FUN_EXPORT PFNGLDRAWARRAYSINSTANCEDPROC __glewDrawArraysInstanced; +GLEW_FUN_EXPORT PFNGLDRAWELEMENTSINSTANCEDPROC __glewDrawElementsInstanced; +GLEW_FUN_EXPORT PFNGLPRIMITIVERESTARTINDEXPROC __glewPrimitiveRestartIndex; +GLEW_FUN_EXPORT PFNGLTEXBUFFERPROC __glewTexBuffer; + +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERTEXTUREPROC __glewFramebufferTexture; +GLEW_FUN_EXPORT PFNGLGETBUFFERPARAMETERI64VPROC __glewGetBufferParameteri64v; +GLEW_FUN_EXPORT PFNGLGETINTEGER64I_VPROC __glewGetInteger64i_v; + +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBDIVISORPROC __glewVertexAttribDivisor; + +GLEW_FUN_EXPORT PFNGLBLENDEQUATIONSEPARATEIPROC __glewBlendEquationSeparatei; +GLEW_FUN_EXPORT PFNGLBLENDEQUATIONIPROC __glewBlendEquationi; +GLEW_FUN_EXPORT PFNGLBLENDFUNCSEPARATEIPROC __glewBlendFuncSeparatei; +GLEW_FUN_EXPORT PFNGLBLENDFUNCIPROC __glewBlendFunci; +GLEW_FUN_EXPORT PFNGLMINSAMPLESHADINGPROC __glewMinSampleShading; + +GLEW_FUN_EXPORT PFNGLGETGRAPHICSRESETSTATUSPROC __glewGetGraphicsResetStatus; +GLEW_FUN_EXPORT PFNGLGETNCOMPRESSEDTEXIMAGEPROC __glewGetnCompressedTexImage; +GLEW_FUN_EXPORT PFNGLGETNTEXIMAGEPROC __glewGetnTexImage; +GLEW_FUN_EXPORT PFNGLGETNUNIFORMDVPROC __glewGetnUniformdv; + +GLEW_FUN_EXPORT PFNGLMULTIDRAWARRAYSINDIRECTCOUNTPROC __glewMultiDrawArraysIndirectCount; +GLEW_FUN_EXPORT PFNGLMULTIDRAWELEMENTSINDIRECTCOUNTPROC __glewMultiDrawElementsIndirectCount; +GLEW_FUN_EXPORT PFNGLSPECIALIZESHADERPROC __glewSpecializeShader; + +GLEW_FUN_EXPORT PFNGLTBUFFERMASK3DFXPROC __glewTbufferMask3DFX; + +GLEW_FUN_EXPORT PFNGLDEBUGMESSAGECALLBACKAMDPROC __glewDebugMessageCallbackAMD; +GLEW_FUN_EXPORT PFNGLDEBUGMESSAGEENABLEAMDPROC __glewDebugMessageEnableAMD; +GLEW_FUN_EXPORT PFNGLDEBUGMESSAGEINSERTAMDPROC __glewDebugMessageInsertAMD; +GLEW_FUN_EXPORT PFNGLGETDEBUGMESSAGELOGAMDPROC __glewGetDebugMessageLogAMD; + +GLEW_FUN_EXPORT PFNGLBLENDEQUATIONINDEXEDAMDPROC __glewBlendEquationIndexedAMD; +GLEW_FUN_EXPORT PFNGLBLENDEQUATIONSEPARATEINDEXEDAMDPROC __glewBlendEquationSeparateIndexedAMD; +GLEW_FUN_EXPORT PFNGLBLENDFUNCINDEXEDAMDPROC __glewBlendFuncIndexedAMD; +GLEW_FUN_EXPORT PFNGLBLENDFUNCSEPARATEINDEXEDAMDPROC __glewBlendFuncSeparateIndexedAMD; + +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERSAMPLEPOSITIONSFVAMDPROC __glewFramebufferSamplePositionsfvAMD; +GLEW_FUN_EXPORT PFNGLGETFRAMEBUFFERPARAMETERFVAMDPROC __glewGetFramebufferParameterfvAMD; +GLEW_FUN_EXPORT PFNGLGETNAMEDFRAMEBUFFERPARAMETERFVAMDPROC __glewGetNamedFramebufferParameterfvAMD; +GLEW_FUN_EXPORT PFNGLNAMEDFRAMEBUFFERSAMPLEPOSITIONSFVAMDPROC __glewNamedFramebufferSamplePositionsfvAMD; + +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBPARAMETERIAMDPROC __glewVertexAttribParameteriAMD; + +GLEW_FUN_EXPORT PFNGLMULTIDRAWARRAYSINDIRECTAMDPROC __glewMultiDrawArraysIndirectAMD; +GLEW_FUN_EXPORT PFNGLMULTIDRAWELEMENTSINDIRECTAMDPROC __glewMultiDrawElementsIndirectAMD; + +GLEW_FUN_EXPORT PFNGLDELETENAMESAMDPROC __glewDeleteNamesAMD; +GLEW_FUN_EXPORT PFNGLGENNAMESAMDPROC __glewGenNamesAMD; +GLEW_FUN_EXPORT PFNGLISNAMEAMDPROC __glewIsNameAMD; + +GLEW_FUN_EXPORT PFNGLQUERYOBJECTPARAMETERUIAMDPROC __glewQueryObjectParameteruiAMD; + +GLEW_FUN_EXPORT PFNGLBEGINPERFMONITORAMDPROC __glewBeginPerfMonitorAMD; +GLEW_FUN_EXPORT PFNGLDELETEPERFMONITORSAMDPROC __glewDeletePerfMonitorsAMD; +GLEW_FUN_EXPORT PFNGLENDPERFMONITORAMDPROC __glewEndPerfMonitorAMD; +GLEW_FUN_EXPORT PFNGLGENPERFMONITORSAMDPROC __glewGenPerfMonitorsAMD; +GLEW_FUN_EXPORT PFNGLGETPERFMONITORCOUNTERDATAAMDPROC __glewGetPerfMonitorCounterDataAMD; +GLEW_FUN_EXPORT PFNGLGETPERFMONITORCOUNTERINFOAMDPROC __glewGetPerfMonitorCounterInfoAMD; +GLEW_FUN_EXPORT PFNGLGETPERFMONITORCOUNTERSTRINGAMDPROC __glewGetPerfMonitorCounterStringAMD; +GLEW_FUN_EXPORT PFNGLGETPERFMONITORCOUNTERSAMDPROC __glewGetPerfMonitorCountersAMD; +GLEW_FUN_EXPORT PFNGLGETPERFMONITORGROUPSTRINGAMDPROC __glewGetPerfMonitorGroupStringAMD; +GLEW_FUN_EXPORT PFNGLGETPERFMONITORGROUPSAMDPROC __glewGetPerfMonitorGroupsAMD; +GLEW_FUN_EXPORT PFNGLSELECTPERFMONITORCOUNTERSAMDPROC __glewSelectPerfMonitorCountersAMD; + +GLEW_FUN_EXPORT PFNGLSETMULTISAMPLEFVAMDPROC __glewSetMultisamplefvAMD; + +GLEW_FUN_EXPORT PFNGLTEXSTORAGESPARSEAMDPROC __glewTexStorageSparseAMD; +GLEW_FUN_EXPORT PFNGLTEXTURESTORAGESPARSEAMDPROC __glewTextureStorageSparseAMD; + +GLEW_FUN_EXPORT PFNGLSTENCILOPVALUEAMDPROC __glewStencilOpValueAMD; + +GLEW_FUN_EXPORT PFNGLTESSELLATIONFACTORAMDPROC __glewTessellationFactorAMD; +GLEW_FUN_EXPORT PFNGLTESSELLATIONMODEAMDPROC __glewTessellationModeAMD; + +GLEW_FUN_EXPORT PFNGLBLITFRAMEBUFFERANGLEPROC __glewBlitFramebufferANGLE; + +GLEW_FUN_EXPORT PFNGLRENDERBUFFERSTORAGEMULTISAMPLEANGLEPROC __glewRenderbufferStorageMultisampleANGLE; + +GLEW_FUN_EXPORT PFNGLDRAWARRAYSINSTANCEDANGLEPROC __glewDrawArraysInstancedANGLE; +GLEW_FUN_EXPORT PFNGLDRAWELEMENTSINSTANCEDANGLEPROC __glewDrawElementsInstancedANGLE; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBDIVISORANGLEPROC __glewVertexAttribDivisorANGLE; + +GLEW_FUN_EXPORT PFNGLBEGINQUERYANGLEPROC __glewBeginQueryANGLE; +GLEW_FUN_EXPORT PFNGLDELETEQUERIESANGLEPROC __glewDeleteQueriesANGLE; +GLEW_FUN_EXPORT PFNGLENDQUERYANGLEPROC __glewEndQueryANGLE; +GLEW_FUN_EXPORT PFNGLGENQUERIESANGLEPROC __glewGenQueriesANGLE; +GLEW_FUN_EXPORT PFNGLGETQUERYOBJECTI64VANGLEPROC __glewGetQueryObjecti64vANGLE; +GLEW_FUN_EXPORT PFNGLGETQUERYOBJECTIVANGLEPROC __glewGetQueryObjectivANGLE; +GLEW_FUN_EXPORT PFNGLGETQUERYOBJECTUI64VANGLEPROC __glewGetQueryObjectui64vANGLE; +GLEW_FUN_EXPORT PFNGLGETQUERYOBJECTUIVANGLEPROC __glewGetQueryObjectuivANGLE; +GLEW_FUN_EXPORT PFNGLGETQUERYIVANGLEPROC __glewGetQueryivANGLE; +GLEW_FUN_EXPORT PFNGLISQUERYANGLEPROC __glewIsQueryANGLE; +GLEW_FUN_EXPORT PFNGLQUERYCOUNTERANGLEPROC __glewQueryCounterANGLE; + +GLEW_FUN_EXPORT PFNGLGETTRANSLATEDSHADERSOURCEANGLEPROC __glewGetTranslatedShaderSourceANGLE; + +GLEW_FUN_EXPORT PFNGLCOPYTEXTURELEVELSAPPLEPROC __glewCopyTextureLevelsAPPLE; + +GLEW_FUN_EXPORT PFNGLDRAWELEMENTARRAYAPPLEPROC __glewDrawElementArrayAPPLE; +GLEW_FUN_EXPORT PFNGLDRAWRANGEELEMENTARRAYAPPLEPROC __glewDrawRangeElementArrayAPPLE; +GLEW_FUN_EXPORT PFNGLELEMENTPOINTERAPPLEPROC __glewElementPointerAPPLE; +GLEW_FUN_EXPORT PFNGLMULTIDRAWELEMENTARRAYAPPLEPROC __glewMultiDrawElementArrayAPPLE; +GLEW_FUN_EXPORT PFNGLMULTIDRAWRANGEELEMENTARRAYAPPLEPROC __glewMultiDrawRangeElementArrayAPPLE; + +GLEW_FUN_EXPORT PFNGLDELETEFENCESAPPLEPROC __glewDeleteFencesAPPLE; +GLEW_FUN_EXPORT PFNGLFINISHFENCEAPPLEPROC __glewFinishFenceAPPLE; +GLEW_FUN_EXPORT PFNGLFINISHOBJECTAPPLEPROC __glewFinishObjectAPPLE; +GLEW_FUN_EXPORT PFNGLGENFENCESAPPLEPROC __glewGenFencesAPPLE; +GLEW_FUN_EXPORT PFNGLISFENCEAPPLEPROC __glewIsFenceAPPLE; +GLEW_FUN_EXPORT PFNGLSETFENCEAPPLEPROC __glewSetFenceAPPLE; +GLEW_FUN_EXPORT PFNGLTESTFENCEAPPLEPROC __glewTestFenceAPPLE; +GLEW_FUN_EXPORT PFNGLTESTOBJECTAPPLEPROC __glewTestObjectAPPLE; + +GLEW_FUN_EXPORT PFNGLBUFFERPARAMETERIAPPLEPROC __glewBufferParameteriAPPLE; +GLEW_FUN_EXPORT PFNGLFLUSHMAPPEDBUFFERRANGEAPPLEPROC __glewFlushMappedBufferRangeAPPLE; + +GLEW_FUN_EXPORT PFNGLRENDERBUFFERSTORAGEMULTISAMPLEAPPLEPROC __glewRenderbufferStorageMultisampleAPPLE; +GLEW_FUN_EXPORT PFNGLRESOLVEMULTISAMPLEFRAMEBUFFERAPPLEPROC __glewResolveMultisampleFramebufferAPPLE; + +GLEW_FUN_EXPORT PFNGLGETOBJECTPARAMETERIVAPPLEPROC __glewGetObjectParameterivAPPLE; +GLEW_FUN_EXPORT PFNGLOBJECTPURGEABLEAPPLEPROC __glewObjectPurgeableAPPLE; +GLEW_FUN_EXPORT PFNGLOBJECTUNPURGEABLEAPPLEPROC __glewObjectUnpurgeableAPPLE; + +GLEW_FUN_EXPORT PFNGLCLIENTWAITSYNCAPPLEPROC __glewClientWaitSyncAPPLE; +GLEW_FUN_EXPORT PFNGLDELETESYNCAPPLEPROC __glewDeleteSyncAPPLE; +GLEW_FUN_EXPORT PFNGLFENCESYNCAPPLEPROC __glewFenceSyncAPPLE; +GLEW_FUN_EXPORT PFNGLGETINTEGER64VAPPLEPROC __glewGetInteger64vAPPLE; +GLEW_FUN_EXPORT PFNGLGETSYNCIVAPPLEPROC __glewGetSyncivAPPLE; +GLEW_FUN_EXPORT PFNGLISSYNCAPPLEPROC __glewIsSyncAPPLE; +GLEW_FUN_EXPORT PFNGLWAITSYNCAPPLEPROC __glewWaitSyncAPPLE; + +GLEW_FUN_EXPORT PFNGLGETTEXPARAMETERPOINTERVAPPLEPROC __glewGetTexParameterPointervAPPLE; +GLEW_FUN_EXPORT PFNGLTEXTURERANGEAPPLEPROC __glewTextureRangeAPPLE; + +GLEW_FUN_EXPORT PFNGLBINDVERTEXARRAYAPPLEPROC __glewBindVertexArrayAPPLE; +GLEW_FUN_EXPORT PFNGLDELETEVERTEXARRAYSAPPLEPROC __glewDeleteVertexArraysAPPLE; +GLEW_FUN_EXPORT PFNGLGENVERTEXARRAYSAPPLEPROC __glewGenVertexArraysAPPLE; +GLEW_FUN_EXPORT PFNGLISVERTEXARRAYAPPLEPROC __glewIsVertexArrayAPPLE; + +GLEW_FUN_EXPORT PFNGLFLUSHVERTEXARRAYRANGEAPPLEPROC __glewFlushVertexArrayRangeAPPLE; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYPARAMETERIAPPLEPROC __glewVertexArrayParameteriAPPLE; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYRANGEAPPLEPROC __glewVertexArrayRangeAPPLE; + +GLEW_FUN_EXPORT PFNGLDISABLEVERTEXATTRIBAPPLEPROC __glewDisableVertexAttribAPPLE; +GLEW_FUN_EXPORT PFNGLENABLEVERTEXATTRIBAPPLEPROC __glewEnableVertexAttribAPPLE; +GLEW_FUN_EXPORT PFNGLISVERTEXATTRIBENABLEDAPPLEPROC __glewIsVertexAttribEnabledAPPLE; +GLEW_FUN_EXPORT PFNGLMAPVERTEXATTRIB1DAPPLEPROC __glewMapVertexAttrib1dAPPLE; +GLEW_FUN_EXPORT PFNGLMAPVERTEXATTRIB1FAPPLEPROC __glewMapVertexAttrib1fAPPLE; +GLEW_FUN_EXPORT PFNGLMAPVERTEXATTRIB2DAPPLEPROC __glewMapVertexAttrib2dAPPLE; +GLEW_FUN_EXPORT PFNGLMAPVERTEXATTRIB2FAPPLEPROC __glewMapVertexAttrib2fAPPLE; + +GLEW_FUN_EXPORT PFNGLCLEARDEPTHFPROC __glewClearDepthf; +GLEW_FUN_EXPORT PFNGLDEPTHRANGEFPROC __glewDepthRangef; +GLEW_FUN_EXPORT PFNGLGETSHADERPRECISIONFORMATPROC __glewGetShaderPrecisionFormat; +GLEW_FUN_EXPORT PFNGLRELEASESHADERCOMPILERPROC __glewReleaseShaderCompiler; +GLEW_FUN_EXPORT PFNGLSHADERBINARYPROC __glewShaderBinary; + +GLEW_FUN_EXPORT PFNGLMEMORYBARRIERBYREGIONPROC __glewMemoryBarrierByRegion; + +GLEW_FUN_EXPORT PFNGLPRIMITIVEBOUNDINGBOXARBPROC __glewPrimitiveBoundingBoxARB; + +GLEW_FUN_EXPORT PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEPROC __glewDrawArraysInstancedBaseInstance; +GLEW_FUN_EXPORT PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEPROC __glewDrawElementsInstancedBaseInstance; +GLEW_FUN_EXPORT PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEPROC __glewDrawElementsInstancedBaseVertexBaseInstance; + +GLEW_FUN_EXPORT PFNGLGETIMAGEHANDLEARBPROC __glewGetImageHandleARB; +GLEW_FUN_EXPORT PFNGLGETTEXTUREHANDLEARBPROC __glewGetTextureHandleARB; +GLEW_FUN_EXPORT PFNGLGETTEXTURESAMPLERHANDLEARBPROC __glewGetTextureSamplerHandleARB; +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBLUI64VARBPROC __glewGetVertexAttribLui64vARB; +GLEW_FUN_EXPORT PFNGLISIMAGEHANDLERESIDENTARBPROC __glewIsImageHandleResidentARB; +GLEW_FUN_EXPORT PFNGLISTEXTUREHANDLERESIDENTARBPROC __glewIsTextureHandleResidentARB; +GLEW_FUN_EXPORT PFNGLMAKEIMAGEHANDLENONRESIDENTARBPROC __glewMakeImageHandleNonResidentARB; +GLEW_FUN_EXPORT PFNGLMAKEIMAGEHANDLERESIDENTARBPROC __glewMakeImageHandleResidentARB; +GLEW_FUN_EXPORT PFNGLMAKETEXTUREHANDLENONRESIDENTARBPROC __glewMakeTextureHandleNonResidentARB; +GLEW_FUN_EXPORT PFNGLMAKETEXTUREHANDLERESIDENTARBPROC __glewMakeTextureHandleResidentARB; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMHANDLEUI64ARBPROC __glewProgramUniformHandleui64ARB; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMHANDLEUI64VARBPROC __glewProgramUniformHandleui64vARB; +GLEW_FUN_EXPORT PFNGLUNIFORMHANDLEUI64ARBPROC __glewUniformHandleui64ARB; +GLEW_FUN_EXPORT PFNGLUNIFORMHANDLEUI64VARBPROC __glewUniformHandleui64vARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL1UI64ARBPROC __glewVertexAttribL1ui64ARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL1UI64VARBPROC __glewVertexAttribL1ui64vARB; + +GLEW_FUN_EXPORT PFNGLBINDFRAGDATALOCATIONINDEXEDPROC __glewBindFragDataLocationIndexed; +GLEW_FUN_EXPORT PFNGLGETFRAGDATAINDEXPROC __glewGetFragDataIndex; + +GLEW_FUN_EXPORT PFNGLBUFFERSTORAGEPROC __glewBufferStorage; + +GLEW_FUN_EXPORT PFNGLCREATESYNCFROMCLEVENTARBPROC __glewCreateSyncFromCLeventARB; + +GLEW_FUN_EXPORT PFNGLCLEARBUFFERDATAPROC __glewClearBufferData; +GLEW_FUN_EXPORT PFNGLCLEARBUFFERSUBDATAPROC __glewClearBufferSubData; +GLEW_FUN_EXPORT PFNGLCLEARNAMEDBUFFERDATAEXTPROC __glewClearNamedBufferDataEXT; +GLEW_FUN_EXPORT PFNGLCLEARNAMEDBUFFERSUBDATAEXTPROC __glewClearNamedBufferSubDataEXT; + +GLEW_FUN_EXPORT PFNGLCLEARTEXIMAGEPROC __glewClearTexImage; +GLEW_FUN_EXPORT PFNGLCLEARTEXSUBIMAGEPROC __glewClearTexSubImage; + +GLEW_FUN_EXPORT PFNGLCLIPCONTROLPROC __glewClipControl; + +GLEW_FUN_EXPORT PFNGLCLAMPCOLORARBPROC __glewClampColorARB; + +GLEW_FUN_EXPORT PFNGLDISPATCHCOMPUTEPROC __glewDispatchCompute; +GLEW_FUN_EXPORT PFNGLDISPATCHCOMPUTEINDIRECTPROC __glewDispatchComputeIndirect; + +GLEW_FUN_EXPORT PFNGLDISPATCHCOMPUTEGROUPSIZEARBPROC __glewDispatchComputeGroupSizeARB; + +GLEW_FUN_EXPORT PFNGLCOPYBUFFERSUBDATAPROC __glewCopyBufferSubData; + +GLEW_FUN_EXPORT PFNGLCOPYIMAGESUBDATAPROC __glewCopyImageSubData; + +GLEW_FUN_EXPORT PFNGLDEBUGMESSAGECALLBACKARBPROC __glewDebugMessageCallbackARB; +GLEW_FUN_EXPORT PFNGLDEBUGMESSAGECONTROLARBPROC __glewDebugMessageControlARB; +GLEW_FUN_EXPORT PFNGLDEBUGMESSAGEINSERTARBPROC __glewDebugMessageInsertARB; +GLEW_FUN_EXPORT PFNGLGETDEBUGMESSAGELOGARBPROC __glewGetDebugMessageLogARB; + +GLEW_FUN_EXPORT PFNGLBINDTEXTUREUNITPROC __glewBindTextureUnit; +GLEW_FUN_EXPORT PFNGLBLITNAMEDFRAMEBUFFERPROC __glewBlitNamedFramebuffer; +GLEW_FUN_EXPORT PFNGLCHECKNAMEDFRAMEBUFFERSTATUSPROC __glewCheckNamedFramebufferStatus; +GLEW_FUN_EXPORT PFNGLCLEARNAMEDBUFFERDATAPROC __glewClearNamedBufferData; +GLEW_FUN_EXPORT PFNGLCLEARNAMEDBUFFERSUBDATAPROC __glewClearNamedBufferSubData; +GLEW_FUN_EXPORT PFNGLCLEARNAMEDFRAMEBUFFERFIPROC __glewClearNamedFramebufferfi; +GLEW_FUN_EXPORT PFNGLCLEARNAMEDFRAMEBUFFERFVPROC __glewClearNamedFramebufferfv; +GLEW_FUN_EXPORT PFNGLCLEARNAMEDFRAMEBUFFERIVPROC __glewClearNamedFramebufferiv; +GLEW_FUN_EXPORT PFNGLCLEARNAMEDFRAMEBUFFERUIVPROC __glewClearNamedFramebufferuiv; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXTURESUBIMAGE1DPROC __glewCompressedTextureSubImage1D; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXTURESUBIMAGE2DPROC __glewCompressedTextureSubImage2D; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXTURESUBIMAGE3DPROC __glewCompressedTextureSubImage3D; +GLEW_FUN_EXPORT PFNGLCOPYNAMEDBUFFERSUBDATAPROC __glewCopyNamedBufferSubData; +GLEW_FUN_EXPORT PFNGLCOPYTEXTURESUBIMAGE1DPROC __glewCopyTextureSubImage1D; +GLEW_FUN_EXPORT PFNGLCOPYTEXTURESUBIMAGE2DPROC __glewCopyTextureSubImage2D; +GLEW_FUN_EXPORT PFNGLCOPYTEXTURESUBIMAGE3DPROC __glewCopyTextureSubImage3D; +GLEW_FUN_EXPORT PFNGLCREATEBUFFERSPROC __glewCreateBuffers; +GLEW_FUN_EXPORT PFNGLCREATEFRAMEBUFFERSPROC __glewCreateFramebuffers; +GLEW_FUN_EXPORT PFNGLCREATEPROGRAMPIPELINESPROC __glewCreateProgramPipelines; +GLEW_FUN_EXPORT PFNGLCREATEQUERIESPROC __glewCreateQueries; +GLEW_FUN_EXPORT PFNGLCREATERENDERBUFFERSPROC __glewCreateRenderbuffers; +GLEW_FUN_EXPORT PFNGLCREATESAMPLERSPROC __glewCreateSamplers; +GLEW_FUN_EXPORT PFNGLCREATETEXTURESPROC __glewCreateTextures; +GLEW_FUN_EXPORT PFNGLCREATETRANSFORMFEEDBACKSPROC __glewCreateTransformFeedbacks; +GLEW_FUN_EXPORT PFNGLCREATEVERTEXARRAYSPROC __glewCreateVertexArrays; +GLEW_FUN_EXPORT PFNGLDISABLEVERTEXARRAYATTRIBPROC __glewDisableVertexArrayAttrib; +GLEW_FUN_EXPORT PFNGLENABLEVERTEXARRAYATTRIBPROC __glewEnableVertexArrayAttrib; +GLEW_FUN_EXPORT PFNGLFLUSHMAPPEDNAMEDBUFFERRANGEPROC __glewFlushMappedNamedBufferRange; +GLEW_FUN_EXPORT PFNGLGENERATETEXTUREMIPMAPPROC __glewGenerateTextureMipmap; +GLEW_FUN_EXPORT PFNGLGETCOMPRESSEDTEXTUREIMAGEPROC __glewGetCompressedTextureImage; +GLEW_FUN_EXPORT PFNGLGETNAMEDBUFFERPARAMETERI64VPROC __glewGetNamedBufferParameteri64v; +GLEW_FUN_EXPORT PFNGLGETNAMEDBUFFERPARAMETERIVPROC __glewGetNamedBufferParameteriv; +GLEW_FUN_EXPORT PFNGLGETNAMEDBUFFERPOINTERVPROC __glewGetNamedBufferPointerv; +GLEW_FUN_EXPORT PFNGLGETNAMEDBUFFERSUBDATAPROC __glewGetNamedBufferSubData; +GLEW_FUN_EXPORT PFNGLGETNAMEDFRAMEBUFFERATTACHMENTPARAMETERIVPROC __glewGetNamedFramebufferAttachmentParameteriv; +GLEW_FUN_EXPORT PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVPROC __glewGetNamedFramebufferParameteriv; +GLEW_FUN_EXPORT PFNGLGETNAMEDRENDERBUFFERPARAMETERIVPROC __glewGetNamedRenderbufferParameteriv; +GLEW_FUN_EXPORT PFNGLGETQUERYBUFFEROBJECTI64VPROC __glewGetQueryBufferObjecti64v; +GLEW_FUN_EXPORT PFNGLGETQUERYBUFFEROBJECTIVPROC __glewGetQueryBufferObjectiv; +GLEW_FUN_EXPORT PFNGLGETQUERYBUFFEROBJECTUI64VPROC __glewGetQueryBufferObjectui64v; +GLEW_FUN_EXPORT PFNGLGETQUERYBUFFEROBJECTUIVPROC __glewGetQueryBufferObjectuiv; +GLEW_FUN_EXPORT PFNGLGETTEXTUREIMAGEPROC __glewGetTextureImage; +GLEW_FUN_EXPORT PFNGLGETTEXTURELEVELPARAMETERFVPROC __glewGetTextureLevelParameterfv; +GLEW_FUN_EXPORT PFNGLGETTEXTURELEVELPARAMETERIVPROC __glewGetTextureLevelParameteriv; +GLEW_FUN_EXPORT PFNGLGETTEXTUREPARAMETERIIVPROC __glewGetTextureParameterIiv; +GLEW_FUN_EXPORT PFNGLGETTEXTUREPARAMETERIUIVPROC __glewGetTextureParameterIuiv; +GLEW_FUN_EXPORT PFNGLGETTEXTUREPARAMETERFVPROC __glewGetTextureParameterfv; +GLEW_FUN_EXPORT PFNGLGETTEXTUREPARAMETERIVPROC __glewGetTextureParameteriv; +GLEW_FUN_EXPORT PFNGLGETTRANSFORMFEEDBACKI64_VPROC __glewGetTransformFeedbacki64_v; +GLEW_FUN_EXPORT PFNGLGETTRANSFORMFEEDBACKI_VPROC __glewGetTransformFeedbacki_v; +GLEW_FUN_EXPORT PFNGLGETTRANSFORMFEEDBACKIVPROC __glewGetTransformFeedbackiv; +GLEW_FUN_EXPORT PFNGLGETVERTEXARRAYINDEXED64IVPROC __glewGetVertexArrayIndexed64iv; +GLEW_FUN_EXPORT PFNGLGETVERTEXARRAYINDEXEDIVPROC __glewGetVertexArrayIndexediv; +GLEW_FUN_EXPORT PFNGLGETVERTEXARRAYIVPROC __glewGetVertexArrayiv; +GLEW_FUN_EXPORT PFNGLINVALIDATENAMEDFRAMEBUFFERDATAPROC __glewInvalidateNamedFramebufferData; +GLEW_FUN_EXPORT PFNGLINVALIDATENAMEDFRAMEBUFFERSUBDATAPROC __glewInvalidateNamedFramebufferSubData; +GLEW_FUN_EXPORT PFNGLMAPNAMEDBUFFERPROC __glewMapNamedBuffer; +GLEW_FUN_EXPORT PFNGLMAPNAMEDBUFFERRANGEPROC __glewMapNamedBufferRange; +GLEW_FUN_EXPORT PFNGLNAMEDBUFFERDATAPROC __glewNamedBufferData; +GLEW_FUN_EXPORT PFNGLNAMEDBUFFERSTORAGEPROC __glewNamedBufferStorage; +GLEW_FUN_EXPORT PFNGLNAMEDBUFFERSUBDATAPROC __glewNamedBufferSubData; +GLEW_FUN_EXPORT PFNGLNAMEDFRAMEBUFFERDRAWBUFFERPROC __glewNamedFramebufferDrawBuffer; +GLEW_FUN_EXPORT PFNGLNAMEDFRAMEBUFFERDRAWBUFFERSPROC __glewNamedFramebufferDrawBuffers; +GLEW_FUN_EXPORT PFNGLNAMEDFRAMEBUFFERPARAMETERIPROC __glewNamedFramebufferParameteri; +GLEW_FUN_EXPORT PFNGLNAMEDFRAMEBUFFERREADBUFFERPROC __glewNamedFramebufferReadBuffer; +GLEW_FUN_EXPORT PFNGLNAMEDFRAMEBUFFERRENDERBUFFERPROC __glewNamedFramebufferRenderbuffer; +GLEW_FUN_EXPORT PFNGLNAMEDFRAMEBUFFERTEXTUREPROC __glewNamedFramebufferTexture; +GLEW_FUN_EXPORT PFNGLNAMEDFRAMEBUFFERTEXTURELAYERPROC __glewNamedFramebufferTextureLayer; +GLEW_FUN_EXPORT PFNGLNAMEDRENDERBUFFERSTORAGEPROC __glewNamedRenderbufferStorage; +GLEW_FUN_EXPORT PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEPROC __glewNamedRenderbufferStorageMultisample; +GLEW_FUN_EXPORT PFNGLTEXTUREBUFFERPROC __glewTextureBuffer; +GLEW_FUN_EXPORT PFNGLTEXTUREBUFFERRANGEPROC __glewTextureBufferRange; +GLEW_FUN_EXPORT PFNGLTEXTUREPARAMETERIIVPROC __glewTextureParameterIiv; +GLEW_FUN_EXPORT PFNGLTEXTUREPARAMETERIUIVPROC __glewTextureParameterIuiv; +GLEW_FUN_EXPORT PFNGLTEXTUREPARAMETERFPROC __glewTextureParameterf; +GLEW_FUN_EXPORT PFNGLTEXTUREPARAMETERFVPROC __glewTextureParameterfv; +GLEW_FUN_EXPORT PFNGLTEXTUREPARAMETERIPROC __glewTextureParameteri; +GLEW_FUN_EXPORT PFNGLTEXTUREPARAMETERIVPROC __glewTextureParameteriv; +GLEW_FUN_EXPORT PFNGLTEXTURESTORAGE1DPROC __glewTextureStorage1D; +GLEW_FUN_EXPORT PFNGLTEXTURESTORAGE2DPROC __glewTextureStorage2D; +GLEW_FUN_EXPORT PFNGLTEXTURESTORAGE2DMULTISAMPLEPROC __glewTextureStorage2DMultisample; +GLEW_FUN_EXPORT PFNGLTEXTURESTORAGE3DPROC __glewTextureStorage3D; +GLEW_FUN_EXPORT PFNGLTEXTURESTORAGE3DMULTISAMPLEPROC __glewTextureStorage3DMultisample; +GLEW_FUN_EXPORT PFNGLTEXTURESUBIMAGE1DPROC __glewTextureSubImage1D; +GLEW_FUN_EXPORT PFNGLTEXTURESUBIMAGE2DPROC __glewTextureSubImage2D; +GLEW_FUN_EXPORT PFNGLTEXTURESUBIMAGE3DPROC __glewTextureSubImage3D; +GLEW_FUN_EXPORT PFNGLTRANSFORMFEEDBACKBUFFERBASEPROC __glewTransformFeedbackBufferBase; +GLEW_FUN_EXPORT PFNGLTRANSFORMFEEDBACKBUFFERRANGEPROC __glewTransformFeedbackBufferRange; +GLEW_FUN_EXPORT PFNGLUNMAPNAMEDBUFFERPROC __glewUnmapNamedBuffer; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYATTRIBBINDINGPROC __glewVertexArrayAttribBinding; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYATTRIBFORMATPROC __glewVertexArrayAttribFormat; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYATTRIBIFORMATPROC __glewVertexArrayAttribIFormat; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYATTRIBLFORMATPROC __glewVertexArrayAttribLFormat; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYBINDINGDIVISORPROC __glewVertexArrayBindingDivisor; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYELEMENTBUFFERPROC __glewVertexArrayElementBuffer; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYVERTEXBUFFERPROC __glewVertexArrayVertexBuffer; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYVERTEXBUFFERSPROC __glewVertexArrayVertexBuffers; + +GLEW_FUN_EXPORT PFNGLDRAWBUFFERSARBPROC __glewDrawBuffersARB; + +GLEW_FUN_EXPORT PFNGLBLENDEQUATIONSEPARATEIARBPROC __glewBlendEquationSeparateiARB; +GLEW_FUN_EXPORT PFNGLBLENDEQUATIONIARBPROC __glewBlendEquationiARB; +GLEW_FUN_EXPORT PFNGLBLENDFUNCSEPARATEIARBPROC __glewBlendFuncSeparateiARB; +GLEW_FUN_EXPORT PFNGLBLENDFUNCIARBPROC __glewBlendFunciARB; + +GLEW_FUN_EXPORT PFNGLDRAWELEMENTSBASEVERTEXPROC __glewDrawElementsBaseVertex; +GLEW_FUN_EXPORT PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC __glewDrawElementsInstancedBaseVertex; +GLEW_FUN_EXPORT PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC __glewDrawRangeElementsBaseVertex; +GLEW_FUN_EXPORT PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC __glewMultiDrawElementsBaseVertex; + +GLEW_FUN_EXPORT PFNGLDRAWARRAYSINDIRECTPROC __glewDrawArraysIndirect; +GLEW_FUN_EXPORT PFNGLDRAWELEMENTSINDIRECTPROC __glewDrawElementsIndirect; + +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERPARAMETERIPROC __glewFramebufferParameteri; +GLEW_FUN_EXPORT PFNGLGETFRAMEBUFFERPARAMETERIVPROC __glewGetFramebufferParameteriv; +GLEW_FUN_EXPORT PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVEXTPROC __glewGetNamedFramebufferParameterivEXT; +GLEW_FUN_EXPORT PFNGLNAMEDFRAMEBUFFERPARAMETERIEXTPROC __glewNamedFramebufferParameteriEXT; + +GLEW_FUN_EXPORT PFNGLBINDFRAMEBUFFERPROC __glewBindFramebuffer; +GLEW_FUN_EXPORT PFNGLBINDRENDERBUFFERPROC __glewBindRenderbuffer; +GLEW_FUN_EXPORT PFNGLBLITFRAMEBUFFERPROC __glewBlitFramebuffer; +GLEW_FUN_EXPORT PFNGLCHECKFRAMEBUFFERSTATUSPROC __glewCheckFramebufferStatus; +GLEW_FUN_EXPORT PFNGLDELETEFRAMEBUFFERSPROC __glewDeleteFramebuffers; +GLEW_FUN_EXPORT PFNGLDELETERENDERBUFFERSPROC __glewDeleteRenderbuffers; +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERRENDERBUFFERPROC __glewFramebufferRenderbuffer; +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERTEXTURE1DPROC __glewFramebufferTexture1D; +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERTEXTURE2DPROC __glewFramebufferTexture2D; +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERTEXTURE3DPROC __glewFramebufferTexture3D; +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERTEXTURELAYERPROC __glewFramebufferTextureLayer; +GLEW_FUN_EXPORT PFNGLGENFRAMEBUFFERSPROC __glewGenFramebuffers; +GLEW_FUN_EXPORT PFNGLGENRENDERBUFFERSPROC __glewGenRenderbuffers; +GLEW_FUN_EXPORT PFNGLGENERATEMIPMAPPROC __glewGenerateMipmap; +GLEW_FUN_EXPORT PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC __glewGetFramebufferAttachmentParameteriv; +GLEW_FUN_EXPORT PFNGLGETRENDERBUFFERPARAMETERIVPROC __glewGetRenderbufferParameteriv; +GLEW_FUN_EXPORT PFNGLISFRAMEBUFFERPROC __glewIsFramebuffer; +GLEW_FUN_EXPORT PFNGLISRENDERBUFFERPROC __glewIsRenderbuffer; +GLEW_FUN_EXPORT PFNGLRENDERBUFFERSTORAGEPROC __glewRenderbufferStorage; +GLEW_FUN_EXPORT PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC __glewRenderbufferStorageMultisample; + +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERTEXTUREARBPROC __glewFramebufferTextureARB; +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERTEXTUREFACEARBPROC __glewFramebufferTextureFaceARB; +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERTEXTURELAYERARBPROC __glewFramebufferTextureLayerARB; +GLEW_FUN_EXPORT PFNGLPROGRAMPARAMETERIARBPROC __glewProgramParameteriARB; + +GLEW_FUN_EXPORT PFNGLGETPROGRAMBINARYPROC __glewGetProgramBinary; +GLEW_FUN_EXPORT PFNGLPROGRAMBINARYPROC __glewProgramBinary; +GLEW_FUN_EXPORT PFNGLPROGRAMPARAMETERIPROC __glewProgramParameteri; + +GLEW_FUN_EXPORT PFNGLGETCOMPRESSEDTEXTURESUBIMAGEPROC __glewGetCompressedTextureSubImage; +GLEW_FUN_EXPORT PFNGLGETTEXTURESUBIMAGEPROC __glewGetTextureSubImage; + +GLEW_FUN_EXPORT PFNGLSPECIALIZESHADERARBPROC __glewSpecializeShaderARB; + +GLEW_FUN_EXPORT PFNGLGETUNIFORMDVPROC __glewGetUniformdv; +GLEW_FUN_EXPORT PFNGLUNIFORM1DPROC __glewUniform1d; +GLEW_FUN_EXPORT PFNGLUNIFORM1DVPROC __glewUniform1dv; +GLEW_FUN_EXPORT PFNGLUNIFORM2DPROC __glewUniform2d; +GLEW_FUN_EXPORT PFNGLUNIFORM2DVPROC __glewUniform2dv; +GLEW_FUN_EXPORT PFNGLUNIFORM3DPROC __glewUniform3d; +GLEW_FUN_EXPORT PFNGLUNIFORM3DVPROC __glewUniform3dv; +GLEW_FUN_EXPORT PFNGLUNIFORM4DPROC __glewUniform4d; +GLEW_FUN_EXPORT PFNGLUNIFORM4DVPROC __glewUniform4dv; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX2DVPROC __glewUniformMatrix2dv; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX2X3DVPROC __glewUniformMatrix2x3dv; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX2X4DVPROC __glewUniformMatrix2x4dv; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX3DVPROC __glewUniformMatrix3dv; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX3X2DVPROC __glewUniformMatrix3x2dv; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX3X4DVPROC __glewUniformMatrix3x4dv; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX4DVPROC __glewUniformMatrix4dv; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX4X2DVPROC __glewUniformMatrix4x2dv; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX4X3DVPROC __glewUniformMatrix4x3dv; + +GLEW_FUN_EXPORT PFNGLGETUNIFORMI64VARBPROC __glewGetUniformi64vARB; +GLEW_FUN_EXPORT PFNGLGETUNIFORMUI64VARBPROC __glewGetUniformui64vARB; +GLEW_FUN_EXPORT PFNGLGETNUNIFORMI64VARBPROC __glewGetnUniformi64vARB; +GLEW_FUN_EXPORT PFNGLGETNUNIFORMUI64VARBPROC __glewGetnUniformui64vARB; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1I64ARBPROC __glewProgramUniform1i64ARB; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1I64VARBPROC __glewProgramUniform1i64vARB; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1UI64ARBPROC __glewProgramUniform1ui64ARB; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1UI64VARBPROC __glewProgramUniform1ui64vARB; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2I64ARBPROC __glewProgramUniform2i64ARB; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2I64VARBPROC __glewProgramUniform2i64vARB; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2UI64ARBPROC __glewProgramUniform2ui64ARB; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2UI64VARBPROC __glewProgramUniform2ui64vARB; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3I64ARBPROC __glewProgramUniform3i64ARB; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3I64VARBPROC __glewProgramUniform3i64vARB; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3UI64ARBPROC __glewProgramUniform3ui64ARB; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3UI64VARBPROC __glewProgramUniform3ui64vARB; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4I64ARBPROC __glewProgramUniform4i64ARB; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4I64VARBPROC __glewProgramUniform4i64vARB; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4UI64ARBPROC __glewProgramUniform4ui64ARB; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4UI64VARBPROC __glewProgramUniform4ui64vARB; +GLEW_FUN_EXPORT PFNGLUNIFORM1I64ARBPROC __glewUniform1i64ARB; +GLEW_FUN_EXPORT PFNGLUNIFORM1I64VARBPROC __glewUniform1i64vARB; +GLEW_FUN_EXPORT PFNGLUNIFORM1UI64ARBPROC __glewUniform1ui64ARB; +GLEW_FUN_EXPORT PFNGLUNIFORM1UI64VARBPROC __glewUniform1ui64vARB; +GLEW_FUN_EXPORT PFNGLUNIFORM2I64ARBPROC __glewUniform2i64ARB; +GLEW_FUN_EXPORT PFNGLUNIFORM2I64VARBPROC __glewUniform2i64vARB; +GLEW_FUN_EXPORT PFNGLUNIFORM2UI64ARBPROC __glewUniform2ui64ARB; +GLEW_FUN_EXPORT PFNGLUNIFORM2UI64VARBPROC __glewUniform2ui64vARB; +GLEW_FUN_EXPORT PFNGLUNIFORM3I64ARBPROC __glewUniform3i64ARB; +GLEW_FUN_EXPORT PFNGLUNIFORM3I64VARBPROC __glewUniform3i64vARB; +GLEW_FUN_EXPORT PFNGLUNIFORM3UI64ARBPROC __glewUniform3ui64ARB; +GLEW_FUN_EXPORT PFNGLUNIFORM3UI64VARBPROC __glewUniform3ui64vARB; +GLEW_FUN_EXPORT PFNGLUNIFORM4I64ARBPROC __glewUniform4i64ARB; +GLEW_FUN_EXPORT PFNGLUNIFORM4I64VARBPROC __glewUniform4i64vARB; +GLEW_FUN_EXPORT PFNGLUNIFORM4UI64ARBPROC __glewUniform4ui64ARB; +GLEW_FUN_EXPORT PFNGLUNIFORM4UI64VARBPROC __glewUniform4ui64vARB; + +GLEW_FUN_EXPORT PFNGLCOLORSUBTABLEPROC __glewColorSubTable; +GLEW_FUN_EXPORT PFNGLCOLORTABLEPROC __glewColorTable; +GLEW_FUN_EXPORT PFNGLCOLORTABLEPARAMETERFVPROC __glewColorTableParameterfv; +GLEW_FUN_EXPORT PFNGLCOLORTABLEPARAMETERIVPROC __glewColorTableParameteriv; +GLEW_FUN_EXPORT PFNGLCONVOLUTIONFILTER1DPROC __glewConvolutionFilter1D; +GLEW_FUN_EXPORT PFNGLCONVOLUTIONFILTER2DPROC __glewConvolutionFilter2D; +GLEW_FUN_EXPORT PFNGLCONVOLUTIONPARAMETERFPROC __glewConvolutionParameterf; +GLEW_FUN_EXPORT PFNGLCONVOLUTIONPARAMETERFVPROC __glewConvolutionParameterfv; +GLEW_FUN_EXPORT PFNGLCONVOLUTIONPARAMETERIPROC __glewConvolutionParameteri; +GLEW_FUN_EXPORT PFNGLCONVOLUTIONPARAMETERIVPROC __glewConvolutionParameteriv; +GLEW_FUN_EXPORT PFNGLCOPYCOLORSUBTABLEPROC __glewCopyColorSubTable; +GLEW_FUN_EXPORT PFNGLCOPYCOLORTABLEPROC __glewCopyColorTable; +GLEW_FUN_EXPORT PFNGLCOPYCONVOLUTIONFILTER1DPROC __glewCopyConvolutionFilter1D; +GLEW_FUN_EXPORT PFNGLCOPYCONVOLUTIONFILTER2DPROC __glewCopyConvolutionFilter2D; +GLEW_FUN_EXPORT PFNGLGETCOLORTABLEPROC __glewGetColorTable; +GLEW_FUN_EXPORT PFNGLGETCOLORTABLEPARAMETERFVPROC __glewGetColorTableParameterfv; +GLEW_FUN_EXPORT PFNGLGETCOLORTABLEPARAMETERIVPROC __glewGetColorTableParameteriv; +GLEW_FUN_EXPORT PFNGLGETCONVOLUTIONFILTERPROC __glewGetConvolutionFilter; +GLEW_FUN_EXPORT PFNGLGETCONVOLUTIONPARAMETERFVPROC __glewGetConvolutionParameterfv; +GLEW_FUN_EXPORT PFNGLGETCONVOLUTIONPARAMETERIVPROC __glewGetConvolutionParameteriv; +GLEW_FUN_EXPORT PFNGLGETHISTOGRAMPROC __glewGetHistogram; +GLEW_FUN_EXPORT PFNGLGETHISTOGRAMPARAMETERFVPROC __glewGetHistogramParameterfv; +GLEW_FUN_EXPORT PFNGLGETHISTOGRAMPARAMETERIVPROC __glewGetHistogramParameteriv; +GLEW_FUN_EXPORT PFNGLGETMINMAXPROC __glewGetMinmax; +GLEW_FUN_EXPORT PFNGLGETMINMAXPARAMETERFVPROC __glewGetMinmaxParameterfv; +GLEW_FUN_EXPORT PFNGLGETMINMAXPARAMETERIVPROC __glewGetMinmaxParameteriv; +GLEW_FUN_EXPORT PFNGLGETSEPARABLEFILTERPROC __glewGetSeparableFilter; +GLEW_FUN_EXPORT PFNGLHISTOGRAMPROC __glewHistogram; +GLEW_FUN_EXPORT PFNGLMINMAXPROC __glewMinmax; +GLEW_FUN_EXPORT PFNGLRESETHISTOGRAMPROC __glewResetHistogram; +GLEW_FUN_EXPORT PFNGLRESETMINMAXPROC __glewResetMinmax; +GLEW_FUN_EXPORT PFNGLSEPARABLEFILTER2DPROC __glewSeparableFilter2D; + +GLEW_FUN_EXPORT PFNGLMULTIDRAWARRAYSINDIRECTCOUNTARBPROC __glewMultiDrawArraysIndirectCountARB; +GLEW_FUN_EXPORT PFNGLMULTIDRAWELEMENTSINDIRECTCOUNTARBPROC __glewMultiDrawElementsIndirectCountARB; + +GLEW_FUN_EXPORT PFNGLDRAWARRAYSINSTANCEDARBPROC __glewDrawArraysInstancedARB; +GLEW_FUN_EXPORT PFNGLDRAWELEMENTSINSTANCEDARBPROC __glewDrawElementsInstancedARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBDIVISORARBPROC __glewVertexAttribDivisorARB; + +GLEW_FUN_EXPORT PFNGLGETINTERNALFORMATIVPROC __glewGetInternalformativ; + +GLEW_FUN_EXPORT PFNGLGETINTERNALFORMATI64VPROC __glewGetInternalformati64v; + +GLEW_FUN_EXPORT PFNGLINVALIDATEBUFFERDATAPROC __glewInvalidateBufferData; +GLEW_FUN_EXPORT PFNGLINVALIDATEBUFFERSUBDATAPROC __glewInvalidateBufferSubData; +GLEW_FUN_EXPORT PFNGLINVALIDATEFRAMEBUFFERPROC __glewInvalidateFramebuffer; +GLEW_FUN_EXPORT PFNGLINVALIDATESUBFRAMEBUFFERPROC __glewInvalidateSubFramebuffer; +GLEW_FUN_EXPORT PFNGLINVALIDATETEXIMAGEPROC __glewInvalidateTexImage; +GLEW_FUN_EXPORT PFNGLINVALIDATETEXSUBIMAGEPROC __glewInvalidateTexSubImage; + +GLEW_FUN_EXPORT PFNGLFLUSHMAPPEDBUFFERRANGEPROC __glewFlushMappedBufferRange; +GLEW_FUN_EXPORT PFNGLMAPBUFFERRANGEPROC __glewMapBufferRange; + +GLEW_FUN_EXPORT PFNGLCURRENTPALETTEMATRIXARBPROC __glewCurrentPaletteMatrixARB; +GLEW_FUN_EXPORT PFNGLMATRIXINDEXPOINTERARBPROC __glewMatrixIndexPointerARB; +GLEW_FUN_EXPORT PFNGLMATRIXINDEXUBVARBPROC __glewMatrixIndexubvARB; +GLEW_FUN_EXPORT PFNGLMATRIXINDEXUIVARBPROC __glewMatrixIndexuivARB; +GLEW_FUN_EXPORT PFNGLMATRIXINDEXUSVARBPROC __glewMatrixIndexusvARB; + +GLEW_FUN_EXPORT PFNGLBINDBUFFERSBASEPROC __glewBindBuffersBase; +GLEW_FUN_EXPORT PFNGLBINDBUFFERSRANGEPROC __glewBindBuffersRange; +GLEW_FUN_EXPORT PFNGLBINDIMAGETEXTURESPROC __glewBindImageTextures; +GLEW_FUN_EXPORT PFNGLBINDSAMPLERSPROC __glewBindSamplers; +GLEW_FUN_EXPORT PFNGLBINDTEXTURESPROC __glewBindTextures; +GLEW_FUN_EXPORT PFNGLBINDVERTEXBUFFERSPROC __glewBindVertexBuffers; + +GLEW_FUN_EXPORT PFNGLMULTIDRAWARRAYSINDIRECTPROC __glewMultiDrawArraysIndirect; +GLEW_FUN_EXPORT PFNGLMULTIDRAWELEMENTSINDIRECTPROC __glewMultiDrawElementsIndirect; + +GLEW_FUN_EXPORT PFNGLSAMPLECOVERAGEARBPROC __glewSampleCoverageARB; + +GLEW_FUN_EXPORT PFNGLACTIVETEXTUREARBPROC __glewActiveTextureARB; +GLEW_FUN_EXPORT PFNGLCLIENTACTIVETEXTUREARBPROC __glewClientActiveTextureARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD1DARBPROC __glewMultiTexCoord1dARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD1DVARBPROC __glewMultiTexCoord1dvARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD1FARBPROC __glewMultiTexCoord1fARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD1FVARBPROC __glewMultiTexCoord1fvARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD1IARBPROC __glewMultiTexCoord1iARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD1IVARBPROC __glewMultiTexCoord1ivARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD1SARBPROC __glewMultiTexCoord1sARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD1SVARBPROC __glewMultiTexCoord1svARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD2DARBPROC __glewMultiTexCoord2dARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD2DVARBPROC __glewMultiTexCoord2dvARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD2FARBPROC __glewMultiTexCoord2fARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD2FVARBPROC __glewMultiTexCoord2fvARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD2IARBPROC __glewMultiTexCoord2iARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD2IVARBPROC __glewMultiTexCoord2ivARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD2SARBPROC __glewMultiTexCoord2sARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD2SVARBPROC __glewMultiTexCoord2svARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD3DARBPROC __glewMultiTexCoord3dARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD3DVARBPROC __glewMultiTexCoord3dvARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD3FARBPROC __glewMultiTexCoord3fARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD3FVARBPROC __glewMultiTexCoord3fvARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD3IARBPROC __glewMultiTexCoord3iARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD3IVARBPROC __glewMultiTexCoord3ivARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD3SARBPROC __glewMultiTexCoord3sARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD3SVARBPROC __glewMultiTexCoord3svARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD4DARBPROC __glewMultiTexCoord4dARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD4DVARBPROC __glewMultiTexCoord4dvARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD4FARBPROC __glewMultiTexCoord4fARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD4FVARBPROC __glewMultiTexCoord4fvARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD4IARBPROC __glewMultiTexCoord4iARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD4IVARBPROC __glewMultiTexCoord4ivARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD4SARBPROC __glewMultiTexCoord4sARB; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD4SVARBPROC __glewMultiTexCoord4svARB; + +GLEW_FUN_EXPORT PFNGLBEGINQUERYARBPROC __glewBeginQueryARB; +GLEW_FUN_EXPORT PFNGLDELETEQUERIESARBPROC __glewDeleteQueriesARB; +GLEW_FUN_EXPORT PFNGLENDQUERYARBPROC __glewEndQueryARB; +GLEW_FUN_EXPORT PFNGLGENQUERIESARBPROC __glewGenQueriesARB; +GLEW_FUN_EXPORT PFNGLGETQUERYOBJECTIVARBPROC __glewGetQueryObjectivARB; +GLEW_FUN_EXPORT PFNGLGETQUERYOBJECTUIVARBPROC __glewGetQueryObjectuivARB; +GLEW_FUN_EXPORT PFNGLGETQUERYIVARBPROC __glewGetQueryivARB; +GLEW_FUN_EXPORT PFNGLISQUERYARBPROC __glewIsQueryARB; + +GLEW_FUN_EXPORT PFNGLMAXSHADERCOMPILERTHREADSARBPROC __glewMaxShaderCompilerThreadsARB; + +GLEW_FUN_EXPORT PFNGLPOINTPARAMETERFARBPROC __glewPointParameterfARB; +GLEW_FUN_EXPORT PFNGLPOINTPARAMETERFVARBPROC __glewPointParameterfvARB; + +GLEW_FUN_EXPORT PFNGLPOLYGONOFFSETCLAMPPROC __glewPolygonOffsetClamp; + +GLEW_FUN_EXPORT PFNGLGETPROGRAMINTERFACEIVPROC __glewGetProgramInterfaceiv; +GLEW_FUN_EXPORT PFNGLGETPROGRAMRESOURCEINDEXPROC __glewGetProgramResourceIndex; +GLEW_FUN_EXPORT PFNGLGETPROGRAMRESOURCELOCATIONPROC __glewGetProgramResourceLocation; +GLEW_FUN_EXPORT PFNGLGETPROGRAMRESOURCELOCATIONINDEXPROC __glewGetProgramResourceLocationIndex; +GLEW_FUN_EXPORT PFNGLGETPROGRAMRESOURCENAMEPROC __glewGetProgramResourceName; +GLEW_FUN_EXPORT PFNGLGETPROGRAMRESOURCEIVPROC __glewGetProgramResourceiv; + +GLEW_FUN_EXPORT PFNGLPROVOKINGVERTEXPROC __glewProvokingVertex; + +GLEW_FUN_EXPORT PFNGLGETGRAPHICSRESETSTATUSARBPROC __glewGetGraphicsResetStatusARB; +GLEW_FUN_EXPORT PFNGLGETNCOLORTABLEARBPROC __glewGetnColorTableARB; +GLEW_FUN_EXPORT PFNGLGETNCOMPRESSEDTEXIMAGEARBPROC __glewGetnCompressedTexImageARB; +GLEW_FUN_EXPORT PFNGLGETNCONVOLUTIONFILTERARBPROC __glewGetnConvolutionFilterARB; +GLEW_FUN_EXPORT PFNGLGETNHISTOGRAMARBPROC __glewGetnHistogramARB; +GLEW_FUN_EXPORT PFNGLGETNMAPDVARBPROC __glewGetnMapdvARB; +GLEW_FUN_EXPORT PFNGLGETNMAPFVARBPROC __glewGetnMapfvARB; +GLEW_FUN_EXPORT PFNGLGETNMAPIVARBPROC __glewGetnMapivARB; +GLEW_FUN_EXPORT PFNGLGETNMINMAXARBPROC __glewGetnMinmaxARB; +GLEW_FUN_EXPORT PFNGLGETNPIXELMAPFVARBPROC __glewGetnPixelMapfvARB; +GLEW_FUN_EXPORT PFNGLGETNPIXELMAPUIVARBPROC __glewGetnPixelMapuivARB; +GLEW_FUN_EXPORT PFNGLGETNPIXELMAPUSVARBPROC __glewGetnPixelMapusvARB; +GLEW_FUN_EXPORT PFNGLGETNPOLYGONSTIPPLEARBPROC __glewGetnPolygonStippleARB; +GLEW_FUN_EXPORT PFNGLGETNSEPARABLEFILTERARBPROC __glewGetnSeparableFilterARB; +GLEW_FUN_EXPORT PFNGLGETNTEXIMAGEARBPROC __glewGetnTexImageARB; +GLEW_FUN_EXPORT PFNGLGETNUNIFORMDVARBPROC __glewGetnUniformdvARB; +GLEW_FUN_EXPORT PFNGLGETNUNIFORMFVARBPROC __glewGetnUniformfvARB; +GLEW_FUN_EXPORT PFNGLGETNUNIFORMIVARBPROC __glewGetnUniformivARB; +GLEW_FUN_EXPORT PFNGLGETNUNIFORMUIVARBPROC __glewGetnUniformuivARB; +GLEW_FUN_EXPORT PFNGLREADNPIXELSARBPROC __glewReadnPixelsARB; + +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERSAMPLELOCATIONSFVARBPROC __glewFramebufferSampleLocationsfvARB; +GLEW_FUN_EXPORT PFNGLNAMEDFRAMEBUFFERSAMPLELOCATIONSFVARBPROC __glewNamedFramebufferSampleLocationsfvARB; + +GLEW_FUN_EXPORT PFNGLMINSAMPLESHADINGARBPROC __glewMinSampleShadingARB; + +GLEW_FUN_EXPORT PFNGLBINDSAMPLERPROC __glewBindSampler; +GLEW_FUN_EXPORT PFNGLDELETESAMPLERSPROC __glewDeleteSamplers; +GLEW_FUN_EXPORT PFNGLGENSAMPLERSPROC __glewGenSamplers; +GLEW_FUN_EXPORT PFNGLGETSAMPLERPARAMETERIIVPROC __glewGetSamplerParameterIiv; +GLEW_FUN_EXPORT PFNGLGETSAMPLERPARAMETERIUIVPROC __glewGetSamplerParameterIuiv; +GLEW_FUN_EXPORT PFNGLGETSAMPLERPARAMETERFVPROC __glewGetSamplerParameterfv; +GLEW_FUN_EXPORT PFNGLGETSAMPLERPARAMETERIVPROC __glewGetSamplerParameteriv; +GLEW_FUN_EXPORT PFNGLISSAMPLERPROC __glewIsSampler; +GLEW_FUN_EXPORT PFNGLSAMPLERPARAMETERIIVPROC __glewSamplerParameterIiv; +GLEW_FUN_EXPORT PFNGLSAMPLERPARAMETERIUIVPROC __glewSamplerParameterIuiv; +GLEW_FUN_EXPORT PFNGLSAMPLERPARAMETERFPROC __glewSamplerParameterf; +GLEW_FUN_EXPORT PFNGLSAMPLERPARAMETERFVPROC __glewSamplerParameterfv; +GLEW_FUN_EXPORT PFNGLSAMPLERPARAMETERIPROC __glewSamplerParameteri; +GLEW_FUN_EXPORT PFNGLSAMPLERPARAMETERIVPROC __glewSamplerParameteriv; + +GLEW_FUN_EXPORT PFNGLACTIVESHADERPROGRAMPROC __glewActiveShaderProgram; +GLEW_FUN_EXPORT PFNGLBINDPROGRAMPIPELINEPROC __glewBindProgramPipeline; +GLEW_FUN_EXPORT PFNGLCREATESHADERPROGRAMVPROC __glewCreateShaderProgramv; +GLEW_FUN_EXPORT PFNGLDELETEPROGRAMPIPELINESPROC __glewDeleteProgramPipelines; +GLEW_FUN_EXPORT PFNGLGENPROGRAMPIPELINESPROC __glewGenProgramPipelines; +GLEW_FUN_EXPORT PFNGLGETPROGRAMPIPELINEINFOLOGPROC __glewGetProgramPipelineInfoLog; +GLEW_FUN_EXPORT PFNGLGETPROGRAMPIPELINEIVPROC __glewGetProgramPipelineiv; +GLEW_FUN_EXPORT PFNGLISPROGRAMPIPELINEPROC __glewIsProgramPipeline; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1DPROC __glewProgramUniform1d; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1DVPROC __glewProgramUniform1dv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1FPROC __glewProgramUniform1f; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1FVPROC __glewProgramUniform1fv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1IPROC __glewProgramUniform1i; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1IVPROC __glewProgramUniform1iv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1UIPROC __glewProgramUniform1ui; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1UIVPROC __glewProgramUniform1uiv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2DPROC __glewProgramUniform2d; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2DVPROC __glewProgramUniform2dv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2FPROC __glewProgramUniform2f; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2FVPROC __glewProgramUniform2fv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2IPROC __glewProgramUniform2i; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2IVPROC __glewProgramUniform2iv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2UIPROC __glewProgramUniform2ui; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2UIVPROC __glewProgramUniform2uiv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3DPROC __glewProgramUniform3d; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3DVPROC __glewProgramUniform3dv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3FPROC __glewProgramUniform3f; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3FVPROC __glewProgramUniform3fv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3IPROC __glewProgramUniform3i; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3IVPROC __glewProgramUniform3iv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3UIPROC __glewProgramUniform3ui; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3UIVPROC __glewProgramUniform3uiv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4DPROC __glewProgramUniform4d; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4DVPROC __glewProgramUniform4dv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4FPROC __glewProgramUniform4f; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4FVPROC __glewProgramUniform4fv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4IPROC __glewProgramUniform4i; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4IVPROC __glewProgramUniform4iv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4UIPROC __glewProgramUniform4ui; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4UIVPROC __glewProgramUniform4uiv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX2DVPROC __glewProgramUniformMatrix2dv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX2FVPROC __glewProgramUniformMatrix2fv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX2X3DVPROC __glewProgramUniformMatrix2x3dv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX2X3FVPROC __glewProgramUniformMatrix2x3fv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX2X4DVPROC __glewProgramUniformMatrix2x4dv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX2X4FVPROC __glewProgramUniformMatrix2x4fv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX3DVPROC __glewProgramUniformMatrix3dv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX3FVPROC __glewProgramUniformMatrix3fv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX3X2DVPROC __glewProgramUniformMatrix3x2dv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX3X2FVPROC __glewProgramUniformMatrix3x2fv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX3X4DVPROC __glewProgramUniformMatrix3x4dv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX3X4FVPROC __glewProgramUniformMatrix3x4fv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX4DVPROC __glewProgramUniformMatrix4dv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX4FVPROC __glewProgramUniformMatrix4fv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX4X2DVPROC __glewProgramUniformMatrix4x2dv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX4X2FVPROC __glewProgramUniformMatrix4x2fv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX4X3DVPROC __glewProgramUniformMatrix4x3dv; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX4X3FVPROC __glewProgramUniformMatrix4x3fv; +GLEW_FUN_EXPORT PFNGLUSEPROGRAMSTAGESPROC __glewUseProgramStages; +GLEW_FUN_EXPORT PFNGLVALIDATEPROGRAMPIPELINEPROC __glewValidateProgramPipeline; + +GLEW_FUN_EXPORT PFNGLGETACTIVEATOMICCOUNTERBUFFERIVPROC __glewGetActiveAtomicCounterBufferiv; + +GLEW_FUN_EXPORT PFNGLBINDIMAGETEXTUREPROC __glewBindImageTexture; +GLEW_FUN_EXPORT PFNGLMEMORYBARRIERPROC __glewMemoryBarrier; + +GLEW_FUN_EXPORT PFNGLATTACHOBJECTARBPROC __glewAttachObjectARB; +GLEW_FUN_EXPORT PFNGLCOMPILESHADERARBPROC __glewCompileShaderARB; +GLEW_FUN_EXPORT PFNGLCREATEPROGRAMOBJECTARBPROC __glewCreateProgramObjectARB; +GLEW_FUN_EXPORT PFNGLCREATESHADEROBJECTARBPROC __glewCreateShaderObjectARB; +GLEW_FUN_EXPORT PFNGLDELETEOBJECTARBPROC __glewDeleteObjectARB; +GLEW_FUN_EXPORT PFNGLDETACHOBJECTARBPROC __glewDetachObjectARB; +GLEW_FUN_EXPORT PFNGLGETACTIVEUNIFORMARBPROC __glewGetActiveUniformARB; +GLEW_FUN_EXPORT PFNGLGETATTACHEDOBJECTSARBPROC __glewGetAttachedObjectsARB; +GLEW_FUN_EXPORT PFNGLGETHANDLEARBPROC __glewGetHandleARB; +GLEW_FUN_EXPORT PFNGLGETINFOLOGARBPROC __glewGetInfoLogARB; +GLEW_FUN_EXPORT PFNGLGETOBJECTPARAMETERFVARBPROC __glewGetObjectParameterfvARB; +GLEW_FUN_EXPORT PFNGLGETOBJECTPARAMETERIVARBPROC __glewGetObjectParameterivARB; +GLEW_FUN_EXPORT PFNGLGETSHADERSOURCEARBPROC __glewGetShaderSourceARB; +GLEW_FUN_EXPORT PFNGLGETUNIFORMLOCATIONARBPROC __glewGetUniformLocationARB; +GLEW_FUN_EXPORT PFNGLGETUNIFORMFVARBPROC __glewGetUniformfvARB; +GLEW_FUN_EXPORT PFNGLGETUNIFORMIVARBPROC __glewGetUniformivARB; +GLEW_FUN_EXPORT PFNGLLINKPROGRAMARBPROC __glewLinkProgramARB; +GLEW_FUN_EXPORT PFNGLSHADERSOURCEARBPROC __glewShaderSourceARB; +GLEW_FUN_EXPORT PFNGLUNIFORM1FARBPROC __glewUniform1fARB; +GLEW_FUN_EXPORT PFNGLUNIFORM1FVARBPROC __glewUniform1fvARB; +GLEW_FUN_EXPORT PFNGLUNIFORM1IARBPROC __glewUniform1iARB; +GLEW_FUN_EXPORT PFNGLUNIFORM1IVARBPROC __glewUniform1ivARB; +GLEW_FUN_EXPORT PFNGLUNIFORM2FARBPROC __glewUniform2fARB; +GLEW_FUN_EXPORT PFNGLUNIFORM2FVARBPROC __glewUniform2fvARB; +GLEW_FUN_EXPORT PFNGLUNIFORM2IARBPROC __glewUniform2iARB; +GLEW_FUN_EXPORT PFNGLUNIFORM2IVARBPROC __glewUniform2ivARB; +GLEW_FUN_EXPORT PFNGLUNIFORM3FARBPROC __glewUniform3fARB; +GLEW_FUN_EXPORT PFNGLUNIFORM3FVARBPROC __glewUniform3fvARB; +GLEW_FUN_EXPORT PFNGLUNIFORM3IARBPROC __glewUniform3iARB; +GLEW_FUN_EXPORT PFNGLUNIFORM3IVARBPROC __glewUniform3ivARB; +GLEW_FUN_EXPORT PFNGLUNIFORM4FARBPROC __glewUniform4fARB; +GLEW_FUN_EXPORT PFNGLUNIFORM4FVARBPROC __glewUniform4fvARB; +GLEW_FUN_EXPORT PFNGLUNIFORM4IARBPROC __glewUniform4iARB; +GLEW_FUN_EXPORT PFNGLUNIFORM4IVARBPROC __glewUniform4ivARB; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX2FVARBPROC __glewUniformMatrix2fvARB; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX3FVARBPROC __glewUniformMatrix3fvARB; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX4FVARBPROC __glewUniformMatrix4fvARB; +GLEW_FUN_EXPORT PFNGLUSEPROGRAMOBJECTARBPROC __glewUseProgramObjectARB; +GLEW_FUN_EXPORT PFNGLVALIDATEPROGRAMARBPROC __glewValidateProgramARB; + +GLEW_FUN_EXPORT PFNGLSHADERSTORAGEBLOCKBINDINGPROC __glewShaderStorageBlockBinding; + +GLEW_FUN_EXPORT PFNGLGETACTIVESUBROUTINENAMEPROC __glewGetActiveSubroutineName; +GLEW_FUN_EXPORT PFNGLGETACTIVESUBROUTINEUNIFORMNAMEPROC __glewGetActiveSubroutineUniformName; +GLEW_FUN_EXPORT PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC __glewGetActiveSubroutineUniformiv; +GLEW_FUN_EXPORT PFNGLGETPROGRAMSTAGEIVPROC __glewGetProgramStageiv; +GLEW_FUN_EXPORT PFNGLGETSUBROUTINEINDEXPROC __glewGetSubroutineIndex; +GLEW_FUN_EXPORT PFNGLGETSUBROUTINEUNIFORMLOCATIONPROC __glewGetSubroutineUniformLocation; +GLEW_FUN_EXPORT PFNGLGETUNIFORMSUBROUTINEUIVPROC __glewGetUniformSubroutineuiv; +GLEW_FUN_EXPORT PFNGLUNIFORMSUBROUTINESUIVPROC __glewUniformSubroutinesuiv; + +GLEW_FUN_EXPORT PFNGLCOMPILESHADERINCLUDEARBPROC __glewCompileShaderIncludeARB; +GLEW_FUN_EXPORT PFNGLDELETENAMEDSTRINGARBPROC __glewDeleteNamedStringARB; +GLEW_FUN_EXPORT PFNGLGETNAMEDSTRINGARBPROC __glewGetNamedStringARB; +GLEW_FUN_EXPORT PFNGLGETNAMEDSTRINGIVARBPROC __glewGetNamedStringivARB; +GLEW_FUN_EXPORT PFNGLISNAMEDSTRINGARBPROC __glewIsNamedStringARB; +GLEW_FUN_EXPORT PFNGLNAMEDSTRINGARBPROC __glewNamedStringARB; + +GLEW_FUN_EXPORT PFNGLBUFFERPAGECOMMITMENTARBPROC __glewBufferPageCommitmentARB; + +GLEW_FUN_EXPORT PFNGLTEXPAGECOMMITMENTARBPROC __glewTexPageCommitmentARB; + +GLEW_FUN_EXPORT PFNGLCLIENTWAITSYNCPROC __glewClientWaitSync; +GLEW_FUN_EXPORT PFNGLDELETESYNCPROC __glewDeleteSync; +GLEW_FUN_EXPORT PFNGLFENCESYNCPROC __glewFenceSync; +GLEW_FUN_EXPORT PFNGLGETINTEGER64VPROC __glewGetInteger64v; +GLEW_FUN_EXPORT PFNGLGETSYNCIVPROC __glewGetSynciv; +GLEW_FUN_EXPORT PFNGLISSYNCPROC __glewIsSync; +GLEW_FUN_EXPORT PFNGLWAITSYNCPROC __glewWaitSync; + +GLEW_FUN_EXPORT PFNGLPATCHPARAMETERFVPROC __glewPatchParameterfv; +GLEW_FUN_EXPORT PFNGLPATCHPARAMETERIPROC __glewPatchParameteri; + +GLEW_FUN_EXPORT PFNGLTEXTUREBARRIERPROC __glewTextureBarrier; + +GLEW_FUN_EXPORT PFNGLTEXBUFFERARBPROC __glewTexBufferARB; + +GLEW_FUN_EXPORT PFNGLTEXBUFFERRANGEPROC __glewTexBufferRange; +GLEW_FUN_EXPORT PFNGLTEXTUREBUFFERRANGEEXTPROC __glewTextureBufferRangeEXT; + +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXIMAGE1DARBPROC __glewCompressedTexImage1DARB; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXIMAGE2DARBPROC __glewCompressedTexImage2DARB; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXIMAGE3DARBPROC __glewCompressedTexImage3DARB; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXSUBIMAGE1DARBPROC __glewCompressedTexSubImage1DARB; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXSUBIMAGE2DARBPROC __glewCompressedTexSubImage2DARB; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXSUBIMAGE3DARBPROC __glewCompressedTexSubImage3DARB; +GLEW_FUN_EXPORT PFNGLGETCOMPRESSEDTEXIMAGEARBPROC __glewGetCompressedTexImageARB; + +GLEW_FUN_EXPORT PFNGLGETMULTISAMPLEFVPROC __glewGetMultisamplefv; +GLEW_FUN_EXPORT PFNGLSAMPLEMASKIPROC __glewSampleMaski; +GLEW_FUN_EXPORT PFNGLTEXIMAGE2DMULTISAMPLEPROC __glewTexImage2DMultisample; +GLEW_FUN_EXPORT PFNGLTEXIMAGE3DMULTISAMPLEPROC __glewTexImage3DMultisample; + +GLEW_FUN_EXPORT PFNGLTEXSTORAGE1DPROC __glewTexStorage1D; +GLEW_FUN_EXPORT PFNGLTEXSTORAGE2DPROC __glewTexStorage2D; +GLEW_FUN_EXPORT PFNGLTEXSTORAGE3DPROC __glewTexStorage3D; + +GLEW_FUN_EXPORT PFNGLTEXSTORAGE2DMULTISAMPLEPROC __glewTexStorage2DMultisample; +GLEW_FUN_EXPORT PFNGLTEXSTORAGE3DMULTISAMPLEPROC __glewTexStorage3DMultisample; +GLEW_FUN_EXPORT PFNGLTEXTURESTORAGE2DMULTISAMPLEEXTPROC __glewTextureStorage2DMultisampleEXT; +GLEW_FUN_EXPORT PFNGLTEXTURESTORAGE3DMULTISAMPLEEXTPROC __glewTextureStorage3DMultisampleEXT; + +GLEW_FUN_EXPORT PFNGLTEXTUREVIEWPROC __glewTextureView; + +GLEW_FUN_EXPORT PFNGLGETQUERYOBJECTI64VPROC __glewGetQueryObjecti64v; +GLEW_FUN_EXPORT PFNGLGETQUERYOBJECTUI64VPROC __glewGetQueryObjectui64v; +GLEW_FUN_EXPORT PFNGLQUERYCOUNTERPROC __glewQueryCounter; + +GLEW_FUN_EXPORT PFNGLBINDTRANSFORMFEEDBACKPROC __glewBindTransformFeedback; +GLEW_FUN_EXPORT PFNGLDELETETRANSFORMFEEDBACKSPROC __glewDeleteTransformFeedbacks; +GLEW_FUN_EXPORT PFNGLDRAWTRANSFORMFEEDBACKPROC __glewDrawTransformFeedback; +GLEW_FUN_EXPORT PFNGLGENTRANSFORMFEEDBACKSPROC __glewGenTransformFeedbacks; +GLEW_FUN_EXPORT PFNGLISTRANSFORMFEEDBACKPROC __glewIsTransformFeedback; +GLEW_FUN_EXPORT PFNGLPAUSETRANSFORMFEEDBACKPROC __glewPauseTransformFeedback; +GLEW_FUN_EXPORT PFNGLRESUMETRANSFORMFEEDBACKPROC __glewResumeTransformFeedback; + +GLEW_FUN_EXPORT PFNGLBEGINQUERYINDEXEDPROC __glewBeginQueryIndexed; +GLEW_FUN_EXPORT PFNGLDRAWTRANSFORMFEEDBACKSTREAMPROC __glewDrawTransformFeedbackStream; +GLEW_FUN_EXPORT PFNGLENDQUERYINDEXEDPROC __glewEndQueryIndexed; +GLEW_FUN_EXPORT PFNGLGETQUERYINDEXEDIVPROC __glewGetQueryIndexediv; + +GLEW_FUN_EXPORT PFNGLDRAWTRANSFORMFEEDBACKINSTANCEDPROC __glewDrawTransformFeedbackInstanced; +GLEW_FUN_EXPORT PFNGLDRAWTRANSFORMFEEDBACKSTREAMINSTANCEDPROC __glewDrawTransformFeedbackStreamInstanced; + +GLEW_FUN_EXPORT PFNGLLOADTRANSPOSEMATRIXDARBPROC __glewLoadTransposeMatrixdARB; +GLEW_FUN_EXPORT PFNGLLOADTRANSPOSEMATRIXFARBPROC __glewLoadTransposeMatrixfARB; +GLEW_FUN_EXPORT PFNGLMULTTRANSPOSEMATRIXDARBPROC __glewMultTransposeMatrixdARB; +GLEW_FUN_EXPORT PFNGLMULTTRANSPOSEMATRIXFARBPROC __glewMultTransposeMatrixfARB; + +GLEW_FUN_EXPORT PFNGLBINDBUFFERBASEPROC __glewBindBufferBase; +GLEW_FUN_EXPORT PFNGLBINDBUFFERRANGEPROC __glewBindBufferRange; +GLEW_FUN_EXPORT PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC __glewGetActiveUniformBlockName; +GLEW_FUN_EXPORT PFNGLGETACTIVEUNIFORMBLOCKIVPROC __glewGetActiveUniformBlockiv; +GLEW_FUN_EXPORT PFNGLGETACTIVEUNIFORMNAMEPROC __glewGetActiveUniformName; +GLEW_FUN_EXPORT PFNGLGETACTIVEUNIFORMSIVPROC __glewGetActiveUniformsiv; +GLEW_FUN_EXPORT PFNGLGETINTEGERI_VPROC __glewGetIntegeri_v; +GLEW_FUN_EXPORT PFNGLGETUNIFORMBLOCKINDEXPROC __glewGetUniformBlockIndex; +GLEW_FUN_EXPORT PFNGLGETUNIFORMINDICESPROC __glewGetUniformIndices; +GLEW_FUN_EXPORT PFNGLUNIFORMBLOCKBINDINGPROC __glewUniformBlockBinding; + +GLEW_FUN_EXPORT PFNGLBINDVERTEXARRAYPROC __glewBindVertexArray; +GLEW_FUN_EXPORT PFNGLDELETEVERTEXARRAYSPROC __glewDeleteVertexArrays; +GLEW_FUN_EXPORT PFNGLGENVERTEXARRAYSPROC __glewGenVertexArrays; +GLEW_FUN_EXPORT PFNGLISVERTEXARRAYPROC __glewIsVertexArray; + +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBLDVPROC __glewGetVertexAttribLdv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL1DPROC __glewVertexAttribL1d; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL1DVPROC __glewVertexAttribL1dv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL2DPROC __glewVertexAttribL2d; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL2DVPROC __glewVertexAttribL2dv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL3DPROC __glewVertexAttribL3d; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL3DVPROC __glewVertexAttribL3dv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL4DPROC __glewVertexAttribL4d; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL4DVPROC __glewVertexAttribL4dv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBLPOINTERPROC __glewVertexAttribLPointer; + +GLEW_FUN_EXPORT PFNGLBINDVERTEXBUFFERPROC __glewBindVertexBuffer; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYBINDVERTEXBUFFEREXTPROC __glewVertexArrayBindVertexBufferEXT; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYVERTEXATTRIBBINDINGEXTPROC __glewVertexArrayVertexAttribBindingEXT; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYVERTEXATTRIBFORMATEXTPROC __glewVertexArrayVertexAttribFormatEXT; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYVERTEXATTRIBIFORMATEXTPROC __glewVertexArrayVertexAttribIFormatEXT; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYVERTEXATTRIBLFORMATEXTPROC __glewVertexArrayVertexAttribLFormatEXT; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYVERTEXBINDINGDIVISOREXTPROC __glewVertexArrayVertexBindingDivisorEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBBINDINGPROC __glewVertexAttribBinding; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBFORMATPROC __glewVertexAttribFormat; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBIFORMATPROC __glewVertexAttribIFormat; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBLFORMATPROC __glewVertexAttribLFormat; +GLEW_FUN_EXPORT PFNGLVERTEXBINDINGDIVISORPROC __glewVertexBindingDivisor; + +GLEW_FUN_EXPORT PFNGLVERTEXBLENDARBPROC __glewVertexBlendARB; +GLEW_FUN_EXPORT PFNGLWEIGHTPOINTERARBPROC __glewWeightPointerARB; +GLEW_FUN_EXPORT PFNGLWEIGHTBVARBPROC __glewWeightbvARB; +GLEW_FUN_EXPORT PFNGLWEIGHTDVARBPROC __glewWeightdvARB; +GLEW_FUN_EXPORT PFNGLWEIGHTFVARBPROC __glewWeightfvARB; +GLEW_FUN_EXPORT PFNGLWEIGHTIVARBPROC __glewWeightivARB; +GLEW_FUN_EXPORT PFNGLWEIGHTSVARBPROC __glewWeightsvARB; +GLEW_FUN_EXPORT PFNGLWEIGHTUBVARBPROC __glewWeightubvARB; +GLEW_FUN_EXPORT PFNGLWEIGHTUIVARBPROC __glewWeightuivARB; +GLEW_FUN_EXPORT PFNGLWEIGHTUSVARBPROC __glewWeightusvARB; + +GLEW_FUN_EXPORT PFNGLBINDBUFFERARBPROC __glewBindBufferARB; +GLEW_FUN_EXPORT PFNGLBUFFERDATAARBPROC __glewBufferDataARB; +GLEW_FUN_EXPORT PFNGLBUFFERSUBDATAARBPROC __glewBufferSubDataARB; +GLEW_FUN_EXPORT PFNGLDELETEBUFFERSARBPROC __glewDeleteBuffersARB; +GLEW_FUN_EXPORT PFNGLGENBUFFERSARBPROC __glewGenBuffersARB; +GLEW_FUN_EXPORT PFNGLGETBUFFERPARAMETERIVARBPROC __glewGetBufferParameterivARB; +GLEW_FUN_EXPORT PFNGLGETBUFFERPOINTERVARBPROC __glewGetBufferPointervARB; +GLEW_FUN_EXPORT PFNGLGETBUFFERSUBDATAARBPROC __glewGetBufferSubDataARB; +GLEW_FUN_EXPORT PFNGLISBUFFERARBPROC __glewIsBufferARB; +GLEW_FUN_EXPORT PFNGLMAPBUFFERARBPROC __glewMapBufferARB; +GLEW_FUN_EXPORT PFNGLUNMAPBUFFERARBPROC __glewUnmapBufferARB; + +GLEW_FUN_EXPORT PFNGLBINDPROGRAMARBPROC __glewBindProgramARB; +GLEW_FUN_EXPORT PFNGLDELETEPROGRAMSARBPROC __glewDeleteProgramsARB; +GLEW_FUN_EXPORT PFNGLDISABLEVERTEXATTRIBARRAYARBPROC __glewDisableVertexAttribArrayARB; +GLEW_FUN_EXPORT PFNGLENABLEVERTEXATTRIBARRAYARBPROC __glewEnableVertexAttribArrayARB; +GLEW_FUN_EXPORT PFNGLGENPROGRAMSARBPROC __glewGenProgramsARB; +GLEW_FUN_EXPORT PFNGLGETPROGRAMENVPARAMETERDVARBPROC __glewGetProgramEnvParameterdvARB; +GLEW_FUN_EXPORT PFNGLGETPROGRAMENVPARAMETERFVARBPROC __glewGetProgramEnvParameterfvARB; +GLEW_FUN_EXPORT PFNGLGETPROGRAMLOCALPARAMETERDVARBPROC __glewGetProgramLocalParameterdvARB; +GLEW_FUN_EXPORT PFNGLGETPROGRAMLOCALPARAMETERFVARBPROC __glewGetProgramLocalParameterfvARB; +GLEW_FUN_EXPORT PFNGLGETPROGRAMSTRINGARBPROC __glewGetProgramStringARB; +GLEW_FUN_EXPORT PFNGLGETPROGRAMIVARBPROC __glewGetProgramivARB; +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBPOINTERVARBPROC __glewGetVertexAttribPointervARB; +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBDVARBPROC __glewGetVertexAttribdvARB; +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBFVARBPROC __glewGetVertexAttribfvARB; +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBIVARBPROC __glewGetVertexAttribivARB; +GLEW_FUN_EXPORT PFNGLISPROGRAMARBPROC __glewIsProgramARB; +GLEW_FUN_EXPORT PFNGLPROGRAMENVPARAMETER4DARBPROC __glewProgramEnvParameter4dARB; +GLEW_FUN_EXPORT PFNGLPROGRAMENVPARAMETER4DVARBPROC __glewProgramEnvParameter4dvARB; +GLEW_FUN_EXPORT PFNGLPROGRAMENVPARAMETER4FARBPROC __glewProgramEnvParameter4fARB; +GLEW_FUN_EXPORT PFNGLPROGRAMENVPARAMETER4FVARBPROC __glewProgramEnvParameter4fvARB; +GLEW_FUN_EXPORT PFNGLPROGRAMLOCALPARAMETER4DARBPROC __glewProgramLocalParameter4dARB; +GLEW_FUN_EXPORT PFNGLPROGRAMLOCALPARAMETER4DVARBPROC __glewProgramLocalParameter4dvARB; +GLEW_FUN_EXPORT PFNGLPROGRAMLOCALPARAMETER4FARBPROC __glewProgramLocalParameter4fARB; +GLEW_FUN_EXPORT PFNGLPROGRAMLOCALPARAMETER4FVARBPROC __glewProgramLocalParameter4fvARB; +GLEW_FUN_EXPORT PFNGLPROGRAMSTRINGARBPROC __glewProgramStringARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1DARBPROC __glewVertexAttrib1dARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1DVARBPROC __glewVertexAttrib1dvARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1FARBPROC __glewVertexAttrib1fARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1FVARBPROC __glewVertexAttrib1fvARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1SARBPROC __glewVertexAttrib1sARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1SVARBPROC __glewVertexAttrib1svARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2DARBPROC __glewVertexAttrib2dARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2DVARBPROC __glewVertexAttrib2dvARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2FARBPROC __glewVertexAttrib2fARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2FVARBPROC __glewVertexAttrib2fvARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2SARBPROC __glewVertexAttrib2sARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2SVARBPROC __glewVertexAttrib2svARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3DARBPROC __glewVertexAttrib3dARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3DVARBPROC __glewVertexAttrib3dvARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3FARBPROC __glewVertexAttrib3fARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3FVARBPROC __glewVertexAttrib3fvARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3SARBPROC __glewVertexAttrib3sARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3SVARBPROC __glewVertexAttrib3svARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4NBVARBPROC __glewVertexAttrib4NbvARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4NIVARBPROC __glewVertexAttrib4NivARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4NSVARBPROC __glewVertexAttrib4NsvARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4NUBARBPROC __glewVertexAttrib4NubARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4NUBVARBPROC __glewVertexAttrib4NubvARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4NUIVARBPROC __glewVertexAttrib4NuivARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4NUSVARBPROC __glewVertexAttrib4NusvARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4BVARBPROC __glewVertexAttrib4bvARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4DARBPROC __glewVertexAttrib4dARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4DVARBPROC __glewVertexAttrib4dvARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4FARBPROC __glewVertexAttrib4fARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4FVARBPROC __glewVertexAttrib4fvARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4IVARBPROC __glewVertexAttrib4ivARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4SARBPROC __glewVertexAttrib4sARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4SVARBPROC __glewVertexAttrib4svARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4UBVARBPROC __glewVertexAttrib4ubvARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4UIVARBPROC __glewVertexAttrib4uivARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4USVARBPROC __glewVertexAttrib4usvARB; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBPOINTERARBPROC __glewVertexAttribPointerARB; + +GLEW_FUN_EXPORT PFNGLBINDATTRIBLOCATIONARBPROC __glewBindAttribLocationARB; +GLEW_FUN_EXPORT PFNGLGETACTIVEATTRIBARBPROC __glewGetActiveAttribARB; +GLEW_FUN_EXPORT PFNGLGETATTRIBLOCATIONARBPROC __glewGetAttribLocationARB; + +GLEW_FUN_EXPORT PFNGLCOLORP3UIPROC __glewColorP3ui; +GLEW_FUN_EXPORT PFNGLCOLORP3UIVPROC __glewColorP3uiv; +GLEW_FUN_EXPORT PFNGLCOLORP4UIPROC __glewColorP4ui; +GLEW_FUN_EXPORT PFNGLCOLORP4UIVPROC __glewColorP4uiv; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORDP1UIPROC __glewMultiTexCoordP1ui; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORDP1UIVPROC __glewMultiTexCoordP1uiv; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORDP2UIPROC __glewMultiTexCoordP2ui; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORDP2UIVPROC __glewMultiTexCoordP2uiv; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORDP3UIPROC __glewMultiTexCoordP3ui; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORDP3UIVPROC __glewMultiTexCoordP3uiv; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORDP4UIPROC __glewMultiTexCoordP4ui; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORDP4UIVPROC __glewMultiTexCoordP4uiv; +GLEW_FUN_EXPORT PFNGLNORMALP3UIPROC __glewNormalP3ui; +GLEW_FUN_EXPORT PFNGLNORMALP3UIVPROC __glewNormalP3uiv; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLORP3UIPROC __glewSecondaryColorP3ui; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLORP3UIVPROC __glewSecondaryColorP3uiv; +GLEW_FUN_EXPORT PFNGLTEXCOORDP1UIPROC __glewTexCoordP1ui; +GLEW_FUN_EXPORT PFNGLTEXCOORDP1UIVPROC __glewTexCoordP1uiv; +GLEW_FUN_EXPORT PFNGLTEXCOORDP2UIPROC __glewTexCoordP2ui; +GLEW_FUN_EXPORT PFNGLTEXCOORDP2UIVPROC __glewTexCoordP2uiv; +GLEW_FUN_EXPORT PFNGLTEXCOORDP3UIPROC __glewTexCoordP3ui; +GLEW_FUN_EXPORT PFNGLTEXCOORDP3UIVPROC __glewTexCoordP3uiv; +GLEW_FUN_EXPORT PFNGLTEXCOORDP4UIPROC __glewTexCoordP4ui; +GLEW_FUN_EXPORT PFNGLTEXCOORDP4UIVPROC __glewTexCoordP4uiv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBP1UIPROC __glewVertexAttribP1ui; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBP1UIVPROC __glewVertexAttribP1uiv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBP2UIPROC __glewVertexAttribP2ui; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBP2UIVPROC __glewVertexAttribP2uiv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBP3UIPROC __glewVertexAttribP3ui; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBP3UIVPROC __glewVertexAttribP3uiv; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBP4UIPROC __glewVertexAttribP4ui; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBP4UIVPROC __glewVertexAttribP4uiv; +GLEW_FUN_EXPORT PFNGLVERTEXP2UIPROC __glewVertexP2ui; +GLEW_FUN_EXPORT PFNGLVERTEXP2UIVPROC __glewVertexP2uiv; +GLEW_FUN_EXPORT PFNGLVERTEXP3UIPROC __glewVertexP3ui; +GLEW_FUN_EXPORT PFNGLVERTEXP3UIVPROC __glewVertexP3uiv; +GLEW_FUN_EXPORT PFNGLVERTEXP4UIPROC __glewVertexP4ui; +GLEW_FUN_EXPORT PFNGLVERTEXP4UIVPROC __glewVertexP4uiv; + +GLEW_FUN_EXPORT PFNGLDEPTHRANGEARRAYVPROC __glewDepthRangeArrayv; +GLEW_FUN_EXPORT PFNGLDEPTHRANGEINDEXEDPROC __glewDepthRangeIndexed; +GLEW_FUN_EXPORT PFNGLGETDOUBLEI_VPROC __glewGetDoublei_v; +GLEW_FUN_EXPORT PFNGLGETFLOATI_VPROC __glewGetFloati_v; +GLEW_FUN_EXPORT PFNGLSCISSORARRAYVPROC __glewScissorArrayv; +GLEW_FUN_EXPORT PFNGLSCISSORINDEXEDPROC __glewScissorIndexed; +GLEW_FUN_EXPORT PFNGLSCISSORINDEXEDVPROC __glewScissorIndexedv; +GLEW_FUN_EXPORT PFNGLVIEWPORTARRAYVPROC __glewViewportArrayv; +GLEW_FUN_EXPORT PFNGLVIEWPORTINDEXEDFPROC __glewViewportIndexedf; +GLEW_FUN_EXPORT PFNGLVIEWPORTINDEXEDFVPROC __glewViewportIndexedfv; + +GLEW_FUN_EXPORT PFNGLWINDOWPOS2DARBPROC __glewWindowPos2dARB; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2DVARBPROC __glewWindowPos2dvARB; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2FARBPROC __glewWindowPos2fARB; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2FVARBPROC __glewWindowPos2fvARB; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2IARBPROC __glewWindowPos2iARB; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2IVARBPROC __glewWindowPos2ivARB; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2SARBPROC __glewWindowPos2sARB; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2SVARBPROC __glewWindowPos2svARB; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3DARBPROC __glewWindowPos3dARB; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3DVARBPROC __glewWindowPos3dvARB; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3FARBPROC __glewWindowPos3fARB; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3FVARBPROC __glewWindowPos3fvARB; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3IARBPROC __glewWindowPos3iARB; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3IVARBPROC __glewWindowPos3ivARB; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3SARBPROC __glewWindowPos3sARB; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3SVARBPROC __glewWindowPos3svARB; + +GLEW_FUN_EXPORT PFNGLDRAWBUFFERSATIPROC __glewDrawBuffersATI; + +GLEW_FUN_EXPORT PFNGLDRAWELEMENTARRAYATIPROC __glewDrawElementArrayATI; +GLEW_FUN_EXPORT PFNGLDRAWRANGEELEMENTARRAYATIPROC __glewDrawRangeElementArrayATI; +GLEW_FUN_EXPORT PFNGLELEMENTPOINTERATIPROC __glewElementPointerATI; + +GLEW_FUN_EXPORT PFNGLGETTEXBUMPPARAMETERFVATIPROC __glewGetTexBumpParameterfvATI; +GLEW_FUN_EXPORT PFNGLGETTEXBUMPPARAMETERIVATIPROC __glewGetTexBumpParameterivATI; +GLEW_FUN_EXPORT PFNGLTEXBUMPPARAMETERFVATIPROC __glewTexBumpParameterfvATI; +GLEW_FUN_EXPORT PFNGLTEXBUMPPARAMETERIVATIPROC __glewTexBumpParameterivATI; + +GLEW_FUN_EXPORT PFNGLALPHAFRAGMENTOP1ATIPROC __glewAlphaFragmentOp1ATI; +GLEW_FUN_EXPORT PFNGLALPHAFRAGMENTOP2ATIPROC __glewAlphaFragmentOp2ATI; +GLEW_FUN_EXPORT PFNGLALPHAFRAGMENTOP3ATIPROC __glewAlphaFragmentOp3ATI; +GLEW_FUN_EXPORT PFNGLBEGINFRAGMENTSHADERATIPROC __glewBeginFragmentShaderATI; +GLEW_FUN_EXPORT PFNGLBINDFRAGMENTSHADERATIPROC __glewBindFragmentShaderATI; +GLEW_FUN_EXPORT PFNGLCOLORFRAGMENTOP1ATIPROC __glewColorFragmentOp1ATI; +GLEW_FUN_EXPORT PFNGLCOLORFRAGMENTOP2ATIPROC __glewColorFragmentOp2ATI; +GLEW_FUN_EXPORT PFNGLCOLORFRAGMENTOP3ATIPROC __glewColorFragmentOp3ATI; +GLEW_FUN_EXPORT PFNGLDELETEFRAGMENTSHADERATIPROC __glewDeleteFragmentShaderATI; +GLEW_FUN_EXPORT PFNGLENDFRAGMENTSHADERATIPROC __glewEndFragmentShaderATI; +GLEW_FUN_EXPORT PFNGLGENFRAGMENTSHADERSATIPROC __glewGenFragmentShadersATI; +GLEW_FUN_EXPORT PFNGLPASSTEXCOORDATIPROC __glewPassTexCoordATI; +GLEW_FUN_EXPORT PFNGLSAMPLEMAPATIPROC __glewSampleMapATI; +GLEW_FUN_EXPORT PFNGLSETFRAGMENTSHADERCONSTANTATIPROC __glewSetFragmentShaderConstantATI; + +GLEW_FUN_EXPORT PFNGLMAPOBJECTBUFFERATIPROC __glewMapObjectBufferATI; +GLEW_FUN_EXPORT PFNGLUNMAPOBJECTBUFFERATIPROC __glewUnmapObjectBufferATI; + +GLEW_FUN_EXPORT PFNGLPNTRIANGLESFATIPROC __glewPNTrianglesfATI; +GLEW_FUN_EXPORT PFNGLPNTRIANGLESIATIPROC __glewPNTrianglesiATI; + +GLEW_FUN_EXPORT PFNGLSTENCILFUNCSEPARATEATIPROC __glewStencilFuncSeparateATI; +GLEW_FUN_EXPORT PFNGLSTENCILOPSEPARATEATIPROC __glewStencilOpSeparateATI; + +GLEW_FUN_EXPORT PFNGLARRAYOBJECTATIPROC __glewArrayObjectATI; +GLEW_FUN_EXPORT PFNGLFREEOBJECTBUFFERATIPROC __glewFreeObjectBufferATI; +GLEW_FUN_EXPORT PFNGLGETARRAYOBJECTFVATIPROC __glewGetArrayObjectfvATI; +GLEW_FUN_EXPORT PFNGLGETARRAYOBJECTIVATIPROC __glewGetArrayObjectivATI; +GLEW_FUN_EXPORT PFNGLGETOBJECTBUFFERFVATIPROC __glewGetObjectBufferfvATI; +GLEW_FUN_EXPORT PFNGLGETOBJECTBUFFERIVATIPROC __glewGetObjectBufferivATI; +GLEW_FUN_EXPORT PFNGLGETVARIANTARRAYOBJECTFVATIPROC __glewGetVariantArrayObjectfvATI; +GLEW_FUN_EXPORT PFNGLGETVARIANTARRAYOBJECTIVATIPROC __glewGetVariantArrayObjectivATI; +GLEW_FUN_EXPORT PFNGLISOBJECTBUFFERATIPROC __glewIsObjectBufferATI; +GLEW_FUN_EXPORT PFNGLNEWOBJECTBUFFERATIPROC __glewNewObjectBufferATI; +GLEW_FUN_EXPORT PFNGLUPDATEOBJECTBUFFERATIPROC __glewUpdateObjectBufferATI; +GLEW_FUN_EXPORT PFNGLVARIANTARRAYOBJECTATIPROC __glewVariantArrayObjectATI; + +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBARRAYOBJECTFVATIPROC __glewGetVertexAttribArrayObjectfvATI; +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBARRAYOBJECTIVATIPROC __glewGetVertexAttribArrayObjectivATI; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBARRAYOBJECTATIPROC __glewVertexAttribArrayObjectATI; + +GLEW_FUN_EXPORT PFNGLCLIENTACTIVEVERTEXSTREAMATIPROC __glewClientActiveVertexStreamATI; +GLEW_FUN_EXPORT PFNGLNORMALSTREAM3BATIPROC __glewNormalStream3bATI; +GLEW_FUN_EXPORT PFNGLNORMALSTREAM3BVATIPROC __glewNormalStream3bvATI; +GLEW_FUN_EXPORT PFNGLNORMALSTREAM3DATIPROC __glewNormalStream3dATI; +GLEW_FUN_EXPORT PFNGLNORMALSTREAM3DVATIPROC __glewNormalStream3dvATI; +GLEW_FUN_EXPORT PFNGLNORMALSTREAM3FATIPROC __glewNormalStream3fATI; +GLEW_FUN_EXPORT PFNGLNORMALSTREAM3FVATIPROC __glewNormalStream3fvATI; +GLEW_FUN_EXPORT PFNGLNORMALSTREAM3IATIPROC __glewNormalStream3iATI; +GLEW_FUN_EXPORT PFNGLNORMALSTREAM3IVATIPROC __glewNormalStream3ivATI; +GLEW_FUN_EXPORT PFNGLNORMALSTREAM3SATIPROC __glewNormalStream3sATI; +GLEW_FUN_EXPORT PFNGLNORMALSTREAM3SVATIPROC __glewNormalStream3svATI; +GLEW_FUN_EXPORT PFNGLVERTEXBLENDENVFATIPROC __glewVertexBlendEnvfATI; +GLEW_FUN_EXPORT PFNGLVERTEXBLENDENVIATIPROC __glewVertexBlendEnviATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM1DATIPROC __glewVertexStream1dATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM1DVATIPROC __glewVertexStream1dvATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM1FATIPROC __glewVertexStream1fATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM1FVATIPROC __glewVertexStream1fvATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM1IATIPROC __glewVertexStream1iATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM1IVATIPROC __glewVertexStream1ivATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM1SATIPROC __glewVertexStream1sATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM1SVATIPROC __glewVertexStream1svATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM2DATIPROC __glewVertexStream2dATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM2DVATIPROC __glewVertexStream2dvATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM2FATIPROC __glewVertexStream2fATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM2FVATIPROC __glewVertexStream2fvATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM2IATIPROC __glewVertexStream2iATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM2IVATIPROC __glewVertexStream2ivATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM2SATIPROC __glewVertexStream2sATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM2SVATIPROC __glewVertexStream2svATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM3DATIPROC __glewVertexStream3dATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM3DVATIPROC __glewVertexStream3dvATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM3FATIPROC __glewVertexStream3fATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM3FVATIPROC __glewVertexStream3fvATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM3IATIPROC __glewVertexStream3iATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM3IVATIPROC __glewVertexStream3ivATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM3SATIPROC __glewVertexStream3sATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM3SVATIPROC __glewVertexStream3svATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM4DATIPROC __glewVertexStream4dATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM4DVATIPROC __glewVertexStream4dvATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM4FATIPROC __glewVertexStream4fATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM4FVATIPROC __glewVertexStream4fvATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM4IATIPROC __glewVertexStream4iATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM4IVATIPROC __glewVertexStream4ivATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM4SATIPROC __glewVertexStream4sATI; +GLEW_FUN_EXPORT PFNGLVERTEXSTREAM4SVATIPROC __glewVertexStream4svATI; + +GLEW_FUN_EXPORT PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEEXTPROC __glewDrawArraysInstancedBaseInstanceEXT; +GLEW_FUN_EXPORT PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEEXTPROC __glewDrawElementsInstancedBaseInstanceEXT; +GLEW_FUN_EXPORT PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEEXTPROC __glewDrawElementsInstancedBaseVertexBaseInstanceEXT; + +GLEW_FUN_EXPORT PFNGLGETUNIFORMBUFFERSIZEEXTPROC __glewGetUniformBufferSizeEXT; +GLEW_FUN_EXPORT PFNGLGETUNIFORMOFFSETEXTPROC __glewGetUniformOffsetEXT; +GLEW_FUN_EXPORT PFNGLUNIFORMBUFFEREXTPROC __glewUniformBufferEXT; + +GLEW_FUN_EXPORT PFNGLBLENDCOLOREXTPROC __glewBlendColorEXT; + +GLEW_FUN_EXPORT PFNGLBLENDEQUATIONSEPARATEEXTPROC __glewBlendEquationSeparateEXT; + +GLEW_FUN_EXPORT PFNGLBINDFRAGDATALOCATIONINDEXEDEXTPROC __glewBindFragDataLocationIndexedEXT; +GLEW_FUN_EXPORT PFNGLGETFRAGDATAINDEXEXTPROC __glewGetFragDataIndexEXT; +GLEW_FUN_EXPORT PFNGLGETPROGRAMRESOURCELOCATIONINDEXEXTPROC __glewGetProgramResourceLocationIndexEXT; + +GLEW_FUN_EXPORT PFNGLBLENDFUNCSEPARATEEXTPROC __glewBlendFuncSeparateEXT; + +GLEW_FUN_EXPORT PFNGLBLENDEQUATIONEXTPROC __glewBlendEquationEXT; + +GLEW_FUN_EXPORT PFNGLBUFFERSTORAGEEXTPROC __glewBufferStorageEXT; +GLEW_FUN_EXPORT PFNGLNAMEDBUFFERSTORAGEEXTPROC __glewNamedBufferStorageEXT; + +GLEW_FUN_EXPORT PFNGLCLEARTEXIMAGEEXTPROC __glewClearTexImageEXT; +GLEW_FUN_EXPORT PFNGLCLEARTEXSUBIMAGEEXTPROC __glewClearTexSubImageEXT; + +GLEW_FUN_EXPORT PFNGLCOLORSUBTABLEEXTPROC __glewColorSubTableEXT; +GLEW_FUN_EXPORT PFNGLCOPYCOLORSUBTABLEEXTPROC __glewCopyColorSubTableEXT; + +GLEW_FUN_EXPORT PFNGLLOCKARRAYSEXTPROC __glewLockArraysEXT; +GLEW_FUN_EXPORT PFNGLUNLOCKARRAYSEXTPROC __glewUnlockArraysEXT; + +GLEW_FUN_EXPORT PFNGLCONVOLUTIONFILTER1DEXTPROC __glewConvolutionFilter1DEXT; +GLEW_FUN_EXPORT PFNGLCONVOLUTIONFILTER2DEXTPROC __glewConvolutionFilter2DEXT; +GLEW_FUN_EXPORT PFNGLCONVOLUTIONPARAMETERFEXTPROC __glewConvolutionParameterfEXT; +GLEW_FUN_EXPORT PFNGLCONVOLUTIONPARAMETERFVEXTPROC __glewConvolutionParameterfvEXT; +GLEW_FUN_EXPORT PFNGLCONVOLUTIONPARAMETERIEXTPROC __glewConvolutionParameteriEXT; +GLEW_FUN_EXPORT PFNGLCONVOLUTIONPARAMETERIVEXTPROC __glewConvolutionParameterivEXT; +GLEW_FUN_EXPORT PFNGLCOPYCONVOLUTIONFILTER1DEXTPROC __glewCopyConvolutionFilter1DEXT; +GLEW_FUN_EXPORT PFNGLCOPYCONVOLUTIONFILTER2DEXTPROC __glewCopyConvolutionFilter2DEXT; +GLEW_FUN_EXPORT PFNGLGETCONVOLUTIONFILTEREXTPROC __glewGetConvolutionFilterEXT; +GLEW_FUN_EXPORT PFNGLGETCONVOLUTIONPARAMETERFVEXTPROC __glewGetConvolutionParameterfvEXT; +GLEW_FUN_EXPORT PFNGLGETCONVOLUTIONPARAMETERIVEXTPROC __glewGetConvolutionParameterivEXT; +GLEW_FUN_EXPORT PFNGLGETSEPARABLEFILTEREXTPROC __glewGetSeparableFilterEXT; +GLEW_FUN_EXPORT PFNGLSEPARABLEFILTER2DEXTPROC __glewSeparableFilter2DEXT; + +GLEW_FUN_EXPORT PFNGLBINORMALPOINTEREXTPROC __glewBinormalPointerEXT; +GLEW_FUN_EXPORT PFNGLTANGENTPOINTEREXTPROC __glewTangentPointerEXT; + +GLEW_FUN_EXPORT PFNGLCOPYIMAGESUBDATAEXTPROC __glewCopyImageSubDataEXT; + +GLEW_FUN_EXPORT PFNGLCOPYTEXIMAGE1DEXTPROC __glewCopyTexImage1DEXT; +GLEW_FUN_EXPORT PFNGLCOPYTEXIMAGE2DEXTPROC __glewCopyTexImage2DEXT; +GLEW_FUN_EXPORT PFNGLCOPYTEXSUBIMAGE1DEXTPROC __glewCopyTexSubImage1DEXT; +GLEW_FUN_EXPORT PFNGLCOPYTEXSUBIMAGE2DEXTPROC __glewCopyTexSubImage2DEXT; +GLEW_FUN_EXPORT PFNGLCOPYTEXSUBIMAGE3DEXTPROC __glewCopyTexSubImage3DEXT; + +GLEW_FUN_EXPORT PFNGLCULLPARAMETERDVEXTPROC __glewCullParameterdvEXT; +GLEW_FUN_EXPORT PFNGLCULLPARAMETERFVEXTPROC __glewCullParameterfvEXT; + +GLEW_FUN_EXPORT PFNGLGETOBJECTLABELEXTPROC __glewGetObjectLabelEXT; +GLEW_FUN_EXPORT PFNGLLABELOBJECTEXTPROC __glewLabelObjectEXT; + +GLEW_FUN_EXPORT PFNGLINSERTEVENTMARKEREXTPROC __glewInsertEventMarkerEXT; +GLEW_FUN_EXPORT PFNGLPOPGROUPMARKEREXTPROC __glewPopGroupMarkerEXT; +GLEW_FUN_EXPORT PFNGLPUSHGROUPMARKEREXTPROC __glewPushGroupMarkerEXT; + +GLEW_FUN_EXPORT PFNGLDEPTHBOUNDSEXTPROC __glewDepthBoundsEXT; + +GLEW_FUN_EXPORT PFNGLBINDMULTITEXTUREEXTPROC __glewBindMultiTextureEXT; +GLEW_FUN_EXPORT PFNGLCHECKNAMEDFRAMEBUFFERSTATUSEXTPROC __glewCheckNamedFramebufferStatusEXT; +GLEW_FUN_EXPORT PFNGLCLIENTATTRIBDEFAULTEXTPROC __glewClientAttribDefaultEXT; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDMULTITEXIMAGE1DEXTPROC __glewCompressedMultiTexImage1DEXT; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDMULTITEXIMAGE2DEXTPROC __glewCompressedMultiTexImage2DEXT; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDMULTITEXIMAGE3DEXTPROC __glewCompressedMultiTexImage3DEXT; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDMULTITEXSUBIMAGE1DEXTPROC __glewCompressedMultiTexSubImage1DEXT; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDMULTITEXSUBIMAGE2DEXTPROC __glewCompressedMultiTexSubImage2DEXT; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDMULTITEXSUBIMAGE3DEXTPROC __glewCompressedMultiTexSubImage3DEXT; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXTUREIMAGE1DEXTPROC __glewCompressedTextureImage1DEXT; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXTUREIMAGE2DEXTPROC __glewCompressedTextureImage2DEXT; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXTUREIMAGE3DEXTPROC __glewCompressedTextureImage3DEXT; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXTURESUBIMAGE1DEXTPROC __glewCompressedTextureSubImage1DEXT; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXTURESUBIMAGE2DEXTPROC __glewCompressedTextureSubImage2DEXT; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXTURESUBIMAGE3DEXTPROC __glewCompressedTextureSubImage3DEXT; +GLEW_FUN_EXPORT PFNGLCOPYMULTITEXIMAGE1DEXTPROC __glewCopyMultiTexImage1DEXT; +GLEW_FUN_EXPORT PFNGLCOPYMULTITEXIMAGE2DEXTPROC __glewCopyMultiTexImage2DEXT; +GLEW_FUN_EXPORT PFNGLCOPYMULTITEXSUBIMAGE1DEXTPROC __glewCopyMultiTexSubImage1DEXT; +GLEW_FUN_EXPORT PFNGLCOPYMULTITEXSUBIMAGE2DEXTPROC __glewCopyMultiTexSubImage2DEXT; +GLEW_FUN_EXPORT PFNGLCOPYMULTITEXSUBIMAGE3DEXTPROC __glewCopyMultiTexSubImage3DEXT; +GLEW_FUN_EXPORT PFNGLCOPYTEXTUREIMAGE1DEXTPROC __glewCopyTextureImage1DEXT; +GLEW_FUN_EXPORT PFNGLCOPYTEXTUREIMAGE2DEXTPROC __glewCopyTextureImage2DEXT; +GLEW_FUN_EXPORT PFNGLCOPYTEXTURESUBIMAGE1DEXTPROC __glewCopyTextureSubImage1DEXT; +GLEW_FUN_EXPORT PFNGLCOPYTEXTURESUBIMAGE2DEXTPROC __glewCopyTextureSubImage2DEXT; +GLEW_FUN_EXPORT PFNGLCOPYTEXTURESUBIMAGE3DEXTPROC __glewCopyTextureSubImage3DEXT; +GLEW_FUN_EXPORT PFNGLDISABLECLIENTSTATEINDEXEDEXTPROC __glewDisableClientStateIndexedEXT; +GLEW_FUN_EXPORT PFNGLDISABLECLIENTSTATEIEXTPROC __glewDisableClientStateiEXT; +GLEW_FUN_EXPORT PFNGLDISABLEVERTEXARRAYATTRIBEXTPROC __glewDisableVertexArrayAttribEXT; +GLEW_FUN_EXPORT PFNGLDISABLEVERTEXARRAYEXTPROC __glewDisableVertexArrayEXT; +GLEW_FUN_EXPORT PFNGLENABLECLIENTSTATEINDEXEDEXTPROC __glewEnableClientStateIndexedEXT; +GLEW_FUN_EXPORT PFNGLENABLECLIENTSTATEIEXTPROC __glewEnableClientStateiEXT; +GLEW_FUN_EXPORT PFNGLENABLEVERTEXARRAYATTRIBEXTPROC __glewEnableVertexArrayAttribEXT; +GLEW_FUN_EXPORT PFNGLENABLEVERTEXARRAYEXTPROC __glewEnableVertexArrayEXT; +GLEW_FUN_EXPORT PFNGLFLUSHMAPPEDNAMEDBUFFERRANGEEXTPROC __glewFlushMappedNamedBufferRangeEXT; +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERDRAWBUFFEREXTPROC __glewFramebufferDrawBufferEXT; +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERDRAWBUFFERSEXTPROC __glewFramebufferDrawBuffersEXT; +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERREADBUFFEREXTPROC __glewFramebufferReadBufferEXT; +GLEW_FUN_EXPORT PFNGLGENERATEMULTITEXMIPMAPEXTPROC __glewGenerateMultiTexMipmapEXT; +GLEW_FUN_EXPORT PFNGLGENERATETEXTUREMIPMAPEXTPROC __glewGenerateTextureMipmapEXT; +GLEW_FUN_EXPORT PFNGLGETCOMPRESSEDMULTITEXIMAGEEXTPROC __glewGetCompressedMultiTexImageEXT; +GLEW_FUN_EXPORT PFNGLGETCOMPRESSEDTEXTUREIMAGEEXTPROC __glewGetCompressedTextureImageEXT; +GLEW_FUN_EXPORT PFNGLGETDOUBLEINDEXEDVEXTPROC __glewGetDoubleIndexedvEXT; +GLEW_FUN_EXPORT PFNGLGETDOUBLEI_VEXTPROC __glewGetDoublei_vEXT; +GLEW_FUN_EXPORT PFNGLGETFLOATINDEXEDVEXTPROC __glewGetFloatIndexedvEXT; +GLEW_FUN_EXPORT PFNGLGETFLOATI_VEXTPROC __glewGetFloati_vEXT; +GLEW_FUN_EXPORT PFNGLGETFRAMEBUFFERPARAMETERIVEXTPROC __glewGetFramebufferParameterivEXT; +GLEW_FUN_EXPORT PFNGLGETMULTITEXENVFVEXTPROC __glewGetMultiTexEnvfvEXT; +GLEW_FUN_EXPORT PFNGLGETMULTITEXENVIVEXTPROC __glewGetMultiTexEnvivEXT; +GLEW_FUN_EXPORT PFNGLGETMULTITEXGENDVEXTPROC __glewGetMultiTexGendvEXT; +GLEW_FUN_EXPORT PFNGLGETMULTITEXGENFVEXTPROC __glewGetMultiTexGenfvEXT; +GLEW_FUN_EXPORT PFNGLGETMULTITEXGENIVEXTPROC __glewGetMultiTexGenivEXT; +GLEW_FUN_EXPORT PFNGLGETMULTITEXIMAGEEXTPROC __glewGetMultiTexImageEXT; +GLEW_FUN_EXPORT PFNGLGETMULTITEXLEVELPARAMETERFVEXTPROC __glewGetMultiTexLevelParameterfvEXT; +GLEW_FUN_EXPORT PFNGLGETMULTITEXLEVELPARAMETERIVEXTPROC __glewGetMultiTexLevelParameterivEXT; +GLEW_FUN_EXPORT PFNGLGETMULTITEXPARAMETERIIVEXTPROC __glewGetMultiTexParameterIivEXT; +GLEW_FUN_EXPORT PFNGLGETMULTITEXPARAMETERIUIVEXTPROC __glewGetMultiTexParameterIuivEXT; +GLEW_FUN_EXPORT PFNGLGETMULTITEXPARAMETERFVEXTPROC __glewGetMultiTexParameterfvEXT; +GLEW_FUN_EXPORT PFNGLGETMULTITEXPARAMETERIVEXTPROC __glewGetMultiTexParameterivEXT; +GLEW_FUN_EXPORT PFNGLGETNAMEDBUFFERPARAMETERIVEXTPROC __glewGetNamedBufferParameterivEXT; +GLEW_FUN_EXPORT PFNGLGETNAMEDBUFFERPOINTERVEXTPROC __glewGetNamedBufferPointervEXT; +GLEW_FUN_EXPORT PFNGLGETNAMEDBUFFERSUBDATAEXTPROC __glewGetNamedBufferSubDataEXT; +GLEW_FUN_EXPORT PFNGLGETNAMEDFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC __glewGetNamedFramebufferAttachmentParameterivEXT; +GLEW_FUN_EXPORT PFNGLGETNAMEDPROGRAMLOCALPARAMETERIIVEXTPROC __glewGetNamedProgramLocalParameterIivEXT; +GLEW_FUN_EXPORT PFNGLGETNAMEDPROGRAMLOCALPARAMETERIUIVEXTPROC __glewGetNamedProgramLocalParameterIuivEXT; +GLEW_FUN_EXPORT PFNGLGETNAMEDPROGRAMLOCALPARAMETERDVEXTPROC __glewGetNamedProgramLocalParameterdvEXT; +GLEW_FUN_EXPORT PFNGLGETNAMEDPROGRAMLOCALPARAMETERFVEXTPROC __glewGetNamedProgramLocalParameterfvEXT; +GLEW_FUN_EXPORT PFNGLGETNAMEDPROGRAMSTRINGEXTPROC __glewGetNamedProgramStringEXT; +GLEW_FUN_EXPORT PFNGLGETNAMEDPROGRAMIVEXTPROC __glewGetNamedProgramivEXT; +GLEW_FUN_EXPORT PFNGLGETNAMEDRENDERBUFFERPARAMETERIVEXTPROC __glewGetNamedRenderbufferParameterivEXT; +GLEW_FUN_EXPORT PFNGLGETPOINTERINDEXEDVEXTPROC __glewGetPointerIndexedvEXT; +GLEW_FUN_EXPORT PFNGLGETPOINTERI_VEXTPROC __glewGetPointeri_vEXT; +GLEW_FUN_EXPORT PFNGLGETTEXTUREIMAGEEXTPROC __glewGetTextureImageEXT; +GLEW_FUN_EXPORT PFNGLGETTEXTURELEVELPARAMETERFVEXTPROC __glewGetTextureLevelParameterfvEXT; +GLEW_FUN_EXPORT PFNGLGETTEXTURELEVELPARAMETERIVEXTPROC __glewGetTextureLevelParameterivEXT; +GLEW_FUN_EXPORT PFNGLGETTEXTUREPARAMETERIIVEXTPROC __glewGetTextureParameterIivEXT; +GLEW_FUN_EXPORT PFNGLGETTEXTUREPARAMETERIUIVEXTPROC __glewGetTextureParameterIuivEXT; +GLEW_FUN_EXPORT PFNGLGETTEXTUREPARAMETERFVEXTPROC __glewGetTextureParameterfvEXT; +GLEW_FUN_EXPORT PFNGLGETTEXTUREPARAMETERIVEXTPROC __glewGetTextureParameterivEXT; +GLEW_FUN_EXPORT PFNGLGETVERTEXARRAYINTEGERI_VEXTPROC __glewGetVertexArrayIntegeri_vEXT; +GLEW_FUN_EXPORT PFNGLGETVERTEXARRAYINTEGERVEXTPROC __glewGetVertexArrayIntegervEXT; +GLEW_FUN_EXPORT PFNGLGETVERTEXARRAYPOINTERI_VEXTPROC __glewGetVertexArrayPointeri_vEXT; +GLEW_FUN_EXPORT PFNGLGETVERTEXARRAYPOINTERVEXTPROC __glewGetVertexArrayPointervEXT; +GLEW_FUN_EXPORT PFNGLMAPNAMEDBUFFEREXTPROC __glewMapNamedBufferEXT; +GLEW_FUN_EXPORT PFNGLMAPNAMEDBUFFERRANGEEXTPROC __glewMapNamedBufferRangeEXT; +GLEW_FUN_EXPORT PFNGLMATRIXFRUSTUMEXTPROC __glewMatrixFrustumEXT; +GLEW_FUN_EXPORT PFNGLMATRIXLOADIDENTITYEXTPROC __glewMatrixLoadIdentityEXT; +GLEW_FUN_EXPORT PFNGLMATRIXLOADTRANSPOSEDEXTPROC __glewMatrixLoadTransposedEXT; +GLEW_FUN_EXPORT PFNGLMATRIXLOADTRANSPOSEFEXTPROC __glewMatrixLoadTransposefEXT; +GLEW_FUN_EXPORT PFNGLMATRIXLOADDEXTPROC __glewMatrixLoaddEXT; +GLEW_FUN_EXPORT PFNGLMATRIXLOADFEXTPROC __glewMatrixLoadfEXT; +GLEW_FUN_EXPORT PFNGLMATRIXMULTTRANSPOSEDEXTPROC __glewMatrixMultTransposedEXT; +GLEW_FUN_EXPORT PFNGLMATRIXMULTTRANSPOSEFEXTPROC __glewMatrixMultTransposefEXT; +GLEW_FUN_EXPORT PFNGLMATRIXMULTDEXTPROC __glewMatrixMultdEXT; +GLEW_FUN_EXPORT PFNGLMATRIXMULTFEXTPROC __glewMatrixMultfEXT; +GLEW_FUN_EXPORT PFNGLMATRIXORTHOEXTPROC __glewMatrixOrthoEXT; +GLEW_FUN_EXPORT PFNGLMATRIXPOPEXTPROC __glewMatrixPopEXT; +GLEW_FUN_EXPORT PFNGLMATRIXPUSHEXTPROC __glewMatrixPushEXT; +GLEW_FUN_EXPORT PFNGLMATRIXROTATEDEXTPROC __glewMatrixRotatedEXT; +GLEW_FUN_EXPORT PFNGLMATRIXROTATEFEXTPROC __glewMatrixRotatefEXT; +GLEW_FUN_EXPORT PFNGLMATRIXSCALEDEXTPROC __glewMatrixScaledEXT; +GLEW_FUN_EXPORT PFNGLMATRIXSCALEFEXTPROC __glewMatrixScalefEXT; +GLEW_FUN_EXPORT PFNGLMATRIXTRANSLATEDEXTPROC __glewMatrixTranslatedEXT; +GLEW_FUN_EXPORT PFNGLMATRIXTRANSLATEFEXTPROC __glewMatrixTranslatefEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXBUFFEREXTPROC __glewMultiTexBufferEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORDPOINTEREXTPROC __glewMultiTexCoordPointerEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXENVFEXTPROC __glewMultiTexEnvfEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXENVFVEXTPROC __glewMultiTexEnvfvEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXENVIEXTPROC __glewMultiTexEnviEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXENVIVEXTPROC __glewMultiTexEnvivEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXGENDEXTPROC __glewMultiTexGendEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXGENDVEXTPROC __glewMultiTexGendvEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXGENFEXTPROC __glewMultiTexGenfEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXGENFVEXTPROC __glewMultiTexGenfvEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXGENIEXTPROC __glewMultiTexGeniEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXGENIVEXTPROC __glewMultiTexGenivEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXIMAGE1DEXTPROC __glewMultiTexImage1DEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXIMAGE2DEXTPROC __glewMultiTexImage2DEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXIMAGE3DEXTPROC __glewMultiTexImage3DEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXPARAMETERIIVEXTPROC __glewMultiTexParameterIivEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXPARAMETERIUIVEXTPROC __glewMultiTexParameterIuivEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXPARAMETERFEXTPROC __glewMultiTexParameterfEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXPARAMETERFVEXTPROC __glewMultiTexParameterfvEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXPARAMETERIEXTPROC __glewMultiTexParameteriEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXPARAMETERIVEXTPROC __glewMultiTexParameterivEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXRENDERBUFFEREXTPROC __glewMultiTexRenderbufferEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXSUBIMAGE1DEXTPROC __glewMultiTexSubImage1DEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXSUBIMAGE2DEXTPROC __glewMultiTexSubImage2DEXT; +GLEW_FUN_EXPORT PFNGLMULTITEXSUBIMAGE3DEXTPROC __glewMultiTexSubImage3DEXT; +GLEW_FUN_EXPORT PFNGLNAMEDBUFFERDATAEXTPROC __glewNamedBufferDataEXT; +GLEW_FUN_EXPORT PFNGLNAMEDBUFFERSUBDATAEXTPROC __glewNamedBufferSubDataEXT; +GLEW_FUN_EXPORT PFNGLNAMEDCOPYBUFFERSUBDATAEXTPROC __glewNamedCopyBufferSubDataEXT; +GLEW_FUN_EXPORT PFNGLNAMEDFRAMEBUFFERRENDERBUFFEREXTPROC __glewNamedFramebufferRenderbufferEXT; +GLEW_FUN_EXPORT PFNGLNAMEDFRAMEBUFFERTEXTURE1DEXTPROC __glewNamedFramebufferTexture1DEXT; +GLEW_FUN_EXPORT PFNGLNAMEDFRAMEBUFFERTEXTURE2DEXTPROC __glewNamedFramebufferTexture2DEXT; +GLEW_FUN_EXPORT PFNGLNAMEDFRAMEBUFFERTEXTURE3DEXTPROC __glewNamedFramebufferTexture3DEXT; +GLEW_FUN_EXPORT PFNGLNAMEDFRAMEBUFFERTEXTUREEXTPROC __glewNamedFramebufferTextureEXT; +GLEW_FUN_EXPORT PFNGLNAMEDFRAMEBUFFERTEXTUREFACEEXTPROC __glewNamedFramebufferTextureFaceEXT; +GLEW_FUN_EXPORT PFNGLNAMEDFRAMEBUFFERTEXTURELAYEREXTPROC __glewNamedFramebufferTextureLayerEXT; +GLEW_FUN_EXPORT PFNGLNAMEDPROGRAMLOCALPARAMETER4DEXTPROC __glewNamedProgramLocalParameter4dEXT; +GLEW_FUN_EXPORT PFNGLNAMEDPROGRAMLOCALPARAMETER4DVEXTPROC __glewNamedProgramLocalParameter4dvEXT; +GLEW_FUN_EXPORT PFNGLNAMEDPROGRAMLOCALPARAMETER4FEXTPROC __glewNamedProgramLocalParameter4fEXT; +GLEW_FUN_EXPORT PFNGLNAMEDPROGRAMLOCALPARAMETER4FVEXTPROC __glewNamedProgramLocalParameter4fvEXT; +GLEW_FUN_EXPORT PFNGLNAMEDPROGRAMLOCALPARAMETERI4IEXTPROC __glewNamedProgramLocalParameterI4iEXT; +GLEW_FUN_EXPORT PFNGLNAMEDPROGRAMLOCALPARAMETERI4IVEXTPROC __glewNamedProgramLocalParameterI4ivEXT; +GLEW_FUN_EXPORT PFNGLNAMEDPROGRAMLOCALPARAMETERI4UIEXTPROC __glewNamedProgramLocalParameterI4uiEXT; +GLEW_FUN_EXPORT PFNGLNAMEDPROGRAMLOCALPARAMETERI4UIVEXTPROC __glewNamedProgramLocalParameterI4uivEXT; +GLEW_FUN_EXPORT PFNGLNAMEDPROGRAMLOCALPARAMETERS4FVEXTPROC __glewNamedProgramLocalParameters4fvEXT; +GLEW_FUN_EXPORT PFNGLNAMEDPROGRAMLOCALPARAMETERSI4IVEXTPROC __glewNamedProgramLocalParametersI4ivEXT; +GLEW_FUN_EXPORT PFNGLNAMEDPROGRAMLOCALPARAMETERSI4UIVEXTPROC __glewNamedProgramLocalParametersI4uivEXT; +GLEW_FUN_EXPORT PFNGLNAMEDPROGRAMSTRINGEXTPROC __glewNamedProgramStringEXT; +GLEW_FUN_EXPORT PFNGLNAMEDRENDERBUFFERSTORAGEEXTPROC __glewNamedRenderbufferStorageEXT; +GLEW_FUN_EXPORT PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLECOVERAGEEXTPROC __glewNamedRenderbufferStorageMultisampleCoverageEXT; +GLEW_FUN_EXPORT PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC __glewNamedRenderbufferStorageMultisampleEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1FEXTPROC __glewProgramUniform1fEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1FVEXTPROC __glewProgramUniform1fvEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1IEXTPROC __glewProgramUniform1iEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1IVEXTPROC __glewProgramUniform1ivEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1UIEXTPROC __glewProgramUniform1uiEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1UIVEXTPROC __glewProgramUniform1uivEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2FEXTPROC __glewProgramUniform2fEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2FVEXTPROC __glewProgramUniform2fvEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2IEXTPROC __glewProgramUniform2iEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2IVEXTPROC __glewProgramUniform2ivEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2UIEXTPROC __glewProgramUniform2uiEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2UIVEXTPROC __glewProgramUniform2uivEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3FEXTPROC __glewProgramUniform3fEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3FVEXTPROC __glewProgramUniform3fvEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3IEXTPROC __glewProgramUniform3iEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3IVEXTPROC __glewProgramUniform3ivEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3UIEXTPROC __glewProgramUniform3uiEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3UIVEXTPROC __glewProgramUniform3uivEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4FEXTPROC __glewProgramUniform4fEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4FVEXTPROC __glewProgramUniform4fvEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4IEXTPROC __glewProgramUniform4iEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4IVEXTPROC __glewProgramUniform4ivEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4UIEXTPROC __glewProgramUniform4uiEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4UIVEXTPROC __glewProgramUniform4uivEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX2FVEXTPROC __glewProgramUniformMatrix2fvEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX2X3FVEXTPROC __glewProgramUniformMatrix2x3fvEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX2X4FVEXTPROC __glewProgramUniformMatrix2x4fvEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX3FVEXTPROC __glewProgramUniformMatrix3fvEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX3X2FVEXTPROC __glewProgramUniformMatrix3x2fvEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX3X4FVEXTPROC __glewProgramUniformMatrix3x4fvEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX4FVEXTPROC __glewProgramUniformMatrix4fvEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX4X2FVEXTPROC __glewProgramUniformMatrix4x2fvEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMMATRIX4X3FVEXTPROC __glewProgramUniformMatrix4x3fvEXT; +GLEW_FUN_EXPORT PFNGLPUSHCLIENTATTRIBDEFAULTEXTPROC __glewPushClientAttribDefaultEXT; +GLEW_FUN_EXPORT PFNGLTEXTUREBUFFEREXTPROC __glewTextureBufferEXT; +GLEW_FUN_EXPORT PFNGLTEXTUREIMAGE1DEXTPROC __glewTextureImage1DEXT; +GLEW_FUN_EXPORT PFNGLTEXTUREIMAGE2DEXTPROC __glewTextureImage2DEXT; +GLEW_FUN_EXPORT PFNGLTEXTUREIMAGE3DEXTPROC __glewTextureImage3DEXT; +GLEW_FUN_EXPORT PFNGLTEXTUREPARAMETERIIVEXTPROC __glewTextureParameterIivEXT; +GLEW_FUN_EXPORT PFNGLTEXTUREPARAMETERIUIVEXTPROC __glewTextureParameterIuivEXT; +GLEW_FUN_EXPORT PFNGLTEXTUREPARAMETERFEXTPROC __glewTextureParameterfEXT; +GLEW_FUN_EXPORT PFNGLTEXTUREPARAMETERFVEXTPROC __glewTextureParameterfvEXT; +GLEW_FUN_EXPORT PFNGLTEXTUREPARAMETERIEXTPROC __glewTextureParameteriEXT; +GLEW_FUN_EXPORT PFNGLTEXTUREPARAMETERIVEXTPROC __glewTextureParameterivEXT; +GLEW_FUN_EXPORT PFNGLTEXTURERENDERBUFFEREXTPROC __glewTextureRenderbufferEXT; +GLEW_FUN_EXPORT PFNGLTEXTURESUBIMAGE1DEXTPROC __glewTextureSubImage1DEXT; +GLEW_FUN_EXPORT PFNGLTEXTURESUBIMAGE2DEXTPROC __glewTextureSubImage2DEXT; +GLEW_FUN_EXPORT PFNGLTEXTURESUBIMAGE3DEXTPROC __glewTextureSubImage3DEXT; +GLEW_FUN_EXPORT PFNGLUNMAPNAMEDBUFFEREXTPROC __glewUnmapNamedBufferEXT; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYCOLOROFFSETEXTPROC __glewVertexArrayColorOffsetEXT; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYEDGEFLAGOFFSETEXTPROC __glewVertexArrayEdgeFlagOffsetEXT; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYFOGCOORDOFFSETEXTPROC __glewVertexArrayFogCoordOffsetEXT; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYINDEXOFFSETEXTPROC __glewVertexArrayIndexOffsetEXT; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYMULTITEXCOORDOFFSETEXTPROC __glewVertexArrayMultiTexCoordOffsetEXT; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYNORMALOFFSETEXTPROC __glewVertexArrayNormalOffsetEXT; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYSECONDARYCOLOROFFSETEXTPROC __glewVertexArraySecondaryColorOffsetEXT; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYTEXCOORDOFFSETEXTPROC __glewVertexArrayTexCoordOffsetEXT; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYVERTEXATTRIBDIVISOREXTPROC __glewVertexArrayVertexAttribDivisorEXT; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYVERTEXATTRIBIOFFSETEXTPROC __glewVertexArrayVertexAttribIOffsetEXT; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYVERTEXATTRIBOFFSETEXTPROC __glewVertexArrayVertexAttribOffsetEXT; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYVERTEXOFFSETEXTPROC __glewVertexArrayVertexOffsetEXT; + +GLEW_FUN_EXPORT PFNGLDISCARDFRAMEBUFFEREXTPROC __glewDiscardFramebufferEXT; + +GLEW_FUN_EXPORT PFNGLDRAWBUFFERSEXTPROC __glewDrawBuffersEXT; + +GLEW_FUN_EXPORT PFNGLCOLORMASKINDEXEDEXTPROC __glewColorMaskIndexedEXT; +GLEW_FUN_EXPORT PFNGLDISABLEINDEXEDEXTPROC __glewDisableIndexedEXT; +GLEW_FUN_EXPORT PFNGLENABLEINDEXEDEXTPROC __glewEnableIndexedEXT; +GLEW_FUN_EXPORT PFNGLGETBOOLEANINDEXEDVEXTPROC __glewGetBooleanIndexedvEXT; +GLEW_FUN_EXPORT PFNGLGETINTEGERINDEXEDVEXTPROC __glewGetIntegerIndexedvEXT; +GLEW_FUN_EXPORT PFNGLISENABLEDINDEXEDEXTPROC __glewIsEnabledIndexedEXT; + +GLEW_FUN_EXPORT PFNGLBLENDEQUATIONSEPARATEIEXTPROC __glewBlendEquationSeparateiEXT; +GLEW_FUN_EXPORT PFNGLBLENDEQUATIONIEXTPROC __glewBlendEquationiEXT; +GLEW_FUN_EXPORT PFNGLBLENDFUNCSEPARATEIEXTPROC __glewBlendFuncSeparateiEXT; +GLEW_FUN_EXPORT PFNGLBLENDFUNCIEXTPROC __glewBlendFunciEXT; +GLEW_FUN_EXPORT PFNGLCOLORMASKIEXTPROC __glewColorMaskiEXT; +GLEW_FUN_EXPORT PFNGLDISABLEIEXTPROC __glewDisableiEXT; +GLEW_FUN_EXPORT PFNGLENABLEIEXTPROC __glewEnableiEXT; +GLEW_FUN_EXPORT PFNGLISENABLEDIEXTPROC __glewIsEnablediEXT; + +GLEW_FUN_EXPORT PFNGLDRAWELEMENTSBASEVERTEXEXTPROC __glewDrawElementsBaseVertexEXT; +GLEW_FUN_EXPORT PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXEXTPROC __glewDrawElementsInstancedBaseVertexEXT; +GLEW_FUN_EXPORT PFNGLDRAWRANGEELEMENTSBASEVERTEXEXTPROC __glewDrawRangeElementsBaseVertexEXT; +GLEW_FUN_EXPORT PFNGLMULTIDRAWELEMENTSBASEVERTEXEXTPROC __glewMultiDrawElementsBaseVertexEXT; + +GLEW_FUN_EXPORT PFNGLDRAWARRAYSINSTANCEDEXTPROC __glewDrawArraysInstancedEXT; +GLEW_FUN_EXPORT PFNGLDRAWELEMENTSINSTANCEDEXTPROC __glewDrawElementsInstancedEXT; + +GLEW_FUN_EXPORT PFNGLDRAWRANGEELEMENTSEXTPROC __glewDrawRangeElementsEXT; + +GLEW_FUN_EXPORT PFNGLBUFFERSTORAGEEXTERNALEXTPROC __glewBufferStorageExternalEXT; +GLEW_FUN_EXPORT PFNGLNAMEDBUFFERSTORAGEEXTERNALEXTPROC __glewNamedBufferStorageExternalEXT; + +GLEW_FUN_EXPORT PFNGLFOGCOORDPOINTEREXTPROC __glewFogCoordPointerEXT; +GLEW_FUN_EXPORT PFNGLFOGCOORDDEXTPROC __glewFogCoorddEXT; +GLEW_FUN_EXPORT PFNGLFOGCOORDDVEXTPROC __glewFogCoorddvEXT; +GLEW_FUN_EXPORT PFNGLFOGCOORDFEXTPROC __glewFogCoordfEXT; +GLEW_FUN_EXPORT PFNGLFOGCOORDFVEXTPROC __glewFogCoordfvEXT; + +GLEW_FUN_EXPORT PFNGLFRAGMENTCOLORMATERIALEXTPROC __glewFragmentColorMaterialEXT; +GLEW_FUN_EXPORT PFNGLFRAGMENTLIGHTMODELFEXTPROC __glewFragmentLightModelfEXT; +GLEW_FUN_EXPORT PFNGLFRAGMENTLIGHTMODELFVEXTPROC __glewFragmentLightModelfvEXT; +GLEW_FUN_EXPORT PFNGLFRAGMENTLIGHTMODELIEXTPROC __glewFragmentLightModeliEXT; +GLEW_FUN_EXPORT PFNGLFRAGMENTLIGHTMODELIVEXTPROC __glewFragmentLightModelivEXT; +GLEW_FUN_EXPORT PFNGLFRAGMENTLIGHTFEXTPROC __glewFragmentLightfEXT; +GLEW_FUN_EXPORT PFNGLFRAGMENTLIGHTFVEXTPROC __glewFragmentLightfvEXT; +GLEW_FUN_EXPORT PFNGLFRAGMENTLIGHTIEXTPROC __glewFragmentLightiEXT; +GLEW_FUN_EXPORT PFNGLFRAGMENTLIGHTIVEXTPROC __glewFragmentLightivEXT; +GLEW_FUN_EXPORT PFNGLFRAGMENTMATERIALFEXTPROC __glewFragmentMaterialfEXT; +GLEW_FUN_EXPORT PFNGLFRAGMENTMATERIALFVEXTPROC __glewFragmentMaterialfvEXT; +GLEW_FUN_EXPORT PFNGLFRAGMENTMATERIALIEXTPROC __glewFragmentMaterialiEXT; +GLEW_FUN_EXPORT PFNGLFRAGMENTMATERIALIVEXTPROC __glewFragmentMaterialivEXT; +GLEW_FUN_EXPORT PFNGLGETFRAGMENTLIGHTFVEXTPROC __glewGetFragmentLightfvEXT; +GLEW_FUN_EXPORT PFNGLGETFRAGMENTLIGHTIVEXTPROC __glewGetFragmentLightivEXT; +GLEW_FUN_EXPORT PFNGLGETFRAGMENTMATERIALFVEXTPROC __glewGetFragmentMaterialfvEXT; +GLEW_FUN_EXPORT PFNGLGETFRAGMENTMATERIALIVEXTPROC __glewGetFragmentMaterialivEXT; +GLEW_FUN_EXPORT PFNGLLIGHTENVIEXTPROC __glewLightEnviEXT; + +GLEW_FUN_EXPORT PFNGLBLITFRAMEBUFFEREXTPROC __glewBlitFramebufferEXT; + +GLEW_FUN_EXPORT PFNGLRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC __glewRenderbufferStorageMultisampleEXT; + +GLEW_FUN_EXPORT PFNGLBINDFRAMEBUFFEREXTPROC __glewBindFramebufferEXT; +GLEW_FUN_EXPORT PFNGLBINDRENDERBUFFEREXTPROC __glewBindRenderbufferEXT; +GLEW_FUN_EXPORT PFNGLCHECKFRAMEBUFFERSTATUSEXTPROC __glewCheckFramebufferStatusEXT; +GLEW_FUN_EXPORT PFNGLDELETEFRAMEBUFFERSEXTPROC __glewDeleteFramebuffersEXT; +GLEW_FUN_EXPORT PFNGLDELETERENDERBUFFERSEXTPROC __glewDeleteRenderbuffersEXT; +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERRENDERBUFFEREXTPROC __glewFramebufferRenderbufferEXT; +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERTEXTURE1DEXTPROC __glewFramebufferTexture1DEXT; +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERTEXTURE2DEXTPROC __glewFramebufferTexture2DEXT; +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERTEXTURE3DEXTPROC __glewFramebufferTexture3DEXT; +GLEW_FUN_EXPORT PFNGLGENFRAMEBUFFERSEXTPROC __glewGenFramebuffersEXT; +GLEW_FUN_EXPORT PFNGLGENRENDERBUFFERSEXTPROC __glewGenRenderbuffersEXT; +GLEW_FUN_EXPORT PFNGLGENERATEMIPMAPEXTPROC __glewGenerateMipmapEXT; +GLEW_FUN_EXPORT PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC __glewGetFramebufferAttachmentParameterivEXT; +GLEW_FUN_EXPORT PFNGLGETRENDERBUFFERPARAMETERIVEXTPROC __glewGetRenderbufferParameterivEXT; +GLEW_FUN_EXPORT PFNGLISFRAMEBUFFEREXTPROC __glewIsFramebufferEXT; +GLEW_FUN_EXPORT PFNGLISRENDERBUFFEREXTPROC __glewIsRenderbufferEXT; +GLEW_FUN_EXPORT PFNGLRENDERBUFFERSTORAGEEXTPROC __glewRenderbufferStorageEXT; + +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERTEXTUREEXTPROC __glewFramebufferTextureEXT; +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERTEXTUREFACEEXTPROC __glewFramebufferTextureFaceEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMPARAMETERIEXTPROC __glewProgramParameteriEXT; + +GLEW_FUN_EXPORT PFNGLPROGRAMENVPARAMETERS4FVEXTPROC __glewProgramEnvParameters4fvEXT; +GLEW_FUN_EXPORT PFNGLPROGRAMLOCALPARAMETERS4FVEXTPROC __glewProgramLocalParameters4fvEXT; + +GLEW_FUN_EXPORT PFNGLBINDFRAGDATALOCATIONEXTPROC __glewBindFragDataLocationEXT; +GLEW_FUN_EXPORT PFNGLGETFRAGDATALOCATIONEXTPROC __glewGetFragDataLocationEXT; +GLEW_FUN_EXPORT PFNGLGETUNIFORMUIVEXTPROC __glewGetUniformuivEXT; +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBIIVEXTPROC __glewGetVertexAttribIivEXT; +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBIUIVEXTPROC __glewGetVertexAttribIuivEXT; +GLEW_FUN_EXPORT PFNGLUNIFORM1UIEXTPROC __glewUniform1uiEXT; +GLEW_FUN_EXPORT PFNGLUNIFORM1UIVEXTPROC __glewUniform1uivEXT; +GLEW_FUN_EXPORT PFNGLUNIFORM2UIEXTPROC __glewUniform2uiEXT; +GLEW_FUN_EXPORT PFNGLUNIFORM2UIVEXTPROC __glewUniform2uivEXT; +GLEW_FUN_EXPORT PFNGLUNIFORM3UIEXTPROC __glewUniform3uiEXT; +GLEW_FUN_EXPORT PFNGLUNIFORM3UIVEXTPROC __glewUniform3uivEXT; +GLEW_FUN_EXPORT PFNGLUNIFORM4UIEXTPROC __glewUniform4uiEXT; +GLEW_FUN_EXPORT PFNGLUNIFORM4UIVEXTPROC __glewUniform4uivEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI1IEXTPROC __glewVertexAttribI1iEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI1IVEXTPROC __glewVertexAttribI1ivEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI1UIEXTPROC __glewVertexAttribI1uiEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI1UIVEXTPROC __glewVertexAttribI1uivEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI2IEXTPROC __glewVertexAttribI2iEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI2IVEXTPROC __glewVertexAttribI2ivEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI2UIEXTPROC __glewVertexAttribI2uiEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI2UIVEXTPROC __glewVertexAttribI2uivEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI3IEXTPROC __glewVertexAttribI3iEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI3IVEXTPROC __glewVertexAttribI3ivEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI3UIEXTPROC __glewVertexAttribI3uiEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI3UIVEXTPROC __glewVertexAttribI3uivEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI4BVEXTPROC __glewVertexAttribI4bvEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI4IEXTPROC __glewVertexAttribI4iEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI4IVEXTPROC __glewVertexAttribI4ivEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI4SVEXTPROC __glewVertexAttribI4svEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI4UBVEXTPROC __glewVertexAttribI4ubvEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI4UIEXTPROC __glewVertexAttribI4uiEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI4UIVEXTPROC __glewVertexAttribI4uivEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBI4USVEXTPROC __glewVertexAttribI4usvEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBIPOINTEREXTPROC __glewVertexAttribIPointerEXT; + +GLEW_FUN_EXPORT PFNGLGETHISTOGRAMEXTPROC __glewGetHistogramEXT; +GLEW_FUN_EXPORT PFNGLGETHISTOGRAMPARAMETERFVEXTPROC __glewGetHistogramParameterfvEXT; +GLEW_FUN_EXPORT PFNGLGETHISTOGRAMPARAMETERIVEXTPROC __glewGetHistogramParameterivEXT; +GLEW_FUN_EXPORT PFNGLGETMINMAXEXTPROC __glewGetMinmaxEXT; +GLEW_FUN_EXPORT PFNGLGETMINMAXPARAMETERFVEXTPROC __glewGetMinmaxParameterfvEXT; +GLEW_FUN_EXPORT PFNGLGETMINMAXPARAMETERIVEXTPROC __glewGetMinmaxParameterivEXT; +GLEW_FUN_EXPORT PFNGLHISTOGRAMEXTPROC __glewHistogramEXT; +GLEW_FUN_EXPORT PFNGLMINMAXEXTPROC __glewMinmaxEXT; +GLEW_FUN_EXPORT PFNGLRESETHISTOGRAMEXTPROC __glewResetHistogramEXT; +GLEW_FUN_EXPORT PFNGLRESETMINMAXEXTPROC __glewResetMinmaxEXT; + +GLEW_FUN_EXPORT PFNGLINDEXFUNCEXTPROC __glewIndexFuncEXT; + +GLEW_FUN_EXPORT PFNGLINDEXMATERIALEXTPROC __glewIndexMaterialEXT; + +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBDIVISOREXTPROC __glewVertexAttribDivisorEXT; + +GLEW_FUN_EXPORT PFNGLAPPLYTEXTUREEXTPROC __glewApplyTextureEXT; +GLEW_FUN_EXPORT PFNGLTEXTURELIGHTEXTPROC __glewTextureLightEXT; +GLEW_FUN_EXPORT PFNGLTEXTUREMATERIALEXTPROC __glewTextureMaterialEXT; + +GLEW_FUN_EXPORT PFNGLFLUSHMAPPEDBUFFERRANGEEXTPROC __glewFlushMappedBufferRangeEXT; +GLEW_FUN_EXPORT PFNGLMAPBUFFERRANGEEXTPROC __glewMapBufferRangeEXT; + +GLEW_FUN_EXPORT PFNGLBUFFERSTORAGEMEMEXTPROC __glewBufferStorageMemEXT; +GLEW_FUN_EXPORT PFNGLCREATEMEMORYOBJECTSEXTPROC __glewCreateMemoryObjectsEXT; +GLEW_FUN_EXPORT PFNGLDELETEMEMORYOBJECTSEXTPROC __glewDeleteMemoryObjectsEXT; +GLEW_FUN_EXPORT PFNGLGETMEMORYOBJECTPARAMETERIVEXTPROC __glewGetMemoryObjectParameterivEXT; +GLEW_FUN_EXPORT PFNGLGETUNSIGNEDBYTEI_VEXTPROC __glewGetUnsignedBytei_vEXT; +GLEW_FUN_EXPORT PFNGLGETUNSIGNEDBYTEVEXTPROC __glewGetUnsignedBytevEXT; +GLEW_FUN_EXPORT PFNGLISMEMORYOBJECTEXTPROC __glewIsMemoryObjectEXT; +GLEW_FUN_EXPORT PFNGLMEMORYOBJECTPARAMETERIVEXTPROC __glewMemoryObjectParameterivEXT; +GLEW_FUN_EXPORT PFNGLNAMEDBUFFERSTORAGEMEMEXTPROC __glewNamedBufferStorageMemEXT; +GLEW_FUN_EXPORT PFNGLTEXSTORAGEMEM1DEXTPROC __glewTexStorageMem1DEXT; +GLEW_FUN_EXPORT PFNGLTEXSTORAGEMEM2DEXTPROC __glewTexStorageMem2DEXT; +GLEW_FUN_EXPORT PFNGLTEXSTORAGEMEM2DMULTISAMPLEEXTPROC __glewTexStorageMem2DMultisampleEXT; +GLEW_FUN_EXPORT PFNGLTEXSTORAGEMEM3DEXTPROC __glewTexStorageMem3DEXT; +GLEW_FUN_EXPORT PFNGLTEXSTORAGEMEM3DMULTISAMPLEEXTPROC __glewTexStorageMem3DMultisampleEXT; +GLEW_FUN_EXPORT PFNGLTEXTURESTORAGEMEM1DEXTPROC __glewTextureStorageMem1DEXT; +GLEW_FUN_EXPORT PFNGLTEXTURESTORAGEMEM2DEXTPROC __glewTextureStorageMem2DEXT; +GLEW_FUN_EXPORT PFNGLTEXTURESTORAGEMEM2DMULTISAMPLEEXTPROC __glewTextureStorageMem2DMultisampleEXT; +GLEW_FUN_EXPORT PFNGLTEXTURESTORAGEMEM3DEXTPROC __glewTextureStorageMem3DEXT; +GLEW_FUN_EXPORT PFNGLTEXTURESTORAGEMEM3DMULTISAMPLEEXTPROC __glewTextureStorageMem3DMultisampleEXT; + +GLEW_FUN_EXPORT PFNGLIMPORTMEMORYFDEXTPROC __glewImportMemoryFdEXT; + +GLEW_FUN_EXPORT PFNGLIMPORTMEMORYWIN32HANDLEEXTPROC __glewImportMemoryWin32HandleEXT; +GLEW_FUN_EXPORT PFNGLIMPORTMEMORYWIN32NAMEEXTPROC __glewImportMemoryWin32NameEXT; + +GLEW_FUN_EXPORT PFNGLMULTIDRAWARRAYSEXTPROC __glewMultiDrawArraysEXT; +GLEW_FUN_EXPORT PFNGLMULTIDRAWELEMENTSEXTPROC __glewMultiDrawElementsEXT; + +GLEW_FUN_EXPORT PFNGLMULTIDRAWARRAYSINDIRECTEXTPROC __glewMultiDrawArraysIndirectEXT; +GLEW_FUN_EXPORT PFNGLMULTIDRAWELEMENTSINDIRECTEXTPROC __glewMultiDrawElementsIndirectEXT; + +GLEW_FUN_EXPORT PFNGLSAMPLEMASKEXTPROC __glewSampleMaskEXT; +GLEW_FUN_EXPORT PFNGLSAMPLEPATTERNEXTPROC __glewSamplePatternEXT; + +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERTEXTURE2DMULTISAMPLEEXTPROC __glewFramebufferTexture2DMultisampleEXT; + +GLEW_FUN_EXPORT PFNGLDRAWBUFFERSINDEXEDEXTPROC __glewDrawBuffersIndexedEXT; +GLEW_FUN_EXPORT PFNGLGETINTEGERI_VEXTPROC __glewGetIntegeri_vEXT; +GLEW_FUN_EXPORT PFNGLREADBUFFERINDEXEDEXTPROC __glewReadBufferIndexedEXT; + +GLEW_FUN_EXPORT PFNGLCOLORTABLEEXTPROC __glewColorTableEXT; +GLEW_FUN_EXPORT PFNGLGETCOLORTABLEEXTPROC __glewGetColorTableEXT; +GLEW_FUN_EXPORT PFNGLGETCOLORTABLEPARAMETERFVEXTPROC __glewGetColorTableParameterfvEXT; +GLEW_FUN_EXPORT PFNGLGETCOLORTABLEPARAMETERIVEXTPROC __glewGetColorTableParameterivEXT; + +GLEW_FUN_EXPORT PFNGLGETPIXELTRANSFORMPARAMETERFVEXTPROC __glewGetPixelTransformParameterfvEXT; +GLEW_FUN_EXPORT PFNGLGETPIXELTRANSFORMPARAMETERIVEXTPROC __glewGetPixelTransformParameterivEXT; +GLEW_FUN_EXPORT PFNGLPIXELTRANSFORMPARAMETERFEXTPROC __glewPixelTransformParameterfEXT; +GLEW_FUN_EXPORT PFNGLPIXELTRANSFORMPARAMETERFVEXTPROC __glewPixelTransformParameterfvEXT; +GLEW_FUN_EXPORT PFNGLPIXELTRANSFORMPARAMETERIEXTPROC __glewPixelTransformParameteriEXT; +GLEW_FUN_EXPORT PFNGLPIXELTRANSFORMPARAMETERIVEXTPROC __glewPixelTransformParameterivEXT; + +GLEW_FUN_EXPORT PFNGLPOINTPARAMETERFEXTPROC __glewPointParameterfEXT; +GLEW_FUN_EXPORT PFNGLPOINTPARAMETERFVEXTPROC __glewPointParameterfvEXT; + +GLEW_FUN_EXPORT PFNGLPOLYGONOFFSETEXTPROC __glewPolygonOffsetEXT; + +GLEW_FUN_EXPORT PFNGLPOLYGONOFFSETCLAMPEXTPROC __glewPolygonOffsetClampEXT; + +GLEW_FUN_EXPORT PFNGLPROVOKINGVERTEXEXTPROC __glewProvokingVertexEXT; + +GLEW_FUN_EXPORT PFNGLCOVERAGEMODULATIONNVPROC __glewCoverageModulationNV; +GLEW_FUN_EXPORT PFNGLCOVERAGEMODULATIONTABLENVPROC __glewCoverageModulationTableNV; +GLEW_FUN_EXPORT PFNGLGETCOVERAGEMODULATIONTABLENVPROC __glewGetCoverageModulationTableNV; +GLEW_FUN_EXPORT PFNGLRASTERSAMPLESEXTPROC __glewRasterSamplesEXT; + +GLEW_FUN_EXPORT PFNGLBEGINSCENEEXTPROC __glewBeginSceneEXT; +GLEW_FUN_EXPORT PFNGLENDSCENEEXTPROC __glewEndSceneEXT; + +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3BEXTPROC __glewSecondaryColor3bEXT; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3BVEXTPROC __glewSecondaryColor3bvEXT; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3DEXTPROC __glewSecondaryColor3dEXT; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3DVEXTPROC __glewSecondaryColor3dvEXT; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3FEXTPROC __glewSecondaryColor3fEXT; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3FVEXTPROC __glewSecondaryColor3fvEXT; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3IEXTPROC __glewSecondaryColor3iEXT; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3IVEXTPROC __glewSecondaryColor3ivEXT; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3SEXTPROC __glewSecondaryColor3sEXT; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3SVEXTPROC __glewSecondaryColor3svEXT; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3UBEXTPROC __glewSecondaryColor3ubEXT; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3UBVEXTPROC __glewSecondaryColor3ubvEXT; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3UIEXTPROC __glewSecondaryColor3uiEXT; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3UIVEXTPROC __glewSecondaryColor3uivEXT; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3USEXTPROC __glewSecondaryColor3usEXT; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3USVEXTPROC __glewSecondaryColor3usvEXT; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLORPOINTEREXTPROC __glewSecondaryColorPointerEXT; + +GLEW_FUN_EXPORT PFNGLDELETESEMAPHORESEXTPROC __glewDeleteSemaphoresEXT; +GLEW_FUN_EXPORT PFNGLGENSEMAPHORESEXTPROC __glewGenSemaphoresEXT; +GLEW_FUN_EXPORT PFNGLGETSEMAPHOREPARAMETERUI64VEXTPROC __glewGetSemaphoreParameterui64vEXT; +GLEW_FUN_EXPORT PFNGLISSEMAPHOREEXTPROC __glewIsSemaphoreEXT; +GLEW_FUN_EXPORT PFNGLSEMAPHOREPARAMETERUI64VEXTPROC __glewSemaphoreParameterui64vEXT; +GLEW_FUN_EXPORT PFNGLSIGNALSEMAPHOREEXTPROC __glewSignalSemaphoreEXT; +GLEW_FUN_EXPORT PFNGLWAITSEMAPHOREEXTPROC __glewWaitSemaphoreEXT; + +GLEW_FUN_EXPORT PFNGLIMPORTSEMAPHOREFDEXTPROC __glewImportSemaphoreFdEXT; + +GLEW_FUN_EXPORT PFNGLIMPORTSEMAPHOREWIN32HANDLEEXTPROC __glewImportSemaphoreWin32HandleEXT; +GLEW_FUN_EXPORT PFNGLIMPORTSEMAPHOREWIN32NAMEEXTPROC __glewImportSemaphoreWin32NameEXT; + +GLEW_FUN_EXPORT PFNGLACTIVEPROGRAMEXTPROC __glewActiveProgramEXT; +GLEW_FUN_EXPORT PFNGLCREATESHADERPROGRAMEXTPROC __glewCreateShaderProgramEXT; +GLEW_FUN_EXPORT PFNGLUSESHADERPROGRAMEXTPROC __glewUseShaderProgramEXT; + +GLEW_FUN_EXPORT PFNGLBINDIMAGETEXTUREEXTPROC __glewBindImageTextureEXT; +GLEW_FUN_EXPORT PFNGLMEMORYBARRIEREXTPROC __glewMemoryBarrierEXT; + +GLEW_FUN_EXPORT PFNGLCLEARPIXELLOCALSTORAGEUIEXTPROC __glewClearPixelLocalStorageuiEXT; +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERPIXELLOCALSTORAGESIZEEXTPROC __glewFramebufferPixelLocalStorageSizeEXT; +GLEW_FUN_EXPORT PFNGLGETFRAMEBUFFERPIXELLOCALSTORAGESIZEEXTPROC __glewGetFramebufferPixelLocalStorageSizeEXT; + +GLEW_FUN_EXPORT PFNGLTEXPAGECOMMITMENTEXTPROC __glewTexPageCommitmentEXT; +GLEW_FUN_EXPORT PFNGLTEXTUREPAGECOMMITMENTEXTPROC __glewTexturePageCommitmentEXT; + +GLEW_FUN_EXPORT PFNGLACTIVESTENCILFACEEXTPROC __glewActiveStencilFaceEXT; + +GLEW_FUN_EXPORT PFNGLTEXSUBIMAGE1DEXTPROC __glewTexSubImage1DEXT; +GLEW_FUN_EXPORT PFNGLTEXSUBIMAGE2DEXTPROC __glewTexSubImage2DEXT; +GLEW_FUN_EXPORT PFNGLTEXSUBIMAGE3DEXTPROC __glewTexSubImage3DEXT; + +GLEW_FUN_EXPORT PFNGLTEXIMAGE3DEXTPROC __glewTexImage3DEXT; + +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERTEXTURELAYEREXTPROC __glewFramebufferTextureLayerEXT; + +GLEW_FUN_EXPORT PFNGLTEXBUFFEREXTPROC __glewTexBufferEXT; + +GLEW_FUN_EXPORT PFNGLCLEARCOLORIIEXTPROC __glewClearColorIiEXT; +GLEW_FUN_EXPORT PFNGLCLEARCOLORIUIEXTPROC __glewClearColorIuiEXT; +GLEW_FUN_EXPORT PFNGLGETTEXPARAMETERIIVEXTPROC __glewGetTexParameterIivEXT; +GLEW_FUN_EXPORT PFNGLGETTEXPARAMETERIUIVEXTPROC __glewGetTexParameterIuivEXT; +GLEW_FUN_EXPORT PFNGLTEXPARAMETERIIVEXTPROC __glewTexParameterIivEXT; +GLEW_FUN_EXPORT PFNGLTEXPARAMETERIUIVEXTPROC __glewTexParameterIuivEXT; + +GLEW_FUN_EXPORT PFNGLARETEXTURESRESIDENTEXTPROC __glewAreTexturesResidentEXT; +GLEW_FUN_EXPORT PFNGLBINDTEXTUREEXTPROC __glewBindTextureEXT; +GLEW_FUN_EXPORT PFNGLDELETETEXTURESEXTPROC __glewDeleteTexturesEXT; +GLEW_FUN_EXPORT PFNGLGENTEXTURESEXTPROC __glewGenTexturesEXT; +GLEW_FUN_EXPORT PFNGLISTEXTUREEXTPROC __glewIsTextureEXT; +GLEW_FUN_EXPORT PFNGLPRIORITIZETEXTURESEXTPROC __glewPrioritizeTexturesEXT; + +GLEW_FUN_EXPORT PFNGLTEXTURENORMALEXTPROC __glewTextureNormalEXT; + +GLEW_FUN_EXPORT PFNGLTEXSTORAGE1DEXTPROC __glewTexStorage1DEXT; +GLEW_FUN_EXPORT PFNGLTEXSTORAGE2DEXTPROC __glewTexStorage2DEXT; +GLEW_FUN_EXPORT PFNGLTEXSTORAGE3DEXTPROC __glewTexStorage3DEXT; +GLEW_FUN_EXPORT PFNGLTEXTURESTORAGE1DEXTPROC __glewTextureStorage1DEXT; +GLEW_FUN_EXPORT PFNGLTEXTURESTORAGE2DEXTPROC __glewTextureStorage2DEXT; +GLEW_FUN_EXPORT PFNGLTEXTURESTORAGE3DEXTPROC __glewTextureStorage3DEXT; + +GLEW_FUN_EXPORT PFNGLTEXTUREVIEWEXTPROC __glewTextureViewEXT; + +GLEW_FUN_EXPORT PFNGLGETQUERYOBJECTI64VEXTPROC __glewGetQueryObjecti64vEXT; +GLEW_FUN_EXPORT PFNGLGETQUERYOBJECTUI64VEXTPROC __glewGetQueryObjectui64vEXT; + +GLEW_FUN_EXPORT PFNGLBEGINTRANSFORMFEEDBACKEXTPROC __glewBeginTransformFeedbackEXT; +GLEW_FUN_EXPORT PFNGLBINDBUFFERBASEEXTPROC __glewBindBufferBaseEXT; +GLEW_FUN_EXPORT PFNGLBINDBUFFEROFFSETEXTPROC __glewBindBufferOffsetEXT; +GLEW_FUN_EXPORT PFNGLBINDBUFFERRANGEEXTPROC __glewBindBufferRangeEXT; +GLEW_FUN_EXPORT PFNGLENDTRANSFORMFEEDBACKEXTPROC __glewEndTransformFeedbackEXT; +GLEW_FUN_EXPORT PFNGLGETTRANSFORMFEEDBACKVARYINGEXTPROC __glewGetTransformFeedbackVaryingEXT; +GLEW_FUN_EXPORT PFNGLTRANSFORMFEEDBACKVARYINGSEXTPROC __glewTransformFeedbackVaryingsEXT; + +GLEW_FUN_EXPORT PFNGLARRAYELEMENTEXTPROC __glewArrayElementEXT; +GLEW_FUN_EXPORT PFNGLCOLORPOINTEREXTPROC __glewColorPointerEXT; +GLEW_FUN_EXPORT PFNGLDRAWARRAYSEXTPROC __glewDrawArraysEXT; +GLEW_FUN_EXPORT PFNGLEDGEFLAGPOINTEREXTPROC __glewEdgeFlagPointerEXT; +GLEW_FUN_EXPORT PFNGLINDEXPOINTEREXTPROC __glewIndexPointerEXT; +GLEW_FUN_EXPORT PFNGLNORMALPOINTEREXTPROC __glewNormalPointerEXT; +GLEW_FUN_EXPORT PFNGLTEXCOORDPOINTEREXTPROC __glewTexCoordPointerEXT; +GLEW_FUN_EXPORT PFNGLVERTEXPOINTEREXTPROC __glewVertexPointerEXT; + +GLEW_FUN_EXPORT PFNGLBINDARRAYSETEXTPROC __glewBindArraySetEXT; +GLEW_FUN_EXPORT PFNGLCREATEARRAYSETEXTPROC __glewCreateArraySetExt; +GLEW_FUN_EXPORT PFNGLDELETEARRAYSETSEXTPROC __glewDeleteArraySetsEXT; + +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBLDVEXTPROC __glewGetVertexAttribLdvEXT; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYVERTEXATTRIBLOFFSETEXTPROC __glewVertexArrayVertexAttribLOffsetEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL1DEXTPROC __glewVertexAttribL1dEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL1DVEXTPROC __glewVertexAttribL1dvEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL2DEXTPROC __glewVertexAttribL2dEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL2DVEXTPROC __glewVertexAttribL2dvEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL3DEXTPROC __glewVertexAttribL3dEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL3DVEXTPROC __glewVertexAttribL3dvEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL4DEXTPROC __glewVertexAttribL4dEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL4DVEXTPROC __glewVertexAttribL4dvEXT; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBLPOINTEREXTPROC __glewVertexAttribLPointerEXT; + +GLEW_FUN_EXPORT PFNGLBEGINVERTEXSHADEREXTPROC __glewBeginVertexShaderEXT; +GLEW_FUN_EXPORT PFNGLBINDLIGHTPARAMETEREXTPROC __glewBindLightParameterEXT; +GLEW_FUN_EXPORT PFNGLBINDMATERIALPARAMETEREXTPROC __glewBindMaterialParameterEXT; +GLEW_FUN_EXPORT PFNGLBINDPARAMETEREXTPROC __glewBindParameterEXT; +GLEW_FUN_EXPORT PFNGLBINDTEXGENPARAMETEREXTPROC __glewBindTexGenParameterEXT; +GLEW_FUN_EXPORT PFNGLBINDTEXTUREUNITPARAMETEREXTPROC __glewBindTextureUnitParameterEXT; +GLEW_FUN_EXPORT PFNGLBINDVERTEXSHADEREXTPROC __glewBindVertexShaderEXT; +GLEW_FUN_EXPORT PFNGLDELETEVERTEXSHADEREXTPROC __glewDeleteVertexShaderEXT; +GLEW_FUN_EXPORT PFNGLDISABLEVARIANTCLIENTSTATEEXTPROC __glewDisableVariantClientStateEXT; +GLEW_FUN_EXPORT PFNGLENABLEVARIANTCLIENTSTATEEXTPROC __glewEnableVariantClientStateEXT; +GLEW_FUN_EXPORT PFNGLENDVERTEXSHADEREXTPROC __glewEndVertexShaderEXT; +GLEW_FUN_EXPORT PFNGLEXTRACTCOMPONENTEXTPROC __glewExtractComponentEXT; +GLEW_FUN_EXPORT PFNGLGENSYMBOLSEXTPROC __glewGenSymbolsEXT; +GLEW_FUN_EXPORT PFNGLGENVERTEXSHADERSEXTPROC __glewGenVertexShadersEXT; +GLEW_FUN_EXPORT PFNGLGETINVARIANTBOOLEANVEXTPROC __glewGetInvariantBooleanvEXT; +GLEW_FUN_EXPORT PFNGLGETINVARIANTFLOATVEXTPROC __glewGetInvariantFloatvEXT; +GLEW_FUN_EXPORT PFNGLGETINVARIANTINTEGERVEXTPROC __glewGetInvariantIntegervEXT; +GLEW_FUN_EXPORT PFNGLGETLOCALCONSTANTBOOLEANVEXTPROC __glewGetLocalConstantBooleanvEXT; +GLEW_FUN_EXPORT PFNGLGETLOCALCONSTANTFLOATVEXTPROC __glewGetLocalConstantFloatvEXT; +GLEW_FUN_EXPORT PFNGLGETLOCALCONSTANTINTEGERVEXTPROC __glewGetLocalConstantIntegervEXT; +GLEW_FUN_EXPORT PFNGLGETVARIANTBOOLEANVEXTPROC __glewGetVariantBooleanvEXT; +GLEW_FUN_EXPORT PFNGLGETVARIANTFLOATVEXTPROC __glewGetVariantFloatvEXT; +GLEW_FUN_EXPORT PFNGLGETVARIANTINTEGERVEXTPROC __glewGetVariantIntegervEXT; +GLEW_FUN_EXPORT PFNGLGETVARIANTPOINTERVEXTPROC __glewGetVariantPointervEXT; +GLEW_FUN_EXPORT PFNGLINSERTCOMPONENTEXTPROC __glewInsertComponentEXT; +GLEW_FUN_EXPORT PFNGLISVARIANTENABLEDEXTPROC __glewIsVariantEnabledEXT; +GLEW_FUN_EXPORT PFNGLSETINVARIANTEXTPROC __glewSetInvariantEXT; +GLEW_FUN_EXPORT PFNGLSETLOCALCONSTANTEXTPROC __glewSetLocalConstantEXT; +GLEW_FUN_EXPORT PFNGLSHADEROP1EXTPROC __glewShaderOp1EXT; +GLEW_FUN_EXPORT PFNGLSHADEROP2EXTPROC __glewShaderOp2EXT; +GLEW_FUN_EXPORT PFNGLSHADEROP3EXTPROC __glewShaderOp3EXT; +GLEW_FUN_EXPORT PFNGLSWIZZLEEXTPROC __glewSwizzleEXT; +GLEW_FUN_EXPORT PFNGLVARIANTPOINTEREXTPROC __glewVariantPointerEXT; +GLEW_FUN_EXPORT PFNGLVARIANTBVEXTPROC __glewVariantbvEXT; +GLEW_FUN_EXPORT PFNGLVARIANTDVEXTPROC __glewVariantdvEXT; +GLEW_FUN_EXPORT PFNGLVARIANTFVEXTPROC __glewVariantfvEXT; +GLEW_FUN_EXPORT PFNGLVARIANTIVEXTPROC __glewVariantivEXT; +GLEW_FUN_EXPORT PFNGLVARIANTSVEXTPROC __glewVariantsvEXT; +GLEW_FUN_EXPORT PFNGLVARIANTUBVEXTPROC __glewVariantubvEXT; +GLEW_FUN_EXPORT PFNGLVARIANTUIVEXTPROC __glewVariantuivEXT; +GLEW_FUN_EXPORT PFNGLVARIANTUSVEXTPROC __glewVariantusvEXT; +GLEW_FUN_EXPORT PFNGLWRITEMASKEXTPROC __glewWriteMaskEXT; + +GLEW_FUN_EXPORT PFNGLVERTEXWEIGHTPOINTEREXTPROC __glewVertexWeightPointerEXT; +GLEW_FUN_EXPORT PFNGLVERTEXWEIGHTFEXTPROC __glewVertexWeightfEXT; +GLEW_FUN_EXPORT PFNGLVERTEXWEIGHTFVEXTPROC __glewVertexWeightfvEXT; + +GLEW_FUN_EXPORT PFNGLACQUIREKEYEDMUTEXWIN32EXTPROC __glewAcquireKeyedMutexWin32EXT; +GLEW_FUN_EXPORT PFNGLRELEASEKEYEDMUTEXWIN32EXTPROC __glewReleaseKeyedMutexWin32EXT; + +GLEW_FUN_EXPORT PFNGLWINDOWRECTANGLESEXTPROC __glewWindowRectanglesEXT; + +GLEW_FUN_EXPORT PFNGLIMPORTSYNCEXTPROC __glewImportSyncEXT; + +GLEW_FUN_EXPORT PFNGLFRAMETERMINATORGREMEDYPROC __glewFrameTerminatorGREMEDY; + +GLEW_FUN_EXPORT PFNGLSTRINGMARKERGREMEDYPROC __glewStringMarkerGREMEDY; + +GLEW_FUN_EXPORT PFNGLGETIMAGETRANSFORMPARAMETERFVHPPROC __glewGetImageTransformParameterfvHP; +GLEW_FUN_EXPORT PFNGLGETIMAGETRANSFORMPARAMETERIVHPPROC __glewGetImageTransformParameterivHP; +GLEW_FUN_EXPORT PFNGLIMAGETRANSFORMPARAMETERFHPPROC __glewImageTransformParameterfHP; +GLEW_FUN_EXPORT PFNGLIMAGETRANSFORMPARAMETERFVHPPROC __glewImageTransformParameterfvHP; +GLEW_FUN_EXPORT PFNGLIMAGETRANSFORMPARAMETERIHPPROC __glewImageTransformParameteriHP; +GLEW_FUN_EXPORT PFNGLIMAGETRANSFORMPARAMETERIVHPPROC __glewImageTransformParameterivHP; + +GLEW_FUN_EXPORT PFNGLMULTIMODEDRAWARRAYSIBMPROC __glewMultiModeDrawArraysIBM; +GLEW_FUN_EXPORT PFNGLMULTIMODEDRAWELEMENTSIBMPROC __glewMultiModeDrawElementsIBM; + +GLEW_FUN_EXPORT PFNGLCOLORPOINTERLISTIBMPROC __glewColorPointerListIBM; +GLEW_FUN_EXPORT PFNGLEDGEFLAGPOINTERLISTIBMPROC __glewEdgeFlagPointerListIBM; +GLEW_FUN_EXPORT PFNGLFOGCOORDPOINTERLISTIBMPROC __glewFogCoordPointerListIBM; +GLEW_FUN_EXPORT PFNGLINDEXPOINTERLISTIBMPROC __glewIndexPointerListIBM; +GLEW_FUN_EXPORT PFNGLNORMALPOINTERLISTIBMPROC __glewNormalPointerListIBM; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLORPOINTERLISTIBMPROC __glewSecondaryColorPointerListIBM; +GLEW_FUN_EXPORT PFNGLTEXCOORDPOINTERLISTIBMPROC __glewTexCoordPointerListIBM; +GLEW_FUN_EXPORT PFNGLVERTEXPOINTERLISTIBMPROC __glewVertexPointerListIBM; + +GLEW_FUN_EXPORT PFNGLMAPTEXTURE2DINTELPROC __glewMapTexture2DINTEL; +GLEW_FUN_EXPORT PFNGLSYNCTEXTUREINTELPROC __glewSyncTextureINTEL; +GLEW_FUN_EXPORT PFNGLUNMAPTEXTURE2DINTELPROC __glewUnmapTexture2DINTEL; + +GLEW_FUN_EXPORT PFNGLCOLORPOINTERVINTELPROC __glewColorPointervINTEL; +GLEW_FUN_EXPORT PFNGLNORMALPOINTERVINTELPROC __glewNormalPointervINTEL; +GLEW_FUN_EXPORT PFNGLTEXCOORDPOINTERVINTELPROC __glewTexCoordPointervINTEL; +GLEW_FUN_EXPORT PFNGLVERTEXPOINTERVINTELPROC __glewVertexPointervINTEL; + +GLEW_FUN_EXPORT PFNGLBEGINPERFQUERYINTELPROC __glewBeginPerfQueryINTEL; +GLEW_FUN_EXPORT PFNGLCREATEPERFQUERYINTELPROC __glewCreatePerfQueryINTEL; +GLEW_FUN_EXPORT PFNGLDELETEPERFQUERYINTELPROC __glewDeletePerfQueryINTEL; +GLEW_FUN_EXPORT PFNGLENDPERFQUERYINTELPROC __glewEndPerfQueryINTEL; +GLEW_FUN_EXPORT PFNGLGETFIRSTPERFQUERYIDINTELPROC __glewGetFirstPerfQueryIdINTEL; +GLEW_FUN_EXPORT PFNGLGETNEXTPERFQUERYIDINTELPROC __glewGetNextPerfQueryIdINTEL; +GLEW_FUN_EXPORT PFNGLGETPERFCOUNTERINFOINTELPROC __glewGetPerfCounterInfoINTEL; +GLEW_FUN_EXPORT PFNGLGETPERFQUERYDATAINTELPROC __glewGetPerfQueryDataINTEL; +GLEW_FUN_EXPORT PFNGLGETPERFQUERYIDBYNAMEINTELPROC __glewGetPerfQueryIdByNameINTEL; +GLEW_FUN_EXPORT PFNGLGETPERFQUERYINFOINTELPROC __glewGetPerfQueryInfoINTEL; + +GLEW_FUN_EXPORT PFNGLTEXSCISSORFUNCINTELPROC __glewTexScissorFuncINTEL; +GLEW_FUN_EXPORT PFNGLTEXSCISSORINTELPROC __glewTexScissorINTEL; + +GLEW_FUN_EXPORT PFNGLBLENDBARRIERKHRPROC __glewBlendBarrierKHR; + +GLEW_FUN_EXPORT PFNGLDEBUGMESSAGECALLBACKPROC __glewDebugMessageCallback; +GLEW_FUN_EXPORT PFNGLDEBUGMESSAGECONTROLPROC __glewDebugMessageControl; +GLEW_FUN_EXPORT PFNGLDEBUGMESSAGEINSERTPROC __glewDebugMessageInsert; +GLEW_FUN_EXPORT PFNGLGETDEBUGMESSAGELOGPROC __glewGetDebugMessageLog; +GLEW_FUN_EXPORT PFNGLGETOBJECTLABELPROC __glewGetObjectLabel; +GLEW_FUN_EXPORT PFNGLGETOBJECTPTRLABELPROC __glewGetObjectPtrLabel; +GLEW_FUN_EXPORT PFNGLOBJECTLABELPROC __glewObjectLabel; +GLEW_FUN_EXPORT PFNGLOBJECTPTRLABELPROC __glewObjectPtrLabel; +GLEW_FUN_EXPORT PFNGLPOPDEBUGGROUPPROC __glewPopDebugGroup; +GLEW_FUN_EXPORT PFNGLPUSHDEBUGGROUPPROC __glewPushDebugGroup; + +GLEW_FUN_EXPORT PFNGLMAXSHADERCOMPILERTHREADSKHRPROC __glewMaxShaderCompilerThreadsKHR; + +GLEW_FUN_EXPORT PFNGLGETNUNIFORMFVPROC __glewGetnUniformfv; +GLEW_FUN_EXPORT PFNGLGETNUNIFORMIVPROC __glewGetnUniformiv; +GLEW_FUN_EXPORT PFNGLGETNUNIFORMUIVPROC __glewGetnUniformuiv; +GLEW_FUN_EXPORT PFNGLREADNPIXELSPROC __glewReadnPixels; + +GLEW_FUN_EXPORT PFNGLBUFFERREGIONENABLEDPROC __glewBufferRegionEnabled; +GLEW_FUN_EXPORT PFNGLDELETEBUFFERREGIONPROC __glewDeleteBufferRegion; +GLEW_FUN_EXPORT PFNGLDRAWBUFFERREGIONPROC __glewDrawBufferRegion; +GLEW_FUN_EXPORT PFNGLNEWBUFFERREGIONPROC __glewNewBufferRegion; +GLEW_FUN_EXPORT PFNGLREADBUFFERREGIONPROC __glewReadBufferRegion; + +GLEW_FUN_EXPORT PFNGLRESIZEBUFFERSMESAPROC __glewResizeBuffersMESA; + +GLEW_FUN_EXPORT PFNGLWINDOWPOS2DMESAPROC __glewWindowPos2dMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2DVMESAPROC __glewWindowPos2dvMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2FMESAPROC __glewWindowPos2fMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2FVMESAPROC __glewWindowPos2fvMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2IMESAPROC __glewWindowPos2iMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2IVMESAPROC __glewWindowPos2ivMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2SMESAPROC __glewWindowPos2sMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS2SVMESAPROC __glewWindowPos2svMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3DMESAPROC __glewWindowPos3dMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3DVMESAPROC __glewWindowPos3dvMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3FMESAPROC __glewWindowPos3fMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3FVMESAPROC __glewWindowPos3fvMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3IMESAPROC __glewWindowPos3iMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3IVMESAPROC __glewWindowPos3ivMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3SMESAPROC __glewWindowPos3sMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS3SVMESAPROC __glewWindowPos3svMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS4DMESAPROC __glewWindowPos4dMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS4DVMESAPROC __glewWindowPos4dvMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS4FMESAPROC __glewWindowPos4fMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS4FVMESAPROC __glewWindowPos4fvMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS4IMESAPROC __glewWindowPos4iMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS4IVMESAPROC __glewWindowPos4ivMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS4SMESAPROC __glewWindowPos4sMESA; +GLEW_FUN_EXPORT PFNGLWINDOWPOS4SVMESAPROC __glewWindowPos4svMESA; + +GLEW_FUN_EXPORT PFNGLBEGINCONDITIONALRENDERNVXPROC __glewBeginConditionalRenderNVX; +GLEW_FUN_EXPORT PFNGLENDCONDITIONALRENDERNVXPROC __glewEndConditionalRenderNVX; + +GLEW_FUN_EXPORT PFNGLLGPUCOPYIMAGESUBDATANVXPROC __glewLGPUCopyImageSubDataNVX; +GLEW_FUN_EXPORT PFNGLLGPUINTERLOCKNVXPROC __glewLGPUInterlockNVX; +GLEW_FUN_EXPORT PFNGLLGPUNAMEDBUFFERSUBDATANVXPROC __glewLGPUNamedBufferSubDataNVX; + +GLEW_FUN_EXPORT PFNGLSTEREOPARAMETERFNVPROC __glewStereoParameterfNV; +GLEW_FUN_EXPORT PFNGLSTEREOPARAMETERINVPROC __glewStereoParameteriNV; + +GLEW_FUN_EXPORT PFNGLMULTIDRAWARRAYSINDIRECTBINDLESSNVPROC __glewMultiDrawArraysIndirectBindlessNV; +GLEW_FUN_EXPORT PFNGLMULTIDRAWELEMENTSINDIRECTBINDLESSNVPROC __glewMultiDrawElementsIndirectBindlessNV; + +GLEW_FUN_EXPORT PFNGLMULTIDRAWARRAYSINDIRECTBINDLESSCOUNTNVPROC __glewMultiDrawArraysIndirectBindlessCountNV; +GLEW_FUN_EXPORT PFNGLMULTIDRAWELEMENTSINDIRECTBINDLESSCOUNTNVPROC __glewMultiDrawElementsIndirectBindlessCountNV; + +GLEW_FUN_EXPORT PFNGLGETIMAGEHANDLENVPROC __glewGetImageHandleNV; +GLEW_FUN_EXPORT PFNGLGETTEXTUREHANDLENVPROC __glewGetTextureHandleNV; +GLEW_FUN_EXPORT PFNGLGETTEXTURESAMPLERHANDLENVPROC __glewGetTextureSamplerHandleNV; +GLEW_FUN_EXPORT PFNGLISIMAGEHANDLERESIDENTNVPROC __glewIsImageHandleResidentNV; +GLEW_FUN_EXPORT PFNGLISTEXTUREHANDLERESIDENTNVPROC __glewIsTextureHandleResidentNV; +GLEW_FUN_EXPORT PFNGLMAKEIMAGEHANDLENONRESIDENTNVPROC __glewMakeImageHandleNonResidentNV; +GLEW_FUN_EXPORT PFNGLMAKEIMAGEHANDLERESIDENTNVPROC __glewMakeImageHandleResidentNV; +GLEW_FUN_EXPORT PFNGLMAKETEXTUREHANDLENONRESIDENTNVPROC __glewMakeTextureHandleNonResidentNV; +GLEW_FUN_EXPORT PFNGLMAKETEXTUREHANDLERESIDENTNVPROC __glewMakeTextureHandleResidentNV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMHANDLEUI64NVPROC __glewProgramUniformHandleui64NV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMHANDLEUI64VNVPROC __glewProgramUniformHandleui64vNV; +GLEW_FUN_EXPORT PFNGLUNIFORMHANDLEUI64NVPROC __glewUniformHandleui64NV; +GLEW_FUN_EXPORT PFNGLUNIFORMHANDLEUI64VNVPROC __glewUniformHandleui64vNV; + +GLEW_FUN_EXPORT PFNGLBLENDBARRIERNVPROC __glewBlendBarrierNV; +GLEW_FUN_EXPORT PFNGLBLENDPARAMETERINVPROC __glewBlendParameteriNV; + +GLEW_FUN_EXPORT PFNGLVIEWPORTPOSITIONWSCALENVPROC __glewViewportPositionWScaleNV; + +GLEW_FUN_EXPORT PFNGLCALLCOMMANDLISTNVPROC __glewCallCommandListNV; +GLEW_FUN_EXPORT PFNGLCOMMANDLISTSEGMENTSNVPROC __glewCommandListSegmentsNV; +GLEW_FUN_EXPORT PFNGLCOMPILECOMMANDLISTNVPROC __glewCompileCommandListNV; +GLEW_FUN_EXPORT PFNGLCREATECOMMANDLISTSNVPROC __glewCreateCommandListsNV; +GLEW_FUN_EXPORT PFNGLCREATESTATESNVPROC __glewCreateStatesNV; +GLEW_FUN_EXPORT PFNGLDELETECOMMANDLISTSNVPROC __glewDeleteCommandListsNV; +GLEW_FUN_EXPORT PFNGLDELETESTATESNVPROC __glewDeleteStatesNV; +GLEW_FUN_EXPORT PFNGLDRAWCOMMANDSADDRESSNVPROC __glewDrawCommandsAddressNV; +GLEW_FUN_EXPORT PFNGLDRAWCOMMANDSNVPROC __glewDrawCommandsNV; +GLEW_FUN_EXPORT PFNGLDRAWCOMMANDSSTATESADDRESSNVPROC __glewDrawCommandsStatesAddressNV; +GLEW_FUN_EXPORT PFNGLDRAWCOMMANDSSTATESNVPROC __glewDrawCommandsStatesNV; +GLEW_FUN_EXPORT PFNGLGETCOMMANDHEADERNVPROC __glewGetCommandHeaderNV; +GLEW_FUN_EXPORT PFNGLGETSTAGEINDEXNVPROC __glewGetStageIndexNV; +GLEW_FUN_EXPORT PFNGLISCOMMANDLISTNVPROC __glewIsCommandListNV; +GLEW_FUN_EXPORT PFNGLISSTATENVPROC __glewIsStateNV; +GLEW_FUN_EXPORT PFNGLLISTDRAWCOMMANDSSTATESCLIENTNVPROC __glewListDrawCommandsStatesClientNV; +GLEW_FUN_EXPORT PFNGLSTATECAPTURENVPROC __glewStateCaptureNV; + +GLEW_FUN_EXPORT PFNGLBEGINCONDITIONALRENDERNVPROC __glewBeginConditionalRenderNV; +GLEW_FUN_EXPORT PFNGLENDCONDITIONALRENDERNVPROC __glewEndConditionalRenderNV; + +GLEW_FUN_EXPORT PFNGLSUBPIXELPRECISIONBIASNVPROC __glewSubpixelPrecisionBiasNV; + +GLEW_FUN_EXPORT PFNGLCONSERVATIVERASTERPARAMETERFNVPROC __glewConservativeRasterParameterfNV; + +GLEW_FUN_EXPORT PFNGLCONSERVATIVERASTERPARAMETERINVPROC __glewConservativeRasterParameteriNV; + +GLEW_FUN_EXPORT PFNGLCOPYBUFFERSUBDATANVPROC __glewCopyBufferSubDataNV; + +GLEW_FUN_EXPORT PFNGLCOPYIMAGESUBDATANVPROC __glewCopyImageSubDataNV; + +GLEW_FUN_EXPORT PFNGLCLEARDEPTHDNVPROC __glewClearDepthdNV; +GLEW_FUN_EXPORT PFNGLDEPTHBOUNDSDNVPROC __glewDepthBoundsdNV; +GLEW_FUN_EXPORT PFNGLDEPTHRANGEDNVPROC __glewDepthRangedNV; + +GLEW_FUN_EXPORT PFNGLDRAWBUFFERSNVPROC __glewDrawBuffersNV; + +GLEW_FUN_EXPORT PFNGLDRAWARRAYSINSTANCEDNVPROC __glewDrawArraysInstancedNV; +GLEW_FUN_EXPORT PFNGLDRAWELEMENTSINSTANCEDNVPROC __glewDrawElementsInstancedNV; + +GLEW_FUN_EXPORT PFNGLDRAWTEXTURENVPROC __glewDrawTextureNV; + +GLEW_FUN_EXPORT PFNGLDRAWVKIMAGENVPROC __glewDrawVkImageNV; +GLEW_FUN_EXPORT PFNGLGETVKPROCADDRNVPROC __glewGetVkProcAddrNV; +GLEW_FUN_EXPORT PFNGLSIGNALVKFENCENVPROC __glewSignalVkFenceNV; +GLEW_FUN_EXPORT PFNGLSIGNALVKSEMAPHORENVPROC __glewSignalVkSemaphoreNV; +GLEW_FUN_EXPORT PFNGLWAITVKSEMAPHORENVPROC __glewWaitVkSemaphoreNV; + +GLEW_FUN_EXPORT PFNGLEVALMAPSNVPROC __glewEvalMapsNV; +GLEW_FUN_EXPORT PFNGLGETMAPATTRIBPARAMETERFVNVPROC __glewGetMapAttribParameterfvNV; +GLEW_FUN_EXPORT PFNGLGETMAPATTRIBPARAMETERIVNVPROC __glewGetMapAttribParameterivNV; +GLEW_FUN_EXPORT PFNGLGETMAPCONTROLPOINTSNVPROC __glewGetMapControlPointsNV; +GLEW_FUN_EXPORT PFNGLGETMAPPARAMETERFVNVPROC __glewGetMapParameterfvNV; +GLEW_FUN_EXPORT PFNGLGETMAPPARAMETERIVNVPROC __glewGetMapParameterivNV; +GLEW_FUN_EXPORT PFNGLMAPCONTROLPOINTSNVPROC __glewMapControlPointsNV; +GLEW_FUN_EXPORT PFNGLMAPPARAMETERFVNVPROC __glewMapParameterfvNV; +GLEW_FUN_EXPORT PFNGLMAPPARAMETERIVNVPROC __glewMapParameterivNV; + +GLEW_FUN_EXPORT PFNGLGETMULTISAMPLEFVNVPROC __glewGetMultisamplefvNV; +GLEW_FUN_EXPORT PFNGLSAMPLEMASKINDEXEDNVPROC __glewSampleMaskIndexedNV; +GLEW_FUN_EXPORT PFNGLTEXRENDERBUFFERNVPROC __glewTexRenderbufferNV; + +GLEW_FUN_EXPORT PFNGLDELETEFENCESNVPROC __glewDeleteFencesNV; +GLEW_FUN_EXPORT PFNGLFINISHFENCENVPROC __glewFinishFenceNV; +GLEW_FUN_EXPORT PFNGLGENFENCESNVPROC __glewGenFencesNV; +GLEW_FUN_EXPORT PFNGLGETFENCEIVNVPROC __glewGetFenceivNV; +GLEW_FUN_EXPORT PFNGLISFENCENVPROC __glewIsFenceNV; +GLEW_FUN_EXPORT PFNGLSETFENCENVPROC __glewSetFenceNV; +GLEW_FUN_EXPORT PFNGLTESTFENCENVPROC __glewTestFenceNV; + +GLEW_FUN_EXPORT PFNGLFRAGMENTCOVERAGECOLORNVPROC __glewFragmentCoverageColorNV; + +GLEW_FUN_EXPORT PFNGLGETPROGRAMNAMEDPARAMETERDVNVPROC __glewGetProgramNamedParameterdvNV; +GLEW_FUN_EXPORT PFNGLGETPROGRAMNAMEDPARAMETERFVNVPROC __glewGetProgramNamedParameterfvNV; +GLEW_FUN_EXPORT PFNGLPROGRAMNAMEDPARAMETER4DNVPROC __glewProgramNamedParameter4dNV; +GLEW_FUN_EXPORT PFNGLPROGRAMNAMEDPARAMETER4DVNVPROC __glewProgramNamedParameter4dvNV; +GLEW_FUN_EXPORT PFNGLPROGRAMNAMEDPARAMETER4FNVPROC __glewProgramNamedParameter4fNV; +GLEW_FUN_EXPORT PFNGLPROGRAMNAMEDPARAMETER4FVNVPROC __glewProgramNamedParameter4fvNV; + +GLEW_FUN_EXPORT PFNGLBLITFRAMEBUFFERNVPROC __glewBlitFramebufferNV; + +GLEW_FUN_EXPORT PFNGLRENDERBUFFERSTORAGEMULTISAMPLENVPROC __glewRenderbufferStorageMultisampleNV; + +GLEW_FUN_EXPORT PFNGLRENDERBUFFERSTORAGEMULTISAMPLECOVERAGENVPROC __glewRenderbufferStorageMultisampleCoverageNV; + +GLEW_FUN_EXPORT PFNGLPROGRAMVERTEXLIMITNVPROC __glewProgramVertexLimitNV; + +GLEW_FUN_EXPORT PFNGLMULTICASTBARRIERNVPROC __glewMulticastBarrierNV; +GLEW_FUN_EXPORT PFNGLMULTICASTBLITFRAMEBUFFERNVPROC __glewMulticastBlitFramebufferNV; +GLEW_FUN_EXPORT PFNGLMULTICASTBUFFERSUBDATANVPROC __glewMulticastBufferSubDataNV; +GLEW_FUN_EXPORT PFNGLMULTICASTCOPYBUFFERSUBDATANVPROC __glewMulticastCopyBufferSubDataNV; +GLEW_FUN_EXPORT PFNGLMULTICASTCOPYIMAGESUBDATANVPROC __glewMulticastCopyImageSubDataNV; +GLEW_FUN_EXPORT PFNGLMULTICASTFRAMEBUFFERSAMPLELOCATIONSFVNVPROC __glewMulticastFramebufferSampleLocationsfvNV; +GLEW_FUN_EXPORT PFNGLMULTICASTGETQUERYOBJECTI64VNVPROC __glewMulticastGetQueryObjecti64vNV; +GLEW_FUN_EXPORT PFNGLMULTICASTGETQUERYOBJECTIVNVPROC __glewMulticastGetQueryObjectivNV; +GLEW_FUN_EXPORT PFNGLMULTICASTGETQUERYOBJECTUI64VNVPROC __glewMulticastGetQueryObjectui64vNV; +GLEW_FUN_EXPORT PFNGLMULTICASTGETQUERYOBJECTUIVNVPROC __glewMulticastGetQueryObjectuivNV; +GLEW_FUN_EXPORT PFNGLMULTICASTWAITSYNCNVPROC __glewMulticastWaitSyncNV; +GLEW_FUN_EXPORT PFNGLRENDERGPUMASKNVPROC __glewRenderGpuMaskNV; + +GLEW_FUN_EXPORT PFNGLPROGRAMENVPARAMETERI4INVPROC __glewProgramEnvParameterI4iNV; +GLEW_FUN_EXPORT PFNGLPROGRAMENVPARAMETERI4IVNVPROC __glewProgramEnvParameterI4ivNV; +GLEW_FUN_EXPORT PFNGLPROGRAMENVPARAMETERI4UINVPROC __glewProgramEnvParameterI4uiNV; +GLEW_FUN_EXPORT PFNGLPROGRAMENVPARAMETERI4UIVNVPROC __glewProgramEnvParameterI4uivNV; +GLEW_FUN_EXPORT PFNGLPROGRAMENVPARAMETERSI4IVNVPROC __glewProgramEnvParametersI4ivNV; +GLEW_FUN_EXPORT PFNGLPROGRAMENVPARAMETERSI4UIVNVPROC __glewProgramEnvParametersI4uivNV; +GLEW_FUN_EXPORT PFNGLPROGRAMLOCALPARAMETERI4INVPROC __glewProgramLocalParameterI4iNV; +GLEW_FUN_EXPORT PFNGLPROGRAMLOCALPARAMETERI4IVNVPROC __glewProgramLocalParameterI4ivNV; +GLEW_FUN_EXPORT PFNGLPROGRAMLOCALPARAMETERI4UINVPROC __glewProgramLocalParameterI4uiNV; +GLEW_FUN_EXPORT PFNGLPROGRAMLOCALPARAMETERI4UIVNVPROC __glewProgramLocalParameterI4uivNV; +GLEW_FUN_EXPORT PFNGLPROGRAMLOCALPARAMETERSI4IVNVPROC __glewProgramLocalParametersI4ivNV; +GLEW_FUN_EXPORT PFNGLPROGRAMLOCALPARAMETERSI4UIVNVPROC __glewProgramLocalParametersI4uivNV; + +GLEW_FUN_EXPORT PFNGLGETUNIFORMI64VNVPROC __glewGetUniformi64vNV; +GLEW_FUN_EXPORT PFNGLGETUNIFORMUI64VNVPROC __glewGetUniformui64vNV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1I64NVPROC __glewProgramUniform1i64NV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1I64VNVPROC __glewProgramUniform1i64vNV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1UI64NVPROC __glewProgramUniform1ui64NV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM1UI64VNVPROC __glewProgramUniform1ui64vNV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2I64NVPROC __glewProgramUniform2i64NV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2I64VNVPROC __glewProgramUniform2i64vNV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2UI64NVPROC __glewProgramUniform2ui64NV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM2UI64VNVPROC __glewProgramUniform2ui64vNV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3I64NVPROC __glewProgramUniform3i64NV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3I64VNVPROC __glewProgramUniform3i64vNV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3UI64NVPROC __glewProgramUniform3ui64NV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM3UI64VNVPROC __glewProgramUniform3ui64vNV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4I64NVPROC __glewProgramUniform4i64NV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4I64VNVPROC __glewProgramUniform4i64vNV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4UI64NVPROC __glewProgramUniform4ui64NV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORM4UI64VNVPROC __glewProgramUniform4ui64vNV; +GLEW_FUN_EXPORT PFNGLUNIFORM1I64NVPROC __glewUniform1i64NV; +GLEW_FUN_EXPORT PFNGLUNIFORM1I64VNVPROC __glewUniform1i64vNV; +GLEW_FUN_EXPORT PFNGLUNIFORM1UI64NVPROC __glewUniform1ui64NV; +GLEW_FUN_EXPORT PFNGLUNIFORM1UI64VNVPROC __glewUniform1ui64vNV; +GLEW_FUN_EXPORT PFNGLUNIFORM2I64NVPROC __glewUniform2i64NV; +GLEW_FUN_EXPORT PFNGLUNIFORM2I64VNVPROC __glewUniform2i64vNV; +GLEW_FUN_EXPORT PFNGLUNIFORM2UI64NVPROC __glewUniform2ui64NV; +GLEW_FUN_EXPORT PFNGLUNIFORM2UI64VNVPROC __glewUniform2ui64vNV; +GLEW_FUN_EXPORT PFNGLUNIFORM3I64NVPROC __glewUniform3i64NV; +GLEW_FUN_EXPORT PFNGLUNIFORM3I64VNVPROC __glewUniform3i64vNV; +GLEW_FUN_EXPORT PFNGLUNIFORM3UI64NVPROC __glewUniform3ui64NV; +GLEW_FUN_EXPORT PFNGLUNIFORM3UI64VNVPROC __glewUniform3ui64vNV; +GLEW_FUN_EXPORT PFNGLUNIFORM4I64NVPROC __glewUniform4i64NV; +GLEW_FUN_EXPORT PFNGLUNIFORM4I64VNVPROC __glewUniform4i64vNV; +GLEW_FUN_EXPORT PFNGLUNIFORM4UI64NVPROC __glewUniform4ui64NV; +GLEW_FUN_EXPORT PFNGLUNIFORM4UI64VNVPROC __glewUniform4ui64vNV; + +GLEW_FUN_EXPORT PFNGLCOLOR3HNVPROC __glewColor3hNV; +GLEW_FUN_EXPORT PFNGLCOLOR3HVNVPROC __glewColor3hvNV; +GLEW_FUN_EXPORT PFNGLCOLOR4HNVPROC __glewColor4hNV; +GLEW_FUN_EXPORT PFNGLCOLOR4HVNVPROC __glewColor4hvNV; +GLEW_FUN_EXPORT PFNGLFOGCOORDHNVPROC __glewFogCoordhNV; +GLEW_FUN_EXPORT PFNGLFOGCOORDHVNVPROC __glewFogCoordhvNV; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD1HNVPROC __glewMultiTexCoord1hNV; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD1HVNVPROC __glewMultiTexCoord1hvNV; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD2HNVPROC __glewMultiTexCoord2hNV; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD2HVNVPROC __glewMultiTexCoord2hvNV; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD3HNVPROC __glewMultiTexCoord3hNV; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD3HVNVPROC __glewMultiTexCoord3hvNV; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD4HNVPROC __glewMultiTexCoord4hNV; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD4HVNVPROC __glewMultiTexCoord4hvNV; +GLEW_FUN_EXPORT PFNGLNORMAL3HNVPROC __glewNormal3hNV; +GLEW_FUN_EXPORT PFNGLNORMAL3HVNVPROC __glewNormal3hvNV; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3HNVPROC __glewSecondaryColor3hNV; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLOR3HVNVPROC __glewSecondaryColor3hvNV; +GLEW_FUN_EXPORT PFNGLTEXCOORD1HNVPROC __glewTexCoord1hNV; +GLEW_FUN_EXPORT PFNGLTEXCOORD1HVNVPROC __glewTexCoord1hvNV; +GLEW_FUN_EXPORT PFNGLTEXCOORD2HNVPROC __glewTexCoord2hNV; +GLEW_FUN_EXPORT PFNGLTEXCOORD2HVNVPROC __glewTexCoord2hvNV; +GLEW_FUN_EXPORT PFNGLTEXCOORD3HNVPROC __glewTexCoord3hNV; +GLEW_FUN_EXPORT PFNGLTEXCOORD3HVNVPROC __glewTexCoord3hvNV; +GLEW_FUN_EXPORT PFNGLTEXCOORD4HNVPROC __glewTexCoord4hNV; +GLEW_FUN_EXPORT PFNGLTEXCOORD4HVNVPROC __glewTexCoord4hvNV; +GLEW_FUN_EXPORT PFNGLVERTEX2HNVPROC __glewVertex2hNV; +GLEW_FUN_EXPORT PFNGLVERTEX2HVNVPROC __glewVertex2hvNV; +GLEW_FUN_EXPORT PFNGLVERTEX3HNVPROC __glewVertex3hNV; +GLEW_FUN_EXPORT PFNGLVERTEX3HVNVPROC __glewVertex3hvNV; +GLEW_FUN_EXPORT PFNGLVERTEX4HNVPROC __glewVertex4hNV; +GLEW_FUN_EXPORT PFNGLVERTEX4HVNVPROC __glewVertex4hvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1HNVPROC __glewVertexAttrib1hNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1HVNVPROC __glewVertexAttrib1hvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2HNVPROC __glewVertexAttrib2hNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2HVNVPROC __glewVertexAttrib2hvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3HNVPROC __glewVertexAttrib3hNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3HVNVPROC __glewVertexAttrib3hvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4HNVPROC __glewVertexAttrib4hNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4HVNVPROC __glewVertexAttrib4hvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBS1HVNVPROC __glewVertexAttribs1hvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBS2HVNVPROC __glewVertexAttribs2hvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBS3HVNVPROC __glewVertexAttribs3hvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBS4HVNVPROC __glewVertexAttribs4hvNV; +GLEW_FUN_EXPORT PFNGLVERTEXWEIGHTHNVPROC __glewVertexWeighthNV; +GLEW_FUN_EXPORT PFNGLVERTEXWEIGHTHVNVPROC __glewVertexWeighthvNV; + +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBDIVISORNVPROC __glewVertexAttribDivisorNV; + +GLEW_FUN_EXPORT PFNGLGETINTERNALFORMATSAMPLEIVNVPROC __glewGetInternalformatSampleivNV; + +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX2X3FVNVPROC __glewUniformMatrix2x3fvNV; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX2X4FVNVPROC __glewUniformMatrix2x4fvNV; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX3X2FVNVPROC __glewUniformMatrix3x2fvNV; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX3X4FVNVPROC __glewUniformMatrix3x4fvNV; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX4X2FVNVPROC __glewUniformMatrix4x2fvNV; +GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX4X3FVNVPROC __glewUniformMatrix4x3fvNV; + +GLEW_FUN_EXPORT PFNGLBEGINOCCLUSIONQUERYNVPROC __glewBeginOcclusionQueryNV; +GLEW_FUN_EXPORT PFNGLDELETEOCCLUSIONQUERIESNVPROC __glewDeleteOcclusionQueriesNV; +GLEW_FUN_EXPORT PFNGLENDOCCLUSIONQUERYNVPROC __glewEndOcclusionQueryNV; +GLEW_FUN_EXPORT PFNGLGENOCCLUSIONQUERIESNVPROC __glewGenOcclusionQueriesNV; +GLEW_FUN_EXPORT PFNGLGETOCCLUSIONQUERYIVNVPROC __glewGetOcclusionQueryivNV; +GLEW_FUN_EXPORT PFNGLGETOCCLUSIONQUERYUIVNVPROC __glewGetOcclusionQueryuivNV; +GLEW_FUN_EXPORT PFNGLISOCCLUSIONQUERYNVPROC __glewIsOcclusionQueryNV; + +GLEW_FUN_EXPORT PFNGLPROGRAMBUFFERPARAMETERSIIVNVPROC __glewProgramBufferParametersIivNV; +GLEW_FUN_EXPORT PFNGLPROGRAMBUFFERPARAMETERSIUIVNVPROC __glewProgramBufferParametersIuivNV; +GLEW_FUN_EXPORT PFNGLPROGRAMBUFFERPARAMETERSFVNVPROC __glewProgramBufferParametersfvNV; + +GLEW_FUN_EXPORT PFNGLCOPYPATHNVPROC __glewCopyPathNV; +GLEW_FUN_EXPORT PFNGLCOVERFILLPATHINSTANCEDNVPROC __glewCoverFillPathInstancedNV; +GLEW_FUN_EXPORT PFNGLCOVERFILLPATHNVPROC __glewCoverFillPathNV; +GLEW_FUN_EXPORT PFNGLCOVERSTROKEPATHINSTANCEDNVPROC __glewCoverStrokePathInstancedNV; +GLEW_FUN_EXPORT PFNGLCOVERSTROKEPATHNVPROC __glewCoverStrokePathNV; +GLEW_FUN_EXPORT PFNGLDELETEPATHSNVPROC __glewDeletePathsNV; +GLEW_FUN_EXPORT PFNGLGENPATHSNVPROC __glewGenPathsNV; +GLEW_FUN_EXPORT PFNGLGETPATHCOLORGENFVNVPROC __glewGetPathColorGenfvNV; +GLEW_FUN_EXPORT PFNGLGETPATHCOLORGENIVNVPROC __glewGetPathColorGenivNV; +GLEW_FUN_EXPORT PFNGLGETPATHCOMMANDSNVPROC __glewGetPathCommandsNV; +GLEW_FUN_EXPORT PFNGLGETPATHCOORDSNVPROC __glewGetPathCoordsNV; +GLEW_FUN_EXPORT PFNGLGETPATHDASHARRAYNVPROC __glewGetPathDashArrayNV; +GLEW_FUN_EXPORT PFNGLGETPATHLENGTHNVPROC __glewGetPathLengthNV; +GLEW_FUN_EXPORT PFNGLGETPATHMETRICRANGENVPROC __glewGetPathMetricRangeNV; +GLEW_FUN_EXPORT PFNGLGETPATHMETRICSNVPROC __glewGetPathMetricsNV; +GLEW_FUN_EXPORT PFNGLGETPATHPARAMETERFVNVPROC __glewGetPathParameterfvNV; +GLEW_FUN_EXPORT PFNGLGETPATHPARAMETERIVNVPROC __glewGetPathParameterivNV; +GLEW_FUN_EXPORT PFNGLGETPATHSPACINGNVPROC __glewGetPathSpacingNV; +GLEW_FUN_EXPORT PFNGLGETPATHTEXGENFVNVPROC __glewGetPathTexGenfvNV; +GLEW_FUN_EXPORT PFNGLGETPATHTEXGENIVNVPROC __glewGetPathTexGenivNV; +GLEW_FUN_EXPORT PFNGLGETPROGRAMRESOURCEFVNVPROC __glewGetProgramResourcefvNV; +GLEW_FUN_EXPORT PFNGLINTERPOLATEPATHSNVPROC __glewInterpolatePathsNV; +GLEW_FUN_EXPORT PFNGLISPATHNVPROC __glewIsPathNV; +GLEW_FUN_EXPORT PFNGLISPOINTINFILLPATHNVPROC __glewIsPointInFillPathNV; +GLEW_FUN_EXPORT PFNGLISPOINTINSTROKEPATHNVPROC __glewIsPointInStrokePathNV; +GLEW_FUN_EXPORT PFNGLMATRIXLOAD3X2FNVPROC __glewMatrixLoad3x2fNV; +GLEW_FUN_EXPORT PFNGLMATRIXLOAD3X3FNVPROC __glewMatrixLoad3x3fNV; +GLEW_FUN_EXPORT PFNGLMATRIXLOADTRANSPOSE3X3FNVPROC __glewMatrixLoadTranspose3x3fNV; +GLEW_FUN_EXPORT PFNGLMATRIXMULT3X2FNVPROC __glewMatrixMult3x2fNV; +GLEW_FUN_EXPORT PFNGLMATRIXMULT3X3FNVPROC __glewMatrixMult3x3fNV; +GLEW_FUN_EXPORT PFNGLMATRIXMULTTRANSPOSE3X3FNVPROC __glewMatrixMultTranspose3x3fNV; +GLEW_FUN_EXPORT PFNGLPATHCOLORGENNVPROC __glewPathColorGenNV; +GLEW_FUN_EXPORT PFNGLPATHCOMMANDSNVPROC __glewPathCommandsNV; +GLEW_FUN_EXPORT PFNGLPATHCOORDSNVPROC __glewPathCoordsNV; +GLEW_FUN_EXPORT PFNGLPATHCOVERDEPTHFUNCNVPROC __glewPathCoverDepthFuncNV; +GLEW_FUN_EXPORT PFNGLPATHDASHARRAYNVPROC __glewPathDashArrayNV; +GLEW_FUN_EXPORT PFNGLPATHFOGGENNVPROC __glewPathFogGenNV; +GLEW_FUN_EXPORT PFNGLPATHGLYPHINDEXARRAYNVPROC __glewPathGlyphIndexArrayNV; +GLEW_FUN_EXPORT PFNGLPATHGLYPHINDEXRANGENVPROC __glewPathGlyphIndexRangeNV; +GLEW_FUN_EXPORT PFNGLPATHGLYPHRANGENVPROC __glewPathGlyphRangeNV; +GLEW_FUN_EXPORT PFNGLPATHGLYPHSNVPROC __glewPathGlyphsNV; +GLEW_FUN_EXPORT PFNGLPATHMEMORYGLYPHINDEXARRAYNVPROC __glewPathMemoryGlyphIndexArrayNV; +GLEW_FUN_EXPORT PFNGLPATHPARAMETERFNVPROC __glewPathParameterfNV; +GLEW_FUN_EXPORT PFNGLPATHPARAMETERFVNVPROC __glewPathParameterfvNV; +GLEW_FUN_EXPORT PFNGLPATHPARAMETERINVPROC __glewPathParameteriNV; +GLEW_FUN_EXPORT PFNGLPATHPARAMETERIVNVPROC __glewPathParameterivNV; +GLEW_FUN_EXPORT PFNGLPATHSTENCILDEPTHOFFSETNVPROC __glewPathStencilDepthOffsetNV; +GLEW_FUN_EXPORT PFNGLPATHSTENCILFUNCNVPROC __glewPathStencilFuncNV; +GLEW_FUN_EXPORT PFNGLPATHSTRINGNVPROC __glewPathStringNV; +GLEW_FUN_EXPORT PFNGLPATHSUBCOMMANDSNVPROC __glewPathSubCommandsNV; +GLEW_FUN_EXPORT PFNGLPATHSUBCOORDSNVPROC __glewPathSubCoordsNV; +GLEW_FUN_EXPORT PFNGLPATHTEXGENNVPROC __glewPathTexGenNV; +GLEW_FUN_EXPORT PFNGLPOINTALONGPATHNVPROC __glewPointAlongPathNV; +GLEW_FUN_EXPORT PFNGLPROGRAMPATHFRAGMENTINPUTGENNVPROC __glewProgramPathFragmentInputGenNV; +GLEW_FUN_EXPORT PFNGLSTENCILFILLPATHINSTANCEDNVPROC __glewStencilFillPathInstancedNV; +GLEW_FUN_EXPORT PFNGLSTENCILFILLPATHNVPROC __glewStencilFillPathNV; +GLEW_FUN_EXPORT PFNGLSTENCILSTROKEPATHINSTANCEDNVPROC __glewStencilStrokePathInstancedNV; +GLEW_FUN_EXPORT PFNGLSTENCILSTROKEPATHNVPROC __glewStencilStrokePathNV; +GLEW_FUN_EXPORT PFNGLSTENCILTHENCOVERFILLPATHINSTANCEDNVPROC __glewStencilThenCoverFillPathInstancedNV; +GLEW_FUN_EXPORT PFNGLSTENCILTHENCOVERFILLPATHNVPROC __glewStencilThenCoverFillPathNV; +GLEW_FUN_EXPORT PFNGLSTENCILTHENCOVERSTROKEPATHINSTANCEDNVPROC __glewStencilThenCoverStrokePathInstancedNV; +GLEW_FUN_EXPORT PFNGLSTENCILTHENCOVERSTROKEPATHNVPROC __glewStencilThenCoverStrokePathNV; +GLEW_FUN_EXPORT PFNGLTRANSFORMPATHNVPROC __glewTransformPathNV; +GLEW_FUN_EXPORT PFNGLWEIGHTPATHSNVPROC __glewWeightPathsNV; + +GLEW_FUN_EXPORT PFNGLFLUSHPIXELDATARANGENVPROC __glewFlushPixelDataRangeNV; +GLEW_FUN_EXPORT PFNGLPIXELDATARANGENVPROC __glewPixelDataRangeNV; + +GLEW_FUN_EXPORT PFNGLPOINTPARAMETERINVPROC __glewPointParameteriNV; +GLEW_FUN_EXPORT PFNGLPOINTPARAMETERIVNVPROC __glewPointParameterivNV; + +GLEW_FUN_EXPORT PFNGLPOLYGONMODENVPROC __glewPolygonModeNV; + +GLEW_FUN_EXPORT PFNGLGETVIDEOI64VNVPROC __glewGetVideoi64vNV; +GLEW_FUN_EXPORT PFNGLGETVIDEOIVNVPROC __glewGetVideoivNV; +GLEW_FUN_EXPORT PFNGLGETVIDEOUI64VNVPROC __glewGetVideoui64vNV; +GLEW_FUN_EXPORT PFNGLGETVIDEOUIVNVPROC __glewGetVideouivNV; +GLEW_FUN_EXPORT PFNGLPRESENTFRAMEDUALFILLNVPROC __glewPresentFrameDualFillNV; +GLEW_FUN_EXPORT PFNGLPRESENTFRAMEKEYEDNVPROC __glewPresentFrameKeyedNV; + +GLEW_FUN_EXPORT PFNGLPRIMITIVERESTARTINDEXNVPROC __glewPrimitiveRestartIndexNV; +GLEW_FUN_EXPORT PFNGLPRIMITIVERESTARTNVPROC __glewPrimitiveRestartNV; + +GLEW_FUN_EXPORT PFNGLCOMBINERINPUTNVPROC __glewCombinerInputNV; +GLEW_FUN_EXPORT PFNGLCOMBINEROUTPUTNVPROC __glewCombinerOutputNV; +GLEW_FUN_EXPORT PFNGLCOMBINERPARAMETERFNVPROC __glewCombinerParameterfNV; +GLEW_FUN_EXPORT PFNGLCOMBINERPARAMETERFVNVPROC __glewCombinerParameterfvNV; +GLEW_FUN_EXPORT PFNGLCOMBINERPARAMETERINVPROC __glewCombinerParameteriNV; +GLEW_FUN_EXPORT PFNGLCOMBINERPARAMETERIVNVPROC __glewCombinerParameterivNV; +GLEW_FUN_EXPORT PFNGLFINALCOMBINERINPUTNVPROC __glewFinalCombinerInputNV; +GLEW_FUN_EXPORT PFNGLGETCOMBINERINPUTPARAMETERFVNVPROC __glewGetCombinerInputParameterfvNV; +GLEW_FUN_EXPORT PFNGLGETCOMBINERINPUTPARAMETERIVNVPROC __glewGetCombinerInputParameterivNV; +GLEW_FUN_EXPORT PFNGLGETCOMBINEROUTPUTPARAMETERFVNVPROC __glewGetCombinerOutputParameterfvNV; +GLEW_FUN_EXPORT PFNGLGETCOMBINEROUTPUTPARAMETERIVNVPROC __glewGetCombinerOutputParameterivNV; +GLEW_FUN_EXPORT PFNGLGETFINALCOMBINERINPUTPARAMETERFVNVPROC __glewGetFinalCombinerInputParameterfvNV; +GLEW_FUN_EXPORT PFNGLGETFINALCOMBINERINPUTPARAMETERIVNVPROC __glewGetFinalCombinerInputParameterivNV; + +GLEW_FUN_EXPORT PFNGLCOMBINERSTAGEPARAMETERFVNVPROC __glewCombinerStageParameterfvNV; +GLEW_FUN_EXPORT PFNGLGETCOMBINERSTAGEPARAMETERFVNVPROC __glewGetCombinerStageParameterfvNV; + +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERSAMPLELOCATIONSFVNVPROC __glewFramebufferSampleLocationsfvNV; +GLEW_FUN_EXPORT PFNGLNAMEDFRAMEBUFFERSAMPLELOCATIONSFVNVPROC __glewNamedFramebufferSampleLocationsfvNV; + +GLEW_FUN_EXPORT PFNGLGETBUFFERPARAMETERUI64VNVPROC __glewGetBufferParameterui64vNV; +GLEW_FUN_EXPORT PFNGLGETINTEGERUI64VNVPROC __glewGetIntegerui64vNV; +GLEW_FUN_EXPORT PFNGLGETNAMEDBUFFERPARAMETERUI64VNVPROC __glewGetNamedBufferParameterui64vNV; +GLEW_FUN_EXPORT PFNGLISBUFFERRESIDENTNVPROC __glewIsBufferResidentNV; +GLEW_FUN_EXPORT PFNGLISNAMEDBUFFERRESIDENTNVPROC __glewIsNamedBufferResidentNV; +GLEW_FUN_EXPORT PFNGLMAKEBUFFERNONRESIDENTNVPROC __glewMakeBufferNonResidentNV; +GLEW_FUN_EXPORT PFNGLMAKEBUFFERRESIDENTNVPROC __glewMakeBufferResidentNV; +GLEW_FUN_EXPORT PFNGLMAKENAMEDBUFFERNONRESIDENTNVPROC __glewMakeNamedBufferNonResidentNV; +GLEW_FUN_EXPORT PFNGLMAKENAMEDBUFFERRESIDENTNVPROC __glewMakeNamedBufferResidentNV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMUI64NVPROC __glewProgramUniformui64NV; +GLEW_FUN_EXPORT PFNGLPROGRAMUNIFORMUI64VNVPROC __glewProgramUniformui64vNV; +GLEW_FUN_EXPORT PFNGLUNIFORMUI64NVPROC __glewUniformui64NV; +GLEW_FUN_EXPORT PFNGLUNIFORMUI64VNVPROC __glewUniformui64vNV; + +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXIMAGE3DNVPROC __glewCompressedTexImage3DNV; +GLEW_FUN_EXPORT PFNGLCOMPRESSEDTEXSUBIMAGE3DNVPROC __glewCompressedTexSubImage3DNV; +GLEW_FUN_EXPORT PFNGLCOPYTEXSUBIMAGE3DNVPROC __glewCopyTexSubImage3DNV; +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERTEXTURELAYERNVPROC __glewFramebufferTextureLayerNV; +GLEW_FUN_EXPORT PFNGLTEXIMAGE3DNVPROC __glewTexImage3DNV; +GLEW_FUN_EXPORT PFNGLTEXSUBIMAGE3DNVPROC __glewTexSubImage3DNV; + +GLEW_FUN_EXPORT PFNGLTEXTUREBARRIERNVPROC __glewTextureBarrierNV; + +GLEW_FUN_EXPORT PFNGLTEXIMAGE2DMULTISAMPLECOVERAGENVPROC __glewTexImage2DMultisampleCoverageNV; +GLEW_FUN_EXPORT PFNGLTEXIMAGE3DMULTISAMPLECOVERAGENVPROC __glewTexImage3DMultisampleCoverageNV; +GLEW_FUN_EXPORT PFNGLTEXTUREIMAGE2DMULTISAMPLECOVERAGENVPROC __glewTextureImage2DMultisampleCoverageNV; +GLEW_FUN_EXPORT PFNGLTEXTUREIMAGE2DMULTISAMPLENVPROC __glewTextureImage2DMultisampleNV; +GLEW_FUN_EXPORT PFNGLTEXTUREIMAGE3DMULTISAMPLECOVERAGENVPROC __glewTextureImage3DMultisampleCoverageNV; +GLEW_FUN_EXPORT PFNGLTEXTUREIMAGE3DMULTISAMPLENVPROC __glewTextureImage3DMultisampleNV; + +GLEW_FUN_EXPORT PFNGLACTIVEVARYINGNVPROC __glewActiveVaryingNV; +GLEW_FUN_EXPORT PFNGLBEGINTRANSFORMFEEDBACKNVPROC __glewBeginTransformFeedbackNV; +GLEW_FUN_EXPORT PFNGLBINDBUFFERBASENVPROC __glewBindBufferBaseNV; +GLEW_FUN_EXPORT PFNGLBINDBUFFEROFFSETNVPROC __glewBindBufferOffsetNV; +GLEW_FUN_EXPORT PFNGLBINDBUFFERRANGENVPROC __glewBindBufferRangeNV; +GLEW_FUN_EXPORT PFNGLENDTRANSFORMFEEDBACKNVPROC __glewEndTransformFeedbackNV; +GLEW_FUN_EXPORT PFNGLGETACTIVEVARYINGNVPROC __glewGetActiveVaryingNV; +GLEW_FUN_EXPORT PFNGLGETTRANSFORMFEEDBACKVARYINGNVPROC __glewGetTransformFeedbackVaryingNV; +GLEW_FUN_EXPORT PFNGLGETVARYINGLOCATIONNVPROC __glewGetVaryingLocationNV; +GLEW_FUN_EXPORT PFNGLTRANSFORMFEEDBACKATTRIBSNVPROC __glewTransformFeedbackAttribsNV; +GLEW_FUN_EXPORT PFNGLTRANSFORMFEEDBACKVARYINGSNVPROC __glewTransformFeedbackVaryingsNV; + +GLEW_FUN_EXPORT PFNGLBINDTRANSFORMFEEDBACKNVPROC __glewBindTransformFeedbackNV; +GLEW_FUN_EXPORT PFNGLDELETETRANSFORMFEEDBACKSNVPROC __glewDeleteTransformFeedbacksNV; +GLEW_FUN_EXPORT PFNGLDRAWTRANSFORMFEEDBACKNVPROC __glewDrawTransformFeedbackNV; +GLEW_FUN_EXPORT PFNGLGENTRANSFORMFEEDBACKSNVPROC __glewGenTransformFeedbacksNV; +GLEW_FUN_EXPORT PFNGLISTRANSFORMFEEDBACKNVPROC __glewIsTransformFeedbackNV; +GLEW_FUN_EXPORT PFNGLPAUSETRANSFORMFEEDBACKNVPROC __glewPauseTransformFeedbackNV; +GLEW_FUN_EXPORT PFNGLRESUMETRANSFORMFEEDBACKNVPROC __glewResumeTransformFeedbackNV; + +GLEW_FUN_EXPORT PFNGLVDPAUFININVPROC __glewVDPAUFiniNV; +GLEW_FUN_EXPORT PFNGLVDPAUGETSURFACEIVNVPROC __glewVDPAUGetSurfaceivNV; +GLEW_FUN_EXPORT PFNGLVDPAUINITNVPROC __glewVDPAUInitNV; +GLEW_FUN_EXPORT PFNGLVDPAUISSURFACENVPROC __glewVDPAUIsSurfaceNV; +GLEW_FUN_EXPORT PFNGLVDPAUMAPSURFACESNVPROC __glewVDPAUMapSurfacesNV; +GLEW_FUN_EXPORT PFNGLVDPAUREGISTEROUTPUTSURFACENVPROC __glewVDPAURegisterOutputSurfaceNV; +GLEW_FUN_EXPORT PFNGLVDPAUREGISTERVIDEOSURFACENVPROC __glewVDPAURegisterVideoSurfaceNV; +GLEW_FUN_EXPORT PFNGLVDPAUSURFACEACCESSNVPROC __glewVDPAUSurfaceAccessNV; +GLEW_FUN_EXPORT PFNGLVDPAUUNMAPSURFACESNVPROC __glewVDPAUUnmapSurfacesNV; +GLEW_FUN_EXPORT PFNGLVDPAUUNREGISTERSURFACENVPROC __glewVDPAUUnregisterSurfaceNV; + +GLEW_FUN_EXPORT PFNGLFLUSHVERTEXARRAYRANGENVPROC __glewFlushVertexArrayRangeNV; +GLEW_FUN_EXPORT PFNGLVERTEXARRAYRANGENVPROC __glewVertexArrayRangeNV; + +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBLI64VNVPROC __glewGetVertexAttribLi64vNV; +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBLUI64VNVPROC __glewGetVertexAttribLui64vNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL1I64NVPROC __glewVertexAttribL1i64NV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL1I64VNVPROC __glewVertexAttribL1i64vNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL1UI64NVPROC __glewVertexAttribL1ui64NV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL1UI64VNVPROC __glewVertexAttribL1ui64vNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL2I64NVPROC __glewVertexAttribL2i64NV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL2I64VNVPROC __glewVertexAttribL2i64vNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL2UI64NVPROC __glewVertexAttribL2ui64NV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL2UI64VNVPROC __glewVertexAttribL2ui64vNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL3I64NVPROC __glewVertexAttribL3i64NV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL3I64VNVPROC __glewVertexAttribL3i64vNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL3UI64NVPROC __glewVertexAttribL3ui64NV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL3UI64VNVPROC __glewVertexAttribL3ui64vNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL4I64NVPROC __glewVertexAttribL4i64NV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL4I64VNVPROC __glewVertexAttribL4i64vNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL4UI64NVPROC __glewVertexAttribL4ui64NV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBL4UI64VNVPROC __glewVertexAttribL4ui64vNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBLFORMATNVPROC __glewVertexAttribLFormatNV; + +GLEW_FUN_EXPORT PFNGLBUFFERADDRESSRANGENVPROC __glewBufferAddressRangeNV; +GLEW_FUN_EXPORT PFNGLCOLORFORMATNVPROC __glewColorFormatNV; +GLEW_FUN_EXPORT PFNGLEDGEFLAGFORMATNVPROC __glewEdgeFlagFormatNV; +GLEW_FUN_EXPORT PFNGLFOGCOORDFORMATNVPROC __glewFogCoordFormatNV; +GLEW_FUN_EXPORT PFNGLGETINTEGERUI64I_VNVPROC __glewGetIntegerui64i_vNV; +GLEW_FUN_EXPORT PFNGLINDEXFORMATNVPROC __glewIndexFormatNV; +GLEW_FUN_EXPORT PFNGLNORMALFORMATNVPROC __glewNormalFormatNV; +GLEW_FUN_EXPORT PFNGLSECONDARYCOLORFORMATNVPROC __glewSecondaryColorFormatNV; +GLEW_FUN_EXPORT PFNGLTEXCOORDFORMATNVPROC __glewTexCoordFormatNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBFORMATNVPROC __glewVertexAttribFormatNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBIFORMATNVPROC __glewVertexAttribIFormatNV; +GLEW_FUN_EXPORT PFNGLVERTEXFORMATNVPROC __glewVertexFormatNV; + +GLEW_FUN_EXPORT PFNGLAREPROGRAMSRESIDENTNVPROC __glewAreProgramsResidentNV; +GLEW_FUN_EXPORT PFNGLBINDPROGRAMNVPROC __glewBindProgramNV; +GLEW_FUN_EXPORT PFNGLDELETEPROGRAMSNVPROC __glewDeleteProgramsNV; +GLEW_FUN_EXPORT PFNGLEXECUTEPROGRAMNVPROC __glewExecuteProgramNV; +GLEW_FUN_EXPORT PFNGLGENPROGRAMSNVPROC __glewGenProgramsNV; +GLEW_FUN_EXPORT PFNGLGETPROGRAMPARAMETERDVNVPROC __glewGetProgramParameterdvNV; +GLEW_FUN_EXPORT PFNGLGETPROGRAMPARAMETERFVNVPROC __glewGetProgramParameterfvNV; +GLEW_FUN_EXPORT PFNGLGETPROGRAMSTRINGNVPROC __glewGetProgramStringNV; +GLEW_FUN_EXPORT PFNGLGETPROGRAMIVNVPROC __glewGetProgramivNV; +GLEW_FUN_EXPORT PFNGLGETTRACKMATRIXIVNVPROC __glewGetTrackMatrixivNV; +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBPOINTERVNVPROC __glewGetVertexAttribPointervNV; +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBDVNVPROC __glewGetVertexAttribdvNV; +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBFVNVPROC __glewGetVertexAttribfvNV; +GLEW_FUN_EXPORT PFNGLGETVERTEXATTRIBIVNVPROC __glewGetVertexAttribivNV; +GLEW_FUN_EXPORT PFNGLISPROGRAMNVPROC __glewIsProgramNV; +GLEW_FUN_EXPORT PFNGLLOADPROGRAMNVPROC __glewLoadProgramNV; +GLEW_FUN_EXPORT PFNGLPROGRAMPARAMETER4DNVPROC __glewProgramParameter4dNV; +GLEW_FUN_EXPORT PFNGLPROGRAMPARAMETER4DVNVPROC __glewProgramParameter4dvNV; +GLEW_FUN_EXPORT PFNGLPROGRAMPARAMETER4FNVPROC __glewProgramParameter4fNV; +GLEW_FUN_EXPORT PFNGLPROGRAMPARAMETER4FVNVPROC __glewProgramParameter4fvNV; +GLEW_FUN_EXPORT PFNGLPROGRAMPARAMETERS4DVNVPROC __glewProgramParameters4dvNV; +GLEW_FUN_EXPORT PFNGLPROGRAMPARAMETERS4FVNVPROC __glewProgramParameters4fvNV; +GLEW_FUN_EXPORT PFNGLREQUESTRESIDENTPROGRAMSNVPROC __glewRequestResidentProgramsNV; +GLEW_FUN_EXPORT PFNGLTRACKMATRIXNVPROC __glewTrackMatrixNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1DNVPROC __glewVertexAttrib1dNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1DVNVPROC __glewVertexAttrib1dvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1FNVPROC __glewVertexAttrib1fNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1FVNVPROC __glewVertexAttrib1fvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1SNVPROC __glewVertexAttrib1sNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB1SVNVPROC __glewVertexAttrib1svNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2DNVPROC __glewVertexAttrib2dNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2DVNVPROC __glewVertexAttrib2dvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2FNVPROC __glewVertexAttrib2fNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2FVNVPROC __glewVertexAttrib2fvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2SNVPROC __glewVertexAttrib2sNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB2SVNVPROC __glewVertexAttrib2svNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3DNVPROC __glewVertexAttrib3dNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3DVNVPROC __glewVertexAttrib3dvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3FNVPROC __glewVertexAttrib3fNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3FVNVPROC __glewVertexAttrib3fvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3SNVPROC __glewVertexAttrib3sNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB3SVNVPROC __glewVertexAttrib3svNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4DNVPROC __glewVertexAttrib4dNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4DVNVPROC __glewVertexAttrib4dvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4FNVPROC __glewVertexAttrib4fNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4FVNVPROC __glewVertexAttrib4fvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4SNVPROC __glewVertexAttrib4sNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4SVNVPROC __glewVertexAttrib4svNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4UBNVPROC __glewVertexAttrib4ubNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIB4UBVNVPROC __glewVertexAttrib4ubvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBPOINTERNVPROC __glewVertexAttribPointerNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBS1DVNVPROC __glewVertexAttribs1dvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBS1FVNVPROC __glewVertexAttribs1fvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBS1SVNVPROC __glewVertexAttribs1svNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBS2DVNVPROC __glewVertexAttribs2dvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBS2FVNVPROC __glewVertexAttribs2fvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBS2SVNVPROC __glewVertexAttribs2svNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBS3DVNVPROC __glewVertexAttribs3dvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBS3FVNVPROC __glewVertexAttribs3fvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBS3SVNVPROC __glewVertexAttribs3svNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBS4DVNVPROC __glewVertexAttribs4dvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBS4FVNVPROC __glewVertexAttribs4fvNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBS4SVNVPROC __glewVertexAttribs4svNV; +GLEW_FUN_EXPORT PFNGLVERTEXATTRIBS4UBVNVPROC __glewVertexAttribs4ubvNV; + +GLEW_FUN_EXPORT PFNGLBEGINVIDEOCAPTURENVPROC __glewBeginVideoCaptureNV; +GLEW_FUN_EXPORT PFNGLBINDVIDEOCAPTURESTREAMBUFFERNVPROC __glewBindVideoCaptureStreamBufferNV; +GLEW_FUN_EXPORT PFNGLBINDVIDEOCAPTURESTREAMTEXTURENVPROC __glewBindVideoCaptureStreamTextureNV; +GLEW_FUN_EXPORT PFNGLENDVIDEOCAPTURENVPROC __glewEndVideoCaptureNV; +GLEW_FUN_EXPORT PFNGLGETVIDEOCAPTURESTREAMDVNVPROC __glewGetVideoCaptureStreamdvNV; +GLEW_FUN_EXPORT PFNGLGETVIDEOCAPTURESTREAMFVNVPROC __glewGetVideoCaptureStreamfvNV; +GLEW_FUN_EXPORT PFNGLGETVIDEOCAPTURESTREAMIVNVPROC __glewGetVideoCaptureStreamivNV; +GLEW_FUN_EXPORT PFNGLGETVIDEOCAPTUREIVNVPROC __glewGetVideoCaptureivNV; +GLEW_FUN_EXPORT PFNGLVIDEOCAPTURENVPROC __glewVideoCaptureNV; +GLEW_FUN_EXPORT PFNGLVIDEOCAPTURESTREAMPARAMETERDVNVPROC __glewVideoCaptureStreamParameterdvNV; +GLEW_FUN_EXPORT PFNGLVIDEOCAPTURESTREAMPARAMETERFVNVPROC __glewVideoCaptureStreamParameterfvNV; +GLEW_FUN_EXPORT PFNGLVIDEOCAPTURESTREAMPARAMETERIVNVPROC __glewVideoCaptureStreamParameterivNV; + +GLEW_FUN_EXPORT PFNGLDEPTHRANGEARRAYFVNVPROC __glewDepthRangeArrayfvNV; +GLEW_FUN_EXPORT PFNGLDEPTHRANGEINDEXEDFNVPROC __glewDepthRangeIndexedfNV; +GLEW_FUN_EXPORT PFNGLDISABLEINVPROC __glewDisableiNV; +GLEW_FUN_EXPORT PFNGLENABLEINVPROC __glewEnableiNV; +GLEW_FUN_EXPORT PFNGLGETFLOATI_VNVPROC __glewGetFloati_vNV; +GLEW_FUN_EXPORT PFNGLISENABLEDINVPROC __glewIsEnablediNV; +GLEW_FUN_EXPORT PFNGLSCISSORARRAYVNVPROC __glewScissorArrayvNV; +GLEW_FUN_EXPORT PFNGLSCISSORINDEXEDNVPROC __glewScissorIndexedNV; +GLEW_FUN_EXPORT PFNGLSCISSORINDEXEDVNVPROC __glewScissorIndexedvNV; +GLEW_FUN_EXPORT PFNGLVIEWPORTARRAYVNVPROC __glewViewportArrayvNV; +GLEW_FUN_EXPORT PFNGLVIEWPORTINDEXEDFNVPROC __glewViewportIndexedfNV; +GLEW_FUN_EXPORT PFNGLVIEWPORTINDEXEDFVNVPROC __glewViewportIndexedfvNV; + +GLEW_FUN_EXPORT PFNGLVIEWPORTSWIZZLENVPROC __glewViewportSwizzleNV; + +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERTEXTUREMULTIVIEWOVRPROC __glewFramebufferTextureMultiviewOVR; + +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERTEXTUREMULTISAMPLEMULTIVIEWOVRPROC __glewFramebufferTextureMultisampleMultiviewOVR; + +GLEW_FUN_EXPORT PFNGLALPHAFUNCQCOMPROC __glewAlphaFuncQCOM; + +GLEW_FUN_EXPORT PFNGLDISABLEDRIVERCONTROLQCOMPROC __glewDisableDriverControlQCOM; +GLEW_FUN_EXPORT PFNGLENABLEDRIVERCONTROLQCOMPROC __glewEnableDriverControlQCOM; +GLEW_FUN_EXPORT PFNGLGETDRIVERCONTROLSTRINGQCOMPROC __glewGetDriverControlStringQCOM; +GLEW_FUN_EXPORT PFNGLGETDRIVERCONTROLSQCOMPROC __glewGetDriverControlsQCOM; + +GLEW_FUN_EXPORT PFNGLEXTGETBUFFERPOINTERVQCOMPROC __glewExtGetBufferPointervQCOM; +GLEW_FUN_EXPORT PFNGLEXTGETBUFFERSQCOMPROC __glewExtGetBuffersQCOM; +GLEW_FUN_EXPORT PFNGLEXTGETFRAMEBUFFERSQCOMPROC __glewExtGetFramebuffersQCOM; +GLEW_FUN_EXPORT PFNGLEXTGETRENDERBUFFERSQCOMPROC __glewExtGetRenderbuffersQCOM; +GLEW_FUN_EXPORT PFNGLEXTGETTEXLEVELPARAMETERIVQCOMPROC __glewExtGetTexLevelParameterivQCOM; +GLEW_FUN_EXPORT PFNGLEXTGETTEXSUBIMAGEQCOMPROC __glewExtGetTexSubImageQCOM; +GLEW_FUN_EXPORT PFNGLEXTGETTEXTURESQCOMPROC __glewExtGetTexturesQCOM; +GLEW_FUN_EXPORT PFNGLEXTTEXOBJECTSTATEOVERRIDEIQCOMPROC __glewExtTexObjectStateOverrideiQCOM; + +GLEW_FUN_EXPORT PFNGLEXTGETPROGRAMBINARYSOURCEQCOMPROC __glewExtGetProgramBinarySourceQCOM; +GLEW_FUN_EXPORT PFNGLEXTGETPROGRAMSQCOMPROC __glewExtGetProgramsQCOM; +GLEW_FUN_EXPORT PFNGLEXTGETSHADERSQCOMPROC __glewExtGetShadersQCOM; +GLEW_FUN_EXPORT PFNGLEXTISPROGRAMBINARYQCOMPROC __glewExtIsProgramBinaryQCOM; + +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERFOVEATIONCONFIGQCOMPROC __glewFramebufferFoveationConfigQCOM; +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERFOVEATIONPARAMETERSQCOMPROC __glewFramebufferFoveationParametersQCOM; + +GLEW_FUN_EXPORT PFNGLFRAMEBUFFERFETCHBARRIERQCOMPROC __glewFramebufferFetchBarrierQCOM; + +GLEW_FUN_EXPORT PFNGLENDTILINGQCOMPROC __glewEndTilingQCOM; +GLEW_FUN_EXPORT PFNGLSTARTTILINGQCOMPROC __glewStartTilingQCOM; + +GLEW_FUN_EXPORT PFNGLALPHAFUNCXPROC __glewAlphaFuncx; +GLEW_FUN_EXPORT PFNGLCLEARCOLORXPROC __glewClearColorx; +GLEW_FUN_EXPORT PFNGLCLEARDEPTHXPROC __glewClearDepthx; +GLEW_FUN_EXPORT PFNGLCOLOR4XPROC __glewColor4x; +GLEW_FUN_EXPORT PFNGLDEPTHRANGEXPROC __glewDepthRangex; +GLEW_FUN_EXPORT PFNGLFOGXPROC __glewFogx; +GLEW_FUN_EXPORT PFNGLFOGXVPROC __glewFogxv; +GLEW_FUN_EXPORT PFNGLFRUSTUMFPROC __glewFrustumf; +GLEW_FUN_EXPORT PFNGLFRUSTUMXPROC __glewFrustumx; +GLEW_FUN_EXPORT PFNGLLIGHTMODELXPROC __glewLightModelx; +GLEW_FUN_EXPORT PFNGLLIGHTMODELXVPROC __glewLightModelxv; +GLEW_FUN_EXPORT PFNGLLIGHTXPROC __glewLightx; +GLEW_FUN_EXPORT PFNGLLIGHTXVPROC __glewLightxv; +GLEW_FUN_EXPORT PFNGLLINEWIDTHXPROC __glewLineWidthx; +GLEW_FUN_EXPORT PFNGLLOADMATRIXXPROC __glewLoadMatrixx; +GLEW_FUN_EXPORT PFNGLMATERIALXPROC __glewMaterialx; +GLEW_FUN_EXPORT PFNGLMATERIALXVPROC __glewMaterialxv; +GLEW_FUN_EXPORT PFNGLMULTMATRIXXPROC __glewMultMatrixx; +GLEW_FUN_EXPORT PFNGLMULTITEXCOORD4XPROC __glewMultiTexCoord4x; +GLEW_FUN_EXPORT PFNGLNORMAL3XPROC __glewNormal3x; +GLEW_FUN_EXPORT PFNGLORTHOFPROC __glewOrthof; +GLEW_FUN_EXPORT PFNGLORTHOXPROC __glewOrthox; +GLEW_FUN_EXPORT PFNGLPOINTSIZEXPROC __glewPointSizex; +GLEW_FUN_EXPORT PFNGLPOLYGONOFFSETXPROC __glewPolygonOffsetx; +GLEW_FUN_EXPORT PFNGLROTATEXPROC __glewRotatex; +GLEW_FUN_EXPORT PFNGLSAMPLECOVERAGEXPROC __glewSampleCoveragex; +GLEW_FUN_EXPORT PFNGLSCALEXPROC __glewScalex; +GLEW_FUN_EXPORT PFNGLTEXENVXPROC __glewTexEnvx; +GLEW_FUN_EXPORT PFNGLTEXENVXVPROC __glewTexEnvxv; +GLEW_FUN_EXPORT PFNGLTEXPARAMETERXPROC __glewTexParameterx; +GLEW_FUN_EXPORT PFNGLTRANSLATEXPROC __glewTranslatex; + +GLEW_FUN_EXPORT PFNGLCLIPPLANEFPROC __glewClipPlanef; +GLEW_FUN_EXPORT PFNGLCLIPPLANEXPROC __glewClipPlanex; +GLEW_FUN_EXPORT PFNGLGETCLIPPLANEFPROC __glewGetClipPlanef; +GLEW_FUN_EXPORT PFNGLGETCLIPPLANEXPROC __glewGetClipPlanex; +GLEW_FUN_EXPORT PFNGLGETFIXEDVPROC __glewGetFixedv; +GLEW_FUN_EXPORT PFNGLGETLIGHTXVPROC __glewGetLightxv; +GLEW_FUN_EXPORT PFNGLGETMATERIALXVPROC __glewGetMaterialxv; +GLEW_FUN_EXPORT PFNGLGETTEXENVXVPROC __glewGetTexEnvxv; +GLEW_FUN_EXPORT PFNGLGETTEXPARAMETERXVPROC __glewGetTexParameterxv; +GLEW_FUN_EXPORT PFNGLPOINTPARAMETERXPROC __glewPointParameterx; +GLEW_FUN_EXPORT PFNGLPOINTPARAMETERXVPROC __glewPointParameterxv; +GLEW_FUN_EXPORT PFNGLPOINTSIZEPOINTEROESPROC __glewPointSizePointerOES; +GLEW_FUN_EXPORT PFNGLTEXPARAMETERXVPROC __glewTexParameterxv; + +GLEW_FUN_EXPORT PFNGLERRORSTRINGREGALPROC __glewErrorStringREGAL; + +GLEW_FUN_EXPORT PFNGLGETEXTENSIONREGALPROC __glewGetExtensionREGAL; +GLEW_FUN_EXPORT PFNGLISSUPPORTEDREGALPROC __glewIsSupportedREGAL; + +GLEW_FUN_EXPORT PFNGLLOGMESSAGECALLBACKREGALPROC __glewLogMessageCallbackREGAL; + +GLEW_FUN_EXPORT PFNGLGETPROCADDRESSREGALPROC __glewGetProcAddressREGAL; + +GLEW_FUN_EXPORT PFNGLDETAILTEXFUNCSGISPROC __glewDetailTexFuncSGIS; +GLEW_FUN_EXPORT PFNGLGETDETAILTEXFUNCSGISPROC __glewGetDetailTexFuncSGIS; + +GLEW_FUN_EXPORT PFNGLFOGFUNCSGISPROC __glewFogFuncSGIS; +GLEW_FUN_EXPORT PFNGLGETFOGFUNCSGISPROC __glewGetFogFuncSGIS; + +GLEW_FUN_EXPORT PFNGLSAMPLEMASKSGISPROC __glewSampleMaskSGIS; +GLEW_FUN_EXPORT PFNGLSAMPLEPATTERNSGISPROC __glewSamplePatternSGIS; + +GLEW_FUN_EXPORT PFNGLINTERLEAVEDTEXTURECOORDSETSSGISPROC __glewInterleavedTextureCoordSetsSGIS; +GLEW_FUN_EXPORT PFNGLSELECTTEXTURECOORDSETSGISPROC __glewSelectTextureCoordSetSGIS; +GLEW_FUN_EXPORT PFNGLSELECTTEXTURESGISPROC __glewSelectTextureSGIS; +GLEW_FUN_EXPORT PFNGLSELECTTEXTURETRANSFORMSGISPROC __glewSelectTextureTransformSGIS; + +GLEW_FUN_EXPORT PFNGLMULTISAMPLESUBRECTPOSSGISPROC __glewMultisampleSubRectPosSGIS; + +GLEW_FUN_EXPORT PFNGLGETSHARPENTEXFUNCSGISPROC __glewGetSharpenTexFuncSGIS; +GLEW_FUN_EXPORT PFNGLSHARPENTEXFUNCSGISPROC __glewSharpenTexFuncSGIS; + +GLEW_FUN_EXPORT PFNGLTEXIMAGE4DSGISPROC __glewTexImage4DSGIS; +GLEW_FUN_EXPORT PFNGLTEXSUBIMAGE4DSGISPROC __glewTexSubImage4DSGIS; + +GLEW_FUN_EXPORT PFNGLGETTEXFILTERFUNCSGISPROC __glewGetTexFilterFuncSGIS; +GLEW_FUN_EXPORT PFNGLTEXFILTERFUNCSGISPROC __glewTexFilterFuncSGIS; + +GLEW_FUN_EXPORT PFNGLASYNCMARKERSGIXPROC __glewAsyncMarkerSGIX; +GLEW_FUN_EXPORT PFNGLDELETEASYNCMARKERSSGIXPROC __glewDeleteAsyncMarkersSGIX; +GLEW_FUN_EXPORT PFNGLFINISHASYNCSGIXPROC __glewFinishAsyncSGIX; +GLEW_FUN_EXPORT PFNGLGENASYNCMARKERSSGIXPROC __glewGenAsyncMarkersSGIX; +GLEW_FUN_EXPORT PFNGLISASYNCMARKERSGIXPROC __glewIsAsyncMarkerSGIX; +GLEW_FUN_EXPORT PFNGLPOLLASYNCSGIXPROC __glewPollAsyncSGIX; + +GLEW_FUN_EXPORT PFNGLADDRESSSPACEPROC __glewAddressSpace; +GLEW_FUN_EXPORT PFNGLDATAPIPEPROC __glewDataPipe; + +GLEW_FUN_EXPORT PFNGLFLUSHRASTERSGIXPROC __glewFlushRasterSGIX; + +GLEW_FUN_EXPORT PFNGLFOGLAYERSSGIXPROC __glewFogLayersSGIX; +GLEW_FUN_EXPORT PFNGLGETFOGLAYERSSGIXPROC __glewGetFogLayersSGIX; + +GLEW_FUN_EXPORT PFNGLTEXTUREFOGSGIXPROC __glewTextureFogSGIX; + +GLEW_FUN_EXPORT PFNGLFRAGMENTCOLORMATERIALSGIXPROC __glewFragmentColorMaterialSGIX; +GLEW_FUN_EXPORT PFNGLFRAGMENTLIGHTMODELFSGIXPROC __glewFragmentLightModelfSGIX; +GLEW_FUN_EXPORT PFNGLFRAGMENTLIGHTMODELFVSGIXPROC __glewFragmentLightModelfvSGIX; +GLEW_FUN_EXPORT PFNGLFRAGMENTLIGHTMODELISGIXPROC __glewFragmentLightModeliSGIX; +GLEW_FUN_EXPORT PFNGLFRAGMENTLIGHTMODELIVSGIXPROC __glewFragmentLightModelivSGIX; +GLEW_FUN_EXPORT PFNGLFRAGMENTLIGHTFSGIXPROC __glewFragmentLightfSGIX; +GLEW_FUN_EXPORT PFNGLFRAGMENTLIGHTFVSGIXPROC __glewFragmentLightfvSGIX; +GLEW_FUN_EXPORT PFNGLFRAGMENTLIGHTISGIXPROC __glewFragmentLightiSGIX; +GLEW_FUN_EXPORT PFNGLFRAGMENTLIGHTIVSGIXPROC __glewFragmentLightivSGIX; +GLEW_FUN_EXPORT PFNGLFRAGMENTMATERIALFSGIXPROC __glewFragmentMaterialfSGIX; +GLEW_FUN_EXPORT PFNGLFRAGMENTMATERIALFVSGIXPROC __glewFragmentMaterialfvSGIX; +GLEW_FUN_EXPORT PFNGLFRAGMENTMATERIALISGIXPROC __glewFragmentMaterialiSGIX; +GLEW_FUN_EXPORT PFNGLFRAGMENTMATERIALIVSGIXPROC __glewFragmentMaterialivSGIX; +GLEW_FUN_EXPORT PFNGLGETFRAGMENTLIGHTFVSGIXPROC __glewGetFragmentLightfvSGIX; +GLEW_FUN_EXPORT PFNGLGETFRAGMENTLIGHTIVSGIXPROC __glewGetFragmentLightivSGIX; +GLEW_FUN_EXPORT PFNGLGETFRAGMENTMATERIALFVSGIXPROC __glewGetFragmentMaterialfvSGIX; +GLEW_FUN_EXPORT PFNGLGETFRAGMENTMATERIALIVSGIXPROC __glewGetFragmentMaterialivSGIX; + +GLEW_FUN_EXPORT PFNGLFRAMEZOOMSGIXPROC __glewFrameZoomSGIX; + +GLEW_FUN_EXPORT PFNGLIGLOOINTERFACESGIXPROC __glewIglooInterfaceSGIX; + +GLEW_FUN_EXPORT PFNGLALLOCMPEGPREDICTORSSGIXPROC __glewAllocMPEGPredictorsSGIX; +GLEW_FUN_EXPORT PFNGLDELETEMPEGPREDICTORSSGIXPROC __glewDeleteMPEGPredictorsSGIX; +GLEW_FUN_EXPORT PFNGLGENMPEGPREDICTORSSGIXPROC __glewGenMPEGPredictorsSGIX; +GLEW_FUN_EXPORT PFNGLGETMPEGPARAMETERFVSGIXPROC __glewGetMPEGParameterfvSGIX; +GLEW_FUN_EXPORT PFNGLGETMPEGPARAMETERIVSGIXPROC __glewGetMPEGParameterivSGIX; +GLEW_FUN_EXPORT PFNGLGETMPEGPREDICTORSGIXPROC __glewGetMPEGPredictorSGIX; +GLEW_FUN_EXPORT PFNGLGETMPEGQUANTTABLEUBVPROC __glewGetMPEGQuantTableubv; +GLEW_FUN_EXPORT PFNGLISMPEGPREDICTORSGIXPROC __glewIsMPEGPredictorSGIX; +GLEW_FUN_EXPORT PFNGLMPEGPREDICTORSGIXPROC __glewMPEGPredictorSGIX; +GLEW_FUN_EXPORT PFNGLMPEGQUANTTABLEUBVPROC __glewMPEGQuantTableubv; +GLEW_FUN_EXPORT PFNGLSWAPMPEGPREDICTORSSGIXPROC __glewSwapMPEGPredictorsSGIX; + +GLEW_FUN_EXPORT PFNGLGETNONLINLIGHTFVSGIXPROC __glewGetNonlinLightfvSGIX; +GLEW_FUN_EXPORT PFNGLGETNONLINMATERIALFVSGIXPROC __glewGetNonlinMaterialfvSGIX; +GLEW_FUN_EXPORT PFNGLNONLINLIGHTFVSGIXPROC __glewNonlinLightfvSGIX; +GLEW_FUN_EXPORT PFNGLNONLINMATERIALFVSGIXPROC __glewNonlinMaterialfvSGIX; + +GLEW_FUN_EXPORT PFNGLPIXELTEXGENSGIXPROC __glewPixelTexGenSGIX; + +GLEW_FUN_EXPORT PFNGLDEFORMSGIXPROC __glewDeformSGIX; +GLEW_FUN_EXPORT PFNGLLOADIDENTITYDEFORMATIONMAPSGIXPROC __glewLoadIdentityDeformationMapSGIX; + +GLEW_FUN_EXPORT PFNGLMESHBREADTHSGIXPROC __glewMeshBreadthSGIX; +GLEW_FUN_EXPORT PFNGLMESHSTRIDESGIXPROC __glewMeshStrideSGIX; + +GLEW_FUN_EXPORT PFNGLREFERENCEPLANESGIXPROC __glewReferencePlaneSGIX; + +GLEW_FUN_EXPORT PFNGLSPRITEPARAMETERFSGIXPROC __glewSpriteParameterfSGIX; +GLEW_FUN_EXPORT PFNGLSPRITEPARAMETERFVSGIXPROC __glewSpriteParameterfvSGIX; +GLEW_FUN_EXPORT PFNGLSPRITEPARAMETERISGIXPROC __glewSpriteParameteriSGIX; +GLEW_FUN_EXPORT PFNGLSPRITEPARAMETERIVSGIXPROC __glewSpriteParameterivSGIX; + +GLEW_FUN_EXPORT PFNGLTAGSAMPLEBUFFERSGIXPROC __glewTagSampleBufferSGIX; + +GLEW_FUN_EXPORT PFNGLGETVECTOROPERATIONSGIXPROC __glewGetVectorOperationSGIX; +GLEW_FUN_EXPORT PFNGLVECTOROPERATIONSGIXPROC __glewVectorOperationSGIX; + +GLEW_FUN_EXPORT PFNGLAREVERTEXARRAYSRESIDENTSGIXPROC __glewAreVertexArraysResidentSGIX; +GLEW_FUN_EXPORT PFNGLBINDVERTEXARRAYSGIXPROC __glewBindVertexArraySGIX; +GLEW_FUN_EXPORT PFNGLDELETEVERTEXARRAYSSGIXPROC __glewDeleteVertexArraysSGIX; +GLEW_FUN_EXPORT PFNGLGENVERTEXARRAYSSGIXPROC __glewGenVertexArraysSGIX; +GLEW_FUN_EXPORT PFNGLISVERTEXARRAYSGIXPROC __glewIsVertexArraySGIX; +GLEW_FUN_EXPORT PFNGLPRIORITIZEVERTEXARRAYSSGIXPROC __glewPrioritizeVertexArraysSGIX; + +GLEW_FUN_EXPORT PFNGLCOLORTABLEPARAMETERFVSGIPROC __glewColorTableParameterfvSGI; +GLEW_FUN_EXPORT PFNGLCOLORTABLEPARAMETERIVSGIPROC __glewColorTableParameterivSGI; +GLEW_FUN_EXPORT PFNGLCOLORTABLESGIPROC __glewColorTableSGI; +GLEW_FUN_EXPORT PFNGLCOPYCOLORTABLESGIPROC __glewCopyColorTableSGI; +GLEW_FUN_EXPORT PFNGLGETCOLORTABLEPARAMETERFVSGIPROC __glewGetColorTableParameterfvSGI; +GLEW_FUN_EXPORT PFNGLGETCOLORTABLEPARAMETERIVSGIPROC __glewGetColorTableParameterivSGI; +GLEW_FUN_EXPORT PFNGLGETCOLORTABLESGIPROC __glewGetColorTableSGI; + +GLEW_FUN_EXPORT PFNGLGETPIXELTRANSFORMPARAMETERFVSGIPROC __glewGetPixelTransformParameterfvSGI; +GLEW_FUN_EXPORT PFNGLGETPIXELTRANSFORMPARAMETERIVSGIPROC __glewGetPixelTransformParameterivSGI; +GLEW_FUN_EXPORT PFNGLPIXELTRANSFORMPARAMETERFSGIPROC __glewPixelTransformParameterfSGI; +GLEW_FUN_EXPORT PFNGLPIXELTRANSFORMPARAMETERFVSGIPROC __glewPixelTransformParameterfvSGI; +GLEW_FUN_EXPORT PFNGLPIXELTRANSFORMPARAMETERISGIPROC __glewPixelTransformParameteriSGI; +GLEW_FUN_EXPORT PFNGLPIXELTRANSFORMPARAMETERIVSGIPROC __glewPixelTransformParameterivSGI; +GLEW_FUN_EXPORT PFNGLPIXELTRANSFORMSGIPROC __glewPixelTransformSGI; + +GLEW_FUN_EXPORT PFNGLFINISHTEXTURESUNXPROC __glewFinishTextureSUNX; + +GLEW_FUN_EXPORT PFNGLGLOBALALPHAFACTORBSUNPROC __glewGlobalAlphaFactorbSUN; +GLEW_FUN_EXPORT PFNGLGLOBALALPHAFACTORDSUNPROC __glewGlobalAlphaFactordSUN; +GLEW_FUN_EXPORT PFNGLGLOBALALPHAFACTORFSUNPROC __glewGlobalAlphaFactorfSUN; +GLEW_FUN_EXPORT PFNGLGLOBALALPHAFACTORISUNPROC __glewGlobalAlphaFactoriSUN; +GLEW_FUN_EXPORT PFNGLGLOBALALPHAFACTORSSUNPROC __glewGlobalAlphaFactorsSUN; +GLEW_FUN_EXPORT PFNGLGLOBALALPHAFACTORUBSUNPROC __glewGlobalAlphaFactorubSUN; +GLEW_FUN_EXPORT PFNGLGLOBALALPHAFACTORUISUNPROC __glewGlobalAlphaFactoruiSUN; +GLEW_FUN_EXPORT PFNGLGLOBALALPHAFACTORUSSUNPROC __glewGlobalAlphaFactorusSUN; + +GLEW_FUN_EXPORT PFNGLREADVIDEOPIXELSSUNPROC __glewReadVideoPixelsSUN; + +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEPOINTERSUNPROC __glewReplacementCodePointerSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUBSUNPROC __glewReplacementCodeubSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUBVSUNPROC __glewReplacementCodeubvSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUISUNPROC __glewReplacementCodeuiSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUIVSUNPROC __glewReplacementCodeuivSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUSSUNPROC __glewReplacementCodeusSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUSVSUNPROC __glewReplacementCodeusvSUN; + +GLEW_FUN_EXPORT PFNGLCOLOR3FVERTEX3FSUNPROC __glewColor3fVertex3fSUN; +GLEW_FUN_EXPORT PFNGLCOLOR3FVERTEX3FVSUNPROC __glewColor3fVertex3fvSUN; +GLEW_FUN_EXPORT PFNGLCOLOR4FNORMAL3FVERTEX3FSUNPROC __glewColor4fNormal3fVertex3fSUN; +GLEW_FUN_EXPORT PFNGLCOLOR4FNORMAL3FVERTEX3FVSUNPROC __glewColor4fNormal3fVertex3fvSUN; +GLEW_FUN_EXPORT PFNGLCOLOR4UBVERTEX2FSUNPROC __glewColor4ubVertex2fSUN; +GLEW_FUN_EXPORT PFNGLCOLOR4UBVERTEX2FVSUNPROC __glewColor4ubVertex2fvSUN; +GLEW_FUN_EXPORT PFNGLCOLOR4UBVERTEX3FSUNPROC __glewColor4ubVertex3fSUN; +GLEW_FUN_EXPORT PFNGLCOLOR4UBVERTEX3FVSUNPROC __glewColor4ubVertex3fvSUN; +GLEW_FUN_EXPORT PFNGLNORMAL3FVERTEX3FSUNPROC __glewNormal3fVertex3fSUN; +GLEW_FUN_EXPORT PFNGLNORMAL3FVERTEX3FVSUNPROC __glewNormal3fVertex3fvSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FSUNPROC __glewReplacementCodeuiColor3fVertex3fSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUICOLOR3FVERTEX3FVSUNPROC __glewReplacementCodeuiColor3fVertex3fvSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FSUNPROC __glewReplacementCodeuiColor4fNormal3fVertex3fSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUICOLOR4FNORMAL3FVERTEX3FVSUNPROC __glewReplacementCodeuiColor4fNormal3fVertex3fvSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FSUNPROC __glewReplacementCodeuiColor4ubVertex3fSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUICOLOR4UBVERTEX3FVSUNPROC __glewReplacementCodeuiColor4ubVertex3fvSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FSUNPROC __glewReplacementCodeuiNormal3fVertex3fSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUINORMAL3FVERTEX3FVSUNPROC __glewReplacementCodeuiNormal3fVertex3fvSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC __glewReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUITEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC __glewReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FSUNPROC __glewReplacementCodeuiTexCoord2fNormal3fVertex3fSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUITEXCOORD2FNORMAL3FVERTEX3FVSUNPROC __glewReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FSUNPROC __glewReplacementCodeuiTexCoord2fVertex3fSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUITEXCOORD2FVERTEX3FVSUNPROC __glewReplacementCodeuiTexCoord2fVertex3fvSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUIVERTEX3FSUNPROC __glewReplacementCodeuiVertex3fSUN; +GLEW_FUN_EXPORT PFNGLREPLACEMENTCODEUIVERTEX3FVSUNPROC __glewReplacementCodeuiVertex3fvSUN; +GLEW_FUN_EXPORT PFNGLTEXCOORD2FCOLOR3FVERTEX3FSUNPROC __glewTexCoord2fColor3fVertex3fSUN; +GLEW_FUN_EXPORT PFNGLTEXCOORD2FCOLOR3FVERTEX3FVSUNPROC __glewTexCoord2fColor3fVertex3fvSUN; +GLEW_FUN_EXPORT PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FSUNPROC __glewTexCoord2fColor4fNormal3fVertex3fSUN; +GLEW_FUN_EXPORT PFNGLTEXCOORD2FCOLOR4FNORMAL3FVERTEX3FVSUNPROC __glewTexCoord2fColor4fNormal3fVertex3fvSUN; +GLEW_FUN_EXPORT PFNGLTEXCOORD2FCOLOR4UBVERTEX3FSUNPROC __glewTexCoord2fColor4ubVertex3fSUN; +GLEW_FUN_EXPORT PFNGLTEXCOORD2FCOLOR4UBVERTEX3FVSUNPROC __glewTexCoord2fColor4ubVertex3fvSUN; +GLEW_FUN_EXPORT PFNGLTEXCOORD2FNORMAL3FVERTEX3FSUNPROC __glewTexCoord2fNormal3fVertex3fSUN; +GLEW_FUN_EXPORT PFNGLTEXCOORD2FNORMAL3FVERTEX3FVSUNPROC __glewTexCoord2fNormal3fVertex3fvSUN; +GLEW_FUN_EXPORT PFNGLTEXCOORD2FVERTEX3FSUNPROC __glewTexCoord2fVertex3fSUN; +GLEW_FUN_EXPORT PFNGLTEXCOORD2FVERTEX3FVSUNPROC __glewTexCoord2fVertex3fvSUN; +GLEW_FUN_EXPORT PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FSUNPROC __glewTexCoord4fColor4fNormal3fVertex4fSUN; +GLEW_FUN_EXPORT PFNGLTEXCOORD4FCOLOR4FNORMAL3FVERTEX4FVSUNPROC __glewTexCoord4fColor4fNormal3fVertex4fvSUN; +GLEW_FUN_EXPORT PFNGLTEXCOORD4FVERTEX4FSUNPROC __glewTexCoord4fVertex4fSUN; +GLEW_FUN_EXPORT PFNGLTEXCOORD4FVERTEX4FVSUNPROC __glewTexCoord4fVertex4fvSUN; + +GLEW_FUN_EXPORT PFNGLADDSWAPHINTRECTWINPROC __glewAddSwapHintRectWIN; +GLEW_VAR_EXPORT GLboolean __GLEW_VERSION_1_1; +GLEW_VAR_EXPORT GLboolean __GLEW_VERSION_1_2; +GLEW_VAR_EXPORT GLboolean __GLEW_VERSION_1_2_1; +GLEW_VAR_EXPORT GLboolean __GLEW_VERSION_1_3; +GLEW_VAR_EXPORT GLboolean __GLEW_VERSION_1_4; +GLEW_VAR_EXPORT GLboolean __GLEW_VERSION_1_5; +GLEW_VAR_EXPORT GLboolean __GLEW_VERSION_2_0; +GLEW_VAR_EXPORT GLboolean __GLEW_VERSION_2_1; +GLEW_VAR_EXPORT GLboolean __GLEW_VERSION_3_0; +GLEW_VAR_EXPORT GLboolean __GLEW_VERSION_3_1; +GLEW_VAR_EXPORT GLboolean __GLEW_VERSION_3_2; +GLEW_VAR_EXPORT GLboolean __GLEW_VERSION_3_3; +GLEW_VAR_EXPORT GLboolean __GLEW_VERSION_4_0; +GLEW_VAR_EXPORT GLboolean __GLEW_VERSION_4_1; +GLEW_VAR_EXPORT GLboolean __GLEW_VERSION_4_2; +GLEW_VAR_EXPORT GLboolean __GLEW_VERSION_4_3; +GLEW_VAR_EXPORT GLboolean __GLEW_VERSION_4_4; +GLEW_VAR_EXPORT GLboolean __GLEW_VERSION_4_5; +GLEW_VAR_EXPORT GLboolean __GLEW_VERSION_4_6; +GLEW_VAR_EXPORT GLboolean __GLEW_3DFX_multisample; +GLEW_VAR_EXPORT GLboolean __GLEW_3DFX_tbuffer; +GLEW_VAR_EXPORT GLboolean __GLEW_3DFX_texture_compression_FXT1; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_blend_minmax_factor; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_compressed_3DC_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_compressed_ATC_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_conservative_depth; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_debug_output; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_depth_clamp_separate; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_draw_buffers_blend; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_framebuffer_sample_positions; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_gcn_shader; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_gpu_shader_half_float; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_gpu_shader_int16; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_gpu_shader_int64; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_interleaved_elements; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_multi_draw_indirect; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_name_gen_delete; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_occlusion_query_event; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_performance_monitor; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_pinned_memory; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_program_binary_Z400; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_query_buffer_object; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_sample_positions; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_seamless_cubemap_per_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_shader_atomic_counter_ops; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_shader_ballot; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_shader_explicit_vertex_parameter; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_shader_stencil_export; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_shader_stencil_value_export; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_shader_trinary_minmax; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_sparse_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_stencil_operation_extended; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_texture_gather_bias_lod; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_texture_texture4; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_transform_feedback3_lines_triangles; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_transform_feedback4; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_vertex_shader_layer; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_vertex_shader_tessellator; +GLEW_VAR_EXPORT GLboolean __GLEW_AMD_vertex_shader_viewport_index; +GLEW_VAR_EXPORT GLboolean __GLEW_ANDROID_extension_pack_es31a; +GLEW_VAR_EXPORT GLboolean __GLEW_ANGLE_depth_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_ANGLE_framebuffer_blit; +GLEW_VAR_EXPORT GLboolean __GLEW_ANGLE_framebuffer_multisample; +GLEW_VAR_EXPORT GLboolean __GLEW_ANGLE_instanced_arrays; +GLEW_VAR_EXPORT GLboolean __GLEW_ANGLE_pack_reverse_row_order; +GLEW_VAR_EXPORT GLboolean __GLEW_ANGLE_program_binary; +GLEW_VAR_EXPORT GLboolean __GLEW_ANGLE_texture_compression_dxt1; +GLEW_VAR_EXPORT GLboolean __GLEW_ANGLE_texture_compression_dxt3; +GLEW_VAR_EXPORT GLboolean __GLEW_ANGLE_texture_compression_dxt5; +GLEW_VAR_EXPORT GLboolean __GLEW_ANGLE_texture_usage; +GLEW_VAR_EXPORT GLboolean __GLEW_ANGLE_timer_query; +GLEW_VAR_EXPORT GLboolean __GLEW_ANGLE_translated_shader_source; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_aux_depth_stencil; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_client_storage; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_clip_distance; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_color_buffer_packed_float; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_copy_texture_levels; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_element_array; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_fence; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_float_pixels; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_flush_buffer_range; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_framebuffer_multisample; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_object_purgeable; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_pixel_buffer; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_rgb_422; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_row_bytes; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_specular_vector; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_sync; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_texture_2D_limited_npot; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_texture_format_BGRA8888; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_texture_max_level; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_texture_packed_float; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_texture_range; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_transform_hint; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_vertex_array_object; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_vertex_array_range; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_vertex_program_evaluators; +GLEW_VAR_EXPORT GLboolean __GLEW_APPLE_ycbcr_422; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_ES2_compatibility; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_ES3_1_compatibility; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_ES3_2_compatibility; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_ES3_compatibility; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_arrays_of_arrays; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_base_instance; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_bindless_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_blend_func_extended; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_buffer_storage; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_cl_event; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_clear_buffer_object; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_clear_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_clip_control; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_color_buffer_float; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_compatibility; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_compressed_texture_pixel_storage; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_compute_shader; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_compute_variable_group_size; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_conditional_render_inverted; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_conservative_depth; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_copy_buffer; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_copy_image; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_cull_distance; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_debug_output; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_depth_buffer_float; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_depth_clamp; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_depth_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_derivative_control; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_direct_state_access; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_draw_buffers; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_draw_buffers_blend; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_draw_elements_base_vertex; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_draw_indirect; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_draw_instanced; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_enhanced_layouts; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_explicit_attrib_location; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_explicit_uniform_location; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_fragment_coord_conventions; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_fragment_layer_viewport; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_fragment_program; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_fragment_program_shadow; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_fragment_shader; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_fragment_shader_interlock; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_framebuffer_no_attachments; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_framebuffer_object; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_framebuffer_sRGB; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_geometry_shader4; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_get_program_binary; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_get_texture_sub_image; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_gl_spirv; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_gpu_shader5; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_gpu_shader_fp64; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_gpu_shader_int64; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_half_float_pixel; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_half_float_vertex; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_imaging; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_indirect_parameters; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_instanced_arrays; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_internalformat_query; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_internalformat_query2; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_invalidate_subdata; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_map_buffer_alignment; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_map_buffer_range; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_matrix_palette; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_multi_bind; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_multi_draw_indirect; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_multisample; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_multitexture; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_occlusion_query; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_occlusion_query2; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_parallel_shader_compile; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_pipeline_statistics_query; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_pixel_buffer_object; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_point_parameters; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_point_sprite; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_polygon_offset_clamp; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_post_depth_coverage; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_program_interface_query; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_provoking_vertex; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_query_buffer_object; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_robust_buffer_access_behavior; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_robustness; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_robustness_application_isolation; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_robustness_share_group_isolation; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_sample_locations; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_sample_shading; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_sampler_objects; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_seamless_cube_map; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_seamless_cubemap_per_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_separate_shader_objects; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shader_atomic_counter_ops; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shader_atomic_counters; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shader_ballot; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shader_bit_encoding; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shader_clock; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shader_draw_parameters; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shader_group_vote; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shader_image_load_store; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shader_image_size; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shader_objects; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shader_precision; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shader_stencil_export; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shader_storage_buffer_object; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shader_subroutine; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shader_texture_image_samples; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shader_texture_lod; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shader_viewport_layer_array; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shading_language_100; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shading_language_420pack; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shading_language_include; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shading_language_packing; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shadow; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_shadow_ambient; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_sparse_buffer; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_sparse_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_sparse_texture2; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_sparse_texture_clamp; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_spirv_extensions; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_stencil_texturing; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_sync; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_tessellation_shader; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_barrier; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_border_clamp; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_buffer_object; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_buffer_object_rgb32; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_buffer_range; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_compression; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_compression_bptc; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_compression_rgtc; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_cube_map; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_cube_map_array; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_env_add; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_env_combine; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_env_crossbar; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_env_dot3; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_filter_anisotropic; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_filter_minmax; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_float; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_gather; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_mirror_clamp_to_edge; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_mirrored_repeat; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_multisample; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_non_power_of_two; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_query_levels; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_query_lod; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_rectangle; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_rg; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_rgb10_a2ui; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_stencil8; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_storage; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_storage_multisample; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_swizzle; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_texture_view; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_timer_query; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_transform_feedback2; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_transform_feedback3; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_transform_feedback_instanced; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_transform_feedback_overflow_query; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_transpose_matrix; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_uniform_buffer_object; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_vertex_array_bgra; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_vertex_array_object; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_vertex_attrib_64bit; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_vertex_attrib_binding; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_vertex_blend; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_vertex_buffer_object; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_vertex_program; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_vertex_shader; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_vertex_type_10f_11f_11f_rev; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_vertex_type_2_10_10_10_rev; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_viewport_array; +GLEW_VAR_EXPORT GLboolean __GLEW_ARB_window_pos; +GLEW_VAR_EXPORT GLboolean __GLEW_ARM_mali_program_binary; +GLEW_VAR_EXPORT GLboolean __GLEW_ARM_mali_shader_binary; +GLEW_VAR_EXPORT GLboolean __GLEW_ARM_rgba8; +GLEW_VAR_EXPORT GLboolean __GLEW_ARM_shader_framebuffer_fetch; +GLEW_VAR_EXPORT GLboolean __GLEW_ARM_shader_framebuffer_fetch_depth_stencil; +GLEW_VAR_EXPORT GLboolean __GLEW_ATIX_point_sprites; +GLEW_VAR_EXPORT GLboolean __GLEW_ATIX_texture_env_combine3; +GLEW_VAR_EXPORT GLboolean __GLEW_ATIX_texture_env_route; +GLEW_VAR_EXPORT GLboolean __GLEW_ATIX_vertex_shader_output_point_size; +GLEW_VAR_EXPORT GLboolean __GLEW_ATI_draw_buffers; +GLEW_VAR_EXPORT GLboolean __GLEW_ATI_element_array; +GLEW_VAR_EXPORT GLboolean __GLEW_ATI_envmap_bumpmap; +GLEW_VAR_EXPORT GLboolean __GLEW_ATI_fragment_shader; +GLEW_VAR_EXPORT GLboolean __GLEW_ATI_map_object_buffer; +GLEW_VAR_EXPORT GLboolean __GLEW_ATI_meminfo; +GLEW_VAR_EXPORT GLboolean __GLEW_ATI_pn_triangles; +GLEW_VAR_EXPORT GLboolean __GLEW_ATI_separate_stencil; +GLEW_VAR_EXPORT GLboolean __GLEW_ATI_shader_texture_lod; +GLEW_VAR_EXPORT GLboolean __GLEW_ATI_text_fragment_shader; +GLEW_VAR_EXPORT GLboolean __GLEW_ATI_texture_compression_3dc; +GLEW_VAR_EXPORT GLboolean __GLEW_ATI_texture_env_combine3; +GLEW_VAR_EXPORT GLboolean __GLEW_ATI_texture_float; +GLEW_VAR_EXPORT GLboolean __GLEW_ATI_texture_mirror_once; +GLEW_VAR_EXPORT GLboolean __GLEW_ATI_vertex_array_object; +GLEW_VAR_EXPORT GLboolean __GLEW_ATI_vertex_attrib_array_object; +GLEW_VAR_EXPORT GLboolean __GLEW_ATI_vertex_streams; +GLEW_VAR_EXPORT GLboolean __GLEW_EGL_KHR_context_flush_control; +GLEW_VAR_EXPORT GLboolean __GLEW_EGL_NV_robustness_video_memory_purge; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_422_pixels; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_Cg_shader; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_EGL_image_array; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_YUV_target; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_abgr; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_base_instance; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_bgra; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_bindable_uniform; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_blend_color; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_blend_equation_separate; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_blend_func_extended; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_blend_func_separate; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_blend_logic_op; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_blend_minmax; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_blend_subtract; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_buffer_storage; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_clear_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_clip_cull_distance; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_clip_volume_hint; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_cmyka; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_color_buffer_float; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_color_buffer_half_float; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_color_subtable; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_compiled_vertex_array; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_compressed_ETC1_RGB8_sub_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_conservative_depth; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_convolution; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_coordinate_frame; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_copy_image; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_copy_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_cull_vertex; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_debug_label; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_debug_marker; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_depth_bounds_test; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_direct_state_access; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_discard_framebuffer; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_draw_buffers; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_draw_buffers2; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_draw_buffers_indexed; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_draw_elements_base_vertex; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_draw_instanced; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_draw_range_elements; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_external_buffer; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_float_blend; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_fog_coord; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_frag_depth; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_fragment_lighting; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_framebuffer_blit; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_framebuffer_multisample; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_framebuffer_multisample_blit_scaled; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_framebuffer_object; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_framebuffer_sRGB; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_geometry_point_size; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_geometry_shader; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_geometry_shader4; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_gpu_program_parameters; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_gpu_shader4; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_gpu_shader5; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_histogram; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_index_array_formats; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_index_func; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_index_material; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_index_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_instanced_arrays; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_light_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_map_buffer_range; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_memory_object; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_memory_object_fd; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_memory_object_win32; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_misc_attribute; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_multi_draw_arrays; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_multi_draw_indirect; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_multiple_textures; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_multisample; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_multisample_compatibility; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_multisampled_render_to_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_multisampled_render_to_texture2; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_multiview_draw_buffers; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_packed_depth_stencil; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_packed_float; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_packed_pixels; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_paletted_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_pixel_buffer_object; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_pixel_transform; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_pixel_transform_color_table; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_point_parameters; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_polygon_offset; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_polygon_offset_clamp; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_post_depth_coverage; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_provoking_vertex; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_pvrtc_sRGB; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_raster_multisample; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_read_format_bgra; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_render_snorm; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_rescale_normal; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_sRGB; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_sRGB_write_control; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_scene_marker; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_secondary_color; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_semaphore; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_semaphore_fd; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_semaphore_win32; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_separate_shader_objects; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_separate_specular_color; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_shader_framebuffer_fetch; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_shader_group_vote; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_shader_image_load_formatted; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_shader_image_load_store; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_shader_implicit_conversions; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_shader_integer_mix; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_shader_io_blocks; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_shader_non_constant_global_initializers; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_shader_pixel_local_storage; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_shader_pixel_local_storage2; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_shader_texture_lod; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_shadow_funcs; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_shadow_samplers; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_shared_texture_palette; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_sparse_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_sparse_texture2; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_stencil_clear_tag; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_stencil_two_side; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_stencil_wrap; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_subtexture; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture3D; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_array; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_buffer_object; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_compression_astc_decode_mode; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_compression_astc_decode_mode_rgb9e5; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_compression_bptc; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_compression_dxt1; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_compression_latc; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_compression_rgtc; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_compression_s3tc; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_cube_map; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_cube_map_array; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_edge_clamp; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_env; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_env_add; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_env_combine; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_env_dot3; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_filter_anisotropic; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_filter_minmax; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_format_BGRA8888; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_integer; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_lod_bias; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_mirror_clamp; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_norm16; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_object; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_perturb_normal; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_rectangle; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_rg; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_sRGB; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_sRGB_R8; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_sRGB_RG8; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_sRGB_decode; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_shared_exponent; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_snorm; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_storage; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_swizzle; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_type_2_10_10_10_REV; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_texture_view; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_timer_query; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_transform_feedback; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_unpack_subimage; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_vertex_array; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_vertex_array_bgra; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_vertex_array_setXXX; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_vertex_attrib_64bit; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_vertex_shader; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_vertex_weighting; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_win32_keyed_mutex; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_window_rectangles; +GLEW_VAR_EXPORT GLboolean __GLEW_EXT_x11_sync_object; +GLEW_VAR_EXPORT GLboolean __GLEW_GREMEDY_frame_terminator; +GLEW_VAR_EXPORT GLboolean __GLEW_GREMEDY_string_marker; +GLEW_VAR_EXPORT GLboolean __GLEW_HP_convolution_border_modes; +GLEW_VAR_EXPORT GLboolean __GLEW_HP_image_transform; +GLEW_VAR_EXPORT GLboolean __GLEW_HP_occlusion_test; +GLEW_VAR_EXPORT GLboolean __GLEW_HP_texture_lighting; +GLEW_VAR_EXPORT GLboolean __GLEW_IBM_cull_vertex; +GLEW_VAR_EXPORT GLboolean __GLEW_IBM_multimode_draw_arrays; +GLEW_VAR_EXPORT GLboolean __GLEW_IBM_rasterpos_clip; +GLEW_VAR_EXPORT GLboolean __GLEW_IBM_static_data; +GLEW_VAR_EXPORT GLboolean __GLEW_IBM_texture_mirrored_repeat; +GLEW_VAR_EXPORT GLboolean __GLEW_IBM_vertex_array_lists; +GLEW_VAR_EXPORT GLboolean __GLEW_INGR_color_clamp; +GLEW_VAR_EXPORT GLboolean __GLEW_INGR_interlace_read; +GLEW_VAR_EXPORT GLboolean __GLEW_INTEL_conservative_rasterization; +GLEW_VAR_EXPORT GLboolean __GLEW_INTEL_fragment_shader_ordering; +GLEW_VAR_EXPORT GLboolean __GLEW_INTEL_framebuffer_CMAA; +GLEW_VAR_EXPORT GLboolean __GLEW_INTEL_map_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_INTEL_parallel_arrays; +GLEW_VAR_EXPORT GLboolean __GLEW_INTEL_performance_query; +GLEW_VAR_EXPORT GLboolean __GLEW_INTEL_texture_scissor; +GLEW_VAR_EXPORT GLboolean __GLEW_KHR_blend_equation_advanced; +GLEW_VAR_EXPORT GLboolean __GLEW_KHR_blend_equation_advanced_coherent; +GLEW_VAR_EXPORT GLboolean __GLEW_KHR_context_flush_control; +GLEW_VAR_EXPORT GLboolean __GLEW_KHR_debug; +GLEW_VAR_EXPORT GLboolean __GLEW_KHR_no_error; +GLEW_VAR_EXPORT GLboolean __GLEW_KHR_parallel_shader_compile; +GLEW_VAR_EXPORT GLboolean __GLEW_KHR_robust_buffer_access_behavior; +GLEW_VAR_EXPORT GLboolean __GLEW_KHR_robustness; +GLEW_VAR_EXPORT GLboolean __GLEW_KHR_texture_compression_astc_hdr; +GLEW_VAR_EXPORT GLboolean __GLEW_KHR_texture_compression_astc_ldr; +GLEW_VAR_EXPORT GLboolean __GLEW_KHR_texture_compression_astc_sliced_3d; +GLEW_VAR_EXPORT GLboolean __GLEW_KTX_buffer_region; +GLEW_VAR_EXPORT GLboolean __GLEW_MESAX_texture_stack; +GLEW_VAR_EXPORT GLboolean __GLEW_MESA_pack_invert; +GLEW_VAR_EXPORT GLboolean __GLEW_MESA_resize_buffers; +GLEW_VAR_EXPORT GLboolean __GLEW_MESA_shader_integer_functions; +GLEW_VAR_EXPORT GLboolean __GLEW_MESA_window_pos; +GLEW_VAR_EXPORT GLboolean __GLEW_MESA_ycbcr_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_NVX_blend_equation_advanced_multi_draw_buffers; +GLEW_VAR_EXPORT GLboolean __GLEW_NVX_conditional_render; +GLEW_VAR_EXPORT GLboolean __GLEW_NVX_gpu_memory_info; +GLEW_VAR_EXPORT GLboolean __GLEW_NVX_linked_gpu_multicast; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_3dvision_settings; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_EGL_stream_consumer_external; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_alpha_to_coverage_dither_control; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_bgr; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_bindless_multi_draw_indirect; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_bindless_multi_draw_indirect_count; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_bindless_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_blend_equation_advanced; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_blend_equation_advanced_coherent; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_blend_minmax_factor; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_blend_square; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_clip_space_w_scaling; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_command_list; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_compute_program5; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_conditional_render; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_conservative_raster; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_conservative_raster_dilate; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_conservative_raster_pre_snap_triangles; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_copy_buffer; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_copy_depth_to_color; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_copy_image; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_deep_texture3D; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_depth_buffer_float; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_depth_clamp; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_depth_range_unclamped; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_draw_buffers; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_draw_instanced; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_draw_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_draw_vulkan_image; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_evaluators; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_explicit_attrib_location; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_explicit_multisample; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_fbo_color_attachments; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_fence; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_fill_rectangle; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_float_buffer; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_fog_distance; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_fragment_coverage_to_color; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_fragment_program; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_fragment_program2; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_fragment_program4; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_fragment_program_option; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_fragment_shader_interlock; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_framebuffer_blit; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_framebuffer_mixed_samples; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_framebuffer_multisample; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_framebuffer_multisample_coverage; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_generate_mipmap_sRGB; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_geometry_program4; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_geometry_shader4; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_geometry_shader_passthrough; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_gpu_multicast; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_gpu_program4; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_gpu_program5; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_gpu_program5_mem_extended; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_gpu_program_fp64; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_gpu_shader5; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_half_float; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_image_formats; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_instanced_arrays; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_internalformat_sample_query; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_light_max_exponent; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_multisample_coverage; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_multisample_filter_hint; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_non_square_matrices; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_occlusion_query; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_pack_subimage; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_packed_depth_stencil; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_packed_float; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_packed_float_linear; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_parameter_buffer_object; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_parameter_buffer_object2; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_path_rendering; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_path_rendering_shared_edge; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_pixel_buffer_object; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_pixel_data_range; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_platform_binary; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_point_sprite; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_polygon_mode; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_present_video; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_primitive_restart; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_read_depth; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_read_depth_stencil; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_read_stencil; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_register_combiners; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_register_combiners2; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_robustness_video_memory_purge; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_sRGB_formats; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_sample_locations; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_sample_mask_override_coverage; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_shader_atomic_counters; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_shader_atomic_float; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_shader_atomic_float64; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_shader_atomic_fp16_vector; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_shader_atomic_int64; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_shader_buffer_load; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_shader_noperspective_interpolation; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_shader_storage_buffer_object; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_shader_thread_group; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_shader_thread_shuffle; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_shadow_samplers_array; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_shadow_samplers_cube; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_stereo_view_rendering; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_tessellation_program5; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_texgen_emboss; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_texgen_reflection; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_texture_array; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_texture_barrier; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_texture_border_clamp; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_texture_compression_latc; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_texture_compression_s3tc; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_texture_compression_s3tc_update; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_texture_compression_vtc; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_texture_env_combine4; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_texture_expand_normal; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_texture_multisample; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_texture_npot_2D_mipmap; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_texture_rectangle; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_texture_rectangle_compressed; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_texture_shader; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_texture_shader2; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_texture_shader3; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_transform_feedback; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_transform_feedback2; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_uniform_buffer_unified_memory; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_vdpau_interop; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_vertex_array_range; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_vertex_array_range2; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_vertex_attrib_integer_64bit; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_vertex_buffer_unified_memory; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_vertex_program; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_vertex_program1_1; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_vertex_program2; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_vertex_program2_option; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_vertex_program3; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_vertex_program4; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_video_capture; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_viewport_array; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_viewport_array2; +GLEW_VAR_EXPORT GLboolean __GLEW_NV_viewport_swizzle; +GLEW_VAR_EXPORT GLboolean __GLEW_OES_byte_coordinates; +GLEW_VAR_EXPORT GLboolean __GLEW_OML_interlace; +GLEW_VAR_EXPORT GLboolean __GLEW_OML_resample; +GLEW_VAR_EXPORT GLboolean __GLEW_OML_subsample; +GLEW_VAR_EXPORT GLboolean __GLEW_OVR_multiview; +GLEW_VAR_EXPORT GLboolean __GLEW_OVR_multiview2; +GLEW_VAR_EXPORT GLboolean __GLEW_OVR_multiview_multisampled_render_to_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_PGI_misc_hints; +GLEW_VAR_EXPORT GLboolean __GLEW_PGI_vertex_hints; +GLEW_VAR_EXPORT GLboolean __GLEW_QCOM_alpha_test; +GLEW_VAR_EXPORT GLboolean __GLEW_QCOM_binning_control; +GLEW_VAR_EXPORT GLboolean __GLEW_QCOM_driver_control; +GLEW_VAR_EXPORT GLboolean __GLEW_QCOM_extended_get; +GLEW_VAR_EXPORT GLboolean __GLEW_QCOM_extended_get2; +GLEW_VAR_EXPORT GLboolean __GLEW_QCOM_framebuffer_foveated; +GLEW_VAR_EXPORT GLboolean __GLEW_QCOM_perfmon_global_mode; +GLEW_VAR_EXPORT GLboolean __GLEW_QCOM_shader_framebuffer_fetch_noncoherent; +GLEW_VAR_EXPORT GLboolean __GLEW_QCOM_tiled_rendering; +GLEW_VAR_EXPORT GLboolean __GLEW_QCOM_writeonly_rendering; +GLEW_VAR_EXPORT GLboolean __GLEW_REGAL_ES1_0_compatibility; +GLEW_VAR_EXPORT GLboolean __GLEW_REGAL_ES1_1_compatibility; +GLEW_VAR_EXPORT GLboolean __GLEW_REGAL_enable; +GLEW_VAR_EXPORT GLboolean __GLEW_REGAL_error_string; +GLEW_VAR_EXPORT GLboolean __GLEW_REGAL_extension_query; +GLEW_VAR_EXPORT GLboolean __GLEW_REGAL_log; +GLEW_VAR_EXPORT GLboolean __GLEW_REGAL_proc_address; +GLEW_VAR_EXPORT GLboolean __GLEW_REND_screen_coordinates; +GLEW_VAR_EXPORT GLboolean __GLEW_S3_s3tc; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIS_clip_band_hint; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIS_color_range; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIS_detail_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIS_fog_function; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIS_generate_mipmap; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIS_line_texgen; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIS_multisample; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIS_multitexture; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIS_pixel_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIS_point_line_texgen; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIS_shared_multisample; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIS_sharpen_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIS_texture4D; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIS_texture_border_clamp; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIS_texture_edge_clamp; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIS_texture_filter4; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIS_texture_lod; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIS_texture_select; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_async; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_async_histogram; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_async_pixel; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_bali_g_instruments; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_bali_r_instruments; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_bali_timer_instruments; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_blend_alpha_minmax; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_blend_cadd; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_blend_cmultiply; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_calligraphic_fragment; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_clipmap; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_color_matrix_accuracy; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_color_table_index_mode; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_complex_polar; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_convolution_accuracy; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_cube_map; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_cylinder_texgen; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_datapipe; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_decimation; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_depth_pass_instrument; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_depth_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_dvc; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_flush_raster; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_fog_blend; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_fog_factor_to_alpha; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_fog_layers; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_fog_offset; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_fog_patchy; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_fog_scale; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_fog_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_fragment_lighting_space; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_fragment_specular_lighting; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_fragments_instrument; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_framezoom; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_icc_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_igloo_interface; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_image_compression; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_impact_pixel_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_instrument_error; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_interlace; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_ir_instrument1; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_line_quality_hint; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_list_priority; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_mpeg1; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_mpeg2; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_nonlinear_lighting_pervertex; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_nurbs_eval; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_occlusion_instrument; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_packed_6bytes; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_pixel_texture; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_pixel_texture_bits; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_pixel_texture_lod; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_pixel_tiles; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_polynomial_ffd; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_quad_mesh; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_reference_plane; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_resample; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_scalebias_hint; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_shadow; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_shadow_ambient; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_slim; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_spotlight_cutoff; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_sprite; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_subdiv_patch; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_subsample; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_tag_sample_buffer; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_texture_add_env; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_texture_coordinate_clamp; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_texture_lod_bias; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_texture_mipmap_anisotropic; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_texture_multi_buffer; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_texture_phase; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_texture_range; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_texture_scale_bias; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_texture_supersample; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_vector_ops; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_vertex_array_object; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_vertex_preclip; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_vertex_preclip_hint; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_ycrcb; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_ycrcb_subsample; +GLEW_VAR_EXPORT GLboolean __GLEW_SGIX_ycrcba; +GLEW_VAR_EXPORT GLboolean __GLEW_SGI_color_matrix; +GLEW_VAR_EXPORT GLboolean __GLEW_SGI_color_table; +GLEW_VAR_EXPORT GLboolean __GLEW_SGI_complex; +GLEW_VAR_EXPORT GLboolean __GLEW_SGI_complex_type; +GLEW_VAR_EXPORT GLboolean __GLEW_SGI_fft; +GLEW_VAR_EXPORT GLboolean __GLEW_SGI_texture_color_table; +GLEW_VAR_EXPORT GLboolean __GLEW_SUNX_constant_data; +GLEW_VAR_EXPORT GLboolean __GLEW_SUN_convolution_border_modes; +GLEW_VAR_EXPORT GLboolean __GLEW_SUN_global_alpha; +GLEW_VAR_EXPORT GLboolean __GLEW_SUN_mesh_array; +GLEW_VAR_EXPORT GLboolean __GLEW_SUN_read_video_pixels; +GLEW_VAR_EXPORT GLboolean __GLEW_SUN_slice_accum; +GLEW_VAR_EXPORT GLboolean __GLEW_SUN_triangle_list; +GLEW_VAR_EXPORT GLboolean __GLEW_SUN_vertex; +GLEW_VAR_EXPORT GLboolean __GLEW_WIN_phong_shading; +GLEW_VAR_EXPORT GLboolean __GLEW_WIN_scene_markerXXX; +GLEW_VAR_EXPORT GLboolean __GLEW_WIN_specular_fog; +GLEW_VAR_EXPORT GLboolean __GLEW_WIN_swap_hint; +/* ------------------------------------------------------------------------- */ + +/* error codes */ +#define GLEW_OK 0 +#define GLEW_NO_ERROR 0 +#define GLEW_ERROR_NO_GL_VERSION 1 /* missing GL version */ +#define GLEW_ERROR_GL_VERSION_10_ONLY 2 /* Need at least OpenGL 1.1 */ +#define GLEW_ERROR_GLX_VERSION_11_ONLY 3 /* Need at least GLX 1.2 */ +#define GLEW_ERROR_NO_GLX_DISPLAY 4 /* Need GLX display for GLX support */ + +/* string codes */ +#define GLEW_VERSION 1 +#define GLEW_VERSION_MAJOR 2 +#define GLEW_VERSION_MINOR 3 +#define GLEW_VERSION_MICRO 4 + +/* ------------------------------------------------------------------------- */ + +/* GLEW version info */ + +/* +VERSION 2.1.0 +VERSION_MAJOR 2 +VERSION_MINOR 1 +VERSION_MICRO 0 +*/ + +/* API */ +GLEWAPI GLenum GLEWAPIENTRY glewInit (void); +GLEWAPI GLboolean GLEWAPIENTRY glewIsSupported (const char *name); +#define glewIsExtensionSupported(x) glewIsSupported(x) + +#ifndef GLEW_GET_VAR +#define GLEW_GET_VAR(x) (*(const GLboolean*)&x) +#endif + +#ifndef GLEW_GET_FUN +#define GLEW_GET_FUN(x) x +#endif + +GLEWAPI GLboolean glewExperimental; +GLEWAPI GLboolean GLEWAPIENTRY glewGetExtension (const char *name); +GLEWAPI const GLubyte * GLEWAPIENTRY glewGetErrorString (GLenum error); +GLEWAPI const GLubyte * GLEWAPIENTRY glewGetString (GLenum name); + +#ifdef __cplusplus +} +#endif + +#ifdef GLEW_APIENTRY_DEFINED +#undef GLEW_APIENTRY_DEFINED +#undef APIENTRY +#endif + +#ifdef GLEW_CALLBACK_DEFINED +#undef GLEW_CALLBACK_DEFINED +#undef CALLBACK +#endif + +#ifdef GLEW_WINGDIAPI_DEFINED +#undef GLEW_WINGDIAPI_DEFINED +#undef WINGDIAPI +#endif + +#undef GLAPI +/* #undef GLEWAPI */ + +#endif /* __glew_h__ */ diff --git a/Source/include/glxew.h b/Source/include/glxew.h new file mode 100644 index 0000000..7e39c2f --- /dev/null +++ b/Source/include/glxew.h @@ -0,0 +1,1775 @@ +/* +** The OpenGL Extension Wrangler Library +** Copyright (C) 2008-2017, Nigel Stewart +** Copyright (C) 2002-2008, Milan Ikits +** Copyright (C) 2002-2008, Marcelo E. Magallon +** Copyright (C) 2002, Lev Povalahev +** All rights reserved. +** +** Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are met: +** +** * Redistributions of source code must retain the above copyright notice, +** this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright notice, +** this list of conditions and the following disclaimer in the documentation +** and/or other materials provided with the distribution. +** * The name of the author may be used to endorse or promote products +** derived from this software without specific prior written permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +** THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/* + * Mesa 3-D graphics library + * Version: 7.0 + * + * Copyright (C) 1999-2007 Brian Paul All Rights Reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN + * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + +/* +** Copyright (c) 2007 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +#ifndef __glxew_h__ +#define __glxew_h__ +#define __GLXEW_H__ + +#ifdef __glxext_h_ +#error glxext.h included before glxew.h +#endif + +#if defined(GLX_H) || defined(__GLX_glx_h__) || defined(__glx_h__) +#error glx.h included before glxew.h +#endif + +#define __glxext_h_ + +#define GLX_H +#define __GLX_glx_h__ +#define __glx_h__ + +#include +#include +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + +/* ---------------------------- GLX_VERSION_1_0 --------------------------- */ + +#ifndef GLX_VERSION_1_0 +#define GLX_VERSION_1_0 1 + +#define GLX_USE_GL 1 +#define GLX_BUFFER_SIZE 2 +#define GLX_LEVEL 3 +#define GLX_RGBA 4 +#define GLX_DOUBLEBUFFER 5 +#define GLX_STEREO 6 +#define GLX_AUX_BUFFERS 7 +#define GLX_RED_SIZE 8 +#define GLX_GREEN_SIZE 9 +#define GLX_BLUE_SIZE 10 +#define GLX_ALPHA_SIZE 11 +#define GLX_DEPTH_SIZE 12 +#define GLX_STENCIL_SIZE 13 +#define GLX_ACCUM_RED_SIZE 14 +#define GLX_ACCUM_GREEN_SIZE 15 +#define GLX_ACCUM_BLUE_SIZE 16 +#define GLX_ACCUM_ALPHA_SIZE 17 +#define GLX_BAD_SCREEN 1 +#define GLX_BAD_ATTRIBUTE 2 +#define GLX_NO_EXTENSION 3 +#define GLX_BAD_VISUAL 4 +#define GLX_BAD_CONTEXT 5 +#define GLX_BAD_VALUE 6 +#define GLX_BAD_ENUM 7 + +typedef XID GLXDrawable; +typedef XID GLXPixmap; +#ifdef __sun +typedef struct __glXContextRec *GLXContext; +#else +typedef struct __GLXcontextRec *GLXContext; +#endif + +typedef unsigned int GLXVideoDeviceNV; + +extern Bool glXQueryExtension (Display *dpy, int *errorBase, int *eventBase); +extern Bool glXQueryVersion (Display *dpy, int *major, int *minor); +extern int glXGetConfig (Display *dpy, XVisualInfo *vis, int attrib, int *value); +extern XVisualInfo* glXChooseVisual (Display *dpy, int screen, int *attribList); +extern GLXPixmap glXCreateGLXPixmap (Display *dpy, XVisualInfo *vis, Pixmap pixmap); +extern void glXDestroyGLXPixmap (Display *dpy, GLXPixmap pix); +extern GLXContext glXCreateContext (Display *dpy, XVisualInfo *vis, GLXContext shareList, Bool direct); +extern void glXDestroyContext (Display *dpy, GLXContext ctx); +extern Bool glXIsDirect (Display *dpy, GLXContext ctx); +extern void glXCopyContext (Display *dpy, GLXContext src, GLXContext dst, GLulong mask); +extern Bool glXMakeCurrent (Display *dpy, GLXDrawable drawable, GLXContext ctx); +extern GLXContext glXGetCurrentContext (void); +extern GLXDrawable glXGetCurrentDrawable (void); +extern void glXWaitGL (void); +extern void glXWaitX (void); +extern void glXSwapBuffers (Display *dpy, GLXDrawable drawable); +extern void glXUseXFont (Font font, int first, int count, int listBase); + +#define GLXEW_VERSION_1_0 GLXEW_GET_VAR(__GLXEW_VERSION_1_0) + +#endif /* GLX_VERSION_1_0 */ + +/* ---------------------------- GLX_VERSION_1_1 --------------------------- */ + +#ifndef GLX_VERSION_1_1 +#define GLX_VERSION_1_1 + +#define GLX_VENDOR 0x1 +#define GLX_VERSION 0x2 +#define GLX_EXTENSIONS 0x3 + +extern const char* glXQueryExtensionsString (Display *dpy, int screen); +extern const char* glXGetClientString (Display *dpy, int name); +extern const char* glXQueryServerString (Display *dpy, int screen, int name); + +#define GLXEW_VERSION_1_1 GLXEW_GET_VAR(__GLXEW_VERSION_1_1) + +#endif /* GLX_VERSION_1_1 */ + +/* ---------------------------- GLX_VERSION_1_2 ---------------------------- */ + +#ifndef GLX_VERSION_1_2 +#define GLX_VERSION_1_2 1 + +typedef Display* ( * PFNGLXGETCURRENTDISPLAYPROC) (void); + +#define glXGetCurrentDisplay GLXEW_GET_FUN(__glewXGetCurrentDisplay) + +#define GLXEW_VERSION_1_2 GLXEW_GET_VAR(__GLXEW_VERSION_1_2) + +#endif /* GLX_VERSION_1_2 */ + +/* ---------------------------- GLX_VERSION_1_3 ---------------------------- */ + +#ifndef GLX_VERSION_1_3 +#define GLX_VERSION_1_3 1 + +#define GLX_FRONT_LEFT_BUFFER_BIT 0x00000001 +#define GLX_RGBA_BIT 0x00000001 +#define GLX_WINDOW_BIT 0x00000001 +#define GLX_COLOR_INDEX_BIT 0x00000002 +#define GLX_FRONT_RIGHT_BUFFER_BIT 0x00000002 +#define GLX_PIXMAP_BIT 0x00000002 +#define GLX_BACK_LEFT_BUFFER_BIT 0x00000004 +#define GLX_PBUFFER_BIT 0x00000004 +#define GLX_BACK_RIGHT_BUFFER_BIT 0x00000008 +#define GLX_AUX_BUFFERS_BIT 0x00000010 +#define GLX_CONFIG_CAVEAT 0x20 +#define GLX_DEPTH_BUFFER_BIT 0x00000020 +#define GLX_X_VISUAL_TYPE 0x22 +#define GLX_TRANSPARENT_TYPE 0x23 +#define GLX_TRANSPARENT_INDEX_VALUE 0x24 +#define GLX_TRANSPARENT_RED_VALUE 0x25 +#define GLX_TRANSPARENT_GREEN_VALUE 0x26 +#define GLX_TRANSPARENT_BLUE_VALUE 0x27 +#define GLX_TRANSPARENT_ALPHA_VALUE 0x28 +#define GLX_STENCIL_BUFFER_BIT 0x00000040 +#define GLX_ACCUM_BUFFER_BIT 0x00000080 +#define GLX_NONE 0x8000 +#define GLX_SLOW_CONFIG 0x8001 +#define GLX_TRUE_COLOR 0x8002 +#define GLX_DIRECT_COLOR 0x8003 +#define GLX_PSEUDO_COLOR 0x8004 +#define GLX_STATIC_COLOR 0x8005 +#define GLX_GRAY_SCALE 0x8006 +#define GLX_STATIC_GRAY 0x8007 +#define GLX_TRANSPARENT_RGB 0x8008 +#define GLX_TRANSPARENT_INDEX 0x8009 +#define GLX_VISUAL_ID 0x800B +#define GLX_SCREEN 0x800C +#define GLX_NON_CONFORMANT_CONFIG 0x800D +#define GLX_DRAWABLE_TYPE 0x8010 +#define GLX_RENDER_TYPE 0x8011 +#define GLX_X_RENDERABLE 0x8012 +#define GLX_FBCONFIG_ID 0x8013 +#define GLX_RGBA_TYPE 0x8014 +#define GLX_COLOR_INDEX_TYPE 0x8015 +#define GLX_MAX_PBUFFER_WIDTH 0x8016 +#define GLX_MAX_PBUFFER_HEIGHT 0x8017 +#define GLX_MAX_PBUFFER_PIXELS 0x8018 +#define GLX_PRESERVED_CONTENTS 0x801B +#define GLX_LARGEST_PBUFFER 0x801C +#define GLX_WIDTH 0x801D +#define GLX_HEIGHT 0x801E +#define GLX_EVENT_MASK 0x801F +#define GLX_DAMAGED 0x8020 +#define GLX_SAVED 0x8021 +#define GLX_WINDOW 0x8022 +#define GLX_PBUFFER 0x8023 +#define GLX_PBUFFER_HEIGHT 0x8040 +#define GLX_PBUFFER_WIDTH 0x8041 +#define GLX_PBUFFER_CLOBBER_MASK 0x08000000 +#define GLX_DONT_CARE 0xFFFFFFFF + +typedef XID GLXFBConfigID; +typedef XID GLXPbuffer; +typedef XID GLXWindow; +typedef struct __GLXFBConfigRec *GLXFBConfig; + +typedef struct { + int event_type; + int draw_type; + unsigned long serial; + Bool send_event; + Display *display; + GLXDrawable drawable; + unsigned int buffer_mask; + unsigned int aux_buffer; + int x, y; + int width, height; + int count; +} GLXPbufferClobberEvent; +typedef union __GLXEvent { + GLXPbufferClobberEvent glxpbufferclobber; + long pad[24]; +} GLXEvent; + +typedef GLXFBConfig* ( * PFNGLXCHOOSEFBCONFIGPROC) (Display *dpy, int screen, const int *attrib_list, int *nelements); +typedef GLXContext ( * PFNGLXCREATENEWCONTEXTPROC) (Display *dpy, GLXFBConfig config, int render_type, GLXContext share_list, Bool direct); +typedef GLXPbuffer ( * PFNGLXCREATEPBUFFERPROC) (Display *dpy, GLXFBConfig config, const int *attrib_list); +typedef GLXPixmap ( * PFNGLXCREATEPIXMAPPROC) (Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attrib_list); +typedef GLXWindow ( * PFNGLXCREATEWINDOWPROC) (Display *dpy, GLXFBConfig config, Window win, const int *attrib_list); +typedef void ( * PFNGLXDESTROYPBUFFERPROC) (Display *dpy, GLXPbuffer pbuf); +typedef void ( * PFNGLXDESTROYPIXMAPPROC) (Display *dpy, GLXPixmap pixmap); +typedef void ( * PFNGLXDESTROYWINDOWPROC) (Display *dpy, GLXWindow win); +typedef GLXDrawable ( * PFNGLXGETCURRENTREADDRAWABLEPROC) (void); +typedef int ( * PFNGLXGETFBCONFIGATTRIBPROC) (Display *dpy, GLXFBConfig config, int attribute, int *value); +typedef GLXFBConfig* ( * PFNGLXGETFBCONFIGSPROC) (Display *dpy, int screen, int *nelements); +typedef void ( * PFNGLXGETSELECTEDEVENTPROC) (Display *dpy, GLXDrawable draw, unsigned long *event_mask); +typedef XVisualInfo* ( * PFNGLXGETVISUALFROMFBCONFIGPROC) (Display *dpy, GLXFBConfig config); +typedef Bool ( * PFNGLXMAKECONTEXTCURRENTPROC) (Display *display, GLXDrawable draw, GLXDrawable read, GLXContext ctx); +typedef int ( * PFNGLXQUERYCONTEXTPROC) (Display *dpy, GLXContext ctx, int attribute, int *value); +typedef void ( * PFNGLXQUERYDRAWABLEPROC) (Display *dpy, GLXDrawable draw, int attribute, unsigned int *value); +typedef void ( * PFNGLXSELECTEVENTPROC) (Display *dpy, GLXDrawable draw, unsigned long event_mask); + +#define glXChooseFBConfig GLXEW_GET_FUN(__glewXChooseFBConfig) +#define glXCreateNewContext GLXEW_GET_FUN(__glewXCreateNewContext) +#define glXCreatePbuffer GLXEW_GET_FUN(__glewXCreatePbuffer) +#define glXCreatePixmap GLXEW_GET_FUN(__glewXCreatePixmap) +#define glXCreateWindow GLXEW_GET_FUN(__glewXCreateWindow) +#define glXDestroyPbuffer GLXEW_GET_FUN(__glewXDestroyPbuffer) +#define glXDestroyPixmap GLXEW_GET_FUN(__glewXDestroyPixmap) +#define glXDestroyWindow GLXEW_GET_FUN(__glewXDestroyWindow) +#define glXGetCurrentReadDrawable GLXEW_GET_FUN(__glewXGetCurrentReadDrawable) +#define glXGetFBConfigAttrib GLXEW_GET_FUN(__glewXGetFBConfigAttrib) +#define glXGetFBConfigs GLXEW_GET_FUN(__glewXGetFBConfigs) +#define glXGetSelectedEvent GLXEW_GET_FUN(__glewXGetSelectedEvent) +#define glXGetVisualFromFBConfig GLXEW_GET_FUN(__glewXGetVisualFromFBConfig) +#define glXMakeContextCurrent GLXEW_GET_FUN(__glewXMakeContextCurrent) +#define glXQueryContext GLXEW_GET_FUN(__glewXQueryContext) +#define glXQueryDrawable GLXEW_GET_FUN(__glewXQueryDrawable) +#define glXSelectEvent GLXEW_GET_FUN(__glewXSelectEvent) + +#define GLXEW_VERSION_1_3 GLXEW_GET_VAR(__GLXEW_VERSION_1_3) + +#endif /* GLX_VERSION_1_3 */ + +/* ---------------------------- GLX_VERSION_1_4 ---------------------------- */ + +#ifndef GLX_VERSION_1_4 +#define GLX_VERSION_1_4 1 + +#define GLX_SAMPLE_BUFFERS 100000 +#define GLX_SAMPLES 100001 + +extern void ( * glXGetProcAddress (const GLubyte *procName)) (void); + +#define GLXEW_VERSION_1_4 GLXEW_GET_VAR(__GLXEW_VERSION_1_4) + +#endif /* GLX_VERSION_1_4 */ + +/* -------------------------- GLX_3DFX_multisample ------------------------- */ + +#ifndef GLX_3DFX_multisample +#define GLX_3DFX_multisample 1 + +#define GLX_SAMPLE_BUFFERS_3DFX 0x8050 +#define GLX_SAMPLES_3DFX 0x8051 + +#define GLXEW_3DFX_multisample GLXEW_GET_VAR(__GLXEW_3DFX_multisample) + +#endif /* GLX_3DFX_multisample */ + +/* ------------------------ GLX_AMD_gpu_association ------------------------ */ + +#ifndef GLX_AMD_gpu_association +#define GLX_AMD_gpu_association 1 + +#define GLX_GPU_VENDOR_AMD 0x1F00 +#define GLX_GPU_RENDERER_STRING_AMD 0x1F01 +#define GLX_GPU_OPENGL_VERSION_STRING_AMD 0x1F02 +#define GLX_GPU_FASTEST_TARGET_GPUS_AMD 0x21A2 +#define GLX_GPU_RAM_AMD 0x21A3 +#define GLX_GPU_CLOCK_AMD 0x21A4 +#define GLX_GPU_NUM_PIPES_AMD 0x21A5 +#define GLX_GPU_NUM_SIMD_AMD 0x21A6 +#define GLX_GPU_NUM_RB_AMD 0x21A7 +#define GLX_GPU_NUM_SPI_AMD 0x21A8 + +typedef void ( * PFNGLXBLITCONTEXTFRAMEBUFFERAMDPROC) (GLXContext dstCtx, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef GLXContext ( * PFNGLXCREATEASSOCIATEDCONTEXTAMDPROC) (unsigned int id, GLXContext share_list); +typedef GLXContext ( * PFNGLXCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC) (unsigned int id, GLXContext share_context, const int* attribList); +typedef Bool ( * PFNGLXDELETEASSOCIATEDCONTEXTAMDPROC) (GLXContext ctx); +typedef unsigned int ( * PFNGLXGETCONTEXTGPUIDAMDPROC) (GLXContext ctx); +typedef GLXContext ( * PFNGLXGETCURRENTASSOCIATEDCONTEXTAMDPROC) (void); +typedef unsigned int ( * PFNGLXGETGPUIDSAMDPROC) (unsigned int maxCount, unsigned int* ids); +typedef int ( * PFNGLXGETGPUINFOAMDPROC) (unsigned int id, int property, GLenum dataType, unsigned int size, void* data); +typedef Bool ( * PFNGLXMAKEASSOCIATEDCONTEXTCURRENTAMDPROC) (GLXContext ctx); + +#define glXBlitContextFramebufferAMD GLXEW_GET_FUN(__glewXBlitContextFramebufferAMD) +#define glXCreateAssociatedContextAMD GLXEW_GET_FUN(__glewXCreateAssociatedContextAMD) +#define glXCreateAssociatedContextAttribsAMD GLXEW_GET_FUN(__glewXCreateAssociatedContextAttribsAMD) +#define glXDeleteAssociatedContextAMD GLXEW_GET_FUN(__glewXDeleteAssociatedContextAMD) +#define glXGetContextGPUIDAMD GLXEW_GET_FUN(__glewXGetContextGPUIDAMD) +#define glXGetCurrentAssociatedContextAMD GLXEW_GET_FUN(__glewXGetCurrentAssociatedContextAMD) +#define glXGetGPUIDsAMD GLXEW_GET_FUN(__glewXGetGPUIDsAMD) +#define glXGetGPUInfoAMD GLXEW_GET_FUN(__glewXGetGPUInfoAMD) +#define glXMakeAssociatedContextCurrentAMD GLXEW_GET_FUN(__glewXMakeAssociatedContextCurrentAMD) + +#define GLXEW_AMD_gpu_association GLXEW_GET_VAR(__GLXEW_AMD_gpu_association) + +#endif /* GLX_AMD_gpu_association */ + +/* --------------------- GLX_ARB_context_flush_control --------------------- */ + +#ifndef GLX_ARB_context_flush_control +#define GLX_ARB_context_flush_control 1 + +#define GLXEW_ARB_context_flush_control GLXEW_GET_VAR(__GLXEW_ARB_context_flush_control) + +#endif /* GLX_ARB_context_flush_control */ + +/* ------------------------- GLX_ARB_create_context ------------------------ */ + +#ifndef GLX_ARB_create_context +#define GLX_ARB_create_context 1 + +#define GLX_CONTEXT_DEBUG_BIT_ARB 0x0001 +#define GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB 0x0002 +#define GLX_CONTEXT_MAJOR_VERSION_ARB 0x2091 +#define GLX_CONTEXT_MINOR_VERSION_ARB 0x2092 +#define GLX_CONTEXT_FLAGS_ARB 0x2094 + +typedef GLXContext ( * PFNGLXCREATECONTEXTATTRIBSARBPROC) (Display* dpy, GLXFBConfig config, GLXContext share_context, Bool direct, const int *attrib_list); + +#define glXCreateContextAttribsARB GLXEW_GET_FUN(__glewXCreateContextAttribsARB) + +#define GLXEW_ARB_create_context GLXEW_GET_VAR(__GLXEW_ARB_create_context) + +#endif /* GLX_ARB_create_context */ + +/* -------------------- GLX_ARB_create_context_no_error -------------------- */ + +#ifndef GLX_ARB_create_context_no_error +#define GLX_ARB_create_context_no_error 1 + +#define GLXEW_ARB_create_context_no_error GLXEW_GET_VAR(__GLXEW_ARB_create_context_no_error) + +#endif /* GLX_ARB_create_context_no_error */ + +/* --------------------- GLX_ARB_create_context_profile -------------------- */ + +#ifndef GLX_ARB_create_context_profile +#define GLX_ARB_create_context_profile 1 + +#define GLX_CONTEXT_CORE_PROFILE_BIT_ARB 0x00000001 +#define GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB 0x00000002 +#define GLX_CONTEXT_PROFILE_MASK_ARB 0x9126 + +#define GLXEW_ARB_create_context_profile GLXEW_GET_VAR(__GLXEW_ARB_create_context_profile) + +#endif /* GLX_ARB_create_context_profile */ + +/* ------------------- GLX_ARB_create_context_robustness ------------------- */ + +#ifndef GLX_ARB_create_context_robustness +#define GLX_ARB_create_context_robustness 1 + +#define GLX_CONTEXT_ROBUST_ACCESS_BIT_ARB 0x00000004 +#define GLX_LOSE_CONTEXT_ON_RESET_ARB 0x8252 +#define GLX_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB 0x8256 +#define GLX_NO_RESET_NOTIFICATION_ARB 0x8261 + +#define GLXEW_ARB_create_context_robustness GLXEW_GET_VAR(__GLXEW_ARB_create_context_robustness) + +#endif /* GLX_ARB_create_context_robustness */ + +/* ------------------------- GLX_ARB_fbconfig_float ------------------------ */ + +#ifndef GLX_ARB_fbconfig_float +#define GLX_ARB_fbconfig_float 1 + +#define GLX_RGBA_FLOAT_BIT_ARB 0x00000004 +#define GLX_RGBA_FLOAT_TYPE_ARB 0x20B9 + +#define GLXEW_ARB_fbconfig_float GLXEW_GET_VAR(__GLXEW_ARB_fbconfig_float) + +#endif /* GLX_ARB_fbconfig_float */ + +/* ------------------------ GLX_ARB_framebuffer_sRGB ----------------------- */ + +#ifndef GLX_ARB_framebuffer_sRGB +#define GLX_ARB_framebuffer_sRGB 1 + +#define GLX_FRAMEBUFFER_SRGB_CAPABLE_ARB 0x20B2 + +#define GLXEW_ARB_framebuffer_sRGB GLXEW_GET_VAR(__GLXEW_ARB_framebuffer_sRGB) + +#endif /* GLX_ARB_framebuffer_sRGB */ + +/* ------------------------ GLX_ARB_get_proc_address ----------------------- */ + +#ifndef GLX_ARB_get_proc_address +#define GLX_ARB_get_proc_address 1 + +extern void ( * glXGetProcAddressARB (const GLubyte *procName)) (void); + +#define GLXEW_ARB_get_proc_address GLXEW_GET_VAR(__GLXEW_ARB_get_proc_address) + +#endif /* GLX_ARB_get_proc_address */ + +/* -------------------------- GLX_ARB_multisample -------------------------- */ + +#ifndef GLX_ARB_multisample +#define GLX_ARB_multisample 1 + +#define GLX_SAMPLE_BUFFERS_ARB 100000 +#define GLX_SAMPLES_ARB 100001 + +#define GLXEW_ARB_multisample GLXEW_GET_VAR(__GLXEW_ARB_multisample) + +#endif /* GLX_ARB_multisample */ + +/* ---------------- GLX_ARB_robustness_application_isolation --------------- */ + +#ifndef GLX_ARB_robustness_application_isolation +#define GLX_ARB_robustness_application_isolation 1 + +#define GLX_CONTEXT_RESET_ISOLATION_BIT_ARB 0x00000008 + +#define GLXEW_ARB_robustness_application_isolation GLXEW_GET_VAR(__GLXEW_ARB_robustness_application_isolation) + +#endif /* GLX_ARB_robustness_application_isolation */ + +/* ---------------- GLX_ARB_robustness_share_group_isolation --------------- */ + +#ifndef GLX_ARB_robustness_share_group_isolation +#define GLX_ARB_robustness_share_group_isolation 1 + +#define GLX_CONTEXT_RESET_ISOLATION_BIT_ARB 0x00000008 + +#define GLXEW_ARB_robustness_share_group_isolation GLXEW_GET_VAR(__GLXEW_ARB_robustness_share_group_isolation) + +#endif /* GLX_ARB_robustness_share_group_isolation */ + +/* ---------------------- GLX_ARB_vertex_buffer_object --------------------- */ + +#ifndef GLX_ARB_vertex_buffer_object +#define GLX_ARB_vertex_buffer_object 1 + +#define GLX_CONTEXT_ALLOW_BUFFER_BYTE_ORDER_MISMATCH_ARB 0x2095 + +#define GLXEW_ARB_vertex_buffer_object GLXEW_GET_VAR(__GLXEW_ARB_vertex_buffer_object) + +#endif /* GLX_ARB_vertex_buffer_object */ + +/* ----------------------- GLX_ATI_pixel_format_float ---------------------- */ + +#ifndef GLX_ATI_pixel_format_float +#define GLX_ATI_pixel_format_float 1 + +#define GLX_RGBA_FLOAT_ATI_BIT 0x00000100 + +#define GLXEW_ATI_pixel_format_float GLXEW_GET_VAR(__GLXEW_ATI_pixel_format_float) + +#endif /* GLX_ATI_pixel_format_float */ + +/* ------------------------- GLX_ATI_render_texture ------------------------ */ + +#ifndef GLX_ATI_render_texture +#define GLX_ATI_render_texture 1 + +#define GLX_BIND_TO_TEXTURE_RGB_ATI 0x9800 +#define GLX_BIND_TO_TEXTURE_RGBA_ATI 0x9801 +#define GLX_TEXTURE_FORMAT_ATI 0x9802 +#define GLX_TEXTURE_TARGET_ATI 0x9803 +#define GLX_MIPMAP_TEXTURE_ATI 0x9804 +#define GLX_TEXTURE_RGB_ATI 0x9805 +#define GLX_TEXTURE_RGBA_ATI 0x9806 +#define GLX_NO_TEXTURE_ATI 0x9807 +#define GLX_TEXTURE_CUBE_MAP_ATI 0x9808 +#define GLX_TEXTURE_1D_ATI 0x9809 +#define GLX_TEXTURE_2D_ATI 0x980A +#define GLX_MIPMAP_LEVEL_ATI 0x980B +#define GLX_CUBE_MAP_FACE_ATI 0x980C +#define GLX_TEXTURE_CUBE_MAP_POSITIVE_X_ATI 0x980D +#define GLX_TEXTURE_CUBE_MAP_NEGATIVE_X_ATI 0x980E +#define GLX_TEXTURE_CUBE_MAP_POSITIVE_Y_ATI 0x980F +#define GLX_TEXTURE_CUBE_MAP_NEGATIVE_Y_ATI 0x9810 +#define GLX_TEXTURE_CUBE_MAP_POSITIVE_Z_ATI 0x9811 +#define GLX_TEXTURE_CUBE_MAP_NEGATIVE_Z_ATI 0x9812 +#define GLX_FRONT_LEFT_ATI 0x9813 +#define GLX_FRONT_RIGHT_ATI 0x9814 +#define GLX_BACK_LEFT_ATI 0x9815 +#define GLX_BACK_RIGHT_ATI 0x9816 +#define GLX_AUX0_ATI 0x9817 +#define GLX_AUX1_ATI 0x9818 +#define GLX_AUX2_ATI 0x9819 +#define GLX_AUX3_ATI 0x981A +#define GLX_AUX4_ATI 0x981B +#define GLX_AUX5_ATI 0x981C +#define GLX_AUX6_ATI 0x981D +#define GLX_AUX7_ATI 0x981E +#define GLX_AUX8_ATI 0x981F +#define GLX_AUX9_ATI 0x9820 +#define GLX_BIND_TO_TEXTURE_LUMINANCE_ATI 0x9821 +#define GLX_BIND_TO_TEXTURE_INTENSITY_ATI 0x9822 + +typedef void ( * PFNGLXBINDTEXIMAGEATIPROC) (Display *dpy, GLXPbuffer pbuf, int buffer); +typedef void ( * PFNGLXDRAWABLEATTRIBATIPROC) (Display *dpy, GLXDrawable draw, const int *attrib_list); +typedef void ( * PFNGLXRELEASETEXIMAGEATIPROC) (Display *dpy, GLXPbuffer pbuf, int buffer); + +#define glXBindTexImageATI GLXEW_GET_FUN(__glewXBindTexImageATI) +#define glXDrawableAttribATI GLXEW_GET_FUN(__glewXDrawableAttribATI) +#define glXReleaseTexImageATI GLXEW_GET_FUN(__glewXReleaseTexImageATI) + +#define GLXEW_ATI_render_texture GLXEW_GET_VAR(__GLXEW_ATI_render_texture) + +#endif /* GLX_ATI_render_texture */ + +/* --------------------------- GLX_EXT_buffer_age -------------------------- */ + +#ifndef GLX_EXT_buffer_age +#define GLX_EXT_buffer_age 1 + +#define GLX_BACK_BUFFER_AGE_EXT 0x20F4 + +#define GLXEW_EXT_buffer_age GLXEW_GET_VAR(__GLXEW_EXT_buffer_age) + +#endif /* GLX_EXT_buffer_age */ + +/* ------------------- GLX_EXT_create_context_es2_profile ------------------ */ + +#ifndef GLX_EXT_create_context_es2_profile +#define GLX_EXT_create_context_es2_profile 1 + +#define GLX_CONTEXT_ES2_PROFILE_BIT_EXT 0x00000004 + +#define GLXEW_EXT_create_context_es2_profile GLXEW_GET_VAR(__GLXEW_EXT_create_context_es2_profile) + +#endif /* GLX_EXT_create_context_es2_profile */ + +/* ------------------- GLX_EXT_create_context_es_profile ------------------- */ + +#ifndef GLX_EXT_create_context_es_profile +#define GLX_EXT_create_context_es_profile 1 + +#define GLX_CONTEXT_ES_PROFILE_BIT_EXT 0x00000004 + +#define GLXEW_EXT_create_context_es_profile GLXEW_GET_VAR(__GLXEW_EXT_create_context_es_profile) + +#endif /* GLX_EXT_create_context_es_profile */ + +/* --------------------- GLX_EXT_fbconfig_packed_float --------------------- */ + +#ifndef GLX_EXT_fbconfig_packed_float +#define GLX_EXT_fbconfig_packed_float 1 + +#define GLX_RGBA_UNSIGNED_FLOAT_BIT_EXT 0x00000008 +#define GLX_RGBA_UNSIGNED_FLOAT_TYPE_EXT 0x20B1 + +#define GLXEW_EXT_fbconfig_packed_float GLXEW_GET_VAR(__GLXEW_EXT_fbconfig_packed_float) + +#endif /* GLX_EXT_fbconfig_packed_float */ + +/* ------------------------ GLX_EXT_framebuffer_sRGB ----------------------- */ + +#ifndef GLX_EXT_framebuffer_sRGB +#define GLX_EXT_framebuffer_sRGB 1 + +#define GLX_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x20B2 + +#define GLXEW_EXT_framebuffer_sRGB GLXEW_GET_VAR(__GLXEW_EXT_framebuffer_sRGB) + +#endif /* GLX_EXT_framebuffer_sRGB */ + +/* ------------------------- GLX_EXT_import_context ------------------------ */ + +#ifndef GLX_EXT_import_context +#define GLX_EXT_import_context 1 + +#define GLX_SHARE_CONTEXT_EXT 0x800A +#define GLX_VISUAL_ID_EXT 0x800B +#define GLX_SCREEN_EXT 0x800C + +typedef XID GLXContextID; + +typedef void ( * PFNGLXFREECONTEXTEXTPROC) (Display* dpy, GLXContext context); +typedef GLXContextID ( * PFNGLXGETCONTEXTIDEXTPROC) (const GLXContext context); +typedef GLXContext ( * PFNGLXIMPORTCONTEXTEXTPROC) (Display* dpy, GLXContextID contextID); +typedef int ( * PFNGLXQUERYCONTEXTINFOEXTPROC) (Display* dpy, GLXContext context, int attribute,int *value); + +#define glXFreeContextEXT GLXEW_GET_FUN(__glewXFreeContextEXT) +#define glXGetContextIDEXT GLXEW_GET_FUN(__glewXGetContextIDEXT) +#define glXImportContextEXT GLXEW_GET_FUN(__glewXImportContextEXT) +#define glXQueryContextInfoEXT GLXEW_GET_FUN(__glewXQueryContextInfoEXT) + +#define GLXEW_EXT_import_context GLXEW_GET_VAR(__GLXEW_EXT_import_context) + +#endif /* GLX_EXT_import_context */ + +/* ---------------------------- GLX_EXT_libglvnd --------------------------- */ + +#ifndef GLX_EXT_libglvnd +#define GLX_EXT_libglvnd 1 + +#define GLX_VENDOR_NAMES_EXT 0x20F6 + +#define GLXEW_EXT_libglvnd GLXEW_GET_VAR(__GLXEW_EXT_libglvnd) + +#endif /* GLX_EXT_libglvnd */ + +/* -------------------------- GLX_EXT_scene_marker ------------------------- */ + +#ifndef GLX_EXT_scene_marker +#define GLX_EXT_scene_marker 1 + +#define GLXEW_EXT_scene_marker GLXEW_GET_VAR(__GLXEW_EXT_scene_marker) + +#endif /* GLX_EXT_scene_marker */ + +/* -------------------------- GLX_EXT_stereo_tree -------------------------- */ + +#ifndef GLX_EXT_stereo_tree +#define GLX_EXT_stereo_tree 1 + +#define GLX_STEREO_NOTIFY_EXT 0x00000000 +#define GLX_STEREO_NOTIFY_MASK_EXT 0x00000001 +#define GLX_STEREO_TREE_EXT 0x20F5 + +#define GLXEW_EXT_stereo_tree GLXEW_GET_VAR(__GLXEW_EXT_stereo_tree) + +#endif /* GLX_EXT_stereo_tree */ + +/* -------------------------- GLX_EXT_swap_control ------------------------- */ + +#ifndef GLX_EXT_swap_control +#define GLX_EXT_swap_control 1 + +#define GLX_SWAP_INTERVAL_EXT 0x20F1 +#define GLX_MAX_SWAP_INTERVAL_EXT 0x20F2 + +typedef void ( * PFNGLXSWAPINTERVALEXTPROC) (Display* dpy, GLXDrawable drawable, int interval); + +#define glXSwapIntervalEXT GLXEW_GET_FUN(__glewXSwapIntervalEXT) + +#define GLXEW_EXT_swap_control GLXEW_GET_VAR(__GLXEW_EXT_swap_control) + +#endif /* GLX_EXT_swap_control */ + +/* ----------------------- GLX_EXT_swap_control_tear ----------------------- */ + +#ifndef GLX_EXT_swap_control_tear +#define GLX_EXT_swap_control_tear 1 + +#define GLX_LATE_SWAPS_TEAR_EXT 0x20F3 + +#define GLXEW_EXT_swap_control_tear GLXEW_GET_VAR(__GLXEW_EXT_swap_control_tear) + +#endif /* GLX_EXT_swap_control_tear */ + +/* ---------------------- GLX_EXT_texture_from_pixmap ---------------------- */ + +#ifndef GLX_EXT_texture_from_pixmap +#define GLX_EXT_texture_from_pixmap 1 + +#define GLX_TEXTURE_1D_BIT_EXT 0x00000001 +#define GLX_TEXTURE_2D_BIT_EXT 0x00000002 +#define GLX_TEXTURE_RECTANGLE_BIT_EXT 0x00000004 +#define GLX_BIND_TO_TEXTURE_RGB_EXT 0x20D0 +#define GLX_BIND_TO_TEXTURE_RGBA_EXT 0x20D1 +#define GLX_BIND_TO_MIPMAP_TEXTURE_EXT 0x20D2 +#define GLX_BIND_TO_TEXTURE_TARGETS_EXT 0x20D3 +#define GLX_Y_INVERTED_EXT 0x20D4 +#define GLX_TEXTURE_FORMAT_EXT 0x20D5 +#define GLX_TEXTURE_TARGET_EXT 0x20D6 +#define GLX_MIPMAP_TEXTURE_EXT 0x20D7 +#define GLX_TEXTURE_FORMAT_NONE_EXT 0x20D8 +#define GLX_TEXTURE_FORMAT_RGB_EXT 0x20D9 +#define GLX_TEXTURE_FORMAT_RGBA_EXT 0x20DA +#define GLX_TEXTURE_1D_EXT 0x20DB +#define GLX_TEXTURE_2D_EXT 0x20DC +#define GLX_TEXTURE_RECTANGLE_EXT 0x20DD +#define GLX_FRONT_LEFT_EXT 0x20DE +#define GLX_FRONT_RIGHT_EXT 0x20DF +#define GLX_BACK_LEFT_EXT 0x20E0 +#define GLX_BACK_RIGHT_EXT 0x20E1 +#define GLX_AUX0_EXT 0x20E2 +#define GLX_AUX1_EXT 0x20E3 +#define GLX_AUX2_EXT 0x20E4 +#define GLX_AUX3_EXT 0x20E5 +#define GLX_AUX4_EXT 0x20E6 +#define GLX_AUX5_EXT 0x20E7 +#define GLX_AUX6_EXT 0x20E8 +#define GLX_AUX7_EXT 0x20E9 +#define GLX_AUX8_EXT 0x20EA +#define GLX_AUX9_EXT 0x20EB + +typedef void ( * PFNGLXBINDTEXIMAGEEXTPROC) (Display* display, GLXDrawable drawable, int buffer, const int *attrib_list); +typedef void ( * PFNGLXRELEASETEXIMAGEEXTPROC) (Display* display, GLXDrawable drawable, int buffer); + +#define glXBindTexImageEXT GLXEW_GET_FUN(__glewXBindTexImageEXT) +#define glXReleaseTexImageEXT GLXEW_GET_FUN(__glewXReleaseTexImageEXT) + +#define GLXEW_EXT_texture_from_pixmap GLXEW_GET_VAR(__GLXEW_EXT_texture_from_pixmap) + +#endif /* GLX_EXT_texture_from_pixmap */ + +/* -------------------------- GLX_EXT_visual_info -------------------------- */ + +#ifndef GLX_EXT_visual_info +#define GLX_EXT_visual_info 1 + +#define GLX_X_VISUAL_TYPE_EXT 0x22 +#define GLX_TRANSPARENT_TYPE_EXT 0x23 +#define GLX_TRANSPARENT_INDEX_VALUE_EXT 0x24 +#define GLX_TRANSPARENT_RED_VALUE_EXT 0x25 +#define GLX_TRANSPARENT_GREEN_VALUE_EXT 0x26 +#define GLX_TRANSPARENT_BLUE_VALUE_EXT 0x27 +#define GLX_TRANSPARENT_ALPHA_VALUE_EXT 0x28 +#define GLX_NONE_EXT 0x8000 +#define GLX_TRUE_COLOR_EXT 0x8002 +#define GLX_DIRECT_COLOR_EXT 0x8003 +#define GLX_PSEUDO_COLOR_EXT 0x8004 +#define GLX_STATIC_COLOR_EXT 0x8005 +#define GLX_GRAY_SCALE_EXT 0x8006 +#define GLX_STATIC_GRAY_EXT 0x8007 +#define GLX_TRANSPARENT_RGB_EXT 0x8008 +#define GLX_TRANSPARENT_INDEX_EXT 0x8009 + +#define GLXEW_EXT_visual_info GLXEW_GET_VAR(__GLXEW_EXT_visual_info) + +#endif /* GLX_EXT_visual_info */ + +/* ------------------------- GLX_EXT_visual_rating ------------------------- */ + +#ifndef GLX_EXT_visual_rating +#define GLX_EXT_visual_rating 1 + +#define GLX_VISUAL_CAVEAT_EXT 0x20 +#define GLX_SLOW_VISUAL_EXT 0x8001 +#define GLX_NON_CONFORMANT_VISUAL_EXT 0x800D + +#define GLXEW_EXT_visual_rating GLXEW_GET_VAR(__GLXEW_EXT_visual_rating) + +#endif /* GLX_EXT_visual_rating */ + +/* -------------------------- GLX_INTEL_swap_event ------------------------- */ + +#ifndef GLX_INTEL_swap_event +#define GLX_INTEL_swap_event 1 + +#define GLX_EXCHANGE_COMPLETE_INTEL 0x8180 +#define GLX_COPY_COMPLETE_INTEL 0x8181 +#define GLX_FLIP_COMPLETE_INTEL 0x8182 +#define GLX_BUFFER_SWAP_COMPLETE_INTEL_MASK 0x04000000 + +#define GLXEW_INTEL_swap_event GLXEW_GET_VAR(__GLXEW_INTEL_swap_event) + +#endif /* GLX_INTEL_swap_event */ + +/* -------------------------- GLX_MESA_agp_offset -------------------------- */ + +#ifndef GLX_MESA_agp_offset +#define GLX_MESA_agp_offset 1 + +typedef unsigned int ( * PFNGLXGETAGPOFFSETMESAPROC) (const void* pointer); + +#define glXGetAGPOffsetMESA GLXEW_GET_FUN(__glewXGetAGPOffsetMESA) + +#define GLXEW_MESA_agp_offset GLXEW_GET_VAR(__GLXEW_MESA_agp_offset) + +#endif /* GLX_MESA_agp_offset */ + +/* ------------------------ GLX_MESA_copy_sub_buffer ----------------------- */ + +#ifndef GLX_MESA_copy_sub_buffer +#define GLX_MESA_copy_sub_buffer 1 + +typedef void ( * PFNGLXCOPYSUBBUFFERMESAPROC) (Display* dpy, GLXDrawable drawable, int x, int y, int width, int height); + +#define glXCopySubBufferMESA GLXEW_GET_FUN(__glewXCopySubBufferMESA) + +#define GLXEW_MESA_copy_sub_buffer GLXEW_GET_VAR(__GLXEW_MESA_copy_sub_buffer) + +#endif /* GLX_MESA_copy_sub_buffer */ + +/* ------------------------ GLX_MESA_pixmap_colormap ----------------------- */ + +#ifndef GLX_MESA_pixmap_colormap +#define GLX_MESA_pixmap_colormap 1 + +typedef GLXPixmap ( * PFNGLXCREATEGLXPIXMAPMESAPROC) (Display* dpy, XVisualInfo *visual, Pixmap pixmap, Colormap cmap); + +#define glXCreateGLXPixmapMESA GLXEW_GET_FUN(__glewXCreateGLXPixmapMESA) + +#define GLXEW_MESA_pixmap_colormap GLXEW_GET_VAR(__GLXEW_MESA_pixmap_colormap) + +#endif /* GLX_MESA_pixmap_colormap */ + +/* ------------------------ GLX_MESA_query_renderer ------------------------ */ + +#ifndef GLX_MESA_query_renderer +#define GLX_MESA_query_renderer 1 + +#define GLX_RENDERER_VENDOR_ID_MESA 0x8183 +#define GLX_RENDERER_DEVICE_ID_MESA 0x8184 +#define GLX_RENDERER_VERSION_MESA 0x8185 +#define GLX_RENDERER_ACCELERATED_MESA 0x8186 +#define GLX_RENDERER_VIDEO_MEMORY_MESA 0x8187 +#define GLX_RENDERER_UNIFIED_MEMORY_ARCHITECTURE_MESA 0x8188 +#define GLX_RENDERER_PREFERRED_PROFILE_MESA 0x8189 +#define GLX_RENDERER_OPENGL_CORE_PROFILE_VERSION_MESA 0x818A +#define GLX_RENDERER_OPENGL_COMPATIBILITY_PROFILE_VERSION_MESA 0x818B +#define GLX_RENDERER_OPENGL_ES_PROFILE_VERSION_MESA 0x818C +#define GLX_RENDERER_OPENGL_ES2_PROFILE_VERSION_MESA 0x818D +#define GLX_RENDERER_ID_MESA 0x818E + +typedef Bool ( * PFNGLXQUERYCURRENTRENDERERINTEGERMESAPROC) (int attribute, unsigned int* value); +typedef const char* ( * PFNGLXQUERYCURRENTRENDERERSTRINGMESAPROC) (int attribute); +typedef Bool ( * PFNGLXQUERYRENDERERINTEGERMESAPROC) (Display* dpy, int screen, int renderer, int attribute, unsigned int *value); +typedef const char* ( * PFNGLXQUERYRENDERERSTRINGMESAPROC) (Display *dpy, int screen, int renderer, int attribute); + +#define glXQueryCurrentRendererIntegerMESA GLXEW_GET_FUN(__glewXQueryCurrentRendererIntegerMESA) +#define glXQueryCurrentRendererStringMESA GLXEW_GET_FUN(__glewXQueryCurrentRendererStringMESA) +#define glXQueryRendererIntegerMESA GLXEW_GET_FUN(__glewXQueryRendererIntegerMESA) +#define glXQueryRendererStringMESA GLXEW_GET_FUN(__glewXQueryRendererStringMESA) + +#define GLXEW_MESA_query_renderer GLXEW_GET_VAR(__GLXEW_MESA_query_renderer) + +#endif /* GLX_MESA_query_renderer */ + +/* ------------------------ GLX_MESA_release_buffers ----------------------- */ + +#ifndef GLX_MESA_release_buffers +#define GLX_MESA_release_buffers 1 + +typedef Bool ( * PFNGLXRELEASEBUFFERSMESAPROC) (Display* dpy, GLXDrawable d); + +#define glXReleaseBuffersMESA GLXEW_GET_FUN(__glewXReleaseBuffersMESA) + +#define GLXEW_MESA_release_buffers GLXEW_GET_VAR(__GLXEW_MESA_release_buffers) + +#endif /* GLX_MESA_release_buffers */ + +/* ------------------------- GLX_MESA_set_3dfx_mode ------------------------ */ + +#ifndef GLX_MESA_set_3dfx_mode +#define GLX_MESA_set_3dfx_mode 1 + +#define GLX_3DFX_WINDOW_MODE_MESA 0x1 +#define GLX_3DFX_FULLSCREEN_MODE_MESA 0x2 + +typedef GLboolean ( * PFNGLXSET3DFXMODEMESAPROC) (GLint mode); + +#define glXSet3DfxModeMESA GLXEW_GET_FUN(__glewXSet3DfxModeMESA) + +#define GLXEW_MESA_set_3dfx_mode GLXEW_GET_VAR(__GLXEW_MESA_set_3dfx_mode) + +#endif /* GLX_MESA_set_3dfx_mode */ + +/* ------------------------- GLX_MESA_swap_control ------------------------- */ + +#ifndef GLX_MESA_swap_control +#define GLX_MESA_swap_control 1 + +typedef int ( * PFNGLXGETSWAPINTERVALMESAPROC) (void); +typedef int ( * PFNGLXSWAPINTERVALMESAPROC) (unsigned int interval); + +#define glXGetSwapIntervalMESA GLXEW_GET_FUN(__glewXGetSwapIntervalMESA) +#define glXSwapIntervalMESA GLXEW_GET_FUN(__glewXSwapIntervalMESA) + +#define GLXEW_MESA_swap_control GLXEW_GET_VAR(__GLXEW_MESA_swap_control) + +#endif /* GLX_MESA_swap_control */ + +/* --------------------------- GLX_NV_copy_buffer -------------------------- */ + +#ifndef GLX_NV_copy_buffer +#define GLX_NV_copy_buffer 1 + +typedef void ( * PFNGLXCOPYBUFFERSUBDATANVPROC) (Display* dpy, GLXContext readCtx, GLXContext writeCtx, GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void ( * PFNGLXNAMEDCOPYBUFFERSUBDATANVPROC) (Display* dpy, GLXContext readCtx, GLXContext writeCtx, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); + +#define glXCopyBufferSubDataNV GLXEW_GET_FUN(__glewXCopyBufferSubDataNV) +#define glXNamedCopyBufferSubDataNV GLXEW_GET_FUN(__glewXNamedCopyBufferSubDataNV) + +#define GLXEW_NV_copy_buffer GLXEW_GET_VAR(__GLXEW_NV_copy_buffer) + +#endif /* GLX_NV_copy_buffer */ + +/* --------------------------- GLX_NV_copy_image --------------------------- */ + +#ifndef GLX_NV_copy_image +#define GLX_NV_copy_image 1 + +typedef void ( * PFNGLXCOPYIMAGESUBDATANVPROC) (Display *dpy, GLXContext srcCtx, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLXContext dstCtx, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); + +#define glXCopyImageSubDataNV GLXEW_GET_FUN(__glewXCopyImageSubDataNV) + +#define GLXEW_NV_copy_image GLXEW_GET_VAR(__GLXEW_NV_copy_image) + +#endif /* GLX_NV_copy_image */ + +/* ------------------------ GLX_NV_delay_before_swap ----------------------- */ + +#ifndef GLX_NV_delay_before_swap +#define GLX_NV_delay_before_swap 1 + +typedef Bool ( * PFNGLXDELAYBEFORESWAPNVPROC) (Display* dpy, GLXDrawable drawable, GLfloat seconds); + +#define glXDelayBeforeSwapNV GLXEW_GET_FUN(__glewXDelayBeforeSwapNV) + +#define GLXEW_NV_delay_before_swap GLXEW_GET_VAR(__GLXEW_NV_delay_before_swap) + +#endif /* GLX_NV_delay_before_swap */ + +/* -------------------------- GLX_NV_float_buffer -------------------------- */ + +#ifndef GLX_NV_float_buffer +#define GLX_NV_float_buffer 1 + +#define GLX_FLOAT_COMPONENTS_NV 0x20B0 + +#define GLXEW_NV_float_buffer GLXEW_GET_VAR(__GLXEW_NV_float_buffer) + +#endif /* GLX_NV_float_buffer */ + +/* ---------------------- GLX_NV_multisample_coverage ---------------------- */ + +#ifndef GLX_NV_multisample_coverage +#define GLX_NV_multisample_coverage 1 + +#define GLX_COLOR_SAMPLES_NV 0x20B3 +#define GLX_COVERAGE_SAMPLES_NV 100001 + +#define GLXEW_NV_multisample_coverage GLXEW_GET_VAR(__GLXEW_NV_multisample_coverage) + +#endif /* GLX_NV_multisample_coverage */ + +/* -------------------------- GLX_NV_present_video ------------------------- */ + +#ifndef GLX_NV_present_video +#define GLX_NV_present_video 1 + +#define GLX_NUM_VIDEO_SLOTS_NV 0x20F0 + +typedef int ( * PFNGLXBINDVIDEODEVICENVPROC) (Display* dpy, unsigned int video_slot, unsigned int video_device, const int *attrib_list); +typedef unsigned int* ( * PFNGLXENUMERATEVIDEODEVICESNVPROC) (Display *dpy, int screen, int *nelements); + +#define glXBindVideoDeviceNV GLXEW_GET_FUN(__glewXBindVideoDeviceNV) +#define glXEnumerateVideoDevicesNV GLXEW_GET_FUN(__glewXEnumerateVideoDevicesNV) + +#define GLXEW_NV_present_video GLXEW_GET_VAR(__GLXEW_NV_present_video) + +#endif /* GLX_NV_present_video */ + +/* ------------------ GLX_NV_robustness_video_memory_purge ----------------- */ + +#ifndef GLX_NV_robustness_video_memory_purge +#define GLX_NV_robustness_video_memory_purge 1 + +#define GLX_GENERATE_RESET_ON_VIDEO_MEMORY_PURGE_NV 0x20F7 + +#define GLXEW_NV_robustness_video_memory_purge GLXEW_GET_VAR(__GLXEW_NV_robustness_video_memory_purge) + +#endif /* GLX_NV_robustness_video_memory_purge */ + +/* --------------------------- GLX_NV_swap_group --------------------------- */ + +#ifndef GLX_NV_swap_group +#define GLX_NV_swap_group 1 + +typedef Bool ( * PFNGLXBINDSWAPBARRIERNVPROC) (Display* dpy, GLuint group, GLuint barrier); +typedef Bool ( * PFNGLXJOINSWAPGROUPNVPROC) (Display* dpy, GLXDrawable drawable, GLuint group); +typedef Bool ( * PFNGLXQUERYFRAMECOUNTNVPROC) (Display* dpy, int screen, GLuint *count); +typedef Bool ( * PFNGLXQUERYMAXSWAPGROUPSNVPROC) (Display* dpy, int screen, GLuint *maxGroups, GLuint *maxBarriers); +typedef Bool ( * PFNGLXQUERYSWAPGROUPNVPROC) (Display* dpy, GLXDrawable drawable, GLuint *group, GLuint *barrier); +typedef Bool ( * PFNGLXRESETFRAMECOUNTNVPROC) (Display* dpy, int screen); + +#define glXBindSwapBarrierNV GLXEW_GET_FUN(__glewXBindSwapBarrierNV) +#define glXJoinSwapGroupNV GLXEW_GET_FUN(__glewXJoinSwapGroupNV) +#define glXQueryFrameCountNV GLXEW_GET_FUN(__glewXQueryFrameCountNV) +#define glXQueryMaxSwapGroupsNV GLXEW_GET_FUN(__glewXQueryMaxSwapGroupsNV) +#define glXQuerySwapGroupNV GLXEW_GET_FUN(__glewXQuerySwapGroupNV) +#define glXResetFrameCountNV GLXEW_GET_FUN(__glewXResetFrameCountNV) + +#define GLXEW_NV_swap_group GLXEW_GET_VAR(__GLXEW_NV_swap_group) + +#endif /* GLX_NV_swap_group */ + +/* ----------------------- GLX_NV_vertex_array_range ----------------------- */ + +#ifndef GLX_NV_vertex_array_range +#define GLX_NV_vertex_array_range 1 + +typedef void * ( * PFNGLXALLOCATEMEMORYNVPROC) (GLsizei size, GLfloat readFrequency, GLfloat writeFrequency, GLfloat priority); +typedef void ( * PFNGLXFREEMEMORYNVPROC) (void *pointer); + +#define glXAllocateMemoryNV GLXEW_GET_FUN(__glewXAllocateMemoryNV) +#define glXFreeMemoryNV GLXEW_GET_FUN(__glewXFreeMemoryNV) + +#define GLXEW_NV_vertex_array_range GLXEW_GET_VAR(__GLXEW_NV_vertex_array_range) + +#endif /* GLX_NV_vertex_array_range */ + +/* -------------------------- GLX_NV_video_capture ------------------------- */ + +#ifndef GLX_NV_video_capture +#define GLX_NV_video_capture 1 + +#define GLX_DEVICE_ID_NV 0x20CD +#define GLX_UNIQUE_ID_NV 0x20CE +#define GLX_NUM_VIDEO_CAPTURE_SLOTS_NV 0x20CF + +typedef XID GLXVideoCaptureDeviceNV; + +typedef int ( * PFNGLXBINDVIDEOCAPTUREDEVICENVPROC) (Display* dpy, unsigned int video_capture_slot, GLXVideoCaptureDeviceNV device); +typedef GLXVideoCaptureDeviceNV * ( * PFNGLXENUMERATEVIDEOCAPTUREDEVICESNVPROC) (Display* dpy, int screen, int *nelements); +typedef void ( * PFNGLXLOCKVIDEOCAPTUREDEVICENVPROC) (Display* dpy, GLXVideoCaptureDeviceNV device); +typedef int ( * PFNGLXQUERYVIDEOCAPTUREDEVICENVPROC) (Display* dpy, GLXVideoCaptureDeviceNV device, int attribute, int *value); +typedef void ( * PFNGLXRELEASEVIDEOCAPTUREDEVICENVPROC) (Display* dpy, GLXVideoCaptureDeviceNV device); + +#define glXBindVideoCaptureDeviceNV GLXEW_GET_FUN(__glewXBindVideoCaptureDeviceNV) +#define glXEnumerateVideoCaptureDevicesNV GLXEW_GET_FUN(__glewXEnumerateVideoCaptureDevicesNV) +#define glXLockVideoCaptureDeviceNV GLXEW_GET_FUN(__glewXLockVideoCaptureDeviceNV) +#define glXQueryVideoCaptureDeviceNV GLXEW_GET_FUN(__glewXQueryVideoCaptureDeviceNV) +#define glXReleaseVideoCaptureDeviceNV GLXEW_GET_FUN(__glewXReleaseVideoCaptureDeviceNV) + +#define GLXEW_NV_video_capture GLXEW_GET_VAR(__GLXEW_NV_video_capture) + +#endif /* GLX_NV_video_capture */ + +/* ---------------------------- GLX_NV_video_out --------------------------- */ + +#ifndef GLX_NV_video_out +#define GLX_NV_video_out 1 + +#define GLX_VIDEO_OUT_COLOR_NV 0x20C3 +#define GLX_VIDEO_OUT_ALPHA_NV 0x20C4 +#define GLX_VIDEO_OUT_DEPTH_NV 0x20C5 +#define GLX_VIDEO_OUT_COLOR_AND_ALPHA_NV 0x20C6 +#define GLX_VIDEO_OUT_COLOR_AND_DEPTH_NV 0x20C7 +#define GLX_VIDEO_OUT_FRAME_NV 0x20C8 +#define GLX_VIDEO_OUT_FIELD_1_NV 0x20C9 +#define GLX_VIDEO_OUT_FIELD_2_NV 0x20CA +#define GLX_VIDEO_OUT_STACKED_FIELDS_1_2_NV 0x20CB +#define GLX_VIDEO_OUT_STACKED_FIELDS_2_1_NV 0x20CC + +typedef int ( * PFNGLXBINDVIDEOIMAGENVPROC) (Display* dpy, GLXVideoDeviceNV VideoDevice, GLXPbuffer pbuf, int iVideoBuffer); +typedef int ( * PFNGLXGETVIDEODEVICENVPROC) (Display* dpy, int screen, int numVideoDevices, GLXVideoDeviceNV *pVideoDevice); +typedef int ( * PFNGLXGETVIDEOINFONVPROC) (Display* dpy, int screen, GLXVideoDeviceNV VideoDevice, unsigned long *pulCounterOutputPbuffer, unsigned long *pulCounterOutputVideo); +typedef int ( * PFNGLXRELEASEVIDEODEVICENVPROC) (Display* dpy, int screen, GLXVideoDeviceNV VideoDevice); +typedef int ( * PFNGLXRELEASEVIDEOIMAGENVPROC) (Display* dpy, GLXPbuffer pbuf); +typedef int ( * PFNGLXSENDPBUFFERTOVIDEONVPROC) (Display* dpy, GLXPbuffer pbuf, int iBufferType, unsigned long *pulCounterPbuffer, GLboolean bBlock); + +#define glXBindVideoImageNV GLXEW_GET_FUN(__glewXBindVideoImageNV) +#define glXGetVideoDeviceNV GLXEW_GET_FUN(__glewXGetVideoDeviceNV) +#define glXGetVideoInfoNV GLXEW_GET_FUN(__glewXGetVideoInfoNV) +#define glXReleaseVideoDeviceNV GLXEW_GET_FUN(__glewXReleaseVideoDeviceNV) +#define glXReleaseVideoImageNV GLXEW_GET_FUN(__glewXReleaseVideoImageNV) +#define glXSendPbufferToVideoNV GLXEW_GET_FUN(__glewXSendPbufferToVideoNV) + +#define GLXEW_NV_video_out GLXEW_GET_VAR(__GLXEW_NV_video_out) + +#endif /* GLX_NV_video_out */ + +/* -------------------------- GLX_OML_swap_method -------------------------- */ + +#ifndef GLX_OML_swap_method +#define GLX_OML_swap_method 1 + +#define GLX_SWAP_METHOD_OML 0x8060 +#define GLX_SWAP_EXCHANGE_OML 0x8061 +#define GLX_SWAP_COPY_OML 0x8062 +#define GLX_SWAP_UNDEFINED_OML 0x8063 + +#define GLXEW_OML_swap_method GLXEW_GET_VAR(__GLXEW_OML_swap_method) + +#endif /* GLX_OML_swap_method */ + +/* -------------------------- GLX_OML_sync_control ------------------------- */ + +#ifndef GLX_OML_sync_control +#define GLX_OML_sync_control 1 + +typedef Bool ( * PFNGLXGETMSCRATEOMLPROC) (Display* dpy, GLXDrawable drawable, int32_t* numerator, int32_t* denominator); +typedef Bool ( * PFNGLXGETSYNCVALUESOMLPROC) (Display* dpy, GLXDrawable drawable, int64_t* ust, int64_t* msc, int64_t* sbc); +typedef int64_t ( * PFNGLXSWAPBUFFERSMSCOMLPROC) (Display* dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder); +typedef Bool ( * PFNGLXWAITFORMSCOMLPROC) (Display* dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t* ust, int64_t* msc, int64_t* sbc); +typedef Bool ( * PFNGLXWAITFORSBCOMLPROC) (Display* dpy, GLXDrawable drawable, int64_t target_sbc, int64_t* ust, int64_t* msc, int64_t* sbc); + +#define glXGetMscRateOML GLXEW_GET_FUN(__glewXGetMscRateOML) +#define glXGetSyncValuesOML GLXEW_GET_FUN(__glewXGetSyncValuesOML) +#define glXSwapBuffersMscOML GLXEW_GET_FUN(__glewXSwapBuffersMscOML) +#define glXWaitForMscOML GLXEW_GET_FUN(__glewXWaitForMscOML) +#define glXWaitForSbcOML GLXEW_GET_FUN(__glewXWaitForSbcOML) + +#define GLXEW_OML_sync_control GLXEW_GET_VAR(__GLXEW_OML_sync_control) + +#endif /* GLX_OML_sync_control */ + +/* ------------------------ GLX_SGIS_blended_overlay ----------------------- */ + +#ifndef GLX_SGIS_blended_overlay +#define GLX_SGIS_blended_overlay 1 + +#define GLX_BLENDED_RGBA_SGIS 0x8025 + +#define GLXEW_SGIS_blended_overlay GLXEW_GET_VAR(__GLXEW_SGIS_blended_overlay) + +#endif /* GLX_SGIS_blended_overlay */ + +/* -------------------------- GLX_SGIS_color_range ------------------------- */ + +#ifndef GLX_SGIS_color_range +#define GLX_SGIS_color_range 1 + +#define GLXEW_SGIS_color_range GLXEW_GET_VAR(__GLXEW_SGIS_color_range) + +#endif /* GLX_SGIS_color_range */ + +/* -------------------------- GLX_SGIS_multisample ------------------------- */ + +#ifndef GLX_SGIS_multisample +#define GLX_SGIS_multisample 1 + +#define GLX_SAMPLE_BUFFERS_SGIS 100000 +#define GLX_SAMPLES_SGIS 100001 + +#define GLXEW_SGIS_multisample GLXEW_GET_VAR(__GLXEW_SGIS_multisample) + +#endif /* GLX_SGIS_multisample */ + +/* ---------------------- GLX_SGIS_shared_multisample ---------------------- */ + +#ifndef GLX_SGIS_shared_multisample +#define GLX_SGIS_shared_multisample 1 + +#define GLX_MULTISAMPLE_SUB_RECT_WIDTH_SGIS 0x8026 +#define GLX_MULTISAMPLE_SUB_RECT_HEIGHT_SGIS 0x8027 + +#define GLXEW_SGIS_shared_multisample GLXEW_GET_VAR(__GLXEW_SGIS_shared_multisample) + +#endif /* GLX_SGIS_shared_multisample */ + +/* --------------------------- GLX_SGIX_fbconfig --------------------------- */ + +#ifndef GLX_SGIX_fbconfig +#define GLX_SGIX_fbconfig 1 + +#define GLX_RGBA_BIT_SGIX 0x00000001 +#define GLX_WINDOW_BIT_SGIX 0x00000001 +#define GLX_COLOR_INDEX_BIT_SGIX 0x00000002 +#define GLX_PIXMAP_BIT_SGIX 0x00000002 +#define GLX_SCREEN_EXT 0x800C +#define GLX_DRAWABLE_TYPE_SGIX 0x8010 +#define GLX_RENDER_TYPE_SGIX 0x8011 +#define GLX_X_RENDERABLE_SGIX 0x8012 +#define GLX_FBCONFIG_ID_SGIX 0x8013 +#define GLX_RGBA_TYPE_SGIX 0x8014 +#define GLX_COLOR_INDEX_TYPE_SGIX 0x8015 + +typedef XID GLXFBConfigIDSGIX; +typedef struct __GLXFBConfigRec *GLXFBConfigSGIX; + +typedef GLXFBConfigSGIX* ( * PFNGLXCHOOSEFBCONFIGSGIXPROC) (Display *dpy, int screen, const int *attrib_list, int *nelements); +typedef GLXContext ( * PFNGLXCREATECONTEXTWITHCONFIGSGIXPROC) (Display* dpy, GLXFBConfig config, int render_type, GLXContext share_list, Bool direct); +typedef GLXPixmap ( * PFNGLXCREATEGLXPIXMAPWITHCONFIGSGIXPROC) (Display* dpy, GLXFBConfig config, Pixmap pixmap); +typedef int ( * PFNGLXGETFBCONFIGATTRIBSGIXPROC) (Display* dpy, GLXFBConfigSGIX config, int attribute, int *value); +typedef GLXFBConfigSGIX ( * PFNGLXGETFBCONFIGFROMVISUALSGIXPROC) (Display* dpy, XVisualInfo *vis); +typedef XVisualInfo* ( * PFNGLXGETVISUALFROMFBCONFIGSGIXPROC) (Display *dpy, GLXFBConfig config); + +#define glXChooseFBConfigSGIX GLXEW_GET_FUN(__glewXChooseFBConfigSGIX) +#define glXCreateContextWithConfigSGIX GLXEW_GET_FUN(__glewXCreateContextWithConfigSGIX) +#define glXCreateGLXPixmapWithConfigSGIX GLXEW_GET_FUN(__glewXCreateGLXPixmapWithConfigSGIX) +#define glXGetFBConfigAttribSGIX GLXEW_GET_FUN(__glewXGetFBConfigAttribSGIX) +#define glXGetFBConfigFromVisualSGIX GLXEW_GET_FUN(__glewXGetFBConfigFromVisualSGIX) +#define glXGetVisualFromFBConfigSGIX GLXEW_GET_FUN(__glewXGetVisualFromFBConfigSGIX) + +#define GLXEW_SGIX_fbconfig GLXEW_GET_VAR(__GLXEW_SGIX_fbconfig) + +#endif /* GLX_SGIX_fbconfig */ + +/* --------------------------- GLX_SGIX_hyperpipe -------------------------- */ + +#ifndef GLX_SGIX_hyperpipe +#define GLX_SGIX_hyperpipe 1 + +#define GLX_HYPERPIPE_DISPLAY_PIPE_SGIX 0x00000001 +#define GLX_PIPE_RECT_SGIX 0x00000001 +#define GLX_HYPERPIPE_RENDER_PIPE_SGIX 0x00000002 +#define GLX_PIPE_RECT_LIMITS_SGIX 0x00000002 +#define GLX_HYPERPIPE_STEREO_SGIX 0x00000003 +#define GLX_HYPERPIPE_PIXEL_AVERAGE_SGIX 0x00000004 +#define GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX 80 +#define GLX_BAD_HYPERPIPE_CONFIG_SGIX 91 +#define GLX_BAD_HYPERPIPE_SGIX 92 +#define GLX_HYPERPIPE_ID_SGIX 0x8030 + +typedef struct { + char pipeName[GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX]; + int networkId; +} GLXHyperpipeNetworkSGIX; +typedef struct { + char pipeName[GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX]; + int XOrigin; + int YOrigin; + int maxHeight; + int maxWidth; +} GLXPipeRectLimits; +typedef struct { + char pipeName[GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX]; + int channel; + unsigned int participationType; + int timeSlice; +} GLXHyperpipeConfigSGIX; +typedef struct { + char pipeName[GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX]; + int srcXOrigin; + int srcYOrigin; + int srcWidth; + int srcHeight; + int destXOrigin; + int destYOrigin; + int destWidth; + int destHeight; +} GLXPipeRect; + +typedef int ( * PFNGLXBINDHYPERPIPESGIXPROC) (Display *dpy, int hpId); +typedef int ( * PFNGLXDESTROYHYPERPIPECONFIGSGIXPROC) (Display *dpy, int hpId); +typedef int ( * PFNGLXHYPERPIPEATTRIBSGIXPROC) (Display *dpy, int timeSlice, int attrib, int size, void *attribList); +typedef int ( * PFNGLXHYPERPIPECONFIGSGIXPROC) (Display *dpy, int networkId, int npipes, GLXHyperpipeConfigSGIX *cfg, int *hpId); +typedef int ( * PFNGLXQUERYHYPERPIPEATTRIBSGIXPROC) (Display *dpy, int timeSlice, int attrib, int size, void *returnAttribList); +typedef int ( * PFNGLXQUERYHYPERPIPEBESTATTRIBSGIXPROC) (Display *dpy, int timeSlice, int attrib, int size, void *attribList, void *returnAttribList); +typedef GLXHyperpipeConfigSGIX * ( * PFNGLXQUERYHYPERPIPECONFIGSGIXPROC) (Display *dpy, int hpId, int *npipes); +typedef GLXHyperpipeNetworkSGIX * ( * PFNGLXQUERYHYPERPIPENETWORKSGIXPROC) (Display *dpy, int *npipes); + +#define glXBindHyperpipeSGIX GLXEW_GET_FUN(__glewXBindHyperpipeSGIX) +#define glXDestroyHyperpipeConfigSGIX GLXEW_GET_FUN(__glewXDestroyHyperpipeConfigSGIX) +#define glXHyperpipeAttribSGIX GLXEW_GET_FUN(__glewXHyperpipeAttribSGIX) +#define glXHyperpipeConfigSGIX GLXEW_GET_FUN(__glewXHyperpipeConfigSGIX) +#define glXQueryHyperpipeAttribSGIX GLXEW_GET_FUN(__glewXQueryHyperpipeAttribSGIX) +#define glXQueryHyperpipeBestAttribSGIX GLXEW_GET_FUN(__glewXQueryHyperpipeBestAttribSGIX) +#define glXQueryHyperpipeConfigSGIX GLXEW_GET_FUN(__glewXQueryHyperpipeConfigSGIX) +#define glXQueryHyperpipeNetworkSGIX GLXEW_GET_FUN(__glewXQueryHyperpipeNetworkSGIX) + +#define GLXEW_SGIX_hyperpipe GLXEW_GET_VAR(__GLXEW_SGIX_hyperpipe) + +#endif /* GLX_SGIX_hyperpipe */ + +/* ---------------------------- GLX_SGIX_pbuffer --------------------------- */ + +#ifndef GLX_SGIX_pbuffer +#define GLX_SGIX_pbuffer 1 + +#define GLX_FRONT_LEFT_BUFFER_BIT_SGIX 0x00000001 +#define GLX_FRONT_RIGHT_BUFFER_BIT_SGIX 0x00000002 +#define GLX_BACK_LEFT_BUFFER_BIT_SGIX 0x00000004 +#define GLX_PBUFFER_BIT_SGIX 0x00000004 +#define GLX_BACK_RIGHT_BUFFER_BIT_SGIX 0x00000008 +#define GLX_AUX_BUFFERS_BIT_SGIX 0x00000010 +#define GLX_DEPTH_BUFFER_BIT_SGIX 0x00000020 +#define GLX_STENCIL_BUFFER_BIT_SGIX 0x00000040 +#define GLX_ACCUM_BUFFER_BIT_SGIX 0x00000080 +#define GLX_SAMPLE_BUFFERS_BIT_SGIX 0x00000100 +#define GLX_MAX_PBUFFER_WIDTH_SGIX 0x8016 +#define GLX_MAX_PBUFFER_HEIGHT_SGIX 0x8017 +#define GLX_MAX_PBUFFER_PIXELS_SGIX 0x8018 +#define GLX_OPTIMAL_PBUFFER_WIDTH_SGIX 0x8019 +#define GLX_OPTIMAL_PBUFFER_HEIGHT_SGIX 0x801A +#define GLX_PRESERVED_CONTENTS_SGIX 0x801B +#define GLX_LARGEST_PBUFFER_SGIX 0x801C +#define GLX_WIDTH_SGIX 0x801D +#define GLX_HEIGHT_SGIX 0x801E +#define GLX_EVENT_MASK_SGIX 0x801F +#define GLX_DAMAGED_SGIX 0x8020 +#define GLX_SAVED_SGIX 0x8021 +#define GLX_WINDOW_SGIX 0x8022 +#define GLX_PBUFFER_SGIX 0x8023 +#define GLX_BUFFER_CLOBBER_MASK_SGIX 0x08000000 + +typedef XID GLXPbufferSGIX; +typedef struct { int type; unsigned long serial; Bool send_event; Display *display; GLXDrawable drawable; int event_type; int draw_type; unsigned int mask; int x, y; int width, height; int count; } GLXBufferClobberEventSGIX; + +typedef GLXPbuffer ( * PFNGLXCREATEGLXPBUFFERSGIXPROC) (Display* dpy, GLXFBConfig config, unsigned int width, unsigned int height, int *attrib_list); +typedef void ( * PFNGLXDESTROYGLXPBUFFERSGIXPROC) (Display* dpy, GLXPbuffer pbuf); +typedef void ( * PFNGLXGETSELECTEDEVENTSGIXPROC) (Display* dpy, GLXDrawable drawable, unsigned long *mask); +typedef void ( * PFNGLXQUERYGLXPBUFFERSGIXPROC) (Display* dpy, GLXPbuffer pbuf, int attribute, unsigned int *value); +typedef void ( * PFNGLXSELECTEVENTSGIXPROC) (Display* dpy, GLXDrawable drawable, unsigned long mask); + +#define glXCreateGLXPbufferSGIX GLXEW_GET_FUN(__glewXCreateGLXPbufferSGIX) +#define glXDestroyGLXPbufferSGIX GLXEW_GET_FUN(__glewXDestroyGLXPbufferSGIX) +#define glXGetSelectedEventSGIX GLXEW_GET_FUN(__glewXGetSelectedEventSGIX) +#define glXQueryGLXPbufferSGIX GLXEW_GET_FUN(__glewXQueryGLXPbufferSGIX) +#define glXSelectEventSGIX GLXEW_GET_FUN(__glewXSelectEventSGIX) + +#define GLXEW_SGIX_pbuffer GLXEW_GET_VAR(__GLXEW_SGIX_pbuffer) + +#endif /* GLX_SGIX_pbuffer */ + +/* ------------------------- GLX_SGIX_swap_barrier ------------------------- */ + +#ifndef GLX_SGIX_swap_barrier +#define GLX_SGIX_swap_barrier 1 + +typedef void ( * PFNGLXBINDSWAPBARRIERSGIXPROC) (Display *dpy, GLXDrawable drawable, int barrier); +typedef Bool ( * PFNGLXQUERYMAXSWAPBARRIERSSGIXPROC) (Display *dpy, int screen, int *max); + +#define glXBindSwapBarrierSGIX GLXEW_GET_FUN(__glewXBindSwapBarrierSGIX) +#define glXQueryMaxSwapBarriersSGIX GLXEW_GET_FUN(__glewXQueryMaxSwapBarriersSGIX) + +#define GLXEW_SGIX_swap_barrier GLXEW_GET_VAR(__GLXEW_SGIX_swap_barrier) + +#endif /* GLX_SGIX_swap_barrier */ + +/* -------------------------- GLX_SGIX_swap_group -------------------------- */ + +#ifndef GLX_SGIX_swap_group +#define GLX_SGIX_swap_group 1 + +typedef void ( * PFNGLXJOINSWAPGROUPSGIXPROC) (Display *dpy, GLXDrawable drawable, GLXDrawable member); + +#define glXJoinSwapGroupSGIX GLXEW_GET_FUN(__glewXJoinSwapGroupSGIX) + +#define GLXEW_SGIX_swap_group GLXEW_GET_VAR(__GLXEW_SGIX_swap_group) + +#endif /* GLX_SGIX_swap_group */ + +/* ------------------------- GLX_SGIX_video_resize ------------------------- */ + +#ifndef GLX_SGIX_video_resize +#define GLX_SGIX_video_resize 1 + +#define GLX_SYNC_FRAME_SGIX 0x00000000 +#define GLX_SYNC_SWAP_SGIX 0x00000001 + +typedef int ( * PFNGLXBINDCHANNELTOWINDOWSGIXPROC) (Display* display, int screen, int channel, Window window); +typedef int ( * PFNGLXCHANNELRECTSGIXPROC) (Display* display, int screen, int channel, int x, int y, int w, int h); +typedef int ( * PFNGLXCHANNELRECTSYNCSGIXPROC) (Display* display, int screen, int channel, GLenum synctype); +typedef int ( * PFNGLXQUERYCHANNELDELTASSGIXPROC) (Display* display, int screen, int channel, int *x, int *y, int *w, int *h); +typedef int ( * PFNGLXQUERYCHANNELRECTSGIXPROC) (Display* display, int screen, int channel, int *dx, int *dy, int *dw, int *dh); + +#define glXBindChannelToWindowSGIX GLXEW_GET_FUN(__glewXBindChannelToWindowSGIX) +#define glXChannelRectSGIX GLXEW_GET_FUN(__glewXChannelRectSGIX) +#define glXChannelRectSyncSGIX GLXEW_GET_FUN(__glewXChannelRectSyncSGIX) +#define glXQueryChannelDeltasSGIX GLXEW_GET_FUN(__glewXQueryChannelDeltasSGIX) +#define glXQueryChannelRectSGIX GLXEW_GET_FUN(__glewXQueryChannelRectSGIX) + +#define GLXEW_SGIX_video_resize GLXEW_GET_VAR(__GLXEW_SGIX_video_resize) + +#endif /* GLX_SGIX_video_resize */ + +/* ---------------------- GLX_SGIX_visual_select_group --------------------- */ + +#ifndef GLX_SGIX_visual_select_group +#define GLX_SGIX_visual_select_group 1 + +#define GLX_VISUAL_SELECT_GROUP_SGIX 0x8028 + +#define GLXEW_SGIX_visual_select_group GLXEW_GET_VAR(__GLXEW_SGIX_visual_select_group) + +#endif /* GLX_SGIX_visual_select_group */ + +/* ---------------------------- GLX_SGI_cushion ---------------------------- */ + +#ifndef GLX_SGI_cushion +#define GLX_SGI_cushion 1 + +typedef void ( * PFNGLXCUSHIONSGIPROC) (Display* dpy, Window window, float cushion); + +#define glXCushionSGI GLXEW_GET_FUN(__glewXCushionSGI) + +#define GLXEW_SGI_cushion GLXEW_GET_VAR(__GLXEW_SGI_cushion) + +#endif /* GLX_SGI_cushion */ + +/* ----------------------- GLX_SGI_make_current_read ----------------------- */ + +#ifndef GLX_SGI_make_current_read +#define GLX_SGI_make_current_read 1 + +typedef GLXDrawable ( * PFNGLXGETCURRENTREADDRAWABLESGIPROC) (void); +typedef Bool ( * PFNGLXMAKECURRENTREADSGIPROC) (Display* dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx); + +#define glXGetCurrentReadDrawableSGI GLXEW_GET_FUN(__glewXGetCurrentReadDrawableSGI) +#define glXMakeCurrentReadSGI GLXEW_GET_FUN(__glewXMakeCurrentReadSGI) + +#define GLXEW_SGI_make_current_read GLXEW_GET_VAR(__GLXEW_SGI_make_current_read) + +#endif /* GLX_SGI_make_current_read */ + +/* -------------------------- GLX_SGI_swap_control ------------------------- */ + +#ifndef GLX_SGI_swap_control +#define GLX_SGI_swap_control 1 + +typedef int ( * PFNGLXSWAPINTERVALSGIPROC) (int interval); + +#define glXSwapIntervalSGI GLXEW_GET_FUN(__glewXSwapIntervalSGI) + +#define GLXEW_SGI_swap_control GLXEW_GET_VAR(__GLXEW_SGI_swap_control) + +#endif /* GLX_SGI_swap_control */ + +/* --------------------------- GLX_SGI_video_sync -------------------------- */ + +#ifndef GLX_SGI_video_sync +#define GLX_SGI_video_sync 1 + +typedef int ( * PFNGLXGETVIDEOSYNCSGIPROC) (unsigned int* count); +typedef int ( * PFNGLXWAITVIDEOSYNCSGIPROC) (int divisor, int remainder, unsigned int* count); + +#define glXGetVideoSyncSGI GLXEW_GET_FUN(__glewXGetVideoSyncSGI) +#define glXWaitVideoSyncSGI GLXEW_GET_FUN(__glewXWaitVideoSyncSGI) + +#define GLXEW_SGI_video_sync GLXEW_GET_VAR(__GLXEW_SGI_video_sync) + +#endif /* GLX_SGI_video_sync */ + +/* --------------------- GLX_SUN_get_transparent_index --------------------- */ + +#ifndef GLX_SUN_get_transparent_index +#define GLX_SUN_get_transparent_index 1 + +typedef Status ( * PFNGLXGETTRANSPARENTINDEXSUNPROC) (Display* dpy, Window overlay, Window underlay, unsigned long *pTransparentIndex); + +#define glXGetTransparentIndexSUN GLXEW_GET_FUN(__glewXGetTransparentIndexSUN) + +#define GLXEW_SUN_get_transparent_index GLXEW_GET_VAR(__GLXEW_SUN_get_transparent_index) + +#endif /* GLX_SUN_get_transparent_index */ + +/* -------------------------- GLX_SUN_video_resize ------------------------- */ + +#ifndef GLX_SUN_video_resize +#define GLX_SUN_video_resize 1 + +#define GLX_VIDEO_RESIZE_SUN 0x8171 +#define GL_VIDEO_RESIZE_COMPENSATION_SUN 0x85CD + +typedef int ( * PFNGLXGETVIDEORESIZESUNPROC) (Display* display, GLXDrawable window, float* factor); +typedef int ( * PFNGLXVIDEORESIZESUNPROC) (Display* display, GLXDrawable window, float factor); + +#define glXGetVideoResizeSUN GLXEW_GET_FUN(__glewXGetVideoResizeSUN) +#define glXVideoResizeSUN GLXEW_GET_FUN(__glewXVideoResizeSUN) + +#define GLXEW_SUN_video_resize GLXEW_GET_VAR(__GLXEW_SUN_video_resize) + +#endif /* GLX_SUN_video_resize */ + +/* ------------------------------------------------------------------------- */ + +#define GLXEW_FUN_EXPORT GLEW_FUN_EXPORT +#define GLXEW_VAR_EXPORT GLEW_VAR_EXPORT + +GLXEW_FUN_EXPORT PFNGLXGETCURRENTDISPLAYPROC __glewXGetCurrentDisplay; + +GLXEW_FUN_EXPORT PFNGLXCHOOSEFBCONFIGPROC __glewXChooseFBConfig; +GLXEW_FUN_EXPORT PFNGLXCREATENEWCONTEXTPROC __glewXCreateNewContext; +GLXEW_FUN_EXPORT PFNGLXCREATEPBUFFERPROC __glewXCreatePbuffer; +GLXEW_FUN_EXPORT PFNGLXCREATEPIXMAPPROC __glewXCreatePixmap; +GLXEW_FUN_EXPORT PFNGLXCREATEWINDOWPROC __glewXCreateWindow; +GLXEW_FUN_EXPORT PFNGLXDESTROYPBUFFERPROC __glewXDestroyPbuffer; +GLXEW_FUN_EXPORT PFNGLXDESTROYPIXMAPPROC __glewXDestroyPixmap; +GLXEW_FUN_EXPORT PFNGLXDESTROYWINDOWPROC __glewXDestroyWindow; +GLXEW_FUN_EXPORT PFNGLXGETCURRENTREADDRAWABLEPROC __glewXGetCurrentReadDrawable; +GLXEW_FUN_EXPORT PFNGLXGETFBCONFIGATTRIBPROC __glewXGetFBConfigAttrib; +GLXEW_FUN_EXPORT PFNGLXGETFBCONFIGSPROC __glewXGetFBConfigs; +GLXEW_FUN_EXPORT PFNGLXGETSELECTEDEVENTPROC __glewXGetSelectedEvent; +GLXEW_FUN_EXPORT PFNGLXGETVISUALFROMFBCONFIGPROC __glewXGetVisualFromFBConfig; +GLXEW_FUN_EXPORT PFNGLXMAKECONTEXTCURRENTPROC __glewXMakeContextCurrent; +GLXEW_FUN_EXPORT PFNGLXQUERYCONTEXTPROC __glewXQueryContext; +GLXEW_FUN_EXPORT PFNGLXQUERYDRAWABLEPROC __glewXQueryDrawable; +GLXEW_FUN_EXPORT PFNGLXSELECTEVENTPROC __glewXSelectEvent; + +GLXEW_FUN_EXPORT PFNGLXBLITCONTEXTFRAMEBUFFERAMDPROC __glewXBlitContextFramebufferAMD; +GLXEW_FUN_EXPORT PFNGLXCREATEASSOCIATEDCONTEXTAMDPROC __glewXCreateAssociatedContextAMD; +GLXEW_FUN_EXPORT PFNGLXCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC __glewXCreateAssociatedContextAttribsAMD; +GLXEW_FUN_EXPORT PFNGLXDELETEASSOCIATEDCONTEXTAMDPROC __glewXDeleteAssociatedContextAMD; +GLXEW_FUN_EXPORT PFNGLXGETCONTEXTGPUIDAMDPROC __glewXGetContextGPUIDAMD; +GLXEW_FUN_EXPORT PFNGLXGETCURRENTASSOCIATEDCONTEXTAMDPROC __glewXGetCurrentAssociatedContextAMD; +GLXEW_FUN_EXPORT PFNGLXGETGPUIDSAMDPROC __glewXGetGPUIDsAMD; +GLXEW_FUN_EXPORT PFNGLXGETGPUINFOAMDPROC __glewXGetGPUInfoAMD; +GLXEW_FUN_EXPORT PFNGLXMAKEASSOCIATEDCONTEXTCURRENTAMDPROC __glewXMakeAssociatedContextCurrentAMD; + +GLXEW_FUN_EXPORT PFNGLXCREATECONTEXTATTRIBSARBPROC __glewXCreateContextAttribsARB; + +GLXEW_FUN_EXPORT PFNGLXBINDTEXIMAGEATIPROC __glewXBindTexImageATI; +GLXEW_FUN_EXPORT PFNGLXDRAWABLEATTRIBATIPROC __glewXDrawableAttribATI; +GLXEW_FUN_EXPORT PFNGLXRELEASETEXIMAGEATIPROC __glewXReleaseTexImageATI; + +GLXEW_FUN_EXPORT PFNGLXFREECONTEXTEXTPROC __glewXFreeContextEXT; +GLXEW_FUN_EXPORT PFNGLXGETCONTEXTIDEXTPROC __glewXGetContextIDEXT; +GLXEW_FUN_EXPORT PFNGLXIMPORTCONTEXTEXTPROC __glewXImportContextEXT; +GLXEW_FUN_EXPORT PFNGLXQUERYCONTEXTINFOEXTPROC __glewXQueryContextInfoEXT; + +GLXEW_FUN_EXPORT PFNGLXSWAPINTERVALEXTPROC __glewXSwapIntervalEXT; + +GLXEW_FUN_EXPORT PFNGLXBINDTEXIMAGEEXTPROC __glewXBindTexImageEXT; +GLXEW_FUN_EXPORT PFNGLXRELEASETEXIMAGEEXTPROC __glewXReleaseTexImageEXT; + +GLXEW_FUN_EXPORT PFNGLXGETAGPOFFSETMESAPROC __glewXGetAGPOffsetMESA; + +GLXEW_FUN_EXPORT PFNGLXCOPYSUBBUFFERMESAPROC __glewXCopySubBufferMESA; + +GLXEW_FUN_EXPORT PFNGLXCREATEGLXPIXMAPMESAPROC __glewXCreateGLXPixmapMESA; + +GLXEW_FUN_EXPORT PFNGLXQUERYCURRENTRENDERERINTEGERMESAPROC __glewXQueryCurrentRendererIntegerMESA; +GLXEW_FUN_EXPORT PFNGLXQUERYCURRENTRENDERERSTRINGMESAPROC __glewXQueryCurrentRendererStringMESA; +GLXEW_FUN_EXPORT PFNGLXQUERYRENDERERINTEGERMESAPROC __glewXQueryRendererIntegerMESA; +GLXEW_FUN_EXPORT PFNGLXQUERYRENDERERSTRINGMESAPROC __glewXQueryRendererStringMESA; + +GLXEW_FUN_EXPORT PFNGLXRELEASEBUFFERSMESAPROC __glewXReleaseBuffersMESA; + +GLXEW_FUN_EXPORT PFNGLXSET3DFXMODEMESAPROC __glewXSet3DfxModeMESA; + +GLXEW_FUN_EXPORT PFNGLXGETSWAPINTERVALMESAPROC __glewXGetSwapIntervalMESA; +GLXEW_FUN_EXPORT PFNGLXSWAPINTERVALMESAPROC __glewXSwapIntervalMESA; + +GLXEW_FUN_EXPORT PFNGLXCOPYBUFFERSUBDATANVPROC __glewXCopyBufferSubDataNV; +GLXEW_FUN_EXPORT PFNGLXNAMEDCOPYBUFFERSUBDATANVPROC __glewXNamedCopyBufferSubDataNV; + +GLXEW_FUN_EXPORT PFNGLXCOPYIMAGESUBDATANVPROC __glewXCopyImageSubDataNV; + +GLXEW_FUN_EXPORT PFNGLXDELAYBEFORESWAPNVPROC __glewXDelayBeforeSwapNV; + +GLXEW_FUN_EXPORT PFNGLXBINDVIDEODEVICENVPROC __glewXBindVideoDeviceNV; +GLXEW_FUN_EXPORT PFNGLXENUMERATEVIDEODEVICESNVPROC __glewXEnumerateVideoDevicesNV; + +GLXEW_FUN_EXPORT PFNGLXBINDSWAPBARRIERNVPROC __glewXBindSwapBarrierNV; +GLXEW_FUN_EXPORT PFNGLXJOINSWAPGROUPNVPROC __glewXJoinSwapGroupNV; +GLXEW_FUN_EXPORT PFNGLXQUERYFRAMECOUNTNVPROC __glewXQueryFrameCountNV; +GLXEW_FUN_EXPORT PFNGLXQUERYMAXSWAPGROUPSNVPROC __glewXQueryMaxSwapGroupsNV; +GLXEW_FUN_EXPORT PFNGLXQUERYSWAPGROUPNVPROC __glewXQuerySwapGroupNV; +GLXEW_FUN_EXPORT PFNGLXRESETFRAMECOUNTNVPROC __glewXResetFrameCountNV; + +GLXEW_FUN_EXPORT PFNGLXALLOCATEMEMORYNVPROC __glewXAllocateMemoryNV; +GLXEW_FUN_EXPORT PFNGLXFREEMEMORYNVPROC __glewXFreeMemoryNV; + +GLXEW_FUN_EXPORT PFNGLXBINDVIDEOCAPTUREDEVICENVPROC __glewXBindVideoCaptureDeviceNV; +GLXEW_FUN_EXPORT PFNGLXENUMERATEVIDEOCAPTUREDEVICESNVPROC __glewXEnumerateVideoCaptureDevicesNV; +GLXEW_FUN_EXPORT PFNGLXLOCKVIDEOCAPTUREDEVICENVPROC __glewXLockVideoCaptureDeviceNV; +GLXEW_FUN_EXPORT PFNGLXQUERYVIDEOCAPTUREDEVICENVPROC __glewXQueryVideoCaptureDeviceNV; +GLXEW_FUN_EXPORT PFNGLXRELEASEVIDEOCAPTUREDEVICENVPROC __glewXReleaseVideoCaptureDeviceNV; + +GLXEW_FUN_EXPORT PFNGLXBINDVIDEOIMAGENVPROC __glewXBindVideoImageNV; +GLXEW_FUN_EXPORT PFNGLXGETVIDEODEVICENVPROC __glewXGetVideoDeviceNV; +GLXEW_FUN_EXPORT PFNGLXGETVIDEOINFONVPROC __glewXGetVideoInfoNV; +GLXEW_FUN_EXPORT PFNGLXRELEASEVIDEODEVICENVPROC __glewXReleaseVideoDeviceNV; +GLXEW_FUN_EXPORT PFNGLXRELEASEVIDEOIMAGENVPROC __glewXReleaseVideoImageNV; +GLXEW_FUN_EXPORT PFNGLXSENDPBUFFERTOVIDEONVPROC __glewXSendPbufferToVideoNV; + +GLXEW_FUN_EXPORT PFNGLXGETMSCRATEOMLPROC __glewXGetMscRateOML; +GLXEW_FUN_EXPORT PFNGLXGETSYNCVALUESOMLPROC __glewXGetSyncValuesOML; +GLXEW_FUN_EXPORT PFNGLXSWAPBUFFERSMSCOMLPROC __glewXSwapBuffersMscOML; +GLXEW_FUN_EXPORT PFNGLXWAITFORMSCOMLPROC __glewXWaitForMscOML; +GLXEW_FUN_EXPORT PFNGLXWAITFORSBCOMLPROC __glewXWaitForSbcOML; + +GLXEW_FUN_EXPORT PFNGLXCHOOSEFBCONFIGSGIXPROC __glewXChooseFBConfigSGIX; +GLXEW_FUN_EXPORT PFNGLXCREATECONTEXTWITHCONFIGSGIXPROC __glewXCreateContextWithConfigSGIX; +GLXEW_FUN_EXPORT PFNGLXCREATEGLXPIXMAPWITHCONFIGSGIXPROC __glewXCreateGLXPixmapWithConfigSGIX; +GLXEW_FUN_EXPORT PFNGLXGETFBCONFIGATTRIBSGIXPROC __glewXGetFBConfigAttribSGIX; +GLXEW_FUN_EXPORT PFNGLXGETFBCONFIGFROMVISUALSGIXPROC __glewXGetFBConfigFromVisualSGIX; +GLXEW_FUN_EXPORT PFNGLXGETVISUALFROMFBCONFIGSGIXPROC __glewXGetVisualFromFBConfigSGIX; + +GLXEW_FUN_EXPORT PFNGLXBINDHYPERPIPESGIXPROC __glewXBindHyperpipeSGIX; +GLXEW_FUN_EXPORT PFNGLXDESTROYHYPERPIPECONFIGSGIXPROC __glewXDestroyHyperpipeConfigSGIX; +GLXEW_FUN_EXPORT PFNGLXHYPERPIPEATTRIBSGIXPROC __glewXHyperpipeAttribSGIX; +GLXEW_FUN_EXPORT PFNGLXHYPERPIPECONFIGSGIXPROC __glewXHyperpipeConfigSGIX; +GLXEW_FUN_EXPORT PFNGLXQUERYHYPERPIPEATTRIBSGIXPROC __glewXQueryHyperpipeAttribSGIX; +GLXEW_FUN_EXPORT PFNGLXQUERYHYPERPIPEBESTATTRIBSGIXPROC __glewXQueryHyperpipeBestAttribSGIX; +GLXEW_FUN_EXPORT PFNGLXQUERYHYPERPIPECONFIGSGIXPROC __glewXQueryHyperpipeConfigSGIX; +GLXEW_FUN_EXPORT PFNGLXQUERYHYPERPIPENETWORKSGIXPROC __glewXQueryHyperpipeNetworkSGIX; + +GLXEW_FUN_EXPORT PFNGLXCREATEGLXPBUFFERSGIXPROC __glewXCreateGLXPbufferSGIX; +GLXEW_FUN_EXPORT PFNGLXDESTROYGLXPBUFFERSGIXPROC __glewXDestroyGLXPbufferSGIX; +GLXEW_FUN_EXPORT PFNGLXGETSELECTEDEVENTSGIXPROC __glewXGetSelectedEventSGIX; +GLXEW_FUN_EXPORT PFNGLXQUERYGLXPBUFFERSGIXPROC __glewXQueryGLXPbufferSGIX; +GLXEW_FUN_EXPORT PFNGLXSELECTEVENTSGIXPROC __glewXSelectEventSGIX; + +GLXEW_FUN_EXPORT PFNGLXBINDSWAPBARRIERSGIXPROC __glewXBindSwapBarrierSGIX; +GLXEW_FUN_EXPORT PFNGLXQUERYMAXSWAPBARRIERSSGIXPROC __glewXQueryMaxSwapBarriersSGIX; + +GLXEW_FUN_EXPORT PFNGLXJOINSWAPGROUPSGIXPROC __glewXJoinSwapGroupSGIX; + +GLXEW_FUN_EXPORT PFNGLXBINDCHANNELTOWINDOWSGIXPROC __glewXBindChannelToWindowSGIX; +GLXEW_FUN_EXPORT PFNGLXCHANNELRECTSGIXPROC __glewXChannelRectSGIX; +GLXEW_FUN_EXPORT PFNGLXCHANNELRECTSYNCSGIXPROC __glewXChannelRectSyncSGIX; +GLXEW_FUN_EXPORT PFNGLXQUERYCHANNELDELTASSGIXPROC __glewXQueryChannelDeltasSGIX; +GLXEW_FUN_EXPORT PFNGLXQUERYCHANNELRECTSGIXPROC __glewXQueryChannelRectSGIX; + +GLXEW_FUN_EXPORT PFNGLXCUSHIONSGIPROC __glewXCushionSGI; + +GLXEW_FUN_EXPORT PFNGLXGETCURRENTREADDRAWABLESGIPROC __glewXGetCurrentReadDrawableSGI; +GLXEW_FUN_EXPORT PFNGLXMAKECURRENTREADSGIPROC __glewXMakeCurrentReadSGI; + +GLXEW_FUN_EXPORT PFNGLXSWAPINTERVALSGIPROC __glewXSwapIntervalSGI; + +GLXEW_FUN_EXPORT PFNGLXGETVIDEOSYNCSGIPROC __glewXGetVideoSyncSGI; +GLXEW_FUN_EXPORT PFNGLXWAITVIDEOSYNCSGIPROC __glewXWaitVideoSyncSGI; + +GLXEW_FUN_EXPORT PFNGLXGETTRANSPARENTINDEXSUNPROC __glewXGetTransparentIndexSUN; + +GLXEW_FUN_EXPORT PFNGLXGETVIDEORESIZESUNPROC __glewXGetVideoResizeSUN; +GLXEW_FUN_EXPORT PFNGLXVIDEORESIZESUNPROC __glewXVideoResizeSUN; +GLXEW_VAR_EXPORT GLboolean __GLXEW_VERSION_1_0; +GLXEW_VAR_EXPORT GLboolean __GLXEW_VERSION_1_1; +GLXEW_VAR_EXPORT GLboolean __GLXEW_VERSION_1_2; +GLXEW_VAR_EXPORT GLboolean __GLXEW_VERSION_1_3; +GLXEW_VAR_EXPORT GLboolean __GLXEW_VERSION_1_4; +GLXEW_VAR_EXPORT GLboolean __GLXEW_3DFX_multisample; +GLXEW_VAR_EXPORT GLboolean __GLXEW_AMD_gpu_association; +GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_context_flush_control; +GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_create_context; +GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_create_context_no_error; +GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_create_context_profile; +GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_create_context_robustness; +GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_fbconfig_float; +GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_framebuffer_sRGB; +GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_get_proc_address; +GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_multisample; +GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_robustness_application_isolation; +GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_robustness_share_group_isolation; +GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_vertex_buffer_object; +GLXEW_VAR_EXPORT GLboolean __GLXEW_ATI_pixel_format_float; +GLXEW_VAR_EXPORT GLboolean __GLXEW_ATI_render_texture; +GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_buffer_age; +GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_create_context_es2_profile; +GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_create_context_es_profile; +GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_fbconfig_packed_float; +GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_framebuffer_sRGB; +GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_import_context; +GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_libglvnd; +GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_scene_marker; +GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_stereo_tree; +GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_swap_control; +GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_swap_control_tear; +GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_texture_from_pixmap; +GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_visual_info; +GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_visual_rating; +GLXEW_VAR_EXPORT GLboolean __GLXEW_INTEL_swap_event; +GLXEW_VAR_EXPORT GLboolean __GLXEW_MESA_agp_offset; +GLXEW_VAR_EXPORT GLboolean __GLXEW_MESA_copy_sub_buffer; +GLXEW_VAR_EXPORT GLboolean __GLXEW_MESA_pixmap_colormap; +GLXEW_VAR_EXPORT GLboolean __GLXEW_MESA_query_renderer; +GLXEW_VAR_EXPORT GLboolean __GLXEW_MESA_release_buffers; +GLXEW_VAR_EXPORT GLboolean __GLXEW_MESA_set_3dfx_mode; +GLXEW_VAR_EXPORT GLboolean __GLXEW_MESA_swap_control; +GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_copy_buffer; +GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_copy_image; +GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_delay_before_swap; +GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_float_buffer; +GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_multisample_coverage; +GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_present_video; +GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_robustness_video_memory_purge; +GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_swap_group; +GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_vertex_array_range; +GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_video_capture; +GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_video_out; +GLXEW_VAR_EXPORT GLboolean __GLXEW_OML_swap_method; +GLXEW_VAR_EXPORT GLboolean __GLXEW_OML_sync_control; +GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIS_blended_overlay; +GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIS_color_range; +GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIS_multisample; +GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIS_shared_multisample; +GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIX_fbconfig; +GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIX_hyperpipe; +GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIX_pbuffer; +GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIX_swap_barrier; +GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIX_swap_group; +GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIX_video_resize; +GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIX_visual_select_group; +GLXEW_VAR_EXPORT GLboolean __GLXEW_SGI_cushion; +GLXEW_VAR_EXPORT GLboolean __GLXEW_SGI_make_current_read; +GLXEW_VAR_EXPORT GLboolean __GLXEW_SGI_swap_control; +GLXEW_VAR_EXPORT GLboolean __GLXEW_SGI_video_sync; +GLXEW_VAR_EXPORT GLboolean __GLXEW_SUN_get_transparent_index; +GLXEW_VAR_EXPORT GLboolean __GLXEW_SUN_video_resize; +/* ------------------------------------------------------------------------ */ + +GLEWAPI GLenum GLEWAPIENTRY glxewInit (); +GLEWAPI GLboolean GLEWAPIENTRY glxewIsSupported (const char *name); + +#ifndef GLXEW_GET_VAR +#define GLXEW_GET_VAR(x) (*(const GLboolean*)&x) +#endif + +#ifndef GLXEW_GET_FUN +#define GLXEW_GET_FUN(x) x +#endif + +GLEWAPI GLboolean GLEWAPIENTRY glxewGetExtension (const char *name); + +#ifdef __cplusplus +} +#endif + +#endif /* __glxew_h__ */ diff --git a/Source/include/png.h b/Source/include/png.h new file mode 100644 index 0000000..8e272a0 --- /dev/null +++ b/Source/include/png.h @@ -0,0 +1,3247 @@ + +/* png.h - header file for PNG reference library + * + * libpng version 1.6.36 - December 1, 2018 + * + * Copyright (c) 2018 Cosmin Truta + * Copyright (c) 1998-2002,2004,2006-2018 Glenn Randers-Pehrson + * Copyright (c) 1996-1997 Andreas Dilger + * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + * + * This code is released under the libpng license. (See LICENSE, below.) + * + * Authors and maintainers: + * libpng versions 0.71, May 1995, through 0.88, January 1996: Guy Schalnat + * libpng versions 0.89, June 1996, through 0.96, May 1997: Andreas Dilger + * libpng versions 0.97, January 1998, through 1.6.35, July 2018: + * Glenn Randers-Pehrson. + * libpng version 1.6.36, December 1, 2018: Cosmin Truta + * See also "Contributing Authors", below. + */ + +/* + * COPYRIGHT NOTICE, DISCLAIMER, and LICENSE + * ========================================= + * + * PNG Reference Library License version 2 + * --------------------------------------- + * + * * Copyright (c) 1995-2018 The PNG Reference Library Authors. + * * Copyright (c) 2018 Cosmin Truta. + * * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson. + * * Copyright (c) 1996-1997 Andreas Dilger. + * * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + * + * The software is supplied "as is", without warranty of any kind, + * express or implied, including, without limitation, the warranties + * of merchantability, fitness for a particular purpose, title, and + * non-infringement. In no even shall the Copyright owners, or + * anyone distributing the software, be liable for any damages or + * other liability, whether in contract, tort or otherwise, arising + * from, out of, or in connection with the software, or the use or + * other dealings in the software, even if advised of the possibility + * of such damage. + * + * Permission is hereby granted to use, copy, modify, and distribute + * this software, or portions hereof, for any purpose, without fee, + * subject to the following restrictions: + * + * 1. The origin of this software must not be misrepresented; you + * must not claim that you wrote the original software. If you + * use this software in a product, an acknowledgment in the product + * documentation would be appreciated, but is not required. + * + * 2. Altered source versions must be plainly marked as such, and must + * not be misrepresented as being the original software. + * + * 3. This Copyright notice may not be removed or altered from any + * source or altered source distribution. + * + * + * PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35) + * ----------------------------------------------------------------------- + * + * libpng versions 1.0.7, July 1, 2000 through 1.6.35, July 15, 2018 are + * Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are + * derived from libpng-1.0.6, and are distributed according to the same + * disclaimer and license as libpng-1.0.6 with the following individuals + * added to the list of Contributing Authors: + * + * Simon-Pierre Cadieux + * Eric S. Raymond + * Mans Rullgard + * Cosmin Truta + * Gilles Vollant + * James Yu + * Mandar Sahastrabuddhe + * Google Inc. + * Vadim Barkov + * + * and with the following additions to the disclaimer: + * + * There is no warranty against interference with your enjoyment of + * the library or against infringement. There is no warranty that our + * efforts or the library will fulfill any of your particular purposes + * or needs. This library is provided with all faults, and the entire + * risk of satisfactory quality, performance, accuracy, and effort is + * with the user. + * + * Some files in the "contrib" directory and some configure-generated + * files that are distributed with libpng have other copyright owners, and + * are released under other open source licenses. + * + * libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are + * Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from + * libpng-0.96, and are distributed according to the same disclaimer and + * license as libpng-0.96, with the following individuals added to the + * list of Contributing Authors: + * + * Tom Lane + * Glenn Randers-Pehrson + * Willem van Schaik + * + * libpng versions 0.89, June 1996, through 0.96, May 1997, are + * Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88, + * and are distributed according to the same disclaimer and license as + * libpng-0.88, with the following individuals added to the list of + * Contributing Authors: + * + * John Bowler + * Kevin Bracey + * Sam Bushell + * Magnus Holmgren + * Greg Roelofs + * Tom Tanner + * + * Some files in the "scripts" directory have other copyright owners, + * but are released under this license. + * + * libpng versions 0.5, May 1995, through 0.88, January 1996, are + * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + * + * For the purposes of this copyright and license, "Contributing Authors" + * is defined as the following set of individuals: + * + * Andreas Dilger + * Dave Martindale + * Guy Eric Schalnat + * Paul Schmidt + * Tim Wegner + * + * The PNG Reference Library is supplied "AS IS". The Contributing + * Authors and Group 42, Inc. disclaim all warranties, expressed or + * implied, including, without limitation, the warranties of + * merchantability and of fitness for any purpose. The Contributing + * Authors and Group 42, Inc. assume no liability for direct, indirect, + * incidental, special, exemplary, or consequential damages, which may + * result from the use of the PNG Reference Library, even if advised of + * the possibility of such damage. + * + * Permission is hereby granted to use, copy, modify, and distribute this + * source code, or portions hereof, for any purpose, without fee, subject + * to the following restrictions: + * + * 1. The origin of this source code must not be misrepresented. + * + * 2. Altered versions must be plainly marked as such and must not + * be misrepresented as being the original source. + * + * 3. This Copyright notice may not be removed or altered from any + * source or altered source distribution. + * + * The Contributing Authors and Group 42, Inc. specifically permit, + * without fee, and encourage the use of this source code as a component + * to supporting the PNG file format in commercial products. If you use + * this source code in a product, acknowledgment is not required but would + * be appreciated. + * + * END OF COPYRIGHT NOTICE, DISCLAIMER, and LICENSE. + * + * TRADEMARK + * ========= + * + * The name "libpng" has not been registered by the Copyright owners + * as a trademark in any jurisdiction. However, because libpng has + * been distributed and maintained world-wide, continually since 1995, + * the Copyright owners claim "common-law trademark protection" in any + * jurisdiction where common-law trademark is recognized. + */ + +/* + * A "png_get_copyright" function is available, for convenient use in "about" + * boxes and the like: + * + * printf("%s", png_get_copyright(NULL)); + * + * Also, the PNG logo (in PNG format, of course) is supplied in the + * files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31). + */ + +/* + * The contributing authors would like to thank all those who helped + * with testing, bug fixes, and patience. This wouldn't have been + * possible without all of you. + * + * Thanks to Frank J. T. Wojcik for helping with the documentation. + */ + +/* Note about libpng version numbers: + * + * Due to various miscommunications, unforeseen code incompatibilities + * and occasional factors outside the authors' control, version numbering + * on the library has not always been consistent and straightforward. + * The following table summarizes matters since version 0.89c, which was + * the first widely used release: + * + * source png.h png.h shared-lib + * version string int version + * ------- ------ ----- ---------- + * 0.89c "1.0 beta 3" 0.89 89 1.0.89 + * 0.90 "1.0 beta 4" 0.90 90 0.90 [should have been 2.0.90] + * 0.95 "1.0 beta 5" 0.95 95 0.95 [should have been 2.0.95] + * 0.96 "1.0 beta 6" 0.96 96 0.96 [should have been 2.0.96] + * 0.97b "1.00.97 beta 7" 1.00.97 97 1.0.1 [should have been 2.0.97] + * 0.97c 0.97 97 2.0.97 + * 0.98 0.98 98 2.0.98 + * 0.99 0.99 98 2.0.99 + * 0.99a-m 0.99 99 2.0.99 + * 1.00 1.00 100 2.1.0 [100 should be 10000] + * 1.0.0 (from here on, the 100 2.1.0 [100 should be 10000] + * 1.0.1 png.h string is 10001 2.1.0 + * 1.0.1a-e identical to the 10002 from here on, the shared library + * 1.0.2 source version) 10002 is 2.V where V is the source code + * 1.0.2a-b 10003 version, except as noted. + * 1.0.3 10003 + * 1.0.3a-d 10004 + * 1.0.4 10004 + * 1.0.4a-f 10005 + * 1.0.5 (+ 2 patches) 10005 + * 1.0.5a-d 10006 + * 1.0.5e-r 10100 (not source compatible) + * 1.0.5s-v 10006 (not binary compatible) + * 1.0.6 (+ 3 patches) 10006 (still binary incompatible) + * 1.0.6d-f 10007 (still binary incompatible) + * 1.0.6g 10007 + * 1.0.6h 10007 10.6h (testing xy.z so-numbering) + * 1.0.6i 10007 10.6i + * 1.0.6j 10007 2.1.0.6j (incompatible with 1.0.0) + * 1.0.7beta11-14 DLLNUM 10007 2.1.0.7beta11-14 (binary compatible) + * 1.0.7beta15-18 1 10007 2.1.0.7beta15-18 (binary compatible) + * 1.0.7rc1-2 1 10007 2.1.0.7rc1-2 (binary compatible) + * 1.0.7 1 10007 (still compatible) + * ... + * 1.0.69 10 10069 10.so.0.69[.0] + * ... + * 1.2.59 13 10259 12.so.0.59[.0] + * ... + * 1.4.20 14 10420 14.so.0.20[.0] + * ... + * 1.5.30 15 10530 15.so.15.30[.0] + * ... + * 1.6.36 16 10636 16.so.16.36[.0] + * + * Henceforth the source version will match the shared-library major and + * minor numbers; the shared-library major version number will be used for + * changes in backward compatibility, as it is intended. + * The PNG_LIBPNG_VER macro, which is not used within libpng but is + * available for applications, is an unsigned integer of the form XYYZZ + * corresponding to the source version X.Y.Z (leading zeros in Y and Z). + * Beta versions were given the previous public release number plus a + * letter, until version 1.0.6j; from then on they were given the upcoming + * public release number plus "betaNN" or "rcNN". + * + * Binary incompatibility exists only when applications make direct access + * to the info_ptr or png_ptr members through png.h, and the compiled + * application is loaded with a different version of the library. + * + * DLLNUM will change each time there are forward or backward changes + * in binary compatibility (e.g., when a new feature is added). + * + * See libpng.txt or libpng.3 for more information. The PNG specification + * is available as a W3C Recommendation and as an ISO/IEC Standard; see + * + */ + +#ifndef PNG_H +#define PNG_H + +/* This is not the place to learn how to use libpng. The file libpng-manual.txt + * describes how to use libpng, and the file example.c summarizes it + * with some code on which to build. This file is useful for looking + * at the actual function definitions and structure components. If that + * file has been stripped from your copy of libpng, you can find it at + * + * + * If you just need to read a PNG file and don't want to read the documentation + * skip to the end of this file and read the section entitled 'simplified API'. + */ + +/* Version information for png.h - this should match the version in png.c */ +#define PNG_LIBPNG_VER_STRING "1.6.36" +#define PNG_HEADER_VERSION_STRING " libpng version 1.6.36 - December 1, 2018\n" + +#define PNG_LIBPNG_VER_SONUM 16 +#define PNG_LIBPNG_VER_DLLNUM 16 + +/* These should match the first 3 components of PNG_LIBPNG_VER_STRING: */ +#define PNG_LIBPNG_VER_MAJOR 1 +#define PNG_LIBPNG_VER_MINOR 6 +#define PNG_LIBPNG_VER_RELEASE 36 + +/* This should match the numeric part of the final component of + * PNG_LIBPNG_VER_STRING, omitting any leading zero: + */ + +#define PNG_LIBPNG_VER_BUILD 0 + +/* Release Status */ +#define PNG_LIBPNG_BUILD_ALPHA 1 +#define PNG_LIBPNG_BUILD_BETA 2 +#define PNG_LIBPNG_BUILD_RC 3 +#define PNG_LIBPNG_BUILD_STABLE 4 +#define PNG_LIBPNG_BUILD_RELEASE_STATUS_MASK 7 + +/* Release-Specific Flags */ +#define PNG_LIBPNG_BUILD_PATCH 8 /* Can be OR'ed with + PNG_LIBPNG_BUILD_STABLE only */ +#define PNG_LIBPNG_BUILD_PRIVATE 16 /* Cannot be OR'ed with + PNG_LIBPNG_BUILD_SPECIAL */ +#define PNG_LIBPNG_BUILD_SPECIAL 32 /* Cannot be OR'ed with + PNG_LIBPNG_BUILD_PRIVATE */ + +#define PNG_LIBPNG_BUILD_BASE_TYPE PNG_LIBPNG_BUILD_STABLE + +/* Careful here. At one time, Guy wanted to use 082, but that + * would be octal. We must not include leading zeros. + * Versions 0.7 through 1.0.0 were in the range 0 to 100 here + * (only version 1.0.0 was mis-numbered 100 instead of 10000). + * From version 1.0.1 it is: + * XXYYZZ, where XX=major, YY=minor, ZZ=release + */ +#define PNG_LIBPNG_VER 10636 /* 1.6.36 */ + +/* Library configuration: these options cannot be changed after + * the library has been built. + */ +#ifndef PNGLCONF_H +/* If pnglibconf.h is missing, you can + * copy scripts/pnglibconf.h.prebuilt to pnglibconf.h + */ +# include "pnglibconf.h" +#endif + +#ifndef PNG_VERSION_INFO_ONLY +/* Machine specific configuration. */ +# include "pngconf.h" +#endif + +/* + * Added at libpng-1.2.8 + * + * Ref MSDN: Private as priority over Special + * VS_FF_PRIVATEBUILD File *was not* built using standard release + * procedures. If this value is given, the StringFileInfo block must + * contain a PrivateBuild string. + * + * VS_FF_SPECIALBUILD File *was* built by the original company using + * standard release procedures but is a variation of the standard + * file of the same version number. If this value is given, the + * StringFileInfo block must contain a SpecialBuild string. + */ + +#ifdef PNG_USER_PRIVATEBUILD /* From pnglibconf.h */ +# define PNG_LIBPNG_BUILD_TYPE \ + (PNG_LIBPNG_BUILD_BASE_TYPE | PNG_LIBPNG_BUILD_PRIVATE) +#else +# ifdef PNG_LIBPNG_SPECIALBUILD +# define PNG_LIBPNG_BUILD_TYPE \ + (PNG_LIBPNG_BUILD_BASE_TYPE | PNG_LIBPNG_BUILD_SPECIAL) +# else +# define PNG_LIBPNG_BUILD_TYPE (PNG_LIBPNG_BUILD_BASE_TYPE) +# endif +#endif + +#ifndef PNG_VERSION_INFO_ONLY + +/* Inhibit C++ name-mangling for libpng functions but not for system calls. */ +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +/* Version information for C files, stored in png.c. This had better match + * the version above. + */ +#define png_libpng_ver png_get_header_ver(NULL) + +/* This file is arranged in several sections: + * + * 1. [omitted] + * 2. Any configuration options that can be specified by for the application + * code when it is built. (Build time configuration is in pnglibconf.h) + * 3. Type definitions (base types are defined in pngconf.h), structure + * definitions. + * 4. Exported library functions. + * 5. Simplified API. + * 6. Implementation options. + * + * The library source code has additional files (principally pngpriv.h) that + * allow configuration of the library. + */ + +/* Section 1: [omitted] */ + +/* Section 2: run time configuration + * See pnglibconf.h for build time configuration + * + * Run time configuration allows the application to choose between + * implementations of certain arithmetic APIs. The default is set + * at build time and recorded in pnglibconf.h, but it is safe to + * override these (and only these) settings. Note that this won't + * change what the library does, only application code, and the + * settings can (and probably should) be made on a per-file basis + * by setting the #defines before including png.h + * + * Use macros to read integers from PNG data or use the exported + * functions? + * PNG_USE_READ_MACROS: use the macros (see below) Note that + * the macros evaluate their argument multiple times. + * PNG_NO_USE_READ_MACROS: call the relevant library function. + * + * Use the alternative algorithm for compositing alpha samples that + * does not use division? + * PNG_READ_COMPOSITE_NODIV_SUPPORTED: use the 'no division' + * algorithm. + * PNG_NO_READ_COMPOSITE_NODIV: use the 'division' algorithm. + * + * How to handle benign errors if PNG_ALLOW_BENIGN_ERRORS is + * false? + * PNG_ALLOW_BENIGN_ERRORS: map calls to the benign error + * APIs to png_warning. + * Otherwise the calls are mapped to png_error. + */ + +/* Section 3: type definitions, including structures and compile time + * constants. + * See pngconf.h for base types that vary by machine/system + */ + +/* This triggers a compiler error in png.c, if png.c and png.h + * do not agree upon the version number. + */ +typedef char* png_libpng_version_1_6_36; + +/* Basic control structions. Read libpng-manual.txt or libpng.3 for more info. + * + * png_struct is the cache of information used while reading or writing a single + * PNG file. One of these is always required, although the simplified API + * (below) hides the creation and destruction of it. + */ +typedef struct png_struct_def png_struct; +typedef const png_struct * png_const_structp; +typedef png_struct * png_structp; +typedef png_struct * * png_structpp; + +/* png_info contains information read from or to be written to a PNG file. One + * or more of these must exist while reading or creating a PNG file. The + * information is not used by libpng during read but is used to control what + * gets written when a PNG file is created. "png_get_" function calls read + * information during read and "png_set_" functions calls write information + * when creating a PNG. + * been moved into a separate header file that is not accessible to + * applications. Read libpng-manual.txt or libpng.3 for more info. + */ +typedef struct png_info_def png_info; +typedef png_info * png_infop; +typedef const png_info * png_const_infop; +typedef png_info * * png_infopp; + +/* Types with names ending 'p' are pointer types. The corresponding types with + * names ending 'rp' are identical pointer types except that the pointer is + * marked 'restrict', which means that it is the only pointer to the object + * passed to the function. Applications should not use the 'restrict' types; + * it is always valid to pass 'p' to a pointer with a function argument of the + * corresponding 'rp' type. Different compilers have different rules with + * regard to type matching in the presence of 'restrict'. For backward + * compatibility libpng callbacks never have 'restrict' in their parameters and, + * consequentially, writing portable application code is extremely difficult if + * an attempt is made to use 'restrict'. + */ +typedef png_struct * PNG_RESTRICT png_structrp; +typedef const png_struct * PNG_RESTRICT png_const_structrp; +typedef png_info * PNG_RESTRICT png_inforp; +typedef const png_info * PNG_RESTRICT png_const_inforp; + +/* Three color definitions. The order of the red, green, and blue, (and the + * exact size) is not important, although the size of the fields need to + * be png_byte or png_uint_16 (as defined below). + */ +typedef struct png_color_struct +{ + png_byte red; + png_byte green; + png_byte blue; +} png_color; +typedef png_color * png_colorp; +typedef const png_color * png_const_colorp; +typedef png_color * * png_colorpp; + +typedef struct png_color_16_struct +{ + png_byte index; /* used for palette files */ + png_uint_16 red; /* for use in red green blue files */ + png_uint_16 green; + png_uint_16 blue; + png_uint_16 gray; /* for use in grayscale files */ +} png_color_16; +typedef png_color_16 * png_color_16p; +typedef const png_color_16 * png_const_color_16p; +typedef png_color_16 * * png_color_16pp; + +typedef struct png_color_8_struct +{ + png_byte red; /* for use in red green blue files */ + png_byte green; + png_byte blue; + png_byte gray; /* for use in grayscale files */ + png_byte alpha; /* for alpha channel files */ +} png_color_8; +typedef png_color_8 * png_color_8p; +typedef const png_color_8 * png_const_color_8p; +typedef png_color_8 * * png_color_8pp; + +/* + * The following two structures are used for the in-core representation + * of sPLT chunks. + */ +typedef struct png_sPLT_entry_struct +{ + png_uint_16 red; + png_uint_16 green; + png_uint_16 blue; + png_uint_16 alpha; + png_uint_16 frequency; +} png_sPLT_entry; +typedef png_sPLT_entry * png_sPLT_entryp; +typedef const png_sPLT_entry * png_const_sPLT_entryp; +typedef png_sPLT_entry * * png_sPLT_entrypp; + +/* When the depth of the sPLT palette is 8 bits, the color and alpha samples + * occupy the LSB of their respective members, and the MSB of each member + * is zero-filled. The frequency member always occupies the full 16 bits. + */ + +typedef struct png_sPLT_struct +{ + png_charp name; /* palette name */ + png_byte depth; /* depth of palette samples */ + png_sPLT_entryp entries; /* palette entries */ + png_int_32 nentries; /* number of palette entries */ +} png_sPLT_t; +typedef png_sPLT_t * png_sPLT_tp; +typedef const png_sPLT_t * png_const_sPLT_tp; +typedef png_sPLT_t * * png_sPLT_tpp; + +#ifdef PNG_TEXT_SUPPORTED +/* png_text holds the contents of a text/ztxt/itxt chunk in a PNG file, + * and whether that contents is compressed or not. The "key" field + * points to a regular zero-terminated C string. The "text" fields can be a + * regular C string, an empty string, or a NULL pointer. + * However, the structure returned by png_get_text() will always contain + * the "text" field as a regular zero-terminated C string (possibly + * empty), never a NULL pointer, so it can be safely used in printf() and + * other string-handling functions. Note that the "itxt_length", "lang", and + * "lang_key" members of the structure only exist when the library is built + * with iTXt chunk support. Prior to libpng-1.4.0 the library was built by + * default without iTXt support. Also note that when iTXt *is* supported, + * the "lang" and "lang_key" fields contain NULL pointers when the + * "compression" field contains * PNG_TEXT_COMPRESSION_NONE or + * PNG_TEXT_COMPRESSION_zTXt. Note that the "compression value" is not the + * same as what appears in the PNG tEXt/zTXt/iTXt chunk's "compression flag" + * which is always 0 or 1, or its "compression method" which is always 0. + */ +typedef struct png_text_struct +{ + int compression; /* compression value: + -1: tEXt, none + 0: zTXt, deflate + 1: iTXt, none + 2: iTXt, deflate */ + png_charp key; /* keyword, 1-79 character description of "text" */ + png_charp text; /* comment, may be an empty string (ie "") + or a NULL pointer */ + size_t text_length; /* length of the text string */ + size_t itxt_length; /* length of the itxt string */ + png_charp lang; /* language code, 0-79 characters + or a NULL pointer */ + png_charp lang_key; /* keyword translated UTF-8 string, 0 or more + chars or a NULL pointer */ +} png_text; +typedef png_text * png_textp; +typedef const png_text * png_const_textp; +typedef png_text * * png_textpp; +#endif + +/* Supported compression types for text in PNG files (tEXt, and zTXt). + * The values of the PNG_TEXT_COMPRESSION_ defines should NOT be changed. */ +#define PNG_TEXT_COMPRESSION_NONE_WR -3 +#define PNG_TEXT_COMPRESSION_zTXt_WR -2 +#define PNG_TEXT_COMPRESSION_NONE -1 +#define PNG_TEXT_COMPRESSION_zTXt 0 +#define PNG_ITXT_COMPRESSION_NONE 1 +#define PNG_ITXT_COMPRESSION_zTXt 2 +#define PNG_TEXT_COMPRESSION_LAST 3 /* Not a valid value */ + +/* png_time is a way to hold the time in an machine independent way. + * Two conversions are provided, both from time_t and struct tm. There + * is no portable way to convert to either of these structures, as far + * as I know. If you know of a portable way, send it to me. As a side + * note - PNG has always been Year 2000 compliant! + */ +typedef struct png_time_struct +{ + png_uint_16 year; /* full year, as in, 1995 */ + png_byte month; /* month of year, 1 - 12 */ + png_byte day; /* day of month, 1 - 31 */ + png_byte hour; /* hour of day, 0 - 23 */ + png_byte minute; /* minute of hour, 0 - 59 */ + png_byte second; /* second of minute, 0 - 60 (for leap seconds) */ +} png_time; +typedef png_time * png_timep; +typedef const png_time * png_const_timep; +typedef png_time * * png_timepp; + +#if defined(PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED) ||\ + defined(PNG_USER_CHUNKS_SUPPORTED) +/* png_unknown_chunk is a structure to hold queued chunks for which there is + * no specific support. The idea is that we can use this to queue + * up private chunks for output even though the library doesn't actually + * know about their semantics. + * + * The data in the structure is set by libpng on read and used on write. + */ +typedef struct png_unknown_chunk_t +{ + png_byte name[5]; /* Textual chunk name with '\0' terminator */ + png_byte *data; /* Data, should not be modified on read! */ + size_t size; + + /* On write 'location' must be set using the flag values listed below. + * Notice that on read it is set by libpng however the values stored have + * more bits set than are listed below. Always treat the value as a + * bitmask. On write set only one bit - setting multiple bits may cause the + * chunk to be written in multiple places. + */ + png_byte location; /* mode of operation at read time */ +} +png_unknown_chunk; + +typedef png_unknown_chunk * png_unknown_chunkp; +typedef const png_unknown_chunk * png_const_unknown_chunkp; +typedef png_unknown_chunk * * png_unknown_chunkpp; +#endif + +/* Flag values for the unknown chunk location byte. */ +#define PNG_HAVE_IHDR 0x01 +#define PNG_HAVE_PLTE 0x02 +#define PNG_AFTER_IDAT 0x08 + +/* Maximum positive integer used in PNG is (2^31)-1 */ +#define PNG_UINT_31_MAX ((png_uint_32)0x7fffffffL) +#define PNG_UINT_32_MAX ((png_uint_32)(-1)) +#define PNG_SIZE_MAX ((size_t)(-1)) + +/* These are constants for fixed point values encoded in the + * PNG specification manner (x100000) + */ +#define PNG_FP_1 100000 +#define PNG_FP_HALF 50000 +#define PNG_FP_MAX ((png_fixed_point)0x7fffffffL) +#define PNG_FP_MIN (-PNG_FP_MAX) + +/* These describe the color_type field in png_info. */ +/* color type masks */ +#define PNG_COLOR_MASK_PALETTE 1 +#define PNG_COLOR_MASK_COLOR 2 +#define PNG_COLOR_MASK_ALPHA 4 + +/* color types. Note that not all combinations are legal */ +#define PNG_COLOR_TYPE_GRAY 0 +#define PNG_COLOR_TYPE_PALETTE (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_PALETTE) +#define PNG_COLOR_TYPE_RGB (PNG_COLOR_MASK_COLOR) +#define PNG_COLOR_TYPE_RGB_ALPHA (PNG_COLOR_MASK_COLOR | PNG_COLOR_MASK_ALPHA) +#define PNG_COLOR_TYPE_GRAY_ALPHA (PNG_COLOR_MASK_ALPHA) +/* aliases */ +#define PNG_COLOR_TYPE_RGBA PNG_COLOR_TYPE_RGB_ALPHA +#define PNG_COLOR_TYPE_GA PNG_COLOR_TYPE_GRAY_ALPHA + +/* This is for compression type. PNG 1.0-1.2 only define the single type. */ +#define PNG_COMPRESSION_TYPE_BASE 0 /* Deflate method 8, 32K window */ +#define PNG_COMPRESSION_TYPE_DEFAULT PNG_COMPRESSION_TYPE_BASE + +/* This is for filter type. PNG 1.0-1.2 only define the single type. */ +#define PNG_FILTER_TYPE_BASE 0 /* Single row per-byte filtering */ +#define PNG_INTRAPIXEL_DIFFERENCING 64 /* Used only in MNG datastreams */ +#define PNG_FILTER_TYPE_DEFAULT PNG_FILTER_TYPE_BASE + +/* These are for the interlacing type. These values should NOT be changed. */ +#define PNG_INTERLACE_NONE 0 /* Non-interlaced image */ +#define PNG_INTERLACE_ADAM7 1 /* Adam7 interlacing */ +#define PNG_INTERLACE_LAST 2 /* Not a valid value */ + +/* These are for the oFFs chunk. These values should NOT be changed. */ +#define PNG_OFFSET_PIXEL 0 /* Offset in pixels */ +#define PNG_OFFSET_MICROMETER 1 /* Offset in micrometers (1/10^6 meter) */ +#define PNG_OFFSET_LAST 2 /* Not a valid value */ + +/* These are for the pCAL chunk. These values should NOT be changed. */ +#define PNG_EQUATION_LINEAR 0 /* Linear transformation */ +#define PNG_EQUATION_BASE_E 1 /* Exponential base e transform */ +#define PNG_EQUATION_ARBITRARY 2 /* Arbitrary base exponential transform */ +#define PNG_EQUATION_HYPERBOLIC 3 /* Hyperbolic sine transformation */ +#define PNG_EQUATION_LAST 4 /* Not a valid value */ + +/* These are for the sCAL chunk. These values should NOT be changed. */ +#define PNG_SCALE_UNKNOWN 0 /* unknown unit (image scale) */ +#define PNG_SCALE_METER 1 /* meters per pixel */ +#define PNG_SCALE_RADIAN 2 /* radians per pixel */ +#define PNG_SCALE_LAST 3 /* Not a valid value */ + +/* These are for the pHYs chunk. These values should NOT be changed. */ +#define PNG_RESOLUTION_UNKNOWN 0 /* pixels/unknown unit (aspect ratio) */ +#define PNG_RESOLUTION_METER 1 /* pixels/meter */ +#define PNG_RESOLUTION_LAST 2 /* Not a valid value */ + +/* These are for the sRGB chunk. These values should NOT be changed. */ +#define PNG_sRGB_INTENT_PERCEPTUAL 0 +#define PNG_sRGB_INTENT_RELATIVE 1 +#define PNG_sRGB_INTENT_SATURATION 2 +#define PNG_sRGB_INTENT_ABSOLUTE 3 +#define PNG_sRGB_INTENT_LAST 4 /* Not a valid value */ + +/* This is for text chunks */ +#define PNG_KEYWORD_MAX_LENGTH 79 + +/* Maximum number of entries in PLTE/sPLT/tRNS arrays */ +#define PNG_MAX_PALETTE_LENGTH 256 + +/* These determine if an ancillary chunk's data has been successfully read + * from the PNG header, or if the application has filled in the corresponding + * data in the info_struct to be written into the output file. The values + * of the PNG_INFO_ defines should NOT be changed. + */ +#define PNG_INFO_gAMA 0x0001U +#define PNG_INFO_sBIT 0x0002U +#define PNG_INFO_cHRM 0x0004U +#define PNG_INFO_PLTE 0x0008U +#define PNG_INFO_tRNS 0x0010U +#define PNG_INFO_bKGD 0x0020U +#define PNG_INFO_hIST 0x0040U +#define PNG_INFO_pHYs 0x0080U +#define PNG_INFO_oFFs 0x0100U +#define PNG_INFO_tIME 0x0200U +#define PNG_INFO_pCAL 0x0400U +#define PNG_INFO_sRGB 0x0800U /* GR-P, 0.96a */ +#define PNG_INFO_iCCP 0x1000U /* ESR, 1.0.6 */ +#define PNG_INFO_sPLT 0x2000U /* ESR, 1.0.6 */ +#define PNG_INFO_sCAL 0x4000U /* ESR, 1.0.6 */ +#define PNG_INFO_IDAT 0x8000U /* ESR, 1.0.6 */ +#define PNG_INFO_eXIf 0x10000U /* GR-P, 1.6.31 */ + +/* This is used for the transformation routines, as some of them + * change these values for the row. It also should enable using + * the routines for other purposes. + */ +typedef struct png_row_info_struct +{ + png_uint_32 width; /* width of row */ + size_t rowbytes; /* number of bytes in row */ + png_byte color_type; /* color type of row */ + png_byte bit_depth; /* bit depth of row */ + png_byte channels; /* number of channels (1, 2, 3, or 4) */ + png_byte pixel_depth; /* bits per pixel (depth * channels) */ +} png_row_info; + +typedef png_row_info * png_row_infop; +typedef png_row_info * * png_row_infopp; + +/* These are the function types for the I/O functions and for the functions + * that allow the user to override the default I/O functions with his or her + * own. The png_error_ptr type should match that of user-supplied warning + * and error functions, while the png_rw_ptr type should match that of the + * user read/write data functions. Note that the 'write' function must not + * modify the buffer it is passed. The 'read' function, on the other hand, is + * expected to return the read data in the buffer. + */ +typedef PNG_CALLBACK(void, *png_error_ptr, (png_structp, png_const_charp)); +typedef PNG_CALLBACK(void, *png_rw_ptr, (png_structp, png_bytep, size_t)); +typedef PNG_CALLBACK(void, *png_flush_ptr, (png_structp)); +typedef PNG_CALLBACK(void, *png_read_status_ptr, (png_structp, png_uint_32, + int)); +typedef PNG_CALLBACK(void, *png_write_status_ptr, (png_structp, png_uint_32, + int)); + +#ifdef PNG_PROGRESSIVE_READ_SUPPORTED +typedef PNG_CALLBACK(void, *png_progressive_info_ptr, (png_structp, png_infop)); +typedef PNG_CALLBACK(void, *png_progressive_end_ptr, (png_structp, png_infop)); + +/* The following callback receives png_uint_32 row_number, int pass for the + * png_bytep data of the row. When transforming an interlaced image the + * row number is the row number within the sub-image of the interlace pass, so + * the value will increase to the height of the sub-image (not the full image) + * then reset to 0 for the next pass. + * + * Use PNG_ROW_FROM_PASS_ROW(row, pass) and PNG_COL_FROM_PASS_COL(col, pass) to + * find the output pixel (x,y) given an interlaced sub-image pixel + * (row,col,pass). (See below for these macros.) + */ +typedef PNG_CALLBACK(void, *png_progressive_row_ptr, (png_structp, png_bytep, + png_uint_32, int)); +#endif + +#if defined(PNG_READ_USER_TRANSFORM_SUPPORTED) || \ + defined(PNG_WRITE_USER_TRANSFORM_SUPPORTED) +typedef PNG_CALLBACK(void, *png_user_transform_ptr, (png_structp, png_row_infop, + png_bytep)); +#endif + +#ifdef PNG_USER_CHUNKS_SUPPORTED +typedef PNG_CALLBACK(int, *png_user_chunk_ptr, (png_structp, + png_unknown_chunkp)); +#endif +#ifdef PNG_UNKNOWN_CHUNKS_SUPPORTED +/* not used anywhere */ +/* typedef PNG_CALLBACK(void, *png_unknown_chunk_ptr, (png_structp)); */ +#endif + +#ifdef PNG_SETJMP_SUPPORTED +/* This must match the function definition in , and the application + * must include this before png.h to obtain the definition of jmp_buf. The + * function is required to be PNG_NORETURN, but this is not checked. If the + * function does return the application will crash via an abort() or similar + * system level call. + * + * If you get a warning here while building the library you may need to make + * changes to ensure that pnglibconf.h records the calling convention used by + * your compiler. This may be very difficult - try using a different compiler + * to build the library! + */ +PNG_FUNCTION(void, (PNGCAPI *png_longjmp_ptr), PNGARG((jmp_buf, int)), typedef); +#endif + +/* Transform masks for the high-level interface */ +#define PNG_TRANSFORM_IDENTITY 0x0000 /* read and write */ +#define PNG_TRANSFORM_STRIP_16 0x0001 /* read only */ +#define PNG_TRANSFORM_STRIP_ALPHA 0x0002 /* read only */ +#define PNG_TRANSFORM_PACKING 0x0004 /* read and write */ +#define PNG_TRANSFORM_PACKSWAP 0x0008 /* read and write */ +#define PNG_TRANSFORM_EXPAND 0x0010 /* read only */ +#define PNG_TRANSFORM_INVERT_MONO 0x0020 /* read and write */ +#define PNG_TRANSFORM_SHIFT 0x0040 /* read and write */ +#define PNG_TRANSFORM_BGR 0x0080 /* read and write */ +#define PNG_TRANSFORM_SWAP_ALPHA 0x0100 /* read and write */ +#define PNG_TRANSFORM_SWAP_ENDIAN 0x0200 /* read and write */ +#define PNG_TRANSFORM_INVERT_ALPHA 0x0400 /* read and write */ +#define PNG_TRANSFORM_STRIP_FILLER 0x0800 /* write only */ +/* Added to libpng-1.2.34 */ +#define PNG_TRANSFORM_STRIP_FILLER_BEFORE PNG_TRANSFORM_STRIP_FILLER +#define PNG_TRANSFORM_STRIP_FILLER_AFTER 0x1000 /* write only */ +/* Added to libpng-1.4.0 */ +#define PNG_TRANSFORM_GRAY_TO_RGB 0x2000 /* read only */ +/* Added to libpng-1.5.4 */ +#define PNG_TRANSFORM_EXPAND_16 0x4000 /* read only */ +#if INT_MAX >= 0x8000 /* else this might break */ +#define PNG_TRANSFORM_SCALE_16 0x8000 /* read only */ +#endif + +/* Flags for MNG supported features */ +#define PNG_FLAG_MNG_EMPTY_PLTE 0x01 +#define PNG_FLAG_MNG_FILTER_64 0x04 +#define PNG_ALL_MNG_FEATURES 0x05 + +/* NOTE: prior to 1.5 these functions had no 'API' style declaration, + * this allowed the zlib default functions to be used on Windows + * platforms. In 1.5 the zlib default malloc (which just calls malloc and + * ignores the first argument) should be completely compatible with the + * following. + */ +typedef PNG_CALLBACK(png_voidp, *png_malloc_ptr, (png_structp, + png_alloc_size_t)); +typedef PNG_CALLBACK(void, *png_free_ptr, (png_structp, png_voidp)); + +/* Section 4: exported functions + * Here are the function definitions most commonly used. This is not + * the place to find out how to use libpng. See libpng-manual.txt for the + * full explanation, see example.c for the summary. This just provides + * a simple one line description of the use of each function. + * + * The PNG_EXPORT() and PNG_EXPORTA() macros used below are defined in + * pngconf.h and in the *.dfn files in the scripts directory. + * + * PNG_EXPORT(ordinal, type, name, (args)); + * + * ordinal: ordinal that is used while building + * *.def files. The ordinal value is only + * relevant when preprocessing png.h with + * the *.dfn files for building symbol table + * entries, and are removed by pngconf.h. + * type: return type of the function + * name: function name + * args: function arguments, with types + * + * When we wish to append attributes to a function prototype we use + * the PNG_EXPORTA() macro instead. + * + * PNG_EXPORTA(ordinal, type, name, (args), attributes); + * + * ordinal, type, name, and args: same as in PNG_EXPORT(). + * attributes: function attributes + */ + +/* Returns the version number of the library */ +PNG_EXPORT(1, png_uint_32, png_access_version_number, (void)); + +/* Tell lib we have already handled the first magic bytes. + * Handling more than 8 bytes from the beginning of the file is an error. + */ +PNG_EXPORT(2, void, png_set_sig_bytes, (png_structrp png_ptr, int num_bytes)); + +/* Check sig[start] through sig[start + num_to_check - 1] to see if it's a + * PNG file. Returns zero if the supplied bytes match the 8-byte PNG + * signature, and non-zero otherwise. Having num_to_check == 0 or + * start > 7 will always fail (ie return non-zero). + */ +PNG_EXPORT(3, int, png_sig_cmp, (png_const_bytep sig, size_t start, + size_t num_to_check)); + +/* Simple signature checking function. This is the same as calling + * png_check_sig(sig, n) := !png_sig_cmp(sig, 0, n). + */ +#define png_check_sig(sig, n) !png_sig_cmp((sig), 0, (n)) + +/* Allocate and initialize png_ptr struct for reading, and any other memory. */ +PNG_EXPORTA(4, png_structp, png_create_read_struct, + (png_const_charp user_png_ver, png_voidp error_ptr, + png_error_ptr error_fn, png_error_ptr warn_fn), + PNG_ALLOCATED); + +/* Allocate and initialize png_ptr struct for writing, and any other memory */ +PNG_EXPORTA(5, png_structp, png_create_write_struct, + (png_const_charp user_png_ver, png_voidp error_ptr, png_error_ptr error_fn, + png_error_ptr warn_fn), + PNG_ALLOCATED); + +PNG_EXPORT(6, size_t, png_get_compression_buffer_size, + (png_const_structrp png_ptr)); + +PNG_EXPORT(7, void, png_set_compression_buffer_size, (png_structrp png_ptr, + size_t size)); + +/* Moved from pngconf.h in 1.4.0 and modified to ensure setjmp/longjmp + * match up. + */ +#ifdef PNG_SETJMP_SUPPORTED +/* This function returns the jmp_buf built in to *png_ptr. It must be + * supplied with an appropriate 'longjmp' function to use on that jmp_buf + * unless the default error function is overridden in which case NULL is + * acceptable. The size of the jmp_buf is checked against the actual size + * allocated by the library - the call will return NULL on a mismatch + * indicating an ABI mismatch. + */ +PNG_EXPORT(8, jmp_buf*, png_set_longjmp_fn, (png_structrp png_ptr, + png_longjmp_ptr longjmp_fn, size_t jmp_buf_size)); +# define png_jmpbuf(png_ptr) \ + (*png_set_longjmp_fn((png_ptr), longjmp, (sizeof (jmp_buf)))) +#else +# define png_jmpbuf(png_ptr) \ + (LIBPNG_WAS_COMPILED_WITH__PNG_NO_SETJMP) +#endif +/* This function should be used by libpng applications in place of + * longjmp(png_ptr->jmpbuf, val). If longjmp_fn() has been set, it + * will use it; otherwise it will call PNG_ABORT(). This function was + * added in libpng-1.5.0. + */ +PNG_EXPORTA(9, void, png_longjmp, (png_const_structrp png_ptr, int val), + PNG_NORETURN); + +#ifdef PNG_READ_SUPPORTED +/* Reset the compression stream */ +PNG_EXPORTA(10, int, png_reset_zstream, (png_structrp png_ptr), PNG_DEPRECATED); +#endif + +/* New functions added in libpng-1.0.2 (not enabled by default until 1.2.0) */ +#ifdef PNG_USER_MEM_SUPPORTED +PNG_EXPORTA(11, png_structp, png_create_read_struct_2, + (png_const_charp user_png_ver, png_voidp error_ptr, png_error_ptr error_fn, + png_error_ptr warn_fn, + png_voidp mem_ptr, png_malloc_ptr malloc_fn, png_free_ptr free_fn), + PNG_ALLOCATED); +PNG_EXPORTA(12, png_structp, png_create_write_struct_2, + (png_const_charp user_png_ver, png_voidp error_ptr, png_error_ptr error_fn, + png_error_ptr warn_fn, + png_voidp mem_ptr, png_malloc_ptr malloc_fn, png_free_ptr free_fn), + PNG_ALLOCATED); +#endif + +/* Write the PNG file signature. */ +PNG_EXPORT(13, void, png_write_sig, (png_structrp png_ptr)); + +/* Write a PNG chunk - size, type, (optional) data, CRC. */ +PNG_EXPORT(14, void, png_write_chunk, (png_structrp png_ptr, png_const_bytep + chunk_name, png_const_bytep data, size_t length)); + +/* Write the start of a PNG chunk - length and chunk name. */ +PNG_EXPORT(15, void, png_write_chunk_start, (png_structrp png_ptr, + png_const_bytep chunk_name, png_uint_32 length)); + +/* Write the data of a PNG chunk started with png_write_chunk_start(). */ +PNG_EXPORT(16, void, png_write_chunk_data, (png_structrp png_ptr, + png_const_bytep data, size_t length)); + +/* Finish a chunk started with png_write_chunk_start() (includes CRC). */ +PNG_EXPORT(17, void, png_write_chunk_end, (png_structrp png_ptr)); + +/* Allocate and initialize the info structure */ +PNG_EXPORTA(18, png_infop, png_create_info_struct, (png_const_structrp png_ptr), + PNG_ALLOCATED); + +/* DEPRECATED: this function allowed init structures to be created using the + * default allocation method (typically malloc). Use is deprecated in 1.6.0 and + * the API will be removed in the future. + */ +PNG_EXPORTA(19, void, png_info_init_3, (png_infopp info_ptr, + size_t png_info_struct_size), PNG_DEPRECATED); + +/* Writes all the PNG information before the image. */ +PNG_EXPORT(20, void, png_write_info_before_PLTE, + (png_structrp png_ptr, png_const_inforp info_ptr)); +PNG_EXPORT(21, void, png_write_info, + (png_structrp png_ptr, png_const_inforp info_ptr)); + +#ifdef PNG_SEQUENTIAL_READ_SUPPORTED +/* Read the information before the actual image data. */ +PNG_EXPORT(22, void, png_read_info, + (png_structrp png_ptr, png_inforp info_ptr)); +#endif + +#ifdef PNG_TIME_RFC1123_SUPPORTED + /* Convert to a US string format: there is no localization support in this + * routine. The original implementation used a 29 character buffer in + * png_struct, this will be removed in future versions. + */ +#if PNG_LIBPNG_VER < 10700 +/* To do: remove this from libpng17 (and from libpng17/png.c and pngstruct.h) */ +PNG_EXPORTA(23, png_const_charp, png_convert_to_rfc1123, (png_structrp png_ptr, + png_const_timep ptime),PNG_DEPRECATED); +#endif +PNG_EXPORT(241, int, png_convert_to_rfc1123_buffer, (char out[29], + png_const_timep ptime)); +#endif + +#ifdef PNG_CONVERT_tIME_SUPPORTED +/* Convert from a struct tm to png_time */ +PNG_EXPORT(24, void, png_convert_from_struct_tm, (png_timep ptime, + const struct tm * ttime)); + +/* Convert from time_t to png_time. Uses gmtime() */ +PNG_EXPORT(25, void, png_convert_from_time_t, (png_timep ptime, time_t ttime)); +#endif /* CONVERT_tIME */ + +#ifdef PNG_READ_EXPAND_SUPPORTED +/* Expand data to 24-bit RGB, or 8-bit grayscale, with alpha if available. */ +PNG_EXPORT(26, void, png_set_expand, (png_structrp png_ptr)); +PNG_EXPORT(27, void, png_set_expand_gray_1_2_4_to_8, (png_structrp png_ptr)); +PNG_EXPORT(28, void, png_set_palette_to_rgb, (png_structrp png_ptr)); +PNG_EXPORT(29, void, png_set_tRNS_to_alpha, (png_structrp png_ptr)); +#endif + +#ifdef PNG_READ_EXPAND_16_SUPPORTED +/* Expand to 16-bit channels, forces conversion of palette to RGB and expansion + * of a tRNS chunk if present. + */ +PNG_EXPORT(221, void, png_set_expand_16, (png_structrp png_ptr)); +#endif + +#if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED) +/* Use blue, green, red order for pixels. */ +PNG_EXPORT(30, void, png_set_bgr, (png_structrp png_ptr)); +#endif + +#ifdef PNG_READ_GRAY_TO_RGB_SUPPORTED +/* Expand the grayscale to 24-bit RGB if necessary. */ +PNG_EXPORT(31, void, png_set_gray_to_rgb, (png_structrp png_ptr)); +#endif + +#ifdef PNG_READ_RGB_TO_GRAY_SUPPORTED +/* Reduce RGB to grayscale. */ +#define PNG_ERROR_ACTION_NONE 1 +#define PNG_ERROR_ACTION_WARN 2 +#define PNG_ERROR_ACTION_ERROR 3 +#define PNG_RGB_TO_GRAY_DEFAULT (-1)/*for red/green coefficients*/ + +PNG_FP_EXPORT(32, void, png_set_rgb_to_gray, (png_structrp png_ptr, + int error_action, double red, double green)) +PNG_FIXED_EXPORT(33, void, png_set_rgb_to_gray_fixed, (png_structrp png_ptr, + int error_action, png_fixed_point red, png_fixed_point green)) + +PNG_EXPORT(34, png_byte, png_get_rgb_to_gray_status, (png_const_structrp + png_ptr)); +#endif + +#ifdef PNG_BUILD_GRAYSCALE_PALETTE_SUPPORTED +PNG_EXPORT(35, void, png_build_grayscale_palette, (int bit_depth, + png_colorp palette)); +#endif + +#ifdef PNG_READ_ALPHA_MODE_SUPPORTED +/* How the alpha channel is interpreted - this affects how the color channels + * of a PNG file are returned to the calling application when an alpha channel, + * or a tRNS chunk in a palette file, is present. + * + * This has no effect on the way pixels are written into a PNG output + * datastream. The color samples in a PNG datastream are never premultiplied + * with the alpha samples. + * + * The default is to return data according to the PNG specification: the alpha + * channel is a linear measure of the contribution of the pixel to the + * corresponding composited pixel, and the color channels are unassociated + * (not premultiplied). The gamma encoded color channels must be scaled + * according to the contribution and to do this it is necessary to undo + * the encoding, scale the color values, perform the composition and re-encode + * the values. This is the 'PNG' mode. + * + * The alternative is to 'associate' the alpha with the color information by + * storing color channel values that have been scaled by the alpha. + * image. These are the 'STANDARD', 'ASSOCIATED' or 'PREMULTIPLIED' modes + * (the latter being the two common names for associated alpha color channels). + * + * For the 'OPTIMIZED' mode, a pixel is treated as opaque only if the alpha + * value is equal to the maximum value. + * + * The final choice is to gamma encode the alpha channel as well. This is + * broken because, in practice, no implementation that uses this choice + * correctly undoes the encoding before handling alpha composition. Use this + * choice only if other serious errors in the software or hardware you use + * mandate it; the typical serious error is for dark halos to appear around + * opaque areas of the composited PNG image because of arithmetic overflow. + * + * The API function png_set_alpha_mode specifies which of these choices to use + * with an enumerated 'mode' value and the gamma of the required output: + */ +#define PNG_ALPHA_PNG 0 /* according to the PNG standard */ +#define PNG_ALPHA_STANDARD 1 /* according to Porter/Duff */ +#define PNG_ALPHA_ASSOCIATED 1 /* as above; this is the normal practice */ +#define PNG_ALPHA_PREMULTIPLIED 1 /* as above */ +#define PNG_ALPHA_OPTIMIZED 2 /* 'PNG' for opaque pixels, else 'STANDARD' */ +#define PNG_ALPHA_BROKEN 3 /* the alpha channel is gamma encoded */ + +PNG_FP_EXPORT(227, void, png_set_alpha_mode, (png_structrp png_ptr, int mode, + double output_gamma)) +PNG_FIXED_EXPORT(228, void, png_set_alpha_mode_fixed, (png_structrp png_ptr, + int mode, png_fixed_point output_gamma)) +#endif + +#if defined(PNG_GAMMA_SUPPORTED) || defined(PNG_READ_ALPHA_MODE_SUPPORTED) +/* The output_gamma value is a screen gamma in libpng terminology: it expresses + * how to decode the output values, not how they are encoded. + */ +#define PNG_DEFAULT_sRGB -1 /* sRGB gamma and color space */ +#define PNG_GAMMA_MAC_18 -2 /* Old Mac '1.8' gamma and color space */ +#define PNG_GAMMA_sRGB 220000 /* Television standards--matches sRGB gamma */ +#define PNG_GAMMA_LINEAR PNG_FP_1 /* Linear */ +#endif + +/* The following are examples of calls to png_set_alpha_mode to achieve the + * required overall gamma correction and, where necessary, alpha + * premultiplication. + * + * png_set_alpha_mode(pp, PNG_ALPHA_PNG, PNG_DEFAULT_sRGB); + * This is the default libpng handling of the alpha channel - it is not + * pre-multiplied into the color components. In addition the call states + * that the output is for a sRGB system and causes all PNG files without gAMA + * chunks to be assumed to be encoded using sRGB. + * + * png_set_alpha_mode(pp, PNG_ALPHA_PNG, PNG_GAMMA_MAC); + * In this case the output is assumed to be something like an sRGB conformant + * display preceded by a power-law lookup table of power 1.45. This is how + * early Mac systems behaved. + * + * png_set_alpha_mode(pp, PNG_ALPHA_STANDARD, PNG_GAMMA_LINEAR); + * This is the classic Jim Blinn approach and will work in academic + * environments where everything is done by the book. It has the shortcoming + * of assuming that input PNG data with no gamma information is linear - this + * is unlikely to be correct unless the PNG files where generated locally. + * Most of the time the output precision will be so low as to show + * significant banding in dark areas of the image. + * + * png_set_expand_16(pp); + * png_set_alpha_mode(pp, PNG_ALPHA_STANDARD, PNG_DEFAULT_sRGB); + * This is a somewhat more realistic Jim Blinn inspired approach. PNG files + * are assumed to have the sRGB encoding if not marked with a gamma value and + * the output is always 16 bits per component. This permits accurate scaling + * and processing of the data. If you know that your input PNG files were + * generated locally you might need to replace PNG_DEFAULT_sRGB with the + * correct value for your system. + * + * png_set_alpha_mode(pp, PNG_ALPHA_OPTIMIZED, PNG_DEFAULT_sRGB); + * If you just need to composite the PNG image onto an existing background + * and if you control the code that does this you can use the optimization + * setting. In this case you just copy completely opaque pixels to the + * output. For pixels that are not completely transparent (you just skip + * those) you do the composition math using png_composite or png_composite_16 + * below then encode the resultant 8-bit or 16-bit values to match the output + * encoding. + * + * Other cases + * If neither the PNG nor the standard linear encoding work for you because + * of the software or hardware you use then you have a big problem. The PNG + * case will probably result in halos around the image. The linear encoding + * will probably result in a washed out, too bright, image (it's actually too + * contrasty.) Try the ALPHA_OPTIMIZED mode above - this will probably + * substantially reduce the halos. Alternatively try: + * + * png_set_alpha_mode(pp, PNG_ALPHA_BROKEN, PNG_DEFAULT_sRGB); + * This option will also reduce the halos, but there will be slight dark + * halos round the opaque parts of the image where the background is light. + * In the OPTIMIZED mode the halos will be light halos where the background + * is dark. Take your pick - the halos are unavoidable unless you can get + * your hardware/software fixed! (The OPTIMIZED approach is slightly + * faster.) + * + * When the default gamma of PNG files doesn't match the output gamma. + * If you have PNG files with no gamma information png_set_alpha_mode allows + * you to provide a default gamma, but it also sets the output gamma to the + * matching value. If you know your PNG files have a gamma that doesn't + * match the output you can take advantage of the fact that + * png_set_alpha_mode always sets the output gamma but only sets the PNG + * default if it is not already set: + * + * png_set_alpha_mode(pp, PNG_ALPHA_PNG, PNG_DEFAULT_sRGB); + * png_set_alpha_mode(pp, PNG_ALPHA_PNG, PNG_GAMMA_MAC); + * The first call sets both the default and the output gamma values, the + * second call overrides the output gamma without changing the default. This + * is easier than achieving the same effect with png_set_gamma. You must use + * PNG_ALPHA_PNG for the first call - internal checking in png_set_alpha will + * fire if more than one call to png_set_alpha_mode and png_set_background is + * made in the same read operation, however multiple calls with PNG_ALPHA_PNG + * are ignored. + */ + +#ifdef PNG_READ_STRIP_ALPHA_SUPPORTED +PNG_EXPORT(36, void, png_set_strip_alpha, (png_structrp png_ptr)); +#endif + +#if defined(PNG_READ_SWAP_ALPHA_SUPPORTED) || \ + defined(PNG_WRITE_SWAP_ALPHA_SUPPORTED) +PNG_EXPORT(37, void, png_set_swap_alpha, (png_structrp png_ptr)); +#endif + +#if defined(PNG_READ_INVERT_ALPHA_SUPPORTED) || \ + defined(PNG_WRITE_INVERT_ALPHA_SUPPORTED) +PNG_EXPORT(38, void, png_set_invert_alpha, (png_structrp png_ptr)); +#endif + +#if defined(PNG_READ_FILLER_SUPPORTED) || defined(PNG_WRITE_FILLER_SUPPORTED) +/* Add a filler byte to 8-bit or 16-bit Gray or 24-bit or 48-bit RGB images. */ +PNG_EXPORT(39, void, png_set_filler, (png_structrp png_ptr, png_uint_32 filler, + int flags)); +/* The values of the PNG_FILLER_ defines should NOT be changed */ +# define PNG_FILLER_BEFORE 0 +# define PNG_FILLER_AFTER 1 +/* Add an alpha byte to 8-bit or 16-bit Gray or 24-bit or 48-bit RGB images. */ +PNG_EXPORT(40, void, png_set_add_alpha, (png_structrp png_ptr, + png_uint_32 filler, int flags)); +#endif /* READ_FILLER || WRITE_FILLER */ + +#if defined(PNG_READ_SWAP_SUPPORTED) || defined(PNG_WRITE_SWAP_SUPPORTED) +/* Swap bytes in 16-bit depth files. */ +PNG_EXPORT(41, void, png_set_swap, (png_structrp png_ptr)); +#endif + +#if defined(PNG_READ_PACK_SUPPORTED) || defined(PNG_WRITE_PACK_SUPPORTED) +/* Use 1 byte per pixel in 1, 2, or 4-bit depth files. */ +PNG_EXPORT(42, void, png_set_packing, (png_structrp png_ptr)); +#endif + +#if defined(PNG_READ_PACKSWAP_SUPPORTED) || \ + defined(PNG_WRITE_PACKSWAP_SUPPORTED) +/* Swap packing order of pixels in bytes. */ +PNG_EXPORT(43, void, png_set_packswap, (png_structrp png_ptr)); +#endif + +#if defined(PNG_READ_SHIFT_SUPPORTED) || defined(PNG_WRITE_SHIFT_SUPPORTED) +/* Converts files to legal bit depths. */ +PNG_EXPORT(44, void, png_set_shift, (png_structrp png_ptr, png_const_color_8p + true_bits)); +#endif + +#if defined(PNG_READ_INTERLACING_SUPPORTED) || \ + defined(PNG_WRITE_INTERLACING_SUPPORTED) +/* Have the code handle the interlacing. Returns the number of passes. + * MUST be called before png_read_update_info or png_start_read_image, + * otherwise it will not have the desired effect. Note that it is still + * necessary to call png_read_row or png_read_rows png_get_image_height + * times for each pass. +*/ +PNG_EXPORT(45, int, png_set_interlace_handling, (png_structrp png_ptr)); +#endif + +#if defined(PNG_READ_INVERT_SUPPORTED) || defined(PNG_WRITE_INVERT_SUPPORTED) +/* Invert monochrome files */ +PNG_EXPORT(46, void, png_set_invert_mono, (png_structrp png_ptr)); +#endif + +#ifdef PNG_READ_BACKGROUND_SUPPORTED +/* Handle alpha and tRNS by replacing with a background color. Prior to + * libpng-1.5.4 this API must not be called before the PNG file header has been + * read. Doing so will result in unexpected behavior and possible warnings or + * errors if the PNG file contains a bKGD chunk. + */ +PNG_FP_EXPORT(47, void, png_set_background, (png_structrp png_ptr, + png_const_color_16p background_color, int background_gamma_code, + int need_expand, double background_gamma)) +PNG_FIXED_EXPORT(215, void, png_set_background_fixed, (png_structrp png_ptr, + png_const_color_16p background_color, int background_gamma_code, + int need_expand, png_fixed_point background_gamma)) +#endif +#ifdef PNG_READ_BACKGROUND_SUPPORTED +# define PNG_BACKGROUND_GAMMA_UNKNOWN 0 +# define PNG_BACKGROUND_GAMMA_SCREEN 1 +# define PNG_BACKGROUND_GAMMA_FILE 2 +# define PNG_BACKGROUND_GAMMA_UNIQUE 3 +#endif + +#ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED +/* Scale a 16-bit depth file down to 8-bit, accurately. */ +PNG_EXPORT(229, void, png_set_scale_16, (png_structrp png_ptr)); +#endif + +#ifdef PNG_READ_STRIP_16_TO_8_SUPPORTED +#define PNG_READ_16_TO_8_SUPPORTED /* Name prior to 1.5.4 */ +/* Strip the second byte of information from a 16-bit depth file. */ +PNG_EXPORT(48, void, png_set_strip_16, (png_structrp png_ptr)); +#endif + +#ifdef PNG_READ_QUANTIZE_SUPPORTED +/* Turn on quantizing, and reduce the palette to the number of colors + * available. + */ +PNG_EXPORT(49, void, png_set_quantize, (png_structrp png_ptr, + png_colorp palette, int num_palette, int maximum_colors, + png_const_uint_16p histogram, int full_quantize)); +#endif + +#ifdef PNG_READ_GAMMA_SUPPORTED +/* The threshold on gamma processing is configurable but hard-wired into the + * library. The following is the floating point variant. + */ +#define PNG_GAMMA_THRESHOLD (PNG_GAMMA_THRESHOLD_FIXED*.00001) + +/* Handle gamma correction. Screen_gamma=(display_exponent). + * NOTE: this API simply sets the screen and file gamma values. It will + * therefore override the value for gamma in a PNG file if it is called after + * the file header has been read - use with care - call before reading the PNG + * file for best results! + * + * These routines accept the same gamma values as png_set_alpha_mode (described + * above). The PNG_GAMMA_ defines and PNG_DEFAULT_sRGB can be passed to either + * API (floating point or fixed.) Notice, however, that the 'file_gamma' value + * is the inverse of a 'screen gamma' value. + */ +PNG_FP_EXPORT(50, void, png_set_gamma, (png_structrp png_ptr, + double screen_gamma, double override_file_gamma)) +PNG_FIXED_EXPORT(208, void, png_set_gamma_fixed, (png_structrp png_ptr, + png_fixed_point screen_gamma, png_fixed_point override_file_gamma)) +#endif + +#ifdef PNG_WRITE_FLUSH_SUPPORTED +/* Set how many lines between output flushes - 0 for no flushing */ +PNG_EXPORT(51, void, png_set_flush, (png_structrp png_ptr, int nrows)); +/* Flush the current PNG output buffer */ +PNG_EXPORT(52, void, png_write_flush, (png_structrp png_ptr)); +#endif + +/* Optional update palette with requested transformations */ +PNG_EXPORT(53, void, png_start_read_image, (png_structrp png_ptr)); + +/* Optional call to update the users info structure */ +PNG_EXPORT(54, void, png_read_update_info, (png_structrp png_ptr, + png_inforp info_ptr)); + +#ifdef PNG_SEQUENTIAL_READ_SUPPORTED +/* Read one or more rows of image data. */ +PNG_EXPORT(55, void, png_read_rows, (png_structrp png_ptr, png_bytepp row, + png_bytepp display_row, png_uint_32 num_rows)); +#endif + +#ifdef PNG_SEQUENTIAL_READ_SUPPORTED +/* Read a row of data. */ +PNG_EXPORT(56, void, png_read_row, (png_structrp png_ptr, png_bytep row, + png_bytep display_row)); +#endif + +#ifdef PNG_SEQUENTIAL_READ_SUPPORTED +/* Read the whole image into memory at once. */ +PNG_EXPORT(57, void, png_read_image, (png_structrp png_ptr, png_bytepp image)); +#endif + +/* Write a row of image data */ +PNG_EXPORT(58, void, png_write_row, (png_structrp png_ptr, + png_const_bytep row)); + +/* Write a few rows of image data: (*row) is not written; however, the type + * is declared as writeable to maintain compatibility with previous versions + * of libpng and to allow the 'display_row' array from read_rows to be passed + * unchanged to write_rows. + */ +PNG_EXPORT(59, void, png_write_rows, (png_structrp png_ptr, png_bytepp row, + png_uint_32 num_rows)); + +/* Write the image data */ +PNG_EXPORT(60, void, png_write_image, (png_structrp png_ptr, png_bytepp image)); + +/* Write the end of the PNG file. */ +PNG_EXPORT(61, void, png_write_end, (png_structrp png_ptr, + png_inforp info_ptr)); + +#ifdef PNG_SEQUENTIAL_READ_SUPPORTED +/* Read the end of the PNG file. */ +PNG_EXPORT(62, void, png_read_end, (png_structrp png_ptr, png_inforp info_ptr)); +#endif + +/* Free any memory associated with the png_info_struct */ +PNG_EXPORT(63, void, png_destroy_info_struct, (png_const_structrp png_ptr, + png_infopp info_ptr_ptr)); + +/* Free any memory associated with the png_struct and the png_info_structs */ +PNG_EXPORT(64, void, png_destroy_read_struct, (png_structpp png_ptr_ptr, + png_infopp info_ptr_ptr, png_infopp end_info_ptr_ptr)); + +/* Free any memory associated with the png_struct and the png_info_structs */ +PNG_EXPORT(65, void, png_destroy_write_struct, (png_structpp png_ptr_ptr, + png_infopp info_ptr_ptr)); + +/* Set the libpng method of handling chunk CRC errors */ +PNG_EXPORT(66, void, png_set_crc_action, (png_structrp png_ptr, int crit_action, + int ancil_action)); + +/* Values for png_set_crc_action() say how to handle CRC errors in + * ancillary and critical chunks, and whether to use the data contained + * therein. Note that it is impossible to "discard" data in a critical + * chunk. For versions prior to 0.90, the action was always error/quit, + * whereas in version 0.90 and later, the action for CRC errors in ancillary + * chunks is warn/discard. These values should NOT be changed. + * + * value action:critical action:ancillary + */ +#define PNG_CRC_DEFAULT 0 /* error/quit warn/discard data */ +#define PNG_CRC_ERROR_QUIT 1 /* error/quit error/quit */ +#define PNG_CRC_WARN_DISCARD 2 /* (INVALID) warn/discard data */ +#define PNG_CRC_WARN_USE 3 /* warn/use data warn/use data */ +#define PNG_CRC_QUIET_USE 4 /* quiet/use data quiet/use data */ +#define PNG_CRC_NO_CHANGE 5 /* use current value use current value */ + +#ifdef PNG_WRITE_SUPPORTED +/* These functions give the user control over the scan-line filtering in + * libpng and the compression methods used by zlib. These functions are + * mainly useful for testing, as the defaults should work with most users. + * Those users who are tight on memory or want faster performance at the + * expense of compression can modify them. See the compression library + * header file (zlib.h) for an explination of the compression functions. + */ + +/* Set the filtering method(s) used by libpng. Currently, the only valid + * value for "method" is 0. + */ +PNG_EXPORT(67, void, png_set_filter, (png_structrp png_ptr, int method, + int filters)); +#endif /* WRITE */ + +/* Flags for png_set_filter() to say which filters to use. The flags + * are chosen so that they don't conflict with real filter types + * below, in case they are supplied instead of the #defined constants. + * These values should NOT be changed. + */ +#define PNG_NO_FILTERS 0x00 +#define PNG_FILTER_NONE 0x08 +#define PNG_FILTER_SUB 0x10 +#define PNG_FILTER_UP 0x20 +#define PNG_FILTER_AVG 0x40 +#define PNG_FILTER_PAETH 0x80 +#define PNG_FAST_FILTERS (PNG_FILTER_NONE | PNG_FILTER_SUB | PNG_FILTER_UP) +#define PNG_ALL_FILTERS (PNG_FAST_FILTERS | PNG_FILTER_AVG | PNG_FILTER_PAETH) + +/* Filter values (not flags) - used in pngwrite.c, pngwutil.c for now. + * These defines should NOT be changed. + */ +#define PNG_FILTER_VALUE_NONE 0 +#define PNG_FILTER_VALUE_SUB 1 +#define PNG_FILTER_VALUE_UP 2 +#define PNG_FILTER_VALUE_AVG 3 +#define PNG_FILTER_VALUE_PAETH 4 +#define PNG_FILTER_VALUE_LAST 5 + +#ifdef PNG_WRITE_SUPPORTED +#ifdef PNG_WRITE_WEIGHTED_FILTER_SUPPORTED /* DEPRECATED */ +PNG_FP_EXPORT(68, void, png_set_filter_heuristics, (png_structrp png_ptr, + int heuristic_method, int num_weights, png_const_doublep filter_weights, + png_const_doublep filter_costs)) +PNG_FIXED_EXPORT(209, void, png_set_filter_heuristics_fixed, + (png_structrp png_ptr, int heuristic_method, int num_weights, + png_const_fixed_point_p filter_weights, + png_const_fixed_point_p filter_costs)) +#endif /* WRITE_WEIGHTED_FILTER */ + +/* The following are no longer used and will be removed from libpng-1.7: */ +#define PNG_FILTER_HEURISTIC_DEFAULT 0 /* Currently "UNWEIGHTED" */ +#define PNG_FILTER_HEURISTIC_UNWEIGHTED 1 /* Used by libpng < 0.95 */ +#define PNG_FILTER_HEURISTIC_WEIGHTED 2 /* Experimental feature */ +#define PNG_FILTER_HEURISTIC_LAST 3 /* Not a valid value */ + +/* Set the library compression level. Currently, valid values range from + * 0 - 9, corresponding directly to the zlib compression levels 0 - 9 + * (0 - no compression, 9 - "maximal" compression). Note that tests have + * shown that zlib compression levels 3-6 usually perform as well as level 9 + * for PNG images, and do considerably fewer caclulations. In the future, + * these values may not correspond directly to the zlib compression levels. + */ +#ifdef PNG_WRITE_CUSTOMIZE_COMPRESSION_SUPPORTED +PNG_EXPORT(69, void, png_set_compression_level, (png_structrp png_ptr, + int level)); + +PNG_EXPORT(70, void, png_set_compression_mem_level, (png_structrp png_ptr, + int mem_level)); + +PNG_EXPORT(71, void, png_set_compression_strategy, (png_structrp png_ptr, + int strategy)); + +/* If PNG_WRITE_OPTIMIZE_CMF_SUPPORTED is defined, libpng will use a + * smaller value of window_bits if it can do so safely. + */ +PNG_EXPORT(72, void, png_set_compression_window_bits, (png_structrp png_ptr, + int window_bits)); + +PNG_EXPORT(73, void, png_set_compression_method, (png_structrp png_ptr, + int method)); +#endif /* WRITE_CUSTOMIZE_COMPRESSION */ + +#ifdef PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED +/* Also set zlib parameters for compressing non-IDAT chunks */ +PNG_EXPORT(222, void, png_set_text_compression_level, (png_structrp png_ptr, + int level)); + +PNG_EXPORT(223, void, png_set_text_compression_mem_level, (png_structrp png_ptr, + int mem_level)); + +PNG_EXPORT(224, void, png_set_text_compression_strategy, (png_structrp png_ptr, + int strategy)); + +/* If PNG_WRITE_OPTIMIZE_CMF_SUPPORTED is defined, libpng will use a + * smaller value of window_bits if it can do so safely. + */ +PNG_EXPORT(225, void, png_set_text_compression_window_bits, + (png_structrp png_ptr, int window_bits)); + +PNG_EXPORT(226, void, png_set_text_compression_method, (png_structrp png_ptr, + int method)); +#endif /* WRITE_CUSTOMIZE_ZTXT_COMPRESSION */ +#endif /* WRITE */ + +/* These next functions are called for input/output, memory, and error + * handling. They are in the file pngrio.c, pngwio.c, and pngerror.c, + * and call standard C I/O routines such as fread(), fwrite(), and + * fprintf(). These functions can be made to use other I/O routines + * at run time for those applications that need to handle I/O in a + * different manner by calling png_set_???_fn(). See libpng-manual.txt for + * more information. + */ + +#ifdef PNG_STDIO_SUPPORTED +/* Initialize the input/output for the PNG file to the default functions. */ +PNG_EXPORT(74, void, png_init_io, (png_structrp png_ptr, png_FILE_p fp)); +#endif + +/* Replace the (error and abort), and warning functions with user + * supplied functions. If no messages are to be printed you must still + * write and use replacement functions. The replacement error_fn should + * still do a longjmp to the last setjmp location if you are using this + * method of error handling. If error_fn or warning_fn is NULL, the + * default function will be used. + */ + +PNG_EXPORT(75, void, png_set_error_fn, (png_structrp png_ptr, + png_voidp error_ptr, png_error_ptr error_fn, png_error_ptr warning_fn)); + +/* Return the user pointer associated with the error functions */ +PNG_EXPORT(76, png_voidp, png_get_error_ptr, (png_const_structrp png_ptr)); + +/* Replace the default data output functions with a user supplied one(s). + * If buffered output is not used, then output_flush_fn can be set to NULL. + * If PNG_WRITE_FLUSH_SUPPORTED is not defined at libpng compile time + * output_flush_fn will be ignored (and thus can be NULL). + * It is probably a mistake to use NULL for output_flush_fn if + * write_data_fn is not also NULL unless you have built libpng with + * PNG_WRITE_FLUSH_SUPPORTED undefined, because in this case libpng's + * default flush function, which uses the standard *FILE structure, will + * be used. + */ +PNG_EXPORT(77, void, png_set_write_fn, (png_structrp png_ptr, png_voidp io_ptr, + png_rw_ptr write_data_fn, png_flush_ptr output_flush_fn)); + +/* Replace the default data input function with a user supplied one. */ +PNG_EXPORT(78, void, png_set_read_fn, (png_structrp png_ptr, png_voidp io_ptr, + png_rw_ptr read_data_fn)); + +/* Return the user pointer associated with the I/O functions */ +PNG_EXPORT(79, png_voidp, png_get_io_ptr, (png_const_structrp png_ptr)); + +PNG_EXPORT(80, void, png_set_read_status_fn, (png_structrp png_ptr, + png_read_status_ptr read_row_fn)); + +PNG_EXPORT(81, void, png_set_write_status_fn, (png_structrp png_ptr, + png_write_status_ptr write_row_fn)); + +#ifdef PNG_USER_MEM_SUPPORTED +/* Replace the default memory allocation functions with user supplied one(s). */ +PNG_EXPORT(82, void, png_set_mem_fn, (png_structrp png_ptr, png_voidp mem_ptr, + png_malloc_ptr malloc_fn, png_free_ptr free_fn)); +/* Return the user pointer associated with the memory functions */ +PNG_EXPORT(83, png_voidp, png_get_mem_ptr, (png_const_structrp png_ptr)); +#endif + +#ifdef PNG_READ_USER_TRANSFORM_SUPPORTED +PNG_EXPORT(84, void, png_set_read_user_transform_fn, (png_structrp png_ptr, + png_user_transform_ptr read_user_transform_fn)); +#endif + +#ifdef PNG_WRITE_USER_TRANSFORM_SUPPORTED +PNG_EXPORT(85, void, png_set_write_user_transform_fn, (png_structrp png_ptr, + png_user_transform_ptr write_user_transform_fn)); +#endif + +#ifdef PNG_USER_TRANSFORM_PTR_SUPPORTED +PNG_EXPORT(86, void, png_set_user_transform_info, (png_structrp png_ptr, + png_voidp user_transform_ptr, int user_transform_depth, + int user_transform_channels)); +/* Return the user pointer associated with the user transform functions */ +PNG_EXPORT(87, png_voidp, png_get_user_transform_ptr, + (png_const_structrp png_ptr)); +#endif + +#ifdef PNG_USER_TRANSFORM_INFO_SUPPORTED +/* Return information about the row currently being processed. Note that these + * APIs do not fail but will return unexpected results if called outside a user + * transform callback. Also note that when transforming an interlaced image the + * row number is the row number within the sub-image of the interlace pass, so + * the value will increase to the height of the sub-image (not the full image) + * then reset to 0 for the next pass. + * + * Use PNG_ROW_FROM_PASS_ROW(row, pass) and PNG_COL_FROM_PASS_COL(col, pass) to + * find the output pixel (x,y) given an interlaced sub-image pixel + * (row,col,pass). (See below for these macros.) + */ +PNG_EXPORT(217, png_uint_32, png_get_current_row_number, (png_const_structrp)); +PNG_EXPORT(218, png_byte, png_get_current_pass_number, (png_const_structrp)); +#endif + +#ifdef PNG_READ_USER_CHUNKS_SUPPORTED +/* This callback is called only for *unknown* chunks. If + * PNG_HANDLE_AS_UNKNOWN_SUPPORTED is set then it is possible to set known + * chunks to be treated as unknown, however in this case the callback must do + * any processing required by the chunk (e.g. by calling the appropriate + * png_set_ APIs.) + * + * There is no write support - on write, by default, all the chunks in the + * 'unknown' list are written in the specified position. + * + * The integer return from the callback function is interpreted thus: + * + * negative: An error occurred; png_chunk_error will be called. + * zero: The chunk was not handled, the chunk will be saved. A critical + * chunk will cause an error at this point unless it is to be saved. + * positive: The chunk was handled, libpng will ignore/discard it. + * + * See "INTERACTION WITH USER CHUNK CALLBACKS" below for important notes about + * how this behavior will change in libpng 1.7 + */ +PNG_EXPORT(88, void, png_set_read_user_chunk_fn, (png_structrp png_ptr, + png_voidp user_chunk_ptr, png_user_chunk_ptr read_user_chunk_fn)); +#endif + +#ifdef PNG_USER_CHUNKS_SUPPORTED +PNG_EXPORT(89, png_voidp, png_get_user_chunk_ptr, (png_const_structrp png_ptr)); +#endif + +#ifdef PNG_PROGRESSIVE_READ_SUPPORTED +/* Sets the function callbacks for the push reader, and a pointer to a + * user-defined structure available to the callback functions. + */ +PNG_EXPORT(90, void, png_set_progressive_read_fn, (png_structrp png_ptr, + png_voidp progressive_ptr, png_progressive_info_ptr info_fn, + png_progressive_row_ptr row_fn, png_progressive_end_ptr end_fn)); + +/* Returns the user pointer associated with the push read functions */ +PNG_EXPORT(91, png_voidp, png_get_progressive_ptr, + (png_const_structrp png_ptr)); + +/* Function to be called when data becomes available */ +PNG_EXPORT(92, void, png_process_data, (png_structrp png_ptr, + png_inforp info_ptr, png_bytep buffer, size_t buffer_size)); + +/* A function which may be called *only* within png_process_data to stop the + * processing of any more data. The function returns the number of bytes + * remaining, excluding any that libpng has cached internally. A subsequent + * call to png_process_data must supply these bytes again. If the argument + * 'save' is set to true the routine will first save all the pending data and + * will always return 0. + */ +PNG_EXPORT(219, size_t, png_process_data_pause, (png_structrp, int save)); + +/* A function which may be called *only* outside (after) a call to + * png_process_data. It returns the number of bytes of data to skip in the + * input. Normally it will return 0, but if it returns a non-zero value the + * application must skip than number of bytes of input data and pass the + * following data to the next call to png_process_data. + */ +PNG_EXPORT(220, png_uint_32, png_process_data_skip, (png_structrp)); + +/* Function that combines rows. 'new_row' is a flag that should come from + * the callback and be non-NULL if anything needs to be done; the library + * stores its own version of the new data internally and ignores the passed + * in value. + */ +PNG_EXPORT(93, void, png_progressive_combine_row, (png_const_structrp png_ptr, + png_bytep old_row, png_const_bytep new_row)); +#endif /* PROGRESSIVE_READ */ + +PNG_EXPORTA(94, png_voidp, png_malloc, (png_const_structrp png_ptr, + png_alloc_size_t size), PNG_ALLOCATED); +/* Added at libpng version 1.4.0 */ +PNG_EXPORTA(95, png_voidp, png_calloc, (png_const_structrp png_ptr, + png_alloc_size_t size), PNG_ALLOCATED); + +/* Added at libpng version 1.2.4 */ +PNG_EXPORTA(96, png_voidp, png_malloc_warn, (png_const_structrp png_ptr, + png_alloc_size_t size), PNG_ALLOCATED); + +/* Frees a pointer allocated by png_malloc() */ +PNG_EXPORT(97, void, png_free, (png_const_structrp png_ptr, png_voidp ptr)); + +/* Free data that was allocated internally */ +PNG_EXPORT(98, void, png_free_data, (png_const_structrp png_ptr, + png_inforp info_ptr, png_uint_32 free_me, int num)); + +/* Reassign responsibility for freeing existing data, whether allocated + * by libpng or by the application; this works on the png_info structure passed + * in, it does not change the state for other png_info structures. + * + * It is unlikely that this function works correctly as of 1.6.0 and using it + * may result either in memory leaks or double free of allocated data. + */ +PNG_EXPORT(99, void, png_data_freer, (png_const_structrp png_ptr, + png_inforp info_ptr, int freer, png_uint_32 mask)); + +/* Assignments for png_data_freer */ +#define PNG_DESTROY_WILL_FREE_DATA 1 +#define PNG_SET_WILL_FREE_DATA 1 +#define PNG_USER_WILL_FREE_DATA 2 +/* Flags for png_ptr->free_me and info_ptr->free_me */ +#define PNG_FREE_HIST 0x0008U +#define PNG_FREE_ICCP 0x0010U +#define PNG_FREE_SPLT 0x0020U +#define PNG_FREE_ROWS 0x0040U +#define PNG_FREE_PCAL 0x0080U +#define PNG_FREE_SCAL 0x0100U +#ifdef PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED +# define PNG_FREE_UNKN 0x0200U +#endif +/* PNG_FREE_LIST 0x0400U removed in 1.6.0 because it is ignored */ +#define PNG_FREE_PLTE 0x1000U +#define PNG_FREE_TRNS 0x2000U +#define PNG_FREE_TEXT 0x4000U +#define PNG_FREE_EXIF 0x8000U /* Added at libpng-1.6.31 */ +#define PNG_FREE_ALL 0xffffU +#define PNG_FREE_MUL 0x4220U /* PNG_FREE_SPLT|PNG_FREE_TEXT|PNG_FREE_UNKN */ + +#ifdef PNG_USER_MEM_SUPPORTED +PNG_EXPORTA(100, png_voidp, png_malloc_default, (png_const_structrp png_ptr, + png_alloc_size_t size), PNG_ALLOCATED PNG_DEPRECATED); +PNG_EXPORTA(101, void, png_free_default, (png_const_structrp png_ptr, + png_voidp ptr), PNG_DEPRECATED); +#endif + +#ifdef PNG_ERROR_TEXT_SUPPORTED +/* Fatal error in PNG image of libpng - can't continue */ +PNG_EXPORTA(102, void, png_error, (png_const_structrp png_ptr, + png_const_charp error_message), PNG_NORETURN); + +/* The same, but the chunk name is prepended to the error string. */ +PNG_EXPORTA(103, void, png_chunk_error, (png_const_structrp png_ptr, + png_const_charp error_message), PNG_NORETURN); + +#else +/* Fatal error in PNG image of libpng - can't continue */ +PNG_EXPORTA(104, void, png_err, (png_const_structrp png_ptr), PNG_NORETURN); +# define png_error(s1,s2) png_err(s1) +# define png_chunk_error(s1,s2) png_err(s1) +#endif + +#ifdef PNG_WARNINGS_SUPPORTED +/* Non-fatal error in libpng. Can continue, but may have a problem. */ +PNG_EXPORT(105, void, png_warning, (png_const_structrp png_ptr, + png_const_charp warning_message)); + +/* Non-fatal error in libpng, chunk name is prepended to message. */ +PNG_EXPORT(106, void, png_chunk_warning, (png_const_structrp png_ptr, + png_const_charp warning_message)); +#else +# define png_warning(s1,s2) ((void)(s1)) +# define png_chunk_warning(s1,s2) ((void)(s1)) +#endif + +#ifdef PNG_BENIGN_ERRORS_SUPPORTED +/* Benign error in libpng. Can continue, but may have a problem. + * User can choose whether to handle as a fatal error or as a warning. */ +PNG_EXPORT(107, void, png_benign_error, (png_const_structrp png_ptr, + png_const_charp warning_message)); + +#ifdef PNG_READ_SUPPORTED +/* Same, chunk name is prepended to message (only during read) */ +PNG_EXPORT(108, void, png_chunk_benign_error, (png_const_structrp png_ptr, + png_const_charp warning_message)); +#endif + +PNG_EXPORT(109, void, png_set_benign_errors, + (png_structrp png_ptr, int allowed)); +#else +# ifdef PNG_ALLOW_BENIGN_ERRORS +# define png_benign_error png_warning +# define png_chunk_benign_error png_chunk_warning +# else +# define png_benign_error png_error +# define png_chunk_benign_error png_chunk_error +# endif +#endif + +/* The png_set_ functions are for storing values in the png_info_struct. + * Similarly, the png_get_ calls are used to read values from the + * png_info_struct, either storing the parameters in the passed variables, or + * setting pointers into the png_info_struct where the data is stored. The + * png_get_ functions return a non-zero value if the data was available + * in info_ptr, or return zero and do not change any of the parameters if the + * data was not available. + * + * These functions should be used instead of directly accessing png_info + * to avoid problems with future changes in the size and internal layout of + * png_info_struct. + */ +/* Returns "flag" if chunk data is valid in info_ptr. */ +PNG_EXPORT(110, png_uint_32, png_get_valid, (png_const_structrp png_ptr, + png_const_inforp info_ptr, png_uint_32 flag)); + +/* Returns number of bytes needed to hold a transformed row. */ +PNG_EXPORT(111, size_t, png_get_rowbytes, (png_const_structrp png_ptr, + png_const_inforp info_ptr)); + +#ifdef PNG_INFO_IMAGE_SUPPORTED +/* Returns row_pointers, which is an array of pointers to scanlines that was + * returned from png_read_png(). + */ +PNG_EXPORT(112, png_bytepp, png_get_rows, (png_const_structrp png_ptr, + png_const_inforp info_ptr)); + +/* Set row_pointers, which is an array of pointers to scanlines for use + * by png_write_png(). + */ +PNG_EXPORT(113, void, png_set_rows, (png_const_structrp png_ptr, + png_inforp info_ptr, png_bytepp row_pointers)); +#endif + +/* Returns number of color channels in image. */ +PNG_EXPORT(114, png_byte, png_get_channels, (png_const_structrp png_ptr, + png_const_inforp info_ptr)); + +#ifdef PNG_EASY_ACCESS_SUPPORTED +/* Returns image width in pixels. */ +PNG_EXPORT(115, png_uint_32, png_get_image_width, (png_const_structrp png_ptr, + png_const_inforp info_ptr)); + +/* Returns image height in pixels. */ +PNG_EXPORT(116, png_uint_32, png_get_image_height, (png_const_structrp png_ptr, + png_const_inforp info_ptr)); + +/* Returns image bit_depth. */ +PNG_EXPORT(117, png_byte, png_get_bit_depth, (png_const_structrp png_ptr, + png_const_inforp info_ptr)); + +/* Returns image color_type. */ +PNG_EXPORT(118, png_byte, png_get_color_type, (png_const_structrp png_ptr, + png_const_inforp info_ptr)); + +/* Returns image filter_type. */ +PNG_EXPORT(119, png_byte, png_get_filter_type, (png_const_structrp png_ptr, + png_const_inforp info_ptr)); + +/* Returns image interlace_type. */ +PNG_EXPORT(120, png_byte, png_get_interlace_type, (png_const_structrp png_ptr, + png_const_inforp info_ptr)); + +/* Returns image compression_type. */ +PNG_EXPORT(121, png_byte, png_get_compression_type, (png_const_structrp png_ptr, + png_const_inforp info_ptr)); + +/* Returns image resolution in pixels per meter, from pHYs chunk data. */ +PNG_EXPORT(122, png_uint_32, png_get_pixels_per_meter, + (png_const_structrp png_ptr, png_const_inforp info_ptr)); +PNG_EXPORT(123, png_uint_32, png_get_x_pixels_per_meter, + (png_const_structrp png_ptr, png_const_inforp info_ptr)); +PNG_EXPORT(124, png_uint_32, png_get_y_pixels_per_meter, + (png_const_structrp png_ptr, png_const_inforp info_ptr)); + +/* Returns pixel aspect ratio, computed from pHYs chunk data. */ +PNG_FP_EXPORT(125, float, png_get_pixel_aspect_ratio, + (png_const_structrp png_ptr, png_const_inforp info_ptr)) +PNG_FIXED_EXPORT(210, png_fixed_point, png_get_pixel_aspect_ratio_fixed, + (png_const_structrp png_ptr, png_const_inforp info_ptr)) + +/* Returns image x, y offset in pixels or microns, from oFFs chunk data. */ +PNG_EXPORT(126, png_int_32, png_get_x_offset_pixels, + (png_const_structrp png_ptr, png_const_inforp info_ptr)); +PNG_EXPORT(127, png_int_32, png_get_y_offset_pixels, + (png_const_structrp png_ptr, png_const_inforp info_ptr)); +PNG_EXPORT(128, png_int_32, png_get_x_offset_microns, + (png_const_structrp png_ptr, png_const_inforp info_ptr)); +PNG_EXPORT(129, png_int_32, png_get_y_offset_microns, + (png_const_structrp png_ptr, png_const_inforp info_ptr)); + +#endif /* EASY_ACCESS */ + +#ifdef PNG_READ_SUPPORTED +/* Returns pointer to signature string read from PNG header */ +PNG_EXPORT(130, png_const_bytep, png_get_signature, (png_const_structrp png_ptr, + png_const_inforp info_ptr)); +#endif + +#ifdef PNG_bKGD_SUPPORTED +PNG_EXPORT(131, png_uint_32, png_get_bKGD, (png_const_structrp png_ptr, + png_inforp info_ptr, png_color_16p *background)); +#endif + +#ifdef PNG_bKGD_SUPPORTED +PNG_EXPORT(132, void, png_set_bKGD, (png_const_structrp png_ptr, + png_inforp info_ptr, png_const_color_16p background)); +#endif + +#ifdef PNG_cHRM_SUPPORTED +PNG_FP_EXPORT(133, png_uint_32, png_get_cHRM, (png_const_structrp png_ptr, + png_const_inforp info_ptr, double *white_x, double *white_y, double *red_x, + double *red_y, double *green_x, double *green_y, double *blue_x, + double *blue_y)) +PNG_FP_EXPORT(230, png_uint_32, png_get_cHRM_XYZ, (png_const_structrp png_ptr, + png_const_inforp info_ptr, double *red_X, double *red_Y, double *red_Z, + double *green_X, double *green_Y, double *green_Z, double *blue_X, + double *blue_Y, double *blue_Z)) +PNG_FIXED_EXPORT(134, png_uint_32, png_get_cHRM_fixed, + (png_const_structrp png_ptr, png_const_inforp info_ptr, + png_fixed_point *int_white_x, png_fixed_point *int_white_y, + png_fixed_point *int_red_x, png_fixed_point *int_red_y, + png_fixed_point *int_green_x, png_fixed_point *int_green_y, + png_fixed_point *int_blue_x, png_fixed_point *int_blue_y)) +PNG_FIXED_EXPORT(231, png_uint_32, png_get_cHRM_XYZ_fixed, + (png_const_structrp png_ptr, png_const_inforp info_ptr, + png_fixed_point *int_red_X, png_fixed_point *int_red_Y, + png_fixed_point *int_red_Z, png_fixed_point *int_green_X, + png_fixed_point *int_green_Y, png_fixed_point *int_green_Z, + png_fixed_point *int_blue_X, png_fixed_point *int_blue_Y, + png_fixed_point *int_blue_Z)) +#endif + +#ifdef PNG_cHRM_SUPPORTED +PNG_FP_EXPORT(135, void, png_set_cHRM, (png_const_structrp png_ptr, + png_inforp info_ptr, + double white_x, double white_y, double red_x, double red_y, double green_x, + double green_y, double blue_x, double blue_y)) +PNG_FP_EXPORT(232, void, png_set_cHRM_XYZ, (png_const_structrp png_ptr, + png_inforp info_ptr, double red_X, double red_Y, double red_Z, + double green_X, double green_Y, double green_Z, double blue_X, + double blue_Y, double blue_Z)) +PNG_FIXED_EXPORT(136, void, png_set_cHRM_fixed, (png_const_structrp png_ptr, + png_inforp info_ptr, png_fixed_point int_white_x, + png_fixed_point int_white_y, png_fixed_point int_red_x, + png_fixed_point int_red_y, png_fixed_point int_green_x, + png_fixed_point int_green_y, png_fixed_point int_blue_x, + png_fixed_point int_blue_y)) +PNG_FIXED_EXPORT(233, void, png_set_cHRM_XYZ_fixed, (png_const_structrp png_ptr, + png_inforp info_ptr, png_fixed_point int_red_X, png_fixed_point int_red_Y, + png_fixed_point int_red_Z, png_fixed_point int_green_X, + png_fixed_point int_green_Y, png_fixed_point int_green_Z, + png_fixed_point int_blue_X, png_fixed_point int_blue_Y, + png_fixed_point int_blue_Z)) +#endif + +#ifdef PNG_eXIf_SUPPORTED +PNG_EXPORT(246, png_uint_32, png_get_eXIf, (png_const_structrp png_ptr, + png_inforp info_ptr, png_bytep *exif)); +PNG_EXPORT(247, void, png_set_eXIf, (png_const_structrp png_ptr, + png_inforp info_ptr, png_bytep exif)); + +PNG_EXPORT(248, png_uint_32, png_get_eXIf_1, (png_const_structrp png_ptr, + png_const_inforp info_ptr, png_uint_32 *num_exif, png_bytep *exif)); +PNG_EXPORT(249, void, png_set_eXIf_1, (png_const_structrp png_ptr, + png_inforp info_ptr, png_uint_32 num_exif, png_bytep exif)); +#endif + +#ifdef PNG_gAMA_SUPPORTED +PNG_FP_EXPORT(137, png_uint_32, png_get_gAMA, (png_const_structrp png_ptr, + png_const_inforp info_ptr, double *file_gamma)) +PNG_FIXED_EXPORT(138, png_uint_32, png_get_gAMA_fixed, + (png_const_structrp png_ptr, png_const_inforp info_ptr, + png_fixed_point *int_file_gamma)) +#endif + +#ifdef PNG_gAMA_SUPPORTED +PNG_FP_EXPORT(139, void, png_set_gAMA, (png_const_structrp png_ptr, + png_inforp info_ptr, double file_gamma)) +PNG_FIXED_EXPORT(140, void, png_set_gAMA_fixed, (png_const_structrp png_ptr, + png_inforp info_ptr, png_fixed_point int_file_gamma)) +#endif + +#ifdef PNG_hIST_SUPPORTED +PNG_EXPORT(141, png_uint_32, png_get_hIST, (png_const_structrp png_ptr, + png_inforp info_ptr, png_uint_16p *hist)); +PNG_EXPORT(142, void, png_set_hIST, (png_const_structrp png_ptr, + png_inforp info_ptr, png_const_uint_16p hist)); +#endif + +PNG_EXPORT(143, png_uint_32, png_get_IHDR, (png_const_structrp png_ptr, + png_const_inforp info_ptr, png_uint_32 *width, png_uint_32 *height, + int *bit_depth, int *color_type, int *interlace_method, + int *compression_method, int *filter_method)); + +PNG_EXPORT(144, void, png_set_IHDR, (png_const_structrp png_ptr, + png_inforp info_ptr, png_uint_32 width, png_uint_32 height, int bit_depth, + int color_type, int interlace_method, int compression_method, + int filter_method)); + +#ifdef PNG_oFFs_SUPPORTED +PNG_EXPORT(145, png_uint_32, png_get_oFFs, (png_const_structrp png_ptr, + png_const_inforp info_ptr, png_int_32 *offset_x, png_int_32 *offset_y, + int *unit_type)); +#endif + +#ifdef PNG_oFFs_SUPPORTED +PNG_EXPORT(146, void, png_set_oFFs, (png_const_structrp png_ptr, + png_inforp info_ptr, png_int_32 offset_x, png_int_32 offset_y, + int unit_type)); +#endif + +#ifdef PNG_pCAL_SUPPORTED +PNG_EXPORT(147, png_uint_32, png_get_pCAL, (png_const_structrp png_ptr, + png_inforp info_ptr, png_charp *purpose, png_int_32 *X0, + png_int_32 *X1, int *type, int *nparams, png_charp *units, + png_charpp *params)); +#endif + +#ifdef PNG_pCAL_SUPPORTED +PNG_EXPORT(148, void, png_set_pCAL, (png_const_structrp png_ptr, + png_inforp info_ptr, png_const_charp purpose, png_int_32 X0, png_int_32 X1, + int type, int nparams, png_const_charp units, png_charpp params)); +#endif + +#ifdef PNG_pHYs_SUPPORTED +PNG_EXPORT(149, png_uint_32, png_get_pHYs, (png_const_structrp png_ptr, + png_const_inforp info_ptr, png_uint_32 *res_x, png_uint_32 *res_y, + int *unit_type)); +#endif + +#ifdef PNG_pHYs_SUPPORTED +PNG_EXPORT(150, void, png_set_pHYs, (png_const_structrp png_ptr, + png_inforp info_ptr, png_uint_32 res_x, png_uint_32 res_y, int unit_type)); +#endif + +PNG_EXPORT(151, png_uint_32, png_get_PLTE, (png_const_structrp png_ptr, + png_inforp info_ptr, png_colorp *palette, int *num_palette)); + +PNG_EXPORT(152, void, png_set_PLTE, (png_structrp png_ptr, + png_inforp info_ptr, png_const_colorp palette, int num_palette)); + +#ifdef PNG_sBIT_SUPPORTED +PNG_EXPORT(153, png_uint_32, png_get_sBIT, (png_const_structrp png_ptr, + png_inforp info_ptr, png_color_8p *sig_bit)); +#endif + +#ifdef PNG_sBIT_SUPPORTED +PNG_EXPORT(154, void, png_set_sBIT, (png_const_structrp png_ptr, + png_inforp info_ptr, png_const_color_8p sig_bit)); +#endif + +#ifdef PNG_sRGB_SUPPORTED +PNG_EXPORT(155, png_uint_32, png_get_sRGB, (png_const_structrp png_ptr, + png_const_inforp info_ptr, int *file_srgb_intent)); +#endif + +#ifdef PNG_sRGB_SUPPORTED +PNG_EXPORT(156, void, png_set_sRGB, (png_const_structrp png_ptr, + png_inforp info_ptr, int srgb_intent)); +PNG_EXPORT(157, void, png_set_sRGB_gAMA_and_cHRM, (png_const_structrp png_ptr, + png_inforp info_ptr, int srgb_intent)); +#endif + +#ifdef PNG_iCCP_SUPPORTED +PNG_EXPORT(158, png_uint_32, png_get_iCCP, (png_const_structrp png_ptr, + png_inforp info_ptr, png_charpp name, int *compression_type, + png_bytepp profile, png_uint_32 *proflen)); +#endif + +#ifdef PNG_iCCP_SUPPORTED +PNG_EXPORT(159, void, png_set_iCCP, (png_const_structrp png_ptr, + png_inforp info_ptr, png_const_charp name, int compression_type, + png_const_bytep profile, png_uint_32 proflen)); +#endif + +#ifdef PNG_sPLT_SUPPORTED +PNG_EXPORT(160, int, png_get_sPLT, (png_const_structrp png_ptr, + png_inforp info_ptr, png_sPLT_tpp entries)); +#endif + +#ifdef PNG_sPLT_SUPPORTED +PNG_EXPORT(161, void, png_set_sPLT, (png_const_structrp png_ptr, + png_inforp info_ptr, png_const_sPLT_tp entries, int nentries)); +#endif + +#ifdef PNG_TEXT_SUPPORTED +/* png_get_text also returns the number of text chunks in *num_text */ +PNG_EXPORT(162, int, png_get_text, (png_const_structrp png_ptr, + png_inforp info_ptr, png_textp *text_ptr, int *num_text)); +#endif + +/* Note while png_set_text() will accept a structure whose text, + * language, and translated keywords are NULL pointers, the structure + * returned by png_get_text will always contain regular + * zero-terminated C strings. They might be empty strings but + * they will never be NULL pointers. + */ + +#ifdef PNG_TEXT_SUPPORTED +PNG_EXPORT(163, void, png_set_text, (png_const_structrp png_ptr, + png_inforp info_ptr, png_const_textp text_ptr, int num_text)); +#endif + +#ifdef PNG_tIME_SUPPORTED +PNG_EXPORT(164, png_uint_32, png_get_tIME, (png_const_structrp png_ptr, + png_inforp info_ptr, png_timep *mod_time)); +#endif + +#ifdef PNG_tIME_SUPPORTED +PNG_EXPORT(165, void, png_set_tIME, (png_const_structrp png_ptr, + png_inforp info_ptr, png_const_timep mod_time)); +#endif + +#ifdef PNG_tRNS_SUPPORTED +PNG_EXPORT(166, png_uint_32, png_get_tRNS, (png_const_structrp png_ptr, + png_inforp info_ptr, png_bytep *trans_alpha, int *num_trans, + png_color_16p *trans_color)); +#endif + +#ifdef PNG_tRNS_SUPPORTED +PNG_EXPORT(167, void, png_set_tRNS, (png_structrp png_ptr, + png_inforp info_ptr, png_const_bytep trans_alpha, int num_trans, + png_const_color_16p trans_color)); +#endif + +#ifdef PNG_sCAL_SUPPORTED +PNG_FP_EXPORT(168, png_uint_32, png_get_sCAL, (png_const_structrp png_ptr, + png_const_inforp info_ptr, int *unit, double *width, double *height)) +#if defined(PNG_FLOATING_ARITHMETIC_SUPPORTED) || \ + defined(PNG_FLOATING_POINT_SUPPORTED) +/* NOTE: this API is currently implemented using floating point arithmetic, + * consequently it can only be used on systems with floating point support. + * In any case the range of values supported by png_fixed_point is small and it + * is highly recommended that png_get_sCAL_s be used instead. + */ +PNG_FIXED_EXPORT(214, png_uint_32, png_get_sCAL_fixed, + (png_const_structrp png_ptr, png_const_inforp info_ptr, int *unit, + png_fixed_point *width, png_fixed_point *height)) +#endif +PNG_EXPORT(169, png_uint_32, png_get_sCAL_s, + (png_const_structrp png_ptr, png_const_inforp info_ptr, int *unit, + png_charpp swidth, png_charpp sheight)); + +PNG_FP_EXPORT(170, void, png_set_sCAL, (png_const_structrp png_ptr, + png_inforp info_ptr, int unit, double width, double height)) +PNG_FIXED_EXPORT(213, void, png_set_sCAL_fixed, (png_const_structrp png_ptr, + png_inforp info_ptr, int unit, png_fixed_point width, + png_fixed_point height)) +PNG_EXPORT(171, void, png_set_sCAL_s, (png_const_structrp png_ptr, + png_inforp info_ptr, int unit, + png_const_charp swidth, png_const_charp sheight)); +#endif /* sCAL */ + +#ifdef PNG_SET_UNKNOWN_CHUNKS_SUPPORTED +/* Provide the default handling for all unknown chunks or, optionally, for + * specific unknown chunks. + * + * NOTE: prior to 1.6.0 the handling specified for particular chunks on read was + * ignored and the default was used, the per-chunk setting only had an effect on + * write. If you wish to have chunk-specific handling on read in code that must + * work on earlier versions you must use a user chunk callback to specify the + * desired handling (keep or discard.) + * + * The 'keep' parameter is a PNG_HANDLE_CHUNK_ value as listed below. The + * parameter is interpreted as follows: + * + * READ: + * PNG_HANDLE_CHUNK_AS_DEFAULT: + * Known chunks: do normal libpng processing, do not keep the chunk (but + * see the comments below about PNG_HANDLE_AS_UNKNOWN_SUPPORTED) + * Unknown chunks: for a specific chunk use the global default, when used + * as the default discard the chunk data. + * PNG_HANDLE_CHUNK_NEVER: + * Discard the chunk data. + * PNG_HANDLE_CHUNK_IF_SAFE: + * Keep the chunk data if the chunk is not critical else raise a chunk + * error. + * PNG_HANDLE_CHUNK_ALWAYS: + * Keep the chunk data. + * + * If the chunk data is saved it can be retrieved using png_get_unknown_chunks, + * below. Notice that specifying "AS_DEFAULT" as a global default is equivalent + * to specifying "NEVER", however when "AS_DEFAULT" is used for specific chunks + * it simply resets the behavior to the libpng default. + * + * INTERACTION WITH USER CHUNK CALLBACKS: + * The per-chunk handling is always used when there is a png_user_chunk_ptr + * callback and the callback returns 0; the chunk is then always stored *unless* + * it is critical and the per-chunk setting is other than ALWAYS. Notice that + * the global default is *not* used in this case. (In effect the per-chunk + * value is incremented to at least IF_SAFE.) + * + * IMPORTANT NOTE: this behavior will change in libpng 1.7 - the global and + * per-chunk defaults will be honored. If you want to preserve the current + * behavior when your callback returns 0 you must set PNG_HANDLE_CHUNK_IF_SAFE + * as the default - if you don't do this libpng 1.6 will issue a warning. + * + * If you want unhandled unknown chunks to be discarded in libpng 1.6 and + * earlier simply return '1' (handled). + * + * PNG_HANDLE_AS_UNKNOWN_SUPPORTED: + * If this is *not* set known chunks will always be handled by libpng and + * will never be stored in the unknown chunk list. Known chunks listed to + * png_set_keep_unknown_chunks will have no effect. If it is set then known + * chunks listed with a keep other than AS_DEFAULT will *never* be processed + * by libpng, in addition critical chunks must either be processed by the + * callback or saved. + * + * The IHDR and IEND chunks must not be listed. Because this turns off the + * default handling for chunks that would otherwise be recognized the + * behavior of libpng transformations may well become incorrect! + * + * WRITE: + * When writing chunks the options only apply to the chunks specified by + * png_set_unknown_chunks (below), libpng will *always* write known chunks + * required by png_set_ calls and will always write the core critical chunks + * (as required for PLTE). + * + * Each chunk in the png_set_unknown_chunks list is looked up in the + * png_set_keep_unknown_chunks list to find the keep setting, this is then + * interpreted as follows: + * + * PNG_HANDLE_CHUNK_AS_DEFAULT: + * Write safe-to-copy chunks and write other chunks if the global + * default is set to _ALWAYS, otherwise don't write this chunk. + * PNG_HANDLE_CHUNK_NEVER: + * Do not write the chunk. + * PNG_HANDLE_CHUNK_IF_SAFE: + * Write the chunk if it is safe-to-copy, otherwise do not write it. + * PNG_HANDLE_CHUNK_ALWAYS: + * Write the chunk. + * + * Note that the default behavior is effectively the opposite of the read case - + * in read unknown chunks are not stored by default, in write they are written + * by default. Also the behavior of PNG_HANDLE_CHUNK_IF_SAFE is very different + * - on write the safe-to-copy bit is checked, on read the critical bit is + * checked and on read if the chunk is critical an error will be raised. + * + * num_chunks: + * =========== + * If num_chunks is positive, then the "keep" parameter specifies the manner + * for handling only those chunks appearing in the chunk_list array, + * otherwise the chunk list array is ignored. + * + * If num_chunks is 0 the "keep" parameter specifies the default behavior for + * unknown chunks, as described above. + * + * If num_chunks is negative, then the "keep" parameter specifies the manner + * for handling all unknown chunks plus all chunks recognized by libpng + * except for the IHDR, PLTE, tRNS, IDAT, and IEND chunks (which continue to + * be processed by libpng. + */ +#ifdef PNG_HANDLE_AS_UNKNOWN_SUPPORTED +PNG_EXPORT(172, void, png_set_keep_unknown_chunks, (png_structrp png_ptr, + int keep, png_const_bytep chunk_list, int num_chunks)); +#endif /* HANDLE_AS_UNKNOWN */ + +/* The "keep" PNG_HANDLE_CHUNK_ parameter for the specified chunk is returned; + * the result is therefore true (non-zero) if special handling is required, + * false for the default handling. + */ +PNG_EXPORT(173, int, png_handle_as_unknown, (png_const_structrp png_ptr, + png_const_bytep chunk_name)); +#endif /* SET_UNKNOWN_CHUNKS */ + +#ifdef PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED +PNG_EXPORT(174, void, png_set_unknown_chunks, (png_const_structrp png_ptr, + png_inforp info_ptr, png_const_unknown_chunkp unknowns, + int num_unknowns)); + /* NOTE: prior to 1.6.0 this routine set the 'location' field of the added + * unknowns to the location currently stored in the png_struct. This is + * invariably the wrong value on write. To fix this call the following API + * for each chunk in the list with the correct location. If you know your + * code won't be compiled on earlier versions you can rely on + * png_set_unknown_chunks(write-ptr, png_get_unknown_chunks(read-ptr)) doing + * the correct thing. + */ + +PNG_EXPORT(175, void, png_set_unknown_chunk_location, + (png_const_structrp png_ptr, png_inforp info_ptr, int chunk, int location)); + +PNG_EXPORT(176, int, png_get_unknown_chunks, (png_const_structrp png_ptr, + png_inforp info_ptr, png_unknown_chunkpp entries)); +#endif + +/* Png_free_data() will turn off the "valid" flag for anything it frees. + * If you need to turn it off for a chunk that your application has freed, + * you can use png_set_invalid(png_ptr, info_ptr, PNG_INFO_CHNK); + */ +PNG_EXPORT(177, void, png_set_invalid, (png_const_structrp png_ptr, + png_inforp info_ptr, int mask)); + +#ifdef PNG_INFO_IMAGE_SUPPORTED +/* The "params" pointer is currently not used and is for future expansion. */ +#ifdef PNG_SEQUENTIAL_READ_SUPPORTED +PNG_EXPORT(178, void, png_read_png, (png_structrp png_ptr, png_inforp info_ptr, + int transforms, png_voidp params)); +#endif +#ifdef PNG_WRITE_SUPPORTED +PNG_EXPORT(179, void, png_write_png, (png_structrp png_ptr, png_inforp info_ptr, + int transforms, png_voidp params)); +#endif +#endif + +PNG_EXPORT(180, png_const_charp, png_get_copyright, + (png_const_structrp png_ptr)); +PNG_EXPORT(181, png_const_charp, png_get_header_ver, + (png_const_structrp png_ptr)); +PNG_EXPORT(182, png_const_charp, png_get_header_version, + (png_const_structrp png_ptr)); +PNG_EXPORT(183, png_const_charp, png_get_libpng_ver, + (png_const_structrp png_ptr)); + +#ifdef PNG_MNG_FEATURES_SUPPORTED +PNG_EXPORT(184, png_uint_32, png_permit_mng_features, (png_structrp png_ptr, + png_uint_32 mng_features_permitted)); +#endif + +/* For use in png_set_keep_unknown, added to version 1.2.6 */ +#define PNG_HANDLE_CHUNK_AS_DEFAULT 0 +#define PNG_HANDLE_CHUNK_NEVER 1 +#define PNG_HANDLE_CHUNK_IF_SAFE 2 +#define PNG_HANDLE_CHUNK_ALWAYS 3 +#define PNG_HANDLE_CHUNK_LAST 4 + +/* Strip the prepended error numbers ("#nnn ") from error and warning + * messages before passing them to the error or warning handler. + */ +#ifdef PNG_ERROR_NUMBERS_SUPPORTED +PNG_EXPORT(185, void, png_set_strip_error_numbers, (png_structrp png_ptr, + png_uint_32 strip_mode)); +#endif + +/* Added in libpng-1.2.6 */ +#ifdef PNG_SET_USER_LIMITS_SUPPORTED +PNG_EXPORT(186, void, png_set_user_limits, (png_structrp png_ptr, + png_uint_32 user_width_max, png_uint_32 user_height_max)); +PNG_EXPORT(187, png_uint_32, png_get_user_width_max, + (png_const_structrp png_ptr)); +PNG_EXPORT(188, png_uint_32, png_get_user_height_max, + (png_const_structrp png_ptr)); +/* Added in libpng-1.4.0 */ +PNG_EXPORT(189, void, png_set_chunk_cache_max, (png_structrp png_ptr, + png_uint_32 user_chunk_cache_max)); +PNG_EXPORT(190, png_uint_32, png_get_chunk_cache_max, + (png_const_structrp png_ptr)); +/* Added in libpng-1.4.1 */ +PNG_EXPORT(191, void, png_set_chunk_malloc_max, (png_structrp png_ptr, + png_alloc_size_t user_chunk_cache_max)); +PNG_EXPORT(192, png_alloc_size_t, png_get_chunk_malloc_max, + (png_const_structrp png_ptr)); +#endif + +#if defined(PNG_INCH_CONVERSIONS_SUPPORTED) +PNG_EXPORT(193, png_uint_32, png_get_pixels_per_inch, + (png_const_structrp png_ptr, png_const_inforp info_ptr)); + +PNG_EXPORT(194, png_uint_32, png_get_x_pixels_per_inch, + (png_const_structrp png_ptr, png_const_inforp info_ptr)); + +PNG_EXPORT(195, png_uint_32, png_get_y_pixels_per_inch, + (png_const_structrp png_ptr, png_const_inforp info_ptr)); + +PNG_FP_EXPORT(196, float, png_get_x_offset_inches, + (png_const_structrp png_ptr, png_const_inforp info_ptr)) +#ifdef PNG_FIXED_POINT_SUPPORTED /* otherwise not implemented. */ +PNG_FIXED_EXPORT(211, png_fixed_point, png_get_x_offset_inches_fixed, + (png_const_structrp png_ptr, png_const_inforp info_ptr)) +#endif + +PNG_FP_EXPORT(197, float, png_get_y_offset_inches, (png_const_structrp png_ptr, + png_const_inforp info_ptr)) +#ifdef PNG_FIXED_POINT_SUPPORTED /* otherwise not implemented. */ +PNG_FIXED_EXPORT(212, png_fixed_point, png_get_y_offset_inches_fixed, + (png_const_structrp png_ptr, png_const_inforp info_ptr)) +#endif + +# ifdef PNG_pHYs_SUPPORTED +PNG_EXPORT(198, png_uint_32, png_get_pHYs_dpi, (png_const_structrp png_ptr, + png_const_inforp info_ptr, png_uint_32 *res_x, png_uint_32 *res_y, + int *unit_type)); +# endif /* pHYs */ +#endif /* INCH_CONVERSIONS */ + +/* Added in libpng-1.4.0 */ +#ifdef PNG_IO_STATE_SUPPORTED +PNG_EXPORT(199, png_uint_32, png_get_io_state, (png_const_structrp png_ptr)); + +/* Removed from libpng 1.6; use png_get_io_chunk_type. */ +PNG_REMOVED(200, png_const_bytep, png_get_io_chunk_name, (png_structrp png_ptr), + PNG_DEPRECATED) + +PNG_EXPORT(216, png_uint_32, png_get_io_chunk_type, + (png_const_structrp png_ptr)); + +/* The flags returned by png_get_io_state() are the following: */ +# define PNG_IO_NONE 0x0000 /* no I/O at this moment */ +# define PNG_IO_READING 0x0001 /* currently reading */ +# define PNG_IO_WRITING 0x0002 /* currently writing */ +# define PNG_IO_SIGNATURE 0x0010 /* currently at the file signature */ +# define PNG_IO_CHUNK_HDR 0x0020 /* currently at the chunk header */ +# define PNG_IO_CHUNK_DATA 0x0040 /* currently at the chunk data */ +# define PNG_IO_CHUNK_CRC 0x0080 /* currently at the chunk crc */ +# define PNG_IO_MASK_OP 0x000f /* current operation: reading/writing */ +# define PNG_IO_MASK_LOC 0x00f0 /* current location: sig/hdr/data/crc */ +#endif /* IO_STATE */ + +/* Interlace support. The following macros are always defined so that if + * libpng interlace handling is turned off the macros may be used to handle + * interlaced images within the application. + */ +#define PNG_INTERLACE_ADAM7_PASSES 7 + +/* Two macros to return the first row and first column of the original, + * full, image which appears in a given pass. 'pass' is in the range 0 + * to 6 and the result is in the range 0 to 7. + */ +#define PNG_PASS_START_ROW(pass) (((1&~(pass))<<(3-((pass)>>1)))&7) +#define PNG_PASS_START_COL(pass) (((1& (pass))<<(3-(((pass)+1)>>1)))&7) + +/* A macro to return the offset between pixels in the output row for a pair of + * pixels in the input - effectively the inverse of the 'COL_SHIFT' macro that + * follows. Note that ROW_OFFSET is the offset from one row to the next whereas + * COL_OFFSET is from one column to the next, within a row. + */ +#define PNG_PASS_ROW_OFFSET(pass) ((pass)>2?(8>>(((pass)-1)>>1)):8) +#define PNG_PASS_COL_OFFSET(pass) (1<<((7-(pass))>>1)) + +/* Two macros to help evaluate the number of rows or columns in each + * pass. This is expressed as a shift - effectively log2 of the number or + * rows or columns in each 8x8 tile of the original image. + */ +#define PNG_PASS_ROW_SHIFT(pass) ((pass)>2?(8-(pass))>>1:3) +#define PNG_PASS_COL_SHIFT(pass) ((pass)>1?(7-(pass))>>1:3) + +/* Hence two macros to determine the number of rows or columns in a given + * pass of an image given its height or width. In fact these macros may + * return non-zero even though the sub-image is empty, because the other + * dimension may be empty for a small image. + */ +#define PNG_PASS_ROWS(height, pass) (((height)+(((1<>PNG_PASS_ROW_SHIFT(pass)) +#define PNG_PASS_COLS(width, pass) (((width)+(((1<>PNG_PASS_COL_SHIFT(pass)) + +/* For the reader row callbacks (both progressive and sequential) it is + * necessary to find the row in the output image given a row in an interlaced + * image, so two more macros: + */ +#define PNG_ROW_FROM_PASS_ROW(y_in, pass) \ + (((y_in)<>(((7-(off))-(pass))<<2)) & 0xF) | \ + ((0x01145AF0>>(((7-(off))-(pass))<<2)) & 0xF0)) + +#define PNG_ROW_IN_INTERLACE_PASS(y, pass) \ + ((PNG_PASS_MASK(pass,0) >> ((y)&7)) & 1) +#define PNG_COL_IN_INTERLACE_PASS(x, pass) \ + ((PNG_PASS_MASK(pass,1) >> ((x)&7)) & 1) + +#ifdef PNG_READ_COMPOSITE_NODIV_SUPPORTED +/* With these routines we avoid an integer divide, which will be slower on + * most machines. However, it does take more operations than the corresponding + * divide method, so it may be slower on a few RISC systems. There are two + * shifts (by 8 or 16 bits) and an addition, versus a single integer divide. + * + * Note that the rounding factors are NOT supposed to be the same! 128 and + * 32768 are correct for the NODIV code; 127 and 32767 are correct for the + * standard method. + * + * [Optimized code by Greg Roelofs and Mark Adler...blame us for bugs. :-) ] + */ + + /* fg and bg should be in `gamma 1.0' space; alpha is the opacity */ + +# define png_composite(composite, fg, alpha, bg) \ + { \ + png_uint_16 temp = (png_uint_16)((png_uint_16)(fg) \ + * (png_uint_16)(alpha) \ + + (png_uint_16)(bg)*(png_uint_16)(255 \ + - (png_uint_16)(alpha)) + 128); \ + (composite) = (png_byte)(((temp + (temp >> 8)) >> 8) & 0xff); \ + } + +# define png_composite_16(composite, fg, alpha, bg) \ + { \ + png_uint_32 temp = (png_uint_32)((png_uint_32)(fg) \ + * (png_uint_32)(alpha) \ + + (png_uint_32)(bg)*(65535 \ + - (png_uint_32)(alpha)) + 32768); \ + (composite) = (png_uint_16)(0xffff & ((temp + (temp >> 16)) >> 16)); \ + } + +#else /* Standard method using integer division */ + +# define png_composite(composite, fg, alpha, bg) \ + (composite) = \ + (png_byte)(0xff & (((png_uint_16)(fg) * (png_uint_16)(alpha) + \ + (png_uint_16)(bg) * (png_uint_16)(255 - (png_uint_16)(alpha)) + \ + 127) / 255)) + +# define png_composite_16(composite, fg, alpha, bg) \ + (composite) = \ + (png_uint_16)(0xffff & (((png_uint_32)(fg) * (png_uint_32)(alpha) + \ + (png_uint_32)(bg)*(png_uint_32)(65535 - (png_uint_32)(alpha)) + \ + 32767) / 65535)) +#endif /* READ_COMPOSITE_NODIV */ + +#ifdef PNG_READ_INT_FUNCTIONS_SUPPORTED +PNG_EXPORT(201, png_uint_32, png_get_uint_32, (png_const_bytep buf)); +PNG_EXPORT(202, png_uint_16, png_get_uint_16, (png_const_bytep buf)); +PNG_EXPORT(203, png_int_32, png_get_int_32, (png_const_bytep buf)); +#endif + +PNG_EXPORT(204, png_uint_32, png_get_uint_31, (png_const_structrp png_ptr, + png_const_bytep buf)); +/* No png_get_int_16 -- may be added if there's a real need for it. */ + +/* Place a 32-bit number into a buffer in PNG byte order (big-endian). */ +#ifdef PNG_WRITE_INT_FUNCTIONS_SUPPORTED +PNG_EXPORT(205, void, png_save_uint_32, (png_bytep buf, png_uint_32 i)); +#endif +#ifdef PNG_SAVE_INT_32_SUPPORTED +PNG_EXPORT(206, void, png_save_int_32, (png_bytep buf, png_int_32 i)); +#endif + +/* Place a 16-bit number into a buffer in PNG byte order. + * The parameter is declared unsigned int, not png_uint_16, + * just to avoid potential problems on pre-ANSI C compilers. + */ +#ifdef PNG_WRITE_INT_FUNCTIONS_SUPPORTED +PNG_EXPORT(207, void, png_save_uint_16, (png_bytep buf, unsigned int i)); +/* No png_save_int_16 -- may be added if there's a real need for it. */ +#endif + +#ifdef PNG_USE_READ_MACROS +/* Inline macros to do direct reads of bytes from the input buffer. + * The png_get_int_32() routine assumes we are using two's complement + * format for negative values, which is almost certainly true. + */ +# define PNG_get_uint_32(buf) \ + (((png_uint_32)(*(buf)) << 24) + \ + ((png_uint_32)(*((buf) + 1)) << 16) + \ + ((png_uint_32)(*((buf) + 2)) << 8) + \ + ((png_uint_32)(*((buf) + 3)))) + + /* From libpng-1.4.0 until 1.4.4, the png_get_uint_16 macro (but not the + * function) incorrectly returned a value of type png_uint_32. + */ +# define PNG_get_uint_16(buf) \ + ((png_uint_16) \ + (((unsigned int)(*(buf)) << 8) + \ + ((unsigned int)(*((buf) + 1))))) + +# define PNG_get_int_32(buf) \ + ((png_int_32)((*(buf) & 0x80) \ + ? -((png_int_32)(((png_get_uint_32(buf)^0xffffffffU)+1U)&0x7fffffffU)) \ + : (png_int_32)png_get_uint_32(buf))) + +/* If PNG_PREFIX is defined the same thing as below happens in pnglibconf.h, + * but defining a macro name prefixed with PNG_PREFIX. + */ +# ifndef PNG_PREFIX +# define png_get_uint_32(buf) PNG_get_uint_32(buf) +# define png_get_uint_16(buf) PNG_get_uint_16(buf) +# define png_get_int_32(buf) PNG_get_int_32(buf) +# endif +#else +# ifdef PNG_PREFIX + /* No macros; revert to the (redefined) function */ +# define PNG_get_uint_32 (png_get_uint_32) +# define PNG_get_uint_16 (png_get_uint_16) +# define PNG_get_int_32 (png_get_int_32) +# endif +#endif + +#ifdef PNG_CHECK_FOR_INVALID_INDEX_SUPPORTED +PNG_EXPORT(242, void, png_set_check_for_invalid_index, + (png_structrp png_ptr, int allowed)); +# ifdef PNG_GET_PALETTE_MAX_SUPPORTED +PNG_EXPORT(243, int, png_get_palette_max, (png_const_structp png_ptr, + png_const_infop info_ptr)); +# endif +#endif /* CHECK_FOR_INVALID_INDEX */ + +/******************************************************************************* + * Section 5: SIMPLIFIED API + ******************************************************************************* + * + * Please read the documentation in libpng-manual.txt (TODO: write said + * documentation) if you don't understand what follows. + * + * The simplified API hides the details of both libpng and the PNG file format + * itself. It allows PNG files to be read into a very limited number of + * in-memory bitmap formats or to be written from the same formats. If these + * formats do not accommodate your needs then you can, and should, use the more + * sophisticated APIs above - these support a wide variety of in-memory formats + * and a wide variety of sophisticated transformations to those formats as well + * as a wide variety of APIs to manipulate ancillary information. + * + * To read a PNG file using the simplified API: + * + * 1) Declare a 'png_image' structure (see below) on the stack, set the + * version field to PNG_IMAGE_VERSION and the 'opaque' pointer to NULL + * (this is REQUIRED, your program may crash if you don't do it.) + * 2) Call the appropriate png_image_begin_read... function. + * 3) Set the png_image 'format' member to the required sample format. + * 4) Allocate a buffer for the image and, if required, the color-map. + * 5) Call png_image_finish_read to read the image and, if required, the + * color-map into your buffers. + * + * There are no restrictions on the format of the PNG input itself; all valid + * color types, bit depths, and interlace methods are acceptable, and the + * input image is transformed as necessary to the requested in-memory format + * during the png_image_finish_read() step. The only caveat is that if you + * request a color-mapped image from a PNG that is full-color or makes + * complex use of an alpha channel the transformation is extremely lossy and the + * result may look terrible. + * + * To write a PNG file using the simplified API: + * + * 1) Declare a 'png_image' structure on the stack and memset() it to all zero. + * 2) Initialize the members of the structure that describe the image, setting + * the 'format' member to the format of the image samples. + * 3) Call the appropriate png_image_write... function with a pointer to the + * image and, if necessary, the color-map to write the PNG data. + * + * png_image is a structure that describes the in-memory format of an image + * when it is being read or defines the in-memory format of an image that you + * need to write: + */ +#if defined(PNG_SIMPLIFIED_READ_SUPPORTED) || \ + defined(PNG_SIMPLIFIED_WRITE_SUPPORTED) + +#define PNG_IMAGE_VERSION 1 + +typedef struct png_control *png_controlp; +typedef struct +{ + png_controlp opaque; /* Initialize to NULL, free with png_image_free */ + png_uint_32 version; /* Set to PNG_IMAGE_VERSION */ + png_uint_32 width; /* Image width in pixels (columns) */ + png_uint_32 height; /* Image height in pixels (rows) */ + png_uint_32 format; /* Image format as defined below */ + png_uint_32 flags; /* A bit mask containing informational flags */ + png_uint_32 colormap_entries; + /* Number of entries in the color-map */ + + /* In the event of an error or warning the following field will be set to a + * non-zero value and the 'message' field will contain a '\0' terminated + * string with the libpng error or warning message. If both warnings and + * an error were encountered, only the error is recorded. If there + * are multiple warnings, only the first one is recorded. + * + * The upper 30 bits of this value are reserved, the low two bits contain + * a value as follows: + */ +# define PNG_IMAGE_WARNING 1 +# define PNG_IMAGE_ERROR 2 + /* + * The result is a two-bit code such that a value more than 1 indicates + * a failure in the API just called: + * + * 0 - no warning or error + * 1 - warning + * 2 - error + * 3 - error preceded by warning + */ +# define PNG_IMAGE_FAILED(png_cntrl) ((((png_cntrl).warning_or_error)&0x03)>1) + + png_uint_32 warning_or_error; + + char message[64]; +} png_image, *png_imagep; + +/* The samples of the image have one to four channels whose components have + * original values in the range 0 to 1.0: + * + * 1: A single gray or luminance channel (G). + * 2: A gray/luminance channel and an alpha channel (GA). + * 3: Three red, green, blue color channels (RGB). + * 4: Three color channels and an alpha channel (RGBA). + * + * The components are encoded in one of two ways: + * + * a) As a small integer, value 0..255, contained in a single byte. For the + * alpha channel the original value is simply value/255. For the color or + * luminance channels the value is encoded according to the sRGB specification + * and matches the 8-bit format expected by typical display devices. + * + * The color/gray channels are not scaled (pre-multiplied) by the alpha + * channel and are suitable for passing to color management software. + * + * b) As a value in the range 0..65535, contained in a 2-byte integer. All + * channels can be converted to the original value by dividing by 65535; all + * channels are linear. Color channels use the RGB encoding (RGB end-points) of + * the sRGB specification. This encoding is identified by the + * PNG_FORMAT_FLAG_LINEAR flag below. + * + * When the simplified API needs to convert between sRGB and linear colorspaces, + * the actual sRGB transfer curve defined in the sRGB specification (see the + * article at ) is used, not the gamma=1/2.2 + * approximation used elsewhere in libpng. + * + * When an alpha channel is present it is expected to denote pixel coverage + * of the color or luminance channels and is returned as an associated alpha + * channel: the color/gray channels are scaled (pre-multiplied) by the alpha + * value. + * + * The samples are either contained directly in the image data, between 1 and 8 + * bytes per pixel according to the encoding, or are held in a color-map indexed + * by bytes in the image data. In the case of a color-map the color-map entries + * are individual samples, encoded as above, and the image data has one byte per + * pixel to select the relevant sample from the color-map. + */ + +/* PNG_FORMAT_* + * + * #defines to be used in png_image::format. Each #define identifies a + * particular layout of sample data and, if present, alpha values. There are + * separate defines for each of the two component encodings. + * + * A format is built up using single bit flag values. All combinations are + * valid. Formats can be built up from the flag values or you can use one of + * the predefined values below. When testing formats always use the FORMAT_FLAG + * macros to test for individual features - future versions of the library may + * add new flags. + * + * When reading or writing color-mapped images the format should be set to the + * format of the entries in the color-map then png_image_{read,write}_colormap + * called to read or write the color-map and set the format correctly for the + * image data. Do not set the PNG_FORMAT_FLAG_COLORMAP bit directly! + * + * NOTE: libpng can be built with particular features disabled. If you see + * compiler errors because the definition of one of the following flags has been + * compiled out it is because libpng does not have the required support. It is + * possible, however, for the libpng configuration to enable the format on just + * read or just write; in that case you may see an error at run time. You can + * guard against this by checking for the definition of the appropriate + * "_SUPPORTED" macro, one of: + * + * PNG_SIMPLIFIED_{READ,WRITE}_{BGR,AFIRST}_SUPPORTED + */ +#define PNG_FORMAT_FLAG_ALPHA 0x01U /* format with an alpha channel */ +#define PNG_FORMAT_FLAG_COLOR 0x02U /* color format: otherwise grayscale */ +#define PNG_FORMAT_FLAG_LINEAR 0x04U /* 2-byte channels else 1-byte */ +#define PNG_FORMAT_FLAG_COLORMAP 0x08U /* image data is color-mapped */ + +#ifdef PNG_FORMAT_BGR_SUPPORTED +# define PNG_FORMAT_FLAG_BGR 0x10U /* BGR colors, else order is RGB */ +#endif + +#ifdef PNG_FORMAT_AFIRST_SUPPORTED +# define PNG_FORMAT_FLAG_AFIRST 0x20U /* alpha channel comes first */ +#endif + +#define PNG_FORMAT_FLAG_ASSOCIATED_ALPHA 0x40U /* alpha channel is associated */ + +/* Commonly used formats have predefined macros. + * + * First the single byte (sRGB) formats: + */ +#define PNG_FORMAT_GRAY 0 +#define PNG_FORMAT_GA PNG_FORMAT_FLAG_ALPHA +#define PNG_FORMAT_AG (PNG_FORMAT_GA|PNG_FORMAT_FLAG_AFIRST) +#define PNG_FORMAT_RGB PNG_FORMAT_FLAG_COLOR +#define PNG_FORMAT_BGR (PNG_FORMAT_FLAG_COLOR|PNG_FORMAT_FLAG_BGR) +#define PNG_FORMAT_RGBA (PNG_FORMAT_RGB|PNG_FORMAT_FLAG_ALPHA) +#define PNG_FORMAT_ARGB (PNG_FORMAT_RGBA|PNG_FORMAT_FLAG_AFIRST) +#define PNG_FORMAT_BGRA (PNG_FORMAT_BGR|PNG_FORMAT_FLAG_ALPHA) +#define PNG_FORMAT_ABGR (PNG_FORMAT_BGRA|PNG_FORMAT_FLAG_AFIRST) + +/* Then the linear 2-byte formats. When naming these "Y" is used to + * indicate a luminance (gray) channel. + */ +#define PNG_FORMAT_LINEAR_Y PNG_FORMAT_FLAG_LINEAR +#define PNG_FORMAT_LINEAR_Y_ALPHA (PNG_FORMAT_FLAG_LINEAR|PNG_FORMAT_FLAG_ALPHA) +#define PNG_FORMAT_LINEAR_RGB (PNG_FORMAT_FLAG_LINEAR|PNG_FORMAT_FLAG_COLOR) +#define PNG_FORMAT_LINEAR_RGB_ALPHA \ + (PNG_FORMAT_FLAG_LINEAR|PNG_FORMAT_FLAG_COLOR|PNG_FORMAT_FLAG_ALPHA) + +/* With color-mapped formats the image data is one byte for each pixel, the byte + * is an index into the color-map which is formatted as above. To obtain a + * color-mapped format it is sufficient just to add the PNG_FOMAT_FLAG_COLORMAP + * to one of the above definitions, or you can use one of the definitions below. + */ +#define PNG_FORMAT_RGB_COLORMAP (PNG_FORMAT_RGB|PNG_FORMAT_FLAG_COLORMAP) +#define PNG_FORMAT_BGR_COLORMAP (PNG_FORMAT_BGR|PNG_FORMAT_FLAG_COLORMAP) +#define PNG_FORMAT_RGBA_COLORMAP (PNG_FORMAT_RGBA|PNG_FORMAT_FLAG_COLORMAP) +#define PNG_FORMAT_ARGB_COLORMAP (PNG_FORMAT_ARGB|PNG_FORMAT_FLAG_COLORMAP) +#define PNG_FORMAT_BGRA_COLORMAP (PNG_FORMAT_BGRA|PNG_FORMAT_FLAG_COLORMAP) +#define PNG_FORMAT_ABGR_COLORMAP (PNG_FORMAT_ABGR|PNG_FORMAT_FLAG_COLORMAP) + +/* PNG_IMAGE macros + * + * These are convenience macros to derive information from a png_image + * structure. The PNG_IMAGE_SAMPLE_ macros return values appropriate to the + * actual image sample values - either the entries in the color-map or the + * pixels in the image. The PNG_IMAGE_PIXEL_ macros return corresponding values + * for the pixels and will always return 1 for color-mapped formats. The + * remaining macros return information about the rows in the image and the + * complete image. + * + * NOTE: All the macros that take a png_image::format parameter are compile time + * constants if the format parameter is, itself, a constant. Therefore these + * macros can be used in array declarations and case labels where required. + * Similarly the macros are also pre-processor constants (sizeof is not used) so + * they can be used in #if tests. + * + * First the information about the samples. + */ +#define PNG_IMAGE_SAMPLE_CHANNELS(fmt)\ + (((fmt)&(PNG_FORMAT_FLAG_COLOR|PNG_FORMAT_FLAG_ALPHA))+1) + /* Return the total number of channels in a given format: 1..4 */ + +#define PNG_IMAGE_SAMPLE_COMPONENT_SIZE(fmt)\ + ((((fmt) & PNG_FORMAT_FLAG_LINEAR) >> 2)+1) + /* Return the size in bytes of a single component of a pixel or color-map + * entry (as appropriate) in the image: 1 or 2. + */ + +#define PNG_IMAGE_SAMPLE_SIZE(fmt)\ + (PNG_IMAGE_SAMPLE_CHANNELS(fmt) * PNG_IMAGE_SAMPLE_COMPONENT_SIZE(fmt)) + /* This is the size of the sample data for one sample. If the image is + * color-mapped it is the size of one color-map entry (and image pixels are + * one byte in size), otherwise it is the size of one image pixel. + */ + +#define PNG_IMAGE_MAXIMUM_COLORMAP_COMPONENTS(fmt)\ + (PNG_IMAGE_SAMPLE_CHANNELS(fmt) * 256) + /* The maximum size of the color-map required by the format expressed in a + * count of components. This can be used to compile-time allocate a + * color-map: + * + * png_uint_16 colormap[PNG_IMAGE_MAXIMUM_COLORMAP_COMPONENTS(linear_fmt)]; + * + * png_byte colormap[PNG_IMAGE_MAXIMUM_COLORMAP_COMPONENTS(sRGB_fmt)]; + * + * Alternatively use the PNG_IMAGE_COLORMAP_SIZE macro below to use the + * information from one of the png_image_begin_read_ APIs and dynamically + * allocate the required memory. + */ + +/* Corresponding information about the pixels */ +#define PNG_IMAGE_PIXEL_(test,fmt)\ + (((fmt)&PNG_FORMAT_FLAG_COLORMAP)?1:test(fmt)) + +#define PNG_IMAGE_PIXEL_CHANNELS(fmt)\ + PNG_IMAGE_PIXEL_(PNG_IMAGE_SAMPLE_CHANNELS,fmt) + /* The number of separate channels (components) in a pixel; 1 for a + * color-mapped image. + */ + +#define PNG_IMAGE_PIXEL_COMPONENT_SIZE(fmt)\ + PNG_IMAGE_PIXEL_(PNG_IMAGE_SAMPLE_COMPONENT_SIZE,fmt) + /* The size, in bytes, of each component in a pixel; 1 for a color-mapped + * image. + */ + +#define PNG_IMAGE_PIXEL_SIZE(fmt) PNG_IMAGE_PIXEL_(PNG_IMAGE_SAMPLE_SIZE,fmt) + /* The size, in bytes, of a complete pixel; 1 for a color-mapped image. */ + +/* Information about the whole row, or whole image */ +#define PNG_IMAGE_ROW_STRIDE(image)\ + (PNG_IMAGE_PIXEL_CHANNELS((image).format) * (image).width) + /* Return the total number of components in a single row of the image; this + * is the minimum 'row stride', the minimum count of components between each + * row. For a color-mapped image this is the minimum number of bytes in a + * row. + * + * WARNING: this macro overflows for some images with more than one component + * and very large image widths. libpng will refuse to process an image where + * this macro would overflow. + */ + +#define PNG_IMAGE_BUFFER_SIZE(image, row_stride)\ + (PNG_IMAGE_PIXEL_COMPONENT_SIZE((image).format)*(image).height*(row_stride)) + /* Return the size, in bytes, of an image buffer given a png_image and a row + * stride - the number of components to leave space for in each row. + * + * WARNING: this macro overflows a 32-bit integer for some large PNG images, + * libpng will refuse to process an image where such an overflow would occur. + */ + +#define PNG_IMAGE_SIZE(image)\ + PNG_IMAGE_BUFFER_SIZE(image, PNG_IMAGE_ROW_STRIDE(image)) + /* Return the size, in bytes, of the image in memory given just a png_image; + * the row stride is the minimum stride required for the image. + */ + +#define PNG_IMAGE_COLORMAP_SIZE(image)\ + (PNG_IMAGE_SAMPLE_SIZE((image).format) * (image).colormap_entries) + /* Return the size, in bytes, of the color-map of this image. If the image + * format is not a color-map format this will return a size sufficient for + * 256 entries in the given format; check PNG_FORMAT_FLAG_COLORMAP if + * you don't want to allocate a color-map in this case. + */ + +/* PNG_IMAGE_FLAG_* + * + * Flags containing additional information about the image are held in the + * 'flags' field of png_image. + */ +#define PNG_IMAGE_FLAG_COLORSPACE_NOT_sRGB 0x01 + /* This indicates that the RGB values of the in-memory bitmap do not + * correspond to the red, green and blue end-points defined by sRGB. + */ + +#define PNG_IMAGE_FLAG_FAST 0x02 + /* On write emphasise speed over compression; the resultant PNG file will be + * larger but will be produced significantly faster, particular for large + * images. Do not use this option for images which will be distributed, only + * used it when producing intermediate files that will be read back in + * repeatedly. For a typical 24-bit image the option will double the read + * speed at the cost of increasing the image size by 25%, however for many + * more compressible images the PNG file can be 10 times larger with only a + * slight speed gain. + */ + +#define PNG_IMAGE_FLAG_16BIT_sRGB 0x04 + /* On read if the image is a 16-bit per component image and there is no gAMA + * or sRGB chunk assume that the components are sRGB encoded. Notice that + * images output by the simplified API always have gamma information; setting + * this flag only affects the interpretation of 16-bit images from an + * external source. It is recommended that the application expose this flag + * to the user; the user can normally easily recognize the difference between + * linear and sRGB encoding. This flag has no effect on write - the data + * passed to the write APIs must have the correct encoding (as defined + * above.) + * + * If the flag is not set (the default) input 16-bit per component data is + * assumed to be linear. + * + * NOTE: the flag can only be set after the png_image_begin_read_ call, + * because that call initializes the 'flags' field. + */ + +#ifdef PNG_SIMPLIFIED_READ_SUPPORTED +/* READ APIs + * --------- + * + * The png_image passed to the read APIs must have been initialized by setting + * the png_controlp field 'opaque' to NULL (or, safer, memset the whole thing.) + */ +#ifdef PNG_STDIO_SUPPORTED +PNG_EXPORT(234, int, png_image_begin_read_from_file, (png_imagep image, + const char *file_name)); + /* The named file is opened for read and the image header is filled in + * from the PNG header in the file. + */ + +PNG_EXPORT(235, int, png_image_begin_read_from_stdio, (png_imagep image, + FILE* file)); + /* The PNG header is read from the stdio FILE object. */ +#endif /* STDIO */ + +PNG_EXPORT(236, int, png_image_begin_read_from_memory, (png_imagep image, + png_const_voidp memory, size_t size)); + /* The PNG header is read from the given memory buffer. */ + +PNG_EXPORT(237, int, png_image_finish_read, (png_imagep image, + png_const_colorp background, void *buffer, png_int_32 row_stride, + void *colormap)); + /* Finish reading the image into the supplied buffer and clean up the + * png_image structure. + * + * row_stride is the step, in byte or 2-byte units as appropriate, + * between adjacent rows. A positive stride indicates that the top-most row + * is first in the buffer - the normal top-down arrangement. A negative + * stride indicates that the bottom-most row is first in the buffer. + * + * background need only be supplied if an alpha channel must be removed from + * a png_byte format and the removal is to be done by compositing on a solid + * color; otherwise it may be NULL and any composition will be done directly + * onto the buffer. The value is an sRGB color to use for the background, + * for grayscale output the green channel is used. + * + * background must be supplied when an alpha channel must be removed from a + * single byte color-mapped output format, in other words if: + * + * 1) The original format from png_image_begin_read_from_* had + * PNG_FORMAT_FLAG_ALPHA set. + * 2) The format set by the application does not. + * 3) The format set by the application has PNG_FORMAT_FLAG_COLORMAP set and + * PNG_FORMAT_FLAG_LINEAR *not* set. + * + * For linear output removing the alpha channel is always done by compositing + * on black and background is ignored. + * + * colormap must be supplied when PNG_FORMAT_FLAG_COLORMAP is set. It must + * be at least the size (in bytes) returned by PNG_IMAGE_COLORMAP_SIZE. + * image->colormap_entries will be updated to the actual number of entries + * written to the colormap; this may be less than the original value. + */ + +PNG_EXPORT(238, void, png_image_free, (png_imagep image)); + /* Free any data allocated by libpng in image->opaque, setting the pointer to + * NULL. May be called at any time after the structure is initialized. + */ +#endif /* SIMPLIFIED_READ */ + +#ifdef PNG_SIMPLIFIED_WRITE_SUPPORTED +/* WRITE APIS + * ---------- + * For write you must initialize a png_image structure to describe the image to + * be written. To do this use memset to set the whole structure to 0 then + * initialize fields describing your image. + * + * version: must be set to PNG_IMAGE_VERSION + * opaque: must be initialized to NULL + * width: image width in pixels + * height: image height in rows + * format: the format of the data (image and color-map) you wish to write + * flags: set to 0 unless one of the defined flags applies; set + * PNG_IMAGE_FLAG_COLORSPACE_NOT_sRGB for color format images where the RGB + * values do not correspond to the colors in sRGB. + * colormap_entries: set to the number of entries in the color-map (0 to 256) + */ +#ifdef PNG_SIMPLIFIED_WRITE_STDIO_SUPPORTED +PNG_EXPORT(239, int, png_image_write_to_file, (png_imagep image, + const char *file, int convert_to_8bit, const void *buffer, + png_int_32 row_stride, const void *colormap)); + /* Write the image to the named file. */ + +PNG_EXPORT(240, int, png_image_write_to_stdio, (png_imagep image, FILE *file, + int convert_to_8_bit, const void *buffer, png_int_32 row_stride, + const void *colormap)); + /* Write the image to the given (FILE*). */ +#endif /* SIMPLIFIED_WRITE_STDIO */ + +/* With all write APIs if image is in one of the linear formats with 16-bit + * data then setting convert_to_8_bit will cause the output to be an 8-bit PNG + * gamma encoded according to the sRGB specification, otherwise a 16-bit linear + * encoded PNG file is written. + * + * With color-mapped data formats the colormap parameter point to a color-map + * with at least image->colormap_entries encoded in the specified format. If + * the format is linear the written PNG color-map will be converted to sRGB + * regardless of the convert_to_8_bit flag. + * + * With all APIs row_stride is handled as in the read APIs - it is the spacing + * from one row to the next in component sized units (1 or 2 bytes) and if + * negative indicates a bottom-up row layout in the buffer. If row_stride is + * zero, libpng will calculate it for you from the image width and number of + * channels. + * + * Note that the write API does not support interlacing, sub-8-bit pixels or + * most ancillary chunks. If you need to write text chunks (e.g. for copyright + * notices) you need to use one of the other APIs. + */ + +PNG_EXPORT(245, int, png_image_write_to_memory, (png_imagep image, void *memory, + png_alloc_size_t * PNG_RESTRICT memory_bytes, int convert_to_8_bit, + const void *buffer, png_int_32 row_stride, const void *colormap)); + /* Write the image to the given memory buffer. The function both writes the + * whole PNG data stream to *memory and updates *memory_bytes with the count + * of bytes written. + * + * 'memory' may be NULL. In this case *memory_bytes is not read however on + * success the number of bytes which would have been written will still be + * stored in *memory_bytes. On failure *memory_bytes will contain 0. + * + * If 'memory' is not NULL it must point to memory[*memory_bytes] of + * writeable memory. + * + * If the function returns success memory[*memory_bytes] (if 'memory' is not + * NULL) contains the written PNG data. *memory_bytes will always be less + * than or equal to the original value. + * + * If the function returns false and *memory_bytes was not changed an error + * occurred during write. If *memory_bytes was changed, or is not 0 if + * 'memory' was NULL, the write would have succeeded but for the memory + * buffer being too small. *memory_bytes contains the required number of + * bytes and will be bigger that the original value. + */ + +#define png_image_write_get_memory_size(image, size, convert_to_8_bit, buffer,\ + row_stride, colormap)\ + png_image_write_to_memory(&(image), 0, &(size), convert_to_8_bit, buffer,\ + row_stride, colormap) + /* Return the amount of memory in 'size' required to compress this image. + * The png_image structure 'image' must be filled in as in the above + * function and must not be changed before the actual write call, the buffer + * and all other parameters must also be identical to that in the final + * write call. The 'size' variable need not be initialized. + * + * NOTE: the macro returns true/false, if false is returned 'size' will be + * set to zero and the write failed and probably will fail if tried again. + */ + +/* You can pre-allocate the buffer by making sure it is of sufficient size + * regardless of the amount of compression achieved. The buffer size will + * always be bigger than the original image and it will never be filled. The + * following macros are provided to assist in allocating the buffer. + */ +#define PNG_IMAGE_DATA_SIZE(image) (PNG_IMAGE_SIZE(image)+(image).height) + /* The number of uncompressed bytes in the PNG byte encoding of the image; + * uncompressing the PNG IDAT data will give this number of bytes. + * + * NOTE: while PNG_IMAGE_SIZE cannot overflow for an image in memory this + * macro can because of the extra bytes used in the PNG byte encoding. You + * need to avoid this macro if your image size approaches 2^30 in width or + * height. The same goes for the remainder of these macros; they all produce + * bigger numbers than the actual in-memory image size. + */ +#ifndef PNG_ZLIB_MAX_SIZE +# define PNG_ZLIB_MAX_SIZE(b) ((b)+(((b)+7U)>>3)+(((b)+63U)>>6)+11U) + /* An upper bound on the number of compressed bytes given 'b' uncompressed + * bytes. This is based on deflateBounds() in zlib; different + * implementations of zlib compression may conceivably produce more data so + * if your zlib implementation is not zlib itself redefine this macro + * appropriately. + */ +#endif + +#define PNG_IMAGE_COMPRESSED_SIZE_MAX(image)\ + PNG_ZLIB_MAX_SIZE((png_alloc_size_t)PNG_IMAGE_DATA_SIZE(image)) + /* An upper bound on the size of the data in the PNG IDAT chunks. */ + +#define PNG_IMAGE_PNG_SIZE_MAX_(image, image_size)\ + ((8U/*sig*/+25U/*IHDR*/+16U/*gAMA*/+44U/*cHRM*/+12U/*IEND*/+\ + (((image).format&PNG_FORMAT_FLAG_COLORMAP)?/*colormap: PLTE, tRNS*/\ + 12U+3U*(image).colormap_entries/*PLTE data*/+\ + (((image).format&PNG_FORMAT_FLAG_ALPHA)?\ + 12U/*tRNS*/+(image).colormap_entries:0U):0U)+\ + 12U)+(12U*((image_size)/PNG_ZBUF_SIZE))/*IDAT*/+(image_size)) + /* A helper for the following macro; if your compiler cannot handle the + * following macro use this one with the result of + * PNG_IMAGE_COMPRESSED_SIZE_MAX(image) as the second argument (most + * compilers should handle this just fine.) + */ + +#define PNG_IMAGE_PNG_SIZE_MAX(image)\ + PNG_IMAGE_PNG_SIZE_MAX_(image, PNG_IMAGE_COMPRESSED_SIZE_MAX(image)) + /* An upper bound on the total length of the PNG data stream for 'image'. + * The result is of type png_alloc_size_t, on 32-bit systems this may + * overflow even though PNG_IMAGE_DATA_SIZE does not overflow; the write will + * run out of buffer space but return a corrected size which should work. + */ +#endif /* SIMPLIFIED_WRITE */ +/******************************************************************************* + * END OF SIMPLIFIED API + ******************************************************************************/ +#endif /* SIMPLIFIED_{READ|WRITE} */ + +/******************************************************************************* + * Section 6: IMPLEMENTATION OPTIONS + ******************************************************************************* + * + * Support for arbitrary implementation-specific optimizations. The API allows + * particular options to be turned on or off. 'Option' is the number of the + * option and 'onoff' is 0 (off) or non-0 (on). The value returned is given + * by the PNG_OPTION_ defines below. + * + * HARDWARE: normally hardware capabilities, such as the Intel SSE instructions, + * are detected at run time, however sometimes it may be impossible + * to do this in user mode, in which case it is necessary to discover + * the capabilities in an OS specific way. Such capabilities are + * listed here when libpng has support for them and must be turned + * ON by the application if present. + * + * SOFTWARE: sometimes software optimizations actually result in performance + * decrease on some architectures or systems, or with some sets of + * PNG images. 'Software' options allow such optimizations to be + * selected at run time. + */ +#ifdef PNG_SET_OPTION_SUPPORTED +#ifdef PNG_ARM_NEON_API_SUPPORTED +# define PNG_ARM_NEON 0 /* HARDWARE: ARM Neon SIMD instructions supported */ +#endif +#define PNG_MAXIMUM_INFLATE_WINDOW 2 /* SOFTWARE: force maximum window */ +#define PNG_SKIP_sRGB_CHECK_PROFILE 4 /* SOFTWARE: Check ICC profile for sRGB */ +#ifdef PNG_MIPS_MSA_API_SUPPORTED +# define PNG_MIPS_MSA 6 /* HARDWARE: MIPS Msa SIMD instructions supported */ +#endif +#define PNG_IGNORE_ADLER32 8 +#ifdef PNG_POWERPC_VSX_API_SUPPORTED +# define PNG_POWERPC_VSX 10 /* HARDWARE: PowerPC VSX SIMD instructions supported */ +#endif +#define PNG_OPTION_NEXT 12 /* Next option - numbers must be even */ + +/* Return values: NOTE: there are four values and 'off' is *not* zero */ +#define PNG_OPTION_UNSET 0 /* Unset - defaults to off */ +#define PNG_OPTION_INVALID 1 /* Option number out of range */ +#define PNG_OPTION_OFF 2 +#define PNG_OPTION_ON 3 + +PNG_EXPORT(244, int, png_set_option, (png_structrp png_ptr, int option, + int onoff)); +#endif /* SET_OPTION */ + +/******************************************************************************* + * END OF HARDWARE AND SOFTWARE OPTIONS + ******************************************************************************/ + +/* Maintainer: Put new public prototypes here ^, in libpng.3, in project + * defs, and in scripts/symbols.def. + */ + +/* The last ordinal number (this is the *last* one already used; the next + * one to use is one more than this.) + */ +#ifdef PNG_EXPORT_LAST_ORDINAL + PNG_EXPORT_LAST_ORDINAL(249); +#endif + +#ifdef __cplusplus +} +#endif + +#endif /* PNG_VERSION_INFO_ONLY */ +/* Do not put anything past this line */ +#endif /* PNG_H */ diff --git a/Source/include/pngconf.h b/Source/include/pngconf.h new file mode 100644 index 0000000..5e641b2 --- /dev/null +++ b/Source/include/pngconf.h @@ -0,0 +1,623 @@ + +/* pngconf.h - machine configurable file for libpng + * + * libpng version 1.6.36 + * + * Copyright (c) 2018 Cosmin Truta + * Copyright (c) 1998-2002,2004,2006-2016,2018 Glenn Randers-Pehrson + * Copyright (c) 1996-1997 Andreas Dilger + * Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + * + * This code is released under the libpng license. + * For conditions of distribution and use, see the disclaimer + * and license in png.h + * + * Any machine specific code is near the front of this file, so if you + * are configuring libpng for a machine, you may want to read the section + * starting here down to where it starts to typedef png_color, png_text, + * and png_info. + */ + +#ifndef PNGCONF_H +#define PNGCONF_H + +#ifndef PNG_BUILDING_SYMBOL_TABLE /* else includes may cause problems */ + +/* From libpng 1.6.0 libpng requires an ANSI X3.159-1989 ("ISOC90") compliant C + * compiler for correct compilation. The following header files are required by + * the standard. If your compiler doesn't provide these header files, or they + * do not match the standard, you will need to provide/improve them. + */ +#include +#include + +/* Library header files. These header files are all defined by ISOC90; libpng + * expects conformant implementations, however, an ISOC90 conformant system need + * not provide these header files if the functionality cannot be implemented. + * In this case it will be necessary to disable the relevant parts of libpng in + * the build of pnglibconf.h. + * + * Prior to 1.6.0 string.h was included here; the API changes in 1.6.0 to not + * include this unnecessary header file. + */ + +#ifdef PNG_STDIO_SUPPORTED + /* Required for the definition of FILE: */ +# include +#endif + +#ifdef PNG_SETJMP_SUPPORTED + /* Required for the definition of jmp_buf and the declaration of longjmp: */ +# include +#endif + +#ifdef PNG_CONVERT_tIME_SUPPORTED + /* Required for struct tm: */ +# include +#endif + +#endif /* PNG_BUILDING_SYMBOL_TABLE */ + +/* Prior to 1.6.0, it was possible to turn off 'const' in declarations, + * using PNG_NO_CONST. This is no longer supported. + */ +#define PNG_CONST const /* backward compatibility only */ + +/* This controls optimization of the reading of 16-bit and 32-bit + * values from PNG files. It can be set on a per-app-file basis: it + * just changes whether a macro is used when the function is called. + * The library builder sets the default; if read functions are not + * built into the library the macro implementation is forced on. + */ +#ifndef PNG_READ_INT_FUNCTIONS_SUPPORTED +# define PNG_USE_READ_MACROS +#endif +#if !defined(PNG_NO_USE_READ_MACROS) && !defined(PNG_USE_READ_MACROS) +# if PNG_DEFAULT_READ_MACROS +# define PNG_USE_READ_MACROS +# endif +#endif + +/* COMPILER SPECIFIC OPTIONS. + * + * These options are provided so that a variety of difficult compilers + * can be used. Some are fixed at build time (e.g. PNG_API_RULE + * below) but still have compiler specific implementations, others + * may be changed on a per-file basis when compiling against libpng. + */ + +/* The PNGARG macro was used in versions of libpng prior to 1.6.0 to protect + * against legacy (pre ISOC90) compilers that did not understand function + * prototypes. It is not required for modern C compilers. + */ +#ifndef PNGARG +# define PNGARG(arglist) arglist +#endif + +/* Function calling conventions. + * ============================= + * Normally it is not necessary to specify to the compiler how to call + * a function - it just does it - however on x86 systems derived from + * Microsoft and Borland C compilers ('IBM PC', 'DOS', 'Windows' systems + * and some others) there are multiple ways to call a function and the + * default can be changed on the compiler command line. For this reason + * libpng specifies the calling convention of every exported function and + * every function called via a user supplied function pointer. This is + * done in this file by defining the following macros: + * + * PNGAPI Calling convention for exported functions. + * PNGCBAPI Calling convention for user provided (callback) functions. + * PNGCAPI Calling convention used by the ANSI-C library (required + * for longjmp callbacks and sometimes used internally to + * specify the calling convention for zlib). + * + * These macros should never be overridden. If it is necessary to + * change calling convention in a private build this can be done + * by setting PNG_API_RULE (which defaults to 0) to one of the values + * below to select the correct 'API' variants. + * + * PNG_API_RULE=0 Use PNGCAPI - the 'C' calling convention - throughout. + * This is correct in every known environment. + * PNG_API_RULE=1 Use the operating system convention for PNGAPI and + * the 'C' calling convention (from PNGCAPI) for + * callbacks (PNGCBAPI). This is no longer required + * in any known environment - if it has to be used + * please post an explanation of the problem to the + * libpng mailing list. + * + * These cases only differ if the operating system does not use the C + * calling convention, at present this just means the above cases + * (x86 DOS/Windows systems) and, even then, this does not apply to + * Cygwin running on those systems. + * + * Note that the value must be defined in pnglibconf.h so that what + * the application uses to call the library matches the conventions + * set when building the library. + */ + +/* Symbol export + * ============= + * When building a shared library it is almost always necessary to tell + * the compiler which symbols to export. The png.h macro 'PNG_EXPORT' + * is used to mark the symbols. On some systems these symbols can be + * extracted at link time and need no special processing by the compiler, + * on other systems the symbols are flagged by the compiler and just + * the declaration requires a special tag applied (unfortunately) in a + * compiler dependent way. Some systems can do either. + * + * A small number of older systems also require a symbol from a DLL to + * be flagged to the program that calls it. This is a problem because + * we do not know in the header file included by application code that + * the symbol will come from a shared library, as opposed to a statically + * linked one. For this reason the application must tell us by setting + * the magic flag PNG_USE_DLL to turn on the special processing before + * it includes png.h. + * + * Four additional macros are used to make this happen: + * + * PNG_IMPEXP The magic (if any) to cause a symbol to be exported from + * the build or imported if PNG_USE_DLL is set - compiler + * and system specific. + * + * PNG_EXPORT_TYPE(type) A macro that pre or appends PNG_IMPEXP to + * 'type', compiler specific. + * + * PNG_DLL_EXPORT Set to the magic to use during a libpng build to + * make a symbol exported from the DLL. Not used in the + * public header files; see pngpriv.h for how it is used + * in the libpng build. + * + * PNG_DLL_IMPORT Set to the magic to force the libpng symbols to come + * from a DLL - used to define PNG_IMPEXP when + * PNG_USE_DLL is set. + */ + +/* System specific discovery. + * ========================== + * This code is used at build time to find PNG_IMPEXP, the API settings + * and PNG_EXPORT_TYPE(), it may also set a macro to indicate the DLL + * import processing is possible. On Windows systems it also sets + * compiler-specific macros to the values required to change the calling + * conventions of the various functions. + */ +#if defined(_Windows) || defined(_WINDOWS) || defined(WIN32) ||\ + defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) + /* Windows system (DOS doesn't support DLLs). Includes builds under Cygwin or + * MinGW on any architecture currently supported by Windows. Also includes + * Watcom builds but these need special treatment because they are not + * compatible with GCC or Visual C because of different calling conventions. + */ +# if PNG_API_RULE == 2 + /* If this line results in an error, either because __watcall is not + * understood or because of a redefine just below you cannot use *this* + * build of the library with the compiler you are using. *This* build was + * build using Watcom and applications must also be built using Watcom! + */ +# define PNGCAPI __watcall +# endif + +# if defined(__GNUC__) || (defined(_MSC_VER) && (_MSC_VER >= 800)) +# define PNGCAPI __cdecl +# if PNG_API_RULE == 1 + /* If this line results in an error __stdcall is not understood and + * PNG_API_RULE should not have been set to '1'. + */ +# define PNGAPI __stdcall +# endif +# else + /* An older compiler, or one not detected (erroneously) above, + * if necessary override on the command line to get the correct + * variants for the compiler. + */ +# ifndef PNGCAPI +# define PNGCAPI _cdecl +# endif +# if PNG_API_RULE == 1 && !defined(PNGAPI) +# define PNGAPI _stdcall +# endif +# endif /* compiler/api */ + + /* NOTE: PNGCBAPI always defaults to PNGCAPI. */ + +# if defined(PNGAPI) && !defined(PNG_USER_PRIVATEBUILD) +# error "PNG_USER_PRIVATEBUILD must be defined if PNGAPI is changed" +# endif + +# if (defined(_MSC_VER) && _MSC_VER < 800) ||\ + (defined(__BORLANDC__) && __BORLANDC__ < 0x500) + /* older Borland and MSC + * compilers used '__export' and required this to be after + * the type. + */ +# ifndef PNG_EXPORT_TYPE +# define PNG_EXPORT_TYPE(type) type PNG_IMPEXP +# endif +# define PNG_DLL_EXPORT __export +# else /* newer compiler */ +# define PNG_DLL_EXPORT __declspec(dllexport) +# ifndef PNG_DLL_IMPORT +# define PNG_DLL_IMPORT __declspec(dllimport) +# endif +# endif /* compiler */ + +#else /* !Windows */ +# if (defined(__IBMC__) || defined(__IBMCPP__)) && defined(__OS2__) +# define PNGAPI _System +# else /* !Windows/x86 && !OS/2 */ + /* Use the defaults, or define PNG*API on the command line (but + * this will have to be done for every compile!) + */ +# endif /* other system, !OS/2 */ +#endif /* !Windows/x86 */ + +/* Now do all the defaulting . */ +#ifndef PNGCAPI +# define PNGCAPI +#endif +#ifndef PNGCBAPI +# define PNGCBAPI PNGCAPI +#endif +#ifndef PNGAPI +# define PNGAPI PNGCAPI +#endif + +/* PNG_IMPEXP may be set on the compilation system command line or (if not set) + * then in an internal header file when building the library, otherwise (when + * using the library) it is set here. + */ +#ifndef PNG_IMPEXP +# if defined(PNG_USE_DLL) && defined(PNG_DLL_IMPORT) + /* This forces use of a DLL, disallowing static linking */ +# define PNG_IMPEXP PNG_DLL_IMPORT +# endif + +# ifndef PNG_IMPEXP +# define PNG_IMPEXP +# endif +#endif + +/* In 1.5.2 the definition of PNG_FUNCTION has been changed to always treat + * 'attributes' as a storage class - the attributes go at the start of the + * function definition, and attributes are always appended regardless of the + * compiler. This considerably simplifies these macros but may cause problems + * if any compilers both need function attributes and fail to handle them as + * a storage class (this is unlikely.) + */ +#ifndef PNG_FUNCTION +# define PNG_FUNCTION(type, name, args, attributes) attributes type name args +#endif + +#ifndef PNG_EXPORT_TYPE +# define PNG_EXPORT_TYPE(type) PNG_IMPEXP type +#endif + + /* The ordinal value is only relevant when preprocessing png.h for symbol + * table entries, so we discard it here. See the .dfn files in the + * scripts directory. + */ + +#ifndef PNG_EXPORTA +# define PNG_EXPORTA(ordinal, type, name, args, attributes) \ + PNG_FUNCTION(PNG_EXPORT_TYPE(type), (PNGAPI name), PNGARG(args), \ + PNG_LINKAGE_API attributes) +#endif + +/* ANSI-C (C90) does not permit a macro to be invoked with an empty argument, + * so make something non-empty to satisfy the requirement: + */ +#define PNG_EMPTY /*empty list*/ + +#define PNG_EXPORT(ordinal, type, name, args) \ + PNG_EXPORTA(ordinal, type, name, args, PNG_EMPTY) + +/* Use PNG_REMOVED to comment out a removed interface. */ +#ifndef PNG_REMOVED +# define PNG_REMOVED(ordinal, type, name, args, attributes) +#endif + +#ifndef PNG_CALLBACK +# define PNG_CALLBACK(type, name, args) type (PNGCBAPI name) PNGARG(args) +#endif + +/* Support for compiler specific function attributes. These are used + * so that where compiler support is available incorrect use of API + * functions in png.h will generate compiler warnings. + * + * Added at libpng-1.2.41. + */ + +#ifndef PNG_NO_PEDANTIC_WARNINGS +# ifndef PNG_PEDANTIC_WARNINGS_SUPPORTED +# define PNG_PEDANTIC_WARNINGS_SUPPORTED +# endif +#endif + +#ifdef PNG_PEDANTIC_WARNINGS_SUPPORTED + /* Support for compiler specific function attributes. These are used + * so that where compiler support is available, incorrect use of API + * functions in png.h will generate compiler warnings. Added at libpng + * version 1.2.41. Disabling these removes the warnings but may also produce + * less efficient code. + */ +# if defined(__clang__) && defined(__has_attribute) + /* Clang defines both __clang__ and __GNUC__. Check __clang__ first. */ +# if !defined(PNG_USE_RESULT) && __has_attribute(__warn_unused_result__) +# define PNG_USE_RESULT __attribute__((__warn_unused_result__)) +# endif +# if !defined(PNG_NORETURN) && __has_attribute(__noreturn__) +# define PNG_NORETURN __attribute__((__noreturn__)) +# endif +# if !defined(PNG_ALLOCATED) && __has_attribute(__malloc__) +# define PNG_ALLOCATED __attribute__((__malloc__)) +# endif +# if !defined(PNG_DEPRECATED) && __has_attribute(__deprecated__) +# define PNG_DEPRECATED __attribute__((__deprecated__)) +# endif +# if !defined(PNG_PRIVATE) +# ifdef __has_extension +# if __has_extension(attribute_unavailable_with_message) +# define PNG_PRIVATE __attribute__((__unavailable__(\ + "This function is not exported by libpng."))) +# endif +# endif +# endif +# ifndef PNG_RESTRICT +# define PNG_RESTRICT __restrict +# endif + +# elif defined(__GNUC__) +# ifndef PNG_USE_RESULT +# define PNG_USE_RESULT __attribute__((__warn_unused_result__)) +# endif +# ifndef PNG_NORETURN +# define PNG_NORETURN __attribute__((__noreturn__)) +# endif +# if __GNUC__ >= 3 +# ifndef PNG_ALLOCATED +# define PNG_ALLOCATED __attribute__((__malloc__)) +# endif +# ifndef PNG_DEPRECATED +# define PNG_DEPRECATED __attribute__((__deprecated__)) +# endif +# ifndef PNG_PRIVATE +# if 0 /* Doesn't work so we use deprecated instead*/ +# define PNG_PRIVATE \ + __attribute__((warning("This function is not exported by libpng."))) +# else +# define PNG_PRIVATE \ + __attribute__((__deprecated__)) +# endif +# endif +# if ((__GNUC__ > 3) || !defined(__GNUC_MINOR__) || (__GNUC_MINOR__ >= 1)) +# ifndef PNG_RESTRICT +# define PNG_RESTRICT __restrict +# endif +# endif /* __GNUC__.__GNUC_MINOR__ > 3.0 */ +# endif /* __GNUC__ >= 3 */ + +# elif defined(_MSC_VER) && (_MSC_VER >= 1300) +# ifndef PNG_USE_RESULT +# define PNG_USE_RESULT /* not supported */ +# endif +# ifndef PNG_NORETURN +# define PNG_NORETURN __declspec(noreturn) +# endif +# ifndef PNG_ALLOCATED +# if (_MSC_VER >= 1400) +# define PNG_ALLOCATED __declspec(restrict) +# endif +# endif +# ifndef PNG_DEPRECATED +# define PNG_DEPRECATED __declspec(deprecated) +# endif +# ifndef PNG_PRIVATE +# define PNG_PRIVATE __declspec(deprecated) +# endif +# ifndef PNG_RESTRICT +# if (_MSC_VER >= 1400) +# define PNG_RESTRICT __restrict +# endif +# endif + +# elif defined(__WATCOMC__) +# ifndef PNG_RESTRICT +# define PNG_RESTRICT __restrict +# endif +# endif +#endif /* PNG_PEDANTIC_WARNINGS */ + +#ifndef PNG_DEPRECATED +# define PNG_DEPRECATED /* Use of this function is deprecated */ +#endif +#ifndef PNG_USE_RESULT +# define PNG_USE_RESULT /* The result of this function must be checked */ +#endif +#ifndef PNG_NORETURN +# define PNG_NORETURN /* This function does not return */ +#endif +#ifndef PNG_ALLOCATED +# define PNG_ALLOCATED /* The result of the function is new memory */ +#endif +#ifndef PNG_PRIVATE +# define PNG_PRIVATE /* This is a private libpng function */ +#endif +#ifndef PNG_RESTRICT +# define PNG_RESTRICT /* The C99 "restrict" feature */ +#endif + +#ifndef PNG_FP_EXPORT /* A floating point API. */ +# ifdef PNG_FLOATING_POINT_SUPPORTED +# define PNG_FP_EXPORT(ordinal, type, name, args)\ + PNG_EXPORT(ordinal, type, name, args); +# else /* No floating point APIs */ +# define PNG_FP_EXPORT(ordinal, type, name, args) +# endif +#endif +#ifndef PNG_FIXED_EXPORT /* A fixed point API. */ +# ifdef PNG_FIXED_POINT_SUPPORTED +# define PNG_FIXED_EXPORT(ordinal, type, name, args)\ + PNG_EXPORT(ordinal, type, name, args); +# else /* No fixed point APIs */ +# define PNG_FIXED_EXPORT(ordinal, type, name, args) +# endif +#endif + +#ifndef PNG_BUILDING_SYMBOL_TABLE +/* Some typedefs to get us started. These should be safe on most of the common + * platforms. + * + * png_uint_32 and png_int_32 may, currently, be larger than required to hold a + * 32-bit value however this is not normally advisable. + * + * png_uint_16 and png_int_16 should always be two bytes in size - this is + * verified at library build time. + * + * png_byte must always be one byte in size. + * + * The checks below use constants from limits.h, as defined by the ISOC90 + * standard. + */ +#if CHAR_BIT == 8 && UCHAR_MAX == 255 + typedef unsigned char png_byte; +#else +# error "libpng requires 8-bit bytes" +#endif + +#if INT_MIN == -32768 && INT_MAX == 32767 + typedef int png_int_16; +#elif SHRT_MIN == -32768 && SHRT_MAX == 32767 + typedef short png_int_16; +#else +# error "libpng requires a signed 16-bit type" +#endif + +#if UINT_MAX == 65535 + typedef unsigned int png_uint_16; +#elif USHRT_MAX == 65535 + typedef unsigned short png_uint_16; +#else +# error "libpng requires an unsigned 16-bit type" +#endif + +#if INT_MIN < -2147483646 && INT_MAX > 2147483646 + typedef int png_int_32; +#elif LONG_MIN < -2147483646 && LONG_MAX > 2147483646 + typedef long int png_int_32; +#else +# error "libpng requires a signed 32-bit (or more) type" +#endif + +#if UINT_MAX > 4294967294U + typedef unsigned int png_uint_32; +#elif ULONG_MAX > 4294967294U + typedef unsigned long int png_uint_32; +#else +# error "libpng requires an unsigned 32-bit (or more) type" +#endif + +/* Prior to 1.6.0, it was possible to disable the use of size_t and ptrdiff_t. + * From 1.6.0 onwards, an ISO C90 compiler, as well as a standard-compliant + * behavior of sizeof and ptrdiff_t are required. + * The legacy typedefs are provided here for backwards compatibility. + */ +typedef size_t png_size_t; +typedef ptrdiff_t png_ptrdiff_t; + +/* libpng needs to know the maximum value of 'size_t' and this controls the + * definition of png_alloc_size_t, below. This maximum value of size_t limits + * but does not control the maximum allocations the library makes - there is + * direct application control of this through png_set_user_limits(). + */ +#ifndef PNG_SMALL_SIZE_T + /* Compiler specific tests for systems where size_t is known to be less than + * 32 bits (some of these systems may no longer work because of the lack of + * 'far' support; see above.) + */ +# if (defined(__TURBOC__) && !defined(__FLAT__)) ||\ + (defined(_MSC_VER) && defined(MAXSEG_64K)) +# define PNG_SMALL_SIZE_T +# endif +#endif + +/* png_alloc_size_t is guaranteed to be no smaller than size_t, and no smaller + * than png_uint_32. Casts from size_t or png_uint_32 to png_alloc_size_t are + * not necessary; in fact, it is recommended not to use them at all, so that + * the compiler can complain when something turns out to be problematic. + * + * Casts in the other direction (from png_alloc_size_t to size_t or + * png_uint_32) should be explicitly applied; however, we do not expect to + * encounter practical situations that require such conversions. + * + * PNG_SMALL_SIZE_T must be defined if the maximum value of size_t is less than + * 4294967295 - i.e. less than the maximum value of png_uint_32. + */ +#ifdef PNG_SMALL_SIZE_T + typedef png_uint_32 png_alloc_size_t; +#else + typedef size_t png_alloc_size_t; +#endif + +/* Prior to 1.6.0 libpng offered limited support for Microsoft C compiler + * implementations of Intel CPU specific support of user-mode segmented address + * spaces, where 16-bit pointers address more than 65536 bytes of memory using + * separate 'segment' registers. The implementation requires two different + * types of pointer (only one of which includes the segment value.) + * + * If required this support is available in version 1.2 of libpng and may be + * available in versions through 1.5, although the correctness of the code has + * not been verified recently. + */ + +/* Typedef for floating-point numbers that are converted to fixed-point with a + * multiple of 100,000, e.g., gamma + */ +typedef png_int_32 png_fixed_point; + +/* Add typedefs for pointers */ +typedef void * png_voidp; +typedef const void * png_const_voidp; +typedef png_byte * png_bytep; +typedef const png_byte * png_const_bytep; +typedef png_uint_32 * png_uint_32p; +typedef const png_uint_32 * png_const_uint_32p; +typedef png_int_32 * png_int_32p; +typedef const png_int_32 * png_const_int_32p; +typedef png_uint_16 * png_uint_16p; +typedef const png_uint_16 * png_const_uint_16p; +typedef png_int_16 * png_int_16p; +typedef const png_int_16 * png_const_int_16p; +typedef char * png_charp; +typedef const char * png_const_charp; +typedef png_fixed_point * png_fixed_point_p; +typedef const png_fixed_point * png_const_fixed_point_p; +typedef size_t * png_size_tp; +typedef const size_t * png_const_size_tp; + +#ifdef PNG_STDIO_SUPPORTED +typedef FILE * png_FILE_p; +#endif + +#ifdef PNG_FLOATING_POINT_SUPPORTED +typedef double * png_doublep; +typedef const double * png_const_doublep; +#endif + +/* Pointers to pointers; i.e. arrays */ +typedef png_byte * * png_bytepp; +typedef png_uint_32 * * png_uint_32pp; +typedef png_int_32 * * png_int_32pp; +typedef png_uint_16 * * png_uint_16pp; +typedef png_int_16 * * png_int_16pp; +typedef const char * * png_const_charpp; +typedef char * * png_charpp; +typedef png_fixed_point * * png_fixed_point_pp; +#ifdef PNG_FLOATING_POINT_SUPPORTED +typedef double * * png_doublepp; +#endif + +/* Pointers to pointers to pointers; i.e., pointer to array */ +typedef char * * * png_charppp; + +#endif /* PNG_BUILDING_SYMBOL_TABLE */ + +#endif /* PNGCONF_H */ diff --git a/Source/include/pnglibconf.h b/Source/include/pnglibconf.h new file mode 100644 index 0000000..00340c6 --- /dev/null +++ b/Source/include/pnglibconf.h @@ -0,0 +1,219 @@ +/* pnglibconf.h - library build configuration */ + +/* libpng version 1.6.36 */ + +/* Copyright (c) 2018 Cosmin Truta */ +/* Copyright (c) 1998-2002,2004,2006-2018 Glenn Randers-Pehrson */ + +/* This code is released under the libpng license. */ +/* For conditions of distribution and use, see the disclaimer */ +/* and license in png.h */ + +/* pnglibconf.h */ +/* Machine generated file: DO NOT EDIT */ +/* Derived from: scripts/pnglibconf.dfa */ +#ifndef PNGLCONF_H +#define PNGLCONF_H +/* options */ +#define PNG_16BIT_SUPPORTED +#define PNG_ALIGNED_MEMORY_SUPPORTED +/*#undef PNG_ARM_NEON_API_SUPPORTED*/ +/*#undef PNG_ARM_NEON_CHECK_SUPPORTED*/ +#define PNG_BENIGN_ERRORS_SUPPORTED +#define PNG_BENIGN_READ_ERRORS_SUPPORTED +/*#undef PNG_BENIGN_WRITE_ERRORS_SUPPORTED*/ +#define PNG_BUILD_GRAYSCALE_PALETTE_SUPPORTED +#define PNG_CHECK_FOR_INVALID_INDEX_SUPPORTED +#define PNG_COLORSPACE_SUPPORTED +#define PNG_CONSOLE_IO_SUPPORTED +#define PNG_CONVERT_tIME_SUPPORTED +#define PNG_EASY_ACCESS_SUPPORTED +/*#undef PNG_ERROR_NUMBERS_SUPPORTED*/ +#define PNG_ERROR_TEXT_SUPPORTED +#define PNG_FIXED_POINT_SUPPORTED +#define PNG_FLOATING_ARITHMETIC_SUPPORTED +#define PNG_FLOATING_POINT_SUPPORTED +#define PNG_FORMAT_AFIRST_SUPPORTED +#define PNG_FORMAT_BGR_SUPPORTED +#define PNG_GAMMA_SUPPORTED +#define PNG_GET_PALETTE_MAX_SUPPORTED +#define PNG_HANDLE_AS_UNKNOWN_SUPPORTED +#define PNG_INCH_CONVERSIONS_SUPPORTED +#define PNG_INFO_IMAGE_SUPPORTED +#define PNG_IO_STATE_SUPPORTED +#define PNG_MNG_FEATURES_SUPPORTED +#define PNG_POINTER_INDEXING_SUPPORTED +/*#undef PNG_POWERPC_VSX_API_SUPPORTED*/ +/*#undef PNG_POWERPC_VSX_CHECK_SUPPORTED*/ +#define PNG_PROGRESSIVE_READ_SUPPORTED +#define PNG_READ_16BIT_SUPPORTED +#define PNG_READ_ALPHA_MODE_SUPPORTED +#define PNG_READ_ANCILLARY_CHUNKS_SUPPORTED +#define PNG_READ_BACKGROUND_SUPPORTED +#define PNG_READ_BGR_SUPPORTED +#define PNG_READ_CHECK_FOR_INVALID_INDEX_SUPPORTED +#define PNG_READ_COMPOSITE_NODIV_SUPPORTED +#define PNG_READ_COMPRESSED_TEXT_SUPPORTED +#define PNG_READ_EXPAND_16_SUPPORTED +#define PNG_READ_EXPAND_SUPPORTED +#define PNG_READ_FILLER_SUPPORTED +#define PNG_READ_GAMMA_SUPPORTED +#define PNG_READ_GET_PALETTE_MAX_SUPPORTED +#define PNG_READ_GRAY_TO_RGB_SUPPORTED +#define PNG_READ_INTERLACING_SUPPORTED +#define PNG_READ_INT_FUNCTIONS_SUPPORTED +#define PNG_READ_INVERT_ALPHA_SUPPORTED +#define PNG_READ_INVERT_SUPPORTED +#define PNG_READ_OPT_PLTE_SUPPORTED +#define PNG_READ_PACKSWAP_SUPPORTED +#define PNG_READ_PACK_SUPPORTED +#define PNG_READ_QUANTIZE_SUPPORTED +#define PNG_READ_RGB_TO_GRAY_SUPPORTED +#define PNG_READ_SCALE_16_TO_8_SUPPORTED +#define PNG_READ_SHIFT_SUPPORTED +#define PNG_READ_STRIP_16_TO_8_SUPPORTED +#define PNG_READ_STRIP_ALPHA_SUPPORTED +#define PNG_READ_SUPPORTED +#define PNG_READ_SWAP_ALPHA_SUPPORTED +#define PNG_READ_SWAP_SUPPORTED +#define PNG_READ_TEXT_SUPPORTED +#define PNG_READ_TRANSFORMS_SUPPORTED +#define PNG_READ_UNKNOWN_CHUNKS_SUPPORTED +#define PNG_READ_USER_CHUNKS_SUPPORTED +#define PNG_READ_USER_TRANSFORM_SUPPORTED +#define PNG_READ_bKGD_SUPPORTED +#define PNG_READ_cHRM_SUPPORTED +#define PNG_READ_eXIf_SUPPORTED +#define PNG_READ_gAMA_SUPPORTED +#define PNG_READ_hIST_SUPPORTED +#define PNG_READ_iCCP_SUPPORTED +#define PNG_READ_iTXt_SUPPORTED +#define PNG_READ_oFFs_SUPPORTED +#define PNG_READ_pCAL_SUPPORTED +#define PNG_READ_pHYs_SUPPORTED +#define PNG_READ_sBIT_SUPPORTED +#define PNG_READ_sCAL_SUPPORTED +#define PNG_READ_sPLT_SUPPORTED +#define PNG_READ_sRGB_SUPPORTED +#define PNG_READ_tEXt_SUPPORTED +#define PNG_READ_tIME_SUPPORTED +#define PNG_READ_tRNS_SUPPORTED +#define PNG_READ_zTXt_SUPPORTED +#define PNG_SAVE_INT_32_SUPPORTED +#define PNG_SAVE_UNKNOWN_CHUNKS_SUPPORTED +#define PNG_SEQUENTIAL_READ_SUPPORTED +#define PNG_SETJMP_SUPPORTED +#define PNG_SET_OPTION_SUPPORTED +#define PNG_SET_UNKNOWN_CHUNKS_SUPPORTED +#define PNG_SET_USER_LIMITS_SUPPORTED +#define PNG_SIMPLIFIED_READ_AFIRST_SUPPORTED +#define PNG_SIMPLIFIED_READ_BGR_SUPPORTED +#define PNG_SIMPLIFIED_READ_SUPPORTED +#define PNG_SIMPLIFIED_WRITE_AFIRST_SUPPORTED +#define PNG_SIMPLIFIED_WRITE_BGR_SUPPORTED +#define PNG_SIMPLIFIED_WRITE_STDIO_SUPPORTED +#define PNG_SIMPLIFIED_WRITE_SUPPORTED +#define PNG_STDIO_SUPPORTED +#define PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED +#define PNG_TEXT_SUPPORTED +#define PNG_TIME_RFC1123_SUPPORTED +#define PNG_UNKNOWN_CHUNKS_SUPPORTED +#define PNG_USER_CHUNKS_SUPPORTED +#define PNG_USER_LIMITS_SUPPORTED +#define PNG_USER_MEM_SUPPORTED +#define PNG_USER_TRANSFORM_INFO_SUPPORTED +#define PNG_USER_TRANSFORM_PTR_SUPPORTED +#define PNG_WARNINGS_SUPPORTED +#define PNG_WRITE_16BIT_SUPPORTED +#define PNG_WRITE_ANCILLARY_CHUNKS_SUPPORTED +#define PNG_WRITE_BGR_SUPPORTED +#define PNG_WRITE_CHECK_FOR_INVALID_INDEX_SUPPORTED +#define PNG_WRITE_COMPRESSED_TEXT_SUPPORTED +#define PNG_WRITE_CUSTOMIZE_COMPRESSION_SUPPORTED +#define PNG_WRITE_CUSTOMIZE_ZTXT_COMPRESSION_SUPPORTED +#define PNG_WRITE_FILLER_SUPPORTED +#define PNG_WRITE_FILTER_SUPPORTED +#define PNG_WRITE_FLUSH_SUPPORTED +#define PNG_WRITE_GET_PALETTE_MAX_SUPPORTED +#define PNG_WRITE_INTERLACING_SUPPORTED +#define PNG_WRITE_INT_FUNCTIONS_SUPPORTED +#define PNG_WRITE_INVERT_ALPHA_SUPPORTED +#define PNG_WRITE_INVERT_SUPPORTED +#define PNG_WRITE_OPTIMIZE_CMF_SUPPORTED +#define PNG_WRITE_PACKSWAP_SUPPORTED +#define PNG_WRITE_PACK_SUPPORTED +#define PNG_WRITE_SHIFT_SUPPORTED +#define PNG_WRITE_SUPPORTED +#define PNG_WRITE_SWAP_ALPHA_SUPPORTED +#define PNG_WRITE_SWAP_SUPPORTED +#define PNG_WRITE_TEXT_SUPPORTED +#define PNG_WRITE_TRANSFORMS_SUPPORTED +#define PNG_WRITE_UNKNOWN_CHUNKS_SUPPORTED +#define PNG_WRITE_USER_TRANSFORM_SUPPORTED +#define PNG_WRITE_WEIGHTED_FILTER_SUPPORTED +#define PNG_WRITE_bKGD_SUPPORTED +#define PNG_WRITE_cHRM_SUPPORTED +#define PNG_WRITE_eXIf_SUPPORTED +#define PNG_WRITE_gAMA_SUPPORTED +#define PNG_WRITE_hIST_SUPPORTED +#define PNG_WRITE_iCCP_SUPPORTED +#define PNG_WRITE_iTXt_SUPPORTED +#define PNG_WRITE_oFFs_SUPPORTED +#define PNG_WRITE_pCAL_SUPPORTED +#define PNG_WRITE_pHYs_SUPPORTED +#define PNG_WRITE_sBIT_SUPPORTED +#define PNG_WRITE_sCAL_SUPPORTED +#define PNG_WRITE_sPLT_SUPPORTED +#define PNG_WRITE_sRGB_SUPPORTED +#define PNG_WRITE_tEXt_SUPPORTED +#define PNG_WRITE_tIME_SUPPORTED +#define PNG_WRITE_tRNS_SUPPORTED +#define PNG_WRITE_zTXt_SUPPORTED +#define PNG_bKGD_SUPPORTED +#define PNG_cHRM_SUPPORTED +#define PNG_eXIf_SUPPORTED +#define PNG_gAMA_SUPPORTED +#define PNG_hIST_SUPPORTED +#define PNG_iCCP_SUPPORTED +#define PNG_iTXt_SUPPORTED +#define PNG_oFFs_SUPPORTED +#define PNG_pCAL_SUPPORTED +#define PNG_pHYs_SUPPORTED +#define PNG_sBIT_SUPPORTED +#define PNG_sCAL_SUPPORTED +#define PNG_sPLT_SUPPORTED +#define PNG_sRGB_SUPPORTED +#define PNG_tEXt_SUPPORTED +#define PNG_tIME_SUPPORTED +#define PNG_tRNS_SUPPORTED +#define PNG_zTXt_SUPPORTED +/* end of options */ +/* settings */ +#define PNG_API_RULE 0 +#define PNG_DEFAULT_READ_MACROS 1 +#define PNG_GAMMA_THRESHOLD_FIXED 5000 +#define PNG_IDAT_READ_SIZE PNG_ZBUF_SIZE +#define PNG_INFLATE_BUF_SIZE 1024 +#define PNG_LINKAGE_API extern +#define PNG_LINKAGE_CALLBACK extern +#define PNG_LINKAGE_DATA extern +#define PNG_LINKAGE_FUNCTION extern +#define PNG_MAX_GAMMA_8 11 +#define PNG_QUANTIZE_BLUE_BITS 5 +#define PNG_QUANTIZE_GREEN_BITS 5 +#define PNG_QUANTIZE_RED_BITS 5 +#define PNG_TEXT_Z_DEFAULT_COMPRESSION (-1) +#define PNG_TEXT_Z_DEFAULT_STRATEGY 0 +#define PNG_USER_CHUNK_CACHE_MAX 1000 +#define PNG_USER_CHUNK_MALLOC_MAX 8000000 +#define PNG_USER_HEIGHT_MAX 1000000 +#define PNG_USER_WIDTH_MAX 1000000 +#define PNG_ZBUF_SIZE 8192 +#define PNG_ZLIB_VERNUM 0 /* unknown */ +#define PNG_Z_DEFAULT_COMPRESSION (-1) +#define PNG_Z_DEFAULT_NOFILTER_STRATEGY 0 +#define PNG_Z_DEFAULT_STRATEGY 1 +#define PNG_sCAL_PRECISION 5 +#define PNG_sRGB_PROFILE_CHECKS 2 +/* end of settings */ +#endif /* PNGLCONF_H */ diff --git a/Source/include/wglew.h b/Source/include/wglew.h new file mode 100644 index 0000000..2097c0f --- /dev/null +++ b/Source/include/wglew.h @@ -0,0 +1,1447 @@ +/* +** The OpenGL Extension Wrangler Library +** Copyright (C) 2008-2017, Nigel Stewart +** Copyright (C) 2002-2008, Milan Ikits +** Copyright (C) 2002-2008, Marcelo E. Magallon +** Copyright (C) 2002, Lev Povalahev +** All rights reserved. +** +** Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are met: +** +** * Redistributions of source code must retain the above copyright notice, +** this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright notice, +** this list of conditions and the following disclaimer in the documentation +** and/or other materials provided with the distribution. +** * The name of the author may be used to endorse or promote products +** derived from this software without specific prior written permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF +** THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/* +** Copyright (c) 2007 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +#ifndef __wglew_h__ +#define __wglew_h__ +#define __WGLEW_H__ + +#ifdef __wglext_h_ +#error wglext.h included before wglew.h +#endif + +#define __wglext_h_ + +#if !defined(WINAPI) +# ifndef WIN32_LEAN_AND_MEAN +# define WIN32_LEAN_AND_MEAN 1 +# endif +#include +# undef WIN32_LEAN_AND_MEAN +#endif + +/* + * GLEW_STATIC needs to be set when using the static version. + * GLEW_BUILD is set when building the DLL version. + */ +#ifdef GLEW_STATIC +# define GLEWAPI extern +#else +# ifdef GLEW_BUILD +# define GLEWAPI extern __declspec(dllexport) +# else +# define GLEWAPI extern __declspec(dllimport) +# endif +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +/* -------------------------- WGL_3DFX_multisample ------------------------- */ + +#ifndef WGL_3DFX_multisample +#define WGL_3DFX_multisample 1 + +#define WGL_SAMPLE_BUFFERS_3DFX 0x2060 +#define WGL_SAMPLES_3DFX 0x2061 + +#define WGLEW_3DFX_multisample WGLEW_GET_VAR(__WGLEW_3DFX_multisample) + +#endif /* WGL_3DFX_multisample */ + +/* ------------------------- WGL_3DL_stereo_control ------------------------ */ + +#ifndef WGL_3DL_stereo_control +#define WGL_3DL_stereo_control 1 + +#define WGL_STEREO_EMITTER_ENABLE_3DL 0x2055 +#define WGL_STEREO_EMITTER_DISABLE_3DL 0x2056 +#define WGL_STEREO_POLARITY_NORMAL_3DL 0x2057 +#define WGL_STEREO_POLARITY_INVERT_3DL 0x2058 + +typedef BOOL (WINAPI * PFNWGLSETSTEREOEMITTERSTATE3DLPROC) (HDC hDC, UINT uState); + +#define wglSetStereoEmitterState3DL WGLEW_GET_FUN(__wglewSetStereoEmitterState3DL) + +#define WGLEW_3DL_stereo_control WGLEW_GET_VAR(__WGLEW_3DL_stereo_control) + +#endif /* WGL_3DL_stereo_control */ + +/* ------------------------ WGL_AMD_gpu_association ------------------------ */ + +#ifndef WGL_AMD_gpu_association +#define WGL_AMD_gpu_association 1 + +#define WGL_GPU_VENDOR_AMD 0x1F00 +#define WGL_GPU_RENDERER_STRING_AMD 0x1F01 +#define WGL_GPU_OPENGL_VERSION_STRING_AMD 0x1F02 +#define WGL_GPU_FASTEST_TARGET_GPUS_AMD 0x21A2 +#define WGL_GPU_RAM_AMD 0x21A3 +#define WGL_GPU_CLOCK_AMD 0x21A4 +#define WGL_GPU_NUM_PIPES_AMD 0x21A5 +#define WGL_GPU_NUM_SIMD_AMD 0x21A6 +#define WGL_GPU_NUM_RB_AMD 0x21A7 +#define WGL_GPU_NUM_SPI_AMD 0x21A8 + +typedef VOID (WINAPI * PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC) (HGLRC dstCtx, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef HGLRC (WINAPI * PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC) (UINT id); +typedef HGLRC (WINAPI * PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC) (UINT id, HGLRC hShareContext, const int* attribList); +typedef BOOL (WINAPI * PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC) (HGLRC hglrc); +typedef UINT (WINAPI * PFNWGLGETCONTEXTGPUIDAMDPROC) (HGLRC hglrc); +typedef HGLRC (WINAPI * PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC) (void); +typedef UINT (WINAPI * PFNWGLGETGPUIDSAMDPROC) (UINT maxCount, UINT* ids); +typedef INT (WINAPI * PFNWGLGETGPUINFOAMDPROC) (UINT id, INT property, GLenum dataType, UINT size, void* data); +typedef BOOL (WINAPI * PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC) (HGLRC hglrc); + +#define wglBlitContextFramebufferAMD WGLEW_GET_FUN(__wglewBlitContextFramebufferAMD) +#define wglCreateAssociatedContextAMD WGLEW_GET_FUN(__wglewCreateAssociatedContextAMD) +#define wglCreateAssociatedContextAttribsAMD WGLEW_GET_FUN(__wglewCreateAssociatedContextAttribsAMD) +#define wglDeleteAssociatedContextAMD WGLEW_GET_FUN(__wglewDeleteAssociatedContextAMD) +#define wglGetContextGPUIDAMD WGLEW_GET_FUN(__wglewGetContextGPUIDAMD) +#define wglGetCurrentAssociatedContextAMD WGLEW_GET_FUN(__wglewGetCurrentAssociatedContextAMD) +#define wglGetGPUIDsAMD WGLEW_GET_FUN(__wglewGetGPUIDsAMD) +#define wglGetGPUInfoAMD WGLEW_GET_FUN(__wglewGetGPUInfoAMD) +#define wglMakeAssociatedContextCurrentAMD WGLEW_GET_FUN(__wglewMakeAssociatedContextCurrentAMD) + +#define WGLEW_AMD_gpu_association WGLEW_GET_VAR(__WGLEW_AMD_gpu_association) + +#endif /* WGL_AMD_gpu_association */ + +/* ------------------------- WGL_ARB_buffer_region ------------------------- */ + +#ifndef WGL_ARB_buffer_region +#define WGL_ARB_buffer_region 1 + +#define WGL_FRONT_COLOR_BUFFER_BIT_ARB 0x00000001 +#define WGL_BACK_COLOR_BUFFER_BIT_ARB 0x00000002 +#define WGL_DEPTH_BUFFER_BIT_ARB 0x00000004 +#define WGL_STENCIL_BUFFER_BIT_ARB 0x00000008 + +typedef HANDLE (WINAPI * PFNWGLCREATEBUFFERREGIONARBPROC) (HDC hDC, int iLayerPlane, UINT uType); +typedef VOID (WINAPI * PFNWGLDELETEBUFFERREGIONARBPROC) (HANDLE hRegion); +typedef BOOL (WINAPI * PFNWGLRESTOREBUFFERREGIONARBPROC) (HANDLE hRegion, int x, int y, int width, int height, int xSrc, int ySrc); +typedef BOOL (WINAPI * PFNWGLSAVEBUFFERREGIONARBPROC) (HANDLE hRegion, int x, int y, int width, int height); + +#define wglCreateBufferRegionARB WGLEW_GET_FUN(__wglewCreateBufferRegionARB) +#define wglDeleteBufferRegionARB WGLEW_GET_FUN(__wglewDeleteBufferRegionARB) +#define wglRestoreBufferRegionARB WGLEW_GET_FUN(__wglewRestoreBufferRegionARB) +#define wglSaveBufferRegionARB WGLEW_GET_FUN(__wglewSaveBufferRegionARB) + +#define WGLEW_ARB_buffer_region WGLEW_GET_VAR(__WGLEW_ARB_buffer_region) + +#endif /* WGL_ARB_buffer_region */ + +/* --------------------- WGL_ARB_context_flush_control --------------------- */ + +#ifndef WGL_ARB_context_flush_control +#define WGL_ARB_context_flush_control 1 + +#define WGLEW_ARB_context_flush_control WGLEW_GET_VAR(__WGLEW_ARB_context_flush_control) + +#endif /* WGL_ARB_context_flush_control */ + +/* ------------------------- WGL_ARB_create_context ------------------------ */ + +#ifndef WGL_ARB_create_context +#define WGL_ARB_create_context 1 + +#define WGL_CONTEXT_DEBUG_BIT_ARB 0x0001 +#define WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB 0x0002 +#define WGL_CONTEXT_MAJOR_VERSION_ARB 0x2091 +#define WGL_CONTEXT_MINOR_VERSION_ARB 0x2092 +#define WGL_CONTEXT_LAYER_PLANE_ARB 0x2093 +#define WGL_CONTEXT_FLAGS_ARB 0x2094 +#define ERROR_INVALID_VERSION_ARB 0x2095 +#define ERROR_INVALID_PROFILE_ARB 0x2096 + +typedef HGLRC (WINAPI * PFNWGLCREATECONTEXTATTRIBSARBPROC) (HDC hDC, HGLRC hShareContext, const int* attribList); + +#define wglCreateContextAttribsARB WGLEW_GET_FUN(__wglewCreateContextAttribsARB) + +#define WGLEW_ARB_create_context WGLEW_GET_VAR(__WGLEW_ARB_create_context) + +#endif /* WGL_ARB_create_context */ + +/* -------------------- WGL_ARB_create_context_no_error -------------------- */ + +#ifndef WGL_ARB_create_context_no_error +#define WGL_ARB_create_context_no_error 1 + +#define WGLEW_ARB_create_context_no_error WGLEW_GET_VAR(__WGLEW_ARB_create_context_no_error) + +#endif /* WGL_ARB_create_context_no_error */ + +/* --------------------- WGL_ARB_create_context_profile -------------------- */ + +#ifndef WGL_ARB_create_context_profile +#define WGL_ARB_create_context_profile 1 + +#define WGL_CONTEXT_CORE_PROFILE_BIT_ARB 0x00000001 +#define WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB 0x00000002 +#define WGL_CONTEXT_PROFILE_MASK_ARB 0x9126 + +#define WGLEW_ARB_create_context_profile WGLEW_GET_VAR(__WGLEW_ARB_create_context_profile) + +#endif /* WGL_ARB_create_context_profile */ + +/* ------------------- WGL_ARB_create_context_robustness ------------------- */ + +#ifndef WGL_ARB_create_context_robustness +#define WGL_ARB_create_context_robustness 1 + +#define WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB 0x00000004 +#define WGL_LOSE_CONTEXT_ON_RESET_ARB 0x8252 +#define WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB 0x8256 +#define WGL_NO_RESET_NOTIFICATION_ARB 0x8261 + +#define WGLEW_ARB_create_context_robustness WGLEW_GET_VAR(__WGLEW_ARB_create_context_robustness) + +#endif /* WGL_ARB_create_context_robustness */ + +/* ----------------------- WGL_ARB_extensions_string ----------------------- */ + +#ifndef WGL_ARB_extensions_string +#define WGL_ARB_extensions_string 1 + +typedef const char* (WINAPI * PFNWGLGETEXTENSIONSSTRINGARBPROC) (HDC hdc); + +#define wglGetExtensionsStringARB WGLEW_GET_FUN(__wglewGetExtensionsStringARB) + +#define WGLEW_ARB_extensions_string WGLEW_GET_VAR(__WGLEW_ARB_extensions_string) + +#endif /* WGL_ARB_extensions_string */ + +/* ------------------------ WGL_ARB_framebuffer_sRGB ----------------------- */ + +#ifndef WGL_ARB_framebuffer_sRGB +#define WGL_ARB_framebuffer_sRGB 1 + +#define WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB 0x20A9 + +#define WGLEW_ARB_framebuffer_sRGB WGLEW_GET_VAR(__WGLEW_ARB_framebuffer_sRGB) + +#endif /* WGL_ARB_framebuffer_sRGB */ + +/* ----------------------- WGL_ARB_make_current_read ----------------------- */ + +#ifndef WGL_ARB_make_current_read +#define WGL_ARB_make_current_read 1 + +#define ERROR_INVALID_PIXEL_TYPE_ARB 0x2043 +#define ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB 0x2054 + +typedef HDC (WINAPI * PFNWGLGETCURRENTREADDCARBPROC) (VOID); +typedef BOOL (WINAPI * PFNWGLMAKECONTEXTCURRENTARBPROC) (HDC hDrawDC, HDC hReadDC, HGLRC hglrc); + +#define wglGetCurrentReadDCARB WGLEW_GET_FUN(__wglewGetCurrentReadDCARB) +#define wglMakeContextCurrentARB WGLEW_GET_FUN(__wglewMakeContextCurrentARB) + +#define WGLEW_ARB_make_current_read WGLEW_GET_VAR(__WGLEW_ARB_make_current_read) + +#endif /* WGL_ARB_make_current_read */ + +/* -------------------------- WGL_ARB_multisample -------------------------- */ + +#ifndef WGL_ARB_multisample +#define WGL_ARB_multisample 1 + +#define WGL_SAMPLE_BUFFERS_ARB 0x2041 +#define WGL_SAMPLES_ARB 0x2042 + +#define WGLEW_ARB_multisample WGLEW_GET_VAR(__WGLEW_ARB_multisample) + +#endif /* WGL_ARB_multisample */ + +/* ---------------------------- WGL_ARB_pbuffer ---------------------------- */ + +#ifndef WGL_ARB_pbuffer +#define WGL_ARB_pbuffer 1 + +#define WGL_DRAW_TO_PBUFFER_ARB 0x202D +#define WGL_MAX_PBUFFER_PIXELS_ARB 0x202E +#define WGL_MAX_PBUFFER_WIDTH_ARB 0x202F +#define WGL_MAX_PBUFFER_HEIGHT_ARB 0x2030 +#define WGL_PBUFFER_LARGEST_ARB 0x2033 +#define WGL_PBUFFER_WIDTH_ARB 0x2034 +#define WGL_PBUFFER_HEIGHT_ARB 0x2035 +#define WGL_PBUFFER_LOST_ARB 0x2036 + +DECLARE_HANDLE(HPBUFFERARB); + +typedef HPBUFFERARB (WINAPI * PFNWGLCREATEPBUFFERARBPROC) (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int* piAttribList); +typedef BOOL (WINAPI * PFNWGLDESTROYPBUFFERARBPROC) (HPBUFFERARB hPbuffer); +typedef HDC (WINAPI * PFNWGLGETPBUFFERDCARBPROC) (HPBUFFERARB hPbuffer); +typedef BOOL (WINAPI * PFNWGLQUERYPBUFFERARBPROC) (HPBUFFERARB hPbuffer, int iAttribute, int* piValue); +typedef int (WINAPI * PFNWGLRELEASEPBUFFERDCARBPROC) (HPBUFFERARB hPbuffer, HDC hDC); + +#define wglCreatePbufferARB WGLEW_GET_FUN(__wglewCreatePbufferARB) +#define wglDestroyPbufferARB WGLEW_GET_FUN(__wglewDestroyPbufferARB) +#define wglGetPbufferDCARB WGLEW_GET_FUN(__wglewGetPbufferDCARB) +#define wglQueryPbufferARB WGLEW_GET_FUN(__wglewQueryPbufferARB) +#define wglReleasePbufferDCARB WGLEW_GET_FUN(__wglewReleasePbufferDCARB) + +#define WGLEW_ARB_pbuffer WGLEW_GET_VAR(__WGLEW_ARB_pbuffer) + +#endif /* WGL_ARB_pbuffer */ + +/* -------------------------- WGL_ARB_pixel_format ------------------------- */ + +#ifndef WGL_ARB_pixel_format +#define WGL_ARB_pixel_format 1 + +#define WGL_NUMBER_PIXEL_FORMATS_ARB 0x2000 +#define WGL_DRAW_TO_WINDOW_ARB 0x2001 +#define WGL_DRAW_TO_BITMAP_ARB 0x2002 +#define WGL_ACCELERATION_ARB 0x2003 +#define WGL_NEED_PALETTE_ARB 0x2004 +#define WGL_NEED_SYSTEM_PALETTE_ARB 0x2005 +#define WGL_SWAP_LAYER_BUFFERS_ARB 0x2006 +#define WGL_SWAP_METHOD_ARB 0x2007 +#define WGL_NUMBER_OVERLAYS_ARB 0x2008 +#define WGL_NUMBER_UNDERLAYS_ARB 0x2009 +#define WGL_TRANSPARENT_ARB 0x200A +#define WGL_SHARE_DEPTH_ARB 0x200C +#define WGL_SHARE_STENCIL_ARB 0x200D +#define WGL_SHARE_ACCUM_ARB 0x200E +#define WGL_SUPPORT_GDI_ARB 0x200F +#define WGL_SUPPORT_OPENGL_ARB 0x2010 +#define WGL_DOUBLE_BUFFER_ARB 0x2011 +#define WGL_STEREO_ARB 0x2012 +#define WGL_PIXEL_TYPE_ARB 0x2013 +#define WGL_COLOR_BITS_ARB 0x2014 +#define WGL_RED_BITS_ARB 0x2015 +#define WGL_RED_SHIFT_ARB 0x2016 +#define WGL_GREEN_BITS_ARB 0x2017 +#define WGL_GREEN_SHIFT_ARB 0x2018 +#define WGL_BLUE_BITS_ARB 0x2019 +#define WGL_BLUE_SHIFT_ARB 0x201A +#define WGL_ALPHA_BITS_ARB 0x201B +#define WGL_ALPHA_SHIFT_ARB 0x201C +#define WGL_ACCUM_BITS_ARB 0x201D +#define WGL_ACCUM_RED_BITS_ARB 0x201E +#define WGL_ACCUM_GREEN_BITS_ARB 0x201F +#define WGL_ACCUM_BLUE_BITS_ARB 0x2020 +#define WGL_ACCUM_ALPHA_BITS_ARB 0x2021 +#define WGL_DEPTH_BITS_ARB 0x2022 +#define WGL_STENCIL_BITS_ARB 0x2023 +#define WGL_AUX_BUFFERS_ARB 0x2024 +#define WGL_NO_ACCELERATION_ARB 0x2025 +#define WGL_GENERIC_ACCELERATION_ARB 0x2026 +#define WGL_FULL_ACCELERATION_ARB 0x2027 +#define WGL_SWAP_EXCHANGE_ARB 0x2028 +#define WGL_SWAP_COPY_ARB 0x2029 +#define WGL_SWAP_UNDEFINED_ARB 0x202A +#define WGL_TYPE_RGBA_ARB 0x202B +#define WGL_TYPE_COLORINDEX_ARB 0x202C +#define WGL_TRANSPARENT_RED_VALUE_ARB 0x2037 +#define WGL_TRANSPARENT_GREEN_VALUE_ARB 0x2038 +#define WGL_TRANSPARENT_BLUE_VALUE_ARB 0x2039 +#define WGL_TRANSPARENT_ALPHA_VALUE_ARB 0x203A +#define WGL_TRANSPARENT_INDEX_VALUE_ARB 0x203B + +typedef BOOL (WINAPI * PFNWGLCHOOSEPIXELFORMATARBPROC) (HDC hdc, const int* piAttribIList, const FLOAT *pfAttribFList, UINT nMaxFormats, int *piFormats, UINT *nNumFormats); +typedef BOOL (WINAPI * PFNWGLGETPIXELFORMATATTRIBFVARBPROC) (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, const int* piAttributes, FLOAT *pfValues); +typedef BOOL (WINAPI * PFNWGLGETPIXELFORMATATTRIBIVARBPROC) (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, const int* piAttributes, int *piValues); + +#define wglChoosePixelFormatARB WGLEW_GET_FUN(__wglewChoosePixelFormatARB) +#define wglGetPixelFormatAttribfvARB WGLEW_GET_FUN(__wglewGetPixelFormatAttribfvARB) +#define wglGetPixelFormatAttribivARB WGLEW_GET_FUN(__wglewGetPixelFormatAttribivARB) + +#define WGLEW_ARB_pixel_format WGLEW_GET_VAR(__WGLEW_ARB_pixel_format) + +#endif /* WGL_ARB_pixel_format */ + +/* ----------------------- WGL_ARB_pixel_format_float ---------------------- */ + +#ifndef WGL_ARB_pixel_format_float +#define WGL_ARB_pixel_format_float 1 + +#define WGL_TYPE_RGBA_FLOAT_ARB 0x21A0 + +#define WGLEW_ARB_pixel_format_float WGLEW_GET_VAR(__WGLEW_ARB_pixel_format_float) + +#endif /* WGL_ARB_pixel_format_float */ + +/* ------------------------- WGL_ARB_render_texture ------------------------ */ + +#ifndef WGL_ARB_render_texture +#define WGL_ARB_render_texture 1 + +#define WGL_BIND_TO_TEXTURE_RGB_ARB 0x2070 +#define WGL_BIND_TO_TEXTURE_RGBA_ARB 0x2071 +#define WGL_TEXTURE_FORMAT_ARB 0x2072 +#define WGL_TEXTURE_TARGET_ARB 0x2073 +#define WGL_MIPMAP_TEXTURE_ARB 0x2074 +#define WGL_TEXTURE_RGB_ARB 0x2075 +#define WGL_TEXTURE_RGBA_ARB 0x2076 +#define WGL_NO_TEXTURE_ARB 0x2077 +#define WGL_TEXTURE_CUBE_MAP_ARB 0x2078 +#define WGL_TEXTURE_1D_ARB 0x2079 +#define WGL_TEXTURE_2D_ARB 0x207A +#define WGL_MIPMAP_LEVEL_ARB 0x207B +#define WGL_CUBE_MAP_FACE_ARB 0x207C +#define WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB 0x207D +#define WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB 0x207E +#define WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB 0x207F +#define WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB 0x2080 +#define WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB 0x2081 +#define WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB 0x2082 +#define WGL_FRONT_LEFT_ARB 0x2083 +#define WGL_FRONT_RIGHT_ARB 0x2084 +#define WGL_BACK_LEFT_ARB 0x2085 +#define WGL_BACK_RIGHT_ARB 0x2086 +#define WGL_AUX0_ARB 0x2087 +#define WGL_AUX1_ARB 0x2088 +#define WGL_AUX2_ARB 0x2089 +#define WGL_AUX3_ARB 0x208A +#define WGL_AUX4_ARB 0x208B +#define WGL_AUX5_ARB 0x208C +#define WGL_AUX6_ARB 0x208D +#define WGL_AUX7_ARB 0x208E +#define WGL_AUX8_ARB 0x208F +#define WGL_AUX9_ARB 0x2090 + +typedef BOOL (WINAPI * PFNWGLBINDTEXIMAGEARBPROC) (HPBUFFERARB hPbuffer, int iBuffer); +typedef BOOL (WINAPI * PFNWGLRELEASETEXIMAGEARBPROC) (HPBUFFERARB hPbuffer, int iBuffer); +typedef BOOL (WINAPI * PFNWGLSETPBUFFERATTRIBARBPROC) (HPBUFFERARB hPbuffer, const int* piAttribList); + +#define wglBindTexImageARB WGLEW_GET_FUN(__wglewBindTexImageARB) +#define wglReleaseTexImageARB WGLEW_GET_FUN(__wglewReleaseTexImageARB) +#define wglSetPbufferAttribARB WGLEW_GET_FUN(__wglewSetPbufferAttribARB) + +#define WGLEW_ARB_render_texture WGLEW_GET_VAR(__WGLEW_ARB_render_texture) + +#endif /* WGL_ARB_render_texture */ + +/* ---------------- WGL_ARB_robustness_application_isolation --------------- */ + +#ifndef WGL_ARB_robustness_application_isolation +#define WGL_ARB_robustness_application_isolation 1 + +#define WGL_CONTEXT_RESET_ISOLATION_BIT_ARB 0x00000008 + +#define WGLEW_ARB_robustness_application_isolation WGLEW_GET_VAR(__WGLEW_ARB_robustness_application_isolation) + +#endif /* WGL_ARB_robustness_application_isolation */ + +/* ---------------- WGL_ARB_robustness_share_group_isolation --------------- */ + +#ifndef WGL_ARB_robustness_share_group_isolation +#define WGL_ARB_robustness_share_group_isolation 1 + +#define WGL_CONTEXT_RESET_ISOLATION_BIT_ARB 0x00000008 + +#define WGLEW_ARB_robustness_share_group_isolation WGLEW_GET_VAR(__WGLEW_ARB_robustness_share_group_isolation) + +#endif /* WGL_ARB_robustness_share_group_isolation */ + +/* ----------------------- WGL_ATI_pixel_format_float ---------------------- */ + +#ifndef WGL_ATI_pixel_format_float +#define WGL_ATI_pixel_format_float 1 + +#define WGL_TYPE_RGBA_FLOAT_ATI 0x21A0 +#define GL_RGBA_FLOAT_MODE_ATI 0x8820 +#define GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI 0x8835 + +#define WGLEW_ATI_pixel_format_float WGLEW_GET_VAR(__WGLEW_ATI_pixel_format_float) + +#endif /* WGL_ATI_pixel_format_float */ + +/* -------------------- WGL_ATI_render_texture_rectangle ------------------- */ + +#ifndef WGL_ATI_render_texture_rectangle +#define WGL_ATI_render_texture_rectangle 1 + +#define WGL_TEXTURE_RECTANGLE_ATI 0x21A5 + +#define WGLEW_ATI_render_texture_rectangle WGLEW_GET_VAR(__WGLEW_ATI_render_texture_rectangle) + +#endif /* WGL_ATI_render_texture_rectangle */ + +/* --------------------------- WGL_EXT_colorspace -------------------------- */ + +#ifndef WGL_EXT_colorspace +#define WGL_EXT_colorspace 1 + +#define WGL_COLORSPACE_SRGB_EXT 0x3089 +#define WGL_COLORSPACE_LINEAR_EXT 0x308A +#define WGL_COLORSPACE_EXT 0x309D + +#define WGLEW_EXT_colorspace WGLEW_GET_VAR(__WGLEW_EXT_colorspace) + +#endif /* WGL_EXT_colorspace */ + +/* ------------------- WGL_EXT_create_context_es2_profile ------------------ */ + +#ifndef WGL_EXT_create_context_es2_profile +#define WGL_EXT_create_context_es2_profile 1 + +#define WGL_CONTEXT_ES2_PROFILE_BIT_EXT 0x00000004 + +#define WGLEW_EXT_create_context_es2_profile WGLEW_GET_VAR(__WGLEW_EXT_create_context_es2_profile) + +#endif /* WGL_EXT_create_context_es2_profile */ + +/* ------------------- WGL_EXT_create_context_es_profile ------------------- */ + +#ifndef WGL_EXT_create_context_es_profile +#define WGL_EXT_create_context_es_profile 1 + +#define WGL_CONTEXT_ES_PROFILE_BIT_EXT 0x00000004 + +#define WGLEW_EXT_create_context_es_profile WGLEW_GET_VAR(__WGLEW_EXT_create_context_es_profile) + +#endif /* WGL_EXT_create_context_es_profile */ + +/* -------------------------- WGL_EXT_depth_float -------------------------- */ + +#ifndef WGL_EXT_depth_float +#define WGL_EXT_depth_float 1 + +#define WGL_DEPTH_FLOAT_EXT 0x2040 + +#define WGLEW_EXT_depth_float WGLEW_GET_VAR(__WGLEW_EXT_depth_float) + +#endif /* WGL_EXT_depth_float */ + +/* ---------------------- WGL_EXT_display_color_table ---------------------- */ + +#ifndef WGL_EXT_display_color_table +#define WGL_EXT_display_color_table 1 + +typedef GLboolean (WINAPI * PFNWGLBINDDISPLAYCOLORTABLEEXTPROC) (GLushort id); +typedef GLboolean (WINAPI * PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC) (GLushort id); +typedef void (WINAPI * PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC) (GLushort id); +typedef GLboolean (WINAPI * PFNWGLLOADDISPLAYCOLORTABLEEXTPROC) (GLushort* table, GLuint length); + +#define wglBindDisplayColorTableEXT WGLEW_GET_FUN(__wglewBindDisplayColorTableEXT) +#define wglCreateDisplayColorTableEXT WGLEW_GET_FUN(__wglewCreateDisplayColorTableEXT) +#define wglDestroyDisplayColorTableEXT WGLEW_GET_FUN(__wglewDestroyDisplayColorTableEXT) +#define wglLoadDisplayColorTableEXT WGLEW_GET_FUN(__wglewLoadDisplayColorTableEXT) + +#define WGLEW_EXT_display_color_table WGLEW_GET_VAR(__WGLEW_EXT_display_color_table) + +#endif /* WGL_EXT_display_color_table */ + +/* ----------------------- WGL_EXT_extensions_string ----------------------- */ + +#ifndef WGL_EXT_extensions_string +#define WGL_EXT_extensions_string 1 + +typedef const char* (WINAPI * PFNWGLGETEXTENSIONSSTRINGEXTPROC) (void); + +#define wglGetExtensionsStringEXT WGLEW_GET_FUN(__wglewGetExtensionsStringEXT) + +#define WGLEW_EXT_extensions_string WGLEW_GET_VAR(__WGLEW_EXT_extensions_string) + +#endif /* WGL_EXT_extensions_string */ + +/* ------------------------ WGL_EXT_framebuffer_sRGB ----------------------- */ + +#ifndef WGL_EXT_framebuffer_sRGB +#define WGL_EXT_framebuffer_sRGB 1 + +#define WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x20A9 + +#define WGLEW_EXT_framebuffer_sRGB WGLEW_GET_VAR(__WGLEW_EXT_framebuffer_sRGB) + +#endif /* WGL_EXT_framebuffer_sRGB */ + +/* ----------------------- WGL_EXT_make_current_read ----------------------- */ + +#ifndef WGL_EXT_make_current_read +#define WGL_EXT_make_current_read 1 + +#define ERROR_INVALID_PIXEL_TYPE_EXT 0x2043 + +typedef HDC (WINAPI * PFNWGLGETCURRENTREADDCEXTPROC) (VOID); +typedef BOOL (WINAPI * PFNWGLMAKECONTEXTCURRENTEXTPROC) (HDC hDrawDC, HDC hReadDC, HGLRC hglrc); + +#define wglGetCurrentReadDCEXT WGLEW_GET_FUN(__wglewGetCurrentReadDCEXT) +#define wglMakeContextCurrentEXT WGLEW_GET_FUN(__wglewMakeContextCurrentEXT) + +#define WGLEW_EXT_make_current_read WGLEW_GET_VAR(__WGLEW_EXT_make_current_read) + +#endif /* WGL_EXT_make_current_read */ + +/* -------------------------- WGL_EXT_multisample -------------------------- */ + +#ifndef WGL_EXT_multisample +#define WGL_EXT_multisample 1 + +#define WGL_SAMPLE_BUFFERS_EXT 0x2041 +#define WGL_SAMPLES_EXT 0x2042 + +#define WGLEW_EXT_multisample WGLEW_GET_VAR(__WGLEW_EXT_multisample) + +#endif /* WGL_EXT_multisample */ + +/* ---------------------------- WGL_EXT_pbuffer ---------------------------- */ + +#ifndef WGL_EXT_pbuffer +#define WGL_EXT_pbuffer 1 + +#define WGL_DRAW_TO_PBUFFER_EXT 0x202D +#define WGL_MAX_PBUFFER_PIXELS_EXT 0x202E +#define WGL_MAX_PBUFFER_WIDTH_EXT 0x202F +#define WGL_MAX_PBUFFER_HEIGHT_EXT 0x2030 +#define WGL_OPTIMAL_PBUFFER_WIDTH_EXT 0x2031 +#define WGL_OPTIMAL_PBUFFER_HEIGHT_EXT 0x2032 +#define WGL_PBUFFER_LARGEST_EXT 0x2033 +#define WGL_PBUFFER_WIDTH_EXT 0x2034 +#define WGL_PBUFFER_HEIGHT_EXT 0x2035 + +DECLARE_HANDLE(HPBUFFEREXT); + +typedef HPBUFFEREXT (WINAPI * PFNWGLCREATEPBUFFEREXTPROC) (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int* piAttribList); +typedef BOOL (WINAPI * PFNWGLDESTROYPBUFFEREXTPROC) (HPBUFFEREXT hPbuffer); +typedef HDC (WINAPI * PFNWGLGETPBUFFERDCEXTPROC) (HPBUFFEREXT hPbuffer); +typedef BOOL (WINAPI * PFNWGLQUERYPBUFFEREXTPROC) (HPBUFFEREXT hPbuffer, int iAttribute, int* piValue); +typedef int (WINAPI * PFNWGLRELEASEPBUFFERDCEXTPROC) (HPBUFFEREXT hPbuffer, HDC hDC); + +#define wglCreatePbufferEXT WGLEW_GET_FUN(__wglewCreatePbufferEXT) +#define wglDestroyPbufferEXT WGLEW_GET_FUN(__wglewDestroyPbufferEXT) +#define wglGetPbufferDCEXT WGLEW_GET_FUN(__wglewGetPbufferDCEXT) +#define wglQueryPbufferEXT WGLEW_GET_FUN(__wglewQueryPbufferEXT) +#define wglReleasePbufferDCEXT WGLEW_GET_FUN(__wglewReleasePbufferDCEXT) + +#define WGLEW_EXT_pbuffer WGLEW_GET_VAR(__WGLEW_EXT_pbuffer) + +#endif /* WGL_EXT_pbuffer */ + +/* -------------------------- WGL_EXT_pixel_format ------------------------- */ + +#ifndef WGL_EXT_pixel_format +#define WGL_EXT_pixel_format 1 + +#define WGL_NUMBER_PIXEL_FORMATS_EXT 0x2000 +#define WGL_DRAW_TO_WINDOW_EXT 0x2001 +#define WGL_DRAW_TO_BITMAP_EXT 0x2002 +#define WGL_ACCELERATION_EXT 0x2003 +#define WGL_NEED_PALETTE_EXT 0x2004 +#define WGL_NEED_SYSTEM_PALETTE_EXT 0x2005 +#define WGL_SWAP_LAYER_BUFFERS_EXT 0x2006 +#define WGL_SWAP_METHOD_EXT 0x2007 +#define WGL_NUMBER_OVERLAYS_EXT 0x2008 +#define WGL_NUMBER_UNDERLAYS_EXT 0x2009 +#define WGL_TRANSPARENT_EXT 0x200A +#define WGL_TRANSPARENT_VALUE_EXT 0x200B +#define WGL_SHARE_DEPTH_EXT 0x200C +#define WGL_SHARE_STENCIL_EXT 0x200D +#define WGL_SHARE_ACCUM_EXT 0x200E +#define WGL_SUPPORT_GDI_EXT 0x200F +#define WGL_SUPPORT_OPENGL_EXT 0x2010 +#define WGL_DOUBLE_BUFFER_EXT 0x2011 +#define WGL_STEREO_EXT 0x2012 +#define WGL_PIXEL_TYPE_EXT 0x2013 +#define WGL_COLOR_BITS_EXT 0x2014 +#define WGL_RED_BITS_EXT 0x2015 +#define WGL_RED_SHIFT_EXT 0x2016 +#define WGL_GREEN_BITS_EXT 0x2017 +#define WGL_GREEN_SHIFT_EXT 0x2018 +#define WGL_BLUE_BITS_EXT 0x2019 +#define WGL_BLUE_SHIFT_EXT 0x201A +#define WGL_ALPHA_BITS_EXT 0x201B +#define WGL_ALPHA_SHIFT_EXT 0x201C +#define WGL_ACCUM_BITS_EXT 0x201D +#define WGL_ACCUM_RED_BITS_EXT 0x201E +#define WGL_ACCUM_GREEN_BITS_EXT 0x201F +#define WGL_ACCUM_BLUE_BITS_EXT 0x2020 +#define WGL_ACCUM_ALPHA_BITS_EXT 0x2021 +#define WGL_DEPTH_BITS_EXT 0x2022 +#define WGL_STENCIL_BITS_EXT 0x2023 +#define WGL_AUX_BUFFERS_EXT 0x2024 +#define WGL_NO_ACCELERATION_EXT 0x2025 +#define WGL_GENERIC_ACCELERATION_EXT 0x2026 +#define WGL_FULL_ACCELERATION_EXT 0x2027 +#define WGL_SWAP_EXCHANGE_EXT 0x2028 +#define WGL_SWAP_COPY_EXT 0x2029 +#define WGL_SWAP_UNDEFINED_EXT 0x202A +#define WGL_TYPE_RGBA_EXT 0x202B +#define WGL_TYPE_COLORINDEX_EXT 0x202C + +typedef BOOL (WINAPI * PFNWGLCHOOSEPIXELFORMATEXTPROC) (HDC hdc, const int* piAttribIList, const FLOAT *pfAttribFList, UINT nMaxFormats, int *piFormats, UINT *nNumFormats); +typedef BOOL (WINAPI * PFNWGLGETPIXELFORMATATTRIBFVEXTPROC) (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, int* piAttributes, FLOAT *pfValues); +typedef BOOL (WINAPI * PFNWGLGETPIXELFORMATATTRIBIVEXTPROC) (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, int* piAttributes, int *piValues); + +#define wglChoosePixelFormatEXT WGLEW_GET_FUN(__wglewChoosePixelFormatEXT) +#define wglGetPixelFormatAttribfvEXT WGLEW_GET_FUN(__wglewGetPixelFormatAttribfvEXT) +#define wglGetPixelFormatAttribivEXT WGLEW_GET_FUN(__wglewGetPixelFormatAttribivEXT) + +#define WGLEW_EXT_pixel_format WGLEW_GET_VAR(__WGLEW_EXT_pixel_format) + +#endif /* WGL_EXT_pixel_format */ + +/* ------------------- WGL_EXT_pixel_format_packed_float ------------------- */ + +#ifndef WGL_EXT_pixel_format_packed_float +#define WGL_EXT_pixel_format_packed_float 1 + +#define WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT 0x20A8 + +#define WGLEW_EXT_pixel_format_packed_float WGLEW_GET_VAR(__WGLEW_EXT_pixel_format_packed_float) + +#endif /* WGL_EXT_pixel_format_packed_float */ + +/* -------------------------- WGL_EXT_swap_control ------------------------- */ + +#ifndef WGL_EXT_swap_control +#define WGL_EXT_swap_control 1 + +typedef int (WINAPI * PFNWGLGETSWAPINTERVALEXTPROC) (void); +typedef BOOL (WINAPI * PFNWGLSWAPINTERVALEXTPROC) (int interval); + +#define wglGetSwapIntervalEXT WGLEW_GET_FUN(__wglewGetSwapIntervalEXT) +#define wglSwapIntervalEXT WGLEW_GET_FUN(__wglewSwapIntervalEXT) + +#define WGLEW_EXT_swap_control WGLEW_GET_VAR(__WGLEW_EXT_swap_control) + +#endif /* WGL_EXT_swap_control */ + +/* ----------------------- WGL_EXT_swap_control_tear ----------------------- */ + +#ifndef WGL_EXT_swap_control_tear +#define WGL_EXT_swap_control_tear 1 + +#define WGLEW_EXT_swap_control_tear WGLEW_GET_VAR(__WGLEW_EXT_swap_control_tear) + +#endif /* WGL_EXT_swap_control_tear */ + +/* --------------------- WGL_I3D_digital_video_control --------------------- */ + +#ifndef WGL_I3D_digital_video_control +#define WGL_I3D_digital_video_control 1 + +#define WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D 0x2050 +#define WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D 0x2051 +#define WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D 0x2052 +#define WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D 0x2053 + +typedef BOOL (WINAPI * PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC) (HDC hDC, int iAttribute, int* piValue); +typedef BOOL (WINAPI * PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC) (HDC hDC, int iAttribute, const int* piValue); + +#define wglGetDigitalVideoParametersI3D WGLEW_GET_FUN(__wglewGetDigitalVideoParametersI3D) +#define wglSetDigitalVideoParametersI3D WGLEW_GET_FUN(__wglewSetDigitalVideoParametersI3D) + +#define WGLEW_I3D_digital_video_control WGLEW_GET_VAR(__WGLEW_I3D_digital_video_control) + +#endif /* WGL_I3D_digital_video_control */ + +/* ----------------------------- WGL_I3D_gamma ----------------------------- */ + +#ifndef WGL_I3D_gamma +#define WGL_I3D_gamma 1 + +#define WGL_GAMMA_TABLE_SIZE_I3D 0x204E +#define WGL_GAMMA_EXCLUDE_DESKTOP_I3D 0x204F + +typedef BOOL (WINAPI * PFNWGLGETGAMMATABLEI3DPROC) (HDC hDC, int iEntries, USHORT* puRed, USHORT *puGreen, USHORT *puBlue); +typedef BOOL (WINAPI * PFNWGLGETGAMMATABLEPARAMETERSI3DPROC) (HDC hDC, int iAttribute, int* piValue); +typedef BOOL (WINAPI * PFNWGLSETGAMMATABLEI3DPROC) (HDC hDC, int iEntries, const USHORT* puRed, const USHORT *puGreen, const USHORT *puBlue); +typedef BOOL (WINAPI * PFNWGLSETGAMMATABLEPARAMETERSI3DPROC) (HDC hDC, int iAttribute, const int* piValue); + +#define wglGetGammaTableI3D WGLEW_GET_FUN(__wglewGetGammaTableI3D) +#define wglGetGammaTableParametersI3D WGLEW_GET_FUN(__wglewGetGammaTableParametersI3D) +#define wglSetGammaTableI3D WGLEW_GET_FUN(__wglewSetGammaTableI3D) +#define wglSetGammaTableParametersI3D WGLEW_GET_FUN(__wglewSetGammaTableParametersI3D) + +#define WGLEW_I3D_gamma WGLEW_GET_VAR(__WGLEW_I3D_gamma) + +#endif /* WGL_I3D_gamma */ + +/* ---------------------------- WGL_I3D_genlock ---------------------------- */ + +#ifndef WGL_I3D_genlock +#define WGL_I3D_genlock 1 + +#define WGL_GENLOCK_SOURCE_MULTIVIEW_I3D 0x2044 +#define WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D 0x2045 +#define WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D 0x2046 +#define WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D 0x2047 +#define WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D 0x2048 +#define WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D 0x2049 +#define WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D 0x204A +#define WGL_GENLOCK_SOURCE_EDGE_RISING_I3D 0x204B +#define WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D 0x204C + +typedef BOOL (WINAPI * PFNWGLDISABLEGENLOCKI3DPROC) (HDC hDC); +typedef BOOL (WINAPI * PFNWGLENABLEGENLOCKI3DPROC) (HDC hDC); +typedef BOOL (WINAPI * PFNWGLGENLOCKSAMPLERATEI3DPROC) (HDC hDC, UINT uRate); +typedef BOOL (WINAPI * PFNWGLGENLOCKSOURCEDELAYI3DPROC) (HDC hDC, UINT uDelay); +typedef BOOL (WINAPI * PFNWGLGENLOCKSOURCEEDGEI3DPROC) (HDC hDC, UINT uEdge); +typedef BOOL (WINAPI * PFNWGLGENLOCKSOURCEI3DPROC) (HDC hDC, UINT uSource); +typedef BOOL (WINAPI * PFNWGLGETGENLOCKSAMPLERATEI3DPROC) (HDC hDC, UINT* uRate); +typedef BOOL (WINAPI * PFNWGLGETGENLOCKSOURCEDELAYI3DPROC) (HDC hDC, UINT* uDelay); +typedef BOOL (WINAPI * PFNWGLGETGENLOCKSOURCEEDGEI3DPROC) (HDC hDC, UINT* uEdge); +typedef BOOL (WINAPI * PFNWGLGETGENLOCKSOURCEI3DPROC) (HDC hDC, UINT* uSource); +typedef BOOL (WINAPI * PFNWGLISENABLEDGENLOCKI3DPROC) (HDC hDC, BOOL* pFlag); +typedef BOOL (WINAPI * PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC) (HDC hDC, UINT* uMaxLineDelay, UINT *uMaxPixelDelay); + +#define wglDisableGenlockI3D WGLEW_GET_FUN(__wglewDisableGenlockI3D) +#define wglEnableGenlockI3D WGLEW_GET_FUN(__wglewEnableGenlockI3D) +#define wglGenlockSampleRateI3D WGLEW_GET_FUN(__wglewGenlockSampleRateI3D) +#define wglGenlockSourceDelayI3D WGLEW_GET_FUN(__wglewGenlockSourceDelayI3D) +#define wglGenlockSourceEdgeI3D WGLEW_GET_FUN(__wglewGenlockSourceEdgeI3D) +#define wglGenlockSourceI3D WGLEW_GET_FUN(__wglewGenlockSourceI3D) +#define wglGetGenlockSampleRateI3D WGLEW_GET_FUN(__wglewGetGenlockSampleRateI3D) +#define wglGetGenlockSourceDelayI3D WGLEW_GET_FUN(__wglewGetGenlockSourceDelayI3D) +#define wglGetGenlockSourceEdgeI3D WGLEW_GET_FUN(__wglewGetGenlockSourceEdgeI3D) +#define wglGetGenlockSourceI3D WGLEW_GET_FUN(__wglewGetGenlockSourceI3D) +#define wglIsEnabledGenlockI3D WGLEW_GET_FUN(__wglewIsEnabledGenlockI3D) +#define wglQueryGenlockMaxSourceDelayI3D WGLEW_GET_FUN(__wglewQueryGenlockMaxSourceDelayI3D) + +#define WGLEW_I3D_genlock WGLEW_GET_VAR(__WGLEW_I3D_genlock) + +#endif /* WGL_I3D_genlock */ + +/* -------------------------- WGL_I3D_image_buffer ------------------------- */ + +#ifndef WGL_I3D_image_buffer +#define WGL_I3D_image_buffer 1 + +#define WGL_IMAGE_BUFFER_MIN_ACCESS_I3D 0x00000001 +#define WGL_IMAGE_BUFFER_LOCK_I3D 0x00000002 + +typedef BOOL (WINAPI * PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC) (HDC hdc, HANDLE* pEvent, LPVOID *pAddress, DWORD *pSize, UINT count); +typedef LPVOID (WINAPI * PFNWGLCREATEIMAGEBUFFERI3DPROC) (HDC hDC, DWORD dwSize, UINT uFlags); +typedef BOOL (WINAPI * PFNWGLDESTROYIMAGEBUFFERI3DPROC) (HDC hDC, LPVOID pAddress); +typedef BOOL (WINAPI * PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC) (HDC hdc, LPVOID* pAddress, UINT count); + +#define wglAssociateImageBufferEventsI3D WGLEW_GET_FUN(__wglewAssociateImageBufferEventsI3D) +#define wglCreateImageBufferI3D WGLEW_GET_FUN(__wglewCreateImageBufferI3D) +#define wglDestroyImageBufferI3D WGLEW_GET_FUN(__wglewDestroyImageBufferI3D) +#define wglReleaseImageBufferEventsI3D WGLEW_GET_FUN(__wglewReleaseImageBufferEventsI3D) + +#define WGLEW_I3D_image_buffer WGLEW_GET_VAR(__WGLEW_I3D_image_buffer) + +#endif /* WGL_I3D_image_buffer */ + +/* ------------------------ WGL_I3D_swap_frame_lock ------------------------ */ + +#ifndef WGL_I3D_swap_frame_lock +#define WGL_I3D_swap_frame_lock 1 + +typedef BOOL (WINAPI * PFNWGLDISABLEFRAMELOCKI3DPROC) (VOID); +typedef BOOL (WINAPI * PFNWGLENABLEFRAMELOCKI3DPROC) (VOID); +typedef BOOL (WINAPI * PFNWGLISENABLEDFRAMELOCKI3DPROC) (BOOL* pFlag); +typedef BOOL (WINAPI * PFNWGLQUERYFRAMELOCKMASTERI3DPROC) (BOOL* pFlag); + +#define wglDisableFrameLockI3D WGLEW_GET_FUN(__wglewDisableFrameLockI3D) +#define wglEnableFrameLockI3D WGLEW_GET_FUN(__wglewEnableFrameLockI3D) +#define wglIsEnabledFrameLockI3D WGLEW_GET_FUN(__wglewIsEnabledFrameLockI3D) +#define wglQueryFrameLockMasterI3D WGLEW_GET_FUN(__wglewQueryFrameLockMasterI3D) + +#define WGLEW_I3D_swap_frame_lock WGLEW_GET_VAR(__WGLEW_I3D_swap_frame_lock) + +#endif /* WGL_I3D_swap_frame_lock */ + +/* ------------------------ WGL_I3D_swap_frame_usage ----------------------- */ + +#ifndef WGL_I3D_swap_frame_usage +#define WGL_I3D_swap_frame_usage 1 + +typedef BOOL (WINAPI * PFNWGLBEGINFRAMETRACKINGI3DPROC) (void); +typedef BOOL (WINAPI * PFNWGLENDFRAMETRACKINGI3DPROC) (void); +typedef BOOL (WINAPI * PFNWGLGETFRAMEUSAGEI3DPROC) (float* pUsage); +typedef BOOL (WINAPI * PFNWGLQUERYFRAMETRACKINGI3DPROC) (DWORD* pFrameCount, DWORD *pMissedFrames, float *pLastMissedUsage); + +#define wglBeginFrameTrackingI3D WGLEW_GET_FUN(__wglewBeginFrameTrackingI3D) +#define wglEndFrameTrackingI3D WGLEW_GET_FUN(__wglewEndFrameTrackingI3D) +#define wglGetFrameUsageI3D WGLEW_GET_FUN(__wglewGetFrameUsageI3D) +#define wglQueryFrameTrackingI3D WGLEW_GET_FUN(__wglewQueryFrameTrackingI3D) + +#define WGLEW_I3D_swap_frame_usage WGLEW_GET_VAR(__WGLEW_I3D_swap_frame_usage) + +#endif /* WGL_I3D_swap_frame_usage */ + +/* --------------------------- WGL_NV_DX_interop --------------------------- */ + +#ifndef WGL_NV_DX_interop +#define WGL_NV_DX_interop 1 + +#define WGL_ACCESS_READ_ONLY_NV 0x0000 +#define WGL_ACCESS_READ_WRITE_NV 0x0001 +#define WGL_ACCESS_WRITE_DISCARD_NV 0x0002 + +typedef BOOL (WINAPI * PFNWGLDXCLOSEDEVICENVPROC) (HANDLE hDevice); +typedef BOOL (WINAPI * PFNWGLDXLOCKOBJECTSNVPROC) (HANDLE hDevice, GLint count, HANDLE* hObjects); +typedef BOOL (WINAPI * PFNWGLDXOBJECTACCESSNVPROC) (HANDLE hObject, GLenum access); +typedef HANDLE (WINAPI * PFNWGLDXOPENDEVICENVPROC) (void* dxDevice); +typedef HANDLE (WINAPI * PFNWGLDXREGISTEROBJECTNVPROC) (HANDLE hDevice, void* dxObject, GLuint name, GLenum type, GLenum access); +typedef BOOL (WINAPI * PFNWGLDXSETRESOURCESHAREHANDLENVPROC) (void* dxObject, HANDLE shareHandle); +typedef BOOL (WINAPI * PFNWGLDXUNLOCKOBJECTSNVPROC) (HANDLE hDevice, GLint count, HANDLE* hObjects); +typedef BOOL (WINAPI * PFNWGLDXUNREGISTEROBJECTNVPROC) (HANDLE hDevice, HANDLE hObject); + +#define wglDXCloseDeviceNV WGLEW_GET_FUN(__wglewDXCloseDeviceNV) +#define wglDXLockObjectsNV WGLEW_GET_FUN(__wglewDXLockObjectsNV) +#define wglDXObjectAccessNV WGLEW_GET_FUN(__wglewDXObjectAccessNV) +#define wglDXOpenDeviceNV WGLEW_GET_FUN(__wglewDXOpenDeviceNV) +#define wglDXRegisterObjectNV WGLEW_GET_FUN(__wglewDXRegisterObjectNV) +#define wglDXSetResourceShareHandleNV WGLEW_GET_FUN(__wglewDXSetResourceShareHandleNV) +#define wglDXUnlockObjectsNV WGLEW_GET_FUN(__wglewDXUnlockObjectsNV) +#define wglDXUnregisterObjectNV WGLEW_GET_FUN(__wglewDXUnregisterObjectNV) + +#define WGLEW_NV_DX_interop WGLEW_GET_VAR(__WGLEW_NV_DX_interop) + +#endif /* WGL_NV_DX_interop */ + +/* --------------------------- WGL_NV_DX_interop2 -------------------------- */ + +#ifndef WGL_NV_DX_interop2 +#define WGL_NV_DX_interop2 1 + +#define WGLEW_NV_DX_interop2 WGLEW_GET_VAR(__WGLEW_NV_DX_interop2) + +#endif /* WGL_NV_DX_interop2 */ + +/* --------------------------- WGL_NV_copy_image --------------------------- */ + +#ifndef WGL_NV_copy_image +#define WGL_NV_copy_image 1 + +typedef BOOL (WINAPI * PFNWGLCOPYIMAGESUBDATANVPROC) (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); + +#define wglCopyImageSubDataNV WGLEW_GET_FUN(__wglewCopyImageSubDataNV) + +#define WGLEW_NV_copy_image WGLEW_GET_VAR(__WGLEW_NV_copy_image) + +#endif /* WGL_NV_copy_image */ + +/* ------------------------ WGL_NV_delay_before_swap ----------------------- */ + +#ifndef WGL_NV_delay_before_swap +#define WGL_NV_delay_before_swap 1 + +typedef BOOL (WINAPI * PFNWGLDELAYBEFORESWAPNVPROC) (HDC hDC, GLfloat seconds); + +#define wglDelayBeforeSwapNV WGLEW_GET_FUN(__wglewDelayBeforeSwapNV) + +#define WGLEW_NV_delay_before_swap WGLEW_GET_VAR(__WGLEW_NV_delay_before_swap) + +#endif /* WGL_NV_delay_before_swap */ + +/* -------------------------- WGL_NV_float_buffer -------------------------- */ + +#ifndef WGL_NV_float_buffer +#define WGL_NV_float_buffer 1 + +#define WGL_FLOAT_COMPONENTS_NV 0x20B0 +#define WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV 0x20B1 +#define WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV 0x20B2 +#define WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV 0x20B3 +#define WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV 0x20B4 +#define WGL_TEXTURE_FLOAT_R_NV 0x20B5 +#define WGL_TEXTURE_FLOAT_RG_NV 0x20B6 +#define WGL_TEXTURE_FLOAT_RGB_NV 0x20B7 +#define WGL_TEXTURE_FLOAT_RGBA_NV 0x20B8 + +#define WGLEW_NV_float_buffer WGLEW_GET_VAR(__WGLEW_NV_float_buffer) + +#endif /* WGL_NV_float_buffer */ + +/* -------------------------- WGL_NV_gpu_affinity -------------------------- */ + +#ifndef WGL_NV_gpu_affinity +#define WGL_NV_gpu_affinity 1 + +#define WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV 0x20D0 +#define WGL_ERROR_MISSING_AFFINITY_MASK_NV 0x20D1 + +DECLARE_HANDLE(HGPUNV); +typedef struct _GPU_DEVICE { + DWORD cb; + CHAR DeviceName[32]; + CHAR DeviceString[128]; + DWORD Flags; + RECT rcVirtualScreen; +} GPU_DEVICE, *PGPU_DEVICE; + +typedef HDC (WINAPI * PFNWGLCREATEAFFINITYDCNVPROC) (const HGPUNV *phGpuList); +typedef BOOL (WINAPI * PFNWGLDELETEDCNVPROC) (HDC hdc); +typedef BOOL (WINAPI * PFNWGLENUMGPUDEVICESNVPROC) (HGPUNV hGpu, UINT iDeviceIndex, PGPU_DEVICE lpGpuDevice); +typedef BOOL (WINAPI * PFNWGLENUMGPUSFROMAFFINITYDCNVPROC) (HDC hAffinityDC, UINT iGpuIndex, HGPUNV *hGpu); +typedef BOOL (WINAPI * PFNWGLENUMGPUSNVPROC) (UINT iGpuIndex, HGPUNV *phGpu); + +#define wglCreateAffinityDCNV WGLEW_GET_FUN(__wglewCreateAffinityDCNV) +#define wglDeleteDCNV WGLEW_GET_FUN(__wglewDeleteDCNV) +#define wglEnumGpuDevicesNV WGLEW_GET_FUN(__wglewEnumGpuDevicesNV) +#define wglEnumGpusFromAffinityDCNV WGLEW_GET_FUN(__wglewEnumGpusFromAffinityDCNV) +#define wglEnumGpusNV WGLEW_GET_FUN(__wglewEnumGpusNV) + +#define WGLEW_NV_gpu_affinity WGLEW_GET_VAR(__WGLEW_NV_gpu_affinity) + +#endif /* WGL_NV_gpu_affinity */ + +/* ---------------------- WGL_NV_multisample_coverage ---------------------- */ + +#ifndef WGL_NV_multisample_coverage +#define WGL_NV_multisample_coverage 1 + +#define WGL_COVERAGE_SAMPLES_NV 0x2042 +#define WGL_COLOR_SAMPLES_NV 0x20B9 + +#define WGLEW_NV_multisample_coverage WGLEW_GET_VAR(__WGLEW_NV_multisample_coverage) + +#endif /* WGL_NV_multisample_coverage */ + +/* -------------------------- WGL_NV_present_video ------------------------- */ + +#ifndef WGL_NV_present_video +#define WGL_NV_present_video 1 + +#define WGL_NUM_VIDEO_SLOTS_NV 0x20F0 + +DECLARE_HANDLE(HVIDEOOUTPUTDEVICENV); + +typedef BOOL (WINAPI * PFNWGLBINDVIDEODEVICENVPROC) (HDC hDc, unsigned int uVideoSlot, HVIDEOOUTPUTDEVICENV hVideoDevice, const int* piAttribList); +typedef int (WINAPI * PFNWGLENUMERATEVIDEODEVICESNVPROC) (HDC hDc, HVIDEOOUTPUTDEVICENV* phDeviceList); +typedef BOOL (WINAPI * PFNWGLQUERYCURRENTCONTEXTNVPROC) (int iAttribute, int* piValue); + +#define wglBindVideoDeviceNV WGLEW_GET_FUN(__wglewBindVideoDeviceNV) +#define wglEnumerateVideoDevicesNV WGLEW_GET_FUN(__wglewEnumerateVideoDevicesNV) +#define wglQueryCurrentContextNV WGLEW_GET_FUN(__wglewQueryCurrentContextNV) + +#define WGLEW_NV_present_video WGLEW_GET_VAR(__WGLEW_NV_present_video) + +#endif /* WGL_NV_present_video */ + +/* ---------------------- WGL_NV_render_depth_texture ---------------------- */ + +#ifndef WGL_NV_render_depth_texture +#define WGL_NV_render_depth_texture 1 + +#define WGL_NO_TEXTURE_ARB 0x2077 +#define WGL_BIND_TO_TEXTURE_DEPTH_NV 0x20A3 +#define WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV 0x20A4 +#define WGL_DEPTH_TEXTURE_FORMAT_NV 0x20A5 +#define WGL_TEXTURE_DEPTH_COMPONENT_NV 0x20A6 +#define WGL_DEPTH_COMPONENT_NV 0x20A7 + +#define WGLEW_NV_render_depth_texture WGLEW_GET_VAR(__WGLEW_NV_render_depth_texture) + +#endif /* WGL_NV_render_depth_texture */ + +/* -------------------- WGL_NV_render_texture_rectangle -------------------- */ + +#ifndef WGL_NV_render_texture_rectangle +#define WGL_NV_render_texture_rectangle 1 + +#define WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV 0x20A0 +#define WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV 0x20A1 +#define WGL_TEXTURE_RECTANGLE_NV 0x20A2 + +#define WGLEW_NV_render_texture_rectangle WGLEW_GET_VAR(__WGLEW_NV_render_texture_rectangle) + +#endif /* WGL_NV_render_texture_rectangle */ + +/* --------------------------- WGL_NV_swap_group --------------------------- */ + +#ifndef WGL_NV_swap_group +#define WGL_NV_swap_group 1 + +typedef BOOL (WINAPI * PFNWGLBINDSWAPBARRIERNVPROC) (GLuint group, GLuint barrier); +typedef BOOL (WINAPI * PFNWGLJOINSWAPGROUPNVPROC) (HDC hDC, GLuint group); +typedef BOOL (WINAPI * PFNWGLQUERYFRAMECOUNTNVPROC) (HDC hDC, GLuint* count); +typedef BOOL (WINAPI * PFNWGLQUERYMAXSWAPGROUPSNVPROC) (HDC hDC, GLuint* maxGroups, GLuint *maxBarriers); +typedef BOOL (WINAPI * PFNWGLQUERYSWAPGROUPNVPROC) (HDC hDC, GLuint* group, GLuint *barrier); +typedef BOOL (WINAPI * PFNWGLRESETFRAMECOUNTNVPROC) (HDC hDC); + +#define wglBindSwapBarrierNV WGLEW_GET_FUN(__wglewBindSwapBarrierNV) +#define wglJoinSwapGroupNV WGLEW_GET_FUN(__wglewJoinSwapGroupNV) +#define wglQueryFrameCountNV WGLEW_GET_FUN(__wglewQueryFrameCountNV) +#define wglQueryMaxSwapGroupsNV WGLEW_GET_FUN(__wglewQueryMaxSwapGroupsNV) +#define wglQuerySwapGroupNV WGLEW_GET_FUN(__wglewQuerySwapGroupNV) +#define wglResetFrameCountNV WGLEW_GET_FUN(__wglewResetFrameCountNV) + +#define WGLEW_NV_swap_group WGLEW_GET_VAR(__WGLEW_NV_swap_group) + +#endif /* WGL_NV_swap_group */ + +/* ----------------------- WGL_NV_vertex_array_range ----------------------- */ + +#ifndef WGL_NV_vertex_array_range +#define WGL_NV_vertex_array_range 1 + +typedef void * (WINAPI * PFNWGLALLOCATEMEMORYNVPROC) (GLsizei size, GLfloat readFrequency, GLfloat writeFrequency, GLfloat priority); +typedef void (WINAPI * PFNWGLFREEMEMORYNVPROC) (void *pointer); + +#define wglAllocateMemoryNV WGLEW_GET_FUN(__wglewAllocateMemoryNV) +#define wglFreeMemoryNV WGLEW_GET_FUN(__wglewFreeMemoryNV) + +#define WGLEW_NV_vertex_array_range WGLEW_GET_VAR(__WGLEW_NV_vertex_array_range) + +#endif /* WGL_NV_vertex_array_range */ + +/* -------------------------- WGL_NV_video_capture ------------------------- */ + +#ifndef WGL_NV_video_capture +#define WGL_NV_video_capture 1 + +#define WGL_UNIQUE_ID_NV 0x20CE +#define WGL_NUM_VIDEO_CAPTURE_SLOTS_NV 0x20CF + +DECLARE_HANDLE(HVIDEOINPUTDEVICENV); + +typedef BOOL (WINAPI * PFNWGLBINDVIDEOCAPTUREDEVICENVPROC) (UINT uVideoSlot, HVIDEOINPUTDEVICENV hDevice); +typedef UINT (WINAPI * PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC) (HDC hDc, HVIDEOINPUTDEVICENV* phDeviceList); +typedef BOOL (WINAPI * PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC) (HDC hDc, HVIDEOINPUTDEVICENV hDevice); +typedef BOOL (WINAPI * PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC) (HDC hDc, HVIDEOINPUTDEVICENV hDevice, int iAttribute, int* piValue); +typedef BOOL (WINAPI * PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC) (HDC hDc, HVIDEOINPUTDEVICENV hDevice); + +#define wglBindVideoCaptureDeviceNV WGLEW_GET_FUN(__wglewBindVideoCaptureDeviceNV) +#define wglEnumerateVideoCaptureDevicesNV WGLEW_GET_FUN(__wglewEnumerateVideoCaptureDevicesNV) +#define wglLockVideoCaptureDeviceNV WGLEW_GET_FUN(__wglewLockVideoCaptureDeviceNV) +#define wglQueryVideoCaptureDeviceNV WGLEW_GET_FUN(__wglewQueryVideoCaptureDeviceNV) +#define wglReleaseVideoCaptureDeviceNV WGLEW_GET_FUN(__wglewReleaseVideoCaptureDeviceNV) + +#define WGLEW_NV_video_capture WGLEW_GET_VAR(__WGLEW_NV_video_capture) + +#endif /* WGL_NV_video_capture */ + +/* -------------------------- WGL_NV_video_output -------------------------- */ + +#ifndef WGL_NV_video_output +#define WGL_NV_video_output 1 + +#define WGL_BIND_TO_VIDEO_RGB_NV 0x20C0 +#define WGL_BIND_TO_VIDEO_RGBA_NV 0x20C1 +#define WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV 0x20C2 +#define WGL_VIDEO_OUT_COLOR_NV 0x20C3 +#define WGL_VIDEO_OUT_ALPHA_NV 0x20C4 +#define WGL_VIDEO_OUT_DEPTH_NV 0x20C5 +#define WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV 0x20C6 +#define WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV 0x20C7 +#define WGL_VIDEO_OUT_FRAME 0x20C8 +#define WGL_VIDEO_OUT_FIELD_1 0x20C9 +#define WGL_VIDEO_OUT_FIELD_2 0x20CA +#define WGL_VIDEO_OUT_STACKED_FIELDS_1_2 0x20CB +#define WGL_VIDEO_OUT_STACKED_FIELDS_2_1 0x20CC + +DECLARE_HANDLE(HPVIDEODEV); + +typedef BOOL (WINAPI * PFNWGLBINDVIDEOIMAGENVPROC) (HPVIDEODEV hVideoDevice, HPBUFFERARB hPbuffer, int iVideoBuffer); +typedef BOOL (WINAPI * PFNWGLGETVIDEODEVICENVPROC) (HDC hDC, int numDevices, HPVIDEODEV* hVideoDevice); +typedef BOOL (WINAPI * PFNWGLGETVIDEOINFONVPROC) (HPVIDEODEV hpVideoDevice, unsigned long* pulCounterOutputPbuffer, unsigned long *pulCounterOutputVideo); +typedef BOOL (WINAPI * PFNWGLRELEASEVIDEODEVICENVPROC) (HPVIDEODEV hVideoDevice); +typedef BOOL (WINAPI * PFNWGLRELEASEVIDEOIMAGENVPROC) (HPBUFFERARB hPbuffer, int iVideoBuffer); +typedef BOOL (WINAPI * PFNWGLSENDPBUFFERTOVIDEONVPROC) (HPBUFFERARB hPbuffer, int iBufferType, unsigned long* pulCounterPbuffer, BOOL bBlock); + +#define wglBindVideoImageNV WGLEW_GET_FUN(__wglewBindVideoImageNV) +#define wglGetVideoDeviceNV WGLEW_GET_FUN(__wglewGetVideoDeviceNV) +#define wglGetVideoInfoNV WGLEW_GET_FUN(__wglewGetVideoInfoNV) +#define wglReleaseVideoDeviceNV WGLEW_GET_FUN(__wglewReleaseVideoDeviceNV) +#define wglReleaseVideoImageNV WGLEW_GET_FUN(__wglewReleaseVideoImageNV) +#define wglSendPbufferToVideoNV WGLEW_GET_FUN(__wglewSendPbufferToVideoNV) + +#define WGLEW_NV_video_output WGLEW_GET_VAR(__WGLEW_NV_video_output) + +#endif /* WGL_NV_video_output */ + +/* -------------------------- WGL_OML_sync_control ------------------------- */ + +#ifndef WGL_OML_sync_control +#define WGL_OML_sync_control 1 + +typedef BOOL (WINAPI * PFNWGLGETMSCRATEOMLPROC) (HDC hdc, INT32* numerator, INT32 *denominator); +typedef BOOL (WINAPI * PFNWGLGETSYNCVALUESOMLPROC) (HDC hdc, INT64* ust, INT64 *msc, INT64 *sbc); +typedef INT64 (WINAPI * PFNWGLSWAPBUFFERSMSCOMLPROC) (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder); +typedef INT64 (WINAPI * PFNWGLSWAPLAYERBUFFERSMSCOMLPROC) (HDC hdc, INT fuPlanes, INT64 target_msc, INT64 divisor, INT64 remainder); +typedef BOOL (WINAPI * PFNWGLWAITFORMSCOMLPROC) (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder, INT64* ust, INT64 *msc, INT64 *sbc); +typedef BOOL (WINAPI * PFNWGLWAITFORSBCOMLPROC) (HDC hdc, INT64 target_sbc, INT64* ust, INT64 *msc, INT64 *sbc); + +#define wglGetMscRateOML WGLEW_GET_FUN(__wglewGetMscRateOML) +#define wglGetSyncValuesOML WGLEW_GET_FUN(__wglewGetSyncValuesOML) +#define wglSwapBuffersMscOML WGLEW_GET_FUN(__wglewSwapBuffersMscOML) +#define wglSwapLayerBuffersMscOML WGLEW_GET_FUN(__wglewSwapLayerBuffersMscOML) +#define wglWaitForMscOML WGLEW_GET_FUN(__wglewWaitForMscOML) +#define wglWaitForSbcOML WGLEW_GET_FUN(__wglewWaitForSbcOML) + +#define WGLEW_OML_sync_control WGLEW_GET_VAR(__WGLEW_OML_sync_control) + +#endif /* WGL_OML_sync_control */ + +/* ------------------------------------------------------------------------- */ + +#define WGLEW_FUN_EXPORT GLEW_FUN_EXPORT +#define WGLEW_VAR_EXPORT GLEW_VAR_EXPORT + +WGLEW_FUN_EXPORT PFNWGLSETSTEREOEMITTERSTATE3DLPROC __wglewSetStereoEmitterState3DL; + +WGLEW_FUN_EXPORT PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC __wglewBlitContextFramebufferAMD; +WGLEW_FUN_EXPORT PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC __wglewCreateAssociatedContextAMD; +WGLEW_FUN_EXPORT PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC __wglewCreateAssociatedContextAttribsAMD; +WGLEW_FUN_EXPORT PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC __wglewDeleteAssociatedContextAMD; +WGLEW_FUN_EXPORT PFNWGLGETCONTEXTGPUIDAMDPROC __wglewGetContextGPUIDAMD; +WGLEW_FUN_EXPORT PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC __wglewGetCurrentAssociatedContextAMD; +WGLEW_FUN_EXPORT PFNWGLGETGPUIDSAMDPROC __wglewGetGPUIDsAMD; +WGLEW_FUN_EXPORT PFNWGLGETGPUINFOAMDPROC __wglewGetGPUInfoAMD; +WGLEW_FUN_EXPORT PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC __wglewMakeAssociatedContextCurrentAMD; + +WGLEW_FUN_EXPORT PFNWGLCREATEBUFFERREGIONARBPROC __wglewCreateBufferRegionARB; +WGLEW_FUN_EXPORT PFNWGLDELETEBUFFERREGIONARBPROC __wglewDeleteBufferRegionARB; +WGLEW_FUN_EXPORT PFNWGLRESTOREBUFFERREGIONARBPROC __wglewRestoreBufferRegionARB; +WGLEW_FUN_EXPORT PFNWGLSAVEBUFFERREGIONARBPROC __wglewSaveBufferRegionARB; + +WGLEW_FUN_EXPORT PFNWGLCREATECONTEXTATTRIBSARBPROC __wglewCreateContextAttribsARB; + +WGLEW_FUN_EXPORT PFNWGLGETEXTENSIONSSTRINGARBPROC __wglewGetExtensionsStringARB; + +WGLEW_FUN_EXPORT PFNWGLGETCURRENTREADDCARBPROC __wglewGetCurrentReadDCARB; +WGLEW_FUN_EXPORT PFNWGLMAKECONTEXTCURRENTARBPROC __wglewMakeContextCurrentARB; + +WGLEW_FUN_EXPORT PFNWGLCREATEPBUFFERARBPROC __wglewCreatePbufferARB; +WGLEW_FUN_EXPORT PFNWGLDESTROYPBUFFERARBPROC __wglewDestroyPbufferARB; +WGLEW_FUN_EXPORT PFNWGLGETPBUFFERDCARBPROC __wglewGetPbufferDCARB; +WGLEW_FUN_EXPORT PFNWGLQUERYPBUFFERARBPROC __wglewQueryPbufferARB; +WGLEW_FUN_EXPORT PFNWGLRELEASEPBUFFERDCARBPROC __wglewReleasePbufferDCARB; + +WGLEW_FUN_EXPORT PFNWGLCHOOSEPIXELFORMATARBPROC __wglewChoosePixelFormatARB; +WGLEW_FUN_EXPORT PFNWGLGETPIXELFORMATATTRIBFVARBPROC __wglewGetPixelFormatAttribfvARB; +WGLEW_FUN_EXPORT PFNWGLGETPIXELFORMATATTRIBIVARBPROC __wglewGetPixelFormatAttribivARB; + +WGLEW_FUN_EXPORT PFNWGLBINDTEXIMAGEARBPROC __wglewBindTexImageARB; +WGLEW_FUN_EXPORT PFNWGLRELEASETEXIMAGEARBPROC __wglewReleaseTexImageARB; +WGLEW_FUN_EXPORT PFNWGLSETPBUFFERATTRIBARBPROC __wglewSetPbufferAttribARB; + +WGLEW_FUN_EXPORT PFNWGLBINDDISPLAYCOLORTABLEEXTPROC __wglewBindDisplayColorTableEXT; +WGLEW_FUN_EXPORT PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC __wglewCreateDisplayColorTableEXT; +WGLEW_FUN_EXPORT PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC __wglewDestroyDisplayColorTableEXT; +WGLEW_FUN_EXPORT PFNWGLLOADDISPLAYCOLORTABLEEXTPROC __wglewLoadDisplayColorTableEXT; + +WGLEW_FUN_EXPORT PFNWGLGETEXTENSIONSSTRINGEXTPROC __wglewGetExtensionsStringEXT; + +WGLEW_FUN_EXPORT PFNWGLGETCURRENTREADDCEXTPROC __wglewGetCurrentReadDCEXT; +WGLEW_FUN_EXPORT PFNWGLMAKECONTEXTCURRENTEXTPROC __wglewMakeContextCurrentEXT; + +WGLEW_FUN_EXPORT PFNWGLCREATEPBUFFEREXTPROC __wglewCreatePbufferEXT; +WGLEW_FUN_EXPORT PFNWGLDESTROYPBUFFEREXTPROC __wglewDestroyPbufferEXT; +WGLEW_FUN_EXPORT PFNWGLGETPBUFFERDCEXTPROC __wglewGetPbufferDCEXT; +WGLEW_FUN_EXPORT PFNWGLQUERYPBUFFEREXTPROC __wglewQueryPbufferEXT; +WGLEW_FUN_EXPORT PFNWGLRELEASEPBUFFERDCEXTPROC __wglewReleasePbufferDCEXT; + +WGLEW_FUN_EXPORT PFNWGLCHOOSEPIXELFORMATEXTPROC __wglewChoosePixelFormatEXT; +WGLEW_FUN_EXPORT PFNWGLGETPIXELFORMATATTRIBFVEXTPROC __wglewGetPixelFormatAttribfvEXT; +WGLEW_FUN_EXPORT PFNWGLGETPIXELFORMATATTRIBIVEXTPROC __wglewGetPixelFormatAttribivEXT; + +WGLEW_FUN_EXPORT PFNWGLGETSWAPINTERVALEXTPROC __wglewGetSwapIntervalEXT; +WGLEW_FUN_EXPORT PFNWGLSWAPINTERVALEXTPROC __wglewSwapIntervalEXT; + +WGLEW_FUN_EXPORT PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC __wglewGetDigitalVideoParametersI3D; +WGLEW_FUN_EXPORT PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC __wglewSetDigitalVideoParametersI3D; + +WGLEW_FUN_EXPORT PFNWGLGETGAMMATABLEI3DPROC __wglewGetGammaTableI3D; +WGLEW_FUN_EXPORT PFNWGLGETGAMMATABLEPARAMETERSI3DPROC __wglewGetGammaTableParametersI3D; +WGLEW_FUN_EXPORT PFNWGLSETGAMMATABLEI3DPROC __wglewSetGammaTableI3D; +WGLEW_FUN_EXPORT PFNWGLSETGAMMATABLEPARAMETERSI3DPROC __wglewSetGammaTableParametersI3D; + +WGLEW_FUN_EXPORT PFNWGLDISABLEGENLOCKI3DPROC __wglewDisableGenlockI3D; +WGLEW_FUN_EXPORT PFNWGLENABLEGENLOCKI3DPROC __wglewEnableGenlockI3D; +WGLEW_FUN_EXPORT PFNWGLGENLOCKSAMPLERATEI3DPROC __wglewGenlockSampleRateI3D; +WGLEW_FUN_EXPORT PFNWGLGENLOCKSOURCEDELAYI3DPROC __wglewGenlockSourceDelayI3D; +WGLEW_FUN_EXPORT PFNWGLGENLOCKSOURCEEDGEI3DPROC __wglewGenlockSourceEdgeI3D; +WGLEW_FUN_EXPORT PFNWGLGENLOCKSOURCEI3DPROC __wglewGenlockSourceI3D; +WGLEW_FUN_EXPORT PFNWGLGETGENLOCKSAMPLERATEI3DPROC __wglewGetGenlockSampleRateI3D; +WGLEW_FUN_EXPORT PFNWGLGETGENLOCKSOURCEDELAYI3DPROC __wglewGetGenlockSourceDelayI3D; +WGLEW_FUN_EXPORT PFNWGLGETGENLOCKSOURCEEDGEI3DPROC __wglewGetGenlockSourceEdgeI3D; +WGLEW_FUN_EXPORT PFNWGLGETGENLOCKSOURCEI3DPROC __wglewGetGenlockSourceI3D; +WGLEW_FUN_EXPORT PFNWGLISENABLEDGENLOCKI3DPROC __wglewIsEnabledGenlockI3D; +WGLEW_FUN_EXPORT PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC __wglewQueryGenlockMaxSourceDelayI3D; + +WGLEW_FUN_EXPORT PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC __wglewAssociateImageBufferEventsI3D; +WGLEW_FUN_EXPORT PFNWGLCREATEIMAGEBUFFERI3DPROC __wglewCreateImageBufferI3D; +WGLEW_FUN_EXPORT PFNWGLDESTROYIMAGEBUFFERI3DPROC __wglewDestroyImageBufferI3D; +WGLEW_FUN_EXPORT PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC __wglewReleaseImageBufferEventsI3D; + +WGLEW_FUN_EXPORT PFNWGLDISABLEFRAMELOCKI3DPROC __wglewDisableFrameLockI3D; +WGLEW_FUN_EXPORT PFNWGLENABLEFRAMELOCKI3DPROC __wglewEnableFrameLockI3D; +WGLEW_FUN_EXPORT PFNWGLISENABLEDFRAMELOCKI3DPROC __wglewIsEnabledFrameLockI3D; +WGLEW_FUN_EXPORT PFNWGLQUERYFRAMELOCKMASTERI3DPROC __wglewQueryFrameLockMasterI3D; + +WGLEW_FUN_EXPORT PFNWGLBEGINFRAMETRACKINGI3DPROC __wglewBeginFrameTrackingI3D; +WGLEW_FUN_EXPORT PFNWGLENDFRAMETRACKINGI3DPROC __wglewEndFrameTrackingI3D; +WGLEW_FUN_EXPORT PFNWGLGETFRAMEUSAGEI3DPROC __wglewGetFrameUsageI3D; +WGLEW_FUN_EXPORT PFNWGLQUERYFRAMETRACKINGI3DPROC __wglewQueryFrameTrackingI3D; + +WGLEW_FUN_EXPORT PFNWGLDXCLOSEDEVICENVPROC __wglewDXCloseDeviceNV; +WGLEW_FUN_EXPORT PFNWGLDXLOCKOBJECTSNVPROC __wglewDXLockObjectsNV; +WGLEW_FUN_EXPORT PFNWGLDXOBJECTACCESSNVPROC __wglewDXObjectAccessNV; +WGLEW_FUN_EXPORT PFNWGLDXOPENDEVICENVPROC __wglewDXOpenDeviceNV; +WGLEW_FUN_EXPORT PFNWGLDXREGISTEROBJECTNVPROC __wglewDXRegisterObjectNV; +WGLEW_FUN_EXPORT PFNWGLDXSETRESOURCESHAREHANDLENVPROC __wglewDXSetResourceShareHandleNV; +WGLEW_FUN_EXPORT PFNWGLDXUNLOCKOBJECTSNVPROC __wglewDXUnlockObjectsNV; +WGLEW_FUN_EXPORT PFNWGLDXUNREGISTEROBJECTNVPROC __wglewDXUnregisterObjectNV; + +WGLEW_FUN_EXPORT PFNWGLCOPYIMAGESUBDATANVPROC __wglewCopyImageSubDataNV; + +WGLEW_FUN_EXPORT PFNWGLDELAYBEFORESWAPNVPROC __wglewDelayBeforeSwapNV; + +WGLEW_FUN_EXPORT PFNWGLCREATEAFFINITYDCNVPROC __wglewCreateAffinityDCNV; +WGLEW_FUN_EXPORT PFNWGLDELETEDCNVPROC __wglewDeleteDCNV; +WGLEW_FUN_EXPORT PFNWGLENUMGPUDEVICESNVPROC __wglewEnumGpuDevicesNV; +WGLEW_FUN_EXPORT PFNWGLENUMGPUSFROMAFFINITYDCNVPROC __wglewEnumGpusFromAffinityDCNV; +WGLEW_FUN_EXPORT PFNWGLENUMGPUSNVPROC __wglewEnumGpusNV; + +WGLEW_FUN_EXPORT PFNWGLBINDVIDEODEVICENVPROC __wglewBindVideoDeviceNV; +WGLEW_FUN_EXPORT PFNWGLENUMERATEVIDEODEVICESNVPROC __wglewEnumerateVideoDevicesNV; +WGLEW_FUN_EXPORT PFNWGLQUERYCURRENTCONTEXTNVPROC __wglewQueryCurrentContextNV; + +WGLEW_FUN_EXPORT PFNWGLBINDSWAPBARRIERNVPROC __wglewBindSwapBarrierNV; +WGLEW_FUN_EXPORT PFNWGLJOINSWAPGROUPNVPROC __wglewJoinSwapGroupNV; +WGLEW_FUN_EXPORT PFNWGLQUERYFRAMECOUNTNVPROC __wglewQueryFrameCountNV; +WGLEW_FUN_EXPORT PFNWGLQUERYMAXSWAPGROUPSNVPROC __wglewQueryMaxSwapGroupsNV; +WGLEW_FUN_EXPORT PFNWGLQUERYSWAPGROUPNVPROC __wglewQuerySwapGroupNV; +WGLEW_FUN_EXPORT PFNWGLRESETFRAMECOUNTNVPROC __wglewResetFrameCountNV; + +WGLEW_FUN_EXPORT PFNWGLALLOCATEMEMORYNVPROC __wglewAllocateMemoryNV; +WGLEW_FUN_EXPORT PFNWGLFREEMEMORYNVPROC __wglewFreeMemoryNV; + +WGLEW_FUN_EXPORT PFNWGLBINDVIDEOCAPTUREDEVICENVPROC __wglewBindVideoCaptureDeviceNV; +WGLEW_FUN_EXPORT PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC __wglewEnumerateVideoCaptureDevicesNV; +WGLEW_FUN_EXPORT PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC __wglewLockVideoCaptureDeviceNV; +WGLEW_FUN_EXPORT PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC __wglewQueryVideoCaptureDeviceNV; +WGLEW_FUN_EXPORT PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC __wglewReleaseVideoCaptureDeviceNV; + +WGLEW_FUN_EXPORT PFNWGLBINDVIDEOIMAGENVPROC __wglewBindVideoImageNV; +WGLEW_FUN_EXPORT PFNWGLGETVIDEODEVICENVPROC __wglewGetVideoDeviceNV; +WGLEW_FUN_EXPORT PFNWGLGETVIDEOINFONVPROC __wglewGetVideoInfoNV; +WGLEW_FUN_EXPORT PFNWGLRELEASEVIDEODEVICENVPROC __wglewReleaseVideoDeviceNV; +WGLEW_FUN_EXPORT PFNWGLRELEASEVIDEOIMAGENVPROC __wglewReleaseVideoImageNV; +WGLEW_FUN_EXPORT PFNWGLSENDPBUFFERTOVIDEONVPROC __wglewSendPbufferToVideoNV; + +WGLEW_FUN_EXPORT PFNWGLGETMSCRATEOMLPROC __wglewGetMscRateOML; +WGLEW_FUN_EXPORT PFNWGLGETSYNCVALUESOMLPROC __wglewGetSyncValuesOML; +WGLEW_FUN_EXPORT PFNWGLSWAPBUFFERSMSCOMLPROC __wglewSwapBuffersMscOML; +WGLEW_FUN_EXPORT PFNWGLSWAPLAYERBUFFERSMSCOMLPROC __wglewSwapLayerBuffersMscOML; +WGLEW_FUN_EXPORT PFNWGLWAITFORMSCOMLPROC __wglewWaitForMscOML; +WGLEW_FUN_EXPORT PFNWGLWAITFORSBCOMLPROC __wglewWaitForSbcOML; +WGLEW_VAR_EXPORT GLboolean __WGLEW_3DFX_multisample; +WGLEW_VAR_EXPORT GLboolean __WGLEW_3DL_stereo_control; +WGLEW_VAR_EXPORT GLboolean __WGLEW_AMD_gpu_association; +WGLEW_VAR_EXPORT GLboolean __WGLEW_ARB_buffer_region; +WGLEW_VAR_EXPORT GLboolean __WGLEW_ARB_context_flush_control; +WGLEW_VAR_EXPORT GLboolean __WGLEW_ARB_create_context; +WGLEW_VAR_EXPORT GLboolean __WGLEW_ARB_create_context_no_error; +WGLEW_VAR_EXPORT GLboolean __WGLEW_ARB_create_context_profile; +WGLEW_VAR_EXPORT GLboolean __WGLEW_ARB_create_context_robustness; +WGLEW_VAR_EXPORT GLboolean __WGLEW_ARB_extensions_string; +WGLEW_VAR_EXPORT GLboolean __WGLEW_ARB_framebuffer_sRGB; +WGLEW_VAR_EXPORT GLboolean __WGLEW_ARB_make_current_read; +WGLEW_VAR_EXPORT GLboolean __WGLEW_ARB_multisample; +WGLEW_VAR_EXPORT GLboolean __WGLEW_ARB_pbuffer; +WGLEW_VAR_EXPORT GLboolean __WGLEW_ARB_pixel_format; +WGLEW_VAR_EXPORT GLboolean __WGLEW_ARB_pixel_format_float; +WGLEW_VAR_EXPORT GLboolean __WGLEW_ARB_render_texture; +WGLEW_VAR_EXPORT GLboolean __WGLEW_ARB_robustness_application_isolation; +WGLEW_VAR_EXPORT GLboolean __WGLEW_ARB_robustness_share_group_isolation; +WGLEW_VAR_EXPORT GLboolean __WGLEW_ATI_pixel_format_float; +WGLEW_VAR_EXPORT GLboolean __WGLEW_ATI_render_texture_rectangle; +WGLEW_VAR_EXPORT GLboolean __WGLEW_EXT_colorspace; +WGLEW_VAR_EXPORT GLboolean __WGLEW_EXT_create_context_es2_profile; +WGLEW_VAR_EXPORT GLboolean __WGLEW_EXT_create_context_es_profile; +WGLEW_VAR_EXPORT GLboolean __WGLEW_EXT_depth_float; +WGLEW_VAR_EXPORT GLboolean __WGLEW_EXT_display_color_table; +WGLEW_VAR_EXPORT GLboolean __WGLEW_EXT_extensions_string; +WGLEW_VAR_EXPORT GLboolean __WGLEW_EXT_framebuffer_sRGB; +WGLEW_VAR_EXPORT GLboolean __WGLEW_EXT_make_current_read; +WGLEW_VAR_EXPORT GLboolean __WGLEW_EXT_multisample; +WGLEW_VAR_EXPORT GLboolean __WGLEW_EXT_pbuffer; +WGLEW_VAR_EXPORT GLboolean __WGLEW_EXT_pixel_format; +WGLEW_VAR_EXPORT GLboolean __WGLEW_EXT_pixel_format_packed_float; +WGLEW_VAR_EXPORT GLboolean __WGLEW_EXT_swap_control; +WGLEW_VAR_EXPORT GLboolean __WGLEW_EXT_swap_control_tear; +WGLEW_VAR_EXPORT GLboolean __WGLEW_I3D_digital_video_control; +WGLEW_VAR_EXPORT GLboolean __WGLEW_I3D_gamma; +WGLEW_VAR_EXPORT GLboolean __WGLEW_I3D_genlock; +WGLEW_VAR_EXPORT GLboolean __WGLEW_I3D_image_buffer; +WGLEW_VAR_EXPORT GLboolean __WGLEW_I3D_swap_frame_lock; +WGLEW_VAR_EXPORT GLboolean __WGLEW_I3D_swap_frame_usage; +WGLEW_VAR_EXPORT GLboolean __WGLEW_NV_DX_interop; +WGLEW_VAR_EXPORT GLboolean __WGLEW_NV_DX_interop2; +WGLEW_VAR_EXPORT GLboolean __WGLEW_NV_copy_image; +WGLEW_VAR_EXPORT GLboolean __WGLEW_NV_delay_before_swap; +WGLEW_VAR_EXPORT GLboolean __WGLEW_NV_float_buffer; +WGLEW_VAR_EXPORT GLboolean __WGLEW_NV_gpu_affinity; +WGLEW_VAR_EXPORT GLboolean __WGLEW_NV_multisample_coverage; +WGLEW_VAR_EXPORT GLboolean __WGLEW_NV_present_video; +WGLEW_VAR_EXPORT GLboolean __WGLEW_NV_render_depth_texture; +WGLEW_VAR_EXPORT GLboolean __WGLEW_NV_render_texture_rectangle; +WGLEW_VAR_EXPORT GLboolean __WGLEW_NV_swap_group; +WGLEW_VAR_EXPORT GLboolean __WGLEW_NV_vertex_array_range; +WGLEW_VAR_EXPORT GLboolean __WGLEW_NV_video_capture; +WGLEW_VAR_EXPORT GLboolean __WGLEW_NV_video_output; +WGLEW_VAR_EXPORT GLboolean __WGLEW_OML_sync_control; +/* ------------------------------------------------------------------------- */ + +GLEWAPI GLenum GLEWAPIENTRY wglewInit (); +GLEWAPI GLboolean GLEWAPIENTRY wglewIsSupported (const char *name); + +#ifndef WGLEW_GET_VAR +#define WGLEW_GET_VAR(x) (*(const GLboolean*)&x) +#endif + +#ifndef WGLEW_GET_FUN +#define WGLEW_GET_FUN(x) x +#endif + +GLEWAPI GLboolean GLEWAPIENTRY wglewGetExtension (const char *name); + +#ifdef __cplusplus +} +#endif + +#undef GLEWAPI + +#endif /* __wglew_h__ */ diff --git a/Source/lib/x64/glew32.lib b/Source/lib/x64/glew32.lib new file mode 100644 index 0000000..3d780d9 Binary files /dev/null and b/Source/lib/x64/glew32.lib differ diff --git a/Source/lib/x64/glew32s.lib b/Source/lib/x64/glew32s.lib new file mode 100644 index 0000000..584c462 Binary files /dev/null and b/Source/lib/x64/glew32s.lib differ diff --git a/Source/lib/x64/libpng16.lib b/Source/lib/x64/libpng16.lib new file mode 100644 index 0000000..0caa8df Binary files /dev/null and b/Source/lib/x64/libpng16.lib differ diff --git a/Source/lib/x64/zlib.lib b/Source/lib/x64/zlib.lib new file mode 100644 index 0000000..63232a8 Binary files /dev/null and b/Source/lib/x64/zlib.lib differ diff --git a/Source/lib/x86/glew32.lib b/Source/lib/x86/glew32.lib new file mode 100644 index 0000000..b7f027d Binary files /dev/null and b/Source/lib/x86/glew32.lib differ diff --git a/Source/lib/x86/glew32s.lib b/Source/lib/x86/glew32s.lib new file mode 100644 index 0000000..2e46b7b Binary files /dev/null and b/Source/lib/x86/glew32s.lib differ diff --git a/Source/lib/x86/libpng16.lib b/Source/lib/x86/libpng16.lib new file mode 100644 index 0000000..eded183 Binary files /dev/null and b/Source/lib/x86/libpng16.lib differ diff --git a/Source/lib/x86/zlib.lib b/Source/lib/x86/zlib.lib new file mode 100644 index 0000000..ee136d6 Binary files /dev/null and b/Source/lib/x86/zlib.lib differ diff --git a/UnityCaptureSample/Assets/CaptureTexture.cs b/UnityCaptureSample/Assets/CaptureTexture.cs index a01931b..2c88058 100644 --- a/UnityCaptureSample/Assets/CaptureTexture.cs +++ b/UnityCaptureSample/Assets/CaptureTexture.cs @@ -51,8 +51,8 @@ void Update() activeTex.Apply(); // Update the capture texture - UnityCapture.ECaptureSendResult result = captureInterface.SendTexture(activeTex); + /*UnityCapture.ECaptureSendResult result = captureInterface.SendTexture(activeTex); if (result != UnityCapture.ECaptureSendResult.SUCCESS) - Debug.Log("SendTexture failed: " + result); + Debug.Log("SendTexture failed: " + result);*/ } } diff --git a/UnityCaptureSample/Assets/Materials.meta b/UnityCaptureSample/Assets/Materials.meta new file mode 100644 index 0000000..2ad2de2 --- /dev/null +++ b/UnityCaptureSample/Assets/Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b25333790ce88c34cb34596f0451ce6b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/Materials/blueMat.mat b/UnityCaptureSample/Assets/Materials/blueMat.mat new file mode 100644 index 0000000..45bdaba --- /dev/null +++ b/UnityCaptureSample/Assets/Materials/blueMat.mat @@ -0,0 +1,77 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: blueMat + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 0, g: 0.24652743, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} diff --git a/UnityCaptureSample/Assets/Materials/blueMat.mat.meta b/UnityCaptureSample/Assets/Materials/blueMat.mat.meta new file mode 100644 index 0000000..7708885 --- /dev/null +++ b/UnityCaptureSample/Assets/Materials/blueMat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5795563a49ef5ed4cb92d05ac379f497 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/Materials/greenMat.mat b/UnityCaptureSample/Assets/Materials/greenMat.mat new file mode 100644 index 0000000..3a4493a --- /dev/null +++ b/UnityCaptureSample/Assets/Materials/greenMat.mat @@ -0,0 +1,77 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: greenMat + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 0, g: 1, b: 0.05268264, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} diff --git a/UnityCaptureSample/Assets/Materials/greenMat.mat.meta b/UnityCaptureSample/Assets/Materials/greenMat.mat.meta new file mode 100644 index 0000000..aee8d0f --- /dev/null +++ b/UnityCaptureSample/Assets/Materials/greenMat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cf4b4d3ddd20b7e4e8a1fc119168cfef +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/Materials/redMat.mat b/UnityCaptureSample/Assets/Materials/redMat.mat new file mode 100644 index 0000000..cd3020c --- /dev/null +++ b/UnityCaptureSample/Assets/Materials/redMat.mat @@ -0,0 +1,77 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: redMat + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 0, b: 0, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} diff --git a/UnityCaptureSample/Assets/Materials/redMat.mat.meta b/UnityCaptureSample/Assets/Materials/redMat.mat.meta new file mode 100644 index 0000000..04275fd --- /dev/null +++ b/UnityCaptureSample/Assets/Materials/redMat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 554ffb2811efb274689dd6ae41ebdb06 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/Materials/yellowMat.mat b/UnityCaptureSample/Assets/Materials/yellowMat.mat new file mode 100644 index 0000000..d0620af --- /dev/null +++ b/UnityCaptureSample/Assets/Materials/yellowMat.mat @@ -0,0 +1,77 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: yellowMat + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 0.87771446, b: 0, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} diff --git a/UnityCaptureSample/Assets/Materials/yellowMat.mat.meta b/UnityCaptureSample/Assets/Materials/yellowMat.mat.meta new file mode 100644 index 0000000..7654bf8 --- /dev/null +++ b/UnityCaptureSample/Assets/Materials/yellowMat.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a5a8ad8c782e3d944834397ad80051fe +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing.meta b/UnityCaptureSample/Assets/PostProcessing.meta new file mode 100644 index 0000000..b6527a8 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 499357fbb6274ed4e8aa5652f7e1c202 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor.meta b/UnityCaptureSample/Assets/PostProcessing/Editor.meta new file mode 100644 index 0000000..0b9e415 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 10af18f17ff5ecf47bc4dbd1551b36d2 +folderAsset: yes +timeCreated: 1488201031 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Attributes.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Attributes.meta new file mode 100644 index 0000000..b57a722 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Attributes.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: f5422948b83b1d34c86e710f0d9fea30 +folderAsset: yes +timeCreated: 1492690959 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Attributes/DecoratorAttribute.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Attributes/DecoratorAttribute.cs new file mode 100644 index 0000000..bf46ff5 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Attributes/DecoratorAttribute.cs @@ -0,0 +1,27 @@ +using System; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// Tells a class which inspector attribute it's a decorator + /// for. + /// + /// + [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] + public sealed class DecoratorAttribute : Attribute + { + /// + /// The attribute type that this decorator can inspect. + /// + public readonly Type attributeType; + + /// + /// Creates a new attribute. + /// + /// The type that this decorator can inspect + public DecoratorAttribute(Type attributeType) + { + this.attributeType = attributeType; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Attributes/DecoratorAttribute.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Attributes/DecoratorAttribute.cs.meta new file mode 100644 index 0000000..5fb571d --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Attributes/DecoratorAttribute.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9753335d6f48da542be1c720aa07bbf5 +timeCreated: 1493109769 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Attributes/PostProcessEditorAttribute.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Attributes/PostProcessEditorAttribute.cs new file mode 100644 index 0000000..86d8048 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Attributes/PostProcessEditorAttribute.cs @@ -0,0 +1,28 @@ +using System; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// Tells a class which run-time type it's an editor + /// for. When you make a custom editor for an effect, you need put this attribute on the editor + /// class. + /// + /// + [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] + public sealed class PostProcessEditorAttribute : Attribute + { + /// + /// The type that this editor can edit. + /// + public readonly Type settingsType; + + /// + /// Creates a new attribute. + /// + /// The type that this editor can edit + public PostProcessEditorAttribute(Type settingsType) + { + this.settingsType = settingsType; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Attributes/PostProcessEditorAttribute.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Attributes/PostProcessEditorAttribute.cs.meta new file mode 100644 index 0000000..c28444c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Attributes/PostProcessEditorAttribute.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 70ea2ab329ffbac43a0a02daa61dbe6b +timeCreated: 1492690987 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/BaseEditor.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/BaseEditor.cs new file mode 100644 index 0000000..bb08754 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/BaseEditor.cs @@ -0,0 +1,59 @@ +using System; +using System.Linq.Expressions; +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// Small wrapper on top of to ease the access of the underlying component + /// and its serialized fields. + /// + /// The type of the target component to make an editor for + /// + /// + /// public class MyMonoBehaviour : MonoBehaviour + /// { + /// public float myProperty = 1.0f; + /// } + /// + /// [CustomEditor(typeof(MyMonoBehaviour))] + /// public sealed class MyMonoBehaviourEditor : BaseEditor<MyMonoBehaviour> + /// { + /// SerializedProperty m_MyProperty; + /// + /// void OnEnable() + /// { + /// m_MyProperty = FindProperty(x => x.myProperty); + /// } + /// + /// public override void OnInspectorGUI() + /// { + /// EditorGUILayout.PropertyField(m_MyProperty); + /// } + /// } + /// + /// + public class BaseEditor : Editor + where T : MonoBehaviour + { + /// + /// The target component. + /// + protected T m_Target + { + get { return (T)target; } + } + + /// + /// + /// + /// + /// + /// + protected SerializedProperty FindProperty(Expression> expr) + { + return serializedObject.FindProperty(RuntimeUtilities.GetFieldPath(expr)); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/BaseEditor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/BaseEditor.cs.meta new file mode 100644 index 0000000..f865b53 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/BaseEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 69a4fc27499557744827c787d71fdf08 +timeCreated: 1488275908 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators.meta new file mode 100644 index 0000000..872280e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 21a375b704549664589881dfc892e7e7 +folderAsset: yes +timeCreated: 1493051174 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators/AttributeDecorator.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators/AttributeDecorator.cs new file mode 100644 index 0000000..98ba5f6 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators/AttributeDecorator.cs @@ -0,0 +1,35 @@ +using System; +using UnityEngine; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// The base abstract class for all attribute decorators. + /// + public abstract class AttributeDecorator + { + /// + /// Override this and return false if you want to customize the override checkbox + /// position, else it'll automatically draw it and put the property content in a + /// horizontal scope. + /// + /// true if the override checkbox should be automatically put next to the + /// property, false if it uses a custom position + public virtual bool IsAutoProperty() + { + return true; + } + + /// + /// The rendering method called for the custom GUI. + /// + /// The property to draw the UI for + /// The override checkbox property + /// The title and tooltip for the property + /// A reference to the property attribute set on the original field + /// + /// true if the property UI got rendered successfully, false to + /// fallback on the default editor UI for this property + public abstract bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute); + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators/AttributeDecorator.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators/AttributeDecorator.cs.meta new file mode 100644 index 0000000..ffd22a3 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators/AttributeDecorator.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6b2666165a17bbd4e851c1382898651e +timeCreated: 1493051184 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators/Decorators.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators/Decorators.cs new file mode 100644 index 0000000..e5fcce9 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators/Decorators.cs @@ -0,0 +1,143 @@ +using System; +using UnityEngine; + +namespace UnityEditor.Rendering.PostProcessing +{ + [Decorator(typeof(RangeAttribute))] + internal sealed class RangeDecorator : AttributeDecorator + { + public override bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute) + { + var attr = (RangeAttribute)attribute; + + if (property.propertyType == SerializedPropertyType.Float) + { + property.floatValue = EditorGUILayout.Slider(title, property.floatValue, attr.min, attr.max); + return true; + } + + if (property.propertyType == SerializedPropertyType.Integer) + { + property.intValue = EditorGUILayout.IntSlider(title, property.intValue, (int)attr.min, (int)attr.max); + return true; + } + + return false; + } + } + + [Decorator(typeof(UnityEngine.Rendering.PostProcessing.MinAttribute))] + internal sealed class MinDecorator : AttributeDecorator + { + public override bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute) + { + var attr = (UnityEngine.Rendering.PostProcessing.MinAttribute)attribute; + + if (property.propertyType == SerializedPropertyType.Float) + { + float v = EditorGUILayout.FloatField(title, property.floatValue); + property.floatValue = Mathf.Max(v, attr.min); + return true; + } + + if (property.propertyType == SerializedPropertyType.Integer) + { + int v = EditorGUILayout.IntField(title, property.intValue); + property.intValue = Mathf.Max(v, (int)attr.min); + return true; + } + + return false; + } + } + + [Decorator(typeof(UnityEngine.Rendering.PostProcessing.MaxAttribute))] + internal sealed class MaxDecorator : AttributeDecorator + { + public override bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute) + { + var attr = (UnityEngine.Rendering.PostProcessing.MaxAttribute)attribute; + + if (property.propertyType == SerializedPropertyType.Float) + { + float v = EditorGUILayout.FloatField(title, property.floatValue); + property.floatValue = Mathf.Min(v, attr.max); + return true; + } + + if (property.propertyType == SerializedPropertyType.Integer) + { + int v = EditorGUILayout.IntField(title, property.intValue); + property.intValue = Mathf.Min(v, (int)attr.max); + return true; + } + + return false; + } + } + + [Decorator(typeof(UnityEngine.Rendering.PostProcessing.MinMaxAttribute))] + internal sealed class MinMaxDecorator : AttributeDecorator + { + public override bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute) + { + var attr = (UnityEngine.Rendering.PostProcessing.MinMaxAttribute)attribute; + + if (property.propertyType == SerializedPropertyType.Float) + { + float v = EditorGUILayout.FloatField(title, property.floatValue); + property.floatValue = Mathf.Clamp(v, attr.min, attr.max); + return true; + } + + if (property.propertyType == SerializedPropertyType.Integer) + { + int v = EditorGUILayout.IntField(title, property.intValue); + property.intValue = Mathf.Clamp(v, (int)attr.min, (int)attr.max); + return true; + } + + if (property.propertyType == SerializedPropertyType.Vector2) + { + var v = property.vector2Value; + EditorGUILayout.MinMaxSlider(title, ref v.x, ref v.y, attr.min, attr.max); + property.vector2Value = v; + return true; + } + + return false; + } + } + + [Decorator(typeof(ColorUsageAttribute))] + internal sealed class ColorUsageDecorator : AttributeDecorator + { + public override bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute) + { + var attr = (ColorUsageAttribute)attribute; + + if (property.propertyType != SerializedPropertyType.Color) + return false; + +#if UNITY_2018_1_OR_NEWER + property.colorValue = EditorGUILayout.ColorField(title, property.colorValue, true, attr.showAlpha, attr.hdr); +#else + ColorPickerHDRConfig hdrConfig = null; + + if (attr.hdr) + { + hdrConfig = new ColorPickerHDRConfig( + attr.minBrightness, + attr.maxBrightness, + attr.minExposureValue, + attr.maxExposureValue + ); + } + + property.colorValue = EditorGUILayout.ColorField(title, property.colorValue, true, attr.showAlpha, attr.hdr, hdrConfig); +#endif + + return true; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators/Decorators.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators/Decorators.cs.meta new file mode 100644 index 0000000..773f5fd --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators/Decorators.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d6ae47710b8593e41960a944bb29e6c3 +timeCreated: 1493051241 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators/TrackballDecorator.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators/TrackballDecorator.cs new file mode 100644 index 0000000..c60d58e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators/TrackballDecorator.cs @@ -0,0 +1,209 @@ +using System; +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [Decorator(typeof(TrackballAttribute))] + internal sealed class TrackballDecorator : AttributeDecorator + { + static readonly int k_ThumbHash = "colorWheelThumb".GetHashCode(); + static Material s_Material; + + bool m_ResetState; + Vector2 m_CursorPos; + + public override bool IsAutoProperty() + { + return false; + } + + public override bool OnGUI(SerializedProperty property, SerializedProperty overrideState, GUIContent title, Attribute attribute) + { + if (property.propertyType != SerializedPropertyType.Vector4) + return false; + + var value = property.vector4Value; + + using (new EditorGUILayout.VerticalScope()) + { + using (new EditorGUI.DisabledScope(!overrideState.boolValue)) + DrawWheel(ref value, overrideState.boolValue, (TrackballAttribute)attribute); + + DrawLabelAndOverride(title, overrideState); + } + + if (m_ResetState) + { + value = Vector4.zero; + m_ResetState = false; + } + + property.vector4Value = value; + + return true; + } + + void DrawWheel(ref Vector4 value, bool overrideState, TrackballAttribute attr) + { + var wheelRect = GUILayoutUtility.GetAspectRect(1f); + float size = wheelRect.width; + float hsize = size / 2f; + float radius = 0.38f * size; + + Vector3 hsv; + Color.RGBToHSV(value, out hsv.x, out hsv.y, out hsv.z); + float offset = value.w; + + // Thumb + var thumbPos = Vector2.zero; + float theta = hsv.x * (Mathf.PI * 2f); + thumbPos.x = Mathf.Cos(theta + (Mathf.PI / 2f)); + thumbPos.y = Mathf.Sin(theta - (Mathf.PI / 2f)); + thumbPos *= hsv.y * radius; + + // Draw the wheel + if (Event.current.type == EventType.Repaint) + { + // Retina support + float scale = EditorGUIUtility.pixelsPerPoint; + + if (s_Material == null) + s_Material = new Material(Shader.Find("Hidden/PostProcessing/Editor/Trackball")) { hideFlags = HideFlags.HideAndDontSave }; + + // Wheel texture + #if UNITY_2018_1_OR_NEWER + const RenderTextureReadWrite kReadWrite = RenderTextureReadWrite.sRGB; + #else + const RenderTextureReadWrite kReadWrite = RenderTextureReadWrite.Linear; + #endif + + var oldRT = RenderTexture.active; + var rt = RenderTexture.GetTemporary((int)(size * scale), (int)(size * scale), 0, RenderTextureFormat.ARGB32, kReadWrite); + s_Material.SetFloat("_Offset", offset); + s_Material.SetFloat("_DisabledState", overrideState ? 1f : 0.5f); + s_Material.SetVector("_Resolution", new Vector2(size * scale, size * scale / 2f)); + Graphics.Blit(null, rt, s_Material, EditorGUIUtility.isProSkin ? 0 : 1); + RenderTexture.active = oldRT; + + GUI.DrawTexture(wheelRect, rt); + RenderTexture.ReleaseTemporary(rt); + + var thumbSize = Styling.wheelThumbSize; + var thumbSizeH = thumbSize / 2f; + Styling.wheelThumb.Draw(new Rect(wheelRect.x + hsize + thumbPos.x - thumbSizeH.x, wheelRect.y + hsize + thumbPos.y - thumbSizeH.y, thumbSize.x, thumbSize.y), false, false, false, false); + } + + // Input + var bounds = wheelRect; + bounds.x += hsize - radius; + bounds.y += hsize - radius; + bounds.width = bounds.height = radius * 2f; + hsv = GetInput(bounds, hsv, thumbPos, radius); + value = Color.HSVToRGB(hsv.x, hsv.y, 1f); + value.w = offset; + + // Offset + var sliderRect = GUILayoutUtility.GetRect(1f, 17f); + float padding = sliderRect.width * 0.05f; // 5% padding + sliderRect.xMin += padding; + sliderRect.xMax -= padding; + value.w = GUI.HorizontalSlider(sliderRect, value.w, -1f, 1f); + + if (attr.mode == TrackballAttribute.Mode.None) + return; + + // Values + var displayValue = Vector3.zero; + + switch (attr.mode) + { + case TrackballAttribute.Mode.Lift: displayValue = ColorUtilities.ColorToLift(value); + break; + case TrackballAttribute.Mode.Gamma: displayValue = ColorUtilities.ColorToInverseGamma(value); + break; + case TrackballAttribute.Mode.Gain: displayValue = ColorUtilities.ColorToGain(value); + break; + } + + using (new EditorGUI.DisabledGroupScope(true)) + { + var valuesRect = GUILayoutUtility.GetRect(1f, 17f); + valuesRect.width /= 3f; + GUI.Label(valuesRect, displayValue.x.ToString("F2"), EditorStyles.centeredGreyMiniLabel); + valuesRect.x += valuesRect.width; + GUI.Label(valuesRect, displayValue.y.ToString("F2"), EditorStyles.centeredGreyMiniLabel); + valuesRect.x += valuesRect.width; + GUI.Label(valuesRect, displayValue.z.ToString("F2"), EditorStyles.centeredGreyMiniLabel); + valuesRect.x += valuesRect.width; + } + } + + void DrawLabelAndOverride(GUIContent title, SerializedProperty overrideState) + { + // Title + var areaRect = GUILayoutUtility.GetRect(1f, 17f); + var labelSize = Styling.wheelLabel.CalcSize(title); + var labelRect = new Rect(areaRect.x + areaRect.width / 2 - labelSize.x / 2, areaRect.y, labelSize.x, labelSize.y); + GUI.Label(labelRect, title, Styling.wheelLabel); + + // Override checkbox + var overrideRect = new Rect(labelRect.x - 17, labelRect.y + 3, 17f, 17f); + EditorUtilities.DrawOverrideCheckbox(overrideRect, overrideState); + } + + Vector3 GetInput(Rect bounds, Vector3 hsv, Vector2 thumbPos, float radius) + { + var e = Event.current; + var id = GUIUtility.GetControlID(k_ThumbHash, FocusType.Passive, bounds); + var mousePos = e.mousePosition; + + if (e.type == EventType.MouseDown && GUIUtility.hotControl == 0 && bounds.Contains(mousePos)) + { + if (e.button == 0) + { + var center = new Vector2(bounds.x + radius, bounds.y + radius); + float dist = Vector2.Distance(center, mousePos); + + if (dist <= radius) + { + e.Use(); + m_CursorPos = new Vector2(thumbPos.x + radius, thumbPos.y + radius); + GUIUtility.hotControl = id; + GUI.changed = true; + } + } + else if (e.button == 1) + { + e.Use(); + GUI.changed = true; + m_ResetState = true; + } + } + else if (e.type == EventType.MouseDrag && e.button == 0 && GUIUtility.hotControl == id) + { + e.Use(); + GUI.changed = true; + m_CursorPos += e.delta * GlobalSettings.trackballSensitivity; + GetWheelHueSaturation(m_CursorPos.x, m_CursorPos.y, radius, out hsv.x, out hsv.y); + } + else if (e.rawType == EventType.MouseUp && e.button == 0 && GUIUtility.hotControl == id) + { + e.Use(); + GUIUtility.hotControl = 0; + } + + return hsv; + } + + void GetWheelHueSaturation(float x, float y, float radius, out float hue, out float saturation) + { + float dx = (x - radius) / radius; + float dy = (y - radius) / radius; + float d = Mathf.Sqrt(dx * dx + dy * dy); + hue = Mathf.Atan2(dx, -dy); + hue = 1f - ((hue > 0) ? hue : (Mathf.PI * 2f) + hue) / (Mathf.PI * 2f); + saturation = Mathf.Clamp01(d); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators/TrackballDecorator.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators/TrackballDecorator.cs.meta new file mode 100644 index 0000000..52832a6 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Decorators/TrackballDecorator.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 26ed99f46b86df8449003e6ec0f65144 +timeCreated: 1493900975 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/EffectListEditor.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/EffectListEditor.cs new file mode 100644 index 0000000..6f9a995 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/EffectListEditor.cs @@ -0,0 +1,346 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using UnityEngine; +using UnityEngine.Assertions; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// This class is used to draw the user interface in the inspector for all the settings + /// contained in a . + /// + public sealed class EffectListEditor + { + /// + /// A reference to the being displayed by this editor. + /// + public PostProcessProfile asset { get; private set; } + + Editor m_BaseEditor; + + SerializedObject m_SerializedObject; + SerializedProperty m_SettingsProperty; + + Dictionary m_EditorTypes; // SettingsType => EditorType + List m_Editors; + + /// + /// Creates a new instance to be used inside an existing . + /// + /// A reference to the parent editor instance. + public EffectListEditor(Editor editor) + { + Assert.IsNotNull(editor); + m_BaseEditor = editor; + } + + /// + /// Initializes the editor. This method should be called before is + /// called. + /// + /// A reference to the that will be + /// displayed. + /// A of the given instance. + public void Init(PostProcessProfile asset, SerializedObject serializedObject) + { + Assert.IsNotNull(asset); + Assert.IsNotNull(serializedObject); + + this.asset = asset; + m_SerializedObject = serializedObject; + m_SettingsProperty = serializedObject.FindProperty("settings"); + Assert.IsNotNull(m_SettingsProperty); + + m_EditorTypes = new Dictionary(); + m_Editors = new List(); + + // Gets the list of all available postfx editors + var editorTypes = RuntimeUtilities.GetAllAssemblyTypes() + .Where( + t => t.IsSubclassOf(typeof(PostProcessEffectBaseEditor)) + && t.IsDefined(typeof(PostProcessEditorAttribute), false) + && !t.IsAbstract + ); + + // Map them to their corresponding settings type + foreach (var editorType in editorTypes) + { + var attribute = editorType.GetAttribute(); + m_EditorTypes.Add(attribute.settingsType, editorType); + } + + // Create editors for existing settings + for (int i = 0; i < this.asset.settings.Count; i++) + CreateEditor(this.asset.settings[i], m_SettingsProperty.GetArrayElementAtIndex(i)); + + // Keep track of undo/redo to redraw the inspector when that happens + Undo.undoRedoPerformed += OnUndoRedoPerformed; + } + + void OnUndoRedoPerformed() + { + asset.isDirty = true; + + // Dumb hack to make sure the serialized object is up to date on undo (else there'll be + // a state mismatch when this class is used in a GameObject inspector). + m_SerializedObject.Update(); + m_SerializedObject.ApplyModifiedProperties(); + + // Seems like there's an issue with the inspector not repainting after some undo events + // This will take care of that + m_BaseEditor.Repaint(); + } + + void CreateEditor(PostProcessEffectSettings settings, SerializedProperty property, int index = -1) + { + var settingsType = settings.GetType(); + Type editorType; + + if (!m_EditorTypes.TryGetValue(settingsType, out editorType)) + editorType = typeof(DefaultPostProcessEffectEditor); + + var editor = (PostProcessEffectBaseEditor)Activator.CreateInstance(editorType); + editor.Init(settings, m_BaseEditor); + editor.baseProperty = property.Copy(); + + if (index < 0) + m_Editors.Add(editor); + else + m_Editors[index] = editor; + } + + // Clears & recreate all editors - mainly used when the volume has been modified outside of + // the editor (user scripts, inspector reset etc). + void RefreshEditors() + { + // Disable all editors first + foreach (var editor in m_Editors) + editor.OnDisable(); + + // Remove them + m_Editors.Clear(); + + // Recreate editors for existing settings, if any + for (int i = 0; i < asset.settings.Count; i++) + CreateEditor(asset.settings[i], m_SettingsProperty.GetArrayElementAtIndex(i)); + } + + /// + /// This method should be called when the editor is destroyed or disabled. + /// + public void Clear() + { + if (m_Editors == null) + return; // Hasn't been inited yet + + foreach (var editor in m_Editors) + editor.OnDisable(); + + m_Editors.Clear(); + m_EditorTypes.Clear(); + + Undo.undoRedoPerformed -= OnUndoRedoPerformed; + } + + /// + /// Draws the settings for the referenced in the editor. + /// + public void OnGUI() + { + if (asset == null) + return; + + if (asset.isDirty) + { + RefreshEditors(); + asset.isDirty = false; + } + + bool isEditable = !VersionControl.Provider.isActive + || AssetDatabase.IsOpenForEdit(asset, StatusQueryOptions.UseCachedIfPossible); + + using (new EditorGUI.DisabledScope(!isEditable)) + { + EditorGUILayout.LabelField(EditorUtilities.GetContent("Overrides"), EditorStyles.boldLabel); + + // Override list + for (int i = 0; i < m_Editors.Count; i++) + { + var editor = m_Editors[i]; + string title = editor.GetDisplayTitle(); + int id = i; // Needed for closure capture below + + EditorUtilities.DrawSplitter(); + bool displayContent = EditorUtilities.DrawHeader( + title, + editor.baseProperty, + editor.activeProperty, + editor.target, + () => ResetEffectOverride(editor.target.GetType(), id), + () => RemoveEffectOverride(id) + ); + + if (displayContent) + { + using (new EditorGUI.DisabledScope(!editor.activeProperty.boolValue)) + editor.OnInternalInspectorGUI(); + } + } + + if (m_Editors.Count > 0) + { + EditorUtilities.DrawSplitter(); + EditorGUILayout.Space(); + } + else + { + EditorGUILayout.HelpBox("No override set on this volume.", MessageType.Info); + } + + if (GUILayout.Button("Add effect...", EditorStyles.miniButton)) + { + var menu = new GenericMenu(); + + var typeMap = PostProcessManager.instance.settingsTypes; + foreach (var kvp in typeMap) + { + var type = kvp.Key; + var title = EditorUtilities.GetContent(kvp.Value.menuItem); + bool exists = asset.HasSettings(type); + + if (!exists) + menu.AddItem(title, false, () => AddEffectOverride(type)); + else + menu.AddDisabledItem(title); + } + + menu.ShowAsContext(); + } + + EditorGUILayout.Space(); + } + } + + void AddEffectOverride(Type type) + { + m_SerializedObject.Update(); + + var effect = CreateNewEffect(type); + Undo.RegisterCreatedObjectUndo(effect, "Add Effect Override"); + + // Store this new effect as a subasset so we can reference it safely afterwards. Only when its not an instantiated profile + if (EditorUtility.IsPersistent(asset)) + AssetDatabase.AddObjectToAsset(effect, asset); + + // Grow the list first, then add - that's how serialized lists work in Unity + m_SettingsProperty.arraySize++; + var effectProp = m_SettingsProperty.GetArrayElementAtIndex(m_SettingsProperty.arraySize - 1); + effectProp.objectReferenceValue = effect; + + // Create & store the internal editor object for this effect + CreateEditor(effect, effectProp); + + m_SerializedObject.ApplyModifiedProperties(); + + // Force save / refresh. Important to do this last because SaveAssets can cause effect to become null! + if (EditorUtility.IsPersistent(asset)) + { + EditorUtility.SetDirty(asset); + AssetDatabase.SaveAssets(); + } + } + + void RemoveEffectOverride(int id) + { + // Huh. Hack to keep foldout state on the next element... + bool nextFoldoutState = false; + if (id < m_Editors.Count - 1) + nextFoldoutState = m_Editors[id + 1].baseProperty.isExpanded; + + // Remove from the cached editors list + m_Editors[id].OnDisable(); + m_Editors.RemoveAt(id); + + m_SerializedObject.Update(); + + var property = m_SettingsProperty.GetArrayElementAtIndex(id); + var effect = property.objectReferenceValue; + + // Unassign it (should be null already but serialization does funky things + property.objectReferenceValue = null; + + // ...and remove the array index itself from the list + m_SettingsProperty.DeleteArrayElementAtIndex(id); + + // Finally refresh editor reference to the serialized settings list + for (int i = 0; i < m_Editors.Count; i++) + m_Editors[i].baseProperty = m_SettingsProperty.GetArrayElementAtIndex(i).Copy(); + + if (id < m_Editors.Count) + m_Editors[id].baseProperty.isExpanded = nextFoldoutState; + + m_SerializedObject.ApplyModifiedProperties(); + + // Destroy the setting object after ApplyModifiedProperties(). If we do it before, redo + // actions will be in the wrong order and the reference to the setting object in the + // list will be lost. + Undo.DestroyObjectImmediate(effect); + + // Force save / refresh + EditorUtility.SetDirty(asset); + AssetDatabase.SaveAssets(); + } + + // Reset is done by deleting and removing the object from the list and adding a new one in + // the place as it was before + void ResetEffectOverride(Type type, int id) + { + // Remove from the cached editors list + m_Editors[id].OnDisable(); + m_Editors[id] = null; + + m_SerializedObject.Update(); + + var property = m_SettingsProperty.GetArrayElementAtIndex(id); + var prevSettings = property.objectReferenceValue; + + // Unassign it but down remove it from the array to keep the index available + property.objectReferenceValue = null; + + // Create a new object + var newEffect = CreateNewEffect(type); + Undo.RegisterCreatedObjectUndo(newEffect, "Reset Effect Override"); + + // Store this new effect as a subasset so we can reference it safely afterwards + AssetDatabase.AddObjectToAsset(newEffect, asset); + + // Put it in the reserved space + property.objectReferenceValue = newEffect; + + // Create & store the internal editor object for this effect + CreateEditor(newEffect, property, id); + + m_SerializedObject.ApplyModifiedProperties(); + + // Same as RemoveEffectOverride, destroy at the end so it's recreated first on Undo to + // make sure the GUID exists before undoing the list state + Undo.DestroyObjectImmediate(prevSettings); + + // Force save / refresh + EditorUtility.SetDirty(asset); + AssetDatabase.SaveAssets(); + } + + PostProcessEffectSettings CreateNewEffect(Type type) + { + var effect = (PostProcessEffectSettings)ScriptableObject.CreateInstance(type); + effect.hideFlags = HideFlags.HideInInspector | HideFlags.HideInHierarchy; + effect.name = type.Name; + effect.enabled.value = true; + return effect; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/EffectListEditor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/EffectListEditor.cs.meta new file mode 100644 index 0000000..201d41e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/EffectListEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9f9fffe306f3969418c31ee836b6ffee +timeCreated: 1494328254 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects.meta new file mode 100644 index 0000000..c7143a1 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 1da84851b99c43746afb49e79ae2b1d6 +folderAsset: yes +timeCreated: 1492696579 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/AmbientOcclusionEditor.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/AmbientOcclusionEditor.cs new file mode 100644 index 0000000..6b3800a --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/AmbientOcclusionEditor.cs @@ -0,0 +1,74 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [PostProcessEditor(typeof(AmbientOcclusion))] + internal sealed class AmbientOcclusionEditor : PostProcessEffectEditor + { + SerializedParameterOverride m_Mode; + SerializedParameterOverride m_Intensity; + SerializedParameterOverride m_Color; + SerializedParameterOverride m_AmbientOnly; + SerializedParameterOverride m_ThicknessModifier; + SerializedParameterOverride m_DirectLightingStrength; + SerializedParameterOverride m_Quality; + SerializedParameterOverride m_Radius; + + public override void OnEnable() + { + m_Mode = FindParameterOverride(x => x.mode); + m_Intensity = FindParameterOverride(x => x.intensity); + m_Color = FindParameterOverride(x => x.color); + m_AmbientOnly = FindParameterOverride(x => x.ambientOnly); + m_ThicknessModifier = FindParameterOverride(x => x.thicknessModifier); + m_DirectLightingStrength = FindParameterOverride(x => x.directLightingStrength); + m_Quality = FindParameterOverride(x => x.quality); + m_Radius = FindParameterOverride(x => x.radius); + } + + public override void OnInspectorGUI() + { + PropertyField(m_Mode); + int aoMode = m_Mode.value.intValue; + + if (RuntimeUtilities.scriptableRenderPipelineActive && aoMode == (int)AmbientOcclusionMode.ScalableAmbientObscurance) + { + EditorGUILayout.HelpBox("Scalable ambient obscurance doesn't work with scriptable render pipelines.", MessageType.Warning); + return; + } + +#if !UNITY_2017_1_OR_NEWER + if (aoMode == (int)AmbientOcclusionMode.MultiScaleVolumetricObscurance) + { + EditorGUILayout.HelpBox("Multi-scale volumetric obscurance requires Unity 2017.1 or more.", MessageType.Warning); + return; + } +#endif + + PropertyField(m_Intensity); + + if (aoMode == (int)AmbientOcclusionMode.ScalableAmbientObscurance) + { + PropertyField(m_Radius); + PropertyField(m_Quality); + } + else if (aoMode == (int)AmbientOcclusionMode.MultiScaleVolumetricObscurance) + { + if (!SystemInfo.supportsComputeShaders) + EditorGUILayout.HelpBox("Multi-scale volumetric obscurance requires compute shader support.", MessageType.Warning); + + PropertyField(m_ThicknessModifier); + + if (RuntimeUtilities.scriptableRenderPipelineActive) + PropertyField(m_DirectLightingStrength); + } + + PropertyField(m_Color); + PropertyField(m_AmbientOnly); + + if (m_AmbientOnly.overrideState.boolValue && m_AmbientOnly.value.boolValue && !RuntimeUtilities.scriptableRenderPipelineActive) + EditorGUILayout.HelpBox("Ambient-only only works with cameras rendering in Deferred + HDR", MessageType.Info); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/AmbientOcclusionEditor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/AmbientOcclusionEditor.cs.meta new file mode 100644 index 0000000..05a9d62 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/AmbientOcclusionEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 67909952e72978b4ea41880509c936ff +timeCreated: 1505217529 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/AutoExposureEditor.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/AutoExposureEditor.cs new file mode 100644 index 0000000..c634386 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/AutoExposureEditor.cs @@ -0,0 +1,63 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [PostProcessEditor(typeof(AutoExposure))] + internal sealed class AutoExposureEditor : PostProcessEffectEditor + { + SerializedParameterOverride m_Filtering; + + SerializedParameterOverride m_MinLuminance; + SerializedParameterOverride m_MaxLuminance; + SerializedParameterOverride m_KeyValue; + + SerializedParameterOverride m_EyeAdaptation; + SerializedParameterOverride m_SpeedUp; + SerializedParameterOverride m_SpeedDown; + + public override void OnEnable() + { + m_Filtering = FindParameterOverride(x => x.filtering); + + m_MinLuminance = FindParameterOverride(x => x.minLuminance); + m_MaxLuminance = FindParameterOverride(x => x.maxLuminance); + m_KeyValue = FindParameterOverride(x => x.keyValue); + + m_EyeAdaptation = FindParameterOverride(x => x.eyeAdaptation); + m_SpeedUp = FindParameterOverride(x => x.speedUp); + m_SpeedDown = FindParameterOverride(x => x.speedDown); + } + + public override void OnInspectorGUI() + { + if (!SystemInfo.supportsComputeShaders) + EditorGUILayout.HelpBox("Auto exposure requires compute shader support.", MessageType.Warning); + + EditorUtilities.DrawHeaderLabel("Exposure"); + + PropertyField(m_Filtering); + PropertyField(m_MinLuminance); + PropertyField(m_MaxLuminance); + + // Clamp min/max adaptation values + float minLum = m_MinLuminance.value.floatValue; + float maxLum = m_MaxLuminance.value.floatValue; + m_MinLuminance.value.floatValue = Mathf.Min(minLum, maxLum); + m_MaxLuminance.value.floatValue = Mathf.Max(minLum, maxLum); + + PropertyField(m_KeyValue); + + EditorGUILayout.Space(); + EditorUtilities.DrawHeaderLabel("Adaptation"); + + PropertyField(m_EyeAdaptation); + + if (m_EyeAdaptation.value.intValue == (int)EyeAdaptation.Progressive) + { + PropertyField(m_SpeedUp); + PropertyField(m_SpeedDown); + } + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/AutoExposureEditor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/AutoExposureEditor.cs.meta new file mode 100644 index 0000000..d901e9c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/AutoExposureEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3051d2fb25301fa4a81e797109712feb +timeCreated: 1493022639 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/BloomEditor.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/BloomEditor.cs new file mode 100644 index 0000000..9b424b0 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/BloomEditor.cs @@ -0,0 +1,65 @@ +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [PostProcessEditor(typeof(Bloom))] + internal sealed class BloomEditor : PostProcessEffectEditor + { + SerializedParameterOverride m_Intensity; + SerializedParameterOverride m_Threshold; + SerializedParameterOverride m_SoftKnee; + SerializedParameterOverride m_Clamp; + SerializedParameterOverride m_Diffusion; + SerializedParameterOverride m_AnamorphicRatio; + SerializedParameterOverride m_Color; + SerializedParameterOverride m_FastMode; + + SerializedParameterOverride m_DirtTexture; + SerializedParameterOverride m_DirtIntensity; + + public override void OnEnable() + { + m_Intensity = FindParameterOverride(x => x.intensity); + m_Threshold = FindParameterOverride(x => x.threshold); + m_SoftKnee = FindParameterOverride(x => x.softKnee); + m_Clamp = FindParameterOverride(x => x.clamp); + m_Diffusion = FindParameterOverride(x => x.diffusion); + m_AnamorphicRatio = FindParameterOverride(x => x.anamorphicRatio); + m_Color = FindParameterOverride(x => x.color); + m_FastMode = FindParameterOverride(x => x.fastMode); + + m_DirtTexture = FindParameterOverride(x => x.dirtTexture); + m_DirtIntensity = FindParameterOverride(x => x.dirtIntensity); + } + + public override void OnInspectorGUI() + { + EditorUtilities.DrawHeaderLabel("Bloom"); + + PropertyField(m_Intensity); + PropertyField(m_Threshold); + PropertyField(m_SoftKnee); + PropertyField(m_Clamp); + PropertyField(m_Diffusion); + PropertyField(m_AnamorphicRatio); + PropertyField(m_Color); + PropertyField(m_FastMode); + + if (m_FastMode.overrideState.boolValue && !m_FastMode.value.boolValue && EditorUtilities.isTargetingConsolesOrMobiles) + EditorGUILayout.HelpBox("For performance reasons it is recommended to use Fast Mode on mobile and console platforms.", MessageType.Warning); + + EditorGUILayout.Space(); + EditorUtilities.DrawHeaderLabel("Dirtiness"); + + PropertyField(m_DirtTexture); + PropertyField(m_DirtIntensity); + + if (RuntimeUtilities.isVREnabled) + { + if ((m_DirtIntensity.overrideState.boolValue && m_DirtIntensity.value.floatValue > 0f) + || (m_DirtTexture.overrideState.boolValue && m_DirtTexture.value.objectReferenceValue != null)) + EditorGUILayout.HelpBox("Using a dirt texture in VR is not recommended.", MessageType.Warning); + } + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/BloomEditor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/BloomEditor.cs.meta new file mode 100644 index 0000000..38ac202 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/BloomEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 47feae56b7bdcf4499b96c2aa3c6ce07 +timeCreated: 1493116477 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/ChromaticAberrationEditor.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/ChromaticAberrationEditor.cs new file mode 100644 index 0000000..203ab59 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/ChromaticAberrationEditor.cs @@ -0,0 +1,31 @@ +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [PostProcessEditor(typeof(ChromaticAberration))] + internal sealed class ChromaticAberrationEditor : PostProcessEffectEditor + { + SerializedParameterOverride m_SpectralLut; + SerializedParameterOverride m_Intensity; + SerializedParameterOverride m_FastMode; + + public override void OnEnable() + { + m_SpectralLut = FindParameterOverride(x => x.spectralLut); + m_Intensity = FindParameterOverride(x => x.intensity); + m_FastMode = FindParameterOverride(x => x.fastMode); + } + + public override void OnInspectorGUI() + { + base.OnInspectorGUI(); + + PropertyField(m_SpectralLut); + PropertyField(m_Intensity); + PropertyField(m_FastMode); + + if (m_FastMode.overrideState.boolValue && !m_FastMode.value.boolValue && EditorUtilities.isTargetingConsolesOrMobiles) + EditorGUILayout.HelpBox("For performance reasons it is recommended to use Fast Mode on mobile and console platforms.", MessageType.Warning); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/ChromaticAberrationEditor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/ChromaticAberrationEditor.cs.meta new file mode 100644 index 0000000..adb717a --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/ChromaticAberrationEditor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: f8e5f5614c0d72445b292f4b16ab660b +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/ColorGradingEditor.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/ColorGradingEditor.cs new file mode 100644 index 0000000..7b49b7d --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/ColorGradingEditor.cs @@ -0,0 +1,746 @@ +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [PostProcessEditor(typeof(ColorGrading))] + internal sealed class ColorGradingEditor : PostProcessEffectEditor + { + SerializedParameterOverride m_GradingMode; + + static GUIContent[] s_Curves = + { + new GUIContent("Master"), + new GUIContent("Red"), + new GUIContent("Green"), + new GUIContent("Blue"), + new GUIContent("Hue Vs Hue"), + new GUIContent("Hue Vs Sat"), + new GUIContent("Sat Vs Sat"), + new GUIContent("Lum Vs Sat") + }; + + SerializedParameterOverride m_ExternalLut; + + SerializedParameterOverride m_Tonemapper; + SerializedParameterOverride m_ToneCurveToeStrength; + SerializedParameterOverride m_ToneCurveToeLength; + SerializedParameterOverride m_ToneCurveShoulderStrength; + SerializedParameterOverride m_ToneCurveShoulderLength; + SerializedParameterOverride m_ToneCurveShoulderAngle; + SerializedParameterOverride m_ToneCurveGamma; + + SerializedParameterOverride m_LdrLut; + SerializedParameterOverride m_LdrLutContribution; + + SerializedParameterOverride m_Temperature; + SerializedParameterOverride m_Tint; + + SerializedParameterOverride m_ColorFilter; + SerializedParameterOverride m_HueShift; + SerializedParameterOverride m_Saturation; + SerializedParameterOverride m_Brightness; + SerializedParameterOverride m_PostExposure; + SerializedParameterOverride m_Contrast; + + SerializedParameterOverride m_MixerRedOutRedIn; + SerializedParameterOverride m_MixerRedOutGreenIn; + SerializedParameterOverride m_MixerRedOutBlueIn; + + SerializedParameterOverride m_MixerGreenOutRedIn; + SerializedParameterOverride m_MixerGreenOutGreenIn; + SerializedParameterOverride m_MixerGreenOutBlueIn; + + SerializedParameterOverride m_MixerBlueOutRedIn; + SerializedParameterOverride m_MixerBlueOutGreenIn; + SerializedParameterOverride m_MixerBlueOutBlueIn; + + SerializedParameterOverride m_Lift; + SerializedParameterOverride m_Gamma; + SerializedParameterOverride m_Gain; + + SerializedParameterOverride m_MasterCurve; + SerializedParameterOverride m_RedCurve; + SerializedParameterOverride m_GreenCurve; + SerializedParameterOverride m_BlueCurve; + + SerializedParameterOverride m_HueVsHueCurve; + SerializedParameterOverride m_HueVsSatCurve; + SerializedParameterOverride m_SatVsSatCurve; + SerializedParameterOverride m_LumVsSatCurve; + + // Internal references to the actual animation curves + // Needed for the curve editor + SerializedProperty m_RawMasterCurve; + SerializedProperty m_RawRedCurve; + SerializedProperty m_RawGreenCurve; + SerializedProperty m_RawBlueCurve; + + SerializedProperty m_RawHueVsHueCurve; + SerializedProperty m_RawHueVsSatCurve; + SerializedProperty m_RawSatVsSatCurve; + SerializedProperty m_RawLumVsSatCurve; + + CurveEditor m_CurveEditor; + Dictionary m_CurveDict; + + // Custom tone curve drawing + const int k_CustomToneCurveResolution = 48; + const float k_CustomToneCurveRangeY = 1.025f; + readonly Vector3[] m_RectVertices = new Vector3[4]; + readonly Vector3[] m_LineVertices = new Vector3[2]; + readonly Vector3[] m_CurveVertices = new Vector3[k_CustomToneCurveResolution]; + Rect m_CustomToneCurveRect; + readonly HableCurve m_HableCurve = new HableCurve(); + + public override void OnEnable() + { + m_GradingMode = FindParameterOverride(x => x.gradingMode); + + m_ExternalLut = FindParameterOverride(x => x.externalLut); + + m_Tonemapper = FindParameterOverride(x => x.tonemapper); + m_ToneCurveToeStrength = FindParameterOverride(x => x.toneCurveToeStrength); + m_ToneCurveToeLength = FindParameterOverride(x => x.toneCurveToeLength); + m_ToneCurveShoulderStrength = FindParameterOverride(x => x.toneCurveShoulderStrength); + m_ToneCurveShoulderLength = FindParameterOverride(x => x.toneCurveShoulderLength); + m_ToneCurveShoulderAngle = FindParameterOverride(x => x.toneCurveShoulderAngle); + m_ToneCurveGamma = FindParameterOverride(x => x.toneCurveGamma); + + m_LdrLut = FindParameterOverride(x => x.ldrLut); + m_LdrLutContribution = FindParameterOverride(x => x.ldrLutContribution); + + m_Temperature = FindParameterOverride(x => x.temperature); + m_Tint = FindParameterOverride(x => x.tint); + + m_ColorFilter = FindParameterOverride(x => x.colorFilter); + m_HueShift = FindParameterOverride(x => x.hueShift); + m_Saturation = FindParameterOverride(x => x.saturation); + m_Brightness = FindParameterOverride(x => x.brightness); + m_PostExposure = FindParameterOverride(x => x.postExposure); + m_Contrast = FindParameterOverride(x => x.contrast); + + m_MixerRedOutRedIn = FindParameterOverride(x => x.mixerRedOutRedIn); + m_MixerRedOutGreenIn = FindParameterOverride(x => x.mixerRedOutGreenIn); + m_MixerRedOutBlueIn = FindParameterOverride(x => x.mixerRedOutBlueIn); + + m_MixerGreenOutRedIn = FindParameterOverride(x => x.mixerGreenOutRedIn); + m_MixerGreenOutGreenIn = FindParameterOverride(x => x.mixerGreenOutGreenIn); + m_MixerGreenOutBlueIn = FindParameterOverride(x => x.mixerGreenOutBlueIn); + + m_MixerBlueOutRedIn = FindParameterOverride(x => x.mixerBlueOutRedIn); + m_MixerBlueOutGreenIn = FindParameterOverride(x => x.mixerBlueOutGreenIn); + m_MixerBlueOutBlueIn = FindParameterOverride(x => x.mixerBlueOutBlueIn); + + m_Lift = FindParameterOverride(x => x.lift); + m_Gamma = FindParameterOverride(x => x.gamma); + m_Gain = FindParameterOverride(x => x.gain); + + m_MasterCurve = FindParameterOverride(x => x.masterCurve); + m_RedCurve = FindParameterOverride(x => x.redCurve); + m_GreenCurve = FindParameterOverride(x => x.greenCurve); + m_BlueCurve = FindParameterOverride(x => x.blueCurve); + + m_HueVsHueCurve = FindParameterOverride(x => x.hueVsHueCurve); + m_HueVsSatCurve = FindParameterOverride(x => x.hueVsSatCurve); + m_SatVsSatCurve = FindParameterOverride(x => x.satVsSatCurve); + m_LumVsSatCurve = FindParameterOverride(x => x.lumVsSatCurve); + + m_RawMasterCurve = FindProperty(x => x.masterCurve.value.curve); + m_RawRedCurve = FindProperty(x => x.redCurve.value.curve); + m_RawGreenCurve = FindProperty(x => x.greenCurve.value.curve); + m_RawBlueCurve = FindProperty(x => x.blueCurve.value.curve); + + m_RawHueVsHueCurve = FindProperty(x => x.hueVsHueCurve.value.curve); + m_RawHueVsSatCurve = FindProperty(x => x.hueVsSatCurve.value.curve); + m_RawSatVsSatCurve = FindProperty(x => x.satVsSatCurve.value.curve); + m_RawLumVsSatCurve = FindProperty(x => x.lumVsSatCurve.value.curve); + + m_CurveEditor = new CurveEditor(); + m_CurveDict = new Dictionary(); + + // Prepare the curve editor + SetupCurve(m_RawMasterCurve, new Color(1f, 1f, 1f), 2, false); + SetupCurve(m_RawRedCurve, new Color(1f, 0f, 0f), 2, false); + SetupCurve(m_RawGreenCurve, new Color(0f, 1f, 0f), 2, false); + SetupCurve(m_RawBlueCurve, new Color(0f, 0.5f, 1f), 2, false); + SetupCurve(m_RawHueVsHueCurve, new Color(1f, 1f, 1f), 0, true); + SetupCurve(m_RawHueVsSatCurve, new Color(1f, 1f, 1f), 0, true); + SetupCurve(m_RawSatVsSatCurve, new Color(1f, 1f, 1f), 0, false); + SetupCurve(m_RawLumVsSatCurve, new Color(1f, 1f, 1f), 0, false); + } + + public override void OnInspectorGUI() + { + PropertyField(m_GradingMode); + + var gradingMode = (GradingMode)m_GradingMode.value.intValue; + + // Check if we're in gamma or linear and display a warning if we're trying to do hdr + // color grading while being in gamma mode + if (gradingMode != GradingMode.LowDefinitionRange) + { + if (QualitySettings.activeColorSpace == ColorSpace.Gamma) + EditorGUILayout.HelpBox("ColorSpace in project settings is set to Gamma, HDR color grading won't look correct. Switch to Linear or use LDR color grading mode instead.", MessageType.Warning); + } + + if (m_GradingMode.overrideState.boolValue && gradingMode == GradingMode.External) + { + if (!SystemInfo.supports3DRenderTextures || !SystemInfo.supportsComputeShaders) + EditorGUILayout.HelpBox("HDR color grading requires compute shader & 3D render texture support.", MessageType.Warning); + } + + if (gradingMode == GradingMode.LowDefinitionRange) + DoStandardModeGUI(false); + else if (gradingMode == GradingMode.HighDefinitionRange) + DoStandardModeGUI(true); + else if (gradingMode == GradingMode.External) + DoExternalModeGUI(); + + EditorGUILayout.Space(); + } + + void SetupCurve(SerializedProperty prop, Color color, uint minPointCount, bool loop) + { + var state = CurveEditor.CurveState.defaultState; + state.color = color; + state.visible = false; + state.minPointCount = minPointCount; + state.onlyShowHandlesOnSelection = true; + state.zeroKeyConstantValue = 0.5f; + state.loopInBounds = loop; + m_CurveEditor.Add(prop, state); + m_CurveDict.Add(prop, color); + } + + void DoExternalModeGUI() + { + PropertyField(m_ExternalLut); + + var lut = m_ExternalLut.value.objectReferenceValue; + if (lut != null) + { + if (lut.GetType() == typeof(Texture3D)) + { + var o = (Texture3D)lut; + if (o.width == o.height && o.height == o.depth) + return; + } + else if (lut.GetType() == typeof(RenderTexture)) + { + var o = (RenderTexture)lut; + if (o.width == o.height && o.height == o.volumeDepth) + return; + } + + EditorGUILayout.HelpBox("Custom LUTs have to be log-encoded 3D textures or 3D render textures with cube format.", MessageType.Warning); + } + } + + void DoStandardModeGUI(bool hdr) + { + if (!hdr) + { + PropertyField(m_LdrLut); + PropertyField(m_LdrLutContribution); + + var lut = (target as ColorGrading).ldrLut.value; + CheckLutImportSettings(lut); + } + + if (hdr) + { + EditorGUILayout.Space(); + EditorUtilities.DrawHeaderLabel("Tonemapping"); + PropertyField(m_Tonemapper); + + if (m_Tonemapper.value.intValue == (int)Tonemapper.Custom) + { + DrawCustomToneCurve(); + PropertyField(m_ToneCurveToeStrength); + PropertyField(m_ToneCurveToeLength); + PropertyField(m_ToneCurveShoulderStrength); + PropertyField(m_ToneCurveShoulderLength); + PropertyField(m_ToneCurveShoulderAngle); + PropertyField(m_ToneCurveGamma); + } + } + + EditorGUILayout.Space(); + EditorUtilities.DrawHeaderLabel("White Balance"); + + PropertyField(m_Temperature); + PropertyField(m_Tint); + + EditorGUILayout.Space(); + EditorUtilities.DrawHeaderLabel("Tone"); + + if (hdr) + PropertyField(m_PostExposure); + + PropertyField(m_ColorFilter); + PropertyField(m_HueShift); + PropertyField(m_Saturation); + + if (!hdr) + PropertyField(m_Brightness); + + PropertyField(m_Contrast); + + EditorGUILayout.Space(); + int currentChannel = GlobalSettings.currentChannelMixer; + + using (new EditorGUILayout.HorizontalScope()) + { + EditorGUILayout.PrefixLabel("Channel Mixer", GUIStyle.none, Styling.headerLabel); + + EditorGUI.BeginChangeCheck(); + { + using (new EditorGUILayout.HorizontalScope()) + { + GUILayoutUtility.GetRect(9f, 18f, GUILayout.ExpandWidth(false)); // Dirty hack to do proper right column alignement + if (GUILayout.Toggle(currentChannel == 0, EditorUtilities.GetContent("Red|Red output channel."), EditorStyles.miniButtonLeft)) currentChannel = 0; + if (GUILayout.Toggle(currentChannel == 1, EditorUtilities.GetContent("Green|Green output channel."), EditorStyles.miniButtonMid)) currentChannel = 1; + if (GUILayout.Toggle(currentChannel == 2, EditorUtilities.GetContent("Blue|Blue output channel."), EditorStyles.miniButtonRight)) currentChannel = 2; + } + } + if (EditorGUI.EndChangeCheck()) + GUI.FocusControl(null); + } + + GlobalSettings.currentChannelMixer = currentChannel; + + if (currentChannel == 0) + { + PropertyField(m_MixerRedOutRedIn); + PropertyField(m_MixerRedOutGreenIn); + PropertyField(m_MixerRedOutBlueIn); + } + else if (currentChannel == 1) + { + PropertyField(m_MixerGreenOutRedIn); + PropertyField(m_MixerGreenOutGreenIn); + PropertyField(m_MixerGreenOutBlueIn); + } + else + { + PropertyField(m_MixerBlueOutRedIn); + PropertyField(m_MixerBlueOutGreenIn); + PropertyField(m_MixerBlueOutBlueIn); + } + + EditorGUILayout.Space(); + EditorUtilities.DrawHeaderLabel("Trackballs"); + + using (new EditorGUILayout.HorizontalScope()) + { + PropertyField(m_Lift); + GUILayout.Space(4f); + PropertyField(m_Gamma); + GUILayout.Space(4f); + PropertyField(m_Gain); + } + + EditorGUILayout.Space(); + EditorUtilities.DrawHeaderLabel("Grading Curves"); + + DoCurvesGUI(hdr); + } + + void CheckLutImportSettings(Texture lut) + { + if (lut != null) + { + var importer = AssetImporter.GetAtPath(AssetDatabase.GetAssetPath(lut)) as TextureImporter; + + // Fails when using an internal texture as you can't change import settings on + // builtin resources, thus the check for null + if (importer != null) + { + bool valid = importer.anisoLevel == 0 + && importer.mipmapEnabled == false + && importer.sRGBTexture == false + && importer.textureCompression == TextureImporterCompression.Uncompressed + && importer.wrapMode == TextureWrapMode.Clamp; + + if (!valid) + EditorUtilities.DrawFixMeBox("Invalid LUT import settings.", () => SetLutImportSettings(importer)); + } + + if (lut.width != lut.height * lut.height) + { + EditorGUILayout.HelpBox("The Lookup Texture size is invalid. Width should be Height * Height.", MessageType.Error); + } + } + } + + void SetLutImportSettings(TextureImporter importer) + { + importer.textureType = TextureImporterType.Default; + importer.mipmapEnabled = false; + importer.anisoLevel = 0; + importer.sRGBTexture = false; + importer.npotScale = TextureImporterNPOTScale.None; + importer.textureCompression = TextureImporterCompression.Uncompressed; + importer.alphaSource = TextureImporterAlphaSource.None; + importer.wrapMode = TextureWrapMode.Clamp; + importer.SaveAndReimport(); + AssetDatabase.Refresh(); + } + + void DrawCustomToneCurve() + { + EditorGUILayout.Space(); + + // Reserve GUI space + using (new GUILayout.HorizontalScope()) + { + GUILayout.Space(EditorGUI.indentLevel * 15f); + m_CustomToneCurveRect = GUILayoutUtility.GetRect(128, 80); + } + + if (Event.current.type != EventType.Repaint) + return; + + // Prepare curve data + float toeStrength = m_ToneCurveToeStrength.value.floatValue; + float toeLength = m_ToneCurveToeLength.value.floatValue; + float shoulderStrength = m_ToneCurveShoulderStrength.value.floatValue; + float shoulderLength = m_ToneCurveShoulderLength.value.floatValue; + float shoulderAngle = m_ToneCurveShoulderAngle.value.floatValue; + float gamma = m_ToneCurveGamma.value.floatValue; + m_HableCurve.Init( + toeStrength, + toeLength, + shoulderStrength, + shoulderLength, + shoulderAngle, + gamma + ); + + float endPoint = m_HableCurve.whitePoint; + + // Background + m_RectVertices[0] = PointInRect(0f, 0f, endPoint); + m_RectVertices[1] = PointInRect(endPoint, 0f, endPoint); + m_RectVertices[2] = PointInRect(endPoint, k_CustomToneCurveRangeY, endPoint); + m_RectVertices[3] = PointInRect(0f, k_CustomToneCurveRangeY, endPoint); + Handles.DrawSolidRectangleWithOutline(m_RectVertices, Color.white * 0.1f, Color.white * 0.4f); + + // Vertical guides + if (endPoint < m_CustomToneCurveRect.width / 3) + { + int steps = Mathf.CeilToInt(endPoint); + for (var i = 1; i < steps; i++) + DrawLine(i, 0, i, k_CustomToneCurveRangeY, 0.4f, endPoint); + } + + // Label + Handles.Label(m_CustomToneCurveRect.position + Vector2.right, "Custom Tone Curve", EditorStyles.miniLabel); + + // Draw the acual curve + var vcount = 0; + while (vcount < k_CustomToneCurveResolution) + { + float x = endPoint * vcount / (k_CustomToneCurveResolution - 1); + float y = m_HableCurve.Eval(x); + + if (y < k_CustomToneCurveRangeY) + { + m_CurveVertices[vcount++] = PointInRect(x, y, endPoint); + } + else + { + if (vcount > 1) + { + // Extend the last segment to the top edge of the rect. + var v1 = m_CurveVertices[vcount - 2]; + var v2 = m_CurveVertices[vcount - 1]; + var clip = (m_CustomToneCurveRect.y - v1.y) / (v2.y - v1.y); + m_CurveVertices[vcount - 1] = v1 + (v2 - v1) * clip; + } + break; + } + } + + if (vcount > 1) + { + Handles.color = Color.white * 0.9f; + Handles.DrawAAPolyLine(2f, vcount, m_CurveVertices); + } + } + + void DrawLine(float x1, float y1, float x2, float y2, float grayscale, float rangeX) + { + m_LineVertices[0] = PointInRect(x1, y1, rangeX); + m_LineVertices[1] = PointInRect(x2, y2, rangeX); + Handles.color = Color.white * grayscale; + Handles.DrawAAPolyLine(2f, m_LineVertices); + } + + Vector3 PointInRect(float x, float y, float rangeX) + { + x = Mathf.Lerp(m_CustomToneCurveRect.x, m_CustomToneCurveRect.xMax, x / rangeX); + y = Mathf.Lerp(m_CustomToneCurveRect.yMax, m_CustomToneCurveRect.y, y / k_CustomToneCurveRangeY); + return new Vector3(x, y, 0); + } + + void ResetVisibleCurves() + { + foreach (var curve in m_CurveDict) + { + var state = m_CurveEditor.GetCurveState(curve.Key); + state.visible = false; + m_CurveEditor.SetCurveState(curve.Key, state); + } + } + + void SetCurveVisible(SerializedProperty rawProp, SerializedProperty overrideProp) + { + var state = m_CurveEditor.GetCurveState(rawProp); + state.visible = true; + state.editable = overrideProp.boolValue; + m_CurveEditor.SetCurveState(rawProp, state); + } + + void CurveOverrideToggle(SerializedProperty overrideProp) + { + overrideProp.boolValue = GUILayout.Toggle(overrideProp.boolValue, EditorUtilities.GetContent("Override"), EditorStyles.toolbarButton); + } + + static Material s_MaterialGrid; + + void DoCurvesGUI(bool hdr) + { + EditorGUILayout.Space(); + ResetVisibleCurves(); + + using (new EditorGUI.DisabledGroupScope(serializedObject.isEditingMultipleObjects)) + { + int curveEditingId = 0; + SerializedProperty currentCurveRawProp = null; + + // Top toolbar + using (new GUILayout.HorizontalScope(EditorStyles.toolbar)) + { + curveEditingId = DoCurveSelectionPopup(GlobalSettings.currentCurve, hdr); + curveEditingId = Mathf.Clamp(curveEditingId, hdr ? 4 : 0, 7); + + EditorGUILayout.Space(); + + switch (curveEditingId) + { + case 0: + CurveOverrideToggle(m_MasterCurve.overrideState); + SetCurveVisible(m_RawMasterCurve, m_MasterCurve.overrideState); + currentCurveRawProp = m_RawMasterCurve; + break; + case 1: + CurveOverrideToggle(m_RedCurve.overrideState); + SetCurveVisible(m_RawRedCurve, m_RedCurve.overrideState); + currentCurveRawProp = m_RawRedCurve; + break; + case 2: + CurveOverrideToggle(m_GreenCurve.overrideState); + SetCurveVisible(m_RawGreenCurve, m_GreenCurve.overrideState); + currentCurveRawProp = m_RawGreenCurve; + break; + case 3: + CurveOverrideToggle(m_BlueCurve.overrideState); + SetCurveVisible(m_RawBlueCurve, m_BlueCurve.overrideState); + currentCurveRawProp = m_RawBlueCurve; + break; + case 4: + CurveOverrideToggle(m_HueVsHueCurve.overrideState); + SetCurveVisible(m_RawHueVsHueCurve, m_HueVsHueCurve.overrideState); + currentCurveRawProp = m_RawHueVsHueCurve; + break; + case 5: + CurveOverrideToggle(m_HueVsSatCurve.overrideState); + SetCurveVisible(m_RawHueVsSatCurve, m_HueVsSatCurve.overrideState); + currentCurveRawProp = m_RawHueVsSatCurve; + break; + case 6: + CurveOverrideToggle(m_SatVsSatCurve.overrideState); + SetCurveVisible(m_RawSatVsSatCurve, m_SatVsSatCurve.overrideState); + currentCurveRawProp = m_RawSatVsSatCurve; + break; + case 7: + CurveOverrideToggle(m_LumVsSatCurve.overrideState); + SetCurveVisible(m_RawLumVsSatCurve, m_LumVsSatCurve.overrideState); + currentCurveRawProp = m_RawLumVsSatCurve; + break; + } + + GUILayout.FlexibleSpace(); + + if (GUILayout.Button("Reset", EditorStyles.toolbarButton)) + { + switch (curveEditingId) + { + case 0: m_RawMasterCurve.animationCurveValue = AnimationCurve.Linear(0f, 0f, 1f, 1f); + break; + case 1: m_RawRedCurve.animationCurveValue = AnimationCurve.Linear(0f, 0f, 1f, 1f); + break; + case 2: m_RawGreenCurve.animationCurveValue = AnimationCurve.Linear(0f, 0f, 1f, 1f); + break; + case 3: m_RawBlueCurve.animationCurveValue = AnimationCurve.Linear(0f, 0f, 1f, 1f); + break; + case 4: m_RawHueVsHueCurve.animationCurveValue = new AnimationCurve(); + break; + case 5: m_RawHueVsSatCurve.animationCurveValue = new AnimationCurve(); + break; + case 6: m_RawSatVsSatCurve.animationCurveValue = new AnimationCurve(); + break; + case 7: m_RawLumVsSatCurve.animationCurveValue = new AnimationCurve(); + break; + } + } + + GlobalSettings.currentCurve = curveEditingId; + } + + // Curve area + var settings = m_CurveEditor.settings; + var rect = GUILayoutUtility.GetAspectRect(2f); + var innerRect = settings.padding.Remove(rect); + + if (Event.current.type == EventType.Repaint) + { + // Background + EditorGUI.DrawRect(rect, new Color(0.15f, 0.15f, 0.15f, 1f)); + + if (curveEditingId == 4 || curveEditingId == 5) + DrawBackgroundTexture(innerRect, 0); + else if (curveEditingId == 6 || curveEditingId == 7) + DrawBackgroundTexture(innerRect, 1); + + // Bounds + Handles.color = Color.white * (GUI.enabled ? 1f : 0.5f); + Handles.DrawSolidRectangleWithOutline(innerRect, Color.clear, new Color(0.8f, 0.8f, 0.8f, 0.5f)); + + // Grid setup + Handles.color = new Color(1f, 1f, 1f, 0.05f); + int hLines = (int)Mathf.Sqrt(innerRect.width); + int vLines = (int)(hLines / (innerRect.width / innerRect.height)); + + // Vertical grid + int gridOffset = Mathf.FloorToInt(innerRect.width / hLines); + int gridPadding = ((int)(innerRect.width) % hLines) / 2; + + for (int i = 1; i < hLines; i++) + { + var offset = i * Vector2.right * gridOffset; + offset.x += gridPadding; + Handles.DrawLine(innerRect.position + offset, new Vector2(innerRect.x, innerRect.yMax - 1) + offset); + } + + // Horizontal grid + gridOffset = Mathf.FloorToInt(innerRect.height / vLines); + gridPadding = ((int)(innerRect.height) % vLines) / 2; + + for (int i = 1; i < vLines; i++) + { + var offset = i * Vector2.up * gridOffset; + offset.y += gridPadding; + Handles.DrawLine(innerRect.position + offset, new Vector2(innerRect.xMax - 1, innerRect.y) + offset); + } + } + + // Curve editor + if (m_CurveEditor.OnGUI(rect)) + { + Repaint(); + GUI.changed = true; + } + + if (Event.current.type == EventType.Repaint) + { + // Borders + Handles.color = Color.black; + Handles.DrawLine(new Vector2(rect.x, rect.y - 18f), new Vector2(rect.xMax, rect.y - 18f)); + Handles.DrawLine(new Vector2(rect.x, rect.y - 19f), new Vector2(rect.x, rect.yMax)); + Handles.DrawLine(new Vector2(rect.x, rect.yMax), new Vector2(rect.xMax, rect.yMax)); + Handles.DrawLine(new Vector2(rect.xMax, rect.yMax), new Vector2(rect.xMax, rect.y - 18f)); + + bool editable = m_CurveEditor.GetCurveState(currentCurveRawProp).editable; + string editableString = editable ? string.Empty : "(Not Overriding)\n"; + + // Selection info + var selection = m_CurveEditor.GetSelection(); + var infoRect = innerRect; + infoRect.x += 5f; + infoRect.width = 100f; + infoRect.height = 30f; + + if (selection.curve != null && selection.keyframeIndex > -1) + { + var key = selection.keyframe.Value; + GUI.Label(infoRect, string.Format("{0}\n{1}", key.time.ToString("F3"), key.value.ToString("F3")), Styling.preLabel); + } + else + { + GUI.Label(infoRect, editableString, Styling.preLabel); + } + } + } + } + + void DrawBackgroundTexture(Rect rect, int pass) + { + if (s_MaterialGrid == null) + s_MaterialGrid = new Material(Shader.Find("Hidden/PostProcessing/Editor/CurveGrid")) { hideFlags = HideFlags.HideAndDontSave }; + + float scale = EditorGUIUtility.pixelsPerPoint; + + #if UNITY_2018_1_OR_NEWER + const RenderTextureReadWrite kReadWrite = RenderTextureReadWrite.sRGB; + #else + const RenderTextureReadWrite kReadWrite = RenderTextureReadWrite.Linear; + #endif + + var oldRt = RenderTexture.active; + var rt = RenderTexture.GetTemporary(Mathf.CeilToInt(rect.width * scale), Mathf.CeilToInt(rect.height * scale), 0, RenderTextureFormat.ARGB32, kReadWrite); + s_MaterialGrid.SetFloat("_DisabledState", GUI.enabled ? 1f : 0.5f); + s_MaterialGrid.SetFloat("_PixelScaling", EditorGUIUtility.pixelsPerPoint); + + Graphics.Blit(null, rt, s_MaterialGrid, pass); + RenderTexture.active = oldRt; + + GUI.DrawTexture(rect, rt); + RenderTexture.ReleaseTemporary(rt); + } + + int DoCurveSelectionPopup(int id, bool hdr) + { + GUILayout.Label(s_Curves[id], EditorStyles.toolbarPopup, GUILayout.MaxWidth(150f)); + + var lastRect = GUILayoutUtility.GetLastRect(); + var e = Event.current; + + if (e.type == EventType.MouseDown && e.button == 0 && lastRect.Contains(e.mousePosition)) + { + var menu = new GenericMenu(); + + for (int i = 0; i < s_Curves.Length; i++) + { + if (i == 4) + menu.AddSeparator(""); + + if (hdr && i < 4) + menu.AddDisabledItem(s_Curves[i]); + else + { + int current = i; // Capture local for closure + menu.AddItem(s_Curves[i], current == id, () => GlobalSettings.currentCurve = current); + } + } + + menu.DropDown(new Rect(lastRect.xMin, lastRect.yMax, 1f, 1f)); + } + + return id; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/ColorGradingEditor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/ColorGradingEditor.cs.meta new file mode 100644 index 0000000..fdc2a13 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/ColorGradingEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f79c8927d684af6499f512361e23bace +timeCreated: 1493026581 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/DefaultPostProcessEffectEditor.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/DefaultPostProcessEffectEditor.cs new file mode 100644 index 0000000..6d0c31b --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/DefaultPostProcessEffectEditor.cs @@ -0,0 +1,47 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Reflection; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// A default effect editor that gathers all parameters and list them vertically in the + /// inspector. + /// + public class DefaultPostProcessEffectEditor : PostProcessEffectBaseEditor + { + List m_Parameters; + + /// + public override void OnEnable() + { + m_Parameters = new List(); + + var fields = target.GetType() + .GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic) + .Where(t => t.FieldType.IsSubclassOf(typeof(ParameterOverride)) && t.Name != "enabled") + .Where(t => + (t.IsPublic && t.GetCustomAttributes(typeof(NonSerializedAttribute), false).Length == 0) + || (t.GetCustomAttributes(typeof(UnityEngine.SerializeField), false).Length > 0) + ) + .ToList(); + + foreach (var field in fields) + { + var property = serializedObject.FindProperty(field.Name); + var attributes = field.GetCustomAttributes(false).Cast().ToArray(); + var parameter = new SerializedParameterOverride(property, attributes); + m_Parameters.Add(parameter); + } + } + + /// + public override void OnInspectorGUI() + { + foreach (var parameter in m_Parameters) + PropertyField(parameter); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/DefaultPostProcessEffectEditor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/DefaultPostProcessEffectEditor.cs.meta new file mode 100644 index 0000000..9289be6 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/DefaultPostProcessEffectEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4b0cd5ddb61a56b4f86ea0fd0a102fe7 +timeCreated: 1492705253 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/DepthOfFieldEditor.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/DepthOfFieldEditor.cs new file mode 100644 index 0000000..9e58d67 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/DepthOfFieldEditor.cs @@ -0,0 +1,33 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [PostProcessEditor(typeof(DepthOfField))] + internal sealed class DepthOfFieldEditor : PostProcessEffectEditor + { + SerializedParameterOverride m_FocusDistance; + SerializedParameterOverride m_Aperture; + SerializedParameterOverride m_FocalLength; + SerializedParameterOverride m_KernelSize; + + public override void OnEnable() + { + m_FocusDistance = FindParameterOverride(x => x.focusDistance); + m_Aperture = FindParameterOverride(x => x.aperture); + m_FocalLength = FindParameterOverride(x => x.focalLength); + m_KernelSize = FindParameterOverride(x => x.kernelSize); + } + + public override void OnInspectorGUI() + { + if (SystemInfo.graphicsShaderLevel < 35) + EditorGUILayout.HelpBox("Depth Of Field is only supported on the following platforms:\nDX11+, OpenGL 3.2+, OpenGL ES 3+, Metal, Vulkan, PS4/XB1 consoles.", MessageType.Warning); + + PropertyField(m_FocusDistance); + PropertyField(m_Aperture); + PropertyField(m_FocalLength); + PropertyField(m_KernelSize); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/DepthOfFieldEditor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/DepthOfFieldEditor.cs.meta new file mode 100644 index 0000000..826cd59 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/DepthOfFieldEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: eb4c0b518e013c8418135b3bd8a91b6c +timeCreated: 1513004657 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/LensDistortionEditor.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/LensDistortionEditor.cs new file mode 100644 index 0000000..ed657a2 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/LensDistortionEditor.cs @@ -0,0 +1,16 @@ +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [PostProcessEditor(typeof(LensDistortion))] + internal sealed class LensDistortionEditor : DefaultPostProcessEffectEditor + { + public override void OnInspectorGUI() + { + if (RuntimeUtilities.isVREnabled) + EditorGUILayout.HelpBox("Lens Distortion is automatically disabled when VR is enabled.", MessageType.Warning); + + base.OnInspectorGUI(); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/LensDistortionEditor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/LensDistortionEditor.cs.meta new file mode 100644 index 0000000..f3b8147 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/LensDistortionEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7758395f983044344b2c8ea743e956c3 +timeCreated: 1519742257 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/ScreenSpaceReflectionsEditor.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/ScreenSpaceReflectionsEditor.cs new file mode 100644 index 0000000..8fe1451 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/ScreenSpaceReflectionsEditor.cs @@ -0,0 +1,58 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [PostProcessEditor(typeof(ScreenSpaceReflections))] + internal sealed class ScreenSpaceReflectionsEditor : PostProcessEffectEditor + { + SerializedParameterOverride m_Preset; + SerializedParameterOverride m_MaximumIterationCount; + SerializedParameterOverride m_Thickness; + SerializedParameterOverride m_Resolution; + SerializedParameterOverride m_MaximumMarchDistance; + SerializedParameterOverride m_DistanceFade; + SerializedParameterOverride m_Vignette; + + public override void OnEnable() + { + m_Preset = FindParameterOverride(x => x.preset); + m_MaximumIterationCount = FindParameterOverride(x => x.maximumIterationCount); + m_Thickness = FindParameterOverride(x => x.thickness); + m_Resolution = FindParameterOverride(x => x.resolution); + m_MaximumMarchDistance = FindParameterOverride(x => x.maximumMarchDistance); + m_DistanceFade = FindParameterOverride(x => x.distanceFade); + m_Vignette = FindParameterOverride(x => x.vignette); + } + + public override void OnInspectorGUI() + { + if (RuntimeUtilities.scriptableRenderPipelineActive) + { + EditorGUILayout.HelpBox("This effect doesn't work with scriptable render pipelines yet.", MessageType.Warning); + return; + } + + if (Camera.main != null && Camera.main.actualRenderingPath != RenderingPath.DeferredShading) + EditorGUILayout.HelpBox("This effect only works with the deferred rendering path.", MessageType.Warning); + + if (!SystemInfo.supportsComputeShaders) + EditorGUILayout.HelpBox("This effect requires compute shader support.", MessageType.Warning); + + PropertyField(m_Preset); + + if (m_Preset.value.intValue == (int)ScreenSpaceReflectionPreset.Custom) + { + PropertyField(m_MaximumIterationCount); + PropertyField(m_Thickness); + PropertyField(m_Resolution); + + EditorGUILayout.Space(); + } + + PropertyField(m_MaximumMarchDistance); + PropertyField(m_DistanceFade); + PropertyField(m_Vignette); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/ScreenSpaceReflectionsEditor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/ScreenSpaceReflectionsEditor.cs.meta new file mode 100644 index 0000000..1d8d116 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/ScreenSpaceReflectionsEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d798d5719bf3b434eafb013385f872eb +timeCreated: 1505226497 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/VignetteEditor.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/VignetteEditor.cs new file mode 100644 index 0000000..0351076 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/VignetteEditor.cs @@ -0,0 +1,91 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [PostProcessEditor(typeof(Vignette))] + internal sealed class VignetteEditor : PostProcessEffectEditor + { + SerializedParameterOverride m_Mode; + SerializedParameterOverride m_Color; + + SerializedParameterOverride m_Center; + SerializedParameterOverride m_Intensity; + SerializedParameterOverride m_Smoothness; + SerializedParameterOverride m_Roundness; + SerializedParameterOverride m_Rounded; + + SerializedParameterOverride m_Mask; + SerializedParameterOverride m_Opacity; + + public override void OnEnable() + { + m_Mode = FindParameterOverride(x => x.mode); + m_Color = FindParameterOverride(x => x.color); + + m_Center = FindParameterOverride(x => x.center); + m_Intensity = FindParameterOverride(x => x.intensity); + m_Smoothness = FindParameterOverride(x => x.smoothness); + m_Roundness = FindParameterOverride(x => x.roundness); + m_Rounded = FindParameterOverride(x => x.rounded); + + m_Mask = FindParameterOverride(x => x.mask); + m_Opacity = FindParameterOverride(x => x.opacity); + } + + public override void OnInspectorGUI() + { + PropertyField(m_Mode); + PropertyField(m_Color); + + if (m_Mode.value.intValue == (int)VignetteMode.Classic) + { + PropertyField(m_Center); + PropertyField(m_Intensity); + PropertyField(m_Smoothness); + PropertyField(m_Roundness); + PropertyField(m_Rounded); + } + else + { + PropertyField(m_Mask); + + var mask = (target as Vignette).mask.value; + + // Checks import settings on the mask + if (mask != null) + { + var importer = AssetImporter.GetAtPath(AssetDatabase.GetAssetPath(mask)) as TextureImporter; + + // Fails when using an internal texture as you can't change import settings on + // builtin resources, thus the check for null + if (importer != null) + { + bool valid = importer.anisoLevel == 0 + && importer.mipmapEnabled == false + && importer.alphaSource == TextureImporterAlphaSource.FromGrayScale + && importer.textureCompression == TextureImporterCompression.Uncompressed + && importer.wrapMode == TextureWrapMode.Clamp; + + if (!valid) + EditorUtilities.DrawFixMeBox("Invalid mask import settings.", () => SetMaskImportSettings(importer)); + } + } + + PropertyField(m_Opacity); + } + } + + void SetMaskImportSettings(TextureImporter importer) + { + importer.textureType = TextureImporterType.SingleChannel; + importer.alphaSource = TextureImporterAlphaSource.FromGrayScale; + importer.textureCompression = TextureImporterCompression.Uncompressed; + importer.anisoLevel = 0; + importer.mipmapEnabled = false; + importer.wrapMode = TextureWrapMode.Clamp; + importer.SaveAndReimport(); + AssetDatabase.Refresh(); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/VignetteEditor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/VignetteEditor.cs.meta new file mode 100644 index 0000000..d4da4fd --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Effects/VignetteEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3869d037332a74744a54736f00d62763 +timeCreated: 1492696599 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessDebugEditor.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessDebugEditor.cs new file mode 100644 index 0000000..49729d2 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessDebugEditor.cs @@ -0,0 +1,138 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [CustomEditor(typeof(PostProcessDebug))] + sealed class PostProcessDebugEditor : BaseEditor + { + SerializedProperty m_PostProcessLayer; + SerializedProperty m_LightMeterEnabled; + SerializedProperty m_HistogramEnabled; + SerializedProperty m_WaveformEnabled; + SerializedProperty m_VectorscopeEnabled; + SerializedProperty m_Overlay; + + SerializedObject m_LayerObject; + + SerializedProperty m_LightMeterShowCurves; + SerializedProperty m_HistogramChannel; + SerializedProperty m_WaveformExposure; + SerializedProperty m_VectorscopeExposure; + + SerializedProperty m_LinearDepth; + SerializedProperty m_MotionColorIntensity; + SerializedProperty m_MotionGridSize; + SerializedProperty m_ColorBlindness; + SerializedProperty m_ColorBlindnessStrength; + + void OnEnable() + { + m_PostProcessLayer = FindProperty(x => x.postProcessLayer); + m_LightMeterEnabled = FindProperty(x => x.lightMeter); + m_HistogramEnabled = FindProperty(x => x.histogram); + m_WaveformEnabled = FindProperty(x => x.waveform); + m_VectorscopeEnabled = FindProperty(x => x.vectorscope); + m_Overlay = FindProperty(x => x.debugOverlay); + + if (m_PostProcessLayer.objectReferenceValue != null) + RebuildProperties(); + } + + void RebuildProperties() + { + if (m_PostProcessLayer.objectReferenceValue == null) + return; + + m_LayerObject = new SerializedObject(m_Target.postProcessLayer); + + m_LightMeterShowCurves = m_LayerObject.FindProperty("debugLayer.lightMeter.showCurves"); + m_HistogramChannel = m_LayerObject.FindProperty("debugLayer.histogram.channel"); + m_WaveformExposure = m_LayerObject.FindProperty("debugLayer.waveform.exposure"); + m_VectorscopeExposure = m_LayerObject.FindProperty("debugLayer.vectorscope.exposure"); + + m_LinearDepth = m_LayerObject.FindProperty("debugLayer.overlaySettings.linearDepth"); + m_MotionColorIntensity = m_LayerObject.FindProperty("debugLayer.overlaySettings.motionColorIntensity"); + m_MotionGridSize = m_LayerObject.FindProperty("debugLayer.overlaySettings.motionGridSize"); + m_ColorBlindness = m_LayerObject.FindProperty("debugLayer.overlaySettings.colorBlindnessType"); + m_ColorBlindnessStrength = m_LayerObject.FindProperty("debugLayer.overlaySettings.colorBlindnessStrength"); + } + + public override void OnInspectorGUI() + { + serializedObject.Update(); + + using (var changed = new EditorGUI.ChangeCheckScope()) + { + EditorGUILayout.PropertyField(m_PostProcessLayer); + serializedObject.ApplyModifiedProperties(); // Needed to rebuild properties after a change + serializedObject.Update(); + + if (changed.changed) + RebuildProperties(); + } + + if (m_PostProcessLayer.objectReferenceValue != null) + { + m_LayerObject.Update(); + + // Overlays + EditorGUILayout.Space(); + EditorGUILayout.LabelField(EditorUtilities.GetContent("Overlay"), EditorStyles.boldLabel); + EditorGUI.indentLevel++; + EditorGUILayout.PropertyField(m_Overlay); + DoOverlayGUI(DebugOverlay.Depth, m_LinearDepth); + DoOverlayGUI(DebugOverlay.MotionVectors, m_MotionColorIntensity, m_MotionGridSize); + DoOverlayGUI(DebugOverlay.ColorBlindnessSimulation, m_ColorBlindness, m_ColorBlindnessStrength); + + // Special cases + if (m_Overlay.intValue == (int)DebugOverlay.NANTracker && m_Target.postProcessLayer.stopNaNPropagation) + EditorGUILayout.HelpBox("Disable \"Stop NaN Propagation\" in the Post-process layer or NaNs will be overwritten!", MessageType.Warning); + + EditorGUI.indentLevel--; + + // Monitors + EditorGUILayout.Space(); + EditorGUILayout.LabelField(EditorUtilities.GetContent("Monitors"), EditorStyles.boldLabel); + EditorGUI.indentLevel++; + DoMonitorGUI(EditorUtilities.GetContent("Light Meter"), m_LightMeterEnabled, m_LightMeterShowCurves); + DoMonitorGUI(EditorUtilities.GetContent("Histogram"), m_HistogramEnabled, m_HistogramChannel); + DoMonitorGUI(EditorUtilities.GetContent("Waveform"), m_WaveformEnabled, m_WaveformExposure); + DoMonitorGUI(EditorUtilities.GetContent("Vectoscope"), m_VectorscopeEnabled, m_VectorscopeExposure); + EditorGUI.indentLevel--; + + m_LayerObject.ApplyModifiedProperties(); + } + + serializedObject.ApplyModifiedProperties(); + } + + void DoMonitorGUI(GUIContent content, SerializedProperty prop, params SerializedProperty[] settings) + { + EditorGUILayout.PropertyField(prop, content); + + if (settings == null || settings.Length == 0) + return; + + if (prop.boolValue) + { + EditorGUI.indentLevel++; + foreach (var p in settings) + EditorGUILayout.PropertyField(p); + EditorGUI.indentLevel--; + } + } + + void DoOverlayGUI(DebugOverlay overlay, params SerializedProperty[] settings) + { + if (m_Overlay.intValue != (int)overlay) + return; + + if (settings == null || settings.Length == 0) + return; + + foreach (var p in settings) + EditorGUILayout.PropertyField(p); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessDebugEditor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessDebugEditor.cs.meta new file mode 100644 index 0000000..c58dbc5 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessDebugEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 75be0b76c5da33a41a2e679cfb7f453c +timeCreated: 1499771607 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessEffectBaseEditor.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessEffectBaseEditor.cs new file mode 100644 index 0000000..c44a047 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessEffectBaseEditor.cs @@ -0,0 +1,216 @@ +using System; +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// The base class for all post-processing effect related editors. If you want to customize the + /// look of a custom post-processing effect, inherit from + /// instead. + /// + /// + public class PostProcessEffectBaseEditor + { + internal PostProcessEffectSettings target { get; private set; } + internal SerializedObject serializedObject { get; private set; } + + internal SerializedProperty baseProperty; + internal SerializedProperty activeProperty; + + SerializedProperty m_Enabled; + Editor m_Inspector; + + internal PostProcessEffectBaseEditor() + { + } + + /// + /// Repaints the inspector. + /// + public void Repaint() + { + m_Inspector.Repaint(); + } + + internal void Init(PostProcessEffectSettings target, Editor inspector) + { + this.target = target; + m_Inspector = inspector; + serializedObject = new SerializedObject(target); + m_Enabled = serializedObject.FindProperty("enabled.value"); + activeProperty = serializedObject.FindProperty("active"); + OnEnable(); + } + + /// + /// Called when the editor is initialized. + /// + public virtual void OnEnable() + { + } + + /// + /// Called when the editor is de-initialized. + /// + public virtual void OnDisable() + { + } + + internal void OnInternalInspectorGUI() + { + serializedObject.Update(); + TopRowFields(); + OnInspectorGUI(); + EditorGUILayout.Space(); + serializedObject.ApplyModifiedProperties(); + } + + /// + /// Called every time the inspector is being redrawn. This is where you should add your UI + /// drawing code. + /// + public virtual void OnInspectorGUI() + { + } + + /// + /// Returns the label to use as the effect title. You can override this to return a custom + /// label, else it will use the effect type as the title. + /// + /// The label to use as the effect title + public virtual string GetDisplayTitle() + { + return ObjectNames.NicifyVariableName(target.GetType().Name); + } + + void TopRowFields() + { + using (new EditorGUILayout.HorizontalScope()) + { + if (GUILayout.Button(EditorUtilities.GetContent("All|Toggle all overrides on. To maximize performances you should only toggle overrides that you actually need."), Styling.miniLabelButton, GUILayout.Width(17f), GUILayout.ExpandWidth(false))) + SetAllOverridesTo(true); + + if (GUILayout.Button(EditorUtilities.GetContent("None|Toggle all overrides off."), Styling.miniLabelButton, GUILayout.Width(32f), GUILayout.ExpandWidth(false))) + SetAllOverridesTo(false); + + GUILayout.FlexibleSpace(); + + bool enabled = m_Enabled.boolValue; + enabled = GUILayout.Toggle(enabled, EditorUtilities.GetContent("On|Enable this effect."), EditorStyles.miniButtonLeft, GUILayout.Width(35f), GUILayout.ExpandWidth(false)); + enabled = !GUILayout.Toggle(!enabled, EditorUtilities.GetContent("Off|Disable this effect."), EditorStyles.miniButtonRight, GUILayout.Width(35f), GUILayout.ExpandWidth(false)); + m_Enabled.boolValue = enabled; + } + } + + void SetAllOverridesTo(bool state) + { + Undo.RecordObject(target, "Toggle All"); + target.SetAllOverridesTo(state); + serializedObject.Update(); + } + + /// + /// Draws a property UI element. + /// + /// The property to draw + protected void PropertyField(SerializedParameterOverride property) + { + var title = EditorUtilities.GetContent(property.displayName); + PropertyField(property, title); + } + + /// + /// Draws a property UI element with a custom title and/or tooltip. + /// + /// The property to draw + /// A custom title and/or tooltip + protected void PropertyField(SerializedParameterOverride property, GUIContent title) + { + // Check for DisplayNameAttribute first + var displayNameAttr = property.GetAttribute(); + if (displayNameAttr != null) + title.text = displayNameAttr.displayName; + + // Add tooltip if it's missing and an attribute is available + if (string.IsNullOrEmpty(title.tooltip)) + { + var tooltipAttr = property.GetAttribute(); + if (tooltipAttr != null) + title.tooltip = tooltipAttr.tooltip; + } + + // Look for a compatible attribute decorator + AttributeDecorator decorator = null; + Attribute attribute = null; + + foreach (var attr in property.attributes) + { + // Use the first decorator we found + if (decorator == null) + { + decorator = EditorUtilities.GetDecorator(attr.GetType()); + attribute = attr; + } + + // Draw unity built-in Decorators (Space, Header) + if (attr is PropertyAttribute) + { + if (attr is SpaceAttribute) + { + EditorGUILayout.GetControlRect(false, (attr as SpaceAttribute).height); + } + else if (attr is HeaderAttribute) + { + var rect = EditorGUILayout.GetControlRect(false, 24f); + rect.y += 8f; + rect = EditorGUI.IndentedRect(rect); + EditorGUI.LabelField(rect, (attr as HeaderAttribute).header, Styling.headerLabel); + } + } + } + + bool invalidProp = false; + + if (decorator != null && !decorator.IsAutoProperty()) + { + if (decorator.OnGUI(property.value, property.overrideState, title, attribute)) + return; + + // Attribute is invalid for the specified property; use default unity field instead + invalidProp = true; + } + + using (new EditorGUILayout.HorizontalScope()) + { + // Override checkbox + var overrideRect = GUILayoutUtility.GetRect(17f, 17f, GUILayout.ExpandWidth(false)); + overrideRect.yMin += 4f; + EditorUtilities.DrawOverrideCheckbox(overrideRect, property.overrideState); + + // Property + using (new EditorGUI.DisabledScope(!property.overrideState.boolValue)) + { + if (decorator != null && !invalidProp) + { + if (decorator.OnGUI(property.value, property.overrideState, title, attribute)) + return; + } + + // Default unity field + if (property.value.hasVisibleChildren + && property.value.propertyType != SerializedPropertyType.Vector2 + && property.value.propertyType != SerializedPropertyType.Vector3) + { + GUILayout.Space(12f); + EditorGUILayout.PropertyField(property.value, title, true); + } + else + { + EditorGUILayout.PropertyField(property.value, title); + } + } + } + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessEffectBaseEditor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessEffectBaseEditor.cs.meta new file mode 100644 index 0000000..9cf37b8 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessEffectBaseEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5a7e5d36c781f1a469ea8f981b785506 +timeCreated: 1492689813 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessEffectEditor.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessEffectEditor.cs new file mode 100644 index 0000000..74fcf25 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessEffectEditor.cs @@ -0,0 +1,88 @@ +using System; +using System.Linq.Expressions; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// The class to inherit from when designing custom effect editors. + /// + /// The effect type to create an editor for + public class PostProcessEffectEditor : PostProcessEffectBaseEditor + where T : PostProcessEffectSettings + { + /// + /// Find a serialized property using an expression instead of a string. This is safer as it + /// helps avoiding typos and make code refactoring easier. + /// + /// The serialized value type + /// The expression to parse to reach the property + /// A or null if none was found + /// + /// + /// [Serializable] + /// public class MyEffect : PostProcessEffectSettings + /// { + /// public float myParameter = 1f; + /// } + /// + /// [PostProcessEditor(typeof(MyEffect))] + /// public class MyEffectEditor : PostProcessEffectEditor<MyEffect> + /// { + /// SerializedProperty m_MyParameter; + /// + /// public override void OnEnable() + /// { + /// m_MyParameter = FindProperty(x => x.myParameter); + /// } + /// } + /// + /// + /// + /// If you're trying to retrieve a , you should + /// use instead. + /// + /// + /// + protected SerializedProperty FindProperty(Expression> expr) + { + return serializedObject.FindProperty(RuntimeUtilities.GetFieldPath(expr)); + } + + /// + /// Find a serialized parameter override using an expression instead of a string. This is + /// safer as it helps avoiding typos and make code refactoring easier. + /// + /// The serialized value type + /// The expression to parse to reach the parameter override + /// A or null if none was + /// found + /// + /// + /// [Serializable] + /// public class MyEffect : PostProcessEffectSettings + /// { + /// public FloatParameter myParameter = new FloatParameter { value = 1f }; + /// } + /// + /// [PostProcessEditor(typeof(MyEffect))] + /// public class MyEffectEditor : PostProcessEffectEditor<MyEffect> + /// { + /// SerializedParameterOverride m_MyParameter; + /// + /// public override void OnEnable() + /// { + /// m_MyParameter = FindParameterOverride(x => x.myParameter); + /// } + /// } + /// + /// + /// + protected SerializedParameterOverride FindParameterOverride(Expression> expr) + { + var property = serializedObject.FindProperty(RuntimeUtilities.GetFieldPath(expr)); + var attributes = RuntimeUtilities.GetMemberAttributes(expr); + return new SerializedParameterOverride(property, attributes); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessEffectEditor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessEffectEditor.cs.meta new file mode 100644 index 0000000..dd6be58 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessEffectEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e81ec1796a6c9844f9ab3847494d7911 +timeCreated: 1492690838 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessLayerEditor.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessLayerEditor.cs new file mode 100644 index 0000000..6d8a2d3 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessLayerEditor.cs @@ -0,0 +1,422 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; +using UnityEditorInternal; +using System.IO; + +namespace UnityEditor.Rendering.PostProcessing +{ + using SerializedBundleRef = PostProcessLayer.SerializedBundleRef; + using EXRFlags = Texture2D.EXRFlags; + + [CanEditMultipleObjects, CustomEditor(typeof(PostProcessLayer))] + sealed class PostProcessLayerEditor : BaseEditor + { + SerializedProperty m_StopNaNPropagation; +#pragma warning disable 414 + SerializedProperty m_DirectToCameraTarget; +#pragma warning restore 414 + SerializedProperty m_VolumeTrigger; + SerializedProperty m_VolumeLayer; + + SerializedProperty m_AntialiasingMode; + SerializedProperty m_TaaJitterSpread; + SerializedProperty m_TaaSharpness; + SerializedProperty m_TaaStationaryBlending; + SerializedProperty m_TaaMotionBlending; + SerializedProperty m_SmaaQuality; + SerializedProperty m_FxaaFastMode; + SerializedProperty m_FxaaKeepAlpha; + + SerializedProperty m_FogEnabled; + SerializedProperty m_FogExcludeSkybox; + + SerializedProperty m_ShowToolkit; + SerializedProperty m_ShowCustomSorter; + + Dictionary m_CustomLists; + + static GUIContent[] s_AntialiasingMethodNames = + { + new GUIContent("No Anti-aliasing"), + new GUIContent("Fast Approximate Anti-aliasing (FXAA)"), + new GUIContent("Subpixel Morphological Anti-aliasing (SMAA)"), + new GUIContent("Temporal Anti-aliasing (TAA)") + }; + + enum ExportMode + { + FullFrame, + DisablePost, + BreakBeforeColorGradingLinear, + BreakBeforeColorGradingLog + } + + void OnEnable() + { + m_StopNaNPropagation = FindProperty(x => x.stopNaNPropagation); + m_DirectToCameraTarget = FindProperty(x => x.finalBlitToCameraTarget); + m_VolumeTrigger = FindProperty(x => x.volumeTrigger); + m_VolumeLayer = FindProperty(x => x.volumeLayer); + + m_AntialiasingMode = FindProperty(x => x.antialiasingMode); + m_TaaJitterSpread = FindProperty(x => x.temporalAntialiasing.jitterSpread); + m_TaaSharpness = FindProperty(x => x.temporalAntialiasing.sharpness); + m_TaaStationaryBlending = FindProperty(x => x.temporalAntialiasing.stationaryBlending); + m_TaaMotionBlending = FindProperty(x => x.temporalAntialiasing.motionBlending); + m_SmaaQuality = FindProperty(x => x.subpixelMorphologicalAntialiasing.quality); + m_FxaaFastMode = FindProperty(x => x.fastApproximateAntialiasing.fastMode); + m_FxaaKeepAlpha = FindProperty(x => x.fastApproximateAntialiasing.keepAlpha); + + m_FogEnabled = FindProperty(x => x.fog.enabled); + m_FogExcludeSkybox = FindProperty(x => x.fog.excludeSkybox); + + m_ShowToolkit = serializedObject.FindProperty("m_ShowToolkit"); + m_ShowCustomSorter = serializedObject.FindProperty("m_ShowCustomSorter"); + } + + void OnDisable() + { + m_CustomLists = null; + } + + public override void OnInspectorGUI() + { + serializedObject.Update(); + + var camera = m_Target.GetComponent(); + + #if !UNITY_2017_2_OR_NEWER + if (RuntimeUtilities.isSinglePassStereoSelected) + EditorGUILayout.HelpBox("Unity 2017.2+ required for full Single-pass stereo rendering support.", MessageType.Warning); + #endif + + DoVolumeBlending(); + DoAntialiasing(); + DoFog(camera); + + EditorGUILayout.PropertyField(m_StopNaNPropagation, EditorUtilities.GetContent("Stop NaN Propagation|Automatically replaces NaN/Inf in shaders by a black pixel to avoid breaking some effects. This will slightly affect performances and should only be used if you experience NaN issues that you can't fix. Has no effect on GLES2 platforms.")); + +#if UNITY_2019_1_OR_NEWER + if (!RuntimeUtilities.scriptableRenderPipelineActive) + EditorGUILayout.PropertyField(m_DirectToCameraTarget, EditorUtilities.GetContent("Directly to Camera Target|Use the final blit to the camera render target for postprocessing. This has less overhead but breaks compatibility with legacy image effect that use OnRenderImage.")); +#endif + + EditorGUILayout.Space(); + + DoToolkit(); + DoCustomEffectSorter(); + + EditorUtilities.DrawSplitter(); + EditorGUILayout.Space(); + + serializedObject.ApplyModifiedProperties(); + } + + void DoVolumeBlending() + { + EditorGUILayout.LabelField(EditorUtilities.GetContent("Volume blending"), EditorStyles.boldLabel); + EditorGUI.indentLevel++; + { + // The layout system sort of break alignement when mixing inspector fields with + // custom layouted fields, do the layout manually instead + var indentOffset = EditorGUI.indentLevel * 15f; + var lineRect = GUILayoutUtility.GetRect(1, EditorGUIUtility.singleLineHeight); + var labelRect = new Rect(lineRect.x, lineRect.y, EditorGUIUtility.labelWidth - indentOffset, lineRect.height); + var fieldRect = new Rect(labelRect.xMax, lineRect.y, lineRect.width - labelRect.width - 60f, lineRect.height); + var buttonRect = new Rect(fieldRect.xMax, lineRect.y, 60f, lineRect.height); + + EditorGUI.PrefixLabel(labelRect, EditorUtilities.GetContent("Trigger|A transform that will act as a trigger for volume blending.")); + m_VolumeTrigger.objectReferenceValue = (Transform)EditorGUI.ObjectField(fieldRect, m_VolumeTrigger.objectReferenceValue, typeof(Transform), true); + if (GUI.Button(buttonRect, EditorUtilities.GetContent("This|Assigns the current GameObject as a trigger."), EditorStyles.miniButton)) + m_VolumeTrigger.objectReferenceValue = m_Target.transform; + + if (m_VolumeTrigger.objectReferenceValue == null) + EditorGUILayout.HelpBox("No trigger has been set, the camera will only be affected by global volumes.", MessageType.Info); + + EditorGUILayout.PropertyField(m_VolumeLayer, EditorUtilities.GetContent("Layer|This camera will only be affected by volumes in the selected scene-layers.")); + + int mask = m_VolumeLayer.intValue; + if (mask == 0) + EditorGUILayout.HelpBox("No layer has been set, the trigger will never be affected by volumes.", MessageType.Warning); + else if (mask == -1 || ((mask & 1) != 0)) + EditorGUILayout.HelpBox("Do not use \"Everything\" or \"Default\" as a layer mask as it will slow down the volume blending process! Put post-processing volumes in their own dedicated layer for best performances.", MessageType.Warning); + } + EditorGUI.indentLevel--; + + EditorGUILayout.Space(); + } + + void DoAntialiasing() + { + EditorGUILayout.LabelField(EditorUtilities.GetContent("Anti-aliasing"), EditorStyles.boldLabel); + EditorGUI.indentLevel++; + { + m_AntialiasingMode.intValue = EditorGUILayout.Popup(EditorUtilities.GetContent("Mode|The anti-aliasing method to use. FXAA is fast but low quality. SMAA works well for non-HDR scenes. TAA is a bit slower but higher quality and works well with HDR."), m_AntialiasingMode.intValue, s_AntialiasingMethodNames); + + if (m_AntialiasingMode.intValue == (int)PostProcessLayer.Antialiasing.TemporalAntialiasing) + { + #if !UNITY_2017_3_OR_NEWER + if (RuntimeUtilities.isSinglePassStereoSelected) + EditorGUILayout.HelpBox("TAA requires Unity 2017.3+ for Single-pass stereo rendering support.", MessageType.Warning); + #endif + + EditorGUILayout.PropertyField(m_TaaJitterSpread); + EditorGUILayout.PropertyField(m_TaaStationaryBlending); + EditorGUILayout.PropertyField(m_TaaMotionBlending); + EditorGUILayout.PropertyField(m_TaaSharpness); + } + else if (m_AntialiasingMode.intValue == (int)PostProcessLayer.Antialiasing.SubpixelMorphologicalAntialiasing) + { + if (RuntimeUtilities.isSinglePassStereoSelected) + EditorGUILayout.HelpBox("SMAA doesn't work with Single-pass stereo rendering.", MessageType.Warning); + + EditorGUILayout.PropertyField(m_SmaaQuality); + + if (m_SmaaQuality.intValue != (int)SubpixelMorphologicalAntialiasing.Quality.Low && EditorUtilities.isTargetingConsolesOrMobiles) + EditorGUILayout.HelpBox("For performance reasons it is recommended to use Low Quality on mobile and console platforms.", MessageType.Warning); + } + else if (m_AntialiasingMode.intValue == (int)PostProcessLayer.Antialiasing.FastApproximateAntialiasing) + { + EditorGUILayout.PropertyField(m_FxaaFastMode); + EditorGUILayout.PropertyField(m_FxaaKeepAlpha); + + if (!m_FxaaFastMode.boolValue && EditorUtilities.isTargetingConsolesOrMobiles) + EditorGUILayout.HelpBox("For performance reasons it is recommended to use Fast Mode on mobile and console platforms.", MessageType.Warning); + } + } + EditorGUI.indentLevel--; + + EditorGUILayout.Space(); + } + + void DoFog(Camera camera) + { + if (camera == null || camera.actualRenderingPath != RenderingPath.DeferredShading) + return; + + EditorGUILayout.LabelField(EditorUtilities.GetContent("Deferred Fog"), EditorStyles.boldLabel); + EditorGUI.indentLevel++; + { + EditorGUILayout.PropertyField(m_FogEnabled); + + if (m_FogEnabled.boolValue) + { + EditorGUILayout.PropertyField(m_FogExcludeSkybox); + EditorGUILayout.HelpBox("This adds fog compatibility to the deferred rendering path; actual fog settings should be set in the Lighting panel.", MessageType.Info); + } + } + EditorGUI.indentLevel--; + + EditorGUILayout.Space(); + } + + void DoToolkit() + { + EditorUtilities.DrawSplitter(); + m_ShowToolkit.boolValue = EditorUtilities.DrawHeader("Toolkit", m_ShowToolkit.boolValue); + + if (m_ShowToolkit.boolValue) + { + GUILayout.Space(2); + + if (GUILayout.Button(EditorUtilities.GetContent("Export frame to EXR..."), EditorStyles.miniButton)) + { + var menu = new GenericMenu(); + menu.AddItem(EditorUtilities.GetContent("Full Frame (as displayed)"), false, () => ExportFrameToExr(ExportMode.FullFrame)); + menu.AddItem(EditorUtilities.GetContent("Disable post-processing"), false, () => ExportFrameToExr(ExportMode.DisablePost)); + menu.AddItem(EditorUtilities.GetContent("Break before Color Grading (Linear)"), false, () => ExportFrameToExr(ExportMode.BreakBeforeColorGradingLinear)); + menu.AddItem(EditorUtilities.GetContent("Break before Color Grading (Log)"), false, () => ExportFrameToExr(ExportMode.BreakBeforeColorGradingLog)); + menu.ShowAsContext(); + } + + if (GUILayout.Button(EditorUtilities.GetContent("Select all layer volumes|Selects all the volumes that will influence this layer."), EditorStyles.miniButton)) + { + var volumes = RuntimeUtilities.GetAllSceneObjects() + .Where(x => (m_VolumeLayer.intValue & (1 << x.gameObject.layer)) != 0) + .Select(x => x.gameObject) + .Cast() + .ToArray(); + + if (volumes.Length > 0) + Selection.objects = volumes; + } + + if (GUILayout.Button(EditorUtilities.GetContent("Select all active volumes|Selects all volumes currently affecting the layer."), EditorStyles.miniButton)) + { + var volumes = new List(); + PostProcessManager.instance.GetActiveVolumes(m_Target, volumes); + + if (volumes.Count > 0) + { + Selection.objects = volumes + .Select(x => x.gameObject) + .Cast() + .ToArray(); + } + } + + GUILayout.Space(3); + } + } + + void DoCustomEffectSorter() + { + EditorUtilities.DrawSplitter(); + m_ShowCustomSorter.boolValue = EditorUtilities.DrawHeader("Custom Effect Sorting", m_ShowCustomSorter.boolValue); + + if (m_ShowCustomSorter.boolValue) + { + bool isInPrefab = false; + + // Init lists if needed + if (m_CustomLists == null) + { + // In some cases the editor will refresh before components which means + // components might not have been fully initialized yet. In this case we also + // need to make sure that we're not in a prefab as sorteBundles isn't a + // serializable object and won't exist until put on a scene. + if (m_Target.sortedBundles == null) + { + isInPrefab = string.IsNullOrEmpty(m_Target.gameObject.scene.name); + + if (!isInPrefab) + { + // sortedBundles will be initialized and ready to use on the next frame + Repaint(); + } + } + else + { + // Create a reorderable list for each injection event + m_CustomLists = new Dictionary(); + foreach (var evt in Enum.GetValues(typeof(PostProcessEvent)).Cast()) + { + var bundles = m_Target.sortedBundles[evt]; + var listName = ObjectNames.NicifyVariableName(evt.ToString()); + + var list = new ReorderableList(bundles, typeof(SerializedBundleRef), true, true, false, false); + + list.drawHeaderCallback = (rect) => + { + EditorGUI.LabelField(rect, listName); + }; + + list.drawElementCallback = (rect, index, isActive, isFocused) => + { + var sbr = (SerializedBundleRef)list.list[index]; + EditorGUI.LabelField(rect, sbr.bundle.attribute.menuItem); + }; + + list.onReorderCallback = (l) => + { + EditorUtility.SetDirty(m_Target); + }; + + m_CustomLists.Add(evt, list); + } + } + } + + GUILayout.Space(5); + + if (isInPrefab) + { + EditorGUILayout.HelpBox("Not supported in prefabs.", MessageType.Info); + GUILayout.Space(3); + return; + } + + bool anyList = false; + if (m_CustomLists != null) + { + foreach (var kvp in m_CustomLists) + { + var list = kvp.Value; + + // Skip empty lists to avoid polluting the inspector + if (list.count == 0) + continue; + + list.DoLayoutList(); + anyList = true; + } + } + + if (!anyList) + { + EditorGUILayout.HelpBox("No custom effect loaded.", MessageType.Info); + GUILayout.Space(3); + } + } + } + + void ExportFrameToExr(ExportMode mode) + { + string path = EditorUtility.SaveFilePanel("Export EXR...", "", "Frame", "exr"); + + if (string.IsNullOrEmpty(path)) + return; + + EditorUtility.DisplayProgressBar("Export EXR", "Rendering...", 0f); + + var camera = m_Target.GetComponent(); + var w = camera.pixelWidth; + var h = camera.pixelHeight; + + var texOut = new Texture2D(w, h, TextureFormat.RGBAFloat, false, true); + var target = RenderTexture.GetTemporary(w, h, 24, RenderTextureFormat.ARGBFloat, RenderTextureReadWrite.Linear); + + var lastActive = RenderTexture.active; + var lastTargetSet = camera.targetTexture; + var lastPostFXState = m_Target.enabled; + var lastBreakColorGradingState = m_Target.breakBeforeColorGrading; + + if (mode == ExportMode.DisablePost) + m_Target.enabled = false; + else if (mode == ExportMode.BreakBeforeColorGradingLinear || mode == ExportMode.BreakBeforeColorGradingLog) + m_Target.breakBeforeColorGrading = true; + + camera.targetTexture = target; + camera.Render(); + camera.targetTexture = lastTargetSet; + + EditorUtility.DisplayProgressBar("Export EXR", "Reading...", 0.25f); + + m_Target.enabled = lastPostFXState; + m_Target.breakBeforeColorGrading = lastBreakColorGradingState; + + if (mode == ExportMode.BreakBeforeColorGradingLog) + { + // Convert to log + var material = new Material(Shader.Find("Hidden/PostProcessing/Editor/ConvertToLog")); + var newTarget = RenderTexture.GetTemporary(w, h, 0, RenderTextureFormat.ARGBFloat, RenderTextureReadWrite.Linear); + Graphics.Blit(target, newTarget, material, 0); + RenderTexture.ReleaseTemporary(target); + DestroyImmediate(material); + target = newTarget; + } + + RenderTexture.active = target; + texOut.ReadPixels(new Rect(0, 0, w, h), 0, 0); + texOut.Apply(); + RenderTexture.active = lastActive; + + EditorUtility.DisplayProgressBar("Export EXR", "Encoding...", 0.5f); + + var bytes = texOut.EncodeToEXR(EXRFlags.OutputAsFloat | EXRFlags.CompressZIP); + + EditorUtility.DisplayProgressBar("Export EXR", "Saving...", 0.75f); + + File.WriteAllBytes(path, bytes); + + EditorUtility.ClearProgressBar(); + AssetDatabase.Refresh(); + + RenderTexture.ReleaseTemporary(target); + DestroyImmediate(texOut); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessLayerEditor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessLayerEditor.cs.meta new file mode 100644 index 0000000..1819aa2 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessLayerEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2c89984c2a3e6cd4492c6f695f07bae6 +timeCreated: 1488275719 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessProfileEditor.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessProfileEditor.cs new file mode 100644 index 0000000..2f586c3 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessProfileEditor.cs @@ -0,0 +1,29 @@ +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [CustomEditor(typeof(PostProcessProfile))] + sealed class PostProcessProfileEditor : Editor + { + EffectListEditor m_EffectList; + + void OnEnable() + { + m_EffectList = new EffectListEditor(this); + m_EffectList.Init(target as PostProcessProfile, serializedObject); + } + + void OnDisable() + { + if (m_EffectList != null) + m_EffectList.Clear(); + } + + public override void OnInspectorGUI() + { + serializedObject.Update(); + m_EffectList.OnGUI(); + serializedObject.ApplyModifiedProperties(); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessProfileEditor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessProfileEditor.cs.meta new file mode 100644 index 0000000..6357b95 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessProfileEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1fcb2f1e4a7d9ba42bc5940a5611f302 +timeCreated: 1494339151 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessVolumeEditor.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessVolumeEditor.cs new file mode 100644 index 0000000..728437e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessVolumeEditor.cs @@ -0,0 +1,166 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + [CanEditMultipleObjects, CustomEditor(typeof(PostProcessVolume))] + sealed class PostProcessVolumeEditor : BaseEditor + { + SerializedProperty m_Profile; + + SerializedProperty m_IsGlobal; + SerializedProperty m_BlendRadius; + SerializedProperty m_Weight; + SerializedProperty m_Priority; + + EffectListEditor m_EffectList; + + void OnEnable() + { + m_Profile = FindProperty(x => x.sharedProfile); + + m_IsGlobal = FindProperty(x => x.isGlobal); + m_BlendRadius = FindProperty(x => x.blendDistance); + m_Weight = FindProperty(x => x.weight); + m_Priority = FindProperty(x => x.priority); + + m_EffectList = new EffectListEditor(this); + RefreshEffectListEditor(m_Target.sharedProfile); + } + + void OnDisable() + { + if (m_EffectList != null) + m_EffectList.Clear(); + } + + void RefreshEffectListEditor(PostProcessProfile asset) + { + m_EffectList.Clear(); + + if (asset != null) + m_EffectList.Init(asset, new SerializedObject(asset)); + } + + public override void OnInspectorGUI() + { + serializedObject.Update(); + + EditorGUILayout.PropertyField(m_IsGlobal); + + if (!m_IsGlobal.boolValue) // Blend radius is not needed for global volumes + EditorGUILayout.PropertyField(m_BlendRadius); + + EditorGUILayout.PropertyField(m_Weight); + EditorGUILayout.PropertyField(m_Priority); + + bool assetHasChanged = false; + bool showCopy = m_Profile.objectReferenceValue != null; + bool multiEdit = m_Profile.hasMultipleDifferentValues; + + // The layout system sort of break alignement when mixing inspector fields with custom + // layouted fields, do the layout manually instead + int buttonWidth = showCopy ? 45 : 60; + float indentOffset = EditorGUI.indentLevel * 15f; + var lineRect = GUILayoutUtility.GetRect(1, EditorGUIUtility.singleLineHeight); + var labelRect = new Rect(lineRect.x, lineRect.y, EditorGUIUtility.labelWidth - indentOffset, lineRect.height); + var fieldRect = new Rect(labelRect.xMax, lineRect.y, lineRect.width - labelRect.width - buttonWidth * (showCopy ? 2 : 1), lineRect.height); + var buttonNewRect = new Rect(fieldRect.xMax, lineRect.y, buttonWidth, lineRect.height); + var buttonCopyRect = new Rect(buttonNewRect.xMax, lineRect.y, buttonWidth, lineRect.height); + + EditorGUI.PrefixLabel(labelRect, EditorUtilities.GetContent(m_Target.HasInstantiatedProfile() ? "Profile (Instance)|A copy of a profile asset." : "Profile|A reference to a profile asset.")); + + using (var scope = new EditorGUI.ChangeCheckScope()) + { + EditorGUI.BeginProperty(fieldRect, GUIContent.none, m_Profile); + PostProcessProfile profile = null; + + if (m_Target.HasInstantiatedProfile()) + profile = (PostProcessProfile)EditorGUI.ObjectField(fieldRect, m_Target.profile, typeof(PostProcessProfile), false); + else + profile = (PostProcessProfile)EditorGUI.ObjectField(fieldRect, m_Profile.objectReferenceValue, typeof(PostProcessProfile), false); + + if (scope.changed) + { + assetHasChanged = true; + + m_Profile.objectReferenceValue = profile; + + if (m_Target.HasInstantiatedProfile()) // Clear the instantiated profile, from now on we're using shared again. + m_Target.profile = null; + } + + EditorGUI.EndProperty(); + } + + using (new EditorGUI.DisabledScope(multiEdit)) + { + if (GUI.Button(buttonNewRect, EditorUtilities.GetContent("New|Create a new profile."), showCopy ? EditorStyles.miniButtonLeft : EditorStyles.miniButton)) + { + // By default, try to put assets in a folder next to the currently active + // scene file. If the user isn't a scene, put them in root instead. + var targetName = m_Target.name; + var scene = m_Target.gameObject.scene; + var asset = ProfileFactory.CreatePostProcessProfile(scene, targetName); + m_Profile.objectReferenceValue = asset; + m_Target.profile = null; // Make sure we're not using an instantiated profile anymore + + assetHasChanged = true; + } + + if (showCopy && GUI.Button(buttonCopyRect, EditorUtilities.GetContent(m_Target.HasInstantiatedProfile() ? "Save|Save the instantiated profile" : "Clone|Create a new profile and copy the content of the currently assigned profile."), EditorStyles.miniButtonRight)) + { + // Duplicate the currently assigned profile and save it as a new profile + var origin = profileRef; + var path = AssetDatabase.GetAssetPath(m_Profile.objectReferenceValue); + path = AssetDatabase.GenerateUniqueAssetPath(path); + + var asset = Instantiate(origin); + asset.settings.Clear(); + AssetDatabase.CreateAsset(asset, path); + + foreach (var item in origin.settings) + { + var itemCopy = Instantiate(item); + itemCopy.hideFlags = HideFlags.HideInInspector | HideFlags.HideInHierarchy; + itemCopy.name = item.name; + asset.settings.Add(itemCopy); + AssetDatabase.AddObjectToAsset(itemCopy, asset); + } + + AssetDatabase.SaveAssets(); + AssetDatabase.Refresh(); + + m_Profile.objectReferenceValue = asset; + m_Target.profile = null; // Make sure we're not using an instantiated profile anymore + assetHasChanged = true; + } + } + + EditorGUILayout.Space(); + + if (m_Profile.objectReferenceValue == null && !m_Target.HasInstantiatedProfile()) + { + if (assetHasChanged) + m_EffectList.Clear(); // Asset wasn't null before, do some cleanup + + EditorGUILayout.HelpBox("Assign a Post-process Profile to this volume using the \"Asset\" field or create one automatically by clicking the \"New\" button.\nAssets are automatically put in a folder next to your scene file. If you scene hasn't been saved yet they will be created at the root of the Assets folder.", MessageType.Info); + } + else + { + if (assetHasChanged || profileRef != m_EffectList.asset) //Refresh when the user just dragged in a new asset, or when it was instantiated by code. + RefreshEffectListEditor(profileRef); + + if (!multiEdit) + m_EffectList.OnGUI(); + } + + serializedObject.ApplyModifiedProperties(); + } + + public PostProcessProfile profileRef + { + get { return m_Target.HasInstantiatedProfile() ? m_Target.profile : m_Target.sharedProfile; } + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessVolumeEditor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessVolumeEditor.cs.meta new file mode 100644 index 0000000..237ca4d --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/PostProcessVolumeEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4e487364a0cd33f4a9ef2ed93819d4d7 +timeCreated: 1488201040 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Tools.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools.meta new file mode 100644 index 0000000..813d5f4 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: e58158d9d8b440d4ca944a07d6cde9af +folderAsset: yes +timeCreated: 1496736709 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/CubeLutAssetFactory.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/CubeLutAssetFactory.cs new file mode 100644 index 0000000..2110ee0 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/CubeLutAssetFactory.cs @@ -0,0 +1,58 @@ +using System; +using System.IO; +using System.Text; +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + // CUBE lut specs: + // http://wwwimages.adobe.com/content/dam/Adobe/en/products/speedgrade/cc/pdfs/cube-lut-specification-1.0.pdf + static class CubeLutAssetFactory + { + const int kVersion = 1; + const int kSize = 33; + +#if POSTFX_DEBUG_MENUS + [MenuItem("Tools/Post-processing/Create Utility Luts")] +#endif + static void CreateLuts() + { + Dump("Linear to Unity Log r" + kVersion, ColorUtilities.LinearToLogC); + Dump("Unity Log to Linear r" + kVersion, ColorUtilities.LogCToLinear); + Dump("sRGB to Unity Log r" + kVersion, x => ColorUtilities.LinearToLogC(Mathf.GammaToLinearSpace(x))); + Dump("Unity Log to sRGB r" + kVersion, x => Mathf.LinearToGammaSpace(ColorUtilities.LogCToLinear(x))); + Dump("Linear to sRGB r" + kVersion, Mathf.LinearToGammaSpace); + Dump("sRGB to Linear r" + kVersion, Mathf.GammaToLinearSpace); + + AssetDatabase.Refresh(); + } + + static void Dump(string title, Func eval) + { + var sb = new StringBuilder(); + sb.AppendFormat("TITLE \"{0}\"\n", title); + sb.AppendFormat("LUT_3D_SIZE {0}\n", kSize); + sb.AppendFormat("DOMAIN_MIN {0} {0} {0}\n", 0f); + sb.AppendFormat("DOMAIN_MAX {0} {0} {0}\n", 1f); + + const float kSizeMinusOne = (float)kSize - 1f; + + for (int x = 0; x < kSize; x++) + for (int y = 0; y < kSize; y++) + for (int z = 0; z < kSize; z++) + { + float ox = eval((float)x / kSizeMinusOne); + float oy = eval((float)y / kSizeMinusOne); + float oz = eval((float)z / kSizeMinusOne); + + // Resolve & Photoshop use BGR as default, let's make it easier for users + sb.AppendFormat("{0} {1} {2}\n", oz, oy, ox); + } + + var content = sb.ToString(); + var path = Path.Combine(Application.dataPath, string.Format("{0}.cube", title)); + File.WriteAllText(path, content); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/CubeLutAssetFactory.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/CubeLutAssetFactory.cs.meta new file mode 100644 index 0000000..e3de84f --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/CubeLutAssetFactory.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4d506bd5da20d0248bfa343c6693d655 +timeCreated: 1496740688 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/CubeLutAssetImporter.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/CubeLutAssetImporter.cs new file mode 100644 index 0000000..98cd47a --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/CubeLutAssetImporter.cs @@ -0,0 +1,218 @@ +using System.Collections.Generic; +using System.Globalization; +using System.IO; +using System.Text; +using UnityEngine; + +namespace UnityEditor.Rendering.PostProcessing +{ + sealed class CubeLutAssetImporter : AssetPostprocessor + { + static List s_Excluded = new List() + { + "Linear to sRGB r1", + "Linear to Unity Log r1", + "sRGB to Linear r1", + "sRGB to Unity Log r1", + "Unity Log to Linear r1", + "Unity Log to sRGB r1" + }; + + static void OnPostprocessAllAssets(string[] imported, string[] deleted, string[] moved, string[] movedFrom) + { + foreach (string path in imported) + { + string ext = Path.GetExtension(path); + string filename = Path.GetFileNameWithoutExtension(path); + + if (string.IsNullOrEmpty(ext) || s_Excluded.Contains(filename)) + continue; + + ext = ext.ToLowerInvariant(); + if (ext.Equals(".cube")) + ImportCubeLut(path); + } + } + + // Basic CUBE lut parser + // Specs: http://wwwimages.adobe.com/content/dam/Adobe/en/products/speedgrade/cc/pdfs/cube-lut-specification-1.0.pdf + static void ImportCubeLut(string path) + { + // Remove the 'Assets' part of the path & build absolute path + string fullpath = path.Substring(7); + fullpath = Path.Combine(Application.dataPath, fullpath); + + // Read the lut data + string[] lines = File.ReadAllLines(fullpath); + + // Start parsing + int i = 0; + int size = -1; + int sizeCube = -1; + var table = new List(); + var domainMin = Color.black; + var domainMax = Color.white; + + while (true) + { + if (i >= lines.Length) + { + if (table.Count != sizeCube) + Debug.LogError("Premature end of file"); + + break; + } + + string line = FilterLine(lines[i]); + + if (string.IsNullOrEmpty(line)) + goto next; + + // Header data + if (line.StartsWith("TITLE")) + goto next; // Skip the title tag, we don't need it + + if (line.StartsWith("LUT_3D_SIZE")) + { + string sizeStr = line.Substring(11).TrimStart(); + + if (!int.TryParse(sizeStr, out size)) + { + Debug.LogError("Invalid data on line " + i); + break; + } + + if (size < 2 || size > 256) + { + Debug.LogError("LUT size out of range"); + break; + } + + sizeCube = size * size * size; + goto next; + } + + if (line.StartsWith("DOMAIN_MIN")) + { + if (!ParseDomain(i, line, ref domainMin)) break; + goto next; + } + + if (line.StartsWith("DOMAIN_MAX")) + { + if (!ParseDomain(i, line, ref domainMax)) break; + goto next; + } + + // Table + string[] row = line.Split(); + + if (row.Length != 3) + { + Debug.LogError("Invalid data on line " + i); + break; + } + + var color = Color.black; + for (int j = 0; j < 3; j++) + { + float d; + if (!float.TryParse(row[j], NumberStyles.Float, CultureInfo.InvariantCulture.NumberFormat, out d)) + { + Debug.LogError("Invalid data on line " + i); + break; + } + + color[j] = d; + } + + table.Add(color); + + next: + i++; + } + + if (sizeCube != table.Count) + { + Debug.LogError("Wrong table size - Expected " + sizeCube + " elements, got " + table.Count); + return; + } + + // Check if the Texture3D already exists, update it in this case (better workflow for + // the user) + string assetPath = Path.ChangeExtension(path, ".asset"); + var tex = AssetDatabase.LoadAssetAtPath(assetPath); + + if (tex != null) + { + tex.SetPixels(table.ToArray(), 0); + tex.Apply(); + } + else + { + // Generate a new Texture3D + tex = new Texture3D(size, size, size, TextureFormat.RGBAHalf, false) + { + anisoLevel = 0, + filterMode = FilterMode.Bilinear, + wrapMode = TextureWrapMode.Clamp, + }; + + tex.SetPixels(table.ToArray(), 0); + tex.Apply(); + + // Save to disk + AssetDatabase.CreateAsset(tex, assetPath); + } + + AssetDatabase.SaveAssets(); + AssetDatabase.Refresh(); + } + + static string FilterLine(string line) + { + var filtered = new StringBuilder(); + line = line.TrimStart().TrimEnd(); + int len = line.Length; + int i = 0; + + while (i < len) + { + char c = line[i]; + + if (c == '#') // Filters comment out + break; + + filtered.Append(c); + i++; + } + + return filtered.ToString(); + } + + static bool ParseDomain(int i, string line, ref Color domain) + { + string[] domainStrs = line.Substring(10).TrimStart().Split(); + + if (domainStrs.Length != 3) + { + Debug.LogError("Invalid data on line " + i); + return false; + } + + for (int j = 0; j < 3; j++) + { + float d; + if (!float.TryParse(domainStrs[j], NumberStyles.Float, CultureInfo.InvariantCulture.NumberFormat, out d)) + { + Debug.LogError("Invalid data on line " + i); + return false; + } + + domain[j] = d; + } + + return true; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/CubeLutAssetImporter.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/CubeLutAssetImporter.cs.meta new file mode 100644 index 0000000..e53d8c5 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/CubeLutAssetImporter.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3e4b5d9a1abab984cbe0cbdb31fca939 +timeCreated: 1496737252 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/DefineSetter.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/DefineSetter.cs new file mode 100644 index 0000000..1083590 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/DefineSetter.cs @@ -0,0 +1,45 @@ +using System; +using System.Linq; + +namespace UnityEditor.Rendering.PostProcessing +{ + [InitializeOnLoad] + sealed class DefineSetter + { + const string k_Define = "UNITY_POST_PROCESSING_STACK_V2"; + + static DefineSetter() + { + var targets = Enum.GetValues(typeof(BuildTargetGroup)) + .Cast() + .Where(x => x != BuildTargetGroup.Unknown) + .Where(x => !IsObsolete(x)); + + foreach (var target in targets) + { + var defines = PlayerSettings.GetScriptingDefineSymbolsForGroup(target).Trim(); + + var list = defines.Split(';', ' ') + .Where(x => !string.IsNullOrEmpty(x)) + .ToList(); + + if (list.Contains(k_Define)) + continue; + + list.Add(k_Define); + defines = list.Aggregate((a, b) => a + ";" + b); + + PlayerSettings.SetScriptingDefineSymbolsForGroup(target, defines); + } + } + + static bool IsObsolete(BuildTargetGroup group) + { + var attrs = typeof(BuildTargetGroup) + .GetField(group.ToString()) + .GetCustomAttributes(typeof(ObsoleteAttribute), false); + + return attrs != null && attrs.Length > 0; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/DefineSetter.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/DefineSetter.cs.meta new file mode 100644 index 0000000..d68eb21 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/DefineSetter.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 21c950a797aa518438786fc341790e14 +timeCreated: 1499857026 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/ProfileFactory.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/ProfileFactory.cs new file mode 100644 index 0000000..6c44adf --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/ProfileFactory.cs @@ -0,0 +1,82 @@ +using UnityEngine; +using UnityEditor.ProjectWindowCallback; +using System.IO; +using UnityEngine.SceneManagement; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// An utility class to help the creation of new post-processing profile assets. + /// + public sealed class ProfileFactory + { + [MenuItem("Assets/Create/Post-processing Profile", priority = 201)] + static void CreatePostProcessProfile() + { + //var icon = EditorGUIUtility.FindTexture("ScriptableObject Icon"); + ProjectWindowUtil.StartNameEditingIfProjectWindowExists(0, ScriptableObject.CreateInstance(), "New Post-processing Profile.asset", null, null); + } + + /// + /// Creates a post-processing profile asset at the given location. + /// + /// The path to use relative to the project folder + /// The newly created profile + public static PostProcessProfile CreatePostProcessProfileAtPath(string path) + { + var profile = ScriptableObject.CreateInstance(); + profile.name = Path.GetFileName(path); + AssetDatabase.CreateAsset(profile, path); + AssetDatabase.SaveAssets(); + AssetDatabase.Refresh(); + return profile; + } + + /// + /// Creates a post-processing profile asset and automatically put it in a sub folder next + /// to the given scene. + /// + /// A scene + /// A name for the new profile + /// The newly created profile + public static PostProcessProfile CreatePostProcessProfile(Scene scene, string targetName) + { + var path = string.Empty; + + if (string.IsNullOrEmpty(scene.path)) + { + path = "Assets/"; + } + else + { + var scenePath = Path.GetDirectoryName(scene.path); + var extPath = scene.name + "_Profiles"; + var profilePath = scenePath + "/" + extPath; + + if (!AssetDatabase.IsValidFolder(profilePath)) + AssetDatabase.CreateFolder(scenePath, extPath); + + path = profilePath + "/"; + } + + path += targetName + " Profile.asset"; + path = AssetDatabase.GenerateUniqueAssetPath(path); + + var profile = ScriptableObject.CreateInstance(); + AssetDatabase.CreateAsset(profile, path); + AssetDatabase.SaveAssets(); + AssetDatabase.Refresh(); + return profile; + } + } + + class DoCreatePostProcessProfile : EndNameEditAction + { + public override void Action(int instanceId, string pathName, string resourceFile) + { + var profile = ProfileFactory.CreatePostProcessProfileAtPath(pathName); + ProjectWindowUtil.ShowCreatedAsset(profile); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/ProfileFactory.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/ProfileFactory.cs.meta new file mode 100644 index 0000000..3ae3175 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/ProfileFactory.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ac5668592895c1742a0c6e9d111f870b +timeCreated: 1498836357 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/ResourceAssetFactory.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/ResourceAssetFactory.cs new file mode 100644 index 0000000..0ea2470 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/ResourceAssetFactory.cs @@ -0,0 +1,19 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + static class ResourceAssetFactory + { +#if POSTFX_DEBUG_MENUS + [MenuItem("Tools/Post-processing/Create Resources Asset")] +#endif + static void CreateAsset() + { + var asset = ScriptableObject.CreateInstance(); + AssetDatabase.CreateAsset(asset, "Assets/PostProcessResources.asset"); + AssetDatabase.SaveAssets(); + AssetDatabase.Refresh(); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/ResourceAssetFactory.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/ResourceAssetFactory.cs.meta new file mode 100644 index 0000000..7ac577f --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/ResourceAssetFactory.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d4351734f8a0aaa42a51a99db92e92e2 +timeCreated: 1496736723 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/VolumeFactory.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/VolumeFactory.cs new file mode 100644 index 0000000..8d4c6f0 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/VolumeFactory.cs @@ -0,0 +1,21 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + internal static class VolumeFactory + { + [MenuItem("GameObject/3D Object/Post-process Volume")] + static void CreateVolume() + { + var gameObject = new GameObject("Post-process Volume"); + var collider = gameObject.AddComponent(); + collider.size = Vector3.one; + collider.isTrigger = true; + gameObject.AddComponent(); + + Selection.objects = new [] { gameObject }; + EditorApplication.ExecuteMenuItem("GameObject/Move To View"); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/VolumeFactory.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/VolumeFactory.cs.meta new file mode 100644 index 0000000..9c81e30 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Tools/VolumeFactory.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 0f3902e2aa2609f47ab0c956e56ea0bf +timeCreated: 1497707764 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Unity.Postprocessing.Editor.asmdef b/UnityCaptureSample/Assets/PostProcessing/Editor/Unity.Postprocessing.Editor.asmdef new file mode 100644 index 0000000..3a1bd49 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Unity.Postprocessing.Editor.asmdef @@ -0,0 +1,16 @@ +{ + "name": "Unity.Postprocessing.Editor", + "references": [ + "Unity.Postprocessing.Runtime" + ], + "optionalUnityReferences": [], + "includePlatforms": [ + "Editor" + ], + "excludePlatforms": [], + "allowUnsafeCode": false, + "overrideReferences": false, + "precompiledReferences": [], + "autoReferenced": true, + "defineConstraints": [] +} \ No newline at end of file diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Unity.Postprocessing.Editor.asmdef.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Unity.Postprocessing.Editor.asmdef.meta new file mode 100644 index 0000000..e586d97 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Unity.Postprocessing.Editor.asmdef.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a35efad8797223d499f8c68b1f545dbc +AssemblyDefinitionImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Utils.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils.meta new file mode 100644 index 0000000..6ed3793 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 018e19d6c1b36224b85b5c0ddd6a895e +folderAsset: yes +timeCreated: 1489051059 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/CurveEditor.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/CurveEditor.cs new file mode 100644 index 0000000..72fac1d --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/CurveEditor.cs @@ -0,0 +1,859 @@ +using System; +using System.Collections.Generic; +using UnityEngine; + +namespace UnityEditor.Rendering.PostProcessing +{ + internal sealed class CurveEditor + { + #region Enums + + enum EditMode + { + None, + Moving, + TangentEdit + } + + enum Tangent + { + In, + Out + } + + #endregion + + #region Structs + + public struct Settings + { + public Rect bounds; + public RectOffset padding; + public Color selectionColor; + public float curvePickingDistance; + public float keyTimeClampingDistance; + + public static Settings defaultSettings + { + get + { + return new Settings + { + bounds = new Rect(0f, 0f, 1f, 1f), + padding = new RectOffset(10, 10, 10, 10), + selectionColor = Color.yellow, + curvePickingDistance = 6f, + keyTimeClampingDistance = 1e-4f + }; + } + } + } + + public struct CurveState + { + public bool visible; + public bool editable; + public uint minPointCount; + public float zeroKeyConstantValue; + public Color color; + public float width; + public float handleWidth; + public bool showNonEditableHandles; + public bool onlyShowHandlesOnSelection; + public bool loopInBounds; + + public static CurveState defaultState + { + get + { + return new CurveState + { + visible = true, + editable = true, + minPointCount = 2, + zeroKeyConstantValue = 0f, + color = Color.white, + width = 2f, + handleWidth = 2f, + showNonEditableHandles = true, + onlyShowHandlesOnSelection = false, + loopInBounds = false + }; + } + } + } + + public struct Selection + { + public SerializedProperty curve; + public int keyframeIndex; + public Keyframe? keyframe; + + public Selection(SerializedProperty curve, int keyframeIndex, Keyframe? keyframe) + { + this.curve = curve; + this.keyframeIndex = keyframeIndex; + this.keyframe = keyframe; + } + } + + internal struct MenuAction + { + internal SerializedProperty curve; + internal int index; + internal Vector3 position; + + internal MenuAction(SerializedProperty curve) + { + this.curve = curve; + this.index = -1; + this.position = Vector3.zero; + } + + internal MenuAction(SerializedProperty curve, int index) + { + this.curve = curve; + this.index = index; + this.position = Vector3.zero; + } + + internal MenuAction(SerializedProperty curve, Vector3 position) + { + this.curve = curve; + this.index = -1; + this.position = position; + } + } + + #endregion + + #region Fields & properties + + public Settings settings { get; private set; } + + readonly Dictionary m_Curves; + Rect m_CurveArea; + + SerializedProperty m_SelectedCurve; + int m_SelectedKeyframeIndex = -1; + + EditMode m_EditMode = EditMode.None; + Tangent m_TangentEditMode; + + bool m_Dirty; + + #endregion + + #region Constructors & destructors + + public CurveEditor() + : this(Settings.defaultSettings) + { } + + public CurveEditor(Settings settings) + { + this.settings = settings; + m_Curves = new Dictionary(); + } + + #endregion + + #region Public API + + public void Add(params SerializedProperty[] curves) + { + foreach (var curve in curves) + Add(curve, CurveState.defaultState); + } + + public void Add(SerializedProperty curve) + { + Add(curve, CurveState.defaultState); + } + + public void Add(SerializedProperty curve, CurveState state) + { + // Make sure the property is in fact an AnimationCurve + var animCurve = curve.animationCurveValue; + if (animCurve == null) + throw new ArgumentException("curve"); + + if (m_Curves.ContainsKey(curve)) + Debug.LogWarning("Curve has already been added to the editor"); + + m_Curves.Add(curve, state); + } + + public void Remove(SerializedProperty curve) + { + m_Curves.Remove(curve); + } + + public void RemoveAll() + { + m_Curves.Clear(); + } + + public CurveState GetCurveState(SerializedProperty curve) + { + CurveState state; + if (!m_Curves.TryGetValue(curve, out state)) + throw new KeyNotFoundException("curve"); + + return state; + } + + public void SetCurveState(SerializedProperty curve, CurveState state) + { + if (!m_Curves.ContainsKey(curve)) + throw new KeyNotFoundException("curve"); + + m_Curves[curve] = state; + } + + public Selection GetSelection() + { + Keyframe? key = null; + if (m_SelectedKeyframeIndex > -1) + { + var curve = m_SelectedCurve.animationCurveValue; + + if (m_SelectedKeyframeIndex >= curve.length) + m_SelectedKeyframeIndex = -1; + else + key = curve[m_SelectedKeyframeIndex]; + } + + return new Selection(m_SelectedCurve, m_SelectedKeyframeIndex, key); + } + + public void SetKeyframe(SerializedProperty curve, int keyframeIndex, Keyframe keyframe) + { + var animCurve = curve.animationCurveValue; + SetKeyframe(animCurve, keyframeIndex, keyframe); + SaveCurve(curve, animCurve); + } + + public bool OnGUI(Rect rect) + { + if (Event.current.type == EventType.Repaint) + m_Dirty = false; + + GUI.BeginClip(rect); + { + var area = new Rect(Vector2.zero, rect.size); + m_CurveArea = settings.padding.Remove(area); + + foreach (var curve in m_Curves) + OnCurveGUI(area, curve.Key, curve.Value); + + OnGeneralUI(area); + } + GUI.EndClip(); + + return m_Dirty; + } + + #endregion + + #region UI & events + + void OnCurveGUI(Rect rect, SerializedProperty curve, CurveState state) + { + // Discard invisible curves + if (!state.visible) + return; + + var animCurve = curve.animationCurveValue; + var keys = animCurve.keys; + var length = keys.Length; + + // Curve drawing + // Slightly dim non-editable curves + var color = state.color; + if (!state.editable || !GUI.enabled) + color.a *= 0.5f; + + Handles.color = color; + var bounds = settings.bounds; + + if (length == 0) + { + var p1 = CurveToCanvas(new Vector3(bounds.xMin, state.zeroKeyConstantValue)); + var p2 = CurveToCanvas(new Vector3(bounds.xMax, state.zeroKeyConstantValue)); + Handles.DrawAAPolyLine(state.width, p1, p2); + } + else if (length == 1) + { + var p1 = CurveToCanvas(new Vector3(bounds.xMin, keys[0].value)); + var p2 = CurveToCanvas(new Vector3(bounds.xMax, keys[0].value)); + Handles.DrawAAPolyLine(state.width, p1, p2); + } + else + { + var prevKey = keys[0]; + for (int k = 1; k < length; k++) + { + var key = keys[k]; + var pts = BezierSegment(prevKey, key); + + if (float.IsInfinity(prevKey.outTangent) || float.IsInfinity(key.inTangent)) + { + var s = HardSegment(prevKey, key); + Handles.DrawAAPolyLine(state.width, s[0], s[1], s[2]); + } + else Handles.DrawBezier(pts[0], pts[3], pts[1], pts[2], color, null, state.width); + + prevKey = key; + } + + // Curve extents & loops + if (keys[0].time > bounds.xMin) + { + if (state.loopInBounds) + { + var p1 = keys[length - 1]; + p1.time -= settings.bounds.width; + var p2 = keys[0]; + var pts = BezierSegment(p1, p2); + + if (float.IsInfinity(p1.outTangent) || float.IsInfinity(p2.inTangent)) + { + var s = HardSegment(p1, p2); + Handles.DrawAAPolyLine(state.width, s[0], s[1], s[2]); + } + else Handles.DrawBezier(pts[0], pts[3], pts[1], pts[2], color, null, state.width); + } + else + { + var p1 = CurveToCanvas(new Vector3(bounds.xMin, keys[0].value)); + var p2 = CurveToCanvas(keys[0]); + Handles.DrawAAPolyLine(state.width, p1, p2); + } + } + + if (keys[length - 1].time < bounds.xMax) + { + if (state.loopInBounds) + { + var p1 = keys[length - 1]; + var p2 = keys[0]; + p2.time += settings.bounds.width; + var pts = BezierSegment(p1, p2); + + if (float.IsInfinity(p1.outTangent) || float.IsInfinity(p2.inTangent)) + { + var s = HardSegment(p1, p2); + Handles.DrawAAPolyLine(state.width, s[0], s[1], s[2]); + } + else Handles.DrawBezier(pts[0], pts[3], pts[1], pts[2], color, null, state.width); + } + else + { + var p1 = CurveToCanvas(keys[length - 1]); + var p2 = CurveToCanvas(new Vector3(bounds.xMax, keys[length - 1].value)); + Handles.DrawAAPolyLine(state.width, p1, p2); + } + } + } + + // Make sure selection is correct (undo can break it) + bool isCurrentlySelectedCurve = curve == m_SelectedCurve; + + if (isCurrentlySelectedCurve && m_SelectedKeyframeIndex >= length) + m_SelectedKeyframeIndex = -1; + + if (!state.editable) + m_SelectedKeyframeIndex = -1; + + float enabledFactor = GUI.enabled ? 1f : 0.8f; + + // Handles & keys + for (int k = 0; k < length; k++) + { + bool isCurrentlySelectedKeyframe = k == m_SelectedKeyframeIndex; + var e = Event.current; + + var pos = CurveToCanvas(keys[k]); + var hitRect = new Rect(pos.x - 8f, pos.y - 8f, 16f, 16f); + var offset = isCurrentlySelectedCurve + ? new RectOffset(5, 5, 5, 5) + : new RectOffset(6, 6, 6, 6); + + var outTangent = pos + CurveTangentToCanvas(keys[k].outTangent).normalized * 40f; + var inTangent = pos - CurveTangentToCanvas(keys[k].inTangent).normalized * 40f; + var inTangentHitRect = new Rect(inTangent.x - 7f, inTangent.y - 7f, 14f, 14f); + var outTangentHitrect = new Rect(outTangent.x - 7f, outTangent.y - 7f, 14f, 14f); + + // Draw + if (state.editable || state.showNonEditableHandles) + { + if (e.type == EventType.Repaint) + { + var selectedColor = (isCurrentlySelectedCurve && isCurrentlySelectedKeyframe) + ? settings.selectionColor + : state.color; + + // Keyframe + EditorGUI.DrawRect(offset.Remove(hitRect), selectedColor * enabledFactor); + + // Tangents + if (isCurrentlySelectedCurve && (!state.onlyShowHandlesOnSelection || (state.onlyShowHandlesOnSelection && isCurrentlySelectedKeyframe))) + { + Handles.color = selectedColor * enabledFactor; + + if (k > 0 || state.loopInBounds) + { + Handles.DrawAAPolyLine(state.handleWidth, pos, inTangent); + EditorGUI.DrawRect(offset.Remove(inTangentHitRect), selectedColor); + } + + if (k < length - 1 || state.loopInBounds) + { + Handles.DrawAAPolyLine(state.handleWidth, pos, outTangent); + EditorGUI.DrawRect(offset.Remove(outTangentHitrect), selectedColor); + } + } + } + } + + // Events + if (state.editable) + { + // Keyframe move + if (m_EditMode == EditMode.Moving && e.type == EventType.MouseDrag && isCurrentlySelectedCurve && isCurrentlySelectedKeyframe) + { + EditMoveKeyframe(animCurve, keys, k); + } + + // Tangent editing + if (m_EditMode == EditMode.TangentEdit && e.type == EventType.MouseDrag && isCurrentlySelectedCurve && isCurrentlySelectedKeyframe) + { + bool alreadyBroken = !(Mathf.Approximately(keys[k].inTangent, keys[k].outTangent) || (float.IsInfinity(keys[k].inTangent) && float.IsInfinity(keys[k].outTangent))); + EditMoveTangent(animCurve, keys, k, m_TangentEditMode, e.shift || !(alreadyBroken || e.control)); + } + + // Keyframe selection & context menu + if (e.type == EventType.MouseDown && rect.Contains(e.mousePosition)) + { + if (hitRect.Contains(e.mousePosition)) + { + if (e.button == 0) + { + SelectKeyframe(curve, k); + m_EditMode = EditMode.Moving; + e.Use(); + } + else if (e.button == 1) + { + // Keyframe context menu + var menu = new GenericMenu(); + menu.AddItem(new GUIContent("Delete Key"), false, (x) => + { + var action = (MenuAction)x; + var curveValue = action.curve.animationCurveValue; + action.curve.serializedObject.Update(); + RemoveKeyframe(curveValue, action.index); + m_SelectedKeyframeIndex = -1; + SaveCurve(action.curve, curveValue); + action.curve.serializedObject.ApplyModifiedProperties(); + }, new MenuAction(curve, k)); + menu.ShowAsContext(); + e.Use(); + } + } + } + + // Tangent selection & edit mode + if (e.type == EventType.MouseDown && rect.Contains(e.mousePosition)) + { + if (inTangentHitRect.Contains(e.mousePosition) && (k > 0 || state.loopInBounds)) + { + SelectKeyframe(curve, k); + m_EditMode = EditMode.TangentEdit; + m_TangentEditMode = Tangent.In; + e.Use(); + } + else if (outTangentHitrect.Contains(e.mousePosition) && (k < length - 1 || state.loopInBounds)) + { + SelectKeyframe(curve, k); + m_EditMode = EditMode.TangentEdit; + m_TangentEditMode = Tangent.Out; + e.Use(); + } + } + + // Mouse up - clean up states + if (e.rawType == EventType.MouseUp && m_EditMode != EditMode.None) + { + m_EditMode = EditMode.None; + } + + // Set cursors + { + EditorGUIUtility.AddCursorRect(hitRect, MouseCursor.MoveArrow); + + if (k > 0 || state.loopInBounds) + EditorGUIUtility.AddCursorRect(inTangentHitRect, MouseCursor.RotateArrow); + + if (k < length - 1 || state.loopInBounds) + EditorGUIUtility.AddCursorRect(outTangentHitrect, MouseCursor.RotateArrow); + } + } + } + + Handles.color = Color.white; + SaveCurve(curve, animCurve); + } + + void OnGeneralUI(Rect rect) + { + var e = Event.current; + + // Selection + if (e.type == EventType.MouseDown) + { + GUI.FocusControl(null); + m_SelectedCurve = null; + m_SelectedKeyframeIndex = -1; + bool used = false; + + var hit = CanvasToCurve(e.mousePosition); + float curvePickValue = CurveToCanvas(hit).y; + + // Try and select a curve + foreach (var curve in m_Curves) + { + if (!curve.Value.editable || !curve.Value.visible) + continue; + + var prop = curve.Key; + var state = curve.Value; + var animCurve = prop.animationCurveValue; + float hitY = animCurve.length == 0 + ? state.zeroKeyConstantValue + : animCurve.Evaluate(hit.x); + + var curvePos = CurveToCanvas(new Vector3(hit.x, hitY)); + + if (Mathf.Abs(curvePos.y - curvePickValue) < settings.curvePickingDistance) + { + m_SelectedCurve = prop; + + if (e.clickCount == 2 && e.button == 0) + { + // Create a keyframe on double-click on this curve + EditCreateKeyframe(animCurve, hit, true, state.zeroKeyConstantValue); + SaveCurve(prop, animCurve); + } + else if (e.button == 1) + { + // Curve context menu + var menu = new GenericMenu(); + menu.AddItem(new GUIContent("Add Key"), false, (x) => + { + var action = (MenuAction)x; + var curveValue = action.curve.animationCurveValue; + action.curve.serializedObject.Update(); + EditCreateKeyframe(curveValue, hit, true, 0f); + SaveCurve(action.curve, curveValue); + action.curve.serializedObject.ApplyModifiedProperties(); + }, new MenuAction(prop, hit)); + menu.ShowAsContext(); + e.Use(); + used = true; + } + } + } + + if (e.clickCount == 2 && e.button == 0 && m_SelectedCurve == null) + { + // Create a keyframe on every curve on double-click + foreach (var curve in m_Curves) + { + if (!curve.Value.editable || !curve.Value.visible) + continue; + + var prop = curve.Key; + var state = curve.Value; + var animCurve = prop.animationCurveValue; + EditCreateKeyframe(animCurve, hit, e.alt, state.zeroKeyConstantValue); + SaveCurve(prop, animCurve); + } + } + else if (!used && e.button == 1) + { + // Global context menu + var menu = new GenericMenu(); + menu.AddItem(new GUIContent("Add Key At Position"), false, () => ContextMenuAddKey(hit, false)); + menu.AddItem(new GUIContent("Add Key On Curves"), false, () => ContextMenuAddKey(hit, true)); + menu.ShowAsContext(); + } + + e.Use(); + } + + // Delete selected key(s) + if (e.type == EventType.KeyDown && (e.keyCode == KeyCode.Delete || e.keyCode == KeyCode.Backspace)) + { + if (m_SelectedKeyframeIndex != -1 && m_SelectedCurve != null) + { + var animCurve = m_SelectedCurve.animationCurveValue; + var length = animCurve.length; + + if (m_Curves[m_SelectedCurve].minPointCount < length && length >= 0) + { + EditDeleteKeyframe(animCurve, m_SelectedKeyframeIndex); + m_SelectedKeyframeIndex = -1; + SaveCurve(m_SelectedCurve, animCurve); + } + + e.Use(); + } + } + } + + void SaveCurve(SerializedProperty prop, AnimationCurve curve) + { + prop.animationCurveValue = curve; + } + + void Invalidate() + { + m_Dirty = true; + } + + #endregion + + #region Keyframe manipulations + + void SelectKeyframe(SerializedProperty curve, int keyframeIndex) + { + m_SelectedKeyframeIndex = keyframeIndex; + m_SelectedCurve = curve; + Invalidate(); + } + + void ContextMenuAddKey(Vector3 hit, bool createOnCurve) + { + SerializedObject serializedObject = null; + + foreach (var curve in m_Curves) + { + if (!curve.Value.editable || !curve.Value.visible) + continue; + + var prop = curve.Key; + var state = curve.Value; + + if (serializedObject == null) + { + serializedObject = prop.serializedObject; + serializedObject.Update(); + } + + var animCurve = prop.animationCurveValue; + EditCreateKeyframe(animCurve, hit, createOnCurve, state.zeroKeyConstantValue); + SaveCurve(prop, animCurve); + } + + if (serializedObject != null) + serializedObject.ApplyModifiedProperties(); + + Invalidate(); + } + + void EditCreateKeyframe(AnimationCurve curve, Vector3 position, bool createOnCurve, float zeroKeyConstantValue) + { + float tangent = EvaluateTangent(curve, position.x); + + if (createOnCurve) + { + position.y = curve.length == 0 + ? zeroKeyConstantValue + : curve.Evaluate(position.x); + } + + AddKeyframe(curve, new Keyframe(position.x, position.y, tangent, tangent)); + } + + void EditDeleteKeyframe(AnimationCurve curve, int keyframeIndex) + { + RemoveKeyframe(curve, keyframeIndex); + } + + void AddKeyframe(AnimationCurve curve, Keyframe newValue) + { + curve.AddKey(newValue); + Invalidate(); + } + + void RemoveKeyframe(AnimationCurve curve, int keyframeIndex) + { + curve.RemoveKey(keyframeIndex); + Invalidate(); + } + + void SetKeyframe(AnimationCurve curve, int keyframeIndex, Keyframe newValue) + { + var keys = curve.keys; + + if (keyframeIndex > 0) + newValue.time = Mathf.Max(keys[keyframeIndex - 1].time + settings.keyTimeClampingDistance, newValue.time); + + if (keyframeIndex < keys.Length - 1) + newValue.time = Mathf.Min(keys[keyframeIndex + 1].time - settings.keyTimeClampingDistance, newValue.time); + + curve.MoveKey(keyframeIndex, newValue); + Invalidate(); + } + + void EditMoveKeyframe(AnimationCurve curve, Keyframe[] keys, int keyframeIndex) + { + var key = CanvasToCurve(Event.current.mousePosition); + float inTgt = keys[keyframeIndex].inTangent; + float outTgt = keys[keyframeIndex].outTangent; + SetKeyframe(curve, keyframeIndex, new Keyframe(key.x, key.y, inTgt, outTgt)); + } + + void EditMoveTangent(AnimationCurve curve, Keyframe[] keys, int keyframeIndex, Tangent targetTangent, bool linkTangents) + { + var pos = CanvasToCurve(Event.current.mousePosition); + + float time = keys[keyframeIndex].time; + float value = keys[keyframeIndex].value; + + pos -= new Vector3(time, value); + + if (targetTangent == Tangent.In && pos.x > 0f) + pos.x = 0f; + + if (targetTangent == Tangent.Out && pos.x < 0f) + pos.x = 0f; + + float tangent; + + if (Mathf.Approximately(pos.x, 0f)) + tangent = pos.y < 0f ? float.PositiveInfinity : float.NegativeInfinity; + else + tangent = pos.y / pos.x; + + float inTangent = keys[keyframeIndex].inTangent; + float outTangent = keys[keyframeIndex].outTangent; + + if (targetTangent == Tangent.In || linkTangents) + inTangent = tangent; + if (targetTangent == Tangent.Out || linkTangents) + outTangent = tangent; + + SetKeyframe(curve, keyframeIndex, new Keyframe(time, value, inTangent, outTangent)); + } + + #endregion + + #region Maths utilities + + Vector3 CurveToCanvas(Keyframe keyframe) + { + return CurveToCanvas(new Vector3(keyframe.time, keyframe.value)); + } + + Vector3 CurveToCanvas(Vector3 position) + { + var bounds = settings.bounds; + var output = new Vector3((position.x - bounds.x) / (bounds.xMax - bounds.x), (position.y - bounds.y) / (bounds.yMax - bounds.y)); + output.x = output.x * (m_CurveArea.xMax - m_CurveArea.xMin) + m_CurveArea.xMin; + output.y = (1f - output.y) * (m_CurveArea.yMax - m_CurveArea.yMin) + m_CurveArea.yMin; + return output; + } + + Vector3 CanvasToCurve(Vector3 position) + { + var bounds = settings.bounds; + var output = position; + output.x = (output.x - m_CurveArea.xMin) / (m_CurveArea.xMax - m_CurveArea.xMin); + output.y = (output.y - m_CurveArea.yMin) / (m_CurveArea.yMax - m_CurveArea.yMin); + output.x = Mathf.Lerp(bounds.x, bounds.xMax, output.x); + output.y = Mathf.Lerp(bounds.yMax, bounds.y, output.y); + return output; + } + + Vector3 CurveTangentToCanvas(float tangent) + { + if (!float.IsInfinity(tangent)) + { + var bounds = settings.bounds; + float ratio = (m_CurveArea.width / m_CurveArea.height) / ((bounds.xMax - bounds.x) / (bounds.yMax - bounds.y)); + return new Vector3(1f, -tangent / ratio).normalized; + } + + return float.IsPositiveInfinity(tangent) ? Vector3.up : Vector3.down; + } + + Vector3[] BezierSegment(Keyframe start, Keyframe end) + { + var segment = new Vector3[4]; + + segment[0] = CurveToCanvas(new Vector3(start.time, start.value)); + segment[3] = CurveToCanvas(new Vector3(end.time, end.value)); + + float middle = start.time + ((end.time - start.time) * 0.333333f); + float middle2 = start.time + ((end.time - start.time) * 0.666666f); + + segment[1] = CurveToCanvas(new Vector3(middle, ProjectTangent(start.time, start.value, start.outTangent, middle))); + segment[2] = CurveToCanvas(new Vector3(middle2, ProjectTangent(end.time, end.value, end.inTangent, middle2))); + + return segment; + } + + Vector3[] HardSegment(Keyframe start, Keyframe end) + { + var segment = new Vector3[3]; + + segment[0] = CurveToCanvas(start); + segment[1] = CurveToCanvas(new Vector3(end.time, start.value)); + segment[2] = CurveToCanvas(end); + + return segment; + } + + float ProjectTangent(float inPosition, float inValue, float inTangent, float projPosition) + { + return inValue + ((projPosition - inPosition) * inTangent); + } + + float EvaluateTangent(AnimationCurve curve, float time) + { + int prev = -1, next = 0; + for (int i = 0; i < curve.keys.Length; i++) + { + if (time > curve.keys[i].time) + { + prev = i; + next = i + 1; + } + else break; + } + + if (next == 0) + return 0f; + + if (prev == curve.keys.Length - 1) + return 0f; + + const float kD = 1e-3f; + float tp = Mathf.Max(time - kD, curve.keys[prev].time); + float tn = Mathf.Min(time + kD, curve.keys[next].time); + + float vp = curve.Evaluate(tp); + float vn = curve.Evaluate(tn); + + if (Mathf.Approximately(tn, tp)) + return (vn - vp > 0f) ? float.PositiveInfinity : float.NegativeInfinity; + + return (vn - vp) / (tn - tp); + } + + #endregion + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/CurveEditor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/CurveEditor.cs.meta new file mode 100644 index 0000000..c76f2b0 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/CurveEditor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: ce0f0631fee52da41884853337cab99d +timeCreated: 1493979438 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/EditorUtilities.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/EditorUtilities.cs new file mode 100644 index 0000000..e689687 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/EditorUtilities.cs @@ -0,0 +1,354 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using UnityEngine; +using UnityEngine.Assertions; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// A set of editor utilities used in post-processing editors. + /// + public static class EditorUtilities + { + static Dictionary s_GUIContentCache; + static Dictionary s_AttributeDecorators; + + static PostProcessEffectSettings s_ClipboardContent; + + /// + /// Returns true if the current target is a console, false otherwise. + /// + public static bool isTargetingConsoles + { + get + { + var t = EditorUserBuildSettings.activeBuildTarget; + return t == BuildTarget.PS4 + || t == BuildTarget.XboxOne + || t == BuildTarget.Switch; + } + } + + /// + /// Returns true if the current target is a mobile, false otherwise. + /// + public static bool isTargetingMobiles + { + get + { + var t = EditorUserBuildSettings.activeBuildTarget; + return t == BuildTarget.Android + || t == BuildTarget.iOS + || t == BuildTarget.tvOS +#if !UNITY_2018_2_OR_NEWER + || t == BuildTarget.Tizen +#endif +#if !UNITY_2018_3_OR_NEWER + || t == BuildTarget.N3DS + || t == BuildTarget.PSP2 +#endif + ; + } + } + + /// + /// Returns true if the current target is a console or a mobile, false + /// otherwise. + /// + public static bool isTargetingConsolesOrMobiles + { + get { return isTargetingConsoles || isTargetingMobiles; } + } + + static EditorUtilities() + { + s_GUIContentCache = new Dictionary(); + s_AttributeDecorators = new Dictionary(); + ReloadDecoratorTypes(); + } + + [Callbacks.DidReloadScripts] + static void OnEditorReload() + { + ReloadDecoratorTypes(); + } + + static void ReloadDecoratorTypes() + { + s_AttributeDecorators.Clear(); + + // Look for all the valid attribute decorators + var types = RuntimeUtilities.GetAllAssemblyTypes() + .Where( + t => t.IsSubclassOf(typeof(AttributeDecorator)) + && t.IsDefined(typeof(DecoratorAttribute), false) + && !t.IsAbstract + ); + + // Store them + foreach (var type in types) + { + var attr = type.GetAttribute(); + var decorator = (AttributeDecorator)Activator.CreateInstance(type); + s_AttributeDecorators.Add(attr.attributeType, decorator); + } + } + + internal static AttributeDecorator GetDecorator(Type attributeType) + { + AttributeDecorator decorator; + return !s_AttributeDecorators.TryGetValue(attributeType, out decorator) + ? null + : decorator; + } + + /// + /// Gets a for the given label and tooltip. These are recycled + /// internally and help reduce the garbage collector pressure in the editor. + /// + /// The label and tooltip separated by a | + /// character + /// A recycled + public static GUIContent GetContent(string textAndTooltip) + { + if (string.IsNullOrEmpty(textAndTooltip)) + return GUIContent.none; + + GUIContent content; + + if (!s_GUIContentCache.TryGetValue(textAndTooltip, out content)) + { + var s = textAndTooltip.Split('|'); + content = new GUIContent(s[0]); + + if (s.Length > 1 && !string.IsNullOrEmpty(s[1])) + content.tooltip = s[1]; + + s_GUIContentCache.Add(textAndTooltip, content); + } + + return content; + } + + /// + /// Draws a UI box with a description and a "Fix Me" button next to it. + /// + /// The description + /// The action to execute when the button is clicked + public static void DrawFixMeBox(string text, Action action) + { + Assert.IsNotNull(action); + + EditorGUILayout.HelpBox(text, MessageType.Warning); + + GUILayout.Space(-32); + using (new EditorGUILayout.HorizontalScope()) + { + GUILayout.FlexibleSpace(); + + if (GUILayout.Button("Fix", GUILayout.Width(60))) + action(); + + GUILayout.Space(8); + } + GUILayout.Space(11); + } + + /// + /// Draws a horizontal split line. + /// + public static void DrawSplitter() + { + var rect = GUILayoutUtility.GetRect(1f, 1f); + + // Splitter rect should be full-width + rect.xMin = 0f; + rect.width += 4f; + + if (Event.current.type != EventType.Repaint) + return; + + EditorGUI.DrawRect(rect, Styling.splitter); + } + + /// + /// Draws a toggle using the "override checkbox" style. + /// + /// The position and size of the toggle + /// The override state property for the toggle + public static void DrawOverrideCheckbox(Rect rect, SerializedProperty property) + { + property.boolValue = GUI.Toggle(rect, property.boolValue, GetContent("|Override this setting for this volume."), Styling.smallTickbox); + } + + /// + /// Draws a header label. + /// + /// The label to display as a header + public static void DrawHeaderLabel(string title) + { + EditorGUILayout.LabelField(title, Styling.headerLabel); + } + + internal static bool DrawHeader(string title, bool state) + { + var backgroundRect = GUILayoutUtility.GetRect(1f, 17f); + + var labelRect = backgroundRect; + labelRect.xMin += 16f; + labelRect.xMax -= 20f; + + var foldoutRect = backgroundRect; + foldoutRect.y += 1f; + foldoutRect.width = 13f; + foldoutRect.height = 13f; + + // Background rect should be full-width + backgroundRect.xMin = 0f; + backgroundRect.width += 4f; + + // Background + EditorGUI.DrawRect(backgroundRect, Styling.headerBackground); + + // Title + EditorGUI.LabelField(labelRect, GetContent(title), EditorStyles.boldLabel); + + // Foldout + state = GUI.Toggle(foldoutRect, state, GUIContent.none, EditorStyles.foldout); + + var e = Event.current; + if (e.type == EventType.MouseDown && backgroundRect.Contains(e.mousePosition) && e.button == 0) + { + state = !state; + e.Use(); + } + + return state; + } + + internal static bool DrawHeader(string title, SerializedProperty group, SerializedProperty activeField, PostProcessEffectSettings target, Action resetAction, Action removeAction) + { + Assert.IsNotNull(group); + Assert.IsNotNull(activeField); + Assert.IsNotNull(target); + + var backgroundRect = GUILayoutUtility.GetRect(1f, 17f); + + var labelRect = backgroundRect; + labelRect.xMin += 32f; + labelRect.xMax -= 20f; + + var foldoutRect = backgroundRect; + foldoutRect.y += 1f; + foldoutRect.width = 13f; + foldoutRect.height = 13f; + + var toggleRect = backgroundRect; + toggleRect.x += 16f; + toggleRect.y += 2f; + toggleRect.width = 13f; + toggleRect.height = 13f; + + var menuIcon = Styling.paneOptionsIcon; + var menuRect = new Rect(labelRect.xMax + 4f, labelRect.y + 4f, menuIcon.width, menuIcon.height); + + // Background rect should be full-width + backgroundRect.xMin = 0f; + backgroundRect.width += 4f; + + // Background + EditorGUI.DrawRect(backgroundRect, Styling.headerBackground); + + // Title + using (new EditorGUI.DisabledScope(!activeField.boolValue)) + EditorGUI.LabelField(labelRect, GetContent(title), EditorStyles.boldLabel); + + // foldout + group.serializedObject.Update(); + group.isExpanded = GUI.Toggle(foldoutRect, group.isExpanded, GUIContent.none, EditorStyles.foldout); + group.serializedObject.ApplyModifiedProperties(); + + // Active checkbox + activeField.serializedObject.Update(); + activeField.boolValue = GUI.Toggle(toggleRect, activeField.boolValue, GUIContent.none, Styling.smallTickbox); + activeField.serializedObject.ApplyModifiedProperties(); + + // Dropdown menu icon + GUI.DrawTexture(menuRect, menuIcon); + + // Handle events + var e = Event.current; + + if (e.type == EventType.MouseDown) + { + if (menuRect.Contains(e.mousePosition)) + { + ShowHeaderContextMenu(new Vector2(menuRect.x, menuRect.yMax), target, resetAction, removeAction); + e.Use(); + } + else if (labelRect.Contains(e.mousePosition)) + { + if (e.button == 0) + group.isExpanded = !group.isExpanded; + else + ShowHeaderContextMenu(e.mousePosition, target, resetAction, removeAction); + + e.Use(); + } + } + + return group.isExpanded; + } + + static void ShowHeaderContextMenu(Vector2 position, PostProcessEffectSettings target, Action resetAction, Action removeAction) + { + Assert.IsNotNull(resetAction); + Assert.IsNotNull(removeAction); + + var menu = new GenericMenu(); + menu.AddItem(GetContent("Reset"), false, () => resetAction()); + menu.AddItem(GetContent("Remove"), false, () => removeAction()); + menu.AddSeparator(string.Empty); + menu.AddItem(GetContent("Copy Settings"), false, () => CopySettings(target)); + + if (CanPaste(target)) + menu.AddItem(GetContent("Paste Settings"), false, () => PasteSettings(target)); + else + menu.AddDisabledItem(GetContent("Paste Settings")); + + menu.DropDown(new Rect(position, Vector2.zero)); + } + + static void CopySettings(PostProcessEffectSettings target) + { + Assert.IsNotNull(target); + + if (s_ClipboardContent != null) + { + RuntimeUtilities.Destroy(s_ClipboardContent); + s_ClipboardContent = null; + } + + s_ClipboardContent = (PostProcessEffectSettings)ScriptableObject.CreateInstance(target.GetType()); + EditorUtility.CopySerializedIfDifferent(target, s_ClipboardContent); + } + + static void PasteSettings(PostProcessEffectSettings target) + { + Assert.IsNotNull(target); + Assert.IsNotNull(s_ClipboardContent); + Assert.AreEqual(s_ClipboardContent.GetType(), target.GetType()); + + Undo.RecordObject(target, "Paste Settings"); + EditorUtility.CopySerializedIfDifferent(s_ClipboardContent, target); + } + + static bool CanPaste(PostProcessEffectSettings target) + { + return s_ClipboardContent != null + && s_ClipboardContent.GetType() == target.GetType(); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/EditorUtilities.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/EditorUtilities.cs.meta new file mode 100644 index 0000000..2ce480e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/EditorUtilities.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 09e002b759745fa499d539b9021af38e +timeCreated: 1489050987 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/GlobalSettings.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/GlobalSettings.cs new file mode 100644 index 0000000..7cde6b2 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/GlobalSettings.cs @@ -0,0 +1,114 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + static class GlobalSettings + { + static class Keys + { + internal const string trackballSensitivity = "PostProcessing.Trackball.Sensitivity"; + internal const string volumeGizmoColor = "PostProcessing.Volume.GizmoColor"; + internal const string currentChannelMixer = "PostProcessing.ChannelMixer.CurrentChannel"; + internal const string currentCurve = "PostProcessing.Curve.Current"; + } + + static bool m_Loaded = false; + + static float m_TrackballSensitivity = 0.2f; + internal static float trackballSensitivity + { + get { return m_TrackballSensitivity; } + set { TrySave(ref m_TrackballSensitivity, value, Keys.trackballSensitivity); } + } + + static Color m_VolumeGizmoColor = new Color(0.2f, 0.8f, 0.1f, 0.5f); + internal static Color volumeGizmoColor + { + get { return m_VolumeGizmoColor; } + set { TrySave(ref m_VolumeGizmoColor, value, Keys.volumeGizmoColor); } + } + + static int m_CurrentChannelMixer = 0; + internal static int currentChannelMixer + { + get { return m_CurrentChannelMixer; } + set { TrySave(ref m_CurrentChannelMixer, value, Keys.currentChannelMixer); } + } + + static int m_CurrentCurve = 0; + internal static int currentCurve + { + get { return m_CurrentCurve; } + set { TrySave(ref m_CurrentCurve, value, Keys.currentCurve); } + } + + static GlobalSettings() + { + Load(); + } + + #if UNITY_2018_3_OR_NEWER + [SettingsProvider] + static SettingsProvider PreferenceGUI() + { + return new SettingsProvider("Preferences/Post-processing", SettingsScope.User) + { + guiHandler = searchContext => OpenGUI() + }; + } + #else + [PreferenceItem("Post-processing")] + static void PreferenceGUI() + { + OpenGUI(); + } + #endif + + static void OpenGUI() + { + if (!m_Loaded) + Load(); + + EditorGUILayout.Space(); + + trackballSensitivity = EditorGUILayout.Slider("Trackballs Sensitivity", trackballSensitivity, 0.05f, 1f); + volumeGizmoColor = EditorGUILayout.ColorField("Volume Gizmo Color", volumeGizmoColor); + } + + static void Load() + { + m_TrackballSensitivity = EditorPrefs.GetFloat(Keys.trackballSensitivity, 0.2f); + m_VolumeGizmoColor = GetColor(Keys.volumeGizmoColor, new Color(0.2f, 0.8f, 0.1f, 0.5f)); + m_CurrentChannelMixer = EditorPrefs.GetInt(Keys.currentChannelMixer, 0); + m_CurrentCurve = EditorPrefs.GetInt(Keys.currentCurve, 0); + + m_Loaded = true; + } + + static Color GetColor(string key, Color defaultValue) + { + int value = EditorPrefs.GetInt(key, (int)ColorUtilities.ToHex(defaultValue)); + return ColorUtilities.ToRGBA((uint)value); + } + + static void TrySave(ref T field, T newValue, string key) + { + if (field.Equals(newValue)) + return; + + if (typeof(T) == typeof(float)) + EditorPrefs.SetFloat(key, (float)(object)newValue); + else if (typeof(T) == typeof(int)) + EditorPrefs.SetInt(key, (int)(object)newValue); + else if (typeof(T) == typeof(bool)) + EditorPrefs.SetBool(key, (bool)(object)newValue); + else if (typeof(T) == typeof(string)) + EditorPrefs.SetString(key, (string)(object)newValue); + else if (typeof(T) == typeof(Color)) + EditorPrefs.SetInt(key, (int)ColorUtilities.ToHex((Color)(object)newValue)); + + field = newValue; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/GlobalSettings.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/GlobalSettings.cs.meta new file mode 100644 index 0000000..de260de --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/GlobalSettings.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: eff4db1c9252e5247b661dec568df962 +timeCreated: 1494714307 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/PostProcessShaderIncludePath.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/PostProcessShaderIncludePath.cs new file mode 100644 index 0000000..1640582 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/PostProcessShaderIncludePath.cs @@ -0,0 +1,26 @@ +using System.Linq; +using UnityEngine; +using System.IO; + +namespace UnityEditor.Experimental.Rendering +{ + static class PostProcessShaderIncludePath + { +#if UNITY_2018_1_OR_NEWER && !UNITY_2018_3_OR_NEWER + [ShaderIncludePath] +#endif + public static string[] GetPaths() + { + var srpMarker = Directory.GetFiles(Application.dataPath, "POSTFXMARKER", SearchOption.AllDirectories).FirstOrDefault(); + var paths = new string[srpMarker == null ? 1 : 2]; + var index = 0; + if (srpMarker != null) + { + paths[index] = Directory.GetParent(srpMarker).ToString(); + index++; + } + paths[index] = Path.GetFullPath("Packages/com.unity.postprocessing"); + return paths; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/PostProcessShaderIncludePath.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/PostProcessShaderIncludePath.cs.meta new file mode 100644 index 0000000..42cfc2b --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/PostProcessShaderIncludePath.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 75da50dbb3034f142a31c2a182292bc8 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/SerializedParameterOverride.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/SerializedParameterOverride.cs new file mode 100644 index 0000000..db1b1d6 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/SerializedParameterOverride.cs @@ -0,0 +1,62 @@ +using System; +using System.Linq; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// A wrapper used for serialization and easy access to the + /// underlying property and override state. + /// + public sealed class SerializedParameterOverride + { + /// + /// The override state property of the serialized parameter. + /// + public SerializedProperty overrideState { get; private set; } + + /// + /// The value property of the serialized parameter. + /// + public SerializedProperty value { get; private set; } + + /// + /// An array of all attributes set on the original parameter. + /// + public Attribute[] attributes { get; private set; } + + internal SerializedProperty baseProperty; + + /// + /// Returns the display name of the property. + /// + public string displayName + { + get { return baseProperty.displayName; } + } + + internal SerializedParameterOverride(SerializedProperty property, Attribute[] attributes) + { + baseProperty = property.Copy(); + + var localCopy = baseProperty.Copy(); + localCopy.Next(true); + overrideState = localCopy.Copy(); + localCopy.Next(false); + value = localCopy.Copy(); + + this.attributes = attributes; + } + + /// + /// Gets the attribute of type T from the original parameter. + /// + /// The type of attribute to look for + /// And attribute or type T, or null if none has been found + public T GetAttribute() + where T : Attribute + { + return (T)attributes.FirstOrDefault(x => x is T); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/SerializedParameterOverride.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/SerializedParameterOverride.cs.meta new file mode 100644 index 0000000..ab8030f --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/SerializedParameterOverride.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f48a0d4b798943a448e8d2e5d891133c +timeCreated: 1492899655 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/Styling.cs b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/Styling.cs new file mode 100644 index 0000000..55eff24 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/Styling.cs @@ -0,0 +1,114 @@ +using UnityEngine; +using UnityEngine.Rendering.PostProcessing; + +namespace UnityEditor.Rendering.PostProcessing +{ + /// + /// Common styles used for Post-processing editor controls. + /// + public static class Styling + { + /// + /// Style for the override checkbox. + /// + public static readonly GUIStyle smallTickbox; + + /// + /// Style for the labels in the toolbar of each effect. + /// + public static readonly GUIStyle miniLabelButton; + + static readonly Color splitterDark; + static readonly Color splitterLight; + + /// + /// Color of UI splitters. + /// + public static Color splitter { get { return EditorGUIUtility.isProSkin ? splitterDark : splitterLight; } } + + static readonly Texture2D paneOptionsIconDark; + static readonly Texture2D paneOptionsIconLight; + + /// + /// Option icon used in effect headers. + /// + public static Texture2D paneOptionsIcon { get { return EditorGUIUtility.isProSkin ? paneOptionsIconDark : paneOptionsIconLight; } } + + /// + /// Style for effect header labels. + /// + public static readonly GUIStyle headerLabel; + + static readonly Color headerBackgroundDark; + static readonly Color headerBackgroundLight; + + /// + /// Color of effect header backgrounds. + /// + public static Color headerBackground { get { return EditorGUIUtility.isProSkin ? headerBackgroundDark : headerBackgroundLight; } } + + /// + /// Style for the trackball labels. + /// + public static readonly GUIStyle wheelLabel; + + /// + /// Style for the trackball cursors. + /// + public static readonly GUIStyle wheelThumb; + + /// + /// Size of the trackball cursors. + /// + public static readonly Vector2 wheelThumbSize; + + /// + /// Style for the curve editor position info. + /// + public static readonly GUIStyle preLabel; + + static Styling() + { + smallTickbox = new GUIStyle("ShurikenToggle"); + + miniLabelButton = new GUIStyle(EditorStyles.miniLabel); + miniLabelButton.normal = new GUIStyleState + { + background = RuntimeUtilities.transparentTexture, + scaledBackgrounds = null, + textColor = Color.grey + }; + var activeState = new GUIStyleState + { + background = RuntimeUtilities.transparentTexture, + scaledBackgrounds = null, + textColor = Color.white + }; + miniLabelButton.active = activeState; + miniLabelButton.onNormal = activeState; + miniLabelButton.onActive = activeState; + + splitterDark = new Color(0.12f, 0.12f, 0.12f, 1.333f); + splitterLight = new Color(0.6f, 0.6f, 0.6f, 1.333f); + + headerBackgroundDark = new Color(0.1f, 0.1f, 0.1f, 0.2f); + headerBackgroundLight = new Color(1f, 1f, 1f, 0.2f); + + paneOptionsIconDark = (Texture2D)EditorGUIUtility.Load("Builtin Skins/DarkSkin/Images/pane options.png"); + paneOptionsIconLight = (Texture2D)EditorGUIUtility.Load("Builtin Skins/LightSkin/Images/pane options.png"); + + headerLabel = new GUIStyle(EditorStyles.miniLabel); + + wheelThumb = new GUIStyle("ColorPicker2DThumb"); + + wheelThumbSize = new Vector2( + !Mathf.Approximately(wheelThumb.fixedWidth, 0f) ? wheelThumb.fixedWidth : wheelThumb.padding.horizontal, + !Mathf.Approximately(wheelThumb.fixedHeight, 0f) ? wheelThumb.fixedHeight : wheelThumb.padding.vertical + ); + + wheelLabel = new GUIStyle(EditorStyles.miniLabel); + + preLabel = new GUIStyle("ShurikenLabel"); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/Styling.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/Styling.cs.meta new file mode 100644 index 0000000..daf42e9 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Editor/Utils/Styling.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c884467f149574e44b21c869b7fc3401 +timeCreated: 1492697266 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Gizmos.meta b/UnityCaptureSample/Assets/PostProcessing/Gizmos.meta new file mode 100644 index 0000000..cf2b531 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Gizmos.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 62591175d691aac46a9db652057e905c +folderAsset: yes +timeCreated: 1488200725 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Gizmos/PostProcessLayer.png b/UnityCaptureSample/Assets/PostProcessing/Gizmos/PostProcessLayer.png new file mode 100644 index 0000000..c0a61de Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Gizmos/PostProcessLayer.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Gizmos/PostProcessLayer.png.meta b/UnityCaptureSample/Assets/PostProcessing/Gizmos/PostProcessLayer.png.meta new file mode 100644 index 0000000..ee62d08 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Gizmos/PostProcessLayer.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 5f51e0b22aa8cb84b9f422576ce87ff9 +timeCreated: 1488200847 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 1 + aniso: 0 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/PostProcessResources.asset b/UnityCaptureSample/Assets/PostProcessing/PostProcessResources.asset new file mode 100644 index 0000000..bec7602 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/PostProcessResources.asset @@ -0,0 +1,138 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30f4b897495c7ad40b2d47143e02aaba, type: 3} + m_Name: PostProcessResources + m_EditorClassIdentifier: + blueNoise64: + - {fileID: 2800000, guid: 50b54341495978843a6f85583ed4417d, type: 3} + - {fileID: 2800000, guid: 3c2f1fb7e4b66e74191b7c328ada52d9, type: 3} + - {fileID: 2800000, guid: a469f920b21fc7c4fb5b950917ce2fb2, type: 3} + - {fileID: 2800000, guid: 373f9bf6b0841af4ebf26d25e4a3f4e2, type: 3} + - {fileID: 2800000, guid: 6fa5cf178eaaa5f42b820f636bb6e0bd, type: 3} + - {fileID: 2800000, guid: a1ae041906217ae44a774d4ca139af50, type: 3} + - {fileID: 2800000, guid: 79b86f3419b87f3429164a956da8cfab, type: 3} + - {fileID: 2800000, guid: 3ac02e7e783571c468f9c086d2384ba7, type: 3} + - {fileID: 2800000, guid: c55042318a938344ab23cd7f09dd0076, type: 3} + - {fileID: 2800000, guid: 71583cfd8899717428d5b1a95fa39cda, type: 3} + - {fileID: 2800000, guid: afe1e502240079342a0a980484b6da8b, type: 3} + - {fileID: 2800000, guid: 771903fe7b4674445829e52e91cff019, type: 3} + - {fileID: 2800000, guid: 980acadb960f8424c94307ec0e585b4e, type: 3} + - {fileID: 2800000, guid: 68613e6a221be1a4b9f31d7fa1c2d1bf, type: 3} + - {fileID: 2800000, guid: f6439b54b28f3884eb67579dec0b6f21, type: 3} + - {fileID: 2800000, guid: 2ee161d8945169243b5698fec114e1b7, type: 3} + - {fileID: 2800000, guid: 153f7d6dfbe713d4884df0f1e243ba92, type: 3} + - {fileID: 2800000, guid: bf95b6fdc179b0e4f890c841406193fc, type: 3} + - {fileID: 2800000, guid: 74aca53eb7273624baffc2bf5e5cc173, type: 3} + - {fileID: 2800000, guid: 729a3ae164bcb3b4380459386adcf331, type: 3} + - {fileID: 2800000, guid: 6dda07f1420a968449cf4c6620c44d9f, type: 3} + - {fileID: 2800000, guid: b7f000750830ddb4bbc80065b9314ce9, type: 3} + - {fileID: 2800000, guid: df01d03f056c6f445b4b8a0ae054207c, type: 3} + - {fileID: 2800000, guid: bfe953600e8fb1849a804ee08ace7b4c, type: 3} + - {fileID: 2800000, guid: 32c6a5f7143b86c44bd5cdee2ff3f8ad, type: 3} + - {fileID: 2800000, guid: f4b8ab78b57749d4e96d36f6d8a395d0, type: 3} + - {fileID: 2800000, guid: 09f6c01f98a3ded4daf1afc52a3c260f, type: 3} + - {fileID: 2800000, guid: bdd06fb88ef36ed4a85dd506352c2d80, type: 3} + - {fileID: 2800000, guid: 02c0a84bd64c6f044954d8bde9b46ec8, type: 3} + - {fileID: 2800000, guid: aa80dc44aa4fe4c43bb9d51d90cf2958, type: 3} + - {fileID: 2800000, guid: 0fa10b21877c61b4db40ba5708815f81, type: 3} + - {fileID: 2800000, guid: 6b0a189df0bd4d5448eaefb4e673ace8, type: 3} + - {fileID: 2800000, guid: 87a5e40cc271ea648b583616f6ebe7fe, type: 3} + - {fileID: 2800000, guid: b71bb466b71fd13449dd736f63caeb67, type: 3} + - {fileID: 2800000, guid: 319b8e66db3faa4438cf6982e9c89b2f, type: 3} + - {fileID: 2800000, guid: 0a79c155edf9b2d429d4736abee5acdb, type: 3} + - {fileID: 2800000, guid: 351e95d0e20a54849bd4ce5f9b498934, type: 3} + - {fileID: 2800000, guid: 1d6958e30e40a254dbe5a54c573eeb3c, type: 3} + - {fileID: 2800000, guid: 9660a4ca1ca8425408ac25c641932977, type: 3} + - {fileID: 2800000, guid: 547dbd5f858c74047ba3f213e4408307, type: 3} + - {fileID: 2800000, guid: 1a9ce5640cde5934aae0022f020464a6, type: 3} + - {fileID: 2800000, guid: cd9006dc442cc244e89b3f492384d46a, type: 3} + - {fileID: 2800000, guid: b266511438fae724f9d3ce6bd26583e8, type: 3} + - {fileID: 2800000, guid: 71bc1b6b66e8b784b972199b7e90204e, type: 3} + - {fileID: 2800000, guid: 15e54aa23a938444389469d53765d741, type: 3} + - {fileID: 2800000, guid: b9960364038cbfa4aa49d7b2032d3110, type: 3} + - {fileID: 2800000, guid: 8ecbbcae4cc747a4abbc4adce795d25e, type: 3} + - {fileID: 2800000, guid: 1378a33cdd085d64c9da863d2484ff21, type: 3} + - {fileID: 2800000, guid: aff59c63d25d43f4c938f248837c30fb, type: 3} + - {fileID: 2800000, guid: 3f7c3687170b90e4a8d2ee6b142670f4, type: 3} + - {fileID: 2800000, guid: d8c290e38ff0425409d0ae6a98c95e41, type: 3} + - {fileID: 2800000, guid: d5a51525b27e3ee4aadbeb39cbcf0750, type: 3} + - {fileID: 2800000, guid: d2e8e90fac2e6a341a38e1c3963c218d, type: 3} + - {fileID: 2800000, guid: c94b57b5a32a22d43ade66e09f6a4bd2, type: 3} + - {fileID: 2800000, guid: 936dea238abb0864ab3985a995e16a29, type: 3} + - {fileID: 2800000, guid: 5e542d0126a2c7848b66bffc428905fd, type: 3} + - {fileID: 2800000, guid: 70f23eaf7d8ae9147aa542d20e93733b, type: 3} + - {fileID: 2800000, guid: e138166e7a7c70f49943be7edda35d35, type: 3} + - {fileID: 2800000, guid: 85a45a6d8b2ffb84987d2b028ecfb220, type: 3} + - {fileID: 2800000, guid: d96974690c77f50489eb60ec84bd8dac, type: 3} + - {fileID: 2800000, guid: 404fa8def46b1c447817e1ebdaa7144e, type: 3} + - {fileID: 2800000, guid: 119591e0bb084e848835d237546b3882, type: 3} + - {fileID: 2800000, guid: a03c400b0e3959f428ee99dfc6cfc263, type: 3} + - {fileID: 2800000, guid: 4a11d65ce13d5f542a0ff136cc2f3fba, type: 3} + blueNoise256: + - {fileID: 2800000, guid: 6017f374382d64245a0a4aab668e6f38, type: 3} + - {fileID: 2800000, guid: 0f8fa14b3731cda4e947062e734d5e1e, type: 3} + - {fileID: 2800000, guid: 1abfe0e165ca1e9428b455ffc9a2d9ef, type: 3} + - {fileID: 2800000, guid: c072b653e98a06e40857d76ca8c7eecd, type: 3} + - {fileID: 2800000, guid: b52d5033b68309943a2386c270a90f44, type: 3} + - {fileID: 2800000, guid: acde5141d5f4f7a4188394bd52c4dc38, type: 3} + - {fileID: 2800000, guid: 999434725cbc2be4eb54043b36efd4a8, type: 3} + - {fileID: 2800000, guid: 70d0a1182b29d6347ac70374c3593bba, type: 3} + smaaLuts: + area: {fileID: 2800000, guid: 73ec4ae984a0a0f44a2be737e41a6f2f, type: 3} + search: {fileID: 2800000, guid: d99701099481a2f489610e977df6dcbc, type: 3} + shaders: + bloom: {fileID: 4800000, guid: c1e1d3119c6fd4646aea0b4b74cacc1a, type: 3} + copy: {fileID: 4800000, guid: cdbdb71de5f9c454b980f6d0e87f0afb, type: 3} + copyStd: {fileID: 4800000, guid: 4bf4cff0d0bac3d43894e2e8839feb40, type: 3} + copyStdFromTexArray: {fileID: 4800000, guid: 02d2da9bc88d25c4d878c1ed4e0b3854, + type: 3} + copyStdFromDoubleWide: {fileID: 4800000, guid: e8ce9961912f3214586fe8709b9012c1, + type: 3} + discardAlpha: {fileID: 4800000, guid: 5ab0816423f0dfe45841cab3b05ec9ef, type: 3} + depthOfField: {fileID: 4800000, guid: 0ef78d24e85a44f4da9d5b5eaa00e50b, type: 3} + finalPass: {fileID: 4800000, guid: f75014305794b3948a3c6d5ccd550e05, type: 3} + grainBaker: {fileID: 4800000, guid: 0d8afcb51cc9f0349a6d190da929b838, type: 3} + motionBlur: {fileID: 4800000, guid: 2c459b89a7c8b1a4fbefe0d81341651c, type: 3} + temporalAntialiasing: {fileID: 4800000, guid: 51bcf79c50dc92e47ba87821b61100c3, + type: 3} + subpixelMorphologicalAntialiasing: {fileID: 4800000, guid: 81af42a93ade3dd46a9b583d4eec76d6, + type: 3} + texture2dLerp: {fileID: 4800000, guid: 34a819c9e33402547a81619693adc8d5, type: 3} + uber: {fileID: 4800000, guid: 382151503e2a43a4ebb7366d1632731d, type: 3} + lut2DBaker: {fileID: 4800000, guid: 7ad194cbe7d006f4bace915156972026, type: 3} + lightMeter: {fileID: 4800000, guid: b34a29e523cb9d545881e193a079f2df, type: 3} + gammaHistogram: {fileID: 4800000, guid: f7ea35cfb33fcad4ab8f2429ec103bef, type: 3} + waveform: {fileID: 4800000, guid: 3020ac7ece79a7f4eb789a236f8bd6c5, type: 3} + vectorscope: {fileID: 4800000, guid: a71093f2a4fe26a40805c22739e10e4a, type: 3} + debugOverlays: {fileID: 4800000, guid: b958ad1c92bd3d64c9e61318b8681dab, type: 3} + deferredFog: {fileID: 4800000, guid: 4117fce9491711c4094d33a048e36e73, type: 3} + scalableAO: {fileID: 4800000, guid: d7640629310e79646af0f46eb55ae466, type: 3} + multiScaleAO: {fileID: 4800000, guid: 67f9497810829eb4791ec19e95781e51, type: 3} + screenSpaceReflections: {fileID: 4800000, guid: f997a3dc9254c44459323cced085150c, + type: 3} + computeShaders: + autoExposure: {fileID: 7200000, guid: 34845e0ca016b7448842e965db5890a5, type: 3} + exposureHistogram: {fileID: 7200000, guid: 8c2fcbdf9bc58664f89917f7b9d79501, type: 3} + lut3DBaker: {fileID: 7200000, guid: 42496b74c071f5749950ca1abe33e945, type: 3} + texture3dLerp: {fileID: 7200000, guid: 31e9175024adfd44aba2530ff9b77494, type: 3} + gammaHistogram: {fileID: 7200000, guid: 18183ebfeeab97749b43e38b928604a7, type: 3} + waveform: {fileID: 7200000, guid: 92c63830cd50c0b4fbb8233613839958, type: 3} + vectorscope: {fileID: 7200000, guid: e1efca7c36fd01840aae0dd10378de5c, type: 3} + multiScaleAODownsample1: {fileID: 7200000, guid: 4c63bc487e6c29a4a99f85a6c47b292b, + type: 3} + multiScaleAODownsample2: {fileID: 7200000, guid: e4d3e4779e48a374f91d48d4c0aedb7b, + type: 3} + multiScaleAORender: {fileID: 7200000, guid: 34a460e8a2e66c243a9c12024e5a798d, + type: 3} + multiScaleAOUpsample: {fileID: 7200000, guid: 600d6212b59bb40409d19d750b5fd1e9, + type: 3} + gaussianDownsample: {fileID: 7200000, guid: 6dba4103d23a7904fbc49099355aff3e, + type: 3} diff --git a/UnityCaptureSample/Assets/PostProcessing/PostProcessResources.asset.meta b/UnityCaptureSample/Assets/PostProcessing/PostProcessResources.asset.meta new file mode 100644 index 0000000..b8f940c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/PostProcessResources.asset.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: d82512f9c8e5d4a4d938b575d47f88d4 +timeCreated: 1493713586 +licenseType: Pro +NativeFormatImporter: + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime.meta new file mode 100644 index 0000000..b58a1ac --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 1bdda73de20b6a54592f998f94de3b64 +folderAsset: yes +timeCreated: 1484302934 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes.meta new file mode 100644 index 0000000..b90a0f6 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 18b9eca2f52e6624db241af91bab06c9 +folderAsset: yes +timeCreated: 1488204491 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/DisplayNameAttribute.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/DisplayNameAttribute.cs new file mode 100644 index 0000000..1045b6b --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/DisplayNameAttribute.cs @@ -0,0 +1,25 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Use this attribute to change the label of a field displayed in the inspector. + /// + [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] + public sealed class DisplayNameAttribute : Attribute + { + /// + /// The label displayed in the inspector. + /// + public readonly string displayName; + + /// + /// Creates a new attribute. + /// + /// The label to display in the inspector + public DisplayNameAttribute(string displayName) + { + this.displayName = displayName; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/DisplayNameAttribute.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/DisplayNameAttribute.cs.meta new file mode 100644 index 0000000..5422d69 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/DisplayNameAttribute.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 912e288507f1e724492c7c721fa1deb8 +timeCreated: 1493047701 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/MaxAttribute.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/MaxAttribute.cs new file mode 100644 index 0000000..826879f --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/MaxAttribute.cs @@ -0,0 +1,25 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Use this attribute to clamp floating point values to a maximum value in the inspector. + /// + [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] + public sealed class MaxAttribute : Attribute + { + /// + /// The maximum value the field will be clamped to. + /// + public readonly float max; + + /// + /// Creates a new attribute. + /// + /// The maximum value the field will be clamped to + public MaxAttribute(float max) + { + this.max = max; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/MaxAttribute.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/MaxAttribute.cs.meta new file mode 100644 index 0000000..06fe9c2 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/MaxAttribute.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8c72b20f77adb59439f8eed4f25a950a +timeCreated: 1493113243 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/MinAttribute.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/MinAttribute.cs new file mode 100644 index 0000000..f8d893c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/MinAttribute.cs @@ -0,0 +1,25 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Use this attribute to clamp floating point values to a minimum value in the inspector. + /// + [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] + public sealed class MinAttribute : Attribute + { + /// + /// The minimum value the field will be clamped to. + /// + public readonly float min; + + /// + /// Creates a new attribute. + /// + /// The minimum value the field will be clamped to + public MinAttribute(float min) + { + this.min = min; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/MinAttribute.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/MinAttribute.cs.meta new file mode 100644 index 0000000..93d3ab3 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/MinAttribute.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 63007e9c3f71cad46a59f223a8b32d46 +timeCreated: 1493113232 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/MinMaxAttribute.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/MinMaxAttribute.cs new file mode 100644 index 0000000..aa5d087 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/MinMaxAttribute.cs @@ -0,0 +1,32 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Use this attribute to specify a range between a min and a max value. + /// + [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] + public sealed class MinMaxAttribute : Attribute + { + /// + /// The minimum limit of the user defined range. + /// + public readonly float min; + + /// + /// The maximum limit of the user defined range. + /// + public readonly float max; + + /// + /// Creates a new attribute. + /// + /// The minimum limit of the user defined range + /// The maximum limit of the user defined range + public MinMaxAttribute(float min, float max) + { + this.min = min; + this.max = max; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/MinMaxAttribute.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/MinMaxAttribute.cs.meta new file mode 100644 index 0000000..a0e5848 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/MinMaxAttribute.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 1d2cae9d8c54de04fab072666ddd1e57 +timeCreated: 1493113280 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/PostProcessAttribute.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/PostProcessAttribute.cs new file mode 100644 index 0000000..0219249 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/PostProcessAttribute.cs @@ -0,0 +1,60 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Use this attribute to associate a to a + /// type. + /// + /// + /// + [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] + public sealed class PostProcessAttribute : Attribute + { + /// + /// The renderer type to associate with a . + /// + public readonly Type renderer; + + /// + /// The injection point for the effect. + /// + public readonly PostProcessEvent eventType; + + /// + /// The menu item name to set for the effect. You can use a `/` character to add sub-menus. + /// + public readonly string menuItem; + + /// + /// Should this effect be allowed in the Scene View? + /// + public readonly bool allowInSceneView; + + internal readonly bool builtinEffect; + + /// + /// Creates a new attribute. + /// + /// The renderer type to associate with a + /// The injection point for the effect + /// The menu item name to set for the effect. You can use a `/` character to add sub-menus. + /// Should this effect be allowed in the Scene View? + public PostProcessAttribute(Type renderer, PostProcessEvent eventType, string menuItem, bool allowInSceneView = true) + { + this.renderer = renderer; + this.eventType = eventType; + this.menuItem = menuItem; + this.allowInSceneView = allowInSceneView; + builtinEffect = false; + } + + internal PostProcessAttribute(Type renderer, string menuItem, bool allowInSceneView = true) + { + this.renderer = renderer; + this.menuItem = menuItem; + this.allowInSceneView = allowInSceneView; + builtinEffect = true; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/PostProcessAttribute.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/PostProcessAttribute.cs.meta new file mode 100644 index 0000000..f189e4c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/PostProcessAttribute.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 28cff9aae95df994e98129a9b35627de +timeCreated: 1488204519 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/TrackballAttribute.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/TrackballAttribute.cs new file mode 100644 index 0000000..f7c2a31 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/TrackballAttribute.cs @@ -0,0 +1,52 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Use this attribute to draw a trackball in the inspector. + /// + [AttributeUsage(AttributeTargets.Field, AllowMultiple = false)] + public sealed class TrackballAttribute : Attribute + { + /// + /// Trackball modes. These are used to compute and display pre-filtered trackball vales in + /// the inspector. + /// + public enum Mode + { + /// + /// Don't display pre-filtered values. + /// + None, + + /// + /// Display pre-filtered lift values. + /// + Lift, + + /// + /// Display pre-filtered gamma values. + /// + Gamma, + + /// + /// Display pre-filtered grain values. + /// + Gain + } + + /// + /// The mode used to display pre-filtered values in the inspector. + /// + public readonly Mode mode; + + /// + /// Creates a new attribute. + /// + /// A mode used to display pre-filtered values in the inspector + public TrackballAttribute(Mode mode) + { + this.mode = mode; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/TrackballAttribute.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/TrackballAttribute.cs.meta new file mode 100644 index 0000000..5efefc9 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Attributes/TrackballAttribute.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 44788f6e7bbf9174181bfe4689e66131 +timeCreated: 1493900877 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects.meta new file mode 100644 index 0000000..01457a5 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: d220742cb204f8e4e9fe5f7b1efa7b54 +folderAsset: yes +timeCreated: 1487844780 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/AmbientOcclusion.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/AmbientOcclusion.cs new file mode 100644 index 0000000..9996f1d --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/AmbientOcclusion.cs @@ -0,0 +1,268 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Ambient occlusion modes. + /// + public enum AmbientOcclusionMode + { + /// + /// A standard implementation of ambient obscurance that works on non modern platforms. If + /// you target a compute-enabled platform we recommend that you use + /// instead. + /// + ScalableAmbientObscurance, + + /// + /// A modern version of ambient occlusion heavily optimized for consoles and desktop + /// platforms. + /// + MultiScaleVolumetricObscurance + } + + /// + /// Quality settings for . + /// + public enum AmbientOcclusionQuality + { + /// + /// 4 samples + downsampling. + /// + Lowest, + + /// + /// 6 samples + downsampling. + /// + Low, + + /// + /// 10 samples + downsampling. + /// + Medium, + + /// + /// 8 samples. + /// + High, + + /// + /// 12 samples. + /// + Ultra + } + + /// + /// A volume parameter holding a value. + /// + [Serializable] + public sealed class AmbientOcclusionModeParameter : ParameterOverride {} + + /// + /// A volume parameter holding a value. + /// + [Serializable] + public sealed class AmbientOcclusionQualityParameter : ParameterOverride {} + + /// + /// This class holds settings for the Ambient Occlusion effect. + /// + [Serializable] + [PostProcess(typeof(AmbientOcclusionRenderer), "Unity/Ambient Occlusion")] + public sealed class AmbientOcclusion : PostProcessEffectSettings + { + // Shared parameters + + /// + /// The ambient occlusion method to use. + /// + [Tooltip("The ambient occlusion method to use. \"Multi Scale Volumetric Obscurance\" is higher quality and faster on desktop & console platforms but requires compute shader support.")] + + public AmbientOcclusionModeParameter mode = new AmbientOcclusionModeParameter { value = AmbientOcclusionMode.MultiScaleVolumetricObscurance }; + + /// + /// The degree of darkness added by ambient occlusion. + /// + [Range(0f, 4f), Tooltip("The degree of darkness added by ambient occlusion. Higher values produce darker areas.")] + public FloatParameter intensity = new FloatParameter { value = 0f }; + + /// + /// A custom color to use for the ambient occlusion. + /// + [ColorUsage(false), Tooltip("The custom color to use for the ambient occlusion. The default is black.")] + + public ColorParameter color = new ColorParameter { value = Color.black }; + + /// + /// Only affects ambient lighting. This mode is only available with the Deferred rendering + /// path and HDR rendering. Objects rendered with the Forward rendering path won't get any + /// ambient occlusion. + /// + [Tooltip("Check this box to mark this Volume as to only affect ambient lighting. This mode is only available with the Deferred rendering path and HDR rendering. Objects rendered with the Forward rendering path won't get any ambient occlusion.")] + public BoolParameter ambientOnly = new BoolParameter { value = true }; + + // MSVO-only parameters + + /// + /// The tolerance of the noise filter to changes in the depth pyramid. + /// + [Range(-8f, 0f)] + public FloatParameter noiseFilterTolerance = new FloatParameter { value = 0f }; // Hidden + + /// + /// The tolerance of the bilateral blur filter to depth changes. + /// + [Range(-8f, -1f)] + public FloatParameter blurTolerance = new FloatParameter { value = -4.6f }; // Hidden + + /// + /// The tolerance of the upsampling pass to depth changes. + /// + [Range(-12f, -1f)] + public FloatParameter upsampleTolerance = new FloatParameter { value = -12f }; // Hidden + + /// + /// Modifies the thickness of occluders. This increases dark areas but also introduces dark + /// halo around objects. + /// + [Range(1f, 10f), Tooltip("This modifies the thickness of occluders. It increases the size of dark areas and also introduces a dark halo around objects.")] + public FloatParameter thicknessModifier = new FloatParameter { value = 1f }; + + // HDRP-only parameters + + /// + /// Modifies he influence of direct lighting on ambient occlusion. This is only used in the + /// HD Render Pipeline currently. + /// + [Range(0f, 1f), Tooltip("Modifies the influence of direct lighting on ambient occlusion.")] + public FloatParameter directLightingStrength = new FloatParameter { value = 0f }; + + // SAO-only parameters + /// + /// Radius of sample points, which affects extent of darkened areas. + /// + [Tooltip("The radius of sample points. This affects the size of darkened areas.")] + public FloatParameter radius = new FloatParameter { value = 0.25f }; + + /// + /// The number of sample points, which affects quality and performance. Lowest, Low & Medium + /// passes are downsampled. High and Ultra are not and should only be used on high-end + /// hardware. + /// + [Tooltip("The number of sample points. This affects both quality and performance. For \"Lowest\", \"Low\", and \"Medium\", passes are downsampled. For \"High\" and \"Ultra\", they are not and therefore you should only \"High\" and \"Ultra\" on high-end hardware.")] + public AmbientOcclusionQualityParameter quality = new AmbientOcclusionQualityParameter { value = AmbientOcclusionQuality.Medium }; + + // SRPs can call this method without a context set (see HDRP). + // We need a better way to handle this than checking for a null context, context should + // never be null. + /// + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + bool state = enabled.value + && intensity.value > 0f; + + if (mode.value == AmbientOcclusionMode.ScalableAmbientObscurance) + { + state &= !RuntimeUtilities.scriptableRenderPipelineActive; + + if (context != null) + { + state &= context.resources.shaders.scalableAO + && context.resources.shaders.scalableAO.isSupported; + } + } + else if (mode.value == AmbientOcclusionMode.MultiScaleVolumetricObscurance) + { +#if UNITY_2017_1_OR_NEWER + if (context != null) + { + state &= context.resources.shaders.multiScaleAO + && context.resources.shaders.multiScaleAO.isSupported + && context.resources.computeShaders.multiScaleAODownsample1 + && context.resources.computeShaders.multiScaleAODownsample2 + && context.resources.computeShaders.multiScaleAORender + && context.resources.computeShaders.multiScaleAOUpsample; + } + + state &= SystemInfo.supportsComputeShaders + && !RuntimeUtilities.isAndroidOpenGL + && RenderTextureFormat.RFloat.IsSupported() + && RenderTextureFormat.RHalf.IsSupported() + && RenderTextureFormat.R8.IsSupported(); +#else + state = false; +#endif + } + + return state; + } + } + + internal interface IAmbientOcclusionMethod + { + DepthTextureMode GetCameraFlags(); + void RenderAfterOpaque(PostProcessRenderContext context); + void RenderAmbientOnly(PostProcessRenderContext context); + void CompositeAmbientOnly(PostProcessRenderContext context); + void Release(); + } + +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + internal sealed class AmbientOcclusionRenderer : PostProcessEffectRenderer + { + IAmbientOcclusionMethod[] m_Methods; + + public override void Init() + { + if (m_Methods == null) + { + m_Methods = new IAmbientOcclusionMethod[] + { + new ScalableAO(settings), + new MultiScaleVO(settings), + }; + } + } + + public bool IsAmbientOnly(PostProcessRenderContext context) + { + var camera = context.camera; + return settings.ambientOnly.value + && camera.actualRenderingPath == RenderingPath.DeferredShading + && camera.allowHDR; + } + + public IAmbientOcclusionMethod Get() + { + return m_Methods[(int)settings.mode.value]; + } + + public override DepthTextureMode GetCameraFlags() + { + return Get().GetCameraFlags(); + } + + public override void Release() + { + foreach (var m in m_Methods) + m.Release(); + } + + public ScalableAO GetScalableAO() + { + return (ScalableAO)m_Methods[(int)AmbientOcclusionMode.ScalableAmbientObscurance]; + } + + public MultiScaleVO GetMultiScaleVO() + { + return (MultiScaleVO)m_Methods[(int)AmbientOcclusionMode.MultiScaleVolumetricObscurance]; + } + + // Unused + public override void Render(PostProcessRenderContext context) + { + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/AmbientOcclusion.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/AmbientOcclusion.cs.meta new file mode 100644 index 0000000..940bb4b --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/AmbientOcclusion.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c1cb7e9e120078f43bce4f0b1be547a7 +timeCreated: 1498493415 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/AutoExposure.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/AutoExposure.cs new file mode 100644 index 0000000..0a02c8c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/AutoExposure.cs @@ -0,0 +1,199 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Eye adaptation modes. + /// + public enum EyeAdaptation + { + /// + /// Progressive (smooth) eye adaptation. + /// + Progressive, + + /// + /// Fixed (instant) eye adaptation. + /// + Fixed + } + + /// + /// A volume parameter holding a value. + /// + [Serializable] + public sealed class EyeAdaptationParameter : ParameterOverride {} + + /// + /// This class holds settings for the Auto Exposure effect. + /// + [Serializable] + [PostProcess(typeof(AutoExposureRenderer), "Unity/Auto Exposure")] + public sealed class AutoExposure : PostProcessEffectSettings + { + /// + /// These values are the lower and upper percentages of the histogram that will be used to + /// find a stable average luminance. Values outside of this range will be discarded and wont + /// contribute to the average luminance. + /// + [MinMax(1f, 99f), DisplayName("Filtering (%)"), Tooltip("Filters the bright and dark parts of the histogram when computing the average luminance. This is to avoid very dark pixels and very bright pixels from contributing to the auto exposure. Unit is in percent.")] + public Vector2Parameter filtering = new Vector2Parameter { value = new Vector2(50f, 95f) }; + + /// + /// Minimum average luminance to consider for auto exposure (in EV). + /// + [Range(LogHistogram.rangeMin, LogHistogram.rangeMax), DisplayName("Minimum (EV)"), Tooltip("Minimum average luminance to consider for auto exposure. Unit is EV.")] + public FloatParameter minLuminance = new FloatParameter { value = 0f }; + + /// + /// Maximum average luminance to consider for auto exposure (in EV). + /// + [Range(LogHistogram.rangeMin, LogHistogram.rangeMax), DisplayName("Maximum (EV)"), Tooltip("Maximum average luminance to consider for auto exposure. Unit is EV.")] + public FloatParameter maxLuminance = new FloatParameter { value = 0f }; + + /// + /// Middle-grey value. Use this to compensate the global exposure of the scene. + /// + [Min(0f), DisplayName("Exposure Compensation"), Tooltip("Use this to scale the global exposure of the scene.")] + public FloatParameter keyValue = new FloatParameter { value = 1f }; + + /// + /// The type of eye adaptation to use. + /// + [DisplayName("Type"), Tooltip("Use \"Progressive\" if you want auto exposure to be animated. Use \"Fixed\" otherwise.")] + public EyeAdaptationParameter eyeAdaptation = new EyeAdaptationParameter { value = EyeAdaptation.Progressive }; + + /// + /// The adaptation speed from a dark to a light environment. + /// + [Min(0f), Tooltip("Adaptation speed from a dark to a light environment.")] + public FloatParameter speedUp = new FloatParameter { value = 2f }; + + /// + /// The adaptation speed from a light to a dark environment. + /// + [Min(0f), Tooltip("Adaptation speed from a light to a dark environment.")] + public FloatParameter speedDown = new FloatParameter { value = 1f }; + + /// + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled.value + && SystemInfo.supportsComputeShaders + && !RuntimeUtilities.isAndroidOpenGL + && RenderTextureFormat.RFloat.IsSupported() + && context.resources.computeShaders.autoExposure + && context.resources.computeShaders.exposureHistogram; + } + } + +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + internal sealed class AutoExposureRenderer : PostProcessEffectRenderer + { + const int k_NumEyes = 2; + const int k_NumAutoExposureTextures = 2; + + readonly RenderTexture[][] m_AutoExposurePool = new RenderTexture[k_NumEyes][]; + int[] m_AutoExposurePingPong = new int[k_NumEyes]; + RenderTexture m_CurrentAutoExposure; + + public AutoExposureRenderer() + { + for (int eye = 0; eye < k_NumEyes; eye++) + { + m_AutoExposurePool[eye] = new RenderTexture[k_NumAutoExposureTextures]; + m_AutoExposurePingPong[eye] = 0; + } + } + + void CheckTexture(int eye, int id) + { + if (m_AutoExposurePool[eye][id] == null || !m_AutoExposurePool[eye][id].IsCreated()) + { + m_AutoExposurePool[eye][id] = new RenderTexture(1, 1, 0, RenderTextureFormat.RFloat) { enableRandomWrite = true }; + m_AutoExposurePool[eye][id].Create(); + } + } + + public override void Render(PostProcessRenderContext context) + { + var cmd = context.command; + cmd.BeginSample("AutoExposureLookup"); + + // Prepare autoExpo texture pool + CheckTexture(context.xrActiveEye, 0); + CheckTexture(context.xrActiveEye, 1); + + // Make sure filtering values are correct to avoid apocalyptic consequences + float lowPercent = settings.filtering.value.x; + float highPercent = settings.filtering.value.y; + const float kMinDelta = 1e-2f; + highPercent = Mathf.Clamp(highPercent, 1f + kMinDelta, 99f); + lowPercent = Mathf.Clamp(lowPercent, 1f, highPercent - kMinDelta); + + // Clamp min/max adaptation values as well + float minLum = settings.minLuminance.value; + float maxLum = settings.maxLuminance.value; + settings.minLuminance.value = Mathf.Min(minLum, maxLum); + settings.maxLuminance.value = Mathf.Max(minLum, maxLum); + + // Compute average luminance & auto exposure + bool firstFrame = m_ResetHistory || !Application.isPlaying; + string adaptation = null; + + if (firstFrame || settings.eyeAdaptation.value == EyeAdaptation.Fixed) + adaptation = "KAutoExposureAvgLuminance_fixed"; + else + adaptation = "KAutoExposureAvgLuminance_progressive"; + + var compute = context.resources.computeShaders.autoExposure; + int kernel = compute.FindKernel(adaptation); + cmd.SetComputeBufferParam(compute, kernel, "_HistogramBuffer", context.logHistogram.data); + cmd.SetComputeVectorParam(compute, "_Params1", new Vector4(lowPercent * 0.01f, highPercent * 0.01f, RuntimeUtilities.Exp2(settings.minLuminance.value), RuntimeUtilities.Exp2(settings.maxLuminance.value))); + cmd.SetComputeVectorParam(compute, "_Params2", new Vector4(settings.speedDown.value, settings.speedUp.value, settings.keyValue.value, Time.deltaTime)); + cmd.SetComputeVectorParam(compute, "_ScaleOffsetRes", context.logHistogram.GetHistogramScaleOffsetRes(context)); + + if (firstFrame) + { + // We don't want eye adaptation when not in play mode because the GameView isn't + // animated, thus making it harder to tweak. Just use the final audo exposure value. + m_CurrentAutoExposure = m_AutoExposurePool[context.xrActiveEye][0]; + cmd.SetComputeTextureParam(compute, kernel, "_Destination", m_CurrentAutoExposure); + cmd.DispatchCompute(compute, kernel, 1, 1, 1); + + // Copy current exposure to the other pingpong target to avoid adapting from black + RuntimeUtilities.CopyTexture(cmd, m_AutoExposurePool[context.xrActiveEye][0], m_AutoExposurePool[context.xrActiveEye][1]); + m_ResetHistory = false; + } + else + { + int pp = m_AutoExposurePingPong[context.xrActiveEye]; + var src = m_AutoExposurePool[context.xrActiveEye][++pp % 2]; + var dst = m_AutoExposurePool[context.xrActiveEye][++pp % 2]; + + cmd.SetComputeTextureParam(compute, kernel, "_Source", src); + cmd.SetComputeTextureParam(compute, kernel, "_Destination", dst); + cmd.DispatchCompute(compute, kernel, 1, 1, 1); + + m_AutoExposurePingPong[context.xrActiveEye] = ++pp % 2; + m_CurrentAutoExposure = dst; + } + + cmd.EndSample("AutoExposureLookup"); + + context.autoExposureTexture = m_CurrentAutoExposure; + context.autoExposure = settings; + } + + public override void Release() + { + foreach (var rtEyeSet in m_AutoExposurePool) + { + foreach (var rt in rtEyeSet) + RuntimeUtilities.Destroy(rt); + } + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/AutoExposure.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/AutoExposure.cs.meta new file mode 100644 index 0000000..4ada827 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/AutoExposure.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b3f6f3f7c722b4544b97e3c75840aa33 +timeCreated: 1491826543 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Bloom.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Bloom.cs new file mode 100644 index 0000000..49879a8 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Bloom.cs @@ -0,0 +1,272 @@ +using System; +using UnityEngine.Serialization; + +namespace UnityEngine.Rendering.PostProcessing +{ + // For now and by popular request, this bloom effect is geared toward artists so they have full + // control over how it looks at the expense of physical correctness. + // Eventually we will need a "true" natural bloom effect with proper energy conservation. + + /// + /// This class holds settings for the Bloom effect. + /// + [Serializable] + [PostProcess(typeof(BloomRenderer), "Unity/Bloom")] + public sealed class Bloom : PostProcessEffectSettings + { + /// + /// The strength of the bloom filter. + /// + [Min(0f), Tooltip("Strength of the bloom filter. Values higher than 1 will make bloom contribute more energy to the final render.")] + public FloatParameter intensity = new FloatParameter { value = 0f }; + + /// + /// Filters out pixels under this level of brightness. This value is expressed in + /// gamma-space. + /// + [Min(0f), Tooltip("Filters out pixels under this level of brightness. Value is in gamma-space.")] + public FloatParameter threshold = new FloatParameter { value = 1f }; + + /// + /// Makes transition between under/over-threshold gradual (0 = hard threshold, 1 = soft + /// threshold). + /// + [Range(0f, 1f), Tooltip("Makes transitions between under/over-threshold gradual. 0 for a hard threshold, 1 for a soft threshold).")] + public FloatParameter softKnee = new FloatParameter { value = 0.5f }; + + /// + /// Clamps pixels to control the bloom amount. This value is expressed in gamma-space. + /// + [Tooltip("Clamps pixels to control the bloom amount. Value is in gamma-space.")] + public FloatParameter clamp = new FloatParameter { value = 65472f }; + + /// + /// Changes extent of veiling effects in a screen resolution-independent fashion. For + /// maximum quality stick to integer values. Because this value changes the internal + /// iteration count, animating it isn't recommended as it may introduce small hiccups in + /// the perceived radius. + /// + [Range(1f, 10f), Tooltip("Changes the extent of veiling effects. For maximum quality, use integer values. Because this value changes the internal iteration count, You should not animating it as it may introduce issues with the perceived radius.")] + public FloatParameter diffusion = new FloatParameter { value = 7f }; + + /// + /// Distorts the bloom to give an anamorphic look. Negative values distort vertically, + /// positive values distort horizontally. + /// + [Range(-1f, 1f), Tooltip("Distorts the bloom to give an anamorphic look. Negative values distort vertically, positive values distort horizontally.")] + public FloatParameter anamorphicRatio = new FloatParameter { value = 0f }; + + /// + /// The tint of the Bloom filter. + /// +#if UNITY_2018_1_OR_NEWER + [ColorUsage(false, true), Tooltip("Global tint of the bloom filter.")] +#else + [ColorUsage(false, true, 0f, 8f, 0.125f, 3f), Tooltip("Global tint of the bloom filter.")] +#endif + public ColorParameter color = new ColorParameter { value = Color.white }; + + /// + /// Boost performances by lowering the effect quality. + /// + [FormerlySerializedAs("mobileOptimized")] + [Tooltip("Boost performance by lowering the effect quality. This settings is meant to be used on mobile and other low-end platforms but can also provide a nice performance boost on desktops and consoles.")] + public BoolParameter fastMode = new BoolParameter { value = false }; + + /// + /// The dirtiness texture to add smudges or dust to the lens. + /// + [Tooltip("The lens dirt texture used to add smudges or dust to the bloom effect."), DisplayName("Texture")] + public TextureParameter dirtTexture = new TextureParameter { value = null }; + + /// + /// The amount of lens dirtiness. + /// + [Min(0f), Tooltip("The intensity of the lens dirtiness."), DisplayName("Intensity")] + public FloatParameter dirtIntensity = new FloatParameter { value = 0f }; + + /// + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled.value + && intensity.value > 0f; + } + } + +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + internal sealed class BloomRenderer : PostProcessEffectRenderer + { + enum Pass + { + Prefilter13, + Prefilter4, + Downsample13, + Downsample4, + UpsampleTent, + UpsampleBox, + DebugOverlayThreshold, + DebugOverlayTent, + DebugOverlayBox + } + + // [down,up] + Level[] m_Pyramid; + const int k_MaxPyramidSize = 16; // Just to make sure we handle 64k screens... Future-proof! + + struct Level + { + internal int down; + internal int up; + } + + public override void Init() + { + m_Pyramid = new Level[k_MaxPyramidSize]; + + for (int i = 0; i < k_MaxPyramidSize; i++) + { + m_Pyramid[i] = new Level + { + down = Shader.PropertyToID("_BloomMipDown" + i), + up = Shader.PropertyToID("_BloomMipUp" + i) + }; + } + } + + public override void Render(PostProcessRenderContext context) + { + var cmd = context.command; + cmd.BeginSample("BloomPyramid"); + + var sheet = context.propertySheets.Get(context.resources.shaders.bloom); + + // Apply auto exposure adjustment in the prefiltering pass + sheet.properties.SetTexture(ShaderIDs.AutoExposureTex, context.autoExposureTexture); + + // Negative anamorphic ratio values distort vertically - positive is horizontal + float ratio = Mathf.Clamp(settings.anamorphicRatio, -1, 1); + float rw = ratio < 0 ? -ratio : 0f; + float rh = ratio > 0 ? ratio : 0f; + + // Do bloom on a half-res buffer, full-res doesn't bring much and kills performances on + // fillrate limited platforms + int tw = Mathf.FloorToInt(context.screenWidth / (2f - rw)); + int th = Mathf.FloorToInt(context.screenHeight / (2f - rh)); + bool singlePassDoubleWide = (context.stereoActive && (context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) && (context.camera.stereoTargetEye == StereoTargetEyeMask.Both)); + int tw_stereo = singlePassDoubleWide ? tw * 2 : tw; + + // Determine the iteration count + int s = Mathf.Max(tw, th); + float logs = Mathf.Log(s, 2f) + Mathf.Min(settings.diffusion.value, 10f) - 10f; + int logs_i = Mathf.FloorToInt(logs); + int iterations = Mathf.Clamp(logs_i, 1, k_MaxPyramidSize); + float sampleScale = 0.5f + logs - logs_i; + sheet.properties.SetFloat(ShaderIDs.SampleScale, sampleScale); + + // Prefiltering parameters + float lthresh = Mathf.GammaToLinearSpace(settings.threshold.value); + float knee = lthresh * settings.softKnee.value + 1e-5f; + var threshold = new Vector4(lthresh, lthresh - knee, knee * 2f, 0.25f / knee); + sheet.properties.SetVector(ShaderIDs.Threshold, threshold); + float lclamp = Mathf.GammaToLinearSpace(settings.clamp.value); + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(lclamp, 0f, 0f, 0f)); + + int qualityOffset = settings.fastMode ? 1 : 0; + + // Downsample + var lastDown = context.source; + for (int i = 0; i < iterations; i++) + { + int mipDown = m_Pyramid[i].down; + int mipUp = m_Pyramid[i].up; + int pass = i == 0 + ? (int)Pass.Prefilter13 + qualityOffset + : (int)Pass.Downsample13 + qualityOffset; + + context.GetScreenSpaceTemporaryRT(cmd, mipDown, 0, context.sourceFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, tw_stereo, th); + context.GetScreenSpaceTemporaryRT(cmd, mipUp, 0, context.sourceFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, tw_stereo, th); + cmd.BlitFullscreenTriangle(lastDown, mipDown, sheet, pass); + + lastDown = mipDown; + tw_stereo = (singlePassDoubleWide && ((tw_stereo / 2) % 2 > 0)) ? 1 + tw_stereo / 2 : tw_stereo / 2; + tw_stereo = Mathf.Max(tw_stereo, 1); + th = Mathf.Max(th / 2, 1); + } + + // Upsample + int lastUp = m_Pyramid[iterations - 1].down; + for (int i = iterations - 2; i >= 0; i--) + { + int mipDown = m_Pyramid[i].down; + int mipUp = m_Pyramid[i].up; + cmd.SetGlobalTexture(ShaderIDs.BloomTex, mipDown); + cmd.BlitFullscreenTriangle(lastUp, mipUp, sheet, (int)Pass.UpsampleTent + qualityOffset); + lastUp = mipUp; + } + + var linearColor = settings.color.value.linear; + float intensity = RuntimeUtilities.Exp2(settings.intensity.value / 10f) - 1f; + var shaderSettings = new Vector4(sampleScale, intensity, settings.dirtIntensity.value, iterations); + + // Debug overlays + if (context.IsDebugOverlayEnabled(DebugOverlay.BloomThreshold)) + { + context.PushDebugOverlay(cmd, context.source, sheet, (int)Pass.DebugOverlayThreshold); + } + else if (context.IsDebugOverlayEnabled(DebugOverlay.BloomBuffer)) + { + sheet.properties.SetVector(ShaderIDs.ColorIntensity, new Vector4(linearColor.r, linearColor.g, linearColor.b, intensity)); + context.PushDebugOverlay(cmd, m_Pyramid[0].up, sheet, (int)Pass.DebugOverlayTent + qualityOffset); + } + + // Lens dirtiness + // Keep the aspect ratio correct & center the dirt texture, we don't want it to be + // stretched or squashed + var dirtTexture = settings.dirtTexture.value == null + ? RuntimeUtilities.blackTexture + : settings.dirtTexture.value; + + var dirtRatio = (float)dirtTexture.width / (float)dirtTexture.height; + var screenRatio = (float)context.screenWidth / (float)context.screenHeight; + var dirtTileOffset = new Vector4(1f, 1f, 0f, 0f); + + if (dirtRatio > screenRatio) + { + dirtTileOffset.x = screenRatio / dirtRatio; + dirtTileOffset.z = (1f - dirtTileOffset.x) * 0.5f; + } + else if (screenRatio > dirtRatio) + { + dirtTileOffset.y = dirtRatio / screenRatio; + dirtTileOffset.w = (1f - dirtTileOffset.y) * 0.5f; + } + + // Shader properties + var uberSheet = context.uberSheet; + if (settings.fastMode) + uberSheet.EnableKeyword("BLOOM_LOW"); + else + uberSheet.EnableKeyword("BLOOM"); + uberSheet.properties.SetVector(ShaderIDs.Bloom_DirtTileOffset, dirtTileOffset); + uberSheet.properties.SetVector(ShaderIDs.Bloom_Settings, shaderSettings); + uberSheet.properties.SetColor(ShaderIDs.Bloom_Color, linearColor); + uberSheet.properties.SetTexture(ShaderIDs.Bloom_DirtTex, dirtTexture); + cmd.SetGlobalTexture(ShaderIDs.BloomTex, lastUp); + + // Cleanup + for (int i = 0; i < iterations; i++) + { + if (m_Pyramid[i].down != lastUp) + cmd.ReleaseTemporaryRT(m_Pyramid[i].down); + if (m_Pyramid[i].up != lastUp) + cmd.ReleaseTemporaryRT(m_Pyramid[i].up); + } + + cmd.EndSample("BloomPyramid"); + + context.bloomBufferNameID = lastUp; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Bloom.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Bloom.cs.meta new file mode 100644 index 0000000..aa52d21 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Bloom.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 48a79b01ea5641d4aa6daa2e23605641 +timeCreated: 1491826542 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ChromaticAberration.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ChromaticAberration.cs new file mode 100644 index 0000000..06630b8 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ChromaticAberration.cs @@ -0,0 +1,94 @@ +using System; +using UnityEngine.Serialization; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Chromatic Aberration effect. + /// + [Serializable] + [PostProcess(typeof(ChromaticAberrationRenderer), "Unity/Chromatic Aberration")] + public sealed class ChromaticAberration : PostProcessEffectSettings + { + /// + /// A texture used for custom fringing color (it will use a default one when null). + /// + [Tooltip("Shifts the hue of chromatic aberrations.")] + public TextureParameter spectralLut = new TextureParameter { value = null }; + + /// + /// The amount of tangential distortion. + /// + [Range(0f, 1f), Tooltip("Amount of tangential distortion.")] + public FloatParameter intensity = new FloatParameter { value = 0f }; + + /// + /// If true, it will use a faster variant of the effect for improved performances. + /// + [FormerlySerializedAs("mobileOptimized")] + [Tooltip("Boost performances by lowering the effect quality. This settings is meant to be used on mobile and other low-end platforms but can also provide a nice performance boost on desktops and consoles.")] + public BoolParameter fastMode = new BoolParameter { value = false }; + + /// + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled.value + && intensity.value > 0f; + } + } + +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + internal sealed class ChromaticAberrationRenderer : PostProcessEffectRenderer + { + Texture2D m_InternalSpectralLut; + + public override void Render(PostProcessRenderContext context) + { + var spectralLut = settings.spectralLut.value; + + if (spectralLut == null) + { + if (m_InternalSpectralLut == null) + { + m_InternalSpectralLut = new Texture2D(3, 1, TextureFormat.RGB24, false) + { + name = "Chromatic Aberration Spectrum Lookup", + filterMode = FilterMode.Bilinear, + wrapMode = TextureWrapMode.Clamp, + anisoLevel = 0, + hideFlags = HideFlags.DontSave + }; + + m_InternalSpectralLut.SetPixels(new [] + { + new Color(1f, 0f, 0f), + new Color(0f, 1f, 0f), + new Color(0f, 0f, 1f) + }); + + m_InternalSpectralLut.Apply(); + } + + spectralLut = m_InternalSpectralLut; + } + + var sheet = context.uberSheet; + bool fastMode = settings.fastMode || SystemInfo.graphicsDeviceType == GraphicsDeviceType.OpenGLES2; + + sheet.EnableKeyword(fastMode + ? "CHROMATIC_ABERRATION_LOW" + : "CHROMATIC_ABERRATION" + ); + sheet.properties.SetFloat(ShaderIDs.ChromaticAberration_Amount, settings.intensity * 0.05f); + sheet.properties.SetTexture(ShaderIDs.ChromaticAberration_SpectralLut, spectralLut); + } + + public override void Release() + { + RuntimeUtilities.Destroy(m_InternalSpectralLut); + m_InternalSpectralLut = null; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ChromaticAberration.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ChromaticAberration.cs.meta new file mode 100644 index 0000000..f3ff2b8 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ChromaticAberration.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 6050e2d5de785ce4d931e4dbdbf2d755 +timeCreated: 1491826543 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ColorGrading.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ColorGrading.cs new file mode 100644 index 0000000..a71a0e7 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ColorGrading.cs @@ -0,0 +1,840 @@ +using System; + +using UnityEngine.Experimental.Rendering; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Color grading modes. + /// + public enum GradingMode + { + /// + /// This mode is aimed at lower-end platforms but it can be used on any platform. Grading is + /// applied to the final rendered frame clamped in a [0,1] range and stored in a standard + /// LUT. + /// + LowDefinitionRange, + + /// + /// This mode is aimed at platforms that support HDR rendering. All the color operations + /// will be applied in HDR and stored into a 3D log-encoded LUT to ensure a sufficient range + /// coverage and precision (Alexa LogC El1000). + /// + HighDefinitionRange, + + /// + /// This mode allows you to provide a custom 3D LUT authored in an external software. + /// + External + } + + /// + /// Tonemapping methods. + /// + public enum Tonemapper + { + /// + /// No tonemapping will be applied. + /// + None, + + /// + /// This method only does range-remapping with minimal impact on color hue & saturation and + /// is generally a great starting point for extensive color grading. + /// + Neutral, + + /// + /// This method uses a close approximation of the reference ACES tonemapper for a more + /// filmic look. Because of that, it is more contrasted than and has an + /// effect on actual color hue & saturation. Note that if you enable this tonemapper all the + /// grading operations will be done in the ACES color spaces for optimal precision and + /// results. + /// + ACES, + + /// + /// This method offers a fully parametric, artist-friendly tonemapper. + /// + Custom + } + + /// + /// A volume parameter holding a value. + /// + [Serializable] + public sealed class GradingModeParameter : ParameterOverride { } + + /// + /// A volume parameter holding a value. + /// + [Serializable] + public sealed class TonemapperParameter : ParameterOverride {} + + /// + /// This class holds settings for the Color Grading effect. + /// + // TODO: Could use some refactoring, too much duplicated code here + [Serializable] + [PostProcess(typeof(ColorGradingRenderer), "Unity/Color Grading")] + public sealed class ColorGrading : PostProcessEffectSettings + { + /// + /// The grading mode to use. + /// + [DisplayName("Mode"), Tooltip("Select a color grading mode that fits your dynamic range and workflow. Use HDR if your camera is set to render in HDR and your target platform supports it. Use LDR for low-end mobiles or devices that don't support HDR. Use External if you prefer authoring a Log LUT in an external software.")] + public GradingModeParameter gradingMode = new GradingModeParameter { value = GradingMode.HighDefinitionRange }; + + /// + /// A custom 3D log-encoded texture. + /// + /// + /// This is only used when working with . + /// + [DisplayName("Lookup Texture"), Tooltip("A custom 3D log-encoded texture.")] + public TextureParameter externalLut = new TextureParameter { value = null }; + + /// + /// The tonemapping algorithm to use at the end of the color grading process. + /// + /// + /// This is only used when working with . + /// + [DisplayName("Mode"), Tooltip("Select a tonemapping algorithm to use at the end of the color grading process.")] + public TonemapperParameter tonemapper = new TonemapperParameter { value = Tonemapper.None }; + + /// + /// Affects the transition between the toe and the mid section of the curve. A value of 0 + /// means no toe, a value of 1 means a very hard transition. + /// + /// + /// This is only used when is active. + /// + [DisplayName("Toe Strength"), Range(0f, 1f), Tooltip("Affects the transition between the toe and the mid section of the curve. A value of 0 means no toe, a value of 1 means a very hard transition.")] + public FloatParameter toneCurveToeStrength = new FloatParameter { value = 0f }; + + /// + /// Affects how much of the dynamic range is in the toe. With a small value, the toe will be + /// very short and quickly transition into the linear section, and with a longer value + /// having a longer toe. + /// + /// + /// This is only used when is active. + /// + [DisplayName("Toe Length"), Range(0f, 1f), Tooltip("Affects how much of the dynamic range is in the toe. With a small value, the toe will be very short and quickly transition into the linear section, with a larger value, the toe will be longer.")] + public FloatParameter toneCurveToeLength = new FloatParameter { value = 0.5f }; + + /// + /// Affects the transition between the mid section and the shoulder of the curve. A value of + /// 0 means no shoulder, value of 1 means a very hard transition. + /// + /// + /// This is only used when is active. + /// + [DisplayName("Shoulder Strength"), Range(0f, 1f), Tooltip("Affects the transition between the mid section and the shoulder of the curve. A value of 0 means no shoulder, a value of 1 means a very hard transition.")] + public FloatParameter toneCurveShoulderStrength = new FloatParameter { value = 0f }; + + /// + /// Affects how many F-stops (EV) to add to the dynamic range of the curve. + /// + /// + /// This is only used when is active. + /// + [DisplayName("Shoulder Length"), Min(0f), Tooltip("Affects how many F-stops (EV) to add to the dynamic range of the curve.")] + public FloatParameter toneCurveShoulderLength = new FloatParameter { value = 0.5f }; + + /// + /// Affects how much overshot to add to the shoulder. + /// + /// + /// This is only used when is active. + /// + [DisplayName("Shoulder Angle"), Range(0f, 1f), Tooltip("Affects how much overshoot to add to the shoulder.")] + public FloatParameter toneCurveShoulderAngle = new FloatParameter { value = 0f }; + + /// + /// Applies a gamma function to the curve. + /// + /// + /// This is only used when is active. + /// + [DisplayName("Gamma"), Min(0.001f), Tooltip("Applies a gamma function to the curve.")] + public FloatParameter toneCurveGamma = new FloatParameter { value = 1f }; + + /// + /// A custom lookup texture (strip format, e.g. 256x16) to apply before the rest of the + /// color grading operators. If none is provided, a neutral one will be generated + /// internally. + /// + /// + /// This is only used when working with . + /// + [DisplayName("Lookup Texture"), Tooltip("Custom lookup texture (strip format, for example 256x16) to apply before the rest of the color grading operators. If none is provided, a neutral one will be generated internally.")] + public TextureParameter ldrLut = new TextureParameter { value = null, defaultState = TextureParameterDefault.Lut2D }; // LDR only + + /// + /// How much of the lookup texture will contribute to the color grading. + /// + /// + /// This is only used when working with . + /// + [DisplayName("Contribution"), Range(0f, 1f), Tooltip("How much of the lookup texture will contribute to the color grading effect.")] + public FloatParameter ldrLutContribution = new FloatParameter { value = 1f }; + + /// + /// Sets the white balance to a custom color temperature. + /// + [DisplayName("Temperature"), Range(-100f, 100f), Tooltip("Sets the white balance to a custom color temperature.")] + public FloatParameter temperature = new FloatParameter { value = 0f }; + + /// + /// Sets the white balance to compensate for a green or magenta tint. + /// + [DisplayName("Tint"), Range(-100f, 100f), Tooltip("Sets the white balance to compensate for a green or magenta tint.")] + public FloatParameter tint = new FloatParameter { value = 0f }; + + /// + /// Tints the render by multiplying a color. + /// +#if UNITY_2018_1_OR_NEWER + [DisplayName("Color Filter"), ColorUsage(false, true), Tooltip("Tint the render by multiplying a color.")] +#else + [DisplayName("Color Filter"), ColorUsage(false, true, 0f, 8f, 0.125f, 3f), Tooltip("Tint the render by multiplying a color.")] +#endif + public ColorParameter colorFilter = new ColorParameter { value = Color.white }; + + /// + /// Shifts the hue of all colors. + /// + [DisplayName("Hue Shift"), Range(-180f, 180f), Tooltip("Shift the hue of all colors.")] + public FloatParameter hueShift = new FloatParameter { value = 0f }; + + /// + /// Pushes the intensity of all colors. + /// + [DisplayName("Saturation"), Range(-100f, 100f), Tooltip("Pushes the intensity of all colors.")] + public FloatParameter saturation = new FloatParameter { value = 0f }; + + /// + /// Makes the image brighter or darker. + /// + /// + /// This is only used when working with . + /// + [DisplayName("Brightness"), Range(-100f, 100f), Tooltip("Makes the image brighter or darker.")] + public FloatParameter brightness = new FloatParameter { value = 0f }; // LDR only + + /// + /// Adjusts the overall exposure of the scene in EV units. This is applied after HDR effect + /// and right before tonemapping so it won't affect previous effects in the chain. + /// + /// + /// This is only used when working with . + /// + [DisplayName("Post-exposure (EV)"), Tooltip("Adjusts the overall exposure of the scene in EV units. This is applied after the HDR effect and right before tonemapping so it won't affect previous effects in the chain.")] + public FloatParameter postExposure = new FloatParameter { value = 0f }; // HDR only + + /// + /// Expands or shrinks the overall range of tonal values. + /// + [DisplayName("Contrast"), Range(-100f, 100f), Tooltip("Expands or shrinks the overall range of tonal values.")] + public FloatParameter contrast = new FloatParameter { value = 0f }; + + /// + /// Modifies the influence of the red channel within the overall mix. + /// + [DisplayName("Red"), Range(-200f, 200f), Tooltip("Modify influence of the red channel in the overall mix.")] + public FloatParameter mixerRedOutRedIn = new FloatParameter { value = 100f }; + + /// + /// Modifies the influence of the green channel within the overall mix. + /// + [DisplayName("Green"), Range(-200f, 200f), Tooltip("Modify influence of the green channel in the overall mix.")] + public FloatParameter mixerRedOutGreenIn = new FloatParameter { value = 0f }; + + /// + /// Modifies the influence of the blue channel within the overall mix. + /// + [DisplayName("Blue"), Range(-200f, 200f), Tooltip("Modify influence of the blue channel in the overall mix.")] + public FloatParameter mixerRedOutBlueIn = new FloatParameter { value = 0f }; + + /// + /// Modifies the influence of the red channel within the overall mix. + /// + [DisplayName("Red"), Range(-200f, 200f), Tooltip("Modify influence of the red channel in the overall mix.")] + public FloatParameter mixerGreenOutRedIn = new FloatParameter { value = 0f }; + + /// + /// Modifies the influence of the green channel within the overall mix. + /// + [DisplayName("Green"), Range(-200f, 200f), Tooltip("Modify influence of the green channel in the overall mix.")] + public FloatParameter mixerGreenOutGreenIn = new FloatParameter { value = 100f }; + + /// + /// Modifies the influence of the blue channel within the overall mix. + /// + [DisplayName("Blue"), Range(-200f, 200f), Tooltip("Modify influence of the blue channel in the overall mix.")] + public FloatParameter mixerGreenOutBlueIn = new FloatParameter { value = 0f }; + + /// + /// Modifies the influence of the red channel within the overall mix. + /// + [DisplayName("Red"), Range(-200f, 200f), Tooltip("Modify influence of the red channel in the overall mix.")] + public FloatParameter mixerBlueOutRedIn = new FloatParameter { value = 0f }; + + /// + /// Modifies the influence of the green channel within the overall mix. + /// + [DisplayName("Green"), Range(-200f, 200f), Tooltip("Modify influence of the green channel in the overall mix.")] + public FloatParameter mixerBlueOutGreenIn = new FloatParameter { value = 0f }; + + /// + /// Modifies the influence of the blue channel within the overall mix. + /// + [DisplayName("Blue"), Range(-200f, 200f), Tooltip("Modify influence of the blue channel in the overall mix.")] + public FloatParameter mixerBlueOutBlueIn = new FloatParameter { value = 100f }; + + /// + /// Controls the darkest portions of the render. + /// + /// + /// The neutral value is (1, 1, 1, 0). + /// + [DisplayName("Lift"), Tooltip("Controls the darkest portions of the render."), Trackball(TrackballAttribute.Mode.Lift)] + public Vector4Parameter lift = new Vector4Parameter { value = new Vector4(1f, 1f, 1f, 0f) }; + + /// + /// A power function that controls mid-range tones. + /// + /// + /// The neutral value is (1, 1, 1, 0). + /// + [DisplayName("Gamma"), Tooltip("Power function that controls mid-range tones."), Trackball(TrackballAttribute.Mode.Gamma)] + public Vector4Parameter gamma = new Vector4Parameter { value = new Vector4(1f, 1f, 1f, 0f) }; + + /// + /// Controls the lightest portions of the render. + /// + /// + /// The neutral value is (1, 1, 1, 0). + /// + [DisplayName("Gain"), Tooltip("Controls the lightest portions of the render."), Trackball(TrackballAttribute.Mode.Gain)] + public Vector4Parameter gain = new Vector4Parameter { value = new Vector4(1f, 1f, 1f, 0f) }; + + /// + /// Remaps the luminosity values. + /// + /// + /// This is only used when working with . + /// + public SplineParameter masterCurve = new SplineParameter { value = new Spline(new AnimationCurve(new Keyframe(0f, 0f, 1f, 1f), new Keyframe(1f, 1f, 1f, 1f)), 0f, false, new Vector2(0f, 1f)) }; + + /// + /// Remaps the red channel. + /// + /// + /// This is only used when working with . + /// + public SplineParameter redCurve = new SplineParameter { value = new Spline(new AnimationCurve(new Keyframe(0f, 0f, 1f, 1f), new Keyframe(1f, 1f, 1f, 1f)), 0f, false, new Vector2(0f, 1f)) }; + + /// + /// Remaps the green channel/ + /// + /// + /// This is only used when working with . + /// + public SplineParameter greenCurve = new SplineParameter { value = new Spline(new AnimationCurve(new Keyframe(0f, 0f, 1f, 1f), new Keyframe(1f, 1f, 1f, 1f)), 0f, false, new Vector2(0f, 1f)) }; + + /// + /// Remaps the blue channel. + /// + /// + /// This is only used when working with . + /// + public SplineParameter blueCurve = new SplineParameter { value = new Spline(new AnimationCurve(new Keyframe(0f, 0f, 1f, 1f), new Keyframe(1f, 1f, 1f, 1f)), 0f, false, new Vector2(0f, 1f)) }; + + /// + /// Remaps the hue according to the current hue. + /// + public SplineParameter hueVsHueCurve = new SplineParameter { value = new Spline(new AnimationCurve(), 0.5f, true, new Vector2(0f, 1f)) }; + + /// + /// Remaps the saturation according to the current hue. + /// + public SplineParameter hueVsSatCurve = new SplineParameter { value = new Spline(new AnimationCurve(), 0.5f, true, new Vector2(0f, 1f)) }; + + /// + /// Remaps the saturation according to the current saturation. + /// + public SplineParameter satVsSatCurve = new SplineParameter { value = new Spline(new AnimationCurve(), 0.5f, false, new Vector2(0f, 1f)) }; + + /// + /// Remaps the saturation according to the current luminance. + /// + public SplineParameter lumVsSatCurve = new SplineParameter { value = new Spline(new AnimationCurve(), 0.5f, false, new Vector2(0f, 1f)) }; + + /// + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + if (gradingMode.value == GradingMode.External) + { + if (!SystemInfo.supports3DRenderTextures || !SystemInfo.supportsComputeShaders) + return false; + } + + return enabled.value; + } + } + +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + internal sealed class ColorGradingRenderer : PostProcessEffectRenderer + { + enum Pass + { + LutGenLDRFromScratch, + LutGenLDR, + LutGenHDR2D + } + + Texture2D m_GradingCurves; + readonly Color[] m_Pixels = new Color[Spline.k_Precision * 2]; // Avoids GC stress + + RenderTexture m_InternalLdrLut; + RenderTexture m_InternalLogLut; + const int k_Lut2DSize = 32; + const int k_Lut3DSize = 33; + + readonly HableCurve m_HableCurve = new HableCurve(); + + public override void Render(PostProcessRenderContext context) + { + var gradingMode = settings.gradingMode.value; + var supportComputeTex3D = SystemInfo.supports3DRenderTextures + && SystemInfo.supportsComputeShaders + && context.resources.computeShaders.lut3DBaker != null + && SystemInfo.graphicsDeviceType != GraphicsDeviceType.OpenGLCore + && SystemInfo.graphicsDeviceType != GraphicsDeviceType.OpenGLES3; + + if (gradingMode == GradingMode.External) + RenderExternalPipeline3D(context); + else if (gradingMode == GradingMode.HighDefinitionRange && supportComputeTex3D) + RenderHDRPipeline3D(context); + else if (gradingMode == GradingMode.HighDefinitionRange) + RenderHDRPipeline2D(context); + else + RenderLDRPipeline2D(context); + } + + // Do color grading using an externally authored 3D lut; it requires Texture3D support and + // compute shaders in case blending is required - Desktop / Consoles / Some high-end mobiles + void RenderExternalPipeline3D(PostProcessRenderContext context) + { + var lut = settings.externalLut.value; + + if (lut == null) + return; + + var uberSheet = context.uberSheet; + uberSheet.EnableKeyword("COLOR_GRADING_HDR_3D"); + uberSheet.properties.SetTexture(ShaderIDs.Lut3D, lut); + uberSheet.properties.SetVector(ShaderIDs.Lut3D_Params, new Vector2(1f / lut.width, lut.width - 1f)); + uberSheet.properties.SetFloat(ShaderIDs.PostExposure, RuntimeUtilities.Exp2(settings.postExposure.value)); + context.logLut = lut; + } + + // HDR color pipeline is rendered to a 3D lut; it requires Texture3D & compute shaders + // support - Desktop / Consoles / Some high-end mobiles + // TODO: Use ShaderIDs for compute once the compatible APIs go in + void RenderHDRPipeline3D(PostProcessRenderContext context) + { + // Unfortunately because AnimationCurve doesn't implement GetHashCode and we don't have + // any reliable way to figure out if a curve data is different from another one we can't + // skip regenerating the Lut if nothing has changed. So it has to be done on every + // frame... + // It's not a very expensive operation anyway (we're talking about filling a 33x33x33 + // Lut on the GPU) but every little thing helps, especially on mobile. + { + CheckInternalLogLut(); + + // Lut setup + var compute = context.resources.computeShaders.lut3DBaker; + int kernel = 0; + + switch (settings.tonemapper.value) + { + case Tonemapper.None: kernel = compute.FindKernel("KGenLut3D_NoTonemap"); + break; + case Tonemapper.Neutral: kernel = compute.FindKernel("KGenLut3D_NeutralTonemap"); + break; + case Tonemapper.ACES: kernel = compute.FindKernel("KGenLut3D_AcesTonemap"); + break; + case Tonemapper.Custom: kernel = compute.FindKernel("KGenLut3D_CustomTonemap"); + break; + } + + var cmd = context.command; + cmd.SetComputeTextureParam(compute, kernel, "_Output", m_InternalLogLut); + cmd.SetComputeVectorParam(compute, "_Size", new Vector4(k_Lut3DSize, 1f / (k_Lut3DSize - 1f), 0f, 0f)); + + var colorBalance = ColorUtilities.ComputeColorBalance(settings.temperature.value, settings.tint.value); + cmd.SetComputeVectorParam(compute, "_ColorBalance", colorBalance); + cmd.SetComputeVectorParam(compute, "_ColorFilter", settings.colorFilter.value); + + float hue = settings.hueShift.value / 360f; // Remap to [-0.5;0.5] + float sat = settings.saturation.value / 100f + 1f; // Remap to [0;2] + float con = settings.contrast.value / 100f + 1f; // Remap to [0;2] + cmd.SetComputeVectorParam(compute, "_HueSatCon", new Vector4(hue, sat, con, 0f)); + + var channelMixerR = new Vector4(settings.mixerRedOutRedIn, settings.mixerRedOutGreenIn, settings.mixerRedOutBlueIn, 0f); + var channelMixerG = new Vector4(settings.mixerGreenOutRedIn, settings.mixerGreenOutGreenIn, settings.mixerGreenOutBlueIn, 0f); + var channelMixerB = new Vector4(settings.mixerBlueOutRedIn, settings.mixerBlueOutGreenIn, settings.mixerBlueOutBlueIn, 0f); + cmd.SetComputeVectorParam(compute, "_ChannelMixerRed", channelMixerR / 100f); // Remap to [-2;2] + cmd.SetComputeVectorParam(compute, "_ChannelMixerGreen", channelMixerG / 100f); + cmd.SetComputeVectorParam(compute, "_ChannelMixerBlue", channelMixerB / 100f); + + var lift = ColorUtilities.ColorToLift(settings.lift.value * 0.2f); + var gain = ColorUtilities.ColorToGain(settings.gain.value * 0.8f); + var invgamma = ColorUtilities.ColorToInverseGamma(settings.gamma.value * 0.8f); + cmd.SetComputeVectorParam(compute, "_Lift", new Vector4(lift.x, lift.y, lift.z, 0f)); + cmd.SetComputeVectorParam(compute, "_InvGamma", new Vector4(invgamma.x, invgamma.y, invgamma.z, 0f)); + cmd.SetComputeVectorParam(compute, "_Gain", new Vector4(gain.x, gain.y, gain.z, 0f)); + + cmd.SetComputeTextureParam(compute, kernel, "_Curves", GetCurveTexture(true)); + + if (settings.tonemapper.value == Tonemapper.Custom) + { + m_HableCurve.Init( + settings.toneCurveToeStrength.value, + settings.toneCurveToeLength.value, + settings.toneCurveShoulderStrength.value, + settings.toneCurveShoulderLength.value, + settings.toneCurveShoulderAngle.value, + settings.toneCurveGamma.value + ); + + cmd.SetComputeVectorParam(compute, "_CustomToneCurve", m_HableCurve.uniforms.curve); + cmd.SetComputeVectorParam(compute, "_ToeSegmentA", m_HableCurve.uniforms.toeSegmentA); + cmd.SetComputeVectorParam(compute, "_ToeSegmentB", m_HableCurve.uniforms.toeSegmentB); + cmd.SetComputeVectorParam(compute, "_MidSegmentA", m_HableCurve.uniforms.midSegmentA); + cmd.SetComputeVectorParam(compute, "_MidSegmentB", m_HableCurve.uniforms.midSegmentB); + cmd.SetComputeVectorParam(compute, "_ShoSegmentA", m_HableCurve.uniforms.shoSegmentA); + cmd.SetComputeVectorParam(compute, "_ShoSegmentB", m_HableCurve.uniforms.shoSegmentB); + } + + // Generate the lut + context.command.BeginSample("HdrColorGradingLut3D"); + int groupSize = Mathf.CeilToInt(k_Lut3DSize / 4f); + cmd.DispatchCompute(compute, kernel, groupSize, groupSize, groupSize); + context.command.EndSample("HdrColorGradingLut3D"); + } + + var lut = m_InternalLogLut; + var uberSheet = context.uberSheet; + uberSheet.EnableKeyword("COLOR_GRADING_HDR_3D"); + uberSheet.properties.SetTexture(ShaderIDs.Lut3D, lut); + uberSheet.properties.SetVector(ShaderIDs.Lut3D_Params, new Vector2(1f / lut.width, lut.width - 1f)); + uberSheet.properties.SetFloat(ShaderIDs.PostExposure, RuntimeUtilities.Exp2(settings.postExposure.value)); + + context.logLut = lut; + } + + // HDR color pipeline is rendered to a 2D strip lut (works on HDR platforms without compute + // and 3D texture support). Precision is sliiiiiiightly lower than when using a 3D texture + // LUT (33^3 -> 32^3) but most of the time it's imperceptible. + void RenderHDRPipeline2D(PostProcessRenderContext context) + { + // For the same reasons as in RenderHDRPipeline3D, regen LUT on every frame + { + CheckInternalStripLut(); + + // Lut setup + var lutSheet = context.propertySheets.Get(context.resources.shaders.lut2DBaker); + lutSheet.ClearKeywords(); + + lutSheet.properties.SetVector(ShaderIDs.Lut2D_Params, new Vector4(k_Lut2DSize, 0.5f / (k_Lut2DSize * k_Lut2DSize), 0.5f / k_Lut2DSize, k_Lut2DSize / (k_Lut2DSize - 1f))); + + var colorBalance = ColorUtilities.ComputeColorBalance(settings.temperature.value, settings.tint.value); + lutSheet.properties.SetVector(ShaderIDs.ColorBalance, colorBalance); + lutSheet.properties.SetVector(ShaderIDs.ColorFilter, settings.colorFilter.value); + + float hue = settings.hueShift.value / 360f; // Remap to [-0.5;0.5] + float sat = settings.saturation.value / 100f + 1f; // Remap to [0;2] + float con = settings.contrast.value / 100f + 1f; // Remap to [0;2] + lutSheet.properties.SetVector(ShaderIDs.HueSatCon, new Vector3(hue, sat, con)); + + var channelMixerR = new Vector3(settings.mixerRedOutRedIn, settings.mixerRedOutGreenIn, settings.mixerRedOutBlueIn); + var channelMixerG = new Vector3(settings.mixerGreenOutRedIn, settings.mixerGreenOutGreenIn, settings.mixerGreenOutBlueIn); + var channelMixerB = new Vector3(settings.mixerBlueOutRedIn, settings.mixerBlueOutGreenIn, settings.mixerBlueOutBlueIn); + lutSheet.properties.SetVector(ShaderIDs.ChannelMixerRed, channelMixerR / 100f); // Remap to [-2;2] + lutSheet.properties.SetVector(ShaderIDs.ChannelMixerGreen, channelMixerG / 100f); + lutSheet.properties.SetVector(ShaderIDs.ChannelMixerBlue, channelMixerB / 100f); + + var lift = ColorUtilities.ColorToLift(settings.lift.value * 0.2f); + var gain = ColorUtilities.ColorToGain(settings.gain.value * 0.8f); + var invgamma = ColorUtilities.ColorToInverseGamma(settings.gamma.value * 0.8f); + lutSheet.properties.SetVector(ShaderIDs.Lift, lift); + lutSheet.properties.SetVector(ShaderIDs.InvGamma, invgamma); + lutSheet.properties.SetVector(ShaderIDs.Gain, gain); + + lutSheet.properties.SetTexture(ShaderIDs.Curves, GetCurveTexture(true)); + + var tonemapper = settings.tonemapper.value; + if (tonemapper == Tonemapper.Custom) + { + lutSheet.EnableKeyword("TONEMAPPING_CUSTOM"); + + m_HableCurve.Init( + settings.toneCurveToeStrength.value, + settings.toneCurveToeLength.value, + settings.toneCurveShoulderStrength.value, + settings.toneCurveShoulderLength.value, + settings.toneCurveShoulderAngle.value, + settings.toneCurveGamma.value + ); + + lutSheet.properties.SetVector(ShaderIDs.CustomToneCurve, m_HableCurve.uniforms.curve); + lutSheet.properties.SetVector(ShaderIDs.ToeSegmentA, m_HableCurve.uniforms.toeSegmentA); + lutSheet.properties.SetVector(ShaderIDs.ToeSegmentB, m_HableCurve.uniforms.toeSegmentB); + lutSheet.properties.SetVector(ShaderIDs.MidSegmentA, m_HableCurve.uniforms.midSegmentA); + lutSheet.properties.SetVector(ShaderIDs.MidSegmentB, m_HableCurve.uniforms.midSegmentB); + lutSheet.properties.SetVector(ShaderIDs.ShoSegmentA, m_HableCurve.uniforms.shoSegmentA); + lutSheet.properties.SetVector(ShaderIDs.ShoSegmentB, m_HableCurve.uniforms.shoSegmentB); + } + else if (tonemapper == Tonemapper.ACES) + lutSheet.EnableKeyword("TONEMAPPING_ACES"); + else if (tonemapper == Tonemapper.Neutral) + lutSheet.EnableKeyword("TONEMAPPING_NEUTRAL"); + + // Generate the lut + context.command.BeginSample("HdrColorGradingLut2D"); + context.command.BlitFullscreenTriangle(BuiltinRenderTextureType.None, m_InternalLdrLut, lutSheet, (int)Pass.LutGenHDR2D); + context.command.EndSample("HdrColorGradingLut2D"); + } + + var lut = m_InternalLdrLut; + var uberSheet = context.uberSheet; + uberSheet.EnableKeyword("COLOR_GRADING_HDR_2D"); + uberSheet.properties.SetVector(ShaderIDs.Lut2D_Params, new Vector3(1f / lut.width, 1f / lut.height, lut.height - 1f)); + uberSheet.properties.SetTexture(ShaderIDs.Lut2D, lut); + uberSheet.properties.SetFloat(ShaderIDs.PostExposure, RuntimeUtilities.Exp2(settings.postExposure.value)); + } + + // LDR color pipeline is rendered to a 2D strip lut (works on every platform) + void RenderLDRPipeline2D(PostProcessRenderContext context) + { + // For the same reasons as in RenderHDRPipeline3D, regen LUT on every frame + { + CheckInternalStripLut(); + + // Lut setup + var lutSheet = context.propertySheets.Get(context.resources.shaders.lut2DBaker); + lutSheet.ClearKeywords(); + + lutSheet.properties.SetVector(ShaderIDs.Lut2D_Params, new Vector4(k_Lut2DSize, 0.5f / (k_Lut2DSize * k_Lut2DSize), 0.5f / k_Lut2DSize, k_Lut2DSize / (k_Lut2DSize - 1f))); + + var colorBalance = ColorUtilities.ComputeColorBalance(settings.temperature.value, settings.tint.value); + lutSheet.properties.SetVector(ShaderIDs.ColorBalance, colorBalance); + lutSheet.properties.SetVector(ShaderIDs.ColorFilter, settings.colorFilter.value); + + float hue = settings.hueShift.value / 360f; // Remap to [-0.5;0.5] + float sat = settings.saturation.value / 100f + 1f; // Remap to [0;2] + float con = settings.contrast.value / 100f + 1f; // Remap to [0;2] + lutSheet.properties.SetVector(ShaderIDs.HueSatCon, new Vector3(hue, sat, con)); + + var channelMixerR = new Vector3(settings.mixerRedOutRedIn, settings.mixerRedOutGreenIn, settings.mixerRedOutBlueIn); + var channelMixerG = new Vector3(settings.mixerGreenOutRedIn, settings.mixerGreenOutGreenIn, settings.mixerGreenOutBlueIn); + var channelMixerB = new Vector3(settings.mixerBlueOutRedIn, settings.mixerBlueOutGreenIn, settings.mixerBlueOutBlueIn); + lutSheet.properties.SetVector(ShaderIDs.ChannelMixerRed, channelMixerR / 100f); // Remap to [-2;2] + lutSheet.properties.SetVector(ShaderIDs.ChannelMixerGreen, channelMixerG / 100f); + lutSheet.properties.SetVector(ShaderIDs.ChannelMixerBlue, channelMixerB / 100f); + + var lift = ColorUtilities.ColorToLift(settings.lift.value); + var gain = ColorUtilities.ColorToGain(settings.gain.value); + var invgamma = ColorUtilities.ColorToInverseGamma(settings.gamma.value); + lutSheet.properties.SetVector(ShaderIDs.Lift, lift); + lutSheet.properties.SetVector(ShaderIDs.InvGamma, invgamma); + lutSheet.properties.SetVector(ShaderIDs.Gain, gain); + + lutSheet.properties.SetFloat(ShaderIDs.Brightness, (settings.brightness.value + 100f) / 100f); + lutSheet.properties.SetTexture(ShaderIDs.Curves, GetCurveTexture(false)); + + // Generate the lut + context.command.BeginSample("LdrColorGradingLut2D"); + + var userLut = settings.ldrLut.value; + if (userLut == null || userLut.width != userLut.height * userLut.height) + { + context.command.BlitFullscreenTriangle(BuiltinRenderTextureType.None, m_InternalLdrLut, lutSheet, (int)Pass.LutGenLDRFromScratch); + } + else + { + lutSheet.properties.SetVector(ShaderIDs.UserLut2D_Params, new Vector4(1f / userLut.width, 1f / userLut.height, userLut.height - 1f, settings.ldrLutContribution)); + context.command.BlitFullscreenTriangle(userLut, m_InternalLdrLut, lutSheet, (int)Pass.LutGenLDR); + } + + context.command.EndSample("LdrColorGradingLut2D"); + } + + var lut = m_InternalLdrLut; + var uberSheet = context.uberSheet; + uberSheet.EnableKeyword("COLOR_GRADING_LDR_2D"); + uberSheet.properties.SetVector(ShaderIDs.Lut2D_Params, new Vector3(1f / lut.width, 1f / lut.height, lut.height - 1f)); + uberSheet.properties.SetTexture(ShaderIDs.Lut2D, lut); + } + + void CheckInternalLogLut() + { + // Check internal lut state, (re)create it if needed + if (m_InternalLogLut == null || !m_InternalLogLut.IsCreated()) + { + RuntimeUtilities.Destroy(m_InternalLogLut); + + var format = GetLutFormat(); + m_InternalLogLut = new RenderTexture(k_Lut3DSize, k_Lut3DSize, 0, format, RenderTextureReadWrite.Linear) + { + name = "Color Grading Log Lut", + dimension = TextureDimension.Tex3D, + hideFlags = HideFlags.DontSave, + filterMode = FilterMode.Bilinear, + wrapMode = TextureWrapMode.Clamp, + anisoLevel = 0, + enableRandomWrite = true, + volumeDepth = k_Lut3DSize, + autoGenerateMips = false, + useMipMap = false + }; + m_InternalLogLut.Create(); + } + } + + void CheckInternalStripLut() + { + // Check internal lut state, (re)create it if needed + if (m_InternalLdrLut == null || !m_InternalLdrLut.IsCreated()) + { + RuntimeUtilities.Destroy(m_InternalLdrLut); + + var format = GetLutFormat(); + m_InternalLdrLut = new RenderTexture(k_Lut2DSize * k_Lut2DSize, k_Lut2DSize, 0, format, RenderTextureReadWrite.Linear) + { + name = "Color Grading Strip Lut", + hideFlags = HideFlags.DontSave, + filterMode = FilterMode.Bilinear, + wrapMode = TextureWrapMode.Clamp, + anisoLevel = 0, + autoGenerateMips = false, + useMipMap = false + }; + m_InternalLdrLut.Create(); + } + } + + Texture2D GetCurveTexture(bool hdr) + { + if (m_GradingCurves == null) + { + var format = GetCurveFormat(); + m_GradingCurves = new Texture2D(Spline.k_Precision, 2, format, false, true) + { + name = "Internal Curves Texture", + hideFlags = HideFlags.DontSave, + anisoLevel = 0, + wrapMode = TextureWrapMode.Clamp, + filterMode = FilterMode.Bilinear + }; + } + + var hueVsHueCurve = settings.hueVsHueCurve.value; + var hueVsSatCurve = settings.hueVsSatCurve.value; + var satVsSatCurve = settings.satVsSatCurve.value; + var lumVsSatCurve = settings.lumVsSatCurve.value; + var masterCurve = settings.masterCurve.value; + var redCurve = settings.redCurve.value; + var greenCurve = settings.greenCurve.value; + var blueCurve = settings.blueCurve.value; + + var pixels = m_Pixels; + + for (int i = 0; i < Spline.k_Precision; i++) + { + // Secondary/VS curves + float x = hueVsHueCurve.cachedData[i]; + float y = hueVsSatCurve.cachedData[i]; + float z = satVsSatCurve.cachedData[i]; + float w = lumVsSatCurve.cachedData[i]; + pixels[i] = new Color(x, y, z, w); + + // YRGB + if (!hdr) + { + float m = masterCurve.cachedData[i]; + float r = redCurve.cachedData[i]; + float g = greenCurve.cachedData[i]; + float b = blueCurve.cachedData[i]; + pixels[i + Spline.k_Precision] = new Color(r, g, b, m); + } + } + + m_GradingCurves.SetPixels(pixels); + m_GradingCurves.Apply(false, false); + + return m_GradingCurves; + } + + static bool IsRenderTextureFormatSupportedForLinearFiltering(RenderTextureFormat format) + { +#if UNITY_2019_1_OR_NEWER + var gFormat = GraphicsFormatUtility.GetGraphicsFormat(format, RenderTextureReadWrite.Linear); + return SystemInfo.IsFormatSupported(gFormat, FormatUsage.Linear); +#else + // No good/fast way to test it on pre-2019.1 + return format.IsSupported(); +#endif + } + + static RenderTextureFormat GetLutFormat() + { + // Use ARGBHalf if possible, fallback on ARGB2101010 and ARGB32 otherwise + var format = RenderTextureFormat.ARGBHalf; + + if (!IsRenderTextureFormatSupportedForLinearFiltering(format)) + { + format = RenderTextureFormat.ARGB2101010; + + // Note that using a log lut in ARGB32 is a *very* bad idea but we need it for + // compatibility reasons (else if a platform doesn't support one of the previous + // format it'll output a black screen, or worse will segfault on the user). + if (!IsRenderTextureFormatSupportedForLinearFiltering(format)) + format = RenderTextureFormat.ARGB32; + } + + return format; + } + + static TextureFormat GetCurveFormat() + { + // Use RGBAHalf if possible, fallback on ARGB32 otherwise + var format = TextureFormat.RGBAHalf; + + if (!SystemInfo.SupportsTextureFormat(format)) + format = TextureFormat.ARGB32; + + return format; + } + + public override void Release() + { + RuntimeUtilities.Destroy(m_InternalLdrLut); + m_InternalLdrLut = null; + + RuntimeUtilities.Destroy(m_InternalLogLut); + m_InternalLogLut = null; + + RuntimeUtilities.Destroy(m_GradingCurves); + m_GradingCurves = null; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ColorGrading.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ColorGrading.cs.meta new file mode 100644 index 0000000..d5735f4 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ColorGrading.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: adb84e30e02715445aeb9959894e3b4d +timeCreated: 1493024209 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/DepthOfField.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/DepthOfField.cs new file mode 100644 index 0000000..8da4281 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/DepthOfField.cs @@ -0,0 +1,261 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Convolution kernel size for the Depth of Field effect. + /// + public enum KernelSize + { + /// + /// Small filter. + /// + Small, + + /// + /// Medium filter. + /// + Medium, + + /// + /// Large filter. + /// + Large, + + /// + /// Very large filter. + /// + VeryLarge + } + + /// + /// A volume parameter holding a value. + /// + [Serializable] + public sealed class KernelSizeParameter : ParameterOverride {} + + /// + /// This class holds settings for the Depth of Field effect. + /// + [Serializable] + [PostProcess(typeof(DepthOfFieldRenderer), "Unity/Depth of Field", false)] + public sealed class DepthOfField : PostProcessEffectSettings + { + /// + /// The distance to the point of focus. + /// + [Min(0.1f), Tooltip("Distance to the point of focus.")] + public FloatParameter focusDistance = new FloatParameter { value = 10f }; + + /// + /// The ratio of the aperture (known as f-stop or f-number). The smaller the value is, the + /// shallower the depth of field is. + /// + [Range(0.05f, 32f), Tooltip("Ratio of aperture (known as f-stop or f-number). The smaller the value is, the shallower the depth of field is.")] + public FloatParameter aperture = new FloatParameter { value = 5.6f }; + + /// + /// The distance between the lens and the film. The larger the value is, the shallower the + /// depth of field is. + /// + [Range(1f, 300f), Tooltip("Distance between the lens and the film. The larger the value is, the shallower the depth of field is.")] + public FloatParameter focalLength = new FloatParameter { value = 50f }; + + /// + /// The convolution kernel size of the bokeh filter, which determines the maximum radius of + /// bokeh. It also affects the performance (the larger the kernel is, the longer the GPU + /// time is required). + /// + [DisplayName("Max Blur Size"), Tooltip("Convolution kernel size of the bokeh filter, which determines the maximum radius of bokeh. It also affects performances (the larger the kernel is, the longer the GPU time is required).")] + public KernelSizeParameter kernelSize = new KernelSizeParameter { value = KernelSize.Medium }; + + /// + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled.value + && SystemInfo.graphicsShaderLevel >= 35; + } + } + +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + // TODO: Doesn't play nice with alpha propagation, see if it can be fixed without killing performances + internal sealed class DepthOfFieldRenderer : PostProcessEffectRenderer + { + enum Pass + { + CoCCalculation, + CoCTemporalFilter, + DownsampleAndPrefilter, + BokehSmallKernel, + BokehMediumKernel, + BokehLargeKernel, + BokehVeryLargeKernel, + PostFilter, + Combine, + DebugOverlay + } + + // Ping-pong between two history textures as we can't read & write the same target in the + // same pass + const int k_NumEyes = 2; + const int k_NumCoCHistoryTextures = 2; + readonly RenderTexture[][] m_CoCHistoryTextures = new RenderTexture[k_NumEyes][]; + int[] m_HistoryPingPong = new int[k_NumEyes]; + + // Height of the 35mm full-frame format (36mm x 24mm) + // TODO: Should be set by a physical camera + const float k_FilmHeight = 0.024f; + + public DepthOfFieldRenderer() + { + for (int eye = 0; eye < k_NumEyes; eye++) + { + m_CoCHistoryTextures[eye] = new RenderTexture[k_NumCoCHistoryTextures]; + m_HistoryPingPong[eye] = 0; + } + } + + public override DepthTextureMode GetCameraFlags() + { + return DepthTextureMode.Depth; + } + + RenderTextureFormat SelectFormat(RenderTextureFormat primary, RenderTextureFormat secondary) + { + if (primary.IsSupported()) + return primary; + + if (secondary.IsSupported()) + return secondary; + + return RenderTextureFormat.Default; + } + + float CalculateMaxCoCRadius(int screenHeight) + { + // Estimate the allowable maximum radius of CoC from the kernel + // size (the equation below was empirically derived). + float radiusInPixels = (float)settings.kernelSize.value * 4f + 6f; + + // Applying a 5% limit to the CoC radius to keep the size of + // TileMax/NeighborMax small enough. + return Mathf.Min(0.05f, radiusInPixels / screenHeight); + } + + RenderTexture CheckHistory(int eye, int id, PostProcessRenderContext context, RenderTextureFormat format) + { + var rt = m_CoCHistoryTextures[eye][id]; + + if (m_ResetHistory || rt == null || !rt.IsCreated() || rt.width != context.width || rt.height != context.height) + { + RenderTexture.ReleaseTemporary(rt); + + rt = context.GetScreenSpaceTemporaryRT(0, format, RenderTextureReadWrite.Linear); + rt.name = "CoC History, Eye: " + eye + ", ID: " + id; + rt.filterMode = FilterMode.Bilinear; + rt.Create(); + m_CoCHistoryTextures[eye][id] = rt; + } + + return rt; + } + + public override void Render(PostProcessRenderContext context) + { + var colorFormat = context.sourceFormat; + var cocFormat = SelectFormat(RenderTextureFormat.R8, RenderTextureFormat.RHalf); + + // Avoid using R8 on OSX with Metal. #896121, https://goo.gl/MgKqu6 + #if (UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX) && !UNITY_2017_1_OR_NEWER + if (SystemInfo.graphicsDeviceType == UnityEngine.Rendering.GraphicsDeviceType.Metal) + cocFormat = SelectFormat(RenderTextureFormat.RHalf, RenderTextureFormat.Default); + #endif + + // Material setup + float scaledFilmHeight = k_FilmHeight * (context.height / 1080f); + var f = settings.focalLength.value / 1000f; + var s1 = Mathf.Max(settings.focusDistance.value, f); + var aspect = (float)context.screenWidth / (float)context.screenHeight; + var coeff = f * f / (settings.aperture.value * (s1 - f) * scaledFilmHeight * 2f); + var maxCoC = CalculateMaxCoCRadius(context.screenHeight); + + var sheet = context.propertySheets.Get(context.resources.shaders.depthOfField); + sheet.properties.Clear(); + sheet.properties.SetFloat(ShaderIDs.Distance, s1); + sheet.properties.SetFloat(ShaderIDs.LensCoeff, coeff); + sheet.properties.SetFloat(ShaderIDs.MaxCoC, maxCoC); + sheet.properties.SetFloat(ShaderIDs.RcpMaxCoC, 1f / maxCoC); + sheet.properties.SetFloat(ShaderIDs.RcpAspect, 1f / aspect); + + var cmd = context.command; + cmd.BeginSample("DepthOfField"); + + // CoC calculation pass + context.GetScreenSpaceTemporaryRT(cmd, ShaderIDs.CoCTex, 0, cocFormat, RenderTextureReadWrite.Linear); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, ShaderIDs.CoCTex, sheet, (int)Pass.CoCCalculation); + + // CoC temporal filter pass when TAA is enabled + if (context.IsTemporalAntialiasingActive()) + { + float motionBlending = context.temporalAntialiasing.motionBlending; + float blend = m_ResetHistory ? 0f : motionBlending; // Handles first frame blending + var jitter = context.temporalAntialiasing.jitter; + + sheet.properties.SetVector(ShaderIDs.TaaParams, new Vector3(jitter.x, jitter.y, blend)); + + int pp = m_HistoryPingPong[context.xrActiveEye]; + var historyRead = CheckHistory(context.xrActiveEye, ++pp % 2, context, cocFormat); + var historyWrite = CheckHistory(context.xrActiveEye, ++pp % 2, context, cocFormat); + m_HistoryPingPong[context.xrActiveEye] = ++pp % 2; + + cmd.BlitFullscreenTriangle(historyRead, historyWrite, sheet, (int)Pass.CoCTemporalFilter); + cmd.ReleaseTemporaryRT(ShaderIDs.CoCTex); + cmd.SetGlobalTexture(ShaderIDs.CoCTex, historyWrite); + } + + // Downsampling and prefiltering pass + context.GetScreenSpaceTemporaryRT(cmd, ShaderIDs.DepthOfFieldTex, 0, colorFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, context.width / 2, context.height / 2); + cmd.BlitFullscreenTriangle(context.source, ShaderIDs.DepthOfFieldTex, sheet, (int)Pass.DownsampleAndPrefilter); + + // Bokeh simulation pass + context.GetScreenSpaceTemporaryRT(cmd, ShaderIDs.DepthOfFieldTemp, 0, colorFormat, RenderTextureReadWrite.Default, FilterMode.Bilinear, context.width / 2, context.height / 2); + cmd.BlitFullscreenTriangle(ShaderIDs.DepthOfFieldTex, ShaderIDs.DepthOfFieldTemp, sheet, (int)Pass.BokehSmallKernel + (int)settings.kernelSize.value); + + // Postfilter pass + cmd.BlitFullscreenTriangle(ShaderIDs.DepthOfFieldTemp, ShaderIDs.DepthOfFieldTex, sheet, (int)Pass.PostFilter); + cmd.ReleaseTemporaryRT(ShaderIDs.DepthOfFieldTemp); + + // Debug overlay pass + if (context.IsDebugOverlayEnabled(DebugOverlay.DepthOfField)) + context.PushDebugOverlay(cmd, context.source, sheet, (int)Pass.DebugOverlay); + + // Combine pass + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)Pass.Combine); + cmd.ReleaseTemporaryRT(ShaderIDs.DepthOfFieldTex); + + if (!context.IsTemporalAntialiasingActive()) + cmd.ReleaseTemporaryRT(ShaderIDs.CoCTex); + + cmd.EndSample("DepthOfField"); + + m_ResetHistory = false; + } + + public override void Release() + { + for (int eye = 0; eye < k_NumEyes; eye++) + { + for (int i = 0; i < m_CoCHistoryTextures[eye].Length; i++) + { + RenderTexture.ReleaseTemporary(m_CoCHistoryTextures[eye][i]); + m_CoCHistoryTextures[eye][i] = null; + } + m_HistoryPingPong[eye] = 0; + } + + ResetHistory(); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/DepthOfField.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/DepthOfField.cs.meta new file mode 100644 index 0000000..f77b54a --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/DepthOfField.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 556797029e73b2347956b6579e77e05b +timeCreated: 1491828776 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Dithering.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Dithering.cs new file mode 100644 index 0000000..9fcc151 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Dithering.cs @@ -0,0 +1,43 @@ +using System; +using UnityEngine.Assertions; + +namespace UnityEngine.Rendering.PostProcessing +{ +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + [Serializable] + internal sealed class Dithering + { + int m_NoiseTextureIndex = 0; + + internal void Render(PostProcessRenderContext context) + { + var blueNoise = context.resources.blueNoise64; + Assert.IsTrue(blueNoise != null && blueNoise.Length > 0); + + #if POSTFX_DEBUG_STATIC_DITHERING // Used by QA for automated testing + m_NoiseTextureIndex = 0; + float rndOffsetX = 0f; + float rndOffsetY = 0f; + #else + if (++m_NoiseTextureIndex >= blueNoise.Length) + m_NoiseTextureIndex = 0; + + float rndOffsetX = Random.value; + float rndOffsetY = Random.value; + #endif + + var noiseTex = blueNoise[m_NoiseTextureIndex]; + var uberSheet = context.uberSheet; + + uberSheet.properties.SetTexture(ShaderIDs.DitheringTex, noiseTex); + uberSheet.properties.SetVector(ShaderIDs.Dithering_Coords, new Vector4( + (float)context.screenWidth / (float)noiseTex.width, + (float)context.screenHeight / (float)noiseTex.height, + rndOffsetX, + rndOffsetY + )); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Dithering.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Dithering.cs.meta new file mode 100644 index 0000000..952e482 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Dithering.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 75066207954ccc44aa9d134af49040de +timeCreated: 1490188285 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/FastApproximateAntialiasing.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/FastApproximateAntialiasing.cs new file mode 100644 index 0000000..3e76bfa --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/FastApproximateAntialiasing.cs @@ -0,0 +1,30 @@ +using System; +using UnityEngine.Serialization; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Fast Approximate Anti-aliasing (FXAA) effect. + /// +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + [Serializable] + public sealed class FastApproximateAntialiasing + { + /// + /// If true, it will use a slightly lower quality but faster variant of FXAA. Highly + /// recommended on mobile platforms. + /// + [FormerlySerializedAs("mobileOptimized")] + [Tooltip("Boost performances by lowering the effect quality. This setting is meant to be used on mobile and other low-end platforms but can also provide a nice performance boost on desktops and consoles.")] + public bool fastMode = false; + + /// + /// Set this to true if you need to keep the alpha channel untouched. Else it will + /// use this channel to store internal data used to speed up and improve visual quality. + /// + [Tooltip("Keep alpha channel. This will slightly lower the effect quality but allows rendering against a transparent background.")] + public bool keepAlpha = false; + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/FastApproximateAntialiasing.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/FastApproximateAntialiasing.cs.meta new file mode 100644 index 0000000..00bef62 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/FastApproximateAntialiasing.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: efd3e892ff9d0b94c94e039ad5619e5d +timeCreated: 1493489448 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Fog.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Fog.cs new file mode 100644 index 0000000..c8efcf3 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Fog.cs @@ -0,0 +1,55 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Fog effect with the deferred rendering path. + /// +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + [Serializable] + public sealed class Fog + { + /// + /// If true, enables the internal deferred fog pass. Actual fog settings should be + /// set in the Lighting panel. + /// + [Tooltip("Enables the internal deferred fog pass. Actual fog settings should be set in the Lighting panel.")] + public bool enabled = true; + + /// + /// Should the fog affect the skybox? + /// + [Tooltip("Mark true for the fog to ignore the skybox")] + public bool excludeSkybox = true; + + internal DepthTextureMode GetCameraFlags() + { + return DepthTextureMode.Depth; + } + + internal bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled + && RenderSettings.fog + && !RuntimeUtilities.scriptableRenderPipelineActive + && context.resources.shaders.deferredFog + && context.resources.shaders.deferredFog.isSupported + && context.camera.actualRenderingPath == RenderingPath.DeferredShading; // In forward fog is already done at shader level + } + + internal void Render(PostProcessRenderContext context) + { + var sheet = context.propertySheets.Get(context.resources.shaders.deferredFog); + sheet.ClearKeywords(); + + var fogColor = RuntimeUtilities.isLinearColorSpace ? RenderSettings.fogColor.linear : RenderSettings.fogColor; + sheet.properties.SetVector(ShaderIDs.FogColor, fogColor); + sheet.properties.SetVector(ShaderIDs.FogParams, new Vector3(RenderSettings.fogDensity, RenderSettings.fogStartDistance, RenderSettings.fogEndDistance)); + + var cmd = context.command; + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, excludeSkybox ? 1 : 0); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Fog.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Fog.cs.meta new file mode 100644 index 0000000..45dbd91 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Fog.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 62e2b920ea5fcaa4982e7fc50bf690a8 +timeCreated: 1498381577 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Grain.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Grain.cs new file mode 100644 index 0000000..b4bea87 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Grain.cs @@ -0,0 +1,125 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Grain effect. + /// + [Serializable] + [PostProcess(typeof(GrainRenderer), "Unity/Grain")] + public sealed class Grain : PostProcessEffectSettings + { + /// + /// Set to true to render colored grain, false for grayscale grain. + /// + [Tooltip("Enable the use of colored grain.")] + public BoolParameter colored = new BoolParameter { value = true }; + + /// + /// The strength (or visibility) of the Grain effect on screen. Higher values mean more visible grain. + /// + [Range(0f, 1f), Tooltip("Grain strength. Higher values mean more visible grain.")] + public FloatParameter intensity = new FloatParameter { value = 0f }; + + /// + /// The size of grain particle on screen. + /// + [Range(0.3f, 3f), Tooltip("Grain particle size.")] + public FloatParameter size = new FloatParameter { value = 1f }; + + /// + /// Controls the noisiness response curve based on scene luminance. Lower values mean less noise in dark areas. + /// + [Range(0f, 1f), DisplayName("Luminance Contribution"), Tooltip("Controls the noise response curve based on scene luminance. Lower values mean less noise in dark areas.")] + public FloatParameter lumContrib = new FloatParameter { value = 0.8f }; + + /// + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled.value + && intensity.value > 0f; + } + } + +#if POSTFX_DEBUG_STATIC_GRAIN + #pragma warning disable 414 +#endif +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + internal sealed class GrainRenderer : PostProcessEffectRenderer + { + RenderTexture m_GrainLookupRT; + + const int k_SampleCount = 1024; + int m_SampleIndex; + + public override void Render(PostProcessRenderContext context) + { +#if POSTFX_DEBUG_STATIC_GRAIN + // Chosen by a fair dice roll + float time = 0.4f; + float rndOffsetX = 0f; + float rndOffsetY = 0f; +#else + float time = Time.realtimeSinceStartup; + float rndOffsetX = HaltonSeq.Get(m_SampleIndex & 1023, 2); + float rndOffsetY = HaltonSeq.Get(m_SampleIndex & 1023, 3); + + if (++m_SampleIndex >= k_SampleCount) + m_SampleIndex = 0; +#endif + + // Generate the grain lut for the current frame first + if (m_GrainLookupRT == null || !m_GrainLookupRT.IsCreated()) + { + RuntimeUtilities.Destroy(m_GrainLookupRT); + + m_GrainLookupRT = new RenderTexture(128, 128, 0, GetLookupFormat()) + { + filterMode = FilterMode.Bilinear, + wrapMode = TextureWrapMode.Repeat, + anisoLevel = 0, + name = "Grain Lookup Texture" + }; + + m_GrainLookupRT.Create(); + } + + var sheet = context.propertySheets.Get(context.resources.shaders.grainBaker); + sheet.properties.Clear(); + sheet.properties.SetFloat(ShaderIDs.Phase, time % 10f); + sheet.properties.SetVector(ShaderIDs.GrainNoiseParameters, new Vector3(12.9898f, 78.233f, 43758.5453f)); + + context.command.BeginSample("GrainLookup"); + context.command.BlitFullscreenTriangle(BuiltinRenderTextureType.None, m_GrainLookupRT, sheet, settings.colored.value ? 1 : 0); + context.command.EndSample("GrainLookup"); + + // Send everything to the uber shader + var uberSheet = context.uberSheet; + uberSheet.EnableKeyword("GRAIN"); + uberSheet.properties.SetTexture(ShaderIDs.GrainTex, m_GrainLookupRT); + uberSheet.properties.SetVector(ShaderIDs.Grain_Params1, new Vector2(settings.lumContrib.value, settings.intensity.value * 20f)); + uberSheet.properties.SetVector(ShaderIDs.Grain_Params2, new Vector4((float)context.width / (float)m_GrainLookupRT.width / settings.size.value, (float)context.height / (float)m_GrainLookupRT.height / settings.size.value, rndOffsetX, rndOffsetY)); + } + + RenderTextureFormat GetLookupFormat() + { + if (RenderTextureFormat.ARGBHalf.IsSupported()) + return RenderTextureFormat.ARGBHalf; + + return RenderTextureFormat.ARGB32; + } + + public override void Release() + { + RuntimeUtilities.Destroy(m_GrainLookupRT); + m_GrainLookupRT = null; + m_SampleIndex = 0; + } + } + +#if POSTFX_DEBUG_STATIC_GRAIN + #pragma warning restore 414 +#endif +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Grain.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Grain.cs.meta new file mode 100644 index 0000000..c7c70fa --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Grain.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d65e486e4de6e5448a8fbb43dc8756a0 +timeCreated: 1491826543 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/LensDistortion.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/LensDistortion.cs new file mode 100644 index 0000000..becf762 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/LensDistortion.cs @@ -0,0 +1,80 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Lens Distortion effect. + /// + [Serializable] + [PostProcess(typeof(LensDistortionRenderer), "Unity/Lens Distortion")] + public sealed class LensDistortion : PostProcessEffectSettings + { + /// + /// The total amount of distortion to apply. + /// + [Range(-100f, 100f), Tooltip("Total distortion amount.")] + public FloatParameter intensity = new FloatParameter { value = 0f }; + + /// + /// Multiplies the intensity value on the x-axis. Setting this value to 0 will disable distortion on this axis. + /// + [Range(0f, 1f), DisplayName("X Multiplier"), Tooltip("Intensity multiplier on the x-axis. Set it to 0 to disable distortion on this axis.")] + public FloatParameter intensityX = new FloatParameter { value = 1f }; + + /// + /// Multiplies the intensity value on the y-axis. Setting this value to 0 will disable distortion on this axis. + /// + [Range(0f, 1f), DisplayName("Y Multiplier"), Tooltip("Intensity multiplier on the y-axis. Set it to 0 to disable distortion on this axis.")] + public FloatParameter intensityY = new FloatParameter { value = 1f }; + + /// + /// The center point for the distortion (x-axis). + /// + [Space] + [Range(-1f, 1f), Tooltip("Distortion center point (x-axis).")] + public FloatParameter centerX = new FloatParameter { value = 0f }; + + /// + /// The center point for the distortion (y-axis). + /// + [Range(-1f, 1f), Tooltip("Distortion center point (y-axis).")] + public FloatParameter centerY = new FloatParameter { value = 0f }; + + /// + /// A global screen scaling factor. + /// + [Space] + [Range(0.01f, 5f), Tooltip("Global screen scaling.")] + public FloatParameter scale = new FloatParameter { value = 1f }; + + /// + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled.value + && !Mathf.Approximately(intensity, 0f) + && (intensityX > 0f || intensityY > 0f) + && !RuntimeUtilities.isVREnabled; + } + } + +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + internal sealed class LensDistortionRenderer : PostProcessEffectRenderer + { + public override void Render(PostProcessRenderContext context) + { + var sheet = context.uberSheet; + + float amount = 1.6f * Math.Max(Mathf.Abs(settings.intensity.value), 1f); + float theta = Mathf.Deg2Rad * Math.Min(160f, amount); + float sigma = 2f * Mathf.Tan(theta * 0.5f); + var p0 = new Vector4(settings.centerX.value, settings.centerY.value, Mathf.Max(settings.intensityX.value, 1e-4f), Mathf.Max(settings.intensityY.value, 1e-4f)); + var p1 = new Vector4(settings.intensity.value >= 0f ? theta : 1f / theta, sigma, 1f / settings.scale.value, settings.intensity.value); + + sheet.EnableKeyword("DISTORT"); + sheet.properties.SetVector(ShaderIDs.Distortion_CenterScale, p0); + sheet.properties.SetVector(ShaderIDs.Distortion_Amount, p1); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/LensDistortion.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/LensDistortion.cs.meta new file mode 100644 index 0000000..bb6b529 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/LensDistortion.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9b77c5407dc277943b591ade9e6b18c5 +timeCreated: 1519737209 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/MotionBlur.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/MotionBlur.cs new file mode 100644 index 0000000..2b29972 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/MotionBlur.cs @@ -0,0 +1,148 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Motion Blur effect. + /// + [Serializable] + [PostProcess(typeof(MotionBlurRenderer), "Unity/Motion Blur", false)] + public sealed class MotionBlur : PostProcessEffectSettings + { + /// + /// The angle of the rotary shutter. Larger values give longer exposure therefore a stronger + /// blur effect. + /// + [Range(0f, 360f), Tooltip("The angle of rotary shutter. Larger values give longer exposure.")] + public FloatParameter shutterAngle = new FloatParameter { value = 270f }; + + /// + /// The amount of sample points, which affects quality and performances. + /// + [Range(4, 32), Tooltip("The amount of sample points. This affects quality and performance.")] + public IntParameter sampleCount = new IntParameter { value = 10 }; + + /// + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled.value + && shutterAngle.value > 0f + #if UNITY_EDITOR + // Don't render motion blur preview when the editor is not playing as it can in some + // cases results in ugly artifacts (i.e. when resizing the game view). + && Application.isPlaying + #endif + && SystemInfo.supportsMotionVectors + && RenderTextureFormat.RGHalf.IsSupported() + && !RuntimeUtilities.isVREnabled; + } + } + +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + internal sealed class MotionBlurRenderer : PostProcessEffectRenderer + { + enum Pass + { + VelocitySetup, + TileMax1, + TileMax2, + TileMaxV, + NeighborMax, + Reconstruction + } + + public override DepthTextureMode GetCameraFlags() + { + return DepthTextureMode.Depth | DepthTextureMode.MotionVectors; + } + + public override void Render(PostProcessRenderContext context) + { + var cmd = context.command; + + if (m_ResetHistory) + { + cmd.BlitFullscreenTriangle(context.source, context.destination); + m_ResetHistory = false; + return; + } + + const float kMaxBlurRadius = 5f; + var vectorRTFormat = RenderTextureFormat.RGHalf; + var packedRTFormat = RenderTextureFormat.ARGB2101010.IsSupported() + ? RenderTextureFormat.ARGB2101010 + : RenderTextureFormat.ARGB32; + + var sheet = context.propertySheets.Get(context.resources.shaders.motionBlur); + cmd.BeginSample("MotionBlur"); + + // Calculate the maximum blur radius in pixels. + int maxBlurPixels = (int)(kMaxBlurRadius * context.height / 100); + + // Calculate the TileMax size. + // It should be a multiple of 8 and larger than maxBlur. + int tileSize = ((maxBlurPixels - 1) / 8 + 1) * 8; + + // Pass 1 - Velocity/depth packing + var velocityScale = settings.shutterAngle / 360f; + sheet.properties.SetFloat(ShaderIDs.VelocityScale, velocityScale); + sheet.properties.SetFloat(ShaderIDs.MaxBlurRadius, maxBlurPixels); + sheet.properties.SetFloat(ShaderIDs.RcpMaxBlurRadius, 1f / maxBlurPixels); + + int vbuffer = ShaderIDs.VelocityTex; + cmd.GetTemporaryRT(vbuffer, context.width, context.height, 0, FilterMode.Point, + packedRTFormat, RenderTextureReadWrite.Linear); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, vbuffer, sheet, (int)Pass.VelocitySetup); + + // Pass 2 - First TileMax filter (1/2 downsize) + int tile2 = ShaderIDs.Tile2RT; + cmd.GetTemporaryRT(tile2, context.width / 2, context.height / 2, 0, FilterMode.Point, + vectorRTFormat, RenderTextureReadWrite.Linear); + cmd.BlitFullscreenTriangle(vbuffer, tile2, sheet, (int)Pass.TileMax1); + + // Pass 3 - Second TileMax filter (1/2 downsize) + int tile4 = ShaderIDs.Tile4RT; + cmd.GetTemporaryRT(tile4, context.width / 4, context.height / 4, 0, FilterMode.Point, + vectorRTFormat, RenderTextureReadWrite.Linear); + cmd.BlitFullscreenTriangle(tile2, tile4, sheet, (int)Pass.TileMax2); + cmd.ReleaseTemporaryRT(tile2); + + // Pass 4 - Third TileMax filter (1/2 downsize) + int tile8 = ShaderIDs.Tile8RT; + cmd.GetTemporaryRT(tile8, context.width / 8, context.height / 8, 0, FilterMode.Point, + vectorRTFormat, RenderTextureReadWrite.Linear); + cmd.BlitFullscreenTriangle(tile4, tile8, sheet, (int)Pass.TileMax2); + cmd.ReleaseTemporaryRT(tile4); + + // Pass 5 - Fourth TileMax filter (reduce to tileSize) + var tileMaxOffs = Vector2.one * (tileSize / 8f - 1f) * -0.5f; + sheet.properties.SetVector(ShaderIDs.TileMaxOffs, tileMaxOffs); + sheet.properties.SetFloat(ShaderIDs.TileMaxLoop, (int)(tileSize / 8f)); + + int tile = ShaderIDs.TileVRT; + cmd.GetTemporaryRT(tile, context.width / tileSize, context.height / tileSize, 0, + FilterMode.Point, vectorRTFormat, RenderTextureReadWrite.Linear); + cmd.BlitFullscreenTriangle(tile8, tile, sheet, (int)Pass.TileMaxV); + cmd.ReleaseTemporaryRT(tile8); + + // Pass 6 - NeighborMax filter + int neighborMax = ShaderIDs.NeighborMaxTex; + int neighborMaxWidth = context.width / tileSize; + int neighborMaxHeight = context.height / tileSize; + cmd.GetTemporaryRT(neighborMax, neighborMaxWidth, neighborMaxHeight, 0, + FilterMode.Point, vectorRTFormat, RenderTextureReadWrite.Linear); + cmd.BlitFullscreenTriangle(tile, neighborMax, sheet, (int)Pass.NeighborMax); + cmd.ReleaseTemporaryRT(tile); + + // Pass 7 - Reconstruction pass + sheet.properties.SetFloat(ShaderIDs.LoopCount, Mathf.Clamp(settings.sampleCount / 2, 1, 64)); + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)Pass.Reconstruction); + + cmd.ReleaseTemporaryRT(vbuffer); + cmd.ReleaseTemporaryRT(neighborMax); + cmd.EndSample("MotionBlur"); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/MotionBlur.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/MotionBlur.cs.meta new file mode 100644 index 0000000..c5ba8cd --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/MotionBlur.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b94fcd11afffcb142908bfcb1e261fba +timeCreated: 1491826543 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/MultiScaleVO.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/MultiScaleVO.cs new file mode 100644 index 0000000..b7fb45f --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/MultiScaleVO.cs @@ -0,0 +1,565 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + // Multi-scale volumetric obscurance + // TODO: Fix VR support + +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] + [Serializable] + internal sealed class MultiScaleVO : IAmbientOcclusionMethod + { + internal enum MipLevel { Original, L1, L2, L3, L4, L5, L6 } + + enum Pass + { + DepthCopy, + CompositionDeferred, + CompositionForward, + DebugOverlay + } + + // The arrays below are reused between frames to reduce GC allocation. + readonly float[] m_SampleThickness = + { + Mathf.Sqrt(1f - 0.2f * 0.2f), + Mathf.Sqrt(1f - 0.4f * 0.4f), + Mathf.Sqrt(1f - 0.6f * 0.6f), + Mathf.Sqrt(1f - 0.8f * 0.8f), + Mathf.Sqrt(1f - 0.2f * 0.2f - 0.2f * 0.2f), + Mathf.Sqrt(1f - 0.2f * 0.2f - 0.4f * 0.4f), + Mathf.Sqrt(1f - 0.2f * 0.2f - 0.6f * 0.6f), + Mathf.Sqrt(1f - 0.2f * 0.2f - 0.8f * 0.8f), + Mathf.Sqrt(1f - 0.4f * 0.4f - 0.4f * 0.4f), + Mathf.Sqrt(1f - 0.4f * 0.4f - 0.6f * 0.6f), + Mathf.Sqrt(1f - 0.4f * 0.4f - 0.8f * 0.8f), + Mathf.Sqrt(1f - 0.6f * 0.6f - 0.6f * 0.6f) + }; + + readonly float[] m_InvThicknessTable = new float[12]; + readonly float[] m_SampleWeightTable = new float[12]; + + readonly int[] m_Widths = new int[7]; + readonly int[] m_Heights = new int[7]; + + AmbientOcclusion m_Settings; + PropertySheet m_PropertySheet; + PostProcessResources m_Resources; + + // Can't use a temporary because we need to share it between cmdbuffers - also fixes a weird + // command buffer warning + RenderTexture m_AmbientOnlyAO; + + readonly RenderTargetIdentifier[] m_MRT = + { + BuiltinRenderTextureType.GBuffer0, // Albedo, Occ + BuiltinRenderTextureType.CameraTarget // Ambient + }; + + public MultiScaleVO(AmbientOcclusion settings) + { + m_Settings = settings; + } + + public DepthTextureMode GetCameraFlags() + { + return DepthTextureMode.Depth; + } + + // Special case for AO [because SRPs], please don't do this in other effects, it's bad + // practice in this framework + public void SetResources(PostProcessResources resources) + { + m_Resources = resources; + } + + void Alloc(CommandBuffer cmd, int id, MipLevel size, RenderTextureFormat format, bool uav) + { + int sizeId = (int)size; + cmd.GetTemporaryRT(id, new RenderTextureDescriptor + { + width = m_Widths[sizeId], + height = m_Heights[sizeId], + colorFormat = format, + depthBufferBits = 0, + volumeDepth = 1, + autoGenerateMips = false, + msaaSamples = 1, + enableRandomWrite = uav, + dimension = TextureDimension.Tex2D, + sRGB = false + }, FilterMode.Point); + } + + void AllocArray(CommandBuffer cmd, int id, MipLevel size, RenderTextureFormat format, bool uav) + { + int sizeId = (int)size; + cmd.GetTemporaryRT(id, new RenderTextureDescriptor + { + width = m_Widths[sizeId], + height = m_Heights[sizeId], + colorFormat = format, + depthBufferBits = 0, + volumeDepth = 16, + autoGenerateMips = false, + msaaSamples = 1, + enableRandomWrite = uav, + dimension = TextureDimension.Tex2DArray, + sRGB = false + }, FilterMode.Point); + } + + void Release(CommandBuffer cmd, int id) + { + cmd.ReleaseTemporaryRT(id); + } + + // Calculate values in _ZBuferParams (built-in shader variable) + // We can't use _ZBufferParams in compute shaders, so this function is + // used to give the values in it to compute shaders. + Vector4 CalculateZBufferParams(Camera camera) + { + float fpn = camera.farClipPlane / camera.nearClipPlane; + + if (SystemInfo.usesReversedZBuffer) + return new Vector4(fpn - 1f, 1f, 0f, 0f); + + return new Vector4(1f - fpn, fpn, 0f, 0f); + } + + float CalculateTanHalfFovHeight(Camera camera) + { + return 1f / camera.projectionMatrix[0, 0]; + } + + Vector2 GetSize(MipLevel mip) + { + return new Vector2(m_Widths[(int)mip], m_Heights[(int)mip]); + } + + Vector3 GetSizeArray(MipLevel mip) + { + return new Vector3(m_Widths[(int)mip], m_Heights[(int)mip], 16); + } + + public void GenerateAOMap(CommandBuffer cmd, Camera camera, RenderTargetIdentifier destination, RenderTargetIdentifier? depthMap, bool invert, bool isMSAA) + { + // Base size + m_Widths[0] = camera.pixelWidth * (RuntimeUtilities.isSinglePassStereoEnabled ? 2 : 1); + m_Heights[0] = camera.pixelHeight; + + // L1 -> L6 sizes + for (int i = 1; i < 7; i++) + { + int div = 1 << i; + m_Widths[i] = (m_Widths[0] + (div - 1)) / div; + m_Heights[i] = (m_Heights[0] + (div - 1)) / div; + } + + // Allocate temporary textures + PushAllocCommands(cmd, isMSAA); + + // Render logic + PushDownsampleCommands(cmd, camera, depthMap, isMSAA); + + float tanHalfFovH = CalculateTanHalfFovHeight(camera); + PushRenderCommands(cmd, ShaderIDs.TiledDepth1, ShaderIDs.Occlusion1, GetSizeArray(MipLevel.L3), tanHalfFovH, isMSAA); + PushRenderCommands(cmd, ShaderIDs.TiledDepth2, ShaderIDs.Occlusion2, GetSizeArray(MipLevel.L4), tanHalfFovH, isMSAA); + PushRenderCommands(cmd, ShaderIDs.TiledDepth3, ShaderIDs.Occlusion3, GetSizeArray(MipLevel.L5), tanHalfFovH, isMSAA); + PushRenderCommands(cmd, ShaderIDs.TiledDepth4, ShaderIDs.Occlusion4, GetSizeArray(MipLevel.L6), tanHalfFovH, isMSAA); + + PushUpsampleCommands(cmd, ShaderIDs.LowDepth4, ShaderIDs.Occlusion4, ShaderIDs.LowDepth3, ShaderIDs.Occlusion3, ShaderIDs.Combined3, GetSize(MipLevel.L4), GetSize(MipLevel.L3), isMSAA); + PushUpsampleCommands(cmd, ShaderIDs.LowDepth3, ShaderIDs.Combined3, ShaderIDs.LowDepth2, ShaderIDs.Occlusion2, ShaderIDs.Combined2, GetSize(MipLevel.L3), GetSize(MipLevel.L2), isMSAA); + PushUpsampleCommands(cmd, ShaderIDs.LowDepth2, ShaderIDs.Combined2, ShaderIDs.LowDepth1, ShaderIDs.Occlusion1, ShaderIDs.Combined1, GetSize(MipLevel.L2), GetSize(MipLevel.L1), isMSAA); + PushUpsampleCommands(cmd, ShaderIDs.LowDepth1, ShaderIDs.Combined1, ShaderIDs.LinearDepth, null, destination, GetSize(MipLevel.L1), GetSize(MipLevel.Original), isMSAA, invert); + + // Cleanup + PushReleaseCommands(cmd); + } + + void PushAllocCommands(CommandBuffer cmd, bool isMSAA) + { + if(isMSAA) + { + Alloc(cmd, ShaderIDs.LinearDepth, MipLevel.Original, RenderTextureFormat.RGHalf, true); + + Alloc(cmd, ShaderIDs.LowDepth1, MipLevel.L1, RenderTextureFormat.RGFloat, true); + Alloc(cmd, ShaderIDs.LowDepth2, MipLevel.L2, RenderTextureFormat.RGFloat, true); + Alloc(cmd, ShaderIDs.LowDepth3, MipLevel.L3, RenderTextureFormat.RGFloat, true); + Alloc(cmd, ShaderIDs.LowDepth4, MipLevel.L4, RenderTextureFormat.RGFloat, true); + + AllocArray(cmd, ShaderIDs.TiledDepth1, MipLevel.L3, RenderTextureFormat.RGHalf, true); + AllocArray(cmd, ShaderIDs.TiledDepth2, MipLevel.L4, RenderTextureFormat.RGHalf, true); + AllocArray(cmd, ShaderIDs.TiledDepth3, MipLevel.L5, RenderTextureFormat.RGHalf, true); + AllocArray(cmd, ShaderIDs.TiledDepth4, MipLevel.L6, RenderTextureFormat.RGHalf, true); + + Alloc(cmd, ShaderIDs.Occlusion1, MipLevel.L1, RenderTextureFormat.RG16, true); + Alloc(cmd, ShaderIDs.Occlusion2, MipLevel.L2, RenderTextureFormat.RG16, true); + Alloc(cmd, ShaderIDs.Occlusion3, MipLevel.L3, RenderTextureFormat.RG16, true); + Alloc(cmd, ShaderIDs.Occlusion4, MipLevel.L4, RenderTextureFormat.RG16, true); + + Alloc(cmd, ShaderIDs.Combined1, MipLevel.L1, RenderTextureFormat.RG16, true); + Alloc(cmd, ShaderIDs.Combined2, MipLevel.L2, RenderTextureFormat.RG16, true); + Alloc(cmd, ShaderIDs.Combined3, MipLevel.L3, RenderTextureFormat.RG16, true); + } + else + { + Alloc(cmd, ShaderIDs.LinearDepth, MipLevel.Original, RenderTextureFormat.RHalf, true); + + Alloc(cmd, ShaderIDs.LowDepth1, MipLevel.L1, RenderTextureFormat.RFloat, true); + Alloc(cmd, ShaderIDs.LowDepth2, MipLevel.L2, RenderTextureFormat.RFloat, true); + Alloc(cmd, ShaderIDs.LowDepth3, MipLevel.L3, RenderTextureFormat.RFloat, true); + Alloc(cmd, ShaderIDs.LowDepth4, MipLevel.L4, RenderTextureFormat.RFloat, true); + + AllocArray(cmd, ShaderIDs.TiledDepth1, MipLevel.L3, RenderTextureFormat.RHalf, true); + AllocArray(cmd, ShaderIDs.TiledDepth2, MipLevel.L4, RenderTextureFormat.RHalf, true); + AllocArray(cmd, ShaderIDs.TiledDepth3, MipLevel.L5, RenderTextureFormat.RHalf, true); + AllocArray(cmd, ShaderIDs.TiledDepth4, MipLevel.L6, RenderTextureFormat.RHalf, true); + + Alloc(cmd, ShaderIDs.Occlusion1, MipLevel.L1, RenderTextureFormat.R8, true); + Alloc(cmd, ShaderIDs.Occlusion2, MipLevel.L2, RenderTextureFormat.R8, true); + Alloc(cmd, ShaderIDs.Occlusion3, MipLevel.L3, RenderTextureFormat.R8, true); + Alloc(cmd, ShaderIDs.Occlusion4, MipLevel.L4, RenderTextureFormat.R8, true); + + Alloc(cmd, ShaderIDs.Combined1, MipLevel.L1, RenderTextureFormat.R8, true); + Alloc(cmd, ShaderIDs.Combined2, MipLevel.L2, RenderTextureFormat.R8, true); + Alloc(cmd, ShaderIDs.Combined3, MipLevel.L3, RenderTextureFormat.R8, true); + } + } + + void PushDownsampleCommands(CommandBuffer cmd, Camera camera, RenderTargetIdentifier? depthMap, bool isMSAA) + { + RenderTargetIdentifier depthMapId; + bool needDepthMapRelease = false; + + if (depthMap != null) + { + depthMapId = depthMap.Value; + } + else + { + // Make a copy of the depth texture, or reuse the resolved depth + // buffer (it's only available in some specific situations). + if (!RuntimeUtilities.IsResolvedDepthAvailable(camera)) + { + Alloc(cmd, ShaderIDs.DepthCopy, MipLevel.Original, RenderTextureFormat.RFloat, false); + depthMapId = new RenderTargetIdentifier(ShaderIDs.DepthCopy); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, depthMapId, m_PropertySheet, (int)Pass.DepthCopy); + needDepthMapRelease = true; + } + else + { + depthMapId = BuiltinRenderTextureType.ResolvedDepth; + } + } + + // 1st downsampling pass. + var cs = m_Resources.computeShaders.multiScaleAODownsample1; + int kernel = cs.FindKernel(isMSAA ? "MultiScaleVODownsample1_MSAA" : "MultiScaleVODownsample1"); + + cmd.SetComputeTextureParam(cs, kernel, "LinearZ", ShaderIDs.LinearDepth); + cmd.SetComputeTextureParam(cs, kernel, "DS2x", ShaderIDs.LowDepth1); + cmd.SetComputeTextureParam(cs, kernel, "DS4x", ShaderIDs.LowDepth2); + cmd.SetComputeTextureParam(cs, kernel, "DS2xAtlas", ShaderIDs.TiledDepth1); + cmd.SetComputeTextureParam(cs, kernel, "DS4xAtlas", ShaderIDs.TiledDepth2); + cmd.SetComputeVectorParam(cs, "ZBufferParams", CalculateZBufferParams(camera)); + cmd.SetComputeTextureParam(cs, kernel, "Depth", depthMapId); + + cmd.DispatchCompute(cs, kernel, m_Widths[(int)MipLevel.L4], m_Heights[(int)MipLevel.L4], 1); + + if (needDepthMapRelease) + Release(cmd, ShaderIDs.DepthCopy); + + // 2nd downsampling pass. + cs = m_Resources.computeShaders.multiScaleAODownsample2; + kernel = isMSAA ? cs.FindKernel("MultiScaleVODownsample2_MSAA") : cs.FindKernel("MultiScaleVODownsample2"); + + cmd.SetComputeTextureParam(cs, kernel, "DS4x", ShaderIDs.LowDepth2); + cmd.SetComputeTextureParam(cs, kernel, "DS8x", ShaderIDs.LowDepth3); + cmd.SetComputeTextureParam(cs, kernel, "DS16x", ShaderIDs.LowDepth4); + cmd.SetComputeTextureParam(cs, kernel, "DS8xAtlas", ShaderIDs.TiledDepth3); + cmd.SetComputeTextureParam(cs, kernel, "DS16xAtlas", ShaderIDs.TiledDepth4); + + cmd.DispatchCompute(cs, kernel, m_Widths[(int)MipLevel.L6], m_Heights[(int)MipLevel.L6], 1); + } + + void PushRenderCommands(CommandBuffer cmd, int source, int destination, Vector3 sourceSize, float tanHalfFovH, bool isMSAA) + { + // Here we compute multipliers that convert the center depth value into (the reciprocal + // of) sphere thicknesses at each sample location. This assumes a maximum sample radius + // of 5 units, but since a sphere has no thickness at its extent, we don't need to + // sample that far out. Only samples whole integer offsets with distance less than 25 + // are used. This means that there is no sample at (3, 4) because its distance is + // exactly 25 (and has a thickness of 0.) + + // The shaders are set up to sample a circular region within a 5-pixel radius. + const float kScreenspaceDiameter = 10f; + + // SphereDiameter = CenterDepth * ThicknessMultiplier. This will compute the thickness + // of a sphere centered at a specific depth. The ellipsoid scale can stretch a sphere + // into an ellipsoid, which changes the characteristics of the AO. + // TanHalfFovH: Radius of sphere in depth units if its center lies at Z = 1 + // ScreenspaceDiameter: Diameter of sample sphere in pixel units + // ScreenspaceDiameter / BufferWidth: Ratio of the screen width that the sphere actually covers + float thicknessMultiplier = 2f * tanHalfFovH * kScreenspaceDiameter / sourceSize.x; + if (RuntimeUtilities.isSinglePassStereoEnabled) + thicknessMultiplier *= 2f; + + // This will transform a depth value from [0, thickness] to [0, 1]. + float inverseRangeFactor = 1f / thicknessMultiplier; + + // The thicknesses are smaller for all off-center samples of the sphere. Compute + // thicknesses relative to the center sample. + for (int i = 0; i < 12; i++) + m_InvThicknessTable[i] = inverseRangeFactor / m_SampleThickness[i]; + + // These are the weights that are multiplied against the samples because not all samples + // are equally important. The farther the sample is from the center location, the less + // they matter. We use the thickness of the sphere to determine the weight. The scalars + // in front are the number of samples with this weight because we sum the samples + // together before multiplying by the weight, so as an aggregate all of those samples + // matter more. After generating this table, the weights are normalized. + m_SampleWeightTable[ 0] = 4 * m_SampleThickness[ 0]; // Axial + m_SampleWeightTable[ 1] = 4 * m_SampleThickness[ 1]; // Axial + m_SampleWeightTable[ 2] = 4 * m_SampleThickness[ 2]; // Axial + m_SampleWeightTable[ 3] = 4 * m_SampleThickness[ 3]; // Axial + m_SampleWeightTable[ 4] = 4 * m_SampleThickness[ 4]; // Diagonal + m_SampleWeightTable[ 5] = 8 * m_SampleThickness[ 5]; // L-shaped + m_SampleWeightTable[ 6] = 8 * m_SampleThickness[ 6]; // L-shaped + m_SampleWeightTable[ 7] = 8 * m_SampleThickness[ 7]; // L-shaped + m_SampleWeightTable[ 8] = 4 * m_SampleThickness[ 8]; // Diagonal + m_SampleWeightTable[ 9] = 8 * m_SampleThickness[ 9]; // L-shaped + m_SampleWeightTable[10] = 8 * m_SampleThickness[10]; // L-shaped + m_SampleWeightTable[11] = 4 * m_SampleThickness[11]; // Diagonal + + // Zero out the unused samples. + // FIXME: should we support SAMPLE_EXHAUSTIVELY mode? + m_SampleWeightTable[0] = 0; + m_SampleWeightTable[2] = 0; + m_SampleWeightTable[5] = 0; + m_SampleWeightTable[7] = 0; + m_SampleWeightTable[9] = 0; + + // Normalize the weights by dividing by the sum of all weights + var totalWeight = 0f; + + foreach (float w in m_SampleWeightTable) + totalWeight += w; + + for (int i = 0; i < m_SampleWeightTable.Length; i++) + m_SampleWeightTable[i] /= totalWeight; + + // Set the arguments for the render kernel. + var cs = m_Resources.computeShaders.multiScaleAORender; + int kernel = isMSAA ? cs.FindKernel("MultiScaleVORender_MSAA_interleaved") : cs.FindKernel("MultiScaleVORender_interleaved"); + + cmd.SetComputeFloatParams(cs, "gInvThicknessTable", m_InvThicknessTable); + cmd.SetComputeFloatParams(cs, "gSampleWeightTable", m_SampleWeightTable); + cmd.SetComputeVectorParam(cs, "gInvSliceDimension", new Vector2(1f / sourceSize.x, 1f / sourceSize.y)); + cmd.SetComputeVectorParam(cs, "AdditionalParams", new Vector2(-1f / m_Settings.thicknessModifier.value, m_Settings.intensity.value)); + cmd.SetComputeTextureParam(cs, kernel, "DepthTex", source); + cmd.SetComputeTextureParam(cs, kernel, "Occlusion", destination); + + // Calculate the thread group count and add a dispatch command with them. + uint xsize, ysize, zsize; + cs.GetKernelThreadGroupSizes(kernel, out xsize, out ysize, out zsize); + + cmd.DispatchCompute( + cs, kernel, + ((int)sourceSize.x + (int)xsize - 1) / (int)xsize, + ((int)sourceSize.y + (int)ysize - 1) / (int)ysize, + ((int)sourceSize.z + (int)zsize - 1) / (int)zsize + ); + } + + void PushUpsampleCommands(CommandBuffer cmd, int lowResDepth, int interleavedAO, int highResDepth, int? highResAO, RenderTargetIdentifier dest, Vector3 lowResDepthSize, Vector2 highResDepthSize, bool isMSAA, bool invert = false) + { + var cs = m_Resources.computeShaders.multiScaleAOUpsample; + int kernel = 0; + if (!isMSAA) + { + kernel = cs.FindKernel(highResAO == null ? invert + ? "MultiScaleVOUpSample_invert" + : "MultiScaleVOUpSample" + : "MultiScaleVOUpSample_blendout"); + } + else + { + kernel = cs.FindKernel(highResAO == null ? invert + ? "MultiScaleVOUpSample_MSAA_invert" + : "MultiScaleVOUpSample_MSAA" + : "MultiScaleVOUpSample_MSAA_blendout"); + } + + + float stepSize = 1920f / lowResDepthSize.x; + float bTolerance = 1f - Mathf.Pow(10f, m_Settings.blurTolerance.value) * stepSize; + bTolerance *= bTolerance; + float uTolerance = Mathf.Pow(10f, m_Settings.upsampleTolerance.value); + float noiseFilterWeight = 1f / (Mathf.Pow(10f, m_Settings.noiseFilterTolerance.value) + uTolerance); + + cmd.SetComputeVectorParam(cs, "InvLowResolution", new Vector2(1f / lowResDepthSize.x, 1f / lowResDepthSize.y)); + cmd.SetComputeVectorParam(cs, "InvHighResolution", new Vector2(1f / highResDepthSize.x, 1f / highResDepthSize.y)); + cmd.SetComputeVectorParam(cs, "AdditionalParams", new Vector4(noiseFilterWeight, stepSize, bTolerance, uTolerance)); + + cmd.SetComputeTextureParam(cs, kernel, "LoResDB", lowResDepth); + cmd.SetComputeTextureParam(cs, kernel, "HiResDB", highResDepth); + cmd.SetComputeTextureParam(cs, kernel, "LoResAO1", interleavedAO); + + if (highResAO != null) + cmd.SetComputeTextureParam(cs, kernel, "HiResAO", highResAO.Value); + + cmd.SetComputeTextureParam(cs, kernel, "AoResult", dest); + + int xcount = ((int)highResDepthSize.x + 17) / 16; + int ycount = ((int)highResDepthSize.y + 17) / 16; + cmd.DispatchCompute(cs, kernel, xcount, ycount, 1); + } + + void PushReleaseCommands(CommandBuffer cmd) + { + Release(cmd, ShaderIDs.LinearDepth); + + Release(cmd, ShaderIDs.LowDepth1); + Release(cmd, ShaderIDs.LowDepth2); + Release(cmd, ShaderIDs.LowDepth3); + Release(cmd, ShaderIDs.LowDepth4); + + Release(cmd, ShaderIDs.TiledDepth1); + Release(cmd, ShaderIDs.TiledDepth2); + Release(cmd, ShaderIDs.TiledDepth3); + Release(cmd, ShaderIDs.TiledDepth4); + + Release(cmd, ShaderIDs.Occlusion1); + Release(cmd, ShaderIDs.Occlusion2); + Release(cmd, ShaderIDs.Occlusion3); + Release(cmd, ShaderIDs.Occlusion4); + + Release(cmd, ShaderIDs.Combined1); + Release(cmd, ShaderIDs.Combined2); + Release(cmd, ShaderIDs.Combined3); + } + + void PreparePropertySheet(PostProcessRenderContext context) + { + var sheet = context.propertySheets.Get(m_Resources.shaders.multiScaleAO); + sheet.ClearKeywords(); + sheet.properties.SetVector(ShaderIDs.AOColor, Color.white - m_Settings.color.value); + m_PropertySheet = sheet; + } + + void CheckAOTexture(PostProcessRenderContext context) + { + if (m_AmbientOnlyAO == null || !m_AmbientOnlyAO.IsCreated() || m_AmbientOnlyAO.width != context.width || m_AmbientOnlyAO.height != context.height) + { + RuntimeUtilities.Destroy(m_AmbientOnlyAO); + + m_AmbientOnlyAO = new RenderTexture(context.width, context.height, 0, RenderTextureFormat.R8, RenderTextureReadWrite.Linear) + { + hideFlags = HideFlags.DontSave, + filterMode = FilterMode.Point, + enableRandomWrite = true + }; + m_AmbientOnlyAO.Create(); + } + } + + void PushDebug(PostProcessRenderContext context) + { + if (context.IsDebugOverlayEnabled(DebugOverlay.AmbientOcclusion)) + context.PushDebugOverlay(context.command, m_AmbientOnlyAO, m_PropertySheet, (int)Pass.DebugOverlay); + } + + public void RenderAfterOpaque(PostProcessRenderContext context) + { + var cmd = context.command; + cmd.BeginSample("Ambient Occlusion"); + SetResources(context.resources); + PreparePropertySheet(context); + CheckAOTexture(context); + + // In Forward mode, fog is applied at the object level in the grometry pass so we need + // to apply it to AO as well or it'll drawn on top of the fog effect. + if (context.camera.actualRenderingPath == RenderingPath.Forward && RenderSettings.fog) + { + m_PropertySheet.EnableKeyword("APPLY_FORWARD_FOG"); + m_PropertySheet.properties.SetVector( + ShaderIDs.FogParams, + new Vector3(RenderSettings.fogDensity, RenderSettings.fogStartDistance, RenderSettings.fogEndDistance) + ); + } + + GenerateAOMap(cmd, context.camera, m_AmbientOnlyAO, null, false, false); + PushDebug(context); + cmd.SetGlobalTexture(ShaderIDs.MSVOcclusionTexture, m_AmbientOnlyAO); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, BuiltinRenderTextureType.CameraTarget, m_PropertySheet, (int)Pass.CompositionForward, RenderBufferLoadAction.Load); + cmd.EndSample("Ambient Occlusion"); + } + + public void RenderAmbientOnly(PostProcessRenderContext context) + { + var cmd = context.command; + cmd.BeginSample("Ambient Occlusion Render"); + SetResources(context.resources); + PreparePropertySheet(context); + CheckAOTexture(context); + GenerateAOMap(cmd, context.camera, m_AmbientOnlyAO, null, false, false); + PushDebug(context); + cmd.EndSample("Ambient Occlusion Render"); + } + + public void CompositeAmbientOnly(PostProcessRenderContext context) + { + var cmd = context.command; + cmd.BeginSample("Ambient Occlusion Composite"); + cmd.SetGlobalTexture(ShaderIDs.MSVOcclusionTexture, m_AmbientOnlyAO); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, m_MRT, BuiltinRenderTextureType.CameraTarget, m_PropertySheet, (int)Pass.CompositionDeferred); + cmd.EndSample("Ambient Occlusion Composite"); + } + + public void Release() + { + RuntimeUtilities.Destroy(m_AmbientOnlyAO); + m_AmbientOnlyAO = null; + } + } +#else + [Serializable] + public sealed class MultiScaleVO : IAmbientOcclusionMethod + { + public MultiScaleVO(AmbientOcclusion settings) + { + } + + public void SetResources(PostProcessResources resources) + { + } + + public DepthTextureMode GetCameraFlags() + { + return DepthTextureMode.None; + } + + public void GenerateAOMap(CommandBuffer cmd, Camera camera, RenderTargetIdentifier destination, RenderTargetIdentifier? depthMap, bool invert, bool isMSAA) + { + } + + public void RenderAfterOpaque(PostProcessRenderContext context) + { + } + + public void RenderAmbientOnly(PostProcessRenderContext context) + { + } + + public void CompositeAmbientOnly(PostProcessRenderContext context) + { + } + + public void Release() + { + } + } +#endif +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/MultiScaleVO.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/MultiScaleVO.cs.meta new file mode 100644 index 0000000..f7f7f95 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/MultiScaleVO.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f59da4cf1b7dee244bc37fa6add23b00 +timeCreated: 1503308000 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ScalableAO.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ScalableAO.cs new file mode 100644 index 0000000..1bee859 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ScalableAO.cs @@ -0,0 +1,169 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + // Scalable ambient obscurance +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + [Serializable] + internal sealed class ScalableAO : IAmbientOcclusionMethod + { + RenderTexture m_Result; + PropertySheet m_PropertySheet; + AmbientOcclusion m_Settings; + + readonly RenderTargetIdentifier[] m_MRT = + { + BuiltinRenderTextureType.GBuffer0, // Albedo, Occ + BuiltinRenderTextureType.CameraTarget // Ambient + }; + + readonly int[] m_SampleCount = { 4, 6, 10, 8, 12 }; + + enum Pass + { + OcclusionEstimationForward, + OcclusionEstimationDeferred, + HorizontalBlurForward, + HorizontalBlurDeferred, + VerticalBlur, + CompositionForward, + CompositionDeferred, + DebugOverlay + } + + public ScalableAO(AmbientOcclusion settings) + { + m_Settings = settings; + } + + public DepthTextureMode GetCameraFlags() + { + return DepthTextureMode.Depth | DepthTextureMode.DepthNormals; + } + + void DoLazyInitialization(PostProcessRenderContext context) + { + m_PropertySheet = context.propertySheets.Get(context.resources.shaders.scalableAO); + + bool reset = false; + + if (m_Result == null || !m_Result.IsCreated()) + { + // Initial allocation + m_Result = context.GetScreenSpaceTemporaryRT(0, RenderTextureFormat.ARGB32, RenderTextureReadWrite.Linear); + m_Result.hideFlags = HideFlags.DontSave; + m_Result.filterMode = FilterMode.Bilinear; + + reset = true; + } + else if (m_Result.width != context.width || m_Result.height != context.height) + { + // Release and reallocate + m_Result.Release(); + m_Result.width = context.width; + m_Result.height = context.height; + reset = true; + } + + if (reset) + m_Result.Create(); + } + + void Render(PostProcessRenderContext context, CommandBuffer cmd, int occlusionSource) + { + DoLazyInitialization(context); + m_Settings.radius.value = Mathf.Max(m_Settings.radius.value, 1e-4f); + + // Material setup + // Always use a quater-res AO buffer unless High/Ultra quality is set. + bool downsampling = (int)m_Settings.quality.value < (int)AmbientOcclusionQuality.High; + float px = m_Settings.intensity.value; + float py = m_Settings.radius.value; + float pz = downsampling ? 0.5f : 1f; + float pw = m_SampleCount[(int)m_Settings.quality.value]; + + var sheet = m_PropertySheet; + sheet.ClearKeywords(); + sheet.properties.SetVector(ShaderIDs.AOParams, new Vector4(px, py, pz, pw)); + sheet.properties.SetVector(ShaderIDs.AOColor, Color.white - m_Settings.color.value); + + // In forward fog is applied at the object level in the grometry pass so we need to + // apply it to AO as well or it'll drawn on top of the fog effect. + // Not needed in Deferred. + if (context.camera.actualRenderingPath == RenderingPath.Forward && RenderSettings.fog) + { + sheet.EnableKeyword("APPLY_FORWARD_FOG"); + sheet.properties.SetVector( + ShaderIDs.FogParams, + new Vector3(RenderSettings.fogDensity, RenderSettings.fogStartDistance, RenderSettings.fogEndDistance) + ); + } + + // Texture setup + int ts = downsampling ? 2 : 1; + const RenderTextureFormat kFormat = RenderTextureFormat.ARGB32; + const RenderTextureReadWrite kRWMode = RenderTextureReadWrite.Linear; + const FilterMode kFilter = FilterMode.Bilinear; + + // AO buffer + var rtMask = ShaderIDs.OcclusionTexture1; + int scaledWidth = context.width / ts; + int scaledHeight = context.height / ts; + context.GetScreenSpaceTemporaryRT(cmd, rtMask, 0, kFormat, kRWMode, kFilter, scaledWidth, scaledHeight); + + // AO estimation + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, rtMask, sheet, (int)Pass.OcclusionEstimationForward + occlusionSource); + + // Blur buffer + var rtBlur = ShaderIDs.OcclusionTexture2; + context.GetScreenSpaceTemporaryRT(cmd, rtBlur, 0, kFormat, kRWMode, kFilter); + + // Separable blur (horizontal pass) + cmd.BlitFullscreenTriangle(rtMask, rtBlur, sheet, (int)Pass.HorizontalBlurForward + occlusionSource); + cmd.ReleaseTemporaryRT(rtMask); + + // Separable blur (vertical pass) + cmd.BlitFullscreenTriangle(rtBlur, m_Result, sheet, (int)Pass.VerticalBlur); + cmd.ReleaseTemporaryRT(rtBlur); + + if (context.IsDebugOverlayEnabled(DebugOverlay.AmbientOcclusion)) + context.PushDebugOverlay(cmd, m_Result, sheet, (int)Pass.DebugOverlay); + } + + public void RenderAfterOpaque(PostProcessRenderContext context) + { + var cmd = context.command; + cmd.BeginSample("Ambient Occlusion"); + Render(context, cmd, 0); + cmd.SetGlobalTexture(ShaderIDs.SAOcclusionTexture, m_Result); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, BuiltinRenderTextureType.CameraTarget, m_PropertySheet, (int)Pass.CompositionForward, RenderBufferLoadAction.Load); + cmd.EndSample("Ambient Occlusion"); + } + + public void RenderAmbientOnly(PostProcessRenderContext context) + { + var cmd = context.command; + cmd.BeginSample("Ambient Occlusion Render"); + Render(context, cmd, 1); + cmd.EndSample("Ambient Occlusion Render"); + } + + public void CompositeAmbientOnly(PostProcessRenderContext context) + { + var cmd = context.command; + cmd.BeginSample("Ambient Occlusion Composite"); + cmd.SetGlobalTexture(ShaderIDs.SAOcclusionTexture, m_Result); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, m_MRT, BuiltinRenderTextureType.CameraTarget, m_PropertySheet, (int)Pass.CompositionDeferred); + cmd.EndSample("Ambient Occlusion Composite"); + } + + public void Release() + { + RuntimeUtilities.Destroy(m_Result); + m_Result = null; + } + } +} + diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ScalableAO.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ScalableAO.cs.meta new file mode 100644 index 0000000..41a662c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ScalableAO.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c564cc69bd8582a48b2e0a2090d28361 +timeCreated: 1503307993 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ScreenSpaceReflections.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ScreenSpaceReflections.cs new file mode 100644 index 0000000..3d9f560 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ScreenSpaceReflections.cs @@ -0,0 +1,303 @@ +using System; +using UnityEngine.Assertions; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Screen-space Reflections quality presets. + /// + public enum ScreenSpaceReflectionPreset + { + Lower, Low, Medium, High, Higher, Ultra, Overkill, Custom + } + + /// + /// Screen-space Reflections buffer sizes. + /// + public enum ScreenSpaceReflectionResolution + { + /// + /// Downsampled buffer. Faster but lower quality. + /// + Downsampled, + + /// + /// Full-sized buffer. Slower but higher quality. + /// + FullSize, + + /// + /// Supersampled buffer. Very slow but much higher quality. + /// + Supersampled + } + + /// + /// A volume parameter holding a value. + /// + [Serializable] + public sealed class ScreenSpaceReflectionPresetParameter : ParameterOverride { } + + /// + /// A volume parameter holding a value. + /// + [Serializable] + public sealed class ScreenSpaceReflectionResolutionParameter : ParameterOverride { } + + /// + /// This class holds settings for the Screen-space Reflections effect. + /// + [Serializable] + [PostProcess(typeof(ScreenSpaceReflectionsRenderer), "Unity/Screen-space reflections")] + public sealed class ScreenSpaceReflections : PostProcessEffectSettings + { + /// + /// The quality preset to use for rendering. Use + /// to tweak settings. + /// + [Tooltip("Choose a quality preset, or use \"Custom\" to create your own custom preset. Don't use a preset higher than \"Medium\" if you desire good performance on consoles.")] + public ScreenSpaceReflectionPresetParameter preset = new ScreenSpaceReflectionPresetParameter { value = ScreenSpaceReflectionPreset.Medium }; + + /// + /// The maximum number of steps in the raymarching pass. Higher values mean more reflections. + /// + [Range(0, 256), Tooltip("Maximum number of steps in the raymarching pass. Higher values mean more reflections.")] + public IntParameter maximumIterationCount = new IntParameter { value = 16 }; + + /// + /// Changes the size of the internal buffer. Downsample it to maximize performances or + /// supersample it to get slow but higher quality results. + /// + [Tooltip("Changes the size of the SSR buffer. Downsample it to maximize performances or supersample it for higher quality results with reduced performance.")] + public ScreenSpaceReflectionResolutionParameter resolution = new ScreenSpaceReflectionResolutionParameter { value = ScreenSpaceReflectionResolution.Downsampled }; + + /// + /// The ray thickness. Lower values are more expensive but allow the effect to detect + /// smaller details. + /// + [Range(1f, 64f), Tooltip("Ray thickness. Lower values are more expensive but allow the effect to detect smaller details.")] + public FloatParameter thickness = new FloatParameter { value = 8f }; + + /// + /// The maximum distance to traverse in the scene after which it will stop drawing + /// reflections. + /// + [Tooltip("Maximum distance to traverse after which it will stop drawing reflections.")] + public FloatParameter maximumMarchDistance = new FloatParameter { value = 100f }; + + /// + /// Fades reflections close to the near plane. This is useful to hide common artifacts. + /// + [Range(0f, 1f), Tooltip("Fades reflections close to the near planes.")] + public FloatParameter distanceFade = new FloatParameter { value = 0.5f }; + + /// + /// Fades reflections close to the screen edges. + /// + [Range(0f, 1f), Tooltip("Fades reflections close to the screen edges.")] + public FloatParameter vignette = new FloatParameter { value = 0.5f }; + + /// + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled + && context.camera.actualRenderingPath == RenderingPath.DeferredShading + && SystemInfo.supportsMotionVectors + && SystemInfo.supportsComputeShaders + && SystemInfo.copyTextureSupport > CopyTextureSupport.None + && context.resources.shaders.screenSpaceReflections + && context.resources.shaders.screenSpaceReflections.isSupported + && context.resources.computeShaders.gaussianDownsample; + } + } + +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + internal sealed class ScreenSpaceReflectionsRenderer : PostProcessEffectRenderer + { + RenderTexture m_Resolve; + RenderTexture m_History; + int[] m_MipIDs; + + class QualityPreset + { + public int maximumIterationCount; + public float thickness; + public ScreenSpaceReflectionResolution downsampling; + } + + readonly QualityPreset[] m_Presets = + { + new QualityPreset { maximumIterationCount = 10, thickness = 32, downsampling = ScreenSpaceReflectionResolution.Downsampled }, // Lower + new QualityPreset { maximumIterationCount = 16, thickness = 32, downsampling = ScreenSpaceReflectionResolution.Downsampled }, // Low + new QualityPreset { maximumIterationCount = 32, thickness = 16, downsampling = ScreenSpaceReflectionResolution.Downsampled }, // Medium + new QualityPreset { maximumIterationCount = 48, thickness = 8, downsampling = ScreenSpaceReflectionResolution.Downsampled }, // High + new QualityPreset { maximumIterationCount = 16, thickness = 32, downsampling = ScreenSpaceReflectionResolution.FullSize }, // Higher + new QualityPreset { maximumIterationCount = 48, thickness = 16, downsampling = ScreenSpaceReflectionResolution.FullSize }, // Ultra + new QualityPreset { maximumIterationCount = 128, thickness = 12, downsampling = ScreenSpaceReflectionResolution.Supersampled }, // Overkill + }; + + enum Pass + { + Test, + Resolve, + Reproject, + Composite + } + + public override DepthTextureMode GetCameraFlags() + { + return DepthTextureMode.Depth | DepthTextureMode.MotionVectors; + } + + internal void CheckRT(ref RenderTexture rt, int width, int height, FilterMode filterMode, bool useMipMap) + { + if (rt == null || !rt.IsCreated() || rt.width != width || rt.height != height) + { + if (rt != null) + { + rt.Release(); + RuntimeUtilities.Destroy(rt); + } + + rt = new RenderTexture(width, height, 0, RuntimeUtilities.defaultHDRRenderTextureFormat) + { + filterMode = filterMode, + useMipMap = useMipMap, + autoGenerateMips = false, + hideFlags = HideFlags.HideAndDontSave + }; + + rt.Create(); + } + } + + public override void Render(PostProcessRenderContext context) + { + var cmd = context.command; + cmd.BeginSample("Screen-space Reflections"); + + // Get quality settings + if (settings.preset.value != ScreenSpaceReflectionPreset.Custom) + { + int id = (int)settings.preset.value; + settings.maximumIterationCount.value = m_Presets[id].maximumIterationCount; + settings.thickness.value = m_Presets[id].thickness; + settings.resolution.value = m_Presets[id].downsampling; + } + + settings.maximumMarchDistance.value = Mathf.Max(0f, settings.maximumMarchDistance.value); + + // Square POT target + int size = Mathf.ClosestPowerOfTwo(Mathf.Min(context.width, context.height)); + + if (settings.resolution.value == ScreenSpaceReflectionResolution.Downsampled) + size >>= 1; + else if (settings.resolution.value == ScreenSpaceReflectionResolution.Supersampled) + size <<= 1; + + // The gaussian pyramid compute works in blocks of 8x8 so make sure the last lod has a + // minimum size of 8x8 + const int kMaxLods = 12; + int lodCount = Mathf.FloorToInt(Mathf.Log(size, 2f) - 3f); + lodCount = Mathf.Min(lodCount, kMaxLods); + + CheckRT(ref m_Resolve, size, size, FilterMode.Trilinear, true); + + var noiseTex = context.resources.blueNoise256[0]; + var sheet = context.propertySheets.Get(context.resources.shaders.screenSpaceReflections); + sheet.properties.SetTexture(ShaderIDs.Noise, noiseTex); + + var screenSpaceProjectionMatrix = new Matrix4x4(); + screenSpaceProjectionMatrix.SetRow(0, new Vector4(size * 0.5f, 0f, 0f, size * 0.5f)); + screenSpaceProjectionMatrix.SetRow(1, new Vector4(0f, size * 0.5f, 0f, size * 0.5f)); + screenSpaceProjectionMatrix.SetRow(2, new Vector4(0f, 0f, 1f, 0f)); + screenSpaceProjectionMatrix.SetRow(3, new Vector4(0f, 0f, 0f, 1f)); + + var projectionMatrix = GL.GetGPUProjectionMatrix(context.camera.projectionMatrix, false); + screenSpaceProjectionMatrix *= projectionMatrix; + + sheet.properties.SetMatrix(ShaderIDs.ViewMatrix, context.camera.worldToCameraMatrix); + sheet.properties.SetMatrix(ShaderIDs.InverseViewMatrix, context.camera.worldToCameraMatrix.inverse); + sheet.properties.SetMatrix(ShaderIDs.InverseProjectionMatrix, projectionMatrix.inverse); + sheet.properties.SetMatrix(ShaderIDs.ScreenSpaceProjectionMatrix, screenSpaceProjectionMatrix); + sheet.properties.SetVector(ShaderIDs.Params, new Vector4((float)settings.vignette.value, settings.distanceFade.value, settings.maximumMarchDistance.value, lodCount)); + sheet.properties.SetVector(ShaderIDs.Params2, new Vector4((float)context.width / (float)context.height, (float)size / (float)noiseTex.width, settings.thickness.value, settings.maximumIterationCount.value)); + + cmd.GetTemporaryRT(ShaderIDs.Test, size, size, 0, FilterMode.Point, context.sourceFormat); + cmd.BlitFullscreenTriangle(context.source, ShaderIDs.Test, sheet, (int)Pass.Test); + + if (context.isSceneView) + { + cmd.BlitFullscreenTriangle(context.source, m_Resolve, sheet, (int)Pass.Resolve); + } + else + { + CheckRT(ref m_History, size, size, FilterMode.Bilinear, false); + + if (m_ResetHistory) + { + context.command.BlitFullscreenTriangle(context.source, m_History); + m_ResetHistory = false; + } + + cmd.GetTemporaryRT(ShaderIDs.SSRResolveTemp, size, size, 0, FilterMode.Bilinear, context.sourceFormat); + cmd.BlitFullscreenTriangle(context.source, ShaderIDs.SSRResolveTemp, sheet, (int)Pass.Resolve); + + sheet.properties.SetTexture(ShaderIDs.History, m_History); + cmd.BlitFullscreenTriangle(ShaderIDs.SSRResolveTemp, m_Resolve, sheet, (int)Pass.Reproject); + + cmd.CopyTexture(m_Resolve, 0, 0, m_History, 0, 0); + + cmd.ReleaseTemporaryRT(ShaderIDs.SSRResolveTemp); + } + + cmd.ReleaseTemporaryRT(ShaderIDs.Test); + + // Pre-cache mipmaps ids + if (m_MipIDs == null || m_MipIDs.Length == 0) + { + m_MipIDs = new int[kMaxLods]; + + for (int i = 0; i < kMaxLods; i++) + m_MipIDs[i] = Shader.PropertyToID("_SSRGaussianMip" + i); + } + + var compute = context.resources.computeShaders.gaussianDownsample; + int kernel = compute.FindKernel("KMain"); + + var last = new RenderTargetIdentifier(m_Resolve); + + for (int i = 0; i < lodCount; i++) + { + size >>= 1; + Assert.IsTrue(size > 0); + + cmd.GetTemporaryRT(m_MipIDs[i], size, size, 0, FilterMode.Bilinear, context.sourceFormat, RenderTextureReadWrite.Default, 1, true); + cmd.SetComputeTextureParam(compute, kernel, "_Source", last); + cmd.SetComputeTextureParam(compute, kernel, "_Result", m_MipIDs[i]); + cmd.SetComputeVectorParam(compute, "_Size", new Vector4(size, size, 1f / size, 1f / size)); + cmd.DispatchCompute(compute, kernel, size / 8, size / 8, 1); + cmd.CopyTexture(m_MipIDs[i], 0, 0, m_Resolve, 0, i + 1); + + last = m_MipIDs[i]; + } + + for (int i = 0; i < lodCount; i++) + cmd.ReleaseTemporaryRT(m_MipIDs[i]); + + sheet.properties.SetTexture(ShaderIDs.Resolve, m_Resolve); + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)Pass.Composite); + cmd.EndSample("Screen-space Reflections"); + } + + public override void Release() + { + RuntimeUtilities.Destroy(m_Resolve); + RuntimeUtilities.Destroy(m_History); + m_Resolve = null; + m_History = null; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ScreenSpaceReflections.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ScreenSpaceReflections.cs.meta new file mode 100644 index 0000000..521f001 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/ScreenSpaceReflections.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7a34fa72bd4185749832024e9c8010bf +timeCreated: 1503573119 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/SubpixelMorphologicalAntialiasing.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/SubpixelMorphologicalAntialiasing.cs new file mode 100644 index 0000000..95923b3 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/SubpixelMorphologicalAntialiasing.cs @@ -0,0 +1,80 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Subpixel Morphological Anti-aliasing (SMAA) effect. + /// +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + [Serializable] + public sealed class SubpixelMorphologicalAntialiasing + { + enum Pass + { + EdgeDetection = 0, + BlendWeights = 3, + NeighborhoodBlending = 6 + } + + /// + /// Quality presets. + /// + public enum Quality + { + /// + /// Low quality. + /// + Low = 0, + + /// + /// Medium quality. + /// + Medium = 1, + + /// + /// High quality. + /// + High = 2 + } + + /// + /// The quality preset to use for the anti-aliasing filter. + /// + [Tooltip("Lower quality is faster at the expense of visual quality (Low = ~60%, Medium = ~80%).")] + public Quality quality = Quality.High; + + /// + /// Checks if the effect is supported on the target platform. + /// + /// true if the anti-aliasing filter is supported, false otherwise + public bool IsSupported() + { + return !RuntimeUtilities.isSinglePassStereoEnabled; + } + + internal void Render(PostProcessRenderContext context) + { + var sheet = context.propertySheets.Get(context.resources.shaders.subpixelMorphologicalAntialiasing); + sheet.properties.SetTexture("_AreaTex", context.resources.smaaLuts.area); + sheet.properties.SetTexture("_SearchTex", context.resources.smaaLuts.search); + + var cmd = context.command; + cmd.BeginSample("SubpixelMorphologicalAntialiasing"); + + cmd.GetTemporaryRT(ShaderIDs.SMAA_Flip, context.width, context.height, 0, FilterMode.Bilinear, context.sourceFormat, RenderTextureReadWrite.Linear); + cmd.GetTemporaryRT(ShaderIDs.SMAA_Flop, context.width, context.height, 0, FilterMode.Bilinear, context.sourceFormat, RenderTextureReadWrite.Linear); + + cmd.BlitFullscreenTriangle(context.source, ShaderIDs.SMAA_Flip, sheet, (int)Pass.EdgeDetection + (int)quality, true); + cmd.BlitFullscreenTriangle(ShaderIDs.SMAA_Flip, ShaderIDs.SMAA_Flop, sheet, (int)Pass.BlendWeights + (int)quality); + cmd.SetGlobalTexture("_BlendTex", ShaderIDs.SMAA_Flop); + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)Pass.NeighborhoodBlending); + + cmd.ReleaseTemporaryRT(ShaderIDs.SMAA_Flip); + cmd.ReleaseTemporaryRT(ShaderIDs.SMAA_Flop); + + cmd.EndSample("SubpixelMorphologicalAntialiasing"); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/SubpixelMorphologicalAntialiasing.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/SubpixelMorphologicalAntialiasing.cs.meta new file mode 100644 index 0000000..709478c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/SubpixelMorphologicalAntialiasing.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f3b0ecb61e2f1e54ebd4572178bfd8b1 +timeCreated: 1497735449 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/TemporalAntialiasing.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/TemporalAntialiasing.cs new file mode 100644 index 0000000..b026e5f --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/TemporalAntialiasing.cs @@ -0,0 +1,265 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Temporal Anti-aliasing (TAA) effect. + /// +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + [Serializable] + public sealed class TemporalAntialiasing + { + /// + /// The diameter (in texels) inside which jitter samples are spread. Smaller values result + /// in crisper but more aliased output, while larger values result in more stable but + /// blurrier output. + /// + [Tooltip("The diameter (in texels) inside which jitter samples are spread. Smaller values result in crisper but more aliased output, while larger values result in more stable, but blurrier, output.")] + [Range(0.1f, 1f)] + public float jitterSpread = 0.75f; + + /// + /// Controls the amount of sharpening applied to the color buffer. High values may introduce + /// dark-border artifacts. + /// + [Tooltip("Controls the amount of sharpening applied to the color buffer. High values may introduce dark-border artifacts.")] + [Range(0f, 3f)] + public float sharpness = 0.25f; + + /// + /// The blend coefficient for a stationary fragment. Controls the percentage of history + /// sample blended into the final color. + /// + [Tooltip("The blend coefficient for a stationary fragment. Controls the percentage of history sample blended into the final color.")] + [Range(0f, 0.99f)] + public float stationaryBlending = 0.95f; + + /// + /// The blend coefficient for a fragment with significant motion. Controls the percentage of + /// history sample blended into the final color. + /// + [Tooltip("The blend coefficient for a fragment with significant motion. Controls the percentage of history sample blended into the final color.")] + [Range(0f, 0.99f)] + public float motionBlending = 0.85f; + + // For custom jittered matrices - use at your own risks + public Func jitteredMatrixFunc; + + public Vector2 jitter { get; private set; } + + enum Pass + { + SolverDilate, + SolverNoDilate + } + + readonly RenderTargetIdentifier[] m_Mrt = new RenderTargetIdentifier[2]; + bool m_ResetHistory = true; + + const int k_SampleCount = 8; + public int sampleIndex { get; private set; } + + // Ping-pong between two history textures as we can't read & write the same target in the + // same pass + const int k_NumEyes = 2; + const int k_NumHistoryTextures = 2; + readonly RenderTexture[][] m_HistoryTextures = new RenderTexture[k_NumEyes][]; + + readonly int[] m_HistoryPingPong = new int [k_NumEyes]; + + public bool IsSupported() + { + return SystemInfo.supportedRenderTargetCount >= 2 + && SystemInfo.supportsMotionVectors +#if !UNITY_2017_3_OR_NEWER + && !RuntimeUtilities.isVREnabled +#endif + && SystemInfo.graphicsDeviceType != GraphicsDeviceType.OpenGLES2; + } + + internal DepthTextureMode GetCameraFlags() + { + return DepthTextureMode.Depth | DepthTextureMode.MotionVectors; + } + + internal void ResetHistory() + { + m_ResetHistory = true; + } + + Vector2 GenerateRandomOffset() + { + // The variance between 0 and the actual halton sequence values reveals noticeable instability + // in Unity's shadow maps, so we avoid index 0. + var offset = new Vector2( + HaltonSeq.Get((sampleIndex & 1023) + 1, 2) - 0.5f, + HaltonSeq.Get((sampleIndex & 1023) + 1, 3) - 0.5f + ); + + if (++sampleIndex >= k_SampleCount) + sampleIndex = 0; + + return offset; + } + + public Matrix4x4 GetJitteredProjectionMatrix(Camera camera) + { + Matrix4x4 cameraProj; + jitter = GenerateRandomOffset(); + jitter *= jitterSpread; + + if (jitteredMatrixFunc != null) + { + cameraProj = jitteredMatrixFunc(camera, jitter); + } + else + { + cameraProj = camera.orthographic + ? RuntimeUtilities.GetJitteredOrthographicProjectionMatrix(camera, jitter) + : RuntimeUtilities.GetJitteredPerspectiveProjectionMatrix(camera, jitter); + } + + jitter = new Vector2(jitter.x / camera.pixelWidth, jitter.y / camera.pixelHeight); + return cameraProj; + } + + public void ConfigureJitteredProjectionMatrix(PostProcessRenderContext context) + { + var camera = context.camera; + camera.nonJitteredProjectionMatrix = camera.projectionMatrix; + camera.projectionMatrix = GetJitteredProjectionMatrix(camera); + camera.useJitteredProjectionMatrixForTransparentRendering = false; + } + + // TODO: We'll probably need to isolate most of this for SRPs + public void ConfigureStereoJitteredProjectionMatrices(PostProcessRenderContext context) + { +#if UNITY_2017_3_OR_NEWER + var camera = context.camera; + jitter = GenerateRandomOffset(); + jitter *= jitterSpread; + + for (var eye = Camera.StereoscopicEye.Left; eye <= Camera.StereoscopicEye.Right; eye++) + { + // This saves off the device generated projection matrices as non-jittered + context.camera.CopyStereoDeviceProjectionMatrixToNonJittered(eye); + var originalProj = context.camera.GetStereoNonJitteredProjectionMatrix(eye); + + // Currently no support for custom jitter func, as VR devices would need to provide + // original projection matrix as input along with jitter + var jitteredMatrix = RuntimeUtilities.GenerateJitteredProjectionMatrixFromOriginal(context, originalProj, jitter); + context.camera.SetStereoProjectionMatrix(eye, jitteredMatrix); + } + + // jitter has to be scaled for the actual eye texture size, not just the intermediate texture size + // which could be double-wide in certain stereo rendering scenarios + jitter = new Vector2(jitter.x / context.screenWidth, jitter.y / context.screenHeight); + camera.useJitteredProjectionMatrixForTransparentRendering = false; +#endif + } + + void GenerateHistoryName(RenderTexture rt, int id, PostProcessRenderContext context) + { + rt.name = "Temporal Anti-aliasing History id #" + id; + + if (context.stereoActive) + rt.name += " for eye " + context.xrActiveEye; + } + + RenderTexture CheckHistory(int id, PostProcessRenderContext context) + { + int activeEye = context.xrActiveEye; + + if (m_HistoryTextures[activeEye] == null) + m_HistoryTextures[activeEye] = new RenderTexture[k_NumHistoryTextures]; + + var rt = m_HistoryTextures[activeEye][id]; + + if (m_ResetHistory || rt == null || !rt.IsCreated()) + { + RenderTexture.ReleaseTemporary(rt); + + rt = context.GetScreenSpaceTemporaryRT(0, context.sourceFormat); + GenerateHistoryName(rt, id, context); + + rt.filterMode = FilterMode.Bilinear; + m_HistoryTextures[activeEye][id] = rt; + + context.command.BlitFullscreenTriangle(context.source, rt); + } + else if (rt.width != context.width || rt.height != context.height) + { + // On size change, simply copy the old history to the new one. This looks better + // than completely discarding the history and seeing a few aliased frames. + var rt2 = context.GetScreenSpaceTemporaryRT(0, context.sourceFormat); + GenerateHistoryName(rt2, id, context); + + rt2.filterMode = FilterMode.Bilinear; + m_HistoryTextures[activeEye][id] = rt2; + + context.command.BlitFullscreenTriangle(rt, rt2); + RenderTexture.ReleaseTemporary(rt); + } + + return m_HistoryTextures[activeEye][id]; + } + + internal void Render(PostProcessRenderContext context) + { + var sheet = context.propertySheets.Get(context.resources.shaders.temporalAntialiasing); + + var cmd = context.command; + cmd.BeginSample("TemporalAntialiasing"); + + int pp = m_HistoryPingPong[context.xrActiveEye]; + var historyRead = CheckHistory(++pp % 2, context); + var historyWrite = CheckHistory(++pp % 2, context); + m_HistoryPingPong[context.xrActiveEye] = ++pp % 2; + + const float kMotionAmplification = 100f * 60f; + sheet.properties.SetVector(ShaderIDs.Jitter, jitter); + sheet.properties.SetFloat(ShaderIDs.Sharpness, sharpness); + sheet.properties.SetVector(ShaderIDs.FinalBlendParameters, new Vector4(stationaryBlending, motionBlending, kMotionAmplification, 0f)); + sheet.properties.SetTexture(ShaderIDs.HistoryTex, historyRead); + + // TODO: Account for different possible RenderViewportScale value from previous frame... + + int pass = context.camera.orthographic ? (int)Pass.SolverNoDilate : (int)Pass.SolverDilate; + m_Mrt[0] = context.destination; + m_Mrt[1] = historyWrite; + + cmd.BlitFullscreenTriangle(context.source, m_Mrt, context.source, sheet, pass); + cmd.EndSample("TemporalAntialiasing"); + + m_ResetHistory = false; + } + + internal void Release() + { + if (m_HistoryTextures != null) + { + for (int i = 0; i < m_HistoryTextures.Length; i++) + { + if (m_HistoryTextures[i] == null) + continue; + + for (int j = 0; j < m_HistoryTextures[i].Length; j++) + { + RenderTexture.ReleaseTemporary(m_HistoryTextures[i][j]); + m_HistoryTextures[i][j] = null; + } + + m_HistoryTextures[i] = null; + } + } + + sampleIndex = 0; + m_HistoryPingPong[0] = 0; + m_HistoryPingPong[1] = 0; + + ResetHistory(); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/TemporalAntialiasing.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/TemporalAntialiasing.cs.meta new file mode 100644 index 0000000..9b76b52 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/TemporalAntialiasing.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5a7fc26078c70a6469392d9775f433be +timeCreated: 1490188293 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Vignette.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Vignette.cs new file mode 100644 index 0000000..d1f4ad0 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Vignette.cs @@ -0,0 +1,123 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// A list of available render modes for the Vignette effect. + /// + public enum VignetteMode + { + /// + /// This mode offers parametric controls for the position, shape and intensity of the Vignette. + /// + Classic, + + /// + /// This mode multiplies a custom texture mask over the screen to create a Vignette effect. + /// + Masked + } + + /// + /// A volume parameter holding a value. + /// + [Serializable] + public sealed class VignetteModeParameter : ParameterOverride {} + + /// + /// This class holds settings for the Vignette effect. + /// + [Serializable] + [PostProcess(typeof(VignetteRenderer), "Unity/Vignette")] + public sealed class Vignette : PostProcessEffectSettings + { + /// + /// Use the \"Classic\" mode for parametric controls. Use the \"Masked\" mode to use your own texture mask. + /// + [Tooltip("Use the \"Classic\" mode for parametric controls. Use the \"Masked\" mode to use your own texture mask.")] + public VignetteModeParameter mode = new VignetteModeParameter { value = VignetteMode.Classic }; + + /// + /// The color to use to tint the vignette. + /// + [Tooltip("Vignette color.")] + public ColorParameter color = new ColorParameter { value = new Color(0f, 0f, 0f, 1f) }; + + /// + /// Sets the vignette center point (screen center is [0.5,0.5]). + /// + [Tooltip("Sets the vignette center point (screen center is [0.5, 0.5]).")] + public Vector2Parameter center = new Vector2Parameter { value = new Vector2(0.5f, 0.5f) }; + + /// + /// The amount of vignetting on screen. + /// + [Range(0f, 1f), Tooltip("Amount of vignetting on screen.")] + public FloatParameter intensity = new FloatParameter { value = 0f }; + + /// + /// The smoothness of the vignette borders. + /// + [Range(0.01f, 1f), Tooltip("Smoothness of the vignette borders.")] + public FloatParameter smoothness = new FloatParameter { value = 0.2f }; + + /// + /// Lower values will make a square-ish vignette. + /// + [Range(0f, 1f), Tooltip("Lower values will make a square-ish vignette.")] + public FloatParameter roundness = new FloatParameter { value = 1f }; + + /// + /// Should the vignette be perfectly round or be dependent on the current aspect ratio? + /// + [Tooltip("Set to true to mark the vignette to be perfectly round. False will make its shape dependent on the current aspect ratio.")] + public BoolParameter rounded = new BoolParameter { value = false }; + + /// + /// A black and white mask to use as a vignette. + /// + [Tooltip("A black and white mask to use as a vignette.")] + public TextureParameter mask = new TextureParameter { value = null }; + + /// + /// Mask opacity. + /// + [Range(0f, 1f), Tooltip("Mask opacity.")] + public FloatParameter opacity = new FloatParameter { value = 1f }; + + /// + public override bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled.value + && ((mode.value == VignetteMode.Classic && intensity.value > 0f) + || (mode.value == VignetteMode.Masked && opacity.value > 0f && mask.value != null)); + } + } + +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + internal sealed class VignetteRenderer : PostProcessEffectRenderer + { + public override void Render(PostProcessRenderContext context) + { + var sheet = context.uberSheet; + sheet.EnableKeyword("VIGNETTE"); + sheet.properties.SetColor(ShaderIDs.Vignette_Color, settings.color.value); + + if (settings.mode == VignetteMode.Classic) + { + sheet.properties.SetFloat(ShaderIDs.Vignette_Mode, 0f); + sheet.properties.SetVector(ShaderIDs.Vignette_Center, settings.center.value); + float roundness = (1f - settings.roundness.value) * 6f + settings.roundness.value; + sheet.properties.SetVector(ShaderIDs.Vignette_Settings, new Vector4(settings.intensity.value * 3f, settings.smoothness.value * 5f, roundness, settings.rounded.value ? 1f : 0f)); + } + else // Masked + { + sheet.properties.SetFloat(ShaderIDs.Vignette_Mode, 1f); + sheet.properties.SetTexture(ShaderIDs.Vignette_Mask, settings.mask.value); + sheet.properties.SetFloat(ShaderIDs.Vignette_Opacity, Mathf.Clamp01(settings.opacity.value)); + } + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Vignette.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Vignette.cs.meta new file mode 100644 index 0000000..f2f06ce --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Effects/Vignette.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 40b924e2dad56384a8df2a1e111bb675 +timeCreated: 1491826542 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors.meta new file mode 100644 index 0000000..d288f89 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 0a243807ad889ae44bf63a9bcdc984af +folderAsset: yes +timeCreated: 1499676298 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/HistogramMonitor.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/HistogramMonitor.cs new file mode 100644 index 0000000..33c015a --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/HistogramMonitor.cs @@ -0,0 +1,120 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Histogram monitor. + /// + [Serializable] + public sealed class HistogramMonitor : Monitor + { + /// + /// Displayable channels. + /// + public enum Channel + { + /// + /// The red channel. + /// + Red, + + /// + /// The green channel. + /// + Green, + + /// + /// The blue channel. + /// + Blue, + + /// + /// The master (luminance) channel. + /// + Master + } + + /// + /// The width of the rendered histogram. + /// + public int width = 512; + + /// + /// The height of the rendered histogram. + /// + public int height = 256; + + /// + /// The channel to render. + /// + public Channel channel = Channel.Master; + + ComputeBuffer m_Data; + const int k_NumBins = 256; + const int k_ThreadGroupSizeX = 16; + const int k_ThreadGroupSizeY = 16; + + internal override void OnDisable() + { + base.OnDisable(); + + if (m_Data != null) + m_Data.Release(); + + m_Data = null; + } + + internal override bool NeedsHalfRes() + { + return true; + } + + internal override bool ShaderResourcesAvailable(PostProcessRenderContext context) + { + return context.resources.computeShaders.gammaHistogram; + } + + internal override void Render(PostProcessRenderContext context) + { + CheckOutput(width, height); + + if (m_Data == null) + m_Data = new ComputeBuffer(k_NumBins, sizeof(uint)); + + var compute = context.resources.computeShaders.gammaHistogram; + var cmd = context.command; + cmd.BeginSample("GammaHistogram"); + + // Clear the buffer on every frame as we use it to accumulate values on every frame + int kernel = compute.FindKernel("KHistogramClear"); + cmd.SetComputeBufferParam(compute, kernel, "_HistogramBuffer", m_Data); + cmd.DispatchCompute(compute, kernel, Mathf.CeilToInt(k_NumBins / (float)k_ThreadGroupSizeX), 1, 1); + + // Gather all pixels and fill in our histogram + kernel = compute.FindKernel("KHistogramGather"); + var parameters = new Vector4( + context.width / 2, + context.height / 2, + RuntimeUtilities.isLinearColorSpace ? 1 : 0, + (int)channel + ); + + cmd.SetComputeVectorParam(compute, "_Params", parameters); + cmd.SetComputeTextureParam(compute, kernel, "_Source", ShaderIDs.HalfResFinalCopy); + cmd.SetComputeBufferParam(compute, kernel, "_HistogramBuffer", m_Data); + cmd.DispatchCompute(compute, kernel, + Mathf.CeilToInt(parameters.x / k_ThreadGroupSizeX), + Mathf.CeilToInt(parameters.y / k_ThreadGroupSizeY), + 1 + ); + + // Generate the histogram texture + var sheet = context.propertySheets.Get(context.resources.shaders.gammaHistogram); + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(width, height, 0f, 0f)); + sheet.properties.SetBuffer(ShaderIDs.HistogramBuffer, m_Data); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, output, sheet, 0); + + cmd.EndSample("GammaHistogram"); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/HistogramMonitor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/HistogramMonitor.cs.meta new file mode 100644 index 0000000..dd9a92e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/HistogramMonitor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cce62646e6d421c41b0aa1c300fcd0fe +timeCreated: 1499676418 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/LightMeterMonitor.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/LightMeterMonitor.cs new file mode 100644 index 0000000..a84bc21 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/LightMeterMonitor.cs @@ -0,0 +1,83 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Light Meter monitor. + /// + [Serializable] + public sealed class LightMeterMonitor : Monitor + { + /// + /// The width of the rendered light meter. + /// + public int width = 512; + + /// + /// The height of the rendered light meter. + /// + public int height = 256; + + /// + /// Should we display grading and tonemapping curves on top? + /// + /// + /// This only works when is active. + /// + public bool showCurves = true; + + internal override bool ShaderResourcesAvailable(PostProcessRenderContext context) + { + return context.resources.shaders.lightMeter && context.resources.shaders.lightMeter.isSupported; + } + + internal override void Render(PostProcessRenderContext context) + { + CheckOutput(width, height); + + var histogram = context.logHistogram; + + var sheet = context.propertySheets.Get(context.resources.shaders.lightMeter); + sheet.ClearKeywords(); + sheet.properties.SetBuffer(ShaderIDs.HistogramBuffer, histogram.data); + + var scaleOffsetRes = histogram.GetHistogramScaleOffsetRes(context); + scaleOffsetRes.z = 1f / width; + scaleOffsetRes.w = 1f / height; + + sheet.properties.SetVector(ShaderIDs.ScaleOffsetRes, scaleOffsetRes); + + if (context.logLut != null && showCurves) + { + sheet.EnableKeyword("COLOR_GRADING_HDR"); + sheet.properties.SetTexture(ShaderIDs.Lut3D, context.logLut); + } + + var autoExpo = context.autoExposure; + if (autoExpo != null) + { + // Make sure filtering values are correct to avoid apocalyptic consequences + float lowPercent = autoExpo.filtering.value.x; + float highPercent = autoExpo.filtering.value.y; + const float kMinDelta = 1e-2f; + highPercent = Mathf.Clamp(highPercent, 1f + kMinDelta, 99f); + lowPercent = Mathf.Clamp(lowPercent, 1f, highPercent - kMinDelta); + + var parameters = new Vector4( + lowPercent * 0.01f, + highPercent * 0.01f, + RuntimeUtilities.Exp2(autoExpo.minLuminance.value), + RuntimeUtilities.Exp2(autoExpo.maxLuminance.value) + ); + + sheet.EnableKeyword("AUTO_EXPOSURE"); + sheet.properties.SetVector(ShaderIDs.Params, parameters); + } + + var cmd = context.command; + cmd.BeginSample("LightMeter"); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, output, sheet, 0); + cmd.EndSample("LightMeter"); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/LightMeterMonitor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/LightMeterMonitor.cs.meta new file mode 100644 index 0000000..96a3a25 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/LightMeterMonitor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 322fbe1dae0fe4a4e9645768b3944aae +timeCreated: 1499676398 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/Monitor.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/Monitor.cs new file mode 100644 index 0000000..c3d102c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/Monitor.cs @@ -0,0 +1,58 @@ +namespace UnityEngine.Rendering.PostProcessing +{ + public enum MonitorType + { + LightMeter, + Histogram, + Waveform, + Vectorscope + } + + public abstract class Monitor + { + public RenderTexture output { get; protected set; } + + internal bool requested = false; + + public bool IsRequestedAndSupported(PostProcessRenderContext context) + { + return requested + && SystemInfo.supportsComputeShaders + && !RuntimeUtilities.isAndroidOpenGL + && ShaderResourcesAvailable(context); + } + + internal abstract bool ShaderResourcesAvailable(PostProcessRenderContext context); + + internal virtual bool NeedsHalfRes() + { + return false; + } + + protected void CheckOutput(int width, int height) + { + if (output == null || !output.IsCreated() || output.width != width || output.height != height) + { + RuntimeUtilities.Destroy(output); + output = new RenderTexture(width, height, 0, RenderTextureFormat.ARGB32) + { + anisoLevel = 0, + filterMode = FilterMode.Bilinear, + wrapMode = TextureWrapMode.Clamp, + useMipMap = false + }; + } + } + + internal virtual void OnEnable() + { + } + + internal virtual void OnDisable() + { + RuntimeUtilities.Destroy(output); + } + + internal abstract void Render(PostProcessRenderContext context); + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/Monitor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/Monitor.cs.meta new file mode 100644 index 0000000..6313025 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/Monitor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5d05ae29f423ce241b6cddfe46280b4c +timeCreated: 1499676521 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/VectorscopeMonitor.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/VectorscopeMonitor.cs new file mode 100644 index 0000000..2519729 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/VectorscopeMonitor.cs @@ -0,0 +1,99 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Vectorscope monitor. + /// + [Serializable] + public sealed class VectorscopeMonitor : Monitor + { + /// + /// The width and height of the rendered vectorscope. + /// + public int size = 256; + + /// + /// The exposure multiplier applied to the vectorscope values. + /// + public float exposure = 0.12f; + + ComputeBuffer m_Data; + const int k_ThreadGroupSizeX = 16; + const int k_ThreadGroupSizeY = 16; + + internal override void OnDisable() + { + base.OnDisable(); + + if (m_Data != null) + m_Data.Release(); + + m_Data = null; + } + + internal override bool NeedsHalfRes() + { + return true; + } + + internal override bool ShaderResourcesAvailable(PostProcessRenderContext context) + { + return context.resources.computeShaders.vectorscope; + } + + internal override void Render(PostProcessRenderContext context) + { + CheckOutput(size, size); + exposure = Mathf.Max(0f, exposure); + + int count = size * size; + if (m_Data == null) + m_Data = new ComputeBuffer(count, sizeof(uint)); + else if (m_Data.count != count) + { + m_Data.Release(); + m_Data = new ComputeBuffer(count, sizeof(uint)); + } + + var compute = context.resources.computeShaders.vectorscope; + var cmd = context.command; + cmd.BeginSample("Vectorscope"); + + var parameters = new Vector4( + context.width / 2, + context.height / 2, + size, + RuntimeUtilities.isLinearColorSpace ? 1 : 0 + ); + + // Clear the buffer on every frame as we use it to accumulate values on every frame + int kernel = compute.FindKernel("KVectorscopeClear"); + cmd.SetComputeBufferParam(compute, kernel, "_VectorscopeBuffer", m_Data); + cmd.SetComputeVectorParam(compute, "_Params", parameters); + cmd.DispatchCompute(compute, kernel, + Mathf.CeilToInt(size / (float)k_ThreadGroupSizeX), + Mathf.CeilToInt(size / (float)k_ThreadGroupSizeY), + 1 + ); + + // Gather all pixels and fill in our histogram + kernel = compute.FindKernel("KVectorscopeGather"); + cmd.SetComputeBufferParam(compute, kernel, "_VectorscopeBuffer", m_Data); + cmd.SetComputeTextureParam(compute, kernel, "_Source", ShaderIDs.HalfResFinalCopy); + cmd.DispatchCompute(compute, kernel, + Mathf.CeilToInt(parameters.x / k_ThreadGroupSizeX), + Mathf.CeilToInt(parameters.y / k_ThreadGroupSizeY), + 1 + ); + + // Generate the histogram texture + var sheet = context.propertySheets.Get(context.resources.shaders.vectorscope); + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(size, size, exposure, 0f)); + sheet.properties.SetBuffer(ShaderIDs.VectorscopeBuffer, m_Data); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, output, sheet, 0); + + cmd.EndSample("Vectorscope"); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/VectorscopeMonitor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/VectorscopeMonitor.cs.meta new file mode 100644 index 0000000..5b15b30 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/VectorscopeMonitor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 279b45d82a92b4d4fa0b30d03486fa68 +timeCreated: 1499676436 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/WaveformMonitor.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/WaveformMonitor.cs new file mode 100644 index 0000000..46599b5 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/WaveformMonitor.cs @@ -0,0 +1,112 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This class holds settings for the Waveform monitor. + /// + [Serializable] + public sealed class WaveformMonitor : Monitor + { + /// + /// The exposure multiplier applied to the waveform values. + /// + public float exposure = 0.12f; + + /// + /// The height of the rendered waveform. + /// + /// + /// Waveforms display localized values so the width is dynamic and depends on the current + /// aspect ratio. + /// + public int height = 256; + + ComputeBuffer m_Data; + + const int k_ThreadGroupSize = 256; + const int k_ThreadGroupSizeX = 16; + const int k_ThreadGroupSizeY = 16; + + internal override void OnDisable() + { + base.OnDisable(); + + if (m_Data != null) + m_Data.Release(); + + m_Data = null; + } + + internal override bool NeedsHalfRes() + { + return true; + } + + + internal override bool ShaderResourcesAvailable(PostProcessRenderContext context) + { + return context.resources.computeShaders.waveform; + } + + internal override void Render(PostProcessRenderContext context) + { + // Waveform show localized data, so width depends on the aspect ratio + float ratio = (context.width / 2f) / (context.height / 2f); + int width = Mathf.FloorToInt(height * ratio); + + CheckOutput(width, height); + exposure = Mathf.Max(0f, exposure); + + int count = width * height; + if (m_Data == null) + { + m_Data = new ComputeBuffer(count, sizeof(uint) << 2); + } + else if (m_Data.count < count) + { + m_Data.Release(); + m_Data = new ComputeBuffer(count, sizeof(uint) << 2); + } + + var compute = context.resources.computeShaders.waveform; + var cmd = context.command; + cmd.BeginSample("Waveform"); + + var parameters = new Vector4( + width, + height, + RuntimeUtilities.isLinearColorSpace ? 1 : 0, + 0f + ); + + // Clear the buffer on every frame + int kernel = compute.FindKernel("KWaveformClear"); + cmd.SetComputeBufferParam(compute, kernel, "_WaveformBuffer", m_Data); + cmd.SetComputeVectorParam(compute, "_Params", parameters); + cmd.DispatchCompute(compute, kernel, Mathf.CeilToInt(width / (float)k_ThreadGroupSizeX), Mathf.CeilToInt(height / (float)k_ThreadGroupSizeY), 1); + + // For performance reasons, especially on consoles, we'll just downscale the source + // again to reduce VMEM stalls. Eventually the whole algorithm needs to be rewritten as + // it's currently pretty naive. + cmd.GetTemporaryRT(ShaderIDs.WaveformSource, width, height, 0, FilterMode.Bilinear, context.sourceFormat); + cmd.BlitFullscreenTriangle(ShaderIDs.HalfResFinalCopy, ShaderIDs.WaveformSource); + + // Gather all pixels and fill in our waveform + kernel = compute.FindKernel("KWaveformGather"); + cmd.SetComputeBufferParam(compute, kernel, "_WaveformBuffer", m_Data); + cmd.SetComputeTextureParam(compute, kernel, "_Source", ShaderIDs.WaveformSource); + cmd.SetComputeVectorParam(compute, "_Params", parameters); + cmd.DispatchCompute(compute, kernel, width, Mathf.CeilToInt(height / (float)k_ThreadGroupSize), 1); + cmd.ReleaseTemporaryRT(ShaderIDs.WaveformSource); + + // Generate the waveform texture + var sheet = context.propertySheets.Get(context.resources.shaders.waveform); + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(width, height, exposure, 0f)); + sheet.properties.SetBuffer(ShaderIDs.WaveformBuffer, m_Data); + cmd.BlitFullscreenTriangle(BuiltinRenderTextureType.None, output, sheet, 0); + + cmd.EndSample("Waveform"); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/WaveformMonitor.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/WaveformMonitor.cs.meta new file mode 100644 index 0000000..a5f61be --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Monitors/WaveformMonitor.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d579562c49280d84cb532cd67d19da5d +timeCreated: 1499676423 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/ParameterOverride.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/ParameterOverride.cs new file mode 100644 index 0000000..164be7c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/ParameterOverride.cs @@ -0,0 +1,534 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// The base abstract class for all parameter override types. + /// + /// + public abstract class ParameterOverride + { + /// + /// The override state of this parameter. + /// + public bool overrideState; + + internal abstract void Interp(ParameterOverride from, ParameterOverride to, float t); + + /// + /// Returns the computed hash code for this parameter. + /// + /// A computed hash code + public abstract int GetHash(); + + /// + /// Casts and returns the value stored in this parameter. + /// + /// The type to cast to + /// The value stored in this parameter + public T GetValue() + { + return ((ParameterOverride)this).value; + } + + /// + /// This method is called right after the parent has + /// been initialized. This is used in case you need to access fields or properties that + /// can't be accessed in the constructor of a + /// (ParameterOverride objects are generally declared and initialized in a + /// ). + /// + /// + protected internal virtual void OnEnable() + { + } + + /// + /// This method is called right before the parent + /// gets de-initialized. + /// + /// + protected internal virtual void OnDisable() + { + } + + internal abstract void SetValue(ParameterOverride parameter); + } + + /// + /// The base typed class for all parameter override types. + /// + /// The type of value to store in this ParameterOverride + /// + /// Due to limitations with the serialization system in Unity you shouldn't use this class + /// directly. Use one of the pre-flatten types (like or make your + /// own by extending this class. + /// + /// + /// This sample code shows how to make a custom parameter holding a float. + /// + /// [Serializable] + /// public sealed class FloatParameter : ParameterOverride<float> + /// { + /// public override void Interp(float from, float to, float t) + /// { + /// value = from + (to - from) * t; + /// } + /// } + /// + /// + [Serializable] + public class ParameterOverride : ParameterOverride + { + /// + /// The value stored in this parameter. + /// + public T value; + + /// + /// Creates a ParameterOverride with a default and + /// set to false. + /// + public ParameterOverride() + : this(default(T), false) + { + } + + /// + /// Creates a ParameterOverride with a given value and + /// set to false. + /// + /// The value to set this parameter to + public ParameterOverride(T value) + : this(value, false) + { + } + + /// + /// Creates a ParameterOverride with a given value and override state. + /// + /// The value to set this parameter to + /// The override state for this value + public ParameterOverride(T value, bool overrideState) + { + this.value = value; + this.overrideState = overrideState; + } + + internal override void Interp(ParameterOverride from, ParameterOverride to, float t) + { + // Note: this isn't completely safe but it'll do fine + Interp(from.GetValue(), to.GetValue(), t); + } + + /// + /// Interpolates between two values given an interpolation factor . + /// + /// The value to interpolate from + /// The value to interpolate to + /// An interpolation factor (generally in range [0,1]) + /// + /// By default this method does a "snap" interpolation, meaning it will return the value + /// if is higher than 0, + /// otherwise. + /// + public virtual void Interp(T from, T to, float t) + { + // Returns `to` if `dt > 0` by default so we don't have to write overrides for bools and + // enumerations. + value = t > 0f ? to : from; + } + + /// + /// Sets the value for this parameter to and mark the override state + /// to true. + /// + /// + public void Override(T x) + { + overrideState = true; + value = x; + } + + internal override void SetValue(ParameterOverride parameter) + { + value = parameter.GetValue(); + } + + /// + public override int GetHash() + { + unchecked + { + int hash = 17; + hash = hash * 23 + overrideState.GetHashCode(); + hash = hash * 23 + value.GetHashCode(); + return hash; + } + } + + /// + /// Implicit conversion between and its value type. + /// + /// The parameter to implicitly cast + public static implicit operator T(ParameterOverride prop) + { + return prop.value; + } + } + + // Bypassing the limited unity serialization system... + + /// + /// A that holds a float value. + /// + /// + /// The interpolation method for this parameter is the same as . + /// + [Serializable] + public sealed class FloatParameter : ParameterOverride + { + /// + public override void Interp(float from, float to, float t) + { + value = from + (to - from) * t; + } + } + + /// + /// A that holds a int value. + /// + /// + /// The interpolation method for this parameter is the same as + /// casted to int. + /// + [Serializable] + public sealed class IntParameter : ParameterOverride + { + /// + public override void Interp(int from, int to, float t) + { + // Int snapping interpolation. Don't use this for enums as they don't necessarily have + // contiguous values. Use the default interpolator instead (same as bool). + value = (int)(from + (to - from) * t); + } + } + + /// + /// A that holds a bool value. + /// + [Serializable] + public sealed class BoolParameter : ParameterOverride {} + + /// + /// A that holds a value. + /// + /// + /// The interpolation method for this parameter is the same as + /// for each channel. + /// + [Serializable] + public sealed class ColorParameter : ParameterOverride + { + /// + public override void Interp(Color from, Color to, float t) + { + // Lerping color values is a sensitive subject... We looked into lerping colors using + // HSV and LCH but they have some downsides that make them not work correctly in all + // situations, so we stick with RGB lerping for now, at least its behavior is + // predictable despite looking desaturated when `t ~= 0.5` and it's faster anyway. + value.r = from.r + (to.r - from.r) * t; + value.g = from.g + (to.g - from.g) * t; + value.b = from.b + (to.b - from.b) * t; + value.a = from.a + (to.a - from.a) * t; + } + + /// + /// Implicit conversion between and a . + /// + /// The parameter to implicitly cast + public static implicit operator Vector4(ColorParameter prop) + { + return prop.value; + } + } + + /// + /// A that holds a value. + /// + /// + /// The interpolation method for this parameter is the same as + /// for each axis. + /// + [Serializable] + public sealed class Vector2Parameter : ParameterOverride + { + /// + public override void Interp(Vector2 from, Vector2 to, float t) + { + value.x = from.x + (to.x - from.x) * t; + value.y = from.y + (to.y - from.y) * t; + } + + /// + /// Implicit conversion between and a . + /// + /// The parameter to implicitly cast + public static implicit operator Vector3(Vector2Parameter prop) + { + return prop.value; + } + + /// + /// Implicit conversion between and a . + /// + /// The parameter to implicitly cast + public static implicit operator Vector4(Vector2Parameter prop) + { + return prop.value; + } + } + + /// + /// A that holds a value. + /// + /// + /// The interpolation method for this parameter is the same as + /// for each axis. + /// + [Serializable] + public sealed class Vector3Parameter : ParameterOverride + { + /// + public override void Interp(Vector3 from, Vector3 to, float t) + { + value.x = from.x + (to.x - from.x) * t; + value.y = from.y + (to.y - from.y) * t; + value.z = from.z + (to.z - from.z) * t; + } + + /// + /// Implicit conversion between and a . + /// + /// The parameter to implicitly cast + public static implicit operator Vector2(Vector3Parameter prop) + { + return prop.value; + } + + /// + /// Implicit conversion between and a . + /// + /// The parameter to implicitly cast + public static implicit operator Vector4(Vector3Parameter prop) + { + return prop.value; + } + } + + /// + /// A that holds a value. + /// + /// + /// The interpolation method for this parameter is the same as + /// for each axis. + /// + [Serializable] + public sealed class Vector4Parameter : ParameterOverride + { + /// + public override void Interp(Vector4 from, Vector4 to, float t) + { + value.x = from.x + (to.x - from.x) * t; + value.y = from.y + (to.y - from.y) * t; + value.z = from.z + (to.z - from.z) * t; + value.w = from.w + (to.w - from.w) * t; + } + + /// + /// Implicit conversion between and a . + /// + /// The parameter to implicitly cast + public static implicit operator Vector2(Vector4Parameter prop) + { + return prop.value; + } + + /// + /// Implicit conversion between and a . + /// + /// The parameter to implicitly cast + public static implicit operator Vector3(Vector4Parameter prop) + { + return prop.value; + } + } + + /// + /// A that holds a value. + /// + /// + /// The interpolation method for this parameter is the same as + /// for each point on the curve. + /// + [Serializable] + public sealed class SplineParameter : ParameterOverride + { + /// + protected internal override void OnEnable() + { + if (value != null) + value.Cache(int.MinValue); + } + + internal override void SetValue(ParameterOverride parameter) + { + base.SetValue(parameter); + + if (value != null) + value.Cache(Time.renderedFrameCount); + } + + /// + public override void Interp(Spline from, Spline to, float t) + { + if (from == null || to == null) + { + base.Interp(from, to, t); + return; + } + + int frameCount = Time.renderedFrameCount; + from.Cache(frameCount); + to.Cache(frameCount); + + for (int i = 0; i < Spline.k_Precision; i++) + { + float a = from.cachedData[i]; + float b = to.cachedData[i]; + value.cachedData[i] = a + (b - a) * t; + } + } + } + + /// + /// A set of default textures to use as default values for . + /// + public enum TextureParameterDefault + { + /// + /// No texture, or null. + /// + None, + + /// + /// A black texture. + /// + Black, + + /// + /// A white texture. + /// + White, + + /// + /// A transparent texture. + /// + Transparent, + + /// + /// A 2D lookup table in strip format with width = height * height. + /// + Lut2D + } + + /// + /// A that holds a value. + /// + /// + /// Texture interpolation is done using a classic linear interpolation method. + /// + [Serializable] + public sealed class TextureParameter : ParameterOverride + { + public TextureParameterDefault defaultState = TextureParameterDefault.Black; + + /// + public override void Interp(Texture from, Texture to, float t) + { + // Both are null, do nothing + if (from == null && to == null) + { + value = null; + return; + } + + // Both aren't null we're ready to blend + if (from != null && to != null) + { + value = TextureLerper.instance.Lerp(from, to, t); + return; + } + + // One of them is null, blend to/from a default value is applicable + { + if (defaultState == TextureParameterDefault.Lut2D) + { + int size = from != null ? from.height : to.height; + Texture defaultTexture = RuntimeUtilities.GetLutStrip(size); + + if (from == null) from = defaultTexture; + if (to == null) to = defaultTexture; + } + + Color tgtColor; + + switch (defaultState) + { + case TextureParameterDefault.Black: + tgtColor = Color.black; + break; + case TextureParameterDefault.White: + tgtColor = Color.white; + break; + case TextureParameterDefault.Transparent: + tgtColor = Color.clear; + break; + case TextureParameterDefault.Lut2D: + { + // Find the current lut size + int size = from != null ? from.height : to.height; + Texture defaultTexture = RuntimeUtilities.GetLutStrip(size); + if (from == null) from = defaultTexture; + if (to == null) to = defaultTexture; + + // Fail safe in case the lut size is incorrect + if (from.width != to.width || from.height != to.height) + { + value = null; + return; + } + + value = TextureLerper.instance.Lerp(from, to, t); + // All done, return + return; + } + default: + // defaultState is none, so just interpolate the base and return + base.Interp(from, to, t); + return; + } + // If we made it this far, tgtColor contains the color we'll be lerping into (or out of) + if (from == null) + { + // color -> texture lerp, invert ratio + value = TextureLerper.instance.Lerp(to, tgtColor, 1f - t); + } + else + { + value = TextureLerper.instance.Lerp(from, tgtColor, t); + } + } + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/ParameterOverride.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/ParameterOverride.cs.meta new file mode 100644 index 0000000..00e09d6 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/ParameterOverride.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: bc5d8aaf03e613843a0ecaff18e0dfbd +timeCreated: 1487257630 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessBundle.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessBundle.cs new file mode 100644 index 0000000..93ad737 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessBundle.cs @@ -0,0 +1,66 @@ +using System; +using UnityEngine.Assertions; + +namespace UnityEngine.Rendering.PostProcessing +{ + public sealed class PostProcessBundle + { + public PostProcessAttribute attribute { get; private set; } + public PostProcessEffectSettings settings { get; private set; } + + internal PostProcessEffectRenderer renderer + { + get + { + if (m_Renderer == null) + { + Assert.IsNotNull(attribute.renderer); + var rendererType = attribute.renderer; + m_Renderer = (PostProcessEffectRenderer)Activator.CreateInstance(rendererType); + m_Renderer.SetSettings(settings); + m_Renderer.Init(); + } + + return m_Renderer; + } + } + + PostProcessEffectRenderer m_Renderer; + + internal PostProcessBundle(PostProcessEffectSettings settings) + { + // If settings is null, it means that at some point a null element has been added to + // the volume effect list or there was a deserialization error and a reference to + // the settings scriptableobject was lost + Assert.IsNotNull(settings); + this.settings = settings; + attribute = settings.GetType().GetAttribute(); + } + + internal void Release() + { + if (m_Renderer != null) + m_Renderer.Release(); + + RuntimeUtilities.Destroy(settings); + } + + internal void ResetHistory() + { + if (m_Renderer != null) + m_Renderer.ResetHistory(); + } + + internal T CastSettings() + where T : PostProcessEffectSettings + { + return (T)settings; + } + + internal T CastRenderer() + where T : PostProcessEffectRenderer + { + return (T)renderer; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessBundle.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessBundle.cs.meta new file mode 100644 index 0000000..b22a4a6 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessBundle.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 79092fbfc2fc7394aa0754682e3089f7 +timeCreated: 1493281307 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessDebug.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessDebug.cs new file mode 100644 index 0000000..9a532e2 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessDebug.cs @@ -0,0 +1,159 @@ +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This component holds a set of debugging utilities related to post-processing. + /// + /// + /// These utilities can be used at runtime to debug on device. + /// +#if UNITY_2018_3_OR_NEWER + [ExecuteAlways] +#else + [ExecuteInEditMode] +#endif + [AddComponentMenu("Rendering/Post-process Debug", 1002)] + public sealed class PostProcessDebug : MonoBehaviour + { + /// + /// A reference to a to debug. + /// + public PostProcessLayer postProcessLayer; + PostProcessLayer m_PreviousPostProcessLayer; + + /// + /// Holds settings for the light meter. + /// + public bool lightMeter; + + /// + /// Holds settings for the histogram. + /// + public bool histogram; + + /// + /// Holds settings for the waveform. + /// + public bool waveform; + + /// + /// Holds settings for the vectorscope. + /// + public bool vectorscope; + + /// + /// The currently set overlay. + /// + public DebugOverlay debugOverlay = DebugOverlay.None; + + Camera m_CurrentCamera; + CommandBuffer m_CmdAfterEverything; + + void OnEnable() + { + m_CmdAfterEverything = new CommandBuffer { name = "Post-processing Debug Overlay" }; + +#if UNITY_EDITOR + // Update is only called on object change when ExecuteInEditMode is set, but we need it + // to execute on every frame no matter what when not in play mode, so we'll use the + // editor update loop instead... + UnityEditor.EditorApplication.update += UpdateStates; +#endif + } + + void OnDisable() + { +#if UNITY_EDITOR + UnityEditor.EditorApplication.update -= UpdateStates; +#endif + + if (m_CurrentCamera != null) + m_CurrentCamera.RemoveCommandBuffer(CameraEvent.AfterImageEffects, m_CmdAfterEverything); + + m_CurrentCamera = null; + m_PreviousPostProcessLayer = null; + } + +#if !UNITY_EDITOR + void Update() + { + UpdateStates(); + } +#endif + + void Reset() + { + postProcessLayer = GetComponent(); + } + + void UpdateStates() + { + if (m_PreviousPostProcessLayer != postProcessLayer) + { + // Remove cmdbuffer from previously set camera + if (m_CurrentCamera != null) + { + m_CurrentCamera.RemoveCommandBuffer(CameraEvent.AfterImageEffects, m_CmdAfterEverything); + m_CurrentCamera = null; + } + + m_PreviousPostProcessLayer = postProcessLayer; + + // Add cmdbuffer to the currently set camera + if (postProcessLayer != null) + { + m_CurrentCamera = postProcessLayer.GetComponent(); + m_CurrentCamera.AddCommandBuffer(CameraEvent.AfterImageEffects, m_CmdAfterEverything); + } + } + + if (postProcessLayer == null || !postProcessLayer.enabled) + return; + + // Monitors + if (lightMeter) postProcessLayer.debugLayer.RequestMonitorPass(MonitorType.LightMeter); + if (histogram) postProcessLayer.debugLayer.RequestMonitorPass(MonitorType.Histogram); + if (waveform) postProcessLayer.debugLayer.RequestMonitorPass(MonitorType.Waveform); + if (vectorscope) postProcessLayer.debugLayer.RequestMonitorPass(MonitorType.Vectorscope); + + // Overlay + postProcessLayer.debugLayer.RequestDebugOverlay(debugOverlay); + } + + void OnPostRender() + { + m_CmdAfterEverything.Clear(); + + if (postProcessLayer == null || !postProcessLayer.enabled || !postProcessLayer.debugLayer.debugOverlayActive) + return; + + m_CmdAfterEverything.Blit(postProcessLayer.debugLayer.debugOverlayTarget, BuiltinRenderTextureType.CameraTarget); + } + + void OnGUI() + { + if (postProcessLayer == null || !postProcessLayer.enabled) + return; + + // Some SRPs don't unbind render targets and leave them as-is + RenderTexture.active = null; + + var rect = new Rect(5, 5, 0, 0); + var debugLayer = postProcessLayer.debugLayer; + DrawMonitor(ref rect, debugLayer.lightMeter, lightMeter); + DrawMonitor(ref rect, debugLayer.histogram, histogram); + DrawMonitor(ref rect, debugLayer.waveform, waveform); + DrawMonitor(ref rect, debugLayer.vectorscope, vectorscope); + } + + void DrawMonitor(ref Rect rect, Monitor monitor, bool enabled) + { + if (!enabled || monitor.output == null) + return; + + rect.width = monitor.output.width; + rect.height = monitor.output.height; + GUI.DrawTexture(rect, monitor.output); + rect.x += monitor.output.width + 5f; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessDebug.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessDebug.cs.meta new file mode 100644 index 0000000..83ea241 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessDebug.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c520d478f3d2445429bd7ac9c92b03a3 +timeCreated: 1499764102 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {fileID: 2800000, guid: 5f51e0b22aa8cb84b9f422576ce87ff9, type: 3} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessDebugLayer.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessDebugLayer.cs new file mode 100644 index 0000000..3c813ba --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessDebugLayer.cs @@ -0,0 +1,364 @@ +using System; +using System.Collections.Generic; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// A list of debug overlays. + /// + public enum DebugOverlay + { + /// + /// No overlay. + /// + None, + + /// + /// Displays the depth buffer. + /// + Depth, + + /// + /// Displays the screen-space normals buffer. + /// + Normals, + + /// + /// Displays the screen-space motion vectors. + /// + MotionVectors, + + /// + /// Dims the screen and displays NaN and Inf pixels with a bright pink color. + /// + NANTracker, + + /// + /// A color blindness simulator. + /// + ColorBlindnessSimulation, + + // Menu item separator for the inspector + _, + + /// + /// Displays the raw ambient occlusion map. + /// + AmbientOcclusion, + + /// + /// Displays the bloom buffer. + /// + BloomBuffer, + + /// + /// Displays the thresholded buffer used to generate bloom. + /// + BloomThreshold, + + /// + /// Displays depth of field helpers. + /// + DepthOfField + } + + /// + /// A list of color blindness types. + /// + public enum ColorBlindnessType + { + /// + /// Deuteranopia (red-green color blindness). + /// + Deuteranopia, + + /// + /// Protanopia (red-green color blindness). + /// + Protanopia, + + /// + /// Tritanopia (blue-yellow color blindness). + /// + Tritanopia + } + + /// + /// This class centralizes rendering commands for debug modes. + /// + [Serializable] + public sealed class PostProcessDebugLayer + { + /// + /// Light meter renderer. + /// + public LightMeterMonitor lightMeter; + + /// + /// Histogram renderer. + /// + public HistogramMonitor histogram; + + /// + /// Waveform renderer. + /// + public WaveformMonitor waveform; + + /// + /// Vectorscope monitor. + /// + public VectorscopeMonitor vectorscope; + + Dictionary m_Monitors; + + // Current frame size + int frameWidth; + int frameHeight; + + /// + /// The render target used to render debug overlays in. + /// + public RenderTexture debugOverlayTarget { get; private set; } + + /// + /// Returns true if the frame that was just drawn had an active debug overlay. + /// + public bool debugOverlayActive { get; private set; } + + /// + /// The debug overlay requested for the current frame. It is reset to None once the + /// frame has finished rendering. + /// + public DebugOverlay debugOverlay { get; private set; } + + /// + /// Debug overlay settings wrapper. + /// + [Serializable] + public class OverlaySettings + { + /// + /// Should we remap depth to a linear range? + /// + public bool linearDepth = false; + + /// + /// The intensity of motion vector colors. + /// + [Range(0f, 16f)] + public float motionColorIntensity = 4f; + + /// + /// The size of the motion vector grid. + /// + [Range(4, 128)] + public int motionGridSize = 64; + + /// + /// The color blindness type to simulate. + /// + public ColorBlindnessType colorBlindnessType = ColorBlindnessType.Deuteranopia; + + /// + /// The strength of the selected color blindness type. + /// + [Range(0f, 1f)] + public float colorBlindnessStrength = 1f; + } + + /// + /// Debug overlay settings. + /// + public OverlaySettings overlaySettings; + + internal void OnEnable() + { + RuntimeUtilities.CreateIfNull(ref lightMeter); + RuntimeUtilities.CreateIfNull(ref histogram); + RuntimeUtilities.CreateIfNull(ref waveform); + RuntimeUtilities.CreateIfNull(ref vectorscope); + RuntimeUtilities.CreateIfNull(ref overlaySettings); + + m_Monitors = new Dictionary + { + { MonitorType.LightMeter, lightMeter }, + { MonitorType.Histogram, histogram }, + { MonitorType.Waveform, waveform }, + { MonitorType.Vectorscope, vectorscope } + }; + + foreach (var kvp in m_Monitors) + kvp.Value.OnEnable(); + } + + internal void OnDisable() + { + foreach (var kvp in m_Monitors) + kvp.Value.OnDisable(); + + DestroyDebugOverlayTarget(); + } + + void DestroyDebugOverlayTarget() + { + RuntimeUtilities.Destroy(debugOverlayTarget); + debugOverlayTarget = null; + } + + /// + /// Requests the drawing of a monitor for the current frame. + /// + /// The monitor to request + public void RequestMonitorPass(MonitorType monitor) + { + m_Monitors[monitor].requested = true; + } + + /// + /// Requests the drawing of a debug overlay for the current frame. + /// + /// The debug overlay to request + public void RequestDebugOverlay(DebugOverlay mode) + { + debugOverlay = mode; + } + + // Sets the current frame size - used to make sure the debug overlay target is always the + // correct size - mostly useful in the editor as the user can easily resize the gameview. + internal void SetFrameSize(int width, int height) + { + frameWidth = width; + frameHeight = height; + debugOverlayActive = false; + } + + /// + /// Blit a source render target to the debug overlay target. + /// + /// The command buffer to send render commands to + /// The source target + /// The property sheet to use for the blit + /// The pass to use for the property sheet + public void PushDebugOverlay(CommandBuffer cmd, RenderTargetIdentifier source, PropertySheet sheet, int pass) + { + if (debugOverlayTarget == null || !debugOverlayTarget.IsCreated() || debugOverlayTarget.width != frameWidth || debugOverlayTarget.height != frameHeight) + { + RuntimeUtilities.Destroy(debugOverlayTarget); + + debugOverlayTarget = new RenderTexture(frameWidth, frameHeight, 0, RenderTextureFormat.ARGB32) + { + name = "Debug Overlay Target", + anisoLevel = 1, + filterMode = FilterMode.Bilinear, + wrapMode = TextureWrapMode.Clamp, + hideFlags = HideFlags.HideAndDontSave + }; + debugOverlayTarget.Create(); + } + + cmd.BlitFullscreenTriangle(source, debugOverlayTarget, sheet, pass); + debugOverlayActive = true; + } + + internal DepthTextureMode GetCameraFlags() + { + if (debugOverlay == DebugOverlay.Depth) + return DepthTextureMode.Depth; + + if (debugOverlay == DebugOverlay.Normals) + return DepthTextureMode.DepthNormals; + + if (debugOverlay == DebugOverlay.MotionVectors) + return DepthTextureMode.MotionVectors | DepthTextureMode.Depth; + + return DepthTextureMode.None; + } + + internal void RenderMonitors(PostProcessRenderContext context) + { + // Monitors + bool anyActive = false; + bool needsHalfRes = false; + + foreach (var kvp in m_Monitors) + { + bool active = kvp.Value.IsRequestedAndSupported(context); + anyActive |= active; + needsHalfRes |= active && kvp.Value.NeedsHalfRes(); + } + + if (!anyActive) + return; + + var cmd = context.command; + cmd.BeginSample("Monitors"); + + if (needsHalfRes) + { + cmd.GetTemporaryRT(ShaderIDs.HalfResFinalCopy, context.width / 2, context.height / 2, 0, FilterMode.Bilinear, context.sourceFormat); + cmd.Blit(context.destination, ShaderIDs.HalfResFinalCopy); + } + + foreach (var kvp in m_Monitors) + { + var monitor = kvp.Value; + + if (monitor.requested) + monitor.Render(context); + } + + if (needsHalfRes) + cmd.ReleaseTemporaryRT(ShaderIDs.HalfResFinalCopy); + + cmd.EndSample("Monitors"); + } + + internal void RenderSpecialOverlays(PostProcessRenderContext context) + { + if (debugOverlay == DebugOverlay.Depth) + { + var sheet = context.propertySheets.Get(context.resources.shaders.debugOverlays); + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(overlaySettings.linearDepth ? 1f : 0f, 0f, 0f, 0f)); + PushDebugOverlay(context.command, BuiltinRenderTextureType.None, sheet, 0); + } + else if (debugOverlay == DebugOverlay.Normals) + { + var sheet = context.propertySheets.Get(context.resources.shaders.debugOverlays); + sheet.ClearKeywords(); + + if (context.camera.actualRenderingPath == RenderingPath.DeferredLighting) + sheet.EnableKeyword("SOURCE_GBUFFER"); + + PushDebugOverlay(context.command, BuiltinRenderTextureType.None, sheet, 1); + } + else if (debugOverlay == DebugOverlay.MotionVectors) + { + var sheet = context.propertySheets.Get(context.resources.shaders.debugOverlays); + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(overlaySettings.motionColorIntensity, overlaySettings.motionGridSize, 0f, 0f)); + PushDebugOverlay(context.command, context.source, sheet, 2); + } + else if (debugOverlay == DebugOverlay.NANTracker) + { + var sheet = context.propertySheets.Get(context.resources.shaders.debugOverlays); + PushDebugOverlay(context.command, context.source, sheet, 3); + } + else if (debugOverlay == DebugOverlay.ColorBlindnessSimulation) + { + var sheet = context.propertySheets.Get(context.resources.shaders.debugOverlays); + sheet.properties.SetVector(ShaderIDs.Params, new Vector4(overlaySettings.colorBlindnessStrength, 0f, 0f, 0f)); + PushDebugOverlay(context.command, context.source, sheet, 4 + (int)overlaySettings.colorBlindnessType); + } + } + + internal void EndFrame() + { + foreach (var kvp in m_Monitors) + kvp.Value.requested = false; + + if (!debugOverlayActive) + DestroyDebugOverlayTarget(); + + debugOverlay = DebugOverlay.None; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessDebugLayer.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessDebugLayer.cs.meta new file mode 100644 index 0000000..4d04343 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessDebugLayer.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 314a03e1d67d9fb4b85926a765017e02 +timeCreated: 1499676807 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessEffectRenderer.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessEffectRenderer.cs new file mode 100644 index 0000000..9a5b293 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessEffectRenderer.cs @@ -0,0 +1,78 @@ +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// The base abstract class for all effect renderer types. If you're writing your own effect you + /// should rather use . + /// + /// + public abstract class PostProcessEffectRenderer + { + /// + /// This member is set to true when is + /// called by the user to reset temporal effects and other history-based effects. + /// + protected bool m_ResetHistory = true; + + /// + /// Called when the renderer is created and its associated settings have been set. + /// + /// + public virtual void Init() + { + } + + /// + /// Override this method if your renderer needs access to any of the buffers defined in + /// . + /// + /// The currently set depth texture modes + /// + public virtual DepthTextureMode GetCameraFlags() + { + return DepthTextureMode.None; + } + + /// + /// Resets the history state for this renderer. This is automatically called when + /// is called by the user. + /// + public virtual void ResetHistory() + { + m_ResetHistory = true; + } + + /// + /// Override this method to release any resource allocated by your renderer. + /// + public virtual void Release() + { + ResetHistory(); + } + + /// + /// The render method called by when the effect is rendered. + /// + /// A context object + public abstract void Render(PostProcessRenderContext context); + + internal abstract void SetSettings(PostProcessEffectSettings settings); + } + + /// + /// The base abstract class for all effect renderer types. + /// + /// The associated type of settings for this renderer + public abstract class PostProcessEffectRenderer : PostProcessEffectRenderer + where T : PostProcessEffectSettings + { + /// + /// The current state of the effect settings associated with this renderer. + /// + public T settings { get; internal set; } + + internal override void SetSettings(PostProcessEffectSettings settings) + { + this.settings = (T)settings; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessEffectRenderer.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessEffectRenderer.cs.meta new file mode 100644 index 0000000..cc41dbd --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessEffectRenderer.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 5cfe6169b379ff84eb9796502a1a144d +timeCreated: 1488642315 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessEffectSettings.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessEffectSettings.cs new file mode 100644 index 0000000..2b86ccf --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessEffectSettings.cs @@ -0,0 +1,121 @@ +using System; +using System.Collections.ObjectModel; +using System.Reflection; +using System.Linq; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// The base class for all post-processing effect settings. Any + /// members found in this class will be automatically handled and interpolated by the volume + /// framework. + /// + /// + /// + /// [Serializable] + /// [PostProcess(typeof(ExampleRenderer), "Custom/ExampleEffect")] + /// public sealed class ExampleEffect : PostProcessEffectSettings + /// { + /// [Range(0f, 1f), Tooltip("Effect intensity.")] + /// public FloatParameter intensity = new FloatParameter { value = 0f }; + /// + /// public override bool IsEnabledAndSupported(PostProcessRenderContext context) + /// { + /// return enabled.value + /// && intensity.value > 0f; // Only render the effect if intensity is greater than 0 + /// } + /// } + /// + /// + [Serializable] + public class PostProcessEffectSettings : ScriptableObject + { + /// + /// The active state of the set of parameter defined in this class. + /// + /// + public bool active = true; + + /// + /// The true state of the effect override in the stack. Setting this to false will + /// disable rendering for this effect assuming a volume with a higher priority doesn't + /// override it to true. + /// + public BoolParameter enabled = new BoolParameter { overrideState = true, value = false }; + + internal ReadOnlyCollection parameters; + + void OnEnable() + { + // Automatically grab all fields of type ParameterOverride for this instance + parameters = GetType() + .GetFields(BindingFlags.Public | BindingFlags.Instance) + .Where(t => t.FieldType.IsSubclassOf(typeof(ParameterOverride))) + .OrderBy(t => t.MetadataToken) // Guaranteed order + .Select(t => (ParameterOverride)t.GetValue(this)) + .ToList() + .AsReadOnly(); + + foreach (var parameter in parameters) + parameter.OnEnable(); + } + + void OnDisable() + { + if (parameters == null) + return; + + foreach (var parameter in parameters) + parameter.OnDisable(); + } + + /// + /// Sets all the overrides for this effect to a given value. + /// + /// The value to set the override states to + /// If false, the field will also + /// be set to the given value. + public void SetAllOverridesTo(bool state, bool excludeEnabled = true) + { + foreach (var prop in parameters) + { + if (excludeEnabled && prop == enabled) + continue; + + prop.overrideState = state; + } + } + + /// + /// Returns true if the effect is currently enabled and supported. + /// + /// The current post-processing render context + /// true if the effect is currently enabled and supported + public virtual bool IsEnabledAndSupported(PostProcessRenderContext context) + { + return enabled.value; + } + + /// + /// Returns the computed hash code for this parameter. + /// + /// A computed hash code + public int GetHash() + { + // Custom hashing function used to compare the state of settings (it's not meant to be + // unique but to be a quick way to check if two setting sets have the same state or not). + // Hash collision rate should be pretty low. + unchecked + { + //return parameters.Aggregate(17, (i, p) => i * 23 + p.GetHash()); + + int hash = 17; + + foreach (var p in parameters) + hash = hash * 23 + p.GetHash(); + + return hash; + } + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessEffectSettings.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessEffectSettings.cs.meta new file mode 100644 index 0000000..4e2b545 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessEffectSettings.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2df5c9d441da8704c8eab449a2f79d85 +timeCreated: 1487259888 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessEvent.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessEvent.cs new file mode 100644 index 0000000..22ec277 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessEvent.cs @@ -0,0 +1,42 @@ +using System.Collections.Generic; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Injection points for custom effects. + /// + public enum PostProcessEvent + { + /// + /// Effects at this injection points will execute before transparent objects are rendered. + /// + BeforeTransparent = 0, + + /// + /// Effects at this injection points will execute after temporal anti-aliasing and before + /// builtin effects are rendered. + /// + BeforeStack = 1, + + /// + /// Effects at this injection points will execute after builtin effects have been rendered + /// and before the final pass that does FXAA and applies dithering. + /// + AfterStack = 2, + } + + // Box free comparer for our `PostProcessEvent` enum, else the runtime will box the type when + // used as a key in a dictionary, thus leading to garbage generation... *sigh* + internal struct PostProcessEventComparer : IEqualityComparer + { + public bool Equals(PostProcessEvent x, PostProcessEvent y) + { + return x == y; + } + + public int GetHashCode(PostProcessEvent obj) + { + return (int)obj; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessEvent.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessEvent.cs.meta new file mode 100644 index 0000000..f2fdd0b --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessEvent.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e4732e1210a3d39459db8b431f866659 +timeCreated: 1492527856 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessLayer.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessLayer.cs new file mode 100644 index 0000000..68c044b --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessLayer.cs @@ -0,0 +1,1295 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using UnityEngine.Assertions; + +namespace UnityEngine.Rendering.PostProcessing +{ +#if UNITY_2017_2_OR_NEWER + using XRSettings = UnityEngine.XR.XRSettings; +#elif UNITY_5_6_OR_NEWER + using XRSettings = UnityEngine.VR.VRSettings; +#endif + + /// + /// This is the component responsible for rendering post-processing effects. It must be put on + /// every camera you want post-processing to be applied to. + /// +#if UNITY_2018_3_OR_NEWER + [ExecuteAlways] +#else + [ExecuteInEditMode] +#endif + [DisallowMultipleComponent, ImageEffectAllowedInSceneView] + [AddComponentMenu("Rendering/Post-process Layer", 1000)] + [RequireComponent(typeof(Camera))] + public sealed class PostProcessLayer : MonoBehaviour + { + /// + /// Builtin anti-aliasing methods. + /// + public enum Antialiasing + { + /// + /// No anti-aliasing. + /// + None, + + /// + /// Fast Approximate Anti-aliasing (FXAA). Fast but low quality. + /// + FastApproximateAntialiasing, + + /// + /// Subpixel Morphological Anti-aliasing (SMAA). Slower but higher quality than FXAA. + /// + SubpixelMorphologicalAntialiasing, + + /// + /// Temporal Anti-aliasing (TAA). As fast as SMAA but generally higher quality. Because + /// of it's temporal nature, it can introduce ghosting artifacts on fast moving objects + /// in highly contrasted areas. + /// + TemporalAntialiasing + } + + /// + /// This is transform that will be drive the volume blending feature. In some cases you may + /// want to use a transform other than the camera, e.g. for a top down game you'll want the + /// player character to drive the blending instead of the actual camera transform. + /// Setting this field to null will disable local volumes for this layer (global ones + /// will still work). + /// + public Transform volumeTrigger; + + /// + /// A mask of layers to consider for volume blending. It allows you to do volume filtering + /// and is especially useful to optimize volume traversal. You should always have your + /// volumes in dedicated layers instead of the default one for best performances. + /// + public LayerMask volumeLayer; + + /// + /// If true, it will kill any invalid / NaN pixel and replace it with a black color + /// before post-processing is applied. It's generally a good idea to keep this enabled to + /// avoid post-processing artifacts cause by broken data in the scene. + /// + public bool stopNaNPropagation = true; + public bool finalBlitToCameraTarget = true; + + /// + /// The anti-aliasing method to use for this camera. By default it's set to None. + /// + public Antialiasing antialiasingMode = Antialiasing.None; + + /// + /// Temporal Anti-aliasing settings for this camera. + /// + public TemporalAntialiasing temporalAntialiasing; + + /// + /// Subpixel Morphological Anti-aliasing settings for this camera. + /// + public SubpixelMorphologicalAntialiasing subpixelMorphologicalAntialiasing; + + /// + /// Fast Approximate Anti-aliasing settings for this camera. + /// + public FastApproximateAntialiasing fastApproximateAntialiasing; + + /// + /// Fog settings for this camera. + /// + public Fog fog; + + Dithering dithering; + + /// + /// The debug layer is reponsible for rendering debugging information on the screen. It will + /// only be used if this layer is referenced in a component. + /// + /// + public PostProcessDebugLayer debugLayer; + + [SerializeField] + PostProcessResources m_Resources; + + // UI states +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + [SerializeField] + bool m_ShowToolkit; + +#if UNITY_2017_1_OR_NEWER + [UnityEngine.Scripting.Preserve] +#endif + [SerializeField] + bool m_ShowCustomSorter; + + /// + /// If true, it will stop applying post-processing effects just before color grading + /// is applied. This is used internally to export to EXR without color grading. + /// + public bool breakBeforeColorGrading = false; + + // Pre-ordered custom user effects + // These are automatically populated and made to work properly with the serialization + // system AND the editor. Modify at your own risk. + [Serializable] + public sealed class SerializedBundleRef + { + // We can't serialize Type so use assemblyQualifiedName instead, we only need this at + // init time anyway so it's fine + public string assemblyQualifiedName; + + // Not serialized, is set/reset when deserialization kicks in + public PostProcessBundle bundle; + } + + [SerializeField] + List m_BeforeTransparentBundles; + + [SerializeField] + List m_BeforeStackBundles; + + [SerializeField] + List m_AfterStackBundles; + + public Dictionary> sortedBundles { get; private set; } + + // We need to keep track of bundle initialization because for some obscure reason, on + // assembly reload a MonoBehavior's Editor OnEnable will be called BEFORE the MonoBehavior's + // own OnEnable... So we'll use it to pre-init bundles if the layer inspector is opened and + // the component hasn't been enabled yet. + public bool haveBundlesBeenInited { get; private set; } + + // Settings/Renderer bundles mapped to settings types + Dictionary m_Bundles; + + PropertySheetFactory m_PropertySheetFactory; + CommandBuffer m_LegacyCmdBufferBeforeReflections; + CommandBuffer m_LegacyCmdBufferBeforeLighting; + CommandBuffer m_LegacyCmdBufferOpaque; + CommandBuffer m_LegacyCmdBuffer; + Camera m_Camera; + PostProcessRenderContext m_CurrentContext; + LogHistogram m_LogHistogram; + + bool m_SettingsUpdateNeeded = true; + bool m_IsRenderingInSceneView = false; + + TargetPool m_TargetPool; + + bool m_NaNKilled = false; + + // Recycled list - used to reduce GC stress when gathering active effects in a bundle list + // on each frame + readonly List m_ActiveEffects = new List(); + readonly List m_Targets = new List(); + + void OnEnable() + { + Init(null); + + if (!haveBundlesBeenInited) + InitBundles(); + + m_LogHistogram = new LogHistogram(); + m_PropertySheetFactory = new PropertySheetFactory(); + m_TargetPool = new TargetPool(); + + debugLayer.OnEnable(); + + if (RuntimeUtilities.scriptableRenderPipelineActive) + return; + + InitLegacy(); + } + + void InitLegacy() + { + m_LegacyCmdBufferBeforeReflections = new CommandBuffer { name = "Deferred Ambient Occlusion" }; + m_LegacyCmdBufferBeforeLighting = new CommandBuffer { name = "Deferred Ambient Occlusion" }; + m_LegacyCmdBufferOpaque = new CommandBuffer { name = "Opaque Only Post-processing" }; + m_LegacyCmdBuffer = new CommandBuffer { name = "Post-processing" }; + + m_Camera = GetComponent(); + +#if !UNITY_2019_1_OR_NEWER // OnRenderImage (below) implies forceIntoRenderTexture + m_Camera.forceIntoRenderTexture = true; // Needed when running Forward / LDR / No MSAA +#endif + + m_Camera.AddCommandBuffer(CameraEvent.BeforeReflections, m_LegacyCmdBufferBeforeReflections); + m_Camera.AddCommandBuffer(CameraEvent.BeforeLighting, m_LegacyCmdBufferBeforeLighting); + m_Camera.AddCommandBuffer(CameraEvent.BeforeImageEffectsOpaque, m_LegacyCmdBufferOpaque); + m_Camera.AddCommandBuffer(CameraEvent.BeforeImageEffects, m_LegacyCmdBuffer); + + // Internal context used if no SRP is set + m_CurrentContext = new PostProcessRenderContext(); + } + + +#if UNITY_2019_1_OR_NEWER + // We always use a CommandBuffer to blit to the final render target + // OnRenderImage is used only to avoid the automatic blit from the RenderTexture of Camera.forceIntoRenderTexture to the actual target + [ImageEffectUsesCommandBuffer] + void OnRenderImage(RenderTexture src, RenderTexture dst) + { + if (finalBlitToCameraTarget) + RenderTexture.active = dst; // silence warning + else + Graphics.Blit(src, dst); + } +#endif + + /// + /// Initializes this layer. If you create the layer via scripting you should always call + /// this method. + /// + /// A reference to the resource asset + public void Init(PostProcessResources resources) + { + if (resources != null) m_Resources = resources; + + RuntimeUtilities.CreateIfNull(ref temporalAntialiasing); + RuntimeUtilities.CreateIfNull(ref subpixelMorphologicalAntialiasing); + RuntimeUtilities.CreateIfNull(ref fastApproximateAntialiasing); + RuntimeUtilities.CreateIfNull(ref dithering); + RuntimeUtilities.CreateIfNull(ref fog); + RuntimeUtilities.CreateIfNull(ref debugLayer); + } + + public void InitBundles() + { + if (haveBundlesBeenInited) + return; + + // Create these lists only once, the serialization system will take over after that + RuntimeUtilities.CreateIfNull(ref m_BeforeTransparentBundles); + RuntimeUtilities.CreateIfNull(ref m_BeforeStackBundles); + RuntimeUtilities.CreateIfNull(ref m_AfterStackBundles); + + // Create a bundle for each effect type + m_Bundles = new Dictionary(); + + foreach (var type in PostProcessManager.instance.settingsTypes.Keys) + { + var settings = (PostProcessEffectSettings)ScriptableObject.CreateInstance(type); + var bundle = new PostProcessBundle(settings); + m_Bundles.Add(type, bundle); + } + + // Update sorted lists with newly added or removed effects in the assemblies + UpdateBundleSortList(m_BeforeTransparentBundles, PostProcessEvent.BeforeTransparent); + UpdateBundleSortList(m_BeforeStackBundles, PostProcessEvent.BeforeStack); + UpdateBundleSortList(m_AfterStackBundles, PostProcessEvent.AfterStack); + + // Push all sorted lists in a dictionary for easier access + sortedBundles = new Dictionary>(new PostProcessEventComparer()) + { + { PostProcessEvent.BeforeTransparent, m_BeforeTransparentBundles }, + { PostProcessEvent.BeforeStack, m_BeforeStackBundles }, + { PostProcessEvent.AfterStack, m_AfterStackBundles } + }; + + // Done + haveBundlesBeenInited = true; + } + + void UpdateBundleSortList(List sortedList, PostProcessEvent evt) + { + // First get all effects associated with the injection point + var effects = m_Bundles.Where(kvp => kvp.Value.attribute.eventType == evt && !kvp.Value.attribute.builtinEffect) + .Select(kvp => kvp.Value) + .ToList(); + + // Remove types that don't exist anymore + sortedList.RemoveAll(x => + { + string searchStr = x.assemblyQualifiedName; + return !effects.Exists(b => b.settings.GetType().AssemblyQualifiedName == searchStr); + }); + + // Add new ones + foreach (var effect in effects) + { + string typeName = effect.settings.GetType().AssemblyQualifiedName; + + if (!sortedList.Exists(b => b.assemblyQualifiedName == typeName)) + { + var sbr = new SerializedBundleRef { assemblyQualifiedName = typeName }; + sortedList.Add(sbr); + } + } + + // Link internal references + foreach (var effect in sortedList) + { + string typeName = effect.assemblyQualifiedName; + var bundle = effects.Find(b => b.settings.GetType().AssemblyQualifiedName == typeName); + effect.bundle = bundle; + } + } + + void OnDisable() + { + // Have to check for null camera in case the user is doing back'n'forth between SRP and + // legacy + if (m_Camera != null) + { + if (m_LegacyCmdBufferBeforeReflections != null) + m_Camera.RemoveCommandBuffer(CameraEvent.BeforeReflections, m_LegacyCmdBufferBeforeReflections); + if (m_LegacyCmdBufferBeforeLighting != null) + m_Camera.RemoveCommandBuffer(CameraEvent.BeforeLighting, m_LegacyCmdBufferBeforeLighting); + if (m_LegacyCmdBufferOpaque != null) + m_Camera.RemoveCommandBuffer(CameraEvent.BeforeImageEffectsOpaque, m_LegacyCmdBufferOpaque); + if (m_LegacyCmdBuffer != null) + m_Camera.RemoveCommandBuffer(CameraEvent.BeforeImageEffects, m_LegacyCmdBuffer); + } + + temporalAntialiasing.Release(); + m_LogHistogram.Release(); + + foreach (var bundle in m_Bundles.Values) + bundle.Release(); + + m_Bundles.Clear(); + m_PropertySheetFactory.Release(); + + if (debugLayer != null) + debugLayer.OnDisable(); + + // Might be an issue if several layers are blending in the same frame... + TextureLerper.instance.Clear(); + + haveBundlesBeenInited = false; + } + + // Called everytime the user resets the component from the inspector and more importantly + // the first time it's added to a GameObject. As we don't have added/removed event for + // components, this will do fine + void Reset() + { + volumeTrigger = transform; + } + + void OnPreCull() + { + // Unused in scriptable render pipelines + if (RuntimeUtilities.scriptableRenderPipelineActive) + return; + + if (m_Camera == null || m_CurrentContext == null) + InitLegacy(); + + // Resets the projection matrix from previous frame in case TAA was enabled. + // We also need to force reset the non-jittered projection matrix here as it's not done + // when ResetProjectionMatrix() is called and will break transparent rendering if TAA + // is switched off and the FOV or any other camera property changes. + +#if UNITY_2018_2_OR_NEWER + if (!m_Camera.usePhysicalProperties) +#endif + m_Camera.ResetProjectionMatrix(); + m_Camera.nonJitteredProjectionMatrix = m_Camera.projectionMatrix; + +#if !UNITY_SWITCH + if (m_Camera.stereoEnabled) + { + m_Camera.ResetStereoProjectionMatrices(); + Shader.SetGlobalFloat(ShaderIDs.RenderViewportScaleFactor, XRSettings.renderViewportScale); + } + else +#endif + { + Shader.SetGlobalFloat(ShaderIDs.RenderViewportScaleFactor, 1.0f); + } + + BuildCommandBuffers(); + } + + void OnPreRender() + { + // Unused in scriptable render pipelines + // Only needed for multi-pass stereo right eye + if (RuntimeUtilities.scriptableRenderPipelineActive || + (m_Camera.stereoActiveEye != Camera.MonoOrStereoscopicEye.Right)) + return; + + BuildCommandBuffers(); + } + + static bool RequiresInitialBlit(Camera camera, PostProcessRenderContext context) + { +#if UNITY_2019_1_OR_NEWER + if (camera.allowMSAA) // this shouldn't be necessary, but until re-tested on older Unity versions just do the blits + return true; + if (RuntimeUtilities.scriptableRenderPipelineActive) // Should never be called from SRP + return true; + + return false; +#else + return true; +#endif + } + + void UpdateSrcDstForOpaqueOnly(ref int src, ref int dst, PostProcessRenderContext context, RenderTargetIdentifier cameraTarget, int opaqueOnlyEffectsRemaining) + { + if (src > -1) + context.command.ReleaseTemporaryRT(src); + + context.source = context.destination; + src = dst; + + if (opaqueOnlyEffectsRemaining == 1) + { + context.destination = cameraTarget; + } + else + { + dst = m_TargetPool.Get(); + context.destination = dst; + context.GetScreenSpaceTemporaryRT(context.command, dst, 0, context.sourceFormat); + } + } + + void BuildCommandBuffers() + { + var context = m_CurrentContext; + var sourceFormat = m_Camera.allowHDR ? RuntimeUtilities.defaultHDRRenderTextureFormat : RenderTextureFormat.Default; + + if (!RuntimeUtilities.isFloatingPointFormat(sourceFormat)) + m_NaNKilled = true; + + context.Reset(); + context.camera = m_Camera; + context.sourceFormat = sourceFormat; + + // TODO: Investigate retaining command buffers on XR multi-pass right eye + m_LegacyCmdBufferBeforeReflections.Clear(); + m_LegacyCmdBufferBeforeLighting.Clear(); + m_LegacyCmdBufferOpaque.Clear(); + m_LegacyCmdBuffer.Clear(); + + SetupContext(context); + + context.command = m_LegacyCmdBufferOpaque; + TextureLerper.instance.BeginFrame(context); + UpdateVolumeSystem(context.camera, context.command); + + // Lighting & opaque-only effects + var aoBundle = GetBundle(); + var aoSettings = aoBundle.CastSettings(); + var aoRenderer = aoBundle.CastRenderer(); + + bool aoSupported = aoSettings.IsEnabledAndSupported(context); + bool aoAmbientOnly = aoRenderer.IsAmbientOnly(context); + bool isAmbientOcclusionDeferred = aoSupported && aoAmbientOnly; + bool isAmbientOcclusionOpaque = aoSupported && !aoAmbientOnly; + + var ssrBundle = GetBundle(); + var ssrSettings = ssrBundle.settings; + var ssrRenderer = ssrBundle.renderer; + bool isScreenSpaceReflectionsActive = ssrSettings.IsEnabledAndSupported(context); + + // Ambient-only AO is a special case and has to be done in separate command buffers + if (isAmbientOcclusionDeferred) + { + var ao = aoRenderer.Get(); + + // Render as soon as possible - should be done async in SRPs when available + context.command = m_LegacyCmdBufferBeforeReflections; + ao.RenderAmbientOnly(context); + + // Composite with GBuffer right before the lighting pass + context.command = m_LegacyCmdBufferBeforeLighting; + ao.CompositeAmbientOnly(context); + } + else if (isAmbientOcclusionOpaque) + { + context.command = m_LegacyCmdBufferOpaque; + aoRenderer.Get().RenderAfterOpaque(context); + } + + bool isFogActive = fog.IsEnabledAndSupported(context); + bool hasCustomOpaqueOnlyEffects = HasOpaqueOnlyEffects(context); + int opaqueOnlyEffects = 0; + opaqueOnlyEffects += isScreenSpaceReflectionsActive ? 1 : 0; + opaqueOnlyEffects += isFogActive ? 1 : 0; + opaqueOnlyEffects += hasCustomOpaqueOnlyEffects ? 1 : 0; + + // This works on right eye because it is resolved/populated at runtime + var cameraTarget = new RenderTargetIdentifier(BuiltinRenderTextureType.CameraTarget); + + if (opaqueOnlyEffects > 0) + { + var cmd = m_LegacyCmdBufferOpaque; + context.command = cmd; + context.source = cameraTarget; + context.destination = cameraTarget; + int srcTarget = -1; + int dstTarget = -1; + + UpdateSrcDstForOpaqueOnly(ref srcTarget, ref dstTarget, context, cameraTarget, opaqueOnlyEffects + 1); // + 1 for blit + + if (RequiresInitialBlit(m_Camera, context) || opaqueOnlyEffects == 1) + { + cmd.BuiltinBlit(context.source, context.destination, RuntimeUtilities.copyStdMaterial, stopNaNPropagation ? 1 : 0); + UpdateSrcDstForOpaqueOnly(ref srcTarget, ref dstTarget, context, cameraTarget, opaqueOnlyEffects); + } + + if (isScreenSpaceReflectionsActive) + { + ssrRenderer.Render(context); + opaqueOnlyEffects--; + UpdateSrcDstForOpaqueOnly(ref srcTarget, ref dstTarget, context, cameraTarget, opaqueOnlyEffects); + } + + if (isFogActive) + { + fog.Render(context); + opaqueOnlyEffects--; + UpdateSrcDstForOpaqueOnly(ref srcTarget, ref dstTarget, context, cameraTarget, opaqueOnlyEffects); + } + + if (hasCustomOpaqueOnlyEffects) + RenderOpaqueOnly(context); + + cmd.ReleaseTemporaryRT(srcTarget); + } + + // Post-transparency stack + int tempRt = -1; + bool forceNanKillPass = (!m_NaNKilled && stopNaNPropagation && RuntimeUtilities.isFloatingPointFormat(sourceFormat)); + if (RequiresInitialBlit(m_Camera, context) || forceNanKillPass) + { + tempRt = m_TargetPool.Get(); + context.GetScreenSpaceTemporaryRT(m_LegacyCmdBuffer, tempRt, 0, sourceFormat, RenderTextureReadWrite.sRGB); + m_LegacyCmdBuffer.BuiltinBlit(cameraTarget, tempRt, RuntimeUtilities.copyStdMaterial, stopNaNPropagation ? 1 : 0); + if (!m_NaNKilled) + m_NaNKilled = stopNaNPropagation; + + context.source = tempRt; + } + else + { + context.source = cameraTarget; + } + + context.destination = cameraTarget; + +#if UNITY_2019_1_OR_NEWER + if (finalBlitToCameraTarget && !RuntimeUtilities.scriptableRenderPipelineActive) + { + if (m_Camera.targetTexture) + { + context.destination = m_Camera.targetTexture.colorBuffer; + } + else + { + context.flip = true; + context.destination = Display.main.colorBuffer; + } + } +#endif + + context.command = m_LegacyCmdBuffer; + + Render(context); + + if (tempRt > -1) + m_LegacyCmdBuffer.ReleaseTemporaryRT(tempRt); + } + + void OnPostRender() + { + // Unused in scriptable render pipelines + if (RuntimeUtilities.scriptableRenderPipelineActive) + return; + + if (m_CurrentContext.IsTemporalAntialiasingActive()) + { +#if UNITY_2018_2_OR_NEWER + // TAA calls SetProjectionMatrix so if the camera projection mode was physical, it gets set to explicit. So we set it back to physical. + if (m_CurrentContext.physicalCamera) + m_Camera.usePhysicalProperties = true; + else +#endif + m_Camera.ResetProjectionMatrix(); + + if (m_CurrentContext.stereoActive) + { + if (RuntimeUtilities.isSinglePassStereoEnabled || m_Camera.stereoActiveEye == Camera.MonoOrStereoscopicEye.Right) + m_Camera.ResetStereoProjectionMatrices(); + } + } + } + + public PostProcessBundle GetBundle() + where T : PostProcessEffectSettings + { + return GetBundle(typeof(T)); + } + + public PostProcessBundle GetBundle(Type settingsType) + { + Assert.IsTrue(m_Bundles.ContainsKey(settingsType), "Invalid type"); + return m_Bundles[settingsType]; + } + + /// + /// Gets the current settings for a given effect. + /// + /// The type of effect to look for + /// The current state of an effect + public T GetSettings() + where T : PostProcessEffectSettings + { + return GetBundle().CastSettings(); + } + + /// + /// Utility method to bake a multi-scale volumetric obscurance map for the current camera. + /// This will only work if ambient occlusion is active in the scene. + /// + /// The command buffer to use for rendering steps + /// The camera to render ambient occlusion for + /// The destination render target + /// The depth map to use. If null, it will use the depth map + /// from the given camera + /// Should the result be inverted? + /// Should use MSAA? + public void BakeMSVOMap(CommandBuffer cmd, Camera camera, RenderTargetIdentifier destination, RenderTargetIdentifier? depthMap, bool invert, bool isMSAA = false) + { + var bundle = GetBundle(); + var renderer = bundle.CastRenderer().GetMultiScaleVO(); + renderer.SetResources(m_Resources); + renderer.GenerateAOMap(cmd, camera, destination, depthMap, invert, isMSAA); + } + + internal void OverrideSettings(List baseSettings, float interpFactor) + { + // Go through all settings & overriden parameters for the given volume and lerp values + foreach (var settings in baseSettings) + { + if (!settings.active) + continue; + + var target = GetBundle(settings.GetType()).settings; + int count = settings.parameters.Count; + + for (int i = 0; i < count; i++) + { + var toParam = settings.parameters[i]; + if (toParam.overrideState) + { + var fromParam = target.parameters[i]; + fromParam.Interp(fromParam, toParam, interpFactor); + } + } + } + } + + // In the legacy render loop you have to explicitely set flags on camera to tell that you + // need depth, depth+normals or motion vectors... This won't have any effect with most + // scriptable render pipelines. + void SetLegacyCameraFlags(PostProcessRenderContext context) + { + var flags = context.camera.depthTextureMode; + + foreach (var bundle in m_Bundles) + { + if (bundle.Value.settings.IsEnabledAndSupported(context)) + flags |= bundle.Value.renderer.GetCameraFlags(); + } + + // Special case for AA & lighting effects + if (context.IsTemporalAntialiasingActive()) + flags |= temporalAntialiasing.GetCameraFlags(); + + if (fog.IsEnabledAndSupported(context)) + flags |= fog.GetCameraFlags(); + + if (debugLayer.debugOverlay != DebugOverlay.None) + flags |= debugLayer.GetCameraFlags(); + + context.camera.depthTextureMode = flags; + } + + /// + /// This method should be called whenever you need to reset any temporal effect, e.g. when + /// doing camera cuts. + /// + public void ResetHistory() + { + foreach (var bundle in m_Bundles) + bundle.Value.ResetHistory(); + + temporalAntialiasing.ResetHistory(); + } + + /// + /// Checks if this layer has any active opaque-only effect. + /// + /// The current render context + /// true if opaque-only effects are active, false otherwise + public bool HasOpaqueOnlyEffects(PostProcessRenderContext context) + { + return HasActiveEffects(PostProcessEvent.BeforeTransparent, context); + } + + /// + /// Checks if this layer has any active effect at the given injection point. + /// + /// The injection point to look for + /// The current render context + /// true if any effect at the given injection point is active, false + /// otherwise + public bool HasActiveEffects(PostProcessEvent evt, PostProcessRenderContext context) + { + var list = sortedBundles[evt]; + + foreach (var item in list) + { + bool enabledAndSupported = item.bundle.settings.IsEnabledAndSupported(context); + + if (context.isSceneView) + { + if (item.bundle.attribute.allowInSceneView && enabledAndSupported) + return true; + } + else if (enabledAndSupported) + { + return true; + } + } + + return false; + } + + void SetupContext(PostProcessRenderContext context) + { + RuntimeUtilities.s_Resources = m_Resources; + + m_IsRenderingInSceneView = context.camera.cameraType == CameraType.SceneView; + context.isSceneView = m_IsRenderingInSceneView; + context.resources = m_Resources; + context.propertySheets = m_PropertySheetFactory; + context.debugLayer = debugLayer; + context.antialiasing = antialiasingMode; + context.temporalAntialiasing = temporalAntialiasing; + context.logHistogram = m_LogHistogram; + +#if UNITY_2018_2_OR_NEWER + context.physicalCamera = context.camera.usePhysicalProperties; +#endif + + SetLegacyCameraFlags(context); + + // Prepare debug overlay + debugLayer.SetFrameSize(context.width, context.height); + + // Unsafe to keep this around but we need it for OnGUI events for debug views + // Will be removed eventually + m_CurrentContext = context; + } + + /// + /// Updates the state of the volume system. This should be called before any other + /// post-processing method when running in a scriptable render pipeline. You don't need to + /// call this method when running in one of the builtin pipelines. + /// + /// The currently rendering camera. + /// A command buffer to fill. + public void UpdateVolumeSystem(Camera cam, CommandBuffer cmd) + { + if (m_SettingsUpdateNeeded) + { + cmd.BeginSample("VolumeBlending"); + PostProcessManager.instance.UpdateSettings(this, cam); + cmd.EndSample("VolumeBlending"); + m_TargetPool.Reset(); + + // TODO: fix me once VR support is in SRP + // Needed in SRP so that _RenderViewportScaleFactor isn't 0 + if (RuntimeUtilities.scriptableRenderPipelineActive) + Shader.SetGlobalFloat(ShaderIDs.RenderViewportScaleFactor, 1f); + } + + m_SettingsUpdateNeeded = false; + } + + /// + /// Renders effects in the bucket. You + /// should call before calling this method as it won't + /// automatically blit source into destination if no opaque-only effect is active. + /// + /// The current post-processing context. + public void RenderOpaqueOnly(PostProcessRenderContext context) + { + if (RuntimeUtilities.scriptableRenderPipelineActive) + SetupContext(context); + + TextureLerper.instance.BeginFrame(context); + + // Update & override layer settings first (volume blending), will only be done once per + // frame, either here or in Render() if there isn't any opaque-only effect to render. + // TODO: should be removed, keeping this here for older SRPs + UpdateVolumeSystem(context.camera, context.command); + + RenderList(sortedBundles[PostProcessEvent.BeforeTransparent], context, "OpaqueOnly"); + } + + /// + /// Renders all effects not in the bucket. + /// + /// The current post-processing context. + public void Render(PostProcessRenderContext context) + { + if (RuntimeUtilities.scriptableRenderPipelineActive) + SetupContext(context); + + TextureLerper.instance.BeginFrame(context); + var cmd = context.command; + + // Update & override layer settings first (volume blending) if the opaque only pass + // hasn't been called this frame. + // TODO: should be removed, keeping this here for older SRPs + UpdateVolumeSystem(context.camera, context.command); + + // Do a NaN killing pass if needed + int lastTarget = -1; + RenderTargetIdentifier cameraTexture = context.source; + +#if UNITY_2019_1_OR_NEWER + if (context.stereoActive && context.numberOfEyes > 1 && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) + { + cmd.SetSinglePassStereo(SinglePassStereoMode.None); + cmd.DisableShaderKeyword("UNITY_SINGLE_PASS_STEREO"); + } +#endif + + for (int eye = 0; eye < context.numberOfEyes; eye++) + { + bool preparedStereoSource = false; + + if (stopNaNPropagation && !m_NaNKilled) + { + lastTarget = m_TargetPool.Get(); + context.GetScreenSpaceTemporaryRT(cmd, lastTarget, 0, context.sourceFormat); + if (context.stereoActive && context.numberOfEyes > 1) + { + if (context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) + { + cmd.BlitFullscreenTriangleFromTexArray(context.source, lastTarget, RuntimeUtilities.copyFromTexArraySheet, 1, false, eye); + preparedStereoSource = true; + } + else if (context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) + { + cmd.BlitFullscreenTriangleFromDoubleWide(context.source, lastTarget, RuntimeUtilities.copyStdFromDoubleWideMaterial, 1, eye); + preparedStereoSource = true; + } + } + else + cmd.BlitFullscreenTriangle(context.source, lastTarget, RuntimeUtilities.copySheet, 1); + context.source = lastTarget; + m_NaNKilled = true; + } + + if (!preparedStereoSource && context.numberOfEyes > 1) + { + lastTarget = m_TargetPool.Get(); + context.GetScreenSpaceTemporaryRT(cmd, lastTarget, 0, context.sourceFormat); + if (context.stereoActive) + { + if (context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) + { + cmd.BlitFullscreenTriangleFromTexArray(context.source, lastTarget, RuntimeUtilities.copyFromTexArraySheet, 1, false, eye); + preparedStereoSource = true; + } + else if (context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) + { + cmd.BlitFullscreenTriangleFromDoubleWide(context.source, lastTarget, RuntimeUtilities.copyStdFromDoubleWideMaterial, stopNaNPropagation ? 1 : 0, eye); + preparedStereoSource = true; + } + } + context.source = lastTarget; + } + + // Do temporal anti-aliasing first + if (context.IsTemporalAntialiasingActive()) + { + if (!RuntimeUtilities.scriptableRenderPipelineActive) + { + if (context.stereoActive) + { + // We only need to configure all of this once for stereo, during OnPreCull + if (context.camera.stereoActiveEye != Camera.MonoOrStereoscopicEye.Right) + temporalAntialiasing.ConfigureStereoJitteredProjectionMatrices(context); + } + else + { + temporalAntialiasing.ConfigureJitteredProjectionMatrix(context); + } + } + + var taaTarget = m_TargetPool.Get(); + var finalDestination = context.destination; + context.GetScreenSpaceTemporaryRT(cmd, taaTarget, 0, context.sourceFormat); + context.destination = taaTarget; + temporalAntialiasing.Render(context); + context.source = taaTarget; + context.destination = finalDestination; + + if (lastTarget > -1) + cmd.ReleaseTemporaryRT(lastTarget); + + lastTarget = taaTarget; + } + + bool hasBeforeStackEffects = HasActiveEffects(PostProcessEvent.BeforeStack, context); + bool hasAfterStackEffects = HasActiveEffects(PostProcessEvent.AfterStack, context) && !breakBeforeColorGrading; + bool needsFinalPass = (hasAfterStackEffects + || (antialiasingMode == Antialiasing.FastApproximateAntialiasing) || (antialiasingMode == Antialiasing.SubpixelMorphologicalAntialiasing && subpixelMorphologicalAntialiasing.IsSupported())) + && !breakBeforeColorGrading; + + // Right before the builtin stack + if (hasBeforeStackEffects) + lastTarget = RenderInjectionPoint(PostProcessEvent.BeforeStack, context, "BeforeStack", lastTarget); + + // Builtin stack + lastTarget = RenderBuiltins(context, !needsFinalPass, lastTarget, eye); + + // After the builtin stack but before the final pass (before FXAA & Dithering) + if (hasAfterStackEffects) + lastTarget = RenderInjectionPoint(PostProcessEvent.AfterStack, context, "AfterStack", lastTarget); + + // And close with the final pass + if (needsFinalPass) + RenderFinalPass(context, lastTarget, eye); + + if (context.stereoActive) + context.source = cameraTexture; + } + +#if UNITY_2019_1_OR_NEWER + if (context.stereoActive && context.numberOfEyes > 1 && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) + { + cmd.SetSinglePassStereo(SinglePassStereoMode.SideBySide); + cmd.EnableShaderKeyword("UNITY_SINGLE_PASS_STEREO"); + } +#endif + + // Render debug monitors & overlay if requested + debugLayer.RenderSpecialOverlays(context); + debugLayer.RenderMonitors(context); + + // End frame cleanup + TextureLerper.instance.EndFrame(); + debugLayer.EndFrame(); + m_SettingsUpdateNeeded = true; + m_NaNKilled = false; + } + + int RenderInjectionPoint(PostProcessEvent evt, PostProcessRenderContext context, string marker, int releaseTargetAfterUse = -1) + { + int tempTarget = m_TargetPool.Get(); + var finalDestination = context.destination; + + var cmd = context.command; + context.GetScreenSpaceTemporaryRT(cmd, tempTarget, 0, context.sourceFormat); + context.destination = tempTarget; + RenderList(sortedBundles[evt], context, marker); + context.source = tempTarget; + context.destination = finalDestination; + + if (releaseTargetAfterUse > -1) + cmd.ReleaseTemporaryRT(releaseTargetAfterUse); + + return tempTarget; + } + + void RenderList(List list, PostProcessRenderContext context, string marker) + { + var cmd = context.command; + cmd.BeginSample(marker); + + // First gather active effects - we need this to manage render targets more efficiently + m_ActiveEffects.Clear(); + for (int i = 0; i < list.Count; i++) + { + var effect = list[i].bundle; + if (effect.settings.IsEnabledAndSupported(context)) + { + if (!context.isSceneView || (context.isSceneView && effect.attribute.allowInSceneView)) + m_ActiveEffects.Add(effect.renderer); + } + } + + int count = m_ActiveEffects.Count; + + // If there's only one active effect, we can simply execute it and skip the rest + if (count == 1) + { + m_ActiveEffects[0].Render(context); + } + else + { + // Else create the target chain + m_Targets.Clear(); + m_Targets.Add(context.source); // First target is always source + + int tempTarget1 = m_TargetPool.Get(); + int tempTarget2 = m_TargetPool.Get(); + + for (int i = 0; i < count - 1; i++) + m_Targets.Add(i % 2 == 0 ? tempTarget1 : tempTarget2); + + m_Targets.Add(context.destination); // Last target is always destination + + // Render + context.GetScreenSpaceTemporaryRT(cmd, tempTarget1, 0, context.sourceFormat); + if (count > 2) + context.GetScreenSpaceTemporaryRT(cmd, tempTarget2, 0, context.sourceFormat); + + for (int i = 0; i < count; i++) + { + context.source = m_Targets[i]; + context.destination = m_Targets[i + 1]; + m_ActiveEffects[i].Render(context); + } + + cmd.ReleaseTemporaryRT(tempTarget1); + if (count > 2) + cmd.ReleaseTemporaryRT(tempTarget2); + } + + cmd.EndSample(marker); + } + + void ApplyFlip(PostProcessRenderContext context, MaterialPropertyBlock properties) + { + if (context.flip && !context.isSceneView) + properties.SetVector(ShaderIDs.UVTransform, new Vector4(1.0f, 1.0f, 0.0f, 0.0f)); + else + ApplyDefaultFlip(properties); + } + + void ApplyDefaultFlip(MaterialPropertyBlock properties) + { + properties.SetVector(ShaderIDs.UVTransform, SystemInfo.graphicsUVStartsAtTop ? new Vector4(1.0f, -1.0f, 0.0f, 1.0f) : new Vector4(1.0f, 1.0f, 0.0f, 0.0f)); + } + + int RenderBuiltins(PostProcessRenderContext context, bool isFinalPass, int releaseTargetAfterUse = -1, int eye = -1) + { + var uberSheet = context.propertySheets.Get(context.resources.shaders.uber); + uberSheet.ClearKeywords(); + uberSheet.properties.Clear(); + context.uberSheet = uberSheet; + context.autoExposureTexture = RuntimeUtilities.whiteTexture; + context.bloomBufferNameID = -1; + + if (isFinalPass && context.stereoActive && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) + uberSheet.EnableKeyword("STEREO_INSTANCING_ENABLED"); + + var cmd = context.command; + cmd.BeginSample("BuiltinStack"); + + int tempTarget = -1; + var finalDestination = context.destination; + + if (!isFinalPass) + { + // Render to an intermediate target as this won't be the final pass + tempTarget = m_TargetPool.Get(); + context.GetScreenSpaceTemporaryRT(cmd, tempTarget, 0, context.sourceFormat); + context.destination = tempTarget; + + // Handle FXAA's keep alpha mode + if (antialiasingMode == Antialiasing.FastApproximateAntialiasing && !fastApproximateAntialiasing.keepAlpha) + uberSheet.properties.SetFloat(ShaderIDs.LumaInAlpha, 1f); + } + + // Depth of field final combination pass used to be done in Uber which led to artifacts + // when used at the same time as Bloom (because both effects used the same source, so + // the stronger bloom was, the more DoF was eaten away in out of focus areas) + int depthOfFieldTarget = RenderEffect(context, true); + + // Motion blur is a separate pass - could potentially be done after DoF depending on the + // kind of results you're looking for... + int motionBlurTarget = RenderEffect(context, true); + + // Prepare exposure histogram if needed + if (ShouldGenerateLogHistogram(context)) + m_LogHistogram.Generate(context); + + // Uber effects + RenderEffect(context); + uberSheet.properties.SetTexture(ShaderIDs.AutoExposureTex, context.autoExposureTexture); + + RenderEffect(context); + RenderEffect(context); + RenderEffect(context); + RenderEffect(context); + RenderEffect(context); + + if (!breakBeforeColorGrading) + RenderEffect(context); + + if (isFinalPass) + { + uberSheet.EnableKeyword("FINALPASS"); + dithering.Render(context); + ApplyFlip(context, uberSheet.properties); + } + else + { + ApplyDefaultFlip(uberSheet.properties); + } + + if (context.stereoActive && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) + { + uberSheet.properties.SetFloat(ShaderIDs.DepthSlice, eye); + cmd.BlitFullscreenTriangleToTexArray(context.source, context.destination, uberSheet, 0, false, eye); + } + else if (isFinalPass && context.stereoActive && context.numberOfEyes > 1 && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) + { + cmd.BlitFullscreenTriangleToDoubleWide(context.source, context.destination, uberSheet, 0, eye); + } +#if LWRP_1_0_0_OR_NEWER + else if (isFinalPass) + cmd.BlitFullscreenTriangle(context.source, context.destination, uberSheet, 0, false, context.camera.pixelRect); +#endif + else + cmd.BlitFullscreenTriangle(context.source, context.destination, uberSheet, 0); + + context.source = context.destination; + context.destination = finalDestination; + + if (releaseTargetAfterUse > -1) cmd.ReleaseTemporaryRT(releaseTargetAfterUse); + if (motionBlurTarget > -1) cmd.ReleaseTemporaryRT(motionBlurTarget); + if (depthOfFieldTarget > -1) cmd.ReleaseTemporaryRT(depthOfFieldTarget); + if (context.bloomBufferNameID > -1) cmd.ReleaseTemporaryRT(context.bloomBufferNameID); + + cmd.EndSample("BuiltinStack"); + + return tempTarget; + } + + // This pass will have to be disabled for HDR screen output as it's an LDR pass + void RenderFinalPass(PostProcessRenderContext context, int releaseTargetAfterUse = -1, int eye = -1) + { + var cmd = context.command; + cmd.BeginSample("FinalPass"); + + if (breakBeforeColorGrading) + { + var sheet = context.propertySheets.Get(context.resources.shaders.discardAlpha); + if (context.stereoActive && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) + sheet.EnableKeyword("STEREO_INSTANCING_ENABLED"); + + if (context.stereoActive && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) + { + sheet.properties.SetFloat(ShaderIDs.DepthSlice, eye); + cmd.BlitFullscreenTriangleToTexArray(context.source, context.destination, sheet, 0, false, eye); + } + else if (context.stereoActive && context.numberOfEyes > 1 && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) + { + cmd.BlitFullscreenTriangleToDoubleWide(context.source, context.destination, sheet, 0, eye); + } + else + cmd.BlitFullscreenTriangle(context.source, context.destination, sheet, 0); + } + else + { + var uberSheet = context.propertySheets.Get(context.resources.shaders.finalPass); + uberSheet.ClearKeywords(); + uberSheet.properties.Clear(); + context.uberSheet = uberSheet; + int tempTarget = -1; + + if (context.stereoActive && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) + uberSheet.EnableKeyword("STEREO_INSTANCING_ENABLED"); + + if (antialiasingMode == Antialiasing.FastApproximateAntialiasing) + { + uberSheet.EnableKeyword(fastApproximateAntialiasing.fastMode + ? "FXAA_LOW" + : "FXAA" + ); + + if (fastApproximateAntialiasing.keepAlpha) + uberSheet.EnableKeyword("FXAA_KEEP_ALPHA"); + } + else if (antialiasingMode == Antialiasing.SubpixelMorphologicalAntialiasing && subpixelMorphologicalAntialiasing.IsSupported()) + { + tempTarget = m_TargetPool.Get(); + var finalDestination = context.destination; + context.GetScreenSpaceTemporaryRT(context.command, tempTarget, 0, context.sourceFormat); + context.destination = tempTarget; + subpixelMorphologicalAntialiasing.Render(context); + context.source = tempTarget; + context.destination = finalDestination; + } + + dithering.Render(context); + + ApplyFlip(context, uberSheet.properties); + if (context.stereoActive && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePassInstanced) + { + uberSheet.properties.SetFloat(ShaderIDs.DepthSlice, eye); + cmd.BlitFullscreenTriangleToTexArray(context.source, context.destination, uberSheet, 0, false, eye); + } + else if (context.stereoActive && context.numberOfEyes > 1 && context.stereoRenderingMode == PostProcessRenderContext.StereoRenderingMode.SinglePass) + { + cmd.BlitFullscreenTriangleToDoubleWide(context.source, context.destination, uberSheet, 0, eye); + } + else + cmd.BlitFullscreenTriangle(context.source, context.destination, uberSheet, 0, false, context.camera.pixelRect); + + if (tempTarget > -1) + cmd.ReleaseTemporaryRT(tempTarget); + } + + if (releaseTargetAfterUse > -1) + cmd.ReleaseTemporaryRT(releaseTargetAfterUse); + + cmd.EndSample("FinalPass"); + } + + int RenderEffect(PostProcessRenderContext context, bool useTempTarget = false) + where T : PostProcessEffectSettings + { + var effect = GetBundle(); + + if (!effect.settings.IsEnabledAndSupported(context)) + return -1; + + if (m_IsRenderingInSceneView && !effect.attribute.allowInSceneView) + return -1; + + if (!useTempTarget) + { + effect.renderer.Render(context); + return -1; + } + + var finalDestination = context.destination; + var tempTarget = m_TargetPool.Get(); + context.GetScreenSpaceTemporaryRT(context.command, tempTarget, 0, context.sourceFormat); + context.destination = tempTarget; + effect.renderer.Render(context); + context.source = tempTarget; + context.destination = finalDestination; + return tempTarget; + } + + bool ShouldGenerateLogHistogram(PostProcessRenderContext context) + { + bool autoExpo = GetBundle().settings.IsEnabledAndSupported(context); + bool lightMeter = debugLayer.lightMeter.IsRequestedAndSupported(context); + return autoExpo || lightMeter; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessLayer.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessLayer.cs.meta new file mode 100644 index 0000000..522d05b --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessLayer.cs.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 948f4100a11a5c24981795d21301da5c +timeCreated: 1493713997 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: + - volumeTrigger: {instanceID: 0} + - m_Resources: {fileID: 11400000, guid: d82512f9c8e5d4a4d938b575d47f88d4, type: 2} + executionOrder: 0 + icon: {fileID: 2800000, guid: 5f51e0b22aa8cb84b9f422576ce87ff9, type: 3} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessManager.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessManager.cs new file mode 100644 index 0000000..251818b --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessManager.cs @@ -0,0 +1,461 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using UnityEngine.Assertions; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This manager tracks all volumes in the scene and does all the interpolation work. It is + /// automatically created as soon as Post-processing is active in a scene. + /// + public sealed class PostProcessManager + { + static PostProcessManager s_Instance; + + /// + /// The current singleton instance of . + /// + public static PostProcessManager instance + { + get + { + if (s_Instance == null) + s_Instance = new PostProcessManager(); + + return s_Instance; + } + } + + const int k_MaxLayerCount = 32; // Max amount of layers available in Unity + readonly Dictionary> m_SortedVolumes; + readonly List m_Volumes; + readonly Dictionary m_SortNeeded; + readonly List m_BaseSettings; + readonly List m_TempColliders; + + /// + /// This dictionary maps all available to their + /// corresponding . It can be used to list all loaded + /// builtin and custom effects. + /// + public readonly Dictionary settingsTypes; + + PostProcessManager() + { + m_SortedVolumes = new Dictionary>(); + m_Volumes = new List(); + m_SortNeeded = new Dictionary(); + m_BaseSettings = new List(); + m_TempColliders = new List(5); + + settingsTypes = new Dictionary(); + ReloadBaseTypes(); + } + +#if UNITY_EDITOR + // Called every time Unity recompile scripts in the editor. We need this to keep track of + // any new custom effect the user might add to the project + [UnityEditor.Callbacks.DidReloadScripts] + static void OnEditorReload() + { + instance.ReloadBaseTypes(); + } +#endif + + void CleanBaseTypes() + { + settingsTypes.Clear(); + + foreach (var settings in m_BaseSettings) + RuntimeUtilities.Destroy(settings); + + m_BaseSettings.Clear(); + } + + // This will be called only once at runtime and everytime script reload kicks-in in the + // editor as we need to keep track of any compatible post-processing effects in the project + void ReloadBaseTypes() + { + CleanBaseTypes(); + + // Rebuild the base type map + var types = RuntimeUtilities.GetAllAssemblyTypes() + .Where( + t => t.IsSubclassOf(typeof(PostProcessEffectSettings)) + && t.IsDefined(typeof(PostProcessAttribute), false) + && !t.IsAbstract + ); + + foreach (var type in types) + { + settingsTypes.Add(type, type.GetAttribute()); + + // Create an instance for each effect type, these will be used for the lowest + // priority global volume as we need a default state when exiting volume ranges + var inst = (PostProcessEffectSettings)ScriptableObject.CreateInstance(type); + inst.SetAllOverridesTo(true, false); + m_BaseSettings.Add(inst); + } + } + + /// + /// Gets a list of all volumes currently affecting the given layer. Results aren't sorted + /// and the list isn't cleared. + /// + /// The layer to look for + /// A list to store the volumes found + /// Should we skip disabled volumes? + /// Should we skip 0-weight volumes? + public void GetActiveVolumes(PostProcessLayer layer, List results, bool skipDisabled = true, bool skipZeroWeight = true) + { + // If no trigger is set, only global volumes will have influence + int mask = layer.volumeLayer.value; + var volumeTrigger = layer.volumeTrigger; + bool onlyGlobal = volumeTrigger == null; + var triggerPos = onlyGlobal ? Vector3.zero : volumeTrigger.position; + + // Sort the cached volume list(s) for the given layer mask if needed and return it + var volumes = GrabVolumes(mask); + + // Traverse all volumes + foreach (var volume in volumes) + { + // Skip disabled volumes and volumes without any data or weight + if ((skipDisabled && !volume.enabled) || volume.profileRef == null || (skipZeroWeight && volume.weight <= 0f)) + continue; + + // Global volume always have influence + if (volume.isGlobal) + { + results.Add(volume); + continue; + } + + if (onlyGlobal) + continue; + + // If volume isn't global and has no collider, skip it as it's useless + var colliders = m_TempColliders; + volume.GetComponents(colliders); + if (colliders.Count == 0) + continue; + + // Find closest distance to volume, 0 means it's inside it + float closestDistanceSqr = float.PositiveInfinity; + + foreach (var collider in colliders) + { + if (!collider.enabled) + continue; + + var closestPoint = collider.ClosestPoint(triggerPos); // 5.6-only API + var d = ((closestPoint - triggerPos) / 2f).sqrMagnitude; + + if (d < closestDistanceSqr) + closestDistanceSqr = d; + } + + colliders.Clear(); + float blendDistSqr = volume.blendDistance * volume.blendDistance; + + // Check for influence + if (closestDistanceSqr <= blendDistSqr) + results.Add(volume); + } + } + + /// + /// Gets the highest priority volume affecting a given layer. + /// + /// The layer to look for + /// The highest priority volume affecting the layer + public PostProcessVolume GetHighestPriorityVolume(PostProcessLayer layer) + { + if (layer == null) + throw new ArgumentNullException("layer"); + + return GetHighestPriorityVolume(layer.volumeLayer); + } + + /// + /// Gets the highest priority volume affecting in a given + /// . + /// + /// The layer mask to look for + /// The highest priority volume affecting the layer mask + /// + public PostProcessVolume GetHighestPriorityVolume(LayerMask mask) + { + float highestPriority = float.NegativeInfinity; + PostProcessVolume output = null; + + List volumes; + if (m_SortedVolumes.TryGetValue(mask, out volumes)) + { + foreach (var volume in volumes) + { + if (volume.priority > highestPriority) + { + highestPriority = volume.priority; + output = volume; + } + } + } + + return output; + } + + /// + /// Helper method to spawn a new volume in the scene. + /// + /// The unity layer to put the volume in + /// The priority to set this volume to + /// A list of effects to put in this volume + /// + public PostProcessVolume QuickVolume(int layer, float priority, params PostProcessEffectSettings[] settings) + { + var gameObject = new GameObject() + { + name = "Quick Volume", + layer = layer, + hideFlags = HideFlags.HideAndDontSave + }; + + var volume = gameObject.AddComponent(); + volume.priority = priority; + volume.isGlobal = true; + var profile = volume.profile; + + foreach (var s in settings) + { + Assert.IsNotNull(s, "Trying to create a volume with null effects"); + profile.AddSettings(s); + } + + return volume; + } + + internal void SetLayerDirty(int layer) + { + Assert.IsTrue(layer >= 0 && layer <= k_MaxLayerCount, "Invalid layer bit"); + + foreach (var kvp in m_SortedVolumes) + { + var mask = kvp.Key; + + if ((mask & (1 << layer)) != 0) + m_SortNeeded[mask] = true; + } + } + + internal void UpdateVolumeLayer(PostProcessVolume volume, int prevLayer, int newLayer) + { + Assert.IsTrue(prevLayer >= 0 && prevLayer <= k_MaxLayerCount, "Invalid layer bit"); + Unregister(volume, prevLayer); + Register(volume, newLayer); + } + + void Register(PostProcessVolume volume, int layer) + { + m_Volumes.Add(volume); + + // Look for existing cached layer masks and add it there if needed + foreach (var kvp in m_SortedVolumes) + { + var mask = kvp.Key; + + if ((mask & (1 << layer)) != 0) + kvp.Value.Add(volume); + } + + SetLayerDirty(layer); + } + + internal void Register(PostProcessVolume volume) + { + int layer = volume.gameObject.layer; + Register(volume, layer); + } + + void Unregister(PostProcessVolume volume, int layer) + { + m_Volumes.Remove(volume); + + foreach (var kvp in m_SortedVolumes) + { + var mask = kvp.Key; + + // Skip layer masks this volume doesn't belong to + if ((mask & (1 << layer)) == 0) + continue; + + kvp.Value.Remove(volume); + } + } + + internal void Unregister(PostProcessVolume volume) + { + int layer = volume.gameObject.layer; + Unregister(volume, layer); + } + + // Faster version of OverrideSettings to force replace values in the global state + void ReplaceData(PostProcessLayer postProcessLayer) + { + foreach (var settings in m_BaseSettings) + { + var target = postProcessLayer.GetBundle(settings.GetType()).settings; + int count = settings.parameters.Count; + + for (int i = 0; i < count; i++) + target.parameters[i].SetValue(settings.parameters[i]); + } + } + + internal void UpdateSettings(PostProcessLayer postProcessLayer, Camera camera) + { + // Reset to base state + ReplaceData(postProcessLayer); + + // If no trigger is set, only global volumes will have influence + int mask = postProcessLayer.volumeLayer.value; + var volumeTrigger = postProcessLayer.volumeTrigger; + bool onlyGlobal = volumeTrigger == null; + var triggerPos = onlyGlobal ? Vector3.zero : volumeTrigger.position; + + // Sort the cached volume list(s) for the given layer mask if needed and return it + var volumes = GrabVolumes(mask); + + // Traverse all volumes + foreach (var volume in volumes) + { +#if UNITY_EDITOR + // Skip volumes that aren't in the scene currently displayed in the scene view + if (!IsVolumeRenderedByCamera(volume, camera)) + continue; +#endif + + // Skip disabled volumes and volumes without any data or weight + if (!volume.enabled || volume.profileRef == null || volume.weight <= 0f) + continue; + + var settings = volume.profileRef.settings; + + // Global volume always have influence + if (volume.isGlobal) + { + postProcessLayer.OverrideSettings(settings, Mathf.Clamp01(volume.weight)); + continue; + } + + if (onlyGlobal) + continue; + + // If volume isn't global and has no collider, skip it as it's useless + var colliders = m_TempColliders; + volume.GetComponents(colliders); + if (colliders.Count == 0) + continue; + + // Find closest distance to volume, 0 means it's inside it + float closestDistanceSqr = float.PositiveInfinity; + + foreach (var collider in colliders) + { + if (!collider.enabled) + continue; + + var closestPoint = collider.ClosestPoint(triggerPos); // 5.6-only API + var d = ((closestPoint - triggerPos) / 2f).sqrMagnitude; + + if (d < closestDistanceSqr) + closestDistanceSqr = d; + } + + colliders.Clear(); + float blendDistSqr = volume.blendDistance * volume.blendDistance; + + // Volume has no influence, ignore it + // Note: Volume doesn't do anything when `closestDistanceSqr = blendDistSqr` but + // we can't use a >= comparison as blendDistSqr could be set to 0 in which + // case volume would have total influence + if (closestDistanceSqr > blendDistSqr) + continue; + + // Volume has influence + float interpFactor = 1f; + + if (blendDistSqr > 0f) + interpFactor = 1f - (closestDistanceSqr / blendDistSqr); + + // No need to clamp01 the interpolation factor as it'll always be in [0;1[ range + postProcessLayer.OverrideSettings(settings, interpFactor * Mathf.Clamp01(volume.weight)); + } + } + + List GrabVolumes(LayerMask mask) + { + List list; + + if (!m_SortedVolumes.TryGetValue(mask, out list)) + { + // New layer mask detected, create a new list and cache all the volumes that belong + // to this mask in it + list = new List(); + + foreach (var volume in m_Volumes) + { + if ((mask & (1 << volume.gameObject.layer)) == 0) + continue; + + list.Add(volume); + m_SortNeeded[mask] = true; + } + + m_SortedVolumes.Add(mask, list); + } + + // Check sorting state + bool sortNeeded; + if (m_SortNeeded.TryGetValue(mask, out sortNeeded) && sortNeeded) + { + m_SortNeeded[mask] = false; + SortByPriority(list); + } + + return list; + } + + // Custom insertion sort. First sort will be slower but after that it'll be faster than + // using List.Sort() which is also unstable by nature. + // Sort order is ascending. + static void SortByPriority(List volumes) + { + Assert.IsNotNull(volumes, "Trying to sort volumes of non-initialized layer"); + + for (int i = 1; i < volumes.Count; i++) + { + var temp = volumes[i]; + int j = i - 1; + + while (j >= 0 && volumes[j].priority > temp.priority) + { + volumes[j + 1] = volumes[j]; + j--; + } + + volumes[j + 1] = temp; + } + } + + static bool IsVolumeRenderedByCamera(PostProcessVolume volume, Camera camera) + { +#if UNITY_2018_3_OR_NEWER && UNITY_EDITOR + return UnityEditor.SceneManagement.StageUtility.IsGameObjectRenderedByCamera(volume.gameObject, camera); +#else + return true; +#endif + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessManager.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessManager.cs.meta new file mode 100644 index 0000000..8baecdb --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessManager.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 18ff20fea2d39cf428e31d3e75b4ae79 +timeCreated: 1485268412 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessProfile.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessProfile.cs new file mode 100644 index 0000000..472aec4 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessProfile.cs @@ -0,0 +1,187 @@ +using System; +using System.Collections.Generic; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// An asset holding a set of post-processing settings to use with a . + /// + /// + public sealed class PostProcessProfile : ScriptableObject + { + /// + /// A list of all settings stored in this profile. + /// + [Tooltip("A list of all settings currently stored in this profile.")] + public List settings = new List(); + + // Editor only, doesn't have any use outside of it + [NonSerialized] + public bool isDirty = true; + + void OnEnable() + { + // Make sure every setting is valid. If a profile holds a script that doesn't exist + // anymore, nuke it to keep the profile clean. Note that if you delete a script that is + // currently in use in a profile you'll still get a one-time error in the console, it's + // harmless and happens because Unity does a redraw of the editor (and thus the current + // frame) before the recompilation step. + settings.RemoveAll(x => x == null); + } + + /// + /// Adds settings for an effect to the profile. + /// + /// A type of + /// The instance created from the given type + /// + public T AddSettings() + where T : PostProcessEffectSettings + { + return (T)AddSettings(typeof(T)); + } + + /// + /// Adds settings for an effect to the profile. + /// + /// A type of + /// The instance created from the given type + /// + public PostProcessEffectSettings AddSettings(Type type) + { + if (HasSettings(type)) + throw new InvalidOperationException("Effect already exists in the stack"); + + var effect = (PostProcessEffectSettings)CreateInstance(type); + effect.hideFlags = HideFlags.HideInInspector | HideFlags.HideInHierarchy; + effect.name = type.Name; + effect.enabled.value = true; + settings.Add(effect); + isDirty = true; + return effect; + } + + /// + /// Adds settings for an effect to the profile. + /// + /// An instance of + /// The given effect instance + /// + public PostProcessEffectSettings AddSettings(PostProcessEffectSettings effect) + { + if (HasSettings(settings.GetType())) + throw new InvalidOperationException("Effect already exists in the stack"); + + settings.Add(effect); + isDirty = true; + return effect; + } + + /// + /// Removes settings for an effect from the profile. + /// + /// The type to look for and remove from the profile + /// Thrown if the effect doesn't exist in the + /// profile + public void RemoveSettings() + where T : PostProcessEffectSettings + { + RemoveSettings(typeof(T)); + } + + /// + /// Removes settings for an effect from the profile. + /// + /// The type to look for and remove from the profile + /// Thrown if the effect doesn't exist in the + /// profile + public void RemoveSettings(Type type) + { + int toRemove = -1; + + for (int i = 0; i < settings.Count; i++) + { + if (settings[i].GetType() == type) + { + toRemove = i; + break; + } + } + + if (toRemove < 0) + throw new InvalidOperationException("Effect doesn't exist in the profile"); + + settings.RemoveAt(toRemove); + isDirty = true; + } + + /// + /// Checks if an effect has been added to the profile. + /// + /// The type to look for + /// true if the effect exists in the profile, false otherwise + public bool HasSettings() + where T : PostProcessEffectSettings + { + return HasSettings(typeof(T)); + } + + /// + /// Checks if an effect has been added to the profile. + /// + /// The type to look for + /// true if the effect exists in the profile, false otherwise + public bool HasSettings(Type type) + { + foreach (var setting in settings) + { + if (setting.GetType() == type) + return true; + } + + return false; + } + + /// + /// Returns settings for a given effect type. + /// + /// The type to look for + /// Settings for the given effect type, null otherwise + public T GetSetting() where T : PostProcessEffectSettings + { + foreach (var setting in settings) + { + if (setting is T) + return setting as T; + } + + return null; + } + + /// + /// Gets settings for a given effect type. + /// + /// The type to look for + /// When this method returns, contains the value associated with + /// the specified type, if the type is found; otherwise, this parameter will be null. + /// This parameter is passed uninitialized. + /// true if the effect exists in the profile, false otherwise + public bool TryGetSettings(out T outSetting) + where T : PostProcessEffectSettings + { + var type = typeof(T); + outSetting = null; + + foreach (var setting in settings) + { + if (setting.GetType() == type) + { + outSetting = (T)setting; + return true; + } + } + + return false; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessProfile.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessProfile.cs.meta new file mode 100644 index 0000000..940b439 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessProfile.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8e6292b2c06870d4495f009f912b9600 +timeCreated: 1507906488 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {fileID: 2800000, guid: 5f51e0b22aa8cb84b9f422576ce87ff9, type: 3} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessRenderContext.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessRenderContext.cs new file mode 100644 index 0000000..c2e426b --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessRenderContext.cs @@ -0,0 +1,431 @@ +using System.Collections.Generic; + +namespace UnityEngine.Rendering.PostProcessing +{ +#if UNITY_2017_2_OR_NEWER + using XRSettings = UnityEngine.XR.XRSettings; +#elif UNITY_5_6_OR_NEWER + using XRSettings = UnityEngine.VR.VRSettings; +#endif + + /// + /// A context object passed around all post-processing effects in a frame. + /// + public sealed class PostProcessRenderContext + { + // ----------------------------------------------------------------------------------------- + // The following should be filled by the render pipeline + + Camera m_Camera; + + /// + /// The camera currently being rendered. + /// + public Camera camera + { + get { return m_Camera; } + set + { + m_Camera = value; + +#if !UNITY_SWITCH && ENABLE_VR + if (m_Camera.stereoEnabled) + { +#if UNITY_2017_2_OR_NEWER + var xrDesc = XRSettings.eyeTextureDesc; + stereoRenderingMode = StereoRenderingMode.SinglePass; + +#if UNITY_STANDALONE || UNITY_EDITOR + if (xrDesc.dimension == TextureDimension.Tex2DArray) + stereoRenderingMode = StereoRenderingMode.SinglePassInstanced; +#endif + if (stereoRenderingMode == StereoRenderingMode.SinglePassInstanced) + numberOfEyes = 2; + +#if UNITY_2019_1_OR_NEWER + if (stereoRenderingMode == StereoRenderingMode.SinglePass) + { + numberOfEyes = 2; + xrDesc.width /= 2; + xrDesc.vrUsage = VRTextureUsage.None; + } +#else + //before 2019.1 double-wide still issues two drawcalls + if (stereoRenderingMode == StereoRenderingMode.SinglePass) + { + numberOfEyes = 1; + } +#endif + + width = xrDesc.width; + height = xrDesc.height; + m_sourceDescriptor = xrDesc; +#else + // Single-pass is only supported with 2017.2+ because + // that is when XRSettings.eyeTextureDesc is available. + // Without it, we don't have a robust method of determining + // if we are in single-pass. Users can just double the width + // here if they KNOW they are using single-pass. + width = XRSettings.eyeTextureWidth; + height = XRSettings.eyeTextureHeight; +#endif + + if (m_Camera.stereoActiveEye == Camera.MonoOrStereoscopicEye.Right) + xrActiveEye = (int)Camera.StereoscopicEye.Right; + + screenWidth = XRSettings.eyeTextureWidth; + screenHeight = XRSettings.eyeTextureHeight; + +#if UNITY_2019_1_OR_NEWER + if (stereoRenderingMode == StereoRenderingMode.SinglePass) + screenWidth /= 2; +#endif + stereoActive = true; + + } + else +#endif + { + width = m_Camera.pixelWidth; + height = m_Camera.pixelHeight; + +#if UNITY_2017_2_OR_NEWER + m_sourceDescriptor.width = width; + m_sourceDescriptor.height = height; +#endif + screenWidth = width; + screenHeight = height; + stereoActive = false; + numberOfEyes = 1; + } + } + } + + + /// + /// The command buffer to fill render commands in. + /// + public CommandBuffer command { get; set; } + + /// + /// The source target for this pass (can't be the same as ). + /// + public RenderTargetIdentifier source { get; set; } + + /// + /// The destination target for this pass (can't be the same as ). + /// + public RenderTargetIdentifier destination { get; set; } + + /// + /// The texture format used for the source target. + /// + // We need this to be set explictely as we don't have any way of knowing if we're rendering + // using HDR or not as scriptable render pipelines may ignore the HDR toggle on camera + // completely + public RenderTextureFormat sourceFormat { get; set; } + + /// + /// Should we flip the last pass? + /// + public bool flip { get; set; } + + // ----------------------------------------------------------------------------------------- + // The following is auto-populated by the post-processing stack + + /// + /// The resource asset contains reference to external resources (shaders, textures...). + /// + public PostProcessResources resources { get; internal set; } + + /// + /// The property sheet factory handled by the currently active . + /// + public PropertySheetFactory propertySheets { get; internal set; } + + /// + /// A dictionary to store custom user data objects. This is handy to share data between + /// custom effects. + /// + public Dictionary userData { get; private set; } + + /// + /// A reference to the internal debug layer. + /// + public PostProcessDebugLayer debugLayer { get; internal set; } + + /// + /// The current camera width (in pixels). + /// + public int width { get; private set; } + + /// + /// The current camera height (in pixels). + /// + public int height { get; private set; } + + /// + /// Is stereo rendering active? + /// + public bool stereoActive { get; private set; } + + /// + /// The current active rendering eye (for XR). + /// + public int xrActiveEye { get; private set; } + + /// + /// The number of eyes for XR outputs. + /// + public int numberOfEyes { get; private set; } + + /// + /// Available XR rendering modes. + /// + public enum StereoRenderingMode + { + MultiPass = 0, + SinglePass, + SinglePassInstanced, + SinglePassMultiview + } + + /// + /// The current rendering mode for XR. + /// + public StereoRenderingMode stereoRenderingMode { get; private set; } + + /// + /// The width of the logical screen size. + /// + public int screenWidth { get; private set; } + + /// + /// The height of the logical screen size. + /// + public int screenHeight { get; private set; } + + /// + /// Are we currently rendering in the scene view? + /// + public bool isSceneView { get; internal set; } + + /// + /// The current anti-aliasing method used by the camera. + /// + public PostProcessLayer.Antialiasing antialiasing { get; internal set; } + + /// + /// A reference to the temporal anti-aliasing settings for the rendering layer. This is + /// mostly used to grab the jitter vector and other TAA-related values when an effect needs + /// to do temporal reprojection. + /// + public TemporalAntialiasing temporalAntialiasing { get; internal set; } + + // Internal values used for builtin effects + // Beware, these may not have been set before a specific builtin effect has been executed + internal PropertySheet uberSheet; + internal Texture autoExposureTexture; + internal LogHistogram logHistogram; + internal Texture logLut; + internal AutoExposure autoExposure; + internal int bloomBufferNameID; +#if UNITY_2018_2_OR_NEWER + internal bool physicalCamera; +#endif + + /// + /// Resets the state of this context object. This is called by the render pipeline on every + /// frame and allows re-using the same context object between frames without having to + /// recreate a new one. + /// + public void Reset() + { + m_Camera = null; + width = 0; + height = 0; + +#if UNITY_2017_2_OR_NEWER + m_sourceDescriptor = new RenderTextureDescriptor(0, 0); +#endif +#if UNITY_2018_2_OR_NEWER + physicalCamera = false; +#endif + stereoActive = false; + xrActiveEye = (int)Camera.StereoscopicEye.Left; + screenWidth = 0; + screenHeight = 0; + + command = null; + source = 0; + destination = 0; + sourceFormat = RenderTextureFormat.ARGB32; + flip = false; + + resources = null; + propertySheets = null; + debugLayer = null; + isSceneView = false; + antialiasing = PostProcessLayer.Antialiasing.None; + temporalAntialiasing = null; + + uberSheet = null; + autoExposureTexture = null; + logLut = null; + autoExposure = null; + bloomBufferNameID = -1; + + if (userData == null) + userData = new Dictionary(); + + userData.Clear(); + } + + /// + /// Checks if temporal anti-aliasing is supported and enabled. + /// + /// true if temporal anti-aliasing is supported and enabled, false + /// otherwise + public bool IsTemporalAntialiasingActive() + { + return antialiasing == PostProcessLayer.Antialiasing.TemporalAntialiasing + && !isSceneView + && temporalAntialiasing.IsSupported(); + } + + /// + /// Checks if a specific debug overlay is enabled. + /// + /// The debug overlay to look for + /// true if the specified debug overlay is enable, false + /// otherwise + public bool IsDebugOverlayEnabled(DebugOverlay overlay) + { + return debugLayer.debugOverlay == overlay; + } + + /// + /// Blit a source render target to the debug overlay target. This is a direct shortcut to + /// . + /// + /// The command buffer to send render commands to + /// The source target + /// The property sheet to use for the blit + /// The pass to use for the property sheet + /// + public void PushDebugOverlay(CommandBuffer cmd, RenderTargetIdentifier source, PropertySheet sheet, int pass) + { + debugLayer.PushDebugOverlay(cmd, source, sheet, pass); + } + + // TODO: Change w/h name to texture w/h in order to make + // size usages explicit +#if UNITY_2017_2_OR_NEWER + RenderTextureDescriptor m_sourceDescriptor; + RenderTextureDescriptor GetDescriptor(int depthBufferBits = 0, RenderTextureFormat colorFormat = RenderTextureFormat.Default, RenderTextureReadWrite readWrite = RenderTextureReadWrite.Default) + { + var modifiedDesc = new RenderTextureDescriptor(m_sourceDescriptor.width, m_sourceDescriptor.height, + m_sourceDescriptor.colorFormat, depthBufferBits); + modifiedDesc.dimension = m_sourceDescriptor.dimension; + modifiedDesc.volumeDepth = m_sourceDescriptor.volumeDepth; + modifiedDesc.vrUsage = m_sourceDescriptor.vrUsage; + modifiedDesc.msaaSamples = m_sourceDescriptor.msaaSamples; + modifiedDesc.memoryless = m_sourceDescriptor.memoryless; + + modifiedDesc.useMipMap = m_sourceDescriptor.useMipMap; + modifiedDesc.autoGenerateMips = m_sourceDescriptor.autoGenerateMips; + modifiedDesc.enableRandomWrite = m_sourceDescriptor.enableRandomWrite; + modifiedDesc.shadowSamplingMode = m_sourceDescriptor.shadowSamplingMode; + + if (colorFormat != RenderTextureFormat.Default) + modifiedDesc.colorFormat = colorFormat; + +#if UNITY_2019_1_OR_NEWER + if (readWrite == RenderTextureReadWrite.sRGB) + modifiedDesc.sRGB = true; + else if (readWrite == RenderTextureReadWrite.Linear) + modifiedDesc.sRGB = false; + else if (readWrite == RenderTextureReadWrite.Default) + modifiedDesc.sRGB = QualitySettings.activeColorSpace != ColorSpace.Gamma; +#else + modifiedDesc.sRGB = readWrite != RenderTextureReadWrite.Linear; +#endif + + return modifiedDesc; + } +#endif + + /// + /// Grabs a temporary render target with the current display size. + /// + /// The command buffer to grab a render target from + /// The shader property name for this texture + /// The number of bits to use for the depth buffer + /// The render texture format + /// The color space conversion mode + /// The texture filtering mode + /// Override the display width; use 0 to disable the override + /// Override the display height; use 0 to disable the override + public void GetScreenSpaceTemporaryRT(CommandBuffer cmd, int nameID, + int depthBufferBits = 0, RenderTextureFormat colorFormat = RenderTextureFormat.Default, RenderTextureReadWrite readWrite = RenderTextureReadWrite.Default, + FilterMode filter = FilterMode.Bilinear, int widthOverride = 0, int heightOverride = 0) + { +#if UNITY_2017_2_OR_NEWER + var desc = GetDescriptor(depthBufferBits, colorFormat, readWrite); + if (widthOverride > 0) + desc.width = widthOverride; + if (heightOverride > 0) + desc.height = heightOverride; + + //intermediates in VR are unchanged + if (stereoActive && desc.dimension == Rendering.TextureDimension.Tex2DArray) + desc.dimension = Rendering.TextureDimension.Tex2D; + + cmd.GetTemporaryRT(nameID, desc, filter); +#else + int actualWidth = width; + int actualHeight = height; + if (widthOverride > 0) + actualWidth = widthOverride; + if (heightOverride > 0) + actualHeight = heightOverride; + + cmd.GetTemporaryRT(nameID, actualWidth, actualHeight, depthBufferBits, filter, colorFormat, readWrite); + // TODO: How to handle MSAA for XR in older versions? Query cam? + // TODO: Pass in vrUsage into the args +#endif + } + + /// + /// Grabs a temporary render target with the current display size. + /// + /// The number of bits to use for the depth buffer + /// The render texture format + /// The color space conversion mode + /// Override the display width; use 0 to disable the override + /// Override the display height; use 0 to disable the override + /// A temporary render target + public RenderTexture GetScreenSpaceTemporaryRT(int depthBufferBits = 0, RenderTextureFormat colorFormat = RenderTextureFormat.Default, + RenderTextureReadWrite readWrite = RenderTextureReadWrite.Default, int widthOverride = 0, int heightOverride = 0) + { +#if UNITY_2017_2_OR_NEWER + var desc = GetDescriptor(depthBufferBits, colorFormat, readWrite); + if (widthOverride > 0) + desc.width = widthOverride; + if (heightOverride > 0) + desc.height = heightOverride; + + return RenderTexture.GetTemporary(desc); +#else + int actualWidth = width; + int actualHeight = height; + if (widthOverride > 0) + actualWidth = widthOverride; + if (heightOverride > 0) + actualHeight = heightOverride; + + return RenderTexture.GetTemporary(actualWidth, actualHeight, depthBufferBits, colorFormat, readWrite); +#endif + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessRenderContext.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessRenderContext.cs.meta new file mode 100644 index 0000000..780771f --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessRenderContext.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b7733f6a6fd11474e8fc598901f90fab +timeCreated: 1488801729 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessResources.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessResources.cs new file mode 100644 index 0000000..afa9237 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessResources.cs @@ -0,0 +1,92 @@ +using System; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// This asset is used to store references to shaders and other resources we might need at + /// runtime without having to use a `Resources` folder. This allows for better memory management, + /// better dependency tracking and better interoperability with asset bundles. + /// + public sealed class PostProcessResources : ScriptableObject + { + [Serializable] + public sealed class Shaders + { + public Shader bloom; + public Shader copy; + public Shader copyStd; + public Shader copyStdFromTexArray; + public Shader copyStdFromDoubleWide; + public Shader discardAlpha; + public Shader depthOfField; + public Shader finalPass; + public Shader grainBaker; + public Shader motionBlur; + public Shader temporalAntialiasing; + public Shader subpixelMorphologicalAntialiasing; + public Shader texture2dLerp; + public Shader uber; + public Shader lut2DBaker; + public Shader lightMeter; + public Shader gammaHistogram; + public Shader waveform; + public Shader vectorscope; + public Shader debugOverlays; + public Shader deferredFog; + public Shader scalableAO; + public Shader multiScaleAO; + public Shader screenSpaceReflections; + + public Shaders Clone() + { + return (Shaders)MemberwiseClone(); + } + } + + [Serializable] + public sealed class ComputeShaders + { + public ComputeShader autoExposure; + public ComputeShader exposureHistogram; + public ComputeShader lut3DBaker; + public ComputeShader texture3dLerp; + public ComputeShader gammaHistogram; + public ComputeShader waveform; + public ComputeShader vectorscope; + public ComputeShader multiScaleAODownsample1; + public ComputeShader multiScaleAODownsample2; + public ComputeShader multiScaleAORender; + public ComputeShader multiScaleAOUpsample; + public ComputeShader gaussianDownsample; + + public ComputeShaders Clone() + { + return (ComputeShaders)MemberwiseClone(); + } + } + + [Serializable] + public sealed class SMAALuts + { + public Texture2D area; + public Texture2D search; + } + + public Texture2D[] blueNoise64; + public Texture2D[] blueNoise256; + public SMAALuts smaaLuts; + public Shaders shaders; + public ComputeShaders computeShaders; + +#if UNITY_EDITOR + public delegate void ChangeHandler(); + public ChangeHandler changeHandler; + + void OnValidate() + { + if (changeHandler != null) + changeHandler(); + } +#endif + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessResources.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessResources.cs.meta new file mode 100644 index 0000000..6111ab7 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessResources.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 30f4b897495c7ad40b2d47143e02aaba +timeCreated: 1493713089 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessVolume.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessVolume.cs new file mode 100644 index 0000000..474ff10 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessVolume.cs @@ -0,0 +1,277 @@ +using System.Collections.Generic; + +namespace UnityEngine.Rendering.PostProcessing +{ + // + // Here's a quick look at the architecture of this framework and how it's integrated into Unity + // (written between versions 5.6 and 2017.1): + // + // Users have to be able to plug in their own effects without having to modify the codebase and + // these custom effects should work out-of-the-box with all the other features we provide + // (volume blending etc). This relies on heavy use of polymorphism, but the only way to get + // the serialization system to work well with polymorphism in Unity is to use ScriptableObjects. + // + // Users can push their custom effects at different (hardcoded) injection points. + // + // Each effect consists of at least two classes (+ shaders): a POD "Settings" class which only + // stores parameters, and a "Renderer" class that holds the rendering logic. Settings are linked + // to renderers using a PostProcessAttribute. These are automatically collected at init time + // using reflection. Settings in this case are ScriptableObjects, we only need to serialize + // these. + // + // We could store these settings object straight into each volume and call it a day, but + // unfortunately there's one feature of Unity that doesn't work well with scene-stored assets: + // prefabs. So we need to store all of these settings in a disk-asset and treat them as + // sub-assets. + // + // Note: We have to use ScriptableObject for everything but these don't work with the Animator + // tool. It's unfortunate but it's the only way to make it easily extensible. On the other + // hand, users can animate post-processing effects using Volumes or straight up scripting. + // + // Volume blending leverages the physics system for distance checks to the nearest point on + // volume colliders. Each volume can have several colliders or any type (cube, mesh...), making + // it quite a powerful feature to use. + // + // Volumes & blending are handled by a singleton manager (see PostProcessManager). + // + // Rendering is handled by a PostProcessLayer component living on the camera, which mean you + // can easily toggle post-processing on & off or change the anti-aliasing type per-camera, + // which is very useful when doing multi-layered camera rendering or any other technique that + // involves multiple-camera setups. This PostProcessLayer component can also filters volumes + // by layers (as in Unity layers) so you can easily choose which volumes should affect the + // camera. + // + // All post-processing shaders MUST use the custom Standard Shader Library bundled with the + // framework. The reason for that is because the codebase is meant to work without any + // modification on the Classic Render Pipelines (Forward, Deferred...) and the upcoming + // Scriptable Render Pipelines (HDPipe, LDPipe...). But these don't have compatible shader + // libraries so instead of writing two code paths we chose to provide a minimalist, generic + // Standard Library geared toward post-processing use. An added bonus to that if users create + // their own post-processing effects using this framework, then they'll work without any + // modification on both Classic and Scriptable Render Pipelines. + // + + /// + /// A post-process volume component holding a post-process profile. + /// + /// +#if UNITY_2018_3_OR_NEWER + [ExecuteAlways] +#else + [ExecuteInEditMode] +#endif + [AddComponentMenu("Rendering/Post-process Volume", 1001)] + public sealed class PostProcessVolume : MonoBehaviour + { + /// + /// The shared profile of this volume. + /// Modifying sharedProfile will change all volumes using this profile, and change + /// profile settings that are stored in the project too. + /// + /// + /// It is not recommended to modify profiles returned by sharedProfile. If you want + /// to modify the profile of a volume use instead. + /// + /// + public PostProcessProfile sharedProfile; + + /// + /// Should this volume be applied to the whole scene? + /// + [Tooltip("Check this box to mark this volume as global. This volume's Profile will be applied to the whole Scene.")] + public bool isGlobal = false; + + /// + /// The outer distance to start blending from. A value of 0 means no blending and the volume + /// overrides will be applied immediatly upon entry. + /// + [Min(0f), Tooltip("The distance (from the attached Collider) to start blending from. A value of 0 means there will be no blending and the Volume overrides will be applied immediatly upon entry to the attached Collider.")] + public float blendDistance = 0f; + + /// + /// The total weight of this volume in the scene. 0 means it won't do anything, 1 means full + /// effect. + /// + [Range(0f, 1f), Tooltip("The total weight of this Volume in the Scene. A value of 0 signifies that it will have no effect, 1 signifies full effect.")] + public float weight = 1f; + + /// + /// The volume priority in the stack. Higher number means higher priority. Negative values + /// are supported. + /// + [Tooltip("The volume priority in the stack. A higher value means higher priority. Negative values are supported.")] + public float priority = 0f; + + /// + /// Returns the first instantiated assigned to the volume. + /// Modifying will change the profile for this volume only. If + /// the profile is used by any other volume, this will clone the shared profile and start + /// using it from now on. + /// + /// + /// This property automatically instantiates the profile and make it unique to this volume + /// so you can safely edit it via scripting at runtime without changing the original asset + /// in the project. + /// Note that if you pass in your own profile, it is your responsibility to destroy it once + /// it's not in use anymore. + /// + /// + /// + public PostProcessProfile profile + { + get + { + if (m_InternalProfile == null) + { + m_InternalProfile = ScriptableObject.CreateInstance(); + + if (sharedProfile != null) + { + foreach (var item in sharedProfile.settings) + { + var itemCopy = Instantiate(item); + m_InternalProfile.settings.Add(itemCopy); + } + } + } + + return m_InternalProfile; + } + set + { + m_InternalProfile = value; + } + } + + internal PostProcessProfile profileRef + { + get + { + return m_InternalProfile == null + ? sharedProfile + : m_InternalProfile; + } + } + + /// + /// Checks if the volume has an intantiated profile or is using a shared profile. + /// + /// true if the profile has been intantiated + /// + /// + public bool HasInstantiatedProfile() + { + return m_InternalProfile != null; + } + + int m_PreviousLayer; + float m_PreviousPriority; + List m_TempColliders; + PostProcessProfile m_InternalProfile; + + void OnEnable() + { + PostProcessManager.instance.Register(this); + m_PreviousLayer = gameObject.layer; + m_TempColliders = new List(); + } + + void OnDisable() + { + PostProcessManager.instance.Unregister(this); + } + + void Update() + { + // Unfortunately we need to track the current layer to update the volume manager in + // real-time as the user could change it at any time in the editor or at runtime. + // Because no event is raised when the layer changes, we have to track it on every + // frame :/ + int layer = gameObject.layer; + if (layer != m_PreviousLayer) + { + PostProcessManager.instance.UpdateVolumeLayer(this, m_PreviousLayer, layer); + m_PreviousLayer = layer; + } + + // Same for `priority`. We could use a property instead, but it doesn't play nice with + // the serialization system. Using a custom Attribute/PropertyDrawer for a property is + // possible but it doesn't work with Undo/Redo in the editor, which makes it useless. + if (priority != m_PreviousPriority) + { + PostProcessManager.instance.SetLayerDirty(layer); + m_PreviousPriority = priority; + } + } + + // TODO: Look into a better volume previsualization system + void OnDrawGizmos() + { + var colliders = m_TempColliders; + GetComponents(colliders); + + if (isGlobal || colliders == null) + return; + +#if UNITY_EDITOR + // Can't access the UnityEditor.Rendering.PostProcessing namespace from here, so + // we'll get the preferred color manually + unchecked + { + int value = UnityEditor.EditorPrefs.GetInt("PostProcessing.Volume.GizmoColor", (int)0x8033cc1a); + Gizmos.color = ColorUtilities.ToRGBA((uint)value); + } +#endif + + var scale = transform.lossyScale; + var invScale = new Vector3(1f / scale.x, 1f / scale.y, 1f / scale.z); + Gizmos.matrix = Matrix4x4.TRS(transform.position, transform.rotation, scale); + + // Draw a separate gizmo for each collider + foreach (var collider in colliders) + { + if (!collider.enabled) + continue; + + // We'll just use scaling as an approximation for volume skin. It's far from being + // correct (and is completely wrong in some cases). Ultimately we'd use a distance + // field or at least a tesselate + push modifier on the collider's mesh to get a + // better approximation, but the current Gizmo system is a bit limited and because + // everything is dynamic in Unity and can be changed at anytime, it's hard to keep + // track of changes in an elegant way (which we'd need to implement a nice cache + // system for generated volume meshes). + var type = collider.GetType(); + + if (type == typeof(BoxCollider)) + { + var c = (BoxCollider)collider; + Gizmos.DrawCube(c.center, c.size); + Gizmos.DrawWireCube(c.center, c.size + invScale * blendDistance * 4f); + } + else if (type == typeof(SphereCollider)) + { + var c = (SphereCollider)collider; + Gizmos.DrawSphere(c.center, c.radius); + Gizmos.DrawWireSphere(c.center, c.radius + invScale.x * blendDistance * 2f); + } + else if (type == typeof(MeshCollider)) + { + var c = (MeshCollider)collider; + + // Only convex mesh colliders are allowed + if (!c.convex) + c.convex = true; + + // Mesh pivot should be centered or this won't work + Gizmos.DrawMesh(c.sharedMesh); + Gizmos.DrawWireMesh(c.sharedMesh, Vector3.zero, Quaternion.identity, Vector3.one + invScale * blendDistance * 4f); + } + + // Nothing for capsule (DrawCapsule isn't exposed in Gizmo), terrain, wheel and + // other colliders... + } + + colliders.Clear(); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessVolume.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessVolume.cs.meta new file mode 100644 index 0000000..6396bcb --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/PostProcessVolume.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 8b9a305e18de0c04dbd257a21cd47087 +timeCreated: 1492775877 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {fileID: 2800000, guid: 5f51e0b22aa8cb84b9f422576ce87ff9, type: 3} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Unity.Postprocessing.Runtime.asmdef b/UnityCaptureSample/Assets/PostProcessing/Runtime/Unity.Postprocessing.Runtime.asmdef new file mode 100644 index 0000000..b326847 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Unity.Postprocessing.Runtime.asmdef @@ -0,0 +1,14 @@ +{ + "name": "Unity.Postprocessing.Runtime", + "references": [], + "optionalUnityReferences": [], + "includePlatforms": [], + "excludePlatforms": [], + "versionDefines": [ + { + "name": "com.unity.render-pipelines.lightweight", + "expression": "1.0.0", + "define": "LWRP_1_0_0_OR_NEWER" + } + ] +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Unity.Postprocessing.Runtime.asmdef.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Unity.Postprocessing.Runtime.asmdef.meta new file mode 100644 index 0000000..43f1ab1 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Unity.Postprocessing.Runtime.asmdef.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d60799ab2a985554ea1a39cd38695018 +AssemblyDefinitionImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils.meta new file mode 100644 index 0000000..4ff2fa6 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 8f735421c1ed8e54c992b4640aca9a89 +folderAsset: yes +timeCreated: 1487868402 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/ColorUtilities.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/ColorUtilities.cs new file mode 100644 index 0000000..d0e4296 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/ColorUtilities.cs @@ -0,0 +1,182 @@ +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// A set of utilities to manipulate color values. + /// + public static class ColorUtilities + { + /// + /// Gets the Y coordinate for the chromaticity of the standard illuminant. + /// + /// The X coordinate + /// The Y coordinate for the chromaticity of the standard illuminant + /// + /// Based on: "An analytical model of chromaticity of the standard illuminant" by Judd et al. + /// http://en.wikipedia.org/wiki/Standard_illuminant#Illuminant_series_D + /// Slightly modified to adjust it with the D65 white point (x=0.31271, y=0.32902). + /// + public static float StandardIlluminantY(float x) + { + return 2.87f * x - 3f * x * x - 0.27509507f; + } + + /// + /// Converts CIExy chromaticity to CAT02 LMS. + /// + /// The X coordinate + /// The Y coordinate + /// The CIExy chromaticity converted to CAT02 LMS + /// + /// See: http://en.wikipedia.org/wiki/LMS_color_space#CAT02 + /// + public static Vector3 CIExyToLMS(float x, float y) + { + float Y = 1f; + float X = Y * x / y; + float Z = Y * (1f - x - y) / y; + + float L = 0.7328f * X + 0.4296f * Y - 0.1624f * Z; + float M = -0.7036f * X + 1.6975f * Y + 0.0061f * Z; + float S = 0.0030f * X + 0.0136f * Y + 0.9834f * Z; + + return new Vector3(L, M, S); + } + + /// + /// Computes the color balance coefficients in the CAT02 LMS space. + /// + /// The color temperature offset + /// The color tint offset (green/magenta) + /// The color balance coefficients in the CAT02 LMS space. + public static Vector3 ComputeColorBalance(float temperature, float tint) + { + // Range ~[-1.67;1.67] works best + float t1 = temperature / 60f; + float t2 = tint / 60f; + + // Get the CIE xy chromaticity of the reference white point. + // Note: 0.31271 = x value on the D65 white point + float x = 0.31271f - t1 * (t1 < 0f ? 0.1f : 0.05f); + float y = StandardIlluminantY(x) + t2 * 0.05f; + + // Calculate the coefficients in the LMS space. + var w1 = new Vector3(0.949237f, 1.03542f, 1.08728f); // D65 white point + var w2 = CIExyToLMS(x, y); + return new Vector3(w1.x / w2.x, w1.y / w2.y, w1.z / w2.z); + } + + /// + /// Converts trackball values to Lift coefficients. + /// + /// The trackball color value (with offset in the W component) + /// The converted trackball value + public static Vector3 ColorToLift(Vector4 color) + { + // Shadows + var S = new Vector3(color.x, color.y, color.z); + float lumLift = S.x * 0.2126f + S.y * 0.7152f + S.z * 0.0722f; + S = new Vector3(S.x - lumLift, S.y - lumLift, S.z - lumLift); + + float liftOffset = color.w; + return new Vector3(S.x + liftOffset, S.y + liftOffset, S.z + liftOffset); + } + + /// + /// Converts trackball values to inverted Gamma coefficients. + /// + /// The trackball color value (with offset in the W component) + /// The converted trackball value + public static Vector3 ColorToInverseGamma(Vector4 color) + { + // Midtones + var M = new Vector3(color.x, color.y, color.z); + float lumGamma = M.x * 0.2126f + M.y * 0.7152f + M.z * 0.0722f; + M = new Vector3(M.x - lumGamma, M.y - lumGamma, M.z - lumGamma); + + float gammaOffset = color.w + 1f; + return new Vector3( + 1f / Mathf.Max(M.x + gammaOffset, 1e-03f), + 1f / Mathf.Max(M.y + gammaOffset, 1e-03f), + 1f / Mathf.Max(M.z + gammaOffset, 1e-03f) + ); + } + + /// + /// Converts trackball values to Gain coefficients. + /// + /// The trackball color value (with offset in the W component) + /// The converted trackball value + public static Vector3 ColorToGain(Vector4 color) + { + // Highlights + var H = new Vector3(color.x, color.y, color.z); + float lumGain = H.x * 0.2126f + H.y * 0.7152f + H.z * 0.0722f; + H = new Vector3(H.x - lumGain, H.y - lumGain, H.z - lumGain); + + float gainOffset = color.w + 1f; + return new Vector3(H.x + gainOffset, H.y + gainOffset, H.z + gainOffset); + } + + // Alexa LogC converters (El 1000) + // See http://www.vocas.nl/webfm_send/964 + const float logC_cut = 0.011361f; + const float logC_a = 5.555556f; + const float logC_b = 0.047996f; + const float logC_c = 0.244161f; + const float logC_d = 0.386036f; + const float logC_e = 5.301883f; + const float logC_f = 0.092819f; + + /// + /// Converts a LogC (Alexa El 1000) value to linear. + /// + /// A LogC (Alexa El 1000) value + /// The input convert to linear + public static float LogCToLinear(float x) + { + return x > logC_e * logC_cut + logC_f + ? (Mathf.Pow(10f, (x - logC_d) / logC_c) - logC_b) / logC_a + : (x - logC_f) / logC_e; + } + + /// + /// Converts a linear value to LogC (Alexa El 1000). + /// + /// A linear value + /// The input value converted to LogC + public static float LinearToLogC(float x) + { + return x > logC_cut + ? logC_c * Mathf.Log10(logC_a * x + logC_b) + logC_d + : logC_e * x + logC_f; + } + + /// + /// Converts a color to its ARGB hexadecimal representation. + /// + /// The color to convert + /// The color converted to its ARGB hexadecimal representation + public static uint ToHex(Color c) + { + return ((uint)(c.a * 255) << 24) + | ((uint)(c.r * 255) << 16) + | ((uint)(c.g * 255) << 8) + | ((uint)(c.b * 255)); + } + + /// + /// Converts an ARGB hexadecimal input to a color structure. + /// + /// The hexadecimal input + /// The ARGB hexadecimal input converted to a color structure. + public static Color ToRGBA(uint hex) + { + return new Color( + ((hex >> 16) & 0xff) / 255f, // r + ((hex >> 8) & 0xff) / 255f, // g + ((hex ) & 0xff) / 255f, // b + ((hex >> 24) & 0xff) / 255f // a + ); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/ColorUtilities.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/ColorUtilities.cs.meta new file mode 100644 index 0000000..b15a270 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/ColorUtilities.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c3c112f1ddeedfe45839158cc4b148d4 +timeCreated: 1494794407 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/HableCurve.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/HableCurve.cs new file mode 100644 index 0000000..7528e46 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/HableCurve.cs @@ -0,0 +1,394 @@ +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// A raw implementation of John Hable's artist-friendly tonemapping curve. + /// See http://filmicworlds.com/blog/filmic-tonemapping-with-piecewise-power-curves/ + /// + public class HableCurve + { + class Segment + { + public float offsetX; + public float offsetY; + public float scaleX; + public float scaleY; + public float lnA; + public float B; + + public float Eval(float x) + { + float x0 = (x - offsetX) * scaleX; + float y0 = 0f; + + // log(0) is undefined but our function should evaluate to 0. There are better ways to handle this, + // but it's doing it the slow way here for clarity. + if (x0 > 0) + y0 = Mathf.Exp(lnA + B * Mathf.Log(x0)); + + return y0 * scaleY + offsetY; + } + } + + struct DirectParams + { + internal float x0; + internal float y0; + internal float x1; + internal float y1; + internal float W; + + internal float overshootX; + internal float overshootY; + + internal float gamma; + } + + /// + /// The curve's white point. + /// + public float whitePoint { get; private set; } + + /// + /// The inverse of the curve's white point. + /// + public float inverseWhitePoint { get; private set; } + + internal float x0 { get; private set; } + internal float x1 { get; private set; } + + // Toe, mid, shoulder + readonly Segment[] m_Segments = new Segment[3]; + + /// + /// Creates a new curve. + /// + public HableCurve() + { + for (int i = 0; i < 3; i++) + m_Segments[i] = new Segment(); + + uniforms = new Uniforms(this); + } + + /// + /// Evaluates a given point on the curve. + /// + /// The point within the curve to evaluate (on the horizontal axis) + /// The value of the curve, at the point specified + public float Eval(float x) + { + float normX = x * inverseWhitePoint; + int index = (normX < x0) ? 0 : ((normX < x1) ? 1 : 2); + var segment = m_Segments[index]; + float ret = segment.Eval(normX); + return ret; + } + + /// + /// Initializes the curve with given settings. + /// + /// Affects the transition between the toe and the mid section of + /// the curve. A value of 0 means no toe, a value of 1 means a very hard transition + /// Affects how much of the dynamic range is in the toe. With a + /// small value, the toe will be very short and quickly transition into the linear section, + /// and with a longer value having a longer toe + /// Affects the transition between the mid section and the + /// shoulder of the curve. A value of 0 means no shoulder, a value of 1 means a very hard + /// transition + /// Affects how many F-stops (EV) to add to the dynamic range + /// of the curve + /// Affects how much overshoot to add to the shoulder + /// Applies a gamma function to the curve + public void Init(float toeStrength, float toeLength, float shoulderStrength, float shoulderLength, float shoulderAngle, float gamma) + { + var dstParams = new DirectParams(); + + // This is not actually the display gamma. It's just a UI space to avoid having to + // enter small numbers for the input. + const float kPerceptualGamma = 2.2f; + + // Constraints + { + toeLength = Mathf.Pow(Mathf.Clamp01(toeLength), kPerceptualGamma); + toeStrength = Mathf.Clamp01(toeStrength); + shoulderAngle = Mathf.Clamp01(shoulderAngle); + shoulderStrength = Mathf.Clamp(shoulderStrength, 1e-5f, 1f - 1e-5f); + shoulderLength = Mathf.Max(0f, shoulderLength); + gamma = Mathf.Max(1e-5f, gamma); + } + + // Apply base params + { + // Toe goes from 0 to 0.5 + float x0 = toeLength * 0.5f; + float y0 = (1f - toeStrength) * x0; // Lerp from 0 to x0 + + float remainingY = 1f - y0; + + float initialW = x0 + remainingY; + + float y1_offset = (1f - shoulderStrength) * remainingY; + float x1 = x0 + y1_offset; + float y1 = y0 + y1_offset; + + // Filmic shoulder strength is in F stops + float extraW = RuntimeUtilities.Exp2(shoulderLength) - 1f; + + float W = initialW + extraW; + + dstParams.x0 = x0; + dstParams.y0 = y0; + dstParams.x1 = x1; + dstParams.y1 = y1; + dstParams.W = W; + + // Bake the linear to gamma space conversion + dstParams.gamma = gamma; + } + + dstParams.overshootX = (dstParams.W * 2f) * shoulderAngle * shoulderLength; + dstParams.overshootY = 0.5f * shoulderAngle * shoulderLength; + + InitSegments(dstParams); + } + + void InitSegments(DirectParams srcParams) + { + var paramsCopy = srcParams; + + whitePoint = srcParams.W; + inverseWhitePoint = 1f / srcParams.W; + + // normalize params to 1.0 range + paramsCopy.W = 1f; + paramsCopy.x0 /= srcParams.W; + paramsCopy.x1 /= srcParams.W; + paramsCopy.overshootX = srcParams.overshootX / srcParams.W; + + float toeM = 0f; + float shoulderM = 0f; + { + float m, b; + AsSlopeIntercept(out m, out b, paramsCopy.x0, paramsCopy.x1, paramsCopy.y0, paramsCopy.y1); + + float g = srcParams.gamma; + + // Base function of linear section plus gamma is + // y = (mx+b)^g + // + // which we can rewrite as + // y = exp(g*ln(m) + g*ln(x+b/m)) + // + // and our evaluation function is (skipping the if parts): + /* + float x0 = (x - offsetX) * scaleX; + y0 = exp(m_lnA + m_B*log(x0)); + return y0*scaleY + m_offsetY; + */ + + var midSegment = m_Segments[1]; + midSegment.offsetX = -(b / m); + midSegment.offsetY = 0f; + midSegment.scaleX = 1f; + midSegment.scaleY = 1f; + midSegment.lnA = g * Mathf.Log(m); + midSegment.B = g; + + toeM = EvalDerivativeLinearGamma(m, b, g, paramsCopy.x0); + shoulderM = EvalDerivativeLinearGamma(m, b, g, paramsCopy.x1); + + // apply gamma to endpoints + paramsCopy.y0 = Mathf.Max(1e-5f, Mathf.Pow(paramsCopy.y0, paramsCopy.gamma)); + paramsCopy.y1 = Mathf.Max(1e-5f, Mathf.Pow(paramsCopy.y1, paramsCopy.gamma)); + + paramsCopy.overshootY = Mathf.Pow(1f + paramsCopy.overshootY, paramsCopy.gamma) - 1f; + } + + this.x0 = paramsCopy.x0; + this.x1 = paramsCopy.x1; + + // Toe section + { + var toeSegment = m_Segments[0]; + toeSegment.offsetX = 0; + toeSegment.offsetY = 0f; + toeSegment.scaleX = 1f; + toeSegment.scaleY = 1f; + + float lnA, B; + SolveAB(out lnA, out B, paramsCopy.x0, paramsCopy.y0, toeM); + toeSegment.lnA = lnA; + toeSegment.B = B; + } + + // Shoulder section + { + // Use the simple version that is usually too flat + var shoulderSegment = m_Segments[2]; + + float x0 = (1f + paramsCopy.overshootX) - paramsCopy.x1; + float y0 = (1f + paramsCopy.overshootY) - paramsCopy.y1; + + float lnA, B; + SolveAB(out lnA, out B, x0, y0, shoulderM); + + shoulderSegment.offsetX = (1f + paramsCopy.overshootX); + shoulderSegment.offsetY = (1f + paramsCopy.overshootY); + + shoulderSegment.scaleX = -1f; + shoulderSegment.scaleY = -1f; + shoulderSegment.lnA = lnA; + shoulderSegment.B = B; + } + + // Normalize so that we hit 1.0 at our white point. We wouldn't have do this if we + // skipped the overshoot part. + { + // Evaluate shoulder at the end of the curve + float scale = m_Segments[2].Eval(1f); + float invScale = 1f / scale; + + m_Segments[0].offsetY *= invScale; + m_Segments[0].scaleY *= invScale; + + m_Segments[1].offsetY *= invScale; + m_Segments[1].scaleY *= invScale; + + m_Segments[2].offsetY *= invScale; + m_Segments[2].scaleY *= invScale; + } + } + + // Find a function of the form: + // f(x) = e^(lnA + Bln(x)) + // where + // f(0) = 0; not really a constraint + // f(x0) = y0 + // f'(x0) = m + void SolveAB(out float lnA, out float B, float x0, float y0, float m) + { + B = (m * x0) / y0; + lnA = Mathf.Log(y0) - B * Mathf.Log(x0); + } + + // Convert to y=mx+b + void AsSlopeIntercept(out float m, out float b, float x0, float x1, float y0, float y1) + { + float dy = (y1 - y0); + float dx = (x1 - x0); + + if (dx == 0) + m = 1f; + else + m = dy / dx; + + b = y0 - x0 * m; + } + + // f(x) = (mx+b)^g + // f'(x) = gm(mx+b)^(g-1) + float EvalDerivativeLinearGamma(float m, float b, float g, float x) + { + float ret = g * m * Mathf.Pow(m * x + b, g - 1f); + return ret; + } + + /// + /// Utility class to retrieve curve values for shader evaluation. + /// + public class Uniforms + { + HableCurve parent; + + internal Uniforms(HableCurve parent) + { + this.parent = parent; + } + + /// + /// A pre-built holding: (inverseWhitePoint, x0, x1, 0). + /// + public Vector4 curve + { + get { return new Vector4(parent.inverseWhitePoint, parent.x0, parent.x1, 0f); } + } + + /// + /// A pre-built holding: (toe.offsetX, toe.offsetY, toe.scaleX, toe.scaleY). + /// + public Vector4 toeSegmentA + { + get + { + var toe = parent.m_Segments[0]; + return new Vector4(toe.offsetX, toe.offsetY, toe.scaleX, toe.scaleY); + } + } + + /// + /// A pre-built holding: (toe.lnA, toe.B, 0, 0). + /// + public Vector4 toeSegmentB + { + get + { + var toe = parent.m_Segments[0]; + return new Vector4(toe.lnA, toe.B, 0f, 0f); + } + } + + /// + /// A pre-built holding: (mid.offsetX, mid.offsetY, mid.scaleX, mid.scaleY). + /// + public Vector4 midSegmentA + { + get + { + var mid = parent.m_Segments[1]; + return new Vector4(mid.offsetX, mid.offsetY, mid.scaleX, mid.scaleY); + } + } + + /// + /// A pre-built holding: (mid.lnA, mid.B, 0, 0). + /// + public Vector4 midSegmentB + { + get + { + var mid = parent.m_Segments[1]; + return new Vector4(mid.lnA, mid.B, 0f, 0f); + } + } + + /// + /// A pre-built holding: (toe.offsetX, toe.offsetY, toe.scaleX, toe.scaleY). + /// + public Vector4 shoSegmentA + { + get + { + var sho = parent.m_Segments[2]; + return new Vector4(sho.offsetX, sho.offsetY, sho.scaleX, sho.scaleY); + } + } + + /// + /// A pre-built holding: (sho.lnA, sho.B, 0, 0). + /// + public Vector4 shoSegmentB + { + get + { + var sho = parent.m_Segments[2]; + return new Vector4(sho.lnA, sho.B, 0f, 0f); + } + } + } + + /// + /// The builtin instance for this curve. + /// + public readonly Uniforms uniforms; + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/HableCurve.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/HableCurve.cs.meta new file mode 100644 index 0000000..7ee502c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/HableCurve.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 599b4e72f6c212d40819cfde14826671 +timeCreated: 1494795842 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/HaltonSeq.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/HaltonSeq.cs new file mode 100644 index 0000000..ab29694 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/HaltonSeq.cs @@ -0,0 +1,30 @@ +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// Halton sequence utility. + /// + public static class HaltonSeq + { + /// + /// Gets a value from the Halton sequence for a given index and radix. + /// + /// The sequence index + /// The sequence base + /// A number from the Halton sequence between 0 and 1. + public static float Get(int index, int radix) + { + float result = 0f; + float fraction = 1f / (float)radix; + + while (index > 0) + { + result += (float)(index % radix) * fraction; + + index /= radix; + fraction /= (float)radix; + } + + return result; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/HaltonSeq.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/HaltonSeq.cs.meta new file mode 100644 index 0000000..8cff6e3 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/HaltonSeq.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 616483d5bdbf13c43ae1b005134b8c11 +timeCreated: 1493633892 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/LogHistogram.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/LogHistogram.cs new file mode 100644 index 0000000..b16a111 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/LogHistogram.cs @@ -0,0 +1,62 @@ +namespace UnityEngine.Rendering.PostProcessing +{ + internal sealed class LogHistogram + { + public const int rangeMin = -9; // ev + public const int rangeMax = 9; // ev + + // Don't forget to update 'ExposureHistogram.hlsl' if you change these values ! + const int k_Bins = 128; + + public ComputeBuffer data { get; private set; } + + public void Generate(PostProcessRenderContext context) + { + if (data == null) + data = new ComputeBuffer(k_Bins, sizeof(uint)); + + uint threadX, threadY, threadZ; + var scaleOffsetRes = GetHistogramScaleOffsetRes(context); + var compute = context.resources.computeShaders.exposureHistogram; + var cmd = context.command; + cmd.BeginSample("LogHistogram"); + + // Clear the buffer on every frame as we use it to accumulate luminance values on each frame + int kernel = compute.FindKernel("KEyeHistogramClear"); + cmd.SetComputeBufferParam(compute, kernel, "_HistogramBuffer", data); + compute.GetKernelThreadGroupSizes(kernel, out threadX, out threadY, out threadZ); + cmd.DispatchCompute(compute, kernel, Mathf.CeilToInt(k_Bins / (float)threadX), 1, 1); + + // Get a log histogram + kernel = compute.FindKernel("KEyeHistogram"); + cmd.SetComputeBufferParam(compute, kernel, "_HistogramBuffer", data); + cmd.SetComputeTextureParam(compute, kernel, "_Source", context.source); + cmd.SetComputeVectorParam(compute, "_ScaleOffsetRes", scaleOffsetRes); + + compute.GetKernelThreadGroupSizes(kernel, out threadX, out threadY, out threadZ); + cmd.DispatchCompute(compute, kernel, + Mathf.CeilToInt(scaleOffsetRes.z / 2f / threadX), + Mathf.CeilToInt(scaleOffsetRes.w / 2f / threadY), + 1 + ); + + cmd.EndSample("LogHistogram"); + } + + public Vector4 GetHistogramScaleOffsetRes(PostProcessRenderContext context) + { + float diff = rangeMax - rangeMin; + float scale = 1f / diff; + float offset = -rangeMin * scale; + return new Vector4(scale, offset, context.width, context.height); + } + + public void Release() + { + if (data != null) + data.Release(); + + data = null; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/LogHistogram.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/LogHistogram.cs.meta new file mode 100644 index 0000000..1b01a15 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/LogHistogram.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a4b23776a3150a74ea5ad6271a3d8f15 +timeCreated: 1496324052 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/MeshUtilities.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/MeshUtilities.cs new file mode 100644 index 0000000..08e5bba --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/MeshUtilities.cs @@ -0,0 +1,58 @@ +using System; +using System.Collections.Generic; +using UnityEngine.Assertions; + +namespace UnityEngine.Rendering.PostProcessing +{ + static class MeshUtilities + { + static Dictionary s_Primitives; + static Dictionary s_ColliderPrimitives; + + static MeshUtilities() + { + s_Primitives = new Dictionary(); + s_ColliderPrimitives = new Dictionary + { + { typeof(BoxCollider), PrimitiveType.Cube }, + { typeof(SphereCollider), PrimitiveType.Sphere }, + { typeof(CapsuleCollider), PrimitiveType.Capsule } + }; + } + + internal static Mesh GetColliderMesh(Collider collider) + { + var type = collider.GetType(); + + if (type == typeof(MeshCollider)) + return ((MeshCollider)collider).sharedMesh; + + Assert.IsTrue(s_ColliderPrimitives.ContainsKey(type), "Unknown collider"); + return GetPrimitive(s_ColliderPrimitives[type]); + } + + internal static Mesh GetPrimitive(PrimitiveType primitiveType) + { + Mesh mesh; + + if (!s_Primitives.TryGetValue(primitiveType, out mesh)) + { + mesh = GetBuiltinMesh(primitiveType); + s_Primitives.Add(primitiveType, mesh); + } + + return mesh; + } + + // (Not pretty) hack to get meshes from `unity default resources` in user land + // What it does is create a new GameObject using the CreatePrimitive utility, retrieve its + // mesh and discard it... + static Mesh GetBuiltinMesh(PrimitiveType primitiveType) + { + var gameObject = GameObject.CreatePrimitive(primitiveType); + var mesh = gameObject.GetComponent().sharedMesh; + RuntimeUtilities.Destroy(gameObject); + return mesh; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/MeshUtilities.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/MeshUtilities.cs.meta new file mode 100644 index 0000000..7405ea4 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/MeshUtilities.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4b42fa3a7c4baed49bb4f6a56dadc03f +timeCreated: 1488548727 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/PropertySheet.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/PropertySheet.cs new file mode 100644 index 0000000..9dcc1f8 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/PropertySheet.cs @@ -0,0 +1,58 @@ +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// The post-processing stack is entirely built around the use of + /// and as such requires the use of to properly deal with + /// the deferred nature of . + /// This wrapper abstracts the creation and destruction of + /// and to make the process easier. + /// + /// + public sealed class PropertySheet + { + /// + /// The actual to fill. + /// + public MaterialPropertyBlock properties { get; private set; } + + internal Material material { get; private set; } + + internal PropertySheet(Material material) + { + this.material = material; + properties = new MaterialPropertyBlock(); + } + + /// + /// Clears all keywords set on the source material. + /// + public void ClearKeywords() + { + material.shaderKeywords = null; + } + + /// + /// Enableds a given keyword on the source material. + /// + /// The keyword to enable + public void EnableKeyword(string keyword) + { + material.EnableKeyword(keyword); + } + + /// + /// Disables a given keyword on the source material. + /// + /// The keyword to disable + public void DisableKeyword(string keyword) + { + material.DisableKeyword(keyword); + } + + internal void Release() + { + RuntimeUtilities.Destroy(material); + material = null; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/PropertySheet.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/PropertySheet.cs.meta new file mode 100644 index 0000000..0ecf547 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/PropertySheet.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4da61023839a0604d834e6ffde67ad52 +timeCreated: 1489745652 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/PropertySheetFactory.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/PropertySheetFactory.cs new file mode 100644 index 0000000..b707009 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/PropertySheetFactory.cs @@ -0,0 +1,89 @@ +using System; +using System.Collections.Generic; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// A factory for easy creation and destruction of + /// and . + /// + /// + public sealed class PropertySheetFactory + { + readonly Dictionary m_Sheets; + + /// + /// Creates a new factory. + /// + public PropertySheetFactory() + { + m_Sheets = new Dictionary(); + } + + /// + /// Gets a for a given shader identifier. Sheets are recycled + /// so you can safely call this method on every frame. + /// + /// The name of the shader to retrieve a sheet for + /// A sheet for the given shader + /// + /// This method will not work when loading post-processing from an asset bundle. For this + /// reason it is recommended to use instead. + /// + /// Thrown if the shader is invalid + [Obsolete("Use PropertySheet.Get(Shader) with a direct reference to the Shader instead.")] + public PropertySheet Get(string shaderName) + { + var shader = Shader.Find(shaderName); + + if (shader == null) + throw new ArgumentException(string.Format("Invalid shader ({0})", shaderName)); + + return Get(shader); + } + + /// + /// Gets a for a given shader instance. Sheets are recycled so + /// you can safely call this method on every frame. + /// + /// A shader instance to retrieve a sheet for + /// A sheet for the given shader + /// Thrown if the shader is invalid + public PropertySheet Get(Shader shader) + { + PropertySheet sheet; + + if (shader == null) + throw new ArgumentException(string.Format("Invalid shader ({0})", shader)); + + if (m_Sheets.TryGetValue(shader, out sheet)) + return sheet; + + var shaderName = shader.name; + var material = new Material(shader) + { + name = string.Format("PostProcess - {0}", shaderName.Substring(shaderName.LastIndexOf('/') + 1)), + hideFlags = HideFlags.DontSave + }; + + sheet = new PropertySheet(material); + m_Sheets.Add(shader, sheet); + return sheet; + } + + /// + /// Releases all resources used by this factory. + /// + /// + /// You don't need to call this method when using the builtin factory from + /// . + /// + public void Release() + { + foreach (var sheet in m_Sheets.Values) + sheet.Release(); + + m_Sheets.Clear(); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/PropertySheetFactory.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/PropertySheetFactory.cs.meta new file mode 100644 index 0000000..52eb27a --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/PropertySheetFactory.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e034505fdac568a45af53ec1cdb0fbb3 +timeCreated: 1489748399 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/RuntimeUtilities.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/RuntimeUtilities.cs new file mode 100644 index 0000000..d97d313 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/RuntimeUtilities.cs @@ -0,0 +1,1229 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Linq.Expressions; +using System.Reflection; +using System.Text; +using UnityEngine.Assertions; + +#if UNITY_EDITOR +using UnityEditor; +#endif + +namespace UnityEngine.Rendering.PostProcessing +{ + using SceneManagement; + using UnityObject = UnityEngine.Object; + using LoadAction = RenderBufferLoadAction; + using StoreAction = RenderBufferStoreAction; + + /// + /// A set of runtime utilities used by the post-processing stack. + /// + public static class RuntimeUtilities + { + #region Textures + + static Texture2D m_WhiteTexture; + + /// + /// A 1x1 white texture. + /// + /// + /// This texture is only created once and recycled afterward. You shouldn't modify it. + /// + public static Texture2D whiteTexture + { + get + { + if (m_WhiteTexture == null) + { + m_WhiteTexture = new Texture2D(1, 1, TextureFormat.ARGB32, false) { name = "White Texture" }; + m_WhiteTexture.SetPixel(0, 0, Color.white); + m_WhiteTexture.Apply(); + } + + return m_WhiteTexture; + } + } + + static Texture3D m_WhiteTexture3D; + + /// + /// A 1x1x1 white texture. + /// + /// + /// This texture is only created once and recycled afterward. You shouldn't modify it. + /// + public static Texture3D whiteTexture3D + { + get + { + if (m_WhiteTexture3D == null) + { + m_WhiteTexture3D = new Texture3D(1, 1, 1, TextureFormat.ARGB32, false) { name = "White Texture 3D" }; + m_WhiteTexture3D.SetPixels(new Color[] { Color.white }); + m_WhiteTexture3D.Apply(); + } + + return m_WhiteTexture3D; + } + } + + static Texture2D m_BlackTexture; + + /// + /// A 1x1 black texture. + /// + /// + /// This texture is only created once and recycled afterward. You shouldn't modify it. + /// + public static Texture2D blackTexture + { + get + { + if (m_BlackTexture == null) + { + m_BlackTexture = new Texture2D(1, 1, TextureFormat.ARGB32, false) { name = "Black Texture" }; + m_BlackTexture.SetPixel(0, 0, Color.black); + m_BlackTexture.Apply(); + } + + return m_BlackTexture; + } + } + + static Texture3D m_BlackTexture3D; + + /// + /// A 1x1x1 black texture. + /// + /// + /// This texture is only created once and recycled afterward. You shouldn't modify it. + /// + public static Texture3D blackTexture3D + { + get + { + if (m_BlackTexture3D == null) + { + m_BlackTexture3D = new Texture3D(1, 1, 1, TextureFormat.ARGB32, false) { name = "Black Texture 3D" }; + m_BlackTexture3D.SetPixels(new Color[] { Color.black }); + m_BlackTexture3D.Apply(); + } + + return m_BlackTexture3D; + } + } + + static Texture2D m_TransparentTexture; + + /// + /// A 1x1 transparent texture. + /// + /// + /// This texture is only created once and recycled afterward. You shouldn't modify it. + /// + public static Texture2D transparentTexture + { + get + { + if (m_TransparentTexture == null) + { + m_TransparentTexture = new Texture2D(1, 1, TextureFormat.ARGB32, false) { name = "Transparent Texture" }; + m_TransparentTexture.SetPixel(0, 0, Color.clear); + m_TransparentTexture.Apply(); + } + + return m_TransparentTexture; + } + } + + static Texture3D m_TransparentTexture3D; + + /// + /// A 1x1x1 transparent texture. + /// + /// + /// This texture is only created once and recycled afterward. You shouldn't modify it. + /// + public static Texture3D transparentTexture3D + { + get + { + if (m_TransparentTexture3D == null) + { + m_TransparentTexture3D = new Texture3D(1, 1, 1, TextureFormat.ARGB32, false) { name = "Transparent Texture 3D" }; + m_TransparentTexture3D.SetPixels(new Color[] { Color.clear }); + m_TransparentTexture3D.Apply(); + } + + return m_TransparentTexture3D; + } + } + + static Dictionary m_LutStrips = new Dictionary(); + + /// + /// Gets a 2D lookup table for color grading use. Its size will be width = height * height. + /// + /// The height of the lookup table + /// A 2D lookup table + /// + /// Lookup tables are recycled and only created once per size. You shouldn't modify them. + /// + public static Texture2D GetLutStrip(int size) + { + Texture2D texture; + if (!m_LutStrips.TryGetValue(size, out texture)) + { + int width = size * size; + int height = size; + var pixels = new Color[width * height]; + float inv = 1f / (size - 1f); + + for (int z = 0; z < size; z++) + { + var offset = z * size; + var b = z * inv; + + for (int y = 0; y < size; y++) + { + var g = y * inv; + + for (int x = 0; x < size; x++) + { + var r = x * inv; + pixels[y * width + offset + x] = new Color(r, g, b); + } + } + } + + var format = TextureFormat.RGBAHalf; + if (!format.IsSupported()) + format = TextureFormat.ARGB32; + + texture = new Texture2D(size * size, size, format, false, true) + { + name = "Strip Lut" + size, + hideFlags = HideFlags.DontSave, + filterMode = FilterMode.Bilinear, + wrapMode = TextureWrapMode.Clamp, + anisoLevel = 0 + }; + texture.SetPixels(pixels); + texture.Apply(); + m_LutStrips.Add(size, texture); + } + + return texture; + } + + #endregion + + #region Rendering + + internal static PostProcessResources s_Resources; + + static Mesh s_FullscreenTriangle; + + /// + /// A fullscreen triangle mesh. + /// + public static Mesh fullscreenTriangle + { + get + { + if (s_FullscreenTriangle != null) + return s_FullscreenTriangle; + + s_FullscreenTriangle = new Mesh { name = "Fullscreen Triangle" }; + + // Because we have to support older platforms (GLES2/3, DX9 etc) we can't do all of + // this directly in the vertex shader using vertex ids :( + s_FullscreenTriangle.SetVertices(new List + { + new Vector3(-1f, -1f, 0f), + new Vector3(-1f, 3f, 0f), + new Vector3( 3f, -1f, 0f) + }); + s_FullscreenTriangle.SetIndices(new [] { 0, 1, 2 }, MeshTopology.Triangles, 0, false); + s_FullscreenTriangle.UploadMeshData(false); + + return s_FullscreenTriangle; + } + } + + static Material s_CopyStdMaterial; + + /// + /// A simple copy material to use with the builtin pipelines. + /// + public static Material copyStdMaterial + { + get + { + if (s_CopyStdMaterial != null) + return s_CopyStdMaterial; + + Assert.IsNotNull(s_Resources); + var shader = s_Resources.shaders.copyStd; + s_CopyStdMaterial = new Material(shader) + { + name = "PostProcess - CopyStd", + hideFlags = HideFlags.HideAndDontSave + }; + + return s_CopyStdMaterial; + } + } + + static Material s_CopyStdFromDoubleWideMaterial; + + /// + /// A double-wide copy material to use with VR and the builtin pipelines. + /// + public static Material copyStdFromDoubleWideMaterial + { + get + { + if (s_CopyStdFromDoubleWideMaterial != null) + return s_CopyStdFromDoubleWideMaterial; + + Assert.IsNotNull(s_Resources); + var shader = s_Resources.shaders.copyStdFromDoubleWide; + s_CopyStdFromDoubleWideMaterial = new Material(shader) + { + name = "PostProcess - CopyStdFromDoubleWide", + hideFlags = HideFlags.HideAndDontSave + }; + + return s_CopyStdFromDoubleWideMaterial; + } + } + + static Material s_CopyMaterial; + + /// + /// A simple copy material independent from the rendering pipeline. + /// + public static Material copyMaterial + { + get + { + if (s_CopyMaterial != null) + return s_CopyMaterial; + + Assert.IsNotNull(s_Resources); + var shader = s_Resources.shaders.copy; + s_CopyMaterial = new Material(shader) + { + name = "PostProcess - Copy", + hideFlags = HideFlags.HideAndDontSave + }; + + return s_CopyMaterial; + } + } + + static Material s_CopyFromTexArrayMaterial; + + /// + /// A copy material with a texture array slice as a source for the builtin pipelines. + /// + public static Material copyFromTexArrayMaterial + { + get + { + if (s_CopyFromTexArrayMaterial != null) + return s_CopyFromTexArrayMaterial; + + Assert.IsNotNull(s_Resources); + var shader = s_Resources.shaders.copyStdFromTexArray; + s_CopyFromTexArrayMaterial = new Material(shader) + { + name = "PostProcess - CopyFromTexArray", + hideFlags = HideFlags.HideAndDontSave + }; + + return s_CopyFromTexArrayMaterial; + } + } + + static PropertySheet s_CopySheet; + + /// + /// A pre-configured for . + /// + public static PropertySheet copySheet + { + get + { + if (s_CopySheet == null) + s_CopySheet = new PropertySheet(copyMaterial); + + return s_CopySheet; + } + } + + static PropertySheet s_CopyFromTexArraySheet; + + /// + /// A pre-configured for . + /// + public static PropertySheet copyFromTexArraySheet + { + get + { + if (s_CopyFromTexArraySheet == null) + s_CopyFromTexArraySheet = new PropertySheet(copyFromTexArrayMaterial); + + return s_CopyFromTexArraySheet; + } + } + + /// + /// Sets the current render target using specified . + /// + /// The command buffer to set the render target on + /// The render target to set + /// The load action + /// The store action + /// + /// are only used on Unity 2018.2 or newer. + /// + public static void SetRenderTargetWithLoadStoreAction(this CommandBuffer cmd, RenderTargetIdentifier rt, RenderBufferLoadAction loadAction, RenderBufferStoreAction storeAction) + { + #if UNITY_2018_2_OR_NEWER + cmd.SetRenderTarget(rt, loadAction, storeAction); + #else + cmd.SetRenderTarget(rt); + #endif + } + + /// + /// Sets the current render target and its depth using specified . + /// + /// The command buffer to set the render target on + /// The render target to set as color + /// The load action for the color render target + /// The store action for the color render target + /// The render target to set as depth + /// The load action for the depth render target + /// The store action for the depth render target + public static void SetRenderTargetWithLoadStoreAction(this CommandBuffer cmd, + RenderTargetIdentifier color, RenderBufferLoadAction colorLoadAction, RenderBufferStoreAction colorStoreAction, + RenderTargetIdentifier depth, RenderBufferLoadAction depthLoadAction, RenderBufferStoreAction depthStoreAction) + { + #if UNITY_2018_2_OR_NEWER + cmd.SetRenderTarget(color, colorLoadAction, colorStoreAction, depth, depthLoadAction, depthStoreAction); + #else + cmd.SetRenderTarget(color, depth); + #endif + } + + /// + /// Does a copy of source to destination using a fullscreen triangle. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + /// Should the destination target be cleared? + /// An optional viewport to consider for the blit + public static void BlitFullscreenTriangle(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, bool clear = false, Rect? viewport = null) + { + cmd.SetGlobalTexture(ShaderIDs.MainTex, source); + cmd.SetRenderTargetWithLoadStoreAction(destination, viewport == null ? LoadAction.DontCare : LoadAction.Load, StoreAction.Store); + + if (viewport != null) + cmd.SetViewport(viewport.Value); + + if (clear) + cmd.ClearRenderTarget(true, true, Color.clear); + + cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, copyMaterial, 0, 0); + } + + /// + /// Blits a fullscreen triangle using a given material. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + /// The property sheet to use + /// The pass from the material to use + /// The load action for this blit + /// An optional viewport to consider for the blit + public static void BlitFullscreenTriangle(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, PropertySheet propertySheet, int pass, RenderBufferLoadAction loadAction, Rect? viewport = null) + { + cmd.SetGlobalTexture(ShaderIDs.MainTex, source); + #if UNITY_2018_2_OR_NEWER + bool clear = (loadAction == LoadAction.Clear); + if(clear) + loadAction = LoadAction.DontCare; + #else + bool clear = false; + #endif + cmd.SetRenderTargetWithLoadStoreAction(destination, viewport == null ? loadAction : LoadAction.Load, StoreAction.Store); + + if (viewport != null) + cmd.SetViewport(viewport.Value); + + if (clear) + cmd.ClearRenderTarget(true, true, Color.clear); + + cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, propertySheet.material, 0, pass, propertySheet.properties); + } + + /// + /// Blits a fullscreen triangle using a given material. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + /// The property sheet to use + /// The pass from the material to use + /// Should the destination target be cleared? + /// An optional viewport to consider for the blit + public static void BlitFullscreenTriangle(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, PropertySheet propertySheet, int pass, bool clear = false, Rect? viewport = null) + { + #if UNITY_2018_2_OR_NEWER + cmd.BlitFullscreenTriangle(source, destination, propertySheet, pass, clear ? LoadAction.Clear : LoadAction.DontCare, viewport); + #else + cmd.SetGlobalTexture(ShaderIDs.MainTex, source); + cmd.SetRenderTargetWithLoadStoreAction(destination, viewport == null ? LoadAction.DontCare : LoadAction.Load, StoreAction.Store); + + if (viewport != null) + cmd.SetViewport(viewport.Value); + + if (clear) + cmd.ClearRenderTarget(true, true, Color.clear); + + cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, propertySheet.material, 0, pass, propertySheet.properties); + #endif + } + + /// + /// Blits a fullscreen triangle from a double-wide source. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + /// The material to use for the blit + /// The pass from the material to use + /// The target eye + public static void BlitFullscreenTriangleFromDoubleWide(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, Material material, int pass, int eye) + { + Vector4 uvScaleOffset = new Vector4(0.5f, 1.0f, 0, 0); + + if (eye == 1) + uvScaleOffset.z = 0.5f; + cmd.SetGlobalVector(ShaderIDs.UVScaleOffset, uvScaleOffset); + cmd.BuiltinBlit(source, destination, material, pass); + } + + /// + /// Blits a fullscreen triangle to a double-wide destination. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + /// The property sheet to use + /// The pass from the material to use + /// The target eye + public static void BlitFullscreenTriangleToDoubleWide(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, PropertySheet propertySheet, int pass, int eye) + { + Vector4 posScaleOffset = new Vector4(0.5f, 1.0f, -0.5f, 0); + + if (eye == 1) + posScaleOffset.z = 0.5f; + propertySheet.EnableKeyword("STEREO_DOUBLEWIDE_TARGET"); + propertySheet.properties.SetVector(ShaderIDs.PosScaleOffset, posScaleOffset); + cmd.BlitFullscreenTriangle(source, destination, propertySheet, 0); + } + + /// + /// Blits a fullscreen triangle using a given material. + /// + /// The command buffer to use + /// The source texture array + /// The destination render target + /// The property sheet to use + /// The pass from the material to use + /// Should the destination target be cleared? + /// The slice to use for the texture array + public static void BlitFullscreenTriangleFromTexArray(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, PropertySheet propertySheet, int pass, bool clear = false, int depthSlice = -1) + { + cmd.SetGlobalTexture(ShaderIDs.MainTex, source); + cmd.SetGlobalFloat(ShaderIDs.DepthSlice, depthSlice); + cmd.SetRenderTargetWithLoadStoreAction(destination, RenderBufferLoadAction.DontCare, RenderBufferStoreAction.Store); + + if (clear) + cmd.ClearRenderTarget(true, true, Color.clear); + + cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, propertySheet.material, 0, pass, propertySheet.properties); + } + + /// + /// Blits a fullscreen triangle using a given material. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + /// The depth render target + /// The property sheet to use + /// The pass from the material to use + /// Should the destination target be cleared? + /// The array slice to consider as a source + public static void BlitFullscreenTriangleToTexArray(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, PropertySheet propertySheet, int pass, bool clear = false, int depthSlice = -1) + { + cmd.SetGlobalTexture(ShaderIDs.MainTex, source); + cmd.SetGlobalFloat(ShaderIDs.DepthSlice, depthSlice); + cmd.SetRenderTarget(destination, 0, CubemapFace.Unknown, -1); + + if (clear) + cmd.ClearRenderTarget(true, true, Color.clear); + + cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, propertySheet.material, 0, pass, propertySheet.properties); + } + + /// + /// Blits a fullscreen triangle using a given material. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + /// The depth render target + /// The property sheet to use + /// The pass from the material to use + /// Should the destination target be cleared? + /// An optional viewport to consider for the blit + public static void BlitFullscreenTriangle(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination, RenderTargetIdentifier depth, PropertySheet propertySheet, int pass, bool clear = false, Rect? viewport = null) + { + cmd.SetGlobalTexture(ShaderIDs.MainTex, source); + + LoadAction loadAction = viewport == null ? LoadAction.DontCare : LoadAction.Load; + if (clear) + { + cmd.SetRenderTargetWithLoadStoreAction(destination, loadAction, StoreAction.Store, depth, loadAction, StoreAction.Store); + cmd.ClearRenderTarget(true, true, Color.clear); + } + else + { + cmd.SetRenderTargetWithLoadStoreAction(destination, loadAction, StoreAction.Store, depth, LoadAction.Load, StoreAction.Store); + } + + if (viewport != null) + cmd.SetViewport(viewport.Value); + + cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, propertySheet.material, 0, pass, propertySheet.properties); + } + + /// + /// Blits a fullscreen triangle using a given material. + /// + /// The command buffer to use + /// The source render target + /// An array of destinations render targets + /// The depth render target + /// The property sheet to use + /// The pass from the material to use + /// Should the destination target be cleared? + /// An optional viewport to consider for the blit + public static void BlitFullscreenTriangle(this CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier[] destinations, RenderTargetIdentifier depth, PropertySheet propertySheet, int pass, bool clear = false, Rect? viewport = null) + { + cmd.SetGlobalTexture(ShaderIDs.MainTex, source); + cmd.SetRenderTarget(destinations, depth); + + if (viewport != null) + cmd.SetViewport(viewport.Value); + + if (clear) + cmd.ClearRenderTarget(true, true, Color.clear); + + cmd.DrawMesh(fullscreenTriangle, Matrix4x4.identity, propertySheet.material, 0, pass, propertySheet.properties); + } + + /// + /// Does a copy of source to destination using the builtin blit command. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + public static void BuiltinBlit(this CommandBuffer cmd, Rendering.RenderTargetIdentifier source, RenderTargetIdentifier destination) + { + #if UNITY_2018_2_OR_NEWER + cmd.SetRenderTarget(destination, RenderBufferLoadAction.DontCare, RenderBufferStoreAction.Store); + destination = BuiltinRenderTextureType.CurrentActive; + #endif + cmd.Blit(source, destination); + } + + /// + /// Blits a fullscreen quad using the builtin blit command and a given material. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + /// The material to use for the blit + /// The pass from the material to use + public static void BuiltinBlit(this CommandBuffer cmd, Rendering.RenderTargetIdentifier source, RenderTargetIdentifier destination, Material mat, int pass = 0) + { + #if UNITY_2018_2_OR_NEWER + cmd.SetRenderTarget(destination, RenderBufferLoadAction.DontCare, RenderBufferStoreAction.Store); + destination = BuiltinRenderTextureType.CurrentActive; + #endif + cmd.Blit(source, destination, mat, pass); + } + + // Fast basic copy texture if available, falls back to blit copy if not + // Assumes that both textures have the exact same type and format + /// + /// Copies the content of a texture into the other. Both textures must have the same size + /// and format or this method will fail. + /// + /// The command buffer to use + /// The source render target + /// The destination render target + /// + /// If the CopyTexture command isn't supported on the target platform it will revert to a + /// fullscreen blit command instead. + /// + public static void CopyTexture(CommandBuffer cmd, RenderTargetIdentifier source, RenderTargetIdentifier destination) + { + if (SystemInfo.copyTextureSupport > CopyTextureSupport.None) + { + cmd.CopyTexture(source, destination); + return; + } + + cmd.BlitFullscreenTriangle(source, destination); + } + + // TODO: Generalize the GetTemporaryRT and Blit commands in order to support + // RT Arrays for Stereo Instancing/MultiView + + #endregion + + #region Unity specifics & misc methods + + /// + /// Returns true if a scriptable render pipeline is currently in use, false + /// otherwise. + /// + public static bool scriptableRenderPipelineActive + { + get { return GraphicsSettings.renderPipelineAsset != null; } // 5.6+ only + } + + /// + /// Returns true if deferred shading is supported on the target platform, + /// false otherwise. + /// + public static bool supportsDeferredShading + { + get { return scriptableRenderPipelineActive || GraphicsSettings.GetShaderMode(BuiltinShaderType.DeferredShading) != BuiltinShaderMode.Disabled; } + } + + /// + /// Returns true if is supported on the + /// target platform, false otherwise. + /// + public static bool supportsDepthNormals + { + get { return scriptableRenderPipelineActive || GraphicsSettings.GetShaderMode(BuiltinShaderType.DepthNormals) != BuiltinShaderMode.Disabled; } + } + +#if UNITY_EDITOR + /// + /// Returns true if single-pass stereo rendering is selected, false otherwise. + /// + /// + /// This property only works in the editor. + /// + public static bool isSinglePassStereoSelected + { + get + { + return PlayerSettings.virtualRealitySupported + && PlayerSettings.stereoRenderingPath == UnityEditor.StereoRenderingPath.SinglePass; + } + } +#endif + + /// + /// Returns true if single-pass stereo rendering is active, false otherwise. + /// + /// + /// This property only works in the editor. + /// + // TODO: Check for SPSR support at runtime + public static bool isSinglePassStereoEnabled + { + get + { +#if UNITY_EDITOR + return isSinglePassStereoSelected && Application.isPlaying; +#elif UNITY_SWITCH + return false; +#elif UNITY_2017_2_OR_NEWER + return UnityEngine.XR.XRSettings.eyeTextureDesc.vrUsage == VRTextureUsage.TwoEyes; +#else + return false; +#endif + } + } + + /// + /// Returns true if VR is enabled, false otherwise. + /// + public static bool isVREnabled + { + get + { +#if UNITY_EDITOR + return UnityEditor.PlayerSettings.virtualRealitySupported; +#elif UNITY_XBOXONE || UNITY_SWITCH + return false; +#elif UNITY_2017_2_OR_NEWER + return UnityEngine.XR.XRSettings.enabled; +#elif UNITY_5_6_OR_NEWER + return UnityEngine.VR.VRSettings.enabled; +#endif + } + } + + /// + /// Returns true if the target platform is Android and the selected API is OpenGL, + /// false otherwise. + /// + public static bool isAndroidOpenGL + { + get { return Application.platform == RuntimePlatform.Android && SystemInfo.graphicsDeviceType != GraphicsDeviceType.Vulkan; } + } + + /// + /// Gets the default HDR render texture format for the current target platform. + /// + public static RenderTextureFormat defaultHDRRenderTextureFormat + { + get + { +#if UNITY_ANDROID || UNITY_IPHONE || UNITY_TVOS || UNITY_SWITCH || UNITY_EDITOR + RenderTextureFormat format = RenderTextureFormat.RGB111110Float; +#if UNITY_EDITOR + var target = EditorUserBuildSettings.activeBuildTarget; + if (target != BuildTarget.Android && target != BuildTarget.iOS && target != BuildTarget.tvOS && target != BuildTarget.Switch) + return RenderTextureFormat.DefaultHDR; +#endif // UNITY_EDITOR + if (format.IsSupported()) + return format; +#endif // UNITY_ANDROID || UNITY_IPHONE || UNITY_TVOS || UNITY_SWITCH || UNITY_EDITOR + return RenderTextureFormat.DefaultHDR; + } + } + + /// + /// Checks if a given render texture format is a floating-point format. + /// + /// The format to test + /// true if the format is floating-point, false otherwise + public static bool isFloatingPointFormat(RenderTextureFormat format) + { + return format == RenderTextureFormat.DefaultHDR || format == RenderTextureFormat.ARGBHalf || format == RenderTextureFormat.ARGBFloat || + format == RenderTextureFormat.RGFloat || format == RenderTextureFormat.RGHalf || + format == RenderTextureFormat.RFloat || format == RenderTextureFormat.RHalf || + format == RenderTextureFormat.RGB111110Float; + } + + /// + /// Properly destroys a given Unity object. + /// + /// The object to destroy + public static void Destroy(UnityObject obj) + { + if (obj != null) + { +#if UNITY_EDITOR + if (Application.isPlaying) + UnityObject.Destroy(obj); + else + UnityObject.DestroyImmediate(obj); +#else + UnityObject.Destroy(obj); +#endif + } + } + + /// + /// Returns true if the current color space setting is set to Linear, + /// false otherwise. + /// + public static bool isLinearColorSpace + { + get { return QualitySettings.activeColorSpace == ColorSpace.Linear; } + } + + /// + /// Checks if resolved depth is available on the current target platform. + /// + /// A rendering camera + /// true if resolved depth is available, false otherwise + public static bool IsResolvedDepthAvailable(Camera camera) + { + // AFAIK resolved depth is only available on D3D11/12 via BuiltinRenderTextureType.ResolvedDepth + // TODO: Is there more proper way to determine this? What about SRPs? + var gtype = SystemInfo.graphicsDeviceType; + return camera.actualRenderingPath == RenderingPath.DeferredShading && + (gtype == GraphicsDeviceType.Direct3D11 || gtype == GraphicsDeviceType.Direct3D12 || gtype == GraphicsDeviceType.XboxOne); + } + + /// + /// Properly destroys a given profile. + /// + /// The profile to destroy + /// Should we destroy all the embedded settings? + public static void DestroyProfile(PostProcessProfile profile, bool destroyEffects) + { + if (destroyEffects) + { + foreach (var effect in profile.settings) + Destroy(effect); + } + + Destroy(profile); + } + + /// + /// Properly destroys a volume. + /// + /// The volume to destroy + /// Should we destroy the attached profile? + /// Should we destroy the volume Game Object? + public static void DestroyVolume(PostProcessVolume volume, bool destroyProfile, bool destroyGameObject = false) + { + if (destroyProfile) + DestroyProfile(volume.profileRef, true); + + var gameObject = volume.gameObject; + Destroy(volume); + + if (destroyGameObject) + Destroy(gameObject); + } + + /// + /// Checks if a post-processing layer is active. + /// + /// The layer to check; can be null + /// true if the layer is enabled, false otherwise + public static bool IsPostProcessingActive(PostProcessLayer layer) + { + return layer != null + && layer.enabled; + } + + /// + /// Checks if temporal anti-aliasing is active on a given post-process layer. + /// + /// The layer to check + /// true if temporal anti-aliasing is active, false otherwise + public static bool IsTemporalAntialiasingActive(PostProcessLayer layer) + { + return IsPostProcessingActive(layer) + && layer.antialiasingMode == PostProcessLayer.Antialiasing.TemporalAntialiasing + && layer.temporalAntialiasing.IsSupported(); + } + + /// + /// Gets all scene objects in the hierarchy, including inactive objects. This method is slow + /// on large scenes and should be used with extreme caution. + /// + /// The component to look for + /// A list of all components of type T in the scene + public static IEnumerable GetAllSceneObjects() + where T : Component + { + var queue = new Queue(); + var roots = SceneManager.GetActiveScene().GetRootGameObjects(); + + foreach (var root in roots) + { + queue.Enqueue(root.transform); + var comp = root.GetComponent(); + + if (comp != null) + yield return comp; + } + + while (queue.Count > 0) + { + foreach (Transform child in queue.Dequeue()) + { + queue.Enqueue(child); + var comp = child.GetComponent(); + + if (comp != null) + yield return comp; + } + } + } + + /// + /// Creates an instance of a class if it's null. + /// + /// The type to create + /// A reference to an instance to check and create if needed + public static void CreateIfNull(ref T obj) + where T : class, new() + { + if (obj == null) + obj = new T(); + } + + #endregion + + #region Maths + + /// + /// Returns the base-2 exponential function of , which is 2 + /// raised to the power . + /// + /// Value of the exponent + /// The base-2 exponential function of + public static float Exp2(float x) + { + return Mathf.Exp(x * 0.69314718055994530941723212145818f); + } + + /// + /// Gets a jittered perspective projection matrix for a given camera. + /// + /// The camera to build the projection matrix for + /// The jitter offset + /// A jittered projection matrix + public static Matrix4x4 GetJitteredPerspectiveProjectionMatrix(Camera camera, Vector2 offset) + { + float near = camera.nearClipPlane; + float far = camera.farClipPlane; + + float vertical = Mathf.Tan(0.5f * Mathf.Deg2Rad * camera.fieldOfView) * near; + float horizontal = vertical * camera.aspect; + + offset.x *= horizontal / (0.5f * camera.pixelWidth); + offset.y *= vertical / (0.5f * camera.pixelHeight); + + var matrix = camera.projectionMatrix; + + matrix[0, 2] += offset.x / horizontal; + matrix[1, 2] += offset.y / vertical; + + return matrix; + } + + /// + /// Gets a jittered orthographic projection matrix for a given camera. + /// + /// The camera to build the orthographic matrix for + /// The jitter offset + /// A jittered projection matrix + public static Matrix4x4 GetJitteredOrthographicProjectionMatrix(Camera camera, Vector2 offset) + { + float vertical = camera.orthographicSize; + float horizontal = vertical * camera.aspect; + + offset.x *= horizontal / (0.5f * camera.pixelWidth); + offset.y *= vertical / (0.5f * camera.pixelHeight); + + float left = offset.x - horizontal; + float right = offset.x + horizontal; + float top = offset.y + vertical; + float bottom = offset.y - vertical; + + return Matrix4x4.Ortho(left, right, bottom, top, camera.nearClipPlane, camera.farClipPlane); + } + + /// + /// Gets a jittered perspective projection matrix from an original projection matrix. + /// + /// The current render context + /// The original projection matrix + /// The jitter offset + /// A jittered projection matrix + public static Matrix4x4 GenerateJitteredProjectionMatrixFromOriginal(PostProcessRenderContext context, Matrix4x4 origProj, Vector2 jitter) + { +#if UNITY_2017_2_OR_NEWER + var planes = origProj.decomposeProjection; + + float vertFov = Math.Abs(planes.top) + Math.Abs(planes.bottom); + float horizFov = Math.Abs(planes.left) + Math.Abs(planes.right); + + var planeJitter = new Vector2(jitter.x * horizFov / context.screenWidth, + jitter.y * vertFov / context.screenHeight); + + planes.left += planeJitter.x; + planes.right += planeJitter.x; + planes.top += planeJitter.y; + planes.bottom += planeJitter.y; + + var jitteredMatrix = Matrix4x4.Frustum(planes); + + return jitteredMatrix; +#else + var rTan = (1.0f + origProj[0, 2]) / origProj[0, 0]; + var lTan = (-1.0f + origProj[0, 2]) / origProj[0, 0]; + + var tTan = (1.0f + origProj[1, 2]) / origProj[1, 1]; + var bTan = (-1.0f + origProj[1, 2]) / origProj[1, 1]; + + float tanVertFov = Math.Abs(tTan) + Math.Abs(bTan); + float tanHorizFov = Math.Abs(lTan) + Math.Abs(rTan); + + jitter.x *= tanHorizFov / context.screenWidth; + jitter.y *= tanVertFov / context.screenHeight; + + float left = jitter.x + lTan; + float right = jitter.x + rTan; + float top = jitter.y + tTan; + float bottom = jitter.y + bTan; + + var jitteredMatrix = new Matrix4x4(); + + jitteredMatrix[0, 0] = 2f / (right - left); + jitteredMatrix[0, 1] = 0f; + jitteredMatrix[0, 2] = (right + left) / (right - left); + jitteredMatrix[0, 3] = 0f; + + jitteredMatrix[1, 0] = 0f; + jitteredMatrix[1, 1] = 2f / (top - bottom); + jitteredMatrix[1, 2] = (top + bottom) / (top - bottom); + jitteredMatrix[1, 3] = 0f; + + jitteredMatrix[2, 0] = 0f; + jitteredMatrix[2, 1] = 0f; + jitteredMatrix[2, 2] = origProj[2, 2]; + jitteredMatrix[2, 3] = origProj[2, 3]; + + jitteredMatrix[3, 0] = 0f; + jitteredMatrix[3, 1] = 0f; + jitteredMatrix[3, 2] = -1f; + jitteredMatrix[3, 3] = 0f; + + return jitteredMatrix; +#endif + } + + #endregion + + #region Reflection + + static IEnumerable m_AssemblyTypes; + + /// + /// Gets all currently available assembly types. + /// + /// A list of all currently available assembly types + /// + /// This method is slow and should be use with extreme caution. + /// + public static IEnumerable GetAllAssemblyTypes() + { + if (m_AssemblyTypes == null) + { + m_AssemblyTypes = AppDomain.CurrentDomain.GetAssemblies() + .SelectMany(t => + { + // Ugly hack to handle mis-versioned dlls + var innerTypes = new Type[0]; + try + { + innerTypes = t.GetTypes(); + } + catch { } + return innerTypes; + }); + } + + return m_AssemblyTypes; + } + + /// + /// Helper method to get the first attribute of type T on a given type. + /// + /// The attribute type to look for + /// The type to explore + /// The attribute found + public static T GetAttribute(this Type type) where T : Attribute + { + Assert.IsTrue(type.IsDefined(typeof(T), false), "Attribute not found"); + return (T)type.GetCustomAttributes(typeof(T), false)[0]; + } + + /// + /// Returns all attributes set on a specific member. + /// + /// The class type where the member is defined + /// The member type + /// An expression path to the member + /// An array of attributes + /// + /// This method doesn't return inherited attributes, only explicit ones. + /// + public static Attribute[] GetMemberAttributes(Expression> expr) + { + Expression body = expr; + + if (body is LambdaExpression) + body = ((LambdaExpression)body).Body; + + switch (body.NodeType) + { + case ExpressionType.MemberAccess: + var fi = (FieldInfo)((MemberExpression)body).Member; + return fi.GetCustomAttributes(false).Cast().ToArray(); + default: + throw new InvalidOperationException(); + } + } + + /// + /// Returns a string path from an expression. This is mostly used to retrieve serialized + /// properties without hardcoding the field path as a string and thus allowing proper + /// refactoring features. + /// + /// The class type where the member is defined + /// The member type + /// An expression path fo the member + /// A string representation of the expression path + public static string GetFieldPath(Expression> expr) + { + MemberExpression me; + switch (expr.Body.NodeType) + { + case ExpressionType.MemberAccess: + me = expr.Body as MemberExpression; + break; + default: + throw new InvalidOperationException(); + } + + var members = new List(); + while (me != null) + { + members.Add(me.Member.Name); + me = me.Expression as MemberExpression; + } + + var sb = new StringBuilder(); + for (int i = members.Count - 1; i >= 0; i--) + { + sb.Append(members[i]); + if (i > 0) sb.Append('.'); + } + + return sb.ToString(); + } + + #endregion + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/RuntimeUtilities.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/RuntimeUtilities.cs.meta new file mode 100644 index 0000000..f26dd0e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/RuntimeUtilities.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a2ed510c13db63f4ea5749ef503a99b5 +timeCreated: 1487868442 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/ShaderIDs.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/ShaderIDs.cs new file mode 100644 index 0000000..cf4d93a --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/ShaderIDs.cs @@ -0,0 +1,159 @@ +namespace UnityEngine.Rendering.PostProcessing +{ + // Pre-hashed shader ids - naming conventions are a bit off in this file as we use the same + // fields names as in the shaders for ease of use... Would be nice to clean this up at some + // point. + static class ShaderIDs + { + internal static readonly int MainTex = Shader.PropertyToID("_MainTex"); + + internal static readonly int Jitter = Shader.PropertyToID("_Jitter"); + internal static readonly int Sharpness = Shader.PropertyToID("_Sharpness"); + internal static readonly int FinalBlendParameters = Shader.PropertyToID("_FinalBlendParameters"); + internal static readonly int HistoryTex = Shader.PropertyToID("_HistoryTex"); + + internal static readonly int SMAA_Flip = Shader.PropertyToID("_SMAA_Flip"); + internal static readonly int SMAA_Flop = Shader.PropertyToID("_SMAA_Flop"); + + internal static readonly int AOParams = Shader.PropertyToID("_AOParams"); + internal static readonly int AOColor = Shader.PropertyToID("_AOColor"); + internal static readonly int OcclusionTexture1 = Shader.PropertyToID("_OcclusionTexture1"); + internal static readonly int OcclusionTexture2 = Shader.PropertyToID("_OcclusionTexture2"); + internal static readonly int SAOcclusionTexture = Shader.PropertyToID("_SAOcclusionTexture"); + internal static readonly int MSVOcclusionTexture = Shader.PropertyToID("_MSVOcclusionTexture"); + internal static readonly int DepthCopy = Shader.PropertyToID("DepthCopy"); + internal static readonly int LinearDepth = Shader.PropertyToID("LinearDepth"); + internal static readonly int LowDepth1 = Shader.PropertyToID("LowDepth1"); + internal static readonly int LowDepth2 = Shader.PropertyToID("LowDepth2"); + internal static readonly int LowDepth3 = Shader.PropertyToID("LowDepth3"); + internal static readonly int LowDepth4 = Shader.PropertyToID("LowDepth4"); + internal static readonly int TiledDepth1 = Shader.PropertyToID("TiledDepth1"); + internal static readonly int TiledDepth2 = Shader.PropertyToID("TiledDepth2"); + internal static readonly int TiledDepth3 = Shader.PropertyToID("TiledDepth3"); + internal static readonly int TiledDepth4 = Shader.PropertyToID("TiledDepth4"); + internal static readonly int Occlusion1 = Shader.PropertyToID("Occlusion1"); + internal static readonly int Occlusion2 = Shader.PropertyToID("Occlusion2"); + internal static readonly int Occlusion3 = Shader.PropertyToID("Occlusion3"); + internal static readonly int Occlusion4 = Shader.PropertyToID("Occlusion4"); + internal static readonly int Combined1 = Shader.PropertyToID("Combined1"); + internal static readonly int Combined2 = Shader.PropertyToID("Combined2"); + internal static readonly int Combined3 = Shader.PropertyToID("Combined3"); + + internal static readonly int SSRResolveTemp = Shader.PropertyToID("_SSRResolveTemp"); + internal static readonly int Noise = Shader.PropertyToID("_Noise"); + internal static readonly int Test = Shader.PropertyToID("_Test"); + internal static readonly int Resolve = Shader.PropertyToID("_Resolve"); + internal static readonly int History = Shader.PropertyToID("_History"); + internal static readonly int ViewMatrix = Shader.PropertyToID("_ViewMatrix"); + internal static readonly int InverseViewMatrix = Shader.PropertyToID("_InverseViewMatrix"); + internal static readonly int InverseProjectionMatrix = Shader.PropertyToID("_InverseProjectionMatrix"); + internal static readonly int ScreenSpaceProjectionMatrix = Shader.PropertyToID("_ScreenSpaceProjectionMatrix"); + internal static readonly int Params2 = Shader.PropertyToID("_Params2"); + + internal static readonly int FogColor = Shader.PropertyToID("_FogColor"); + internal static readonly int FogParams = Shader.PropertyToID("_FogParams"); + + internal static readonly int VelocityScale = Shader.PropertyToID("_VelocityScale"); + internal static readonly int MaxBlurRadius = Shader.PropertyToID("_MaxBlurRadius"); + internal static readonly int RcpMaxBlurRadius = Shader.PropertyToID("_RcpMaxBlurRadius"); + internal static readonly int VelocityTex = Shader.PropertyToID("_VelocityTex"); + internal static readonly int Tile2RT = Shader.PropertyToID("_Tile2RT"); + internal static readonly int Tile4RT = Shader.PropertyToID("_Tile4RT"); + internal static readonly int Tile8RT = Shader.PropertyToID("_Tile8RT"); + internal static readonly int TileMaxOffs = Shader.PropertyToID("_TileMaxOffs"); + internal static readonly int TileMaxLoop = Shader.PropertyToID("_TileMaxLoop"); + internal static readonly int TileVRT = Shader.PropertyToID("_TileVRT"); + internal static readonly int NeighborMaxTex = Shader.PropertyToID("_NeighborMaxTex"); + internal static readonly int LoopCount = Shader.PropertyToID("_LoopCount"); + + internal static readonly int DepthOfFieldTemp = Shader.PropertyToID("_DepthOfFieldTemp"); + internal static readonly int DepthOfFieldTex = Shader.PropertyToID("_DepthOfFieldTex"); + internal static readonly int Distance = Shader.PropertyToID("_Distance"); + internal static readonly int LensCoeff = Shader.PropertyToID("_LensCoeff"); + internal static readonly int MaxCoC = Shader.PropertyToID("_MaxCoC"); + internal static readonly int RcpMaxCoC = Shader.PropertyToID("_RcpMaxCoC"); + internal static readonly int RcpAspect = Shader.PropertyToID("_RcpAspect"); + internal static readonly int CoCTex = Shader.PropertyToID("_CoCTex"); + internal static readonly int TaaParams = Shader.PropertyToID("_TaaParams"); + + internal static readonly int AutoExposureTex = Shader.PropertyToID("_AutoExposureTex"); + internal static readonly int HistogramBuffer = Shader.PropertyToID("_HistogramBuffer"); + internal static readonly int Params = Shader.PropertyToID("_Params"); + internal static readonly int ScaleOffsetRes = Shader.PropertyToID("_ScaleOffsetRes"); + + internal static readonly int BloomTex = Shader.PropertyToID("_BloomTex"); + internal static readonly int SampleScale = Shader.PropertyToID("_SampleScale"); + internal static readonly int Threshold = Shader.PropertyToID("_Threshold"); + internal static readonly int ColorIntensity = Shader.PropertyToID("_ColorIntensity"); + internal static readonly int Bloom_DirtTex = Shader.PropertyToID("_Bloom_DirtTex"); + internal static readonly int Bloom_Settings = Shader.PropertyToID("_Bloom_Settings"); + internal static readonly int Bloom_Color = Shader.PropertyToID("_Bloom_Color"); + internal static readonly int Bloom_DirtTileOffset = Shader.PropertyToID("_Bloom_DirtTileOffset"); + + internal static readonly int ChromaticAberration_Amount = Shader.PropertyToID("_ChromaticAberration_Amount"); + internal static readonly int ChromaticAberration_SpectralLut = Shader.PropertyToID("_ChromaticAberration_SpectralLut"); + + internal static readonly int Distortion_CenterScale = Shader.PropertyToID("_Distortion_CenterScale"); + internal static readonly int Distortion_Amount = Shader.PropertyToID("_Distortion_Amount"); + + internal static readonly int Lut2D = Shader.PropertyToID("_Lut2D"); + internal static readonly int Lut3D = Shader.PropertyToID("_Lut3D"); + internal static readonly int Lut3D_Params = Shader.PropertyToID("_Lut3D_Params"); + internal static readonly int Lut2D_Params = Shader.PropertyToID("_Lut2D_Params"); + internal static readonly int UserLut2D_Params = Shader.PropertyToID("_UserLut2D_Params"); + internal static readonly int PostExposure = Shader.PropertyToID("_PostExposure"); + internal static readonly int ColorBalance = Shader.PropertyToID("_ColorBalance"); + internal static readonly int ColorFilter = Shader.PropertyToID("_ColorFilter"); + internal static readonly int HueSatCon = Shader.PropertyToID("_HueSatCon"); + internal static readonly int Brightness = Shader.PropertyToID("_Brightness"); + internal static readonly int ChannelMixerRed = Shader.PropertyToID("_ChannelMixerRed"); + internal static readonly int ChannelMixerGreen = Shader.PropertyToID("_ChannelMixerGreen"); + internal static readonly int ChannelMixerBlue = Shader.PropertyToID("_ChannelMixerBlue"); + internal static readonly int Lift = Shader.PropertyToID("_Lift"); + internal static readonly int InvGamma = Shader.PropertyToID("_InvGamma"); + internal static readonly int Gain = Shader.PropertyToID("_Gain"); + internal static readonly int Curves = Shader.PropertyToID("_Curves"); + internal static readonly int CustomToneCurve = Shader.PropertyToID("_CustomToneCurve"); + internal static readonly int ToeSegmentA = Shader.PropertyToID("_ToeSegmentA"); + internal static readonly int ToeSegmentB = Shader.PropertyToID("_ToeSegmentB"); + internal static readonly int MidSegmentA = Shader.PropertyToID("_MidSegmentA"); + internal static readonly int MidSegmentB = Shader.PropertyToID("_MidSegmentB"); + internal static readonly int ShoSegmentA = Shader.PropertyToID("_ShoSegmentA"); + internal static readonly int ShoSegmentB = Shader.PropertyToID("_ShoSegmentB"); + + internal static readonly int Vignette_Color = Shader.PropertyToID("_Vignette_Color"); + internal static readonly int Vignette_Center = Shader.PropertyToID("_Vignette_Center"); + internal static readonly int Vignette_Settings = Shader.PropertyToID("_Vignette_Settings"); + internal static readonly int Vignette_Mask = Shader.PropertyToID("_Vignette_Mask"); + internal static readonly int Vignette_Opacity = Shader.PropertyToID("_Vignette_Opacity"); + internal static readonly int Vignette_Mode = Shader.PropertyToID("_Vignette_Mode"); + + internal static readonly int Grain_Params1 = Shader.PropertyToID("_Grain_Params1"); + internal static readonly int Grain_Params2 = Shader.PropertyToID("_Grain_Params2"); + internal static readonly int GrainTex = Shader.PropertyToID("_GrainTex"); + internal static readonly int Phase = Shader.PropertyToID("_Phase"); + internal static readonly int GrainNoiseParameters = Shader.PropertyToID("_NoiseParameters"); + + internal static readonly int LumaInAlpha = Shader.PropertyToID("_LumaInAlpha"); + + internal static readonly int DitheringTex = Shader.PropertyToID("_DitheringTex"); + internal static readonly int Dithering_Coords = Shader.PropertyToID("_Dithering_Coords"); + + internal static readonly int From = Shader.PropertyToID("_From"); + internal static readonly int To = Shader.PropertyToID("_To"); + internal static readonly int Interp = Shader.PropertyToID("_Interp"); + internal static readonly int TargetColor = Shader.PropertyToID("_TargetColor"); + + internal static readonly int HalfResFinalCopy = Shader.PropertyToID("_HalfResFinalCopy"); + internal static readonly int WaveformSource = Shader.PropertyToID("_WaveformSource"); + internal static readonly int WaveformBuffer = Shader.PropertyToID("_WaveformBuffer"); + internal static readonly int VectorscopeBuffer = Shader.PropertyToID("_VectorscopeBuffer"); + + internal static readonly int RenderViewportScaleFactor = Shader.PropertyToID("_RenderViewportScaleFactor"); + + internal static readonly int UVTransform = Shader.PropertyToID("_UVTransform"); + internal static readonly int DepthSlice = Shader.PropertyToID("_DepthSlice"); + internal static readonly int UVScaleOffset = Shader.PropertyToID("_UVScaleOffset"); + internal static readonly int PosScaleOffset = Shader.PropertyToID("_PosScaleOffset"); + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/ShaderIDs.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/ShaderIDs.cs.meta new file mode 100644 index 0000000..51297d7 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/ShaderIDs.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: e4026acd2810a474b9be96bbeb80b959 +timeCreated: 1488904676 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/Spline.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/Spline.cs new file mode 100644 index 0000000..2195044 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/Spline.cs @@ -0,0 +1,148 @@ +using System; +using UnityEngine.Assertions; + +namespace UnityEngine.Rendering.PostProcessing +{ + /// + /// A wrapper on top of to handle zero-key curves and keyframe + /// loops. + /// + [Serializable] + public sealed class Spline + { + /// + /// Precision of the curve. + /// + public const int k_Precision = 128; + + /// + /// The inverse of the precision of the curve. + /// + public const float k_Step = 1f / k_Precision; + + /// + /// The underlying animation curve instance. + /// + public AnimationCurve curve; + + [SerializeField] + bool m_Loop; + + [SerializeField] + float m_ZeroValue; + + [SerializeField] + float m_Range; + + AnimationCurve m_InternalLoopingCurve; + + // Used to track frame changes for data caching + int frameCount = -1; + + /// + /// An array holding pre-computed curve values. + /// + public float[] cachedData; + + /// + /// Creates a new spline. + /// + /// The animation curve to base this spline off + /// The value to return when the curve has no keyframe + /// Should this curve loop? + /// The curve bounds + public Spline(AnimationCurve curve, float zeroValue, bool loop, Vector2 bounds) + { + Assert.IsNotNull(curve); + this.curve = curve; + m_ZeroValue = zeroValue; + m_Loop = loop; + m_Range = bounds.magnitude; + cachedData = new float[k_Precision]; + } + + /// + /// Caches the curve data at a given frame. The curve data will only be cached once per + /// frame. + /// + /// A frame number + public void Cache(int frame) + { + // Note: it would be nice to have a way to check if a curve has changed in any way, that + // would save quite a few CPU cycles instead of having to force cache it once per frame :/ + + // Only cache once per frame + if (frame == frameCount) + return; + + var length = curve.length; + + if (m_Loop && length > 1) + { + if (m_InternalLoopingCurve == null) + m_InternalLoopingCurve = new AnimationCurve(); + + var prev = curve[length - 1]; + prev.time -= m_Range; + var next = curve[0]; + next.time += m_Range; + m_InternalLoopingCurve.keys = curve.keys; + m_InternalLoopingCurve.AddKey(prev); + m_InternalLoopingCurve.AddKey(next); + } + + for (int i = 0; i < k_Precision; i++) + cachedData[i] = Evaluate((float)i * k_Step, length); + + frameCount = Time.renderedFrameCount; + } + + /// + /// Evaluates the curve at a point in time. + /// + /// The time to evaluate + /// The number of keyframes in the curve + /// The value of the curve at time + public float Evaluate(float t, int length) + { + if (length == 0) + return m_ZeroValue; + + if (!m_Loop || length == 1) + return curve.Evaluate(t); + + return m_InternalLoopingCurve.Evaluate(t); + } + + /// + /// Evaluates the curve at a point in time. + /// + /// The time to evaluate + /// The value of the curve at time + /// + /// Calling the length getter on a curve is expensive to it's better to cache its length and + /// call instead of getting the length for every call. + /// + public float Evaluate(float t) + { + // Calling the length getter on a curve is expensive (!?) so it's better to cache its + // length and call Evaluate(t, length) instead of getting the length for every call to + // Evaluate(t) + return Evaluate(t, curve.length); + } + + /// + /// Returns the computed hash code for this parameter. + /// + /// A computed hash code + public override int GetHashCode() + { + unchecked + { + int hash = 17; + hash = hash * 23 + curve.GetHashCode(); // Not implemented in Unity, so it'll always return the same value :( + return hash; + } + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/Spline.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/Spline.cs.meta new file mode 100644 index 0000000..ca5720b --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/Spline.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: c687cf9a3e8607a4b991e6d445a2f9bf +timeCreated: 1493978176 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/TargetPool.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/TargetPool.cs new file mode 100644 index 0000000..cf72342 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/TargetPool.cs @@ -0,0 +1,48 @@ +using System.Collections.Generic; + +namespace UnityEngine.Rendering.PostProcessing +{ + class TargetPool + { + readonly List m_Pool; + int m_Current; + + internal TargetPool() + { + m_Pool = new List(); + Get(); // Pre-warm with a default target to avoid black frame on first frame + } + + internal int Get() + { + int ret = Get(m_Current); + m_Current++; + return ret; + } + + int Get(int i) + { + int ret; + + if (m_Pool.Count > i) + { + ret = m_Pool[i]; + } + else + { + // Avoid discontinuities + while (m_Pool.Count <= i) + m_Pool.Add(Shader.PropertyToID("_TargetPool" + i)); + + ret = m_Pool[i]; + } + + return ret; + } + + internal void Reset() + { + m_Current = 0; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/TargetPool.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/TargetPool.cs.meta new file mode 100644 index 0000000..994555e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/TargetPool.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 3ae5839b763bada47af0cca23c360452 +timeCreated: 1495121926 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/TextureFormatUtilities.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/TextureFormatUtilities.cs new file mode 100644 index 0000000..fc92663 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/TextureFormatUtilities.cs @@ -0,0 +1,173 @@ +using System; +using System.Collections.Generic; +using UnityEngine.Assertions; + +namespace UnityEngine.Rendering.PostProcessing +{ + // Temporary code dump until the texture format refactor goes into trunk... + + /// + /// A set of utilities to deal with texture formats. + /// + public static class TextureFormatUtilities + { + static Dictionary s_FormatAliasMap; + static Dictionary s_SupportedRenderTextureFormats; + static Dictionary s_SupportedTextureFormats; + + static TextureFormatUtilities() + { + s_FormatAliasMap = new Dictionary + { + { (int)TextureFormat.Alpha8, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ARGB4444, RenderTextureFormat.ARGB4444 }, + { (int)TextureFormat.RGB24, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.RGBA32, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ARGB32, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.RGB565, RenderTextureFormat.RGB565 }, + { (int)TextureFormat.R16, RenderTextureFormat.RHalf }, + { (int)TextureFormat.DXT1, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.DXT5, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.RGBA4444, RenderTextureFormat.ARGB4444 }, + { (int)TextureFormat.BGRA32, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.RHalf, RenderTextureFormat.RHalf }, + { (int)TextureFormat.RGHalf, RenderTextureFormat.RGHalf }, + { (int)TextureFormat.RGBAHalf, RenderTextureFormat.ARGBHalf }, + { (int)TextureFormat.RFloat, RenderTextureFormat.RFloat }, + { (int)TextureFormat.RGFloat, RenderTextureFormat.RGFloat }, + { (int)TextureFormat.RGBAFloat, RenderTextureFormat.ARGBFloat }, + { (int)TextureFormat.RGB9e5Float, RenderTextureFormat.ARGBHalf }, + { (int)TextureFormat.BC4, RenderTextureFormat.R8 }, + { (int)TextureFormat.BC5, RenderTextureFormat.RGHalf }, + { (int)TextureFormat.BC6H, RenderTextureFormat.ARGBHalf }, + { (int)TextureFormat.BC7, RenderTextureFormat.ARGB32 }, + #if !UNITY_IOS && !UNITY_TVOS + { (int)TextureFormat.DXT1Crunched, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.DXT5Crunched, RenderTextureFormat.ARGB32 }, + #endif + { (int)TextureFormat.PVRTC_RGB2, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.PVRTC_RGBA2, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.PVRTC_RGB4, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.PVRTC_RGBA4, RenderTextureFormat.ARGB32 }, + #if !UNITY_2018_1_OR_NEWER + { (int)TextureFormat.ATC_RGB4, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ATC_RGBA8, RenderTextureFormat.ARGB32 }, + #endif + { (int)TextureFormat.ETC_RGB4, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ETC2_RGB, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ETC2_RGBA1, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ETC2_RGBA8, RenderTextureFormat.ARGB32 }, + #if UNITY_2019_1_OR_NEWER + { (int)TextureFormat.ASTC_4x4, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_5x5, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_6x6, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_8x8, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_10x10, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_12x12, RenderTextureFormat.ARGB32 }, + #else + { (int)TextureFormat.ASTC_RGB_4x4, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGB_5x5, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGB_6x6, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGB_8x8, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGB_10x10, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGB_12x12, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGBA_4x4, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGBA_5x5, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGBA_6x6, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGBA_8x8, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGBA_10x10, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ASTC_RGBA_12x12, RenderTextureFormat.ARGB32 }, + #endif + #if !UNITY_2018_3_OR_NEWER + { (int)TextureFormat.ETC_RGB4_3DS, RenderTextureFormat.ARGB32 }, + { (int)TextureFormat.ETC_RGBA8_3DS, RenderTextureFormat.ARGB32 } + #endif + }; + + // TODO: refactor the next two scopes in a generic function once we have support for enum constraints on generics + // In 2018.1 SystemInfo.SupportsRenderTextureFormat() generates garbage so we need to + // cache its calls to avoid that... + { + s_SupportedRenderTextureFormats = new Dictionary(); + var values = Enum.GetValues(typeof(RenderTextureFormat)); + + foreach (var format in values) + { + if ((int)format < 0) // Safe guard, negative values are deprecated stuff + continue; + + if (IsObsolete(format)) + continue; + + bool supported = SystemInfo.SupportsRenderTextureFormat((RenderTextureFormat)format); + s_SupportedRenderTextureFormats[(int)format] = supported; + } + } + + // Same for TextureFormat + { + s_SupportedTextureFormats = new Dictionary(); + var values = Enum.GetValues(typeof(TextureFormat)); + + foreach (var format in values) + { + if ((int)format < 0) // Crashes the runtime otherwise (!) + continue; + + if (IsObsolete(format)) + continue; + + bool supported = SystemInfo.SupportsTextureFormat((TextureFormat)format); + s_SupportedTextureFormats[(int)format] = supported; + } + } + } + + static bool IsObsolete(object value) + { + var fieldInfo = value.GetType().GetField(value.ToString()); + var attributes = (ObsoleteAttribute[])fieldInfo.GetCustomAttributes(typeof(ObsoleteAttribute), false); + return attributes != null && attributes.Length > 0; + } + + /// + /// Returns a compatible with the given texture's format. + /// + /// A texture to get a compatible format from + /// A compatible render texture format + public static RenderTextureFormat GetUncompressedRenderTextureFormat(Texture texture) + { + Assert.IsNotNull(texture); + + if (texture is RenderTexture) + return (texture as RenderTexture).format; + + if (texture is Texture2D) + { + var inFormat = ((Texture2D)texture).format; + RenderTextureFormat outFormat; + + if (!s_FormatAliasMap.TryGetValue((int)inFormat, out outFormat)) + throw new NotSupportedException("Texture format not supported"); + + return outFormat; + } + + return RenderTextureFormat.Default; + } + + internal static bool IsSupported(this RenderTextureFormat format) + { + bool supported; + s_SupportedRenderTextureFormats.TryGetValue((int)format, out supported); + return supported; + } + + internal static bool IsSupported(this TextureFormat format) + { + bool supported; + s_SupportedTextureFormats.TryGetValue((int)format, out supported); + return supported; + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/TextureFormatUtilities.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/TextureFormatUtilities.cs.meta new file mode 100644 index 0000000..cd71444 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/TextureFormatUtilities.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f8baf5b99881c054d90afcd1dffd11eb +timeCreated: 1493127411 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/TextureLerper.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/TextureLerper.cs new file mode 100644 index 0000000..cf3a5b7 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/TextureLerper.cs @@ -0,0 +1,230 @@ +using System.Collections.Generic; +using UnityEngine.Assertions; + +namespace UnityEngine.Rendering.PostProcessing +{ + class TextureLerper + { + static TextureLerper m_Instance; + internal static TextureLerper instance + { + get + { + if (m_Instance == null) + m_Instance = new TextureLerper(); + + return m_Instance; + } + } + + CommandBuffer m_Command; + PropertySheetFactory m_PropertySheets; + PostProcessResources m_Resources; + + List m_Recycled; + List m_Actives; + + TextureLerper() + { + m_Recycled = new List(); + m_Actives = new List(); + } + + internal void BeginFrame(PostProcessRenderContext context) + { + m_Command = context.command; + m_PropertySheets = context.propertySheets; + m_Resources = context.resources; + } + + internal void EndFrame() + { + // Release any remaining RT in the recycled list + if (m_Recycled.Count > 0) + { + foreach (var rt in m_Recycled) + RuntimeUtilities.Destroy(rt); + + m_Recycled.Clear(); + } + + // There's a high probability that RTs will be requested in the same order on next + // frame so keep them in the same order + if (m_Actives.Count > 0) + { + foreach (var rt in m_Actives) + m_Recycled.Add(rt); + + m_Actives.Clear(); + } + } + + RenderTexture Get(RenderTextureFormat format, int w, int h, int d = 1, bool enableRandomWrite = false, bool force3D = false) + { + RenderTexture rt = null; + int i, len = m_Recycled.Count; + + for (i = 0; i < len; i++) + { + var r = m_Recycled[i]; + if (r.width == w && r.height == h && r.volumeDepth == d && r.format == format && r.enableRandomWrite == enableRandomWrite && (!force3D || (r.dimension == TextureDimension.Tex3D))) + { + rt = r; + break; + } + } + + if (rt == null) + { + var dimension = (d > 1) || force3D + ? TextureDimension.Tex3D + : TextureDimension.Tex2D; + + rt = new RenderTexture(w, h, 0, format) + { + dimension = dimension, + filterMode = FilterMode.Bilinear, + wrapMode = TextureWrapMode.Clamp, + anisoLevel = 0, + volumeDepth = d, + enableRandomWrite = enableRandomWrite + }; + rt.Create(); + } + else m_Recycled.RemoveAt(i); + + m_Actives.Add(rt); + return rt; + } + + internal Texture Lerp(Texture from, Texture to, float t) + { + Assert.IsNotNull(from); + Assert.IsNotNull(to); + Assert.AreEqual(from.width, to.width); + Assert.AreEqual(from.height, to.height); + + // Saves a potentially expensive fullscreen blit when using dirt textures & the likes + if (from == to) + return from; + + // Don't need to lerp boundary conditions + if (t <= 0f) return from; + if (t >= 1f) return to; + + bool is3D = from is Texture3D + || (from is RenderTexture && ((RenderTexture)from).volumeDepth > 1); + + RenderTexture rt; + + // 3D texture blending is a special case and only works on compute enabled platforms + if (is3D) + { + int dpth = @from is Texture3D ? ((Texture3D) @from).depth : ((RenderTexture) @from).volumeDepth; + int size = Mathf.Max(from.width, from.height); + size = Mathf.Max(size, dpth); + + rt = Get(RenderTextureFormat.ARGBHalf, from.width, from.height, dpth, true, true); + + var compute = m_Resources.computeShaders.texture3dLerp; + int kernel = compute.FindKernel("KTexture3DLerp"); + m_Command.SetComputeVectorParam(compute, "_DimensionsAndLerp", new Vector4(from.width, from.height, dpth, t)); + m_Command.SetComputeTextureParam(compute, kernel, "_Output", rt); + m_Command.SetComputeTextureParam(compute, kernel, "_From", from); + m_Command.SetComputeTextureParam(compute, kernel, "_To", to); + + uint tgsX, tgsY, tgsZ; + compute.GetKernelThreadGroupSizes(kernel, out tgsX, out tgsY, out tgsZ); + Assert.AreEqual(tgsX, tgsY); + int groupSizeXY = Mathf.CeilToInt(size / (float)tgsX); + int groupSizeZ = Mathf.CeilToInt(size / (float)tgsZ); + + m_Command.DispatchCompute(compute, kernel, groupSizeXY, groupSizeXY, groupSizeZ); + return rt; + } + + // 2D texture blending + // We could handle textures with different sizes by picking the biggest one to avoid + // popping effects. This would work in most cases but will still pop if one texture is + // wider but shorter than the other. Generally speaking you're expected to use same-size + // textures anyway so we decided not to handle this case at the moment, especially since + // it would waste a lot of texture memory as soon as you start using bigger textures + // (snow ball effect). + var format = TextureFormatUtilities.GetUncompressedRenderTextureFormat(to); + rt = Get(format, to.width, to.height); + + var sheet = m_PropertySheets.Get(m_Resources.shaders.texture2dLerp); + sheet.properties.SetTexture(ShaderIDs.To, to); + sheet.properties.SetFloat(ShaderIDs.Interp, t); + + m_Command.BlitFullscreenTriangle(from, rt, sheet, 0); + + return rt; + } + + internal Texture Lerp(Texture from, Color to, float t) + { + Assert.IsNotNull(from); + + if (t < 0.00001) + return from; + + bool is3D = from is Texture3D + || (from is RenderTexture && ((RenderTexture)from).volumeDepth > 1); + + RenderTexture rt; + + // 3D texture blending is a special case and only works on compute enabled platforms + if (is3D) + { + int dpth = @from is Texture3D ? ((Texture3D) @from).depth : ((RenderTexture) @from).volumeDepth; + int size = Mathf.Max(from.width, from.height); + size = Mathf.Max(size, dpth); + + rt = Get(RenderTextureFormat.ARGBHalf, from.width, from.height, dpth, true, true); + + var compute = m_Resources.computeShaders.texture3dLerp; + int kernel = compute.FindKernel("KTexture3DLerpToColor"); + m_Command.SetComputeVectorParam(compute, "_DimensionsAndLerp", new Vector4(from.width, from.height, dpth, t)); + m_Command.SetComputeVectorParam(compute, "_TargetColor", new Vector4(to.r, to.g, to.b, to.a)); + m_Command.SetComputeTextureParam(compute, kernel, "_Output", rt); + m_Command.SetComputeTextureParam(compute, kernel, "_From", from); + + int groupSize = Mathf.CeilToInt(size / 4f); + m_Command.DispatchCompute(compute, kernel, groupSize, groupSize, groupSize); + return rt; + } + + // 2D texture blending + // We could handle textures with different sizes by picking the biggest one to avoid + // popping effects. This would work in most cases but will still pop if one texture is + // wider but shorter than the other. Generally speaking you're expected to use same-size + // textures anyway so we decided not to handle this case at the moment, especially since + // it would waste a lot of texture memory as soon as you start using bigger textures + // (snow ball effect). + var format = TextureFormatUtilities.GetUncompressedRenderTextureFormat(from); + rt = Get(format, from.width, from.height); + + var sheet = m_PropertySheets.Get(m_Resources.shaders.texture2dLerp); + sheet.properties.SetVector(ShaderIDs.TargetColor, new Vector4(to.r, to.g, to.b, to.a)); + sheet.properties.SetFloat(ShaderIDs.Interp, t); + + m_Command.BlitFullscreenTriangle(from, rt, sheet, 1); + + return rt; + } + + + internal void Clear() + { + foreach (var rt in m_Actives) + RuntimeUtilities.Destroy(rt); + + foreach (var rt in m_Recycled) + RuntimeUtilities.Destroy(rt); + + m_Actives.Clear(); + m_Recycled.Clear(); + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/TextureLerper.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/TextureLerper.cs.meta new file mode 100644 index 0000000..3ee298c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/TextureLerper.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f85e8d04208ed5145a521dd27d174830 +timeCreated: 1496844853 +licenseType: Pro +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/XRSettings.cs b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/XRSettings.cs new file mode 100644 index 0000000..2f811e6 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/XRSettings.cs @@ -0,0 +1,35 @@ +// Small shim for VRSettings/XRSettings on XboxOne, Switch and PS Vita +#if ((UNITY_XBOXONE || UNITY_SWITCH || UNITY_PSP2) && !UNITY_2018_3_OR_NEWER) && !UNITY_EDITOR +using System; + +#if UNITY_2017_2_OR_NEWER +namespace UnityEngine.XR +#else +namespace UnityEngine.VR +#endif +{ +#if UNITY_2017_2_OR_NEWER + public static class XRSettings +#elif UNITY_5_6_OR_NEWER + public static class VRSettings +#endif + { + public static bool enabled { get; set; } + public static bool isDeviceActive { get; private set; } + public static bool showDeviceView { get; set; } + [Obsolete("renderScale is deprecated, use XRSettings.eyeTextureResolutionScale instead (UnityUpgradable) -> eyeTextureResolutionScale")] + public static float renderScale { get; set; } + public static float eyeTextureResolutionScale { get; set; } + public static int eyeTextureWidth { get; private set; } + public static int eyeTextureHeight { get; private set; } + public static RenderTextureDescriptor eyeTextureDesc { get; private set; } + public static float renderViewportScale { get; set; } + public static float occlusionMaskScale { get; set; } + public static bool useOcclusionMesh { get; set; } + public static string loadedDeviceName { get; private set; } + public static string[] supportedDevices { get; private set; } + public static void LoadDeviceByName(string deviceName) { } + public static void LoadDeviceByName(string[] prioritizedDeviceNameList) { } + } +} +#endif diff --git a/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/XRSettings.cs.meta b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/XRSettings.cs.meta new file mode 100644 index 0000000..3505161 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Runtime/Utils/XRSettings.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c387aa7210e2f324b85febd7211d6c9f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders.meta new file mode 100644 index 0000000..95e67ba --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 660a3ee04f28e0a4a97dc5831c5a1de3 +folderAsset: yes +timeCreated: 1488806877 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/ACES.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/ACES.hlsl new file mode 100644 index 0000000..9f77efe --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/ACES.hlsl @@ -0,0 +1,1309 @@ +#ifndef __ACES__ +#define __ACES__ + +/** + * https://github.com/ampas/aces-dev + * + * Academy Color Encoding System (ACES) software and tools are provided by the + * Academy under the following terms and conditions: A worldwide, royalty-free, + * non-exclusive right to copy, modify, create derivatives, and use, in source and + * binary forms, is hereby granted, subject to acceptance of this license. + * + * Copyright 2015 Academy of Motion Picture Arts and Sciences (A.M.P.A.S.). + * Portions contributed by others as indicated. All rights reserved. + * + * Performance of any of the aforementioned acts indicates acceptance to be bound + * by the following terms and conditions: + * + * * Copies of source code, in whole or in part, must retain the above copyright + * notice, this list of conditions and the Disclaimer of Warranty. + * + * * Use in binary form must retain the above copyright notice, this list of + * conditions and the Disclaimer of Warranty in the documentation and/or other + * materials provided with the distribution. + * + * * Nothing in this license shall be deemed to grant any rights to trademarks, + * copyrights, patents, trade secrets or any other intellectual property of + * A.M.P.A.S. or any contributors, except as expressly stated herein. + * + * * Neither the name "A.M.P.A.S." nor the name of any other contributors to this + * software may be used to endorse or promote products derivative of or based on + * this software without express prior written permission of A.M.P.A.S. or the + * contributors, as appropriate. + * + * This license shall be construed pursuant to the laws of the State of + * California, and any disputes related thereto shall be subject to the + * jurisdiction of the courts therein. + * + * Disclaimer of Warranty: THIS SOFTWARE IS PROVIDED BY A.M.P.A.S. AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND + * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL A.M.P.A.S., OR ANY + * CONTRIBUTORS OR DISTRIBUTORS, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, RESITUTIONARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * WITHOUT LIMITING THE GENERALITY OF THE FOREGOING, THE ACADEMY SPECIFICALLY + * DISCLAIMS ANY REPRESENTATIONS OR WARRANTIES WHATSOEVER RELATED TO PATENT OR + * OTHER INTELLECTUAL PROPERTY RIGHTS IN THE ACADEMY COLOR ENCODING SYSTEM, OR + * APPLICATIONS THEREOF, HELD BY PARTIES OTHER THAN A.M.P.A.S.,WHETHER DISCLOSED OR + * UNDISCLOSED. + */ + +#include "StdLib.hlsl" + +#define ACEScc_MAX 1.4679964 +#define ACEScc_MIDGRAY 0.4135884 + +// +// Precomputed matrices (pre-transposed) +// See https://github.com/ampas/aces-dev/blob/master/transforms/ctl/README-MATRIX.md +// +static const half3x3 sRGB_2_AP0 = { + 0.4397010, 0.3829780, 0.1773350, + 0.0897923, 0.8134230, 0.0967616, + 0.0175440, 0.1115440, 0.8707040 +}; + +static const half3x3 sRGB_2_AP1 = { + 0.61319, 0.33951, 0.04737, + 0.07021, 0.91634, 0.01345, + 0.02062, 0.10957, 0.86961 +}; + +static const half3x3 AP0_2_sRGB = { + 2.52169, -1.13413, -0.38756, + -0.27648, 1.37272, -0.09624, + -0.01538, -0.15298, 1.16835, +}; + +static const half3x3 AP1_2_sRGB = { + 1.70505, -0.62179, -0.08326, + -0.13026, 1.14080, -0.01055, + -0.02400, -0.12897, 1.15297, +}; + +static const half3x3 AP0_2_AP1_MAT = { + 1.4514393161, -0.2365107469, -0.2149285693, + -0.0765537734, 1.1762296998, -0.0996759264, + 0.0083161484, -0.0060324498, 0.9977163014 +}; + +static const half3x3 AP1_2_AP0_MAT = { + 0.6954522414, 0.1406786965, 0.1638690622, + 0.0447945634, 0.8596711185, 0.0955343182, + -0.0055258826, 0.0040252103, 1.0015006723 +}; + +static const half3x3 AP1_2_XYZ_MAT = { + 0.6624541811, 0.1340042065, 0.1561876870, + 0.2722287168, 0.6740817658, 0.0536895174, + -0.0055746495, 0.0040607335, 1.0103391003 +}; + +static const half3x3 XYZ_2_AP1_MAT = { + 1.6410233797, -0.3248032942, -0.2364246952, + -0.6636628587, 1.6153315917, 0.0167563477, + 0.0117218943, -0.0082844420, 0.9883948585 +}; + +static const half3x3 XYZ_2_REC709_MAT = { + 3.2409699419, -1.5373831776, -0.4986107603, + -0.9692436363, 1.8759675015, 0.0415550574, + 0.0556300797, -0.2039769589, 1.0569715142 +}; + +static const half3x3 XYZ_2_REC2020_MAT = { + 1.7166511880, -0.3556707838, -0.2533662814, + -0.6666843518, 1.6164812366, 0.0157685458, + 0.0176398574, -0.0427706133, 0.9421031212 +}; + +static const half3x3 XYZ_2_DCIP3_MAT = { + 2.7253940305, -1.0180030062, -0.4401631952, + -0.7951680258, 1.6897320548, 0.0226471906, + 0.0412418914, -0.0876390192, 1.1009293786 +}; + +static const half3 AP1_RGB2Y = half3(0.272229, 0.674082, 0.0536895); + +static const half3x3 RRT_SAT_MAT = { + 0.9708890, 0.0269633, 0.00214758, + 0.0108892, 0.9869630, 0.00214758, + 0.0108892, 0.0269633, 0.96214800 +}; + +static const half3x3 ODT_SAT_MAT = { + 0.949056, 0.0471857, 0.00375827, + 0.019056, 0.9771860, 0.00375827, + 0.019056, 0.0471857, 0.93375800 +}; + +static const half3x3 D60_2_D65_CAT = { + 0.98722400, -0.00611327, 0.0159533, + -0.00759836, 1.00186000, 0.0053302, + 0.00307257, -0.00509595, 1.0816800 +}; + +// +// Unity to ACES +// +// converts Unity raw (sRGB primaries) to +// ACES2065-1 (AP0 w/ linear encoding) +// +half3 unity_to_ACES(half3 x) +{ + x = mul(sRGB_2_AP0, x); + return x; +} + +// +// ACES to Unity +// +// converts ACES2065-1 (AP0 w/ linear encoding) +// Unity raw (sRGB primaries) to +// +half3 ACES_to_unity(half3 x) +{ + x = mul(AP0_2_sRGB, x); + return x; +} + +// +// Unity to ACEScg +// +// converts Unity raw (sRGB primaries) to +// ACEScg (AP1 w/ linear encoding) +// +half3 unity_to_ACEScg(half3 x) +{ + x = mul(sRGB_2_AP1, x); + return x; +} + +// +// ACEScg to Unity +// +// converts ACEScg (AP1 w/ linear encoding) to +// Unity raw (sRGB primaries) +// +half3 ACEScg_to_unity(half3 x) +{ + x = mul(AP1_2_sRGB, x); + return x; +} + +// +// ACES Color Space Conversion - ACES to ACEScc +// +// converts ACES2065-1 (AP0 w/ linear encoding) to +// ACEScc (AP1 w/ logarithmic encoding) +// +// This transform follows the formulas from section 4.4 in S-2014-003 +// +half ACES_to_ACEScc(half x) +{ + if (x <= 0.0) + return -0.35828683; // = (log2(pow(2.0, -15.0) * 0.5) + 9.72) / 17.52 + else if (x < pow(2.0, -15.0)) + return (log2(pow(2.0, -16.0) + x * 0.5) + 9.72) / 17.52; + else // (x >= pow(2.0, -15.0)) + return (log2(x) + 9.72) / 17.52; +} + +half3 ACES_to_ACEScc(half3 x) +{ + x = clamp(x, 0.0, HALF_MAX); + + // x is clamped to [0, HALF_MAX], skip the <= 0 check + return (x < 0.00003051757) ? (log2(0.00001525878 + x * 0.5) + 9.72) / 17.52 : (log2(x) + 9.72) / 17.52; + + /* + return half3( + ACES_to_ACEScc(x.r), + ACES_to_ACEScc(x.g), + ACES_to_ACEScc(x.b) + ); + */ +} + +// +// ACES Color Space Conversion - ACEScc to ACES +// +// converts ACEScc (AP1 w/ ACESlog encoding) to +// ACES2065-1 (AP0 w/ linear encoding) +// +// This transform follows the formulas from section 4.4 in S-2014-003 +// +half ACEScc_to_ACES(half x) +{ + // TODO: Optimize me + if (x < -0.3013698630) // (9.72 - 15) / 17.52 + return (pow(2.0, x * 17.52 - 9.72) - pow(2.0, -16.0)) * 2.0; + else if (x < (log2(HALF_MAX) + 9.72) / 17.52) + return pow(2.0, x * 17.52 - 9.72); + else // (x >= (log2(HALF_MAX) + 9.72) / 17.52) + return HALF_MAX; +} + +half3 ACEScc_to_ACES(half3 x) +{ + return half3( + ACEScc_to_ACES(x.r), + ACEScc_to_ACES(x.g), + ACEScc_to_ACES(x.b) + ); +} + +// +// ACES Color Space Conversion - ACES to ACEScg +// +// converts ACES2065-1 (AP0 w/ linear encoding) to +// ACEScg (AP1 w/ linear encoding) +// +half3 ACES_to_ACEScg(half3 x) +{ + return mul(AP0_2_AP1_MAT, x); +} + +// +// ACES Color Space Conversion - ACEScg to ACES +// +// converts ACEScg (AP1 w/ linear encoding) to +// ACES2065-1 (AP0 w/ linear encoding) +// +half3 ACEScg_to_ACES(half3 x) +{ + return mul(AP1_2_AP0_MAT, x); +} + +// +// Reference Rendering Transform (RRT) +// +// Input is ACES +// Output is OCES +// +half rgb_2_saturation(half3 rgb) +{ + const half TINY = 1e-4; + half mi = Min3(rgb.r, rgb.g, rgb.b); + half ma = Max3(rgb.r, rgb.g, rgb.b); + return (max(ma, TINY) - max(mi, TINY)) / max(ma, 1e-2); +} + +half rgb_2_yc(half3 rgb) +{ + const half ycRadiusWeight = 1.75; + + // Converts RGB to a luminance proxy, here called YC + // YC is ~ Y + K * Chroma + // Constant YC is a cone-shaped surface in RGB space, with the tip on the + // neutral axis, towards white. + // YC is normalized: RGB 1 1 1 maps to YC = 1 + // + // ycRadiusWeight defaults to 1.75, although can be overridden in function + // call to rgb_2_yc + // ycRadiusWeight = 1 -> YC for pure cyan, magenta, yellow == YC for neutral + // of same value + // ycRadiusWeight = 2 -> YC for pure red, green, blue == YC for neutral of + // same value. + + half r = rgb.x; + half g = rgb.y; + half b = rgb.z; + half chroma = sqrt(b * (b - g) + g * (g - r) + r * (r - b)); + return (b + g + r + ycRadiusWeight * chroma) / 3.0; +} + +half rgb_2_hue(half3 rgb) +{ + // Returns a geometric hue angle in degrees (0-360) based on RGB values. + // For neutral colors, hue is undefined and the function will return a quiet NaN value. + half hue; + if (rgb.x == rgb.y && rgb.y == rgb.z) + hue = 0.0; // RGB triplets where RGB are equal have an undefined hue + else + hue = (180.0 / PI) * atan2(sqrt(3.0) * (rgb.y - rgb.z), 2.0 * rgb.x - rgb.y - rgb.z); + + if (hue < 0.0) hue = hue + 360.0; + + return hue; +} + +half center_hue(half hue, half centerH) +{ + half hueCentered = hue - centerH; + if (hueCentered < -180.0) hueCentered = hueCentered + 360.0; + else if (hueCentered > 180.0) hueCentered = hueCentered - 360.0; + return hueCentered; +} + +half sigmoid_shaper(half x) +{ + // Sigmoid function in the range 0 to 1 spanning -2 to +2. + + half t = max(1.0 - abs(x / 2.0), 0.0); + half y = 1.0 + FastSign(x) * (1.0 - t * t); + + return y / 2.0; +} + +half glow_fwd(half ycIn, half glowGainIn, half glowMid) +{ + half glowGainOut; + + if (ycIn <= 2.0 / 3.0 * glowMid) + glowGainOut = glowGainIn; + else if (ycIn >= 2.0 * glowMid) + glowGainOut = 0.0; + else + glowGainOut = glowGainIn * (glowMid / ycIn - 1.0 / 2.0); + + return glowGainOut; +} + +/* +half cubic_basis_shaper +( + half x, + half w // full base width of the shaper function (in degrees) +) +{ + half M[4][4] = { + { -1.0 / 6, 3.0 / 6, -3.0 / 6, 1.0 / 6 }, + { 3.0 / 6, -6.0 / 6, 3.0 / 6, 0.0 / 6 }, + { -3.0 / 6, 0.0 / 6, 3.0 / 6, 0.0 / 6 }, + { 1.0 / 6, 4.0 / 6, 1.0 / 6, 0.0 / 6 } + }; + + half knots[5] = { + -w / 2.0, + -w / 4.0, + 0.0, + w / 4.0, + w / 2.0 + }; + + half y = 0.0; + if ((x > knots[0]) && (x < knots[4])) + { + half knot_coord = (x - knots[0]) * 4.0 / w; + int j = knot_coord; + half t = knot_coord - j; + + half monomials[4] = { t*t*t, t*t, t, 1.0 }; + + // (if/else structure required for compatibility with CTL < v1.5.) + if (j == 3) + { + y = monomials[0] * M[0][0] + monomials[1] * M[1][0] + + monomials[2] * M[2][0] + monomials[3] * M[3][0]; + } + else if (j == 2) + { + y = monomials[0] * M[0][1] + monomials[1] * M[1][1] + + monomials[2] * M[2][1] + monomials[3] * M[3][1]; + } + else if (j == 1) + { + y = monomials[0] * M[0][2] + monomials[1] * M[1][2] + + monomials[2] * M[2][2] + monomials[3] * M[3][2]; + } + else if (j == 0) + { + y = monomials[0] * M[0][3] + monomials[1] * M[1][3] + + monomials[2] * M[2][3] + monomials[3] * M[3][3]; + } + else + { + y = 0.0; + } + } + + return y * 3.0 / 2.0; +} +*/ + +static const half3x3 M = { + 0.5, -1.0, 0.5, + -1.0, 1.0, 0.0, + 0.5, 0.5, 0.0 +}; + +half segmented_spline_c5_fwd(half x) +{ + const half coefsLow[6] = { -4.0000000000, -4.0000000000, -3.1573765773, -0.4852499958, 1.8477324706, 1.8477324706 }; // coefs for B-spline between minPoint and midPoint (units of log luminance) + const half coefsHigh[6] = { -0.7185482425, 2.0810307172, 3.6681241237, 4.0000000000, 4.0000000000, 4.0000000000 }; // coefs for B-spline between midPoint and maxPoint (units of log luminance) + const half2 minPoint = half2(0.18 * exp2(-15.0), 0.0001); // {luminance, luminance} linear extension below this + const half2 midPoint = half2(0.18, 0.48); // {luminance, luminance} + const half2 maxPoint = half2(0.18 * exp2(18.0), 10000.0); // {luminance, luminance} linear extension above this + const half slopeLow = 0.0; // log-log slope of low linear extension + const half slopeHigh = 0.0; // log-log slope of high linear extension + + const int N_KNOTS_LOW = 4; + const int N_KNOTS_HIGH = 4; + + // Check for negatives or zero before taking the log. If negative or zero, + // set to ACESMIN.1 + float xCheck = x; + if (xCheck <= 0.0) xCheck = 0.00006103515; // = pow(2.0, -14.0); + + half logx = log10(xCheck); + half logy; + + if (logx <= log10(minPoint.x)) + { + logy = logx * slopeLow + (log10(minPoint.y) - slopeLow * log10(minPoint.x)); + } + else if ((logx > log10(minPoint.x)) && (logx < log10(midPoint.x))) + { + half knot_coord = (N_KNOTS_LOW - 1) * (logx - log10(minPoint.x)) / (log10(midPoint.x) - log10(minPoint.x)); + int j = knot_coord; + half t = knot_coord - j; + + half3 cf = half3(coefsLow[j], coefsLow[j + 1], coefsLow[j + 2]); + half3 monomials = half3(t * t, t, 1.0); + logy = dot(monomials, mul(M, cf)); + } + else if ((logx >= log10(midPoint.x)) && (logx < log10(maxPoint.x))) + { + half knot_coord = (N_KNOTS_HIGH - 1) * (logx - log10(midPoint.x)) / (log10(maxPoint.x) - log10(midPoint.x)); + int j = knot_coord; + half t = knot_coord - j; + + half3 cf = half3(coefsHigh[j], coefsHigh[j + 1], coefsHigh[j + 2]); + half3 monomials = half3(t * t, t, 1.0); + logy = dot(monomials, mul(M, cf)); + } + else + { //if (logIn >= log10(maxPoint.x)) { + logy = logx * slopeHigh + (log10(maxPoint.y) - slopeHigh * log10(maxPoint.x)); + } + + return pow(10.0, logy); +} + +half segmented_spline_c9_fwd(half x) +{ + const half coefsLow[10] = { -1.6989700043, -1.6989700043, -1.4779000000, -1.2291000000, -0.8648000000, -0.4480000000, 0.0051800000, 0.4511080334, 0.9113744414, 0.9113744414 }; // coefs for B-spline between minPoint and midPoint (units of log luminance) + const half coefsHigh[10] = { 0.5154386965, 0.8470437783, 1.1358000000, 1.3802000000, 1.5197000000, 1.5985000000, 1.6467000000, 1.6746091357, 1.6878733390, 1.6878733390 }; // coefs for B-spline between midPoint and maxPoint (units of log luminance) + const half2 minPoint = half2(segmented_spline_c5_fwd(0.18 * exp2(-6.5)), 0.02); // {luminance, luminance} linear extension below this + const half2 midPoint = half2(segmented_spline_c5_fwd(0.18), 4.8); // {luminance, luminance} + const half2 maxPoint = half2(segmented_spline_c5_fwd(0.18 * exp2(6.5)), 48.0); // {luminance, luminance} linear extension above this + const half slopeLow = 0.0; // log-log slope of low linear extension + const half slopeHigh = 0.04; // log-log slope of high linear extension + + const int N_KNOTS_LOW = 8; + const int N_KNOTS_HIGH = 8; + + // Check for negatives or zero before taking the log. If negative or zero, + // set to OCESMIN. + half xCheck = x; + if (xCheck <= 0.0) xCheck = 1e-4; + + half logx = log10(xCheck); + half logy; + + if (logx <= log10(minPoint.x)) + { + logy = logx * slopeLow + (log10(minPoint.y) - slopeLow * log10(minPoint.x)); + } + else if ((logx > log10(minPoint.x)) && (logx < log10(midPoint.x))) + { + half knot_coord = (N_KNOTS_LOW - 1) * (logx - log10(minPoint.x)) / (log10(midPoint.x) - log10(minPoint.x)); + int j = knot_coord; + half t = knot_coord - j; + + half3 cf = half3(coefsLow[j], coefsLow[j + 1], coefsLow[j + 2]); + half3 monomials = half3(t * t, t, 1.0); + logy = dot(monomials, mul(M, cf)); + } + else if ((logx >= log10(midPoint.x)) && (logx < log10(maxPoint.x))) + { + half knot_coord = (N_KNOTS_HIGH - 1) * (logx - log10(midPoint.x)) / (log10(maxPoint.x) - log10(midPoint.x)); + int j = knot_coord; + half t = knot_coord - j; + + half3 cf = half3(coefsHigh[j], coefsHigh[j + 1], coefsHigh[j + 2]); + half3 monomials = half3(t * t, t, 1.0); + logy = dot(monomials, mul(M, cf)); + } + else + { //if (logIn >= log10(maxPoint.x)) { + logy = logx * slopeHigh + (log10(maxPoint.y) - slopeHigh * log10(maxPoint.x)); + } + + return pow(10.0, logy); +} + +static const half RRT_GLOW_GAIN = 0.05; +static const half RRT_GLOW_MID = 0.08; + +static const half RRT_RED_SCALE = 0.82; +static const half RRT_RED_PIVOT = 0.03; +static const half RRT_RED_HUE = 0.0; +static const half RRT_RED_WIDTH = 135.0; + +static const half RRT_SAT_FACTOR = 0.96; + +half3 RRT(half3 aces) +{ + // --- Glow module --- // + half saturation = rgb_2_saturation(aces); + half ycIn = rgb_2_yc(aces); + half s = sigmoid_shaper((saturation - 0.4) / 0.2); + half addedGlow = 1.0 + glow_fwd(ycIn, RRT_GLOW_GAIN * s, RRT_GLOW_MID); + aces *= addedGlow; + + // --- Red modifier --- // + half hue = rgb_2_hue(aces); + half centeredHue = center_hue(hue, RRT_RED_HUE); + half hueWeight; + { + //hueWeight = cubic_basis_shaper(centeredHue, RRT_RED_WIDTH); + hueWeight = smoothstep(0.0, 1.0, 1.0 - abs(2.0 * centeredHue / RRT_RED_WIDTH)); + hueWeight *= hueWeight; + } + + aces.r += hueWeight * saturation * (RRT_RED_PIVOT - aces.r) * (1.0 - RRT_RED_SCALE); + + // --- ACES to RGB rendering space --- // + aces = clamp(aces, 0.0, HALF_MAX); // avoids saturated negative colors from becoming positive in the matrix + half3 rgbPre = mul(AP0_2_AP1_MAT, aces); + rgbPre = clamp(rgbPre, 0, HALF_MAX); + + // --- Global desaturation --- // + //rgbPre = mul(RRT_SAT_MAT, rgbPre); + rgbPre = lerp(dot(rgbPre, AP1_RGB2Y).xxx, rgbPre, RRT_SAT_FACTOR.xxx); + + // --- Apply the tonescale independently in rendering-space RGB --- // + half3 rgbPost; + rgbPost.x = segmented_spline_c5_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c5_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c5_fwd(rgbPre.z); + + // --- RGB rendering space to OCES --- // + half3 rgbOces = mul(AP1_2_AP0_MAT, rgbPost); + + return rgbOces; +} + +// +// Output Device Transform +// +half3 Y_2_linCV(half3 Y, half Ymax, half Ymin) +{ + return (Y - Ymin) / (Ymax - Ymin); +} + +half3 XYZ_2_xyY(half3 XYZ) +{ + half divisor = max(dot(XYZ, (1.0).xxx), 1e-4); + return half3(XYZ.xy / divisor, XYZ.y); +} + +half3 xyY_2_XYZ(half3 xyY) +{ + half m = xyY.z / max(xyY.y, 1e-4); + half3 XYZ = half3(xyY.xz, (1.0 - xyY.x - xyY.y)); + XYZ.xz *= m; + return XYZ; +} + +static const half DIM_SURROUND_GAMMA = 0.9811; + +half3 darkSurround_to_dimSurround(half3 linearCV) +{ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + half3 xyY = XYZ_2_xyY(XYZ); + xyY.z = clamp(xyY.z, 0.0, HALF_MAX); + xyY.z = pow(xyY.z, DIM_SURROUND_GAMMA); + XYZ = xyY_2_XYZ(xyY); + + return mul(XYZ_2_AP1_MAT, XYZ); +} + +half moncurve_r(half y, half gamma, half offs) +{ + // Reverse monitor curve + half x; + const half yb = pow(offs * gamma / ((gamma - 1.0) * (1.0 + offs)), gamma); + const half rs = pow((gamma - 1.0) / offs, gamma - 1.0) * pow((1.0 + offs) / gamma, gamma); + if (y >= yb) + x = (1.0 + offs) * pow(y, 1.0 / gamma) - offs; + else + x = y * rs; + return x; +} + +half bt1886_r(half L, half gamma, half Lw, half Lb) +{ + // The reference EOTF specified in Rec. ITU-R BT.1886 + // L = a(max[(V+b),0])^g + half a = pow(pow(Lw, 1.0 / gamma) - pow(Lb, 1.0 / gamma), gamma); + half b = pow(Lb, 1.0 / gamma) / (pow(Lw, 1.0 / gamma) - pow(Lb, 1.0 / gamma)); + half V = pow(max(L / a, 0.0), 1.0 / gamma) - b; + return V; +} + +half roll_white_fwd( + half x, // color value to adjust (white scaled to around 1.0) + half new_wht, // white adjustment (e.g. 0.9 for 10% darkening) + half width // adjusted width (e.g. 0.25 for top quarter of the tone scale) + ) +{ + const half x0 = -1.0; + const half x1 = x0 + width; + const half y0 = -new_wht; + const half y1 = x1; + const half m1 = (x1 - x0); + const half a = y0 - y1 + m1; + const half b = 2.0 * (y1 - y0) - m1; + const half c = y0; + const half t = (-x - x0) / (x1 - x0); + half o = 0.0; + if (t < 0.0) + o = -(t * b + c); + else if (t > 1.0) + o = x; + else + o = -((t * a + b) * t + c); + return o; +} + +half3 linear_to_sRGB(half3 x) +{ + return (x <= 0.0031308 ? (x * 12.9232102) : 1.055 * pow(x, 1.0 / 2.4) - 0.055); +} + +half3 linear_to_bt1886(half3 x, half gamma, half Lw, half Lb) +{ + // Good enough approximation for now, may consider using the exact formula instead + // TODO: Experiment + return pow(max(x, 0.0), 1.0 / 2.4); + + // Correct implementation (Reference EOTF specified in Rec. ITU-R BT.1886) : + // L = a(max[(V+b),0])^g + half invgamma = 1.0 / gamma; + half p_Lw = pow(Lw, invgamma); + half p_Lb = pow(Lb, invgamma); + half3 a = pow(p_Lw - p_Lb, gamma).xxx; + half3 b = (p_Lb / p_Lw - p_Lb).xxx; + half3 V = pow(max(x / a, 0.0), invgamma.xxx) - b; + return V; +} + +static const half CINEMA_WHITE = 48.0; +static const half CINEMA_BLACK = CINEMA_WHITE / 2400.0; +static const half ODT_SAT_FACTOR = 0.93; + +// ODT.Academy.RGBmonitor_100nits_dim.a1.0.3 +// ACES 1.0 Output - sRGB + +// +// Output Device Transform - RGB computer monitor +// + +// +// Summary : +// This transform is intended for mapping OCES onto a desktop computer monitor +// typical of those used in motion picture visual effects production. These +// monitors may occasionally be referred to as "sRGB" displays, however, the +// monitor for which this transform is designed does not exactly match the +// specifications in IEC 61966-2-1:1999. +// +// The assumed observer adapted white is D65, and the viewing environment is +// that of a dim surround. +// +// The monitor specified is intended to be more typical of those found in +// visual effects production. +// +// Device Primaries : +// Primaries are those specified in Rec. ITU-R BT.709 +// CIE 1931 chromaticities: x y Y +// Red: 0.64 0.33 +// Green: 0.3 0.6 +// Blue: 0.15 0.06 +// White: 0.3127 0.329 100 cd/m^2 +// +// Display EOTF : +// The reference electro-optical transfer function specified in +// IEC 61966-2-1:1999. +// +// Signal Range: +// This transform outputs full range code values. +// +// Assumed observer adapted white point: +// CIE 1931 chromaticities: x y +// 0.3127 0.329 +// +// Viewing Environment: +// This ODT has a compensation for viewing environment variables more typical +// of those associated with video mastering. +// +half3 ODT_RGBmonitor_100nits_dim(half3 oces) +{ + // OCES to RGB rendering space + half3 rgbPre = mul(AP0_2_AP1_MAT, oces); + + // Apply the tonescale independently in rendering-space RGB + half3 rgbPost; + rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); + + // Scale luminance to linear code value + half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // Apply gamma adjustment to compensate for dim surround + linearCV = darkSurround_to_dimSurround(linearCV); + + // Apply desaturation to compensate for luminance difference + //linearCV = mul(ODT_SAT_MAT, linearCV); + linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); + + // Convert to display primary encoding + // Rendering space RGB to XYZ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // Apply CAT from ACES white point to assumed observer adapted white point + XYZ = mul(D60_2_D65_CAT, XYZ); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_REC709_MAT, XYZ); + + // Handle out-of-gamut values + // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) + linearCV = saturate(linearCV); + + // TODO: Revisit when it is possible to deactivate Unity default framebuffer encoding + // with sRGB opto-electrical transfer function (OETF). + /* + // Encode linear code values with transfer function + half3 outputCV; + // moncurve_r with gamma of 2.4 and offset of 0.055 matches the EOTF found in IEC 61966-2-1:1999 (sRGB) + const half DISPGAMMA = 2.4; + const half OFFSET = 0.055; + outputCV.x = moncurve_r(linearCV.x, DISPGAMMA, OFFSET); + outputCV.y = moncurve_r(linearCV.y, DISPGAMMA, OFFSET); + outputCV.z = moncurve_r(linearCV.z, DISPGAMMA, OFFSET); + + outputCV = linear_to_sRGB(linearCV); + */ + + // Unity already draws to a sRGB target + return linearCV; +} + +// ODT.Academy.RGBmonitor_D60sim_100nits_dim.a1.0.3 +// ACES 1.0 Output - sRGB (D60 sim.) + +// +// Output Device Transform - RGB computer monitor (D60 simulation) +// + +// +// Summary : +// This transform is intended for mapping OCES onto a desktop computer monitor +// typical of those used in motion picture visual effects production. These +// monitors may occasionally be referred to as "sRGB" displays, however, the +// monitor for which this transform is designed does not exactly match the +// specifications in IEC 61966-2-1:1999. +// +// The assumed observer adapted white is D60, and the viewing environment is +// that of a dim surround. +// +// The monitor specified is intended to be more typical of those found in +// visual effects production. +// +// Device Primaries : +// Primaries are those specified in Rec. ITU-R BT.709 +// CIE 1931 chromaticities: x y Y +// Red: 0.64 0.33 +// Green: 0.3 0.6 +// Blue: 0.15 0.06 +// White: 0.3127 0.329 100 cd/m^2 +// +// Display EOTF : +// The reference electro-optical transfer function specified in +// IEC 61966-2-1:1999. +// +// Signal Range: +// This transform outputs full range code values. +// +// Assumed observer adapted white point: +// CIE 1931 chromaticities: x y +// 0.32168 0.33767 +// +// Viewing Environment: +// This ODT has a compensation for viewing environment variables more typical +// of those associated with video mastering. +// +half3 ODT_RGBmonitor_D60sim_100nits_dim(half3 oces) +{ + // OCES to RGB rendering space + half3 rgbPre = mul(AP0_2_AP1_MAT, oces); + + // Apply the tonescale independently in rendering-space RGB + half3 rgbPost; + rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); + + // Scale luminance to linear code value + half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // --- Compensate for different white point being darker --- // + // This adjustment is to correct an issue that exists in ODTs where the device + // is calibrated to a white chromaticity other than D60. In order to simulate + // D60 on such devices, unequal code values are sent to the display to achieve + // neutrals at D60. In order to produce D60 on a device calibrated to the DCI + // white point (i.e. equal code values yield CIE x,y chromaticities of 0.314, + // 0.351) the red channel is higher than green and blue to compensate for the + // "greenish" DCI white. This is the correct behavior but it means that as + // highlight increase, the red channel will hit the device maximum first and + // clip, resulting in a chromaticity shift as the green and blue channels + // continue to increase. + // To avoid this clipping error, a slight scale factor is applied to allow the + // ODTs to simulate D60 within the D65 calibration white point. + + // Scale and clamp white to avoid casted highlights due to D60 simulation + const half SCALE = 0.955; + linearCV = min(linearCV, 1.0) * SCALE; + + // Apply gamma adjustment to compensate for dim surround + linearCV = darkSurround_to_dimSurround(linearCV); + + // Apply desaturation to compensate for luminance difference + //linearCV = mul(ODT_SAT_MAT, linearCV); + linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); + + // Convert to display primary encoding + // Rendering space RGB to XYZ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_REC709_MAT, XYZ); + + // Handle out-of-gamut values + // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) + linearCV = saturate(linearCV); + + // TODO: Revisit when it is possible to deactivate Unity default framebuffer encoding + // with sRGB opto-electrical transfer function (OETF). + /* + // Encode linear code values with transfer function + half3 outputCV; + // moncurve_r with gamma of 2.4 and offset of 0.055 matches the EOTF found in IEC 61966-2-1:1999 (sRGB) + const half DISPGAMMA = 2.4; + const half OFFSET = 0.055; + outputCV.x = moncurve_r(linearCV.x, DISPGAMMA, OFFSET); + outputCV.y = moncurve_r(linearCV.y, DISPGAMMA, OFFSET); + outputCV.z = moncurve_r(linearCV.z, DISPGAMMA, OFFSET); + + outputCV = linear_to_sRGB(linearCV); + */ + + // Unity already draws to a sRGB target + return linearCV; +} + +// ODT.Academy.Rec709_100nits_dim.a1.0.3 +// ACES 1.0 Output - Rec.709 + +// +// Output Device Transform - Rec709 +// + +// +// Summary : +// This transform is intended for mapping OCES onto a Rec.709 broadcast monitor +// that is calibrated to a D65 white point at 100 cd/m^2. The assumed observer +// adapted white is D65, and the viewing environment is a dim surround. +// +// A possible use case for this transform would be HDTV/video mastering. +// +// Device Primaries : +// Primaries are those specified in Rec. ITU-R BT.709 +// CIE 1931 chromaticities: x y Y +// Red: 0.64 0.33 +// Green: 0.3 0.6 +// Blue: 0.15 0.06 +// White: 0.3127 0.329 100 cd/m^2 +// +// Display EOTF : +// The reference electro-optical transfer function specified in +// Rec. ITU-R BT.1886. +// +// Signal Range: +// By default, this transform outputs full range code values. If instead a +// SMPTE "legal" signal is desired, there is a runtime flag to output +// SMPTE legal signal. In ctlrender, this can be achieved by appending +// '-param1 legalRange 1' after the '-ctl odt.ctl' string. +// +// Assumed observer adapted white point: +// CIE 1931 chromaticities: x y +// 0.3127 0.329 +// +// Viewing Environment: +// This ODT has a compensation for viewing environment variables more typical +// of those associated with video mastering. +// +half3 ODT_Rec709_100nits_dim(half3 oces) +{ + // OCES to RGB rendering space + half3 rgbPre = mul(AP0_2_AP1_MAT, oces); + + // Apply the tonescale independently in rendering-space RGB + half3 rgbPost; + rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); + + // Scale luminance to linear code value + half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // Apply gamma adjustment to compensate for dim surround + linearCV = darkSurround_to_dimSurround(linearCV); + + // Apply desaturation to compensate for luminance difference + //linearCV = mul(ODT_SAT_MAT, linearCV); + linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); + + // Convert to display primary encoding + // Rendering space RGB to XYZ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // Apply CAT from ACES white point to assumed observer adapted white point + XYZ = mul(D60_2_D65_CAT, XYZ); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_REC709_MAT, XYZ); + + // Handle out-of-gamut values + // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) + linearCV = saturate(linearCV); + + // Encode linear code values with transfer function + const half DISPGAMMA = 2.4; + const half L_W = 1.0; + const half L_B = 0.0; + half3 outputCV = linear_to_bt1886(linearCV, DISPGAMMA, L_W, L_B); + + // TODO: Implement support for legal range. + + // NOTE: Unity framebuffer encoding is encoded with sRGB opto-electrical transfer function (OETF) + // by default which will result in double perceptual encoding, thus for now if one want to use + // this ODT, he needs to decode its output with sRGB electro-optical transfer function (EOTF) to + // compensate for Unity default behaviour. + + return outputCV; +} + +// ODT.Academy.Rec709_D60sim_100nits_dim.a1.0.3 +// ACES 1.0 Output - Rec.709 (D60 sim.) + +// +// Output Device Transform - Rec709 (D60 simulation) +// + +// +// Summary : +// This transform is intended for mapping OCES onto a Rec.709 broadcast monitor +// that is calibrated to a D65 white point at 100 cd/m^2. The assumed observer +// adapted white is D60, and the viewing environment is a dim surround. +// +// A possible use case for this transform would be cinema "soft-proofing". +// +// Device Primaries : +// Primaries are those specified in Rec. ITU-R BT.709 +// CIE 1931 chromaticities: x y Y +// Red: 0.64 0.33 +// Green: 0.3 0.6 +// Blue: 0.15 0.06 +// White: 0.3127 0.329 100 cd/m^2 +// +// Display EOTF : +// The reference electro-optical transfer function specified in +// Rec. ITU-R BT.1886. +// +// Signal Range: +// By default, this transform outputs full range code values. If instead a +// SMPTE "legal" signal is desired, there is a runtime flag to output +// SMPTE legal signal. In ctlrender, this can be achieved by appending +// '-param1 legalRange 1' after the '-ctl odt.ctl' string. +// +// Assumed observer adapted white point: +// CIE 1931 chromaticities: x y +// 0.32168 0.33767 +// +// Viewing Environment: +// This ODT has a compensation for viewing environment variables more typical +// of those associated with video mastering. +// +half3 ODT_Rec709_D60sim_100nits_dim(half3 oces) +{ + // OCES to RGB rendering space + half3 rgbPre = mul(AP0_2_AP1_MAT, oces); + + // Apply the tonescale independently in rendering-space RGB + half3 rgbPost; + rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); + + // Scale luminance to linear code value + half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // --- Compensate for different white point being darker --- // + // This adjustment is to correct an issue that exists in ODTs where the device + // is calibrated to a white chromaticity other than D60. In order to simulate + // D60 on such devices, unequal code values must be sent to the display to achieve + // the chromaticities of D60. More specifically, in order to produce D60 on a device + // calibrated to a D65 white point (i.e. equal code values yield CIE x,y + // chromaticities of 0.3127, 0.329) the red channel must be slightly higher than + // that of green and blue in order to compensate for the relatively more "blue-ish" + // D65 white. This unequalness of color channels is the correct behavior but it + // means that as neutral highlights increase, the red channel will hit the + // device maximum first and clip, resulting in a small chromaticity shift as the + // green and blue channels continue to increase to their maximums. + // To avoid this clipping error, a slight scale factor is applied to allow the + // ODTs to simulate D60 within the D65 calibration white point. + + // Scale and clamp white to avoid casted highlights due to D60 simulation + const half SCALE = 0.955; + linearCV = min(linearCV, 1.0) * SCALE; + + // Apply gamma adjustment to compensate for dim surround + linearCV = darkSurround_to_dimSurround(linearCV); + + // Apply desaturation to compensate for luminance difference + //linearCV = mul(ODT_SAT_MAT, linearCV); + linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); + + // Convert to display primary encoding + // Rendering space RGB to XYZ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_REC709_MAT, XYZ); + + // Handle out-of-gamut values + // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) + linearCV = saturate(linearCV); + + // Encode linear code values with transfer function + const half DISPGAMMA = 2.4; + const half L_W = 1.0; + const half L_B = 0.0; + half3 outputCV = linear_to_bt1886(linearCV, DISPGAMMA, L_W, L_B); + + // TODO: Implement support for legal range. + + // NOTE: Unity framebuffer encoding is encoded with sRGB opto-electrical transfer function (OETF) + // by default which will result in double perceptual encoding, thus for now if one want to use + // this ODT, he needs to decode its output with sRGB electro-optical transfer function (EOTF) to + // compensate for Unity default behaviour. + + return outputCV; +} + +// ODT.Academy.Rec2020_100nits_dim.a1.0.3 +// ACES 1.0 Output - Rec.2020 + +// +// Output Device Transform - Rec2020 +// + +// +// Summary : +// This transform is intended for mapping OCES onto a Rec.2020 broadcast +// monitor that is calibrated to a D65 white point at 100 cd/m^2. The assumed +// observer adapted white is D65, and the viewing environment is that of a dim +// surround. +// +// A possible use case for this transform would be UHDTV/video mastering. +// +// Device Primaries : +// Primaries are those specified in Rec. ITU-R BT.2020 +// CIE 1931 chromaticities: x y Y +// Red: 0.708 0.292 +// Green: 0.17 0.797 +// Blue: 0.131 0.046 +// White: 0.3127 0.329 100 cd/m^2 +// +// Display EOTF : +// The reference electro-optical transfer function specified in +// Rec. ITU-R BT.1886. +// +// Signal Range: +// By default, this transform outputs full range code values. If instead a +// SMPTE "legal" signal is desired, there is a runtime flag to output +// SMPTE legal signal. In ctlrender, this can be achieved by appending +// '-param1 legalRange 1' after the '-ctl odt.ctl' string. +// +// Assumed observer adapted white point: +// CIE 1931 chromaticities: x y +// 0.3127 0.329 +// +// Viewing Environment: +// This ODT has a compensation for viewing environment variables more typical +// of those associated with video mastering. +// + +half3 ODT_Rec2020_100nits_dim(half3 oces) +{ + // OCES to RGB rendering space + half3 rgbPre = mul(AP0_2_AP1_MAT, oces); + + // Apply the tonescale independently in rendering-space RGB + half3 rgbPost; + rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); + + // Scale luminance to linear code value + half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // Apply gamma adjustment to compensate for dim surround + linearCV = darkSurround_to_dimSurround(linearCV); + + // Apply desaturation to compensate for luminance difference + //linearCV = mul(ODT_SAT_MAT, linearCV); + linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); + + // Convert to display primary encoding + // Rendering space RGB to XYZ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // Apply CAT from ACES white point to assumed observer adapted white point + XYZ = mul(D60_2_D65_CAT, XYZ); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_REC2020_MAT, XYZ); + + // Handle out-of-gamut values + // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) + linearCV = saturate(linearCV); + + // Encode linear code values with transfer function + const half DISPGAMMA = 2.4; + const half L_W = 1.0; + const half L_B = 0.0; + half3 outputCV = linear_to_bt1886(linearCV, DISPGAMMA, L_W, L_B); + + // TODO: Implement support for legal range. + + // NOTE: Unity framebuffer encoding is encoded with sRGB opto-electrical transfer function (OETF) + // by default which will result in double perceptual encoding, thus for now if one want to use + // this ODT, he needs to decode its output with sRGB electro-optical transfer function (EOTF) to + // compensate for Unity default behaviour. + + return outputCV; +} + +// ODT.Academy.P3DCI_48nits.a1.0.3 +// ACES 1.0 Output - P3-DCI + +// +// Output Device Transform - P3DCI (D60 Simulation) +// + +// +// Summary : +// This transform is intended for mapping OCES onto a P3 digital cinema +// projector that is calibrated to a DCI white point at 48 cd/m^2. The assumed +// observer adapted white is D60, and the viewing environment is that of a dark +// theater. +// +// Device Primaries : +// CIE 1931 chromaticities: x y Y +// Red: 0.68 0.32 +// Green: 0.265 0.69 +// Blue: 0.15 0.06 +// White: 0.314 0.351 48 cd/m^2 +// +// Display EOTF : +// Gamma: 2.6 +// +// Assumed observer adapted white point: +// CIE 1931 chromaticities: x y +// 0.32168 0.33767 +// +// Viewing Environment: +// Environment specified in SMPTE RP 431-2-2007 +// +half3 ODT_P3DCI_48nits(half3 oces) +{ + // OCES to RGB rendering space + half3 rgbPre = mul(AP0_2_AP1_MAT, oces); + + // Apply the tonescale independently in rendering-space RGB + half3 rgbPost; + rgbPost.x = segmented_spline_c9_fwd(rgbPre.x); + rgbPost.y = segmented_spline_c9_fwd(rgbPre.y); + rgbPost.z = segmented_spline_c9_fwd(rgbPre.z); + + // Scale luminance to linear code value + half3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // --- Compensate for different white point being darker --- // + // This adjustment is to correct an issue that exists in ODTs where the device + // is calibrated to a white chromaticity other than D60. In order to simulate + // D60 on such devices, unequal code values are sent to the display to achieve + // neutrals at D60. In order to produce D60 on a device calibrated to the DCI + // white point (i.e. equal code values yield CIE x,y chromaticities of 0.314, + // 0.351) the red channel is higher than green and blue to compensate for the + // "greenish" DCI white. This is the correct behavior but it means that as + // highlight increase, the red channel will hit the device maximum first and + // clip, resulting in a chromaticity shift as the green and blue channels + // continue to increase. + // To avoid this clipping error, a slight scale factor is applied to allow the + // ODTs to simulate D60 within the D65 calibration white point. However, the + // magnitude of the scale factor required for the P3DCI ODT was considered too + // large. Therefore, the scale factor was reduced and the additional required + // compression was achieved via a reshaping of the highlight rolloff in + // conjunction with the scale. The shape of this rolloff was determined + // throught subjective experiments and deemed to best reproduce the + // "character" of the highlights in the P3D60 ODT. + + // Roll off highlights to avoid need for as much scaling + const half NEW_WHT = 0.918; + const half ROLL_WIDTH = 0.5; + linearCV.x = roll_white_fwd(linearCV.x, NEW_WHT, ROLL_WIDTH); + linearCV.y = roll_white_fwd(linearCV.y, NEW_WHT, ROLL_WIDTH); + linearCV.z = roll_white_fwd(linearCV.z, NEW_WHT, ROLL_WIDTH); + + // Scale and clamp white to avoid casted highlights due to D60 simulation + const half SCALE = 0.96; + linearCV = min(linearCV, NEW_WHT) * SCALE; + + // Convert to display primary encoding + // Rendering space RGB to XYZ + half3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_DCIP3_MAT, XYZ); + + // Handle out-of-gamut values + // Clip values < 0 or > 1 (i.e. projecting outside the display primaries) + linearCV = saturate(linearCV); + + // Encode linear code values with transfer function + const half DISPGAMMA = 2.6; + half3 outputCV = pow(linearCV, 1.0 / DISPGAMMA); + + // NOTE: Unity framebuffer encoding is encoded with sRGB opto-electrical transfer function (OETF) + // by default which will result in double perceptual encoding, thus for now if one want to use + // this ODT, he needs to decode its output with sRGB electro-optical transfer function (EOTF) to + // compensate for Unity default behaviour. + + return outputCV; +} + +#endif // __ACES__ diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/ACES.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/ACES.hlsl.meta new file mode 100644 index 0000000..2a351eb --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/ACES.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: d7de89b714449b04391f3a2fb53a9022 +timeCreated: 1493731593 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/API.meta new file mode 100644 index 0000000..c020934 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: fc4403a2b9698954c81d797b70e8a3e2 +folderAsset: yes +timeCreated: 1489753963 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/D3D11.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/D3D11.hlsl new file mode 100644 index 0000000..1982bcb --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/D3D11.hlsl @@ -0,0 +1,52 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) cbuffer name { +#define CBUFFER_END }; + +#if UNITY_GATHER_SUPPORTED + #define FXAA_HLSL_5 1 + #define SMAA_HLSL_4_1 1 +#else + #define FXAA_HLSL_4 1 + #define SMAA_HLSL_4 1 +#endif diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/D3D11.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/D3D11.hlsl.meta new file mode 100644 index 0000000..f4b2c38 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/D3D11.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: d4e61b1eb5c3ac248add7bb738198560 +timeCreated: 1489753963 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/D3D12.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/D3D12.hlsl new file mode 100644 index 0000000..1982bcb --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/D3D12.hlsl @@ -0,0 +1,52 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) cbuffer name { +#define CBUFFER_END }; + +#if UNITY_GATHER_SUPPORTED + #define FXAA_HLSL_5 1 + #define SMAA_HLSL_4_1 1 +#else + #define FXAA_HLSL_4 1 + #define SMAA_HLSL_4 1 +#endif diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/D3D12.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/D3D12.hlsl.meta new file mode 100644 index 0000000..8591a6d --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/D3D12.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: ed6416461734f3a4d97b2475252d5f6c +timeCreated: 1489754075 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/D3D9.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/D3D9.hlsl new file mode 100644 index 0000000..8427b9c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/D3D9.hlsl @@ -0,0 +1,43 @@ +// ALso used for Direct3D 11 "feature level 9.x" target for Windows Store and Windows Phone +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 0 +#define UNITY_GATHER_SUPPORTED 0 +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) sampler2D textureName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) sampler3D textureName + +#define TEXTURE2D(textureName) sampler2D textureName +#define SAMPLER2D(samplerName) + +#define TEXTURE3D(textureName) sampler3D textureName +#define SAMPLER3D(samplerName) + +#define TEXTURE2D_ARGS(textureName, samplerName) sampler2D textureName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName + +#define TEXTURE3D_ARGS(textureName, samplerName) sampler3D textureName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) tex2D(textureName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) tex2Dlod(textureName, float4(coord2, 0.0, lod)) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) tex3D(textureName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) tex2D(textureName, icoord2 / texelSize) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) tex2Dlod(textureName, float4(icoord2 / texelSize, 0.0, lod)) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH +#define UNITY_FLATTEN +#define UNITY_UNROLL +#define UNITY_LOOP +#define UNITY_FASTOPT + +#define CBUFFER_START(name) +#define CBUFFER_END + +#define FXAA_HLSL_3 1 +#define SMAA_HLSL_3 1 diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/D3D9.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/D3D9.hlsl.meta new file mode 100644 index 0000000..bb4b211 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/D3D9.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: a741cbbb27e6ad747a354440a9132a66 +timeCreated: 1489754265 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/Metal.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/Metal.hlsl new file mode 100644 index 0000000..5091698 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/Metal.hlsl @@ -0,0 +1,47 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED 0 // Currently broken on Metal for some reason (May 2017) +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) cbuffer name { +#define CBUFFER_END }; + +#define FXAA_HLSL_4 1 // See UNITY_GATHER_SUPPORTED +#define SMAA_HLSL_4 1 diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/Metal.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/Metal.hlsl.meta new file mode 100644 index 0000000..40b26e7 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/Metal.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 38502e5cb7782364ba3db59850a9a8ad +timeCreated: 1489753963 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/OpenGL.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/OpenGL.hlsl new file mode 100644 index 0000000..9c7cd11 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/OpenGL.hlsl @@ -0,0 +1,57 @@ +// For now OpenGL is considered at GLES2 level +#define UNITY_UV_STARTS_AT_TOP 0 +#define UNITY_REVERSED_Z 0 +#define UNITY_GATHER_SUPPORTED 0 +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) sampler2D textureName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) sampler3D textureName + +#define TEXTURE2D(textureName) sampler2D textureName +#define SAMPLER2D(samplerName) + +#define TEXTURE3D(textureName) sampler3D textureName +#define SAMPLER3D(samplerName) + +#define TEXTURE2D_ARGS(textureName, samplerName) sampler2D textureName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName + +#define TEXTURE3D_ARGS(textureName, samplerName) sampler3D textureName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) tex2D(textureName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) tex2Dlod(textureName, float4(coord2, 0.0, lod)) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) tex3D(textureName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) tex2D(textureName, icoord2 / texelSize) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) tex2Dlod(textureName, float4(icoord2 / texelSize, 0.0, lod)) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#if SHADER_API_GLES +# define UNITY_BRANCH +# define UNITY_FLATTEN +# define UNITY_UNROLL +# define UNITY_LOOP +# define UNITY_FASTOPT +#else +# define UNITY_BRANCH [branch] +# define UNITY_FLATTEN [flatten] +# define UNITY_UNROLL [unroll] +# define UNITY_LOOP [loop] +# define UNITY_FASTOPT [fastopt] +#endif + +#define CBUFFER_START(name) +#define CBUFFER_END + +#define FXAA_HLSL_3 1 +#define SMAA_HLSL_3 1 + +// pragma exclude_renderers is only supported since Unity 2018.1 for compute shaders +#if UNITY_VERSION < 201810 && !defined(SHADER_API_GLCORE) +# define DISABLE_COMPUTE_SHADERS 1 +# define TRIVIAL_COMPUTE_KERNEL(name) [numthreads(1, 1, 1)] void name() {} +#endif diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/OpenGL.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/OpenGL.hlsl.meta new file mode 100644 index 0000000..76f5212 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/OpenGL.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 6a0c0086cde60e74e9ad1fce57eab9f1 +timeCreated: 1489754265 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/PSP2.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/PSP2.hlsl new file mode 100644 index 0000000..dcb0c7e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/PSP2.hlsl @@ -0,0 +1,48 @@ + +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 0 +#define UNITY_GATHER_SUPPORTED 0 +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 0 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) sampler2D textureName + +#define TEXTURE2D(textureName) sampler2D textureName +#define SAMPLER2D(samplerName) + +#define TEXTURE2D_ARGS(textureName, samplerName) sampler2D textureName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) tex2D(textureName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) tex2Dlod(textureName, float4(coord2, 0.0, lod)) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) tex2D(textureName, icoord2 / texelSize) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) tex2Dlod(textureName, float4(icoord2 / texelSize, 0.0, lod)) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) tex2D(textureName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) tex2Dlod(textureName, float4(coord2, 0.0, lod)).r + +// 3D textures are not supported on Vita, use 2D to avoid compile errors. +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) sampler2D textureName +#define TEXTURE3D(textureName) sampler2D textureName +#define SAMPLER3D(samplerName) +#define TEXTURE3D_ARGS(textureName, samplerName) sampler2D textureName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) tex2D(textureName, coord3) + +#define UNITY_BRANCH +#define UNITY_FLATTEN +#define UNITY_UNROLL +#define UNITY_LOOP +#define UNITY_FASTOPT + +#define CBUFFER_START(name) +#define CBUFFER_END + +#define FXAA_HLSL_3 1 +#define SMAA_HLSL_3 1 + +// pragma exclude_renderers is only supported since Unity 2018.1 for compute shaders +#if UNITY_VERSION < 201810 && !defined(SHADER_API_GLCORE) +# define DISABLE_COMPUTE_SHADERS 1 +# define TRIVIAL_COMPUTE_KERNEL(name) [numthreads(1, 1, 1)] void name() {} +#endif diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/PSP2.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/PSP2.hlsl.meta new file mode 100644 index 0000000..8bbb61a --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/PSP2.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: d916afaf5049bb24989e8e823280e99c +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/PSSL.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/PSSL.hlsl new file mode 100644 index 0000000..ef3eafb --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/PSSL.hlsl @@ -0,0 +1,55 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 +#define INTRINSIC_MINMAX3 +#define Min3 min3 +#define Max3 max3 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) ConstantBuffer name { +#define CBUFFER_END }; + +#if UNITY_GATHER_SUPPORTED + #define FXAA_HLSL_5 1 + #define SMAA_HLSL_4_1 1 +#else + #define FXAA_HLSL_4 1 + #define SMAA_HLSL_4 1 +#endif diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/PSSL.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/PSSL.hlsl.meta new file mode 100644 index 0000000..e442407 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/PSSL.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 2399c8729aaf8344e8f9cf4721c5803a +timeCreated: 1489753963 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/Switch.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/Switch.hlsl new file mode 100644 index 0000000..875e6e0 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/Switch.hlsl @@ -0,0 +1,51 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) cbuffer name { +#define CBUFFER_END }; + +#if UNITY_GATHER_SUPPORTED + #define FXAA_HLSL_5 1 + #define SMAA_HLSL_4_1 1 +#else + #define FXAA_HLSL_4 1 + #define SMAA_HLSL_4 1 +#endif diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/Switch.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/Switch.hlsl.meta new file mode 100644 index 0000000..aac6044 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/Switch.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 18095202690616846a484e633db69455 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/Vulkan.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/Vulkan.hlsl new file mode 100644 index 0000000..1982bcb --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/Vulkan.hlsl @@ -0,0 +1,52 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) cbuffer name { +#define CBUFFER_END }; + +#if UNITY_GATHER_SUPPORTED + #define FXAA_HLSL_5 1 + #define SMAA_HLSL_4_1 1 +#else + #define FXAA_HLSL_4 1 + #define SMAA_HLSL_4 1 +#endif diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/Vulkan.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/Vulkan.hlsl.meta new file mode 100644 index 0000000..5c00788 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/Vulkan.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 4f2b019548c499944923c5da221047a6 +timeCreated: 1489754021 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/XboxOne.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/XboxOne.hlsl new file mode 100644 index 0000000..1982bcb --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/XboxOne.hlsl @@ -0,0 +1,52 @@ +#define UNITY_UV_STARTS_AT_TOP 1 +#define UNITY_REVERSED_Z 1 +#define UNITY_GATHER_SUPPORTED (SHADER_TARGET >= 50) +#define UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM 1 + +#define TEXTURE2D_SAMPLER2D(textureName, samplerName) Texture2D textureName; SamplerState samplerName +#define TEXTURE3D_SAMPLER3D(textureName, samplerName) Texture3D textureName; SamplerState samplerName + +#define TEXTURE2D(textureName) Texture2D textureName +#define SAMPLER2D(samplerName) SamplerState samplerName + +#define TEXTURE3D(textureName) Texture3D textureName +#define SAMPLER3D(samplerName) SamplerState samplerName + +#define TEXTURE2D_ARGS(textureName, samplerName) Texture2D textureName, SamplerState samplerName +#define TEXTURE2D_PARAM(textureName, samplerName) textureName, samplerName + +#define TEXTURE3D_ARGS(textureName, samplerName) Texture3D textureName, SamplerState samplerName +#define TEXTURE3D_PARAM(textureName, samplerName) textureName, samplerName + +#define SAMPLE_TEXTURE2D(textureName, samplerName, coord2) textureName.Sample(samplerName, coord2) +#define SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod) textureName.SampleLevel(samplerName, coord2, lod) + +#define SAMPLE_TEXTURE3D(textureName, samplerName, coord3) textureName.Sample(samplerName, coord3) + +#define LOAD_TEXTURE2D(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, 0)) +#define LOAD_TEXTURE2D_LOD(textureName, texelSize, icoord2) textureName.Load(int3(icoord2, lod)) + +#define GATHER_TEXTURE2D(textureName, samplerName, coord2) textureName.Gather(samplerName, coord2) +#define GATHER_RED_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherRed(samplerName, coord2) +#define GATHER_GREEN_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherGreen(samplerName, coord2) +#define GATHER_BLUE_TEXTURE2D(textureName, samplerName, coord2) textureName.GatherBlue(samplerName, coord2) + +#define SAMPLE_DEPTH_TEXTURE(textureName, samplerName, coord2) SAMPLE_TEXTURE2D(textureName, samplerName, coord2).r +#define SAMPLE_DEPTH_TEXTURE_LOD(textureName, samplerName, coord2, lod) SAMPLE_TEXTURE2D_LOD(textureName, samplerName, coord2, lod).r + +#define UNITY_BRANCH [branch] +#define UNITY_FLATTEN [flatten] +#define UNITY_UNROLL [unroll] +#define UNITY_LOOP [loop] +#define UNITY_FASTOPT [fastopt] + +#define CBUFFER_START(name) cbuffer name { +#define CBUFFER_END }; + +#if UNITY_GATHER_SUPPORTED + #define FXAA_HLSL_5 1 + #define SMAA_HLSL_4_1 1 +#else + #define FXAA_HLSL_4 1 + #define SMAA_HLSL_4 1 +#endif diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/API/XboxOne.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/XboxOne.hlsl.meta new file mode 100644 index 0000000..b9eb304 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/API/XboxOne.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: cd7292cede5bbe44cb888e1e40efac1e +timeCreated: 1489754021 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins.meta new file mode 100644 index 0000000..cc44d0e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 2ea9ecb99e9d2604c9c553b14e63a67f +folderAsset: yes +timeCreated: 1492175377 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/AutoExposure.compute b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/AutoExposure.compute new file mode 100644 index 0000000..f87197d --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/AutoExposure.compute @@ -0,0 +1,88 @@ +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#pragma kernel KAutoExposureAvgLuminance_fixed MAIN=KAutoExposureAvgLuminance_fixed +#pragma kernel KAutoExposureAvgLuminance_progressive MAIN=KAutoExposureAvgLuminance_progressive PROGRESSIVE + +#include "../StdLib.hlsl" +#include "ExposureHistogram.hlsl" + +StructuredBuffer _HistogramBuffer; +Texture2D _Source; +RWTexture2D _Destination; + +CBUFFER_START(Params) + float4 _Params1; // x: lowPercent, y: highPercent, z: minBrightness, w: maxBrightness + float4 _Params2; // x: speed down, y: speed up, z: exposure compensation, w: delta time + float4 _ScaleOffsetRes; // x: scale, y: offset, w: histogram pass width, h: histogram pass height +CBUFFER_END + +groupshared uint gs_pyramid[HISTOGRAM_REDUCTION_BINS]; + +float GetExposureMultiplier(float avgLuminance) +{ + avgLuminance = max(EPSILON, avgLuminance); + //float keyValue = 1.03 - (2.0 / (2.0 + log2(avgLuminance + 1.0))); + float keyValue = _Params2.z; + float exposure = keyValue / avgLuminance; + return exposure; +} + +float InterpolateExposure(float newExposure, float oldExposure) +{ + float delta = newExposure - oldExposure; + float speed = delta > 0.0 ? _Params2.x : _Params2.y; + float exposure = oldExposure + delta * (1.0 - exp2(-_Params2.w * speed)); + return exposure; +} + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(MAIN) + +#else + +[numthreads(HISTOGRAM_REDUCTION_THREAD_X, HISTOGRAM_REDUCTION_THREAD_Y, 1)] +void MAIN(uint2 groupThreadId : SV_GroupThreadID) +{ +#if HISTOGRAM_REDUCTION_ALT_PATH + const uint thread_id = groupThreadId.y * HISTOGRAM_REDUCTION_THREAD_X + groupThreadId.x; + gs_pyramid[thread_id] = max(_HistogramBuffer[thread_id], _HistogramBuffer[thread_id + HISTOGRAM_REDUCTION_BINS]); +#else + const uint thread_id = groupThreadId.y * HISTOGRAM_REDUCTION_THREAD_X + groupThreadId.x; + gs_pyramid[thread_id] = _HistogramBuffer[thread_id]; +#endif + + GroupMemoryBarrierWithGroupSync(); + + // Parallel reduction to find the max value + UNITY_UNROLL + for (uint i = HISTOGRAM_REDUCTION_BINS >> 1u; i > 0u; i >>= 1u) + { + if (thread_id < i) + gs_pyramid[thread_id] = max(gs_pyramid[thread_id], gs_pyramid[thread_id + i]); + + GroupMemoryBarrierWithGroupSync(); + } + + GroupMemoryBarrierWithGroupSync(); + + if (thread_id == 0u) + { + float maxValue = 1.0 / float(gs_pyramid[0]); + +#if PROGRESSIVE + float avgLuminance = GetAverageLuminance(_HistogramBuffer, _Params1, maxValue, _ScaleOffsetRes.xy); + float exposure = GetExposureMultiplier(avgLuminance); + float prevExposure = _Source[uint2(0u, 0u)].x; + exposure = InterpolateExposure(exposure, prevExposure); + _Destination[uint2(0u, 0u)].x = exposure.x; +#else + float avgLuminance = GetAverageLuminance(_HistogramBuffer, _Params1, maxValue, _ScaleOffsetRes.xy); + float exposure = GetExposureMultiplier(avgLuminance); + _Destination[uint2(0u, 0u)].x = exposure.x; +#endif + } +} + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/AutoExposure.compute.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/AutoExposure.compute.meta new file mode 100644 index 0000000..b5bf316 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/AutoExposure.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 34845e0ca016b7448842e965db5890a5 +timeCreated: 1519314976 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 2228228 + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Bloom.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Bloom.shader new file mode 100644 index 0000000..04ccc6f --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Bloom.shader @@ -0,0 +1,205 @@ +Shader "Hidden/PostProcessing/Bloom" +{ + HLSLINCLUDE + + #include "../StdLib.hlsl" + #include "../Colors.hlsl" + #include "../Sampling.hlsl" + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); + TEXTURE2D_SAMPLER2D(_BloomTex, sampler_BloomTex); + TEXTURE2D_SAMPLER2D(_AutoExposureTex, sampler_AutoExposureTex); + + float4 _MainTex_TexelSize; + float _SampleScale; + float4 _ColorIntensity; + float4 _Threshold; // x: threshold value (linear), y: threshold - knee, z: knee * 2, w: 0.25 / knee + float4 _Params; // x: clamp, yzw: unused + + // ---------------------------------------------------------------------------------------- + // Prefilter + + half4 Prefilter(half4 color, float2 uv) + { + half autoExposure = SAMPLE_TEXTURE2D(_AutoExposureTex, sampler_AutoExposureTex, uv).r; + color *= autoExposure; + color = min(_Params.x, color); // clamp to max + color = QuadraticThreshold(color, _Threshold.x, _Threshold.yzw); + return color; + } + + half4 FragPrefilter13(VaryingsDefault i) : SV_Target + { + half4 color = DownsampleBox13Tap(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy); + return Prefilter(SafeHDR(color), i.texcoord); + } + + half4 FragPrefilter4(VaryingsDefault i) : SV_Target + { + half4 color = DownsampleBox4Tap(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy); + return Prefilter(SafeHDR(color), i.texcoord); + } + + // ---------------------------------------------------------------------------------------- + // Downsample + + half4 FragDownsample13(VaryingsDefault i) : SV_Target + { + half4 color = DownsampleBox13Tap(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy); + return color; + } + + half4 FragDownsample4(VaryingsDefault i) : SV_Target + { + half4 color = DownsampleBox4Tap(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy); + return color; + } + + // ---------------------------------------------------------------------------------------- + // Upsample & combine + + half4 Combine(half4 bloom, float2 uv) + { + half4 color = SAMPLE_TEXTURE2D(_BloomTex, sampler_BloomTex, uv); + return bloom + color; + } + + half4 FragUpsampleTent(VaryingsDefault i) : SV_Target + { + half4 bloom = UpsampleTent(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy, _SampleScale); + return Combine(bloom, i.texcoordStereo); + } + + half4 FragUpsampleBox(VaryingsDefault i) : SV_Target + { + half4 bloom = UpsampleBox(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy, _SampleScale); + return Combine(bloom, i.texcoordStereo); + } + + // ---------------------------------------------------------------------------------------- + // Debug overlays + + half4 FragDebugOverlayThreshold(VaryingsDefault i) : SV_Target + { + half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + return half4(Prefilter(SafeHDR(color), i.texcoord).rgb, 1.0); + } + + half4 FragDebugOverlayTent(VaryingsDefault i) : SV_Target + { + half4 bloom = UpsampleTent(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy, _SampleScale); + return half4(bloom.rgb * _ColorIntensity.w * _ColorIntensity.rgb, 1.0); + } + + half4 FragDebugOverlayBox(VaryingsDefault i) : SV_Target + { + half4 bloom = UpsampleBox(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), i.texcoord, UnityStereoAdjustedTexelSize(_MainTex_TexelSize).xy, _SampleScale); + return half4(bloom.rgb * _ColorIntensity.w * _ColorIntensity.rgb, 1.0); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0: Prefilter 13 taps + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragPrefilter13 + + ENDHLSL + } + + // 1: Prefilter 4 taps + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragPrefilter4 + + ENDHLSL + } + + // 2: Downsample 13 taps + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragDownsample13 + + ENDHLSL + } + + // 3: Downsample 4 taps + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragDownsample4 + + ENDHLSL + } + + // 4: Upsample tent filter + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragUpsampleTent + + ENDHLSL + } + + // 5: Upsample box filter + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragUpsampleBox + + ENDHLSL + } + + // 6: Debug overlay (threshold) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragDebugOverlayThreshold + + ENDHLSL + } + + // 7: Debug overlay (tent filter) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragDebugOverlayTent + + ENDHLSL + } + + // 8: Debug overlay (box filter) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragDebugOverlayBox + + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Bloom.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Bloom.shader.meta new file mode 100644 index 0000000..a3ce4f0 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Bloom.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: c1e1d3119c6fd4646aea0b4b74cacc1a +timeCreated: 1489940191 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Copy.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Copy.shader new file mode 100644 index 0000000..41a21c7 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Copy.shader @@ -0,0 +1,55 @@ +Shader "Hidden/PostProcessing/Copy" +{ + HLSLINCLUDE + + #include "../StdLib.hlsl" + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); + + float4 Frag(VaryingsDefault i) : SV_Target + { + float4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + return color; + } + + float4 FragKillNaN(VaryingsDefault i) : SV_Target + { + float4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + + if (AnyIsNan(color)) + { + color = (0.0).xxxx; + } + + return color; + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0 - Fullscreen triangle copy + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + } + + // 1 - Fullscreen triangle copy + NaN killer + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragKillNaN + + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Copy.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Copy.shader.meta new file mode 100644 index 0000000..d550230 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Copy.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: cdbdb71de5f9c454b980f6d0e87f0afb +timeCreated: 1489880150 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/CopyStd.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/CopyStd.shader new file mode 100644 index 0000000..7f2f4ec --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/CopyStd.shader @@ -0,0 +1,105 @@ +Shader "Hidden/PostProcessing/CopyStd" +{ + // + // We need this shader for the very first RT blit using the internal CommandBuffer.Blit() method + // so it can handle AAResolve properly. We also need it to be separate because of VR and the + // need for a Properties block. If we were to add this block to the other Copy shader it would + // not allow us to manually bind _MainTex, thus breaking a few other things in the process... + // + + Properties + { + _MainTex ("", 2D) = "white" {} + } + + CGINCLUDE + + struct Attributes + { + float4 vertex : POSITION; + float2 texcoord : TEXCOORD0; + }; + + struct Varyings + { + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + }; + + sampler2D _MainTex; + float4 _MainTex_ST; + + Varyings Vert(Attributes v) + { + Varyings o; + o.vertex = float4(v.vertex.xy * 2.0 - 1.0, 0.0, 1.0); + o.texcoord = v.texcoord; + + #if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); + #endif + + o.texcoord = o.texcoord * _MainTex_ST.xy + _MainTex_ST.zw; // We need this for VR + + return o; + } + + float4 Frag(Varyings i) : SV_Target + { + float4 color = tex2D(_MainTex, i.texcoord); + return color; + } + + //>>> We don't want to include StdLib.hlsl in this file so let's copy/paste what we need + bool IsNan(float x) + { + return (x < 0.0 || x > 0.0 || x == 0.0) ? false : true; + } + + bool AnyIsNan(float4 x) + { + return IsNan(x.x) || IsNan(x.y) || IsNan(x.z) || IsNan(x.w); + } + //<<< + + float4 FragKillNaN(Varyings i) : SV_Target + { + float4 color = tex2D(_MainTex, i.texcoord); + + if (AnyIsNan(color)) + { + color = (0.0).xxxx; + } + + return color; + } + + ENDCG + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0 - Copy + Pass + { + CGPROGRAM + + #pragma vertex Vert + #pragma fragment Frag + + ENDCG + } + + // 1 - Copy + NaN killer + Pass + { + CGPROGRAM + + #pragma vertex Vert + #pragma fragment FragKillNaN + + ENDCG + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/CopyStd.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/CopyStd.shader.meta new file mode 100644 index 0000000..3107dda --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/CopyStd.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 4bf4cff0d0bac3d43894e2e8839feb40 +timeCreated: 1502891195 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/CopyStdFromDoubleWide.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/CopyStdFromDoubleWide.shader new file mode 100644 index 0000000..e840875 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/CopyStdFromDoubleWide.shader @@ -0,0 +1,101 @@ +Shader "Hidden/PostProcessing/CopyStdFromDoubleWide" +{ + //Blit from single-pass double-wide texture. Similar to CopyStd but with stereo texture as source + //and samples from double-wide. Having separate shader is cleaner than multiple #if in the code. + + Properties + { + _MainTex ("", 2D) = "white" {} + } + + CGINCLUDE + + struct Attributes + { + float4 vertex : POSITION; + float2 texcoord : TEXCOORD0; + }; + + struct Varyings + { + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + }; + + sampler2D _MainTex; + float4 _UVScaleOffset; + + Varyings Vert(Attributes v) + { + Varyings o; + o.vertex = float4(v.vertex.xy * 2.0 - 1.0, 0.0, 1.0); + o.texcoord = v.texcoord; + + #if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); + #endif + + o.texcoord = o.texcoord * _UVScaleOffset.xy + _UVScaleOffset.zw; + + return o; + } + + float4 Frag(Varyings i) : SV_Target + { + float4 color = tex2D(_MainTex, i.texcoord); + return color; + } + + //>>> We don't want to include StdLib.hlsl in this file so let's copy/paste what we need + bool IsNan(float x) + { + return (x < 0.0 || x > 0.0 || x == 0.0) ? false : true; + } + + bool AnyIsNan(float4 x) + { + return IsNan(x.x) || IsNan(x.y) || IsNan(x.z) || IsNan(x.w); + } + //<<< + + float4 FragKillNaN(Varyings i) : SV_Target + { + float4 color = tex2D(_MainTex, i.texcoord); + + if (AnyIsNan(color)) + { + color = (0.0).xxxx; + } + + return color; + } + + ENDCG + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0 - Copy + Pass + { + CGPROGRAM + + #pragma vertex Vert + #pragma fragment Frag + + ENDCG + } + + // 1 - Copy + NaN killer + Pass + { + CGPROGRAM + + #pragma vertex Vert + #pragma fragment FragKillNaN + + ENDCG + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/CopyStdFromDoubleWide.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/CopyStdFromDoubleWide.shader.meta new file mode 100644 index 0000000..a769785 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/CopyStdFromDoubleWide.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: e8ce9961912f3214586fe8709b9012c1 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/CopyStdFromTexArray.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/CopyStdFromTexArray.shader new file mode 100644 index 0000000..1233042 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/CopyStdFromTexArray.shader @@ -0,0 +1,105 @@ +Shader "Hidden/PostProcessing/CopyStdFromTexArray" +{ + //Blit from texture array slice. Similar to CopyStd but with texture array as source + //and sampling from texture array. Having separate shader is cleaner than multiple #if in the code. + + Properties + { + _MainTex ("", 2DArray) = "white" {} + } + + CGINCLUDE + #pragma target 3.5 + + struct Attributes + { + float3 vertex : POSITION; + }; + + struct Varyings + { + float4 vertex : SV_POSITION; + float3 texcoord : TEXCOORD0; + }; + + Texture2DArray _MainTex; + SamplerState sampler_MainTex; + float _DepthSlice; + + float2 TransformTriangleVertexToUV(float2 vertex) + { + float2 uv = (vertex + 1.0) * 0.5; + return uv; + } + + Varyings Vert(Attributes v) + { + Varyings o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord.xy = TransformTriangleVertexToUV(v.vertex.xy); + + #if UNITY_UV_STARTS_AT_TOP + o.texcoord.xy = o.texcoord.xy * float2(1.0, -1.0) + float2(0.0, 1.0); + #endif + o.texcoord.z = _DepthSlice; + + return o; + } + + float4 Frag(Varyings i) : SV_Target + { + float4 color = _MainTex.Sample(sampler_MainTex, i.texcoord); + return color; + } + + bool IsNan(float x) + { + return (x < 0.0 || x > 0.0 || x == 0.0) ? false : true; + } + + bool AnyIsNan(float4 x) + { + return IsNan(x.x) || IsNan(x.y) || IsNan(x.z) || IsNan(x.w); + } + + float4 FragKillNaN(Varyings i) : SV_Target + { + float4 color = _MainTex.Sample(sampler_MainTex, i.texcoord); + + if (AnyIsNan(color)) + { + color = (0.0).xxxx; + } + + return color; + } + + ENDCG + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0 - Copy + Pass + { + CGPROGRAM + + #pragma vertex Vert + #pragma fragment Frag + + ENDCG + } + + // 0 - Copy + NaN killer + Pass + { + CGPROGRAM + + #pragma vertex Vert + #pragma fragment FragKillNaN + + ENDCG + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/CopyStdFromTexArray.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/CopyStdFromTexArray.shader.meta new file mode 100644 index 0000000..f598e8e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/CopyStdFromTexArray.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 02d2da9bc88d25c4d878c1ed4e0b3854 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DeferredFog.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DeferredFog.shader new file mode 100644 index 0000000..055fd1f --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DeferredFog.shader @@ -0,0 +1,65 @@ +Shader "Hidden/PostProcessing/DeferredFog" +{ + HLSLINCLUDE + + #pragma multi_compile __ FOG_LINEAR FOG_EXP FOG_EXP2 + #include "../StdLib.hlsl" + #include "Fog.hlsl" + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); + TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); + + #define SKYBOX_THREASHOLD_VALUE 0.9999 + + float4 Frag(VaryingsDefault i) : SV_Target + { + half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + + float depth = SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo); + depth = Linear01Depth(depth); + float dist = ComputeFogDistance(depth); + half fog = 1.0 - ComputeFog(dist); + + return lerp(color, _FogColor, fog); + } + + float4 FragExcludeSkybox(VaryingsDefault i) : SV_Target + { + half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + + float depth = SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo); + depth = Linear01Depth(depth); + float skybox = depth < SKYBOX_THREASHOLD_VALUE; + float dist = ComputeFogDistance(depth); + half fog = 1.0 - ComputeFog(dist); + + return lerp(color, _FogColor, fog * skybox); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragExcludeSkybox + + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DeferredFog.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DeferredFog.shader.meta new file mode 100644 index 0000000..96a19d7 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DeferredFog.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 4117fce9491711c4094d33a048e36e73 +timeCreated: 1498468345 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DepthOfField.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DepthOfField.hlsl new file mode 100644 index 0000000..57c597f --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DepthOfField.hlsl @@ -0,0 +1,271 @@ +#ifndef UNITY_POSTFX_DEPTH_OF_FIELD +#define UNITY_POSTFX_DEPTH_OF_FIELD + +#include "../StdLib.hlsl" +#include "../Colors.hlsl" +#include "DiskKernels.hlsl" + +TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); +float4 _MainTex_TexelSize; + +TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); +TEXTURE2D_SAMPLER2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture); + +TEXTURE2D_SAMPLER2D(_CoCTex, sampler_CoCTex); + +TEXTURE2D_SAMPLER2D(_DepthOfFieldTex, sampler_DepthOfFieldTex); +float4 _DepthOfFieldTex_TexelSize; + +// Camera parameters +float _Distance; +float _LensCoeff; // f^2 / (N * (S1 - f) * film_width * 2) +float _MaxCoC; +float _RcpMaxCoC; +float _RcpAspect; +half3 _TaaParams; // Jitter.x, Jitter.y, Blending + +// CoC calculation +half4 FragCoC(VaryingsDefault i) : SV_Target +{ + float depth = LinearEyeDepth(SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo)); + half coc = (depth - _Distance) * _LensCoeff / max(depth, 1e-5); + return saturate(coc * 0.5 * _RcpMaxCoC + 0.5); +} + +// Temporal filter +half4 FragTempFilter(VaryingsDefault i) : SV_Target +{ + float3 uvOffs = _MainTex_TexelSize.xyy * float3(1.0, 1.0, 0.0); + +#if UNITY_GATHER_SUPPORTED + + half4 cocTL = GATHER_RED_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord - uvOffs.xy * 0.5)); // top-left + half4 cocBR = GATHER_RED_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord + uvOffs.xy * 0.5)); // bottom-right + half coc1 = cocTL.x; // top + half coc2 = cocTL.z; // left + half coc3 = cocBR.x; // bottom + half coc4 = cocBR.z; // right + +#else + + half coc1 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord - uvOffs.xz)).r; // top + half coc2 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord - uvOffs.zy)).r; // left + half coc3 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord + uvOffs.zy)).r; // bottom + half coc4 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord + uvOffs.xz)).r; // right + +#endif + + // Dejittered center sample. + half coc0 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, UnityStereoTransformScreenSpaceTex(i.texcoord - _TaaParams.xy)).r; + + // CoC dilation: determine the closest point in the four neighbors + float3 closest = float3(0.0, 0.0, coc0); + closest = coc1 < closest.z ? float3(-uvOffs.xz, coc1) : closest; + closest = coc2 < closest.z ? float3(-uvOffs.zy, coc2) : closest; + closest = coc3 < closest.z ? float3( uvOffs.zy, coc3) : closest; + closest = coc4 < closest.z ? float3( uvOffs.xz, coc4) : closest; + + // Sample the history buffer with the motion vector at the closest point + float2 motion = SAMPLE_TEXTURE2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture, UnityStereoTransformScreenSpaceTex(i.texcoord + closest.xy)).xy; + half cocHis = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - motion)).r; + + // Neighborhood clamping + half cocMin = closest.z; + half cocMax = Max3(Max3(coc0, coc1, coc2), coc3, coc4); + cocHis = clamp(cocHis, cocMin, cocMax); + + // Blend with the history + return lerp(coc0, cocHis, _TaaParams.z); +} + +// Prefilter: downsampling and premultiplying +half4 FragPrefilter(VaryingsDefault i) : SV_Target +{ +#if UNITY_GATHER_SUPPORTED + + // Sample source colors + half4 c_r = GATHER_RED_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + half4 c_g = GATHER_GREEN_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + half4 c_b = GATHER_BLUE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + + half3 c0 = half3(c_r.x, c_g.x, c_b.x); + half3 c1 = half3(c_r.y, c_g.y, c_b.y); + half3 c2 = half3(c_r.z, c_g.z, c_b.z); + half3 c3 = half3(c_r.w, c_g.w, c_b.w); + + // Sample CoCs + half4 cocs = GATHER_TEXTURE2D(_CoCTex, sampler_CoCTex, i.texcoordStereo) * 2.0 - 1.0; + half coc0 = cocs.x; + half coc1 = cocs.y; + half coc2 = cocs.z; + half coc3 = cocs.w; + +#else + + float3 duv = _MainTex_TexelSize.xyx * float3(0.5, 0.5, -0.5); + float2 uv0 = UnityStereoTransformScreenSpaceTex(i.texcoord - duv.xy); + float2 uv1 = UnityStereoTransformScreenSpaceTex(i.texcoord - duv.zy); + float2 uv2 = UnityStereoTransformScreenSpaceTex(i.texcoord + duv.zy); + float2 uv3 = UnityStereoTransformScreenSpaceTex(i.texcoord + duv.xy); + + // Sample source colors + half3 c0 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv0).rgb; + half3 c1 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv1).rgb; + half3 c2 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv2).rgb; + half3 c3 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv3).rgb; + + // Sample CoCs + half coc0 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, uv0).r * 2.0 - 1.0; + half coc1 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, uv1).r * 2.0 - 1.0; + half coc2 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, uv2).r * 2.0 - 1.0; + half coc3 = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, uv3).r * 2.0 - 1.0; + +#endif + + // Apply CoC and luma weights to reduce bleeding and flickering + float w0 = abs(coc0) / (Max3(c0.r, c0.g, c0.b) + 1.0); + float w1 = abs(coc1) / (Max3(c1.r, c1.g, c1.b) + 1.0); + float w2 = abs(coc2) / (Max3(c2.r, c2.g, c2.b) + 1.0); + float w3 = abs(coc3) / (Max3(c3.r, c3.g, c3.b) + 1.0); + + // Weighted average of the color samples + half3 avg = c0 * w0 + c1 * w1 + c2 * w2 + c3 * w3; + avg /= max(w0 + w1 + w2 + w3, 1e-5); + + // Select the largest CoC value + half coc_min = min(coc0, Min3(coc1, coc2, coc3)); + half coc_max = max(coc0, Max3(coc1, coc2, coc3)); + half coc = (-coc_min > coc_max ? coc_min : coc_max) * _MaxCoC; + + // Premultiply CoC again + avg *= smoothstep(0, _MainTex_TexelSize.y * 2, abs(coc)); + +#if defined(UNITY_COLORSPACE_GAMMA) + avg = SRGBToLinear(avg); +#endif + + return half4(avg, coc); +} + +// Bokeh filter with disk-shaped kernels +half4 FragBlur(VaryingsDefault i) : SV_Target +{ + half4 samp0 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + + half4 bgAcc = 0.0; // Background: far field bokeh + half4 fgAcc = 0.0; // Foreground: near field bokeh + + UNITY_LOOP + for (int si = 0; si < kSampleCount; si++) + { + float2 disp = kDiskKernel[si] * _MaxCoC; + float dist = length(disp); + + float2 duv = float2(disp.x * _RcpAspect, disp.y); + half4 samp = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + duv)); + + // BG: Compare CoC of the current sample and the center sample + // and select smaller one. + half bgCoC = max(min(samp0.a, samp.a), 0.0); + + // Compare the CoC to the sample distance. + // Add a small margin to smooth out. + const half margin = _MainTex_TexelSize.y * 2; + half bgWeight = saturate((bgCoC - dist + margin) / margin); + half fgWeight = saturate((-samp.a - dist + margin) / margin); + + // Cut influence from focused areas because they're darkened by CoC + // premultiplying. This is only needed for near field. + fgWeight *= step(_MainTex_TexelSize.y, -samp.a); + + // Accumulation + bgAcc += half4(samp.rgb, 1.0) * bgWeight; + fgAcc += half4(samp.rgb, 1.0) * fgWeight; + } + + // Get the weighted average. + bgAcc.rgb /= bgAcc.a + (bgAcc.a == 0.0); // zero-div guard + fgAcc.rgb /= fgAcc.a + (fgAcc.a == 0.0); + + // BG: Calculate the alpha value only based on the center CoC. + // This is a rather aggressive approximation but provides stable results. + bgAcc.a = smoothstep(_MainTex_TexelSize.y, _MainTex_TexelSize.y * 2.0, samp0.a); + + // FG: Normalize the total of the weights. + fgAcc.a *= PI / kSampleCount; + + // Alpha premultiplying + half alpha = saturate(fgAcc.a); + half3 rgb = lerp(bgAcc.rgb, fgAcc.rgb, alpha); + + return half4(rgb, alpha); +} + +// Postfilter blur +half4 FragPostBlur(VaryingsDefault i) : SV_Target +{ + // 9 tap tent filter with 4 bilinear samples + const float4 duv = _MainTex_TexelSize.xyxy * float4(0.5, 0.5, -0.5, 0); + half4 acc; + acc = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - duv.xy)); + acc += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - duv.zy)); + acc += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + duv.zy)); + acc += SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + duv.xy)); + return acc / 4.0; +} + +// Combine with source +half4 FragCombine(VaryingsDefault i) : SV_Target +{ + half4 dof = SAMPLE_TEXTURE2D(_DepthOfFieldTex, sampler_DepthOfFieldTex, i.texcoordStereo); + half coc = SAMPLE_TEXTURE2D(_CoCTex, sampler_CoCTex, i.texcoordStereo).r; + coc = (coc - 0.5) * 2.0 * _MaxCoC; + + // Convert CoC to far field alpha value. + float ffa = smoothstep(_MainTex_TexelSize.y * 2.0, _MainTex_TexelSize.y * 4.0, coc); + + half4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + +#if defined(UNITY_COLORSPACE_GAMMA) + color = SRGBToLinear(color); +#endif + + half alpha = Max3(dof.r, dof.g, dof.b); + + // lerp(lerp(color, dof, ffa), dof, dof.a) + color = lerp(color, float4(dof.rgb, alpha), ffa + dof.a - ffa * dof.a); + +#if defined(UNITY_COLORSPACE_GAMMA) + color = LinearToSRGB(color); +#endif + + return color; +} + +// Debug overlay +half4 FragDebugOverlay(VaryingsDefault i) : SV_Target +{ + half3 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo).rgb; + + // Calculate the radiuses of CoC. + half4 src = SAMPLE_TEXTURE2D(_DepthOfFieldTex, sampler_DepthOfFieldTex, i.texcoordStereo); + float depth = LinearEyeDepth(SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo)); + float coc = (depth - _Distance) * _LensCoeff / depth; + coc *= 80; + + // Visualize CoC (white -> red -> gray) + half3 rgb = lerp(half3(1.0, 0.0, 0.0), half3(1.0, 1.0, 1.0), saturate(-coc)); + rgb = lerp(rgb, half3(0.4, 0.4, 0.4), saturate(coc)); + + // Black and white image overlay + rgb *= Luminance(color) + 0.5; + + // Gamma correction +#if !UNITY_COLORSPACE_GAMMA + rgb = SRGBToLinear(rgb); +#endif + + return half4(rgb, 1.0); +} + +#endif // UNITY_POSTFX_DEPTH_OF_FIELD diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DepthOfField.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DepthOfField.hlsl.meta new file mode 100644 index 0000000..b562701 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DepthOfField.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 4ae2d18891fcdd2408b0c1f3f2038c62 +timeCreated: 1491839887 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DepthOfField.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DepthOfField.shader new file mode 100644 index 0000000..d2508aa --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DepthOfField.shader @@ -0,0 +1,265 @@ +Shader "Hidden/PostProcessing/DepthOfField" +{ + // SubShader with SM 5.0 support + // DX11+, OpenGL 4.3+, OpenGL ES 3.1+AEP, Vulkan, consoles + // Gather intrinsics are used to reduce texture sample count. + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass // 0 + { + Name "CoC Calculation" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragCoC + #include "DepthOfField.hlsl" + ENDHLSL + } + + Pass // 1 + { + Name "CoC Temporal Filter" + + HLSLPROGRAM + #pragma target 5.0 + #pragma vertex VertDefault + #pragma fragment FragTempFilter + #include "DepthOfField.hlsl" + ENDHLSL + } + + Pass // 2 + { + Name "Downsample and Prefilter" + + HLSLPROGRAM + #pragma target 5.0 + #pragma vertex VertDefault + #pragma fragment FragPrefilter + #include "DepthOfField.hlsl" + ENDHLSL + } + + Pass // 3 + { + Name "Bokeh Filter (small)" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragBlur + #define KERNEL_SMALL + #include "DepthOfField.hlsl" + ENDHLSL + } + + Pass // 4 + { + Name "Bokeh Filter (medium)" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragBlur + #define KERNEL_MEDIUM + #include "DepthOfField.hlsl" + ENDHLSL + } + + Pass // 5 + { + Name "Bokeh Filter (large)" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragBlur + #define KERNEL_LARGE + #include "DepthOfField.hlsl" + ENDHLSL + } + + Pass // 6 + { + Name "Bokeh Filter (very large)" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragBlur + #define KERNEL_VERYLARGE + #include "DepthOfField.hlsl" + ENDHLSL + } + + Pass // 7 + { + Name "Postfilter" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragPostBlur + #include "DepthOfField.hlsl" + ENDHLSL + } + + Pass // 8 + { + Name "Combine" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragCombine + #include "DepthOfField.hlsl" + ENDHLSL + } + + Pass // 9 + { + Name "Debug Overlay" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragDebugOverlay + #include "DepthOfField.hlsl" + ENDHLSL + } + } + + // Fallback SubShader with SM 3.5 + // DX11+, OpenGL 3.2+, OpenGL ES 3+, Metal, Vulkan, consoles + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass // 0 + { + Name "CoC Calculation" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragCoC + #include "DepthOfField.hlsl" + ENDHLSL + } + + Pass // 1 + { + Name "CoC Temporal Filter" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragTempFilter + #include "DepthOfField.hlsl" + ENDHLSL + } + + Pass // 2 + { + Name "Downsample and Prefilter" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragPrefilter + #include "DepthOfField.hlsl" + ENDHLSL + } + + Pass // 3 + { + Name "Bokeh Filter (small)" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragBlur + #define KERNEL_SMALL + #include "DepthOfField.hlsl" + ENDHLSL + } + + Pass // 4 + { + Name "Bokeh Filter (medium)" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragBlur + #define KERNEL_MEDIUM + #include "DepthOfField.hlsl" + ENDHLSL + } + + Pass // 5 + { + Name "Bokeh Filter (large)" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragBlur + #define KERNEL_LARGE + #include "DepthOfField.hlsl" + ENDHLSL + } + + Pass // 6 + { + Name "Bokeh Filter (very large)" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragBlur + #define KERNEL_VERYLARGE + #include "DepthOfField.hlsl" + ENDHLSL + } + + Pass // 7 + { + Name "Postfilter" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragPostBlur + #include "DepthOfField.hlsl" + ENDHLSL + } + + Pass // 8 + { + Name "Combine" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragCombine + #include "DepthOfField.hlsl" + ENDHLSL + } + + Pass // 9 + { + Name "Debug Overlay" + + HLSLPROGRAM + #pragma target 3.5 + #pragma vertex VertDefault + #pragma fragment FragDebugOverlay + #include "DepthOfField.hlsl" + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DepthOfField.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DepthOfField.shader.meta new file mode 100644 index 0000000..60a2b38 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DepthOfField.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 0ef78d24e85a44f4da9d5b5eaa00e50b +timeCreated: 1491838816 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DiscardAlpha.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DiscardAlpha.shader new file mode 100644 index 0000000..ff2e702 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DiscardAlpha.shader @@ -0,0 +1,31 @@ +Shader "Hidden/PostProcessing/DiscardAlpha" +{ + HLSLINCLUDE + + #include "../StdLib.hlsl" + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); + + float4 Frag(VaryingsDefault i) : SV_Target + { + float4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + return float4(color.rgb, 1.0); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DiscardAlpha.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DiscardAlpha.shader.meta new file mode 100644 index 0000000..9e59224 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DiscardAlpha.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 5ab0816423f0dfe45841cab3b05ec9ef +timeCreated: 1496835037 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DiskKernels.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DiskKernels.hlsl new file mode 100644 index 0000000..b817ce8 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DiskKernels.hlsl @@ -0,0 +1,204 @@ +#ifndef UNITY_POSTFX_DISK_KERNELS +#define UNITY_POSTFX_DISK_KERNELS + +#if !defined(KERNEL_SMALL) && !defined(KERNEL_MEDIUM) && \ + !defined(KERNEL_LARGE) && !defined(KERNEL_VERYLARGE) + +static const int kSampleCount = 1; +static const float2 kDiskKernel[1] = { float2(0, 0) }; + +#endif + +#if defined(KERNEL_SMALL) + +// rings = 2 +// points per ring = 5 +static const int kSampleCount = 16; +static const float2 kDiskKernel[kSampleCount] = { + float2(0,0), + float2(0.54545456,0), + float2(0.16855472,0.5187581), + float2(-0.44128203,0.3206101), + float2(-0.44128197,-0.3206102), + float2(0.1685548,-0.5187581), + float2(1,0), + float2(0.809017,0.58778524), + float2(0.30901697,0.95105654), + float2(-0.30901703,0.9510565), + float2(-0.80901706,0.5877852), + float2(-1,0), + float2(-0.80901694,-0.58778536), + float2(-0.30901664,-0.9510566), + float2(0.30901712,-0.9510565), + float2(0.80901694,-0.5877853), +}; + +#endif + +#if defined(KERNEL_MEDIUM) + +// rings = 3 +// points per ring = 7 +static const int kSampleCount = 22; +static const float2 kDiskKernel[kSampleCount] = { + float2(0,0), + float2(0.53333336,0), + float2(0.3325279,0.4169768), + float2(-0.11867785,0.5199616), + float2(-0.48051673,0.2314047), + float2(-0.48051673,-0.23140468), + float2(-0.11867763,-0.51996166), + float2(0.33252785,-0.4169769), + float2(1,0), + float2(0.90096885,0.43388376), + float2(0.6234898,0.7818315), + float2(0.22252098,0.9749279), + float2(-0.22252095,0.9749279), + float2(-0.62349,0.7818314), + float2(-0.90096885,0.43388382), + float2(-1,0), + float2(-0.90096885,-0.43388376), + float2(-0.6234896,-0.7818316), + float2(-0.22252055,-0.974928), + float2(0.2225215,-0.9749278), + float2(0.6234897,-0.7818316), + float2(0.90096885,-0.43388376), +}; + +#endif + +#if defined(KERNEL_LARGE) + +// rings = 4 +// points per ring = 7 +static const int kSampleCount = 43; +static const float2 kDiskKernel[kSampleCount] = { + float2(0,0), + float2(0.36363637,0), + float2(0.22672357,0.28430238), + float2(-0.08091671,0.35451925), + float2(-0.32762504,0.15777594), + float2(-0.32762504,-0.15777591), + float2(-0.08091656,-0.35451928), + float2(0.22672352,-0.2843024), + float2(0.6818182,0), + float2(0.614297,0.29582983), + float2(0.42510667,0.5330669), + float2(0.15171885,0.6647236), + float2(-0.15171883,0.6647236), + float2(-0.4251068,0.53306687), + float2(-0.614297,0.29582986), + float2(-0.6818182,0), + float2(-0.614297,-0.29582983), + float2(-0.42510656,-0.53306705), + float2(-0.15171856,-0.66472363), + float2(0.1517192,-0.6647235), + float2(0.4251066,-0.53306705), + float2(0.614297,-0.29582983), + float2(1,0), + float2(0.9555728,0.2947552), + float2(0.82623875,0.5633201), + float2(0.6234898,0.7818315), + float2(0.36534098,0.93087375), + float2(0.07473,0.9972038), + float2(-0.22252095,0.9749279), + float2(-0.50000006,0.8660254), + float2(-0.73305196,0.6801727), + float2(-0.90096885,0.43388382), + float2(-0.98883086,0.14904208), + float2(-0.9888308,-0.14904249), + float2(-0.90096885,-0.43388376), + float2(-0.73305184,-0.6801728), + float2(-0.4999999,-0.86602545), + float2(-0.222521,-0.9749279), + float2(0.07473029,-0.99720377), + float2(0.36534148,-0.9308736), + float2(0.6234897,-0.7818316), + float2(0.8262388,-0.56332), + float2(0.9555729,-0.29475483), +}; + +#endif + +#if defined(KERNEL_VERYLARGE) + +// rings = 5 +// points per ring = 7 +static const int kSampleCount = 71; +static const float2 kDiskKernel[kSampleCount] = { + float2(0,0), + float2(0.2758621,0), + float2(0.1719972,0.21567768), + float2(-0.061385095,0.26894566), + float2(-0.24854316,0.1196921), + float2(-0.24854316,-0.11969208), + float2(-0.061384983,-0.2689457), + float2(0.17199717,-0.21567771), + float2(0.51724136,0), + float2(0.46601835,0.22442262), + float2(0.32249472,0.40439558), + float2(0.11509705,0.50427306), + float2(-0.11509704,0.50427306), + float2(-0.3224948,0.40439552), + float2(-0.46601835,0.22442265), + float2(-0.51724136,0), + float2(-0.46601835,-0.22442262), + float2(-0.32249463,-0.40439564), + float2(-0.11509683,-0.5042731), + float2(0.11509732,-0.504273), + float2(0.32249466,-0.40439564), + float2(0.46601835,-0.22442262), + float2(0.7586207,0), + float2(0.7249173,0.22360738), + float2(0.6268018,0.4273463), + float2(0.47299224,0.59311354), + float2(0.27715522,0.7061801), + float2(0.056691725,0.75649947), + float2(-0.168809,0.7396005), + float2(-0.3793104,0.65698475), + float2(-0.55610836,0.51599306), + float2(-0.6834936,0.32915324), + float2(-0.7501475,0.113066405), + float2(-0.7501475,-0.11306671), + float2(-0.6834936,-0.32915318), + float2(-0.5561083,-0.5159932), + float2(-0.37931028,-0.6569848), + float2(-0.16880904,-0.7396005), + float2(0.056691945,-0.7564994), + float2(0.2771556,-0.7061799), + float2(0.47299215,-0.59311366), + float2(0.62680185,-0.4273462), + float2(0.72491735,-0.22360711), + float2(1,0), + float2(0.9749279,0.22252093), + float2(0.90096885,0.43388376), + float2(0.7818315,0.6234898), + float2(0.6234898,0.7818315), + float2(0.43388364,0.9009689), + float2(0.22252098,0.9749279), + float2(0,1), + float2(-0.22252095,0.9749279), + float2(-0.43388385,0.90096885), + float2(-0.62349,0.7818314), + float2(-0.7818317,0.62348956), + float2(-0.90096885,0.43388382), + float2(-0.9749279,0.22252093), + float2(-1,0), + float2(-0.9749279,-0.22252087), + float2(-0.90096885,-0.43388376), + float2(-0.7818314,-0.6234899), + float2(-0.6234896,-0.7818316), + float2(-0.43388346,-0.900969), + float2(-0.22252055,-0.974928), + float2(0,-1), + float2(0.2225215,-0.9749278), + float2(0.4338835,-0.90096897), + float2(0.6234897,-0.7818316), + float2(0.78183144,-0.62348986), + float2(0.90096885,-0.43388376), + float2(0.9749279,-0.22252086), +}; + +#endif + +#endif // UNITY_POSTFX_DISK_KERNELS diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DiskKernels.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DiskKernels.hlsl.meta new file mode 100644 index 0000000..0b525a0 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/DiskKernels.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: a4811657005cf0a439cbc4a989ce9083 +timeCreated: 1491839887 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Distortion.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Distortion.hlsl new file mode 100644 index 0000000..46ebf0a --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Distortion.hlsl @@ -0,0 +1,34 @@ +#ifndef UNITY_POSTFX_DISTORTION +#define UNITY_POSTFX_DISTORTION + +float4 _Distortion_Amount; +float4 _Distortion_CenterScale; + +float2 Distort(float2 uv) +{ + // Note: lens distortion is automatically disabled in VR so we won't bother handling stereo uvs + #if DISTORT + { + uv = (uv - 0.5) * _Distortion_Amount.z + 0.5; + float2 ruv = _Distortion_CenterScale.zw * (uv - 0.5 - _Distortion_CenterScale.xy); + float ru = length(float2(ruv)); + + UNITY_BRANCH + if (_Distortion_Amount.w > 0.0) + { + float wu = ru * _Distortion_Amount.x; + ru = tan(wu) * (1.0 / (ru * _Distortion_Amount.y)); + uv = uv + ruv * (ru - 1.0); + } + else + { + ru = (1.0 / ru) * _Distortion_Amount.x * atan(ru * _Distortion_Amount.y); + uv = uv + ruv * (ru - 1.0); + } + } + #endif + + return uv; +} + +#endif // UNITY_POSTFX_DISTORTION diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Distortion.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Distortion.hlsl.meta new file mode 100644 index 0000000..078acf3 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Distortion.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: c053166c69db5b943a5e70ec28113a24 +timeCreated: 1519741306 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Dithering.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Dithering.hlsl new file mode 100644 index 0000000..5ed1d0a --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Dithering.hlsl @@ -0,0 +1,23 @@ +#ifndef UNITY_POSTFX_DITHERING +#define UNITY_POSTFX_DITHERING + +TEXTURE2D_SAMPLER2D(_DitheringTex, sampler_DitheringTex); +float4 _Dithering_Coords; + +float3 Dither(float3 color, float2 uv) +{ + // Final pass dithering + // Symmetric triangular distribution on [-1,1] with maximal density at 0 + float noise = SAMPLE_TEXTURE2D(_DitheringTex, sampler_DitheringTex, uv * _Dithering_Coords.xy + _Dithering_Coords.zw).a * 2.0 - 1.0; + noise = FastSign(noise) * (1.0 - sqrt(1.0 - abs(noise))); + +#if UNITY_COLORSPACE_GAMMA + color += noise / 255.0; +#else + color = SRGBToLinear(LinearToSRGB(color) + noise / 255.0); +#endif + + return color; +} + +#endif // UNITY_POSTFX_DITHERING diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Dithering.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Dithering.hlsl.meta new file mode 100644 index 0000000..bfde911 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Dithering.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: b17c8e94a77f9a24d80deb0464a28ddd +timeCreated: 1499075289 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ExposureHistogram.compute b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ExposureHistogram.compute new file mode 100644 index 0000000..8e100d5 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ExposureHistogram.compute @@ -0,0 +1,102 @@ +// Put the following line to 0 or comment it to disable vignette weighting +#define USE_VIGNETTE_WEIGHTING 1 + +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#include "../StdLib.hlsl" +#include "../Colors.hlsl" +#include "ExposureHistogram.hlsl" + +RWStructuredBuffer _HistogramBuffer; +Texture2D _Source; +SamplerState sampler_LinearClamp; + +CBUFFER_START(Params) + float4 _ScaleOffsetRes; // x: scale, y: offset, z: width, w: height +CBUFFER_END + +groupshared uint gs_histogram[HISTOGRAM_BINS]; + +#pragma kernel KEyeHistogram + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(KEyeHistogram) +TRIVIAL_COMPUTE_KERNEL(KEyeHistogramClear) + +#else + +[numthreads(HISTOGRAM_THREAD_X, HISTOGRAM_THREAD_Y, 1)] +void KEyeHistogram(uint2 dispatchThreadId : SV_DispatchThreadID, uint2 groupThreadId : SV_GroupThreadID) +{ + const uint localThreadId = groupThreadId.y * HISTOGRAM_THREAD_X + groupThreadId.x; + + // Clears the shared memory +#if HISTOGRAM_REDUCTION_ALT_PATH + uint localThreadIdOff = localThreadId << 1u; + if (localThreadIdOff < HISTOGRAM_BINS) + { + gs_histogram[localThreadIdOff ] = 0u; + gs_histogram[localThreadIdOff + 1] = 0u; + } +#else + if (localThreadId < HISTOGRAM_BINS) + { + gs_histogram[localThreadId] = 0u; + } +#endif + + float2 ipos = float2(dispatchThreadId) * 2.0; + + GroupMemoryBarrierWithGroupSync(); + + // Gather local group histogram + if (ipos.x < _ScaleOffsetRes.z && ipos.y < _ScaleOffsetRes.w) + { + uint weight = 1u; + float2 sspos = ipos / _ScaleOffsetRes.zw; + + // Vignette weighting to put more focus on what's in the center of the screen + #if USE_VIGNETTE_WEIGHTING + { + float2 d = abs(sspos - (0.5).xx); + float vfactor = saturate(1.0 - dot(d, d)); + vfactor *= vfactor; + weight = (uint)(64.0 * vfactor); + } + #endif + + float3 color = _Source.SampleLevel(sampler_LinearClamp, sspos, 0.0).xyz; // Bilinear downsample 2x + float luminance = Luminance(color); + float logLuminance = GetHistogramBinFromLuminance(luminance, _ScaleOffsetRes.xy); + uint idx = (uint)(logLuminance * (HISTOGRAM_BINS - 1u)); + InterlockedAdd(gs_histogram[idx], weight); + } + + GroupMemoryBarrierWithGroupSync(); + + // Merge everything +#if HISTOGRAM_REDUCTION_ALT_PATH + if (localThreadIdOff < HISTOGRAM_BINS) + { + InterlockedAdd(_HistogramBuffer[localThreadIdOff ], gs_histogram[localThreadIdOff ]); + InterlockedAdd(_HistogramBuffer[localThreadIdOff + 1], gs_histogram[localThreadIdOff + 1]); + } +#else + if (localThreadId < HISTOGRAM_BINS) + { + InterlockedAdd(_HistogramBuffer[localThreadId], gs_histogram[localThreadId]); + } +#endif +} + +#pragma kernel KEyeHistogramClear +[numthreads(HISTOGRAM_THREAD_X, 1, 1)] +void KEyeHistogramClear(uint dispatchThreadId : SV_DispatchThreadID) +{ + if (dispatchThreadId < HISTOGRAM_BINS) + _HistogramBuffer[dispatchThreadId] = 0u; +} + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ExposureHistogram.compute.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ExposureHistogram.compute.meta new file mode 100644 index 0000000..8f7eefe --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ExposureHistogram.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 8c2fcbdf9bc58664f89917f7b9d79501 +timeCreated: 1488985723 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 4 + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl new file mode 100644 index 0000000..67bd744 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl @@ -0,0 +1,95 @@ +#ifndef UNITY_POSTFX_EXPOSURE_HISTOGRAM +#define UNITY_POSTFX_EXPOSURE_HISTOGRAM + +// Don't forget to update 'LogHistogram.cs' if you change these values ! +#define HISTOGRAM_BINS 128 +#define HISTOGRAM_TEXELS HISTOGRAM_BINS / 4 + +#if SHADER_API_GLES3 || SHADER_API_METAL + #define HISTOGRAM_THREAD_X 8 + #define HISTOGRAM_THREAD_Y 8 + #define HISTOGRAM_REDUCTION_THREAD_X 8 + #define HISTOGRAM_REDUCTION_THREAD_Y 8 + #define HISTOGRAM_REDUCTION_ALT_PATH 1 +#else + #define HISTOGRAM_THREAD_X 16 + #define HISTOGRAM_THREAD_Y 16 + #define HISTOGRAM_REDUCTION_THREAD_X HISTOGRAM_THREAD_X + #define HISTOGRAM_REDUCTION_THREAD_Y HISTOGRAM_BINS / HISTOGRAM_THREAD_Y + #define HISTOGRAM_REDUCTION_ALT_PATH 0 +#endif + +#define HISTOGRAM_REDUCTION_BINS HISTOGRAM_REDUCTION_THREAD_X * HISTOGRAM_REDUCTION_THREAD_Y + +float GetHistogramBinFromLuminance(float value, float2 scaleOffset) +{ + return saturate(log2(value) * scaleOffset.x + scaleOffset.y); +} + +float GetLuminanceFromHistogramBin(float bin, float2 scaleOffset) +{ + return exp2((bin - scaleOffset.y) / scaleOffset.x); +} + +float GetBinValue(StructuredBuffer buffer, uint index, float maxHistogramValue) +{ + return float(buffer[index]) * maxHistogramValue; +} + +float FindMaxHistogramValue(StructuredBuffer buffer) +{ + uint maxValue = 0u; + + for (uint i = 0; i < HISTOGRAM_BINS; i++) + { + uint h = buffer[i]; + maxValue = max(maxValue, h); + } + + return float(maxValue); +} + +void FilterLuminance(StructuredBuffer buffer, uint i, float maxHistogramValue, float2 scaleOffset, inout float4 filter) +{ + float binValue = GetBinValue(buffer, i, maxHistogramValue); + + // Filter dark areas + float offset = min(filter.z, binValue); + binValue -= offset; + filter.zw -= offset.xx; + + // Filter highlights + binValue = min(filter.w, binValue); + filter.w -= binValue; + + // Luminance at the bin + float luminance = GetLuminanceFromHistogramBin(float(i) / float(HISTOGRAM_BINS), scaleOffset); + + filter.xy += float2(luminance * binValue, binValue); +} + +float GetAverageLuminance(StructuredBuffer buffer, float4 params, float maxHistogramValue, float2 scaleOffset) +{ + // Sum of all bins + uint i; + float totalSum = 0.0; + + UNITY_UNROLL + for (i = 0; i < HISTOGRAM_BINS; i++) + totalSum += GetBinValue(buffer, i, maxHistogramValue); + + // Skip darker and lighter parts of the histogram to stabilize the auto exposure + // x: filtered sum + // y: accumulator + // zw: fractions + float4 filter = float4(0.0, 0.0, totalSum * params.xy); + + UNITY_UNROLL + for (i = 0; i < HISTOGRAM_BINS; i++) + FilterLuminance(buffer, i, maxHistogramValue, scaleOffset, filter); + + // Clamp to user brightness range + return clamp(filter.x / max(filter.y, EPSILON), params.z, params.w); +} + +#endif // UNITY_POSTFX_EXPOSURE_HISTOGRAM diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl.meta new file mode 100644 index 0000000..cc21763 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ExposureHistogram.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: e02724c54d545ad439d7a5fa991ae924 +timeCreated: 1488987302 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/FastApproximateAntialiasing.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/FastApproximateAntialiasing.hlsl new file mode 100644 index 0000000..233c337 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/FastApproximateAntialiasing.hlsl @@ -0,0 +1,2075 @@ +#ifndef __FXAA3_INC__ +#define __FXAA3_INC__ + +#include "../xRLib.hlsl" + +/*============================================================================ + + +NVIDIA FXAA 3.11 by TIMOTHY LOTTES + + +------------------------------------------------------------------------------ +COPYRIGHT (C) 2010, 2011 NVIDIA CORPORATION. ALL RIGHTS RESERVED. +------------------------------------------------------------------------------ +TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THIS SOFTWARE IS PROVIDED +*AS IS* AND NVIDIA AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES, EITHER EXPRESS +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL NVIDIA +OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR +CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR +LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, +OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR INABILITY TO USE +THIS SOFTWARE, EVEN IF NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + +------------------------------------------------------------------------------ +INTEGRATION CHECKLIST +------------------------------------------------------------------------------ +(1.) +In the shader source, setup defines for the desired configuration. +When providing multiple shaders (for different presets), +simply setup the defines differently in multiple files. +Example, + +#define FXAA_PC 1 +#define FXAA_HLSL_5 1 +#define FXAA_QUALITY__PRESET 12 + +Or, + +#define FXAA_360 1 + +Or, + +#define FXAA_PS3 1 + +Etc. + +(2.) +Then include this file, + +#include "Fxaa3_11.h" + +(3.) +Then call the FXAA pixel shader from within your desired shader. +Look at the FXAA Quality FxaaPixelShader() for docs on inputs. +As for FXAA 3.11 all inputs for all shaders are the same +to enable easy porting between platforms. + +return FxaaPixelShader(...); + +(4.) +Insure pass prior to FXAA outputs RGBL (see next section). +Or use, + +#define FXAA_GREEN_AS_LUMA 1 + +(5.) +Setup engine to provide the following constants +which are used in the FxaaPixelShader() inputs, + +FxaaFloat2 fxaaQualityRcpFrame, +FxaaFloat4 fxaaConsoleRcpFrameOpt, +FxaaFloat4 fxaaConsoleRcpFrameOpt2, +FxaaFloat4 fxaaConsole360RcpFrameOpt2, +FxaaFloat fxaaQualitySubpix, +FxaaFloat fxaaQualityEdgeThreshold, +FxaaFloat fxaaQualityEdgeThresholdMin, +FxaaFloat fxaaConsoleEdgeSharpness, +FxaaFloat fxaaConsoleEdgeThreshold, +FxaaFloat fxaaConsoleEdgeThresholdMin, +FxaaFloat4 fxaaConsole360ConstDir + +Look at the FXAA Quality FxaaPixelShader() for docs on inputs. + +(6.) +Have FXAA vertex shader run as a full screen triangle, +and output "pos" and "fxaaConsolePosPos" +such that inputs in the pixel shader provide, + +// {xy} = center of pixel +FxaaFloat2 pos, + +// {xy__} = upper left of pixel +// {__zw} = lower right of pixel +FxaaFloat4 fxaaConsolePosPos, + +(7.) +Insure the texture sampler(s) used by FXAA are set to bilinear filtering. + + +------------------------------------------------------------------------------ +INTEGRATION - RGBL AND COLORSPACE +------------------------------------------------------------------------------ +FXAA3 requires RGBL as input unless the following is set, + +#define FXAA_GREEN_AS_LUMA 1 + +In which case the engine uses green in place of luma, +and requires RGB input is in a non-linear colorspace. + +RGB should be LDR (low dynamic range). +Specifically do FXAA after tonemapping. + +RGB data as returned by a texture fetch can be non-linear, +or linear when FXAA_GREEN_AS_LUMA is not set. +Note an "sRGB format" texture counts as linear, +because the result of a texture fetch is linear data. +Regular "RGBA8" textures in the sRGB colorspace are non-linear. + +If FXAA_GREEN_AS_LUMA is not set, +luma must be stored in the alpha channel prior to running FXAA. +This luma should be in a perceptual space (could be gamma 2.0). +Example pass before FXAA where output is gamma 2.0 encoded, + +color.rgb = ToneMap(color.rgb); // linear color output +color.rgb = sqrt(color.rgb); // gamma 2.0 color output +return color; + +To use FXAA, + +color.rgb = ToneMap(color.rgb); // linear color output +color.rgb = sqrt(color.rgb); // gamma 2.0 color output +color.a = dot(color.rgb, FxaaFloat3(0.299, 0.587, 0.114)); // compute luma +return color; + +Another example where output is linear encoded, +say for instance writing to an sRGB formated render target, +where the render target does the conversion back to sRGB after blending, + +color.rgb = ToneMap(color.rgb); // linear color output +return color; + +To use FXAA, + +color.rgb = ToneMap(color.rgb); // linear color output +color.a = sqrt(dot(color.rgb, FxaaFloat3(0.299, 0.587, 0.114))); // compute luma +return color; + +Getting luma correct is required for the algorithm to work correctly. + + +------------------------------------------------------------------------------ +BEING LINEARLY CORRECT? +------------------------------------------------------------------------------ +Applying FXAA to a framebuffer with linear RGB color will look worse. +This is very counter intuitive, but happends to be true in this case. +The reason is because dithering artifacts will be more visiable +in a linear colorspace. + + +------------------------------------------------------------------------------ +COMPLEX INTEGRATION +------------------------------------------------------------------------------ +Q. What if the engine is blending into RGB before wanting to run FXAA? + +A. In the last opaque pass prior to FXAA, +have the pass write out luma into alpha. +Then blend into RGB only. +FXAA should be able to run ok +assuming the blending pass did not any add aliasing. +This should be the common case for particles and common blending passes. + +A. Or use FXAA_GREEN_AS_LUMA. + +============================================================================*/ + +/*============================================================================ + +INTEGRATION KNOBS + +============================================================================*/ +// +// FXAA_PS3 and FXAA_360 choose the console algorithm (FXAA3 CONSOLE). +// FXAA_360_OPT is a prototype for the new optimized 360 version. +// +// 1 = Use API. +// 0 = Don't use API. +// +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_PS3 +#define FXAA_PS3 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_360 +#define FXAA_360 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_360_OPT +#define FXAA_360_OPT 0 +#endif +/*==========================================================================*/ +#ifndef FXAA_PC +// +// FXAA Quality +// The high quality PC algorithm. +// +#define FXAA_PC 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_PC_CONSOLE +// +// The console algorithm for PC is included +// for developers targeting really low spec machines. +// Likely better to just run FXAA_PC, and use a really low preset. +// +#define FXAA_PC_CONSOLE 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_GLSL_120 +#define FXAA_GLSL_120 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_GLSL_130 +#define FXAA_GLSL_130 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_HLSL_3 +#define FXAA_HLSL_3 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_HLSL_4 +#define FXAA_HLSL_4 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_HLSL_5 +#define FXAA_HLSL_5 0 +#endif +/*==========================================================================*/ +#ifndef FXAA_GREEN_AS_LUMA +// +// For those using non-linear color, +// and either not able to get luma in alpha, or not wanting to, +// this enables FXAA to run using green as a proxy for luma. +// So with this enabled, no need to pack luma in alpha. +// +// This will turn off AA on anything which lacks some amount of green. +// Pure red and blue or combination of only R and B, will get no AA. +// +// Might want to lower the settings for both, +// fxaaConsoleEdgeThresholdMin +// fxaaQualityEdgeThresholdMin +// In order to insure AA does not get turned off on colors +// which contain a minor amount of green. +// +// 1 = On. +// 0 = Off. +// +#define FXAA_GREEN_AS_LUMA 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_EARLY_EXIT +// +// Controls algorithm's early exit path. +// On PS3 turning this ON adds 2 cycles to the shader. +// On 360 turning this OFF adds 10ths of a millisecond to the shader. +// Turning this off on console will result in a more blurry image. +// So this defaults to on. +// +// 1 = On. +// 0 = Off. +// +#define FXAA_EARLY_EXIT 1 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_DISCARD +// +// Only valid for PC OpenGL currently. +// Probably will not work when FXAA_GREEN_AS_LUMA = 1. +// +// 1 = Use discard on pixels which don't need AA. +// For APIs which enable concurrent TEX+ROP from same surface. +// 0 = Return unchanged color on pixels which don't need AA. +// +#define FXAA_DISCARD 0 +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_FAST_PIXEL_OFFSET +// +// Used for GLSL 120 only. +// +// 1 = GL API supports fast pixel offsets +// 0 = do not use fast pixel offsets +// +#ifdef GL_EXT_gpu_shader4 +#define FXAA_FAST_PIXEL_OFFSET 1 +#endif +#ifdef GL_NV_gpu_shader5 +#define FXAA_FAST_PIXEL_OFFSET 1 +#endif +#ifdef GL_ARB_gpu_shader5 +#define FXAA_FAST_PIXEL_OFFSET 1 +#endif +#ifndef FXAA_FAST_PIXEL_OFFSET +#define FXAA_FAST_PIXEL_OFFSET 0 +#endif +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_GATHER4_ALPHA +// +// 1 = API supports gather4 on alpha channel. +// 0 = API does not support gather4 on alpha channel. +// +#if (FXAA_HLSL_5 == 1) +#define FXAA_GATHER4_ALPHA 1 +#endif +#ifdef GL_ARB_gpu_shader5 +#define FXAA_GATHER4_ALPHA 1 +#endif +#ifdef GL_NV_gpu_shader5 +#define FXAA_GATHER4_ALPHA 1 +#endif +#ifndef FXAA_GATHER4_ALPHA +#define FXAA_GATHER4_ALPHA 0 +#endif +#endif + +/*============================================================================ +FXAA CONSOLE PS3 - TUNING KNOBS +============================================================================*/ +#ifndef FXAA_CONSOLE__PS3_EDGE_SHARPNESS +// +// Consoles the sharpness of edges on PS3 only. +// Non-PS3 tuning is done with shader input. +// +// Due to the PS3 being ALU bound, +// there are only two safe values here: 4 and 8. +// These options use the shaders ability to a free *|/ by 2|4|8. +// +// 8.0 is sharper +// 4.0 is softer +// 2.0 is really soft (good for vector graphics inputs) +// +#if 1 +#define FXAA_CONSOLE__PS3_EDGE_SHARPNESS 8.0 +#endif +#if 0 +#define FXAA_CONSOLE__PS3_EDGE_SHARPNESS 4.0 +#endif +#if 0 +#define FXAA_CONSOLE__PS3_EDGE_SHARPNESS 2.0 +#endif +#endif +/*--------------------------------------------------------------------------*/ +#ifndef FXAA_CONSOLE__PS3_EDGE_THRESHOLD +// +// Only effects PS3. +// Non-PS3 tuning is done with shader input. +// +// The minimum amount of local contrast required to apply algorithm. +// The console setting has a different mapping than the quality setting. +// +// This only applies when FXAA_EARLY_EXIT is 1. +// +// Due to the PS3 being ALU bound, +// there are only two safe values here: 0.25 and 0.125. +// These options use the shaders ability to a free *|/ by 2|4|8. +// +// 0.125 leaves less aliasing, but is softer +// 0.25 leaves more aliasing, and is sharper +// +#if 1 +#define FXAA_CONSOLE__PS3_EDGE_THRESHOLD 0.125 +#else +#define FXAA_CONSOLE__PS3_EDGE_THRESHOLD 0.25 +#endif +#endif + +/*============================================================================ +FXAA QUALITY - TUNING KNOBS +------------------------------------------------------------------------------ +NOTE the other tuning knobs are now in the shader function inputs! +============================================================================*/ +#ifndef FXAA_QUALITY__PRESET +// +// Choose the quality preset. +// This needs to be compiled into the shader as it effects code. +// Best option to include multiple presets is to +// in each shader define the preset, then include this file. +// +// OPTIONS +// ----------------------------------------------------------------------- +// 10 to 15 - default medium dither (10=fastest, 15=highest quality) +// 20 to 29 - less dither, more expensive (20=fastest, 29=highest quality) +// 39 - no dither, very expensive +// +// NOTES +// ----------------------------------------------------------------------- +// 12 = slightly faster then FXAA 3.9 and higher edge quality (default) +// 13 = about same speed as FXAA 3.9 and better than 12 +// 23 = closest to FXAA 3.9 visually and performance wise +// _ = the lowest digit is directly related to performance +// _ = the highest digit is directly related to style +// +#define FXAA_QUALITY__PRESET 12 +#endif + + +/*============================================================================ + +FXAA QUALITY - PRESETS + +============================================================================*/ + +/*============================================================================ +FXAA QUALITY - MEDIUM DITHER PRESETS +============================================================================*/ +#if (FXAA_QUALITY__PRESET == 10) +#define FXAA_QUALITY__PS 3 +#define FXAA_QUALITY__P0 1.5 +#define FXAA_QUALITY__P1 3.0 +#define FXAA_QUALITY__P2 12.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 11) +#define FXAA_QUALITY__PS 4 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 3.0 +#define FXAA_QUALITY__P3 12.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 12) +#define FXAA_QUALITY__PS 5 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 4.0 +#define FXAA_QUALITY__P4 12.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 13) +#define FXAA_QUALITY__PS 6 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 4.0 +#define FXAA_QUALITY__P5 12.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 14) +#define FXAA_QUALITY__PS 7 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 2.0 +#define FXAA_QUALITY__P5 4.0 +#define FXAA_QUALITY__P6 12.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 15) +#define FXAA_QUALITY__PS 8 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 2.0 +#define FXAA_QUALITY__P5 2.0 +#define FXAA_QUALITY__P6 4.0 +#define FXAA_QUALITY__P7 12.0 +#endif + +/*============================================================================ +FXAA QUALITY - LOW DITHER PRESETS +============================================================================*/ +#if (FXAA_QUALITY__PRESET == 20) +#define FXAA_QUALITY__PS 3 +#define FXAA_QUALITY__P0 1.5 +#define FXAA_QUALITY__P1 2.0 +#define FXAA_QUALITY__P2 8.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 21) +#define FXAA_QUALITY__PS 4 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 8.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 22) +#define FXAA_QUALITY__PS 5 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 8.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 23) +#define FXAA_QUALITY__PS 6 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 2.0 +#define FXAA_QUALITY__P5 8.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 24) +#define FXAA_QUALITY__PS 7 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 2.0 +#define FXAA_QUALITY__P5 3.0 +#define FXAA_QUALITY__P6 8.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 25) +#define FXAA_QUALITY__PS 8 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 2.0 +#define FXAA_QUALITY__P5 2.0 +#define FXAA_QUALITY__P6 4.0 +#define FXAA_QUALITY__P7 8.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 26) +#define FXAA_QUALITY__PS 9 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 2.0 +#define FXAA_QUALITY__P5 2.0 +#define FXAA_QUALITY__P6 2.0 +#define FXAA_QUALITY__P7 4.0 +#define FXAA_QUALITY__P8 8.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 27) +#define FXAA_QUALITY__PS 10 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 2.0 +#define FXAA_QUALITY__P5 2.0 +#define FXAA_QUALITY__P6 2.0 +#define FXAA_QUALITY__P7 2.0 +#define FXAA_QUALITY__P8 4.0 +#define FXAA_QUALITY__P9 8.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 28) +#define FXAA_QUALITY__PS 11 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 2.0 +#define FXAA_QUALITY__P5 2.0 +#define FXAA_QUALITY__P6 2.0 +#define FXAA_QUALITY__P7 2.0 +#define FXAA_QUALITY__P8 2.0 +#define FXAA_QUALITY__P9 4.0 +#define FXAA_QUALITY__P10 8.0 +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PRESET == 29) +#define FXAA_QUALITY__PS 12 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.5 +#define FXAA_QUALITY__P2 2.0 +#define FXAA_QUALITY__P3 2.0 +#define FXAA_QUALITY__P4 2.0 +#define FXAA_QUALITY__P5 2.0 +#define FXAA_QUALITY__P6 2.0 +#define FXAA_QUALITY__P7 2.0 +#define FXAA_QUALITY__P8 2.0 +#define FXAA_QUALITY__P9 2.0 +#define FXAA_QUALITY__P10 4.0 +#define FXAA_QUALITY__P11 8.0 +#endif + +/*============================================================================ +FXAA QUALITY - EXTREME QUALITY +============================================================================*/ +#if (FXAA_QUALITY__PRESET == 39) +#define FXAA_QUALITY__PS 12 +#define FXAA_QUALITY__P0 1.0 +#define FXAA_QUALITY__P1 1.0 +#define FXAA_QUALITY__P2 1.0 +#define FXAA_QUALITY__P3 1.0 +#define FXAA_QUALITY__P4 1.0 +#define FXAA_QUALITY__P5 1.5 +#define FXAA_QUALITY__P6 2.0 +#define FXAA_QUALITY__P7 2.0 +#define FXAA_QUALITY__P8 2.0 +#define FXAA_QUALITY__P9 2.0 +#define FXAA_QUALITY__P10 4.0 +#define FXAA_QUALITY__P11 8.0 +#endif + + + +/*============================================================================ + +API PORTING + +============================================================================*/ +#if (FXAA_GLSL_120 == 1) || (FXAA_GLSL_130 == 1) +#define FxaaBool bool +#define FxaaDiscard discard +#define FxaaFloat float +#define FxaaFloat2 vec2 +#define FxaaFloat3 vec3 +#define FxaaFloat4 vec4 +#define FxaaHalf float +#define FxaaHalf2 vec2 +#define FxaaHalf3 vec3 +#define FxaaHalf4 vec4 +#define FxaaInt2 ivec2 +#define FxaaSat(x) clamp(x, 0.0, 1.0) +#define FxaaTex sampler2D +#else +#define FxaaBool bool +#define FxaaDiscard clip(-1) +#define FxaaFloat float +#define FxaaFloat2 float2 +#define FxaaFloat3 float3 +#define FxaaFloat4 float4 +#define FxaaHalf half +#define FxaaHalf2 half2 +#define FxaaHalf3 half3 +#define FxaaHalf4 half4 +#define FxaaSat(x) saturate(x) +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_GLSL_120 == 1) +// Requires, +// #version 120 +// And at least, +// #extension GL_EXT_gpu_shader4 : enable +// (or set FXAA_FAST_PIXEL_OFFSET 1 to work like DX9) +#define FxaaTexTop(t, p) texture2DLod(t, UnityStereoTransformScreenSpaceTex(p), 0.0) +#if (FXAA_FAST_PIXEL_OFFSET == 1) +#define FxaaTexOff(t, p, o, r) texture2DLodOffset(t, UnityStereoTransformScreenSpaceTex(p), 0.0, o) +#else +#define FxaaTexOff(t, p, o, r) texture2DLod(t, UnityStereoTransformScreenSpaceTex(p + (o * r)), 0.0) +#endif +#if (FXAA_GATHER4_ALPHA == 1) +// use #extension GL_ARB_gpu_shader5 : enable +#define FxaaTexAlpha4(t, p) textureGather(t, UnityStereoTransformScreenSpaceTex(p), 3) +#define FxaaTexOffAlpha4(t, p, o) textureGatherOffset(t, UnityStereoTransformScreenSpaceTex(p), o, 3) +#define FxaaTexGreen4(t, p) textureGather(t, UnityStereoTransformScreenSpaceTex(p), 1) +#define FxaaTexOffGreen4(t, p, o) textureGatherOffset(t, UnityStereoTransformScreenSpaceTex(p), o, 1) +#endif +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_GLSL_130 == 1) +// Requires "#version 130" or better +#define FxaaTexTop(t, p) textureLod(t, UnityStereoTransformScreenSpaceTex(p), 0.0) +#define FxaaTexOff(t, p, o, r) textureLodOffset(t, UnityStereoTransformScreenSpaceTex(p), 0.0, o) +#if (FXAA_GATHER4_ALPHA == 1) +// use #extension GL_ARB_gpu_shader5 : enable +#define FxaaTexAlpha4(t, p) textureGather(t, UnityStereoTransformScreenSpaceTex(p), 3) +#define FxaaTexOffAlpha4(t, p, o) textureGatherOffset(t, UnityStereoTransformScreenSpaceTex(p), o, 3) +#define FxaaTexGreen4(t, p) textureGather(t, UnityStereoTransformScreenSpaceTex(p), 1) +#define FxaaTexOffGreen4(t, p, o) textureGatherOffset(t, UnityStereoTransformScreenSpaceTex(p), o, 1) +#endif +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_HLSL_3 == 1) || (FXAA_360 == 1) || (FXAA_PS3 == 1) +#define FxaaInt2 float2 +#define FxaaTex sampler2D +#define FxaaTexTop(t, p) tex2Dlod(t, float4(UnityStereoTransformScreenSpaceTex(p), 0.0, 0.0)) +#define FxaaTexOff(t, p, o, r) tex2Dlod(t, float4(UnityStereoTransformScreenSpaceTex(p + (o * r)), 0, 0)) +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_HLSL_4 == 1) +#define FxaaInt2 int2 +struct FxaaTex { SamplerState smpl; Texture2D tex; }; +#define FxaaTexTop(t, p) t.tex.SampleLevel(t.smpl, UnityStereoTransformScreenSpaceTex(p), 0.0) +#define FxaaTexOff(t, p, o, r) t.tex.SampleLevel(t.smpl, UnityStereoTransformScreenSpaceTex(p), 0.0, o) +#endif +/*--------------------------------------------------------------------------*/ +#if (FXAA_HLSL_5 == 1) +#define FxaaInt2 int2 +struct FxaaTex { SamplerState smpl; Texture2D tex; }; +#define FxaaTexTop(t, p) t.tex.SampleLevel(t.smpl, UnityStereoTransformScreenSpaceTex(p), 0.0) +#define FxaaTexOff(t, p, o, r) t.tex.SampleLevel(t.smpl, UnityStereoTransformScreenSpaceTex(p), 0.0, o) +#define FxaaTexAlpha4(t, p) t.tex.GatherAlpha(t.smpl, UnityStereoTransformScreenSpaceTex(p)) +#define FxaaTexOffAlpha4(t, p, o) t.tex.GatherAlpha(t.smpl, UnityStereoTransformScreenSpaceTex(p), o) +#define FxaaTexGreen4(t, p) t.tex.GatherGreen(t.smpl, UnityStereoTransformScreenSpaceTex(p)) +#define FxaaTexOffGreen4(t, p, o) t.tex.GatherGreen(t.smpl, UnityStereoTransformScreenSpaceTex(p), o) +#endif + + +/*============================================================================ +GREEN AS LUMA OPTION SUPPORT FUNCTION +============================================================================*/ +#if (FXAA_GREEN_AS_LUMA == 0) +FxaaFloat FxaaLuma(FxaaFloat4 rgba) { return rgba.w; } +#else +FxaaFloat FxaaLuma(FxaaFloat4 rgba) { return rgba.y; } +#endif + + + + +/*============================================================================ + +FXAA3 QUALITY - PC + +============================================================================*/ +#if (FXAA_PC == 1) +/*--------------------------------------------------------------------------*/ +FxaaFloat4 FxaaPixelShader( + // + // Use noperspective interpolation here (turn off perspective interpolation). + // {xy} = center of pixel + FxaaFloat2 pos, + // + // Used only for FXAA Console, and not used on the 360 version. + // Use noperspective interpolation here (turn off perspective interpolation). + // {xy__} = upper left of pixel + // {__zw} = lower right of pixel + FxaaFloat4 fxaaConsolePosPos, + // + // Input color texture. + // {rgb_} = color in linear or perceptual color space + // if (FXAA_GREEN_AS_LUMA == 0) + // {___a} = luma in perceptual color space (not linear) + FxaaTex tex, + // + // Only used on the optimized 360 version of FXAA Console. + // For everything but 360, just use the same input here as for "tex". + // For 360, same texture, just alias with a 2nd sampler. + // This sampler needs to have an exponent bias of -1. + FxaaTex fxaaConsole360TexExpBiasNegOne, + // + // Only used on the optimized 360 version of FXAA Console. + // For everything but 360, just use the same input here as for "tex". + // For 360, same texture, just alias with a 3nd sampler. + // This sampler needs to have an exponent bias of -2. + FxaaTex fxaaConsole360TexExpBiasNegTwo, + // + // Only used on FXAA Quality. + // This must be from a constant/uniform. + // {x_} = 1.0/screenWidthInPixels + // {_y} = 1.0/screenHeightInPixels + FxaaFloat2 fxaaQualityRcpFrame, + // + // Only used on FXAA Console. + // This must be from a constant/uniform. + // This effects sub-pixel AA quality and inversely sharpness. + // Where N ranges between, + // N = 0.50 (default) + // N = 0.33 (sharper) + // {x___} = -N/screenWidthInPixels + // {_y__} = -N/screenHeightInPixels + // {__z_} = N/screenWidthInPixels + // {___w} = N/screenHeightInPixels + FxaaFloat4 fxaaConsoleRcpFrameOpt, + // + // Only used on FXAA Console. + // Not used on 360, but used on PS3 and PC. + // This must be from a constant/uniform. + // {x___} = -2.0/screenWidthInPixels + // {_y__} = -2.0/screenHeightInPixels + // {__z_} = 2.0/screenWidthInPixels + // {___w} = 2.0/screenHeightInPixels + FxaaFloat4 fxaaConsoleRcpFrameOpt2, + // + // Only used on FXAA Console. + // Only used on 360 in place of fxaaConsoleRcpFrameOpt2. + // This must be from a constant/uniform. + // {x___} = 8.0/screenWidthInPixels + // {_y__} = 8.0/screenHeightInPixels + // {__z_} = -4.0/screenWidthInPixels + // {___w} = -4.0/screenHeightInPixels + FxaaFloat4 fxaaConsole360RcpFrameOpt2, + // + // Only used on FXAA Quality. + // This used to be the FXAA_QUALITY__SUBPIX define. + // It is here now to allow easier tuning. + // Choose the amount of sub-pixel aliasing removal. + // This can effect sharpness. + // 1.00 - upper limit (softer) + // 0.75 - default amount of filtering + // 0.50 - lower limit (sharper, less sub-pixel aliasing removal) + // 0.25 - almost off + // 0.00 - completely off + FxaaFloat fxaaQualitySubpix, + // + // Only used on FXAA Quality. + // This used to be the FXAA_QUALITY__EDGE_THRESHOLD define. + // It is here now to allow easier tuning. + // The minimum amount of local contrast required to apply algorithm. + // 0.333 - too little (faster) + // 0.250 - low quality + // 0.166 - default + // 0.125 - high quality + // 0.063 - overkill (slower) + FxaaFloat fxaaQualityEdgeThreshold, + // + // Only used on FXAA Quality. + // This used to be the FXAA_QUALITY__EDGE_THRESHOLD_MIN define. + // It is here now to allow easier tuning. + // Trims the algorithm from processing darks. + // 0.0833 - upper limit (default, the start of visible unfiltered edges) + // 0.0625 - high quality (faster) + // 0.0312 - visible limit (slower) + // Special notes when using FXAA_GREEN_AS_LUMA, + // Likely want to set this to zero. + // As colors that are mostly not-green + // will appear very dark in the green channel! + // Tune by looking at mostly non-green content, + // then start at zero and increase until aliasing is a problem. + FxaaFloat fxaaQualityEdgeThresholdMin, + // + // Only used on FXAA Console. + // This used to be the FXAA_CONSOLE__EDGE_SHARPNESS define. + // It is here now to allow easier tuning. + // This does not effect PS3, as this needs to be compiled in. + // Use FXAA_CONSOLE__PS3_EDGE_SHARPNESS for PS3. + // Due to the PS3 being ALU bound, + // there are only three safe values here: 2 and 4 and 8. + // These options use the shaders ability to a free *|/ by 2|4|8. + // For all other platforms can be a non-power of two. + // 8.0 is sharper (default!!!) + // 4.0 is softer + // 2.0 is really soft (good only for vector graphics inputs) + FxaaFloat fxaaConsoleEdgeSharpness, + // + // Only used on FXAA Console. + // This used to be the FXAA_CONSOLE__EDGE_THRESHOLD define. + // It is here now to allow easier tuning. + // This does not effect PS3, as this needs to be compiled in. + // Use FXAA_CONSOLE__PS3_EDGE_THRESHOLD for PS3. + // Due to the PS3 being ALU bound, + // there are only two safe values here: 1/4 and 1/8. + // These options use the shaders ability to a free *|/ by 2|4|8. + // The console setting has a different mapping than the quality setting. + // Other platforms can use other values. + // 0.125 leaves less aliasing, but is softer (default!!!) + // 0.25 leaves more aliasing, and is sharper + FxaaFloat fxaaConsoleEdgeThreshold, + // + // Only used on FXAA Console. + // This used to be the FXAA_CONSOLE__EDGE_THRESHOLD_MIN define. + // It is here now to allow easier tuning. + // Trims the algorithm from processing darks. + // The console setting has a different mapping than the quality setting. + // This only applies when FXAA_EARLY_EXIT is 1. + // This does not apply to PS3, + // PS3 was simplified to avoid more shader instructions. + // 0.06 - faster but more aliasing in darks + // 0.05 - default + // 0.04 - slower and less aliasing in darks + // Special notes when using FXAA_GREEN_AS_LUMA, + // Likely want to set this to zero. + // As colors that are mostly not-green + // will appear very dark in the green channel! + // Tune by looking at mostly non-green content, + // then start at zero and increase until aliasing is a problem. + FxaaFloat fxaaConsoleEdgeThresholdMin, + // + // Extra constants for 360 FXAA Console only. + // Use zeros or anything else for other platforms. + // These must be in physical constant registers and NOT immedates. + // Immedates will result in compiler un-optimizing. + // {xyzw} = float4(1.0, -1.0, 0.25, -0.25) + FxaaFloat4 fxaaConsole360ConstDir +) { + /*--------------------------------------------------------------------------*/ + FxaaFloat2 posM; + posM.x = pos.x; + posM.y = pos.y; +#if (FXAA_GATHER4_ALPHA == 1) +#if (FXAA_DISCARD == 0) + FxaaFloat4 rgbyM = FxaaTexTop(tex, posM); +#if (FXAA_GREEN_AS_LUMA == 0) +#define lumaM rgbyM.w +#else +#define lumaM rgbyM.y +#endif +#endif +#if (FXAA_GREEN_AS_LUMA == 0) + FxaaFloat4 luma4A = FxaaTexAlpha4(tex, posM); + FxaaFloat4 luma4B = FxaaTexOffAlpha4(tex, posM, FxaaInt2(-1, -1)); +#else + FxaaFloat4 luma4A = FxaaTexGreen4(tex, posM); + FxaaFloat4 luma4B = FxaaTexOffGreen4(tex, posM, FxaaInt2(-1, -1)); +#endif +#if (FXAA_DISCARD == 1) +#define lumaM luma4A.w +#endif +#define lumaE luma4A.z +#define lumaS luma4A.x +#define lumaSE luma4A.y +#define lumaNW luma4B.w +#define lumaN luma4B.z +#define lumaW luma4B.x +#else + FxaaFloat4 rgbyM = FxaaTexTop(tex, posM); +#if (FXAA_GREEN_AS_LUMA == 0) +#define lumaM rgbyM.w +#else +#define lumaM rgbyM.y +#endif + FxaaFloat lumaS = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(0, 1), fxaaQualityRcpFrame.xy)); + FxaaFloat lumaE = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(1, 0), fxaaQualityRcpFrame.xy)); + FxaaFloat lumaN = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(0, -1), fxaaQualityRcpFrame.xy)); + FxaaFloat lumaW = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(-1, 0), fxaaQualityRcpFrame.xy)); +#endif + /*--------------------------------------------------------------------------*/ + FxaaFloat maxSM = max(lumaS, lumaM); + FxaaFloat minSM = min(lumaS, lumaM); + FxaaFloat maxESM = max(lumaE, maxSM); + FxaaFloat minESM = min(lumaE, minSM); + FxaaFloat maxWN = max(lumaN, lumaW); + FxaaFloat minWN = min(lumaN, lumaW); + FxaaFloat rangeMax = max(maxWN, maxESM); + FxaaFloat rangeMin = min(minWN, minESM); + FxaaFloat rangeMaxScaled = rangeMax * fxaaQualityEdgeThreshold; + FxaaFloat range = rangeMax - rangeMin; + FxaaFloat rangeMaxClamped = max(fxaaQualityEdgeThresholdMin, rangeMaxScaled); + FxaaBool earlyExit = range < rangeMaxClamped; + /*--------------------------------------------------------------------------*/ + if (earlyExit) +#if (FXAA_DISCARD == 1) + FxaaDiscard; +#else + return rgbyM; +#endif + /*--------------------------------------------------------------------------*/ +#if (FXAA_GATHER4_ALPHA == 0) + FxaaFloat lumaNW = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(-1, -1), fxaaQualityRcpFrame.xy)); + FxaaFloat lumaSE = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(1, 1), fxaaQualityRcpFrame.xy)); + FxaaFloat lumaNE = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(1, -1), fxaaQualityRcpFrame.xy)); + FxaaFloat lumaSW = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(-1, 1), fxaaQualityRcpFrame.xy)); +#else + FxaaFloat lumaNE = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(1, -1), fxaaQualityRcpFrame.xy)); + FxaaFloat lumaSW = FxaaLuma(FxaaTexOff(tex, posM, FxaaInt2(-1, 1), fxaaQualityRcpFrame.xy)); +#endif + /*--------------------------------------------------------------------------*/ + FxaaFloat lumaNS = lumaN + lumaS; + FxaaFloat lumaWE = lumaW + lumaE; + FxaaFloat subpixRcpRange = 1.0 / range; + FxaaFloat subpixNSWE = lumaNS + lumaWE; + FxaaFloat edgeHorz1 = (-2.0 * lumaM) + lumaNS; + FxaaFloat edgeVert1 = (-2.0 * lumaM) + lumaWE; + /*--------------------------------------------------------------------------*/ + FxaaFloat lumaNESE = lumaNE + lumaSE; + FxaaFloat lumaNWNE = lumaNW + lumaNE; + FxaaFloat edgeHorz2 = (-2.0 * lumaE) + lumaNESE; + FxaaFloat edgeVert2 = (-2.0 * lumaN) + lumaNWNE; + /*--------------------------------------------------------------------------*/ + FxaaFloat lumaNWSW = lumaNW + lumaSW; + FxaaFloat lumaSWSE = lumaSW + lumaSE; + FxaaFloat edgeHorz4 = (abs(edgeHorz1) * 2.0) + abs(edgeHorz2); + FxaaFloat edgeVert4 = (abs(edgeVert1) * 2.0) + abs(edgeVert2); + FxaaFloat edgeHorz3 = (-2.0 * lumaW) + lumaNWSW; + FxaaFloat edgeVert3 = (-2.0 * lumaS) + lumaSWSE; + FxaaFloat edgeHorz = abs(edgeHorz3) + edgeHorz4; + FxaaFloat edgeVert = abs(edgeVert3) + edgeVert4; + /*--------------------------------------------------------------------------*/ + FxaaFloat subpixNWSWNESE = lumaNWSW + lumaNESE; + FxaaFloat lengthSign = fxaaQualityRcpFrame.x; + FxaaBool horzSpan = edgeHorz >= edgeVert; + FxaaFloat subpixA = subpixNSWE * 2.0 + subpixNWSWNESE; + /*--------------------------------------------------------------------------*/ + if (!horzSpan) lumaN = lumaW; + if (!horzSpan) lumaS = lumaE; + if (horzSpan) lengthSign = fxaaQualityRcpFrame.y; + FxaaFloat subpixB = (subpixA * (1.0 / 12.0)) - lumaM; + /*--------------------------------------------------------------------------*/ + FxaaFloat gradientN = lumaN - lumaM; + FxaaFloat gradientS = lumaS - lumaM; + FxaaFloat lumaNN = lumaN + lumaM; + FxaaFloat lumaSS = lumaS + lumaM; + FxaaBool pairN = abs(gradientN) >= abs(gradientS); + FxaaFloat gradient = max(abs(gradientN), abs(gradientS)); + if (pairN) lengthSign = -lengthSign; + FxaaFloat subpixC = FxaaSat(abs(subpixB) * subpixRcpRange); + /*--------------------------------------------------------------------------*/ + FxaaFloat2 posB; + posB.x = posM.x; + posB.y = posM.y; + FxaaFloat2 offNP; + offNP.x = (!horzSpan) ? 0.0 : fxaaQualityRcpFrame.x; + offNP.y = (horzSpan) ? 0.0 : fxaaQualityRcpFrame.y; + if (!horzSpan) posB.x += lengthSign * 0.5; + if (horzSpan) posB.y += lengthSign * 0.5; + /*--------------------------------------------------------------------------*/ + FxaaFloat2 posN; + posN.x = posB.x - offNP.x * FXAA_QUALITY__P0; + posN.y = posB.y - offNP.y * FXAA_QUALITY__P0; + FxaaFloat2 posP; + posP.x = posB.x + offNP.x * FXAA_QUALITY__P0; + posP.y = posB.y + offNP.y * FXAA_QUALITY__P0; + FxaaFloat subpixD = ((-2.0)*subpixC) + 3.0; + FxaaFloat lumaEndN = FxaaLuma(FxaaTexTop(tex, posN)); + FxaaFloat subpixE = subpixC * subpixC; + FxaaFloat lumaEndP = FxaaLuma(FxaaTexTop(tex, posP)); + /*--------------------------------------------------------------------------*/ + if (!pairN) lumaNN = lumaSS; + FxaaFloat gradientScaled = gradient * 1.0 / 4.0; + FxaaFloat lumaMM = lumaM - lumaNN * 0.5; + FxaaFloat subpixF = subpixD * subpixE; + FxaaBool lumaMLTZero = lumaMM < 0.0; + /*--------------------------------------------------------------------------*/ + lumaEndN -= lumaNN * 0.5; + lumaEndP -= lumaNN * 0.5; + FxaaBool doneN = abs(lumaEndN) >= gradientScaled; + FxaaBool doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P1; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P1; + FxaaBool doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P1; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P1; + /*--------------------------------------------------------------------------*/ + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P2; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P2; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P2; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P2; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 3) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P3; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P3; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P3; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P3; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 4) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P4; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P4; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P4; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P4; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 5) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P5; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P5; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P5; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P5; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 6) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P6; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P6; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P6; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P6; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 7) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P7; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P7; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P7; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P7; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 8) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P8; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P8; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P8; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P8; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 9) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P9; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P9; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P9; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P9; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 10) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P10; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P10; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P10; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P10; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 11) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P11; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P11; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P11; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P11; + /*--------------------------------------------------------------------------*/ +#if (FXAA_QUALITY__PS > 12) + if (doneNP) + { + if (!doneN) lumaEndN = FxaaLuma(FxaaTexTop(tex, posN.xy)); + if (!doneP) lumaEndP = FxaaLuma(FxaaTexTop(tex, posP.xy)); + if (!doneN) lumaEndN = lumaEndN - lumaNN * 0.5; + if (!doneP) lumaEndP = lumaEndP - lumaNN * 0.5; + doneN = abs(lumaEndN) >= gradientScaled; + doneP = abs(lumaEndP) >= gradientScaled; + if (!doneN) posN.x -= offNP.x * FXAA_QUALITY__P12; + if (!doneN) posN.y -= offNP.y * FXAA_QUALITY__P12; + doneNP = (!doneN) || (!doneP); + if (!doneP) posP.x += offNP.x * FXAA_QUALITY__P12; + if (!doneP) posP.y += offNP.y * FXAA_QUALITY__P12; + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } +#endif + /*--------------------------------------------------------------------------*/ + } + /*--------------------------------------------------------------------------*/ + FxaaFloat dstN = posM.x - posN.x; + FxaaFloat dstP = posP.x - posM.x; + if (!horzSpan) dstN = posM.y - posN.y; + if (!horzSpan) dstP = posP.y - posM.y; + /*--------------------------------------------------------------------------*/ + FxaaBool goodSpanN = (lumaEndN < 0.0) != lumaMLTZero; + FxaaFloat spanLength = (dstP + dstN); + FxaaBool goodSpanP = (lumaEndP < 0.0) != lumaMLTZero; + FxaaFloat spanLengthRcp = 1.0 / spanLength; + /*--------------------------------------------------------------------------*/ + FxaaBool directionN = dstN < dstP; + FxaaFloat dst = min(dstN, dstP); + FxaaBool goodSpan = directionN ? goodSpanN : goodSpanP; + FxaaFloat subpixG = subpixF * subpixF; + FxaaFloat pixelOffset = (dst * (-spanLengthRcp)) + 0.5; + FxaaFloat subpixH = subpixG * fxaaQualitySubpix; + /*--------------------------------------------------------------------------*/ + FxaaFloat pixelOffsetGood = goodSpan ? pixelOffset : 0.0; + FxaaFloat pixelOffsetSubpix = max(pixelOffsetGood, subpixH); + if (!horzSpan) posM.x += pixelOffsetSubpix * lengthSign; + if (horzSpan) posM.y += pixelOffsetSubpix * lengthSign; +#if (FXAA_DISCARD == 1) + return FxaaTexTop(tex, posM); +#else + return FxaaFloat4(FxaaTexTop(tex, posM).xyz, lumaM); +#endif +} +/*==========================================================================*/ +#endif + + + + +/*============================================================================ + +FXAA3 CONSOLE - PC VERSION + +------------------------------------------------------------------------------ +Instead of using this on PC, I'd suggest just using FXAA Quality with +#define FXAA_QUALITY__PRESET 10 +Or +#define FXAA_QUALITY__PRESET 20 +Either are higher qualilty and almost as fast as this on modern PC GPUs. +============================================================================*/ +#if (FXAA_PC_CONSOLE == 1) +/*--------------------------------------------------------------------------*/ +FxaaFloat4 FxaaPixelShader( + // See FXAA Quality FxaaPixelShader() source for docs on Inputs! + FxaaFloat2 pos, + FxaaFloat4 fxaaConsolePosPos, + FxaaTex tex, + FxaaTex fxaaConsole360TexExpBiasNegOne, + FxaaTex fxaaConsole360TexExpBiasNegTwo, + FxaaFloat2 fxaaQualityRcpFrame, + FxaaFloat4 fxaaConsoleRcpFrameOpt, + FxaaFloat4 fxaaConsoleRcpFrameOpt2, + FxaaFloat4 fxaaConsole360RcpFrameOpt2, + FxaaFloat fxaaQualitySubpix, + FxaaFloat fxaaQualityEdgeThreshold, + FxaaFloat fxaaQualityEdgeThresholdMin, + FxaaFloat fxaaConsoleEdgeSharpness, + FxaaFloat fxaaConsoleEdgeThreshold, + FxaaFloat fxaaConsoleEdgeThresholdMin, + FxaaFloat4 fxaaConsole360ConstDir +) +{ + /*--------------------------------------------------------------------------*/ + FxaaFloat lumaNw = FxaaLuma(FxaaTexTop(tex, fxaaConsolePosPos.xy)); + FxaaFloat lumaSw = FxaaLuma(FxaaTexTop(tex, fxaaConsolePosPos.xw)); + FxaaFloat lumaNe = FxaaLuma(FxaaTexTop(tex, fxaaConsolePosPos.zy)); + FxaaFloat lumaSe = FxaaLuma(FxaaTexTop(tex, fxaaConsolePosPos.zw)); + /*--------------------------------------------------------------------------*/ + FxaaFloat4 rgbyM = FxaaTexTop(tex, pos.xy); +#if (FXAA_GREEN_AS_LUMA == 0) + FxaaFloat lumaM = rgbyM.w; +#else + FxaaFloat lumaM = rgbyM.y; +#endif + /*--------------------------------------------------------------------------*/ + FxaaFloat lumaMaxNwSw = max(lumaNw, lumaSw); + lumaNe += 1.0 / 384.0; + FxaaFloat lumaMinNwSw = min(lumaNw, lumaSw); + /*--------------------------------------------------------------------------*/ + FxaaFloat lumaMaxNeSe = max(lumaNe, lumaSe); + FxaaFloat lumaMinNeSe = min(lumaNe, lumaSe); + /*--------------------------------------------------------------------------*/ + FxaaFloat lumaMax = max(lumaMaxNeSe, lumaMaxNwSw); + FxaaFloat lumaMin = min(lumaMinNeSe, lumaMinNwSw); + /*--------------------------------------------------------------------------*/ + FxaaFloat lumaMaxScaled = lumaMax * fxaaConsoleEdgeThreshold; + /*--------------------------------------------------------------------------*/ + FxaaFloat lumaMinM = min(lumaMin, lumaM); + FxaaFloat lumaMaxScaledClamped = max(fxaaConsoleEdgeThresholdMin, lumaMaxScaled); + FxaaFloat lumaMaxM = max(lumaMax, lumaM); + FxaaFloat dirSwMinusNe = lumaSw - lumaNe; + FxaaFloat lumaMaxSubMinM = lumaMaxM - lumaMinM; + FxaaFloat dirSeMinusNw = lumaSe - lumaNw; + if (lumaMaxSubMinM < lumaMaxScaledClamped) return rgbyM; + /*--------------------------------------------------------------------------*/ + FxaaFloat2 dir; + dir.x = dirSwMinusNe + dirSeMinusNw; + dir.y = dirSwMinusNe - dirSeMinusNw; + /*--------------------------------------------------------------------------*/ + FxaaFloat2 dir1 = normalize(dir.xy); + FxaaFloat4 rgbyN1 = FxaaTexTop(tex, pos.xy - dir1 * fxaaConsoleRcpFrameOpt.zw); + FxaaFloat4 rgbyP1 = FxaaTexTop(tex, pos.xy + dir1 * fxaaConsoleRcpFrameOpt.zw); + /*--------------------------------------------------------------------------*/ + FxaaFloat dirAbsMinTimesC = min(abs(dir1.x), abs(dir1.y)) * fxaaConsoleEdgeSharpness; + FxaaFloat2 dir2 = clamp(dir1.xy / dirAbsMinTimesC, -2.0, 2.0); + /*--------------------------------------------------------------------------*/ + FxaaFloat4 rgbyN2 = FxaaTexTop(tex, pos.xy - dir2 * fxaaConsoleRcpFrameOpt2.zw); + FxaaFloat4 rgbyP2 = FxaaTexTop(tex, pos.xy + dir2 * fxaaConsoleRcpFrameOpt2.zw); + /*--------------------------------------------------------------------------*/ + FxaaFloat4 rgbyA = rgbyN1 + rgbyP1; + FxaaFloat4 rgbyB = ((rgbyN2 + rgbyP2) * 0.25) + (rgbyA * 0.25); + /*--------------------------------------------------------------------------*/ +#if (FXAA_GREEN_AS_LUMA == 0) + FxaaBool twoTap = (rgbyB.w < lumaMin) || (rgbyB.w > lumaMax); +#else + FxaaBool twoTap = (rgbyB.y < lumaMin) || (rgbyB.y > lumaMax); +#endif + if (twoTap) rgbyB.xyz = rgbyA.xyz * 0.5; + return rgbyB; +} +/*==========================================================================*/ +#endif + + + +/*============================================================================ + +FXAA3 CONSOLE - 360 PIXEL SHADER + +------------------------------------------------------------------------------ +This optimized version thanks to suggestions from Andy Luedke. +Should be fully tex bound in all cases. +As of the FXAA 3.11 release, I have still not tested this code, +however I fixed a bug which was in both FXAA 3.9 and FXAA 3.10. +And note this is replacing the old unoptimized version. +If it does not work, please let me know so I can fix it. +============================================================================*/ +#if (FXAA_360 == 1) +/*--------------------------------------------------------------------------*/ +[reduceTempRegUsage(4)] +float4 FxaaPixelShader( + // See FXAA Quality FxaaPixelShader() source for docs on Inputs! + FxaaFloat2 pos, + FxaaFloat4 fxaaConsolePosPos, + FxaaTex tex, + FxaaTex fxaaConsole360TexExpBiasNegOne, + FxaaTex fxaaConsole360TexExpBiasNegTwo, + FxaaFloat2 fxaaQualityRcpFrame, + FxaaFloat4 fxaaConsoleRcpFrameOpt, + FxaaFloat4 fxaaConsoleRcpFrameOpt2, + FxaaFloat4 fxaaConsole360RcpFrameOpt2, + FxaaFloat fxaaQualitySubpix, + FxaaFloat fxaaQualityEdgeThreshold, + FxaaFloat fxaaQualityEdgeThresholdMin, + FxaaFloat fxaaConsoleEdgeSharpness, + FxaaFloat fxaaConsoleEdgeThreshold, + FxaaFloat fxaaConsoleEdgeThresholdMin, + FxaaFloat4 fxaaConsole360ConstDir +) +{ + /*--------------------------------------------------------------------------*/ + float4 lumaNwNeSwSe; +#if (FXAA_GREEN_AS_LUMA == 0) + asm + { + tfetch2D lumaNwNeSwSe.w___, tex, pos.xy, OffsetX = -0.5, OffsetY = -0.5, UseComputedLOD = false + tfetch2D lumaNwNeSwSe._w__, tex, pos.xy, OffsetX = 0.5, OffsetY = -0.5, UseComputedLOD = false + tfetch2D lumaNwNeSwSe.__w_, tex, pos.xy, OffsetX = -0.5, OffsetY = 0.5, UseComputedLOD = false + tfetch2D lumaNwNeSwSe.___w, tex, pos.xy, OffsetX = 0.5, OffsetY = 0.5, UseComputedLOD = false + }; +#else + asm + { + tfetch2D lumaNwNeSwSe.y___, tex, pos.xy, OffsetX = -0.5, OffsetY = -0.5, UseComputedLOD = false + tfetch2D lumaNwNeSwSe._y__, tex, pos.xy, OffsetX = 0.5, OffsetY = -0.5, UseComputedLOD = false + tfetch2D lumaNwNeSwSe.__y_, tex, pos.xy, OffsetX = -0.5, OffsetY = 0.5, UseComputedLOD = false + tfetch2D lumaNwNeSwSe.___y, tex, pos.xy, OffsetX = 0.5, OffsetY = 0.5, UseComputedLOD = false + }; +#endif + /*--------------------------------------------------------------------------*/ + lumaNwNeSwSe.y += 1.0 / 384.0; + float2 lumaMinTemp = min(lumaNwNeSwSe.xy, lumaNwNeSwSe.zw); + float2 lumaMaxTemp = max(lumaNwNeSwSe.xy, lumaNwNeSwSe.zw); + float lumaMin = min(lumaMinTemp.x, lumaMinTemp.y); + float lumaMax = max(lumaMaxTemp.x, lumaMaxTemp.y); + /*--------------------------------------------------------------------------*/ + float4 rgbyM = tex2Dlod(tex, float4(pos.xy, 0.0, 0.0)); +#if (FXAA_GREEN_AS_LUMA == 0) + float lumaMinM = min(lumaMin, rgbyM.w); + float lumaMaxM = max(lumaMax, rgbyM.w); +#else + float lumaMinM = min(lumaMin, rgbyM.y); + float lumaMaxM = max(lumaMax, rgbyM.y); +#endif + if ((lumaMaxM - lumaMinM) < max(fxaaConsoleEdgeThresholdMin, lumaMax * fxaaConsoleEdgeThreshold)) return rgbyM; + /*--------------------------------------------------------------------------*/ + float2 dir; + dir.x = dot(lumaNwNeSwSe, fxaaConsole360ConstDir.yyxx); + dir.y = dot(lumaNwNeSwSe, fxaaConsole360ConstDir.xyxy); + dir = normalize(dir); + /*--------------------------------------------------------------------------*/ + float4 dir1 = dir.xyxy * fxaaConsoleRcpFrameOpt.xyzw; + /*--------------------------------------------------------------------------*/ + float4 dir2; + float dirAbsMinTimesC = min(abs(dir.x), abs(dir.y)) * fxaaConsoleEdgeSharpness; + dir2 = saturate(fxaaConsole360ConstDir.zzww * dir.xyxy / dirAbsMinTimesC + 0.5); + dir2 = dir2 * fxaaConsole360RcpFrameOpt2.xyxy + fxaaConsole360RcpFrameOpt2.zwzw; + /*--------------------------------------------------------------------------*/ + float4 rgbyN1 = tex2Dlod(fxaaConsole360TexExpBiasNegOne, float4(pos.xy + dir1.xy, 0.0, 0.0)); + float4 rgbyP1 = tex2Dlod(fxaaConsole360TexExpBiasNegOne, float4(pos.xy + dir1.zw, 0.0, 0.0)); + float4 rgbyN2 = tex2Dlod(fxaaConsole360TexExpBiasNegTwo, float4(pos.xy + dir2.xy, 0.0, 0.0)); + float4 rgbyP2 = tex2Dlod(fxaaConsole360TexExpBiasNegTwo, float4(pos.xy + dir2.zw, 0.0, 0.0)); + /*--------------------------------------------------------------------------*/ + float4 rgbyA = rgbyN1 + rgbyP1; + float4 rgbyB = rgbyN2 + rgbyP2 + rgbyA * 0.5; + /*--------------------------------------------------------------------------*/ + float4 rgbyR = ((FxaaLuma(rgbyB) - lumaMax) > 0.0) ? rgbyA : rgbyB; + rgbyR = ((FxaaLuma(rgbyB) - lumaMin) > 0.0) ? rgbyR : rgbyA; + return rgbyR; +} +/*==========================================================================*/ +#endif + + + +/*============================================================================ + +FXAA3 CONSOLE - OPTIMIZED PS3 PIXEL SHADER (NO EARLY EXIT) + +============================================================================== +The code below does not exactly match the assembly. +I have a feeling that 12 cycles is possible, but was not able to get there. +Might have to increase register count to get full performance. +Note this shader does not use perspective interpolation. + +Use the following cgc options, + +--fenable-bx2 --fastmath --fastprecision --nofloatbindings + +------------------------------------------------------------------------------ +NVSHADERPERF OUTPUT +------------------------------------------------------------------------------ +For reference and to aid in debug, output of NVShaderPerf should match this, + +Shader to schedule: +0: texpkb h0.w(TRUE), v5.zyxx, #0 +2: addh h2.z(TRUE), h0.w, constant(0.001953, 0.000000, 0.000000, 0.000000).x +4: texpkb h0.w(TRUE), v5.xwxx, #0 +6: addh h0.z(TRUE), -h2, h0.w +7: texpkb h1.w(TRUE), v5, #0 +9: addh h0.x(TRUE), h0.z, -h1.w +10: addh h3.w(TRUE), h0.z, h1 +11: texpkb h2.w(TRUE), v5.zwzz, #0 +13: addh h0.z(TRUE), h3.w, -h2.w +14: addh h0.x(TRUE), h2.w, h0 +15: nrmh h1.xz(TRUE), h0_n +16: minh_m8 h0.x(TRUE), |h1|, |h1.z| +17: maxh h4.w(TRUE), h0, h1 +18: divx h2.xy(TRUE), h1_n.xzzw, h0_n +19: movr r1.zw(TRUE), v4.xxxy +20: madr r2.xz(TRUE), -h1, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).zzww, r1.zzww +22: minh h5.w(TRUE), h0, h1 +23: texpkb h0(TRUE), r2.xzxx, #0 +25: madr r0.zw(TRUE), h1.xzxz, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w), r1 +27: maxh h4.x(TRUE), h2.z, h2.w +28: texpkb h1(TRUE), r0.zwzz, #0 +30: addh_d2 h1(TRUE), h0, h1 +31: madr r0.xy(TRUE), -h2, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).xyxx, r1.zwzz +33: texpkb h0(TRUE), r0, #0 +35: minh h4.z(TRUE), h2, h2.w +36: fenct TRUE +37: madr r1.xy(TRUE), h2, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).xyxx, r1.zwzz +39: texpkb h2(TRUE), r1, #0 +41: addh_d2 h0(TRUE), h0, h2 +42: maxh h2.w(TRUE), h4, h4.x +43: minh h2.x(TRUE), h5.w, h4.z +44: addh_d2 h0(TRUE), h0, h1 +45: slth h2.x(TRUE), h0.w, h2 +46: sgth h2.w(TRUE), h0, h2 +47: movh h0(TRUE), h0 +48: addx.c0 rc(TRUE), h2, h2.w +49: movh h0(c0.NE.x), h1 + +IPU0 ------ Simplified schedule: -------- +Pass | Unit | uOp | PC: Op +-----+--------+------+------------------------- +1 | SCT0/1 | mov | 0: TXLr h0.w, g[TEX1].zyxx, const.xxxx, TEX0; +| TEX | txl | 0: TXLr h0.w, g[TEX1].zyxx, const.xxxx, TEX0; +| SCB1 | add | 2: ADDh h2.z, h0.--w-, const.--x-; +| | | +2 | SCT0/1 | mov | 4: TXLr h0.w, g[TEX1].xwxx, const.xxxx, TEX0; +| TEX | txl | 4: TXLr h0.w, g[TEX1].xwxx, const.xxxx, TEX0; +| SCB1 | add | 6: ADDh h0.z,-h2, h0.--w-; +| | | +3 | SCT0/1 | mov | 7: TXLr h1.w, g[TEX1], const.xxxx, TEX0; +| TEX | txl | 7: TXLr h1.w, g[TEX1], const.xxxx, TEX0; +| SCB0 | add | 9: ADDh h0.x, h0.z---,-h1.w---; +| SCB1 | add | 10: ADDh h3.w, h0.---z, h1; +| | | +4 | SCT0/1 | mov | 11: TXLr h2.w, g[TEX1].zwzz, const.xxxx, TEX0; +| TEX | txl | 11: TXLr h2.w, g[TEX1].zwzz, const.xxxx, TEX0; +| SCB0 | add | 14: ADDh h0.x, h2.w---, h0; +| SCB1 | add | 13: ADDh h0.z, h3.--w-,-h2.--w-; +| | | +5 | SCT1 | mov | 15: NRMh h1.xz, h0; +| SRB | nrm | 15: NRMh h1.xz, h0; +| SCB0 | min | 16: MINh*8 h0.x, |h1|, |h1.z---|; +| SCB1 | max | 17: MAXh h4.w, h0, h1; +| | | +6 | SCT0 | div | 18: DIVx h2.xy, h1.xz--, h0; +| SCT1 | mov | 19: MOVr r1.zw, g[TEX0].--xy; +| SCB0 | mad | 20: MADr r2.xz,-h1, const.z-w-, r1.z-w-; +| SCB1 | min | 22: MINh h5.w, h0, h1; +| | | +7 | SCT0/1 | mov | 23: TXLr h0, r2.xzxx, const.xxxx, TEX0; +| TEX | txl | 23: TXLr h0, r2.xzxx, const.xxxx, TEX0; +| SCB0 | max | 27: MAXh h4.x, h2.z---, h2.w---; +| SCB1 | mad | 25: MADr r0.zw, h1.--xz, const, r1; +| | | +8 | SCT0/1 | mov | 28: TXLr h1, r0.zwzz, const.xxxx, TEX0; +| TEX | txl | 28: TXLr h1, r0.zwzz, const.xxxx, TEX0; +| SCB0/1 | add | 30: ADDh/2 h1, h0, h1; +| | | +9 | SCT0 | mad | 31: MADr r0.xy,-h2, const.xy--, r1.zw--; +| SCT1 | mov | 33: TXLr h0, r0, const.zzzz, TEX0; +| TEX | txl | 33: TXLr h0, r0, const.zzzz, TEX0; +| SCB1 | min | 35: MINh h4.z, h2, h2.--w-; +| | | +10 | SCT0 | mad | 37: MADr r1.xy, h2, const.xy--, r1.zw--; +| SCT1 | mov | 39: TXLr h2, r1, const.zzzz, TEX0; +| TEX | txl | 39: TXLr h2, r1, const.zzzz, TEX0; +| SCB0/1 | add | 41: ADDh/2 h0, h0, h2; +| | | +11 | SCT0 | min | 43: MINh h2.x, h5.w---, h4.z---; +| SCT1 | max | 42: MAXh h2.w, h4, h4.---x; +| SCB0/1 | add | 44: ADDh/2 h0, h0, h1; +| | | +12 | SCT0 | set | 45: SLTh h2.x, h0.w---, h2; +| SCT1 | set | 46: SGTh h2.w, h0, h2; +| SCB0/1 | mul | 47: MOVh h0, h0; +| | | +13 | SCT0 | mad | 48: ADDxc0_s rc, h2, h2.w---; +| SCB0/1 | mul | 49: MOVh h0(NE0.xxxx), h1; + +Pass SCT TEX SCB +1: 0% 100% 25% +2: 0% 100% 25% +3: 0% 100% 50% +4: 0% 100% 50% +5: 0% 0% 50% +6: 100% 0% 75% +7: 0% 100% 75% +8: 0% 100% 100% +9: 0% 100% 25% +10: 0% 100% 100% +11: 50% 0% 100% +12: 50% 0% 100% +13: 25% 0% 100% + +MEAN: 17% 61% 67% + +Pass SCT0 SCT1 TEX SCB0 SCB1 +1: 0% 0% 100% 0% 100% +2: 0% 0% 100% 0% 100% +3: 0% 0% 100% 100% 100% +4: 0% 0% 100% 100% 100% +5: 0% 0% 0% 100% 100% +6: 100% 100% 0% 100% 100% +7: 0% 0% 100% 100% 100% +8: 0% 0% 100% 100% 100% +9: 0% 0% 100% 0% 100% +10: 0% 0% 100% 100% 100% +11: 100% 100% 0% 100% 100% +12: 100% 100% 0% 100% 100% +13: 100% 0% 0% 100% 100% + +MEAN: 30% 23% 61% 76% 100% +Fragment Performance Setup: Driver RSX Compiler, GPU RSX, Flags 0x5 +Results 13 cycles, 3 r regs, 923,076,923 pixels/s +============================================================================*/ +#if (FXAA_PS3 == 1) && (FXAA_EARLY_EXIT == 0) +/*--------------------------------------------------------------------------*/ +#pragma regcount 7 +#pragma disablepc all +#pragma option O3 +#pragma option OutColorPrec=fp16 +#pragma texformat default RGBA8 +/*==========================================================================*/ +half4 FxaaPixelShader( + // See FXAA Quality FxaaPixelShader() source for docs on Inputs! + FxaaFloat2 pos, + FxaaFloat4 fxaaConsolePosPos, + FxaaTex tex, + FxaaTex fxaaConsole360TexExpBiasNegOne, + FxaaTex fxaaConsole360TexExpBiasNegTwo, + FxaaFloat2 fxaaQualityRcpFrame, + FxaaFloat4 fxaaConsoleRcpFrameOpt, + FxaaFloat4 fxaaConsoleRcpFrameOpt2, + FxaaFloat4 fxaaConsole360RcpFrameOpt2, + FxaaFloat fxaaQualitySubpix, + FxaaFloat fxaaQualityEdgeThreshold, + FxaaFloat fxaaQualityEdgeThresholdMin, + FxaaFloat fxaaConsoleEdgeSharpness, + FxaaFloat fxaaConsoleEdgeThreshold, + FxaaFloat fxaaConsoleEdgeThresholdMin, + FxaaFloat4 fxaaConsole360ConstDir +) +{ + /*--------------------------------------------------------------------------*/ + // (1) + half4 dir; + half4 lumaNe = h4tex2Dlod(tex, half4(fxaaConsolePosPos.zy, 0, 0)); +#if (FXAA_GREEN_AS_LUMA == 0) + lumaNe.w += half(1.0 / 512.0); + dir.x = -lumaNe.w; + dir.z = -lumaNe.w; +#else + lumaNe.y += half(1.0 / 512.0); + dir.x = -lumaNe.y; + dir.z = -lumaNe.y; +#endif + /*--------------------------------------------------------------------------*/ + // (2) + half4 lumaSw = h4tex2Dlod(tex, half4(fxaaConsolePosPos.xw, 0, 0)); +#if (FXAA_GREEN_AS_LUMA == 0) + dir.x += lumaSw.w; + dir.z += lumaSw.w; +#else + dir.x += lumaSw.y; + dir.z += lumaSw.y; +#endif + /*--------------------------------------------------------------------------*/ + // (3) + half4 lumaNw = h4tex2Dlod(tex, half4(fxaaConsolePosPos.xy, 0, 0)); +#if (FXAA_GREEN_AS_LUMA == 0) + dir.x -= lumaNw.w; + dir.z += lumaNw.w; +#else + dir.x -= lumaNw.y; + dir.z += lumaNw.y; +#endif + /*--------------------------------------------------------------------------*/ + // (4) + half4 lumaSe = h4tex2Dlod(tex, half4(fxaaConsolePosPos.zw, 0, 0)); +#if (FXAA_GREEN_AS_LUMA == 0) + dir.x += lumaSe.w; + dir.z -= lumaSe.w; +#else + dir.x += lumaSe.y; + dir.z -= lumaSe.y; +#endif + /*--------------------------------------------------------------------------*/ + // (5) + half4 dir1_pos; + dir1_pos.xy = normalize(dir.xyz).xz; + half dirAbsMinTimesC = min(abs(dir1_pos.x), abs(dir1_pos.y)) * half(FXAA_CONSOLE__PS3_EDGE_SHARPNESS); + /*--------------------------------------------------------------------------*/ + // (6) + half4 dir2_pos; + dir2_pos.xy = clamp(dir1_pos.xy / dirAbsMinTimesC, half(-2.0), half(2.0)); + dir1_pos.zw = pos.xy; + dir2_pos.zw = pos.xy; + half4 temp1N; + temp1N.xy = dir1_pos.zw - dir1_pos.xy * fxaaConsoleRcpFrameOpt.zw; + /*--------------------------------------------------------------------------*/ + // (7) + temp1N = h4tex2Dlod(tex, half4(temp1N.xy, 0.0, 0.0)); + half4 rgby1; + rgby1.xy = dir1_pos.zw + dir1_pos.xy * fxaaConsoleRcpFrameOpt.zw; + /*--------------------------------------------------------------------------*/ + // (8) + rgby1 = h4tex2Dlod(tex, half4(rgby1.xy, 0.0, 0.0)); + rgby1 = (temp1N + rgby1) * 0.5; + /*--------------------------------------------------------------------------*/ + // (9) + half4 temp2N; + temp2N.xy = dir2_pos.zw - dir2_pos.xy * fxaaConsoleRcpFrameOpt2.zw; + temp2N = h4tex2Dlod(tex, half4(temp2N.xy, 0.0, 0.0)); + /*--------------------------------------------------------------------------*/ + // (10) + half4 rgby2; + rgby2.xy = dir2_pos.zw + dir2_pos.xy * fxaaConsoleRcpFrameOpt2.zw; + rgby2 = h4tex2Dlod(tex, half4(rgby2.xy, 0.0, 0.0)); + rgby2 = (temp2N + rgby2) * 0.5; + /*--------------------------------------------------------------------------*/ + // (11) + // compilier moves these scalar ops up to other cycles +#if (FXAA_GREEN_AS_LUMA == 0) + half lumaMin = min(min(lumaNw.w, lumaSw.w), min(lumaNe.w, lumaSe.w)); + half lumaMax = max(max(lumaNw.w, lumaSw.w), max(lumaNe.w, lumaSe.w)); +#else + half lumaMin = min(min(lumaNw.y, lumaSw.y), min(lumaNe.y, lumaSe.y)); + half lumaMax = max(max(lumaNw.y, lumaSw.y), max(lumaNe.y, lumaSe.y)); +#endif + rgby2 = (rgby2 + rgby1) * 0.5; + /*--------------------------------------------------------------------------*/ + // (12) +#if (FXAA_GREEN_AS_LUMA == 0) + bool twoTapLt = rgby2.w < lumaMin; + bool twoTapGt = rgby2.w > lumaMax; +#else + bool twoTapLt = rgby2.y < lumaMin; + bool twoTapGt = rgby2.y > lumaMax; +#endif + /*--------------------------------------------------------------------------*/ + // (13) + if (twoTapLt || twoTapGt) rgby2 = rgby1; + /*--------------------------------------------------------------------------*/ + return rgby2; +} +/*==========================================================================*/ +#endif + + + +/*============================================================================ + +FXAA3 CONSOLE - OPTIMIZED PS3 PIXEL SHADER (WITH EARLY EXIT) + +============================================================================== +The code mostly matches the assembly. +I have a feeling that 14 cycles is possible, but was not able to get there. +Might have to increase register count to get full performance. +Note this shader does not use perspective interpolation. + +Use the following cgc options, + +--fenable-bx2 --fastmath --fastprecision --nofloatbindings + +Use of FXAA_GREEN_AS_LUMA currently adds a cycle (16 clks). +Will look at fixing this for FXAA 3.12. +------------------------------------------------------------------------------ +NVSHADERPERF OUTPUT +------------------------------------------------------------------------------ +For reference and to aid in debug, output of NVShaderPerf should match this, + +Shader to schedule: +0: texpkb h0.w(TRUE), v5.zyxx, #0 +2: addh h2.y(TRUE), h0.w, constant(0.001953, 0.000000, 0.000000, 0.000000).x +4: texpkb h1.w(TRUE), v5.xwxx, #0 +6: addh h0.x(TRUE), h1.w, -h2.y +7: texpkb h2.w(TRUE), v5.zwzz, #0 +9: minh h4.w(TRUE), h2.y, h2 +10: maxh h5.x(TRUE), h2.y, h2.w +11: texpkb h0.w(TRUE), v5, #0 +13: addh h3.w(TRUE), -h0, h0.x +14: addh h0.x(TRUE), h0.w, h0 +15: addh h0.z(TRUE), -h2.w, h0.x +16: addh h0.x(TRUE), h2.w, h3.w +17: minh h5.y(TRUE), h0.w, h1.w +18: nrmh h2.xz(TRUE), h0_n +19: minh_m8 h2.w(TRUE), |h2.x|, |h2.z| +20: divx h4.xy(TRUE), h2_n.xzzw, h2_n.w +21: movr r1.zw(TRUE), v4.xxxy +22: maxh h2.w(TRUE), h0, h1 +23: fenct TRUE +24: madr r0.xy(TRUE), -h2.xzzw, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).zwzz, r1.zwzz +26: texpkb h0(TRUE), r0, #0 +28: maxh h5.x(TRUE), h2.w, h5 +29: minh h5.w(TRUE), h5.y, h4 +30: madr r1.xy(TRUE), h2.xzzw, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).zwzz, r1.zwzz +32: texpkb h2(TRUE), r1, #0 +34: addh_d2 h2(TRUE), h0, h2 +35: texpkb h1(TRUE), v4, #0 +37: maxh h5.y(TRUE), h5.x, h1.w +38: minh h4.w(TRUE), h1, h5 +39: madr r0.xy(TRUE), -h4, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).xyxx, r1.zwzz +41: texpkb h0(TRUE), r0, #0 +43: addh_m8 h5.z(TRUE), h5.y, -h4.w +44: madr r2.xy(TRUE), h4, constant(cConst5.x, cConst5.y, cConst5.z, cConst5.w).xyxx, r1.zwzz +46: texpkb h3(TRUE), r2, #0 +48: addh_d2 h0(TRUE), h0, h3 +49: addh_d2 h3(TRUE), h0, h2 +50: movh h0(TRUE), h3 +51: slth h3.x(TRUE), h3.w, h5.w +52: sgth h3.w(TRUE), h3, h5.x +53: addx.c0 rc(TRUE), h3.x, h3 +54: slth.c0 rc(TRUE), h5.z, h5 +55: movh h0(c0.NE.w), h2 +56: movh h0(c0.NE.x), h1 + +IPU0 ------ Simplified schedule: -------- +Pass | Unit | uOp | PC: Op +-----+--------+------+------------------------- +1 | SCT0/1 | mov | 0: TXLr h0.w, g[TEX1].zyxx, const.xxxx, TEX0; +| TEX | txl | 0: TXLr h0.w, g[TEX1].zyxx, const.xxxx, TEX0; +| SCB0 | add | 2: ADDh h2.y, h0.-w--, const.-x--; +| | | +2 | SCT0/1 | mov | 4: TXLr h1.w, g[TEX1].xwxx, const.xxxx, TEX0; +| TEX | txl | 4: TXLr h1.w, g[TEX1].xwxx, const.xxxx, TEX0; +| SCB0 | add | 6: ADDh h0.x, h1.w---,-h2.y---; +| | | +3 | SCT0/1 | mov | 7: TXLr h2.w, g[TEX1].zwzz, const.xxxx, TEX0; +| TEX | txl | 7: TXLr h2.w, g[TEX1].zwzz, const.xxxx, TEX0; +| SCB0 | max | 10: MAXh h5.x, h2.y---, h2.w---; +| SCB1 | min | 9: MINh h4.w, h2.---y, h2; +| | | +4 | SCT0/1 | mov | 11: TXLr h0.w, g[TEX1], const.xxxx, TEX0; +| TEX | txl | 11: TXLr h0.w, g[TEX1], const.xxxx, TEX0; +| SCB0 | add | 14: ADDh h0.x, h0.w---, h0; +| SCB1 | add | 13: ADDh h3.w,-h0, h0.---x; +| | | +5 | SCT0 | mad | 16: ADDh h0.x, h2.w---, h3.w---; +| SCT1 | mad | 15: ADDh h0.z,-h2.--w-, h0.--x-; +| SCB0 | min | 17: MINh h5.y, h0.-w--, h1.-w--; +| | | +6 | SCT1 | mov | 18: NRMh h2.xz, h0; +| SRB | nrm | 18: NRMh h2.xz, h0; +| SCB1 | min | 19: MINh*8 h2.w, |h2.---x|, |h2.---z|; +| | | +7 | SCT0 | div | 20: DIVx h4.xy, h2.xz--, h2.ww--; +| SCT1 | mov | 21: MOVr r1.zw, g[TEX0].--xy; +| SCB1 | max | 22: MAXh h2.w, h0, h1; +| | | +8 | SCT0 | mad | 24: MADr r0.xy,-h2.xz--, const.zw--, r1.zw--; +| SCT1 | mov | 26: TXLr h0, r0, const.xxxx, TEX0; +| TEX | txl | 26: TXLr h0, r0, const.xxxx, TEX0; +| SCB0 | max | 28: MAXh h5.x, h2.w---, h5; +| SCB1 | min | 29: MINh h5.w, h5.---y, h4; +| | | +9 | SCT0 | mad | 30: MADr r1.xy, h2.xz--, const.zw--, r1.zw--; +| SCT1 | mov | 32: TXLr h2, r1, const.xxxx, TEX0; +| TEX | txl | 32: TXLr h2, r1, const.xxxx, TEX0; +| SCB0/1 | add | 34: ADDh/2 h2, h0, h2; +| | | +10 | SCT0/1 | mov | 35: TXLr h1, g[TEX0], const.xxxx, TEX0; +| TEX | txl | 35: TXLr h1, g[TEX0], const.xxxx, TEX0; +| SCB0 | max | 37: MAXh h5.y, h5.-x--, h1.-w--; +| SCB1 | min | 38: MINh h4.w, h1, h5; +| | | +11 | SCT0 | mad | 39: MADr r0.xy,-h4, const.xy--, r1.zw--; +| SCT1 | mov | 41: TXLr h0, r0, const.zzzz, TEX0; +| TEX | txl | 41: TXLr h0, r0, const.zzzz, TEX0; +| SCB0 | mad | 44: MADr r2.xy, h4, const.xy--, r1.zw--; +| SCB1 | add | 43: ADDh*8 h5.z, h5.--y-,-h4.--w-; +| | | +12 | SCT0/1 | mov | 46: TXLr h3, r2, const.xxxx, TEX0; +| TEX | txl | 46: TXLr h3, r2, const.xxxx, TEX0; +| SCB0/1 | add | 48: ADDh/2 h0, h0, h3; +| | | +13 | SCT0/1 | mad | 49: ADDh/2 h3, h0, h2; +| SCB0/1 | mul | 50: MOVh h0, h3; +| | | +14 | SCT0 | set | 51: SLTh h3.x, h3.w---, h5.w---; +| SCT1 | set | 52: SGTh h3.w, h3, h5.---x; +| SCB0 | set | 54: SLThc0 rc, h5.z---, h5; +| SCB1 | add | 53: ADDxc0_s rc, h3.---x, h3; +| | | +15 | SCT0/1 | mul | 55: MOVh h0(NE0.wwww), h2; +| SCB0/1 | mul | 56: MOVh h0(NE0.xxxx), h1; + +Pass SCT TEX SCB +1: 0% 100% 25% +2: 0% 100% 25% +3: 0% 100% 50% +4: 0% 100% 50% +5: 50% 0% 25% +6: 0% 0% 25% +7: 100% 0% 25% +8: 0% 100% 50% +9: 0% 100% 100% +10: 0% 100% 50% +11: 0% 100% 75% +12: 0% 100% 100% +13: 100% 0% 100% +14: 50% 0% 50% +15: 100% 0% 100% + +MEAN: 26% 60% 56% + +Pass SCT0 SCT1 TEX SCB0 SCB1 +1: 0% 0% 100% 100% 0% +2: 0% 0% 100% 100% 0% +3: 0% 0% 100% 100% 100% +4: 0% 0% 100% 100% 100% +5: 100% 100% 0% 100% 0% +6: 0% 0% 0% 0% 100% +7: 100% 100% 0% 0% 100% +8: 0% 0% 100% 100% 100% +9: 0% 0% 100% 100% 100% +10: 0% 0% 100% 100% 100% +11: 0% 0% 100% 100% 100% +12: 0% 0% 100% 100% 100% +13: 100% 100% 0% 100% 100% +14: 100% 100% 0% 100% 100% +15: 100% 100% 0% 100% 100% + +MEAN: 33% 33% 60% 86% 80% +Fragment Performance Setup: Driver RSX Compiler, GPU RSX, Flags 0x5 +Results 15 cycles, 3 r regs, 800,000,000 pixels/s +============================================================================*/ +#if (FXAA_PS3 == 1) && (FXAA_EARLY_EXIT == 1) +/*--------------------------------------------------------------------------*/ +#pragma regcount 7 +#pragma disablepc all +#pragma option O2 +#pragma option OutColorPrec=fp16 +#pragma texformat default RGBA8 +/*==========================================================================*/ +half4 FxaaPixelShader( + // See FXAA Quality FxaaPixelShader() source for docs on Inputs! + FxaaFloat2 pos, + FxaaFloat4 fxaaConsolePosPos, + FxaaTex tex, + FxaaTex fxaaConsole360TexExpBiasNegOne, + FxaaTex fxaaConsole360TexExpBiasNegTwo, + FxaaFloat2 fxaaQualityRcpFrame, + FxaaFloat4 fxaaConsoleRcpFrameOpt, + FxaaFloat4 fxaaConsoleRcpFrameOpt2, + FxaaFloat4 fxaaConsole360RcpFrameOpt2, + FxaaFloat fxaaQualitySubpix, + FxaaFloat fxaaQualityEdgeThreshold, + FxaaFloat fxaaQualityEdgeThresholdMin, + FxaaFloat fxaaConsoleEdgeSharpness, + FxaaFloat fxaaConsoleEdgeThreshold, + FxaaFloat fxaaConsoleEdgeThresholdMin, + FxaaFloat4 fxaaConsole360ConstDir +) +{ + /*--------------------------------------------------------------------------*/ + // (1) + half4 rgbyNe = h4tex2Dlod(tex, half4(fxaaConsolePosPos.zy, 0, 0)); +#if (FXAA_GREEN_AS_LUMA == 0) + half lumaNe = rgbyNe.w + half(1.0 / 512.0); +#else + half lumaNe = rgbyNe.y + half(1.0 / 512.0); +#endif + /*--------------------------------------------------------------------------*/ + // (2) + half4 lumaSw = h4tex2Dlod(tex, half4(fxaaConsolePosPos.xw, 0, 0)); +#if (FXAA_GREEN_AS_LUMA == 0) + half lumaSwNegNe = lumaSw.w - lumaNe; +#else + half lumaSwNegNe = lumaSw.y - lumaNe; +#endif + /*--------------------------------------------------------------------------*/ + // (3) + half4 lumaNw = h4tex2Dlod(tex, half4(fxaaConsolePosPos.xy, 0, 0)); +#if (FXAA_GREEN_AS_LUMA == 0) + half lumaMaxNwSw = max(lumaNw.w, lumaSw.w); + half lumaMinNwSw = min(lumaNw.w, lumaSw.w); +#else + half lumaMaxNwSw = max(lumaNw.y, lumaSw.y); + half lumaMinNwSw = min(lumaNw.y, lumaSw.y); +#endif + /*--------------------------------------------------------------------------*/ + // (4) + half4 lumaSe = h4tex2Dlod(tex, half4(fxaaConsolePosPos.zw, 0, 0)); +#if (FXAA_GREEN_AS_LUMA == 0) + half dirZ = lumaNw.w + lumaSwNegNe; + half dirX = -lumaNw.w + lumaSwNegNe; +#else + half dirZ = lumaNw.y + lumaSwNegNe; + half dirX = -lumaNw.y + lumaSwNegNe; +#endif + /*--------------------------------------------------------------------------*/ + // (5) + half3 dir; + dir.y = 0.0; +#if (FXAA_GREEN_AS_LUMA == 0) + dir.x = lumaSe.w + dirX; + dir.z = -lumaSe.w + dirZ; + half lumaMinNeSe = min(lumaNe, lumaSe.w); +#else + dir.x = lumaSe.y + dirX; + dir.z = -lumaSe.y + dirZ; + half lumaMinNeSe = min(lumaNe, lumaSe.y); +#endif + /*--------------------------------------------------------------------------*/ + // (6) + half4 dir1_pos; + dir1_pos.xy = normalize(dir).xz; + half dirAbsMinTimes8 = min(abs(dir1_pos.x), abs(dir1_pos.y)) * half(FXAA_CONSOLE__PS3_EDGE_SHARPNESS); + /*--------------------------------------------------------------------------*/ + // (7) + half4 dir2_pos; + dir2_pos.xy = clamp(dir1_pos.xy / dirAbsMinTimes8, half(-2.0), half(2.0)); + dir1_pos.zw = pos.xy; + dir2_pos.zw = pos.xy; +#if (FXAA_GREEN_AS_LUMA == 0) + half lumaMaxNeSe = max(lumaNe, lumaSe.w); +#else + half lumaMaxNeSe = max(lumaNe, lumaSe.y); +#endif + /*--------------------------------------------------------------------------*/ + // (8) + half4 temp1N; + temp1N.xy = dir1_pos.zw - dir1_pos.xy * fxaaConsoleRcpFrameOpt.zw; + temp1N = h4tex2Dlod(tex, half4(temp1N.xy, 0.0, 0.0)); + half lumaMax = max(lumaMaxNwSw, lumaMaxNeSe); + half lumaMin = min(lumaMinNwSw, lumaMinNeSe); + /*--------------------------------------------------------------------------*/ + // (9) + half4 rgby1; + rgby1.xy = dir1_pos.zw + dir1_pos.xy * fxaaConsoleRcpFrameOpt.zw; + rgby1 = h4tex2Dlod(tex, half4(rgby1.xy, 0.0, 0.0)); + rgby1 = (temp1N + rgby1) * 0.5; + /*--------------------------------------------------------------------------*/ + // (10) + half4 rgbyM = h4tex2Dlod(tex, half4(pos.xy, 0.0, 0.0)); +#if (FXAA_GREEN_AS_LUMA == 0) + half lumaMaxM = max(lumaMax, rgbyM.w); + half lumaMinM = min(lumaMin, rgbyM.w); +#else + half lumaMaxM = max(lumaMax, rgbyM.y); + half lumaMinM = min(lumaMin, rgbyM.y); +#endif + /*--------------------------------------------------------------------------*/ + // (11) + half4 temp2N; + temp2N.xy = dir2_pos.zw - dir2_pos.xy * fxaaConsoleRcpFrameOpt2.zw; + temp2N = h4tex2Dlod(tex, half4(temp2N.xy, 0.0, 0.0)); + half4 rgby2; + rgby2.xy = dir2_pos.zw + dir2_pos.xy * fxaaConsoleRcpFrameOpt2.zw; + half lumaRangeM = (lumaMaxM - lumaMinM) / FXAA_CONSOLE__PS3_EDGE_THRESHOLD; + /*--------------------------------------------------------------------------*/ + // (12) + rgby2 = h4tex2Dlod(tex, half4(rgby2.xy, 0.0, 0.0)); + rgby2 = (temp2N + rgby2) * 0.5; + /*--------------------------------------------------------------------------*/ + // (13) + rgby2 = (rgby2 + rgby1) * 0.5; + /*--------------------------------------------------------------------------*/ + // (14) +#if (FXAA_GREEN_AS_LUMA == 0) + bool twoTapLt = rgby2.w < lumaMin; + bool twoTapGt = rgby2.w > lumaMax; +#else + bool twoTapLt = rgby2.y < lumaMin; + bool twoTapGt = rgby2.y > lumaMax; +#endif + bool earlyExit = lumaRangeM < lumaMax; + bool twoTap = twoTapLt || twoTapGt; + /*--------------------------------------------------------------------------*/ + // (15) + if (twoTap) rgby2 = rgby1; + if (earlyExit) rgby2 = rgbyM; + /*--------------------------------------------------------------------------*/ + return rgby2; +} +/*==========================================================================*/ +#endif + +#endif // __FXAA3_INC__ diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/FastApproximateAntialiasing.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/FastApproximateAntialiasing.hlsl.meta new file mode 100644 index 0000000..35bef44 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/FastApproximateAntialiasing.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 817a98c8f709269458e50b65910ed4bc +timeCreated: 1490347846 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/FinalPass.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/FinalPass.shader new file mode 100644 index 0000000..a818323 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/FinalPass.shader @@ -0,0 +1,156 @@ +Shader "Hidden/PostProcessing/FinalPass" +{ + HLSLINCLUDE + + #pragma multi_compile __ FXAA FXAA_LOW + #pragma multi_compile __ FXAA_KEEP_ALPHA + + #pragma vertex VertUVTransform + #pragma fragment Frag + + #include "../StdLib.hlsl" + #include "../Colors.hlsl" + #include "Dithering.hlsl" + + // PS3 and XBOX360 aren't supported in Unity anymore, only use the PC variant + #define FXAA_PC 1 + + #if FXAA_KEEP_ALPHA + // Luma hasn't been encoded in alpha + #define FXAA_GREEN_AS_LUMA 1 + #else + // Luma is encoded in alpha after the first Uber pass + #define FXAA_GREEN_AS_LUMA 0 + #endif + + #if FXAA_LOW + #define FXAA_QUALITY__PRESET 12 + #define FXAA_QUALITY_SUBPIX 1.0 + #define FXAA_QUALITY_EDGE_THRESHOLD 0.166 + #define FXAA_QUALITY_EDGE_THRESHOLD_MIN 0.0625 + #else + #define FXAA_QUALITY__PRESET 28 + #define FXAA_QUALITY_SUBPIX 1.0 + #define FXAA_QUALITY_EDGE_THRESHOLD 0.063 + #define FXAA_QUALITY_EDGE_THRESHOLD_MIN 0.0312 + #endif + + #include "FastApproximateAntialiasing.hlsl" + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); + float4 _MainTex_TexelSize; + + float4 Frag(VaryingsDefault i) : SV_Target + { + half4 color = 0.0; + + // Fast Approximate Anti-aliasing + #if FXAA || FXAA_LOW + { + #if FXAA_HLSL_4 || FXAA_HLSL_5 + FxaaTex mainTex; + mainTex.tex = _MainTex; + mainTex.smpl = sampler_MainTex; + #else + FxaaTex mainTex = _MainTex; + #endif + + color = FxaaPixelShader( + i.texcoord, // pos + 0.0, // fxaaConsolePosPos (unused) + mainTex, // tex + mainTex, // fxaaConsole360TexExpBiasNegOne (unused) + mainTex, // fxaaConsole360TexExpBiasNegTwo (unused) + _MainTex_TexelSize.xy, // fxaaQualityRcpFrame + 0.0, // fxaaConsoleRcpFrameOpt (unused) + 0.0, // fxaaConsoleRcpFrameOpt2 (unused) + 0.0, // fxaaConsole360RcpFrameOpt2 (unused) + FXAA_QUALITY_SUBPIX, + FXAA_QUALITY_EDGE_THRESHOLD, + FXAA_QUALITY_EDGE_THRESHOLD_MIN, + 0.0, // fxaaConsoleEdgeSharpness (unused) + 0.0, // fxaaConsoleEdgeThreshold (unused) + 0.0, // fxaaConsoleEdgeThresholdMin (unused) + 0.0 // fxaaConsole360ConstDir (unused) + ); + + #if FXAA_KEEP_ALPHA + { + color.a = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo).a; + } + #endif + } + #else + { + color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + } + #endif + + color.rgb = Dither(color.rgb, i.texcoord); + return color; + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + #pragma exclude_renderers gles vulkan switch + + #pragma multi_compile __ STEREO_INSTANCING_ENABLED STEREO_DOUBLEWIDE_TARGET + #pragma target 5.0 + + ENDHLSL + } + } + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + #pragma exclude_renderers gles vulkan switch + + #pragma multi_compile __ STEREO_INSTANCING_ENABLED STEREO_DOUBLEWIDE_TARGET + #pragma target 3.0 + + ENDHLSL + } + } + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + #pragma only_renderers gles + + #pragma multi_compile __ STEREO_INSTANCING_ENABLED STEREO_DOUBLEWIDE_TARGET + #pragma target es3.0 + + ENDHLSL + } + } + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + #pragma only_renderers gles vulkan switch + + #pragma multi_compile __ STEREO_DOUBLEWIDE_TARGET //not supporting STEREO_INSTANCING_ENABLED + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/FinalPass.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/FinalPass.shader.meta new file mode 100644 index 0000000..a8a06c9 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/FinalPass.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: f75014305794b3948a3c6d5ccd550e05 +timeCreated: 1492610926 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Fog.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Fog.hlsl new file mode 100644 index 0000000..f4e93a4 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Fog.hlsl @@ -0,0 +1,32 @@ +#ifndef UNITY_POSTFX_FOG +#define UNITY_POSTFX_FOG + +half4 _FogColor; +float3 _FogParams; + +#define FOG_DENSITY _FogParams.x +#define FOG_START _FogParams.y +#define FOG_END _FogParams.z + +half ComputeFog(float z) +{ + half fog = 0.0; +#if FOG_LINEAR + fog = (FOG_END - z) / (FOG_END - FOG_START); +#elif FOG_EXP + fog = exp2(-FOG_DENSITY * z); +#else // FOG_EXP2 + fog = FOG_DENSITY * z; + fog = exp2(-fog * fog); +#endif + return saturate(fog); +} + +float ComputeFogDistance(float depth) +{ + float dist = depth * _ProjectionParams.z; + dist -= _ProjectionParams.y; + return dist; +} + +#endif // UNITY_POSTFX_FOG diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Fog.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Fog.hlsl.meta new file mode 100644 index 0000000..59ad349 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Fog.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 6c5a4cd8abc6e204985ac645b8dad78e +timeCreated: 1498725505 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/GaussianDownsample.compute b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/GaussianDownsample.compute new file mode 100644 index 0000000..d805349 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/GaussianDownsample.compute @@ -0,0 +1,156 @@ +// +// This is a modified version of the BlurCS compute shader from Microsoft's MiniEngine +// library. The copyright notice from the original version is included below. +// +// The original source code of MiniEngine is available on GitHub. +// https://github.com/Microsoft/DirectX-Graphics-Samples +// + +// +// Copyright (c) Microsoft. All rights reserved. +// This code is licensed under the MIT License (MIT). +// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF +// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY +// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR +// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. +// +// Developed by Minigraph +// +// Author: Bob Brown +// + +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#include "../StdLib.hlsl" + +Texture2D _Source; +RWTexture2D _Result; + +SamplerState sampler_LinearClamp; + +CBUFFER_START(cb) + float4 _Size; +CBUFFER_END + +// 16x16 pixels with an 8x8 center that we will be blurring writing out. Each uint is two color +// channels packed together. +// The reason for separating channels is to reduce bank conflicts in the local data memory +// controller. A large stride will cause more threads to collide on the same memory bank. +groupshared uint gs_cacheR[128]; +groupshared uint gs_cacheG[128]; +groupshared uint gs_cacheB[128]; +groupshared uint gs_cacheA[128]; + +float4 BlurPixels(float4 a, float4 b, float4 c, float4 d, float4 e, float4 f, float4 g, float4 h, float4 i) +{ + return 0.27343750 * (e ) + + 0.21875000 * (d + f) + + 0.10937500 * (c + g) + + 0.03125000 * (b + h) + + 0.00390625 * (a + i); +} + +void Store2Pixels(uint index, float4 pixel1, float4 pixel2) +{ + gs_cacheR[index] = f32tof16(pixel1.r) | f32tof16(pixel2.r) << 16; + gs_cacheG[index] = f32tof16(pixel1.g) | f32tof16(pixel2.g) << 16; + gs_cacheB[index] = f32tof16(pixel1.b) | f32tof16(pixel2.b) << 16; + gs_cacheA[index] = f32tof16(pixel1.a) | f32tof16(pixel2.a) << 16; +} + +void Load2Pixels(uint index, out float4 pixel1, out float4 pixel2) +{ + uint rr = gs_cacheR[index]; + uint gg = gs_cacheG[index]; + uint bb = gs_cacheB[index]; + uint aa = gs_cacheA[index]; + pixel1 = float4(f16tof32(rr ), f16tof32(gg ), f16tof32(bb ), f16tof32(aa )); + pixel2 = float4(f16tof32(rr >> 16), f16tof32(gg >> 16), f16tof32(bb >> 16), f16tof32(aa >> 16)); +} + +void Store1Pixel(uint index, float4 pixel) +{ + gs_cacheR[index] = asuint(pixel.r); + gs_cacheG[index] = asuint(pixel.g); + gs_cacheB[index] = asuint(pixel.b); + gs_cacheA[index] = asuint(pixel.a); +} + +void Load1Pixel(uint index, out float4 pixel) +{ + pixel = asfloat(uint4(gs_cacheR[index], gs_cacheG[index], gs_cacheB[index], gs_cacheA[index])); +} + +// Blur two pixels horizontally. This reduces LDS reads and pixel unpacking. +void BlurHorizontally(uint outIndex, uint leftMostIndex) +{ + float4 s0, s1, s2, s3, s4, s5, s6, s7, s8, s9; + Load2Pixels(leftMostIndex + 0, s0, s1); + Load2Pixels(leftMostIndex + 1, s2, s3); + Load2Pixels(leftMostIndex + 2, s4, s5); + Load2Pixels(leftMostIndex + 3, s6, s7); + Load2Pixels(leftMostIndex + 4, s8, s9); + + Store1Pixel(outIndex , BlurPixels(s0, s1, s2, s3, s4, s5, s6, s7, s8)); + Store1Pixel(outIndex + 1, BlurPixels(s1, s2, s3, s4, s5, s6, s7, s8, s9)); +} + +void BlurVertically(uint2 pixelCoord, uint topMostIndex) +{ + float4 s0, s1, s2, s3, s4, s5, s6, s7, s8; + Load1Pixel(topMostIndex , s0); + Load1Pixel(topMostIndex + 8, s1); + Load1Pixel(topMostIndex + 16, s2); + Load1Pixel(topMostIndex + 24, s3); + Load1Pixel(topMostIndex + 32, s4); + Load1Pixel(topMostIndex + 40, s5); + Load1Pixel(topMostIndex + 48, s6); + Load1Pixel(topMostIndex + 56, s7); + Load1Pixel(topMostIndex + 64, s8); + + float4 blurred = BlurPixels(s0, s1, s2, s3, s4, s5, s6, s7, s8); + + // Write to the final target + _Result[pixelCoord] = blurred; +} + +#pragma kernel KMain + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(KMain) + +#else + +[numthreads(8, 8, 1)] +void KMain(uint2 groupId : SV_GroupID, uint2 groupThreadId : SV_GroupThreadID, uint2 dispatchThreadId : SV_DispatchThreadID) +{ + // Upper-left pixel coordinate of quad that this thread will read + int2 threadUL = (groupThreadId << 1) + (groupId << 3) - 4; + + // Downsample the block + float2 offset = float2(threadUL); + float4 p00 = _Source.SampleLevel(sampler_LinearClamp, (offset + 0.5) * _Size.zw, 0.0); + float4 p10 = _Source.SampleLevel(sampler_LinearClamp, (offset + float2(1.0, 0.0) + 0.5) * _Size.zw, 0.0); + float4 p01 = _Source.SampleLevel(sampler_LinearClamp, (offset + float2(0.0, 1.0) + 0.5) * _Size.zw, 0.0); + float4 p11 = _Source.SampleLevel(sampler_LinearClamp, (offset + float2(1.0, 1.0) + 0.5) * _Size.zw, 0.0); + + // Store the 4 downsampled pixels in LDS + uint destIdx = groupThreadId.x + (groupThreadId.y << 4u); + Store2Pixels(destIdx , p00, p10); + Store2Pixels(destIdx + 8u, p01, p11); + + GroupMemoryBarrierWithGroupSync(); + + // Horizontally blur the pixels in LDS + uint row = groupThreadId.y << 4u; + BlurHorizontally(row + (groupThreadId.x << 1u), row + groupThreadId.x + (groupThreadId.x & 4u)); + + GroupMemoryBarrierWithGroupSync(); + + // Vertically blur the pixels in LDS and write the result to memory + BlurVertically(dispatchThreadId, (groupThreadId.y << 3u) + groupThreadId.x); +} + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/GaussianDownsample.compute.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/GaussianDownsample.compute.meta new file mode 100644 index 0000000..a782846 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/GaussianDownsample.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 6dba4103d23a7904fbc49099355aff3e +timeCreated: 1503754250 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 131076 + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/GrainBaker.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/GrainBaker.shader new file mode 100644 index 0000000..7095a3b --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/GrainBaker.shader @@ -0,0 +1,104 @@ +Shader "Hidden/PostProcessing/GrainBaker" +{ + HLSLINCLUDE + + #pragma exclude_renderers d3d11_9x + #pragma target 3.0 + #include "../StdLib.hlsl" + + float _Phase; + float3 _NoiseParameters; + + // Implementation based on Timothy Lottes' "Large Grain" + // Reference code: https://www.shadertoy.com/view/4sSXDW + // Other article of interest: http://devlog-martinsh.blogspot.fr/2013/05/image-imperfections-and-film-grain-post.html + float Noise(float2 n, float x) + { + n += x; + return frac(sin(dot(n.xy, _NoiseParameters.xy)) * _NoiseParameters.z); + } + + float Step1(float2 uv, float n) + { + float b = 2.0, c = -12.0; + return (1.0 / (4.0 + b * 4.0 + abs(c))) * ( + Noise(uv + float2(-1.0, -1.0), n) + + Noise(uv + float2( 0.0, -1.0), n) * b + + Noise(uv + float2( 1.0, -1.0), n) + + Noise(uv + float2(-1.0, 0.0), n) * b + + Noise(uv + float2( 0.0, 0.0), n) * c + + Noise(uv + float2( 1.0, 0.0), n) * b + + Noise(uv + float2(-1.0, 1.0), n) + + Noise(uv + float2( 0.0, 1.0), n) * b + + Noise(uv + float2( 1.0, 1.0), n) + ); + } + + float Step2(float2 uv, float n) + { + float b = 2.0, c = 4.0; + return (1.0 / (4.0 + b * 4.0 + abs(c))) * ( + Step1(uv + float2(-1.0, -1.0), n) + + Step1(uv + float2( 0.0, -1.0), n) * b + + Step1(uv + float2( 1.0, -1.0), n) + + Step1(uv + float2(-1.0, 0.0), n) * b + + Step1(uv + float2( 0.0, 0.0), n) * c + + Step1(uv + float2( 1.0, 0.0), n) * b + + Step1(uv + float2(-1.0, 1.0), n) + + Step1(uv + float2( 0.0, 1.0), n) * b + + Step1(uv + float2( 1.0, 1.0), n) + ); + } + + float Step3BW(float2 uv) + { + return Step2(uv, frac(_Phase)); + } + + float3 Step3(float2 uv) + { + float a = Step2(uv, 0.07 * frac(_Phase)); + float b = Step2(uv, 0.11 * frac(_Phase)); + float c = Step2(uv, 0.13 * frac(_Phase)); + return float3(a, b, c); + } + + float4 FragGrain(VaryingsDefault i) : SV_Target + { + float grain = Step3BW(i.texcoordStereo * float2(128.0, 128.0)); + return float4(grain.xxx, 1.0); + } + + float4 FragGrainColored(VaryingsDefault i) : SV_Target + { + float3 grain = Step3(i.texcoordStereo * float2(128.0, 128.0)); + return float4(grain, 1.0); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragGrain + + ENDHLSL + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragGrainColored + + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/GrainBaker.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/GrainBaker.shader.meta new file mode 100644 index 0000000..6cc9b91 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/GrainBaker.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 0d8afcb51cc9f0349a6d190da929b838 +timeCreated: 1489138738 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Lut2DBaker.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Lut2DBaker.shader new file mode 100644 index 0000000..0c38c62 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Lut2DBaker.shader @@ -0,0 +1,222 @@ +Shader "Hidden/PostProcessing/Lut2DBaker" +{ + HLSLINCLUDE + + #pragma target 3.0 + #include "../StdLib.hlsl" + #include "../Colors.hlsl" + #include "../ACES.hlsl" + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); + float4 _Lut2D_Params; + float4 _UserLut2D_Params; + + float3 _ColorBalance; + float3 _ColorFilter; + float3 _HueSatCon; + float _Brightness; // LDR only + + float3 _ChannelMixerRed; + float3 _ChannelMixerGreen; + float3 _ChannelMixerBlue; + + float3 _Lift; + float3 _InvGamma; + float3 _Gain; + + TEXTURE2D_SAMPLER2D(_Curves, sampler_Curves); + + float4 _CustomToneCurve; + float4 _ToeSegmentA; + float4 _ToeSegmentB; + float4 _MidSegmentA; + float4 _MidSegmentB; + float4 _ShoSegmentA; + float4 _ShoSegmentB; + + float3 ApplyCommonGradingSteps(float3 colorLinear) + { + colorLinear = WhiteBalance(colorLinear, _ColorBalance); + colorLinear *= _ColorFilter; + colorLinear = ChannelMixer(colorLinear, _ChannelMixerRed, _ChannelMixerGreen, _ChannelMixerBlue); + colorLinear = LiftGammaGainHDR(colorLinear, _Lift, _InvGamma, _Gain); + + // Do NOT feed negative values to RgbToHsv or they'll wrap around + colorLinear = max((float3)0.0, colorLinear); + + float3 hsv = RgbToHsv(colorLinear); + + // Hue Vs Sat + float satMult; + satMult = saturate(SAMPLE_TEXTURE2D_LOD(_Curves, sampler_Curves, float2(hsv.x, 0.25), 0).y) * 2.0; + + // Sat Vs Sat + satMult *= saturate(SAMPLE_TEXTURE2D_LOD(_Curves, sampler_Curves, float2(hsv.y, 0.25), 0).z) * 2.0; + + // Lum Vs Sat + satMult *= saturate(SAMPLE_TEXTURE2D_LOD(_Curves, sampler_Curves, float2(Luminance(colorLinear), 0.25), 0).w) * 2.0; + + // Hue Vs Hue + float hue = hsv.x + _HueSatCon.x; + float offset = saturate(SAMPLE_TEXTURE2D_LOD(_Curves, sampler_Curves, float2(hue, 0.25), 0).x) - 0.5; + hue += offset; + hsv.x = RotateHue(hue, 0.0, 1.0); + + colorLinear = HsvToRgb(hsv); + colorLinear = Saturation(colorLinear, _HueSatCon.y * satMult); + + return colorLinear; + } + + // + // LDR Grading process + // + float3 ColorGradeLDR(float3 colorLinear) + { + // Brightness is a simple linear multiplier. Works better in LDR than using e.v. + colorLinear *= _Brightness; + + // Contrast is done in linear, switching to log for that in LDR is pointless and doesn't + // feel as good to tweak + const float kMidGrey = pow(0.5, 2.2); + colorLinear = Contrast(colorLinear, kMidGrey, _HueSatCon.z); + + colorLinear = ApplyCommonGradingSteps(colorLinear); + + // YRGB only works in LDR for now as we don't do any curve range remapping + colorLinear = YrgbCurve(saturate(colorLinear), TEXTURE2D_PARAM(_Curves, sampler_Curves)); + + return saturate(colorLinear); + } + + float4 FragLDRFromScratch(VaryingsDefault i) : SV_Target + { + float3 colorLinear = GetLutStripValue(i.texcoordStereo, _Lut2D_Params); + float3 graded = ColorGradeLDR(colorLinear); + return float4(graded, 1.0); + } + + float4 FragLDR(VaryingsDefault i) : SV_Target + { + // Note: user luts may not have the same size as the internal one + float3 neutralColorLinear = GetLutStripValue(i.texcoordStereo, _Lut2D_Params); + float3 lookup = ApplyLut2D(TEXTURE2D_PARAM(_MainTex, sampler_MainTex), neutralColorLinear, _UserLut2D_Params.xyz); + float3 colorLinear = lerp(neutralColorLinear, lookup, _UserLut2D_Params.w); + float3 graded = ColorGradeLDR(colorLinear); + return float4(graded, 1.0); + } + + // + // HDR Grading process + // + float3 LogGradeHDR(float3 colorLog) + { + // HDR contrast feels a lot more natural when done in log rather than doing it in linear + colorLog = Contrast(colorLog, ACEScc_MIDGRAY, _HueSatCon.z); + return colorLog; + } + + float3 LinearGradeHDR(float3 colorLinear) + { + colorLinear = ApplyCommonGradingSteps(colorLinear); + return colorLinear; + } + + float3 ColorGradeHDR(float3 colorLutSpace) + { + #if TONEMAPPING_ACES + { + float3 colorLinear = LUT_SPACE_DECODE(colorLutSpace); + float3 aces = unity_to_ACES(colorLinear); + + // ACEScc (log) space + float3 acescc = ACES_to_ACEScc(aces); + acescc = LogGradeHDR(acescc); + aces = ACEScc_to_ACES(acescc); + + // ACEScg (linear) space + float3 acescg = ACES_to_ACEScg(aces); + acescg = LinearGradeHDR(acescg); + + // Tonemap ODT(RRT(aces)) + aces = ACEScg_to_ACES(acescg); + colorLinear = AcesTonemap(aces); + + return colorLinear; + } + #else + { + // colorLutSpace is already in log space + colorLutSpace = LogGradeHDR(colorLutSpace); + + // Switch back to linear + float3 colorLinear = LUT_SPACE_DECODE(colorLutSpace); + colorLinear = LinearGradeHDR(colorLinear); + colorLinear = max(0.0, colorLinear); + + // Tonemap + #if TONEMAPPING_NEUTRAL + { + colorLinear = NeutralTonemap(colorLinear); + } + #elif TONEMAPPING_CUSTOM + { + colorLinear = CustomTonemap( + colorLinear, _CustomToneCurve.xyz, + _ToeSegmentA, _ToeSegmentB.xy, + _MidSegmentA, _MidSegmentB.xy, + _ShoSegmentA, _ShoSegmentB.xy + ); + } + #endif + + return colorLinear; + } + #endif + } + + float4 FragHDR(VaryingsDefault i) : SV_Target + { + float3 colorLutSpace = GetLutStripValue(i.texcoord, _Lut2D_Params); + float3 graded = ColorGradeHDR(colorLutSpace); + return float4(max(graded, 0.0), 1.0); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragLDRFromScratch + + ENDHLSL + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragLDR + + ENDHLSL + } + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragHDR + #pragma multi_compile __ TONEMAPPING_ACES TONEMAPPING_NEUTRAL TONEMAPPING_CUSTOM + + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Lut2DBaker.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Lut2DBaker.shader.meta new file mode 100644 index 0000000..a35b9ef --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Lut2DBaker.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 7ad194cbe7d006f4bace915156972026 +timeCreated: 1493730829 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Lut3DBaker.compute b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Lut3DBaker.compute new file mode 100644 index 0000000..1d960a5 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Lut3DBaker.compute @@ -0,0 +1,177 @@ +#include "../StdLib.hlsl" +#include "../Colors.hlsl" +#include "../ACES.hlsl" + +#pragma kernel KGenLut3D_NoTonemap TONEMAPPING_NONE +#pragma kernel KGenLut3D_AcesTonemap TONEMAPPING_ACES +#pragma kernel KGenLut3D_NeutralTonemap TONEMAPPING_NEUTRAL +#pragma kernel KGenLut3D_CustomTonemap TONEMAPPING_CUSTOM + +RWTexture3D _Output; + +CBUFFER_START(Params) + float4 _Size; // x: lut_size, y: 1 / (lut_size - 1), zw: unused + + float4 _ColorBalance; + float4 _ColorFilter; + float4 _HueSatCon; + + float4 _ChannelMixerRed; + float4 _ChannelMixerGreen; + float4 _ChannelMixerBlue; + + float4 _Lift; + float4 _InvGamma; + float4 _Gain; + + float4 _CustomToneCurve; + + // Packing is currently borked, can't pass float arrays without it creating one vector4 per + // float so we'll pack manually... + float4 _ToeSegmentA; + float4 _ToeSegmentB; + float4 _MidSegmentA; + float4 _MidSegmentB; + float4 _ShoSegmentA; + float4 _ShoSegmentB; +CBUFFER_END + +Texture2D _Curves; +SamplerState sampler_Curves; + +float3 LogGrade(float3 colorLog) +{ + // Contrast feels a lot more natural when done in log rather than doing it in linear + colorLog = Contrast(colorLog, ACEScc_MIDGRAY, _HueSatCon.z); + + return colorLog; +} + +float3 LinearGrade(float3 colorLinear) +{ + colorLinear = WhiteBalance(colorLinear, _ColorBalance.rgb); + colorLinear *= _ColorFilter.rgb; + colorLinear = ChannelMixer(colorLinear, _ChannelMixerRed.rgb, _ChannelMixerGreen.rgb, _ChannelMixerBlue.rgb); + colorLinear = LiftGammaGainHDR(colorLinear, _Lift.rgb, _InvGamma.rgb, _Gain.rgb); + + // Do NOT feed negative values to RgbToHsv or they'll wrap around + colorLinear = max(0.0, colorLinear); + + float3 hsv = RgbToHsv(colorLinear); + + // Hue Vs Sat + float satMult; + satMult = saturate(_Curves.SampleLevel(sampler_Curves, float2(hsv.x, 0.25), 0).y) * 2.0; + + // Sat Vs Sat + satMult *= saturate(_Curves.SampleLevel(sampler_Curves, float2(hsv.y, 0.25), 0).z) * 2.0; + + // Lum Vs Sat + satMult *= saturate(_Curves.SampleLevel(sampler_Curves, float2(Luminance(colorLinear), 0.25), 0).w) * 2.0; + + // Hue Vs Hue + float hue = hsv.x + _HueSatCon.x; + float offset = saturate(_Curves.SampleLevel(sampler_Curves, float2(hue, 0.25), 0).x) - 0.5; + hue += offset; + hsv.x = RotateHue(hue, 0.0, 1.0); + + colorLinear = HsvToRgb(hsv); + colorLinear = Saturation(colorLinear, _HueSatCon.y * satMult); + + return colorLinear; +} + +#if TONEMAPPING_ACES + +float3 ColorGrade(float3 colorLutSpace) +{ + float3 colorLinear = LUT_SPACE_DECODE(colorLutSpace); + float3 aces = unity_to_ACES(colorLinear); + + // ACEScc (log) space + float3 acescc = ACES_to_ACEScc(aces); + acescc = LogGrade(acescc); + aces = ACEScc_to_ACES(acescc); + + // ACEScg (linear) space + float3 acescg = ACES_to_ACEScg(aces); + acescg = LinearGrade(acescg); + + // Tonemap ODT(RRT(aces)) + aces = ACEScg_to_ACES(acescg); + colorLinear = AcesTonemap(aces); + + return colorLinear; +} + +#else + +float3 ColorGrade(float3 colorLutSpace) +{ + // colorLutSpace is already in log space + colorLutSpace = LogGrade(colorLutSpace); + + // Switch back to linear + float3 colorLinear = LUT_SPACE_DECODE(colorLutSpace); + colorLinear = LinearGrade(colorLinear); + colorLinear = max(0.0, colorLinear); + + // Tonemap + #if TONEMAPPING_NEUTRAL + { + colorLinear = NeutralTonemap(colorLinear); + } + #elif TONEMAPPING_CUSTOM + { + colorLinear = CustomTonemap( + colorLinear, _CustomToneCurve.xyz, + _ToeSegmentA, _ToeSegmentB.xy, + _MidSegmentA, _MidSegmentB.xy, + _ShoSegmentA, _ShoSegmentB.xy + ); + } + #endif + + return colorLinear; +} + +#endif + +void Eval(uint3 id) +{ + if (float(id.x) < _Size.x && float(id.y) < _Size.x && float(id.z) < _Size.x) + { + // Lut space (log space) + float3 colorLutSpace = float3(id) * _Size.y; + + // Color grade & tonemap + float3 graded = ColorGrade(colorLutSpace); + + _Output[id] = float4(max(graded, 0.0), 1.0); + } +} + +#define GROUP_SIZE 4 + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(KGenLut3D_NoTonemap) +TRIVIAL_COMPUTE_KERNEL(KGenLut3D_AcesTonemap) +TRIVIAL_COMPUTE_KERNEL(KGenLut3D_NeutralTonemap) +TRIVIAL_COMPUTE_KERNEL(KGenLut3D_CustomTonemap) + +#else + +[numthreads(GROUP_SIZE, GROUP_SIZE, GROUP_SIZE)] +void KGenLut3D_NoTonemap(uint3 id : SV_DispatchThreadID) { Eval(id); } + +[numthreads(GROUP_SIZE, GROUP_SIZE, GROUP_SIZE)] +void KGenLut3D_AcesTonemap(uint3 id : SV_DispatchThreadID) { Eval(id); } + +[numthreads(GROUP_SIZE, GROUP_SIZE, GROUP_SIZE)] +void KGenLut3D_NeutralTonemap(uint3 id : SV_DispatchThreadID) { Eval(id); } + +[numthreads(GROUP_SIZE, GROUP_SIZE, GROUP_SIZE)] +void KGenLut3D_CustomTonemap(uint3 id : SV_DispatchThreadID) { Eval(id); } + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Lut3DBaker.compute.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Lut3DBaker.compute.meta new file mode 100644 index 0000000..78ab22d --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Lut3DBaker.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 42496b74c071f5749950ca1abe33e945 +timeCreated: 1494926107 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 131076 + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MotionBlur.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MotionBlur.shader new file mode 100644 index 0000000..10d1ceb --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MotionBlur.shader @@ -0,0 +1,332 @@ +Shader "Hidden/PostProcessing/MotionBlur" +{ + HLSLINCLUDE + + #pragma target 3.0 + #include "../StdLib.hlsl" + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); + float4 _MainTex_TexelSize; + + // Camera depth texture + TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); + + // Camera motion vectors texture + TEXTURE2D_SAMPLER2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture); + float4 _CameraMotionVectorsTexture_TexelSize; + + // Packed velocity texture (2/10/10/10) + TEXTURE2D_SAMPLER2D(_VelocityTex, sampler_VelocityTex); + float2 _VelocityTex_TexelSize; + + // NeighborMax texture + TEXTURE2D_SAMPLER2D(_NeighborMaxTex, sampler_NeighborMaxTex); + float2 _NeighborMaxTex_TexelSize; + + // Velocity scale factor + float _VelocityScale; + + // TileMax filter parameters + int _TileMaxLoop; + float2 _TileMaxOffs; + + // Maximum blur radius (in pixels) + half _MaxBlurRadius; + float _RcpMaxBlurRadius; + + // Filter parameters/coefficients + half _LoopCount; + + // ----------------------------------------------------------------------------- + // Prefilter + + // Velocity texture setup + half4 FragVelocitySetup(VaryingsDefault i) : SV_Target + { + // Sample the motion vector. + float2 v = SAMPLE_TEXTURE2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture, i.texcoord).rg; + + // Apply the exposure time and convert to the pixel space. + v *= (_VelocityScale * 0.5) * _CameraMotionVectorsTexture_TexelSize.zw; + + // Clamp the vector with the maximum blur radius. + v /= max(1.0, length(v) * _RcpMaxBlurRadius); + + // Sample the depth of the pixel. + half d = Linear01Depth(SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoord)); + + // Pack into 10/10/10/2 format. + return half4((v * _RcpMaxBlurRadius + 1.0) * 0.5, d, 0.0); + } + + half2 MaxV(half2 v1, half2 v2) + { + return dot(v1, v1) < dot(v2, v2) ? v2 : v1; + } + + // TileMax filter (2 pixel width with normalization) + half4 FragTileMax1(VaryingsDefault i) : SV_Target + { + float4 d = _MainTex_TexelSize.xyxy * float4(-0.5, -0.5, 0.5, 0.5); + + half2 v1 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.xy).rg; + half2 v2 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.zy).rg; + half2 v3 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.xw).rg; + half2 v4 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.zw).rg; + + v1 = (v1 * 2.0 - 1.0) * _MaxBlurRadius; + v2 = (v2 * 2.0 - 1.0) * _MaxBlurRadius; + v3 = (v3 * 2.0 - 1.0) * _MaxBlurRadius; + v4 = (v4 * 2.0 - 1.0) * _MaxBlurRadius; + + return half4(MaxV(MaxV(MaxV(v1, v2), v3), v4), 0.0, 0.0); + } + + // TileMax filter (2 pixel width) + half4 FragTileMax2(VaryingsDefault i) : SV_Target + { + float4 d = _MainTex_TexelSize.xyxy * float4(-0.5, -0.5, 0.5, 0.5); + + half2 v1 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.xy).rg; + half2 v2 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.zy).rg; + half2 v3 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.xw).rg; + half2 v4 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.zw).rg; + + return half4(MaxV(MaxV(MaxV(v1, v2), v3), v4), 0.0, 0.0); + } + + // TileMax filter (variable width) + half4 FragTileMaxV(VaryingsDefault i) : SV_Target + { + float2 uv0 = i.texcoord + _MainTex_TexelSize.xy * _TileMaxOffs.xy; + + float2 du = float2(_MainTex_TexelSize.x, 0.0); + float2 dv = float2(0.0, _MainTex_TexelSize.y); + + half2 vo = 0.0; + + UNITY_LOOP + for (int ix = 0; ix < _TileMaxLoop; ix++) + { + UNITY_LOOP + for (int iy = 0; iy < _TileMaxLoop; iy++) + { + float2 uv = uv0 + du * ix + dv * iy; + vo = MaxV(vo, SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uv).rg); + } + } + + return half4(vo, 0.0, 0.0); + } + + // NeighborMax filter + half4 FragNeighborMax(VaryingsDefault i) : SV_Target + { + const half cw = 1.01; // Center weight tweak + + float4 d = _MainTex_TexelSize.xyxy * float4(1.0, 1.0, -1.0, 0.0); + + half2 v1 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord - d.xy).rg; + half2 v2 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord - d.wy).rg; + half2 v3 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord - d.zy).rg; + + half2 v4 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord - d.xw).rg; + half2 v5 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord).rg * cw; + half2 v6 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.xw).rg; + + half2 v7 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.zy).rg; + half2 v8 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.wy).rg; + half2 v9 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord + d.xy).rg; + + half2 va = MaxV(v1, MaxV(v2, v3)); + half2 vb = MaxV(v4, MaxV(v5, v6)); + half2 vc = MaxV(v7, MaxV(v8, v9)); + + return half4(MaxV(va, MaxV(vb, vc)) * (1.0 / cw), 0.0, 0.0); + } + + // ----------------------------------------------------------------------------- + // Reconstruction + + // Returns true or false with a given interval. + bool Interval(half phase, half interval) + { + return frac(phase / interval) > 0.499; + } + + // Jitter function for tile lookup + float2 JitterTile(float2 uv) + { + float rx, ry; + sincos(GradientNoise(uv + float2(2.0, 0.0)) * TWO_PI, ry, rx); + return float2(rx, ry) * _NeighborMaxTex_TexelSize.xy * 0.25; + } + + // Velocity sampling function + half3 SampleVelocity(float2 uv) + { + half3 v = SAMPLE_TEXTURE2D_LOD(_VelocityTex, sampler_VelocityTex, uv, 0.0).xyz; + return half3((v.xy * 2.0 - 1.0) * _MaxBlurRadius, v.z); + } + + // Reconstruction filter + half4 FragReconstruction(VaryingsDefault i) : SV_Target + { + // Color sample at the center point + const half4 c_p = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + + // Velocity/Depth sample at the center point + const half3 vd_p = SampleVelocity(i.texcoord); + const half l_v_p = max(length(vd_p.xy), 0.5); + const half rcp_d_p = 1.0 / vd_p.z; + + // NeighborMax vector sample at the center point + const half2 v_max = SAMPLE_TEXTURE2D(_NeighborMaxTex, sampler_NeighborMaxTex, i.texcoord + JitterTile(i.texcoord)).xy; + const half l_v_max = length(v_max); + const half rcp_l_v_max = 1.0 / l_v_max; + + // Escape early if the NeighborMax vector is small enough. + if (l_v_max < 2.0) return c_p; + + // Use V_p as a secondary sampling direction except when it's too small + // compared to V_max. This vector is rescaled to be the length of V_max. + const half2 v_alt = (l_v_p * 2.0 > l_v_max) ? vd_p.xy * (l_v_max / l_v_p) : v_max; + + // Determine the sample count. + const half sc = floor(min(_LoopCount, l_v_max * 0.5)); + + // Loop variables (starts from the outermost sample) + const half dt = 1.0 / sc; + const half t_offs = (GradientNoise(i.texcoord) - 0.5) * dt; + half t = 1.0 - dt * 0.5; + half count = 0.0; + + // Background velocity + // This is used for tracking the maximum velocity in the background layer. + half l_v_bg = max(l_v_p, 1.0); + + // Color accumlation + half4 acc = 0.0; + + UNITY_LOOP + while (t > dt * 0.25) + { + // Sampling direction (switched per every two samples) + const half2 v_s = Interval(count, 4.0) ? v_alt : v_max; + + // Sample position (inverted per every sample) + const half t_s = (Interval(count, 2.0) ? -t : t) + t_offs; + + // Distance to the sample position + const half l_t = l_v_max * abs(t_s); + + // UVs for the sample position + const float2 uv0 = i.texcoord + v_s * t_s * _MainTex_TexelSize.xy; + const float2 uv1 = i.texcoord + v_s * t_s * _VelocityTex_TexelSize.xy; + + // Color sample + const half3 c = SAMPLE_TEXTURE2D_LOD(_MainTex, sampler_MainTex, uv0, 0.0).rgb; + + // Velocity/Depth sample + const half3 vd = SampleVelocity(uv1); + + // Background/Foreground separation + const half fg = saturate((vd_p.z - vd.z) * 20.0 * rcp_d_p); + + // Length of the velocity vector + const half l_v = lerp(l_v_bg, length(vd.xy), fg); + + // Sample weight + // (Distance test) * (Spreading out by motion) * (Triangular window) + const half w = saturate(l_v - l_t) / l_v * (1.2 - t); + + // Color accumulation + acc += half4(c, 1.0) * w; + + // Update the background velocity. + l_v_bg = max(l_v_bg, l_v); + + // Advance to the next sample. + t = Interval(count, 2.0) ? t - dt : t; + count += 1.0; + } + + // Add the center sample. + acc += half4(c_p.rgb, 1.0) * (1.2 / (l_v_bg * sc * 2.0)); + + return half4(acc.rgb / acc.a, c_p.a); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // (0) Velocity texture setup + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragVelocitySetup + + ENDHLSL + } + + // (1) TileMax filter (2 pixel width with normalization) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragTileMax1 + + ENDHLSL + } + + // (2) TileMax filter (2 pixel width) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragTileMax2 + + ENDHLSL + } + + // (3) TileMax filter (variable width) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragTileMaxV + + ENDHLSL + } + + // (4) NeighborMax filter + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragNeighborMax + + ENDHLSL + } + + // (5) Reconstruction filter + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragReconstruction + + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MotionBlur.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MotionBlur.shader.meta new file mode 100644 index 0000000..879fb20 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MotionBlur.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 2c459b89a7c8b1a4fbefe0d81341651c +timeCreated: 1489147878 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVO.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVO.shader new file mode 100644 index 0000000..4464a17 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVO.shader @@ -0,0 +1,111 @@ +Shader "Hidden/PostProcessing/MultiScaleVO" +{ + HLSLINCLUDE + + #pragma exclude_renderers gles gles3 d3d11_9x + #pragma target 4.5 + + #include "../StdLib.hlsl" + #include "Fog.hlsl" + + TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); + TEXTURE2D_SAMPLER2D(_MSVOcclusionTexture, sampler_MSVOcclusionTexture); + float3 _AOColor; + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0 - Depth copy with procedural draw + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + float4 Frag(VaryingsDefault i) : SV_Target + { + return SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo); + } + + ENDHLSL + } + + // 1 - Composite to G-buffer with procedural draw + Pass + { + Blend Zero OneMinusSrcColor, Zero OneMinusSrcAlpha + + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + struct Output + { + float4 gbuffer0 : SV_Target0; + float4 gbuffer3 : SV_Target1; + }; + + Output Frag(VaryingsDefault i) + { + float ao = 1.0 - SAMPLE_TEXTURE2D(_MSVOcclusionTexture, sampler_MSVOcclusionTexture, i.texcoordStereo).r; + Output o; + o.gbuffer0 = float4(0.0, 0.0, 0.0, ao); + o.gbuffer3 = float4(ao * _AOColor, 0.0); + return o; + } + + ENDHLSL + } + + // 2 - Composite to the frame buffer + Pass + { + Blend Zero OneMinusSrcColor, Zero OneMinusSrcAlpha + + HLSLPROGRAM + + #pragma multi_compile _ APPLY_FORWARD_FOG + #pragma multi_compile _ FOG_LINEAR FOG_EXP FOG_EXP2 + #pragma vertex VertDefault + #pragma fragment Frag + + float4 Frag(VaryingsDefault i) : SV_Target + { + half ao = 1.0 - SAMPLE_TEXTURE2D(_MSVOcclusionTexture, sampler_MSVOcclusionTexture, i.texcoordStereo).r; + + // Apply fog when enabled (forward-only) + #if (APPLY_FORWARD_FOG) + float d = Linear01Depth(SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo)); + d = ComputeFogDistance(d); + ao *= ComputeFog(d); + #endif + + return float4(ao * _AOColor, 0.0); + } + + ENDHLSL + } + + // 3 - Debug overlay + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + float4 Frag(VaryingsDefault i) : SV_Target + { + half ao = SAMPLE_TEXTURE2D(_MSVOcclusionTexture, sampler_MSVOcclusionTexture, i.texcoordStereo).r; + return float4(ao.rrr, 1.0); + } + + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVO.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVO.shader.meta new file mode 100644 index 0000000..714cbac --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVO.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 67f9497810829eb4791ec19e95781e51 +timeCreated: 1503305114 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVODownsample1.compute b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVODownsample1.compute new file mode 100644 index 0000000..b22fe9f --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVODownsample1.compute @@ -0,0 +1,136 @@ +// +// This is a modified version of the SSAO renderer from Microsoft's MiniEngine +// library. The copyright notice from the original version is included below. +// +// The original source code of MiniEngine is available on GitHub. +// https://github.com/Microsoft/DirectX-Graphics-Samples +// + +// +// Copyright (c) Microsoft. All rights reserved. +// This code is licensed under the MIT License (MIT). +// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF +// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY +// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR +// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. +// +// Developed by Minigraph +// +// Author: James Stanard +// + +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#pragma kernel MultiScaleVODownsample1 main=MultiScaleVODownsample1 +#pragma kernel MultiScaleVODownsample1_MSAA main=MultiScaleVODownsample1_MSAA MSAA + +#include "../StdLib.hlsl" + +#ifdef MSAA +// Output textures +RWTexture2D LinearZ; +RWTexture2D DS2x; +RWTexture2DArray DS2xAtlas; +RWTexture2D DS4x; +RWTexture2DArray DS4xAtlas; + +// Input textures +Texture2D Depth; + +// Shared memory +groupshared float2 g_CacheW[256]; +#else +// Output textures +RWTexture2D LinearZ; +RWTexture2D DS2x; +RWTexture2DArray DS2xAtlas; +RWTexture2D DS4x; +RWTexture2DArray DS4xAtlas; + +// Input textures +Texture2D Depth; + +// Shared memory +groupshared float g_CacheW[256]; +#endif + +CBUFFER_START(CB0) + float4 ZBufferParams; +CBUFFER_END + +#ifdef MSAA +float2 Linearize(uint2 st) +{ + float depthMin = Depth[st].y; + float depthMax = Depth[st].x; + + float2 depth = float2(depthMin, depthMax); + float2 dist = 1.0 / (ZBufferParams.x * depth + ZBufferParams.y); +#ifdef UNITY_REVERSED_Z + if (depth.x == 0) dist.x = 1e5; + if (depth.y == 0) dist.y = 1e5; +#else + if (depth.x == 1) dist.x = 1e5; + if (depth.y == 1) dist.y = 1e5; +#endif + LinearZ[st] = dist; + return dist; +} +#else +float Linearize(uint2 st) +{ + float depth = Depth[st]; + float dist = 1.0 / (ZBufferParams.x * depth + ZBufferParams.y); +#ifdef UNITY_REVERSED_Z + if (depth == 0) dist = 1e5; +#else + if (depth == 1) dist = 1e5; +#endif + LinearZ[st] = dist; + return dist; +} +#endif + + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(main) + +#else + +[numthreads(8, 8, 1)] +void main(uint3 Gid : SV_GroupID, uint GI : SV_GroupIndex, uint3 GTid : SV_GroupThreadID, uint3 DTid : SV_DispatchThreadID) +{ + uint2 startST = Gid.xy << 4 | GTid.xy; + uint destIdx = GTid.y << 4 | GTid.x; + g_CacheW[destIdx + 0 ] = Linearize(startST | uint2(0, 0)); + g_CacheW[destIdx + 8 ] = Linearize(startST | uint2(8, 0)); + g_CacheW[destIdx + 128] = Linearize(startST | uint2(0, 8)); + g_CacheW[destIdx + 136] = Linearize(startST | uint2(8, 8)); + + GroupMemoryBarrierWithGroupSync(); + + uint ldsIndex = (GTid.x << 1) | (GTid.y << 5); + + #ifdef MSAA + float2 w1 = g_CacheW[ldsIndex]; + #else + float w1 = g_CacheW[ldsIndex]; + #endif + uint2 st = DTid.xy; + uint slice = ((st.x & 3) | (st.y << 2)) & 15; + DS2x[st] = w1; + DS2xAtlas[uint3(st >> 2, slice)] = w1; + + if ((GI & 011) == 0) + { + st = DTid.xy >> 1; + slice = ((st.x & 3) | (st.y << 2)) & 15; + DS4x[st] = w1; + DS4xAtlas[uint3(st >> 2, slice)] = w1; + } + +} + +#endif diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVODownsample1.compute.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVODownsample1.compute.meta new file mode 100644 index 0000000..5f92087 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVODownsample1.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 4c63bc487e6c29a4a99f85a6c47b292b +timeCreated: 1503305129 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 131076 + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVODownsample2.compute b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVODownsample2.compute new file mode 100644 index 0000000..1188c2e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVODownsample2.compute @@ -0,0 +1,76 @@ +// +// This is a modified version of the SSAO renderer from Microsoft's MiniEngine +// library. The copyright notice from the original version is included below. +// +// The original source code of MiniEngine is available on GitHub. +// https://github.com/Microsoft/DirectX-Graphics-Samples +// + +// +// Copyright (c) Microsoft. All rights reserved. +// This code is licensed under the MIT License (MIT). +// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF +// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY +// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR +// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. +// +// Developed by Minigraph +// +// Author: James Stanard +// + +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#pragma kernel MultiScaleVODownsample2 main=MultiScaleVODownsample2 +#pragma kernel MultiScaleVODownsample2_MSAA main=MultiScaleVODownsample2_MSAA MSAA + +#include "../StdLib.hlsl" + +#ifdef MSAA +Texture2D DS4x; +RWTexture2D DS8x; +RWTexture2DArray DS8xAtlas; +RWTexture2D DS16x; +RWTexture2DArray DS16xAtlas; +#else +Texture2D DS4x; +RWTexture2D DS8x; +RWTexture2DArray DS8xAtlas; +RWTexture2D DS16x; +RWTexture2DArray DS16xAtlas; +#endif + + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(main) + +#else + +[numthreads(8, 8, 1)] +void main(uint3 Gid : SV_GroupID, uint GI : SV_GroupIndex, uint3 GTid : SV_GroupThreadID, uint3 DTid : SV_DispatchThreadID) +{ + #ifdef MSAA + float2 m1 = DS4x[DTid.xy << 1]; + #else + float m1 = DS4x[DTid.xy << 1]; + #endif + + uint2 st = DTid.xy; + uint2 stAtlas = st >> 2; + uint stSlice = ((st.x & 3) | (st.y << 2)) & 15; + DS8x[st] = m1; + DS8xAtlas[uint3(stAtlas, stSlice)] = m1; + + if ((GI & 011) == 0) + { + uint2 st = DTid.xy >> 1; + uint2 stAtlas = st >> 2; + uint stSlice = ((st.x & 3) | (st.y << 2)) & 15; + DS16x[st] = m1; + DS16xAtlas[uint3(stAtlas, stSlice)] = m1; + } +} + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVODownsample2.compute.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVODownsample2.compute.meta new file mode 100644 index 0000000..46306dc --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVODownsample2.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: e4d3e4779e48a374f91d48d4c0aedb7b +timeCreated: 1503305163 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 131076 + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVORender.compute b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVORender.compute new file mode 100644 index 0000000..b2c29b6 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVORender.compute @@ -0,0 +1,295 @@ +// +// This is a modified version of the SSAO renderer from Microsoft's MiniEngine +// library. The copyright notice from the original version is included below. +// +// The original source code of MiniEngine is available on GitHub. +// https://github.com/Microsoft/DirectX-Graphics-Samples +// + +// +// Copyright (c) Microsoft. All rights reserved. +// This code is licensed under the MIT License (MIT). +// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF +// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY +// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR +// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. +// +// Developed by Minigraph +// +// Author: James Stanard +// + +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#pragma kernel MultiScaleVORender MAIN=MultiScaleVORender +#pragma kernel MultiScaleVORender_interleaved MAIN=MultiScaleVORender_interleaved INTERLEAVE_RESULT +#pragma kernel MultiScaleVORender_MSAA MAIN=MultiScaleVORender_MSAA MSAA +#pragma kernel MultiScaleVORender_MSAA_interleaved MAIN=MultiScaleVORender_MSAA_interleaved MSAA INTERLEAVE_RESULT + +#include "../StdLib.hlsl" + +#ifndef INTERLEAVE_RESULT +#define WIDE_SAMPLING 1 +#endif + +#if WIDE_SAMPLING +// 32x32 cache size: the 16x16 in the center forms the area of focus with the 8-pixel perimeter used for wide gathering. +#define TILE_DIM 32 +#define THREAD_COUNT_X 16 +#define THREAD_COUNT_Y 16 +#else +// 16x16 cache size: the 8x8 in the center forms the area of focus with the 4-pixel perimeter used for gathering. +#define TILE_DIM 16 +#define THREAD_COUNT_X 8 +#define THREAD_COUNT_Y 8 +#endif + + +#ifdef MSAA + // Input Textures + #ifdef INTERLEAVE_RESULT + Texture2DArray DepthTex; + #else + Texture2D DepthTex; + #endif + + // Output texture + RWTexture2D Occlusion; + + // Shared memory + groupshared float2 DepthSamples[TILE_DIM * TILE_DIM]; +#else + // Input Textures + #ifdef INTERLEAVE_RESULT + Texture2DArray DepthTex; + #else + Texture2D DepthTex; + #endif + + // Output texture + RWTexture2D Occlusion; + + // Shared memory + groupshared float DepthSamples[TILE_DIM * TILE_DIM]; +#endif + +SamplerState samplerDepthTex; + +CBUFFER_START(CB1) + float4 gInvThicknessTable[3]; + float4 gSampleWeightTable[3]; + float4 gInvSliceDimension; + float2 AdditionalParams; +CBUFFER_END + +#define gRejectFadeoff AdditionalParams.x +#define gIntensity AdditionalParams.y + +#ifdef MSAA +float2 TestSamplePair(float frontDepth, float2 invRange, uint base, int offset) +{ + // "Disocclusion" measures the penetration distance of the depth sample within the sphere. + // Disocclusion < 0 (full occlusion) -> the sample fell in front of the sphere + // Disocclusion > 1 (no occlusion) -> the sample fell behind the sphere + float2 disocclusion1 = DepthSamples[base + offset] * invRange - frontDepth; + float2 disocclusion2 = DepthSamples[base - offset] * invRange - frontDepth; + + float2 pseudoDisocclusion1 = saturate(gRejectFadeoff * disocclusion1); + float2 pseudoDisocclusion2 = saturate(gRejectFadeoff * disocclusion2); + + return saturate( + clamp(disocclusion1, pseudoDisocclusion2, 1.0) + + clamp(disocclusion2, pseudoDisocclusion1, 1.0) - + pseudoDisocclusion1 * pseudoDisocclusion2); +} + +float2 TestSamples(uint centerIdx, uint x, uint y, float2 invDepth, float invThickness) +{ +#if WIDE_SAMPLING + x <<= 1; + y <<= 1; +#endif + + float2 invRange = invThickness * invDepth; + float frontDepth = invThickness - 0.5; + + if (y == 0) + { + // Axial + return 0.5 * ( + TestSamplePair(frontDepth, invRange, centerIdx, x) + + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM) + ); + } + else if (x == y) + { + // Diagonal + return 0.5 * ( + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM - x) + + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM + x) + ); + } + else + { + // L-Shaped + return 0.25 * ( + TestSamplePair(frontDepth, invRange, centerIdx, y * TILE_DIM + x) + + TestSamplePair(frontDepth, invRange, centerIdx, y * TILE_DIM - x) + + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM + y) + + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM - y) + ); + } +} +#else +float TestSamplePair(float frontDepth, float invRange, uint base, int offset) +{ + // "Disocclusion" measures the penetration distance of the depth sample within the sphere. + // Disocclusion < 0 (full occlusion) -> the sample fell in front of the sphere + // Disocclusion > 1 (no occlusion) -> the sample fell behind the sphere + float disocclusion1 = DepthSamples[base + offset] * invRange - frontDepth; + float disocclusion2 = DepthSamples[base - offset] * invRange - frontDepth; + + float pseudoDisocclusion1 = saturate(gRejectFadeoff * disocclusion1); + float pseudoDisocclusion2 = saturate(gRejectFadeoff * disocclusion2); + + return saturate( + clamp(disocclusion1, pseudoDisocclusion2, 1.0) + + clamp(disocclusion2, pseudoDisocclusion1, 1.0) - + pseudoDisocclusion1 * pseudoDisocclusion2); +} + +float TestSamples(uint centerIdx, uint x, uint y, float invDepth, float invThickness) +{ +#if WIDE_SAMPLING + x <<= 1; + y <<= 1; +#endif + + float invRange = invThickness * invDepth; + float frontDepth = invThickness - 0.5; + + if (y == 0) + { + // Axial + return 0.5 * ( + TestSamplePair(frontDepth, invRange, centerIdx, x) + + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM) + ); + } + else if (x == y) + { + // Diagonal + return 0.5 * ( + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM - x) + + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM + x) + ); + } + else + { + // L-Shaped + return 0.25 * ( + TestSamplePair(frontDepth, invRange, centerIdx, y * TILE_DIM + x) + + TestSamplePair(frontDepth, invRange, centerIdx, y * TILE_DIM - x) + + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM + y) + + TestSamplePair(frontDepth, invRange, centerIdx, x * TILE_DIM - y) + ); + } +} +#endif + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(MAIN) + +#else + +[numthreads(THREAD_COUNT_X, THREAD_COUNT_Y, 1)] +void MAIN(uint3 Gid : SV_GroupID, uint GI : SV_GroupIndex, uint3 GTid : SV_GroupThreadID, uint3 DTid : SV_DispatchThreadID) +{ +#if WIDE_SAMPLING + float2 QuadCenterUV = int2(DTid.xy + GTid.xy - 7) * gInvSliceDimension.xy; +#else + float2 QuadCenterUV = int2(DTid.xy + GTid.xy - 3) * gInvSliceDimension.xy; +#endif + +#ifdef MSAA + // Fetch four depths and store them in LDS +#ifdef INTERLEAVE_RESULT + float4 depths0 = DepthTex.GatherRed(samplerDepthTex, float3(QuadCenterUV, DTid.z)); + float4 depths1 = DepthTex.GatherGreen(samplerDepthTex, float3(QuadCenterUV, DTid.z)); +#else + float4 depths0 = DepthTex.GatherRed(samplerDepthTex, QuadCenterUV); + float4 depths1 = DepthTex.GatherGreen(samplerDepthTex, QuadCenterUV); +#endif + int destIdx = GTid.x * 2 + GTid.y * 2 * TILE_DIM; + DepthSamples[destIdx] = float2(depths0.w, depths1.w); + DepthSamples[destIdx + 1] = float2(depths0.z, depths1.z); + DepthSamples[destIdx + TILE_DIM] = float2(depths0.x, depths1.x); + DepthSamples[destIdx + TILE_DIM + 1] = float2(depths0.y, depths1.y); +#else +#ifdef INTERLEAVE_RESULT + float4 depths = DepthTex.Gather(samplerDepthTex, float3(QuadCenterUV, DTid.z)); +#else + float4 depths = DepthTex.Gather(samplerDepthTex, QuadCenterUV); +#endif + int destIdx = GTid.x * 2 + GTid.y * 2 * TILE_DIM; + DepthSamples[destIdx] = depths.w; + DepthSamples[destIdx + 1] = depths.z; + DepthSamples[destIdx + TILE_DIM] = depths.x; + DepthSamples[destIdx + TILE_DIM + 1] = depths.y; +#endif + + GroupMemoryBarrierWithGroupSync(); + +#if WIDE_SAMPLING + uint thisIdx = GTid.x + GTid.y * TILE_DIM + 8 * TILE_DIM + 8; +#else + uint thisIdx = GTid.x + GTid.y * TILE_DIM + 4 * TILE_DIM + 4; +#endif + +#ifdef MSAA + const float2 invThisDepth = float2(1.0 / DepthSamples[thisIdx].x, 1.0 / DepthSamples[thisIdx].y); + float2 ao = 0.0; +#else + const float invThisDepth = 1.0 / DepthSamples[thisIdx]; + float ao = 0.0; +#endif + + +//#define SAMPLE_EXHAUSTIVELY + +#ifdef SAMPLE_EXHAUSTIVELY + // 68 samples: sample all cells in *within* a circular radius of 5 + ao += gSampleWeightTable[0].x * TestSamples(thisIdx, 1, 0, invThisDepth, gInvThicknessTable[0].x); + ao += gSampleWeightTable[0].y * TestSamples(thisIdx, 2, 0, invThisDepth, gInvThicknessTable[0].y); + ao += gSampleWeightTable[0].z * TestSamples(thisIdx, 3, 0, invThisDepth, gInvThicknessTable[0].z); + ao += gSampleWeightTable[0].w * TestSamples(thisIdx, 4, 0, invThisDepth, gInvThicknessTable[0].w); + ao += gSampleWeightTable[1].x * TestSamples(thisIdx, 1, 1, invThisDepth, gInvThicknessTable[1].x); + ao += gSampleWeightTable[2].x * TestSamples(thisIdx, 2, 2, invThisDepth, gInvThicknessTable[2].x); + ao += gSampleWeightTable[2].w * TestSamples(thisIdx, 3, 3, invThisDepth, gInvThicknessTable[2].w); + ao += gSampleWeightTable[1].y * TestSamples(thisIdx, 1, 2, invThisDepth, gInvThicknessTable[1].y); + ao += gSampleWeightTable[1].z * TestSamples(thisIdx, 1, 3, invThisDepth, gInvThicknessTable[1].z); + ao += gSampleWeightTable[1].w * TestSamples(thisIdx, 1, 4, invThisDepth, gInvThicknessTable[1].w); + ao += gSampleWeightTable[2].y * TestSamples(thisIdx, 2, 3, invThisDepth, gInvThicknessTable[2].y); + ao += gSampleWeightTable[2].z * TestSamples(thisIdx, 2, 4, invThisDepth, gInvThicknessTable[2].z); +#else // SAMPLE_CHECKER + // 36 samples: sample every-other cell in a checker board pattern + ao += gSampleWeightTable[0].y * TestSamples(thisIdx, 2, 0, invThisDepth, gInvThicknessTable[0].y); + ao += gSampleWeightTable[0].w * TestSamples(thisIdx, 4, 0, invThisDepth, gInvThicknessTable[0].w); + ao += gSampleWeightTable[1].x * TestSamples(thisIdx, 1, 1, invThisDepth, gInvThicknessTable[1].x); + ao += gSampleWeightTable[2].x * TestSamples(thisIdx, 2, 2, invThisDepth, gInvThicknessTable[2].x); + ao += gSampleWeightTable[2].w * TestSamples(thisIdx, 3, 3, invThisDepth, gInvThicknessTable[2].w); + ao += gSampleWeightTable[1].z * TestSamples(thisIdx, 1, 3, invThisDepth, gInvThicknessTable[1].z); + ao += gSampleWeightTable[2].z * TestSamples(thisIdx, 2, 4, invThisDepth, gInvThicknessTable[2].z); +#endif + +#ifdef INTERLEAVE_RESULT + uint2 OutPixel = DTid.xy << 2 | uint2(DTid.z & 3, DTid.z >> 2); +#else + uint2 OutPixel = DTid.xy; +#endif + Occlusion[OutPixel] = lerp(1, ao, gIntensity); +} + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVORender.compute.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVORender.compute.meta new file mode 100644 index 0000000..133cf43 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVORender.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 34a460e8a2e66c243a9c12024e5a798d +timeCreated: 1503305142 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 131076 + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVOUpsample.compute b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVOUpsample.compute new file mode 100644 index 0000000..8b5b858 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVOUpsample.compute @@ -0,0 +1,432 @@ +// +// This is a modified version of the SSAO renderer from Microsoft's MiniEngine +// library. The copyright notice from the original version is included below. +// +// The original source code of MiniEngine is available on GitHub. +// https://github.com/Microsoft/DirectX-Graphics-Samples +// + +// +// Copyright (c) Microsoft. All rights reserved. +// This code is licensed under the MIT License (MIT). +// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF +// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY +// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR +// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. +// +// Developed by Minigraph +// +// Author: James Stanard +// + +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#pragma kernel MultiScaleVOUpSample MAIN=MultiScaleVOUpSample +#pragma kernel MultiScaleVOUpSample_invert MAIN=MultiScaleVOUpSample_invert INVERT +#pragma kernel MultiScaleVOUpSample_premin MAIN=MultiScaleVOUpSample_premin COMBINE_LOWER_RESOLUTIONS +#pragma kernel MultiScaleVOUpSample_blendout MAIN=MultiScaleVOUpSample_blendout BLEND_WITH_HIGHER_RESOLUTION +#pragma kernel MultiScaleVOUpSample_premin_blendout MAIN=MultiScaleVOUpSample_premin_blendout COMBINE_LOWER_RESOLUTIONS BLEND_WITH_HIGHER_RESOLUTION + +#pragma kernel MultiScaleVOUpSample_MSAA MAIN=MultiScaleVOUpSample_MSAA +#pragma kernel MultiScaleVOUpSample_MSAA_invert MAIN=MultiScaleVOUpSample_MSAA_invert MSAA INVERT +#pragma kernel MultiScaleVOUpSample_MSAA_premin MAIN=MultiScaleVOUpSample_MSAA_premin MSAA COMBINE_LOWER_RESOLUTIONS +#pragma kernel MultiScaleVOUpSample_MSAA_blendout MAIN=MultiScaleVOUpSample_MSAA_blendout MSAA BLEND_WITH_HIGHER_RESOLUTION +#pragma kernel MultiScaleVOUpSample_MSAA_premin_blendout MAIN=MultiScaleVOUpSample_MSAA_premin_blendout MSAA COMBINE_LOWER_RESOLUTIONS BLEND_WITH_HIGHER_RESOLUTION + +#include "../StdLib.hlsl" + + +#ifdef MSAA + Texture2D LoResDB; SamplerState samplerLoResDB; + Texture2D HiResDB; SamplerState samplerHiResDB; + Texture2D LoResAO1; SamplerState samplerLoResAO1; + #ifdef COMBINE_LOWER_RESOLUTIONS + Texture2D LoResAO2; SamplerState samplerLoResAO2; + #endif + #ifdef BLEND_WITH_HIGHER_RESOLUTION + Texture2D HiResAO; SamplerState samplerHiResAO; + #endif + // Output textures + RWTexture2D AoResult; + + // Shared memory + groupshared float2 DepthCache[256]; + groupshared float2 AOCache1[256]; + groupshared float2 AOCache2[256]; +#else + // Input textures + Texture2D LoResDB; SamplerState samplerLoResDB; + Texture2D HiResDB; SamplerState samplerHiResDB; + Texture2D LoResAO1; SamplerState samplerLoResAO1; + #ifdef COMBINE_LOWER_RESOLUTIONS + Texture2D LoResAO2; SamplerState samplerLoResAO2; + #endif + #ifdef BLEND_WITH_HIGHER_RESOLUTION + Texture2D HiResAO; SamplerState samplerHiResAO; + #endif + + // Ouput textures + RWTexture2D AoResult; + + // Shared memory + groupshared float DepthCache[256]; + groupshared float AOCache1[256]; + groupshared float AOCache2[256]; + +#endif + +CBUFFER_START(CB1) + float4 InvLowResolution; + float4 InvHighResolution; + float4 AdditionalParams; +CBUFFER_END + +#define NoiseFilterStrength AdditionalParams.x +#define StepSize AdditionalParams.y +#define kBlurTolerance AdditionalParams.z +#define kUpsampleTolerance AdditionalParams.w + +void PrefetchData(uint index, float2 uv) +{ +#ifdef MSAA + float4 AO1_0 = LoResAO1.GatherRed(samplerLoResAO1, uv); + float4 AO1_1 = LoResAO1.GatherGreen(samplerLoResAO1, uv); + +#ifdef COMBINE_LOWER_RESOLUTIONS + AO1_0 = min(AO1_0, LoResAO2.GatherRed(samplerLoResAO2, uv)); + AO1_1 = min(AO1_1, LoResAO2.GatherGreen(samplerLoResAO2, uv)); +#endif + + AOCache1[index] = float2(AO1_0.w, AO1_1.w); + AOCache1[index + 1] = float2(AO1_0.z, AO1_1.z); + AOCache1[index + 16] = float2(AO1_0.x, AO1_1.x); + AOCache1[index + 17] = float2(AO1_0.y, AO1_1.y); + + float4 ID_0 = 1.0 / LoResDB.GatherRed(samplerLoResDB, uv); + float4 ID_1 = 1.0 / LoResDB.GatherGreen(samplerLoResDB, uv); + DepthCache[index] = float2(ID_0.w, ID_1.w); + DepthCache[index + 1] = float2(ID_0.z, ID_1.z); + DepthCache[index + 16] = float2(ID_0.x, ID_1.x); + DepthCache[index + 17] = float2(ID_0.y, ID_1.y); +#else + float4 AO1 = LoResAO1.Gather(samplerLoResAO1, uv); + +#ifdef COMBINE_LOWER_RESOLUTIONS + AO1 = min(AO1, LoResAO2.Gather(samplerLoResAO2, uv)); +#endif + + AOCache1[index] = AO1.w; + AOCache1[index + 1] = AO1.z; + AOCache1[index + 16] = AO1.x; + AOCache1[index + 17] = AO1.y; + + float4 ID = 1.0 / LoResDB.Gather(samplerLoResDB, uv); + DepthCache[index] = ID.w; + DepthCache[index + 1] = ID.z; + DepthCache[index + 16] = ID.x; + DepthCache[index + 17] = ID.y; +#endif +} + +float SmartBlur(float a, float b, float c, float d, float e, bool Left, bool Middle, bool Right) +{ + b = Left | Middle ? b : c; + a = Left ? a : b; + d = Right | Middle ? d : c; + e = Right ? e : d; + return ((a + e) / 2.0 + b + c + d) / 4.0; +} + +bool CompareDeltas(float d1, float d2, float l1, float l2) +{ + float temp = d1 * d2 + StepSize; + return temp * temp > l1 * l2 * kBlurTolerance; +} + +void BlurHorizontally(uint leftMostIndex) +{ +#ifdef MSAA + float2 a0 = AOCache1[leftMostIndex]; + float2 a1 = AOCache1[leftMostIndex + 1]; + float2 a2 = AOCache1[leftMostIndex + 2]; + float2 a3 = AOCache1[leftMostIndex + 3]; + float2 a4 = AOCache1[leftMostIndex + 4]; + float2 a5 = AOCache1[leftMostIndex + 5]; + float2 a6 = AOCache1[leftMostIndex + 6]; + + float2 d0 = DepthCache[leftMostIndex]; + float2 d1 = DepthCache[leftMostIndex + 1]; + float2 d2 = DepthCache[leftMostIndex + 2]; + float2 d3 = DepthCache[leftMostIndex + 3]; + float2 d4 = DepthCache[leftMostIndex + 4]; + float2 d5 = DepthCache[leftMostIndex + 5]; + float2 d6 = DepthCache[leftMostIndex + 6]; + + float2 d01 = d1 - d0; + float2 d12 = d2 - d1; + float2 d23 = d3 - d2; + float2 d34 = d4 - d3; + float2 d45 = d5 - d4; + float2 d56 = d6 - d5; + + float2 l01 = d01 * d01 + StepSize; + float2 l12 = d12 * d12 + StepSize; + float2 l23 = d23 * d23 + StepSize; + float2 l34 = d34 * d34 + StepSize; + float2 l45 = d45 * d45 + StepSize; + float2 l56 = d56 * d56 + StepSize; + + bool c02_0 = CompareDeltas(d01.x, d12.x, l01.x, l12.x); + bool c13_0 = CompareDeltas(d12.x, d23.x, l12.x, l23.x); + bool c24_0 = CompareDeltas(d23.x, d34.x, l23.x, l34.x); + bool c35_0 = CompareDeltas(d34.x, d45.x, l34.x, l45.x); + bool c46_0 = CompareDeltas(d45.x, d56.x, l45.x, l56.x); + + bool c02_1 = CompareDeltas(d01.y, d12.y, l01.y, l12.y); + bool c13_1 = CompareDeltas(d12.y, d23.y, l12.y, l23.y); + bool c24_1 = CompareDeltas(d23.y, d34.y, l23.y, l34.y); + bool c35_1 = CompareDeltas(d34.y, d45.y, l34.y, l45.y); + bool c46_1 = CompareDeltas(d45.y, d56.y, l45.y, l56.y); + + AOCache2[leftMostIndex] = float2(SmartBlur(a0.x.x, a1.x, a2.x, a3.x, a4.x, c02_0, c13_0, c24_0), SmartBlur(a0.y, a1.y, a2.y, a3.y, a4.y, c02_1, c13_1, c24_1)); + AOCache2[leftMostIndex + 1] = float2(SmartBlur(a1.x, a2.x, a3.x, a4.x, a5.x, c13_0, c24_0, c35_0), SmartBlur(a1.y, a2.y, a3.y, a4.y, a5.y, c13_1, c24_1, c35_1)); + AOCache2[leftMostIndex + 2] = float2(SmartBlur(a2.x, a3.x, a4.x, a5.x, a6.x, c24_0, c35_0, c46_0), SmartBlur(a2.y, a3.y, a4.y, a5.y, a6.y, c24_1, c35_1, c46_1)); +#else + float a0 = AOCache1[leftMostIndex]; + float a1 = AOCache1[leftMostIndex + 1]; + float a2 = AOCache1[leftMostIndex + 2]; + float a3 = AOCache1[leftMostIndex + 3]; + float a4 = AOCache1[leftMostIndex + 4]; + float a5 = AOCache1[leftMostIndex + 5]; + float a6 = AOCache1[leftMostIndex + 6]; + + float d0 = DepthCache[leftMostIndex]; + float d1 = DepthCache[leftMostIndex + 1]; + float d2 = DepthCache[leftMostIndex + 2]; + float d3 = DepthCache[leftMostIndex + 3]; + float d4 = DepthCache[leftMostIndex + 4]; + float d5 = DepthCache[leftMostIndex + 5]; + float d6 = DepthCache[leftMostIndex + 6]; + + float d01 = d1 - d0; + float d12 = d2 - d1; + float d23 = d3 - d2; + float d34 = d4 - d3; + float d45 = d5 - d4; + float d56 = d6 - d5; + + float l01 = d01 * d01 + StepSize; + float l12 = d12 * d12 + StepSize; + float l23 = d23 * d23 + StepSize; + float l34 = d34 * d34 + StepSize; + float l45 = d45 * d45 + StepSize; + float l56 = d56 * d56 + StepSize; + + bool c02 = CompareDeltas(d01, d12, l01, l12); + bool c13 = CompareDeltas(d12, d23, l12, l23); + bool c24 = CompareDeltas(d23, d34, l23, l34); + bool c35 = CompareDeltas(d34, d45, l34, l45); + bool c46 = CompareDeltas(d45, d56, l45, l56); + + AOCache2[leftMostIndex] = SmartBlur(a0, a1, a2, a3, a4, c02, c13, c24); + AOCache2[leftMostIndex + 1] = SmartBlur(a1, a2, a3, a4, a5, c13, c24, c35); + AOCache2[leftMostIndex + 2] = SmartBlur(a2, a3, a4, a5, a6, c24, c35, c46); +#endif +} + +void BlurVertically(uint topMostIndex) +{ +#ifdef MSAA + float2 a0 = AOCache2[topMostIndex]; + float2 a1 = AOCache2[topMostIndex + 16]; + float2 a2 = AOCache2[topMostIndex + 32]; + float2 a3 = AOCache2[topMostIndex + 48]; + float2 a4 = AOCache2[topMostIndex + 64]; + float2 a5 = AOCache2[topMostIndex + 80]; + + float2 d0 = DepthCache[topMostIndex + 2]; + float2 d1 = DepthCache[topMostIndex + 18]; + float2 d2 = DepthCache[topMostIndex + 34]; + float2 d3 = DepthCache[topMostIndex + 50]; + float2 d4 = DepthCache[topMostIndex + 66]; + float2 d5 = DepthCache[topMostIndex + 82]; + + float2 d01 = d1 - d0; + float2 d12 = d2 - d1; + float2 d23 = d3 - d2; + float2 d34 = d4 - d3; + float2 d45 = d5 - d4; + + float2 l01 = d01 * d01 + StepSize; + float2 l12 = d12 * d12 + StepSize; + float2 l23 = d23 * d23 + StepSize; + float2 l34 = d34 * d34 + StepSize; + float2 l45 = d45 * d45 + StepSize; + + bool c02_0 = CompareDeltas(d01.x, d12.x, l01.x, l12.x); + bool c13_0 = CompareDeltas(d12.x, d23.x, l12.x, l23.x); + bool c24_0 = CompareDeltas(d23.x, d34.x, l23.x, l34.x); + bool c35_0 = CompareDeltas(d34.x, d45.x, l34.x, l45.x); + + bool c02_1 = CompareDeltas(d01.y, d12.y, l01.y, l12.y); + bool c13_1 = CompareDeltas(d12.y, d23.y, l12.y, l23.y); + bool c24_1 = CompareDeltas(d23.y, d34.y, l23.y, l34.y); + bool c35_1 = CompareDeltas(d34.y, d45.y, l34.y, l45.y); + + float2 aoResult1 = float2(SmartBlur(a0.x, a1.x, a2.x, a3.x, a4.x, c02_0, c13_0, c24_0), SmartBlur(a0.y, a1.y, a2.y, a3.y, a4.y, c02_1, c13_1, c24_1)); + float2 aoResult2 = float2(SmartBlur(a1.x, a2.x, a3.x, a4.x, a5.x, c13_0, c24_0, c35_0), SmartBlur(a1.y, a2.y, a3.y, a4.y, a5.y, c13_1, c24_1, c35_1)); + + AOCache1[topMostIndex] = aoResult1; + AOCache1[topMostIndex + 16] = aoResult2; +#else + float a0 = AOCache2[topMostIndex]; + float a1 = AOCache2[topMostIndex + 16]; + float a2 = AOCache2[topMostIndex + 32]; + float a3 = AOCache2[topMostIndex + 48]; + float a4 = AOCache2[topMostIndex + 64]; + float a5 = AOCache2[topMostIndex + 80]; + + float d0 = DepthCache[topMostIndex + 2]; + float d1 = DepthCache[topMostIndex + 18]; + float d2 = DepthCache[topMostIndex + 34]; + float d3 = DepthCache[topMostIndex + 50]; + float d4 = DepthCache[topMostIndex + 66]; + float d5 = DepthCache[topMostIndex + 82]; + + float d01 = d1 - d0; + float d12 = d2 - d1; + float d23 = d3 - d2; + float d34 = d4 - d3; + float d45 = d5 - d4; + + float l01 = d01 * d01 + StepSize; + float l12 = d12 * d12 + StepSize; + float l23 = d23 * d23 + StepSize; + float l34 = d34 * d34 + StepSize; + float l45 = d45 * d45 + StepSize; + + bool c02 = CompareDeltas(d01, d12, l01, l12); + bool c13 = CompareDeltas(d12, d23, l12, l23); + bool c24 = CompareDeltas(d23, d34, l23, l34); + bool c35 = CompareDeltas(d34, d45, l34, l45); + + float aoResult1 = SmartBlur(a0, a1, a2, a3, a4, c02, c13, c24); + float aoResult2 = SmartBlur(a1, a2, a3, a4, a5, c13, c24, c35); + + AOCache1[topMostIndex] = aoResult1; + AOCache1[topMostIndex + 16] = aoResult2; +#endif +} + +// We essentially want 5 weights: 4 for each low-res pixel and 1 to blend in when none of the 4 really +// match. The filter strength is 1 / DeltaZTolerance. So a tolerance of 0.01 would yield a strength of 100. +// Note that a perfect match of low to high depths would yield a weight of 10^6, completely superceding any +// noise filtering. The noise filter is intended to soften the effects of shimmering when the high-res depth +// buffer has a lot of small holes in it causing the low-res depth buffer to inaccurately represent it. +float BilateralUpsample(float HiDepth, float HiAO, float4 LowDepths, float4 LowAO) +{ + float4 weights = float4(9, 3, 1, 3) / (abs(HiDepth - LowDepths) + kUpsampleTolerance); + float TotalWeight = dot(weights, 1) + NoiseFilterStrength; + float WeightedSum = dot(LowAO, weights) + NoiseFilterStrength;// * HiAO; + return HiAO * WeightedSum / TotalWeight; +} + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(MAIN) + +#else + +[numthreads(8, 8, 1)] +void MAIN(uint3 Gid : SV_GroupID, uint GI : SV_GroupIndex, uint3 GTid : SV_GroupThreadID, uint3 DTid : SV_DispatchThreadID) +{ + // + // Load 4 pixels per thread into LDS to fill the 16x16 LDS cache with depth and AO + // + PrefetchData(GTid.x << 1 | GTid.y << 5, int2(DTid.xy + GTid.xy - 2) * InvLowResolution.xy); + GroupMemoryBarrierWithGroupSync(); + + // Goal: End up with a 9x9 patch that is blurred so we can upsample. Blur radius is 2 pixels, so start with 13x13 area. + + // + // Horizontally blur the pixels. 13x13 -> 9x13 + // + if (GI < 39) + BlurHorizontally((GI / 3) * 16 + (GI % 3) * 3); + GroupMemoryBarrierWithGroupSync(); + + // + // Vertically blur the pixels. 9x13 -> 9x9 + // + if (GI < 45) + BlurVertically((GI / 9) * 32 + GI % 9); + GroupMemoryBarrierWithGroupSync(); + + // + // Bilateral upsample + // + uint Idx0 = GTid.x + GTid.y * 16; + #ifdef MSAA + float4 LoSSAOs0 = float4(AOCache1[Idx0 + 16].x, AOCache1[Idx0 + 17].x, AOCache1[Idx0 + 1].x, AOCache1[Idx0].x); + float4 LoSSAOs1 = float4(AOCache1[Idx0 + 16].y, AOCache1[Idx0 + 17].y, AOCache1[Idx0 + 1].y, AOCache1[Idx0].y); + #else + float4 LoSSAOs = float4(AOCache1[Idx0 + 16], AOCache1[Idx0 + 17], AOCache1[Idx0 + 1], AOCache1[Idx0]); + #endif + + // We work on a quad of pixels at once because then we can gather 4 each of high and low-res depth values + float2 UV0 = DTid.xy * InvLowResolution.xy; + float2 UV1 = DTid.xy * 2 * InvHighResolution.xy; + +#ifdef MSAA + #ifdef BLEND_WITH_HIGHER_RESOLUTION + float4 HiSSAOs0 = HiResAO.GatherRed(samplerHiResAO, UV1); + float4 HiSSAOs1 = HiResAO.GatherGreen(samplerHiResAO, UV1); + #else + float4 HiSSAOs0 = 1.0; + float4 HiSSAOs1 = 1.0; + #endif + float4 LoDepths0 = LoResDB.GatherRed(samplerLoResDB, UV0); + float4 LoDepths1 = LoResDB.GatherGreen(samplerLoResDB, UV0); + float4 HiDepths0 = HiResDB.GatherRed(samplerHiResDB, UV1); + float4 HiDepths1 = HiResDB.GatherGreen(samplerHiResDB, UV1); + + int2 OutST = DTid.xy << 1; + + #ifdef INVERT + AoResult[OutST + int2(-1, 0)] = float2(1.0 - BilateralUpsample(HiDepths0.x, HiSSAOs0.x, LoDepths0.xyzw, LoSSAOs0.xyzw), 1.0 - BilateralUpsample(HiDepths1.x, HiSSAOs1.x, LoDepths1.xyzw, LoSSAOs1.xyzw)); + AoResult[OutST + int2( 0, 0)] = float2(1.0 - BilateralUpsample(HiDepths0.y, HiSSAOs0.y, LoDepths0.yzwx, LoSSAOs0.yzwx), 1.0 - BilateralUpsample(HiDepths1.y, HiSSAOs1.y, LoDepths1.yzwx, LoSSAOs1.yzwx)); + AoResult[OutST + int2( 0, -1)] = float2(1.0 - BilateralUpsample(HiDepths0.z, HiSSAOs0.z, LoDepths0.zwxy, LoSSAOs0.zwxy), 1.0 - BilateralUpsample(HiDepths1.z, HiSSAOs1.z, LoDepths1.zwxy, LoSSAOs1.zwxy)); + AoResult[OutST + int2(-1, -1)] = float2(1.0 - BilateralUpsample(HiDepths0.w, HiSSAOs0.w, LoDepths0.wxyz, LoSSAOs0.wxyz), 1.0 - BilateralUpsample(HiDepths1.w, HiSSAOs1.w, LoDepths1.wxyz, LoSSAOs1.wxyz)); + #else + AoResult[OutST + int2(-1, 0)] = float2(BilateralUpsample(HiDepths0.x, HiSSAOs0.x, LoDepths0.xyzw, LoSSAOs0.xyzw), BilateralUpsample(HiDepths1.x, HiSSAOs1.x, LoDepths1.xyzw, LoSSAOs1.xyzw)); + AoResult[OutST + int2( 0, 0)] = float2(BilateralUpsample(HiDepths0.y, HiSSAOs0.y, LoDepths0.yzwx, LoSSAOs0.yzwx), BilateralUpsample(HiDepths1.y, HiSSAOs1.y, LoDepths1.yzwx, LoSSAOs1.yzwx)); + AoResult[OutST + int2( 0, -1)] = float2(BilateralUpsample(HiDepths0.z, HiSSAOs0.z, LoDepths0.zwxy, LoSSAOs0.zwxy), BilateralUpsample(HiDepths1.z, HiSSAOs1.z, LoDepths1.zwxy, LoSSAOs1.zwxy)); + AoResult[OutST + int2(-1, -1)] = float2(BilateralUpsample(HiDepths0.w, HiSSAOs0.w, LoDepths0.wxyz, LoSSAOs0.wxyz),BilateralUpsample(HiDepths1.w, HiSSAOs1.w, LoDepths1.wxyz, LoSSAOs1.wxyz)); + #endif +#else + #ifdef BLEND_WITH_HIGHER_RESOLUTION + float4 HiSSAOs = HiResAO.Gather(samplerHiResAO, UV1); + #else + float4 HiSSAOs = 1.0; + #endif + float4 LoDepths = LoResDB.Gather(samplerLoResDB, UV0); + float4 HiDepths = HiResDB.Gather(samplerHiResDB, UV1); + + int2 OutST = DTid.xy << 1; + + #ifdef INVERT + AoResult[OutST + int2(-1, 0)] = 1.0 - BilateralUpsample(HiDepths.x, HiSSAOs.x, LoDepths.xyzw, LoSSAOs.xyzw); + AoResult[OutST + int2( 0, 0)] = 1.0 - BilateralUpsample(HiDepths.y, HiSSAOs.y, LoDepths.yzwx, LoSSAOs.yzwx); + AoResult[OutST + int2( 0, -1)] = 1.0 - BilateralUpsample(HiDepths.z, HiSSAOs.z, LoDepths.zwxy, LoSSAOs.zwxy); + AoResult[OutST + int2(-1, -1)] = 1.0 - BilateralUpsample(HiDepths.w, HiSSAOs.w, LoDepths.wxyz, LoSSAOs.wxyz); + #else + AoResult[OutST + int2(-1, 0)] = BilateralUpsample(HiDepths.x, HiSSAOs.x, LoDepths.xyzw, LoSSAOs.xyzw); + AoResult[OutST + int2( 0, 0)] = BilateralUpsample(HiDepths.y, HiSSAOs.y, LoDepths.yzwx, LoSSAOs.yzwx); + AoResult[OutST + int2( 0, -1)] = BilateralUpsample(HiDepths.z, HiSSAOs.z, LoDepths.zwxy, LoSSAOs.zwxy); + AoResult[OutST + int2(-1, -1)] = BilateralUpsample(HiDepths.w, HiSSAOs.w, LoDepths.wxyz, LoSSAOs.wxyz); + #endif +#endif +} + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVOUpsample.compute.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVOUpsample.compute.meta new file mode 100644 index 0000000..aba8d28 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/MultiScaleVOUpsample.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 600d6212b59bb40409d19d750b5fd1e9 +timeCreated: 1503305155 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 131076 + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScalableAO.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScalableAO.hlsl new file mode 100644 index 0000000..317c17e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScalableAO.hlsl @@ -0,0 +1,428 @@ +#ifndef UNITY_POSTFX_AMBIENT_OCCLUSION +#define UNITY_POSTFX_AMBIENT_OCCLUSION + +#include "../StdLib.hlsl" +#include "../Colors.hlsl" +#include "Fog.hlsl" + +// -------- +// Options for further customization +// -------- + +// By default, a 5-tap Gaussian with the linear sampling technique is used +// in the bilateral noise filter. It can be replaced with a 7-tap Gaussian +// with adaptive sampling by enabling the macro below. Although the +// differences are not noticeable in most cases, it may provide preferable +// results with some special usage (e.g. NPR without textureing). +// #define BLUR_HIGH_QUALITY + +// By default, a fixed sampling pattern is used in the AO estimator. Although +// this gives preferable results in most cases, a completely random sampling +// pattern could give aesthetically better results. Disable the macro below +// to use such a random pattern instead of the fixed one. +#define FIX_SAMPLING_PATTERN + +// The SampleNormal function normalizes samples from G-buffer because +// they're possibly unnormalized. We can eliminate this if it can be said +// that there is no wrong shader that outputs unnormalized normals. +// #define VALIDATE_NORMALS + +// The constant below determines the contrast of occlusion. This allows +// users to control over/under occlusion. At the moment, this is not exposed +// to the editor because it's rarely useful. +static const float kContrast = 0.6; + +// The constant below controls the geometry-awareness of the bilateral +// filter. The higher value, the more sensitive it is. +static const float kGeometryCoeff = 0.8; + +// The constants below are used in the AO estimator. Beta is mainly used +// for suppressing self-shadowing noise, and Epsilon is used to prevent +// calculation underflow. See the paper (Morgan 2011 http://goo.gl/2iz3P) +// for further details of these constants. +static const float kBeta = 0.002; + +// -------- + +// System built-in variables +TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); +TEXTURE2D_SAMPLER2D(_CameraGBufferTexture2, sampler_CameraGBufferTexture2); +TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); +TEXTURE2D_SAMPLER2D(_CameraDepthNormalsTexture, sampler_CameraDepthNormalsTexture); + +float4 _MainTex_TexelSize; + +float4 _AOParams; +float3 _AOColor; + +// Sample count +#if !defined(SHADER_API_GLES) + #define SAMPLE_COUNT _AOParams.w +#else +// GLES2: In many cases, dynamic looping is not supported. + #define SAMPLE_COUNT 3 +#endif + +// Source texture properties +TEXTURE2D_SAMPLER2D(_SAOcclusionTexture, sampler_SAOcclusionTexture); +float4 _SAOcclusionTexture_TexelSize; + +// Other parameters +#define INTENSITY _AOParams.x +#define RADIUS _AOParams.y +#define DOWNSAMPLE _AOParams.z + +// Accessors for packed AO/normal buffer +half4 PackAONormal(half ao, half3 n) +{ + return half4(ao, n * 0.5 + 0.5); +} + +half GetPackedAO(half4 p) +{ + return p.r; +} + +half3 GetPackedNormal(half4 p) +{ + return p.gba * 2.0 - 1.0; +} + +// Boundary check for depth sampler +// (returns a very large value if it lies out of bounds) +float CheckBounds(float2 uv, float d) +{ + float ob = any(uv < 0) + any(uv > 1); +#if defined(UNITY_REVERSED_Z) + ob += (d <= 0.00001); +#else + ob += (d >= 0.99999); +#endif + return ob * 1e8; +} + +// Depth/normal sampling functions +float SampleDepth(float2 uv) +{ + float d = Linear01Depth(SAMPLE_DEPTH_TEXTURE_LOD(_CameraDepthTexture, sampler_CameraDepthTexture, UnityStereoTransformScreenSpaceTex(uv), 0)); + return d * _ProjectionParams.z + CheckBounds(uv, d); +} + +float3 SampleNormal(float2 uv) +{ +#if defined(SOURCE_GBUFFER) + float3 norm = SAMPLE_TEXTURE2D(_CameraGBufferTexture2, sampler_CameraGBufferTexture2, uv).xyz; + norm = norm * 2 - any(norm); // gets (0,0,0) when norm == 0 + norm = mul((float3x3)unity_WorldToCamera, norm); +#if defined(VALIDATE_NORMALS) + norm = normalize(norm); +#endif + return norm; +#else + float4 cdn = SAMPLE_TEXTURE2D(_CameraDepthNormalsTexture, sampler_CameraDepthNormalsTexture, uv); + return DecodeViewNormalStereo(cdn) * float3(1.0, 1.0, -1.0); +#endif +} + +float SampleDepthNormal(float2 uv, out float3 normal) +{ + normal = SampleNormal(UnityStereoTransformScreenSpaceTex(uv)); + return SampleDepth(uv); +} + +// Normal vector comparer (for geometry-aware weighting) +half CompareNormal(half3 d1, half3 d2) +{ + return smoothstep(kGeometryCoeff, 1.0, dot(d1, d2)); +} + +// Trigonometric function utility +float2 CosSin(float theta) +{ + float sn, cs; + sincos(theta, sn, cs); + return float2(cs, sn); +} + +// Pseudo random number generator with 2D coordinates +float UVRandom(float u, float v) +{ + float f = dot(float2(12.9898, 78.233), float2(u, v)); + return frac(43758.5453 * sin(f)); +} + +// Check if the camera is perspective. +// (returns 1.0 when orthographic) +float CheckPerspective(float x) +{ + return lerp(x, 1.0, unity_OrthoParams.w); +} + +// Reconstruct view-space position from UV and depth. +// p11_22 = (unity_CameraProjection._11, unity_CameraProjection._22) +// p13_31 = (unity_CameraProjection._13, unity_CameraProjection._23) +float3 ReconstructViewPos(float2 uv, float depth, float2 p11_22, float2 p13_31) +{ + return float3((uv * 2.0 - 1.0 - p13_31) / p11_22 * CheckPerspective(depth), depth); +} + +// Sample point picker +float3 PickSamplePoint(float2 uv, float index) +{ + // Uniformaly distributed points on a unit sphere + // http://mathworld.wolfram.com/SpherePointPicking.html +#if defined(FIX_SAMPLING_PATTERN) + float gn = GradientNoise(uv * DOWNSAMPLE); + // FIXEME: This was added to avoid a NVIDIA driver issue. + // vvvvvvvvvvvv + float u = frac(UVRandom(0.0, index + uv.x * 1e-10) + gn) * 2.0 - 1.0; + float theta = (UVRandom(1.0, index + uv.x * 1e-10) + gn) * TWO_PI; +#else + float u = UVRandom(uv.x + _Time.x, uv.y + index) * 2.0 - 1.0; + float theta = UVRandom(-uv.x - _Time.x, uv.y + index) * TWO_PI; +#endif + float3 v = float3(CosSin(theta) * sqrt(1.0 - u * u), u); + // Make them distributed between [0, _Radius] + float l = sqrt((index + 1.0) / SAMPLE_COUNT) * RADIUS; + return v * l; +} + +// +// Distance-based AO estimator based on Morgan 2011 +// "Alchemy screen-space ambient obscurance algorithm" +// http://graphics.cs.williams.edu/papers/AlchemyHPG11/ +// +float4 FragAO(VaryingsDefault i) : SV_Target +{ + float2 uv = i.texcoord; + + // Parameters used in coordinate conversion + float3x3 proj = (float3x3)unity_CameraProjection; + float2 p11_22 = float2(unity_CameraProjection._11, unity_CameraProjection._22); + float2 p13_31 = float2(unity_CameraProjection._13, unity_CameraProjection._23); + + // View space normal and depth + float3 norm_o; + float depth_o = SampleDepthNormal(uv, norm_o); + + // Reconstruct the view-space position. + float3 vpos_o = ReconstructViewPos(uv, depth_o, p11_22, p13_31); + + float ao = 0.0; + + for (int s = 0; s < int(SAMPLE_COUNT); s++) + { + // Sample point +#if defined(SHADER_API_D3D11) + // This 'floor(1.0001 * s)' operation is needed to avoid a NVidia shader issue. This issue + // is only observed on DX11. + float3 v_s1 = PickSamplePoint(uv, floor(1.0001 * s)); +#else + float3 v_s1 = PickSamplePoint(uv, s); +#endif + + v_s1 = faceforward(v_s1, -norm_o, v_s1); + float3 vpos_s1 = vpos_o + v_s1; + + // Reproject the sample point + float3 spos_s1 = mul(proj, vpos_s1); + float2 uv_s1_01 = (spos_s1.xy / CheckPerspective(vpos_s1.z) + 1.0) * 0.5; + + // Depth at the sample point + float depth_s1 = SampleDepth(uv_s1_01); + + // Relative position of the sample point + float3 vpos_s2 = ReconstructViewPos(uv_s1_01, depth_s1, p11_22, p13_31); + float3 v_s2 = vpos_s2 - vpos_o; + + // Estimate the obscurance value + float a1 = max(dot(v_s2, norm_o) - kBeta * depth_o, 0.0); + float a2 = dot(v_s2, v_s2) + EPSILON; + ao += a1 / a2; + } + + ao *= RADIUS; // Intensity normalization + + // Apply other parameters. + ao = PositivePow(ao * INTENSITY / SAMPLE_COUNT, kContrast); + + // Apply fog when enabled (forward-only) +#if (APPLY_FORWARD_FOG) + float d = Linear01Depth(SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo)); + d = ComputeFogDistance(d); + ao *= ComputeFog(d); +#endif + + return PackAONormal(ao, norm_o); +} + +// Geometry-aware separable bilateral filter +float4 FragBlur(VaryingsDefault i) : SV_Target +{ +#if defined(BLUR_HORIZONTAL) + // Horizontal pass: Always use 2 texels interval to match to + // the dither pattern. + float2 delta = float2(_MainTex_TexelSize.x * 2.0, 0.0); +#else + // Vertical pass: Apply _Downsample to match to the dither + // pattern in the original occlusion buffer. + float2 delta = float2(0.0, _MainTex_TexelSize.y / DOWNSAMPLE * 2.0); +#endif + +#if defined(BLUR_HIGH_QUALITY) + + // High quality 7-tap Gaussian with adaptive sampling + + half4 p0 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + half4 p1a = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - delta)); + half4 p1b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + delta)); + half4 p2a = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - delta * 2.0)); + half4 p2b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + delta * 2.0)); + half4 p3a = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - delta * 3.2307692308)); + half4 p3b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + delta * 3.2307692308)); + +#if defined(BLUR_SAMPLE_CENTER_NORMAL) + half3 n0 = SampleNormal(i.texcoordStereo); +#else + half3 n0 = GetPackedNormal(p0); +#endif + + half w0 = 0.37004405286; + half w1a = CompareNormal(n0, GetPackedNormal(p1a)) * 0.31718061674; + half w1b = CompareNormal(n0, GetPackedNormal(p1b)) * 0.31718061674; + half w2a = CompareNormal(n0, GetPackedNormal(p2a)) * 0.19823788546; + half w2b = CompareNormal(n0, GetPackedNormal(p2b)) * 0.19823788546; + half w3a = CompareNormal(n0, GetPackedNormal(p3a)) * 0.11453744493; + half w3b = CompareNormal(n0, GetPackedNormal(p3b)) * 0.11453744493; + + half s; + s = GetPackedAO(p0) * w0; + s += GetPackedAO(p1a) * w1a; + s += GetPackedAO(p1b) * w1b; + s += GetPackedAO(p2a) * w2a; + s += GetPackedAO(p2b) * w2b; + s += GetPackedAO(p3a) * w3a; + s += GetPackedAO(p3b) * w3b; + + s /= w0 + w1a + w1b + w2a + w2b + w3a + w3b; + +#else + + // Fater 5-tap Gaussian with linear sampling + half4 p0 = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + half4 p1a = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - delta * 1.3846153846)); + half4 p1b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + delta * 1.3846153846)); + half4 p2a = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord - delta * 3.2307692308)); + half4 p2b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + delta * 3.2307692308)); + +#if defined(BLUR_SAMPLE_CENTER_NORMAL) + half3 n0 = SampleNormal(i.texcoordStereo); +#else + half3 n0 = GetPackedNormal(p0); +#endif + + half w0 = 0.2270270270; + half w1a = CompareNormal(n0, GetPackedNormal(p1a)) * 0.3162162162; + half w1b = CompareNormal(n0, GetPackedNormal(p1b)) * 0.3162162162; + half w2a = CompareNormal(n0, GetPackedNormal(p2a)) * 0.0702702703; + half w2b = CompareNormal(n0, GetPackedNormal(p2b)) * 0.0702702703; + + half s; + s = GetPackedAO(p0) * w0; + s += GetPackedAO(p1a) * w1a; + s += GetPackedAO(p1b) * w1b; + s += GetPackedAO(p2a) * w2a; + s += GetPackedAO(p2b) * w2b; + + s /= w0 + w1a + w1b + w2a + w2b; + +#endif + + return PackAONormal(s, n0); +} + +// Gamma encoding (only needed in gamma lighting mode) +half EncodeAO(half x) +{ + #if UNITY_COLORSPACE_GAMMA + return 1.0 - max(LinearToSRGB(1.0 - saturate(x)), 0.0); + #else + return x; + #endif +} + +// Geometry-aware bilateral filter (single pass/small kernel) +half BlurSmall(TEXTURE2D_ARGS(tex, samp), float2 uv, float2 delta) +{ + half4 p0 = SAMPLE_TEXTURE2D(tex, samp, UnityStereoTransformScreenSpaceTex(uv)); + half4 p1 = SAMPLE_TEXTURE2D(tex, samp, UnityStereoTransformScreenSpaceTex(uv + float2(-delta.x, -delta.y))); + half4 p2 = SAMPLE_TEXTURE2D(tex, samp, UnityStereoTransformScreenSpaceTex(uv + float2( delta.x, -delta.y))); + half4 p3 = SAMPLE_TEXTURE2D(tex, samp, UnityStereoTransformScreenSpaceTex(uv + float2(-delta.x, delta.y))); + half4 p4 = SAMPLE_TEXTURE2D(tex, samp, UnityStereoTransformScreenSpaceTex(uv + float2( delta.x, delta.y))); + + half3 n0 = GetPackedNormal(p0); + + half w0 = 1.0; + half w1 = CompareNormal(n0, GetPackedNormal(p1)); + half w2 = CompareNormal(n0, GetPackedNormal(p2)); + half w3 = CompareNormal(n0, GetPackedNormal(p3)); + half w4 = CompareNormal(n0, GetPackedNormal(p4)); + + half s; + s = GetPackedAO(p0) * w0; + s += GetPackedAO(p1) * w1; + s += GetPackedAO(p2) * w2; + s += GetPackedAO(p3) * w3; + s += GetPackedAO(p4) * w4; + + return s / (w0 + w1 + w2 + w3 + w4); +} + +// Final composition shader +float4 FragComposition(VaryingsDefault i) : SV_Target +{ + float2 delta = _SAOcclusionTexture_TexelSize.xy / DOWNSAMPLE; + half ao = BlurSmall(TEXTURE2D_PARAM(_SAOcclusionTexture, sampler_SAOcclusionTexture), i.texcoord, delta); + ao = EncodeAO(ao); + return float4(ao * _AOColor, ao); +} + +#if !SHADER_API_GLES // Excluding the MRT pass under GLES2 + +struct CompositionOutput +{ + half4 gbuffer0 : SV_Target0; + half4 gbuffer3 : SV_Target1; +}; + +CompositionOutput FragCompositionGBuffer(VaryingsDefault i) +{ + // Workaround: _SAOcclusionTexture_Texelsize hasn't been set properly + // for some reasons. Use _ScreenParams instead. + float2 delta = (_ScreenParams.zw - 1.0) / DOWNSAMPLE; + half ao = BlurSmall(TEXTURE2D_PARAM(_SAOcclusionTexture, sampler_SAOcclusionTexture), i.texcoord, delta); + + CompositionOutput o; + o.gbuffer0 = half4(0.0, 0.0, 0.0, ao); + o.gbuffer3 = half4((half3)EncodeAO(ao) * _AOColor, 0.0); + return o; +} + +#else + +float4 FragCompositionGBuffer(VaryingsDefault i) : SV_Target +{ + return (0.0).xxxx; +} + +#endif + +float4 FragDebugOverlay(VaryingsDefault i) : SV_Target +{ + float2 delta = _SAOcclusionTexture_TexelSize.xy / DOWNSAMPLE; + half ao = BlurSmall(TEXTURE2D_PARAM(_SAOcclusionTexture, sampler_SAOcclusionTexture), i.texcoord, delta); + ao = EncodeAO(ao); + return float4(1.0 - ao.xxx, 1.0); +} + +#endif // UNITY_POSTFX_AMBIENT_OCCLUSION diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScalableAO.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScalableAO.hlsl.meta new file mode 100644 index 0000000..6185c0e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScalableAO.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: e4b5af8727f8b8e49aa97c2e8e5d1a3d +timeCreated: 1498574653 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScalableAO.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScalableAO.shader new file mode 100644 index 0000000..3ff5ea0 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScalableAO.shader @@ -0,0 +1,127 @@ +Shader "Hidden/PostProcessing/ScalableAO" +{ + HLSLINCLUDE + + #pragma exclude_renderers psp2 + #pragma target 3.0 + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0 - Occlusion estimation with CameraDepthTexture + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragAO + #pragma multi_compile _ APPLY_FORWARD_FOG + #pragma multi_compile _ FOG_LINEAR FOG_EXP FOG_EXP2 + #define SOURCE_DEPTH + #include "ScalableAO.hlsl" + + ENDHLSL + } + + // 1 - Occlusion estimation with G-Buffer + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragAO + #pragma multi_compile _ APPLY_FORWARD_FOG + #pragma multi_compile _ FOG_LINEAR FOG_EXP FOG_EXP2 + #define SOURCE_GBUFFER + #include "ScalableAO.hlsl" + + ENDHLSL + } + + // 2 - Separable blur (horizontal pass) with CameraDepthNormalsTexture + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragBlur + #define SOURCE_DEPTHNORMALS + #define BLUR_HORIZONTAL + #define BLUR_SAMPLE_CENTER_NORMAL + #include "ScalableAO.hlsl" + + ENDHLSL + } + + // 3 - Separable blur (horizontal pass) with G-Buffer + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragBlur + #define SOURCE_GBUFFER + #define BLUR_HORIZONTAL + #define BLUR_SAMPLE_CENTER_NORMAL + #include "ScalableAO.hlsl" + + ENDHLSL + } + + // 4 - Separable blur (vertical pass) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragBlur + #define BLUR_VERTICAL + #include "ScalableAO.hlsl" + + ENDHLSL + } + + // 5 - Final composition + Pass + { + Blend Zero OneMinusSrcColor, Zero OneMinusSrcAlpha + + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragComposition + #include "ScalableAO.hlsl" + + ENDHLSL + } + + // 6 - Final composition (ambient only mode) + Pass + { + Blend Zero OneMinusSrcColor, Zero OneMinusSrcAlpha + + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragCompositionGBuffer + #include "ScalableAO.hlsl" + + ENDHLSL + } + + // 7 - Debug overlay + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragDebugOverlay + #include "ScalableAO.hlsl" + + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScalableAO.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScalableAO.shader.meta new file mode 100644 index 0000000..9990d32 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScalableAO.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: d7640629310e79646af0f46eb55ae466 +timeCreated: 1498574566 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.hlsl new file mode 100644 index 0000000..58bc4bd --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.hlsl @@ -0,0 +1,405 @@ +#ifndef UNITY_POSTFX_SSR +#define UNITY_POSTFX_SSR + +#include "UnityCG.cginc" +#include "UnityPBSLighting.cginc" +#include "UnityStandardBRDF.cginc" +#include "UnityStandardUtils.cginc" + +#define SSR_MINIMUM_ATTENUATION 0.275 +#define SSR_ATTENUATION_SCALE (1.0 - SSR_MINIMUM_ATTENUATION) + +#define SSR_VIGNETTE_INTENSITY _VignetteIntensity +#define SSR_VIGNETTE_SMOOTHNESS 5. + +#define SSR_COLOR_NEIGHBORHOOD_SAMPLE_SPREAD 1.0 + +#define SSR_FINAL_BLEND_STATIC_FACTOR 0.95 +#define SSR_FINAL_BLEND_DYNAMIC_FACTOR 0.7 + +#define SSR_ENABLE_CONTACTS 0 +#define SSR_KILL_FIREFLIES 0 + +// +// Helper structs +// +struct Ray +{ + float3 origin; + float3 direction; +}; + +struct Segment +{ + float3 start; + float3 end; + + float3 direction; +}; + +struct Result +{ + bool isHit; + + float2 uv; + float3 position; + + int iterationCount; +}; + +// +// Uniforms +// +Texture2D _MainTex; SamplerState sampler_MainTex; +Texture2D _History; SamplerState sampler_History; + +Texture2D _CameraDepthTexture; SamplerState sampler_CameraDepthTexture; +Texture2D _CameraMotionVectorsTexture; SamplerState sampler_CameraMotionVectorsTexture; +Texture2D _CameraReflectionsTexture; SamplerState sampler_CameraReflectionsTexture; + +Texture2D _CameraGBufferTexture0; // albedo = g[0].rgb +Texture2D _CameraGBufferTexture1; // roughness = g[1].a +Texture2D _CameraGBufferTexture2; SamplerState sampler_CameraGBufferTexture2; // normal.xyz 2. * g[2].rgb - 1. + +Texture2D _Noise; SamplerState sampler_Noise; + +Texture2D _Test; SamplerState sampler_Test; +Texture2D _Resolve; SamplerState sampler_Resolve; + +float4 _MainTex_TexelSize; +float4 _Test_TexelSize; + +float4x4 _ViewMatrix; +float4x4 _InverseViewMatrix; +float4x4 _InverseProjectionMatrix; +float4x4 _ScreenSpaceProjectionMatrix; + +float4 _Params; // x: vignette intensity, y: distance fade, z: maximum march distance, w: blur pyramid lod count +float4 _Params2; // x: aspect ratio, y: noise tiling, z: thickness, w: maximum iteration count +#define _Attenuation .25 +#define _VignetteIntensity _Params.x +#define _DistanceFade _Params.y +#define _MaximumMarchDistance _Params.z +#define _BlurPyramidLODCount _Params.w +#define _AspectRatio _Params2.x +#define _NoiseTiling _Params2.y +#define _Bandwidth _Params2.z +#define _MaximumIterationCount _Params2.w + +// +// Helper functions +// +float Attenuate(float2 uv) +{ + float offset = min(1.0 - max(uv.x, uv.y), min(uv.x, uv.y)); + + float result = offset / (SSR_ATTENUATION_SCALE * _Attenuation + SSR_MINIMUM_ATTENUATION); + result = saturate(result); + + return pow(result, 0.5); +} + +float Vignette(float2 uv) +{ + float2 k = abs(uv - 0.5) * SSR_VIGNETTE_INTENSITY; + k.x *= _MainTex_TexelSize.y * _MainTex_TexelSize.z; + return pow(saturate(1.0 - dot(k, k)), SSR_VIGNETTE_SMOOTHNESS); +} + +float3 GetViewSpacePosition(float2 uv) +{ + float depth = _CameraDepthTexture.SampleLevel(sampler_CameraDepthTexture, UnityStereoTransformScreenSpaceTex(uv), 0).r; + float4 result = mul(_InverseProjectionMatrix, float4(2.0 * uv - 1.0, depth, 1.0)); + return result.xyz / result.w; +} + +float GetSquaredDistance(float2 first, float2 second) +{ + first -= second; + return dot(first, first); +} + +float4 ProjectToScreenSpace(float3 position) +{ + return float4( + _ScreenSpaceProjectionMatrix[0][0] * position.x + _ScreenSpaceProjectionMatrix[0][2] * position.z, + _ScreenSpaceProjectionMatrix[1][1] * position.y + _ScreenSpaceProjectionMatrix[1][2] * position.z, + _ScreenSpaceProjectionMatrix[2][2] * position.z + _ScreenSpaceProjectionMatrix[2][3], + _ScreenSpaceProjectionMatrix[3][2] * position.z + ); +} + +// Heavily adapted from McGuire and Mara's original implementation +// http://casual-effects.blogspot.com/2014/08/screen-space-ray-tracing.html +Result March(Ray ray, VaryingsDefault input) +{ + Result result; + + result.isHit = false; + + result.uv = 0.0; + result.position = 0.0; + + result.iterationCount = 0; + + Segment segment; + + segment.start = ray.origin; + + float end = ray.origin.z + ray.direction.z * _MaximumMarchDistance; + float magnitude = _MaximumMarchDistance; + + if (end > -_ProjectionParams.y) + magnitude = (-_ProjectionParams.y - ray.origin.z) / ray.direction.z; + + segment.end = ray.origin + ray.direction * magnitude; + + float4 r = ProjectToScreenSpace(segment.start); + float4 q = ProjectToScreenSpace(segment.end); + + const float2 homogenizers = rcp(float2(r.w, q.w)); + + segment.start *= homogenizers.x; + segment.end *= homogenizers.y; + + float4 endPoints = float4(r.xy, q.xy) * homogenizers.xxyy; + endPoints.zw += step(GetSquaredDistance(endPoints.xy, endPoints.zw), 0.0001) * max(_Test_TexelSize.x, _Test_TexelSize.y); + + float2 displacement = endPoints.zw - endPoints.xy; + + bool isPermuted = false; + + if (abs(displacement.x) < abs(displacement.y)) + { + isPermuted = true; + + displacement = displacement.yx; + endPoints.xyzw = endPoints.yxwz; + } + + float direction = sign(displacement.x); + float normalizer = direction / displacement.x; + + segment.direction = (segment.end - segment.start) * normalizer; + float4 derivatives = float4(float2(direction, displacement.y * normalizer), (homogenizers.y - homogenizers.x) * normalizer, segment.direction.z); + + float stride = 1.0 - min(1.0, -ray.origin.z * 0.01); + + float2 uv = input.texcoord * _NoiseTiling; + uv.y *= _AspectRatio; + + float jitter = _Noise.SampleLevel(sampler_Noise, uv + _WorldSpaceCameraPos.xz, 0).a; + stride *= _Bandwidth; + + derivatives *= stride; + segment.direction *= stride; + + float2 z = 0.0; + float4 tracker = float4(endPoints.xy, homogenizers.x, segment.start.z) + derivatives * jitter; + + for (int i = 0; i < _MaximumIterationCount; ++i) + { + if (any(result.uv < 0.0) || any(result.uv > 1.0)) + { + result.isHit = false; + return result; + } + + tracker += derivatives; + + z.x = z.y; + z.y = tracker.w + derivatives.w * 0.5; + z.y /= tracker.z + derivatives.z * 0.5; + +#if SSR_KILL_FIREFLIES + UNITY_FLATTEN + if (z.y < -_MaximumMarchDistance) + { + result.isHit = false; + return result; + } +#endif + + UNITY_FLATTEN + if (z.y > z.x) + { + float k = z.x; + z.x = z.y; + z.y = k; + } + + uv = tracker.xy; + + UNITY_FLATTEN + if (isPermuted) + uv = uv.yx; + + uv *= _Test_TexelSize.xy; + + float d = _CameraDepthTexture.SampleLevel(sampler_CameraDepthTexture, UnityStereoTransformScreenSpaceTex(uv), 0); + float depth = -LinearEyeDepth(d); + + UNITY_FLATTEN + if (z.y < depth) + { + result.uv = uv; + result.isHit = true; + result.iterationCount = i + 1; + return result; + } + } + + return result; +} + +// +// Fragment shaders +// +float4 FragTest(VaryingsDefault i) : SV_Target +{ + float4 gbuffer2 = _CameraGBufferTexture2.Sample(sampler_CameraGBufferTexture2, i.texcoordStereo); + + if (dot(gbuffer2, 1.0) == 0.0) + return 0.0; + + float3 normal = 2.0 * gbuffer2.rgb - 1.0; + normal = mul((float3x3)_ViewMatrix, normal); + + Ray ray; + + ray.origin = GetViewSpacePosition(i.texcoord); + + if (ray.origin.z < -_MaximumMarchDistance) + return 0.0; + + ray.direction = normalize(reflect(normalize(ray.origin), normal)); + + if (ray.direction.z > 0.0) + return 0.0; + + Result result = March(ray, i); + + float confidence = (float)result.iterationCount / (float)_MaximumIterationCount; + return float4(result.uv, confidence, (float)result.isHit); +} + +float4 FragResolve(VaryingsDefault i) : SV_Target +{ + float4 test = _Test.Load(int3(i.vertex.xy, 0)); + + if (test.w == 0.0) + return _MainTex.Sample(sampler_MainTex, i.texcoordStereo); + + float4 color = _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(test.xy), 0); + + float confidence = test.w * Attenuate(test.xy) * Vignette(test.xy); + + color.rgb *= confidence; + color.a = test.z; + + return color; +} + +float4 FragReproject(VaryingsDefault i) : SV_Target +{ + float2 motion = _CameraMotionVectorsTexture.SampleLevel(sampler_CameraMotionVectorsTexture, i.texcoordStereo, 0).xy; + float2 uv = i.texcoord - motion; + + const float2 k = SSR_COLOR_NEIGHBORHOOD_SAMPLE_SPREAD * _MainTex_TexelSize.xy; + + float4 color = _MainTex.SampleLevel(sampler_MainTex, i.texcoordStereo, 0); + + // 0 1 2 + // 3 + float4x4 top = float4x4( + _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2(-k.x, -k.y)), 0), + _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2( 0.0, -k.y)), 0), + _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2( k.x, -k.y)), 0), + _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2(-k.x, 0.0)), 0) + ); + + // 0 + // 1 2 3 + float4x4 bottom = float4x4( + _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2( k.x, 0.0)), 0), + _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2(-k.x, k.y)), 0), + _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2( 0.0, k.y)), 0), + _MainTex.SampleLevel(sampler_MainTex, UnityStereoTransformScreenSpaceTex(i.texcoord + float2( k.x, k.y)), 0) + ); + + // PS4 INTRINSIC_MINMAX3 + #if SHADER_API_PSSL + float4 minimum = min3(min3(min3(min3(top[0], top[1], top[2]), top[3], bottom[0]), bottom[1], bottom[2]), bottom[3], color); + float4 maximum = max3(max3(max3(max3(top[0], top[1], top[2]), top[3], bottom[0]), bottom[1], bottom[2]), bottom[3], color); + #else + float4 minimum = min(min(min(min(min(min(min(min(top[0], top[1]), top[2]), top[3]), bottom[0]), bottom[1]), bottom[2]), bottom[3]), color); + float4 maximum = max(max(max(max(max(max(max(max(top[0], top[1]), top[2]), top[3]), bottom[0]), bottom[1]), bottom[2]), bottom[3]), color); + #endif + + float4 history = _History.SampleLevel(sampler_History, UnityStereoTransformScreenSpaceTex(uv), 0); + history = clamp(history, minimum, maximum); + + color.a = saturate(smoothstep(0.002 * _MainTex_TexelSize.z, 0.0035 * _MainTex_TexelSize.z, length(motion))); + + float weight = clamp(lerp(SSR_FINAL_BLEND_STATIC_FACTOR, SSR_FINAL_BLEND_DYNAMIC_FACTOR, + history.a * 100.0), SSR_FINAL_BLEND_DYNAMIC_FACTOR, SSR_FINAL_BLEND_STATIC_FACTOR); + + color.a *= 0.85; + return lerp(color, history, weight); +} + +float4 FragComposite(VaryingsDefault i) : SV_Target +{ + float z = _CameraDepthTexture.SampleLevel(sampler_CameraDepthTexture, i.texcoordStereo, 0).r; + + if (Linear01Depth(z) > 0.999) + return _MainTex.Sample(sampler_MainTex, i.texcoordStereo); + + float4 gbuffer0 = _CameraGBufferTexture0.Load(int3(i.vertex.xy, 0)); + float4 gbuffer1 = _CameraGBufferTexture1.Load(int3(i.vertex.xy, 0)); + float4 gbuffer2 = _CameraGBufferTexture2.Load(int3(i.vertex.xy, 0)); + + float oneMinusReflectivity = 0.0; + EnergyConservationBetweenDiffuseAndSpecular(gbuffer0.rgb, gbuffer1.rgb, oneMinusReflectivity); + + float3 normal = 2.0 * gbuffer2.rgb - 1.0; + float3 position = GetViewSpacePosition(i.texcoord); + + float3 eye = mul((float3x3)_InverseViewMatrix, normalize(position)); + position = mul(_InverseViewMatrix, float4(position, 1.0)).xyz; + +#if SSR_ENABLE_CONTACTS + float4 test = _Test.SampleLevel(sampler_Test, i.texcoordStereo, 0); + float4 resolve = _Resolve.SampleLevel(sampler_Resolve, i.texcoordStereo, SmoothnessToRoughness(gbuffer1.a) * (_BlurPyramidLODCount - 1.0) * test.z + 1.0); +#else + float4 resolve = _Resolve.SampleLevel(sampler_Resolve, i.texcoordStereo, SmoothnessToRoughness(gbuffer1.a) * (_BlurPyramidLODCount - 1.0) + 1.0); +#endif + + float confidence = saturate(2.0 * dot(-eye, normalize(reflect(-eye, normal)))); + + UnityLight light; + light.color = 0.0; + light.dir = 0.0; + light.ndotl = 0.0; + + UnityIndirect indirect; + indirect.diffuse = 0.0; + indirect.specular = resolve.rgb; + + resolve.rgb = UNITY_BRDF_PBS(gbuffer0.rgb, gbuffer1.rgb, oneMinusReflectivity, gbuffer1.a, normal, -eye, light, indirect).rgb; + + float4 reflectionProbes = _CameraReflectionsTexture.Sample(sampler_CameraReflectionsTexture, i.texcoordStereo); + + float4 color = _MainTex.Sample(sampler_MainTex, i.texcoordStereo); + color.rgb = max(0.0, color.rgb - reflectionProbes.rgb); + + resolve.a *= 2. * resolve.a; // 2 and 1.5 are quite important for the correct ratio of 3:2 distribution + float fade = 1.0 - saturate(1.5 * resolve.a * smoothstep(0.5, 1.0, 1.5 * resolve.a) * _DistanceFade); + + resolve.rgb = lerp(reflectionProbes.rgb, resolve.rgb, confidence * fade); + color.rgb += resolve.rgb * gbuffer0.a; + + return color; +} + +#endif // UNITY_POSTFX_SSR diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.hlsl.meta new file mode 100644 index 0000000..ef42165 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: ad99a5d3138ea7e47a3b2a3051034642 +timeCreated: 1503577882 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.shader new file mode 100644 index 0000000..9e1d0d2 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.shader @@ -0,0 +1,91 @@ +Shader "Hidden/PostProcessing/ScreenSpaceReflections" +{ + // We need to use internal Unity lighting structures and functions for this effect so we have to + // stick to CGPROGRAM instead of HLSLPROGRAM + + CGINCLUDE + + #include "UnityCG.cginc" + #pragma target 5.0 + + // Ported from StdLib, we can't include it as it'll conflict with internal Unity includes + struct AttributesDefault + { + float3 vertex : POSITION; + }; + + struct VaryingsDefault + { + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + float2 texcoordStereo : TEXCOORD1; + }; + + VaryingsDefault VertDefault(AttributesDefault v) + { + VaryingsDefault o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord = (v.vertex.xy + 1.0) * 0.5; + + #if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); + #endif + + o.texcoordStereo = TransformStereoScreenSpaceTex(o.texcoord, 1.0); + + return o; + } + + #include "ScreenSpaceReflections.hlsl" + + ENDCG + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0 - Test + Pass + { + CGPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragTest + + ENDCG + } + + // 1 - Resolve + Pass + { + CGPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragResolve + + ENDCG + } + + // 2 - Reproject + Pass + { + CGPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragReproject + + ENDCG + } + + // 3 - Composite + Pass + { + CGPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragComposite + + ENDCG + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.shader.meta new file mode 100644 index 0000000..0177f14 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/ScreenSpaceReflections.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: f997a3dc9254c44459323cced085150c +timeCreated: 1503577833 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.hlsl new file mode 100644 index 0000000..5e05061 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.hlsl @@ -0,0 +1,1436 @@ +// Ported to Unity & tweaked by Thomas Hourdel (thomas@hourdel.com) +#include "../Colors.hlsl" + +/** + * Copyright (C) 2013 Jorge Jimenez (jorge@iryoku.com) + * Copyright (C) 2013 Jose I. Echevarria (joseignacioechevarria@gmail.com) + * Copyright (C) 2013 Belen Masia (bmasia@unizar.es) + * Copyright (C) 2013 Fernando Navarro (fernandn@microsoft.com) + * Copyright (C) 2013 Diego Gutierrez (diegog@unizar.es) + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies + * of the Software, and to permit persons to whom the Software is furnished to + * do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. As clarification, there + * is no requirement that the copyright notice and permission be included in + * binary distributions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + + +/** + * _______ ___ ___ ___ ___ + * / || \/ | / \ / \ + * | (---- | \ / | / ^ \ / ^ \ + * \ \ | |\/| | / /_\ \ / /_\ \ + * ----) | | | | | / _____ \ / _____ \ + * |_______/ |__| |__| /__/ \__\ /__/ \__\ + * + * E N H A N C E D + * S U B P I X E L M O R P H O L O G I C A L A N T I A L I A S I N G + * + * http://www.iryoku.com/smaa/ + * + * Hi, welcome aboard! + * + * Here you'll find instructions to get the shader up and running as fast as + * possible. + * + * IMPORTANTE NOTICE: when updating, remember to update both this file and the + * precomputed textures! They may change from version to version. + * + * The shader has three passes, chained together as follows: + * + * |input|------------------� + * v | + * [ SMAA*EdgeDetection ] | + * v | + * |edgesTex| | + * v | + * [ SMAABlendingWeightCalculation ] | + * v | + * |blendTex| | + * v | + * [ SMAANeighborhoodBlending ] <------� + * v + * |output| + * + * Note that each [pass] has its own vertex and pixel shader. Remember to use + * oversized triangles instead of quads to avoid overshading along the + * diagonal. + * + * You've three edge detection methods to choose from: luma, color or depth. + * They represent different quality/performance and anti-aliasing/sharpness + * tradeoffs, so our recommendation is for you to choose the one that best + * suits your particular scenario: + * + * - Depth edge detection is usually the fastest but it may miss some edges. + * + * - Luma edge detection is usually more expensive than depth edge detection, + * but catches visible edges that depth edge detection can miss. + * + * - Color edge detection is usually the most expensive one but catches + * chroma-only edges. + * + * For quickstarters: just use luma edge detection. + * + * The general advice is to not rush the integration process and ensure each + * step is done correctly (don't try to integrate SMAA T2x with predicated edge + * detection from the start!). Ok then, let's go! + * + * 1. The first step is to create two RGBA temporal render targets for holding + * |edgesTex| and |blendTex|. + * + * In DX10 or DX11, you can use a RG render target for the edges texture. + * In the case of NVIDIA GPUs, using RG render targets seems to actually be + * slower. + * + * On the Xbox 360, you can use the same render target for resolving both + * |edgesTex| and |blendTex|, as they aren't needed simultaneously. + * + * 2. Both temporal render targets |edgesTex| and |blendTex| must be cleared + * each frame. Do not forget to clear the alpha channel! + * + * 3. The next step is loading the two supporting precalculated textures, + * 'areaTex' and 'searchTex'. You'll find them in the 'Textures' folder as + * C++ headers, and also as regular DDS files. They'll be needed for the + * 'SMAABlendingWeightCalculation' pass. + * + * If you use the C++ headers, be sure to load them in the format specified + * inside of them. + * + * You can also compress 'areaTex' and 'searchTex' using BC5 and BC4 + * respectively, if you have that option in your content processor pipeline. + * When compressing then, you get a non-perceptible quality decrease, and a + * marginal performance increase. + * + * 4. All samplers must be set to linear filtering and clamp. + * + * After you get the technique working, remember that 64-bit inputs have + * half-rate linear filtering on GCN. + * + * If SMAA is applied to 64-bit color buffers, switching to point filtering + * when accesing them will increase the performance. Search for + * 'SMAASamplePoint' to see which textures may benefit from point + * filtering, and where (which is basically the color input in the edge + * detection and resolve passes). + * + * 5. All texture reads and buffer writes must be non-sRGB, with the exception + * of the input read and the output write in + * 'SMAANeighborhoodBlending' (and only in this pass!). If sRGB reads in + * this last pass are not possible, the technique will work anyway, but + * will perform antialiasing in gamma space. + * + * IMPORTANT: for best results the input read for the color/luma edge + * detection should *NOT* be sRGB. + * + * 6. Before including SMAA.h you'll have to setup the render target metrics, + * the target and any optional configuration defines. Optionally you can + * use a preset. + * + * You have the following targets available: + * SMAA_HLSL_3 + * SMAA_HLSL_4 + * SMAA_HLSL_4_1 + * SMAA_GLSL_3 * + * SMAA_GLSL_4 * + * + * * (See SMAA_INCLUDE_VS and SMAA_INCLUDE_PS below). + * + * And four presets: + * SMAA_PRESET_LOW (%60 of the quality) + * SMAA_PRESET_MEDIUM (%80 of the quality) + * SMAA_PRESET_HIGH (%95 of the quality) + * SMAA_PRESET_ULTRA (%99 of the quality) + * + * For example: + * #define SMAA_RT_METRICS float4(1.0 / 1280.0, 1.0 / 720.0, 1280.0, 720.0) + * #define SMAA_HLSL_4 + * #define SMAA_PRESET_HIGH + * #include "SMAA.h" + * + * Note that SMAA_RT_METRICS doesn't need to be a macro, it can be a + * uniform variable. The code is designed to minimize the impact of not + * using a constant value, but it is still better to hardcode it. + * + * Depending on how you encoded 'areaTex' and 'searchTex', you may have to + * add (and customize) the following defines before including SMAA.h: + * #define SMAA_AREATEX_SELECT(sample) sample.rg + * #define SMAA_SEARCHTEX_SELECT(sample) sample.r + * + * If your engine is already using porting macros, you can define + * SMAA_CUSTOM_SL, and define the porting functions by yourself. + * + * 7. Then, you'll have to setup the passes as indicated in the scheme above. + * You can take a look into SMAA.fx, to see how we did it for our demo. + * Checkout the function wrappers, you may want to copy-paste them! + * + * 8. It's recommended to validate the produced |edgesTex| and |blendTex|. + * You can use a screenshot from your engine to compare the |edgesTex| + * and |blendTex| produced inside of the engine with the results obtained + * with the reference demo. + * + * 9. After you get the last pass to work, it's time to optimize. You'll have + * to initialize a stencil buffer in the first pass (discard is already in + * the code), then mask execution by using it the second pass. The last + * pass should be executed in all pixels. + * + * + * After this point you can choose to enable predicated thresholding, + * temporal supersampling and motion blur integration: + * + * a) If you want to use predicated thresholding, take a look into + * SMAA_PREDICATION; you'll need to pass an extra texture in the edge + * detection pass. + * + * b) If you want to enable temporal supersampling (SMAA T2x): + * + * 1. The first step is to render using subpixel jitters. I won't go into + * detail, but it's as simple as moving each vertex position in the + * vertex shader, you can check how we do it in our DX10 demo. + * + * 2. Then, you must setup the temporal resolve. You may want to take a look + * into SMAAResolve for resolving 2x modes. After you get it working, you'll + * probably see ghosting everywhere. But fear not, you can enable the + * CryENGINE temporal reprojection by setting the SMAA_REPROJECTION macro. + * Check out SMAA_DECODE_VELOCITY if your velocity buffer is encoded. + * + * 3. The next step is to apply SMAA to each subpixel jittered frame, just as + * done for 1x. + * + * 4. At this point you should already have something usable, but for best + * results the proper area textures must be set depending on current jitter. + * For this, the parameter 'subsampleIndices' of + * 'SMAABlendingWeightCalculationPS' must be set as follows, for our T2x + * mode: + * + * @SUBSAMPLE_INDICES + * + * | S# | Camera Jitter | subsampleIndices | + * +----+------------------+---------------------+ + * | 0 | ( 0.25, -0.25) | float4(1, 1, 1, 0) | + * | 1 | (-0.25, 0.25) | float4(2, 2, 2, 0) | + * + * These jitter positions assume a bottom-to-top y axis. S# stands for the + * sample number. + * + * More information about temporal supersampling here: + * http://iryoku.com/aacourse/downloads/13-Anti-Aliasing-Methods-in-CryENGINE-3.pdf + * + * c) If you want to enable spatial multisampling (SMAA S2x): + * + * 1. The scene must be rendered using MSAA 2x. The MSAA 2x buffer must be + * created with: + * - DX10: see below (*) + * - DX10.1: D3D10_STANDARD_MULTISAMPLE_PATTERN or + * - DX11: D3D11_STANDARD_MULTISAMPLE_PATTERN + * + * This allows to ensure that the subsample order matches the table in + * @SUBSAMPLE_INDICES. + * + * (*) In the case of DX10, we refer the reader to: + * - SMAA::detectMSAAOrder and + * - SMAA::msaaReorder + * + * These functions allow to match the standard multisample patterns by + * detecting the subsample order for a specific GPU, and reordering + * them appropriately. + * + * 2. A shader must be run to output each subsample into a separate buffer + * (DX10 is required). You can use SMAASeparate for this purpose, or just do + * it in an existing pass (for example, in the tone mapping pass, which has + * the advantage of feeding tone mapped subsamples to SMAA, which will yield + * better results). + * + * 3. The full SMAA 1x pipeline must be run for each separated buffer, storing + * the results in the final buffer. The second run should alpha blend with + * the existing final buffer using a blending factor of 0.5. + * 'subsampleIndices' must be adjusted as in the SMAA T2x case (see point + * b). + * + * d) If you want to enable temporal supersampling on top of SMAA S2x + * (which actually is SMAA 4x): + * + * 1. SMAA 4x consists on temporally jittering SMAA S2x, so the first step is + * to calculate SMAA S2x for current frame. In this case, 'subsampleIndices' + * must be set as follows: + * + * | F# | S# | Camera Jitter | Net Jitter | subsampleIndices | + * +----+----+--------------------+-------------------+----------------------+ + * | 0 | 0 | ( 0.125, 0.125) | ( 0.375, -0.125) | float4(5, 3, 1, 3) | + * | 0 | 1 | ( 0.125, 0.125) | (-0.125, 0.375) | float4(4, 6, 2, 3) | + * +----+----+--------------------+-------------------+----------------------+ + * | 1 | 2 | (-0.125, -0.125) | ( 0.125, -0.375) | float4(3, 5, 1, 4) | + * | 1 | 3 | (-0.125, -0.125) | (-0.375, 0.125) | float4(6, 4, 2, 4) | + * + * These jitter positions assume a bottom-to-top y axis. F# stands for the + * frame number. S# stands for the sample number. + * + * 2. After calculating SMAA S2x for current frame (with the new subsample + * indices), previous frame must be reprojected as in SMAA T2x mode (see + * point b). + * + * e) If motion blur is used, you may want to do the edge detection pass + * together with motion blur. This has two advantages: + * + * 1. Pixels under heavy motion can be omitted from the edge detection process. + * For these pixels we can just store "no edge", as motion blur will take + * care of them. + * 2. The center pixel tap is reused. + * + * Note that in this case depth testing should be used instead of stenciling, + * as we have to write all the pixels in the motion blur pass. + * + * That's it! + */ + +//----------------------------------------------------------------------------- +// SMAA Presets + +/** + * Note that if you use one of these presets, the following configuration + * macros will be ignored if set in the "Configurable Defines" section. + */ + +#if defined(SMAA_PRESET_LOW) +#define SMAA_THRESHOLD 0.15 +#define SMAA_MAX_SEARCH_STEPS 4 +#define SMAA_DISABLE_DIAG_DETECTION +#define SMAA_DISABLE_CORNER_DETECTION +#elif defined(SMAA_PRESET_MEDIUM) +#define SMAA_THRESHOLD 0.1 +#define SMAA_MAX_SEARCH_STEPS 8 +#define SMAA_DISABLE_DIAG_DETECTION +#define SMAA_DISABLE_CORNER_DETECTION +#elif defined(SMAA_PRESET_HIGH) +#define SMAA_THRESHOLD 0.1 +#define SMAA_MAX_SEARCH_STEPS 16 +#define SMAA_MAX_SEARCH_STEPS_DIAG 8 +#define SMAA_CORNER_ROUNDING 25 +#elif defined(SMAA_PRESET_ULTRA) +#define SMAA_THRESHOLD 0.05 +#define SMAA_MAX_SEARCH_STEPS 32 +#define SMAA_MAX_SEARCH_STEPS_DIAG 16 +#define SMAA_CORNER_ROUNDING 25 +#endif + +//----------------------------------------------------------------------------- +// Configurable Defines + +/** + * SMAA_THRESHOLD specifies the threshold or sensitivity to edges. + * Lowering this value you will be able to detect more edges at the expense of + * performance. + * + * Range: [0, 0.5] + * 0.1 is a reasonable value, and allows to catch most visible edges. + * 0.05 is a rather overkill value, that allows to catch 'em all. + * + * If temporal supersampling is used, 0.2 could be a reasonable value, as low + * contrast edges are properly filtered by just 2x. + */ +#ifndef SMAA_THRESHOLD +#define SMAA_THRESHOLD 0.1 +#endif + +/** + * SMAA_DEPTH_THRESHOLD specifies the threshold for depth edge detection. + * + * Range: depends on the depth range of the scene. + */ +#ifndef SMAA_DEPTH_THRESHOLD +#define SMAA_DEPTH_THRESHOLD (0.1 * SMAA_THRESHOLD) +#endif + +/** + * SMAA_MAX_SEARCH_STEPS specifies the maximum steps performed in the + * horizontal/vertical pattern searches, at each side of the pixel. + * + * In number of pixels, it's actually the double. So the maximum line length + * perfectly handled by, for example 16, is 64 (by perfectly, we meant that + * longer lines won't look as good, but still antialiased). + * + * Range: [0, 112] + */ +#ifndef SMAA_MAX_SEARCH_STEPS +#define SMAA_MAX_SEARCH_STEPS 16 +#endif + +/** + * SMAA_MAX_SEARCH_STEPS_DIAG specifies the maximum steps performed in the + * diagonal pattern searches, at each side of the pixel. In this case we jump + * one pixel at time, instead of two. + * + * Range: [0, 20] + * + * On high-end machines it is cheap (between a 0.8x and 0.9x slower for 16 + * steps), but it can have a significant impact on older machines. + * + * Define SMAA_DISABLE_DIAG_DETECTION to disable diagonal processing. + */ +#ifndef SMAA_MAX_SEARCH_STEPS_DIAG +#define SMAA_MAX_SEARCH_STEPS_DIAG 8 +#endif + +/** + * SMAA_CORNER_ROUNDING specifies how much sharp corners will be rounded. + * + * Range: [0, 100] + * + * Define SMAA_DISABLE_CORNER_DETECTION to disable corner processing. + */ +#ifndef SMAA_CORNER_ROUNDING +#define SMAA_CORNER_ROUNDING 25 +#endif + +/** + * If there is an neighbor edge that has SMAA_LOCAL_CONTRAST_FACTOR times + * bigger contrast than current edge, current edge will be discarded. + * + * This allows to eliminate spurious crossing edges, and is based on the fact + * that, if there is too much contrast in a direction, that will hide + * perceptually contrast in the other neighbors. + */ +#ifndef SMAA_LOCAL_CONTRAST_ADAPTATION_FACTOR +#define SMAA_LOCAL_CONTRAST_ADAPTATION_FACTOR 2.0 +#endif + +/** + * Predicated thresholding allows to better preserve texture details and to + * improve performance, by decreasing the number of detected edges using an + * additional buffer like the light accumulation buffer, object ids or even the + * depth buffer (the depth buffer usage may be limited to indoor or short range + * scenes). + * + * It locally decreases the luma or color threshold if an edge is found in an + * additional buffer (so the global threshold can be higher). + * + * This method was developed by Playstation EDGE MLAA team, and used in + * Killzone 3, by using the light accumulation buffer. More information here: + * http://iryoku.com/aacourse/downloads/06-MLAA-on-PS3.pptx + */ +#ifndef SMAA_PREDICATION +#define SMAA_PREDICATION 0 +#endif + +/** + * Threshold to be used in the additional predication buffer. + * + * Range: depends on the input, so you'll have to find the magic number that + * works for you. + */ +#ifndef SMAA_PREDICATION_THRESHOLD +#define SMAA_PREDICATION_THRESHOLD 0.01 +#endif + +/** + * How much to scale the global threshold used for luma or color edge + * detection when using predication. + * + * Range: [1, 5] + */ +#ifndef SMAA_PREDICATION_SCALE +#define SMAA_PREDICATION_SCALE 2.0 +#endif + +/** + * How much to locally decrease the threshold. + * + * Range: [0, 1] + */ +#ifndef SMAA_PREDICATION_STRENGTH +#define SMAA_PREDICATION_STRENGTH 0.4 +#endif + +/** + * Temporal reprojection allows to remove ghosting artifacts when using + * temporal supersampling. We use the CryEngine 3 method which also introduces + * velocity weighting. This feature is of extreme importance for totally + * removing ghosting. More information here: + * http://iryoku.com/aacourse/downloads/13-Anti-Aliasing-Methods-in-CryENGINE-3.pdf + * + * Note that you'll need to setup a velocity buffer for enabling reprojection. + * For static geometry, saving the previous depth buffer is a viable + * alternative. + */ +#ifndef SMAA_REPROJECTION +#define SMAA_REPROJECTION 0 +#endif + +/** + * Temporal reprojection allows to remove ghosting artifacts when using + * temporal supersampling. However, the default reprojection requires a velocity buffer + * in order to function properly. + * + * A velocity buffer might not always be available (hi Unity 5!). To handle such cases + * we provide a UV-based approximation for calculating motion vectors on the fly. + */ +#ifndef SMAA_UV_BASED_REPROJECTION +#define SMAA_UV_BASED_REPROJECTION 0 +#endif + +/** + * SMAA_REPROJECTION_WEIGHT_SCALE controls the velocity weighting. It allows to + * remove ghosting trails behind the moving object, which are not removed by + * just using reprojection. Using low values will exhibit ghosting, while using + * high values will disable temporal supersampling under motion. + * + * Behind the scenes, velocity weighting removes temporal supersampling when + * the velocity of the subsamples differs (meaning they are different objects). + * + * Range: [0, 80] + */ +#ifndef SMAA_REPROJECTION_WEIGHT_SCALE +#define SMAA_REPROJECTION_WEIGHT_SCALE 30.0 +#endif + +/** + * On some compilers, discard cannot be used in vertex shaders. Thus, they need + * to be compiled separately. + */ +#ifndef SMAA_INCLUDE_VS +#define SMAA_INCLUDE_VS 1 +#endif +#ifndef SMAA_INCLUDE_PS +#define SMAA_INCLUDE_PS 1 +#endif + +//----------------------------------------------------------------------------- +// Texture Access Defines + +#ifndef SMAA_AREATEX_SELECT +#if defined(SMAA_HLSL_3) +#define SMAA_AREATEX_SELECT(sample) sample.ra +#else +#define SMAA_AREATEX_SELECT(sample) sample.rg +#endif +#endif + +#ifndef SMAA_SEARCHTEX_SELECT +#define SMAA_SEARCHTEX_SELECT(sample) sample.r +#endif + +#ifndef SMAA_DECODE_VELOCITY +#define SMAA_DECODE_VELOCITY(sample) sample.rg +#endif + +//----------------------------------------------------------------------------- +// Non-Configurable Defines + +#define SMAA_AREATEX_MAX_DISTANCE 16 +#define SMAA_AREATEX_MAX_DISTANCE_DIAG 20 +#define SMAA_AREATEX_PIXEL_SIZE (1.0 / float2(160.0, 560.0)) +#define SMAA_AREATEX_SUBTEX_SIZE (1.0 / 7.0) +#define SMAA_SEARCHTEX_SIZE float2(66.0, 33.0) +#define SMAA_SEARCHTEX_PACKED_SIZE float2(64.0, 16.0) +#define SMAA_CORNER_ROUNDING_NORM (float(SMAA_CORNER_ROUNDING) / 100.0) + +//----------------------------------------------------------------------------- +// Porting Functions + +#if defined(SMAA_HLSL_3) +#define SMAATexture2D(tex) sampler2D tex +#define SMAATexturePass2D(tex) tex +#define SMAASampleLevelZero(tex, coord) tex2Dlod(tex, float4(coord, 0.0, 0.0)) +#define SMAASampleLevelZeroPoint(tex, coord) tex2Dlod(tex, float4(coord, 0.0, 0.0)) +#define SMAASampleLevelZeroOffset(tex, coord, offset) tex2Dlod(tex, float4(coord + offset * SMAA_RT_METRICS.xy, 0.0, 0.0)) +#define SMAASample(tex, coord) tex2D(tex, coord) +#define SMAASamplePoint(tex, coord) tex2D(tex, coord) +#define SMAASampleOffset(tex, coord, offset) tex2D(tex, coord + offset * SMAA_RT_METRICS.xy) +//#define SMAA_FLATTEN [flatten] +//#define SMAA_BRANCH [branch] +#define SMAA_FLATTEN +#define SMAA_BRANCH +#endif +#if defined(SMAA_HLSL_4) || defined(SMAA_HLSL_4_1) +//SamplerState LinearSampler { Filter = MIN_MAG_LINEAR_MIP_POINT; AddressU = Clamp; AddressV = Clamp; }; +//SamplerState PointSampler { Filter = MIN_MAG_MIP_POINT; AddressU = Clamp; AddressV = Clamp; }; +#define SMAATexture2D(tex) Texture2D tex +#define SMAATexturePass2D(tex) tex +#define SMAASampleLevelZero(tex, coord) tex.SampleLevel(LinearSampler, coord, 0) +#define SMAASampleLevelZeroPoint(tex, coord) tex.SampleLevel(PointSampler, coord, 0) +#define SMAASampleLevelZeroOffset(tex, coord, offset) tex.SampleLevel(LinearSampler, coord, 0, offset) +#define SMAASample(tex, coord) tex.Sample(LinearSampler, coord) +#define SMAASamplePoint(tex, coord) tex.Sample(PointSampler, coord) +#define SMAASampleOffset(tex, coord, offset) tex.Sample(LinearSampler, coord, offset) +#define SMAA_FLATTEN [flatten] +#define SMAA_BRANCH [branch] +#define SMAATexture2DMS2(tex) Texture2DMS tex +#define SMAALoad(tex, pos, sample) tex.Load(pos, sample) +#if defined(SMAA_HLSL_4_1) +#define SMAAGather(tex, coord) tex.Gather(LinearSampler, coord, 0) +#endif +#endif +#if defined(SMAA_GLSL_3) || defined(SMAA_GLSL_4) +#define SMAATexture2D(tex) sampler2D tex +#define SMAATexturePass2D(tex) tex +#define SMAASampleLevelZero(tex, coord) textureLod(tex, coord, 0.0) +#define SMAASampleLevelZeroPoint(tex, coord) textureLod(tex, coord, 0.0) +#define SMAASampleLevelZeroOffset(tex, coord, offset) textureLodOffset(tex, coord, 0.0, offset) +#define SMAASample(tex, coord) texture(tex, coord) +#define SMAASamplePoint(tex, coord) texture(tex, coord) +#define SMAASampleOffset(tex, coord, offset) texture(tex, coord, offset) +#define SMAA_FLATTEN +#define SMAA_BRANCH +#define lerp(a, b, t) mix(a, b, t) +#define saturate(a) clamp(a, 0.0, 1.0) +#if defined(SMAA_GLSL_4) +#define mad(a, b, c) fma(a, b, c) +#define SMAAGather(tex, coord) textureGather(tex, coord) +#else +#define mad(a, b, c) (a * b + c) +#endif +#define float2 vec2 +#define float3 vec3 +#define float4 vec4 +#define int2 ivec2 +#define int3 ivec3 +#define int4 ivec4 +#define bool2 bvec2 +#define bool3 bvec3 +#define bool4 bvec4 +#endif + +#if !defined(SMAA_HLSL_3) && !defined(SMAA_HLSL_4) && !defined(SMAA_HLSL_4_1) && !defined(SMAA_GLSL_3) && !defined(SMAA_GLSL_4) && !defined(SMAA_CUSTOM_SL) +#error you must define the shading language: SMAA_HLSL_*, SMAA_GLSL_* or SMAA_CUSTOM_SL +#endif + +//----------------------------------------------------------------------------- +// Misc functions + +/** + * Gathers current pixel, and the top-left neighbors. + */ +float3 SMAAGatherNeighbours(float2 texcoord, + float4 offset[3], + SMAATexture2D(tex)) { + #ifdef SMAAGather + return SMAAGather(tex, texcoord + SMAA_RT_METRICS.xy * float2(-0.5, -0.5)).grb; + #else + float P = SMAASamplePoint(tex, texcoord).r; + float Pleft = SMAASamplePoint(tex, offset[0].xy).r; + float Ptop = SMAASamplePoint(tex, offset[0].zw).r; + return float3(P, Pleft, Ptop); + #endif +} + +/** + * Adjusts the threshold by means of predication. + */ +float2 SMAACalculatePredicatedThreshold(float2 texcoord, + float4 offset[3], + SMAATexture2D(predicationTex)) { + float3 neighbours = SMAAGatherNeighbours(texcoord, offset, SMAATexturePass2D(predicationTex)); + float2 delta = abs(neighbours.xx - neighbours.yz); + float2 edges = step(SMAA_PREDICATION_THRESHOLD, delta); + return SMAA_PREDICATION_SCALE * SMAA_THRESHOLD * (1.0 - SMAA_PREDICATION_STRENGTH * edges); +} + +/** + * Conditional move: + */ +void SMAAMovc(bool2 cond, inout float2 variable, float2 value) { + SMAA_FLATTEN if (cond.x) variable.x = value.x; + SMAA_FLATTEN if (cond.y) variable.y = value.y; +} + +void SMAAMovc(bool4 cond, inout float4 variable, float4 value) { + SMAAMovc(cond.xy, variable.xy, value.xy); + SMAAMovc(cond.zw, variable.zw, value.zw); +} + + +#if SMAA_INCLUDE_VS +//----------------------------------------------------------------------------- +// Vertex Shaders + +/** + * Edge Detection Vertex Shader + */ +void SMAAEdgeDetectionVS(float2 texcoord, + out float4 offset[3]) { + offset[0] = mad(SMAA_RT_METRICS.xyxy, float4(-1.0, 0.0, 0.0, -1.0), texcoord.xyxy); + offset[1] = mad(SMAA_RT_METRICS.xyxy, float4( 1.0, 0.0, 0.0, 1.0), texcoord.xyxy); + offset[2] = mad(SMAA_RT_METRICS.xyxy, float4(-2.0, 0.0, 0.0, -2.0), texcoord.xyxy); +} + +/** + * Blend Weight Calculation Vertex Shader + */ +void SMAABlendingWeightCalculationVS(float2 texcoord, + out float2 pixcoord, + out float4 offset[3]) { + pixcoord = texcoord * SMAA_RT_METRICS.zw; + + // We will use these offsets for the searches later on (see @PSEUDO_GATHER4): + offset[0] = mad(SMAA_RT_METRICS.xyxy, float4(-0.25, -0.125, 1.25, -0.125), texcoord.xyxy); + offset[1] = mad(SMAA_RT_METRICS.xyxy, float4(-0.125, -0.25, -0.125, 1.25), texcoord.xyxy); + + // And these for the searches, they indicate the ends of the loops: + offset[2] = mad(SMAA_RT_METRICS.xxyy, + float4(-2.0, 2.0, -2.0, 2.0) * float(SMAA_MAX_SEARCH_STEPS), + float4(offset[0].xz, offset[1].yw)); +} + +/** + * Neighborhood Blending Vertex Shader + */ +void SMAANeighborhoodBlendingVS(float2 texcoord, + out float4 offset) { + offset = mad(SMAA_RT_METRICS.xyxy, float4( 1.0, 0.0, 0.0, 1.0), texcoord.xyxy); +} +#endif // SMAA_INCLUDE_VS + +#if SMAA_INCLUDE_PS +//----------------------------------------------------------------------------- +// Edge Detection Pixel Shaders (First Pass) + +/** + * Luma Edge Detection + * + * IMPORTANT NOTICE: luma edge detection requires gamma-corrected colors, and + * thus 'colorTex' should be a non-sRGB texture. + */ +float2 SMAALumaEdgeDetectionPS(float2 texcoord, + float4 offset[3], + SMAATexture2D(colorTex) + #if SMAA_PREDICATION + , SMAATexture2D(predicationTex) + #endif + ) { + // Calculate the threshold: + #if SMAA_PREDICATION + float2 threshold = SMAACalculatePredicatedThreshold(texcoord, offset, SMAATexturePass2D(predicationTex)); + #else + float2 threshold = float2(SMAA_THRESHOLD, SMAA_THRESHOLD); + #endif + + // Calculate lumas: + float3 weights = float3(0.2126, 0.7152, 0.0722); + float L = dot(SMAASamplePoint(colorTex, texcoord).rgb, weights); + + float Lleft = dot(SMAASamplePoint(colorTex, offset[0].xy).rgb, weights); + float Ltop = dot(SMAASamplePoint(colorTex, offset[0].zw).rgb, weights); + + // We do the usual threshold: + float4 delta; + delta.xy = abs(L - float2(Lleft, Ltop)); + float2 edges = step(threshold, delta.xy); + + // Then discard if there is no edge: + if (dot(edges, float2(1.0, 1.0)) == 0.0) + discard; + + // Calculate right and bottom deltas: + float Lright = dot(SMAASamplePoint(colorTex, offset[1].xy).rgb, weights); + float Lbottom = dot(SMAASamplePoint(colorTex, offset[1].zw).rgb, weights); + delta.zw = abs(L - float2(Lright, Lbottom)); + + // Calculate the maximum delta in the direct neighborhood: + float2 maxDelta = max(delta.xy, delta.zw); + + // Calculate left-left and top-top deltas: + float Lleftleft = dot(SMAASamplePoint(colorTex, offset[2].xy).rgb, weights); + float Ltoptop = dot(SMAASamplePoint(colorTex, offset[2].zw).rgb, weights); + delta.zw = abs(float2(Lleft, Ltop) - float2(Lleftleft, Ltoptop)); + + // Calculate the final maximum delta: + maxDelta = max(maxDelta.xy, delta.zw); + float finalDelta = max(maxDelta.x, maxDelta.y); + + // Local contrast adaptation: +#if !defined(SHADER_API_OPENGL) + edges.xy *= step(finalDelta, SMAA_LOCAL_CONTRAST_ADAPTATION_FACTOR * delta.xy); +#endif + + return edges; +} + +/** + * Color Edge Detection + * + * IMPORTANT NOTICE: color edge detection requires gamma-corrected colors, and + * thus 'colorTex' should be a non-sRGB texture. + */ +float2 SMAAColorEdgeDetectionPS(float2 texcoord, + float4 offset[3], + SMAATexture2D(colorTex) + #if SMAA_PREDICATION + , SMAATexture2D(predicationTex) + #endif + ) { + // Calculate the threshold: + #if SMAA_PREDICATION + float2 threshold = SMAACalculatePredicatedThreshold(texcoord, offset, predicationTex); + #else + float2 threshold = float2(SMAA_THRESHOLD, SMAA_THRESHOLD); + #endif + + // Calculate color deltas: + float4 delta; + float3 C = SMAASamplePoint(colorTex, texcoord).rgb; + + float3 Cleft = SMAASamplePoint(colorTex, offset[0].xy).rgb; + float3 t = abs(C - Cleft); + delta.x = max(max(t.r, t.g), t.b); + + float3 Ctop = SMAASamplePoint(colorTex, offset[0].zw).rgb; + t = abs(C - Ctop); + delta.y = max(max(t.r, t.g), t.b); + + // We do the usual threshold: + float2 edges = step(threshold, delta.xy); + + // Then discard if there is no edge: + if (dot(edges, float2(1.0, 1.0)) == 0.0) + discard; + + // Calculate right and bottom deltas: + float3 Cright = SMAASamplePoint(colorTex, offset[1].xy).rgb; + t = abs(C - Cright); + delta.z = max(max(t.r, t.g), t.b); + + float3 Cbottom = SMAASamplePoint(colorTex, offset[1].zw).rgb; + t = abs(C - Cbottom); + delta.w = max(max(t.r, t.g), t.b); + + // Calculate the maximum delta in the direct neighborhood: + float2 maxDelta = max(delta.xy, delta.zw); + + // Calculate left-left and top-top deltas: + float3 Cleftleft = SMAASamplePoint(colorTex, offset[2].xy).rgb; + t = abs(Cleft - Cleftleft); + delta.z = max(max(t.r, t.g), t.b); + + float3 Ctoptop = SMAASamplePoint(colorTex, offset[2].zw).rgb; + t = abs(Ctop - Ctoptop); + delta.w = max(max(t.r, t.g), t.b); + + // Calculate the final maximum delta: + maxDelta = max(maxDelta.xy, delta.zw); + float finalDelta = max(maxDelta.x, maxDelta.y); + + // Local contrast adaptation: +#if !defined(SHADER_API_OPENGL) + edges.xy *= step(finalDelta, SMAA_LOCAL_CONTRAST_ADAPTATION_FACTOR * delta.xy); +#endif + + return edges; +} + +/** + * Depth Edge Detection + */ +float2 SMAADepthEdgeDetectionPS(float2 texcoord, + float4 offset[3], + SMAATexture2D(depthTex)) { + float3 neighbours = SMAAGatherNeighbours(texcoord, offset, SMAATexturePass2D(depthTex)); + float2 delta = abs(neighbours.xx - float2(neighbours.y, neighbours.z)); + float2 edges = step(SMAA_DEPTH_THRESHOLD, delta); + + if (dot(edges, float2(1.0, 1.0)) == 0.0) + discard; + + return edges; +} + +//----------------------------------------------------------------------------- +// Diagonal Search Functions + +#if !defined(SMAA_DISABLE_DIAG_DETECTION) + +/** + * Allows to decode two binary values from a bilinear-filtered access. + */ +float2 SMAADecodeDiagBilinearAccess(float2 e) { + // Bilinear access for fetching 'e' have a 0.25 offset, and we are + // interested in the R and G edges: + // + // +---G---+-------+ + // | x o R x | + // +-------+-------+ + // + // Then, if one of these edge is enabled: + // Red: (0.75 * X + 0.25 * 1) => 0.25 or 1.0 + // Green: (0.75 * 1 + 0.25 * X) => 0.75 or 1.0 + // + // This function will unpack the values (mad + mul + round): + // wolframalpha.com: round(x * abs(5 * x - 5 * 0.75)) plot 0 to 1 + e.r = e.r * abs(5.0 * e.r - 5.0 * 0.75); + return round(e); +} + +float4 SMAADecodeDiagBilinearAccess(float4 e) { + e.rb = e.rb * abs(5.0 * e.rb - 5.0 * 0.75); + return round(e); +} + +/** + * These functions allows to perform diagonal pattern searches. + */ +float2 SMAASearchDiag1(SMAATexture2D(edgesTex), float2 texcoord, float2 dir, out float2 e) { + float4 coord = float4(texcoord, -1.0, 1.0); + float3 t = float3(SMAA_RT_METRICS.xy, 1.0); + while (coord.z < float(SMAA_MAX_SEARCH_STEPS_DIAG - 1) && + coord.w > 0.9) { + coord.xyz = mad(t, float3(dir, 1.0), coord.xyz); + e = SMAASampleLevelZero(edgesTex, coord.xy).rg; + coord.w = dot(e, float2(0.5, 0.5)); + } + return coord.zw; +} + +float2 SMAASearchDiag2(SMAATexture2D(edgesTex), float2 texcoord, float2 dir, out float2 e) { + float4 coord = float4(texcoord, -1.0, 1.0); + coord.x += 0.25 * SMAA_RT_METRICS.x; // See @SearchDiag2Optimization + float3 t = float3(SMAA_RT_METRICS.xy, 1.0); + while (coord.z < float(SMAA_MAX_SEARCH_STEPS_DIAG - 1) && + coord.w > 0.9) { + coord.xyz = mad(t, float3(dir, 1.0), coord.xyz); + + // @SearchDiag2Optimization + // Fetch both edges at once using bilinear filtering: + e = SMAASampleLevelZero(edgesTex, coord.xy).rg; + e = SMAADecodeDiagBilinearAccess(e); + + // Non-optimized version: + // e.g = SMAASampleLevelZero(edgesTex, coord.xy).g; + // e.r = SMAASampleLevelZeroOffset(edgesTex, coord.xy, int2(1, 0)).r; + + coord.w = dot(e, float2(0.5, 0.5)); + } + return coord.zw; +} + +/** + * Similar to SMAAArea, this calculates the area corresponding to a certain + * diagonal distance and crossing edges 'e'. + */ +float2 SMAAAreaDiag(SMAATexture2D(areaTex), float2 dist, float2 e, float offset) { + float2 texcoord = mad(float2(SMAA_AREATEX_MAX_DISTANCE_DIAG, SMAA_AREATEX_MAX_DISTANCE_DIAG), e, dist); + + // We do a scale and bias for mapping to texel space: + texcoord = mad(SMAA_AREATEX_PIXEL_SIZE, texcoord, 0.5 * SMAA_AREATEX_PIXEL_SIZE); + + // Diagonal areas are on the second half of the texture: + texcoord.x += 0.5; + + // Move to proper place, according to the subpixel offset: + texcoord.y += SMAA_AREATEX_SUBTEX_SIZE * offset; + + // Do it! + return SMAA_AREATEX_SELECT(SMAASampleLevelZero(areaTex, texcoord)); +} + +/** + * This searches for diagonal patterns and returns the corresponding weights. + */ +float2 SMAACalculateDiagWeights(SMAATexture2D(edgesTex), SMAATexture2D(areaTex), float2 texcoord, float2 e, float4 subsampleIndices) { + float2 weights = float2(0.0, 0.0); + + // Search for the line ends: + float4 d; + float2 end; + if (e.r > 0.0) { + d.xz = SMAASearchDiag1(SMAATexturePass2D(edgesTex), texcoord, float2(-1.0, 1.0), end); + d.x += float(end.y > 0.9); + } else + d.xz = float2(0.0, 0.0); + d.yw = SMAASearchDiag1(SMAATexturePass2D(edgesTex), texcoord, float2(1.0, -1.0), end); + + SMAA_BRANCH + if (d.x + d.y > 2.0) { // d.x + d.y + 1 > 3 + // Fetch the crossing edges: + float4 coords = mad(float4(-d.x + 0.25, d.x, d.y, -d.y - 0.25), SMAA_RT_METRICS.xyxy, texcoord.xyxy); + float4 c; + c.xy = SMAASampleLevelZeroOffset(edgesTex, coords.xy, int2(-1, 0)).rg; + c.zw = SMAASampleLevelZeroOffset(edgesTex, coords.zw, int2( 1, 0)).rg; + c.yxwz = SMAADecodeDiagBilinearAccess(c.xyzw); + + // Non-optimized version: + // float4 coords = mad(float4(-d.x, d.x, d.y, -d.y), SMAA_RT_METRICS.xyxy, texcoord.xyxy); + // float4 c; + // c.x = SMAASampleLevelZeroOffset(edgesTex, coords.xy, int2(-1, 0)).g; + // c.y = SMAASampleLevelZeroOffset(edgesTex, coords.xy, int2( 0, 0)).r; + // c.z = SMAASampleLevelZeroOffset(edgesTex, coords.zw, int2( 1, 0)).g; + // c.w = SMAASampleLevelZeroOffset(edgesTex, coords.zw, int2( 1, -1)).r; + + // Merge crossing edges at each side into a single value: + float2 cc = mad(float2(2.0, 2.0), c.xz, c.yw); + + // Remove the crossing edge if we didn't found the end of the line: + SMAAMovc(bool2(step(float2(0.9, 0.9), d.zw)), cc, float2(0.0, 0.0)); + + // Fetch the areas for this line: + weights += SMAAAreaDiag(SMAATexturePass2D(areaTex), d.xy, cc, subsampleIndices.z); + } + + // Search for the line ends: + d.xz = SMAASearchDiag2(SMAATexturePass2D(edgesTex), texcoord, float2(-1.0, -1.0), end); + if (SMAASampleLevelZeroOffset(edgesTex, texcoord, int2(1, 0)).r > 0.0) { + d.yw = SMAASearchDiag2(SMAATexturePass2D(edgesTex), texcoord, float2(1.0, 1.0), end); + d.y += float(end.y > 0.9); + } else + d.yw = float2(0.0, 0.0); + + SMAA_BRANCH + if (d.x + d.y > 2.0) { // d.x + d.y + 1 > 3 + // Fetch the crossing edges: + float4 coords = mad(float4(-d.x, -d.x, d.y, d.y), SMAA_RT_METRICS.xyxy, texcoord.xyxy); + float4 c; + c.x = SMAASampleLevelZeroOffset(edgesTex, coords.xy, int2(-1, 0)).g; + c.y = SMAASampleLevelZeroOffset(edgesTex, coords.xy, int2( 0, -1)).r; + c.zw = SMAASampleLevelZeroOffset(edgesTex, coords.zw, int2( 1, 0)).gr; + float2 cc = mad(float2(2.0, 2.0), c.xz, c.yw); + + // Remove the crossing edge if we didn't found the end of the line: + SMAAMovc(bool2(step(float2(0.9, 0.9), d.zw)), cc, float2(0.0, 0.0)); + + // Fetch the areas for this line: + weights += SMAAAreaDiag(SMAATexturePass2D(areaTex), d.xy, cc, subsampleIndices.w).gr; + } + + return weights; +} +#endif + +//----------------------------------------------------------------------------- +// Horizontal/Vertical Search Functions + +/** + * This allows to determine how much length should we add in the last step + * of the searches. It takes the bilinearly interpolated edge (see + * @PSEUDO_GATHER4), and adds 0, 1 or 2, depending on which edges and + * crossing edges are active. + */ +float SMAASearchLength(SMAATexture2D(searchTex), float2 e, float offset) { + // The texture is flipped vertically, with left and right cases taking half + // of the space horizontally: + float2 scale = SMAA_SEARCHTEX_SIZE * float2(0.5, -1.0); + float2 bias = SMAA_SEARCHTEX_SIZE * float2(offset, 1.0); + + // Scale and bias to access texel centers: + scale += float2(-1.0, 1.0); + bias += float2( 0.5, -0.5); + + // Convert from pixel coordinates to texcoords: + // (We use SMAA_SEARCHTEX_PACKED_SIZE because the texture is cropped) + scale *= 1.0 / SMAA_SEARCHTEX_PACKED_SIZE; + bias *= 1.0 / SMAA_SEARCHTEX_PACKED_SIZE; + + // Lookup the search texture: + return SMAA_SEARCHTEX_SELECT(SMAASampleLevelZero(searchTex, mad(scale, e, bias))); +} + +/** + * Horizontal/vertical search functions for the 2nd pass. + */ +float SMAASearchXLeft(SMAATexture2D(edgesTex), SMAATexture2D(searchTex), float2 texcoord, float end) { + /** + * @PSEUDO_GATHER4 + * This texcoord has been offset by (-0.25, -0.125) in the vertex shader to + * sample between edge, thus fetching four edges in a row. + * Sampling with different offsets in each direction allows to disambiguate + * which edges are active from the four fetched ones. + */ + float2 e = float2(0.0, 1.0); + while (texcoord.x > end && + e.g > 0.8281 && // Is there some edge not activated? + e.r == 0.0) { // Or is there a crossing edge that breaks the line? + e = SMAASampleLevelZero(edgesTex, texcoord).rg; + texcoord = mad(-float2(2.0, 0.0), SMAA_RT_METRICS.xy, texcoord); + } + + float offset = mad(-(255.0 / 127.0), SMAASearchLength(SMAATexturePass2D(searchTex), e, 0.0), 3.25); + return mad(SMAA_RT_METRICS.x, offset, texcoord.x); + + // Non-optimized version: + // We correct the previous (-0.25, -0.125) offset we applied: + // texcoord.x += 0.25 * SMAA_RT_METRICS.x; + + // The searches are bias by 1, so adjust the coords accordingly: + // texcoord.x += SMAA_RT_METRICS.x; + + // Disambiguate the length added by the last step: + // texcoord.x += 2.0 * SMAA_RT_METRICS.x; // Undo last step + // texcoord.x -= SMAA_RT_METRICS.x * (255.0 / 127.0) * SMAASearchLength(SMAATexturePass2D(searchTex), e, 0.0); + // return mad(SMAA_RT_METRICS.x, offset, texcoord.x); +} + +float SMAASearchXRight(SMAATexture2D(edgesTex), SMAATexture2D(searchTex), float2 texcoord, float end) { + float2 e = float2(0.0, 1.0); + while (texcoord.x < end && + e.g > 0.8281 && // Is there some edge not activated? + e.r == 0.0) { // Or is there a crossing edge that breaks the line? + e = SMAASampleLevelZero(edgesTex, texcoord).rg; + texcoord = mad(float2(2.0, 0.0), SMAA_RT_METRICS.xy, texcoord); + } + float offset = mad(-(255.0 / 127.0), SMAASearchLength(SMAATexturePass2D(searchTex), e, 0.5), 3.25); + return mad(-SMAA_RT_METRICS.x, offset, texcoord.x); +} + +float SMAASearchYUp(SMAATexture2D(edgesTex), SMAATexture2D(searchTex), float2 texcoord, float end) { + float2 e = float2(1.0, 0.0); + while (texcoord.y > end && + e.r > 0.8281 && // Is there some edge not activated? + e.g == 0.0) { // Or is there a crossing edge that breaks the line? + e = SMAASampleLevelZero(edgesTex, texcoord).rg; + texcoord = mad(-float2(0.0, 2.0), SMAA_RT_METRICS.xy, texcoord); + } + float offset = mad(-(255.0 / 127.0), SMAASearchLength(SMAATexturePass2D(searchTex), e.gr, 0.0), 3.25); + return mad(SMAA_RT_METRICS.y, offset, texcoord.y); +} + +float SMAASearchYDown(SMAATexture2D(edgesTex), SMAATexture2D(searchTex), float2 texcoord, float end) { + float2 e = float2(1.0, 0.0); + while (texcoord.y < end && + e.r > 0.8281 && // Is there some edge not activated? + e.g == 0.0) { // Or is there a crossing edge that breaks the line? + e = SMAASampleLevelZero(edgesTex, texcoord).rg; + texcoord = mad(float2(0.0, 2.0), SMAA_RT_METRICS.xy, texcoord); + } + float offset = mad(-(255.0 / 127.0), SMAASearchLength(SMAATexturePass2D(searchTex), e.gr, 0.5), 3.25); + return mad(-SMAA_RT_METRICS.y, offset, texcoord.y); +} + +/** + * Ok, we have the distance and both crossing edges. So, what are the areas + * at each side of current edge? + */ +float2 SMAAArea(SMAATexture2D(areaTex), float2 dist, float e1, float e2, float offset) { + // Rounding prevents precision errors of bilinear filtering: + float2 texcoord = mad(float2(SMAA_AREATEX_MAX_DISTANCE, SMAA_AREATEX_MAX_DISTANCE), round(4.0 * float2(e1, e2)), dist); + + // We do a scale and bias for mapping to texel space: + texcoord = mad(SMAA_AREATEX_PIXEL_SIZE, texcoord, 0.5 * SMAA_AREATEX_PIXEL_SIZE); + + // Move to proper place, according to the subpixel offset: + texcoord.y = mad(SMAA_AREATEX_SUBTEX_SIZE, offset, texcoord.y); + + // Do it! + return SMAA_AREATEX_SELECT(SMAASampleLevelZero(areaTex, texcoord)); +} + +//----------------------------------------------------------------------------- +// Corner Detection Functions + +void SMAADetectHorizontalCornerPattern(SMAATexture2D(edgesTex), inout float2 weights, float4 texcoord, float2 d) { + #if !defined(SMAA_DISABLE_CORNER_DETECTION) + float2 leftRight = step(d.xy, d.yx); + float2 rounding = (1.0 - SMAA_CORNER_ROUNDING_NORM) * leftRight; + + rounding /= leftRight.x + leftRight.y; // Reduce blending for pixels in the center of a line. + + float2 factor = float2(1.0, 1.0); + factor.x -= rounding.x * SMAASampleLevelZeroOffset(edgesTex, texcoord.xy, int2(0, 1)).r; + factor.x -= rounding.y * SMAASampleLevelZeroOffset(edgesTex, texcoord.zw, int2(1, 1)).r; + factor.y -= rounding.x * SMAASampleLevelZeroOffset(edgesTex, texcoord.xy, int2(0, -2)).r; + factor.y -= rounding.y * SMAASampleLevelZeroOffset(edgesTex, texcoord.zw, int2(1, -2)).r; + + weights *= saturate(factor); + #endif +} + +void SMAADetectVerticalCornerPattern(SMAATexture2D(edgesTex), inout float2 weights, float4 texcoord, float2 d) { + #if !defined(SMAA_DISABLE_CORNER_DETECTION) + float2 leftRight = step(d.xy, d.yx); + float2 rounding = (1.0 - SMAA_CORNER_ROUNDING_NORM) * leftRight; + + rounding /= leftRight.x + leftRight.y; + + float2 factor = float2(1.0, 1.0); + factor.x -= rounding.x * SMAASampleLevelZeroOffset(edgesTex, texcoord.xy, int2( 1, 0)).g; + factor.x -= rounding.y * SMAASampleLevelZeroOffset(edgesTex, texcoord.zw, int2( 1, 1)).g; + factor.y -= rounding.x * SMAASampleLevelZeroOffset(edgesTex, texcoord.xy, int2(-2, 0)).g; + factor.y -= rounding.y * SMAASampleLevelZeroOffset(edgesTex, texcoord.zw, int2(-2, 1)).g; + + weights *= saturate(factor); + #endif +} + + +//----------------------------------------------------------------------------- +// Blending Weight Calculation Pixel Shader (Second Pass) + +float4 SMAABlendingWeightCalculationPS(float2 texcoord, + float2 pixcoord, + float4 offset[3], + SMAATexture2D(edgesTex), + SMAATexture2D(areaTex), + SMAATexture2D(searchTex), + float4 subsampleIndices) { // Just pass zero for SMAA 1x, see @SUBSAMPLE_INDICES. + float4 weights = float4(0.0, 0.0, 0.0, 0.0); + + float2 e = SMAASample(edgesTex, texcoord).rg; + + SMAA_BRANCH + if (e.g > 0.0) { // Edge at north + #if !defined(SMAA_DISABLE_DIAG_DETECTION) + // Diagonals have both north and west edges, so searching for them in + // one of the boundaries is enough. + weights.rg = SMAACalculateDiagWeights(SMAATexturePass2D(edgesTex), SMAATexturePass2D(areaTex), texcoord, e, subsampleIndices); + + // We give priority to diagonals, so if we find a diagonal we skip + // horizontal/vertical processing. + SMAA_BRANCH + if (weights.r == -weights.g) { // weights.r + weights.g == 0.0 + #endif + + float2 d; + + // Find the distance to the left: + float3 coords; + coords.x = SMAASearchXLeft(SMAATexturePass2D(edgesTex), SMAATexturePass2D(searchTex), offset[0].xy, offset[2].x); + coords.y = offset[1].y; // offset[1].y = texcoord.y - 0.25 * SMAA_RT_METRICS.y (@CROSSING_OFFSET) + d.x = coords.x; + + // Now fetch the left crossing edges, two at a time using bilinear + // filtering. Sampling at -0.25 (see @CROSSING_OFFSET) enables to + // discern what value each edge has: + float e1 = SMAASampleLevelZero(edgesTex, coords.xy).r; + + // Find the distance to the right: + coords.z = SMAASearchXRight(SMAATexturePass2D(edgesTex), SMAATexturePass2D(searchTex), offset[0].zw, offset[2].y); + d.y = coords.z; + + // We want the distances to be in pixel units (doing this here allow to + // better interleave arithmetic and memory accesses): + d = abs(round(mad(SMAA_RT_METRICS.zz, d, -pixcoord.xx))); + + // SMAAArea below needs a sqrt, as the areas texture is compressed + // quadratically: + float2 sqrt_d = sqrt(d); + + // Fetch the right crossing edges: + float e2 = SMAASampleLevelZeroOffset(edgesTex, coords.zy, int2(1, 0)).r; + + // Ok, we know how this pattern looks like, now it is time for getting + // the actual area: + weights.rg = SMAAArea(SMAATexturePass2D(areaTex), sqrt_d, e1, e2, subsampleIndices.y); + + // Fix corners: + coords.y = texcoord.y; + SMAADetectHorizontalCornerPattern(SMAATexturePass2D(edgesTex), weights.rg, coords.xyzy, d); + + #if !defined(SMAA_DISABLE_DIAG_DETECTION) + } else + e.r = 0.0; // Skip vertical processing. + #endif + } + + SMAA_BRANCH + if (e.r > 0.0) { // Edge at west + float2 d; + + // Find the distance to the top: + float3 coords; + coords.y = SMAASearchYUp(SMAATexturePass2D(edgesTex), SMAATexturePass2D(searchTex), offset[1].xy, offset[2].z); + coords.x = offset[0].x; // offset[1].x = texcoord.x - 0.25 * SMAA_RT_METRICS.x; + d.x = coords.y; + + // Fetch the top crossing edges: + float e1 = SMAASampleLevelZero(edgesTex, coords.xy).g; + + // Find the distance to the bottom: + coords.z = SMAASearchYDown(SMAATexturePass2D(edgesTex), SMAATexturePass2D(searchTex), offset[1].zw, offset[2].w); + d.y = coords.z; + + // We want the distances to be in pixel units: + d = abs(round(mad(SMAA_RT_METRICS.ww, d, -pixcoord.yy))); + + // SMAAArea below needs a sqrt, as the areas texture is compressed + // quadratically: + float2 sqrt_d = sqrt(d); + + // Fetch the bottom crossing edges: + float e2 = SMAASampleLevelZeroOffset(edgesTex, coords.xz, int2(0, 1)).g; + + // Get the area for this direction: + weights.ba = SMAAArea(SMAATexturePass2D(areaTex), sqrt_d, e1, e2, subsampleIndices.x); + + // Fix corners: + coords.x = texcoord.x; + SMAADetectVerticalCornerPattern(SMAATexturePass2D(edgesTex), weights.ba, coords.xyxz, d); + } + + return weights; +} + +//----------------------------------------------------------------------------- +// UV-based reprojection functions + +#if SMAA_UV_BASED_REPROJECTION +float2 SMAAReproject(float2 texcoord) +{ + // UV to clip-position: + // -- This must be sampled at exactly mip 0 due to possible gradient divergence + // -- as this function is called within a control flow block down below. + float depth = SMAASampleLevelZero(_CameraDepthTexture, texcoord).r; + float3 clipPosition = float3(2. * texcoord - 1., depth); + + // Reproject + float4 previousClipPosition = mul(_ReprojectionMatrix, float4(clipPosition, 1.)); + previousClipPosition.xyz /= previousClipPosition.w; + + // Clip-position to UV + return (.5 * previousClipPosition.xy + .5); +} +#endif + +//----------------------------------------------------------------------------- +// Neighborhood Blending Pixel Shader (Third Pass) + +float4 SMAANeighborhoodBlendingPS(float2 texcoord, + float4 offset, + SMAATexture2D(colorTex), + SMAATexture2D(blendTex) + #if SMAA_REPROJECTION + , SMAATexture2D(velocityTex) + #endif + ) { + // Fetch the blending weights for current pixel: + float4 a; + a.x = SMAASample(blendTex, offset.xy).a; // Right + a.y = SMAASample(blendTex, offset.zw).g; // Top + a.wz = SMAASample(blendTex, texcoord).xz; // Bottom / Left + + // Is there any blending weight with a value greater than 0.0? + SMAA_BRANCH + if (dot(a, float4(1.0, 1.0, 1.0, 1.0)) < 1e-5) { + float4 color = SMAASampleLevelZero(colorTex, texcoord); + + #if SMAA_REPROJECTION + float2 velocity = SMAA_DECODE_VELOCITY(SMAASampleLevelZero(velocityTex, texcoord)); + #elif SMAA_UV_BASED_REPROJECTION + float2 velocity = texcoord - SMAAReproject(texcoord); + #endif + + #if (SMAA_REPROJECTION || SMAA_UV_BASED_REPROJECTION) + // Pack velocity into the alpha channel: + color.a = sqrt(5.0 * length(velocity)); + #endif + + return color; + } else { + bool h = max(a.x, a.z) > max(a.y, a.w); // max(horizontal) > max(vertical) + + // Calculate the blending offsets: + float4 blendingOffset = float4(0.0, a.y, 0.0, a.w); + float2 blendingWeight = a.yw; + SMAAMovc(bool4(h, h, h, h), blendingOffset, float4(a.x, 0.0, a.z, 0.0)); + SMAAMovc(bool2(h, h), blendingWeight, a.xz); + blendingWeight /= dot(blendingWeight, float2(1.0, 1.0)); + + // Calculate the texture coordinates: + float4 blendingCoord = mad(blendingOffset, float4(SMAA_RT_METRICS.xy, -SMAA_RT_METRICS.xy), texcoord.xyxy); + + // We exploit bilinear filtering to mix current pixel with the chosen + // neighbor: + float4 color = blendingWeight.x * SMAASampleLevelZero(colorTex, blendingCoord.xy); + color += blendingWeight.y * SMAASampleLevelZero(colorTex, blendingCoord.zw); + + #if SMAA_REPROJECTION + // Antialias velocity for proper reprojection in a later stage: + float2 velocity = blendingWeight.x * SMAA_DECODE_VELOCITY(SMAASampleLevelZero(velocityTex, blendingCoord.xy)); + velocity += blendingWeight.y * SMAA_DECODE_VELOCITY(SMAASampleLevelZero(velocityTex, blendingCoord.zw)); + #elif SMAA_UV_BASED_REPROJECTION + // Antialias velocity for proper reprojection in a later stage: + float2 velocity = blendingWeight.x * (blendingCoord.xy - SMAAReproject(blendingCoord.xy)); + velocity += blendingWeight.y * (blendingCoord.zw - SMAAReproject(blendingCoord.zw)); + #endif + + #if (SMAA_REPROJECTION || SMAA_UV_BASED_REPROJECTION) + // Pack velocity into the alpha channel: + color.a = sqrt(5.0 * length(velocity)); + #endif + + return color; + } +} + +//----------------------------------------------------------------------------- +// Temporal Resolve Pixel Shader (Optional Pass) + +float4 SMAAResolvePS(float2 texcoord, + SMAATexture2D(currentColorTex), + SMAATexture2D(previousColorTex) + #if SMAA_REPROJECTION + , SMAATexture2D(velocityTex) + #endif + ) { + #if SMAA_REPROJECTION + // Velocity is assumed to be calculated for motion blur, so we need to + // inverse it for reprojection: + float2 velocity = -SMAA_DECODE_VELOCITY(SMAASamplePoint(velocityTex, texcoord).rg); + #elif SMAA_UV_BASED_REPROJECTION + float2 velocity = SMAAReproject(texcoord) - texcoord; + #endif + + #if (SMAA_REPROJECTION || SMAA_UV_BASED_REPROJECTION) + // Fetch current pixel: + float4 current = SMAASamplePoint(currentColorTex, texcoord); + + // Reproject current coordinates and fetch previous pixel: + float4 previous = SMAASamplePoint(previousColorTex, texcoord + velocity); + + // Attenuate the previous pixel if the velocity is different: + float delta = abs(current.a * current.a - previous.a * previous.a) / 5.0; + float weight = 0.5 * saturate(1.0 - sqrt(delta) * SMAA_REPROJECTION_WEIGHT_SCALE); + + // Blend the pixels according to the calculated weight: + // return lerp(current, previous, weight); + + // Neighbour clamp + // Contributed by pommak + float4 n0 = SMAASampleOffset(currentColorTex, texcoord, float2(-1, -1)); + float4 n1 = SMAASampleOffset(currentColorTex, texcoord, float2(+1, -1)); + float4 n2 = SMAASampleOffset(currentColorTex, texcoord, float2(-1, +1)); + float4 n3 = SMAASampleOffset(currentColorTex, texcoord, float2(+1, +1)); + float4 cmax = max(n0, max(n1, max(n2, n3))); + float4 cmin = min(n0, min(n1, min(n2, n3))); + float4 avg = 0.25 * (n0+n1+n2+n3); + float4 wk = abs(avg - current); + float blend = saturate(lerp(0.35, 0.85, wk)); + + // Clamp previous to neighbours colors + float4 previousClamped = clamp(previous, cmin, cmax); + + float4 color = lerp(lerp(current, previousClamped, 0.5*weight), previousClamped, weight); + return color; + #else + // Just blend the pixels: + float4 current = SMAASamplePoint(currentColorTex, texcoord); + float4 previous = SMAASamplePoint(previousColorTex, texcoord); + return lerp(current, previous, 0.5); + #endif +} + +//----------------------------------------------------------------------------- +// Separate Multisamples Pixel Shader (Optional Pass) + +#ifdef SMAALoad +void SMAASeparatePS(float4 position, + float2 texcoord, + out float4 target0, + out float4 target1, + SMAATexture2DMS2(colorTexMS)) { + int2 pos = int2(position.xy); + target0 = SMAALoad(colorTexMS, pos, 0); + target1 = SMAALoad(colorTexMS, pos, 1); +} +#endif + +//----------------------------------------------------------------------------- +#endif // SMAA_INCLUDE_PS diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.hlsl.meta new file mode 100644 index 0000000..6b0c83c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 3e6879594f0f31c42b64e91e59fe78f6 +timeCreated: 1497734907 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.shader new file mode 100644 index 0000000..8c582c9 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.shader @@ -0,0 +1,103 @@ +Shader "Hidden/PostProcessing/SubpixelMorphologicalAntialiasing" +{ + HLSLINCLUDE + + #pragma exclude_renderers d3d11_9x + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0 - Edge detection (Low) + Pass + { + HLSLPROGRAM + + #pragma vertex VertEdge + #pragma fragment FragEdge + #define SMAA_PRESET_LOW + #include "SubpixelMorphologicalAntialiasingBridge.hlsl" + + ENDHLSL + } + + // 1 - Edge detection (Medium) + Pass + { + HLSLPROGRAM + + #pragma vertex VertEdge + #pragma fragment FragEdge + #define SMAA_PRESET_MEDIUM + #include "SubpixelMorphologicalAntialiasingBridge.hlsl" + + ENDHLSL + } + + // 2 - Edge detection (High) + Pass + { + HLSLPROGRAM + + #pragma vertex VertEdge + #pragma fragment FragEdge + #define SMAA_PRESET_HIGH + #include "SubpixelMorphologicalAntialiasingBridge.hlsl" + + ENDHLSL + } + + // 3 - Blend Weights Calculation (Low) + Pass + { + HLSLPROGRAM + + #pragma vertex VertBlend + #pragma fragment FragBlend + #define SMAA_PRESET_LOW + #include "SubpixelMorphologicalAntialiasingBridge.hlsl" + + ENDHLSL + } + + // 4 - Blend Weights Calculation (Medium) + Pass + { + HLSLPROGRAM + + #pragma vertex VertBlend + #pragma fragment FragBlend + #define SMAA_PRESET_MEDIUM + #include "SubpixelMorphologicalAntialiasingBridge.hlsl" + + ENDHLSL + } + + // 5 - Blend Weights Calculation (High) + Pass + { + HLSLPROGRAM + + #pragma vertex VertBlend + #pragma fragment FragBlend + #define SMAA_PRESET_HIGH + #include "SubpixelMorphologicalAntialiasingBridge.hlsl" + + ENDHLSL + } + + // 6 - Neighborhood Blending + Pass + { + HLSLPROGRAM + + #pragma vertex VertNeighbor + #pragma fragment FragNeighbor + #include "SubpixelMorphologicalAntialiasingBridge.hlsl" + + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.shader.meta new file mode 100644 index 0000000..c3c1968 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasing.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 81af42a93ade3dd46a9b583d4eec76d6 +timeCreated: 1497734907 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl new file mode 100644 index 0000000..988dc49 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl @@ -0,0 +1,120 @@ +#ifndef UNITY_POSTFX_SMAA_BRIDGE +#define UNITY_POSTFX_SMAA_BRIDGE + +#include "../StdLib.hlsl" + +TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); +TEXTURE2D_SAMPLER2D(_BlendTex, sampler_BlendTex); +TEXTURE2D_SAMPLER2D(_AreaTex, sampler_AreaTex); +TEXTURE2D_SAMPLER2D(_SearchTex, sampler_SearchTex); +float4 _MainTex_TexelSize; + +#define SMAA_RT_METRICS _MainTex_TexelSize +#define SMAA_AREATEX_SELECT(s) s.rg +#define SMAA_SEARCHTEX_SELECT(s) s.a +#define LinearSampler sampler_MainTex +#define PointSampler sampler_MainTex + +#include "SubpixelMorphologicalAntialiasing.hlsl" + +// ---------------------------------------------------------------------------------------- +// Edge Detection + +struct VaryingsEdge +{ + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + float4 offsets[3] : TEXCOORD1; +}; + +VaryingsEdge VertEdge(AttributesDefault v) +{ + VaryingsEdge o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); + +#if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); +#endif + + o.offsets[0] = mad(SMAA_RT_METRICS.xyxy, float4(-1.0, 0.0, 0.0, -1.0), o.texcoord.xyxy); + o.offsets[1] = mad(SMAA_RT_METRICS.xyxy, float4( 1.0, 0.0, 0.0, 1.0), o.texcoord.xyxy); + o.offsets[2] = mad(SMAA_RT_METRICS.xyxy, float4(-2.0, 0.0, 0.0, -2.0), o.texcoord.xyxy); + + return o; +} + +float4 FragEdge(VaryingsEdge i) : SV_Target +{ + return float4(SMAAColorEdgeDetectionPS(i.texcoord, i.offsets, _MainTex), 0.0, 0.0); +} + +// ---------------------------------------------------------------------------------------- +// Blend Weights Calculation + +struct VaryingsBlend +{ + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + float2 pixcoord : TEXCOORD1; + float4 offsets[3] : TEXCOORD2; +}; + +VaryingsBlend VertBlend(AttributesDefault v) +{ + VaryingsBlend o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); + +#if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); +#endif + + o.pixcoord = o.texcoord * SMAA_RT_METRICS.zw; + + // We will use these offsets for the searches later on (see @PSEUDO_GATHER4): + o.offsets[0] = mad(SMAA_RT_METRICS.xyxy, float4(-0.250, -0.125, 1.250, -0.125), o.texcoord.xyxy); + o.offsets[1] = mad(SMAA_RT_METRICS.xyxy, float4(-0.125, -0.250, -0.125, 1.250), o.texcoord.xyxy); + + // And these for the searches, they indicate the ends of the loops: + o.offsets[2] = mad(SMAA_RT_METRICS.xxyy, float4(-2.0, 2.0, -2.0, 2.0) * float(SMAA_MAX_SEARCH_STEPS), + float4(o.offsets[0].xz, o.offsets[1].yw)); + + return o; +} + +float4 FragBlend(VaryingsBlend i) : SV_Target +{ + return SMAABlendingWeightCalculationPS(i.texcoord, i.pixcoord, i.offsets, _MainTex, _AreaTex, _SearchTex, 0); +} + +// ---------------------------------------------------------------------------------------- +// Neighborhood Blending + +struct VaryingsNeighbor +{ + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + float4 offset : TEXCOORD1; +}; + +VaryingsNeighbor VertNeighbor(AttributesDefault v) +{ + VaryingsNeighbor o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); + +#if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); +#endif + + o.offset = mad(SMAA_RT_METRICS.xyxy, float4(1.0, 0.0, 0.0, 1.0), o.texcoord.xyxy); + return o; +} + +float4 FragNeighbor(VaryingsNeighbor i) : SV_Target +{ + return SMAANeighborhoodBlendingPS(i.texcoord, i.offset, _MainTex, _BlendTex); +} + +#endif diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl.meta new file mode 100644 index 0000000..4079eb3 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/SubpixelMorphologicalAntialiasingBridge.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 4484ba9c9f221894bad091ea59c4b9c0 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/TemporalAntialiasing.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/TemporalAntialiasing.shader new file mode 100644 index 0000000..af6d477 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/TemporalAntialiasing.shader @@ -0,0 +1,165 @@ +Shader "Hidden/PostProcessing/TemporalAntialiasing" +{ + HLSLINCLUDE + + #pragma exclude_renderers gles psp2 + #include "../StdLib.hlsl" + #include "../Colors.hlsl" + + #if UNITY_VERSION >= 201710 + #define _MainTexSampler sampler_LinearClamp + #else + #define _MainTexSampler sampler_MainTex + #endif + + TEXTURE2D_SAMPLER2D(_MainTex, _MainTexSampler); + float4 _MainTex_TexelSize; + + TEXTURE2D_SAMPLER2D(_HistoryTex, sampler_HistoryTex); + + TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); + float4 _CameraDepthTexture_TexelSize; + + TEXTURE2D_SAMPLER2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture); + + float2 _Jitter; + float4 _FinalBlendParameters; // x: static, y: dynamic, z: motion amplification + float _Sharpness; + + float2 GetClosestFragment(float2 uv) + { + const float2 k = _CameraDepthTexture_TexelSize.xy; + + const float4 neighborhood = float4( + SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, UnityStereoClamp(uv - k)), + SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, UnityStereoClamp(uv + float2(k.x, -k.y))), + SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, UnityStereoClamp(uv + float2(-k.x, k.y))), + SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, UnityStereoClamp(uv + k)) + ); + + #if defined(UNITY_REVERSED_Z) + #define COMPARE_DEPTH(a, b) step(b, a) + #else + #define COMPARE_DEPTH(a, b) step(a, b) + #endif + + float3 result = float3(0.0, 0.0, SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, sampler_CameraDepthTexture, uv)); + result = lerp(result, float3(-1.0, -1.0, neighborhood.x), COMPARE_DEPTH(neighborhood.x, result.z)); + result = lerp(result, float3( 1.0, -1.0, neighborhood.y), COMPARE_DEPTH(neighborhood.y, result.z)); + result = lerp(result, float3(-1.0, 1.0, neighborhood.z), COMPARE_DEPTH(neighborhood.z, result.z)); + result = lerp(result, float3( 1.0, 1.0, neighborhood.w), COMPARE_DEPTH(neighborhood.w, result.z)); + + return (uv + result.xy * k); + } + + float4 ClipToAABB(float4 color, float3 minimum, float3 maximum) + { + // Note: only clips towards aabb center (but fast!) + float3 center = 0.5 * (maximum + minimum); + float3 extents = 0.5 * (maximum - minimum); + + // This is actually `distance`, however the keyword is reserved + float3 offset = color.rgb - center; + + float3 ts = abs(extents / (offset + 0.0001)); + float t = saturate(Min3(ts.x, ts.y, ts.z)); + color.rgb = center + offset * t; + return color; + } + + struct OutputSolver + { + float4 destination : SV_Target0; + float4 history : SV_Target1; + }; + + OutputSolver Solve(float2 motion, float2 texcoord) + { + const float2 k = _MainTex_TexelSize.xy; + float2 uv = UnityStereoClamp(texcoord - _Jitter); + + float4 color = SAMPLE_TEXTURE2D(_MainTex, _MainTexSampler, uv); + + float4 topLeft = SAMPLE_TEXTURE2D(_MainTex, _MainTexSampler, UnityStereoClamp(uv - k * 0.5)); + float4 bottomRight = SAMPLE_TEXTURE2D(_MainTex, _MainTexSampler, UnityStereoClamp(uv + k * 0.5)); + + float4 corners = 4.0 * (topLeft + bottomRight) - 2.0 * color; + + // Sharpen output + color += (color - (corners * 0.166667)) * 2.718282 * _Sharpness; + color = clamp(color, 0.0, HALF_MAX_MINUS1); + + // Tonemap color and history samples + float4 average = (corners + color) * 0.142857; + + float4 history = SAMPLE_TEXTURE2D(_HistoryTex, sampler_HistoryTex, UnityStereoClamp(texcoord - motion)); + + float motionLength = length(motion); + float2 luma = float2(Luminance(average), Luminance(color)); + //float nudge = 4.0 * abs(luma.x - luma.y); + float nudge = lerp(4.0, 0.25, saturate(motionLength * 100.0)) * abs(luma.x - luma.y); + + float4 minimum = min(bottomRight, topLeft) - nudge; + float4 maximum = max(topLeft, bottomRight) + nudge; + + // Clip history samples + history = ClipToAABB(history, minimum.xyz, maximum.xyz); + + // Blend method + float weight = clamp( + lerp(_FinalBlendParameters.x, _FinalBlendParameters.y, motionLength * _FinalBlendParameters.z), + _FinalBlendParameters.y, _FinalBlendParameters.x + ); + + color = lerp(color, history, weight); + color = clamp(color, 0.0, HALF_MAX_MINUS1); + + OutputSolver output; + output.destination = color; + output.history = color; + return output; + } + + OutputSolver FragSolverDilate(VaryingsDefault i) + { + float2 closest = GetClosestFragment(i.texcoordStereo); + float2 motion = SAMPLE_TEXTURE2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture, closest).xy; + return Solve(motion, i.texcoordStereo); + } + + OutputSolver FragSolverNoDilate(VaryingsDefault i) + { + // Don't dilate in ortho ! + float2 motion = SAMPLE_TEXTURE2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture, i.texcoordStereo).xy; + return Solve(motion, i.texcoordStereo); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0: Perspective + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragSolverDilate + + ENDHLSL + } + + // 1: Ortho + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragSolverNoDilate + + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/TemporalAntialiasing.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/TemporalAntialiasing.shader.meta new file mode 100644 index 0000000..3702fbe --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/TemporalAntialiasing.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 51bcf79c50dc92e47ba87821b61100c3 +timeCreated: 1490261802 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Texture2DLerp.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Texture2DLerp.shader new file mode 100644 index 0000000..52a1500 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Texture2DLerp.shader @@ -0,0 +1,50 @@ +Shader "Hidden/PostProcessing/Texture2DLerp" +{ + HLSLINCLUDE + + #include "../StdLib.hlsl" + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); // From + TEXTURE2D_SAMPLER2D(_To, sampler_To); + float _Interp; + float4 _TargetColor; + + float4 Frag(VaryingsDefault i) : SV_Target + { + float4 from = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + float4 to = SAMPLE_TEXTURE2D(_To, sampler_To, i.texcoord); + return lerp(from, to, _Interp); + } + + float4 FragColor(VaryingsDefault i) : SV_Target + { + float4 from = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoord); + float4 to = _TargetColor; + return lerp(from, to, _Interp); + } + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + } + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragColor + + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Texture2DLerp.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Texture2DLerp.shader.meta new file mode 100644 index 0000000..5316852 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Texture2DLerp.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 34a819c9e33402547a81619693adc8d5 +timeCreated: 1493129446 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Texture3DLerp.compute b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Texture3DLerp.compute new file mode 100644 index 0000000..7ecf39d --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Texture3DLerp.compute @@ -0,0 +1,50 @@ +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#include "../StdLib.hlsl" + +#pragma kernel KTexture3DLerp +#pragma kernel KTexture3DLerpToColor + +RWTexture3D _Output; + +CBUFFER_START(Params) + float4 _DimensionsAndLerp; // xyz: surface dimensions, w: lerp factor + float4 _TargetColor; // Color to lerp into +CBUFFER_END + +Texture3D _From; +Texture3D _To; + +#define GROUP_SIZE 4 + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(KTexture3DLerp) +TRIVIAL_COMPUTE_KERNEL(KTexture3DLerpToColor) + +#else + +[numthreads(GROUP_SIZE, GROUP_SIZE, GROUP_SIZE)] +void KTexture3DLerp(uint3 id : SV_DispatchThreadID) +{ + if(all(float3(id) < _DimensionsAndLerp.xyz)) + { + float4 from = _From[id]; + float4 to = _To[id]; + _Output[id] = lerp(from, to, _DimensionsAndLerp.wwww); + } +} + +[numthreads(GROUP_SIZE, GROUP_SIZE, GROUP_SIZE)] +void KTexture3DLerpToColor(uint3 id : SV_DispatchThreadID) +{ + if(all(float3(id) < _DimensionsAndLerp.xyz)) + { + float4 from = _From[id]; + float4 to = _TargetColor; + _Output[id] = lerp(from, to, _DimensionsAndLerp.wwww); + } +} + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Texture3DLerp.compute.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Texture3DLerp.compute.meta new file mode 100644 index 0000000..5cfc24e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Texture3DLerp.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 31e9175024adfd44aba2530ff9b77494 +timeCreated: 1496933873 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 4 + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Uber.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Uber.shader new file mode 100644 index 0000000..9c08853 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Uber.shader @@ -0,0 +1,315 @@ +Shader "Hidden/PostProcessing/Uber" +{ + HLSLINCLUDE + + #pragma target 3.0 + + #pragma multi_compile __ DISTORT + #pragma multi_compile __ CHROMATIC_ABERRATION CHROMATIC_ABERRATION_LOW + #pragma multi_compile __ BLOOM BLOOM_LOW + #pragma multi_compile __ VIGNETTE + #pragma multi_compile __ GRAIN + #pragma multi_compile __ FINALPASS + // the following keywords are handled in API specific SubShaders below + // #pragma multi_compile __ COLOR_GRADING_LDR_2D COLOR_GRADING_HDR_2D COLOR_GRADING_HDR_3D + // #pragma multi_compile __ STEREO_INSTANCING_ENABLED STEREO_DOUBLEWIDE_TARGET + + #pragma vertex VertUVTransform + #pragma fragment FragUber + + #include "../StdLib.hlsl" + #include "../Colors.hlsl" + #include "../Sampling.hlsl" + #include "Distortion.hlsl" + #include "Dithering.hlsl" + + #define MAX_CHROMATIC_SAMPLES 16 + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); + float4 _MainTex_TexelSize; + + // Auto exposure / eye adaptation + TEXTURE2D_SAMPLER2D(_AutoExposureTex, sampler_AutoExposureTex); + + // Bloom + TEXTURE2D_SAMPLER2D(_BloomTex, sampler_BloomTex); + TEXTURE2D_SAMPLER2D(_Bloom_DirtTex, sampler_Bloom_DirtTex); + float4 _BloomTex_TexelSize; + float4 _Bloom_DirtTileOffset; // xy: tiling, zw: offset + half3 _Bloom_Settings; // x: sampleScale, y: intensity, z: dirt intensity + half3 _Bloom_Color; + + // Chromatic aberration + TEXTURE2D_SAMPLER2D(_ChromaticAberration_SpectralLut, sampler_ChromaticAberration_SpectralLut); + half _ChromaticAberration_Amount; + + // Color grading + #if COLOR_GRADING_HDR_3D + + TEXTURE3D_SAMPLER3D(_Lut3D, sampler_Lut3D); + float2 _Lut3D_Params; + + #else + + TEXTURE2D_SAMPLER2D(_Lut2D, sampler_Lut2D); + float3 _Lut2D_Params; + + #endif + + half _PostExposure; // EV (exp2) + + // Vignette + half3 _Vignette_Color; + half2 _Vignette_Center; // UV space + half4 _Vignette_Settings; // x: intensity, y: smoothness, z: roundness, w: rounded + half _Vignette_Opacity; + half _Vignette_Mode; // <0.5: procedural, >=0.5: masked + TEXTURE2D_SAMPLER2D(_Vignette_Mask, sampler_Vignette_Mask); + + // Grain + TEXTURE2D_SAMPLER2D(_GrainTex, sampler_GrainTex); + half2 _Grain_Params1; // x: lum_contrib, y: intensity + float4 _Grain_Params2; // x: xscale, h: yscale, z: xoffset, w: yoffset + + // Misc + half _LumaInAlpha; + + half4 FragUber(VaryingsDefault i) : SV_Target + { + float2 uv = i.texcoord; + + //>>> Automatically skipped by the shader optimizer when not used + float2 uvDistorted = Distort(i.texcoord); + float2 uvStereoDistorted = Distort(i.texcoordStereo); + //<<< + + half autoExposure = SAMPLE_TEXTURE2D(_AutoExposureTex, sampler_AutoExposureTex, uv).r; + half4 color = (0.0).xxxx; + + // Inspired by the method described in "Rendering Inside" [Playdead 2016] + // https://twitter.com/pixelmager/status/717019757766123520 + #if CHROMATIC_ABERRATION + { + float2 coords = 2.0 * uv - 1.0; + float2 end = uv - coords * dot(coords, coords) * _ChromaticAberration_Amount; + + float2 diff = end - uv; + int samples = clamp(int(length(_MainTex_TexelSize.zw * diff / 2.0)), 3, MAX_CHROMATIC_SAMPLES); + float2 delta = diff / samples; + float2 pos = uv; + half4 sum = (0.0).xxxx, filterSum = (0.0).xxxx; + + for (int i = 0; i < samples; i++) + { + half t = (i + 0.5) / samples; + half4 s = SAMPLE_TEXTURE2D_LOD(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(Distort(pos)), 0); + half4 filter = half4(SAMPLE_TEXTURE2D_LOD(_ChromaticAberration_SpectralLut, sampler_ChromaticAberration_SpectralLut, float2(t, 0.0), 0).rgb, 1.0); + + sum += s * filter; + filterSum += filter; + pos += delta; + } + + color = sum / filterSum; + } + #elif CHROMATIC_ABERRATION_LOW + { + float2 coords = 2.0 * uv - 1.0; + float2 end = uv - coords * dot(coords, coords) * _ChromaticAberration_Amount; + float2 delta = (end - uv) / 3; + + half4 filterA = half4(SAMPLE_TEXTURE2D_LOD(_ChromaticAberration_SpectralLut, sampler_ChromaticAberration_SpectralLut, float2(0.5 / 3, 0.0), 0).rgb, 1.0); + half4 filterB = half4(SAMPLE_TEXTURE2D_LOD(_ChromaticAberration_SpectralLut, sampler_ChromaticAberration_SpectralLut, float2(1.5 / 3, 0.0), 0).rgb, 1.0); + half4 filterC = half4(SAMPLE_TEXTURE2D_LOD(_ChromaticAberration_SpectralLut, sampler_ChromaticAberration_SpectralLut, float2(2.5 / 3, 0.0), 0).rgb, 1.0); + + half4 texelA = SAMPLE_TEXTURE2D_LOD(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(Distort(uv)), 0); + half4 texelB = SAMPLE_TEXTURE2D_LOD(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(Distort(delta + uv)), 0); + half4 texelC = SAMPLE_TEXTURE2D_LOD(_MainTex, sampler_MainTex, UnityStereoTransformScreenSpaceTex(Distort(delta * 2.0 + uv)), 0); + + half4 sum = texelA * filterA + texelB * filterB + texelC * filterC; + half4 filterSum = filterA + filterB + filterC; + color = sum / filterSum; + } + #else + { + color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, uvStereoDistorted); + } + #endif + + // Gamma space... Gah. + #if UNITY_COLORSPACE_GAMMA + { + color = SRGBToLinear(color); + } + #endif + + color.rgb *= autoExposure; + + #if BLOOM || BLOOM_LOW + { + #if BLOOM + half4 bloom = UpsampleTent(TEXTURE2D_PARAM(_BloomTex, sampler_BloomTex), uvDistorted, _BloomTex_TexelSize.xy, _Bloom_Settings.x); + #else + half4 bloom = UpsampleBox(TEXTURE2D_PARAM(_BloomTex, sampler_BloomTex), uvDistorted, _BloomTex_TexelSize.xy, _Bloom_Settings.x); + #endif + + // UVs should be Distort(uv * _Bloom_DirtTileOffset.xy + _Bloom_DirtTileOffset.zw) + // but considering we use a cover-style scale on the dirt texture the difference + // isn't massive so we chose to save a few ALUs here instead in case lens distortion + // is active + half4 dirt = half4(SAMPLE_TEXTURE2D(_Bloom_DirtTex, sampler_Bloom_DirtTex, uvDistorted * _Bloom_DirtTileOffset.xy + _Bloom_DirtTileOffset.zw).rgb, 0.0); + + // Additive bloom (artist friendly) + bloom *= _Bloom_Settings.y; + dirt *= _Bloom_Settings.z; + color += bloom * half4(_Bloom_Color, 1.0); + color += dirt * bloom; + } + #endif + + #if VIGNETTE + { + UNITY_BRANCH + if (_Vignette_Mode < 0.5) + { + half2 d = abs(uvDistorted - _Vignette_Center) * _Vignette_Settings.x; + d.x *= lerp(1.0, _ScreenParams.x / _ScreenParams.y, _Vignette_Settings.w); + d = pow(saturate(d), _Vignette_Settings.z); // Roundness + half vfactor = pow(saturate(1.0 - dot(d, d)), _Vignette_Settings.y); + color.rgb *= lerp(_Vignette_Color, (1.0).xxx, vfactor); + color.a = lerp(1.0, color.a, vfactor); + } + else + { + half vfactor = SAMPLE_TEXTURE2D(_Vignette_Mask, sampler_Vignette_Mask, uvDistorted).a; + + #if !UNITY_COLORSPACE_GAMMA + { + vfactor = SRGBToLinear(vfactor); + } + #endif + + half3 new_color = color.rgb * lerp(_Vignette_Color, (1.0).xxx, vfactor); + color.rgb = lerp(color.rgb, new_color, _Vignette_Opacity); + color.a = lerp(1.0, color.a, vfactor); + } + } + #endif + + #if GRAIN + { + half3 grain = SAMPLE_TEXTURE2D(_GrainTex, sampler_GrainTex, i.texcoordStereo * _Grain_Params2.xy + _Grain_Params2.zw).rgb; + + // Noisiness response curve based on scene luminance + float lum = 1.0 - sqrt(Luminance(saturate(color))); + lum = lerp(1.0, lum, _Grain_Params1.x); + + color.rgb += color.rgb * grain * _Grain_Params1.y * lum; + } + #endif + + #if COLOR_GRADING_HDR_3D + { + color *= _PostExposure; + float3 colorLutSpace = saturate(LUT_SPACE_ENCODE(color.rgb)); + color.rgb = ApplyLut3D(TEXTURE3D_PARAM(_Lut3D, sampler_Lut3D), colorLutSpace, _Lut3D_Params); + } + #elif COLOR_GRADING_HDR_2D + { + color *= _PostExposure; + float3 colorLutSpace = saturate(LUT_SPACE_ENCODE(color.rgb)); + color.rgb = ApplyLut2D(TEXTURE2D_PARAM(_Lut2D, sampler_Lut2D), colorLutSpace, _Lut2D_Params); + } + #elif COLOR_GRADING_LDR_2D + { + color = saturate(color); + + // LDR Lut lookup needs to be in sRGB - for HDR stick to linear + color.rgb = LinearToSRGB(color.rgb); + color.rgb = ApplyLut2D(TEXTURE2D_PARAM(_Lut2D, sampler_Lut2D), color.rgb, _Lut2D_Params); + color.rgb = SRGBToLinear(color.rgb); + } + #endif + + half4 output = color; + + #if FINALPASS + { + #if UNITY_COLORSPACE_GAMMA + { + output = LinearToSRGB(output); + } + #endif + + output.rgb = Dither(output.rgb, i.texcoord); + } + #else + { + UNITY_BRANCH + if (_LumaInAlpha > 0.5) + { + // Put saturated luma in alpha for FXAA - higher quality than "green as luma" and + // necessary as RGB values will potentially still be HDR for the FXAA pass + half luma = Luminance(saturate(output)); + output.a = luma; + } + + #if UNITY_COLORSPACE_GAMMA + { + output = LinearToSRGB(output); + } + #endif + } + #endif + + // Output RGB is still HDR at that point (unless range was crunched by a tonemapper) + return output; + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + #pragma exclude_renderers gles vulkan switch + + #pragma multi_compile __ COLOR_GRADING_LDR_2D COLOR_GRADING_HDR_2D COLOR_GRADING_HDR_3D + #pragma multi_compile __ STEREO_INSTANCING_ENABLED STEREO_DOUBLEWIDE_TARGET + ENDHLSL + } + } + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + #pragma only_renderers vulkan switch + + #pragma multi_compile __ COLOR_GRADING_LDR_2D COLOR_GRADING_HDR_2D COLOR_GRADING_HDR_3D + #pragma multi_compile __ STEREO_DOUBLEWIDE_TARGET // disabled for Vulkan because of shader compiler issues in older Unity versions: STEREO_INSTANCING_ENABLED + ENDHLSL + } + } + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + #pragma only_renderers gles + + #pragma multi_compile __ COLOR_GRADING_LDR_2D COLOR_GRADING_HDR_2D // not supported by OpenGL ES 2.0: COLOR_GRADING_HDR_3D + #pragma multi_compile __ STEREO_DOUBLEWIDE_TARGET // not supported by OpenGL ES 2.0: STEREO_INSTANCING_ENABLED + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Uber.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Uber.shader.meta new file mode 100644 index 0000000..9cc4b69 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Builtins/Uber.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 382151503e2a43a4ebb7366d1632731d +timeCreated: 1488883455 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Colors.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/Colors.hlsl new file mode 100644 index 0000000..5a25c30 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Colors.hlsl @@ -0,0 +1,650 @@ +#ifndef UNITY_POSTFX_COLOR +#define UNITY_POSTFX_COLOR + +#include "StdLib.hlsl" +#include "ACES.hlsl" + +#define LUT_SPACE_ENCODE(x) LinearToLogC(x) +#define LUT_SPACE_DECODE(x) LogCToLinear(x) + +#ifndef USE_PRECISE_LOGC + // Set to 1 to use more precise but more expensive log/linear conversions. I haven't found a proper + // use case for the high precision version yet so I'm leaving this to 0. + #define USE_PRECISE_LOGC 0 +#endif + +#ifndef TONEMAPPING_USE_FULL_ACES + // Set to 1 to use the full reference ACES tonemapper. This should only be used for research + // purposes as it's quite heavy and generally overkill. + #define TONEMAPPING_USE_FULL_ACES 0 +#endif + +#ifndef DEFAULT_MAX_PQ + // PQ ST.2048 max value + // 1.0 = 100nits, 100.0 = 10knits + #define DEFAULT_MAX_PQ 100.0 +#endif + +#ifndef USE_VERY_FAST_SRGB + #if defined(SHADER_API_MOBILE) + #define USE_VERY_FAST_SRGB 1 + #else + #define USE_VERY_FAST_SRGB 0 + #endif +#endif + +#ifndef USE_FAST_SRGB + #if defined(SHADER_API_CONSOLE) + #define USE_FAST_SRGB 1 + #else + #define USE_FAST_SRGB 0 + #endif +#endif + +// +// Alexa LogC converters (El 1000) +// See http://www.vocas.nl/webfm_send/964 +// Max range is ~58.85666 +// +struct ParamsLogC +{ + float cut; + float a, b, c, d, e, f; +}; + +static const ParamsLogC LogC = +{ + 0.011361, // cut + 5.555556, // a + 0.047996, // b + 0.244161, // c + 0.386036, // d + 5.301883, // e + 0.092819 // f +}; + +float LinearToLogC_Precise(half x) +{ + float o; + if (x > LogC.cut) + o = LogC.c * log10(LogC.a * x + LogC.b) + LogC.d; + else + o = LogC.e * x + LogC.f; + return o; +} + +float3 LinearToLogC(float3 x) +{ +#if USE_PRECISE_LOGC + return float3( + LinearToLogC_Precise(x.x), + LinearToLogC_Precise(x.y), + LinearToLogC_Precise(x.z) + ); +#else + return LogC.c * log10(LogC.a * x + LogC.b) + LogC.d; +#endif +} + +float LogCToLinear_Precise(float x) +{ + float o; + if (x > LogC.e * LogC.cut + LogC.f) + o = (pow(10.0, (x - LogC.d) / LogC.c) - LogC.b) / LogC.a; + else + o = (x - LogC.f) / LogC.e; + return o; +} + +float3 LogCToLinear(float3 x) +{ +#if USE_PRECISE_LOGC + return float3( + LogCToLinear_Precise(x.x), + LogCToLinear_Precise(x.y), + LogCToLinear_Precise(x.z) + ); +#else + return (pow(10.0, (x - LogC.d) / LogC.c) - LogC.b) / LogC.a; +#endif +} + +// +// SMPTE ST.2084 (PQ) transfer functions +// Used for HDR Lut storage, max range depends on the maxPQValue parameter +// +struct ParamsPQ +{ + float N, M; + float C1, C2, C3; +}; + +static const ParamsPQ PQ = +{ + 2610.0 / 4096.0 / 4.0, // N + 2523.0 / 4096.0 * 128.0, // M + 3424.0 / 4096.0, // C1 + 2413.0 / 4096.0 * 32.0, // C2 + 2392.0 / 4096.0 * 32.0, // C3 +}; + +float3 LinearToPQ(float3 x, float maxPQValue) +{ + x = PositivePow(x / maxPQValue, PQ.N); + float3 nd = (PQ.C1 + PQ.C2 * x) / (1.0 + PQ.C3 * x); + return PositivePow(nd, PQ.M); +} + +float3 LinearToPQ(float3 x) +{ + return LinearToPQ(x, DEFAULT_MAX_PQ); +} + +float3 PQToLinear(float3 x, float maxPQValue) +{ + x = PositivePow(x, rcp(PQ.M)); + float3 nd = max(x - PQ.C1, 0.0) / (PQ.C2 - (PQ.C3 * x)); + return PositivePow(nd, rcp(PQ.N)) * maxPQValue; +} + +float3 PQToLinear(float3 x) +{ + return PQToLinear(x, DEFAULT_MAX_PQ); +} + +// +// sRGB transfer functions +// Fast path ref: http://chilliant.blogspot.com.au/2012/08/srgb-approximations-for-hlsl.html?m=1 +// +half SRGBToLinear(half c) +{ +#if USE_VERY_FAST_SRGB + return c * c; +#elif USE_FAST_SRGB + return c * (c * (c * 0.305306011 + 0.682171111) + 0.012522878); +#else + half linearRGBLo = c / 12.92; + half linearRGBHi = PositivePow((c + 0.055) / 1.055, 2.4); + half linearRGB = (c <= 0.04045) ? linearRGBLo : linearRGBHi; + return linearRGB; +#endif +} + +half3 SRGBToLinear(half3 c) +{ +#if USE_VERY_FAST_SRGB + return c * c; +#elif USE_FAST_SRGB + return c * (c * (c * 0.305306011 + 0.682171111) + 0.012522878); +#else + half3 linearRGBLo = c / 12.92; + half3 linearRGBHi = PositivePow((c + 0.055) / 1.055, half3(2.4, 2.4, 2.4)); + half3 linearRGB = (c <= 0.04045) ? linearRGBLo : linearRGBHi; + return linearRGB; +#endif +} + +half4 SRGBToLinear(half4 c) +{ + return half4(SRGBToLinear(c.rgb), c.a); +} + +half LinearToSRGB(half c) +{ +#if USE_VERY_FAST_SRGB + return sqrt(c); +#elif USE_FAST_SRGB + return max(1.055 * PositivePow(c, 0.416666667) - 0.055, 0.0); +#else + half sRGBLo = c * 12.92; + half sRGBHi = (PositivePow(c, 1.0 / 2.4) * 1.055) - 0.055; + half sRGB = (c <= 0.0031308) ? sRGBLo : sRGBHi; + return sRGB; +#endif +} + +half3 LinearToSRGB(half3 c) +{ +#if USE_VERY_FAST_SRGB + return sqrt(c); +#elif USE_FAST_SRGB + return max(1.055 * PositivePow(c, 0.416666667) - 0.055, 0.0); +#else + half3 sRGBLo = c * 12.92; + half3 sRGBHi = (PositivePow(c, half3(1.0 / 2.4, 1.0 / 2.4, 1.0 / 2.4)) * 1.055) - 0.055; + half3 sRGB = (c <= 0.0031308) ? sRGBLo : sRGBHi; + return sRGB; +#endif +} + +half4 LinearToSRGB(half4 c) +{ + return half4(LinearToSRGB(c.rgb), c.a); +} + +// +// Convert rgb to luminance with rgb in linear space with sRGB primaries and D65 white point +// +half Luminance(half3 linearRgb) +{ + return dot(linearRgb, float3(0.2126729, 0.7151522, 0.0721750)); +} + +half Luminance(half4 linearRgba) +{ + return Luminance(linearRgba.rgb); +} + +// +// Quadratic color thresholding +// curve = (threshold - knee, knee * 2, 0.25 / knee) +// +half4 QuadraticThreshold(half4 color, half threshold, half3 curve) +{ + // Pixel brightness + half br = Max3(color.r, color.g, color.b); + + // Under-threshold part: quadratic curve + half rq = clamp(br - curve.x, 0.0, curve.y); + rq = curve.z * rq * rq; + + // Combine and apply the brightness response curve. + color *= max(rq, br - threshold) / max(br, EPSILON); + + return color; +} + +// +// Fast reversible tonemapper +// http://gpuopen.com/optimized-reversible-tonemapper-for-resolve/ +// +float3 FastTonemap(float3 c) +{ + return c * rcp(Max3(c.r, c.g, c.b) + 1.0); +} + +float4 FastTonemap(float4 c) +{ + return float4(FastTonemap(c.rgb), c.a); +} + +float3 FastTonemap(float3 c, float w) +{ + return c * (w * rcp(Max3(c.r, c.g, c.b) + 1.0)); +} + +float4 FastTonemap(float4 c, float w) +{ + return float4(FastTonemap(c.rgb, w), c.a); +} + +float3 FastTonemapInvert(float3 c) +{ + return c * rcp(1.0 - Max3(c.r, c.g, c.b)); +} + +float4 FastTonemapInvert(float4 c) +{ + return float4(FastTonemapInvert(c.rgb), c.a); +} + +// +// Neutral tonemapping (Hable/Hejl/Frostbite) +// Input is linear RGB +// +float3 NeutralCurve(float3 x, float a, float b, float c, float d, float e, float f) +{ + return ((x * (a * x + c * b) + d * e) / (x * (a * x + b) + d * f)) - e / f; +} + +float3 NeutralTonemap(float3 x) +{ + // Tonemap + float a = 0.2; + float b = 0.29; + float c = 0.24; + float d = 0.272; + float e = 0.02; + float f = 0.3; + float whiteLevel = 5.3; + float whiteClip = 1.0; + + float3 whiteScale = (1.0).xxx / NeutralCurve(whiteLevel, a, b, c, d, e, f); + x = NeutralCurve(x * whiteScale, a, b, c, d, e, f); + x *= whiteScale; + + // Post-curve white point adjustment + x /= whiteClip.xxx; + + return x; +} + +// +// Raw, unoptimized version of John Hable's artist-friendly tone curve +// Input is linear RGB +// +float EvalCustomSegment(float x, float4 segmentA, float2 segmentB) +{ + const float kOffsetX = segmentA.x; + const float kOffsetY = segmentA.y; + const float kScaleX = segmentA.z; + const float kScaleY = segmentA.w; + const float kLnA = segmentB.x; + const float kB = segmentB.y; + + float x0 = (x - kOffsetX) * kScaleX; + float y0 = (x0 > 0.0) ? exp(kLnA + kB * log(x0)) : 0.0; + return y0 * kScaleY + kOffsetY; +} + +float EvalCustomCurve(float x, float3 curve, float4 toeSegmentA, float2 toeSegmentB, float4 midSegmentA, float2 midSegmentB, float4 shoSegmentA, float2 shoSegmentB) +{ + float4 segmentA; + float2 segmentB; + + if (x < curve.y) + { + segmentA = toeSegmentA; + segmentB = toeSegmentB; + } + else if (x < curve.z) + { + segmentA = midSegmentA; + segmentB = midSegmentB; + } + else + { + segmentA = shoSegmentA; + segmentB = shoSegmentB; + } + + return EvalCustomSegment(x, segmentA, segmentB); +} + +// curve: x: inverseWhitePoint, y: x0, z: x1 +float3 CustomTonemap(float3 x, float3 curve, float4 toeSegmentA, float2 toeSegmentB, float4 midSegmentA, float2 midSegmentB, float4 shoSegmentA, float2 shoSegmentB) +{ + float3 normX = x * curve.x; + float3 ret; + ret.x = EvalCustomCurve(normX.x, curve, toeSegmentA, toeSegmentB, midSegmentA, midSegmentB, shoSegmentA, shoSegmentB); + ret.y = EvalCustomCurve(normX.y, curve, toeSegmentA, toeSegmentB, midSegmentA, midSegmentB, shoSegmentA, shoSegmentB); + ret.z = EvalCustomCurve(normX.z, curve, toeSegmentA, toeSegmentB, midSegmentA, midSegmentB, shoSegmentA, shoSegmentB); + return ret; +} + +// +// Filmic tonemapping (ACES fitting, unless TONEMAPPING_USE_FULL_ACES is set to 1) +// Input is ACES2065-1 (AP0 w/ linear encoding) +// +float3 AcesTonemap(float3 aces) +{ +#if TONEMAPPING_USE_FULL_ACES + + float3 oces = RRT(aces); + float3 odt = ODT_RGBmonitor_100nits_dim(oces); + return odt; + +#else + + // --- Glow module --- // + float saturation = rgb_2_saturation(aces); + float ycIn = rgb_2_yc(aces); + float s = sigmoid_shaper((saturation - 0.4) / 0.2); + float addedGlow = 1.0 + glow_fwd(ycIn, RRT_GLOW_GAIN * s, RRT_GLOW_MID); + aces *= addedGlow; + + // --- Red modifier --- // + float hue = rgb_2_hue(aces); + float centeredHue = center_hue(hue, RRT_RED_HUE); + float hueWeight; + { + //hueWeight = cubic_basis_shaper(centeredHue, RRT_RED_WIDTH); + hueWeight = smoothstep(0.0, 1.0, 1.0 - abs(2.0 * centeredHue / RRT_RED_WIDTH)); + hueWeight *= hueWeight; + } + + aces.r += hueWeight * saturation * (RRT_RED_PIVOT - aces.r) * (1.0 - RRT_RED_SCALE); + + // --- ACES to RGB rendering space --- // + float3 acescg = max(0.0, ACES_to_ACEScg(aces)); + + // --- Global desaturation --- // + //acescg = mul(RRT_SAT_MAT, acescg); + acescg = lerp(dot(acescg, AP1_RGB2Y).xxx, acescg, RRT_SAT_FACTOR.xxx); + + // Luminance fitting of *RRT.a1.0.3 + ODT.Academy.RGBmonitor_100nits_dim.a1.0.3*. + // https://github.com/colour-science/colour-unity/blob/master/Assets/Colour/Notebooks/CIECAM02_Unity.ipynb + // RMSE: 0.0012846272106 + const float a = 278.5085; + const float b = 10.7772; + const float c = 293.6045; + const float d = 88.7122; + const float e = 80.6889; + float3 x = acescg; + float3 rgbPost = (x * (a * x + b)) / (x * (c * x + d) + e); + + // Scale luminance to linear code value + // float3 linearCV = Y_2_linCV(rgbPost, CINEMA_WHITE, CINEMA_BLACK); + + // Apply gamma adjustment to compensate for dim surround + float3 linearCV = darkSurround_to_dimSurround(rgbPost); + + // Apply desaturation to compensate for luminance difference + //linearCV = mul(ODT_SAT_MAT, color); + linearCV = lerp(dot(linearCV, AP1_RGB2Y).xxx, linearCV, ODT_SAT_FACTOR.xxx); + + // Convert to display primary encoding + // Rendering space RGB to XYZ + float3 XYZ = mul(AP1_2_XYZ_MAT, linearCV); + + // Apply CAT from ACES white point to assumed observer adapted white point + XYZ = mul(D60_2_D65_CAT, XYZ); + + // CIE XYZ to display primaries + linearCV = mul(XYZ_2_REC709_MAT, XYZ); + + return linearCV; + +#endif +} + +// +// 3D LUT grading +// scaleOffset = (1 / lut_size, lut_size - 1) +// +half3 ApplyLut3D(TEXTURE3D_ARGS(tex, samplerTex), float3 uvw, float2 scaleOffset) +{ + uvw.xyz = uvw.xyz * scaleOffset.yyy * scaleOffset.xxx + scaleOffset.xxx * 0.5; + return SAMPLE_TEXTURE3D(tex, samplerTex, uvw).rgb; +} + +// +// 2D LUT grading +// scaleOffset = (1 / lut_width, 1 / lut_height, lut_height - 1) +// +half3 ApplyLut2D(TEXTURE2D_ARGS(tex, samplerTex), float3 uvw, float3 scaleOffset) +{ + // Strip format where `height = sqrt(width)` + uvw.z *= scaleOffset.z; + float shift = floor(uvw.z); + uvw.xy = uvw.xy * scaleOffset.z * scaleOffset.xy + scaleOffset.xy * 0.5; + uvw.x += shift * scaleOffset.y; + uvw.xyz = lerp( + SAMPLE_TEXTURE2D(tex, samplerTex, uvw.xy).rgb, + SAMPLE_TEXTURE2D(tex, samplerTex, uvw.xy + float2(scaleOffset.y, 0.0)).rgb, + uvw.z - shift + ); + return uvw; +} + +// +// Returns the default value for a given position on a 2D strip-format color lookup table +// params = (lut_height, 0.5 / lut_width, 0.5 / lut_height, lut_height / lut_height - 1) +// +float3 GetLutStripValue(float2 uv, float4 params) +{ + uv -= params.yz; + float3 color; + color.r = frac(uv.x * params.x); + color.b = uv.x - color.r / params.x; + color.g = uv.y; + return color * params.w; +} + +// +// White balance +// Recommended workspace: ACEScg (linear) +// +static const float3x3 LIN_2_LMS_MAT = { + 3.90405e-1, 5.49941e-1, 8.92632e-3, + 7.08416e-2, 9.63172e-1, 1.35775e-3, + 2.31082e-2, 1.28021e-1, 9.36245e-1 +}; + +static const float3x3 LMS_2_LIN_MAT = { + 2.85847e+0, -1.62879e+0, -2.48910e-2, + -2.10182e-1, 1.15820e+0, 3.24281e-4, + -4.18120e-2, -1.18169e-1, 1.06867e+0 +}; + +float3 WhiteBalance(float3 c, float3 balance) +{ + float3 lms = mul(LIN_2_LMS_MAT, c); + lms *= balance; + return mul(LMS_2_LIN_MAT, lms); +} + +// +// RGB / Full-range YCbCr conversions (ITU-R BT.601) +// +float3 RgbToYCbCr(float3 c) +{ + float Y = 0.299 * c.r + 0.587 * c.g + 0.114 * c.b; + float Cb = -0.169 * c.r - 0.331 * c.g + 0.500 * c.b; + float Cr = 0.500 * c.r - 0.419 * c.g - 0.081 * c.b; + return float3(Y, Cb, Cr); +} + +float3 YCbCrToRgb(float3 c) +{ + float R = c.x + 0.000 * c.y + 1.403 * c.z; + float G = c.x - 0.344 * c.y - 0.714 * c.z; + float B = c.x - 1.773 * c.y + 0.000 * c.z; + return float3(R, G, B); +} + +// +// Hue, Saturation, Value +// Ranges: +// Hue [0.0, 1.0] +// Sat [0.0, 1.0] +// Lum [0.0, HALF_MAX] +// +float3 RgbToHsv(float3 c) +{ + float4 K = float4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0); + float4 p = lerp(float4(c.bg, K.wz), float4(c.gb, K.xy), step(c.b, c.g)); + float4 q = lerp(float4(p.xyw, c.r), float4(c.r, p.yzx), step(p.x, c.r)); + float d = q.x - min(q.w, q.y); + float e = EPSILON; + return float3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x); +} + +float3 HsvToRgb(float3 c) +{ + float4 K = float4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); + float3 p = abs(frac(c.xxx + K.xyz) * 6.0 - K.www); + return c.z * lerp(K.xxx, saturate(p - K.xxx), c.y); +} + +float RotateHue(float value, float low, float hi) +{ + return (value < low) + ? value + hi + : (value > hi) + ? value - hi + : value; +} + +// +// RGB Saturation (closer to a vibrance effect than actual saturation) +// Recommended workspace: ACEScg (linear) +// Optimal range: [0.0, 2.0] +// +float3 Saturation(float3 c, float sat) +{ + float luma = Luminance(c); + return luma.xxx + sat.xxx * (c - luma.xxx); +} + +// +// Contrast (reacts better when applied in log) +// Optimal range: [0.0, 2.0] +// +float3 Contrast(float3 c, float midpoint, float contrast) +{ + return (c - midpoint) * contrast + midpoint; +} + +// +// Lift, Gamma (pre-inverted), Gain tuned for HDR use - best used with the ACES tonemapper as +// negative values will creep in the result +// Expected workspace: ACEScg (linear) +// +float3 LiftGammaGainHDR(float3 c, float3 lift, float3 invgamma, float3 gain) +{ + c = c * gain + lift; + + // ACEScg will output negative values, as clamping to 0 will lose precious information we'll + // mirror the gamma function instead + return FastSign(c) * pow(abs(c), invgamma); +} + +// +// Lift, Gamma (pre-inverted), Gain tuned for LDR use +// Input is linear RGB +// +float3 LiftGammaGainLDR(float3 c, float3 lift, float3 invgamma, float3 gain) +{ + c = saturate(PositivePow(saturate(c), invgamma)); + return gain * c + lift * (1.0 - c); +} + +// +// Remaps Y/R/G/B values +// curveTex has to be 128 pixels wide +// +float3 YrgbCurve(float3 c, TEXTURE2D_ARGS(curveTex, sampler_curveTex)) +{ + const float kHalfPixel = (1.0 / 128.0) / 2.0; + + // Y (master) + c += kHalfPixel.xxx; + float mr = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.r, 0.75)).a; + float mg = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.g, 0.75)).a; + float mb = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.b, 0.75)).a; + c = saturate(float3(mr, mg, mb)); + + // RGB + c += kHalfPixel.xxx; + float r = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.r, 0.75)).r; + float g = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.g, 0.75)).g; + float b = SAMPLE_TEXTURE2D(curveTex, sampler_curveTex, float2(c.b, 0.75)).b; + return saturate(float3(r, g, b)); +} + +// +// Channel mixing (same as Photoshop's and DaVinci's Resolve) +// Recommended workspace: ACEScg (linear) +// Input mixers should be in range [-2.0; 2.0] +// +float3 ChannelMixer(float3 c, float3 red, float3 green, float3 blue) +{ + return float3( + dot(c, red), + dot(c, green), + dot(c, blue) + ); +} + +#endif // UNITY_POSTFX_COLOR diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Colors.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Colors.hlsl.meta new file mode 100644 index 0000000..ee0264b --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Colors.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 7fa986a4042ff154093d3772d2dc4fc9 +timeCreated: 1493025378 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug.meta new file mode 100644 index 0000000..bb3c659 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 418668fbeb6130848b1bffc8d5645b45 +folderAsset: yes +timeCreated: 1496329323 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Histogram.compute b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Histogram.compute new file mode 100644 index 0000000..cc3cba9 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Histogram.compute @@ -0,0 +1,75 @@ +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#define HISTOGRAM_BINS 256 +#define GROUP_SIZE_X 16 +#define GROUP_SIZE_Y 16 + +#include "../StdLib.hlsl" +#include "../Colors.hlsl" + +RWStructuredBuffer _HistogramBuffer; +Texture2D _Source; + +CBUFFER_START(Params) + float4 _Params; // x: width, y: height, z: linear, w: channel +CBUFFER_END + +groupshared uint gs_histogram[HISTOGRAM_BINS]; + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(KHistogramGather) +TRIVIAL_COMPUTE_KERNEL(KHistogramClear) + +#else + +#pragma kernel KHistogramGather +[numthreads(GROUP_SIZE_X, GROUP_SIZE_Y, 1)] +void KHistogramGather(uint2 dispatchThreadId : SV_DispatchThreadID, uint2 groupThreadId : SV_GroupThreadID) +{ + const uint localThreadId = groupThreadId.y * GROUP_SIZE_X + groupThreadId.x; + + // Clears the shared memory + if (localThreadId < HISTOGRAM_BINS) + gs_histogram[localThreadId] = 0u; + + GroupMemoryBarrierWithGroupSync(); + + // Gather local group histogram + if (dispatchThreadId.x < uint(_Params.x) && dispatchThreadId.y < uint(_Params.y)) + { + float3 color = saturate(_Source[dispatchThreadId].xyz); + + // We want a gamma-corrected histogram (like Photoshop & all) + if (_Params.z > 0) + color = LinearToSRGB(color); + + // Convert channel value to histogram bin + float channel; + uint c = uint(_Params.w); + + if (c > 2) channel = Luminance(color); + else channel = color[c]; + + uint idx = (uint)(round(channel * 255.0)); + + InterlockedAdd(gs_histogram[idx], 1u); + } + + GroupMemoryBarrierWithGroupSync(); + + // Merge everything + if (localThreadId < HISTOGRAM_BINS) + InterlockedAdd(_HistogramBuffer[localThreadId], gs_histogram[localThreadId]); +} + +#pragma kernel KHistogramClear +[numthreads(GROUP_SIZE_X, 1, 1)] +void KHistogramClear(uint dispatchThreadId : SV_DispatchThreadID) +{ + if (dispatchThreadId < HISTOGRAM_BINS) + _HistogramBuffer[dispatchThreadId] = 0u; +} + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Histogram.compute.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Histogram.compute.meta new file mode 100644 index 0000000..df2ca20 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Histogram.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 18183ebfeeab97749b43e38b928604a7 +timeCreated: 1499679719 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 8196 + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Histogram.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Histogram.shader new file mode 100644 index 0000000..abdd9a0 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Histogram.shader @@ -0,0 +1,97 @@ +Shader "Hidden/PostProcessing/Debug/Histogram" +{ + HLSLINCLUDE + + #pragma exclude_renderers gles gles3 d3d11_9x + #pragma target 4.5 + #include "../StdLib.hlsl" + + #if SHADER_API_GLES3 + #define HISTOGRAM_BINS 128 + #else + #define HISTOGRAM_BINS 256 + #endif + + struct VaryingsHistogram + { + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + float maxValue : TEXCOORD1; + }; + + StructuredBuffer _HistogramBuffer; + float2 _Params; // x: width, y: height + + float FindMaxHistogramValue() + { + uint maxValue = 0u; + + UNITY_UNROLL + for (uint i = 0; i < HISTOGRAM_BINS; i++) + { + uint h = _HistogramBuffer[i]; + maxValue = max(maxValue, h); + } + + return float(maxValue); + } + + VaryingsHistogram Vert(AttributesDefault v) + { + VaryingsHistogram o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); + + #if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); + #endif + + #if SHADER_API_GLES3 // No texture loopup in VS on GLES3/Android + o.maxValue = 0; + #else + o.maxValue = _Params.y / FindMaxHistogramValue(); + #endif + + return o; + } + + float4 Frag(VaryingsHistogram i) : SV_Target + { + #if SHADER_API_GLES3 + float maxValue = _Params.y / FindMaxHistogramValue(); + #else + float maxValue = i.maxValue; + #endif + + const float kBinsMinusOne = HISTOGRAM_BINS - 1.0; + float remapI = i.texcoord.x * kBinsMinusOne; + uint index = floor(remapI); + float delta = frac(remapI); + float v1 = float(_HistogramBuffer[index]) * maxValue; + float v2 = float(_HistogramBuffer[min(index + 1, kBinsMinusOne)]) * maxValue; + float h = v1 * (1.0 - delta) + v2 * delta; + uint y = (uint)round(i.texcoord.y * _Params.y); + + float3 color = (0.0).xxx; + float fill = step(y, h); + color = lerp(color, (1.0).xxx, fill); + return float4(color, 1.0); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex Vert + #pragma fragment Frag + + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Histogram.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Histogram.shader.meta new file mode 100644 index 0000000..e09ac2b --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Histogram.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: f7ea35cfb33fcad4ab8f2429ec103bef +timeCreated: 1499679714 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/LightMeter.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/LightMeter.shader new file mode 100644 index 0000000..af1b220 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/LightMeter.shader @@ -0,0 +1,111 @@ +Shader "Hidden/PostProcessing/Debug/LightMeter" +{ + HLSLINCLUDE + + #pragma exclude_renderers gles gles3 d3d11_9x + #pragma target 4.5 + #include "../StdLib.hlsl" + #include "../Builtins/ExposureHistogram.hlsl" + #pragma multi_compile __ COLOR_GRADING_HDR + #pragma multi_compile __ AUTO_EXPOSURE + + float4 _Params; // x: lowPercent, y: highPercent, z: minBrightness, w: maxBrightness + float4 _ScaleOffsetRes; // x: scale, y: offset, w: histogram pass width, h: histogram pass height + + TEXTURE3D_SAMPLER3D(_Lut3D, sampler_Lut3D); + + StructuredBuffer _HistogramBuffer; + + struct VaryingsLightMeter + { + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + float maxValue : TEXCOORD1; + float avgLuminance : TEXCOORD2; + }; + + VaryingsLightMeter Vert(AttributesDefault v) + { + VaryingsLightMeter o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); + + #if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); + #endif + + o.maxValue = 1.0 / FindMaxHistogramValue(_HistogramBuffer); + o.avgLuminance = GetAverageLuminance(_HistogramBuffer, _Params, o.maxValue, _ScaleOffsetRes.xy); + + return o; + } + + float4 Frag(VaryingsLightMeter i) : SV_Target + { + uint ix = (uint)(round(i.texcoord.x * HISTOGRAM_BINS)); + float bin = saturate(float(_HistogramBuffer[ix]) * i.maxValue); + float fill = step(i.texcoord.y, bin); + + float4 color = float4(lerp(0.0, 0.75, fill).xxx, 1.0); + + #if AUTO_EXPOSURE + const float3 kRangeColor = float3(0.05, 0.3, 0.4); + const float3 kAvgColor = float3(0.75, 0.1, 1.0); + + // Min / max brightness markers + float luminanceMin = GetHistogramBinFromLuminance(_Params.z, _ScaleOffsetRes.xy); + float luminanceMax = GetHistogramBinFromLuminance(_Params.w, _ScaleOffsetRes.xy); + + if (i.texcoord.x > luminanceMin && i.texcoord.x < luminanceMax) + { + color.rgb = fill.rrr * kRangeColor; + color.rgb += kRangeColor; + } + #endif + + #if COLOR_GRADING_HDR + // Draw color curves on top + float4 curves = 0.0; + float3 lut = SAMPLE_TEXTURE3D(_Lut3D, sampler_Lut3D, i.texcoord.xxx).rgb; + + if (abs(lut.r - i.texcoord.y) < _ScaleOffsetRes.w) + curves.ra += (1.0).xx; + + if (abs(lut.g - i.texcoord.y) < _ScaleOffsetRes.w) + curves.ga += (1.0).xx; + + if (abs(lut.b - i.texcoord.y) < _ScaleOffsetRes.w) + curves.gba += float3(0.5, (1.0).xx); + + color = any(curves) ? curves : color; + #endif + + #if AUTO_EXPOSURE + // Current average luminance marker + float luminanceAvg = GetHistogramBinFromLuminance(i.avgLuminance, _ScaleOffsetRes.xy); + float avgPx = luminanceAvg * _ScaleOffsetRes.z; + + if (abs(i.texcoord.x - luminanceAvg) < _ScaleOffsetRes.z * 2.0) + color.rgb = kAvgColor; + #endif + + return color; + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex Vert + #pragma fragment Frag + + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/LightMeter.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/LightMeter.shader.meta new file mode 100644 index 0000000..2a7736b --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/LightMeter.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: b34a29e523cb9d545881e193a079f2df +timeCreated: 1496329341 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Overlays.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Overlays.shader new file mode 100644 index 0000000..8b2fccd --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Overlays.shader @@ -0,0 +1,369 @@ +Shader "Hidden/PostProcessing/Debug/Overlays" +{ + HLSLINCLUDE + + #include "../StdLib.hlsl" + #include "../Colors.hlsl" + #pragma target 3.0 + + TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex); + TEXTURE2D_SAMPLER2D(_CameraDepthTexture, sampler_CameraDepthTexture); + TEXTURE2D_SAMPLER2D(_CameraDepthNormalsTexture, sampler_CameraDepthNormalsTexture); + TEXTURE2D_SAMPLER2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture); + + #if SOURCE_GBUFFER + TEXTURE2D_SAMPLER2D(_CameraGBufferTexture2, sampler_CameraGBufferTexture2); + #endif + + float4 _MainTex_TexelSize; + float4 _Params; + + // ----------------------------------------------------------------------------- + // Depth + + float4 FragDepth(VaryingsDefault i) : SV_Target + { + float d = SAMPLE_DEPTH_TEXTURE_LOD(_CameraDepthTexture, sampler_CameraDepthTexture, i.texcoordStereo, 0); + d = lerp(d, Linear01Depth(d), _Params.x); + + //#if !UNITY_COLORSPACE_GAMMA + // d = SRGBToLinear(d); + //#endif + + return float4(d.xxx, 1.0); + } + + // ----------------------------------------------------------------------------- + // Normals + + float4 FragNormals(VaryingsDefault i) : SV_Target + { + #if SOURCE_GBUFFER + float3 norm = SAMPLE_TEXTURE2D(_CameraGBufferTexture2, sampler_CameraGBufferTexture2, i.texcoordStereo).xyz * 2.0 - 1.0; + float3 n = mul((float3x3)unity_WorldToCamera, norm); + #else + float4 cdn = SAMPLE_TEXTURE2D(_CameraDepthNormalsTexture, sampler_CameraDepthNormalsTexture, i.texcoordStereo); + float3 n = DecodeViewNormalStereo(cdn) * float3(1.0, 1.0, -1.0); + #endif + + #if UNITY_COLORSPACE_GAMMA + n = LinearToSRGB(n); + #endif + + return float4(n, 1.0); + } + + // ----------------------------------------------------------------------------- + // Motion vectors + + float DistanceToLine(float2 p, float2 p1, float2 p2) + { + float2 center = (p1 + p2) * 0.5; + float len = length(p2 - p1); + float2 dir = (p2 - p1) / len; + float2 rel_p = p - center; + return dot(rel_p, float2(dir.y, -dir.x)); + } + + float DistanceToSegment(float2 p, float2 p1, float2 p2) + { + float2 center = (p1 + p2) * 0.5; + float len = length(p2 - p1); + float2 dir = (p2 - p1) / len; + float2 rel_p = p - center; + float dist1 = abs(dot(rel_p, float2(dir.y, -dir.x))); + float dist2 = abs(dot(rel_p, dir)) - 0.5 * len; + return max(dist1, dist2); + } + + float DrawArrow(float2 texcoord, float body, float head, float height, float linewidth, float antialias) + { + float w = linewidth / 2.0 + antialias; + float2 start = -float2(body / 2.0, 0.0); + float2 end = float2(body / 2.0, 0.0); + + // Head: 3 lines + float d1 = DistanceToLine(texcoord, end, end - head * float2(1.0, -height)); + float d2 = DistanceToLine(texcoord, end - head * float2(1.0, height), end); + float d3 = texcoord.x - end.x + head; + + // Body: 1 segment + float d4 = DistanceToSegment(texcoord, start, end - float2(linewidth, 0.0)); + + float d = min(max(max(d1, d2), -d3), d4); + return d; + } + + float2 SampleMotionVectors(float2 coords) + { + float2 mv = SAMPLE_TEXTURE2D(_CameraMotionVectorsTexture, sampler_CameraMotionVectorsTexture, UnityStereoTransformScreenSpaceTex(coords)).xy; + mv.y *= -1.0; + return mv; + } + + float4 FragMotionVectors(VaryingsDefault i) : SV_Target + { +#if UNITY_CAN_READ_POSITION_IN_FRAGMENT_PROGRAM + float3 src = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo).rgb; + float2 mv = SampleMotionVectors(i.texcoord); + + // Background color intensity - keep this low unless you want to make your eyes bleed + const float kIntensity = _Params.x; + + // Map motion vector direction to color wheel (hue between 0 and 360deg) + float phi = atan2(mv.x, mv.y); + float hue = (phi / PI + 1.0) * 0.5; + float r = abs(hue * 6.0 - 3.0) - 1.0; + float g = 2.0 - abs(hue * 6.0 - 2.0); + float b = 2.0 - abs(hue * 6.0 - 4.0); + float a = length(mv * kIntensity); + + float4 color = saturate(float4(r, g, b, a)); + + // Grid subdivisions + const float kGrid = _Params.y; + + // Arrow grid (aspect ratio is kept) + float rows = floor(kGrid * _MainTex_TexelSize.w / _MainTex_TexelSize.z); + float cols = kGrid; + float2 size = _MainTex_TexelSize.zw / float2(cols, rows); + float body = (min(size.x, size.y) / 1.4142135623730951) * saturate(length(mv * kGrid * 0.25)); + float2 texcoord = i.vertex.xy; + float2 center = (floor(texcoord / size) + 0.5) * size; + texcoord -= center; + + // Sample the center of the cell to get the current arrow vector + float2 arrow_coord = center / _MainTex_TexelSize.zw; + float2 mv_arrow = SampleMotionVectors(arrow_coord); + + // Skip empty motion + float d = 0.0; + if (any(mv_arrow)) + { + // Rotate the arrow according to the direction + mv_arrow = normalize(mv_arrow); + float2x2 rot = float2x2(mv_arrow.x, -mv_arrow.y, mv_arrow.y, mv_arrow.x); + texcoord = mul(rot, texcoord); + + d = DrawArrow(texcoord, body, 0.25 * body, 0.5, 2.0, 1.0); + d = 1.0 - saturate(d); + } + + #if !UNITY_COLORSPACE_GAMMA + src = LinearToSRGB(src); + #endif + + color.rgb = lerp(src, color.rgb, color.a); + + #if !UNITY_COLORSPACE_GAMMA + color.rgb = SRGBToLinear(color.rgb); + #endif + + return float4(color.rgb + d.xxx, 1.0); +#else + // Reading vertex SV_POSITION in a fragment shader is not supported by this platform so just return solid color. + return float4(1.0f, 0.0f, 1.0f, 1.0f); +#endif + } + + // ----------------------------------------------------------------------------- + // NAN tracker + + float4 FragNANTracker(VaryingsDefault i) : SV_Target + { + float4 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo); + + if (AnyIsNan(color)) + { + color = float4(1.0, 0.0, 1.0, 1.0); + } + else + { + // Dim the color buffer so we can see NaNs & Infs better + color.rgb = saturate(color.rgb) * 0.25; + } + + return color; + } + + // ----------------------------------------------------------------------------- + // Color blindness simulation + + float3 RGFilter(float3 color, float k1, float k2, float k3) + { + float3 c_lin = color * 128.498039; + + float r_blind = (k1 * c_lin.r + k2 * c_lin.g) / 16448.25098; + float b_blind = (k3 * c_lin.r - k3 * c_lin.g + 128.498039 * c_lin.b) / 16448.25098; + r_blind = saturate(r_blind); + b_blind = saturate(b_blind); + + return lerp(color, float3(r_blind, r_blind, b_blind), _Params.x); + } + + float4 FragDeuteranopia(VaryingsDefault i) : SV_Target + { + float3 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo).rgb; + color = saturate(color); + + #if UNITY_COLORSPACE_GAMMA + color = SRGBToLinear(color); + #endif + + color = RGFilter(color, 37.611765, 90.87451, -2.862745); + + #if UNITY_COLORSPACE_GAMMA + color = LinearToSRGB(color); + #endif + + return float4(color, 1.0); + } + + float4 FragProtanopia(VaryingsDefault i) : SV_Target + { + float3 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo).rgb; + color = saturate(color); + + #if UNITY_COLORSPACE_GAMMA + color = SRGBToLinear(color); + #endif + + color = RGFilter(color, 14.443137, 114.054902, 0.513725); + + #if UNITY_COLORSPACE_GAMMA + color = LinearToSRGB(color); + #endif + + return float4(color, 1.0); + } + + float4 FragTritanopia(VaryingsDefault i) : SV_Target + { + float3 color = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, i.texcoordStereo).rgb; + color = saturate(color); + + float anchor_e0 = 0.05059983 + 0.08585369 + 0.00952420; + float anchor_e1 = 0.01893033 + 0.08925308 + 0.01370054; + float anchor_e2 = 0.00292202 + 0.00975732 + 0.07145979; + float inflection = anchor_e1 / anchor_e0; + + float a1 = -anchor_e2 * 0.007009; + float b1 = anchor_e2 * 0.0914; + float c1 = anchor_e0 * 0.007009 - anchor_e1 * 0.0914; + float a2 = anchor_e1 * 0.3636 - anchor_e2 * 0.2237; + float b2 = anchor_e2 * 0.1284 - anchor_e0 * 0.3636; + float c2 = anchor_e0 * 0.2237 - anchor_e1 * 0.1284; + + #if UNITY_COLORSPACE_GAMMA + color = SRGBToLinear(color); + #endif + + float3 c_lin = color * 128.498039; + + float L = (c_lin.r * 0.05059983 + c_lin.g * 0.08585369 + c_lin.b * 0.00952420) / 128.498039; + float M = (c_lin.r * 0.01893033 + c_lin.g * 0.08925308 + c_lin.b * 0.01370054) / 128.498039; + float S = (c_lin.r * 0.00292202 + c_lin.g * 0.00975732 + c_lin.b * 0.07145979) / 128.498039; + + float tmp = M / L; + + if (tmp < inflection) S = -(a1 * L + b1 * M) / c1; + else S = -(a2 * L + b2 * M) / c2; + + float r = L * 30.830854 - M * 29.832659 + S * 1.610474; + float g = -L * 6.481468 + M * 17.715578 - S * 2.532642; + float b = -L * 0.375690 - M * 1.199062 + S * 14.273846; + + color = lerp(color, saturate(float3(r, g, b)), _Params.x); + + #if UNITY_COLORSPACE_GAMMA + color = LinearToSRGB(color); + #endif + + return float4(color, 1.0); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // 0 - Depth + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragDepth + + ENDHLSL + } + + // 1 - Normals + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragNormals + #pragma multi_compile _ SOURCE_GBUFFER + + ENDHLSL + } + + // 2 - Motion vectors + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragMotionVectors + + ENDHLSL + } + + // 3 - Nan tracker + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragNANTracker + + ENDHLSL + } + + // 4 - Color blindness (deuteranopia) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragDeuteranopia + + ENDHLSL + } + + // 5 - Color blindness (protanopia) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragProtanopia + + ENDHLSL + } + + // 6 - Color blindness (tritanopia) + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment FragTritanopia + + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Overlays.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Overlays.shader.meta new file mode 100644 index 0000000..579e6c8 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Overlays.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: b958ad1c92bd3d64c9e61318b8681dab +timeCreated: 1504771237 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Vectorscope.compute b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Vectorscope.compute new file mode 100644 index 0000000..e6e3f79 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Vectorscope.compute @@ -0,0 +1,51 @@ +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#include "../StdLib.hlsl" +#include "../Colors.hlsl" + +RWStructuredBuffer _VectorscopeBuffer; +Texture2D _Source; + +CBUFFER_START (Params) + float4 _Params; // x: source width, y: source height, z: buffer size, w: linear? +CBUFFER_END + +#define GROUP_SIZE_X 16 +#define GROUP_SIZE_Y 16 + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(KVectorscopeGather) +TRIVIAL_COMPUTE_KERNEL(KVectorscopeClear) + +#else + +#pragma kernel KVectorscopeGather +[numthreads(GROUP_SIZE_X, GROUP_SIZE_Y, 1)] +void KVectorscopeGather(uint2 dispatchThreadId : SV_DispatchThreadID) +{ + if (dispatchThreadId.x < uint(_Params.x) && dispatchThreadId.y < uint(_Params.y)) + { + float3 color = saturate(_Source[dispatchThreadId].xyz); + + if (_Params.w > 0) + color = LinearToSRGB(color); + + float3 yuv = RgbToYCbCr(color); + yuv.yz += (0.5).xx; + uint u = (uint)floor(yuv.y * _Params.z); + uint v = (uint)floor(yuv.z * _Params.z); + InterlockedAdd(_VectorscopeBuffer[v * _Params.z + u], 1u); + } +} + +#pragma kernel KVectorscopeClear +[numthreads(GROUP_SIZE_X, GROUP_SIZE_Y, 1)] +void KVectorscopeClear(uint2 dispatchThreadId : SV_DispatchThreadID) +{ + if (dispatchThreadId.x < uint(_Params.z) && dispatchThreadId.y < uint(_Params.z)) + _VectorscopeBuffer[dispatchThreadId.y * _Params.z + dispatchThreadId.x] = 0u; +} + +#endif diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Vectorscope.compute.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Vectorscope.compute.meta new file mode 100644 index 0000000..a4de9bd --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Vectorscope.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: e1efca7c36fd01840aae0dd10378de5c +timeCreated: 1499700468 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 8196 + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Vectorscope.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Vectorscope.shader new file mode 100644 index 0000000..3535fe6 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Vectorscope.shader @@ -0,0 +1,59 @@ +Shader "Hidden/PostProcessing/Debug/Vectorscope" +{ + HLSLINCLUDE + + #pragma exclude_renderers gles gles3 d3d11_9x + #pragma target 4.5 + #include "../StdLib.hlsl" + #include "../Colors.hlsl" + + StructuredBuffer _VectorscopeBuffer; + float3 _Params; // x: width, y: height, z: exposure, w: unused + + float Tonemap(float x, float exposure) + { + const float a = 6.2; + const float b = 0.5; + const float c = 1.7; + const float d = 0.06; + x *= exposure; + x = max(0.0, x - 0.004); + x = (x * (a * x + b)) / (x * (a * x + c) + d); + return x * x; + } + + float4 Frag(VaryingsDefault i) : SV_Target + { + i.texcoord.x = 1.0 - i.texcoord.x; + float2 uv = i.texcoord - (0.5).xx; + float3 c = YCbCrToRgb(float3(0.5, uv.x, uv.y)); + + float dist = sqrt(dot(uv, uv)); + float delta = fwidth(dist) * 0.5; + float alphaOut = 1.0 - smoothstep(0.5 - delta, 0.5 + delta, dist); + + uint2 uvI = i.texcoord.xy * _Params.xy; + uint v = _VectorscopeBuffer[uvI.x + uvI.y * _Params.x]; + float vt = saturate(Tonemap(v, _Params.z)); + + float4 color = float4(lerp(c, (0.0).xxx, vt), 1.0); + return color; + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Vectorscope.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Vectorscope.shader.meta new file mode 100644 index 0000000..be93327 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Vectorscope.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: a71093f2a4fe26a40805c22739e10e4a +timeCreated: 1499700462 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Waveform.compute b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Waveform.compute new file mode 100644 index 0000000..37b983e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Waveform.compute @@ -0,0 +1,58 @@ +#pragma warning(disable : 3568) +#pragma exclude_renderers gles gles3 d3d11_9x + +#include "../StdLib.hlsl" +#include "../Colors.hlsl" + +RWStructuredBuffer _WaveformBuffer; +Texture2D _Source; +SamplerState sampler_Source; + +CBUFFER_START(Params) + float4 _Params; // x: source width, y: source height, z: linear, w: unused +CBUFFER_END + +#define GROUP_SIZE 256 +#define GROUP_SIZE_X 16 +#define GROUP_SIZE_Y 16 + +#ifdef DISABLE_COMPUTE_SHADERS + +TRIVIAL_COMPUTE_KERNEL(KWaveformGather) +TRIVIAL_COMPUTE_KERNEL(KWaveformClear) + +#else + +#pragma kernel KWaveformGather +[numthreads(1, GROUP_SIZE, 1)] +void KWaveformGather(uint2 dispatchThreadId : SV_DispatchThreadID) +{ + // Gather local group histogram + if (dispatchThreadId.x < uint(_Params.x) && dispatchThreadId.y < uint(_Params.y)) + { + float3 color = _Source[dispatchThreadId].rgb; + color = saturate(color); + + // We want a gamma-corrected histogram (like Photoshop & all) + if (_Params.z > 0) + color = LinearToSRGB(color); + + // Convert channel values to histogram bins + uint3 idx = (uint3)(round(color * (_Params.y - 1))); + idx += dispatchThreadId.x * _Params.y; + + if (idx.x > 0u) InterlockedAdd(_WaveformBuffer[idx.x].x, 1u); // Red + if (idx.y > 0u) InterlockedAdd(_WaveformBuffer[idx.y].y, 1u); // Green + if (idx.z > 0u) InterlockedAdd(_WaveformBuffer[idx.z].z, 1u); // Blue + } +} + +#pragma kernel KWaveformClear +[numthreads(GROUP_SIZE_X, GROUP_SIZE_Y, 1)] +void KWaveformClear(uint2 dispatchThreadId : SV_DispatchThreadID) +{ + if (dispatchThreadId.x < uint(_Params.x) && dispatchThreadId.y < uint(_Params.y)) + _WaveformBuffer[dispatchThreadId.y * uint(_Params.x) + dispatchThreadId.x] = uint4(0u, 0u, 0u, 0u); +} + +#endif // DISABLE_COMPUTE_SHADERS diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Waveform.compute.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Waveform.compute.meta new file mode 100644 index 0000000..6350f04 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Waveform.compute.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 92c63830cd50c0b4fbb8233613839958 +timeCreated: 1499691152 +licenseType: Pro +ComputeShaderImporter: + currentAPIMask: 8196 + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Waveform.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Waveform.shader new file mode 100644 index 0000000..2c3a8b9 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Waveform.shader @@ -0,0 +1,58 @@ +Shader "Hidden/PostProcessing/Debug/Waveform" +{ + HLSLINCLUDE + + #pragma exclude_renderers gles gles3 d3d11_9x + #pragma target 4.5 + #include "../StdLib.hlsl" + + StructuredBuffer _WaveformBuffer; + float3 _Params; // x: buffer width, y: buffer height, z: exposure, w: unused + + float3 Tonemap(float3 x, float exposure) + { + const float a = 6.2; + const float b = 0.5; + const float c = 1.7; + const float d = 0.06; + x *= exposure; + x = max((0.0).xxx, x - (0.004).xxx); + x = (x * (a * x + b)) / (x * (a * x + c) + d); + return x * x; + } + + float4 Frag(VaryingsDefault i) : SV_Target + { + const float3 red = float3(1.4, 0.03, 0.02); + const float3 green = float3(0.02, 1.1, 0.05); + const float3 blue = float3(0.0, 0.25, 1.5); + float3 color = float3(0.0, 0.0, 0.0); + + uint2 uvI = i.vertex.xy; + float3 w = _WaveformBuffer[uvI.x * _Params.y + uvI.y].xyz; + + color += red * w.r; + color += green * w.g; + color += blue * w.b; + color = Tonemap(color, _Params.z); + + return float4(saturate(color), 1.0); + } + + ENDHLSL + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + HLSLPROGRAM + + #pragma vertex VertDefault + #pragma fragment Frag + + ENDHLSL + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Waveform.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Waveform.shader.meta new file mode 100644 index 0000000..beb1932 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Debug/Waveform.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 3020ac7ece79a7f4eb789a236f8bd6c5 +timeCreated: 1499691145 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor.meta new file mode 100644 index 0000000..5bf7e33 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 5c66af49245494b4a8b294f2d39e7387 +folderAsset: yes +timeCreated: 1493903686 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor/ConvertToLog.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor/ConvertToLog.shader new file mode 100644 index 0000000..7f5f596 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor/ConvertToLog.shader @@ -0,0 +1,65 @@ +Shader "Hidden/PostProcessing/Editor/ConvertToLog" +{ + Properties + { + _MainTex ("", 2D) = "white" {} + } + + CGINCLUDE + + #include "UnityCG.cginc" + + struct ParamsLogC + { + float cut; + float a, b, c, d, e, f; + }; + + static const ParamsLogC LogC = + { + 0.011361, // cut + 5.555556, // a + 0.047996, // b + 0.244161, // c + 0.386036, // d + 5.301883, // e + 0.092819 // f + }; + + float LinearToLogC_Precise(half x) + { + float o; + if (x > LogC.cut) + o = LogC.c * log10(LogC.a * x + LogC.b) + LogC.d; + else + o = LogC.e * x + LogC.f; + return o; + } + + sampler2D _MainTex; + + float4 Frag(v2f_img i) : SV_Target + { + float4 color = tex2D(_MainTex, i.uv); + color.rgb = float3(LinearToLogC_Precise(color.r), LinearToLogC_Precise(color.g), LinearToLogC_Precise(color.b)); + color.a = 1.0; + return color; + } + + ENDCG + + SubShader + { + Cull Off ZWrite Off ZTest Always + + Pass + { + CGPROGRAM + + #pragma vertex vert_img + #pragma fragment Frag + + ENDCG + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor/ConvertToLog.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor/ConvertToLog.shader.meta new file mode 100644 index 0000000..600eb27 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor/ConvertToLog.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: fe144c7e314047f4bb779d555c5405ac +timeCreated: 1496747212 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor/CurveGrid.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor/CurveGrid.shader new file mode 100644 index 0000000..37c5657 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor/CurveGrid.shader @@ -0,0 +1,63 @@ +Shader "Hidden/PostProcessing/Editor/CurveGrid" +{ + CGINCLUDE + + #pragma target 3.0 + #include "UnityCG.cginc" + + float _DisabledState; + + float3 HsvToRgb(float3 c) + { + float4 K = float4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); + float3 p = abs(frac(c.xxx + K.xyz) * 6.0 - K.www); + return c.z * lerp(K.xxx, saturate(p - K.xxx), c.y); + } + + float4 FragHue(v2f_img i) : SV_Target + { + float3 hsv = HsvToRgb(float3(i.uv.x, 1.0, 0.2)); + float4 color = float4((0.0).xxx, 1.0); + color.rgb = lerp(color.rgb, hsv, smoothstep(0.5, 1.1, 1.0 - i.uv.y)) + lerp(color.rgb, hsv, smoothstep(0.5, 1.1, i.uv.y)); + color.rgb += (0.15).xxx; + return float4(color.rgb, color.a * _DisabledState); + } + + float4 FragSat(v2f_img i) : SV_Target + { + float4 color = float4((0.0).xxx, 1.0); + float sat = i.uv.x / 2; + color.rgb += lerp(color.rgb, (sat).xxx, smoothstep(0.5, 1.2, 1.0 - i.uv.y)) + lerp(color.rgb, (sat).xxx, smoothstep(0.5, 1.2, i.uv.y)); + color.rgb += (0.15).xxx; + return float4(color.rgb, color.a * _DisabledState); + } + + ENDCG + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // (0) Hue + Pass + { + CGPROGRAM + + #pragma vertex vert_img + #pragma fragment FragHue + + ENDCG + } + + // (1) Sat/lum + Pass + { + CGPROGRAM + + #pragma vertex vert_img + #pragma fragment FragSat + + ENDCG + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor/CurveGrid.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor/CurveGrid.shader.meta new file mode 100644 index 0000000..6b4665f --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor/CurveGrid.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 5bb6ef6f3e1b20348b4fdb01e4c404e2 +timeCreated: 1493997957 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor/Trackball.shader b/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor/Trackball.shader new file mode 100644 index 0000000..38d92a4 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor/Trackball.shader @@ -0,0 +1,118 @@ +Shader "Hidden/PostProcessing/Editor/Trackball" +{ + CGINCLUDE + + #include "UnityCG.cginc" + + #define PI 3.14159265359 + #define PI2 6.28318530718 + + float _Offset; + float _DisabledState; + float2 _Resolution; // x: size, y: size / 2 + + float3 HsvToRgb(float3 c) + { + float4 K = float4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0); + float3 p = abs(frac(c.xxx + K.xyz) * 6.0 - K.www); + return c.z * lerp(K.xxx, saturate(p - K.xxx), c.y); + } + + float4 CreateWheel(v2f_img i, float crossColor, float offsetColor) + { + const float kHueOuterRadius = 0.45; + const float kHueInnerRadius = 0.38; + const float kLumOuterRadius = 0.495; + const float kLumInnerRadius = 0.48; + + float4 color = (0.0).xxxx; + float2 uvc = i.uv - (0.5).xx; + float dist = sqrt(dot(uvc, uvc)); + float delta = fwidth(dist); + float angle = atan2(uvc.x, uvc.y); + + // Cross + { + float radius = (0.5 - kHueInnerRadius) * _Resolution.x + 1.0; + float2 pixel = (_Resolution.xx - 1.0) * i.uv + 1.0; + + float vline = step(floor(fmod(pixel.x, _Resolution.y)), 0.0); + vline *= step(radius, pixel.y) * step(pixel.y, _Resolution.x - radius); + + float hline = step(floor(fmod(pixel.y, _Resolution.y)), 0.0); + hline *= step(radius, pixel.x) * step(pixel.x, _Resolution.x - radius); + + color += hline.xxxx * (1.0).xxxx; + color += vline.xxxx * (1.0).xxxx; + color = saturate(color); + color *= half4((crossColor).xxx, 0.05); + } + + // Hue + { + float alphaOut = smoothstep(kHueOuterRadius - delta, kHueOuterRadius + delta, dist); + float alphaIn = smoothstep(kHueInnerRadius - delta, kHueInnerRadius + delta, dist); + + float hue = angle; + hue = 1.0 - ((hue > 0.0) ? hue : PI2 + hue) / PI2; + float4 c = float4(HsvToRgb(float3(hue, 1.0, 1.0)), 1.0); + color += lerp((0.0).xxxx, c, alphaIn - alphaOut); + } + + // Offset + { + float alphaOut = smoothstep(kLumOuterRadius - delta, kLumOuterRadius + delta, dist); + float alphaIn = smoothstep(kLumInnerRadius - delta, kLumInnerRadius + delta / 2, dist); + float4 c = float4((offsetColor).xxx, 1.0); + + float a = PI * _Offset; + if (_Offset >= 0 && angle < a && angle > 0.0) + c = float4((1.0).xxx, 0.5); + else if (angle > a && angle < 0.0) + c = float4((1.0).xxx, 0.5); + + color += lerp((0.0).xxxx, c, alphaIn - alphaOut); + } + + return color * _DisabledState; + } + + float4 FragTrackballDark(v2f_img i) : SV_Target + { + return CreateWheel(i, 1.0, 0.15); + } + + float4 FragTrackballLight(v2f_img i) : SV_Target + { + return CreateWheel(i, 0.0, 0.3); + } + + ENDCG + + SubShader + { + Cull Off ZWrite Off ZTest Always + + // (0) Dark skin + Pass + { + CGPROGRAM + + #pragma vertex vert_img + #pragma fragment FragTrackballDark + + ENDCG + } + + // (1) Light skin + Pass + { + CGPROGRAM + + #pragma vertex vert_img + #pragma fragment FragTrackballLight + + ENDCG + } + } +} diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor/Trackball.shader.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor/Trackball.shader.meta new file mode 100644 index 0000000..21ebfe4 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Editor/Trackball.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: de7f3ac52268a194383c7d62c2a343c1 +timeCreated: 1493903699 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Sampling.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/Sampling.hlsl new file mode 100644 index 0000000..f92b9c3 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Sampling.hlsl @@ -0,0 +1,91 @@ +#ifndef UNITY_POSTFX_SAMPLING +#define UNITY_POSTFX_SAMPLING + +#include "StdLib.hlsl" + +// Better, temporally stable box filtering +// [Jimenez14] http://goo.gl/eomGso +// . . . . . . . +// . A . B . C . +// . . D . E . . +// . F . G . H . +// . . I . J . . +// . K . L . M . +// . . . . . . . +half4 DownsampleBox13Tap(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize) +{ + half4 A = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-1.0, -1.0))); + half4 B = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 0.0, -1.0))); + half4 C = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 1.0, -1.0))); + half4 D = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-0.5, -0.5))); + half4 E = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 0.5, -0.5))); + half4 F = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-1.0, 0.0))); + half4 G = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv )); + half4 H = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 1.0, 0.0))); + half4 I = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-0.5, 0.5))); + half4 J = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 0.5, 0.5))); + half4 K = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2(-1.0, 1.0))); + half4 L = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 0.0, 1.0))); + half4 M = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + texelSize * float2( 1.0, 1.0))); + + half2 div = (1.0 / 4.0) * half2(0.5, 0.125); + + half4 o = (D + E + I + J) * div.x; + o += (A + B + G + F) * div.y; + o += (B + C + H + G) * div.y; + o += (F + G + L + K) * div.y; + o += (G + H + M + L) * div.y; + + return o; +} + +// Standard box filtering +half4 DownsampleBox4Tap(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize) +{ + float4 d = texelSize.xyxy * float4(-1.0, -1.0, 1.0, 1.0); + + half4 s; + s = (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xy))); + s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zy))); + s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xw))); + s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zw))); + + return s * (1.0 / 4.0); +} + +// 9-tap bilinear upsampler (tent filter) +half4 UpsampleTent(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize, float4 sampleScale) +{ + float4 d = texelSize.xyxy * float4(1.0, 1.0, -1.0, 0.0) * sampleScale; + + half4 s; + s = SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv - d.xy)); + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv - d.wy)) * 2.0; + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv - d.zy)); + + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zw)) * 2.0; + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv )) * 4.0; + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xw)) * 2.0; + + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zy)); + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.wy)) * 2.0; + s += SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xy)); + + return s * (1.0 / 16.0); +} + +// Standard box filtering +half4 UpsampleBox(TEXTURE2D_ARGS(tex, samplerTex), float2 uv, float2 texelSize, float4 sampleScale) +{ + float4 d = texelSize.xyxy * float4(-1.0, -1.0, 1.0, 1.0) * (sampleScale * 0.5); + + half4 s; + s = (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xy))); + s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zy))); + s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.xw))); + s += (SAMPLE_TEXTURE2D(tex, samplerTex, UnityStereoTransformScreenSpaceTex(uv + d.zw))); + + return s * (1.0 / 4.0); +} + +#endif // UNITY_POSTFX_SAMPLING diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/Sampling.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/Sampling.hlsl.meta new file mode 100644 index 0000000..45ead5a --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/Sampling.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: f16ad9ee5ff13554b98568aa655d6bda +timeCreated: 1489940178 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/StdLib.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/StdLib.hlsl new file mode 100644 index 0000000..224dc72 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/StdLib.hlsl @@ -0,0 +1,322 @@ +// Because this framework is supposed to work with the legacy render pipelines AND scriptable render +// pipelines we can't use Unity's shader libraries (some scriptable pipelines come with their own +// shader lib). So here goes a minimal shader lib only used for post-processing to ensure good +// compatibility with all pipelines. + +#ifndef UNITY_POSTFX_STDLIB +#define UNITY_POSTFX_STDLIB + +// ----------------------------------------------------------------------------- +// API macros + +#if defined(SHADER_API_PSSL) + #include "API/PSSL.hlsl" +#elif defined(SHADER_API_XBOXONE) + #include "API/XboxOne.hlsl" +#elif defined(SHADER_API_D3D11) + #include "API/D3D11.hlsl" +#elif defined(SHADER_API_D3D12) + #include "API/D3D12.hlsl" +#elif defined(SHADER_API_D3D9) || defined(SHADER_API_D3D11_9X) + #include "API/D3D9.hlsl" +#elif defined(SHADER_API_VULKAN) + #include "API/Vulkan.hlsl" +#elif defined(SHADER_API_SWITCH) + #include "API/Switch.hlsl" +#elif defined(SHADER_API_METAL) + #include "API/Metal.hlsl" +#elif defined(SHADER_API_PSP2) + #include "API/PSP2.hlsl" +#else + #include "API/OpenGL.hlsl" +#endif + +#if defined(SHADER_API_PSSL) || defined(SHADER_API_XBOXONE) || defined(SHADER_API_SWITCH) || defined(SHADER_API_PSP2) + #define SHADER_API_CONSOLE +#endif + +// ----------------------------------------------------------------------------- +// Constants + +#define HALF_MAX 65504.0 // (2 - 2^-10) * 2^15 +#define HALF_MAX_MINUS1 65472.0 // (2 - 2^-9) * 2^15 +#define EPSILON 1.0e-4 +#define PI 3.14159265359 +#define TWO_PI 6.28318530718 +#define FOUR_PI 12.56637061436 +#define INV_PI 0.31830988618 +#define INV_TWO_PI 0.15915494309 +#define INV_FOUR_PI 0.07957747155 +#define HALF_PI 1.57079632679 +#define INV_HALF_PI 0.636619772367 + +#define FLT_EPSILON 1.192092896e-07 // Smallest positive number, such that 1.0 + FLT_EPSILON != 1.0 +#define FLT_MIN 1.175494351e-38 // Minimum representable positive floating-point number +#define FLT_MAX 3.402823466e+38 // Maximum representable floating-point number + +// ----------------------------------------------------------------------------- +// Compatibility functions + +#if (SHADER_TARGET < 50 && !defined(SHADER_API_PSSL)) +float rcp(float value) +{ + return 1.0 / value; +} +#endif + +#if defined(SHADER_API_GLES) +#define mad(a, b, c) (a * b + c) +#endif + +#ifndef INTRINSIC_MINMAX3 +float Min3(float a, float b, float c) +{ + return min(min(a, b), c); +} + +float2 Min3(float2 a, float2 b, float2 c) +{ + return min(min(a, b), c); +} + +float3 Min3(float3 a, float3 b, float3 c) +{ + return min(min(a, b), c); +} + +float4 Min3(float4 a, float4 b, float4 c) +{ + return min(min(a, b), c); +} + +float Max3(float a, float b, float c) +{ + return max(max(a, b), c); +} + +float2 Max3(float2 a, float2 b, float2 c) +{ + return max(max(a, b), c); +} + +float3 Max3(float3 a, float3 b, float3 c) +{ + return max(max(a, b), c); +} + +float4 Max3(float4 a, float4 b, float4 c) +{ + return max(max(a, b), c); +} +#endif // INTRINSIC_MINMAX3 + +// https://twitter.com/SebAaltonen/status/878250919879639040 +// madd_sat + madd +float FastSign(float x) +{ + return saturate(x * FLT_MAX + 0.5) * 2.0 - 1.0; +} + +float2 FastSign(float2 x) +{ + return saturate(x * FLT_MAX + 0.5) * 2.0 - 1.0; +} + +float3 FastSign(float3 x) +{ + return saturate(x * FLT_MAX + 0.5) * 2.0 - 1.0; +} + +float4 FastSign(float4 x) +{ + return saturate(x * FLT_MAX + 0.5) * 2.0 - 1.0; +} + +// Using pow often result to a warning like this +// "pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them" +// PositivePow remove this warning when you know the value is positive and avoid inf/NAN. +float PositivePow(float base, float power) +{ + return pow(max(abs(base), float(FLT_EPSILON)), power); +} + +float2 PositivePow(float2 base, float2 power) +{ + return pow(max(abs(base), float2(FLT_EPSILON, FLT_EPSILON)), power); +} + +float3 PositivePow(float3 base, float3 power) +{ + return pow(max(abs(base), float3(FLT_EPSILON, FLT_EPSILON, FLT_EPSILON)), power); +} + +float4 PositivePow(float4 base, float4 power) +{ + return pow(max(abs(base), float4(FLT_EPSILON, FLT_EPSILON, FLT_EPSILON, FLT_EPSILON)), power); +} + +// NaN checker +// /Gic isn't enabled on fxc so we can't rely on isnan() anymore +bool IsNan(float x) +{ + // For some reason the following tests outputs "internal compiler error" randomly on desktop + // so we'll use a safer but slightly slower version instead :/ + //return (x <= 0.0 || 0.0 <= x) ? false : true; + return (x < 0.0 || x > 0.0 || x == 0.0) ? false : true; +} + +bool AnyIsNan(float2 x) +{ + return IsNan(x.x) || IsNan(x.y); +} + +bool AnyIsNan(float3 x) +{ + return IsNan(x.x) || IsNan(x.y) || IsNan(x.z); +} + +bool AnyIsNan(float4 x) +{ + return IsNan(x.x) || IsNan(x.y) || IsNan(x.z) || IsNan(x.w); +} + +// ----------------------------------------------------------------------------- +// Std unity data + +float4x4 unity_CameraProjection; +float4x4 unity_MatrixVP; +float4x4 unity_ObjectToWorld; +float4x4 unity_WorldToCamera; +float3 _WorldSpaceCameraPos; +float4 _ProjectionParams; // x: 1 (-1 flipped), y: near, z: far, w: 1/far +float4 unity_ColorSpaceLuminance; +float4 unity_DeltaTime; // x: dt, y: 1/dt, z: smoothDt, w: 1/smoothDt +float4 unity_OrthoParams; // x: width, y: height, z: unused, w: ortho ? 1 : 0 +float4 _ZBufferParams; // x: 1-far/near, y: far/near, z: x/far, w: y/far +float4 _ScreenParams; // x: width, y: height, z: 1+1/width, w: 1+1/height +float4 _Time; // x: t/20, y: t, z: t*2, w: t*3 +float4 _SinTime; // x: sin(t/20), y: sin(t), z: sin(t*2), w: sin(t*3) +float4 _CosTime; // x: cos(t/20), y: cos(t), z: cos(t*2), w: cos(t*3) + +// ----------------------------------------------------------------------------- +// Std functions + +// Z buffer depth to linear 0-1 depth +// Handles orthographic projection correctly +float Linear01Depth(float z) +{ + float isOrtho = unity_OrthoParams.w; + float isPers = 1.0 - unity_OrthoParams.w; + z *= _ZBufferParams.x; + return (1.0 - isOrtho * z) / (isPers * z + _ZBufferParams.y); +} + +float LinearEyeDepth(float z) +{ + return rcp(_ZBufferParams.z * z + _ZBufferParams.w); +} + +// Clamp HDR value within a safe range +half3 SafeHDR(half3 c) +{ + return min(c, HALF_MAX); +} + +half4 SafeHDR(half4 c) +{ + return min(c, HALF_MAX); +} + +// Decode normals stored in _CameraDepthNormalsTexture +float3 DecodeViewNormalStereo(float4 enc4) +{ + float kScale = 1.7777; + float3 nn = enc4.xyz * float3(2.0 * kScale, 2.0 * kScale, 0) + float3(-kScale, -kScale, 1); + float g = 2.0 / dot(nn.xyz, nn.xyz); + float3 n; + n.xy = g * nn.xy; + n.z = g - 1.0; + return n; +} + +// Interleaved gradient function from Jimenez 2014 +// http://www.iryoku.com/next-generation-post-processing-in-call-of-duty-advanced-warfare +float GradientNoise(float2 uv) +{ + uv = floor(uv * _ScreenParams.xy); + float f = dot(float2(0.06711056, 0.00583715), uv); + return frac(52.9829189 * frac(f)); +} + +// Vertex manipulation +float2 TransformTriangleVertexToUV(float2 vertex) +{ + float2 uv = (vertex + 1.0) * 0.5; + return uv; +} + +#include "xRLib.hlsl" + +// ----------------------------------------------------------------------------- +// Default vertex shaders + +struct AttributesDefault +{ + float3 vertex : POSITION; +}; + +struct VaryingsDefault +{ + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; + float2 texcoordStereo : TEXCOORD1; +#if STEREO_INSTANCING_ENABLED + uint stereoTargetEyeIndex : SV_RenderTargetArrayIndex; +#endif +}; + +#if STEREO_INSTANCING_ENABLED +float _DepthSlice; +#endif + +VaryingsDefault VertDefault(AttributesDefault v) +{ + VaryingsDefault o; + o.vertex = float4(v.vertex.xy, 0.0, 1.0); + o.texcoord = TransformTriangleVertexToUV(v.vertex.xy); + +#if UNITY_UV_STARTS_AT_TOP + o.texcoord = o.texcoord * float2(1.0, -1.0) + float2(0.0, 1.0); +#endif + + o.texcoordStereo = TransformStereoScreenSpaceTex(o.texcoord, 1.0); + + return o; +} + +float4 _UVTransform; // xy: scale, wz: translate + +#if STEREO_DOUBLEWIDE_TARGET +float4 _PosScaleOffset; // xy: scale, wz: offset +#endif + +VaryingsDefault VertUVTransform(AttributesDefault v) +{ + VaryingsDefault o; + +#if STEREO_DOUBLEWIDE_TARGET + o.vertex = float4(v.vertex.xy * _PosScaleOffset.xy + _PosScaleOffset.zw, 0.0, 1.0); +#else + o.vertex = float4(v.vertex.xy, 0.0, 1.0); +#endif + o.texcoord = TransformTriangleVertexToUV(v.vertex.xy) * _UVTransform.xy + _UVTransform.zw; + o.texcoordStereo = TransformStereoScreenSpaceTex(o.texcoord, 1.0); +#if STEREO_INSTANCING_ENABLED + o.stereoTargetEyeIndex = (uint)_DepthSlice; +#endif + return o; +} + +#define TRANSFORM_TEX(tex,name) (tex.xy * name##_ST.xy + name##_ST.zw) + +#endif // UNITY_POSTFX_STDLIB diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/StdLib.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/StdLib.hlsl.meta new file mode 100644 index 0000000..853a9b9 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/StdLib.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 20aeae489f6be6a48aec52447f49169c +timeCreated: 1488887145 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/xRLib.hlsl b/UnityCaptureSample/Assets/PostProcessing/Shaders/xRLib.hlsl new file mode 100644 index 0000000..b3a21d7 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/xRLib.hlsl @@ -0,0 +1,98 @@ +// VR/AR/xR lib + +#ifndef UNITY_POSTFX_XRLIB +#define UNITY_POSTFX_XRLIB + +#if defined(UNITY_SINGLE_PASS_STEREO) +CBUFFER_START(UnityStereoGlobals) + float4x4 unity_StereoMatrixP[2]; + float4x4 unity_StereoMatrixV[2]; + float4x4 unity_StereoMatrixInvV[2]; + float4x4 unity_StereoMatrixVP[2]; + + float4x4 unity_StereoCameraProjection[2]; + float4x4 unity_StereoCameraInvProjection[2]; + float4x4 unity_StereoWorldToCamera[2]; + float4x4 unity_StereoCameraToWorld[2]; + + float3 unity_StereoWorldSpaceCameraPos[2]; + float4 unity_StereoScaleOffset[2]; +CBUFFER_END + +CBUFFER_START(UnityStereoEyeIndex) + int unity_StereoEyeIndex; +CBUFFER_END +#endif + +float _RenderViewportScaleFactor; + +float2 UnityStereoScreenSpaceUVAdjust(float2 uv, float4 scaleAndOffset) +{ + return uv.xy * scaleAndOffset.xy + scaleAndOffset.zw; +} + +float4 UnityStereoScreenSpaceUVAdjust(float4 uv, float4 scaleAndOffset) +{ + return float4(UnityStereoScreenSpaceUVAdjust(uv.xy, scaleAndOffset), UnityStereoScreenSpaceUVAdjust(uv.zw, scaleAndOffset)); +} + +float2 UnityStereoClampScaleOffset(float2 uv, float4 scaleAndOffset) +{ + return clamp(uv, scaleAndOffset.zw, scaleAndOffset.zw + scaleAndOffset.xy); +} + +#if defined(UNITY_SINGLE_PASS_STEREO) +float2 TransformStereoScreenSpaceTex(float2 uv, float w) +{ + float4 scaleOffset = unity_StereoScaleOffset[unity_StereoEyeIndex]; + scaleOffset.xy *= _RenderViewportScaleFactor; + return uv.xy * scaleOffset.xy + scaleOffset.zw * w; +} + +float2 UnityStereoTransformScreenSpaceTex(float2 uv) +{ + return TransformStereoScreenSpaceTex(saturate(uv), 1.0); +} + +float4 UnityStereoTransformScreenSpaceTex(float4 uv) +{ + return float4(UnityStereoTransformScreenSpaceTex(uv.xy), UnityStereoTransformScreenSpaceTex(uv.zw)); +} + +float2 UnityStereoClamp(float2 uv) +{ + float4 scaleOffset = unity_StereoScaleOffset[unity_StereoEyeIndex]; + scaleOffset.xy *= _RenderViewportScaleFactor; + return UnityStereoClampScaleOffset(uv, scaleOffset); +} + +float4 UnityStereoAdjustedTexelSize(float4 texelSize) // Should take in _MainTex_TexelSize +{ + texelSize.x = texelSize.x * 2.0; // texelSize.x = 1/w. For a double-wide texture, the true resolution is given by 2/w. + texelSize.z = texelSize.z * 0.5; // texelSize.z = w. For a double-wide texture, the true size of the eye texture is given by w/2. + return texelSize; +} +#else +float2 TransformStereoScreenSpaceTex(float2 uv, float w) +{ + return uv * _RenderViewportScaleFactor; +} + +float2 UnityStereoTransformScreenSpaceTex(float2 uv) +{ + return TransformStereoScreenSpaceTex(saturate(uv), 1.0); +} + +float2 UnityStereoClamp(float2 uv) +{ + float4 scaleOffset = float4(_RenderViewportScaleFactor, _RenderViewportScaleFactor, 0.f, 0.f); + return UnityStereoClampScaleOffset(uv, scaleOffset); +} + +float4 UnityStereoAdjustedTexelSize(float4 texelSize) +{ + return texelSize; +} +#endif + +#endif // UNITY_POSTFX_XRLIB diff --git a/UnityCaptureSample/Assets/PostProcessing/Shaders/xRLib.hlsl.meta b/UnityCaptureSample/Assets/PostProcessing/Shaders/xRLib.hlsl.meta new file mode 100644 index 0000000..c32b44b --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Shaders/xRLib.hlsl.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 981a66a12fced7a45b3c106b67167ab5 +timeCreated: 1497886257 +licenseType: Pro +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures.meta b/UnityCaptureSample/Assets/PostProcessing/Textures.meta new file mode 100644 index 0000000..fa69918 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 180a4519fc4556c4fb5d941544b86398 +folderAsset: yes +timeCreated: 1488969093 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px.meta new file mode 100644 index 0000000..4d80a8d --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: a46f66b7c3fc33547bd9093e960d9ab1 +folderAsset: yes +timeCreated: 1503659186 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_0.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_0.png new file mode 100644 index 0000000..29a91ff Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_0.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_0.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_0.png.meta new file mode 100644 index 0000000..2b29978 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_0.png.meta @@ -0,0 +1,100 @@ +fileFormatVersion: 2 +guid: 6017f374382d64245a0a4aab668e6f38 +timeCreated: 1503659186 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: iPhone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Android + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: WebGL + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_1.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_1.png new file mode 100644 index 0000000..bb842ea Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_1.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_1.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_1.png.meta new file mode 100644 index 0000000..786ef7f --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_1.png.meta @@ -0,0 +1,100 @@ +fileFormatVersion: 2 +guid: 0f8fa14b3731cda4e947062e734d5e1e +timeCreated: 1503659186 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: iPhone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Android + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: WebGL + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_2.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_2.png new file mode 100644 index 0000000..17b3b7e Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_2.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_2.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_2.png.meta new file mode 100644 index 0000000..4a875b7 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_2.png.meta @@ -0,0 +1,100 @@ +fileFormatVersion: 2 +guid: 1abfe0e165ca1e9428b455ffc9a2d9ef +timeCreated: 1503659186 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: iPhone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Android + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: WebGL + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_3.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_3.png new file mode 100644 index 0000000..eec5182 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_3.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_3.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_3.png.meta new file mode 100644 index 0000000..4369ddd --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_3.png.meta @@ -0,0 +1,100 @@ +fileFormatVersion: 2 +guid: c072b653e98a06e40857d76ca8c7eecd +timeCreated: 1503659187 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: iPhone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Android + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: WebGL + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_4.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_4.png new file mode 100644 index 0000000..84bb96f Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_4.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_4.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_4.png.meta new file mode 100644 index 0000000..9e4b814 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_4.png.meta @@ -0,0 +1,100 @@ +fileFormatVersion: 2 +guid: b52d5033b68309943a2386c270a90f44 +timeCreated: 1503659186 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: iPhone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Android + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: WebGL + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_5.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_5.png new file mode 100644 index 0000000..296e728 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_5.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_5.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_5.png.meta new file mode 100644 index 0000000..867f72f --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_5.png.meta @@ -0,0 +1,100 @@ +fileFormatVersion: 2 +guid: acde5141d5f4f7a4188394bd52c4dc38 +timeCreated: 1503659186 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: iPhone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Android + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: WebGL + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_6.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_6.png new file mode 100644 index 0000000..d9da846 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_6.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_6.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_6.png.meta new file mode 100644 index 0000000..f4ae018 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_6.png.meta @@ -0,0 +1,100 @@ +fileFormatVersion: 2 +guid: 999434725cbc2be4eb54043b36efd4a8 +timeCreated: 1503659186 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: iPhone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Android + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: WebGL + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_7.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_7.png new file mode 100644 index 0000000..ab487a6 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_7.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_7.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_7.png.meta new file mode 100644 index 0000000..c163c6c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 256px/LDR_LLL1_7.png.meta @@ -0,0 +1,100 @@ +fileFormatVersion: 2 +guid: 70d0a1182b29d6347ac70374c3593bba +timeCreated: 1503659186 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: iPhone + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Android + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: WebGL + maxTextureSize: 256 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px.meta new file mode 100644 index 0000000..abd1c77 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: eeecf288e8ae5be4692977cae1a3e077 +folderAsset: yes +timeCreated: 1488906458 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_0.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_0.png new file mode 100644 index 0000000..d1920c6 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_0.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_0.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_0.png.meta new file mode 100644 index 0000000..a81381f --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_0.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 50b54341495978843a6f85583ed4417d +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_1.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_1.png new file mode 100644 index 0000000..9d525e5 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_1.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_1.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_1.png.meta new file mode 100644 index 0000000..cfa52cd --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_1.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 3c2f1fb7e4b66e74191b7c328ada52d9 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_10.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_10.png new file mode 100644 index 0000000..ecadafb Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_10.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_10.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_10.png.meta new file mode 100644 index 0000000..b23f52c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_10.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: afe1e502240079342a0a980484b6da8b +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_11.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_11.png new file mode 100644 index 0000000..923292a Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_11.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_11.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_11.png.meta new file mode 100644 index 0000000..5430c15 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_11.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 771903fe7b4674445829e52e91cff019 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_12.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_12.png new file mode 100644 index 0000000..2077a1a Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_12.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_12.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_12.png.meta new file mode 100644 index 0000000..6affbc5 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_12.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 980acadb960f8424c94307ec0e585b4e +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_13.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_13.png new file mode 100644 index 0000000..491f4c0 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_13.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_13.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_13.png.meta new file mode 100644 index 0000000..a60c748 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_13.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 68613e6a221be1a4b9f31d7fa1c2d1bf +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_14.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_14.png new file mode 100644 index 0000000..3093572 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_14.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_14.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_14.png.meta new file mode 100644 index 0000000..47e3419 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_14.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: f6439b54b28f3884eb67579dec0b6f21 +timeCreated: 1485107929 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_15.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_15.png new file mode 100644 index 0000000..ece485d Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_15.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_15.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_15.png.meta new file mode 100644 index 0000000..952023f --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_15.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 2ee161d8945169243b5698fec114e1b7 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_16.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_16.png new file mode 100644 index 0000000..8750ad6 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_16.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_16.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_16.png.meta new file mode 100644 index 0000000..a9d7eb7 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_16.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 153f7d6dfbe713d4884df0f1e243ba92 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_17.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_17.png new file mode 100644 index 0000000..bdee0f8 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_17.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_17.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_17.png.meta new file mode 100644 index 0000000..f8ad95f --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_17.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: bf95b6fdc179b0e4f890c841406193fc +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_18.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_18.png new file mode 100644 index 0000000..30c49f3 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_18.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_18.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_18.png.meta new file mode 100644 index 0000000..c032f92 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_18.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 74aca53eb7273624baffc2bf5e5cc173 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_19.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_19.png new file mode 100644 index 0000000..5180f1a Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_19.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_19.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_19.png.meta new file mode 100644 index 0000000..287174f --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_19.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 729a3ae164bcb3b4380459386adcf331 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_2.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_2.png new file mode 100644 index 0000000..f5912ee Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_2.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_2.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_2.png.meta new file mode 100644 index 0000000..cb29983 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_2.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: a469f920b21fc7c4fb5b950917ce2fb2 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_20.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_20.png new file mode 100644 index 0000000..1424899 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_20.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_20.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_20.png.meta new file mode 100644 index 0000000..5e7ca30 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_20.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 6dda07f1420a968449cf4c6620c44d9f +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_21.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_21.png new file mode 100644 index 0000000..d634013 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_21.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_21.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_21.png.meta new file mode 100644 index 0000000..51de948 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_21.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: b7f000750830ddb4bbc80065b9314ce9 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_22.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_22.png new file mode 100644 index 0000000..cb0a0ae Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_22.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_22.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_22.png.meta new file mode 100644 index 0000000..22ea61a --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_22.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: df01d03f056c6f445b4b8a0ae054207c +timeCreated: 1485107929 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_23.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_23.png new file mode 100644 index 0000000..b063795 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_23.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_23.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_23.png.meta new file mode 100644 index 0000000..d89cc9e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_23.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: bfe953600e8fb1849a804ee08ace7b4c +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_24.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_24.png new file mode 100644 index 0000000..f4debb8 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_24.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_24.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_24.png.meta new file mode 100644 index 0000000..3f569d7 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_24.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 32c6a5f7143b86c44bd5cdee2ff3f8ad +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_25.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_25.png new file mode 100644 index 0000000..c20d7b2 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_25.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_25.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_25.png.meta new file mode 100644 index 0000000..8045a5e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_25.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: f4b8ab78b57749d4e96d36f6d8a395d0 +timeCreated: 1485107929 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_26.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_26.png new file mode 100644 index 0000000..930ec4e Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_26.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_26.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_26.png.meta new file mode 100644 index 0000000..331064b --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_26.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 09f6c01f98a3ded4daf1afc52a3c260f +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_27.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_27.png new file mode 100644 index 0000000..06949cf Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_27.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_27.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_27.png.meta new file mode 100644 index 0000000..5665344 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_27.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: bdd06fb88ef36ed4a85dd506352c2d80 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_28.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_28.png new file mode 100644 index 0000000..9807e41 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_28.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_28.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_28.png.meta new file mode 100644 index 0000000..3bbb00d --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_28.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 02c0a84bd64c6f044954d8bde9b46ec8 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_29.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_29.png new file mode 100644 index 0000000..413a86e Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_29.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_29.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_29.png.meta new file mode 100644 index 0000000..527881a --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_29.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: aa80dc44aa4fe4c43bb9d51d90cf2958 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_3.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_3.png new file mode 100644 index 0000000..767fc58 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_3.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_3.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_3.png.meta new file mode 100644 index 0000000..fbe528f --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_3.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 373f9bf6b0841af4ebf26d25e4a3f4e2 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_30.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_30.png new file mode 100644 index 0000000..a1da55b Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_30.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_30.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_30.png.meta new file mode 100644 index 0000000..dd61326 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_30.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 0fa10b21877c61b4db40ba5708815f81 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_31.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_31.png new file mode 100644 index 0000000..e2961b5 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_31.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_31.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_31.png.meta new file mode 100644 index 0000000..8ed0950 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_31.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 6b0a189df0bd4d5448eaefb4e673ace8 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_32.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_32.png new file mode 100644 index 0000000..24d31e9 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_32.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_32.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_32.png.meta new file mode 100644 index 0000000..c9e6833 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_32.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 87a5e40cc271ea648b583616f6ebe7fe +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_33.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_33.png new file mode 100644 index 0000000..3403d4d Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_33.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_33.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_33.png.meta new file mode 100644 index 0000000..7500baf --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_33.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: b71bb466b71fd13449dd736f63caeb67 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_34.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_34.png new file mode 100644 index 0000000..2022cd9 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_34.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_34.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_34.png.meta new file mode 100644 index 0000000..8a40dce --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_34.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 319b8e66db3faa4438cf6982e9c89b2f +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_35.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_35.png new file mode 100644 index 0000000..bd9359c Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_35.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_35.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_35.png.meta new file mode 100644 index 0000000..24a716d --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_35.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 0a79c155edf9b2d429d4736abee5acdb +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_36.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_36.png new file mode 100644 index 0000000..22ed73a Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_36.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_36.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_36.png.meta new file mode 100644 index 0000000..e35210c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_36.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 351e95d0e20a54849bd4ce5f9b498934 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_37.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_37.png new file mode 100644 index 0000000..6f84bb7 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_37.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_37.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_37.png.meta new file mode 100644 index 0000000..af4db5a --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_37.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 1d6958e30e40a254dbe5a54c573eeb3c +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_38.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_38.png new file mode 100644 index 0000000..d9c27fb Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_38.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_38.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_38.png.meta new file mode 100644 index 0000000..78b4dc4 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_38.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 9660a4ca1ca8425408ac25c641932977 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_39.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_39.png new file mode 100644 index 0000000..2610149 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_39.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_39.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_39.png.meta new file mode 100644 index 0000000..5f204ce --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_39.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 547dbd5f858c74047ba3f213e4408307 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_4.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_4.png new file mode 100644 index 0000000..81cdc3d Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_4.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_4.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_4.png.meta new file mode 100644 index 0000000..fe3a392 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_4.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 6fa5cf178eaaa5f42b820f636bb6e0bd +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_40.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_40.png new file mode 100644 index 0000000..8d95446 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_40.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_40.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_40.png.meta new file mode 100644 index 0000000..3a71a40 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_40.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 1a9ce5640cde5934aae0022f020464a6 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_41.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_41.png new file mode 100644 index 0000000..f6c01a6 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_41.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_41.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_41.png.meta new file mode 100644 index 0000000..b7295d1 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_41.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: cd9006dc442cc244e89b3f492384d46a +timeCreated: 1485107929 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_42.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_42.png new file mode 100644 index 0000000..1d42c2f Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_42.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_42.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_42.png.meta new file mode 100644 index 0000000..33ea83b --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_42.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: b266511438fae724f9d3ce6bd26583e8 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_43.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_43.png new file mode 100644 index 0000000..2f5c591 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_43.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_43.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_43.png.meta new file mode 100644 index 0000000..9526e70 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_43.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 71bc1b6b66e8b784b972199b7e90204e +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_44.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_44.png new file mode 100644 index 0000000..765c014 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_44.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_44.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_44.png.meta new file mode 100644 index 0000000..0b37eff --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_44.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 15e54aa23a938444389469d53765d741 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_45.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_45.png new file mode 100644 index 0000000..f335132 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_45.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_45.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_45.png.meta new file mode 100644 index 0000000..529ede3 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_45.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: b9960364038cbfa4aa49d7b2032d3110 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_46.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_46.png new file mode 100644 index 0000000..5118df3 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_46.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_46.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_46.png.meta new file mode 100644 index 0000000..06704ef --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_46.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 8ecbbcae4cc747a4abbc4adce795d25e +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_47.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_47.png new file mode 100644 index 0000000..c22a632 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_47.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_47.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_47.png.meta new file mode 100644 index 0000000..c1220ea --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_47.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 1378a33cdd085d64c9da863d2484ff21 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_48.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_48.png new file mode 100644 index 0000000..782c380 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_48.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_48.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_48.png.meta new file mode 100644 index 0000000..f8a6e3b --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_48.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: aff59c63d25d43f4c938f248837c30fb +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_49.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_49.png new file mode 100644 index 0000000..34d36e6 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_49.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_49.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_49.png.meta new file mode 100644 index 0000000..96d9886 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_49.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 3f7c3687170b90e4a8d2ee6b142670f4 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_5.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_5.png new file mode 100644 index 0000000..90a715a Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_5.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_5.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_5.png.meta new file mode 100644 index 0000000..adac8ba --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_5.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: a1ae041906217ae44a774d4ca139af50 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_50.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_50.png new file mode 100644 index 0000000..df80595 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_50.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_50.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_50.png.meta new file mode 100644 index 0000000..80df0a1 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_50.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: d8c290e38ff0425409d0ae6a98c95e41 +timeCreated: 1485107929 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_51.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_51.png new file mode 100644 index 0000000..ed9f2d3 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_51.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_51.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_51.png.meta new file mode 100644 index 0000000..ff82bfd --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_51.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: d5a51525b27e3ee4aadbeb39cbcf0750 +timeCreated: 1485107929 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_52.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_52.png new file mode 100644 index 0000000..be2c6fe Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_52.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_52.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_52.png.meta new file mode 100644 index 0000000..dc39ab1 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_52.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: d2e8e90fac2e6a341a38e1c3963c218d +timeCreated: 1485107929 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_53.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_53.png new file mode 100644 index 0000000..c226491 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_53.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_53.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_53.png.meta new file mode 100644 index 0000000..202abf5 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_53.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: c94b57b5a32a22d43ade66e09f6a4bd2 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_54.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_54.png new file mode 100644 index 0000000..3b6bbb8 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_54.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_54.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_54.png.meta new file mode 100644 index 0000000..0a0a81a --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_54.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 936dea238abb0864ab3985a995e16a29 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_55.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_55.png new file mode 100644 index 0000000..261291a Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_55.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_55.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_55.png.meta new file mode 100644 index 0000000..35ba219 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_55.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 5e542d0126a2c7848b66bffc428905fd +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_56.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_56.png new file mode 100644 index 0000000..7d8b298 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_56.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_56.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_56.png.meta new file mode 100644 index 0000000..d9c49cb --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_56.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 70f23eaf7d8ae9147aa542d20e93733b +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_57.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_57.png new file mode 100644 index 0000000..97fe687 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_57.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_57.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_57.png.meta new file mode 100644 index 0000000..aa03290 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_57.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: e138166e7a7c70f49943be7edda35d35 +timeCreated: 1485107929 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_58.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_58.png new file mode 100644 index 0000000..9c01659 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_58.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_58.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_58.png.meta new file mode 100644 index 0000000..3ac47bc --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_58.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 85a45a6d8b2ffb84987d2b028ecfb220 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_59.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_59.png new file mode 100644 index 0000000..805a44e Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_59.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_59.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_59.png.meta new file mode 100644 index 0000000..be2d613 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_59.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: d96974690c77f50489eb60ec84bd8dac +timeCreated: 1485107929 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_6.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_6.png new file mode 100644 index 0000000..326b1d3 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_6.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_6.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_6.png.meta new file mode 100644 index 0000000..82ca960 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_6.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 79b86f3419b87f3429164a956da8cfab +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_60.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_60.png new file mode 100644 index 0000000..5307242 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_60.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_60.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_60.png.meta new file mode 100644 index 0000000..9add371 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_60.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 404fa8def46b1c447817e1ebdaa7144e +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_61.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_61.png new file mode 100644 index 0000000..623794c Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_61.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_61.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_61.png.meta new file mode 100644 index 0000000..8d50446 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_61.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 119591e0bb084e848835d237546b3882 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_62.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_62.png new file mode 100644 index 0000000..d4b4f70 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_62.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_62.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_62.png.meta new file mode 100644 index 0000000..6c4ec71 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_62.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: a03c400b0e3959f428ee99dfc6cfc263 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_63.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_63.png new file mode 100644 index 0000000..1746cc1 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_63.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_63.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_63.png.meta new file mode 100644 index 0000000..b23dbd0 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_63.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 4a11d65ce13d5f542a0ff136cc2f3fba +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_7.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_7.png new file mode 100644 index 0000000..0a396d3 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_7.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_7.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_7.png.meta new file mode 100644 index 0000000..eb464ac --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_7.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 3ac02e7e783571c468f9c086d2384ba7 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_8.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_8.png new file mode 100644 index 0000000..0b5d32e Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_8.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_8.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_8.png.meta new file mode 100644 index 0000000..242fe69 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_8.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: c55042318a938344ab23cd7f09dd0076 +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_9.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_9.png new file mode 100644 index 0000000..2beb747 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_9.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_9.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_9.png.meta new file mode 100644 index 0000000..5f8db7a --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Blue Noise 64px/LDR_LLL1_9.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 71583cfd8899717428d5b1a95fa39cda +timeCreated: 1485107928 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 64 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes.meta new file mode 100644 index 0000000..0d6b585 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 32330dbb76fcb1f43a2c85bbcbf1cf1c +folderAsset: yes +timeCreated: 1496742837 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/.gitignore b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/.gitignore new file mode 100644 index 0000000..d5db9bc --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/.gitignore @@ -0,0 +1,2 @@ +*.asset +*.asset.meta diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Linear to Unity Log r1.cube b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Linear to Unity Log r1.cube new file mode 100644 index 0000000..0ff910b --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Linear to Unity Log r1.cube @@ -0,0 +1,35941 @@ +TITLE "Linear to Unity Log r1" +LUT_3D_SIZE 33 +DOMAIN_MIN 0 0 0 +DOMAIN_MAX 1 1 1 +0.092819 0.092819 0.092819 +0.2262531 0.092819 0.092819 +0.2875993 0.092819 0.092819 +0.3262122 0.092819 0.092819 +0.3544566 0.092819 0.092819 +0.3767383 0.092819 0.092819 +0.3951413 0.092819 0.092819 +0.4108177 0.092819 0.092819 +0.4244723 0.092819 0.092819 +0.4365675 0.092819 0.092819 +0.4474232 0.092819 0.092819 +0.45727 0.092819 0.092819 +0.4662797 0.092819 0.092819 +0.4745834 0.092819 0.092819 +0.4822838 0.092819 0.092819 +0.4894626 0.092819 0.092819 +0.4961862 0.092819 0.092819 +0.5025087 0.092819 0.092819 +0.5084753 0.092819 0.092819 +0.514124 0.092819 0.092819 +0.519487 0.092819 0.092819 +0.5245917 0.092819 0.092819 +0.529462 0.092819 0.092819 +0.5341183 0.092819 0.092819 +0.5385787 0.092819 0.092819 +0.5428591 0.092819 0.092819 +0.5469733 0.092819 0.092819 +0.5509339 0.092819 0.092819 +0.5547519 0.092819 0.092819 +0.5584371 0.092819 0.092819 +0.5619986 0.092819 0.092819 +0.5654443 0.092819 0.092819 +0.5687816 0.092819 0.092819 +0.092819 0.2262531 0.092819 +0.2262531 0.2262531 0.092819 +0.2875993 0.2262531 0.092819 +0.3262122 0.2262531 0.092819 +0.3544566 0.2262531 0.092819 +0.3767383 0.2262531 0.092819 +0.3951413 0.2262531 0.092819 +0.4108177 0.2262531 0.092819 +0.4244723 0.2262531 0.092819 +0.4365675 0.2262531 0.092819 +0.4474232 0.2262531 0.092819 +0.45727 0.2262531 0.092819 +0.4662797 0.2262531 0.092819 +0.4745834 0.2262531 0.092819 +0.4822838 0.2262531 0.092819 +0.4894626 0.2262531 0.092819 +0.4961862 0.2262531 0.092819 +0.5025087 0.2262531 0.092819 +0.5084753 0.2262531 0.092819 +0.514124 0.2262531 0.092819 +0.519487 0.2262531 0.092819 +0.5245917 0.2262531 0.092819 +0.529462 0.2262531 0.092819 +0.5341183 0.2262531 0.092819 +0.5385787 0.2262531 0.092819 +0.5428591 0.2262531 0.092819 +0.5469733 0.2262531 0.092819 +0.5509339 0.2262531 0.092819 +0.5547519 0.2262531 0.092819 +0.5584371 0.2262531 0.092819 +0.5619986 0.2262531 0.092819 +0.5654443 0.2262531 0.092819 +0.5687816 0.2262531 0.092819 +0.092819 0.2875993 0.092819 +0.2262531 0.2875993 0.092819 +0.2875993 0.2875993 0.092819 +0.3262122 0.2875993 0.092819 +0.3544566 0.2875993 0.092819 +0.3767383 0.2875993 0.092819 +0.3951413 0.2875993 0.092819 +0.4108177 0.2875993 0.092819 +0.4244723 0.2875993 0.092819 +0.4365675 0.2875993 0.092819 +0.4474232 0.2875993 0.092819 +0.45727 0.2875993 0.092819 +0.4662797 0.2875993 0.092819 +0.4745834 0.2875993 0.092819 +0.4822838 0.2875993 0.092819 +0.4894626 0.2875993 0.092819 +0.4961862 0.2875993 0.092819 +0.5025087 0.2875993 0.092819 +0.5084753 0.2875993 0.092819 +0.514124 0.2875993 0.092819 +0.519487 0.2875993 0.092819 +0.5245917 0.2875993 0.092819 +0.529462 0.2875993 0.092819 +0.5341183 0.2875993 0.092819 +0.5385787 0.2875993 0.092819 +0.5428591 0.2875993 0.092819 +0.5469733 0.2875993 0.092819 +0.5509339 0.2875993 0.092819 +0.5547519 0.2875993 0.092819 +0.5584371 0.2875993 0.092819 +0.5619986 0.2875993 0.092819 +0.5654443 0.2875993 0.092819 +0.5687816 0.2875993 0.092819 +0.092819 0.3262122 0.092819 +0.2262531 0.3262122 0.092819 +0.2875993 0.3262122 0.092819 +0.3262122 0.3262122 0.092819 +0.3544566 0.3262122 0.092819 +0.3767383 0.3262122 0.092819 +0.3951413 0.3262122 0.092819 +0.4108177 0.3262122 0.092819 +0.4244723 0.3262122 0.092819 +0.4365675 0.3262122 0.092819 +0.4474232 0.3262122 0.092819 +0.45727 0.3262122 0.092819 +0.4662797 0.3262122 0.092819 +0.4745834 0.3262122 0.092819 +0.4822838 0.3262122 0.092819 +0.4894626 0.3262122 0.092819 +0.4961862 0.3262122 0.092819 +0.5025087 0.3262122 0.092819 +0.5084753 0.3262122 0.092819 +0.514124 0.3262122 0.092819 +0.519487 0.3262122 0.092819 +0.5245917 0.3262122 0.092819 +0.529462 0.3262122 0.092819 +0.5341183 0.3262122 0.092819 +0.5385787 0.3262122 0.092819 +0.5428591 0.3262122 0.092819 +0.5469733 0.3262122 0.092819 +0.5509339 0.3262122 0.092819 +0.5547519 0.3262122 0.092819 +0.5584371 0.3262122 0.092819 +0.5619986 0.3262122 0.092819 +0.5654443 0.3262122 0.092819 +0.5687816 0.3262122 0.092819 +0.092819 0.3544566 0.092819 +0.2262531 0.3544566 0.092819 +0.2875993 0.3544566 0.092819 +0.3262122 0.3544566 0.092819 +0.3544566 0.3544566 0.092819 +0.3767383 0.3544566 0.092819 +0.3951413 0.3544566 0.092819 +0.4108177 0.3544566 0.092819 +0.4244723 0.3544566 0.092819 +0.4365675 0.3544566 0.092819 +0.4474232 0.3544566 0.092819 +0.45727 0.3544566 0.092819 +0.4662797 0.3544566 0.092819 +0.4745834 0.3544566 0.092819 +0.4822838 0.3544566 0.092819 +0.4894626 0.3544566 0.092819 +0.4961862 0.3544566 0.092819 +0.5025087 0.3544566 0.092819 +0.5084753 0.3544566 0.092819 +0.514124 0.3544566 0.092819 +0.519487 0.3544566 0.092819 +0.5245917 0.3544566 0.092819 +0.529462 0.3544566 0.092819 +0.5341183 0.3544566 0.092819 +0.5385787 0.3544566 0.092819 +0.5428591 0.3544566 0.092819 +0.5469733 0.3544566 0.092819 +0.5509339 0.3544566 0.092819 +0.5547519 0.3544566 0.092819 +0.5584371 0.3544566 0.092819 +0.5619986 0.3544566 0.092819 +0.5654443 0.3544566 0.092819 +0.5687816 0.3544566 0.092819 +0.092819 0.3767383 0.092819 +0.2262531 0.3767383 0.092819 +0.2875993 0.3767383 0.092819 +0.3262122 0.3767383 0.092819 +0.3544566 0.3767383 0.092819 +0.3767383 0.3767383 0.092819 +0.3951413 0.3767383 0.092819 +0.4108177 0.3767383 0.092819 +0.4244723 0.3767383 0.092819 +0.4365675 0.3767383 0.092819 +0.4474232 0.3767383 0.092819 +0.45727 0.3767383 0.092819 +0.4662797 0.3767383 0.092819 +0.4745834 0.3767383 0.092819 +0.4822838 0.3767383 0.092819 +0.4894626 0.3767383 0.092819 +0.4961862 0.3767383 0.092819 +0.5025087 0.3767383 0.092819 +0.5084753 0.3767383 0.092819 +0.514124 0.3767383 0.092819 +0.519487 0.3767383 0.092819 +0.5245917 0.3767383 0.092819 +0.529462 0.3767383 0.092819 +0.5341183 0.3767383 0.092819 +0.5385787 0.3767383 0.092819 +0.5428591 0.3767383 0.092819 +0.5469733 0.3767383 0.092819 +0.5509339 0.3767383 0.092819 +0.5547519 0.3767383 0.092819 +0.5584371 0.3767383 0.092819 +0.5619986 0.3767383 0.092819 +0.5654443 0.3767383 0.092819 +0.5687816 0.3767383 0.092819 +0.092819 0.3951413 0.092819 +0.2262531 0.3951413 0.092819 +0.2875993 0.3951413 0.092819 +0.3262122 0.3951413 0.092819 +0.3544566 0.3951413 0.092819 +0.3767383 0.3951413 0.092819 +0.3951413 0.3951413 0.092819 +0.4108177 0.3951413 0.092819 +0.4244723 0.3951413 0.092819 +0.4365675 0.3951413 0.092819 +0.4474232 0.3951413 0.092819 +0.45727 0.3951413 0.092819 +0.4662797 0.3951413 0.092819 +0.4745834 0.3951413 0.092819 +0.4822838 0.3951413 0.092819 +0.4894626 0.3951413 0.092819 +0.4961862 0.3951413 0.092819 +0.5025087 0.3951413 0.092819 +0.5084753 0.3951413 0.092819 +0.514124 0.3951413 0.092819 +0.519487 0.3951413 0.092819 +0.5245917 0.3951413 0.092819 +0.529462 0.3951413 0.092819 +0.5341183 0.3951413 0.092819 +0.5385787 0.3951413 0.092819 +0.5428591 0.3951413 0.092819 +0.5469733 0.3951413 0.092819 +0.5509339 0.3951413 0.092819 +0.5547519 0.3951413 0.092819 +0.5584371 0.3951413 0.092819 +0.5619986 0.3951413 0.092819 +0.5654443 0.3951413 0.092819 +0.5687816 0.3951413 0.092819 +0.092819 0.4108177 0.092819 +0.2262531 0.4108177 0.092819 +0.2875993 0.4108177 0.092819 +0.3262122 0.4108177 0.092819 +0.3544566 0.4108177 0.092819 +0.3767383 0.4108177 0.092819 +0.3951413 0.4108177 0.092819 +0.4108177 0.4108177 0.092819 +0.4244723 0.4108177 0.092819 +0.4365675 0.4108177 0.092819 +0.4474232 0.4108177 0.092819 +0.45727 0.4108177 0.092819 +0.4662797 0.4108177 0.092819 +0.4745834 0.4108177 0.092819 +0.4822838 0.4108177 0.092819 +0.4894626 0.4108177 0.092819 +0.4961862 0.4108177 0.092819 +0.5025087 0.4108177 0.092819 +0.5084753 0.4108177 0.092819 +0.514124 0.4108177 0.092819 +0.519487 0.4108177 0.092819 +0.5245917 0.4108177 0.092819 +0.529462 0.4108177 0.092819 +0.5341183 0.4108177 0.092819 +0.5385787 0.4108177 0.092819 +0.5428591 0.4108177 0.092819 +0.5469733 0.4108177 0.092819 +0.5509339 0.4108177 0.092819 +0.5547519 0.4108177 0.092819 +0.5584371 0.4108177 0.092819 +0.5619986 0.4108177 0.092819 +0.5654443 0.4108177 0.092819 +0.5687816 0.4108177 0.092819 +0.092819 0.4244723 0.092819 +0.2262531 0.4244723 0.092819 +0.2875993 0.4244723 0.092819 +0.3262122 0.4244723 0.092819 +0.3544566 0.4244723 0.092819 +0.3767383 0.4244723 0.092819 +0.3951413 0.4244723 0.092819 +0.4108177 0.4244723 0.092819 +0.4244723 0.4244723 0.092819 +0.4365675 0.4244723 0.092819 +0.4474232 0.4244723 0.092819 +0.45727 0.4244723 0.092819 +0.4662797 0.4244723 0.092819 +0.4745834 0.4244723 0.092819 +0.4822838 0.4244723 0.092819 +0.4894626 0.4244723 0.092819 +0.4961862 0.4244723 0.092819 +0.5025087 0.4244723 0.092819 +0.5084753 0.4244723 0.092819 +0.514124 0.4244723 0.092819 +0.519487 0.4244723 0.092819 +0.5245917 0.4244723 0.092819 +0.529462 0.4244723 0.092819 +0.5341183 0.4244723 0.092819 +0.5385787 0.4244723 0.092819 +0.5428591 0.4244723 0.092819 +0.5469733 0.4244723 0.092819 +0.5509339 0.4244723 0.092819 +0.5547519 0.4244723 0.092819 +0.5584371 0.4244723 0.092819 +0.5619986 0.4244723 0.092819 +0.5654443 0.4244723 0.092819 +0.5687816 0.4244723 0.092819 +0.092819 0.4365675 0.092819 +0.2262531 0.4365675 0.092819 +0.2875993 0.4365675 0.092819 +0.3262122 0.4365675 0.092819 +0.3544566 0.4365675 0.092819 +0.3767383 0.4365675 0.092819 +0.3951413 0.4365675 0.092819 +0.4108177 0.4365675 0.092819 +0.4244723 0.4365675 0.092819 +0.4365675 0.4365675 0.092819 +0.4474232 0.4365675 0.092819 +0.45727 0.4365675 0.092819 +0.4662797 0.4365675 0.092819 +0.4745834 0.4365675 0.092819 +0.4822838 0.4365675 0.092819 +0.4894626 0.4365675 0.092819 +0.4961862 0.4365675 0.092819 +0.5025087 0.4365675 0.092819 +0.5084753 0.4365675 0.092819 +0.514124 0.4365675 0.092819 +0.519487 0.4365675 0.092819 +0.5245917 0.4365675 0.092819 +0.529462 0.4365675 0.092819 +0.5341183 0.4365675 0.092819 +0.5385787 0.4365675 0.092819 +0.5428591 0.4365675 0.092819 +0.5469733 0.4365675 0.092819 +0.5509339 0.4365675 0.092819 +0.5547519 0.4365675 0.092819 +0.5584371 0.4365675 0.092819 +0.5619986 0.4365675 0.092819 +0.5654443 0.4365675 0.092819 +0.5687816 0.4365675 0.092819 +0.092819 0.4474232 0.092819 +0.2262531 0.4474232 0.092819 +0.2875993 0.4474232 0.092819 +0.3262122 0.4474232 0.092819 +0.3544566 0.4474232 0.092819 +0.3767383 0.4474232 0.092819 +0.3951413 0.4474232 0.092819 +0.4108177 0.4474232 0.092819 +0.4244723 0.4474232 0.092819 +0.4365675 0.4474232 0.092819 +0.4474232 0.4474232 0.092819 +0.45727 0.4474232 0.092819 +0.4662797 0.4474232 0.092819 +0.4745834 0.4474232 0.092819 +0.4822838 0.4474232 0.092819 +0.4894626 0.4474232 0.092819 +0.4961862 0.4474232 0.092819 +0.5025087 0.4474232 0.092819 +0.5084753 0.4474232 0.092819 +0.514124 0.4474232 0.092819 +0.519487 0.4474232 0.092819 +0.5245917 0.4474232 0.092819 +0.529462 0.4474232 0.092819 +0.5341183 0.4474232 0.092819 +0.5385787 0.4474232 0.092819 +0.5428591 0.4474232 0.092819 +0.5469733 0.4474232 0.092819 +0.5509339 0.4474232 0.092819 +0.5547519 0.4474232 0.092819 +0.5584371 0.4474232 0.092819 +0.5619986 0.4474232 0.092819 +0.5654443 0.4474232 0.092819 +0.5687816 0.4474232 0.092819 +0.092819 0.45727 0.092819 +0.2262531 0.45727 0.092819 +0.2875993 0.45727 0.092819 +0.3262122 0.45727 0.092819 +0.3544566 0.45727 0.092819 +0.3767383 0.45727 0.092819 +0.3951413 0.45727 0.092819 +0.4108177 0.45727 0.092819 +0.4244723 0.45727 0.092819 +0.4365675 0.45727 0.092819 +0.4474232 0.45727 0.092819 +0.45727 0.45727 0.092819 +0.4662797 0.45727 0.092819 +0.4745834 0.45727 0.092819 +0.4822838 0.45727 0.092819 +0.4894626 0.45727 0.092819 +0.4961862 0.45727 0.092819 +0.5025087 0.45727 0.092819 +0.5084753 0.45727 0.092819 +0.514124 0.45727 0.092819 +0.519487 0.45727 0.092819 +0.5245917 0.45727 0.092819 +0.529462 0.45727 0.092819 +0.5341183 0.45727 0.092819 +0.5385787 0.45727 0.092819 +0.5428591 0.45727 0.092819 +0.5469733 0.45727 0.092819 +0.5509339 0.45727 0.092819 +0.5547519 0.45727 0.092819 +0.5584371 0.45727 0.092819 +0.5619986 0.45727 0.092819 +0.5654443 0.45727 0.092819 +0.5687816 0.45727 0.092819 +0.092819 0.4662797 0.092819 +0.2262531 0.4662797 0.092819 +0.2875993 0.4662797 0.092819 +0.3262122 0.4662797 0.092819 +0.3544566 0.4662797 0.092819 +0.3767383 0.4662797 0.092819 +0.3951413 0.4662797 0.092819 +0.4108177 0.4662797 0.092819 +0.4244723 0.4662797 0.092819 +0.4365675 0.4662797 0.092819 +0.4474232 0.4662797 0.092819 +0.45727 0.4662797 0.092819 +0.4662797 0.4662797 0.092819 +0.4745834 0.4662797 0.092819 +0.4822838 0.4662797 0.092819 +0.4894626 0.4662797 0.092819 +0.4961862 0.4662797 0.092819 +0.5025087 0.4662797 0.092819 +0.5084753 0.4662797 0.092819 +0.514124 0.4662797 0.092819 +0.519487 0.4662797 0.092819 +0.5245917 0.4662797 0.092819 +0.529462 0.4662797 0.092819 +0.5341183 0.4662797 0.092819 +0.5385787 0.4662797 0.092819 +0.5428591 0.4662797 0.092819 +0.5469733 0.4662797 0.092819 +0.5509339 0.4662797 0.092819 +0.5547519 0.4662797 0.092819 +0.5584371 0.4662797 0.092819 +0.5619986 0.4662797 0.092819 +0.5654443 0.4662797 0.092819 +0.5687816 0.4662797 0.092819 +0.092819 0.4745834 0.092819 +0.2262531 0.4745834 0.092819 +0.2875993 0.4745834 0.092819 +0.3262122 0.4745834 0.092819 +0.3544566 0.4745834 0.092819 +0.3767383 0.4745834 0.092819 +0.3951413 0.4745834 0.092819 +0.4108177 0.4745834 0.092819 +0.4244723 0.4745834 0.092819 +0.4365675 0.4745834 0.092819 +0.4474232 0.4745834 0.092819 +0.45727 0.4745834 0.092819 +0.4662797 0.4745834 0.092819 +0.4745834 0.4745834 0.092819 +0.4822838 0.4745834 0.092819 +0.4894626 0.4745834 0.092819 +0.4961862 0.4745834 0.092819 +0.5025087 0.4745834 0.092819 +0.5084753 0.4745834 0.092819 +0.514124 0.4745834 0.092819 +0.519487 0.4745834 0.092819 +0.5245917 0.4745834 0.092819 +0.529462 0.4745834 0.092819 +0.5341183 0.4745834 0.092819 +0.5385787 0.4745834 0.092819 +0.5428591 0.4745834 0.092819 +0.5469733 0.4745834 0.092819 +0.5509339 0.4745834 0.092819 +0.5547519 0.4745834 0.092819 +0.5584371 0.4745834 0.092819 +0.5619986 0.4745834 0.092819 +0.5654443 0.4745834 0.092819 +0.5687816 0.4745834 0.092819 +0.092819 0.4822838 0.092819 +0.2262531 0.4822838 0.092819 +0.2875993 0.4822838 0.092819 +0.3262122 0.4822838 0.092819 +0.3544566 0.4822838 0.092819 +0.3767383 0.4822838 0.092819 +0.3951413 0.4822838 0.092819 +0.4108177 0.4822838 0.092819 +0.4244723 0.4822838 0.092819 +0.4365675 0.4822838 0.092819 +0.4474232 0.4822838 0.092819 +0.45727 0.4822838 0.092819 +0.4662797 0.4822838 0.092819 +0.4745834 0.4822838 0.092819 +0.4822838 0.4822838 0.092819 +0.4894626 0.4822838 0.092819 +0.4961862 0.4822838 0.092819 +0.5025087 0.4822838 0.092819 +0.5084753 0.4822838 0.092819 +0.514124 0.4822838 0.092819 +0.519487 0.4822838 0.092819 +0.5245917 0.4822838 0.092819 +0.529462 0.4822838 0.092819 +0.5341183 0.4822838 0.092819 +0.5385787 0.4822838 0.092819 +0.5428591 0.4822838 0.092819 +0.5469733 0.4822838 0.092819 +0.5509339 0.4822838 0.092819 +0.5547519 0.4822838 0.092819 +0.5584371 0.4822838 0.092819 +0.5619986 0.4822838 0.092819 +0.5654443 0.4822838 0.092819 +0.5687816 0.4822838 0.092819 +0.092819 0.4894626 0.092819 +0.2262531 0.4894626 0.092819 +0.2875993 0.4894626 0.092819 +0.3262122 0.4894626 0.092819 +0.3544566 0.4894626 0.092819 +0.3767383 0.4894626 0.092819 +0.3951413 0.4894626 0.092819 +0.4108177 0.4894626 0.092819 +0.4244723 0.4894626 0.092819 +0.4365675 0.4894626 0.092819 +0.4474232 0.4894626 0.092819 +0.45727 0.4894626 0.092819 +0.4662797 0.4894626 0.092819 +0.4745834 0.4894626 0.092819 +0.4822838 0.4894626 0.092819 +0.4894626 0.4894626 0.092819 +0.4961862 0.4894626 0.092819 +0.5025087 0.4894626 0.092819 +0.5084753 0.4894626 0.092819 +0.514124 0.4894626 0.092819 +0.519487 0.4894626 0.092819 +0.5245917 0.4894626 0.092819 +0.529462 0.4894626 0.092819 +0.5341183 0.4894626 0.092819 +0.5385787 0.4894626 0.092819 +0.5428591 0.4894626 0.092819 +0.5469733 0.4894626 0.092819 +0.5509339 0.4894626 0.092819 +0.5547519 0.4894626 0.092819 +0.5584371 0.4894626 0.092819 +0.5619986 0.4894626 0.092819 +0.5654443 0.4894626 0.092819 +0.5687816 0.4894626 0.092819 +0.092819 0.4961862 0.092819 +0.2262531 0.4961862 0.092819 +0.2875993 0.4961862 0.092819 +0.3262122 0.4961862 0.092819 +0.3544566 0.4961862 0.092819 +0.3767383 0.4961862 0.092819 +0.3951413 0.4961862 0.092819 +0.4108177 0.4961862 0.092819 +0.4244723 0.4961862 0.092819 +0.4365675 0.4961862 0.092819 +0.4474232 0.4961862 0.092819 +0.45727 0.4961862 0.092819 +0.4662797 0.4961862 0.092819 +0.4745834 0.4961862 0.092819 +0.4822838 0.4961862 0.092819 +0.4894626 0.4961862 0.092819 +0.4961862 0.4961862 0.092819 +0.5025087 0.4961862 0.092819 +0.5084753 0.4961862 0.092819 +0.514124 0.4961862 0.092819 +0.519487 0.4961862 0.092819 +0.5245917 0.4961862 0.092819 +0.529462 0.4961862 0.092819 +0.5341183 0.4961862 0.092819 +0.5385787 0.4961862 0.092819 +0.5428591 0.4961862 0.092819 +0.5469733 0.4961862 0.092819 +0.5509339 0.4961862 0.092819 +0.5547519 0.4961862 0.092819 +0.5584371 0.4961862 0.092819 +0.5619986 0.4961862 0.092819 +0.5654443 0.4961862 0.092819 +0.5687816 0.4961862 0.092819 +0.092819 0.5025087 0.092819 +0.2262531 0.5025087 0.092819 +0.2875993 0.5025087 0.092819 +0.3262122 0.5025087 0.092819 +0.3544566 0.5025087 0.092819 +0.3767383 0.5025087 0.092819 +0.3951413 0.5025087 0.092819 +0.4108177 0.5025087 0.092819 +0.4244723 0.5025087 0.092819 +0.4365675 0.5025087 0.092819 +0.4474232 0.5025087 0.092819 +0.45727 0.5025087 0.092819 +0.4662797 0.5025087 0.092819 +0.4745834 0.5025087 0.092819 +0.4822838 0.5025087 0.092819 +0.4894626 0.5025087 0.092819 +0.4961862 0.5025087 0.092819 +0.5025087 0.5025087 0.092819 +0.5084753 0.5025087 0.092819 +0.514124 0.5025087 0.092819 +0.519487 0.5025087 0.092819 +0.5245917 0.5025087 0.092819 +0.529462 0.5025087 0.092819 +0.5341183 0.5025087 0.092819 +0.5385787 0.5025087 0.092819 +0.5428591 0.5025087 0.092819 +0.5469733 0.5025087 0.092819 +0.5509339 0.5025087 0.092819 +0.5547519 0.5025087 0.092819 +0.5584371 0.5025087 0.092819 +0.5619986 0.5025087 0.092819 +0.5654443 0.5025087 0.092819 +0.5687816 0.5025087 0.092819 +0.092819 0.5084753 0.092819 +0.2262531 0.5084753 0.092819 +0.2875993 0.5084753 0.092819 +0.3262122 0.5084753 0.092819 +0.3544566 0.5084753 0.092819 +0.3767383 0.5084753 0.092819 +0.3951413 0.5084753 0.092819 +0.4108177 0.5084753 0.092819 +0.4244723 0.5084753 0.092819 +0.4365675 0.5084753 0.092819 +0.4474232 0.5084753 0.092819 +0.45727 0.5084753 0.092819 +0.4662797 0.5084753 0.092819 +0.4745834 0.5084753 0.092819 +0.4822838 0.5084753 0.092819 +0.4894626 0.5084753 0.092819 +0.4961862 0.5084753 0.092819 +0.5025087 0.5084753 0.092819 +0.5084753 0.5084753 0.092819 +0.514124 0.5084753 0.092819 +0.519487 0.5084753 0.092819 +0.5245917 0.5084753 0.092819 +0.529462 0.5084753 0.092819 +0.5341183 0.5084753 0.092819 +0.5385787 0.5084753 0.092819 +0.5428591 0.5084753 0.092819 +0.5469733 0.5084753 0.092819 +0.5509339 0.5084753 0.092819 +0.5547519 0.5084753 0.092819 +0.5584371 0.5084753 0.092819 +0.5619986 0.5084753 0.092819 +0.5654443 0.5084753 0.092819 +0.5687816 0.5084753 0.092819 +0.092819 0.514124 0.092819 +0.2262531 0.514124 0.092819 +0.2875993 0.514124 0.092819 +0.3262122 0.514124 0.092819 +0.3544566 0.514124 0.092819 +0.3767383 0.514124 0.092819 +0.3951413 0.514124 0.092819 +0.4108177 0.514124 0.092819 +0.4244723 0.514124 0.092819 +0.4365675 0.514124 0.092819 +0.4474232 0.514124 0.092819 +0.45727 0.514124 0.092819 +0.4662797 0.514124 0.092819 +0.4745834 0.514124 0.092819 +0.4822838 0.514124 0.092819 +0.4894626 0.514124 0.092819 +0.4961862 0.514124 0.092819 +0.5025087 0.514124 0.092819 +0.5084753 0.514124 0.092819 +0.514124 0.514124 0.092819 +0.519487 0.514124 0.092819 +0.5245917 0.514124 0.092819 +0.529462 0.514124 0.092819 +0.5341183 0.514124 0.092819 +0.5385787 0.514124 0.092819 +0.5428591 0.514124 0.092819 +0.5469733 0.514124 0.092819 +0.5509339 0.514124 0.092819 +0.5547519 0.514124 0.092819 +0.5584371 0.514124 0.092819 +0.5619986 0.514124 0.092819 +0.5654443 0.514124 0.092819 +0.5687816 0.514124 0.092819 +0.092819 0.519487 0.092819 +0.2262531 0.519487 0.092819 +0.2875993 0.519487 0.092819 +0.3262122 0.519487 0.092819 +0.3544566 0.519487 0.092819 +0.3767383 0.519487 0.092819 +0.3951413 0.519487 0.092819 +0.4108177 0.519487 0.092819 +0.4244723 0.519487 0.092819 +0.4365675 0.519487 0.092819 +0.4474232 0.519487 0.092819 +0.45727 0.519487 0.092819 +0.4662797 0.519487 0.092819 +0.4745834 0.519487 0.092819 +0.4822838 0.519487 0.092819 +0.4894626 0.519487 0.092819 +0.4961862 0.519487 0.092819 +0.5025087 0.519487 0.092819 +0.5084753 0.519487 0.092819 +0.514124 0.519487 0.092819 +0.519487 0.519487 0.092819 +0.5245917 0.519487 0.092819 +0.529462 0.519487 0.092819 +0.5341183 0.519487 0.092819 +0.5385787 0.519487 0.092819 +0.5428591 0.519487 0.092819 +0.5469733 0.519487 0.092819 +0.5509339 0.519487 0.092819 +0.5547519 0.519487 0.092819 +0.5584371 0.519487 0.092819 +0.5619986 0.519487 0.092819 +0.5654443 0.519487 0.092819 +0.5687816 0.519487 0.092819 +0.092819 0.5245917 0.092819 +0.2262531 0.5245917 0.092819 +0.2875993 0.5245917 0.092819 +0.3262122 0.5245917 0.092819 +0.3544566 0.5245917 0.092819 +0.3767383 0.5245917 0.092819 +0.3951413 0.5245917 0.092819 +0.4108177 0.5245917 0.092819 +0.4244723 0.5245917 0.092819 +0.4365675 0.5245917 0.092819 +0.4474232 0.5245917 0.092819 +0.45727 0.5245917 0.092819 +0.4662797 0.5245917 0.092819 +0.4745834 0.5245917 0.092819 +0.4822838 0.5245917 0.092819 +0.4894626 0.5245917 0.092819 +0.4961862 0.5245917 0.092819 +0.5025087 0.5245917 0.092819 +0.5084753 0.5245917 0.092819 +0.514124 0.5245917 0.092819 +0.519487 0.5245917 0.092819 +0.5245917 0.5245917 0.092819 +0.529462 0.5245917 0.092819 +0.5341183 0.5245917 0.092819 +0.5385787 0.5245917 0.092819 +0.5428591 0.5245917 0.092819 +0.5469733 0.5245917 0.092819 +0.5509339 0.5245917 0.092819 +0.5547519 0.5245917 0.092819 +0.5584371 0.5245917 0.092819 +0.5619986 0.5245917 0.092819 +0.5654443 0.5245917 0.092819 +0.5687816 0.5245917 0.092819 +0.092819 0.529462 0.092819 +0.2262531 0.529462 0.092819 +0.2875993 0.529462 0.092819 +0.3262122 0.529462 0.092819 +0.3544566 0.529462 0.092819 +0.3767383 0.529462 0.092819 +0.3951413 0.529462 0.092819 +0.4108177 0.529462 0.092819 +0.4244723 0.529462 0.092819 +0.4365675 0.529462 0.092819 +0.4474232 0.529462 0.092819 +0.45727 0.529462 0.092819 +0.4662797 0.529462 0.092819 +0.4745834 0.529462 0.092819 +0.4822838 0.529462 0.092819 +0.4894626 0.529462 0.092819 +0.4961862 0.529462 0.092819 +0.5025087 0.529462 0.092819 +0.5084753 0.529462 0.092819 +0.514124 0.529462 0.092819 +0.519487 0.529462 0.092819 +0.5245917 0.529462 0.092819 +0.529462 0.529462 0.092819 +0.5341183 0.529462 0.092819 +0.5385787 0.529462 0.092819 +0.5428591 0.529462 0.092819 +0.5469733 0.529462 0.092819 +0.5509339 0.529462 0.092819 +0.5547519 0.529462 0.092819 +0.5584371 0.529462 0.092819 +0.5619986 0.529462 0.092819 +0.5654443 0.529462 0.092819 +0.5687816 0.529462 0.092819 +0.092819 0.5341183 0.092819 +0.2262531 0.5341183 0.092819 +0.2875993 0.5341183 0.092819 +0.3262122 0.5341183 0.092819 +0.3544566 0.5341183 0.092819 +0.3767383 0.5341183 0.092819 +0.3951413 0.5341183 0.092819 +0.4108177 0.5341183 0.092819 +0.4244723 0.5341183 0.092819 +0.4365675 0.5341183 0.092819 +0.4474232 0.5341183 0.092819 +0.45727 0.5341183 0.092819 +0.4662797 0.5341183 0.092819 +0.4745834 0.5341183 0.092819 +0.4822838 0.5341183 0.092819 +0.4894626 0.5341183 0.092819 +0.4961862 0.5341183 0.092819 +0.5025087 0.5341183 0.092819 +0.5084753 0.5341183 0.092819 +0.514124 0.5341183 0.092819 +0.519487 0.5341183 0.092819 +0.5245917 0.5341183 0.092819 +0.529462 0.5341183 0.092819 +0.5341183 0.5341183 0.092819 +0.5385787 0.5341183 0.092819 +0.5428591 0.5341183 0.092819 +0.5469733 0.5341183 0.092819 +0.5509339 0.5341183 0.092819 +0.5547519 0.5341183 0.092819 +0.5584371 0.5341183 0.092819 +0.5619986 0.5341183 0.092819 +0.5654443 0.5341183 0.092819 +0.5687816 0.5341183 0.092819 +0.092819 0.5385787 0.092819 +0.2262531 0.5385787 0.092819 +0.2875993 0.5385787 0.092819 +0.3262122 0.5385787 0.092819 +0.3544566 0.5385787 0.092819 +0.3767383 0.5385787 0.092819 +0.3951413 0.5385787 0.092819 +0.4108177 0.5385787 0.092819 +0.4244723 0.5385787 0.092819 +0.4365675 0.5385787 0.092819 +0.4474232 0.5385787 0.092819 +0.45727 0.5385787 0.092819 +0.4662797 0.5385787 0.092819 +0.4745834 0.5385787 0.092819 +0.4822838 0.5385787 0.092819 +0.4894626 0.5385787 0.092819 +0.4961862 0.5385787 0.092819 +0.5025087 0.5385787 0.092819 +0.5084753 0.5385787 0.092819 +0.514124 0.5385787 0.092819 +0.519487 0.5385787 0.092819 +0.5245917 0.5385787 0.092819 +0.529462 0.5385787 0.092819 +0.5341183 0.5385787 0.092819 +0.5385787 0.5385787 0.092819 +0.5428591 0.5385787 0.092819 +0.5469733 0.5385787 0.092819 +0.5509339 0.5385787 0.092819 +0.5547519 0.5385787 0.092819 +0.5584371 0.5385787 0.092819 +0.5619986 0.5385787 0.092819 +0.5654443 0.5385787 0.092819 +0.5687816 0.5385787 0.092819 +0.092819 0.5428591 0.092819 +0.2262531 0.5428591 0.092819 +0.2875993 0.5428591 0.092819 +0.3262122 0.5428591 0.092819 +0.3544566 0.5428591 0.092819 +0.3767383 0.5428591 0.092819 +0.3951413 0.5428591 0.092819 +0.4108177 0.5428591 0.092819 +0.4244723 0.5428591 0.092819 +0.4365675 0.5428591 0.092819 +0.4474232 0.5428591 0.092819 +0.45727 0.5428591 0.092819 +0.4662797 0.5428591 0.092819 +0.4745834 0.5428591 0.092819 +0.4822838 0.5428591 0.092819 +0.4894626 0.5428591 0.092819 +0.4961862 0.5428591 0.092819 +0.5025087 0.5428591 0.092819 +0.5084753 0.5428591 0.092819 +0.514124 0.5428591 0.092819 +0.519487 0.5428591 0.092819 +0.5245917 0.5428591 0.092819 +0.529462 0.5428591 0.092819 +0.5341183 0.5428591 0.092819 +0.5385787 0.5428591 0.092819 +0.5428591 0.5428591 0.092819 +0.5469733 0.5428591 0.092819 +0.5509339 0.5428591 0.092819 +0.5547519 0.5428591 0.092819 +0.5584371 0.5428591 0.092819 +0.5619986 0.5428591 0.092819 +0.5654443 0.5428591 0.092819 +0.5687816 0.5428591 0.092819 +0.092819 0.5469733 0.092819 +0.2262531 0.5469733 0.092819 +0.2875993 0.5469733 0.092819 +0.3262122 0.5469733 0.092819 +0.3544566 0.5469733 0.092819 +0.3767383 0.5469733 0.092819 +0.3951413 0.5469733 0.092819 +0.4108177 0.5469733 0.092819 +0.4244723 0.5469733 0.092819 +0.4365675 0.5469733 0.092819 +0.4474232 0.5469733 0.092819 +0.45727 0.5469733 0.092819 +0.4662797 0.5469733 0.092819 +0.4745834 0.5469733 0.092819 +0.4822838 0.5469733 0.092819 +0.4894626 0.5469733 0.092819 +0.4961862 0.5469733 0.092819 +0.5025087 0.5469733 0.092819 +0.5084753 0.5469733 0.092819 +0.514124 0.5469733 0.092819 +0.519487 0.5469733 0.092819 +0.5245917 0.5469733 0.092819 +0.529462 0.5469733 0.092819 +0.5341183 0.5469733 0.092819 +0.5385787 0.5469733 0.092819 +0.5428591 0.5469733 0.092819 +0.5469733 0.5469733 0.092819 +0.5509339 0.5469733 0.092819 +0.5547519 0.5469733 0.092819 +0.5584371 0.5469733 0.092819 +0.5619986 0.5469733 0.092819 +0.5654443 0.5469733 0.092819 +0.5687816 0.5469733 0.092819 +0.092819 0.5509339 0.092819 +0.2262531 0.5509339 0.092819 +0.2875993 0.5509339 0.092819 +0.3262122 0.5509339 0.092819 +0.3544566 0.5509339 0.092819 +0.3767383 0.5509339 0.092819 +0.3951413 0.5509339 0.092819 +0.4108177 0.5509339 0.092819 +0.4244723 0.5509339 0.092819 +0.4365675 0.5509339 0.092819 +0.4474232 0.5509339 0.092819 +0.45727 0.5509339 0.092819 +0.4662797 0.5509339 0.092819 +0.4745834 0.5509339 0.092819 +0.4822838 0.5509339 0.092819 +0.4894626 0.5509339 0.092819 +0.4961862 0.5509339 0.092819 +0.5025087 0.5509339 0.092819 +0.5084753 0.5509339 0.092819 +0.514124 0.5509339 0.092819 +0.519487 0.5509339 0.092819 +0.5245917 0.5509339 0.092819 +0.529462 0.5509339 0.092819 +0.5341183 0.5509339 0.092819 +0.5385787 0.5509339 0.092819 +0.5428591 0.5509339 0.092819 +0.5469733 0.5509339 0.092819 +0.5509339 0.5509339 0.092819 +0.5547519 0.5509339 0.092819 +0.5584371 0.5509339 0.092819 +0.5619986 0.5509339 0.092819 +0.5654443 0.5509339 0.092819 +0.5687816 0.5509339 0.092819 +0.092819 0.5547519 0.092819 +0.2262531 0.5547519 0.092819 +0.2875993 0.5547519 0.092819 +0.3262122 0.5547519 0.092819 +0.3544566 0.5547519 0.092819 +0.3767383 0.5547519 0.092819 +0.3951413 0.5547519 0.092819 +0.4108177 0.5547519 0.092819 +0.4244723 0.5547519 0.092819 +0.4365675 0.5547519 0.092819 +0.4474232 0.5547519 0.092819 +0.45727 0.5547519 0.092819 +0.4662797 0.5547519 0.092819 +0.4745834 0.5547519 0.092819 +0.4822838 0.5547519 0.092819 +0.4894626 0.5547519 0.092819 +0.4961862 0.5547519 0.092819 +0.5025087 0.5547519 0.092819 +0.5084753 0.5547519 0.092819 +0.514124 0.5547519 0.092819 +0.519487 0.5547519 0.092819 +0.5245917 0.5547519 0.092819 +0.529462 0.5547519 0.092819 +0.5341183 0.5547519 0.092819 +0.5385787 0.5547519 0.092819 +0.5428591 0.5547519 0.092819 +0.5469733 0.5547519 0.092819 +0.5509339 0.5547519 0.092819 +0.5547519 0.5547519 0.092819 +0.5584371 0.5547519 0.092819 +0.5619986 0.5547519 0.092819 +0.5654443 0.5547519 0.092819 +0.5687816 0.5547519 0.092819 +0.092819 0.5584371 0.092819 +0.2262531 0.5584371 0.092819 +0.2875993 0.5584371 0.092819 +0.3262122 0.5584371 0.092819 +0.3544566 0.5584371 0.092819 +0.3767383 0.5584371 0.092819 +0.3951413 0.5584371 0.092819 +0.4108177 0.5584371 0.092819 +0.4244723 0.5584371 0.092819 +0.4365675 0.5584371 0.092819 +0.4474232 0.5584371 0.092819 +0.45727 0.5584371 0.092819 +0.4662797 0.5584371 0.092819 +0.4745834 0.5584371 0.092819 +0.4822838 0.5584371 0.092819 +0.4894626 0.5584371 0.092819 +0.4961862 0.5584371 0.092819 +0.5025087 0.5584371 0.092819 +0.5084753 0.5584371 0.092819 +0.514124 0.5584371 0.092819 +0.519487 0.5584371 0.092819 +0.5245917 0.5584371 0.092819 +0.529462 0.5584371 0.092819 +0.5341183 0.5584371 0.092819 +0.5385787 0.5584371 0.092819 +0.5428591 0.5584371 0.092819 +0.5469733 0.5584371 0.092819 +0.5509339 0.5584371 0.092819 +0.5547519 0.5584371 0.092819 +0.5584371 0.5584371 0.092819 +0.5619986 0.5584371 0.092819 +0.5654443 0.5584371 0.092819 +0.5687816 0.5584371 0.092819 +0.092819 0.5619986 0.092819 +0.2262531 0.5619986 0.092819 +0.2875993 0.5619986 0.092819 +0.3262122 0.5619986 0.092819 +0.3544566 0.5619986 0.092819 +0.3767383 0.5619986 0.092819 +0.3951413 0.5619986 0.092819 +0.4108177 0.5619986 0.092819 +0.4244723 0.5619986 0.092819 +0.4365675 0.5619986 0.092819 +0.4474232 0.5619986 0.092819 +0.45727 0.5619986 0.092819 +0.4662797 0.5619986 0.092819 +0.4745834 0.5619986 0.092819 +0.4822838 0.5619986 0.092819 +0.4894626 0.5619986 0.092819 +0.4961862 0.5619986 0.092819 +0.5025087 0.5619986 0.092819 +0.5084753 0.5619986 0.092819 +0.514124 0.5619986 0.092819 +0.519487 0.5619986 0.092819 +0.5245917 0.5619986 0.092819 +0.529462 0.5619986 0.092819 +0.5341183 0.5619986 0.092819 +0.5385787 0.5619986 0.092819 +0.5428591 0.5619986 0.092819 +0.5469733 0.5619986 0.092819 +0.5509339 0.5619986 0.092819 +0.5547519 0.5619986 0.092819 +0.5584371 0.5619986 0.092819 +0.5619986 0.5619986 0.092819 +0.5654443 0.5619986 0.092819 +0.5687816 0.5619986 0.092819 +0.092819 0.5654443 0.092819 +0.2262531 0.5654443 0.092819 +0.2875993 0.5654443 0.092819 +0.3262122 0.5654443 0.092819 +0.3544566 0.5654443 0.092819 +0.3767383 0.5654443 0.092819 +0.3951413 0.5654443 0.092819 +0.4108177 0.5654443 0.092819 +0.4244723 0.5654443 0.092819 +0.4365675 0.5654443 0.092819 +0.4474232 0.5654443 0.092819 +0.45727 0.5654443 0.092819 +0.4662797 0.5654443 0.092819 +0.4745834 0.5654443 0.092819 +0.4822838 0.5654443 0.092819 +0.4894626 0.5654443 0.092819 +0.4961862 0.5654443 0.092819 +0.5025087 0.5654443 0.092819 +0.5084753 0.5654443 0.092819 +0.514124 0.5654443 0.092819 +0.519487 0.5654443 0.092819 +0.5245917 0.5654443 0.092819 +0.529462 0.5654443 0.092819 +0.5341183 0.5654443 0.092819 +0.5385787 0.5654443 0.092819 +0.5428591 0.5654443 0.092819 +0.5469733 0.5654443 0.092819 +0.5509339 0.5654443 0.092819 +0.5547519 0.5654443 0.092819 +0.5584371 0.5654443 0.092819 +0.5619986 0.5654443 0.092819 +0.5654443 0.5654443 0.092819 +0.5687816 0.5654443 0.092819 +0.092819 0.5687816 0.092819 +0.2262531 0.5687816 0.092819 +0.2875993 0.5687816 0.092819 +0.3262122 0.5687816 0.092819 +0.3544566 0.5687816 0.092819 +0.3767383 0.5687816 0.092819 +0.3951413 0.5687816 0.092819 +0.4108177 0.5687816 0.092819 +0.4244723 0.5687816 0.092819 +0.4365675 0.5687816 0.092819 +0.4474232 0.5687816 0.092819 +0.45727 0.5687816 0.092819 +0.4662797 0.5687816 0.092819 +0.4745834 0.5687816 0.092819 +0.4822838 0.5687816 0.092819 +0.4894626 0.5687816 0.092819 +0.4961862 0.5687816 0.092819 +0.5025087 0.5687816 0.092819 +0.5084753 0.5687816 0.092819 +0.514124 0.5687816 0.092819 +0.519487 0.5687816 0.092819 +0.5245917 0.5687816 0.092819 +0.529462 0.5687816 0.092819 +0.5341183 0.5687816 0.092819 +0.5385787 0.5687816 0.092819 +0.5428591 0.5687816 0.092819 +0.5469733 0.5687816 0.092819 +0.5509339 0.5687816 0.092819 +0.5547519 0.5687816 0.092819 +0.5584371 0.5687816 0.092819 +0.5619986 0.5687816 0.092819 +0.5654443 0.5687816 0.092819 +0.5687816 0.5687816 0.092819 +0.092819 0.092819 0.2262531 +0.2262531 0.092819 0.2262531 +0.2875993 0.092819 0.2262531 +0.3262122 0.092819 0.2262531 +0.3544566 0.092819 0.2262531 +0.3767383 0.092819 0.2262531 +0.3951413 0.092819 0.2262531 +0.4108177 0.092819 0.2262531 +0.4244723 0.092819 0.2262531 +0.4365675 0.092819 0.2262531 +0.4474232 0.092819 0.2262531 +0.45727 0.092819 0.2262531 +0.4662797 0.092819 0.2262531 +0.4745834 0.092819 0.2262531 +0.4822838 0.092819 0.2262531 +0.4894626 0.092819 0.2262531 +0.4961862 0.092819 0.2262531 +0.5025087 0.092819 0.2262531 +0.5084753 0.092819 0.2262531 +0.514124 0.092819 0.2262531 +0.519487 0.092819 0.2262531 +0.5245917 0.092819 0.2262531 +0.529462 0.092819 0.2262531 +0.5341183 0.092819 0.2262531 +0.5385787 0.092819 0.2262531 +0.5428591 0.092819 0.2262531 +0.5469733 0.092819 0.2262531 +0.5509339 0.092819 0.2262531 +0.5547519 0.092819 0.2262531 +0.5584371 0.092819 0.2262531 +0.5619986 0.092819 0.2262531 +0.5654443 0.092819 0.2262531 +0.5687816 0.092819 0.2262531 +0.092819 0.2262531 0.2262531 +0.2262531 0.2262531 0.2262531 +0.2875993 0.2262531 0.2262531 +0.3262122 0.2262531 0.2262531 +0.3544566 0.2262531 0.2262531 +0.3767383 0.2262531 0.2262531 +0.3951413 0.2262531 0.2262531 +0.4108177 0.2262531 0.2262531 +0.4244723 0.2262531 0.2262531 +0.4365675 0.2262531 0.2262531 +0.4474232 0.2262531 0.2262531 +0.45727 0.2262531 0.2262531 +0.4662797 0.2262531 0.2262531 +0.4745834 0.2262531 0.2262531 +0.4822838 0.2262531 0.2262531 +0.4894626 0.2262531 0.2262531 +0.4961862 0.2262531 0.2262531 +0.5025087 0.2262531 0.2262531 +0.5084753 0.2262531 0.2262531 +0.514124 0.2262531 0.2262531 +0.519487 0.2262531 0.2262531 +0.5245917 0.2262531 0.2262531 +0.529462 0.2262531 0.2262531 +0.5341183 0.2262531 0.2262531 +0.5385787 0.2262531 0.2262531 +0.5428591 0.2262531 0.2262531 +0.5469733 0.2262531 0.2262531 +0.5509339 0.2262531 0.2262531 +0.5547519 0.2262531 0.2262531 +0.5584371 0.2262531 0.2262531 +0.5619986 0.2262531 0.2262531 +0.5654443 0.2262531 0.2262531 +0.5687816 0.2262531 0.2262531 +0.092819 0.2875993 0.2262531 +0.2262531 0.2875993 0.2262531 +0.2875993 0.2875993 0.2262531 +0.3262122 0.2875993 0.2262531 +0.3544566 0.2875993 0.2262531 +0.3767383 0.2875993 0.2262531 +0.3951413 0.2875993 0.2262531 +0.4108177 0.2875993 0.2262531 +0.4244723 0.2875993 0.2262531 +0.4365675 0.2875993 0.2262531 +0.4474232 0.2875993 0.2262531 +0.45727 0.2875993 0.2262531 +0.4662797 0.2875993 0.2262531 +0.4745834 0.2875993 0.2262531 +0.4822838 0.2875993 0.2262531 +0.4894626 0.2875993 0.2262531 +0.4961862 0.2875993 0.2262531 +0.5025087 0.2875993 0.2262531 +0.5084753 0.2875993 0.2262531 +0.514124 0.2875993 0.2262531 +0.519487 0.2875993 0.2262531 +0.5245917 0.2875993 0.2262531 +0.529462 0.2875993 0.2262531 +0.5341183 0.2875993 0.2262531 +0.5385787 0.2875993 0.2262531 +0.5428591 0.2875993 0.2262531 +0.5469733 0.2875993 0.2262531 +0.5509339 0.2875993 0.2262531 +0.5547519 0.2875993 0.2262531 +0.5584371 0.2875993 0.2262531 +0.5619986 0.2875993 0.2262531 +0.5654443 0.2875993 0.2262531 +0.5687816 0.2875993 0.2262531 +0.092819 0.3262122 0.2262531 +0.2262531 0.3262122 0.2262531 +0.2875993 0.3262122 0.2262531 +0.3262122 0.3262122 0.2262531 +0.3544566 0.3262122 0.2262531 +0.3767383 0.3262122 0.2262531 +0.3951413 0.3262122 0.2262531 +0.4108177 0.3262122 0.2262531 +0.4244723 0.3262122 0.2262531 +0.4365675 0.3262122 0.2262531 +0.4474232 0.3262122 0.2262531 +0.45727 0.3262122 0.2262531 +0.4662797 0.3262122 0.2262531 +0.4745834 0.3262122 0.2262531 +0.4822838 0.3262122 0.2262531 +0.4894626 0.3262122 0.2262531 +0.4961862 0.3262122 0.2262531 +0.5025087 0.3262122 0.2262531 +0.5084753 0.3262122 0.2262531 +0.514124 0.3262122 0.2262531 +0.519487 0.3262122 0.2262531 +0.5245917 0.3262122 0.2262531 +0.529462 0.3262122 0.2262531 +0.5341183 0.3262122 0.2262531 +0.5385787 0.3262122 0.2262531 +0.5428591 0.3262122 0.2262531 +0.5469733 0.3262122 0.2262531 +0.5509339 0.3262122 0.2262531 +0.5547519 0.3262122 0.2262531 +0.5584371 0.3262122 0.2262531 +0.5619986 0.3262122 0.2262531 +0.5654443 0.3262122 0.2262531 +0.5687816 0.3262122 0.2262531 +0.092819 0.3544566 0.2262531 +0.2262531 0.3544566 0.2262531 +0.2875993 0.3544566 0.2262531 +0.3262122 0.3544566 0.2262531 +0.3544566 0.3544566 0.2262531 +0.3767383 0.3544566 0.2262531 +0.3951413 0.3544566 0.2262531 +0.4108177 0.3544566 0.2262531 +0.4244723 0.3544566 0.2262531 +0.4365675 0.3544566 0.2262531 +0.4474232 0.3544566 0.2262531 +0.45727 0.3544566 0.2262531 +0.4662797 0.3544566 0.2262531 +0.4745834 0.3544566 0.2262531 +0.4822838 0.3544566 0.2262531 +0.4894626 0.3544566 0.2262531 +0.4961862 0.3544566 0.2262531 +0.5025087 0.3544566 0.2262531 +0.5084753 0.3544566 0.2262531 +0.514124 0.3544566 0.2262531 +0.519487 0.3544566 0.2262531 +0.5245917 0.3544566 0.2262531 +0.529462 0.3544566 0.2262531 +0.5341183 0.3544566 0.2262531 +0.5385787 0.3544566 0.2262531 +0.5428591 0.3544566 0.2262531 +0.5469733 0.3544566 0.2262531 +0.5509339 0.3544566 0.2262531 +0.5547519 0.3544566 0.2262531 +0.5584371 0.3544566 0.2262531 +0.5619986 0.3544566 0.2262531 +0.5654443 0.3544566 0.2262531 +0.5687816 0.3544566 0.2262531 +0.092819 0.3767383 0.2262531 +0.2262531 0.3767383 0.2262531 +0.2875993 0.3767383 0.2262531 +0.3262122 0.3767383 0.2262531 +0.3544566 0.3767383 0.2262531 +0.3767383 0.3767383 0.2262531 +0.3951413 0.3767383 0.2262531 +0.4108177 0.3767383 0.2262531 +0.4244723 0.3767383 0.2262531 +0.4365675 0.3767383 0.2262531 +0.4474232 0.3767383 0.2262531 +0.45727 0.3767383 0.2262531 +0.4662797 0.3767383 0.2262531 +0.4745834 0.3767383 0.2262531 +0.4822838 0.3767383 0.2262531 +0.4894626 0.3767383 0.2262531 +0.4961862 0.3767383 0.2262531 +0.5025087 0.3767383 0.2262531 +0.5084753 0.3767383 0.2262531 +0.514124 0.3767383 0.2262531 +0.519487 0.3767383 0.2262531 +0.5245917 0.3767383 0.2262531 +0.529462 0.3767383 0.2262531 +0.5341183 0.3767383 0.2262531 +0.5385787 0.3767383 0.2262531 +0.5428591 0.3767383 0.2262531 +0.5469733 0.3767383 0.2262531 +0.5509339 0.3767383 0.2262531 +0.5547519 0.3767383 0.2262531 +0.5584371 0.3767383 0.2262531 +0.5619986 0.3767383 0.2262531 +0.5654443 0.3767383 0.2262531 +0.5687816 0.3767383 0.2262531 +0.092819 0.3951413 0.2262531 +0.2262531 0.3951413 0.2262531 +0.2875993 0.3951413 0.2262531 +0.3262122 0.3951413 0.2262531 +0.3544566 0.3951413 0.2262531 +0.3767383 0.3951413 0.2262531 +0.3951413 0.3951413 0.2262531 +0.4108177 0.3951413 0.2262531 +0.4244723 0.3951413 0.2262531 +0.4365675 0.3951413 0.2262531 +0.4474232 0.3951413 0.2262531 +0.45727 0.3951413 0.2262531 +0.4662797 0.3951413 0.2262531 +0.4745834 0.3951413 0.2262531 +0.4822838 0.3951413 0.2262531 +0.4894626 0.3951413 0.2262531 +0.4961862 0.3951413 0.2262531 +0.5025087 0.3951413 0.2262531 +0.5084753 0.3951413 0.2262531 +0.514124 0.3951413 0.2262531 +0.519487 0.3951413 0.2262531 +0.5245917 0.3951413 0.2262531 +0.529462 0.3951413 0.2262531 +0.5341183 0.3951413 0.2262531 +0.5385787 0.3951413 0.2262531 +0.5428591 0.3951413 0.2262531 +0.5469733 0.3951413 0.2262531 +0.5509339 0.3951413 0.2262531 +0.5547519 0.3951413 0.2262531 +0.5584371 0.3951413 0.2262531 +0.5619986 0.3951413 0.2262531 +0.5654443 0.3951413 0.2262531 +0.5687816 0.3951413 0.2262531 +0.092819 0.4108177 0.2262531 +0.2262531 0.4108177 0.2262531 +0.2875993 0.4108177 0.2262531 +0.3262122 0.4108177 0.2262531 +0.3544566 0.4108177 0.2262531 +0.3767383 0.4108177 0.2262531 +0.3951413 0.4108177 0.2262531 +0.4108177 0.4108177 0.2262531 +0.4244723 0.4108177 0.2262531 +0.4365675 0.4108177 0.2262531 +0.4474232 0.4108177 0.2262531 +0.45727 0.4108177 0.2262531 +0.4662797 0.4108177 0.2262531 +0.4745834 0.4108177 0.2262531 +0.4822838 0.4108177 0.2262531 +0.4894626 0.4108177 0.2262531 +0.4961862 0.4108177 0.2262531 +0.5025087 0.4108177 0.2262531 +0.5084753 0.4108177 0.2262531 +0.514124 0.4108177 0.2262531 +0.519487 0.4108177 0.2262531 +0.5245917 0.4108177 0.2262531 +0.529462 0.4108177 0.2262531 +0.5341183 0.4108177 0.2262531 +0.5385787 0.4108177 0.2262531 +0.5428591 0.4108177 0.2262531 +0.5469733 0.4108177 0.2262531 +0.5509339 0.4108177 0.2262531 +0.5547519 0.4108177 0.2262531 +0.5584371 0.4108177 0.2262531 +0.5619986 0.4108177 0.2262531 +0.5654443 0.4108177 0.2262531 +0.5687816 0.4108177 0.2262531 +0.092819 0.4244723 0.2262531 +0.2262531 0.4244723 0.2262531 +0.2875993 0.4244723 0.2262531 +0.3262122 0.4244723 0.2262531 +0.3544566 0.4244723 0.2262531 +0.3767383 0.4244723 0.2262531 +0.3951413 0.4244723 0.2262531 +0.4108177 0.4244723 0.2262531 +0.4244723 0.4244723 0.2262531 +0.4365675 0.4244723 0.2262531 +0.4474232 0.4244723 0.2262531 +0.45727 0.4244723 0.2262531 +0.4662797 0.4244723 0.2262531 +0.4745834 0.4244723 0.2262531 +0.4822838 0.4244723 0.2262531 +0.4894626 0.4244723 0.2262531 +0.4961862 0.4244723 0.2262531 +0.5025087 0.4244723 0.2262531 +0.5084753 0.4244723 0.2262531 +0.514124 0.4244723 0.2262531 +0.519487 0.4244723 0.2262531 +0.5245917 0.4244723 0.2262531 +0.529462 0.4244723 0.2262531 +0.5341183 0.4244723 0.2262531 +0.5385787 0.4244723 0.2262531 +0.5428591 0.4244723 0.2262531 +0.5469733 0.4244723 0.2262531 +0.5509339 0.4244723 0.2262531 +0.5547519 0.4244723 0.2262531 +0.5584371 0.4244723 0.2262531 +0.5619986 0.4244723 0.2262531 +0.5654443 0.4244723 0.2262531 +0.5687816 0.4244723 0.2262531 +0.092819 0.4365675 0.2262531 +0.2262531 0.4365675 0.2262531 +0.2875993 0.4365675 0.2262531 +0.3262122 0.4365675 0.2262531 +0.3544566 0.4365675 0.2262531 +0.3767383 0.4365675 0.2262531 +0.3951413 0.4365675 0.2262531 +0.4108177 0.4365675 0.2262531 +0.4244723 0.4365675 0.2262531 +0.4365675 0.4365675 0.2262531 +0.4474232 0.4365675 0.2262531 +0.45727 0.4365675 0.2262531 +0.4662797 0.4365675 0.2262531 +0.4745834 0.4365675 0.2262531 +0.4822838 0.4365675 0.2262531 +0.4894626 0.4365675 0.2262531 +0.4961862 0.4365675 0.2262531 +0.5025087 0.4365675 0.2262531 +0.5084753 0.4365675 0.2262531 +0.514124 0.4365675 0.2262531 +0.519487 0.4365675 0.2262531 +0.5245917 0.4365675 0.2262531 +0.529462 0.4365675 0.2262531 +0.5341183 0.4365675 0.2262531 +0.5385787 0.4365675 0.2262531 +0.5428591 0.4365675 0.2262531 +0.5469733 0.4365675 0.2262531 +0.5509339 0.4365675 0.2262531 +0.5547519 0.4365675 0.2262531 +0.5584371 0.4365675 0.2262531 +0.5619986 0.4365675 0.2262531 +0.5654443 0.4365675 0.2262531 +0.5687816 0.4365675 0.2262531 +0.092819 0.4474232 0.2262531 +0.2262531 0.4474232 0.2262531 +0.2875993 0.4474232 0.2262531 +0.3262122 0.4474232 0.2262531 +0.3544566 0.4474232 0.2262531 +0.3767383 0.4474232 0.2262531 +0.3951413 0.4474232 0.2262531 +0.4108177 0.4474232 0.2262531 +0.4244723 0.4474232 0.2262531 +0.4365675 0.4474232 0.2262531 +0.4474232 0.4474232 0.2262531 +0.45727 0.4474232 0.2262531 +0.4662797 0.4474232 0.2262531 +0.4745834 0.4474232 0.2262531 +0.4822838 0.4474232 0.2262531 +0.4894626 0.4474232 0.2262531 +0.4961862 0.4474232 0.2262531 +0.5025087 0.4474232 0.2262531 +0.5084753 0.4474232 0.2262531 +0.514124 0.4474232 0.2262531 +0.519487 0.4474232 0.2262531 +0.5245917 0.4474232 0.2262531 +0.529462 0.4474232 0.2262531 +0.5341183 0.4474232 0.2262531 +0.5385787 0.4474232 0.2262531 +0.5428591 0.4474232 0.2262531 +0.5469733 0.4474232 0.2262531 +0.5509339 0.4474232 0.2262531 +0.5547519 0.4474232 0.2262531 +0.5584371 0.4474232 0.2262531 +0.5619986 0.4474232 0.2262531 +0.5654443 0.4474232 0.2262531 +0.5687816 0.4474232 0.2262531 +0.092819 0.45727 0.2262531 +0.2262531 0.45727 0.2262531 +0.2875993 0.45727 0.2262531 +0.3262122 0.45727 0.2262531 +0.3544566 0.45727 0.2262531 +0.3767383 0.45727 0.2262531 +0.3951413 0.45727 0.2262531 +0.4108177 0.45727 0.2262531 +0.4244723 0.45727 0.2262531 +0.4365675 0.45727 0.2262531 +0.4474232 0.45727 0.2262531 +0.45727 0.45727 0.2262531 +0.4662797 0.45727 0.2262531 +0.4745834 0.45727 0.2262531 +0.4822838 0.45727 0.2262531 +0.4894626 0.45727 0.2262531 +0.4961862 0.45727 0.2262531 +0.5025087 0.45727 0.2262531 +0.5084753 0.45727 0.2262531 +0.514124 0.45727 0.2262531 +0.519487 0.45727 0.2262531 +0.5245917 0.45727 0.2262531 +0.529462 0.45727 0.2262531 +0.5341183 0.45727 0.2262531 +0.5385787 0.45727 0.2262531 +0.5428591 0.45727 0.2262531 +0.5469733 0.45727 0.2262531 +0.5509339 0.45727 0.2262531 +0.5547519 0.45727 0.2262531 +0.5584371 0.45727 0.2262531 +0.5619986 0.45727 0.2262531 +0.5654443 0.45727 0.2262531 +0.5687816 0.45727 0.2262531 +0.092819 0.4662797 0.2262531 +0.2262531 0.4662797 0.2262531 +0.2875993 0.4662797 0.2262531 +0.3262122 0.4662797 0.2262531 +0.3544566 0.4662797 0.2262531 +0.3767383 0.4662797 0.2262531 +0.3951413 0.4662797 0.2262531 +0.4108177 0.4662797 0.2262531 +0.4244723 0.4662797 0.2262531 +0.4365675 0.4662797 0.2262531 +0.4474232 0.4662797 0.2262531 +0.45727 0.4662797 0.2262531 +0.4662797 0.4662797 0.2262531 +0.4745834 0.4662797 0.2262531 +0.4822838 0.4662797 0.2262531 +0.4894626 0.4662797 0.2262531 +0.4961862 0.4662797 0.2262531 +0.5025087 0.4662797 0.2262531 +0.5084753 0.4662797 0.2262531 +0.514124 0.4662797 0.2262531 +0.519487 0.4662797 0.2262531 +0.5245917 0.4662797 0.2262531 +0.529462 0.4662797 0.2262531 +0.5341183 0.4662797 0.2262531 +0.5385787 0.4662797 0.2262531 +0.5428591 0.4662797 0.2262531 +0.5469733 0.4662797 0.2262531 +0.5509339 0.4662797 0.2262531 +0.5547519 0.4662797 0.2262531 +0.5584371 0.4662797 0.2262531 +0.5619986 0.4662797 0.2262531 +0.5654443 0.4662797 0.2262531 +0.5687816 0.4662797 0.2262531 +0.092819 0.4745834 0.2262531 +0.2262531 0.4745834 0.2262531 +0.2875993 0.4745834 0.2262531 +0.3262122 0.4745834 0.2262531 +0.3544566 0.4745834 0.2262531 +0.3767383 0.4745834 0.2262531 +0.3951413 0.4745834 0.2262531 +0.4108177 0.4745834 0.2262531 +0.4244723 0.4745834 0.2262531 +0.4365675 0.4745834 0.2262531 +0.4474232 0.4745834 0.2262531 +0.45727 0.4745834 0.2262531 +0.4662797 0.4745834 0.2262531 +0.4745834 0.4745834 0.2262531 +0.4822838 0.4745834 0.2262531 +0.4894626 0.4745834 0.2262531 +0.4961862 0.4745834 0.2262531 +0.5025087 0.4745834 0.2262531 +0.5084753 0.4745834 0.2262531 +0.514124 0.4745834 0.2262531 +0.519487 0.4745834 0.2262531 +0.5245917 0.4745834 0.2262531 +0.529462 0.4745834 0.2262531 +0.5341183 0.4745834 0.2262531 +0.5385787 0.4745834 0.2262531 +0.5428591 0.4745834 0.2262531 +0.5469733 0.4745834 0.2262531 +0.5509339 0.4745834 0.2262531 +0.5547519 0.4745834 0.2262531 +0.5584371 0.4745834 0.2262531 +0.5619986 0.4745834 0.2262531 +0.5654443 0.4745834 0.2262531 +0.5687816 0.4745834 0.2262531 +0.092819 0.4822838 0.2262531 +0.2262531 0.4822838 0.2262531 +0.2875993 0.4822838 0.2262531 +0.3262122 0.4822838 0.2262531 +0.3544566 0.4822838 0.2262531 +0.3767383 0.4822838 0.2262531 +0.3951413 0.4822838 0.2262531 +0.4108177 0.4822838 0.2262531 +0.4244723 0.4822838 0.2262531 +0.4365675 0.4822838 0.2262531 +0.4474232 0.4822838 0.2262531 +0.45727 0.4822838 0.2262531 +0.4662797 0.4822838 0.2262531 +0.4745834 0.4822838 0.2262531 +0.4822838 0.4822838 0.2262531 +0.4894626 0.4822838 0.2262531 +0.4961862 0.4822838 0.2262531 +0.5025087 0.4822838 0.2262531 +0.5084753 0.4822838 0.2262531 +0.514124 0.4822838 0.2262531 +0.519487 0.4822838 0.2262531 +0.5245917 0.4822838 0.2262531 +0.529462 0.4822838 0.2262531 +0.5341183 0.4822838 0.2262531 +0.5385787 0.4822838 0.2262531 +0.5428591 0.4822838 0.2262531 +0.5469733 0.4822838 0.2262531 +0.5509339 0.4822838 0.2262531 +0.5547519 0.4822838 0.2262531 +0.5584371 0.4822838 0.2262531 +0.5619986 0.4822838 0.2262531 +0.5654443 0.4822838 0.2262531 +0.5687816 0.4822838 0.2262531 +0.092819 0.4894626 0.2262531 +0.2262531 0.4894626 0.2262531 +0.2875993 0.4894626 0.2262531 +0.3262122 0.4894626 0.2262531 +0.3544566 0.4894626 0.2262531 +0.3767383 0.4894626 0.2262531 +0.3951413 0.4894626 0.2262531 +0.4108177 0.4894626 0.2262531 +0.4244723 0.4894626 0.2262531 +0.4365675 0.4894626 0.2262531 +0.4474232 0.4894626 0.2262531 +0.45727 0.4894626 0.2262531 +0.4662797 0.4894626 0.2262531 +0.4745834 0.4894626 0.2262531 +0.4822838 0.4894626 0.2262531 +0.4894626 0.4894626 0.2262531 +0.4961862 0.4894626 0.2262531 +0.5025087 0.4894626 0.2262531 +0.5084753 0.4894626 0.2262531 +0.514124 0.4894626 0.2262531 +0.519487 0.4894626 0.2262531 +0.5245917 0.4894626 0.2262531 +0.529462 0.4894626 0.2262531 +0.5341183 0.4894626 0.2262531 +0.5385787 0.4894626 0.2262531 +0.5428591 0.4894626 0.2262531 +0.5469733 0.4894626 0.2262531 +0.5509339 0.4894626 0.2262531 +0.5547519 0.4894626 0.2262531 +0.5584371 0.4894626 0.2262531 +0.5619986 0.4894626 0.2262531 +0.5654443 0.4894626 0.2262531 +0.5687816 0.4894626 0.2262531 +0.092819 0.4961862 0.2262531 +0.2262531 0.4961862 0.2262531 +0.2875993 0.4961862 0.2262531 +0.3262122 0.4961862 0.2262531 +0.3544566 0.4961862 0.2262531 +0.3767383 0.4961862 0.2262531 +0.3951413 0.4961862 0.2262531 +0.4108177 0.4961862 0.2262531 +0.4244723 0.4961862 0.2262531 +0.4365675 0.4961862 0.2262531 +0.4474232 0.4961862 0.2262531 +0.45727 0.4961862 0.2262531 +0.4662797 0.4961862 0.2262531 +0.4745834 0.4961862 0.2262531 +0.4822838 0.4961862 0.2262531 +0.4894626 0.4961862 0.2262531 +0.4961862 0.4961862 0.2262531 +0.5025087 0.4961862 0.2262531 +0.5084753 0.4961862 0.2262531 +0.514124 0.4961862 0.2262531 +0.519487 0.4961862 0.2262531 +0.5245917 0.4961862 0.2262531 +0.529462 0.4961862 0.2262531 +0.5341183 0.4961862 0.2262531 +0.5385787 0.4961862 0.2262531 +0.5428591 0.4961862 0.2262531 +0.5469733 0.4961862 0.2262531 +0.5509339 0.4961862 0.2262531 +0.5547519 0.4961862 0.2262531 +0.5584371 0.4961862 0.2262531 +0.5619986 0.4961862 0.2262531 +0.5654443 0.4961862 0.2262531 +0.5687816 0.4961862 0.2262531 +0.092819 0.5025087 0.2262531 +0.2262531 0.5025087 0.2262531 +0.2875993 0.5025087 0.2262531 +0.3262122 0.5025087 0.2262531 +0.3544566 0.5025087 0.2262531 +0.3767383 0.5025087 0.2262531 +0.3951413 0.5025087 0.2262531 +0.4108177 0.5025087 0.2262531 +0.4244723 0.5025087 0.2262531 +0.4365675 0.5025087 0.2262531 +0.4474232 0.5025087 0.2262531 +0.45727 0.5025087 0.2262531 +0.4662797 0.5025087 0.2262531 +0.4745834 0.5025087 0.2262531 +0.4822838 0.5025087 0.2262531 +0.4894626 0.5025087 0.2262531 +0.4961862 0.5025087 0.2262531 +0.5025087 0.5025087 0.2262531 +0.5084753 0.5025087 0.2262531 +0.514124 0.5025087 0.2262531 +0.519487 0.5025087 0.2262531 +0.5245917 0.5025087 0.2262531 +0.529462 0.5025087 0.2262531 +0.5341183 0.5025087 0.2262531 +0.5385787 0.5025087 0.2262531 +0.5428591 0.5025087 0.2262531 +0.5469733 0.5025087 0.2262531 +0.5509339 0.5025087 0.2262531 +0.5547519 0.5025087 0.2262531 +0.5584371 0.5025087 0.2262531 +0.5619986 0.5025087 0.2262531 +0.5654443 0.5025087 0.2262531 +0.5687816 0.5025087 0.2262531 +0.092819 0.5084753 0.2262531 +0.2262531 0.5084753 0.2262531 +0.2875993 0.5084753 0.2262531 +0.3262122 0.5084753 0.2262531 +0.3544566 0.5084753 0.2262531 +0.3767383 0.5084753 0.2262531 +0.3951413 0.5084753 0.2262531 +0.4108177 0.5084753 0.2262531 +0.4244723 0.5084753 0.2262531 +0.4365675 0.5084753 0.2262531 +0.4474232 0.5084753 0.2262531 +0.45727 0.5084753 0.2262531 +0.4662797 0.5084753 0.2262531 +0.4745834 0.5084753 0.2262531 +0.4822838 0.5084753 0.2262531 +0.4894626 0.5084753 0.2262531 +0.4961862 0.5084753 0.2262531 +0.5025087 0.5084753 0.2262531 +0.5084753 0.5084753 0.2262531 +0.514124 0.5084753 0.2262531 +0.519487 0.5084753 0.2262531 +0.5245917 0.5084753 0.2262531 +0.529462 0.5084753 0.2262531 +0.5341183 0.5084753 0.2262531 +0.5385787 0.5084753 0.2262531 +0.5428591 0.5084753 0.2262531 +0.5469733 0.5084753 0.2262531 +0.5509339 0.5084753 0.2262531 +0.5547519 0.5084753 0.2262531 +0.5584371 0.5084753 0.2262531 +0.5619986 0.5084753 0.2262531 +0.5654443 0.5084753 0.2262531 +0.5687816 0.5084753 0.2262531 +0.092819 0.514124 0.2262531 +0.2262531 0.514124 0.2262531 +0.2875993 0.514124 0.2262531 +0.3262122 0.514124 0.2262531 +0.3544566 0.514124 0.2262531 +0.3767383 0.514124 0.2262531 +0.3951413 0.514124 0.2262531 +0.4108177 0.514124 0.2262531 +0.4244723 0.514124 0.2262531 +0.4365675 0.514124 0.2262531 +0.4474232 0.514124 0.2262531 +0.45727 0.514124 0.2262531 +0.4662797 0.514124 0.2262531 +0.4745834 0.514124 0.2262531 +0.4822838 0.514124 0.2262531 +0.4894626 0.514124 0.2262531 +0.4961862 0.514124 0.2262531 +0.5025087 0.514124 0.2262531 +0.5084753 0.514124 0.2262531 +0.514124 0.514124 0.2262531 +0.519487 0.514124 0.2262531 +0.5245917 0.514124 0.2262531 +0.529462 0.514124 0.2262531 +0.5341183 0.514124 0.2262531 +0.5385787 0.514124 0.2262531 +0.5428591 0.514124 0.2262531 +0.5469733 0.514124 0.2262531 +0.5509339 0.514124 0.2262531 +0.5547519 0.514124 0.2262531 +0.5584371 0.514124 0.2262531 +0.5619986 0.514124 0.2262531 +0.5654443 0.514124 0.2262531 +0.5687816 0.514124 0.2262531 +0.092819 0.519487 0.2262531 +0.2262531 0.519487 0.2262531 +0.2875993 0.519487 0.2262531 +0.3262122 0.519487 0.2262531 +0.3544566 0.519487 0.2262531 +0.3767383 0.519487 0.2262531 +0.3951413 0.519487 0.2262531 +0.4108177 0.519487 0.2262531 +0.4244723 0.519487 0.2262531 +0.4365675 0.519487 0.2262531 +0.4474232 0.519487 0.2262531 +0.45727 0.519487 0.2262531 +0.4662797 0.519487 0.2262531 +0.4745834 0.519487 0.2262531 +0.4822838 0.519487 0.2262531 +0.4894626 0.519487 0.2262531 +0.4961862 0.519487 0.2262531 +0.5025087 0.519487 0.2262531 +0.5084753 0.519487 0.2262531 +0.514124 0.519487 0.2262531 +0.519487 0.519487 0.2262531 +0.5245917 0.519487 0.2262531 +0.529462 0.519487 0.2262531 +0.5341183 0.519487 0.2262531 +0.5385787 0.519487 0.2262531 +0.5428591 0.519487 0.2262531 +0.5469733 0.519487 0.2262531 +0.5509339 0.519487 0.2262531 +0.5547519 0.519487 0.2262531 +0.5584371 0.519487 0.2262531 +0.5619986 0.519487 0.2262531 +0.5654443 0.519487 0.2262531 +0.5687816 0.519487 0.2262531 +0.092819 0.5245917 0.2262531 +0.2262531 0.5245917 0.2262531 +0.2875993 0.5245917 0.2262531 +0.3262122 0.5245917 0.2262531 +0.3544566 0.5245917 0.2262531 +0.3767383 0.5245917 0.2262531 +0.3951413 0.5245917 0.2262531 +0.4108177 0.5245917 0.2262531 +0.4244723 0.5245917 0.2262531 +0.4365675 0.5245917 0.2262531 +0.4474232 0.5245917 0.2262531 +0.45727 0.5245917 0.2262531 +0.4662797 0.5245917 0.2262531 +0.4745834 0.5245917 0.2262531 +0.4822838 0.5245917 0.2262531 +0.4894626 0.5245917 0.2262531 +0.4961862 0.5245917 0.2262531 +0.5025087 0.5245917 0.2262531 +0.5084753 0.5245917 0.2262531 +0.514124 0.5245917 0.2262531 +0.519487 0.5245917 0.2262531 +0.5245917 0.5245917 0.2262531 +0.529462 0.5245917 0.2262531 +0.5341183 0.5245917 0.2262531 +0.5385787 0.5245917 0.2262531 +0.5428591 0.5245917 0.2262531 +0.5469733 0.5245917 0.2262531 +0.5509339 0.5245917 0.2262531 +0.5547519 0.5245917 0.2262531 +0.5584371 0.5245917 0.2262531 +0.5619986 0.5245917 0.2262531 +0.5654443 0.5245917 0.2262531 +0.5687816 0.5245917 0.2262531 +0.092819 0.529462 0.2262531 +0.2262531 0.529462 0.2262531 +0.2875993 0.529462 0.2262531 +0.3262122 0.529462 0.2262531 +0.3544566 0.529462 0.2262531 +0.3767383 0.529462 0.2262531 +0.3951413 0.529462 0.2262531 +0.4108177 0.529462 0.2262531 +0.4244723 0.529462 0.2262531 +0.4365675 0.529462 0.2262531 +0.4474232 0.529462 0.2262531 +0.45727 0.529462 0.2262531 +0.4662797 0.529462 0.2262531 +0.4745834 0.529462 0.2262531 +0.4822838 0.529462 0.2262531 +0.4894626 0.529462 0.2262531 +0.4961862 0.529462 0.2262531 +0.5025087 0.529462 0.2262531 +0.5084753 0.529462 0.2262531 +0.514124 0.529462 0.2262531 +0.519487 0.529462 0.2262531 +0.5245917 0.529462 0.2262531 +0.529462 0.529462 0.2262531 +0.5341183 0.529462 0.2262531 +0.5385787 0.529462 0.2262531 +0.5428591 0.529462 0.2262531 +0.5469733 0.529462 0.2262531 +0.5509339 0.529462 0.2262531 +0.5547519 0.529462 0.2262531 +0.5584371 0.529462 0.2262531 +0.5619986 0.529462 0.2262531 +0.5654443 0.529462 0.2262531 +0.5687816 0.529462 0.2262531 +0.092819 0.5341183 0.2262531 +0.2262531 0.5341183 0.2262531 +0.2875993 0.5341183 0.2262531 +0.3262122 0.5341183 0.2262531 +0.3544566 0.5341183 0.2262531 +0.3767383 0.5341183 0.2262531 +0.3951413 0.5341183 0.2262531 +0.4108177 0.5341183 0.2262531 +0.4244723 0.5341183 0.2262531 +0.4365675 0.5341183 0.2262531 +0.4474232 0.5341183 0.2262531 +0.45727 0.5341183 0.2262531 +0.4662797 0.5341183 0.2262531 +0.4745834 0.5341183 0.2262531 +0.4822838 0.5341183 0.2262531 +0.4894626 0.5341183 0.2262531 +0.4961862 0.5341183 0.2262531 +0.5025087 0.5341183 0.2262531 +0.5084753 0.5341183 0.2262531 +0.514124 0.5341183 0.2262531 +0.519487 0.5341183 0.2262531 +0.5245917 0.5341183 0.2262531 +0.529462 0.5341183 0.2262531 +0.5341183 0.5341183 0.2262531 +0.5385787 0.5341183 0.2262531 +0.5428591 0.5341183 0.2262531 +0.5469733 0.5341183 0.2262531 +0.5509339 0.5341183 0.2262531 +0.5547519 0.5341183 0.2262531 +0.5584371 0.5341183 0.2262531 +0.5619986 0.5341183 0.2262531 +0.5654443 0.5341183 0.2262531 +0.5687816 0.5341183 0.2262531 +0.092819 0.5385787 0.2262531 +0.2262531 0.5385787 0.2262531 +0.2875993 0.5385787 0.2262531 +0.3262122 0.5385787 0.2262531 +0.3544566 0.5385787 0.2262531 +0.3767383 0.5385787 0.2262531 +0.3951413 0.5385787 0.2262531 +0.4108177 0.5385787 0.2262531 +0.4244723 0.5385787 0.2262531 +0.4365675 0.5385787 0.2262531 +0.4474232 0.5385787 0.2262531 +0.45727 0.5385787 0.2262531 +0.4662797 0.5385787 0.2262531 +0.4745834 0.5385787 0.2262531 +0.4822838 0.5385787 0.2262531 +0.4894626 0.5385787 0.2262531 +0.4961862 0.5385787 0.2262531 +0.5025087 0.5385787 0.2262531 +0.5084753 0.5385787 0.2262531 +0.514124 0.5385787 0.2262531 +0.519487 0.5385787 0.2262531 +0.5245917 0.5385787 0.2262531 +0.529462 0.5385787 0.2262531 +0.5341183 0.5385787 0.2262531 +0.5385787 0.5385787 0.2262531 +0.5428591 0.5385787 0.2262531 +0.5469733 0.5385787 0.2262531 +0.5509339 0.5385787 0.2262531 +0.5547519 0.5385787 0.2262531 +0.5584371 0.5385787 0.2262531 +0.5619986 0.5385787 0.2262531 +0.5654443 0.5385787 0.2262531 +0.5687816 0.5385787 0.2262531 +0.092819 0.5428591 0.2262531 +0.2262531 0.5428591 0.2262531 +0.2875993 0.5428591 0.2262531 +0.3262122 0.5428591 0.2262531 +0.3544566 0.5428591 0.2262531 +0.3767383 0.5428591 0.2262531 +0.3951413 0.5428591 0.2262531 +0.4108177 0.5428591 0.2262531 +0.4244723 0.5428591 0.2262531 +0.4365675 0.5428591 0.2262531 +0.4474232 0.5428591 0.2262531 +0.45727 0.5428591 0.2262531 +0.4662797 0.5428591 0.2262531 +0.4745834 0.5428591 0.2262531 +0.4822838 0.5428591 0.2262531 +0.4894626 0.5428591 0.2262531 +0.4961862 0.5428591 0.2262531 +0.5025087 0.5428591 0.2262531 +0.5084753 0.5428591 0.2262531 +0.514124 0.5428591 0.2262531 +0.519487 0.5428591 0.2262531 +0.5245917 0.5428591 0.2262531 +0.529462 0.5428591 0.2262531 +0.5341183 0.5428591 0.2262531 +0.5385787 0.5428591 0.2262531 +0.5428591 0.5428591 0.2262531 +0.5469733 0.5428591 0.2262531 +0.5509339 0.5428591 0.2262531 +0.5547519 0.5428591 0.2262531 +0.5584371 0.5428591 0.2262531 +0.5619986 0.5428591 0.2262531 +0.5654443 0.5428591 0.2262531 +0.5687816 0.5428591 0.2262531 +0.092819 0.5469733 0.2262531 +0.2262531 0.5469733 0.2262531 +0.2875993 0.5469733 0.2262531 +0.3262122 0.5469733 0.2262531 +0.3544566 0.5469733 0.2262531 +0.3767383 0.5469733 0.2262531 +0.3951413 0.5469733 0.2262531 +0.4108177 0.5469733 0.2262531 +0.4244723 0.5469733 0.2262531 +0.4365675 0.5469733 0.2262531 +0.4474232 0.5469733 0.2262531 +0.45727 0.5469733 0.2262531 +0.4662797 0.5469733 0.2262531 +0.4745834 0.5469733 0.2262531 +0.4822838 0.5469733 0.2262531 +0.4894626 0.5469733 0.2262531 +0.4961862 0.5469733 0.2262531 +0.5025087 0.5469733 0.2262531 +0.5084753 0.5469733 0.2262531 +0.514124 0.5469733 0.2262531 +0.519487 0.5469733 0.2262531 +0.5245917 0.5469733 0.2262531 +0.529462 0.5469733 0.2262531 +0.5341183 0.5469733 0.2262531 +0.5385787 0.5469733 0.2262531 +0.5428591 0.5469733 0.2262531 +0.5469733 0.5469733 0.2262531 +0.5509339 0.5469733 0.2262531 +0.5547519 0.5469733 0.2262531 +0.5584371 0.5469733 0.2262531 +0.5619986 0.5469733 0.2262531 +0.5654443 0.5469733 0.2262531 +0.5687816 0.5469733 0.2262531 +0.092819 0.5509339 0.2262531 +0.2262531 0.5509339 0.2262531 +0.2875993 0.5509339 0.2262531 +0.3262122 0.5509339 0.2262531 +0.3544566 0.5509339 0.2262531 +0.3767383 0.5509339 0.2262531 +0.3951413 0.5509339 0.2262531 +0.4108177 0.5509339 0.2262531 +0.4244723 0.5509339 0.2262531 +0.4365675 0.5509339 0.2262531 +0.4474232 0.5509339 0.2262531 +0.45727 0.5509339 0.2262531 +0.4662797 0.5509339 0.2262531 +0.4745834 0.5509339 0.2262531 +0.4822838 0.5509339 0.2262531 +0.4894626 0.5509339 0.2262531 +0.4961862 0.5509339 0.2262531 +0.5025087 0.5509339 0.2262531 +0.5084753 0.5509339 0.2262531 +0.514124 0.5509339 0.2262531 +0.519487 0.5509339 0.2262531 +0.5245917 0.5509339 0.2262531 +0.529462 0.5509339 0.2262531 +0.5341183 0.5509339 0.2262531 +0.5385787 0.5509339 0.2262531 +0.5428591 0.5509339 0.2262531 +0.5469733 0.5509339 0.2262531 +0.5509339 0.5509339 0.2262531 +0.5547519 0.5509339 0.2262531 +0.5584371 0.5509339 0.2262531 +0.5619986 0.5509339 0.2262531 +0.5654443 0.5509339 0.2262531 +0.5687816 0.5509339 0.2262531 +0.092819 0.5547519 0.2262531 +0.2262531 0.5547519 0.2262531 +0.2875993 0.5547519 0.2262531 +0.3262122 0.5547519 0.2262531 +0.3544566 0.5547519 0.2262531 +0.3767383 0.5547519 0.2262531 +0.3951413 0.5547519 0.2262531 +0.4108177 0.5547519 0.2262531 +0.4244723 0.5547519 0.2262531 +0.4365675 0.5547519 0.2262531 +0.4474232 0.5547519 0.2262531 +0.45727 0.5547519 0.2262531 +0.4662797 0.5547519 0.2262531 +0.4745834 0.5547519 0.2262531 +0.4822838 0.5547519 0.2262531 +0.4894626 0.5547519 0.2262531 +0.4961862 0.5547519 0.2262531 +0.5025087 0.5547519 0.2262531 +0.5084753 0.5547519 0.2262531 +0.514124 0.5547519 0.2262531 +0.519487 0.5547519 0.2262531 +0.5245917 0.5547519 0.2262531 +0.529462 0.5547519 0.2262531 +0.5341183 0.5547519 0.2262531 +0.5385787 0.5547519 0.2262531 +0.5428591 0.5547519 0.2262531 +0.5469733 0.5547519 0.2262531 +0.5509339 0.5547519 0.2262531 +0.5547519 0.5547519 0.2262531 +0.5584371 0.5547519 0.2262531 +0.5619986 0.5547519 0.2262531 +0.5654443 0.5547519 0.2262531 +0.5687816 0.5547519 0.2262531 +0.092819 0.5584371 0.2262531 +0.2262531 0.5584371 0.2262531 +0.2875993 0.5584371 0.2262531 +0.3262122 0.5584371 0.2262531 +0.3544566 0.5584371 0.2262531 +0.3767383 0.5584371 0.2262531 +0.3951413 0.5584371 0.2262531 +0.4108177 0.5584371 0.2262531 +0.4244723 0.5584371 0.2262531 +0.4365675 0.5584371 0.2262531 +0.4474232 0.5584371 0.2262531 +0.45727 0.5584371 0.2262531 +0.4662797 0.5584371 0.2262531 +0.4745834 0.5584371 0.2262531 +0.4822838 0.5584371 0.2262531 +0.4894626 0.5584371 0.2262531 +0.4961862 0.5584371 0.2262531 +0.5025087 0.5584371 0.2262531 +0.5084753 0.5584371 0.2262531 +0.514124 0.5584371 0.2262531 +0.519487 0.5584371 0.2262531 +0.5245917 0.5584371 0.2262531 +0.529462 0.5584371 0.2262531 +0.5341183 0.5584371 0.2262531 +0.5385787 0.5584371 0.2262531 +0.5428591 0.5584371 0.2262531 +0.5469733 0.5584371 0.2262531 +0.5509339 0.5584371 0.2262531 +0.5547519 0.5584371 0.2262531 +0.5584371 0.5584371 0.2262531 +0.5619986 0.5584371 0.2262531 +0.5654443 0.5584371 0.2262531 +0.5687816 0.5584371 0.2262531 +0.092819 0.5619986 0.2262531 +0.2262531 0.5619986 0.2262531 +0.2875993 0.5619986 0.2262531 +0.3262122 0.5619986 0.2262531 +0.3544566 0.5619986 0.2262531 +0.3767383 0.5619986 0.2262531 +0.3951413 0.5619986 0.2262531 +0.4108177 0.5619986 0.2262531 +0.4244723 0.5619986 0.2262531 +0.4365675 0.5619986 0.2262531 +0.4474232 0.5619986 0.2262531 +0.45727 0.5619986 0.2262531 +0.4662797 0.5619986 0.2262531 +0.4745834 0.5619986 0.2262531 +0.4822838 0.5619986 0.2262531 +0.4894626 0.5619986 0.2262531 +0.4961862 0.5619986 0.2262531 +0.5025087 0.5619986 0.2262531 +0.5084753 0.5619986 0.2262531 +0.514124 0.5619986 0.2262531 +0.519487 0.5619986 0.2262531 +0.5245917 0.5619986 0.2262531 +0.529462 0.5619986 0.2262531 +0.5341183 0.5619986 0.2262531 +0.5385787 0.5619986 0.2262531 +0.5428591 0.5619986 0.2262531 +0.5469733 0.5619986 0.2262531 +0.5509339 0.5619986 0.2262531 +0.5547519 0.5619986 0.2262531 +0.5584371 0.5619986 0.2262531 +0.5619986 0.5619986 0.2262531 +0.5654443 0.5619986 0.2262531 +0.5687816 0.5619986 0.2262531 +0.092819 0.5654443 0.2262531 +0.2262531 0.5654443 0.2262531 +0.2875993 0.5654443 0.2262531 +0.3262122 0.5654443 0.2262531 +0.3544566 0.5654443 0.2262531 +0.3767383 0.5654443 0.2262531 +0.3951413 0.5654443 0.2262531 +0.4108177 0.5654443 0.2262531 +0.4244723 0.5654443 0.2262531 +0.4365675 0.5654443 0.2262531 +0.4474232 0.5654443 0.2262531 +0.45727 0.5654443 0.2262531 +0.4662797 0.5654443 0.2262531 +0.4745834 0.5654443 0.2262531 +0.4822838 0.5654443 0.2262531 +0.4894626 0.5654443 0.2262531 +0.4961862 0.5654443 0.2262531 +0.5025087 0.5654443 0.2262531 +0.5084753 0.5654443 0.2262531 +0.514124 0.5654443 0.2262531 +0.519487 0.5654443 0.2262531 +0.5245917 0.5654443 0.2262531 +0.529462 0.5654443 0.2262531 +0.5341183 0.5654443 0.2262531 +0.5385787 0.5654443 0.2262531 +0.5428591 0.5654443 0.2262531 +0.5469733 0.5654443 0.2262531 +0.5509339 0.5654443 0.2262531 +0.5547519 0.5654443 0.2262531 +0.5584371 0.5654443 0.2262531 +0.5619986 0.5654443 0.2262531 +0.5654443 0.5654443 0.2262531 +0.5687816 0.5654443 0.2262531 +0.092819 0.5687816 0.2262531 +0.2262531 0.5687816 0.2262531 +0.2875993 0.5687816 0.2262531 +0.3262122 0.5687816 0.2262531 +0.3544566 0.5687816 0.2262531 +0.3767383 0.5687816 0.2262531 +0.3951413 0.5687816 0.2262531 +0.4108177 0.5687816 0.2262531 +0.4244723 0.5687816 0.2262531 +0.4365675 0.5687816 0.2262531 +0.4474232 0.5687816 0.2262531 +0.45727 0.5687816 0.2262531 +0.4662797 0.5687816 0.2262531 +0.4745834 0.5687816 0.2262531 +0.4822838 0.5687816 0.2262531 +0.4894626 0.5687816 0.2262531 +0.4961862 0.5687816 0.2262531 +0.5025087 0.5687816 0.2262531 +0.5084753 0.5687816 0.2262531 +0.514124 0.5687816 0.2262531 +0.519487 0.5687816 0.2262531 +0.5245917 0.5687816 0.2262531 +0.529462 0.5687816 0.2262531 +0.5341183 0.5687816 0.2262531 +0.5385787 0.5687816 0.2262531 +0.5428591 0.5687816 0.2262531 +0.5469733 0.5687816 0.2262531 +0.5509339 0.5687816 0.2262531 +0.5547519 0.5687816 0.2262531 +0.5584371 0.5687816 0.2262531 +0.5619986 0.5687816 0.2262531 +0.5654443 0.5687816 0.2262531 +0.5687816 0.5687816 0.2262531 +0.092819 0.092819 0.2875993 +0.2262531 0.092819 0.2875993 +0.2875993 0.092819 0.2875993 +0.3262122 0.092819 0.2875993 +0.3544566 0.092819 0.2875993 +0.3767383 0.092819 0.2875993 +0.3951413 0.092819 0.2875993 +0.4108177 0.092819 0.2875993 +0.4244723 0.092819 0.2875993 +0.4365675 0.092819 0.2875993 +0.4474232 0.092819 0.2875993 +0.45727 0.092819 0.2875993 +0.4662797 0.092819 0.2875993 +0.4745834 0.092819 0.2875993 +0.4822838 0.092819 0.2875993 +0.4894626 0.092819 0.2875993 +0.4961862 0.092819 0.2875993 +0.5025087 0.092819 0.2875993 +0.5084753 0.092819 0.2875993 +0.514124 0.092819 0.2875993 +0.519487 0.092819 0.2875993 +0.5245917 0.092819 0.2875993 +0.529462 0.092819 0.2875993 +0.5341183 0.092819 0.2875993 +0.5385787 0.092819 0.2875993 +0.5428591 0.092819 0.2875993 +0.5469733 0.092819 0.2875993 +0.5509339 0.092819 0.2875993 +0.5547519 0.092819 0.2875993 +0.5584371 0.092819 0.2875993 +0.5619986 0.092819 0.2875993 +0.5654443 0.092819 0.2875993 +0.5687816 0.092819 0.2875993 +0.092819 0.2262531 0.2875993 +0.2262531 0.2262531 0.2875993 +0.2875993 0.2262531 0.2875993 +0.3262122 0.2262531 0.2875993 +0.3544566 0.2262531 0.2875993 +0.3767383 0.2262531 0.2875993 +0.3951413 0.2262531 0.2875993 +0.4108177 0.2262531 0.2875993 +0.4244723 0.2262531 0.2875993 +0.4365675 0.2262531 0.2875993 +0.4474232 0.2262531 0.2875993 +0.45727 0.2262531 0.2875993 +0.4662797 0.2262531 0.2875993 +0.4745834 0.2262531 0.2875993 +0.4822838 0.2262531 0.2875993 +0.4894626 0.2262531 0.2875993 +0.4961862 0.2262531 0.2875993 +0.5025087 0.2262531 0.2875993 +0.5084753 0.2262531 0.2875993 +0.514124 0.2262531 0.2875993 +0.519487 0.2262531 0.2875993 +0.5245917 0.2262531 0.2875993 +0.529462 0.2262531 0.2875993 +0.5341183 0.2262531 0.2875993 +0.5385787 0.2262531 0.2875993 +0.5428591 0.2262531 0.2875993 +0.5469733 0.2262531 0.2875993 +0.5509339 0.2262531 0.2875993 +0.5547519 0.2262531 0.2875993 +0.5584371 0.2262531 0.2875993 +0.5619986 0.2262531 0.2875993 +0.5654443 0.2262531 0.2875993 +0.5687816 0.2262531 0.2875993 +0.092819 0.2875993 0.2875993 +0.2262531 0.2875993 0.2875993 +0.2875993 0.2875993 0.2875993 +0.3262122 0.2875993 0.2875993 +0.3544566 0.2875993 0.2875993 +0.3767383 0.2875993 0.2875993 +0.3951413 0.2875993 0.2875993 +0.4108177 0.2875993 0.2875993 +0.4244723 0.2875993 0.2875993 +0.4365675 0.2875993 0.2875993 +0.4474232 0.2875993 0.2875993 +0.45727 0.2875993 0.2875993 +0.4662797 0.2875993 0.2875993 +0.4745834 0.2875993 0.2875993 +0.4822838 0.2875993 0.2875993 +0.4894626 0.2875993 0.2875993 +0.4961862 0.2875993 0.2875993 +0.5025087 0.2875993 0.2875993 +0.5084753 0.2875993 0.2875993 +0.514124 0.2875993 0.2875993 +0.519487 0.2875993 0.2875993 +0.5245917 0.2875993 0.2875993 +0.529462 0.2875993 0.2875993 +0.5341183 0.2875993 0.2875993 +0.5385787 0.2875993 0.2875993 +0.5428591 0.2875993 0.2875993 +0.5469733 0.2875993 0.2875993 +0.5509339 0.2875993 0.2875993 +0.5547519 0.2875993 0.2875993 +0.5584371 0.2875993 0.2875993 +0.5619986 0.2875993 0.2875993 +0.5654443 0.2875993 0.2875993 +0.5687816 0.2875993 0.2875993 +0.092819 0.3262122 0.2875993 +0.2262531 0.3262122 0.2875993 +0.2875993 0.3262122 0.2875993 +0.3262122 0.3262122 0.2875993 +0.3544566 0.3262122 0.2875993 +0.3767383 0.3262122 0.2875993 +0.3951413 0.3262122 0.2875993 +0.4108177 0.3262122 0.2875993 +0.4244723 0.3262122 0.2875993 +0.4365675 0.3262122 0.2875993 +0.4474232 0.3262122 0.2875993 +0.45727 0.3262122 0.2875993 +0.4662797 0.3262122 0.2875993 +0.4745834 0.3262122 0.2875993 +0.4822838 0.3262122 0.2875993 +0.4894626 0.3262122 0.2875993 +0.4961862 0.3262122 0.2875993 +0.5025087 0.3262122 0.2875993 +0.5084753 0.3262122 0.2875993 +0.514124 0.3262122 0.2875993 +0.519487 0.3262122 0.2875993 +0.5245917 0.3262122 0.2875993 +0.529462 0.3262122 0.2875993 +0.5341183 0.3262122 0.2875993 +0.5385787 0.3262122 0.2875993 +0.5428591 0.3262122 0.2875993 +0.5469733 0.3262122 0.2875993 +0.5509339 0.3262122 0.2875993 +0.5547519 0.3262122 0.2875993 +0.5584371 0.3262122 0.2875993 +0.5619986 0.3262122 0.2875993 +0.5654443 0.3262122 0.2875993 +0.5687816 0.3262122 0.2875993 +0.092819 0.3544566 0.2875993 +0.2262531 0.3544566 0.2875993 +0.2875993 0.3544566 0.2875993 +0.3262122 0.3544566 0.2875993 +0.3544566 0.3544566 0.2875993 +0.3767383 0.3544566 0.2875993 +0.3951413 0.3544566 0.2875993 +0.4108177 0.3544566 0.2875993 +0.4244723 0.3544566 0.2875993 +0.4365675 0.3544566 0.2875993 +0.4474232 0.3544566 0.2875993 +0.45727 0.3544566 0.2875993 +0.4662797 0.3544566 0.2875993 +0.4745834 0.3544566 0.2875993 +0.4822838 0.3544566 0.2875993 +0.4894626 0.3544566 0.2875993 +0.4961862 0.3544566 0.2875993 +0.5025087 0.3544566 0.2875993 +0.5084753 0.3544566 0.2875993 +0.514124 0.3544566 0.2875993 +0.519487 0.3544566 0.2875993 +0.5245917 0.3544566 0.2875993 +0.529462 0.3544566 0.2875993 +0.5341183 0.3544566 0.2875993 +0.5385787 0.3544566 0.2875993 +0.5428591 0.3544566 0.2875993 +0.5469733 0.3544566 0.2875993 +0.5509339 0.3544566 0.2875993 +0.5547519 0.3544566 0.2875993 +0.5584371 0.3544566 0.2875993 +0.5619986 0.3544566 0.2875993 +0.5654443 0.3544566 0.2875993 +0.5687816 0.3544566 0.2875993 +0.092819 0.3767383 0.2875993 +0.2262531 0.3767383 0.2875993 +0.2875993 0.3767383 0.2875993 +0.3262122 0.3767383 0.2875993 +0.3544566 0.3767383 0.2875993 +0.3767383 0.3767383 0.2875993 +0.3951413 0.3767383 0.2875993 +0.4108177 0.3767383 0.2875993 +0.4244723 0.3767383 0.2875993 +0.4365675 0.3767383 0.2875993 +0.4474232 0.3767383 0.2875993 +0.45727 0.3767383 0.2875993 +0.4662797 0.3767383 0.2875993 +0.4745834 0.3767383 0.2875993 +0.4822838 0.3767383 0.2875993 +0.4894626 0.3767383 0.2875993 +0.4961862 0.3767383 0.2875993 +0.5025087 0.3767383 0.2875993 +0.5084753 0.3767383 0.2875993 +0.514124 0.3767383 0.2875993 +0.519487 0.3767383 0.2875993 +0.5245917 0.3767383 0.2875993 +0.529462 0.3767383 0.2875993 +0.5341183 0.3767383 0.2875993 +0.5385787 0.3767383 0.2875993 +0.5428591 0.3767383 0.2875993 +0.5469733 0.3767383 0.2875993 +0.5509339 0.3767383 0.2875993 +0.5547519 0.3767383 0.2875993 +0.5584371 0.3767383 0.2875993 +0.5619986 0.3767383 0.2875993 +0.5654443 0.3767383 0.2875993 +0.5687816 0.3767383 0.2875993 +0.092819 0.3951413 0.2875993 +0.2262531 0.3951413 0.2875993 +0.2875993 0.3951413 0.2875993 +0.3262122 0.3951413 0.2875993 +0.3544566 0.3951413 0.2875993 +0.3767383 0.3951413 0.2875993 +0.3951413 0.3951413 0.2875993 +0.4108177 0.3951413 0.2875993 +0.4244723 0.3951413 0.2875993 +0.4365675 0.3951413 0.2875993 +0.4474232 0.3951413 0.2875993 +0.45727 0.3951413 0.2875993 +0.4662797 0.3951413 0.2875993 +0.4745834 0.3951413 0.2875993 +0.4822838 0.3951413 0.2875993 +0.4894626 0.3951413 0.2875993 +0.4961862 0.3951413 0.2875993 +0.5025087 0.3951413 0.2875993 +0.5084753 0.3951413 0.2875993 +0.514124 0.3951413 0.2875993 +0.519487 0.3951413 0.2875993 +0.5245917 0.3951413 0.2875993 +0.529462 0.3951413 0.2875993 +0.5341183 0.3951413 0.2875993 +0.5385787 0.3951413 0.2875993 +0.5428591 0.3951413 0.2875993 +0.5469733 0.3951413 0.2875993 +0.5509339 0.3951413 0.2875993 +0.5547519 0.3951413 0.2875993 +0.5584371 0.3951413 0.2875993 +0.5619986 0.3951413 0.2875993 +0.5654443 0.3951413 0.2875993 +0.5687816 0.3951413 0.2875993 +0.092819 0.4108177 0.2875993 +0.2262531 0.4108177 0.2875993 +0.2875993 0.4108177 0.2875993 +0.3262122 0.4108177 0.2875993 +0.3544566 0.4108177 0.2875993 +0.3767383 0.4108177 0.2875993 +0.3951413 0.4108177 0.2875993 +0.4108177 0.4108177 0.2875993 +0.4244723 0.4108177 0.2875993 +0.4365675 0.4108177 0.2875993 +0.4474232 0.4108177 0.2875993 +0.45727 0.4108177 0.2875993 +0.4662797 0.4108177 0.2875993 +0.4745834 0.4108177 0.2875993 +0.4822838 0.4108177 0.2875993 +0.4894626 0.4108177 0.2875993 +0.4961862 0.4108177 0.2875993 +0.5025087 0.4108177 0.2875993 +0.5084753 0.4108177 0.2875993 +0.514124 0.4108177 0.2875993 +0.519487 0.4108177 0.2875993 +0.5245917 0.4108177 0.2875993 +0.529462 0.4108177 0.2875993 +0.5341183 0.4108177 0.2875993 +0.5385787 0.4108177 0.2875993 +0.5428591 0.4108177 0.2875993 +0.5469733 0.4108177 0.2875993 +0.5509339 0.4108177 0.2875993 +0.5547519 0.4108177 0.2875993 +0.5584371 0.4108177 0.2875993 +0.5619986 0.4108177 0.2875993 +0.5654443 0.4108177 0.2875993 +0.5687816 0.4108177 0.2875993 +0.092819 0.4244723 0.2875993 +0.2262531 0.4244723 0.2875993 +0.2875993 0.4244723 0.2875993 +0.3262122 0.4244723 0.2875993 +0.3544566 0.4244723 0.2875993 +0.3767383 0.4244723 0.2875993 +0.3951413 0.4244723 0.2875993 +0.4108177 0.4244723 0.2875993 +0.4244723 0.4244723 0.2875993 +0.4365675 0.4244723 0.2875993 +0.4474232 0.4244723 0.2875993 +0.45727 0.4244723 0.2875993 +0.4662797 0.4244723 0.2875993 +0.4745834 0.4244723 0.2875993 +0.4822838 0.4244723 0.2875993 +0.4894626 0.4244723 0.2875993 +0.4961862 0.4244723 0.2875993 +0.5025087 0.4244723 0.2875993 +0.5084753 0.4244723 0.2875993 +0.514124 0.4244723 0.2875993 +0.519487 0.4244723 0.2875993 +0.5245917 0.4244723 0.2875993 +0.529462 0.4244723 0.2875993 +0.5341183 0.4244723 0.2875993 +0.5385787 0.4244723 0.2875993 +0.5428591 0.4244723 0.2875993 +0.5469733 0.4244723 0.2875993 +0.5509339 0.4244723 0.2875993 +0.5547519 0.4244723 0.2875993 +0.5584371 0.4244723 0.2875993 +0.5619986 0.4244723 0.2875993 +0.5654443 0.4244723 0.2875993 +0.5687816 0.4244723 0.2875993 +0.092819 0.4365675 0.2875993 +0.2262531 0.4365675 0.2875993 +0.2875993 0.4365675 0.2875993 +0.3262122 0.4365675 0.2875993 +0.3544566 0.4365675 0.2875993 +0.3767383 0.4365675 0.2875993 +0.3951413 0.4365675 0.2875993 +0.4108177 0.4365675 0.2875993 +0.4244723 0.4365675 0.2875993 +0.4365675 0.4365675 0.2875993 +0.4474232 0.4365675 0.2875993 +0.45727 0.4365675 0.2875993 +0.4662797 0.4365675 0.2875993 +0.4745834 0.4365675 0.2875993 +0.4822838 0.4365675 0.2875993 +0.4894626 0.4365675 0.2875993 +0.4961862 0.4365675 0.2875993 +0.5025087 0.4365675 0.2875993 +0.5084753 0.4365675 0.2875993 +0.514124 0.4365675 0.2875993 +0.519487 0.4365675 0.2875993 +0.5245917 0.4365675 0.2875993 +0.529462 0.4365675 0.2875993 +0.5341183 0.4365675 0.2875993 +0.5385787 0.4365675 0.2875993 +0.5428591 0.4365675 0.2875993 +0.5469733 0.4365675 0.2875993 +0.5509339 0.4365675 0.2875993 +0.5547519 0.4365675 0.2875993 +0.5584371 0.4365675 0.2875993 +0.5619986 0.4365675 0.2875993 +0.5654443 0.4365675 0.2875993 +0.5687816 0.4365675 0.2875993 +0.092819 0.4474232 0.2875993 +0.2262531 0.4474232 0.2875993 +0.2875993 0.4474232 0.2875993 +0.3262122 0.4474232 0.2875993 +0.3544566 0.4474232 0.2875993 +0.3767383 0.4474232 0.2875993 +0.3951413 0.4474232 0.2875993 +0.4108177 0.4474232 0.2875993 +0.4244723 0.4474232 0.2875993 +0.4365675 0.4474232 0.2875993 +0.4474232 0.4474232 0.2875993 +0.45727 0.4474232 0.2875993 +0.4662797 0.4474232 0.2875993 +0.4745834 0.4474232 0.2875993 +0.4822838 0.4474232 0.2875993 +0.4894626 0.4474232 0.2875993 +0.4961862 0.4474232 0.2875993 +0.5025087 0.4474232 0.2875993 +0.5084753 0.4474232 0.2875993 +0.514124 0.4474232 0.2875993 +0.519487 0.4474232 0.2875993 +0.5245917 0.4474232 0.2875993 +0.529462 0.4474232 0.2875993 +0.5341183 0.4474232 0.2875993 +0.5385787 0.4474232 0.2875993 +0.5428591 0.4474232 0.2875993 +0.5469733 0.4474232 0.2875993 +0.5509339 0.4474232 0.2875993 +0.5547519 0.4474232 0.2875993 +0.5584371 0.4474232 0.2875993 +0.5619986 0.4474232 0.2875993 +0.5654443 0.4474232 0.2875993 +0.5687816 0.4474232 0.2875993 +0.092819 0.45727 0.2875993 +0.2262531 0.45727 0.2875993 +0.2875993 0.45727 0.2875993 +0.3262122 0.45727 0.2875993 +0.3544566 0.45727 0.2875993 +0.3767383 0.45727 0.2875993 +0.3951413 0.45727 0.2875993 +0.4108177 0.45727 0.2875993 +0.4244723 0.45727 0.2875993 +0.4365675 0.45727 0.2875993 +0.4474232 0.45727 0.2875993 +0.45727 0.45727 0.2875993 +0.4662797 0.45727 0.2875993 +0.4745834 0.45727 0.2875993 +0.4822838 0.45727 0.2875993 +0.4894626 0.45727 0.2875993 +0.4961862 0.45727 0.2875993 +0.5025087 0.45727 0.2875993 +0.5084753 0.45727 0.2875993 +0.514124 0.45727 0.2875993 +0.519487 0.45727 0.2875993 +0.5245917 0.45727 0.2875993 +0.529462 0.45727 0.2875993 +0.5341183 0.45727 0.2875993 +0.5385787 0.45727 0.2875993 +0.5428591 0.45727 0.2875993 +0.5469733 0.45727 0.2875993 +0.5509339 0.45727 0.2875993 +0.5547519 0.45727 0.2875993 +0.5584371 0.45727 0.2875993 +0.5619986 0.45727 0.2875993 +0.5654443 0.45727 0.2875993 +0.5687816 0.45727 0.2875993 +0.092819 0.4662797 0.2875993 +0.2262531 0.4662797 0.2875993 +0.2875993 0.4662797 0.2875993 +0.3262122 0.4662797 0.2875993 +0.3544566 0.4662797 0.2875993 +0.3767383 0.4662797 0.2875993 +0.3951413 0.4662797 0.2875993 +0.4108177 0.4662797 0.2875993 +0.4244723 0.4662797 0.2875993 +0.4365675 0.4662797 0.2875993 +0.4474232 0.4662797 0.2875993 +0.45727 0.4662797 0.2875993 +0.4662797 0.4662797 0.2875993 +0.4745834 0.4662797 0.2875993 +0.4822838 0.4662797 0.2875993 +0.4894626 0.4662797 0.2875993 +0.4961862 0.4662797 0.2875993 +0.5025087 0.4662797 0.2875993 +0.5084753 0.4662797 0.2875993 +0.514124 0.4662797 0.2875993 +0.519487 0.4662797 0.2875993 +0.5245917 0.4662797 0.2875993 +0.529462 0.4662797 0.2875993 +0.5341183 0.4662797 0.2875993 +0.5385787 0.4662797 0.2875993 +0.5428591 0.4662797 0.2875993 +0.5469733 0.4662797 0.2875993 +0.5509339 0.4662797 0.2875993 +0.5547519 0.4662797 0.2875993 +0.5584371 0.4662797 0.2875993 +0.5619986 0.4662797 0.2875993 +0.5654443 0.4662797 0.2875993 +0.5687816 0.4662797 0.2875993 +0.092819 0.4745834 0.2875993 +0.2262531 0.4745834 0.2875993 +0.2875993 0.4745834 0.2875993 +0.3262122 0.4745834 0.2875993 +0.3544566 0.4745834 0.2875993 +0.3767383 0.4745834 0.2875993 +0.3951413 0.4745834 0.2875993 +0.4108177 0.4745834 0.2875993 +0.4244723 0.4745834 0.2875993 +0.4365675 0.4745834 0.2875993 +0.4474232 0.4745834 0.2875993 +0.45727 0.4745834 0.2875993 +0.4662797 0.4745834 0.2875993 +0.4745834 0.4745834 0.2875993 +0.4822838 0.4745834 0.2875993 +0.4894626 0.4745834 0.2875993 +0.4961862 0.4745834 0.2875993 +0.5025087 0.4745834 0.2875993 +0.5084753 0.4745834 0.2875993 +0.514124 0.4745834 0.2875993 +0.519487 0.4745834 0.2875993 +0.5245917 0.4745834 0.2875993 +0.529462 0.4745834 0.2875993 +0.5341183 0.4745834 0.2875993 +0.5385787 0.4745834 0.2875993 +0.5428591 0.4745834 0.2875993 +0.5469733 0.4745834 0.2875993 +0.5509339 0.4745834 0.2875993 +0.5547519 0.4745834 0.2875993 +0.5584371 0.4745834 0.2875993 +0.5619986 0.4745834 0.2875993 +0.5654443 0.4745834 0.2875993 +0.5687816 0.4745834 0.2875993 +0.092819 0.4822838 0.2875993 +0.2262531 0.4822838 0.2875993 +0.2875993 0.4822838 0.2875993 +0.3262122 0.4822838 0.2875993 +0.3544566 0.4822838 0.2875993 +0.3767383 0.4822838 0.2875993 +0.3951413 0.4822838 0.2875993 +0.4108177 0.4822838 0.2875993 +0.4244723 0.4822838 0.2875993 +0.4365675 0.4822838 0.2875993 +0.4474232 0.4822838 0.2875993 +0.45727 0.4822838 0.2875993 +0.4662797 0.4822838 0.2875993 +0.4745834 0.4822838 0.2875993 +0.4822838 0.4822838 0.2875993 +0.4894626 0.4822838 0.2875993 +0.4961862 0.4822838 0.2875993 +0.5025087 0.4822838 0.2875993 +0.5084753 0.4822838 0.2875993 +0.514124 0.4822838 0.2875993 +0.519487 0.4822838 0.2875993 +0.5245917 0.4822838 0.2875993 +0.529462 0.4822838 0.2875993 +0.5341183 0.4822838 0.2875993 +0.5385787 0.4822838 0.2875993 +0.5428591 0.4822838 0.2875993 +0.5469733 0.4822838 0.2875993 +0.5509339 0.4822838 0.2875993 +0.5547519 0.4822838 0.2875993 +0.5584371 0.4822838 0.2875993 +0.5619986 0.4822838 0.2875993 +0.5654443 0.4822838 0.2875993 +0.5687816 0.4822838 0.2875993 +0.092819 0.4894626 0.2875993 +0.2262531 0.4894626 0.2875993 +0.2875993 0.4894626 0.2875993 +0.3262122 0.4894626 0.2875993 +0.3544566 0.4894626 0.2875993 +0.3767383 0.4894626 0.2875993 +0.3951413 0.4894626 0.2875993 +0.4108177 0.4894626 0.2875993 +0.4244723 0.4894626 0.2875993 +0.4365675 0.4894626 0.2875993 +0.4474232 0.4894626 0.2875993 +0.45727 0.4894626 0.2875993 +0.4662797 0.4894626 0.2875993 +0.4745834 0.4894626 0.2875993 +0.4822838 0.4894626 0.2875993 +0.4894626 0.4894626 0.2875993 +0.4961862 0.4894626 0.2875993 +0.5025087 0.4894626 0.2875993 +0.5084753 0.4894626 0.2875993 +0.514124 0.4894626 0.2875993 +0.519487 0.4894626 0.2875993 +0.5245917 0.4894626 0.2875993 +0.529462 0.4894626 0.2875993 +0.5341183 0.4894626 0.2875993 +0.5385787 0.4894626 0.2875993 +0.5428591 0.4894626 0.2875993 +0.5469733 0.4894626 0.2875993 +0.5509339 0.4894626 0.2875993 +0.5547519 0.4894626 0.2875993 +0.5584371 0.4894626 0.2875993 +0.5619986 0.4894626 0.2875993 +0.5654443 0.4894626 0.2875993 +0.5687816 0.4894626 0.2875993 +0.092819 0.4961862 0.2875993 +0.2262531 0.4961862 0.2875993 +0.2875993 0.4961862 0.2875993 +0.3262122 0.4961862 0.2875993 +0.3544566 0.4961862 0.2875993 +0.3767383 0.4961862 0.2875993 +0.3951413 0.4961862 0.2875993 +0.4108177 0.4961862 0.2875993 +0.4244723 0.4961862 0.2875993 +0.4365675 0.4961862 0.2875993 +0.4474232 0.4961862 0.2875993 +0.45727 0.4961862 0.2875993 +0.4662797 0.4961862 0.2875993 +0.4745834 0.4961862 0.2875993 +0.4822838 0.4961862 0.2875993 +0.4894626 0.4961862 0.2875993 +0.4961862 0.4961862 0.2875993 +0.5025087 0.4961862 0.2875993 +0.5084753 0.4961862 0.2875993 +0.514124 0.4961862 0.2875993 +0.519487 0.4961862 0.2875993 +0.5245917 0.4961862 0.2875993 +0.529462 0.4961862 0.2875993 +0.5341183 0.4961862 0.2875993 +0.5385787 0.4961862 0.2875993 +0.5428591 0.4961862 0.2875993 +0.5469733 0.4961862 0.2875993 +0.5509339 0.4961862 0.2875993 +0.5547519 0.4961862 0.2875993 +0.5584371 0.4961862 0.2875993 +0.5619986 0.4961862 0.2875993 +0.5654443 0.4961862 0.2875993 +0.5687816 0.4961862 0.2875993 +0.092819 0.5025087 0.2875993 +0.2262531 0.5025087 0.2875993 +0.2875993 0.5025087 0.2875993 +0.3262122 0.5025087 0.2875993 +0.3544566 0.5025087 0.2875993 +0.3767383 0.5025087 0.2875993 +0.3951413 0.5025087 0.2875993 +0.4108177 0.5025087 0.2875993 +0.4244723 0.5025087 0.2875993 +0.4365675 0.5025087 0.2875993 +0.4474232 0.5025087 0.2875993 +0.45727 0.5025087 0.2875993 +0.4662797 0.5025087 0.2875993 +0.4745834 0.5025087 0.2875993 +0.4822838 0.5025087 0.2875993 +0.4894626 0.5025087 0.2875993 +0.4961862 0.5025087 0.2875993 +0.5025087 0.5025087 0.2875993 +0.5084753 0.5025087 0.2875993 +0.514124 0.5025087 0.2875993 +0.519487 0.5025087 0.2875993 +0.5245917 0.5025087 0.2875993 +0.529462 0.5025087 0.2875993 +0.5341183 0.5025087 0.2875993 +0.5385787 0.5025087 0.2875993 +0.5428591 0.5025087 0.2875993 +0.5469733 0.5025087 0.2875993 +0.5509339 0.5025087 0.2875993 +0.5547519 0.5025087 0.2875993 +0.5584371 0.5025087 0.2875993 +0.5619986 0.5025087 0.2875993 +0.5654443 0.5025087 0.2875993 +0.5687816 0.5025087 0.2875993 +0.092819 0.5084753 0.2875993 +0.2262531 0.5084753 0.2875993 +0.2875993 0.5084753 0.2875993 +0.3262122 0.5084753 0.2875993 +0.3544566 0.5084753 0.2875993 +0.3767383 0.5084753 0.2875993 +0.3951413 0.5084753 0.2875993 +0.4108177 0.5084753 0.2875993 +0.4244723 0.5084753 0.2875993 +0.4365675 0.5084753 0.2875993 +0.4474232 0.5084753 0.2875993 +0.45727 0.5084753 0.2875993 +0.4662797 0.5084753 0.2875993 +0.4745834 0.5084753 0.2875993 +0.4822838 0.5084753 0.2875993 +0.4894626 0.5084753 0.2875993 +0.4961862 0.5084753 0.2875993 +0.5025087 0.5084753 0.2875993 +0.5084753 0.5084753 0.2875993 +0.514124 0.5084753 0.2875993 +0.519487 0.5084753 0.2875993 +0.5245917 0.5084753 0.2875993 +0.529462 0.5084753 0.2875993 +0.5341183 0.5084753 0.2875993 +0.5385787 0.5084753 0.2875993 +0.5428591 0.5084753 0.2875993 +0.5469733 0.5084753 0.2875993 +0.5509339 0.5084753 0.2875993 +0.5547519 0.5084753 0.2875993 +0.5584371 0.5084753 0.2875993 +0.5619986 0.5084753 0.2875993 +0.5654443 0.5084753 0.2875993 +0.5687816 0.5084753 0.2875993 +0.092819 0.514124 0.2875993 +0.2262531 0.514124 0.2875993 +0.2875993 0.514124 0.2875993 +0.3262122 0.514124 0.2875993 +0.3544566 0.514124 0.2875993 +0.3767383 0.514124 0.2875993 +0.3951413 0.514124 0.2875993 +0.4108177 0.514124 0.2875993 +0.4244723 0.514124 0.2875993 +0.4365675 0.514124 0.2875993 +0.4474232 0.514124 0.2875993 +0.45727 0.514124 0.2875993 +0.4662797 0.514124 0.2875993 +0.4745834 0.514124 0.2875993 +0.4822838 0.514124 0.2875993 +0.4894626 0.514124 0.2875993 +0.4961862 0.514124 0.2875993 +0.5025087 0.514124 0.2875993 +0.5084753 0.514124 0.2875993 +0.514124 0.514124 0.2875993 +0.519487 0.514124 0.2875993 +0.5245917 0.514124 0.2875993 +0.529462 0.514124 0.2875993 +0.5341183 0.514124 0.2875993 +0.5385787 0.514124 0.2875993 +0.5428591 0.514124 0.2875993 +0.5469733 0.514124 0.2875993 +0.5509339 0.514124 0.2875993 +0.5547519 0.514124 0.2875993 +0.5584371 0.514124 0.2875993 +0.5619986 0.514124 0.2875993 +0.5654443 0.514124 0.2875993 +0.5687816 0.514124 0.2875993 +0.092819 0.519487 0.2875993 +0.2262531 0.519487 0.2875993 +0.2875993 0.519487 0.2875993 +0.3262122 0.519487 0.2875993 +0.3544566 0.519487 0.2875993 +0.3767383 0.519487 0.2875993 +0.3951413 0.519487 0.2875993 +0.4108177 0.519487 0.2875993 +0.4244723 0.519487 0.2875993 +0.4365675 0.519487 0.2875993 +0.4474232 0.519487 0.2875993 +0.45727 0.519487 0.2875993 +0.4662797 0.519487 0.2875993 +0.4745834 0.519487 0.2875993 +0.4822838 0.519487 0.2875993 +0.4894626 0.519487 0.2875993 +0.4961862 0.519487 0.2875993 +0.5025087 0.519487 0.2875993 +0.5084753 0.519487 0.2875993 +0.514124 0.519487 0.2875993 +0.519487 0.519487 0.2875993 +0.5245917 0.519487 0.2875993 +0.529462 0.519487 0.2875993 +0.5341183 0.519487 0.2875993 +0.5385787 0.519487 0.2875993 +0.5428591 0.519487 0.2875993 +0.5469733 0.519487 0.2875993 +0.5509339 0.519487 0.2875993 +0.5547519 0.519487 0.2875993 +0.5584371 0.519487 0.2875993 +0.5619986 0.519487 0.2875993 +0.5654443 0.519487 0.2875993 +0.5687816 0.519487 0.2875993 +0.092819 0.5245917 0.2875993 +0.2262531 0.5245917 0.2875993 +0.2875993 0.5245917 0.2875993 +0.3262122 0.5245917 0.2875993 +0.3544566 0.5245917 0.2875993 +0.3767383 0.5245917 0.2875993 +0.3951413 0.5245917 0.2875993 +0.4108177 0.5245917 0.2875993 +0.4244723 0.5245917 0.2875993 +0.4365675 0.5245917 0.2875993 +0.4474232 0.5245917 0.2875993 +0.45727 0.5245917 0.2875993 +0.4662797 0.5245917 0.2875993 +0.4745834 0.5245917 0.2875993 +0.4822838 0.5245917 0.2875993 +0.4894626 0.5245917 0.2875993 +0.4961862 0.5245917 0.2875993 +0.5025087 0.5245917 0.2875993 +0.5084753 0.5245917 0.2875993 +0.514124 0.5245917 0.2875993 +0.519487 0.5245917 0.2875993 +0.5245917 0.5245917 0.2875993 +0.529462 0.5245917 0.2875993 +0.5341183 0.5245917 0.2875993 +0.5385787 0.5245917 0.2875993 +0.5428591 0.5245917 0.2875993 +0.5469733 0.5245917 0.2875993 +0.5509339 0.5245917 0.2875993 +0.5547519 0.5245917 0.2875993 +0.5584371 0.5245917 0.2875993 +0.5619986 0.5245917 0.2875993 +0.5654443 0.5245917 0.2875993 +0.5687816 0.5245917 0.2875993 +0.092819 0.529462 0.2875993 +0.2262531 0.529462 0.2875993 +0.2875993 0.529462 0.2875993 +0.3262122 0.529462 0.2875993 +0.3544566 0.529462 0.2875993 +0.3767383 0.529462 0.2875993 +0.3951413 0.529462 0.2875993 +0.4108177 0.529462 0.2875993 +0.4244723 0.529462 0.2875993 +0.4365675 0.529462 0.2875993 +0.4474232 0.529462 0.2875993 +0.45727 0.529462 0.2875993 +0.4662797 0.529462 0.2875993 +0.4745834 0.529462 0.2875993 +0.4822838 0.529462 0.2875993 +0.4894626 0.529462 0.2875993 +0.4961862 0.529462 0.2875993 +0.5025087 0.529462 0.2875993 +0.5084753 0.529462 0.2875993 +0.514124 0.529462 0.2875993 +0.519487 0.529462 0.2875993 +0.5245917 0.529462 0.2875993 +0.529462 0.529462 0.2875993 +0.5341183 0.529462 0.2875993 +0.5385787 0.529462 0.2875993 +0.5428591 0.529462 0.2875993 +0.5469733 0.529462 0.2875993 +0.5509339 0.529462 0.2875993 +0.5547519 0.529462 0.2875993 +0.5584371 0.529462 0.2875993 +0.5619986 0.529462 0.2875993 +0.5654443 0.529462 0.2875993 +0.5687816 0.529462 0.2875993 +0.092819 0.5341183 0.2875993 +0.2262531 0.5341183 0.2875993 +0.2875993 0.5341183 0.2875993 +0.3262122 0.5341183 0.2875993 +0.3544566 0.5341183 0.2875993 +0.3767383 0.5341183 0.2875993 +0.3951413 0.5341183 0.2875993 +0.4108177 0.5341183 0.2875993 +0.4244723 0.5341183 0.2875993 +0.4365675 0.5341183 0.2875993 +0.4474232 0.5341183 0.2875993 +0.45727 0.5341183 0.2875993 +0.4662797 0.5341183 0.2875993 +0.4745834 0.5341183 0.2875993 +0.4822838 0.5341183 0.2875993 +0.4894626 0.5341183 0.2875993 +0.4961862 0.5341183 0.2875993 +0.5025087 0.5341183 0.2875993 +0.5084753 0.5341183 0.2875993 +0.514124 0.5341183 0.2875993 +0.519487 0.5341183 0.2875993 +0.5245917 0.5341183 0.2875993 +0.529462 0.5341183 0.2875993 +0.5341183 0.5341183 0.2875993 +0.5385787 0.5341183 0.2875993 +0.5428591 0.5341183 0.2875993 +0.5469733 0.5341183 0.2875993 +0.5509339 0.5341183 0.2875993 +0.5547519 0.5341183 0.2875993 +0.5584371 0.5341183 0.2875993 +0.5619986 0.5341183 0.2875993 +0.5654443 0.5341183 0.2875993 +0.5687816 0.5341183 0.2875993 +0.092819 0.5385787 0.2875993 +0.2262531 0.5385787 0.2875993 +0.2875993 0.5385787 0.2875993 +0.3262122 0.5385787 0.2875993 +0.3544566 0.5385787 0.2875993 +0.3767383 0.5385787 0.2875993 +0.3951413 0.5385787 0.2875993 +0.4108177 0.5385787 0.2875993 +0.4244723 0.5385787 0.2875993 +0.4365675 0.5385787 0.2875993 +0.4474232 0.5385787 0.2875993 +0.45727 0.5385787 0.2875993 +0.4662797 0.5385787 0.2875993 +0.4745834 0.5385787 0.2875993 +0.4822838 0.5385787 0.2875993 +0.4894626 0.5385787 0.2875993 +0.4961862 0.5385787 0.2875993 +0.5025087 0.5385787 0.2875993 +0.5084753 0.5385787 0.2875993 +0.514124 0.5385787 0.2875993 +0.519487 0.5385787 0.2875993 +0.5245917 0.5385787 0.2875993 +0.529462 0.5385787 0.2875993 +0.5341183 0.5385787 0.2875993 +0.5385787 0.5385787 0.2875993 +0.5428591 0.5385787 0.2875993 +0.5469733 0.5385787 0.2875993 +0.5509339 0.5385787 0.2875993 +0.5547519 0.5385787 0.2875993 +0.5584371 0.5385787 0.2875993 +0.5619986 0.5385787 0.2875993 +0.5654443 0.5385787 0.2875993 +0.5687816 0.5385787 0.2875993 +0.092819 0.5428591 0.2875993 +0.2262531 0.5428591 0.2875993 +0.2875993 0.5428591 0.2875993 +0.3262122 0.5428591 0.2875993 +0.3544566 0.5428591 0.2875993 +0.3767383 0.5428591 0.2875993 +0.3951413 0.5428591 0.2875993 +0.4108177 0.5428591 0.2875993 +0.4244723 0.5428591 0.2875993 +0.4365675 0.5428591 0.2875993 +0.4474232 0.5428591 0.2875993 +0.45727 0.5428591 0.2875993 +0.4662797 0.5428591 0.2875993 +0.4745834 0.5428591 0.2875993 +0.4822838 0.5428591 0.2875993 +0.4894626 0.5428591 0.2875993 +0.4961862 0.5428591 0.2875993 +0.5025087 0.5428591 0.2875993 +0.5084753 0.5428591 0.2875993 +0.514124 0.5428591 0.2875993 +0.519487 0.5428591 0.2875993 +0.5245917 0.5428591 0.2875993 +0.529462 0.5428591 0.2875993 +0.5341183 0.5428591 0.2875993 +0.5385787 0.5428591 0.2875993 +0.5428591 0.5428591 0.2875993 +0.5469733 0.5428591 0.2875993 +0.5509339 0.5428591 0.2875993 +0.5547519 0.5428591 0.2875993 +0.5584371 0.5428591 0.2875993 +0.5619986 0.5428591 0.2875993 +0.5654443 0.5428591 0.2875993 +0.5687816 0.5428591 0.2875993 +0.092819 0.5469733 0.2875993 +0.2262531 0.5469733 0.2875993 +0.2875993 0.5469733 0.2875993 +0.3262122 0.5469733 0.2875993 +0.3544566 0.5469733 0.2875993 +0.3767383 0.5469733 0.2875993 +0.3951413 0.5469733 0.2875993 +0.4108177 0.5469733 0.2875993 +0.4244723 0.5469733 0.2875993 +0.4365675 0.5469733 0.2875993 +0.4474232 0.5469733 0.2875993 +0.45727 0.5469733 0.2875993 +0.4662797 0.5469733 0.2875993 +0.4745834 0.5469733 0.2875993 +0.4822838 0.5469733 0.2875993 +0.4894626 0.5469733 0.2875993 +0.4961862 0.5469733 0.2875993 +0.5025087 0.5469733 0.2875993 +0.5084753 0.5469733 0.2875993 +0.514124 0.5469733 0.2875993 +0.519487 0.5469733 0.2875993 +0.5245917 0.5469733 0.2875993 +0.529462 0.5469733 0.2875993 +0.5341183 0.5469733 0.2875993 +0.5385787 0.5469733 0.2875993 +0.5428591 0.5469733 0.2875993 +0.5469733 0.5469733 0.2875993 +0.5509339 0.5469733 0.2875993 +0.5547519 0.5469733 0.2875993 +0.5584371 0.5469733 0.2875993 +0.5619986 0.5469733 0.2875993 +0.5654443 0.5469733 0.2875993 +0.5687816 0.5469733 0.2875993 +0.092819 0.5509339 0.2875993 +0.2262531 0.5509339 0.2875993 +0.2875993 0.5509339 0.2875993 +0.3262122 0.5509339 0.2875993 +0.3544566 0.5509339 0.2875993 +0.3767383 0.5509339 0.2875993 +0.3951413 0.5509339 0.2875993 +0.4108177 0.5509339 0.2875993 +0.4244723 0.5509339 0.2875993 +0.4365675 0.5509339 0.2875993 +0.4474232 0.5509339 0.2875993 +0.45727 0.5509339 0.2875993 +0.4662797 0.5509339 0.2875993 +0.4745834 0.5509339 0.2875993 +0.4822838 0.5509339 0.2875993 +0.4894626 0.5509339 0.2875993 +0.4961862 0.5509339 0.2875993 +0.5025087 0.5509339 0.2875993 +0.5084753 0.5509339 0.2875993 +0.514124 0.5509339 0.2875993 +0.519487 0.5509339 0.2875993 +0.5245917 0.5509339 0.2875993 +0.529462 0.5509339 0.2875993 +0.5341183 0.5509339 0.2875993 +0.5385787 0.5509339 0.2875993 +0.5428591 0.5509339 0.2875993 +0.5469733 0.5509339 0.2875993 +0.5509339 0.5509339 0.2875993 +0.5547519 0.5509339 0.2875993 +0.5584371 0.5509339 0.2875993 +0.5619986 0.5509339 0.2875993 +0.5654443 0.5509339 0.2875993 +0.5687816 0.5509339 0.2875993 +0.092819 0.5547519 0.2875993 +0.2262531 0.5547519 0.2875993 +0.2875993 0.5547519 0.2875993 +0.3262122 0.5547519 0.2875993 +0.3544566 0.5547519 0.2875993 +0.3767383 0.5547519 0.2875993 +0.3951413 0.5547519 0.2875993 +0.4108177 0.5547519 0.2875993 +0.4244723 0.5547519 0.2875993 +0.4365675 0.5547519 0.2875993 +0.4474232 0.5547519 0.2875993 +0.45727 0.5547519 0.2875993 +0.4662797 0.5547519 0.2875993 +0.4745834 0.5547519 0.2875993 +0.4822838 0.5547519 0.2875993 +0.4894626 0.5547519 0.2875993 +0.4961862 0.5547519 0.2875993 +0.5025087 0.5547519 0.2875993 +0.5084753 0.5547519 0.2875993 +0.514124 0.5547519 0.2875993 +0.519487 0.5547519 0.2875993 +0.5245917 0.5547519 0.2875993 +0.529462 0.5547519 0.2875993 +0.5341183 0.5547519 0.2875993 +0.5385787 0.5547519 0.2875993 +0.5428591 0.5547519 0.2875993 +0.5469733 0.5547519 0.2875993 +0.5509339 0.5547519 0.2875993 +0.5547519 0.5547519 0.2875993 +0.5584371 0.5547519 0.2875993 +0.5619986 0.5547519 0.2875993 +0.5654443 0.5547519 0.2875993 +0.5687816 0.5547519 0.2875993 +0.092819 0.5584371 0.2875993 +0.2262531 0.5584371 0.2875993 +0.2875993 0.5584371 0.2875993 +0.3262122 0.5584371 0.2875993 +0.3544566 0.5584371 0.2875993 +0.3767383 0.5584371 0.2875993 +0.3951413 0.5584371 0.2875993 +0.4108177 0.5584371 0.2875993 +0.4244723 0.5584371 0.2875993 +0.4365675 0.5584371 0.2875993 +0.4474232 0.5584371 0.2875993 +0.45727 0.5584371 0.2875993 +0.4662797 0.5584371 0.2875993 +0.4745834 0.5584371 0.2875993 +0.4822838 0.5584371 0.2875993 +0.4894626 0.5584371 0.2875993 +0.4961862 0.5584371 0.2875993 +0.5025087 0.5584371 0.2875993 +0.5084753 0.5584371 0.2875993 +0.514124 0.5584371 0.2875993 +0.519487 0.5584371 0.2875993 +0.5245917 0.5584371 0.2875993 +0.529462 0.5584371 0.2875993 +0.5341183 0.5584371 0.2875993 +0.5385787 0.5584371 0.2875993 +0.5428591 0.5584371 0.2875993 +0.5469733 0.5584371 0.2875993 +0.5509339 0.5584371 0.2875993 +0.5547519 0.5584371 0.2875993 +0.5584371 0.5584371 0.2875993 +0.5619986 0.5584371 0.2875993 +0.5654443 0.5584371 0.2875993 +0.5687816 0.5584371 0.2875993 +0.092819 0.5619986 0.2875993 +0.2262531 0.5619986 0.2875993 +0.2875993 0.5619986 0.2875993 +0.3262122 0.5619986 0.2875993 +0.3544566 0.5619986 0.2875993 +0.3767383 0.5619986 0.2875993 +0.3951413 0.5619986 0.2875993 +0.4108177 0.5619986 0.2875993 +0.4244723 0.5619986 0.2875993 +0.4365675 0.5619986 0.2875993 +0.4474232 0.5619986 0.2875993 +0.45727 0.5619986 0.2875993 +0.4662797 0.5619986 0.2875993 +0.4745834 0.5619986 0.2875993 +0.4822838 0.5619986 0.2875993 +0.4894626 0.5619986 0.2875993 +0.4961862 0.5619986 0.2875993 +0.5025087 0.5619986 0.2875993 +0.5084753 0.5619986 0.2875993 +0.514124 0.5619986 0.2875993 +0.519487 0.5619986 0.2875993 +0.5245917 0.5619986 0.2875993 +0.529462 0.5619986 0.2875993 +0.5341183 0.5619986 0.2875993 +0.5385787 0.5619986 0.2875993 +0.5428591 0.5619986 0.2875993 +0.5469733 0.5619986 0.2875993 +0.5509339 0.5619986 0.2875993 +0.5547519 0.5619986 0.2875993 +0.5584371 0.5619986 0.2875993 +0.5619986 0.5619986 0.2875993 +0.5654443 0.5619986 0.2875993 +0.5687816 0.5619986 0.2875993 +0.092819 0.5654443 0.2875993 +0.2262531 0.5654443 0.2875993 +0.2875993 0.5654443 0.2875993 +0.3262122 0.5654443 0.2875993 +0.3544566 0.5654443 0.2875993 +0.3767383 0.5654443 0.2875993 +0.3951413 0.5654443 0.2875993 +0.4108177 0.5654443 0.2875993 +0.4244723 0.5654443 0.2875993 +0.4365675 0.5654443 0.2875993 +0.4474232 0.5654443 0.2875993 +0.45727 0.5654443 0.2875993 +0.4662797 0.5654443 0.2875993 +0.4745834 0.5654443 0.2875993 +0.4822838 0.5654443 0.2875993 +0.4894626 0.5654443 0.2875993 +0.4961862 0.5654443 0.2875993 +0.5025087 0.5654443 0.2875993 +0.5084753 0.5654443 0.2875993 +0.514124 0.5654443 0.2875993 +0.519487 0.5654443 0.2875993 +0.5245917 0.5654443 0.2875993 +0.529462 0.5654443 0.2875993 +0.5341183 0.5654443 0.2875993 +0.5385787 0.5654443 0.2875993 +0.5428591 0.5654443 0.2875993 +0.5469733 0.5654443 0.2875993 +0.5509339 0.5654443 0.2875993 +0.5547519 0.5654443 0.2875993 +0.5584371 0.5654443 0.2875993 +0.5619986 0.5654443 0.2875993 +0.5654443 0.5654443 0.2875993 +0.5687816 0.5654443 0.2875993 +0.092819 0.5687816 0.2875993 +0.2262531 0.5687816 0.2875993 +0.2875993 0.5687816 0.2875993 +0.3262122 0.5687816 0.2875993 +0.3544566 0.5687816 0.2875993 +0.3767383 0.5687816 0.2875993 +0.3951413 0.5687816 0.2875993 +0.4108177 0.5687816 0.2875993 +0.4244723 0.5687816 0.2875993 +0.4365675 0.5687816 0.2875993 +0.4474232 0.5687816 0.2875993 +0.45727 0.5687816 0.2875993 +0.4662797 0.5687816 0.2875993 +0.4745834 0.5687816 0.2875993 +0.4822838 0.5687816 0.2875993 +0.4894626 0.5687816 0.2875993 +0.4961862 0.5687816 0.2875993 +0.5025087 0.5687816 0.2875993 +0.5084753 0.5687816 0.2875993 +0.514124 0.5687816 0.2875993 +0.519487 0.5687816 0.2875993 +0.5245917 0.5687816 0.2875993 +0.529462 0.5687816 0.2875993 +0.5341183 0.5687816 0.2875993 +0.5385787 0.5687816 0.2875993 +0.5428591 0.5687816 0.2875993 +0.5469733 0.5687816 0.2875993 +0.5509339 0.5687816 0.2875993 +0.5547519 0.5687816 0.2875993 +0.5584371 0.5687816 0.2875993 +0.5619986 0.5687816 0.2875993 +0.5654443 0.5687816 0.2875993 +0.5687816 0.5687816 0.2875993 +0.092819 0.092819 0.3262122 +0.2262531 0.092819 0.3262122 +0.2875993 0.092819 0.3262122 +0.3262122 0.092819 0.3262122 +0.3544566 0.092819 0.3262122 +0.3767383 0.092819 0.3262122 +0.3951413 0.092819 0.3262122 +0.4108177 0.092819 0.3262122 +0.4244723 0.092819 0.3262122 +0.4365675 0.092819 0.3262122 +0.4474232 0.092819 0.3262122 +0.45727 0.092819 0.3262122 +0.4662797 0.092819 0.3262122 +0.4745834 0.092819 0.3262122 +0.4822838 0.092819 0.3262122 +0.4894626 0.092819 0.3262122 +0.4961862 0.092819 0.3262122 +0.5025087 0.092819 0.3262122 +0.5084753 0.092819 0.3262122 +0.514124 0.092819 0.3262122 +0.519487 0.092819 0.3262122 +0.5245917 0.092819 0.3262122 +0.529462 0.092819 0.3262122 +0.5341183 0.092819 0.3262122 +0.5385787 0.092819 0.3262122 +0.5428591 0.092819 0.3262122 +0.5469733 0.092819 0.3262122 +0.5509339 0.092819 0.3262122 +0.5547519 0.092819 0.3262122 +0.5584371 0.092819 0.3262122 +0.5619986 0.092819 0.3262122 +0.5654443 0.092819 0.3262122 +0.5687816 0.092819 0.3262122 +0.092819 0.2262531 0.3262122 +0.2262531 0.2262531 0.3262122 +0.2875993 0.2262531 0.3262122 +0.3262122 0.2262531 0.3262122 +0.3544566 0.2262531 0.3262122 +0.3767383 0.2262531 0.3262122 +0.3951413 0.2262531 0.3262122 +0.4108177 0.2262531 0.3262122 +0.4244723 0.2262531 0.3262122 +0.4365675 0.2262531 0.3262122 +0.4474232 0.2262531 0.3262122 +0.45727 0.2262531 0.3262122 +0.4662797 0.2262531 0.3262122 +0.4745834 0.2262531 0.3262122 +0.4822838 0.2262531 0.3262122 +0.4894626 0.2262531 0.3262122 +0.4961862 0.2262531 0.3262122 +0.5025087 0.2262531 0.3262122 +0.5084753 0.2262531 0.3262122 +0.514124 0.2262531 0.3262122 +0.519487 0.2262531 0.3262122 +0.5245917 0.2262531 0.3262122 +0.529462 0.2262531 0.3262122 +0.5341183 0.2262531 0.3262122 +0.5385787 0.2262531 0.3262122 +0.5428591 0.2262531 0.3262122 +0.5469733 0.2262531 0.3262122 +0.5509339 0.2262531 0.3262122 +0.5547519 0.2262531 0.3262122 +0.5584371 0.2262531 0.3262122 +0.5619986 0.2262531 0.3262122 +0.5654443 0.2262531 0.3262122 +0.5687816 0.2262531 0.3262122 +0.092819 0.2875993 0.3262122 +0.2262531 0.2875993 0.3262122 +0.2875993 0.2875993 0.3262122 +0.3262122 0.2875993 0.3262122 +0.3544566 0.2875993 0.3262122 +0.3767383 0.2875993 0.3262122 +0.3951413 0.2875993 0.3262122 +0.4108177 0.2875993 0.3262122 +0.4244723 0.2875993 0.3262122 +0.4365675 0.2875993 0.3262122 +0.4474232 0.2875993 0.3262122 +0.45727 0.2875993 0.3262122 +0.4662797 0.2875993 0.3262122 +0.4745834 0.2875993 0.3262122 +0.4822838 0.2875993 0.3262122 +0.4894626 0.2875993 0.3262122 +0.4961862 0.2875993 0.3262122 +0.5025087 0.2875993 0.3262122 +0.5084753 0.2875993 0.3262122 +0.514124 0.2875993 0.3262122 +0.519487 0.2875993 0.3262122 +0.5245917 0.2875993 0.3262122 +0.529462 0.2875993 0.3262122 +0.5341183 0.2875993 0.3262122 +0.5385787 0.2875993 0.3262122 +0.5428591 0.2875993 0.3262122 +0.5469733 0.2875993 0.3262122 +0.5509339 0.2875993 0.3262122 +0.5547519 0.2875993 0.3262122 +0.5584371 0.2875993 0.3262122 +0.5619986 0.2875993 0.3262122 +0.5654443 0.2875993 0.3262122 +0.5687816 0.2875993 0.3262122 +0.092819 0.3262122 0.3262122 +0.2262531 0.3262122 0.3262122 +0.2875993 0.3262122 0.3262122 +0.3262122 0.3262122 0.3262122 +0.3544566 0.3262122 0.3262122 +0.3767383 0.3262122 0.3262122 +0.3951413 0.3262122 0.3262122 +0.4108177 0.3262122 0.3262122 +0.4244723 0.3262122 0.3262122 +0.4365675 0.3262122 0.3262122 +0.4474232 0.3262122 0.3262122 +0.45727 0.3262122 0.3262122 +0.4662797 0.3262122 0.3262122 +0.4745834 0.3262122 0.3262122 +0.4822838 0.3262122 0.3262122 +0.4894626 0.3262122 0.3262122 +0.4961862 0.3262122 0.3262122 +0.5025087 0.3262122 0.3262122 +0.5084753 0.3262122 0.3262122 +0.514124 0.3262122 0.3262122 +0.519487 0.3262122 0.3262122 +0.5245917 0.3262122 0.3262122 +0.529462 0.3262122 0.3262122 +0.5341183 0.3262122 0.3262122 +0.5385787 0.3262122 0.3262122 +0.5428591 0.3262122 0.3262122 +0.5469733 0.3262122 0.3262122 +0.5509339 0.3262122 0.3262122 +0.5547519 0.3262122 0.3262122 +0.5584371 0.3262122 0.3262122 +0.5619986 0.3262122 0.3262122 +0.5654443 0.3262122 0.3262122 +0.5687816 0.3262122 0.3262122 +0.092819 0.3544566 0.3262122 +0.2262531 0.3544566 0.3262122 +0.2875993 0.3544566 0.3262122 +0.3262122 0.3544566 0.3262122 +0.3544566 0.3544566 0.3262122 +0.3767383 0.3544566 0.3262122 +0.3951413 0.3544566 0.3262122 +0.4108177 0.3544566 0.3262122 +0.4244723 0.3544566 0.3262122 +0.4365675 0.3544566 0.3262122 +0.4474232 0.3544566 0.3262122 +0.45727 0.3544566 0.3262122 +0.4662797 0.3544566 0.3262122 +0.4745834 0.3544566 0.3262122 +0.4822838 0.3544566 0.3262122 +0.4894626 0.3544566 0.3262122 +0.4961862 0.3544566 0.3262122 +0.5025087 0.3544566 0.3262122 +0.5084753 0.3544566 0.3262122 +0.514124 0.3544566 0.3262122 +0.519487 0.3544566 0.3262122 +0.5245917 0.3544566 0.3262122 +0.529462 0.3544566 0.3262122 +0.5341183 0.3544566 0.3262122 +0.5385787 0.3544566 0.3262122 +0.5428591 0.3544566 0.3262122 +0.5469733 0.3544566 0.3262122 +0.5509339 0.3544566 0.3262122 +0.5547519 0.3544566 0.3262122 +0.5584371 0.3544566 0.3262122 +0.5619986 0.3544566 0.3262122 +0.5654443 0.3544566 0.3262122 +0.5687816 0.3544566 0.3262122 +0.092819 0.3767383 0.3262122 +0.2262531 0.3767383 0.3262122 +0.2875993 0.3767383 0.3262122 +0.3262122 0.3767383 0.3262122 +0.3544566 0.3767383 0.3262122 +0.3767383 0.3767383 0.3262122 +0.3951413 0.3767383 0.3262122 +0.4108177 0.3767383 0.3262122 +0.4244723 0.3767383 0.3262122 +0.4365675 0.3767383 0.3262122 +0.4474232 0.3767383 0.3262122 +0.45727 0.3767383 0.3262122 +0.4662797 0.3767383 0.3262122 +0.4745834 0.3767383 0.3262122 +0.4822838 0.3767383 0.3262122 +0.4894626 0.3767383 0.3262122 +0.4961862 0.3767383 0.3262122 +0.5025087 0.3767383 0.3262122 +0.5084753 0.3767383 0.3262122 +0.514124 0.3767383 0.3262122 +0.519487 0.3767383 0.3262122 +0.5245917 0.3767383 0.3262122 +0.529462 0.3767383 0.3262122 +0.5341183 0.3767383 0.3262122 +0.5385787 0.3767383 0.3262122 +0.5428591 0.3767383 0.3262122 +0.5469733 0.3767383 0.3262122 +0.5509339 0.3767383 0.3262122 +0.5547519 0.3767383 0.3262122 +0.5584371 0.3767383 0.3262122 +0.5619986 0.3767383 0.3262122 +0.5654443 0.3767383 0.3262122 +0.5687816 0.3767383 0.3262122 +0.092819 0.3951413 0.3262122 +0.2262531 0.3951413 0.3262122 +0.2875993 0.3951413 0.3262122 +0.3262122 0.3951413 0.3262122 +0.3544566 0.3951413 0.3262122 +0.3767383 0.3951413 0.3262122 +0.3951413 0.3951413 0.3262122 +0.4108177 0.3951413 0.3262122 +0.4244723 0.3951413 0.3262122 +0.4365675 0.3951413 0.3262122 +0.4474232 0.3951413 0.3262122 +0.45727 0.3951413 0.3262122 +0.4662797 0.3951413 0.3262122 +0.4745834 0.3951413 0.3262122 +0.4822838 0.3951413 0.3262122 +0.4894626 0.3951413 0.3262122 +0.4961862 0.3951413 0.3262122 +0.5025087 0.3951413 0.3262122 +0.5084753 0.3951413 0.3262122 +0.514124 0.3951413 0.3262122 +0.519487 0.3951413 0.3262122 +0.5245917 0.3951413 0.3262122 +0.529462 0.3951413 0.3262122 +0.5341183 0.3951413 0.3262122 +0.5385787 0.3951413 0.3262122 +0.5428591 0.3951413 0.3262122 +0.5469733 0.3951413 0.3262122 +0.5509339 0.3951413 0.3262122 +0.5547519 0.3951413 0.3262122 +0.5584371 0.3951413 0.3262122 +0.5619986 0.3951413 0.3262122 +0.5654443 0.3951413 0.3262122 +0.5687816 0.3951413 0.3262122 +0.092819 0.4108177 0.3262122 +0.2262531 0.4108177 0.3262122 +0.2875993 0.4108177 0.3262122 +0.3262122 0.4108177 0.3262122 +0.3544566 0.4108177 0.3262122 +0.3767383 0.4108177 0.3262122 +0.3951413 0.4108177 0.3262122 +0.4108177 0.4108177 0.3262122 +0.4244723 0.4108177 0.3262122 +0.4365675 0.4108177 0.3262122 +0.4474232 0.4108177 0.3262122 +0.45727 0.4108177 0.3262122 +0.4662797 0.4108177 0.3262122 +0.4745834 0.4108177 0.3262122 +0.4822838 0.4108177 0.3262122 +0.4894626 0.4108177 0.3262122 +0.4961862 0.4108177 0.3262122 +0.5025087 0.4108177 0.3262122 +0.5084753 0.4108177 0.3262122 +0.514124 0.4108177 0.3262122 +0.519487 0.4108177 0.3262122 +0.5245917 0.4108177 0.3262122 +0.529462 0.4108177 0.3262122 +0.5341183 0.4108177 0.3262122 +0.5385787 0.4108177 0.3262122 +0.5428591 0.4108177 0.3262122 +0.5469733 0.4108177 0.3262122 +0.5509339 0.4108177 0.3262122 +0.5547519 0.4108177 0.3262122 +0.5584371 0.4108177 0.3262122 +0.5619986 0.4108177 0.3262122 +0.5654443 0.4108177 0.3262122 +0.5687816 0.4108177 0.3262122 +0.092819 0.4244723 0.3262122 +0.2262531 0.4244723 0.3262122 +0.2875993 0.4244723 0.3262122 +0.3262122 0.4244723 0.3262122 +0.3544566 0.4244723 0.3262122 +0.3767383 0.4244723 0.3262122 +0.3951413 0.4244723 0.3262122 +0.4108177 0.4244723 0.3262122 +0.4244723 0.4244723 0.3262122 +0.4365675 0.4244723 0.3262122 +0.4474232 0.4244723 0.3262122 +0.45727 0.4244723 0.3262122 +0.4662797 0.4244723 0.3262122 +0.4745834 0.4244723 0.3262122 +0.4822838 0.4244723 0.3262122 +0.4894626 0.4244723 0.3262122 +0.4961862 0.4244723 0.3262122 +0.5025087 0.4244723 0.3262122 +0.5084753 0.4244723 0.3262122 +0.514124 0.4244723 0.3262122 +0.519487 0.4244723 0.3262122 +0.5245917 0.4244723 0.3262122 +0.529462 0.4244723 0.3262122 +0.5341183 0.4244723 0.3262122 +0.5385787 0.4244723 0.3262122 +0.5428591 0.4244723 0.3262122 +0.5469733 0.4244723 0.3262122 +0.5509339 0.4244723 0.3262122 +0.5547519 0.4244723 0.3262122 +0.5584371 0.4244723 0.3262122 +0.5619986 0.4244723 0.3262122 +0.5654443 0.4244723 0.3262122 +0.5687816 0.4244723 0.3262122 +0.092819 0.4365675 0.3262122 +0.2262531 0.4365675 0.3262122 +0.2875993 0.4365675 0.3262122 +0.3262122 0.4365675 0.3262122 +0.3544566 0.4365675 0.3262122 +0.3767383 0.4365675 0.3262122 +0.3951413 0.4365675 0.3262122 +0.4108177 0.4365675 0.3262122 +0.4244723 0.4365675 0.3262122 +0.4365675 0.4365675 0.3262122 +0.4474232 0.4365675 0.3262122 +0.45727 0.4365675 0.3262122 +0.4662797 0.4365675 0.3262122 +0.4745834 0.4365675 0.3262122 +0.4822838 0.4365675 0.3262122 +0.4894626 0.4365675 0.3262122 +0.4961862 0.4365675 0.3262122 +0.5025087 0.4365675 0.3262122 +0.5084753 0.4365675 0.3262122 +0.514124 0.4365675 0.3262122 +0.519487 0.4365675 0.3262122 +0.5245917 0.4365675 0.3262122 +0.529462 0.4365675 0.3262122 +0.5341183 0.4365675 0.3262122 +0.5385787 0.4365675 0.3262122 +0.5428591 0.4365675 0.3262122 +0.5469733 0.4365675 0.3262122 +0.5509339 0.4365675 0.3262122 +0.5547519 0.4365675 0.3262122 +0.5584371 0.4365675 0.3262122 +0.5619986 0.4365675 0.3262122 +0.5654443 0.4365675 0.3262122 +0.5687816 0.4365675 0.3262122 +0.092819 0.4474232 0.3262122 +0.2262531 0.4474232 0.3262122 +0.2875993 0.4474232 0.3262122 +0.3262122 0.4474232 0.3262122 +0.3544566 0.4474232 0.3262122 +0.3767383 0.4474232 0.3262122 +0.3951413 0.4474232 0.3262122 +0.4108177 0.4474232 0.3262122 +0.4244723 0.4474232 0.3262122 +0.4365675 0.4474232 0.3262122 +0.4474232 0.4474232 0.3262122 +0.45727 0.4474232 0.3262122 +0.4662797 0.4474232 0.3262122 +0.4745834 0.4474232 0.3262122 +0.4822838 0.4474232 0.3262122 +0.4894626 0.4474232 0.3262122 +0.4961862 0.4474232 0.3262122 +0.5025087 0.4474232 0.3262122 +0.5084753 0.4474232 0.3262122 +0.514124 0.4474232 0.3262122 +0.519487 0.4474232 0.3262122 +0.5245917 0.4474232 0.3262122 +0.529462 0.4474232 0.3262122 +0.5341183 0.4474232 0.3262122 +0.5385787 0.4474232 0.3262122 +0.5428591 0.4474232 0.3262122 +0.5469733 0.4474232 0.3262122 +0.5509339 0.4474232 0.3262122 +0.5547519 0.4474232 0.3262122 +0.5584371 0.4474232 0.3262122 +0.5619986 0.4474232 0.3262122 +0.5654443 0.4474232 0.3262122 +0.5687816 0.4474232 0.3262122 +0.092819 0.45727 0.3262122 +0.2262531 0.45727 0.3262122 +0.2875993 0.45727 0.3262122 +0.3262122 0.45727 0.3262122 +0.3544566 0.45727 0.3262122 +0.3767383 0.45727 0.3262122 +0.3951413 0.45727 0.3262122 +0.4108177 0.45727 0.3262122 +0.4244723 0.45727 0.3262122 +0.4365675 0.45727 0.3262122 +0.4474232 0.45727 0.3262122 +0.45727 0.45727 0.3262122 +0.4662797 0.45727 0.3262122 +0.4745834 0.45727 0.3262122 +0.4822838 0.45727 0.3262122 +0.4894626 0.45727 0.3262122 +0.4961862 0.45727 0.3262122 +0.5025087 0.45727 0.3262122 +0.5084753 0.45727 0.3262122 +0.514124 0.45727 0.3262122 +0.519487 0.45727 0.3262122 +0.5245917 0.45727 0.3262122 +0.529462 0.45727 0.3262122 +0.5341183 0.45727 0.3262122 +0.5385787 0.45727 0.3262122 +0.5428591 0.45727 0.3262122 +0.5469733 0.45727 0.3262122 +0.5509339 0.45727 0.3262122 +0.5547519 0.45727 0.3262122 +0.5584371 0.45727 0.3262122 +0.5619986 0.45727 0.3262122 +0.5654443 0.45727 0.3262122 +0.5687816 0.45727 0.3262122 +0.092819 0.4662797 0.3262122 +0.2262531 0.4662797 0.3262122 +0.2875993 0.4662797 0.3262122 +0.3262122 0.4662797 0.3262122 +0.3544566 0.4662797 0.3262122 +0.3767383 0.4662797 0.3262122 +0.3951413 0.4662797 0.3262122 +0.4108177 0.4662797 0.3262122 +0.4244723 0.4662797 0.3262122 +0.4365675 0.4662797 0.3262122 +0.4474232 0.4662797 0.3262122 +0.45727 0.4662797 0.3262122 +0.4662797 0.4662797 0.3262122 +0.4745834 0.4662797 0.3262122 +0.4822838 0.4662797 0.3262122 +0.4894626 0.4662797 0.3262122 +0.4961862 0.4662797 0.3262122 +0.5025087 0.4662797 0.3262122 +0.5084753 0.4662797 0.3262122 +0.514124 0.4662797 0.3262122 +0.519487 0.4662797 0.3262122 +0.5245917 0.4662797 0.3262122 +0.529462 0.4662797 0.3262122 +0.5341183 0.4662797 0.3262122 +0.5385787 0.4662797 0.3262122 +0.5428591 0.4662797 0.3262122 +0.5469733 0.4662797 0.3262122 +0.5509339 0.4662797 0.3262122 +0.5547519 0.4662797 0.3262122 +0.5584371 0.4662797 0.3262122 +0.5619986 0.4662797 0.3262122 +0.5654443 0.4662797 0.3262122 +0.5687816 0.4662797 0.3262122 +0.092819 0.4745834 0.3262122 +0.2262531 0.4745834 0.3262122 +0.2875993 0.4745834 0.3262122 +0.3262122 0.4745834 0.3262122 +0.3544566 0.4745834 0.3262122 +0.3767383 0.4745834 0.3262122 +0.3951413 0.4745834 0.3262122 +0.4108177 0.4745834 0.3262122 +0.4244723 0.4745834 0.3262122 +0.4365675 0.4745834 0.3262122 +0.4474232 0.4745834 0.3262122 +0.45727 0.4745834 0.3262122 +0.4662797 0.4745834 0.3262122 +0.4745834 0.4745834 0.3262122 +0.4822838 0.4745834 0.3262122 +0.4894626 0.4745834 0.3262122 +0.4961862 0.4745834 0.3262122 +0.5025087 0.4745834 0.3262122 +0.5084753 0.4745834 0.3262122 +0.514124 0.4745834 0.3262122 +0.519487 0.4745834 0.3262122 +0.5245917 0.4745834 0.3262122 +0.529462 0.4745834 0.3262122 +0.5341183 0.4745834 0.3262122 +0.5385787 0.4745834 0.3262122 +0.5428591 0.4745834 0.3262122 +0.5469733 0.4745834 0.3262122 +0.5509339 0.4745834 0.3262122 +0.5547519 0.4745834 0.3262122 +0.5584371 0.4745834 0.3262122 +0.5619986 0.4745834 0.3262122 +0.5654443 0.4745834 0.3262122 +0.5687816 0.4745834 0.3262122 +0.092819 0.4822838 0.3262122 +0.2262531 0.4822838 0.3262122 +0.2875993 0.4822838 0.3262122 +0.3262122 0.4822838 0.3262122 +0.3544566 0.4822838 0.3262122 +0.3767383 0.4822838 0.3262122 +0.3951413 0.4822838 0.3262122 +0.4108177 0.4822838 0.3262122 +0.4244723 0.4822838 0.3262122 +0.4365675 0.4822838 0.3262122 +0.4474232 0.4822838 0.3262122 +0.45727 0.4822838 0.3262122 +0.4662797 0.4822838 0.3262122 +0.4745834 0.4822838 0.3262122 +0.4822838 0.4822838 0.3262122 +0.4894626 0.4822838 0.3262122 +0.4961862 0.4822838 0.3262122 +0.5025087 0.4822838 0.3262122 +0.5084753 0.4822838 0.3262122 +0.514124 0.4822838 0.3262122 +0.519487 0.4822838 0.3262122 +0.5245917 0.4822838 0.3262122 +0.529462 0.4822838 0.3262122 +0.5341183 0.4822838 0.3262122 +0.5385787 0.4822838 0.3262122 +0.5428591 0.4822838 0.3262122 +0.5469733 0.4822838 0.3262122 +0.5509339 0.4822838 0.3262122 +0.5547519 0.4822838 0.3262122 +0.5584371 0.4822838 0.3262122 +0.5619986 0.4822838 0.3262122 +0.5654443 0.4822838 0.3262122 +0.5687816 0.4822838 0.3262122 +0.092819 0.4894626 0.3262122 +0.2262531 0.4894626 0.3262122 +0.2875993 0.4894626 0.3262122 +0.3262122 0.4894626 0.3262122 +0.3544566 0.4894626 0.3262122 +0.3767383 0.4894626 0.3262122 +0.3951413 0.4894626 0.3262122 +0.4108177 0.4894626 0.3262122 +0.4244723 0.4894626 0.3262122 +0.4365675 0.4894626 0.3262122 +0.4474232 0.4894626 0.3262122 +0.45727 0.4894626 0.3262122 +0.4662797 0.4894626 0.3262122 +0.4745834 0.4894626 0.3262122 +0.4822838 0.4894626 0.3262122 +0.4894626 0.4894626 0.3262122 +0.4961862 0.4894626 0.3262122 +0.5025087 0.4894626 0.3262122 +0.5084753 0.4894626 0.3262122 +0.514124 0.4894626 0.3262122 +0.519487 0.4894626 0.3262122 +0.5245917 0.4894626 0.3262122 +0.529462 0.4894626 0.3262122 +0.5341183 0.4894626 0.3262122 +0.5385787 0.4894626 0.3262122 +0.5428591 0.4894626 0.3262122 +0.5469733 0.4894626 0.3262122 +0.5509339 0.4894626 0.3262122 +0.5547519 0.4894626 0.3262122 +0.5584371 0.4894626 0.3262122 +0.5619986 0.4894626 0.3262122 +0.5654443 0.4894626 0.3262122 +0.5687816 0.4894626 0.3262122 +0.092819 0.4961862 0.3262122 +0.2262531 0.4961862 0.3262122 +0.2875993 0.4961862 0.3262122 +0.3262122 0.4961862 0.3262122 +0.3544566 0.4961862 0.3262122 +0.3767383 0.4961862 0.3262122 +0.3951413 0.4961862 0.3262122 +0.4108177 0.4961862 0.3262122 +0.4244723 0.4961862 0.3262122 +0.4365675 0.4961862 0.3262122 +0.4474232 0.4961862 0.3262122 +0.45727 0.4961862 0.3262122 +0.4662797 0.4961862 0.3262122 +0.4745834 0.4961862 0.3262122 +0.4822838 0.4961862 0.3262122 +0.4894626 0.4961862 0.3262122 +0.4961862 0.4961862 0.3262122 +0.5025087 0.4961862 0.3262122 +0.5084753 0.4961862 0.3262122 +0.514124 0.4961862 0.3262122 +0.519487 0.4961862 0.3262122 +0.5245917 0.4961862 0.3262122 +0.529462 0.4961862 0.3262122 +0.5341183 0.4961862 0.3262122 +0.5385787 0.4961862 0.3262122 +0.5428591 0.4961862 0.3262122 +0.5469733 0.4961862 0.3262122 +0.5509339 0.4961862 0.3262122 +0.5547519 0.4961862 0.3262122 +0.5584371 0.4961862 0.3262122 +0.5619986 0.4961862 0.3262122 +0.5654443 0.4961862 0.3262122 +0.5687816 0.4961862 0.3262122 +0.092819 0.5025087 0.3262122 +0.2262531 0.5025087 0.3262122 +0.2875993 0.5025087 0.3262122 +0.3262122 0.5025087 0.3262122 +0.3544566 0.5025087 0.3262122 +0.3767383 0.5025087 0.3262122 +0.3951413 0.5025087 0.3262122 +0.4108177 0.5025087 0.3262122 +0.4244723 0.5025087 0.3262122 +0.4365675 0.5025087 0.3262122 +0.4474232 0.5025087 0.3262122 +0.45727 0.5025087 0.3262122 +0.4662797 0.5025087 0.3262122 +0.4745834 0.5025087 0.3262122 +0.4822838 0.5025087 0.3262122 +0.4894626 0.5025087 0.3262122 +0.4961862 0.5025087 0.3262122 +0.5025087 0.5025087 0.3262122 +0.5084753 0.5025087 0.3262122 +0.514124 0.5025087 0.3262122 +0.519487 0.5025087 0.3262122 +0.5245917 0.5025087 0.3262122 +0.529462 0.5025087 0.3262122 +0.5341183 0.5025087 0.3262122 +0.5385787 0.5025087 0.3262122 +0.5428591 0.5025087 0.3262122 +0.5469733 0.5025087 0.3262122 +0.5509339 0.5025087 0.3262122 +0.5547519 0.5025087 0.3262122 +0.5584371 0.5025087 0.3262122 +0.5619986 0.5025087 0.3262122 +0.5654443 0.5025087 0.3262122 +0.5687816 0.5025087 0.3262122 +0.092819 0.5084753 0.3262122 +0.2262531 0.5084753 0.3262122 +0.2875993 0.5084753 0.3262122 +0.3262122 0.5084753 0.3262122 +0.3544566 0.5084753 0.3262122 +0.3767383 0.5084753 0.3262122 +0.3951413 0.5084753 0.3262122 +0.4108177 0.5084753 0.3262122 +0.4244723 0.5084753 0.3262122 +0.4365675 0.5084753 0.3262122 +0.4474232 0.5084753 0.3262122 +0.45727 0.5084753 0.3262122 +0.4662797 0.5084753 0.3262122 +0.4745834 0.5084753 0.3262122 +0.4822838 0.5084753 0.3262122 +0.4894626 0.5084753 0.3262122 +0.4961862 0.5084753 0.3262122 +0.5025087 0.5084753 0.3262122 +0.5084753 0.5084753 0.3262122 +0.514124 0.5084753 0.3262122 +0.519487 0.5084753 0.3262122 +0.5245917 0.5084753 0.3262122 +0.529462 0.5084753 0.3262122 +0.5341183 0.5084753 0.3262122 +0.5385787 0.5084753 0.3262122 +0.5428591 0.5084753 0.3262122 +0.5469733 0.5084753 0.3262122 +0.5509339 0.5084753 0.3262122 +0.5547519 0.5084753 0.3262122 +0.5584371 0.5084753 0.3262122 +0.5619986 0.5084753 0.3262122 +0.5654443 0.5084753 0.3262122 +0.5687816 0.5084753 0.3262122 +0.092819 0.514124 0.3262122 +0.2262531 0.514124 0.3262122 +0.2875993 0.514124 0.3262122 +0.3262122 0.514124 0.3262122 +0.3544566 0.514124 0.3262122 +0.3767383 0.514124 0.3262122 +0.3951413 0.514124 0.3262122 +0.4108177 0.514124 0.3262122 +0.4244723 0.514124 0.3262122 +0.4365675 0.514124 0.3262122 +0.4474232 0.514124 0.3262122 +0.45727 0.514124 0.3262122 +0.4662797 0.514124 0.3262122 +0.4745834 0.514124 0.3262122 +0.4822838 0.514124 0.3262122 +0.4894626 0.514124 0.3262122 +0.4961862 0.514124 0.3262122 +0.5025087 0.514124 0.3262122 +0.5084753 0.514124 0.3262122 +0.514124 0.514124 0.3262122 +0.519487 0.514124 0.3262122 +0.5245917 0.514124 0.3262122 +0.529462 0.514124 0.3262122 +0.5341183 0.514124 0.3262122 +0.5385787 0.514124 0.3262122 +0.5428591 0.514124 0.3262122 +0.5469733 0.514124 0.3262122 +0.5509339 0.514124 0.3262122 +0.5547519 0.514124 0.3262122 +0.5584371 0.514124 0.3262122 +0.5619986 0.514124 0.3262122 +0.5654443 0.514124 0.3262122 +0.5687816 0.514124 0.3262122 +0.092819 0.519487 0.3262122 +0.2262531 0.519487 0.3262122 +0.2875993 0.519487 0.3262122 +0.3262122 0.519487 0.3262122 +0.3544566 0.519487 0.3262122 +0.3767383 0.519487 0.3262122 +0.3951413 0.519487 0.3262122 +0.4108177 0.519487 0.3262122 +0.4244723 0.519487 0.3262122 +0.4365675 0.519487 0.3262122 +0.4474232 0.519487 0.3262122 +0.45727 0.519487 0.3262122 +0.4662797 0.519487 0.3262122 +0.4745834 0.519487 0.3262122 +0.4822838 0.519487 0.3262122 +0.4894626 0.519487 0.3262122 +0.4961862 0.519487 0.3262122 +0.5025087 0.519487 0.3262122 +0.5084753 0.519487 0.3262122 +0.514124 0.519487 0.3262122 +0.519487 0.519487 0.3262122 +0.5245917 0.519487 0.3262122 +0.529462 0.519487 0.3262122 +0.5341183 0.519487 0.3262122 +0.5385787 0.519487 0.3262122 +0.5428591 0.519487 0.3262122 +0.5469733 0.519487 0.3262122 +0.5509339 0.519487 0.3262122 +0.5547519 0.519487 0.3262122 +0.5584371 0.519487 0.3262122 +0.5619986 0.519487 0.3262122 +0.5654443 0.519487 0.3262122 +0.5687816 0.519487 0.3262122 +0.092819 0.5245917 0.3262122 +0.2262531 0.5245917 0.3262122 +0.2875993 0.5245917 0.3262122 +0.3262122 0.5245917 0.3262122 +0.3544566 0.5245917 0.3262122 +0.3767383 0.5245917 0.3262122 +0.3951413 0.5245917 0.3262122 +0.4108177 0.5245917 0.3262122 +0.4244723 0.5245917 0.3262122 +0.4365675 0.5245917 0.3262122 +0.4474232 0.5245917 0.3262122 +0.45727 0.5245917 0.3262122 +0.4662797 0.5245917 0.3262122 +0.4745834 0.5245917 0.3262122 +0.4822838 0.5245917 0.3262122 +0.4894626 0.5245917 0.3262122 +0.4961862 0.5245917 0.3262122 +0.5025087 0.5245917 0.3262122 +0.5084753 0.5245917 0.3262122 +0.514124 0.5245917 0.3262122 +0.519487 0.5245917 0.3262122 +0.5245917 0.5245917 0.3262122 +0.529462 0.5245917 0.3262122 +0.5341183 0.5245917 0.3262122 +0.5385787 0.5245917 0.3262122 +0.5428591 0.5245917 0.3262122 +0.5469733 0.5245917 0.3262122 +0.5509339 0.5245917 0.3262122 +0.5547519 0.5245917 0.3262122 +0.5584371 0.5245917 0.3262122 +0.5619986 0.5245917 0.3262122 +0.5654443 0.5245917 0.3262122 +0.5687816 0.5245917 0.3262122 +0.092819 0.529462 0.3262122 +0.2262531 0.529462 0.3262122 +0.2875993 0.529462 0.3262122 +0.3262122 0.529462 0.3262122 +0.3544566 0.529462 0.3262122 +0.3767383 0.529462 0.3262122 +0.3951413 0.529462 0.3262122 +0.4108177 0.529462 0.3262122 +0.4244723 0.529462 0.3262122 +0.4365675 0.529462 0.3262122 +0.4474232 0.529462 0.3262122 +0.45727 0.529462 0.3262122 +0.4662797 0.529462 0.3262122 +0.4745834 0.529462 0.3262122 +0.4822838 0.529462 0.3262122 +0.4894626 0.529462 0.3262122 +0.4961862 0.529462 0.3262122 +0.5025087 0.529462 0.3262122 +0.5084753 0.529462 0.3262122 +0.514124 0.529462 0.3262122 +0.519487 0.529462 0.3262122 +0.5245917 0.529462 0.3262122 +0.529462 0.529462 0.3262122 +0.5341183 0.529462 0.3262122 +0.5385787 0.529462 0.3262122 +0.5428591 0.529462 0.3262122 +0.5469733 0.529462 0.3262122 +0.5509339 0.529462 0.3262122 +0.5547519 0.529462 0.3262122 +0.5584371 0.529462 0.3262122 +0.5619986 0.529462 0.3262122 +0.5654443 0.529462 0.3262122 +0.5687816 0.529462 0.3262122 +0.092819 0.5341183 0.3262122 +0.2262531 0.5341183 0.3262122 +0.2875993 0.5341183 0.3262122 +0.3262122 0.5341183 0.3262122 +0.3544566 0.5341183 0.3262122 +0.3767383 0.5341183 0.3262122 +0.3951413 0.5341183 0.3262122 +0.4108177 0.5341183 0.3262122 +0.4244723 0.5341183 0.3262122 +0.4365675 0.5341183 0.3262122 +0.4474232 0.5341183 0.3262122 +0.45727 0.5341183 0.3262122 +0.4662797 0.5341183 0.3262122 +0.4745834 0.5341183 0.3262122 +0.4822838 0.5341183 0.3262122 +0.4894626 0.5341183 0.3262122 +0.4961862 0.5341183 0.3262122 +0.5025087 0.5341183 0.3262122 +0.5084753 0.5341183 0.3262122 +0.514124 0.5341183 0.3262122 +0.519487 0.5341183 0.3262122 +0.5245917 0.5341183 0.3262122 +0.529462 0.5341183 0.3262122 +0.5341183 0.5341183 0.3262122 +0.5385787 0.5341183 0.3262122 +0.5428591 0.5341183 0.3262122 +0.5469733 0.5341183 0.3262122 +0.5509339 0.5341183 0.3262122 +0.5547519 0.5341183 0.3262122 +0.5584371 0.5341183 0.3262122 +0.5619986 0.5341183 0.3262122 +0.5654443 0.5341183 0.3262122 +0.5687816 0.5341183 0.3262122 +0.092819 0.5385787 0.3262122 +0.2262531 0.5385787 0.3262122 +0.2875993 0.5385787 0.3262122 +0.3262122 0.5385787 0.3262122 +0.3544566 0.5385787 0.3262122 +0.3767383 0.5385787 0.3262122 +0.3951413 0.5385787 0.3262122 +0.4108177 0.5385787 0.3262122 +0.4244723 0.5385787 0.3262122 +0.4365675 0.5385787 0.3262122 +0.4474232 0.5385787 0.3262122 +0.45727 0.5385787 0.3262122 +0.4662797 0.5385787 0.3262122 +0.4745834 0.5385787 0.3262122 +0.4822838 0.5385787 0.3262122 +0.4894626 0.5385787 0.3262122 +0.4961862 0.5385787 0.3262122 +0.5025087 0.5385787 0.3262122 +0.5084753 0.5385787 0.3262122 +0.514124 0.5385787 0.3262122 +0.519487 0.5385787 0.3262122 +0.5245917 0.5385787 0.3262122 +0.529462 0.5385787 0.3262122 +0.5341183 0.5385787 0.3262122 +0.5385787 0.5385787 0.3262122 +0.5428591 0.5385787 0.3262122 +0.5469733 0.5385787 0.3262122 +0.5509339 0.5385787 0.3262122 +0.5547519 0.5385787 0.3262122 +0.5584371 0.5385787 0.3262122 +0.5619986 0.5385787 0.3262122 +0.5654443 0.5385787 0.3262122 +0.5687816 0.5385787 0.3262122 +0.092819 0.5428591 0.3262122 +0.2262531 0.5428591 0.3262122 +0.2875993 0.5428591 0.3262122 +0.3262122 0.5428591 0.3262122 +0.3544566 0.5428591 0.3262122 +0.3767383 0.5428591 0.3262122 +0.3951413 0.5428591 0.3262122 +0.4108177 0.5428591 0.3262122 +0.4244723 0.5428591 0.3262122 +0.4365675 0.5428591 0.3262122 +0.4474232 0.5428591 0.3262122 +0.45727 0.5428591 0.3262122 +0.4662797 0.5428591 0.3262122 +0.4745834 0.5428591 0.3262122 +0.4822838 0.5428591 0.3262122 +0.4894626 0.5428591 0.3262122 +0.4961862 0.5428591 0.3262122 +0.5025087 0.5428591 0.3262122 +0.5084753 0.5428591 0.3262122 +0.514124 0.5428591 0.3262122 +0.519487 0.5428591 0.3262122 +0.5245917 0.5428591 0.3262122 +0.529462 0.5428591 0.3262122 +0.5341183 0.5428591 0.3262122 +0.5385787 0.5428591 0.3262122 +0.5428591 0.5428591 0.3262122 +0.5469733 0.5428591 0.3262122 +0.5509339 0.5428591 0.3262122 +0.5547519 0.5428591 0.3262122 +0.5584371 0.5428591 0.3262122 +0.5619986 0.5428591 0.3262122 +0.5654443 0.5428591 0.3262122 +0.5687816 0.5428591 0.3262122 +0.092819 0.5469733 0.3262122 +0.2262531 0.5469733 0.3262122 +0.2875993 0.5469733 0.3262122 +0.3262122 0.5469733 0.3262122 +0.3544566 0.5469733 0.3262122 +0.3767383 0.5469733 0.3262122 +0.3951413 0.5469733 0.3262122 +0.4108177 0.5469733 0.3262122 +0.4244723 0.5469733 0.3262122 +0.4365675 0.5469733 0.3262122 +0.4474232 0.5469733 0.3262122 +0.45727 0.5469733 0.3262122 +0.4662797 0.5469733 0.3262122 +0.4745834 0.5469733 0.3262122 +0.4822838 0.5469733 0.3262122 +0.4894626 0.5469733 0.3262122 +0.4961862 0.5469733 0.3262122 +0.5025087 0.5469733 0.3262122 +0.5084753 0.5469733 0.3262122 +0.514124 0.5469733 0.3262122 +0.519487 0.5469733 0.3262122 +0.5245917 0.5469733 0.3262122 +0.529462 0.5469733 0.3262122 +0.5341183 0.5469733 0.3262122 +0.5385787 0.5469733 0.3262122 +0.5428591 0.5469733 0.3262122 +0.5469733 0.5469733 0.3262122 +0.5509339 0.5469733 0.3262122 +0.5547519 0.5469733 0.3262122 +0.5584371 0.5469733 0.3262122 +0.5619986 0.5469733 0.3262122 +0.5654443 0.5469733 0.3262122 +0.5687816 0.5469733 0.3262122 +0.092819 0.5509339 0.3262122 +0.2262531 0.5509339 0.3262122 +0.2875993 0.5509339 0.3262122 +0.3262122 0.5509339 0.3262122 +0.3544566 0.5509339 0.3262122 +0.3767383 0.5509339 0.3262122 +0.3951413 0.5509339 0.3262122 +0.4108177 0.5509339 0.3262122 +0.4244723 0.5509339 0.3262122 +0.4365675 0.5509339 0.3262122 +0.4474232 0.5509339 0.3262122 +0.45727 0.5509339 0.3262122 +0.4662797 0.5509339 0.3262122 +0.4745834 0.5509339 0.3262122 +0.4822838 0.5509339 0.3262122 +0.4894626 0.5509339 0.3262122 +0.4961862 0.5509339 0.3262122 +0.5025087 0.5509339 0.3262122 +0.5084753 0.5509339 0.3262122 +0.514124 0.5509339 0.3262122 +0.519487 0.5509339 0.3262122 +0.5245917 0.5509339 0.3262122 +0.529462 0.5509339 0.3262122 +0.5341183 0.5509339 0.3262122 +0.5385787 0.5509339 0.3262122 +0.5428591 0.5509339 0.3262122 +0.5469733 0.5509339 0.3262122 +0.5509339 0.5509339 0.3262122 +0.5547519 0.5509339 0.3262122 +0.5584371 0.5509339 0.3262122 +0.5619986 0.5509339 0.3262122 +0.5654443 0.5509339 0.3262122 +0.5687816 0.5509339 0.3262122 +0.092819 0.5547519 0.3262122 +0.2262531 0.5547519 0.3262122 +0.2875993 0.5547519 0.3262122 +0.3262122 0.5547519 0.3262122 +0.3544566 0.5547519 0.3262122 +0.3767383 0.5547519 0.3262122 +0.3951413 0.5547519 0.3262122 +0.4108177 0.5547519 0.3262122 +0.4244723 0.5547519 0.3262122 +0.4365675 0.5547519 0.3262122 +0.4474232 0.5547519 0.3262122 +0.45727 0.5547519 0.3262122 +0.4662797 0.5547519 0.3262122 +0.4745834 0.5547519 0.3262122 +0.4822838 0.5547519 0.3262122 +0.4894626 0.5547519 0.3262122 +0.4961862 0.5547519 0.3262122 +0.5025087 0.5547519 0.3262122 +0.5084753 0.5547519 0.3262122 +0.514124 0.5547519 0.3262122 +0.519487 0.5547519 0.3262122 +0.5245917 0.5547519 0.3262122 +0.529462 0.5547519 0.3262122 +0.5341183 0.5547519 0.3262122 +0.5385787 0.5547519 0.3262122 +0.5428591 0.5547519 0.3262122 +0.5469733 0.5547519 0.3262122 +0.5509339 0.5547519 0.3262122 +0.5547519 0.5547519 0.3262122 +0.5584371 0.5547519 0.3262122 +0.5619986 0.5547519 0.3262122 +0.5654443 0.5547519 0.3262122 +0.5687816 0.5547519 0.3262122 +0.092819 0.5584371 0.3262122 +0.2262531 0.5584371 0.3262122 +0.2875993 0.5584371 0.3262122 +0.3262122 0.5584371 0.3262122 +0.3544566 0.5584371 0.3262122 +0.3767383 0.5584371 0.3262122 +0.3951413 0.5584371 0.3262122 +0.4108177 0.5584371 0.3262122 +0.4244723 0.5584371 0.3262122 +0.4365675 0.5584371 0.3262122 +0.4474232 0.5584371 0.3262122 +0.45727 0.5584371 0.3262122 +0.4662797 0.5584371 0.3262122 +0.4745834 0.5584371 0.3262122 +0.4822838 0.5584371 0.3262122 +0.4894626 0.5584371 0.3262122 +0.4961862 0.5584371 0.3262122 +0.5025087 0.5584371 0.3262122 +0.5084753 0.5584371 0.3262122 +0.514124 0.5584371 0.3262122 +0.519487 0.5584371 0.3262122 +0.5245917 0.5584371 0.3262122 +0.529462 0.5584371 0.3262122 +0.5341183 0.5584371 0.3262122 +0.5385787 0.5584371 0.3262122 +0.5428591 0.5584371 0.3262122 +0.5469733 0.5584371 0.3262122 +0.5509339 0.5584371 0.3262122 +0.5547519 0.5584371 0.3262122 +0.5584371 0.5584371 0.3262122 +0.5619986 0.5584371 0.3262122 +0.5654443 0.5584371 0.3262122 +0.5687816 0.5584371 0.3262122 +0.092819 0.5619986 0.3262122 +0.2262531 0.5619986 0.3262122 +0.2875993 0.5619986 0.3262122 +0.3262122 0.5619986 0.3262122 +0.3544566 0.5619986 0.3262122 +0.3767383 0.5619986 0.3262122 +0.3951413 0.5619986 0.3262122 +0.4108177 0.5619986 0.3262122 +0.4244723 0.5619986 0.3262122 +0.4365675 0.5619986 0.3262122 +0.4474232 0.5619986 0.3262122 +0.45727 0.5619986 0.3262122 +0.4662797 0.5619986 0.3262122 +0.4745834 0.5619986 0.3262122 +0.4822838 0.5619986 0.3262122 +0.4894626 0.5619986 0.3262122 +0.4961862 0.5619986 0.3262122 +0.5025087 0.5619986 0.3262122 +0.5084753 0.5619986 0.3262122 +0.514124 0.5619986 0.3262122 +0.519487 0.5619986 0.3262122 +0.5245917 0.5619986 0.3262122 +0.529462 0.5619986 0.3262122 +0.5341183 0.5619986 0.3262122 +0.5385787 0.5619986 0.3262122 +0.5428591 0.5619986 0.3262122 +0.5469733 0.5619986 0.3262122 +0.5509339 0.5619986 0.3262122 +0.5547519 0.5619986 0.3262122 +0.5584371 0.5619986 0.3262122 +0.5619986 0.5619986 0.3262122 +0.5654443 0.5619986 0.3262122 +0.5687816 0.5619986 0.3262122 +0.092819 0.5654443 0.3262122 +0.2262531 0.5654443 0.3262122 +0.2875993 0.5654443 0.3262122 +0.3262122 0.5654443 0.3262122 +0.3544566 0.5654443 0.3262122 +0.3767383 0.5654443 0.3262122 +0.3951413 0.5654443 0.3262122 +0.4108177 0.5654443 0.3262122 +0.4244723 0.5654443 0.3262122 +0.4365675 0.5654443 0.3262122 +0.4474232 0.5654443 0.3262122 +0.45727 0.5654443 0.3262122 +0.4662797 0.5654443 0.3262122 +0.4745834 0.5654443 0.3262122 +0.4822838 0.5654443 0.3262122 +0.4894626 0.5654443 0.3262122 +0.4961862 0.5654443 0.3262122 +0.5025087 0.5654443 0.3262122 +0.5084753 0.5654443 0.3262122 +0.514124 0.5654443 0.3262122 +0.519487 0.5654443 0.3262122 +0.5245917 0.5654443 0.3262122 +0.529462 0.5654443 0.3262122 +0.5341183 0.5654443 0.3262122 +0.5385787 0.5654443 0.3262122 +0.5428591 0.5654443 0.3262122 +0.5469733 0.5654443 0.3262122 +0.5509339 0.5654443 0.3262122 +0.5547519 0.5654443 0.3262122 +0.5584371 0.5654443 0.3262122 +0.5619986 0.5654443 0.3262122 +0.5654443 0.5654443 0.3262122 +0.5687816 0.5654443 0.3262122 +0.092819 0.5687816 0.3262122 +0.2262531 0.5687816 0.3262122 +0.2875993 0.5687816 0.3262122 +0.3262122 0.5687816 0.3262122 +0.3544566 0.5687816 0.3262122 +0.3767383 0.5687816 0.3262122 +0.3951413 0.5687816 0.3262122 +0.4108177 0.5687816 0.3262122 +0.4244723 0.5687816 0.3262122 +0.4365675 0.5687816 0.3262122 +0.4474232 0.5687816 0.3262122 +0.45727 0.5687816 0.3262122 +0.4662797 0.5687816 0.3262122 +0.4745834 0.5687816 0.3262122 +0.4822838 0.5687816 0.3262122 +0.4894626 0.5687816 0.3262122 +0.4961862 0.5687816 0.3262122 +0.5025087 0.5687816 0.3262122 +0.5084753 0.5687816 0.3262122 +0.514124 0.5687816 0.3262122 +0.519487 0.5687816 0.3262122 +0.5245917 0.5687816 0.3262122 +0.529462 0.5687816 0.3262122 +0.5341183 0.5687816 0.3262122 +0.5385787 0.5687816 0.3262122 +0.5428591 0.5687816 0.3262122 +0.5469733 0.5687816 0.3262122 +0.5509339 0.5687816 0.3262122 +0.5547519 0.5687816 0.3262122 +0.5584371 0.5687816 0.3262122 +0.5619986 0.5687816 0.3262122 +0.5654443 0.5687816 0.3262122 +0.5687816 0.5687816 0.3262122 +0.092819 0.092819 0.3544566 +0.2262531 0.092819 0.3544566 +0.2875993 0.092819 0.3544566 +0.3262122 0.092819 0.3544566 +0.3544566 0.092819 0.3544566 +0.3767383 0.092819 0.3544566 +0.3951413 0.092819 0.3544566 +0.4108177 0.092819 0.3544566 +0.4244723 0.092819 0.3544566 +0.4365675 0.092819 0.3544566 +0.4474232 0.092819 0.3544566 +0.45727 0.092819 0.3544566 +0.4662797 0.092819 0.3544566 +0.4745834 0.092819 0.3544566 +0.4822838 0.092819 0.3544566 +0.4894626 0.092819 0.3544566 +0.4961862 0.092819 0.3544566 +0.5025087 0.092819 0.3544566 +0.5084753 0.092819 0.3544566 +0.514124 0.092819 0.3544566 +0.519487 0.092819 0.3544566 +0.5245917 0.092819 0.3544566 +0.529462 0.092819 0.3544566 +0.5341183 0.092819 0.3544566 +0.5385787 0.092819 0.3544566 +0.5428591 0.092819 0.3544566 +0.5469733 0.092819 0.3544566 +0.5509339 0.092819 0.3544566 +0.5547519 0.092819 0.3544566 +0.5584371 0.092819 0.3544566 +0.5619986 0.092819 0.3544566 +0.5654443 0.092819 0.3544566 +0.5687816 0.092819 0.3544566 +0.092819 0.2262531 0.3544566 +0.2262531 0.2262531 0.3544566 +0.2875993 0.2262531 0.3544566 +0.3262122 0.2262531 0.3544566 +0.3544566 0.2262531 0.3544566 +0.3767383 0.2262531 0.3544566 +0.3951413 0.2262531 0.3544566 +0.4108177 0.2262531 0.3544566 +0.4244723 0.2262531 0.3544566 +0.4365675 0.2262531 0.3544566 +0.4474232 0.2262531 0.3544566 +0.45727 0.2262531 0.3544566 +0.4662797 0.2262531 0.3544566 +0.4745834 0.2262531 0.3544566 +0.4822838 0.2262531 0.3544566 +0.4894626 0.2262531 0.3544566 +0.4961862 0.2262531 0.3544566 +0.5025087 0.2262531 0.3544566 +0.5084753 0.2262531 0.3544566 +0.514124 0.2262531 0.3544566 +0.519487 0.2262531 0.3544566 +0.5245917 0.2262531 0.3544566 +0.529462 0.2262531 0.3544566 +0.5341183 0.2262531 0.3544566 +0.5385787 0.2262531 0.3544566 +0.5428591 0.2262531 0.3544566 +0.5469733 0.2262531 0.3544566 +0.5509339 0.2262531 0.3544566 +0.5547519 0.2262531 0.3544566 +0.5584371 0.2262531 0.3544566 +0.5619986 0.2262531 0.3544566 +0.5654443 0.2262531 0.3544566 +0.5687816 0.2262531 0.3544566 +0.092819 0.2875993 0.3544566 +0.2262531 0.2875993 0.3544566 +0.2875993 0.2875993 0.3544566 +0.3262122 0.2875993 0.3544566 +0.3544566 0.2875993 0.3544566 +0.3767383 0.2875993 0.3544566 +0.3951413 0.2875993 0.3544566 +0.4108177 0.2875993 0.3544566 +0.4244723 0.2875993 0.3544566 +0.4365675 0.2875993 0.3544566 +0.4474232 0.2875993 0.3544566 +0.45727 0.2875993 0.3544566 +0.4662797 0.2875993 0.3544566 +0.4745834 0.2875993 0.3544566 +0.4822838 0.2875993 0.3544566 +0.4894626 0.2875993 0.3544566 +0.4961862 0.2875993 0.3544566 +0.5025087 0.2875993 0.3544566 +0.5084753 0.2875993 0.3544566 +0.514124 0.2875993 0.3544566 +0.519487 0.2875993 0.3544566 +0.5245917 0.2875993 0.3544566 +0.529462 0.2875993 0.3544566 +0.5341183 0.2875993 0.3544566 +0.5385787 0.2875993 0.3544566 +0.5428591 0.2875993 0.3544566 +0.5469733 0.2875993 0.3544566 +0.5509339 0.2875993 0.3544566 +0.5547519 0.2875993 0.3544566 +0.5584371 0.2875993 0.3544566 +0.5619986 0.2875993 0.3544566 +0.5654443 0.2875993 0.3544566 +0.5687816 0.2875993 0.3544566 +0.092819 0.3262122 0.3544566 +0.2262531 0.3262122 0.3544566 +0.2875993 0.3262122 0.3544566 +0.3262122 0.3262122 0.3544566 +0.3544566 0.3262122 0.3544566 +0.3767383 0.3262122 0.3544566 +0.3951413 0.3262122 0.3544566 +0.4108177 0.3262122 0.3544566 +0.4244723 0.3262122 0.3544566 +0.4365675 0.3262122 0.3544566 +0.4474232 0.3262122 0.3544566 +0.45727 0.3262122 0.3544566 +0.4662797 0.3262122 0.3544566 +0.4745834 0.3262122 0.3544566 +0.4822838 0.3262122 0.3544566 +0.4894626 0.3262122 0.3544566 +0.4961862 0.3262122 0.3544566 +0.5025087 0.3262122 0.3544566 +0.5084753 0.3262122 0.3544566 +0.514124 0.3262122 0.3544566 +0.519487 0.3262122 0.3544566 +0.5245917 0.3262122 0.3544566 +0.529462 0.3262122 0.3544566 +0.5341183 0.3262122 0.3544566 +0.5385787 0.3262122 0.3544566 +0.5428591 0.3262122 0.3544566 +0.5469733 0.3262122 0.3544566 +0.5509339 0.3262122 0.3544566 +0.5547519 0.3262122 0.3544566 +0.5584371 0.3262122 0.3544566 +0.5619986 0.3262122 0.3544566 +0.5654443 0.3262122 0.3544566 +0.5687816 0.3262122 0.3544566 +0.092819 0.3544566 0.3544566 +0.2262531 0.3544566 0.3544566 +0.2875993 0.3544566 0.3544566 +0.3262122 0.3544566 0.3544566 +0.3544566 0.3544566 0.3544566 +0.3767383 0.3544566 0.3544566 +0.3951413 0.3544566 0.3544566 +0.4108177 0.3544566 0.3544566 +0.4244723 0.3544566 0.3544566 +0.4365675 0.3544566 0.3544566 +0.4474232 0.3544566 0.3544566 +0.45727 0.3544566 0.3544566 +0.4662797 0.3544566 0.3544566 +0.4745834 0.3544566 0.3544566 +0.4822838 0.3544566 0.3544566 +0.4894626 0.3544566 0.3544566 +0.4961862 0.3544566 0.3544566 +0.5025087 0.3544566 0.3544566 +0.5084753 0.3544566 0.3544566 +0.514124 0.3544566 0.3544566 +0.519487 0.3544566 0.3544566 +0.5245917 0.3544566 0.3544566 +0.529462 0.3544566 0.3544566 +0.5341183 0.3544566 0.3544566 +0.5385787 0.3544566 0.3544566 +0.5428591 0.3544566 0.3544566 +0.5469733 0.3544566 0.3544566 +0.5509339 0.3544566 0.3544566 +0.5547519 0.3544566 0.3544566 +0.5584371 0.3544566 0.3544566 +0.5619986 0.3544566 0.3544566 +0.5654443 0.3544566 0.3544566 +0.5687816 0.3544566 0.3544566 +0.092819 0.3767383 0.3544566 +0.2262531 0.3767383 0.3544566 +0.2875993 0.3767383 0.3544566 +0.3262122 0.3767383 0.3544566 +0.3544566 0.3767383 0.3544566 +0.3767383 0.3767383 0.3544566 +0.3951413 0.3767383 0.3544566 +0.4108177 0.3767383 0.3544566 +0.4244723 0.3767383 0.3544566 +0.4365675 0.3767383 0.3544566 +0.4474232 0.3767383 0.3544566 +0.45727 0.3767383 0.3544566 +0.4662797 0.3767383 0.3544566 +0.4745834 0.3767383 0.3544566 +0.4822838 0.3767383 0.3544566 +0.4894626 0.3767383 0.3544566 +0.4961862 0.3767383 0.3544566 +0.5025087 0.3767383 0.3544566 +0.5084753 0.3767383 0.3544566 +0.514124 0.3767383 0.3544566 +0.519487 0.3767383 0.3544566 +0.5245917 0.3767383 0.3544566 +0.529462 0.3767383 0.3544566 +0.5341183 0.3767383 0.3544566 +0.5385787 0.3767383 0.3544566 +0.5428591 0.3767383 0.3544566 +0.5469733 0.3767383 0.3544566 +0.5509339 0.3767383 0.3544566 +0.5547519 0.3767383 0.3544566 +0.5584371 0.3767383 0.3544566 +0.5619986 0.3767383 0.3544566 +0.5654443 0.3767383 0.3544566 +0.5687816 0.3767383 0.3544566 +0.092819 0.3951413 0.3544566 +0.2262531 0.3951413 0.3544566 +0.2875993 0.3951413 0.3544566 +0.3262122 0.3951413 0.3544566 +0.3544566 0.3951413 0.3544566 +0.3767383 0.3951413 0.3544566 +0.3951413 0.3951413 0.3544566 +0.4108177 0.3951413 0.3544566 +0.4244723 0.3951413 0.3544566 +0.4365675 0.3951413 0.3544566 +0.4474232 0.3951413 0.3544566 +0.45727 0.3951413 0.3544566 +0.4662797 0.3951413 0.3544566 +0.4745834 0.3951413 0.3544566 +0.4822838 0.3951413 0.3544566 +0.4894626 0.3951413 0.3544566 +0.4961862 0.3951413 0.3544566 +0.5025087 0.3951413 0.3544566 +0.5084753 0.3951413 0.3544566 +0.514124 0.3951413 0.3544566 +0.519487 0.3951413 0.3544566 +0.5245917 0.3951413 0.3544566 +0.529462 0.3951413 0.3544566 +0.5341183 0.3951413 0.3544566 +0.5385787 0.3951413 0.3544566 +0.5428591 0.3951413 0.3544566 +0.5469733 0.3951413 0.3544566 +0.5509339 0.3951413 0.3544566 +0.5547519 0.3951413 0.3544566 +0.5584371 0.3951413 0.3544566 +0.5619986 0.3951413 0.3544566 +0.5654443 0.3951413 0.3544566 +0.5687816 0.3951413 0.3544566 +0.092819 0.4108177 0.3544566 +0.2262531 0.4108177 0.3544566 +0.2875993 0.4108177 0.3544566 +0.3262122 0.4108177 0.3544566 +0.3544566 0.4108177 0.3544566 +0.3767383 0.4108177 0.3544566 +0.3951413 0.4108177 0.3544566 +0.4108177 0.4108177 0.3544566 +0.4244723 0.4108177 0.3544566 +0.4365675 0.4108177 0.3544566 +0.4474232 0.4108177 0.3544566 +0.45727 0.4108177 0.3544566 +0.4662797 0.4108177 0.3544566 +0.4745834 0.4108177 0.3544566 +0.4822838 0.4108177 0.3544566 +0.4894626 0.4108177 0.3544566 +0.4961862 0.4108177 0.3544566 +0.5025087 0.4108177 0.3544566 +0.5084753 0.4108177 0.3544566 +0.514124 0.4108177 0.3544566 +0.519487 0.4108177 0.3544566 +0.5245917 0.4108177 0.3544566 +0.529462 0.4108177 0.3544566 +0.5341183 0.4108177 0.3544566 +0.5385787 0.4108177 0.3544566 +0.5428591 0.4108177 0.3544566 +0.5469733 0.4108177 0.3544566 +0.5509339 0.4108177 0.3544566 +0.5547519 0.4108177 0.3544566 +0.5584371 0.4108177 0.3544566 +0.5619986 0.4108177 0.3544566 +0.5654443 0.4108177 0.3544566 +0.5687816 0.4108177 0.3544566 +0.092819 0.4244723 0.3544566 +0.2262531 0.4244723 0.3544566 +0.2875993 0.4244723 0.3544566 +0.3262122 0.4244723 0.3544566 +0.3544566 0.4244723 0.3544566 +0.3767383 0.4244723 0.3544566 +0.3951413 0.4244723 0.3544566 +0.4108177 0.4244723 0.3544566 +0.4244723 0.4244723 0.3544566 +0.4365675 0.4244723 0.3544566 +0.4474232 0.4244723 0.3544566 +0.45727 0.4244723 0.3544566 +0.4662797 0.4244723 0.3544566 +0.4745834 0.4244723 0.3544566 +0.4822838 0.4244723 0.3544566 +0.4894626 0.4244723 0.3544566 +0.4961862 0.4244723 0.3544566 +0.5025087 0.4244723 0.3544566 +0.5084753 0.4244723 0.3544566 +0.514124 0.4244723 0.3544566 +0.519487 0.4244723 0.3544566 +0.5245917 0.4244723 0.3544566 +0.529462 0.4244723 0.3544566 +0.5341183 0.4244723 0.3544566 +0.5385787 0.4244723 0.3544566 +0.5428591 0.4244723 0.3544566 +0.5469733 0.4244723 0.3544566 +0.5509339 0.4244723 0.3544566 +0.5547519 0.4244723 0.3544566 +0.5584371 0.4244723 0.3544566 +0.5619986 0.4244723 0.3544566 +0.5654443 0.4244723 0.3544566 +0.5687816 0.4244723 0.3544566 +0.092819 0.4365675 0.3544566 +0.2262531 0.4365675 0.3544566 +0.2875993 0.4365675 0.3544566 +0.3262122 0.4365675 0.3544566 +0.3544566 0.4365675 0.3544566 +0.3767383 0.4365675 0.3544566 +0.3951413 0.4365675 0.3544566 +0.4108177 0.4365675 0.3544566 +0.4244723 0.4365675 0.3544566 +0.4365675 0.4365675 0.3544566 +0.4474232 0.4365675 0.3544566 +0.45727 0.4365675 0.3544566 +0.4662797 0.4365675 0.3544566 +0.4745834 0.4365675 0.3544566 +0.4822838 0.4365675 0.3544566 +0.4894626 0.4365675 0.3544566 +0.4961862 0.4365675 0.3544566 +0.5025087 0.4365675 0.3544566 +0.5084753 0.4365675 0.3544566 +0.514124 0.4365675 0.3544566 +0.519487 0.4365675 0.3544566 +0.5245917 0.4365675 0.3544566 +0.529462 0.4365675 0.3544566 +0.5341183 0.4365675 0.3544566 +0.5385787 0.4365675 0.3544566 +0.5428591 0.4365675 0.3544566 +0.5469733 0.4365675 0.3544566 +0.5509339 0.4365675 0.3544566 +0.5547519 0.4365675 0.3544566 +0.5584371 0.4365675 0.3544566 +0.5619986 0.4365675 0.3544566 +0.5654443 0.4365675 0.3544566 +0.5687816 0.4365675 0.3544566 +0.092819 0.4474232 0.3544566 +0.2262531 0.4474232 0.3544566 +0.2875993 0.4474232 0.3544566 +0.3262122 0.4474232 0.3544566 +0.3544566 0.4474232 0.3544566 +0.3767383 0.4474232 0.3544566 +0.3951413 0.4474232 0.3544566 +0.4108177 0.4474232 0.3544566 +0.4244723 0.4474232 0.3544566 +0.4365675 0.4474232 0.3544566 +0.4474232 0.4474232 0.3544566 +0.45727 0.4474232 0.3544566 +0.4662797 0.4474232 0.3544566 +0.4745834 0.4474232 0.3544566 +0.4822838 0.4474232 0.3544566 +0.4894626 0.4474232 0.3544566 +0.4961862 0.4474232 0.3544566 +0.5025087 0.4474232 0.3544566 +0.5084753 0.4474232 0.3544566 +0.514124 0.4474232 0.3544566 +0.519487 0.4474232 0.3544566 +0.5245917 0.4474232 0.3544566 +0.529462 0.4474232 0.3544566 +0.5341183 0.4474232 0.3544566 +0.5385787 0.4474232 0.3544566 +0.5428591 0.4474232 0.3544566 +0.5469733 0.4474232 0.3544566 +0.5509339 0.4474232 0.3544566 +0.5547519 0.4474232 0.3544566 +0.5584371 0.4474232 0.3544566 +0.5619986 0.4474232 0.3544566 +0.5654443 0.4474232 0.3544566 +0.5687816 0.4474232 0.3544566 +0.092819 0.45727 0.3544566 +0.2262531 0.45727 0.3544566 +0.2875993 0.45727 0.3544566 +0.3262122 0.45727 0.3544566 +0.3544566 0.45727 0.3544566 +0.3767383 0.45727 0.3544566 +0.3951413 0.45727 0.3544566 +0.4108177 0.45727 0.3544566 +0.4244723 0.45727 0.3544566 +0.4365675 0.45727 0.3544566 +0.4474232 0.45727 0.3544566 +0.45727 0.45727 0.3544566 +0.4662797 0.45727 0.3544566 +0.4745834 0.45727 0.3544566 +0.4822838 0.45727 0.3544566 +0.4894626 0.45727 0.3544566 +0.4961862 0.45727 0.3544566 +0.5025087 0.45727 0.3544566 +0.5084753 0.45727 0.3544566 +0.514124 0.45727 0.3544566 +0.519487 0.45727 0.3544566 +0.5245917 0.45727 0.3544566 +0.529462 0.45727 0.3544566 +0.5341183 0.45727 0.3544566 +0.5385787 0.45727 0.3544566 +0.5428591 0.45727 0.3544566 +0.5469733 0.45727 0.3544566 +0.5509339 0.45727 0.3544566 +0.5547519 0.45727 0.3544566 +0.5584371 0.45727 0.3544566 +0.5619986 0.45727 0.3544566 +0.5654443 0.45727 0.3544566 +0.5687816 0.45727 0.3544566 +0.092819 0.4662797 0.3544566 +0.2262531 0.4662797 0.3544566 +0.2875993 0.4662797 0.3544566 +0.3262122 0.4662797 0.3544566 +0.3544566 0.4662797 0.3544566 +0.3767383 0.4662797 0.3544566 +0.3951413 0.4662797 0.3544566 +0.4108177 0.4662797 0.3544566 +0.4244723 0.4662797 0.3544566 +0.4365675 0.4662797 0.3544566 +0.4474232 0.4662797 0.3544566 +0.45727 0.4662797 0.3544566 +0.4662797 0.4662797 0.3544566 +0.4745834 0.4662797 0.3544566 +0.4822838 0.4662797 0.3544566 +0.4894626 0.4662797 0.3544566 +0.4961862 0.4662797 0.3544566 +0.5025087 0.4662797 0.3544566 +0.5084753 0.4662797 0.3544566 +0.514124 0.4662797 0.3544566 +0.519487 0.4662797 0.3544566 +0.5245917 0.4662797 0.3544566 +0.529462 0.4662797 0.3544566 +0.5341183 0.4662797 0.3544566 +0.5385787 0.4662797 0.3544566 +0.5428591 0.4662797 0.3544566 +0.5469733 0.4662797 0.3544566 +0.5509339 0.4662797 0.3544566 +0.5547519 0.4662797 0.3544566 +0.5584371 0.4662797 0.3544566 +0.5619986 0.4662797 0.3544566 +0.5654443 0.4662797 0.3544566 +0.5687816 0.4662797 0.3544566 +0.092819 0.4745834 0.3544566 +0.2262531 0.4745834 0.3544566 +0.2875993 0.4745834 0.3544566 +0.3262122 0.4745834 0.3544566 +0.3544566 0.4745834 0.3544566 +0.3767383 0.4745834 0.3544566 +0.3951413 0.4745834 0.3544566 +0.4108177 0.4745834 0.3544566 +0.4244723 0.4745834 0.3544566 +0.4365675 0.4745834 0.3544566 +0.4474232 0.4745834 0.3544566 +0.45727 0.4745834 0.3544566 +0.4662797 0.4745834 0.3544566 +0.4745834 0.4745834 0.3544566 +0.4822838 0.4745834 0.3544566 +0.4894626 0.4745834 0.3544566 +0.4961862 0.4745834 0.3544566 +0.5025087 0.4745834 0.3544566 +0.5084753 0.4745834 0.3544566 +0.514124 0.4745834 0.3544566 +0.519487 0.4745834 0.3544566 +0.5245917 0.4745834 0.3544566 +0.529462 0.4745834 0.3544566 +0.5341183 0.4745834 0.3544566 +0.5385787 0.4745834 0.3544566 +0.5428591 0.4745834 0.3544566 +0.5469733 0.4745834 0.3544566 +0.5509339 0.4745834 0.3544566 +0.5547519 0.4745834 0.3544566 +0.5584371 0.4745834 0.3544566 +0.5619986 0.4745834 0.3544566 +0.5654443 0.4745834 0.3544566 +0.5687816 0.4745834 0.3544566 +0.092819 0.4822838 0.3544566 +0.2262531 0.4822838 0.3544566 +0.2875993 0.4822838 0.3544566 +0.3262122 0.4822838 0.3544566 +0.3544566 0.4822838 0.3544566 +0.3767383 0.4822838 0.3544566 +0.3951413 0.4822838 0.3544566 +0.4108177 0.4822838 0.3544566 +0.4244723 0.4822838 0.3544566 +0.4365675 0.4822838 0.3544566 +0.4474232 0.4822838 0.3544566 +0.45727 0.4822838 0.3544566 +0.4662797 0.4822838 0.3544566 +0.4745834 0.4822838 0.3544566 +0.4822838 0.4822838 0.3544566 +0.4894626 0.4822838 0.3544566 +0.4961862 0.4822838 0.3544566 +0.5025087 0.4822838 0.3544566 +0.5084753 0.4822838 0.3544566 +0.514124 0.4822838 0.3544566 +0.519487 0.4822838 0.3544566 +0.5245917 0.4822838 0.3544566 +0.529462 0.4822838 0.3544566 +0.5341183 0.4822838 0.3544566 +0.5385787 0.4822838 0.3544566 +0.5428591 0.4822838 0.3544566 +0.5469733 0.4822838 0.3544566 +0.5509339 0.4822838 0.3544566 +0.5547519 0.4822838 0.3544566 +0.5584371 0.4822838 0.3544566 +0.5619986 0.4822838 0.3544566 +0.5654443 0.4822838 0.3544566 +0.5687816 0.4822838 0.3544566 +0.092819 0.4894626 0.3544566 +0.2262531 0.4894626 0.3544566 +0.2875993 0.4894626 0.3544566 +0.3262122 0.4894626 0.3544566 +0.3544566 0.4894626 0.3544566 +0.3767383 0.4894626 0.3544566 +0.3951413 0.4894626 0.3544566 +0.4108177 0.4894626 0.3544566 +0.4244723 0.4894626 0.3544566 +0.4365675 0.4894626 0.3544566 +0.4474232 0.4894626 0.3544566 +0.45727 0.4894626 0.3544566 +0.4662797 0.4894626 0.3544566 +0.4745834 0.4894626 0.3544566 +0.4822838 0.4894626 0.3544566 +0.4894626 0.4894626 0.3544566 +0.4961862 0.4894626 0.3544566 +0.5025087 0.4894626 0.3544566 +0.5084753 0.4894626 0.3544566 +0.514124 0.4894626 0.3544566 +0.519487 0.4894626 0.3544566 +0.5245917 0.4894626 0.3544566 +0.529462 0.4894626 0.3544566 +0.5341183 0.4894626 0.3544566 +0.5385787 0.4894626 0.3544566 +0.5428591 0.4894626 0.3544566 +0.5469733 0.4894626 0.3544566 +0.5509339 0.4894626 0.3544566 +0.5547519 0.4894626 0.3544566 +0.5584371 0.4894626 0.3544566 +0.5619986 0.4894626 0.3544566 +0.5654443 0.4894626 0.3544566 +0.5687816 0.4894626 0.3544566 +0.092819 0.4961862 0.3544566 +0.2262531 0.4961862 0.3544566 +0.2875993 0.4961862 0.3544566 +0.3262122 0.4961862 0.3544566 +0.3544566 0.4961862 0.3544566 +0.3767383 0.4961862 0.3544566 +0.3951413 0.4961862 0.3544566 +0.4108177 0.4961862 0.3544566 +0.4244723 0.4961862 0.3544566 +0.4365675 0.4961862 0.3544566 +0.4474232 0.4961862 0.3544566 +0.45727 0.4961862 0.3544566 +0.4662797 0.4961862 0.3544566 +0.4745834 0.4961862 0.3544566 +0.4822838 0.4961862 0.3544566 +0.4894626 0.4961862 0.3544566 +0.4961862 0.4961862 0.3544566 +0.5025087 0.4961862 0.3544566 +0.5084753 0.4961862 0.3544566 +0.514124 0.4961862 0.3544566 +0.519487 0.4961862 0.3544566 +0.5245917 0.4961862 0.3544566 +0.529462 0.4961862 0.3544566 +0.5341183 0.4961862 0.3544566 +0.5385787 0.4961862 0.3544566 +0.5428591 0.4961862 0.3544566 +0.5469733 0.4961862 0.3544566 +0.5509339 0.4961862 0.3544566 +0.5547519 0.4961862 0.3544566 +0.5584371 0.4961862 0.3544566 +0.5619986 0.4961862 0.3544566 +0.5654443 0.4961862 0.3544566 +0.5687816 0.4961862 0.3544566 +0.092819 0.5025087 0.3544566 +0.2262531 0.5025087 0.3544566 +0.2875993 0.5025087 0.3544566 +0.3262122 0.5025087 0.3544566 +0.3544566 0.5025087 0.3544566 +0.3767383 0.5025087 0.3544566 +0.3951413 0.5025087 0.3544566 +0.4108177 0.5025087 0.3544566 +0.4244723 0.5025087 0.3544566 +0.4365675 0.5025087 0.3544566 +0.4474232 0.5025087 0.3544566 +0.45727 0.5025087 0.3544566 +0.4662797 0.5025087 0.3544566 +0.4745834 0.5025087 0.3544566 +0.4822838 0.5025087 0.3544566 +0.4894626 0.5025087 0.3544566 +0.4961862 0.5025087 0.3544566 +0.5025087 0.5025087 0.3544566 +0.5084753 0.5025087 0.3544566 +0.514124 0.5025087 0.3544566 +0.519487 0.5025087 0.3544566 +0.5245917 0.5025087 0.3544566 +0.529462 0.5025087 0.3544566 +0.5341183 0.5025087 0.3544566 +0.5385787 0.5025087 0.3544566 +0.5428591 0.5025087 0.3544566 +0.5469733 0.5025087 0.3544566 +0.5509339 0.5025087 0.3544566 +0.5547519 0.5025087 0.3544566 +0.5584371 0.5025087 0.3544566 +0.5619986 0.5025087 0.3544566 +0.5654443 0.5025087 0.3544566 +0.5687816 0.5025087 0.3544566 +0.092819 0.5084753 0.3544566 +0.2262531 0.5084753 0.3544566 +0.2875993 0.5084753 0.3544566 +0.3262122 0.5084753 0.3544566 +0.3544566 0.5084753 0.3544566 +0.3767383 0.5084753 0.3544566 +0.3951413 0.5084753 0.3544566 +0.4108177 0.5084753 0.3544566 +0.4244723 0.5084753 0.3544566 +0.4365675 0.5084753 0.3544566 +0.4474232 0.5084753 0.3544566 +0.45727 0.5084753 0.3544566 +0.4662797 0.5084753 0.3544566 +0.4745834 0.5084753 0.3544566 +0.4822838 0.5084753 0.3544566 +0.4894626 0.5084753 0.3544566 +0.4961862 0.5084753 0.3544566 +0.5025087 0.5084753 0.3544566 +0.5084753 0.5084753 0.3544566 +0.514124 0.5084753 0.3544566 +0.519487 0.5084753 0.3544566 +0.5245917 0.5084753 0.3544566 +0.529462 0.5084753 0.3544566 +0.5341183 0.5084753 0.3544566 +0.5385787 0.5084753 0.3544566 +0.5428591 0.5084753 0.3544566 +0.5469733 0.5084753 0.3544566 +0.5509339 0.5084753 0.3544566 +0.5547519 0.5084753 0.3544566 +0.5584371 0.5084753 0.3544566 +0.5619986 0.5084753 0.3544566 +0.5654443 0.5084753 0.3544566 +0.5687816 0.5084753 0.3544566 +0.092819 0.514124 0.3544566 +0.2262531 0.514124 0.3544566 +0.2875993 0.514124 0.3544566 +0.3262122 0.514124 0.3544566 +0.3544566 0.514124 0.3544566 +0.3767383 0.514124 0.3544566 +0.3951413 0.514124 0.3544566 +0.4108177 0.514124 0.3544566 +0.4244723 0.514124 0.3544566 +0.4365675 0.514124 0.3544566 +0.4474232 0.514124 0.3544566 +0.45727 0.514124 0.3544566 +0.4662797 0.514124 0.3544566 +0.4745834 0.514124 0.3544566 +0.4822838 0.514124 0.3544566 +0.4894626 0.514124 0.3544566 +0.4961862 0.514124 0.3544566 +0.5025087 0.514124 0.3544566 +0.5084753 0.514124 0.3544566 +0.514124 0.514124 0.3544566 +0.519487 0.514124 0.3544566 +0.5245917 0.514124 0.3544566 +0.529462 0.514124 0.3544566 +0.5341183 0.514124 0.3544566 +0.5385787 0.514124 0.3544566 +0.5428591 0.514124 0.3544566 +0.5469733 0.514124 0.3544566 +0.5509339 0.514124 0.3544566 +0.5547519 0.514124 0.3544566 +0.5584371 0.514124 0.3544566 +0.5619986 0.514124 0.3544566 +0.5654443 0.514124 0.3544566 +0.5687816 0.514124 0.3544566 +0.092819 0.519487 0.3544566 +0.2262531 0.519487 0.3544566 +0.2875993 0.519487 0.3544566 +0.3262122 0.519487 0.3544566 +0.3544566 0.519487 0.3544566 +0.3767383 0.519487 0.3544566 +0.3951413 0.519487 0.3544566 +0.4108177 0.519487 0.3544566 +0.4244723 0.519487 0.3544566 +0.4365675 0.519487 0.3544566 +0.4474232 0.519487 0.3544566 +0.45727 0.519487 0.3544566 +0.4662797 0.519487 0.3544566 +0.4745834 0.519487 0.3544566 +0.4822838 0.519487 0.3544566 +0.4894626 0.519487 0.3544566 +0.4961862 0.519487 0.3544566 +0.5025087 0.519487 0.3544566 +0.5084753 0.519487 0.3544566 +0.514124 0.519487 0.3544566 +0.519487 0.519487 0.3544566 +0.5245917 0.519487 0.3544566 +0.529462 0.519487 0.3544566 +0.5341183 0.519487 0.3544566 +0.5385787 0.519487 0.3544566 +0.5428591 0.519487 0.3544566 +0.5469733 0.519487 0.3544566 +0.5509339 0.519487 0.3544566 +0.5547519 0.519487 0.3544566 +0.5584371 0.519487 0.3544566 +0.5619986 0.519487 0.3544566 +0.5654443 0.519487 0.3544566 +0.5687816 0.519487 0.3544566 +0.092819 0.5245917 0.3544566 +0.2262531 0.5245917 0.3544566 +0.2875993 0.5245917 0.3544566 +0.3262122 0.5245917 0.3544566 +0.3544566 0.5245917 0.3544566 +0.3767383 0.5245917 0.3544566 +0.3951413 0.5245917 0.3544566 +0.4108177 0.5245917 0.3544566 +0.4244723 0.5245917 0.3544566 +0.4365675 0.5245917 0.3544566 +0.4474232 0.5245917 0.3544566 +0.45727 0.5245917 0.3544566 +0.4662797 0.5245917 0.3544566 +0.4745834 0.5245917 0.3544566 +0.4822838 0.5245917 0.3544566 +0.4894626 0.5245917 0.3544566 +0.4961862 0.5245917 0.3544566 +0.5025087 0.5245917 0.3544566 +0.5084753 0.5245917 0.3544566 +0.514124 0.5245917 0.3544566 +0.519487 0.5245917 0.3544566 +0.5245917 0.5245917 0.3544566 +0.529462 0.5245917 0.3544566 +0.5341183 0.5245917 0.3544566 +0.5385787 0.5245917 0.3544566 +0.5428591 0.5245917 0.3544566 +0.5469733 0.5245917 0.3544566 +0.5509339 0.5245917 0.3544566 +0.5547519 0.5245917 0.3544566 +0.5584371 0.5245917 0.3544566 +0.5619986 0.5245917 0.3544566 +0.5654443 0.5245917 0.3544566 +0.5687816 0.5245917 0.3544566 +0.092819 0.529462 0.3544566 +0.2262531 0.529462 0.3544566 +0.2875993 0.529462 0.3544566 +0.3262122 0.529462 0.3544566 +0.3544566 0.529462 0.3544566 +0.3767383 0.529462 0.3544566 +0.3951413 0.529462 0.3544566 +0.4108177 0.529462 0.3544566 +0.4244723 0.529462 0.3544566 +0.4365675 0.529462 0.3544566 +0.4474232 0.529462 0.3544566 +0.45727 0.529462 0.3544566 +0.4662797 0.529462 0.3544566 +0.4745834 0.529462 0.3544566 +0.4822838 0.529462 0.3544566 +0.4894626 0.529462 0.3544566 +0.4961862 0.529462 0.3544566 +0.5025087 0.529462 0.3544566 +0.5084753 0.529462 0.3544566 +0.514124 0.529462 0.3544566 +0.519487 0.529462 0.3544566 +0.5245917 0.529462 0.3544566 +0.529462 0.529462 0.3544566 +0.5341183 0.529462 0.3544566 +0.5385787 0.529462 0.3544566 +0.5428591 0.529462 0.3544566 +0.5469733 0.529462 0.3544566 +0.5509339 0.529462 0.3544566 +0.5547519 0.529462 0.3544566 +0.5584371 0.529462 0.3544566 +0.5619986 0.529462 0.3544566 +0.5654443 0.529462 0.3544566 +0.5687816 0.529462 0.3544566 +0.092819 0.5341183 0.3544566 +0.2262531 0.5341183 0.3544566 +0.2875993 0.5341183 0.3544566 +0.3262122 0.5341183 0.3544566 +0.3544566 0.5341183 0.3544566 +0.3767383 0.5341183 0.3544566 +0.3951413 0.5341183 0.3544566 +0.4108177 0.5341183 0.3544566 +0.4244723 0.5341183 0.3544566 +0.4365675 0.5341183 0.3544566 +0.4474232 0.5341183 0.3544566 +0.45727 0.5341183 0.3544566 +0.4662797 0.5341183 0.3544566 +0.4745834 0.5341183 0.3544566 +0.4822838 0.5341183 0.3544566 +0.4894626 0.5341183 0.3544566 +0.4961862 0.5341183 0.3544566 +0.5025087 0.5341183 0.3544566 +0.5084753 0.5341183 0.3544566 +0.514124 0.5341183 0.3544566 +0.519487 0.5341183 0.3544566 +0.5245917 0.5341183 0.3544566 +0.529462 0.5341183 0.3544566 +0.5341183 0.5341183 0.3544566 +0.5385787 0.5341183 0.3544566 +0.5428591 0.5341183 0.3544566 +0.5469733 0.5341183 0.3544566 +0.5509339 0.5341183 0.3544566 +0.5547519 0.5341183 0.3544566 +0.5584371 0.5341183 0.3544566 +0.5619986 0.5341183 0.3544566 +0.5654443 0.5341183 0.3544566 +0.5687816 0.5341183 0.3544566 +0.092819 0.5385787 0.3544566 +0.2262531 0.5385787 0.3544566 +0.2875993 0.5385787 0.3544566 +0.3262122 0.5385787 0.3544566 +0.3544566 0.5385787 0.3544566 +0.3767383 0.5385787 0.3544566 +0.3951413 0.5385787 0.3544566 +0.4108177 0.5385787 0.3544566 +0.4244723 0.5385787 0.3544566 +0.4365675 0.5385787 0.3544566 +0.4474232 0.5385787 0.3544566 +0.45727 0.5385787 0.3544566 +0.4662797 0.5385787 0.3544566 +0.4745834 0.5385787 0.3544566 +0.4822838 0.5385787 0.3544566 +0.4894626 0.5385787 0.3544566 +0.4961862 0.5385787 0.3544566 +0.5025087 0.5385787 0.3544566 +0.5084753 0.5385787 0.3544566 +0.514124 0.5385787 0.3544566 +0.519487 0.5385787 0.3544566 +0.5245917 0.5385787 0.3544566 +0.529462 0.5385787 0.3544566 +0.5341183 0.5385787 0.3544566 +0.5385787 0.5385787 0.3544566 +0.5428591 0.5385787 0.3544566 +0.5469733 0.5385787 0.3544566 +0.5509339 0.5385787 0.3544566 +0.5547519 0.5385787 0.3544566 +0.5584371 0.5385787 0.3544566 +0.5619986 0.5385787 0.3544566 +0.5654443 0.5385787 0.3544566 +0.5687816 0.5385787 0.3544566 +0.092819 0.5428591 0.3544566 +0.2262531 0.5428591 0.3544566 +0.2875993 0.5428591 0.3544566 +0.3262122 0.5428591 0.3544566 +0.3544566 0.5428591 0.3544566 +0.3767383 0.5428591 0.3544566 +0.3951413 0.5428591 0.3544566 +0.4108177 0.5428591 0.3544566 +0.4244723 0.5428591 0.3544566 +0.4365675 0.5428591 0.3544566 +0.4474232 0.5428591 0.3544566 +0.45727 0.5428591 0.3544566 +0.4662797 0.5428591 0.3544566 +0.4745834 0.5428591 0.3544566 +0.4822838 0.5428591 0.3544566 +0.4894626 0.5428591 0.3544566 +0.4961862 0.5428591 0.3544566 +0.5025087 0.5428591 0.3544566 +0.5084753 0.5428591 0.3544566 +0.514124 0.5428591 0.3544566 +0.519487 0.5428591 0.3544566 +0.5245917 0.5428591 0.3544566 +0.529462 0.5428591 0.3544566 +0.5341183 0.5428591 0.3544566 +0.5385787 0.5428591 0.3544566 +0.5428591 0.5428591 0.3544566 +0.5469733 0.5428591 0.3544566 +0.5509339 0.5428591 0.3544566 +0.5547519 0.5428591 0.3544566 +0.5584371 0.5428591 0.3544566 +0.5619986 0.5428591 0.3544566 +0.5654443 0.5428591 0.3544566 +0.5687816 0.5428591 0.3544566 +0.092819 0.5469733 0.3544566 +0.2262531 0.5469733 0.3544566 +0.2875993 0.5469733 0.3544566 +0.3262122 0.5469733 0.3544566 +0.3544566 0.5469733 0.3544566 +0.3767383 0.5469733 0.3544566 +0.3951413 0.5469733 0.3544566 +0.4108177 0.5469733 0.3544566 +0.4244723 0.5469733 0.3544566 +0.4365675 0.5469733 0.3544566 +0.4474232 0.5469733 0.3544566 +0.45727 0.5469733 0.3544566 +0.4662797 0.5469733 0.3544566 +0.4745834 0.5469733 0.3544566 +0.4822838 0.5469733 0.3544566 +0.4894626 0.5469733 0.3544566 +0.4961862 0.5469733 0.3544566 +0.5025087 0.5469733 0.3544566 +0.5084753 0.5469733 0.3544566 +0.514124 0.5469733 0.3544566 +0.519487 0.5469733 0.3544566 +0.5245917 0.5469733 0.3544566 +0.529462 0.5469733 0.3544566 +0.5341183 0.5469733 0.3544566 +0.5385787 0.5469733 0.3544566 +0.5428591 0.5469733 0.3544566 +0.5469733 0.5469733 0.3544566 +0.5509339 0.5469733 0.3544566 +0.5547519 0.5469733 0.3544566 +0.5584371 0.5469733 0.3544566 +0.5619986 0.5469733 0.3544566 +0.5654443 0.5469733 0.3544566 +0.5687816 0.5469733 0.3544566 +0.092819 0.5509339 0.3544566 +0.2262531 0.5509339 0.3544566 +0.2875993 0.5509339 0.3544566 +0.3262122 0.5509339 0.3544566 +0.3544566 0.5509339 0.3544566 +0.3767383 0.5509339 0.3544566 +0.3951413 0.5509339 0.3544566 +0.4108177 0.5509339 0.3544566 +0.4244723 0.5509339 0.3544566 +0.4365675 0.5509339 0.3544566 +0.4474232 0.5509339 0.3544566 +0.45727 0.5509339 0.3544566 +0.4662797 0.5509339 0.3544566 +0.4745834 0.5509339 0.3544566 +0.4822838 0.5509339 0.3544566 +0.4894626 0.5509339 0.3544566 +0.4961862 0.5509339 0.3544566 +0.5025087 0.5509339 0.3544566 +0.5084753 0.5509339 0.3544566 +0.514124 0.5509339 0.3544566 +0.519487 0.5509339 0.3544566 +0.5245917 0.5509339 0.3544566 +0.529462 0.5509339 0.3544566 +0.5341183 0.5509339 0.3544566 +0.5385787 0.5509339 0.3544566 +0.5428591 0.5509339 0.3544566 +0.5469733 0.5509339 0.3544566 +0.5509339 0.5509339 0.3544566 +0.5547519 0.5509339 0.3544566 +0.5584371 0.5509339 0.3544566 +0.5619986 0.5509339 0.3544566 +0.5654443 0.5509339 0.3544566 +0.5687816 0.5509339 0.3544566 +0.092819 0.5547519 0.3544566 +0.2262531 0.5547519 0.3544566 +0.2875993 0.5547519 0.3544566 +0.3262122 0.5547519 0.3544566 +0.3544566 0.5547519 0.3544566 +0.3767383 0.5547519 0.3544566 +0.3951413 0.5547519 0.3544566 +0.4108177 0.5547519 0.3544566 +0.4244723 0.5547519 0.3544566 +0.4365675 0.5547519 0.3544566 +0.4474232 0.5547519 0.3544566 +0.45727 0.5547519 0.3544566 +0.4662797 0.5547519 0.3544566 +0.4745834 0.5547519 0.3544566 +0.4822838 0.5547519 0.3544566 +0.4894626 0.5547519 0.3544566 +0.4961862 0.5547519 0.3544566 +0.5025087 0.5547519 0.3544566 +0.5084753 0.5547519 0.3544566 +0.514124 0.5547519 0.3544566 +0.519487 0.5547519 0.3544566 +0.5245917 0.5547519 0.3544566 +0.529462 0.5547519 0.3544566 +0.5341183 0.5547519 0.3544566 +0.5385787 0.5547519 0.3544566 +0.5428591 0.5547519 0.3544566 +0.5469733 0.5547519 0.3544566 +0.5509339 0.5547519 0.3544566 +0.5547519 0.5547519 0.3544566 +0.5584371 0.5547519 0.3544566 +0.5619986 0.5547519 0.3544566 +0.5654443 0.5547519 0.3544566 +0.5687816 0.5547519 0.3544566 +0.092819 0.5584371 0.3544566 +0.2262531 0.5584371 0.3544566 +0.2875993 0.5584371 0.3544566 +0.3262122 0.5584371 0.3544566 +0.3544566 0.5584371 0.3544566 +0.3767383 0.5584371 0.3544566 +0.3951413 0.5584371 0.3544566 +0.4108177 0.5584371 0.3544566 +0.4244723 0.5584371 0.3544566 +0.4365675 0.5584371 0.3544566 +0.4474232 0.5584371 0.3544566 +0.45727 0.5584371 0.3544566 +0.4662797 0.5584371 0.3544566 +0.4745834 0.5584371 0.3544566 +0.4822838 0.5584371 0.3544566 +0.4894626 0.5584371 0.3544566 +0.4961862 0.5584371 0.3544566 +0.5025087 0.5584371 0.3544566 +0.5084753 0.5584371 0.3544566 +0.514124 0.5584371 0.3544566 +0.519487 0.5584371 0.3544566 +0.5245917 0.5584371 0.3544566 +0.529462 0.5584371 0.3544566 +0.5341183 0.5584371 0.3544566 +0.5385787 0.5584371 0.3544566 +0.5428591 0.5584371 0.3544566 +0.5469733 0.5584371 0.3544566 +0.5509339 0.5584371 0.3544566 +0.5547519 0.5584371 0.3544566 +0.5584371 0.5584371 0.3544566 +0.5619986 0.5584371 0.3544566 +0.5654443 0.5584371 0.3544566 +0.5687816 0.5584371 0.3544566 +0.092819 0.5619986 0.3544566 +0.2262531 0.5619986 0.3544566 +0.2875993 0.5619986 0.3544566 +0.3262122 0.5619986 0.3544566 +0.3544566 0.5619986 0.3544566 +0.3767383 0.5619986 0.3544566 +0.3951413 0.5619986 0.3544566 +0.4108177 0.5619986 0.3544566 +0.4244723 0.5619986 0.3544566 +0.4365675 0.5619986 0.3544566 +0.4474232 0.5619986 0.3544566 +0.45727 0.5619986 0.3544566 +0.4662797 0.5619986 0.3544566 +0.4745834 0.5619986 0.3544566 +0.4822838 0.5619986 0.3544566 +0.4894626 0.5619986 0.3544566 +0.4961862 0.5619986 0.3544566 +0.5025087 0.5619986 0.3544566 +0.5084753 0.5619986 0.3544566 +0.514124 0.5619986 0.3544566 +0.519487 0.5619986 0.3544566 +0.5245917 0.5619986 0.3544566 +0.529462 0.5619986 0.3544566 +0.5341183 0.5619986 0.3544566 +0.5385787 0.5619986 0.3544566 +0.5428591 0.5619986 0.3544566 +0.5469733 0.5619986 0.3544566 +0.5509339 0.5619986 0.3544566 +0.5547519 0.5619986 0.3544566 +0.5584371 0.5619986 0.3544566 +0.5619986 0.5619986 0.3544566 +0.5654443 0.5619986 0.3544566 +0.5687816 0.5619986 0.3544566 +0.092819 0.5654443 0.3544566 +0.2262531 0.5654443 0.3544566 +0.2875993 0.5654443 0.3544566 +0.3262122 0.5654443 0.3544566 +0.3544566 0.5654443 0.3544566 +0.3767383 0.5654443 0.3544566 +0.3951413 0.5654443 0.3544566 +0.4108177 0.5654443 0.3544566 +0.4244723 0.5654443 0.3544566 +0.4365675 0.5654443 0.3544566 +0.4474232 0.5654443 0.3544566 +0.45727 0.5654443 0.3544566 +0.4662797 0.5654443 0.3544566 +0.4745834 0.5654443 0.3544566 +0.4822838 0.5654443 0.3544566 +0.4894626 0.5654443 0.3544566 +0.4961862 0.5654443 0.3544566 +0.5025087 0.5654443 0.3544566 +0.5084753 0.5654443 0.3544566 +0.514124 0.5654443 0.3544566 +0.519487 0.5654443 0.3544566 +0.5245917 0.5654443 0.3544566 +0.529462 0.5654443 0.3544566 +0.5341183 0.5654443 0.3544566 +0.5385787 0.5654443 0.3544566 +0.5428591 0.5654443 0.3544566 +0.5469733 0.5654443 0.3544566 +0.5509339 0.5654443 0.3544566 +0.5547519 0.5654443 0.3544566 +0.5584371 0.5654443 0.3544566 +0.5619986 0.5654443 0.3544566 +0.5654443 0.5654443 0.3544566 +0.5687816 0.5654443 0.3544566 +0.092819 0.5687816 0.3544566 +0.2262531 0.5687816 0.3544566 +0.2875993 0.5687816 0.3544566 +0.3262122 0.5687816 0.3544566 +0.3544566 0.5687816 0.3544566 +0.3767383 0.5687816 0.3544566 +0.3951413 0.5687816 0.3544566 +0.4108177 0.5687816 0.3544566 +0.4244723 0.5687816 0.3544566 +0.4365675 0.5687816 0.3544566 +0.4474232 0.5687816 0.3544566 +0.45727 0.5687816 0.3544566 +0.4662797 0.5687816 0.3544566 +0.4745834 0.5687816 0.3544566 +0.4822838 0.5687816 0.3544566 +0.4894626 0.5687816 0.3544566 +0.4961862 0.5687816 0.3544566 +0.5025087 0.5687816 0.3544566 +0.5084753 0.5687816 0.3544566 +0.514124 0.5687816 0.3544566 +0.519487 0.5687816 0.3544566 +0.5245917 0.5687816 0.3544566 +0.529462 0.5687816 0.3544566 +0.5341183 0.5687816 0.3544566 +0.5385787 0.5687816 0.3544566 +0.5428591 0.5687816 0.3544566 +0.5469733 0.5687816 0.3544566 +0.5509339 0.5687816 0.3544566 +0.5547519 0.5687816 0.3544566 +0.5584371 0.5687816 0.3544566 +0.5619986 0.5687816 0.3544566 +0.5654443 0.5687816 0.3544566 +0.5687816 0.5687816 0.3544566 +0.092819 0.092819 0.3767383 +0.2262531 0.092819 0.3767383 +0.2875993 0.092819 0.3767383 +0.3262122 0.092819 0.3767383 +0.3544566 0.092819 0.3767383 +0.3767383 0.092819 0.3767383 +0.3951413 0.092819 0.3767383 +0.4108177 0.092819 0.3767383 +0.4244723 0.092819 0.3767383 +0.4365675 0.092819 0.3767383 +0.4474232 0.092819 0.3767383 +0.45727 0.092819 0.3767383 +0.4662797 0.092819 0.3767383 +0.4745834 0.092819 0.3767383 +0.4822838 0.092819 0.3767383 +0.4894626 0.092819 0.3767383 +0.4961862 0.092819 0.3767383 +0.5025087 0.092819 0.3767383 +0.5084753 0.092819 0.3767383 +0.514124 0.092819 0.3767383 +0.519487 0.092819 0.3767383 +0.5245917 0.092819 0.3767383 +0.529462 0.092819 0.3767383 +0.5341183 0.092819 0.3767383 +0.5385787 0.092819 0.3767383 +0.5428591 0.092819 0.3767383 +0.5469733 0.092819 0.3767383 +0.5509339 0.092819 0.3767383 +0.5547519 0.092819 0.3767383 +0.5584371 0.092819 0.3767383 +0.5619986 0.092819 0.3767383 +0.5654443 0.092819 0.3767383 +0.5687816 0.092819 0.3767383 +0.092819 0.2262531 0.3767383 +0.2262531 0.2262531 0.3767383 +0.2875993 0.2262531 0.3767383 +0.3262122 0.2262531 0.3767383 +0.3544566 0.2262531 0.3767383 +0.3767383 0.2262531 0.3767383 +0.3951413 0.2262531 0.3767383 +0.4108177 0.2262531 0.3767383 +0.4244723 0.2262531 0.3767383 +0.4365675 0.2262531 0.3767383 +0.4474232 0.2262531 0.3767383 +0.45727 0.2262531 0.3767383 +0.4662797 0.2262531 0.3767383 +0.4745834 0.2262531 0.3767383 +0.4822838 0.2262531 0.3767383 +0.4894626 0.2262531 0.3767383 +0.4961862 0.2262531 0.3767383 +0.5025087 0.2262531 0.3767383 +0.5084753 0.2262531 0.3767383 +0.514124 0.2262531 0.3767383 +0.519487 0.2262531 0.3767383 +0.5245917 0.2262531 0.3767383 +0.529462 0.2262531 0.3767383 +0.5341183 0.2262531 0.3767383 +0.5385787 0.2262531 0.3767383 +0.5428591 0.2262531 0.3767383 +0.5469733 0.2262531 0.3767383 +0.5509339 0.2262531 0.3767383 +0.5547519 0.2262531 0.3767383 +0.5584371 0.2262531 0.3767383 +0.5619986 0.2262531 0.3767383 +0.5654443 0.2262531 0.3767383 +0.5687816 0.2262531 0.3767383 +0.092819 0.2875993 0.3767383 +0.2262531 0.2875993 0.3767383 +0.2875993 0.2875993 0.3767383 +0.3262122 0.2875993 0.3767383 +0.3544566 0.2875993 0.3767383 +0.3767383 0.2875993 0.3767383 +0.3951413 0.2875993 0.3767383 +0.4108177 0.2875993 0.3767383 +0.4244723 0.2875993 0.3767383 +0.4365675 0.2875993 0.3767383 +0.4474232 0.2875993 0.3767383 +0.45727 0.2875993 0.3767383 +0.4662797 0.2875993 0.3767383 +0.4745834 0.2875993 0.3767383 +0.4822838 0.2875993 0.3767383 +0.4894626 0.2875993 0.3767383 +0.4961862 0.2875993 0.3767383 +0.5025087 0.2875993 0.3767383 +0.5084753 0.2875993 0.3767383 +0.514124 0.2875993 0.3767383 +0.519487 0.2875993 0.3767383 +0.5245917 0.2875993 0.3767383 +0.529462 0.2875993 0.3767383 +0.5341183 0.2875993 0.3767383 +0.5385787 0.2875993 0.3767383 +0.5428591 0.2875993 0.3767383 +0.5469733 0.2875993 0.3767383 +0.5509339 0.2875993 0.3767383 +0.5547519 0.2875993 0.3767383 +0.5584371 0.2875993 0.3767383 +0.5619986 0.2875993 0.3767383 +0.5654443 0.2875993 0.3767383 +0.5687816 0.2875993 0.3767383 +0.092819 0.3262122 0.3767383 +0.2262531 0.3262122 0.3767383 +0.2875993 0.3262122 0.3767383 +0.3262122 0.3262122 0.3767383 +0.3544566 0.3262122 0.3767383 +0.3767383 0.3262122 0.3767383 +0.3951413 0.3262122 0.3767383 +0.4108177 0.3262122 0.3767383 +0.4244723 0.3262122 0.3767383 +0.4365675 0.3262122 0.3767383 +0.4474232 0.3262122 0.3767383 +0.45727 0.3262122 0.3767383 +0.4662797 0.3262122 0.3767383 +0.4745834 0.3262122 0.3767383 +0.4822838 0.3262122 0.3767383 +0.4894626 0.3262122 0.3767383 +0.4961862 0.3262122 0.3767383 +0.5025087 0.3262122 0.3767383 +0.5084753 0.3262122 0.3767383 +0.514124 0.3262122 0.3767383 +0.519487 0.3262122 0.3767383 +0.5245917 0.3262122 0.3767383 +0.529462 0.3262122 0.3767383 +0.5341183 0.3262122 0.3767383 +0.5385787 0.3262122 0.3767383 +0.5428591 0.3262122 0.3767383 +0.5469733 0.3262122 0.3767383 +0.5509339 0.3262122 0.3767383 +0.5547519 0.3262122 0.3767383 +0.5584371 0.3262122 0.3767383 +0.5619986 0.3262122 0.3767383 +0.5654443 0.3262122 0.3767383 +0.5687816 0.3262122 0.3767383 +0.092819 0.3544566 0.3767383 +0.2262531 0.3544566 0.3767383 +0.2875993 0.3544566 0.3767383 +0.3262122 0.3544566 0.3767383 +0.3544566 0.3544566 0.3767383 +0.3767383 0.3544566 0.3767383 +0.3951413 0.3544566 0.3767383 +0.4108177 0.3544566 0.3767383 +0.4244723 0.3544566 0.3767383 +0.4365675 0.3544566 0.3767383 +0.4474232 0.3544566 0.3767383 +0.45727 0.3544566 0.3767383 +0.4662797 0.3544566 0.3767383 +0.4745834 0.3544566 0.3767383 +0.4822838 0.3544566 0.3767383 +0.4894626 0.3544566 0.3767383 +0.4961862 0.3544566 0.3767383 +0.5025087 0.3544566 0.3767383 +0.5084753 0.3544566 0.3767383 +0.514124 0.3544566 0.3767383 +0.519487 0.3544566 0.3767383 +0.5245917 0.3544566 0.3767383 +0.529462 0.3544566 0.3767383 +0.5341183 0.3544566 0.3767383 +0.5385787 0.3544566 0.3767383 +0.5428591 0.3544566 0.3767383 +0.5469733 0.3544566 0.3767383 +0.5509339 0.3544566 0.3767383 +0.5547519 0.3544566 0.3767383 +0.5584371 0.3544566 0.3767383 +0.5619986 0.3544566 0.3767383 +0.5654443 0.3544566 0.3767383 +0.5687816 0.3544566 0.3767383 +0.092819 0.3767383 0.3767383 +0.2262531 0.3767383 0.3767383 +0.2875993 0.3767383 0.3767383 +0.3262122 0.3767383 0.3767383 +0.3544566 0.3767383 0.3767383 +0.3767383 0.3767383 0.3767383 +0.3951413 0.3767383 0.3767383 +0.4108177 0.3767383 0.3767383 +0.4244723 0.3767383 0.3767383 +0.4365675 0.3767383 0.3767383 +0.4474232 0.3767383 0.3767383 +0.45727 0.3767383 0.3767383 +0.4662797 0.3767383 0.3767383 +0.4745834 0.3767383 0.3767383 +0.4822838 0.3767383 0.3767383 +0.4894626 0.3767383 0.3767383 +0.4961862 0.3767383 0.3767383 +0.5025087 0.3767383 0.3767383 +0.5084753 0.3767383 0.3767383 +0.514124 0.3767383 0.3767383 +0.519487 0.3767383 0.3767383 +0.5245917 0.3767383 0.3767383 +0.529462 0.3767383 0.3767383 +0.5341183 0.3767383 0.3767383 +0.5385787 0.3767383 0.3767383 +0.5428591 0.3767383 0.3767383 +0.5469733 0.3767383 0.3767383 +0.5509339 0.3767383 0.3767383 +0.5547519 0.3767383 0.3767383 +0.5584371 0.3767383 0.3767383 +0.5619986 0.3767383 0.3767383 +0.5654443 0.3767383 0.3767383 +0.5687816 0.3767383 0.3767383 +0.092819 0.3951413 0.3767383 +0.2262531 0.3951413 0.3767383 +0.2875993 0.3951413 0.3767383 +0.3262122 0.3951413 0.3767383 +0.3544566 0.3951413 0.3767383 +0.3767383 0.3951413 0.3767383 +0.3951413 0.3951413 0.3767383 +0.4108177 0.3951413 0.3767383 +0.4244723 0.3951413 0.3767383 +0.4365675 0.3951413 0.3767383 +0.4474232 0.3951413 0.3767383 +0.45727 0.3951413 0.3767383 +0.4662797 0.3951413 0.3767383 +0.4745834 0.3951413 0.3767383 +0.4822838 0.3951413 0.3767383 +0.4894626 0.3951413 0.3767383 +0.4961862 0.3951413 0.3767383 +0.5025087 0.3951413 0.3767383 +0.5084753 0.3951413 0.3767383 +0.514124 0.3951413 0.3767383 +0.519487 0.3951413 0.3767383 +0.5245917 0.3951413 0.3767383 +0.529462 0.3951413 0.3767383 +0.5341183 0.3951413 0.3767383 +0.5385787 0.3951413 0.3767383 +0.5428591 0.3951413 0.3767383 +0.5469733 0.3951413 0.3767383 +0.5509339 0.3951413 0.3767383 +0.5547519 0.3951413 0.3767383 +0.5584371 0.3951413 0.3767383 +0.5619986 0.3951413 0.3767383 +0.5654443 0.3951413 0.3767383 +0.5687816 0.3951413 0.3767383 +0.092819 0.4108177 0.3767383 +0.2262531 0.4108177 0.3767383 +0.2875993 0.4108177 0.3767383 +0.3262122 0.4108177 0.3767383 +0.3544566 0.4108177 0.3767383 +0.3767383 0.4108177 0.3767383 +0.3951413 0.4108177 0.3767383 +0.4108177 0.4108177 0.3767383 +0.4244723 0.4108177 0.3767383 +0.4365675 0.4108177 0.3767383 +0.4474232 0.4108177 0.3767383 +0.45727 0.4108177 0.3767383 +0.4662797 0.4108177 0.3767383 +0.4745834 0.4108177 0.3767383 +0.4822838 0.4108177 0.3767383 +0.4894626 0.4108177 0.3767383 +0.4961862 0.4108177 0.3767383 +0.5025087 0.4108177 0.3767383 +0.5084753 0.4108177 0.3767383 +0.514124 0.4108177 0.3767383 +0.519487 0.4108177 0.3767383 +0.5245917 0.4108177 0.3767383 +0.529462 0.4108177 0.3767383 +0.5341183 0.4108177 0.3767383 +0.5385787 0.4108177 0.3767383 +0.5428591 0.4108177 0.3767383 +0.5469733 0.4108177 0.3767383 +0.5509339 0.4108177 0.3767383 +0.5547519 0.4108177 0.3767383 +0.5584371 0.4108177 0.3767383 +0.5619986 0.4108177 0.3767383 +0.5654443 0.4108177 0.3767383 +0.5687816 0.4108177 0.3767383 +0.092819 0.4244723 0.3767383 +0.2262531 0.4244723 0.3767383 +0.2875993 0.4244723 0.3767383 +0.3262122 0.4244723 0.3767383 +0.3544566 0.4244723 0.3767383 +0.3767383 0.4244723 0.3767383 +0.3951413 0.4244723 0.3767383 +0.4108177 0.4244723 0.3767383 +0.4244723 0.4244723 0.3767383 +0.4365675 0.4244723 0.3767383 +0.4474232 0.4244723 0.3767383 +0.45727 0.4244723 0.3767383 +0.4662797 0.4244723 0.3767383 +0.4745834 0.4244723 0.3767383 +0.4822838 0.4244723 0.3767383 +0.4894626 0.4244723 0.3767383 +0.4961862 0.4244723 0.3767383 +0.5025087 0.4244723 0.3767383 +0.5084753 0.4244723 0.3767383 +0.514124 0.4244723 0.3767383 +0.519487 0.4244723 0.3767383 +0.5245917 0.4244723 0.3767383 +0.529462 0.4244723 0.3767383 +0.5341183 0.4244723 0.3767383 +0.5385787 0.4244723 0.3767383 +0.5428591 0.4244723 0.3767383 +0.5469733 0.4244723 0.3767383 +0.5509339 0.4244723 0.3767383 +0.5547519 0.4244723 0.3767383 +0.5584371 0.4244723 0.3767383 +0.5619986 0.4244723 0.3767383 +0.5654443 0.4244723 0.3767383 +0.5687816 0.4244723 0.3767383 +0.092819 0.4365675 0.3767383 +0.2262531 0.4365675 0.3767383 +0.2875993 0.4365675 0.3767383 +0.3262122 0.4365675 0.3767383 +0.3544566 0.4365675 0.3767383 +0.3767383 0.4365675 0.3767383 +0.3951413 0.4365675 0.3767383 +0.4108177 0.4365675 0.3767383 +0.4244723 0.4365675 0.3767383 +0.4365675 0.4365675 0.3767383 +0.4474232 0.4365675 0.3767383 +0.45727 0.4365675 0.3767383 +0.4662797 0.4365675 0.3767383 +0.4745834 0.4365675 0.3767383 +0.4822838 0.4365675 0.3767383 +0.4894626 0.4365675 0.3767383 +0.4961862 0.4365675 0.3767383 +0.5025087 0.4365675 0.3767383 +0.5084753 0.4365675 0.3767383 +0.514124 0.4365675 0.3767383 +0.519487 0.4365675 0.3767383 +0.5245917 0.4365675 0.3767383 +0.529462 0.4365675 0.3767383 +0.5341183 0.4365675 0.3767383 +0.5385787 0.4365675 0.3767383 +0.5428591 0.4365675 0.3767383 +0.5469733 0.4365675 0.3767383 +0.5509339 0.4365675 0.3767383 +0.5547519 0.4365675 0.3767383 +0.5584371 0.4365675 0.3767383 +0.5619986 0.4365675 0.3767383 +0.5654443 0.4365675 0.3767383 +0.5687816 0.4365675 0.3767383 +0.092819 0.4474232 0.3767383 +0.2262531 0.4474232 0.3767383 +0.2875993 0.4474232 0.3767383 +0.3262122 0.4474232 0.3767383 +0.3544566 0.4474232 0.3767383 +0.3767383 0.4474232 0.3767383 +0.3951413 0.4474232 0.3767383 +0.4108177 0.4474232 0.3767383 +0.4244723 0.4474232 0.3767383 +0.4365675 0.4474232 0.3767383 +0.4474232 0.4474232 0.3767383 +0.45727 0.4474232 0.3767383 +0.4662797 0.4474232 0.3767383 +0.4745834 0.4474232 0.3767383 +0.4822838 0.4474232 0.3767383 +0.4894626 0.4474232 0.3767383 +0.4961862 0.4474232 0.3767383 +0.5025087 0.4474232 0.3767383 +0.5084753 0.4474232 0.3767383 +0.514124 0.4474232 0.3767383 +0.519487 0.4474232 0.3767383 +0.5245917 0.4474232 0.3767383 +0.529462 0.4474232 0.3767383 +0.5341183 0.4474232 0.3767383 +0.5385787 0.4474232 0.3767383 +0.5428591 0.4474232 0.3767383 +0.5469733 0.4474232 0.3767383 +0.5509339 0.4474232 0.3767383 +0.5547519 0.4474232 0.3767383 +0.5584371 0.4474232 0.3767383 +0.5619986 0.4474232 0.3767383 +0.5654443 0.4474232 0.3767383 +0.5687816 0.4474232 0.3767383 +0.092819 0.45727 0.3767383 +0.2262531 0.45727 0.3767383 +0.2875993 0.45727 0.3767383 +0.3262122 0.45727 0.3767383 +0.3544566 0.45727 0.3767383 +0.3767383 0.45727 0.3767383 +0.3951413 0.45727 0.3767383 +0.4108177 0.45727 0.3767383 +0.4244723 0.45727 0.3767383 +0.4365675 0.45727 0.3767383 +0.4474232 0.45727 0.3767383 +0.45727 0.45727 0.3767383 +0.4662797 0.45727 0.3767383 +0.4745834 0.45727 0.3767383 +0.4822838 0.45727 0.3767383 +0.4894626 0.45727 0.3767383 +0.4961862 0.45727 0.3767383 +0.5025087 0.45727 0.3767383 +0.5084753 0.45727 0.3767383 +0.514124 0.45727 0.3767383 +0.519487 0.45727 0.3767383 +0.5245917 0.45727 0.3767383 +0.529462 0.45727 0.3767383 +0.5341183 0.45727 0.3767383 +0.5385787 0.45727 0.3767383 +0.5428591 0.45727 0.3767383 +0.5469733 0.45727 0.3767383 +0.5509339 0.45727 0.3767383 +0.5547519 0.45727 0.3767383 +0.5584371 0.45727 0.3767383 +0.5619986 0.45727 0.3767383 +0.5654443 0.45727 0.3767383 +0.5687816 0.45727 0.3767383 +0.092819 0.4662797 0.3767383 +0.2262531 0.4662797 0.3767383 +0.2875993 0.4662797 0.3767383 +0.3262122 0.4662797 0.3767383 +0.3544566 0.4662797 0.3767383 +0.3767383 0.4662797 0.3767383 +0.3951413 0.4662797 0.3767383 +0.4108177 0.4662797 0.3767383 +0.4244723 0.4662797 0.3767383 +0.4365675 0.4662797 0.3767383 +0.4474232 0.4662797 0.3767383 +0.45727 0.4662797 0.3767383 +0.4662797 0.4662797 0.3767383 +0.4745834 0.4662797 0.3767383 +0.4822838 0.4662797 0.3767383 +0.4894626 0.4662797 0.3767383 +0.4961862 0.4662797 0.3767383 +0.5025087 0.4662797 0.3767383 +0.5084753 0.4662797 0.3767383 +0.514124 0.4662797 0.3767383 +0.519487 0.4662797 0.3767383 +0.5245917 0.4662797 0.3767383 +0.529462 0.4662797 0.3767383 +0.5341183 0.4662797 0.3767383 +0.5385787 0.4662797 0.3767383 +0.5428591 0.4662797 0.3767383 +0.5469733 0.4662797 0.3767383 +0.5509339 0.4662797 0.3767383 +0.5547519 0.4662797 0.3767383 +0.5584371 0.4662797 0.3767383 +0.5619986 0.4662797 0.3767383 +0.5654443 0.4662797 0.3767383 +0.5687816 0.4662797 0.3767383 +0.092819 0.4745834 0.3767383 +0.2262531 0.4745834 0.3767383 +0.2875993 0.4745834 0.3767383 +0.3262122 0.4745834 0.3767383 +0.3544566 0.4745834 0.3767383 +0.3767383 0.4745834 0.3767383 +0.3951413 0.4745834 0.3767383 +0.4108177 0.4745834 0.3767383 +0.4244723 0.4745834 0.3767383 +0.4365675 0.4745834 0.3767383 +0.4474232 0.4745834 0.3767383 +0.45727 0.4745834 0.3767383 +0.4662797 0.4745834 0.3767383 +0.4745834 0.4745834 0.3767383 +0.4822838 0.4745834 0.3767383 +0.4894626 0.4745834 0.3767383 +0.4961862 0.4745834 0.3767383 +0.5025087 0.4745834 0.3767383 +0.5084753 0.4745834 0.3767383 +0.514124 0.4745834 0.3767383 +0.519487 0.4745834 0.3767383 +0.5245917 0.4745834 0.3767383 +0.529462 0.4745834 0.3767383 +0.5341183 0.4745834 0.3767383 +0.5385787 0.4745834 0.3767383 +0.5428591 0.4745834 0.3767383 +0.5469733 0.4745834 0.3767383 +0.5509339 0.4745834 0.3767383 +0.5547519 0.4745834 0.3767383 +0.5584371 0.4745834 0.3767383 +0.5619986 0.4745834 0.3767383 +0.5654443 0.4745834 0.3767383 +0.5687816 0.4745834 0.3767383 +0.092819 0.4822838 0.3767383 +0.2262531 0.4822838 0.3767383 +0.2875993 0.4822838 0.3767383 +0.3262122 0.4822838 0.3767383 +0.3544566 0.4822838 0.3767383 +0.3767383 0.4822838 0.3767383 +0.3951413 0.4822838 0.3767383 +0.4108177 0.4822838 0.3767383 +0.4244723 0.4822838 0.3767383 +0.4365675 0.4822838 0.3767383 +0.4474232 0.4822838 0.3767383 +0.45727 0.4822838 0.3767383 +0.4662797 0.4822838 0.3767383 +0.4745834 0.4822838 0.3767383 +0.4822838 0.4822838 0.3767383 +0.4894626 0.4822838 0.3767383 +0.4961862 0.4822838 0.3767383 +0.5025087 0.4822838 0.3767383 +0.5084753 0.4822838 0.3767383 +0.514124 0.4822838 0.3767383 +0.519487 0.4822838 0.3767383 +0.5245917 0.4822838 0.3767383 +0.529462 0.4822838 0.3767383 +0.5341183 0.4822838 0.3767383 +0.5385787 0.4822838 0.3767383 +0.5428591 0.4822838 0.3767383 +0.5469733 0.4822838 0.3767383 +0.5509339 0.4822838 0.3767383 +0.5547519 0.4822838 0.3767383 +0.5584371 0.4822838 0.3767383 +0.5619986 0.4822838 0.3767383 +0.5654443 0.4822838 0.3767383 +0.5687816 0.4822838 0.3767383 +0.092819 0.4894626 0.3767383 +0.2262531 0.4894626 0.3767383 +0.2875993 0.4894626 0.3767383 +0.3262122 0.4894626 0.3767383 +0.3544566 0.4894626 0.3767383 +0.3767383 0.4894626 0.3767383 +0.3951413 0.4894626 0.3767383 +0.4108177 0.4894626 0.3767383 +0.4244723 0.4894626 0.3767383 +0.4365675 0.4894626 0.3767383 +0.4474232 0.4894626 0.3767383 +0.45727 0.4894626 0.3767383 +0.4662797 0.4894626 0.3767383 +0.4745834 0.4894626 0.3767383 +0.4822838 0.4894626 0.3767383 +0.4894626 0.4894626 0.3767383 +0.4961862 0.4894626 0.3767383 +0.5025087 0.4894626 0.3767383 +0.5084753 0.4894626 0.3767383 +0.514124 0.4894626 0.3767383 +0.519487 0.4894626 0.3767383 +0.5245917 0.4894626 0.3767383 +0.529462 0.4894626 0.3767383 +0.5341183 0.4894626 0.3767383 +0.5385787 0.4894626 0.3767383 +0.5428591 0.4894626 0.3767383 +0.5469733 0.4894626 0.3767383 +0.5509339 0.4894626 0.3767383 +0.5547519 0.4894626 0.3767383 +0.5584371 0.4894626 0.3767383 +0.5619986 0.4894626 0.3767383 +0.5654443 0.4894626 0.3767383 +0.5687816 0.4894626 0.3767383 +0.092819 0.4961862 0.3767383 +0.2262531 0.4961862 0.3767383 +0.2875993 0.4961862 0.3767383 +0.3262122 0.4961862 0.3767383 +0.3544566 0.4961862 0.3767383 +0.3767383 0.4961862 0.3767383 +0.3951413 0.4961862 0.3767383 +0.4108177 0.4961862 0.3767383 +0.4244723 0.4961862 0.3767383 +0.4365675 0.4961862 0.3767383 +0.4474232 0.4961862 0.3767383 +0.45727 0.4961862 0.3767383 +0.4662797 0.4961862 0.3767383 +0.4745834 0.4961862 0.3767383 +0.4822838 0.4961862 0.3767383 +0.4894626 0.4961862 0.3767383 +0.4961862 0.4961862 0.3767383 +0.5025087 0.4961862 0.3767383 +0.5084753 0.4961862 0.3767383 +0.514124 0.4961862 0.3767383 +0.519487 0.4961862 0.3767383 +0.5245917 0.4961862 0.3767383 +0.529462 0.4961862 0.3767383 +0.5341183 0.4961862 0.3767383 +0.5385787 0.4961862 0.3767383 +0.5428591 0.4961862 0.3767383 +0.5469733 0.4961862 0.3767383 +0.5509339 0.4961862 0.3767383 +0.5547519 0.4961862 0.3767383 +0.5584371 0.4961862 0.3767383 +0.5619986 0.4961862 0.3767383 +0.5654443 0.4961862 0.3767383 +0.5687816 0.4961862 0.3767383 +0.092819 0.5025087 0.3767383 +0.2262531 0.5025087 0.3767383 +0.2875993 0.5025087 0.3767383 +0.3262122 0.5025087 0.3767383 +0.3544566 0.5025087 0.3767383 +0.3767383 0.5025087 0.3767383 +0.3951413 0.5025087 0.3767383 +0.4108177 0.5025087 0.3767383 +0.4244723 0.5025087 0.3767383 +0.4365675 0.5025087 0.3767383 +0.4474232 0.5025087 0.3767383 +0.45727 0.5025087 0.3767383 +0.4662797 0.5025087 0.3767383 +0.4745834 0.5025087 0.3767383 +0.4822838 0.5025087 0.3767383 +0.4894626 0.5025087 0.3767383 +0.4961862 0.5025087 0.3767383 +0.5025087 0.5025087 0.3767383 +0.5084753 0.5025087 0.3767383 +0.514124 0.5025087 0.3767383 +0.519487 0.5025087 0.3767383 +0.5245917 0.5025087 0.3767383 +0.529462 0.5025087 0.3767383 +0.5341183 0.5025087 0.3767383 +0.5385787 0.5025087 0.3767383 +0.5428591 0.5025087 0.3767383 +0.5469733 0.5025087 0.3767383 +0.5509339 0.5025087 0.3767383 +0.5547519 0.5025087 0.3767383 +0.5584371 0.5025087 0.3767383 +0.5619986 0.5025087 0.3767383 +0.5654443 0.5025087 0.3767383 +0.5687816 0.5025087 0.3767383 +0.092819 0.5084753 0.3767383 +0.2262531 0.5084753 0.3767383 +0.2875993 0.5084753 0.3767383 +0.3262122 0.5084753 0.3767383 +0.3544566 0.5084753 0.3767383 +0.3767383 0.5084753 0.3767383 +0.3951413 0.5084753 0.3767383 +0.4108177 0.5084753 0.3767383 +0.4244723 0.5084753 0.3767383 +0.4365675 0.5084753 0.3767383 +0.4474232 0.5084753 0.3767383 +0.45727 0.5084753 0.3767383 +0.4662797 0.5084753 0.3767383 +0.4745834 0.5084753 0.3767383 +0.4822838 0.5084753 0.3767383 +0.4894626 0.5084753 0.3767383 +0.4961862 0.5084753 0.3767383 +0.5025087 0.5084753 0.3767383 +0.5084753 0.5084753 0.3767383 +0.514124 0.5084753 0.3767383 +0.519487 0.5084753 0.3767383 +0.5245917 0.5084753 0.3767383 +0.529462 0.5084753 0.3767383 +0.5341183 0.5084753 0.3767383 +0.5385787 0.5084753 0.3767383 +0.5428591 0.5084753 0.3767383 +0.5469733 0.5084753 0.3767383 +0.5509339 0.5084753 0.3767383 +0.5547519 0.5084753 0.3767383 +0.5584371 0.5084753 0.3767383 +0.5619986 0.5084753 0.3767383 +0.5654443 0.5084753 0.3767383 +0.5687816 0.5084753 0.3767383 +0.092819 0.514124 0.3767383 +0.2262531 0.514124 0.3767383 +0.2875993 0.514124 0.3767383 +0.3262122 0.514124 0.3767383 +0.3544566 0.514124 0.3767383 +0.3767383 0.514124 0.3767383 +0.3951413 0.514124 0.3767383 +0.4108177 0.514124 0.3767383 +0.4244723 0.514124 0.3767383 +0.4365675 0.514124 0.3767383 +0.4474232 0.514124 0.3767383 +0.45727 0.514124 0.3767383 +0.4662797 0.514124 0.3767383 +0.4745834 0.514124 0.3767383 +0.4822838 0.514124 0.3767383 +0.4894626 0.514124 0.3767383 +0.4961862 0.514124 0.3767383 +0.5025087 0.514124 0.3767383 +0.5084753 0.514124 0.3767383 +0.514124 0.514124 0.3767383 +0.519487 0.514124 0.3767383 +0.5245917 0.514124 0.3767383 +0.529462 0.514124 0.3767383 +0.5341183 0.514124 0.3767383 +0.5385787 0.514124 0.3767383 +0.5428591 0.514124 0.3767383 +0.5469733 0.514124 0.3767383 +0.5509339 0.514124 0.3767383 +0.5547519 0.514124 0.3767383 +0.5584371 0.514124 0.3767383 +0.5619986 0.514124 0.3767383 +0.5654443 0.514124 0.3767383 +0.5687816 0.514124 0.3767383 +0.092819 0.519487 0.3767383 +0.2262531 0.519487 0.3767383 +0.2875993 0.519487 0.3767383 +0.3262122 0.519487 0.3767383 +0.3544566 0.519487 0.3767383 +0.3767383 0.519487 0.3767383 +0.3951413 0.519487 0.3767383 +0.4108177 0.519487 0.3767383 +0.4244723 0.519487 0.3767383 +0.4365675 0.519487 0.3767383 +0.4474232 0.519487 0.3767383 +0.45727 0.519487 0.3767383 +0.4662797 0.519487 0.3767383 +0.4745834 0.519487 0.3767383 +0.4822838 0.519487 0.3767383 +0.4894626 0.519487 0.3767383 +0.4961862 0.519487 0.3767383 +0.5025087 0.519487 0.3767383 +0.5084753 0.519487 0.3767383 +0.514124 0.519487 0.3767383 +0.519487 0.519487 0.3767383 +0.5245917 0.519487 0.3767383 +0.529462 0.519487 0.3767383 +0.5341183 0.519487 0.3767383 +0.5385787 0.519487 0.3767383 +0.5428591 0.519487 0.3767383 +0.5469733 0.519487 0.3767383 +0.5509339 0.519487 0.3767383 +0.5547519 0.519487 0.3767383 +0.5584371 0.519487 0.3767383 +0.5619986 0.519487 0.3767383 +0.5654443 0.519487 0.3767383 +0.5687816 0.519487 0.3767383 +0.092819 0.5245917 0.3767383 +0.2262531 0.5245917 0.3767383 +0.2875993 0.5245917 0.3767383 +0.3262122 0.5245917 0.3767383 +0.3544566 0.5245917 0.3767383 +0.3767383 0.5245917 0.3767383 +0.3951413 0.5245917 0.3767383 +0.4108177 0.5245917 0.3767383 +0.4244723 0.5245917 0.3767383 +0.4365675 0.5245917 0.3767383 +0.4474232 0.5245917 0.3767383 +0.45727 0.5245917 0.3767383 +0.4662797 0.5245917 0.3767383 +0.4745834 0.5245917 0.3767383 +0.4822838 0.5245917 0.3767383 +0.4894626 0.5245917 0.3767383 +0.4961862 0.5245917 0.3767383 +0.5025087 0.5245917 0.3767383 +0.5084753 0.5245917 0.3767383 +0.514124 0.5245917 0.3767383 +0.519487 0.5245917 0.3767383 +0.5245917 0.5245917 0.3767383 +0.529462 0.5245917 0.3767383 +0.5341183 0.5245917 0.3767383 +0.5385787 0.5245917 0.3767383 +0.5428591 0.5245917 0.3767383 +0.5469733 0.5245917 0.3767383 +0.5509339 0.5245917 0.3767383 +0.5547519 0.5245917 0.3767383 +0.5584371 0.5245917 0.3767383 +0.5619986 0.5245917 0.3767383 +0.5654443 0.5245917 0.3767383 +0.5687816 0.5245917 0.3767383 +0.092819 0.529462 0.3767383 +0.2262531 0.529462 0.3767383 +0.2875993 0.529462 0.3767383 +0.3262122 0.529462 0.3767383 +0.3544566 0.529462 0.3767383 +0.3767383 0.529462 0.3767383 +0.3951413 0.529462 0.3767383 +0.4108177 0.529462 0.3767383 +0.4244723 0.529462 0.3767383 +0.4365675 0.529462 0.3767383 +0.4474232 0.529462 0.3767383 +0.45727 0.529462 0.3767383 +0.4662797 0.529462 0.3767383 +0.4745834 0.529462 0.3767383 +0.4822838 0.529462 0.3767383 +0.4894626 0.529462 0.3767383 +0.4961862 0.529462 0.3767383 +0.5025087 0.529462 0.3767383 +0.5084753 0.529462 0.3767383 +0.514124 0.529462 0.3767383 +0.519487 0.529462 0.3767383 +0.5245917 0.529462 0.3767383 +0.529462 0.529462 0.3767383 +0.5341183 0.529462 0.3767383 +0.5385787 0.529462 0.3767383 +0.5428591 0.529462 0.3767383 +0.5469733 0.529462 0.3767383 +0.5509339 0.529462 0.3767383 +0.5547519 0.529462 0.3767383 +0.5584371 0.529462 0.3767383 +0.5619986 0.529462 0.3767383 +0.5654443 0.529462 0.3767383 +0.5687816 0.529462 0.3767383 +0.092819 0.5341183 0.3767383 +0.2262531 0.5341183 0.3767383 +0.2875993 0.5341183 0.3767383 +0.3262122 0.5341183 0.3767383 +0.3544566 0.5341183 0.3767383 +0.3767383 0.5341183 0.3767383 +0.3951413 0.5341183 0.3767383 +0.4108177 0.5341183 0.3767383 +0.4244723 0.5341183 0.3767383 +0.4365675 0.5341183 0.3767383 +0.4474232 0.5341183 0.3767383 +0.45727 0.5341183 0.3767383 +0.4662797 0.5341183 0.3767383 +0.4745834 0.5341183 0.3767383 +0.4822838 0.5341183 0.3767383 +0.4894626 0.5341183 0.3767383 +0.4961862 0.5341183 0.3767383 +0.5025087 0.5341183 0.3767383 +0.5084753 0.5341183 0.3767383 +0.514124 0.5341183 0.3767383 +0.519487 0.5341183 0.3767383 +0.5245917 0.5341183 0.3767383 +0.529462 0.5341183 0.3767383 +0.5341183 0.5341183 0.3767383 +0.5385787 0.5341183 0.3767383 +0.5428591 0.5341183 0.3767383 +0.5469733 0.5341183 0.3767383 +0.5509339 0.5341183 0.3767383 +0.5547519 0.5341183 0.3767383 +0.5584371 0.5341183 0.3767383 +0.5619986 0.5341183 0.3767383 +0.5654443 0.5341183 0.3767383 +0.5687816 0.5341183 0.3767383 +0.092819 0.5385787 0.3767383 +0.2262531 0.5385787 0.3767383 +0.2875993 0.5385787 0.3767383 +0.3262122 0.5385787 0.3767383 +0.3544566 0.5385787 0.3767383 +0.3767383 0.5385787 0.3767383 +0.3951413 0.5385787 0.3767383 +0.4108177 0.5385787 0.3767383 +0.4244723 0.5385787 0.3767383 +0.4365675 0.5385787 0.3767383 +0.4474232 0.5385787 0.3767383 +0.45727 0.5385787 0.3767383 +0.4662797 0.5385787 0.3767383 +0.4745834 0.5385787 0.3767383 +0.4822838 0.5385787 0.3767383 +0.4894626 0.5385787 0.3767383 +0.4961862 0.5385787 0.3767383 +0.5025087 0.5385787 0.3767383 +0.5084753 0.5385787 0.3767383 +0.514124 0.5385787 0.3767383 +0.519487 0.5385787 0.3767383 +0.5245917 0.5385787 0.3767383 +0.529462 0.5385787 0.3767383 +0.5341183 0.5385787 0.3767383 +0.5385787 0.5385787 0.3767383 +0.5428591 0.5385787 0.3767383 +0.5469733 0.5385787 0.3767383 +0.5509339 0.5385787 0.3767383 +0.5547519 0.5385787 0.3767383 +0.5584371 0.5385787 0.3767383 +0.5619986 0.5385787 0.3767383 +0.5654443 0.5385787 0.3767383 +0.5687816 0.5385787 0.3767383 +0.092819 0.5428591 0.3767383 +0.2262531 0.5428591 0.3767383 +0.2875993 0.5428591 0.3767383 +0.3262122 0.5428591 0.3767383 +0.3544566 0.5428591 0.3767383 +0.3767383 0.5428591 0.3767383 +0.3951413 0.5428591 0.3767383 +0.4108177 0.5428591 0.3767383 +0.4244723 0.5428591 0.3767383 +0.4365675 0.5428591 0.3767383 +0.4474232 0.5428591 0.3767383 +0.45727 0.5428591 0.3767383 +0.4662797 0.5428591 0.3767383 +0.4745834 0.5428591 0.3767383 +0.4822838 0.5428591 0.3767383 +0.4894626 0.5428591 0.3767383 +0.4961862 0.5428591 0.3767383 +0.5025087 0.5428591 0.3767383 +0.5084753 0.5428591 0.3767383 +0.514124 0.5428591 0.3767383 +0.519487 0.5428591 0.3767383 +0.5245917 0.5428591 0.3767383 +0.529462 0.5428591 0.3767383 +0.5341183 0.5428591 0.3767383 +0.5385787 0.5428591 0.3767383 +0.5428591 0.5428591 0.3767383 +0.5469733 0.5428591 0.3767383 +0.5509339 0.5428591 0.3767383 +0.5547519 0.5428591 0.3767383 +0.5584371 0.5428591 0.3767383 +0.5619986 0.5428591 0.3767383 +0.5654443 0.5428591 0.3767383 +0.5687816 0.5428591 0.3767383 +0.092819 0.5469733 0.3767383 +0.2262531 0.5469733 0.3767383 +0.2875993 0.5469733 0.3767383 +0.3262122 0.5469733 0.3767383 +0.3544566 0.5469733 0.3767383 +0.3767383 0.5469733 0.3767383 +0.3951413 0.5469733 0.3767383 +0.4108177 0.5469733 0.3767383 +0.4244723 0.5469733 0.3767383 +0.4365675 0.5469733 0.3767383 +0.4474232 0.5469733 0.3767383 +0.45727 0.5469733 0.3767383 +0.4662797 0.5469733 0.3767383 +0.4745834 0.5469733 0.3767383 +0.4822838 0.5469733 0.3767383 +0.4894626 0.5469733 0.3767383 +0.4961862 0.5469733 0.3767383 +0.5025087 0.5469733 0.3767383 +0.5084753 0.5469733 0.3767383 +0.514124 0.5469733 0.3767383 +0.519487 0.5469733 0.3767383 +0.5245917 0.5469733 0.3767383 +0.529462 0.5469733 0.3767383 +0.5341183 0.5469733 0.3767383 +0.5385787 0.5469733 0.3767383 +0.5428591 0.5469733 0.3767383 +0.5469733 0.5469733 0.3767383 +0.5509339 0.5469733 0.3767383 +0.5547519 0.5469733 0.3767383 +0.5584371 0.5469733 0.3767383 +0.5619986 0.5469733 0.3767383 +0.5654443 0.5469733 0.3767383 +0.5687816 0.5469733 0.3767383 +0.092819 0.5509339 0.3767383 +0.2262531 0.5509339 0.3767383 +0.2875993 0.5509339 0.3767383 +0.3262122 0.5509339 0.3767383 +0.3544566 0.5509339 0.3767383 +0.3767383 0.5509339 0.3767383 +0.3951413 0.5509339 0.3767383 +0.4108177 0.5509339 0.3767383 +0.4244723 0.5509339 0.3767383 +0.4365675 0.5509339 0.3767383 +0.4474232 0.5509339 0.3767383 +0.45727 0.5509339 0.3767383 +0.4662797 0.5509339 0.3767383 +0.4745834 0.5509339 0.3767383 +0.4822838 0.5509339 0.3767383 +0.4894626 0.5509339 0.3767383 +0.4961862 0.5509339 0.3767383 +0.5025087 0.5509339 0.3767383 +0.5084753 0.5509339 0.3767383 +0.514124 0.5509339 0.3767383 +0.519487 0.5509339 0.3767383 +0.5245917 0.5509339 0.3767383 +0.529462 0.5509339 0.3767383 +0.5341183 0.5509339 0.3767383 +0.5385787 0.5509339 0.3767383 +0.5428591 0.5509339 0.3767383 +0.5469733 0.5509339 0.3767383 +0.5509339 0.5509339 0.3767383 +0.5547519 0.5509339 0.3767383 +0.5584371 0.5509339 0.3767383 +0.5619986 0.5509339 0.3767383 +0.5654443 0.5509339 0.3767383 +0.5687816 0.5509339 0.3767383 +0.092819 0.5547519 0.3767383 +0.2262531 0.5547519 0.3767383 +0.2875993 0.5547519 0.3767383 +0.3262122 0.5547519 0.3767383 +0.3544566 0.5547519 0.3767383 +0.3767383 0.5547519 0.3767383 +0.3951413 0.5547519 0.3767383 +0.4108177 0.5547519 0.3767383 +0.4244723 0.5547519 0.3767383 +0.4365675 0.5547519 0.3767383 +0.4474232 0.5547519 0.3767383 +0.45727 0.5547519 0.3767383 +0.4662797 0.5547519 0.3767383 +0.4745834 0.5547519 0.3767383 +0.4822838 0.5547519 0.3767383 +0.4894626 0.5547519 0.3767383 +0.4961862 0.5547519 0.3767383 +0.5025087 0.5547519 0.3767383 +0.5084753 0.5547519 0.3767383 +0.514124 0.5547519 0.3767383 +0.519487 0.5547519 0.3767383 +0.5245917 0.5547519 0.3767383 +0.529462 0.5547519 0.3767383 +0.5341183 0.5547519 0.3767383 +0.5385787 0.5547519 0.3767383 +0.5428591 0.5547519 0.3767383 +0.5469733 0.5547519 0.3767383 +0.5509339 0.5547519 0.3767383 +0.5547519 0.5547519 0.3767383 +0.5584371 0.5547519 0.3767383 +0.5619986 0.5547519 0.3767383 +0.5654443 0.5547519 0.3767383 +0.5687816 0.5547519 0.3767383 +0.092819 0.5584371 0.3767383 +0.2262531 0.5584371 0.3767383 +0.2875993 0.5584371 0.3767383 +0.3262122 0.5584371 0.3767383 +0.3544566 0.5584371 0.3767383 +0.3767383 0.5584371 0.3767383 +0.3951413 0.5584371 0.3767383 +0.4108177 0.5584371 0.3767383 +0.4244723 0.5584371 0.3767383 +0.4365675 0.5584371 0.3767383 +0.4474232 0.5584371 0.3767383 +0.45727 0.5584371 0.3767383 +0.4662797 0.5584371 0.3767383 +0.4745834 0.5584371 0.3767383 +0.4822838 0.5584371 0.3767383 +0.4894626 0.5584371 0.3767383 +0.4961862 0.5584371 0.3767383 +0.5025087 0.5584371 0.3767383 +0.5084753 0.5584371 0.3767383 +0.514124 0.5584371 0.3767383 +0.519487 0.5584371 0.3767383 +0.5245917 0.5584371 0.3767383 +0.529462 0.5584371 0.3767383 +0.5341183 0.5584371 0.3767383 +0.5385787 0.5584371 0.3767383 +0.5428591 0.5584371 0.3767383 +0.5469733 0.5584371 0.3767383 +0.5509339 0.5584371 0.3767383 +0.5547519 0.5584371 0.3767383 +0.5584371 0.5584371 0.3767383 +0.5619986 0.5584371 0.3767383 +0.5654443 0.5584371 0.3767383 +0.5687816 0.5584371 0.3767383 +0.092819 0.5619986 0.3767383 +0.2262531 0.5619986 0.3767383 +0.2875993 0.5619986 0.3767383 +0.3262122 0.5619986 0.3767383 +0.3544566 0.5619986 0.3767383 +0.3767383 0.5619986 0.3767383 +0.3951413 0.5619986 0.3767383 +0.4108177 0.5619986 0.3767383 +0.4244723 0.5619986 0.3767383 +0.4365675 0.5619986 0.3767383 +0.4474232 0.5619986 0.3767383 +0.45727 0.5619986 0.3767383 +0.4662797 0.5619986 0.3767383 +0.4745834 0.5619986 0.3767383 +0.4822838 0.5619986 0.3767383 +0.4894626 0.5619986 0.3767383 +0.4961862 0.5619986 0.3767383 +0.5025087 0.5619986 0.3767383 +0.5084753 0.5619986 0.3767383 +0.514124 0.5619986 0.3767383 +0.519487 0.5619986 0.3767383 +0.5245917 0.5619986 0.3767383 +0.529462 0.5619986 0.3767383 +0.5341183 0.5619986 0.3767383 +0.5385787 0.5619986 0.3767383 +0.5428591 0.5619986 0.3767383 +0.5469733 0.5619986 0.3767383 +0.5509339 0.5619986 0.3767383 +0.5547519 0.5619986 0.3767383 +0.5584371 0.5619986 0.3767383 +0.5619986 0.5619986 0.3767383 +0.5654443 0.5619986 0.3767383 +0.5687816 0.5619986 0.3767383 +0.092819 0.5654443 0.3767383 +0.2262531 0.5654443 0.3767383 +0.2875993 0.5654443 0.3767383 +0.3262122 0.5654443 0.3767383 +0.3544566 0.5654443 0.3767383 +0.3767383 0.5654443 0.3767383 +0.3951413 0.5654443 0.3767383 +0.4108177 0.5654443 0.3767383 +0.4244723 0.5654443 0.3767383 +0.4365675 0.5654443 0.3767383 +0.4474232 0.5654443 0.3767383 +0.45727 0.5654443 0.3767383 +0.4662797 0.5654443 0.3767383 +0.4745834 0.5654443 0.3767383 +0.4822838 0.5654443 0.3767383 +0.4894626 0.5654443 0.3767383 +0.4961862 0.5654443 0.3767383 +0.5025087 0.5654443 0.3767383 +0.5084753 0.5654443 0.3767383 +0.514124 0.5654443 0.3767383 +0.519487 0.5654443 0.3767383 +0.5245917 0.5654443 0.3767383 +0.529462 0.5654443 0.3767383 +0.5341183 0.5654443 0.3767383 +0.5385787 0.5654443 0.3767383 +0.5428591 0.5654443 0.3767383 +0.5469733 0.5654443 0.3767383 +0.5509339 0.5654443 0.3767383 +0.5547519 0.5654443 0.3767383 +0.5584371 0.5654443 0.3767383 +0.5619986 0.5654443 0.3767383 +0.5654443 0.5654443 0.3767383 +0.5687816 0.5654443 0.3767383 +0.092819 0.5687816 0.3767383 +0.2262531 0.5687816 0.3767383 +0.2875993 0.5687816 0.3767383 +0.3262122 0.5687816 0.3767383 +0.3544566 0.5687816 0.3767383 +0.3767383 0.5687816 0.3767383 +0.3951413 0.5687816 0.3767383 +0.4108177 0.5687816 0.3767383 +0.4244723 0.5687816 0.3767383 +0.4365675 0.5687816 0.3767383 +0.4474232 0.5687816 0.3767383 +0.45727 0.5687816 0.3767383 +0.4662797 0.5687816 0.3767383 +0.4745834 0.5687816 0.3767383 +0.4822838 0.5687816 0.3767383 +0.4894626 0.5687816 0.3767383 +0.4961862 0.5687816 0.3767383 +0.5025087 0.5687816 0.3767383 +0.5084753 0.5687816 0.3767383 +0.514124 0.5687816 0.3767383 +0.519487 0.5687816 0.3767383 +0.5245917 0.5687816 0.3767383 +0.529462 0.5687816 0.3767383 +0.5341183 0.5687816 0.3767383 +0.5385787 0.5687816 0.3767383 +0.5428591 0.5687816 0.3767383 +0.5469733 0.5687816 0.3767383 +0.5509339 0.5687816 0.3767383 +0.5547519 0.5687816 0.3767383 +0.5584371 0.5687816 0.3767383 +0.5619986 0.5687816 0.3767383 +0.5654443 0.5687816 0.3767383 +0.5687816 0.5687816 0.3767383 +0.092819 0.092819 0.3951413 +0.2262531 0.092819 0.3951413 +0.2875993 0.092819 0.3951413 +0.3262122 0.092819 0.3951413 +0.3544566 0.092819 0.3951413 +0.3767383 0.092819 0.3951413 +0.3951413 0.092819 0.3951413 +0.4108177 0.092819 0.3951413 +0.4244723 0.092819 0.3951413 +0.4365675 0.092819 0.3951413 +0.4474232 0.092819 0.3951413 +0.45727 0.092819 0.3951413 +0.4662797 0.092819 0.3951413 +0.4745834 0.092819 0.3951413 +0.4822838 0.092819 0.3951413 +0.4894626 0.092819 0.3951413 +0.4961862 0.092819 0.3951413 +0.5025087 0.092819 0.3951413 +0.5084753 0.092819 0.3951413 +0.514124 0.092819 0.3951413 +0.519487 0.092819 0.3951413 +0.5245917 0.092819 0.3951413 +0.529462 0.092819 0.3951413 +0.5341183 0.092819 0.3951413 +0.5385787 0.092819 0.3951413 +0.5428591 0.092819 0.3951413 +0.5469733 0.092819 0.3951413 +0.5509339 0.092819 0.3951413 +0.5547519 0.092819 0.3951413 +0.5584371 0.092819 0.3951413 +0.5619986 0.092819 0.3951413 +0.5654443 0.092819 0.3951413 +0.5687816 0.092819 0.3951413 +0.092819 0.2262531 0.3951413 +0.2262531 0.2262531 0.3951413 +0.2875993 0.2262531 0.3951413 +0.3262122 0.2262531 0.3951413 +0.3544566 0.2262531 0.3951413 +0.3767383 0.2262531 0.3951413 +0.3951413 0.2262531 0.3951413 +0.4108177 0.2262531 0.3951413 +0.4244723 0.2262531 0.3951413 +0.4365675 0.2262531 0.3951413 +0.4474232 0.2262531 0.3951413 +0.45727 0.2262531 0.3951413 +0.4662797 0.2262531 0.3951413 +0.4745834 0.2262531 0.3951413 +0.4822838 0.2262531 0.3951413 +0.4894626 0.2262531 0.3951413 +0.4961862 0.2262531 0.3951413 +0.5025087 0.2262531 0.3951413 +0.5084753 0.2262531 0.3951413 +0.514124 0.2262531 0.3951413 +0.519487 0.2262531 0.3951413 +0.5245917 0.2262531 0.3951413 +0.529462 0.2262531 0.3951413 +0.5341183 0.2262531 0.3951413 +0.5385787 0.2262531 0.3951413 +0.5428591 0.2262531 0.3951413 +0.5469733 0.2262531 0.3951413 +0.5509339 0.2262531 0.3951413 +0.5547519 0.2262531 0.3951413 +0.5584371 0.2262531 0.3951413 +0.5619986 0.2262531 0.3951413 +0.5654443 0.2262531 0.3951413 +0.5687816 0.2262531 0.3951413 +0.092819 0.2875993 0.3951413 +0.2262531 0.2875993 0.3951413 +0.2875993 0.2875993 0.3951413 +0.3262122 0.2875993 0.3951413 +0.3544566 0.2875993 0.3951413 +0.3767383 0.2875993 0.3951413 +0.3951413 0.2875993 0.3951413 +0.4108177 0.2875993 0.3951413 +0.4244723 0.2875993 0.3951413 +0.4365675 0.2875993 0.3951413 +0.4474232 0.2875993 0.3951413 +0.45727 0.2875993 0.3951413 +0.4662797 0.2875993 0.3951413 +0.4745834 0.2875993 0.3951413 +0.4822838 0.2875993 0.3951413 +0.4894626 0.2875993 0.3951413 +0.4961862 0.2875993 0.3951413 +0.5025087 0.2875993 0.3951413 +0.5084753 0.2875993 0.3951413 +0.514124 0.2875993 0.3951413 +0.519487 0.2875993 0.3951413 +0.5245917 0.2875993 0.3951413 +0.529462 0.2875993 0.3951413 +0.5341183 0.2875993 0.3951413 +0.5385787 0.2875993 0.3951413 +0.5428591 0.2875993 0.3951413 +0.5469733 0.2875993 0.3951413 +0.5509339 0.2875993 0.3951413 +0.5547519 0.2875993 0.3951413 +0.5584371 0.2875993 0.3951413 +0.5619986 0.2875993 0.3951413 +0.5654443 0.2875993 0.3951413 +0.5687816 0.2875993 0.3951413 +0.092819 0.3262122 0.3951413 +0.2262531 0.3262122 0.3951413 +0.2875993 0.3262122 0.3951413 +0.3262122 0.3262122 0.3951413 +0.3544566 0.3262122 0.3951413 +0.3767383 0.3262122 0.3951413 +0.3951413 0.3262122 0.3951413 +0.4108177 0.3262122 0.3951413 +0.4244723 0.3262122 0.3951413 +0.4365675 0.3262122 0.3951413 +0.4474232 0.3262122 0.3951413 +0.45727 0.3262122 0.3951413 +0.4662797 0.3262122 0.3951413 +0.4745834 0.3262122 0.3951413 +0.4822838 0.3262122 0.3951413 +0.4894626 0.3262122 0.3951413 +0.4961862 0.3262122 0.3951413 +0.5025087 0.3262122 0.3951413 +0.5084753 0.3262122 0.3951413 +0.514124 0.3262122 0.3951413 +0.519487 0.3262122 0.3951413 +0.5245917 0.3262122 0.3951413 +0.529462 0.3262122 0.3951413 +0.5341183 0.3262122 0.3951413 +0.5385787 0.3262122 0.3951413 +0.5428591 0.3262122 0.3951413 +0.5469733 0.3262122 0.3951413 +0.5509339 0.3262122 0.3951413 +0.5547519 0.3262122 0.3951413 +0.5584371 0.3262122 0.3951413 +0.5619986 0.3262122 0.3951413 +0.5654443 0.3262122 0.3951413 +0.5687816 0.3262122 0.3951413 +0.092819 0.3544566 0.3951413 +0.2262531 0.3544566 0.3951413 +0.2875993 0.3544566 0.3951413 +0.3262122 0.3544566 0.3951413 +0.3544566 0.3544566 0.3951413 +0.3767383 0.3544566 0.3951413 +0.3951413 0.3544566 0.3951413 +0.4108177 0.3544566 0.3951413 +0.4244723 0.3544566 0.3951413 +0.4365675 0.3544566 0.3951413 +0.4474232 0.3544566 0.3951413 +0.45727 0.3544566 0.3951413 +0.4662797 0.3544566 0.3951413 +0.4745834 0.3544566 0.3951413 +0.4822838 0.3544566 0.3951413 +0.4894626 0.3544566 0.3951413 +0.4961862 0.3544566 0.3951413 +0.5025087 0.3544566 0.3951413 +0.5084753 0.3544566 0.3951413 +0.514124 0.3544566 0.3951413 +0.519487 0.3544566 0.3951413 +0.5245917 0.3544566 0.3951413 +0.529462 0.3544566 0.3951413 +0.5341183 0.3544566 0.3951413 +0.5385787 0.3544566 0.3951413 +0.5428591 0.3544566 0.3951413 +0.5469733 0.3544566 0.3951413 +0.5509339 0.3544566 0.3951413 +0.5547519 0.3544566 0.3951413 +0.5584371 0.3544566 0.3951413 +0.5619986 0.3544566 0.3951413 +0.5654443 0.3544566 0.3951413 +0.5687816 0.3544566 0.3951413 +0.092819 0.3767383 0.3951413 +0.2262531 0.3767383 0.3951413 +0.2875993 0.3767383 0.3951413 +0.3262122 0.3767383 0.3951413 +0.3544566 0.3767383 0.3951413 +0.3767383 0.3767383 0.3951413 +0.3951413 0.3767383 0.3951413 +0.4108177 0.3767383 0.3951413 +0.4244723 0.3767383 0.3951413 +0.4365675 0.3767383 0.3951413 +0.4474232 0.3767383 0.3951413 +0.45727 0.3767383 0.3951413 +0.4662797 0.3767383 0.3951413 +0.4745834 0.3767383 0.3951413 +0.4822838 0.3767383 0.3951413 +0.4894626 0.3767383 0.3951413 +0.4961862 0.3767383 0.3951413 +0.5025087 0.3767383 0.3951413 +0.5084753 0.3767383 0.3951413 +0.514124 0.3767383 0.3951413 +0.519487 0.3767383 0.3951413 +0.5245917 0.3767383 0.3951413 +0.529462 0.3767383 0.3951413 +0.5341183 0.3767383 0.3951413 +0.5385787 0.3767383 0.3951413 +0.5428591 0.3767383 0.3951413 +0.5469733 0.3767383 0.3951413 +0.5509339 0.3767383 0.3951413 +0.5547519 0.3767383 0.3951413 +0.5584371 0.3767383 0.3951413 +0.5619986 0.3767383 0.3951413 +0.5654443 0.3767383 0.3951413 +0.5687816 0.3767383 0.3951413 +0.092819 0.3951413 0.3951413 +0.2262531 0.3951413 0.3951413 +0.2875993 0.3951413 0.3951413 +0.3262122 0.3951413 0.3951413 +0.3544566 0.3951413 0.3951413 +0.3767383 0.3951413 0.3951413 +0.3951413 0.3951413 0.3951413 +0.4108177 0.3951413 0.3951413 +0.4244723 0.3951413 0.3951413 +0.4365675 0.3951413 0.3951413 +0.4474232 0.3951413 0.3951413 +0.45727 0.3951413 0.3951413 +0.4662797 0.3951413 0.3951413 +0.4745834 0.3951413 0.3951413 +0.4822838 0.3951413 0.3951413 +0.4894626 0.3951413 0.3951413 +0.4961862 0.3951413 0.3951413 +0.5025087 0.3951413 0.3951413 +0.5084753 0.3951413 0.3951413 +0.514124 0.3951413 0.3951413 +0.519487 0.3951413 0.3951413 +0.5245917 0.3951413 0.3951413 +0.529462 0.3951413 0.3951413 +0.5341183 0.3951413 0.3951413 +0.5385787 0.3951413 0.3951413 +0.5428591 0.3951413 0.3951413 +0.5469733 0.3951413 0.3951413 +0.5509339 0.3951413 0.3951413 +0.5547519 0.3951413 0.3951413 +0.5584371 0.3951413 0.3951413 +0.5619986 0.3951413 0.3951413 +0.5654443 0.3951413 0.3951413 +0.5687816 0.3951413 0.3951413 +0.092819 0.4108177 0.3951413 +0.2262531 0.4108177 0.3951413 +0.2875993 0.4108177 0.3951413 +0.3262122 0.4108177 0.3951413 +0.3544566 0.4108177 0.3951413 +0.3767383 0.4108177 0.3951413 +0.3951413 0.4108177 0.3951413 +0.4108177 0.4108177 0.3951413 +0.4244723 0.4108177 0.3951413 +0.4365675 0.4108177 0.3951413 +0.4474232 0.4108177 0.3951413 +0.45727 0.4108177 0.3951413 +0.4662797 0.4108177 0.3951413 +0.4745834 0.4108177 0.3951413 +0.4822838 0.4108177 0.3951413 +0.4894626 0.4108177 0.3951413 +0.4961862 0.4108177 0.3951413 +0.5025087 0.4108177 0.3951413 +0.5084753 0.4108177 0.3951413 +0.514124 0.4108177 0.3951413 +0.519487 0.4108177 0.3951413 +0.5245917 0.4108177 0.3951413 +0.529462 0.4108177 0.3951413 +0.5341183 0.4108177 0.3951413 +0.5385787 0.4108177 0.3951413 +0.5428591 0.4108177 0.3951413 +0.5469733 0.4108177 0.3951413 +0.5509339 0.4108177 0.3951413 +0.5547519 0.4108177 0.3951413 +0.5584371 0.4108177 0.3951413 +0.5619986 0.4108177 0.3951413 +0.5654443 0.4108177 0.3951413 +0.5687816 0.4108177 0.3951413 +0.092819 0.4244723 0.3951413 +0.2262531 0.4244723 0.3951413 +0.2875993 0.4244723 0.3951413 +0.3262122 0.4244723 0.3951413 +0.3544566 0.4244723 0.3951413 +0.3767383 0.4244723 0.3951413 +0.3951413 0.4244723 0.3951413 +0.4108177 0.4244723 0.3951413 +0.4244723 0.4244723 0.3951413 +0.4365675 0.4244723 0.3951413 +0.4474232 0.4244723 0.3951413 +0.45727 0.4244723 0.3951413 +0.4662797 0.4244723 0.3951413 +0.4745834 0.4244723 0.3951413 +0.4822838 0.4244723 0.3951413 +0.4894626 0.4244723 0.3951413 +0.4961862 0.4244723 0.3951413 +0.5025087 0.4244723 0.3951413 +0.5084753 0.4244723 0.3951413 +0.514124 0.4244723 0.3951413 +0.519487 0.4244723 0.3951413 +0.5245917 0.4244723 0.3951413 +0.529462 0.4244723 0.3951413 +0.5341183 0.4244723 0.3951413 +0.5385787 0.4244723 0.3951413 +0.5428591 0.4244723 0.3951413 +0.5469733 0.4244723 0.3951413 +0.5509339 0.4244723 0.3951413 +0.5547519 0.4244723 0.3951413 +0.5584371 0.4244723 0.3951413 +0.5619986 0.4244723 0.3951413 +0.5654443 0.4244723 0.3951413 +0.5687816 0.4244723 0.3951413 +0.092819 0.4365675 0.3951413 +0.2262531 0.4365675 0.3951413 +0.2875993 0.4365675 0.3951413 +0.3262122 0.4365675 0.3951413 +0.3544566 0.4365675 0.3951413 +0.3767383 0.4365675 0.3951413 +0.3951413 0.4365675 0.3951413 +0.4108177 0.4365675 0.3951413 +0.4244723 0.4365675 0.3951413 +0.4365675 0.4365675 0.3951413 +0.4474232 0.4365675 0.3951413 +0.45727 0.4365675 0.3951413 +0.4662797 0.4365675 0.3951413 +0.4745834 0.4365675 0.3951413 +0.4822838 0.4365675 0.3951413 +0.4894626 0.4365675 0.3951413 +0.4961862 0.4365675 0.3951413 +0.5025087 0.4365675 0.3951413 +0.5084753 0.4365675 0.3951413 +0.514124 0.4365675 0.3951413 +0.519487 0.4365675 0.3951413 +0.5245917 0.4365675 0.3951413 +0.529462 0.4365675 0.3951413 +0.5341183 0.4365675 0.3951413 +0.5385787 0.4365675 0.3951413 +0.5428591 0.4365675 0.3951413 +0.5469733 0.4365675 0.3951413 +0.5509339 0.4365675 0.3951413 +0.5547519 0.4365675 0.3951413 +0.5584371 0.4365675 0.3951413 +0.5619986 0.4365675 0.3951413 +0.5654443 0.4365675 0.3951413 +0.5687816 0.4365675 0.3951413 +0.092819 0.4474232 0.3951413 +0.2262531 0.4474232 0.3951413 +0.2875993 0.4474232 0.3951413 +0.3262122 0.4474232 0.3951413 +0.3544566 0.4474232 0.3951413 +0.3767383 0.4474232 0.3951413 +0.3951413 0.4474232 0.3951413 +0.4108177 0.4474232 0.3951413 +0.4244723 0.4474232 0.3951413 +0.4365675 0.4474232 0.3951413 +0.4474232 0.4474232 0.3951413 +0.45727 0.4474232 0.3951413 +0.4662797 0.4474232 0.3951413 +0.4745834 0.4474232 0.3951413 +0.4822838 0.4474232 0.3951413 +0.4894626 0.4474232 0.3951413 +0.4961862 0.4474232 0.3951413 +0.5025087 0.4474232 0.3951413 +0.5084753 0.4474232 0.3951413 +0.514124 0.4474232 0.3951413 +0.519487 0.4474232 0.3951413 +0.5245917 0.4474232 0.3951413 +0.529462 0.4474232 0.3951413 +0.5341183 0.4474232 0.3951413 +0.5385787 0.4474232 0.3951413 +0.5428591 0.4474232 0.3951413 +0.5469733 0.4474232 0.3951413 +0.5509339 0.4474232 0.3951413 +0.5547519 0.4474232 0.3951413 +0.5584371 0.4474232 0.3951413 +0.5619986 0.4474232 0.3951413 +0.5654443 0.4474232 0.3951413 +0.5687816 0.4474232 0.3951413 +0.092819 0.45727 0.3951413 +0.2262531 0.45727 0.3951413 +0.2875993 0.45727 0.3951413 +0.3262122 0.45727 0.3951413 +0.3544566 0.45727 0.3951413 +0.3767383 0.45727 0.3951413 +0.3951413 0.45727 0.3951413 +0.4108177 0.45727 0.3951413 +0.4244723 0.45727 0.3951413 +0.4365675 0.45727 0.3951413 +0.4474232 0.45727 0.3951413 +0.45727 0.45727 0.3951413 +0.4662797 0.45727 0.3951413 +0.4745834 0.45727 0.3951413 +0.4822838 0.45727 0.3951413 +0.4894626 0.45727 0.3951413 +0.4961862 0.45727 0.3951413 +0.5025087 0.45727 0.3951413 +0.5084753 0.45727 0.3951413 +0.514124 0.45727 0.3951413 +0.519487 0.45727 0.3951413 +0.5245917 0.45727 0.3951413 +0.529462 0.45727 0.3951413 +0.5341183 0.45727 0.3951413 +0.5385787 0.45727 0.3951413 +0.5428591 0.45727 0.3951413 +0.5469733 0.45727 0.3951413 +0.5509339 0.45727 0.3951413 +0.5547519 0.45727 0.3951413 +0.5584371 0.45727 0.3951413 +0.5619986 0.45727 0.3951413 +0.5654443 0.45727 0.3951413 +0.5687816 0.45727 0.3951413 +0.092819 0.4662797 0.3951413 +0.2262531 0.4662797 0.3951413 +0.2875993 0.4662797 0.3951413 +0.3262122 0.4662797 0.3951413 +0.3544566 0.4662797 0.3951413 +0.3767383 0.4662797 0.3951413 +0.3951413 0.4662797 0.3951413 +0.4108177 0.4662797 0.3951413 +0.4244723 0.4662797 0.3951413 +0.4365675 0.4662797 0.3951413 +0.4474232 0.4662797 0.3951413 +0.45727 0.4662797 0.3951413 +0.4662797 0.4662797 0.3951413 +0.4745834 0.4662797 0.3951413 +0.4822838 0.4662797 0.3951413 +0.4894626 0.4662797 0.3951413 +0.4961862 0.4662797 0.3951413 +0.5025087 0.4662797 0.3951413 +0.5084753 0.4662797 0.3951413 +0.514124 0.4662797 0.3951413 +0.519487 0.4662797 0.3951413 +0.5245917 0.4662797 0.3951413 +0.529462 0.4662797 0.3951413 +0.5341183 0.4662797 0.3951413 +0.5385787 0.4662797 0.3951413 +0.5428591 0.4662797 0.3951413 +0.5469733 0.4662797 0.3951413 +0.5509339 0.4662797 0.3951413 +0.5547519 0.4662797 0.3951413 +0.5584371 0.4662797 0.3951413 +0.5619986 0.4662797 0.3951413 +0.5654443 0.4662797 0.3951413 +0.5687816 0.4662797 0.3951413 +0.092819 0.4745834 0.3951413 +0.2262531 0.4745834 0.3951413 +0.2875993 0.4745834 0.3951413 +0.3262122 0.4745834 0.3951413 +0.3544566 0.4745834 0.3951413 +0.3767383 0.4745834 0.3951413 +0.3951413 0.4745834 0.3951413 +0.4108177 0.4745834 0.3951413 +0.4244723 0.4745834 0.3951413 +0.4365675 0.4745834 0.3951413 +0.4474232 0.4745834 0.3951413 +0.45727 0.4745834 0.3951413 +0.4662797 0.4745834 0.3951413 +0.4745834 0.4745834 0.3951413 +0.4822838 0.4745834 0.3951413 +0.4894626 0.4745834 0.3951413 +0.4961862 0.4745834 0.3951413 +0.5025087 0.4745834 0.3951413 +0.5084753 0.4745834 0.3951413 +0.514124 0.4745834 0.3951413 +0.519487 0.4745834 0.3951413 +0.5245917 0.4745834 0.3951413 +0.529462 0.4745834 0.3951413 +0.5341183 0.4745834 0.3951413 +0.5385787 0.4745834 0.3951413 +0.5428591 0.4745834 0.3951413 +0.5469733 0.4745834 0.3951413 +0.5509339 0.4745834 0.3951413 +0.5547519 0.4745834 0.3951413 +0.5584371 0.4745834 0.3951413 +0.5619986 0.4745834 0.3951413 +0.5654443 0.4745834 0.3951413 +0.5687816 0.4745834 0.3951413 +0.092819 0.4822838 0.3951413 +0.2262531 0.4822838 0.3951413 +0.2875993 0.4822838 0.3951413 +0.3262122 0.4822838 0.3951413 +0.3544566 0.4822838 0.3951413 +0.3767383 0.4822838 0.3951413 +0.3951413 0.4822838 0.3951413 +0.4108177 0.4822838 0.3951413 +0.4244723 0.4822838 0.3951413 +0.4365675 0.4822838 0.3951413 +0.4474232 0.4822838 0.3951413 +0.45727 0.4822838 0.3951413 +0.4662797 0.4822838 0.3951413 +0.4745834 0.4822838 0.3951413 +0.4822838 0.4822838 0.3951413 +0.4894626 0.4822838 0.3951413 +0.4961862 0.4822838 0.3951413 +0.5025087 0.4822838 0.3951413 +0.5084753 0.4822838 0.3951413 +0.514124 0.4822838 0.3951413 +0.519487 0.4822838 0.3951413 +0.5245917 0.4822838 0.3951413 +0.529462 0.4822838 0.3951413 +0.5341183 0.4822838 0.3951413 +0.5385787 0.4822838 0.3951413 +0.5428591 0.4822838 0.3951413 +0.5469733 0.4822838 0.3951413 +0.5509339 0.4822838 0.3951413 +0.5547519 0.4822838 0.3951413 +0.5584371 0.4822838 0.3951413 +0.5619986 0.4822838 0.3951413 +0.5654443 0.4822838 0.3951413 +0.5687816 0.4822838 0.3951413 +0.092819 0.4894626 0.3951413 +0.2262531 0.4894626 0.3951413 +0.2875993 0.4894626 0.3951413 +0.3262122 0.4894626 0.3951413 +0.3544566 0.4894626 0.3951413 +0.3767383 0.4894626 0.3951413 +0.3951413 0.4894626 0.3951413 +0.4108177 0.4894626 0.3951413 +0.4244723 0.4894626 0.3951413 +0.4365675 0.4894626 0.3951413 +0.4474232 0.4894626 0.3951413 +0.45727 0.4894626 0.3951413 +0.4662797 0.4894626 0.3951413 +0.4745834 0.4894626 0.3951413 +0.4822838 0.4894626 0.3951413 +0.4894626 0.4894626 0.3951413 +0.4961862 0.4894626 0.3951413 +0.5025087 0.4894626 0.3951413 +0.5084753 0.4894626 0.3951413 +0.514124 0.4894626 0.3951413 +0.519487 0.4894626 0.3951413 +0.5245917 0.4894626 0.3951413 +0.529462 0.4894626 0.3951413 +0.5341183 0.4894626 0.3951413 +0.5385787 0.4894626 0.3951413 +0.5428591 0.4894626 0.3951413 +0.5469733 0.4894626 0.3951413 +0.5509339 0.4894626 0.3951413 +0.5547519 0.4894626 0.3951413 +0.5584371 0.4894626 0.3951413 +0.5619986 0.4894626 0.3951413 +0.5654443 0.4894626 0.3951413 +0.5687816 0.4894626 0.3951413 +0.092819 0.4961862 0.3951413 +0.2262531 0.4961862 0.3951413 +0.2875993 0.4961862 0.3951413 +0.3262122 0.4961862 0.3951413 +0.3544566 0.4961862 0.3951413 +0.3767383 0.4961862 0.3951413 +0.3951413 0.4961862 0.3951413 +0.4108177 0.4961862 0.3951413 +0.4244723 0.4961862 0.3951413 +0.4365675 0.4961862 0.3951413 +0.4474232 0.4961862 0.3951413 +0.45727 0.4961862 0.3951413 +0.4662797 0.4961862 0.3951413 +0.4745834 0.4961862 0.3951413 +0.4822838 0.4961862 0.3951413 +0.4894626 0.4961862 0.3951413 +0.4961862 0.4961862 0.3951413 +0.5025087 0.4961862 0.3951413 +0.5084753 0.4961862 0.3951413 +0.514124 0.4961862 0.3951413 +0.519487 0.4961862 0.3951413 +0.5245917 0.4961862 0.3951413 +0.529462 0.4961862 0.3951413 +0.5341183 0.4961862 0.3951413 +0.5385787 0.4961862 0.3951413 +0.5428591 0.4961862 0.3951413 +0.5469733 0.4961862 0.3951413 +0.5509339 0.4961862 0.3951413 +0.5547519 0.4961862 0.3951413 +0.5584371 0.4961862 0.3951413 +0.5619986 0.4961862 0.3951413 +0.5654443 0.4961862 0.3951413 +0.5687816 0.4961862 0.3951413 +0.092819 0.5025087 0.3951413 +0.2262531 0.5025087 0.3951413 +0.2875993 0.5025087 0.3951413 +0.3262122 0.5025087 0.3951413 +0.3544566 0.5025087 0.3951413 +0.3767383 0.5025087 0.3951413 +0.3951413 0.5025087 0.3951413 +0.4108177 0.5025087 0.3951413 +0.4244723 0.5025087 0.3951413 +0.4365675 0.5025087 0.3951413 +0.4474232 0.5025087 0.3951413 +0.45727 0.5025087 0.3951413 +0.4662797 0.5025087 0.3951413 +0.4745834 0.5025087 0.3951413 +0.4822838 0.5025087 0.3951413 +0.4894626 0.5025087 0.3951413 +0.4961862 0.5025087 0.3951413 +0.5025087 0.5025087 0.3951413 +0.5084753 0.5025087 0.3951413 +0.514124 0.5025087 0.3951413 +0.519487 0.5025087 0.3951413 +0.5245917 0.5025087 0.3951413 +0.529462 0.5025087 0.3951413 +0.5341183 0.5025087 0.3951413 +0.5385787 0.5025087 0.3951413 +0.5428591 0.5025087 0.3951413 +0.5469733 0.5025087 0.3951413 +0.5509339 0.5025087 0.3951413 +0.5547519 0.5025087 0.3951413 +0.5584371 0.5025087 0.3951413 +0.5619986 0.5025087 0.3951413 +0.5654443 0.5025087 0.3951413 +0.5687816 0.5025087 0.3951413 +0.092819 0.5084753 0.3951413 +0.2262531 0.5084753 0.3951413 +0.2875993 0.5084753 0.3951413 +0.3262122 0.5084753 0.3951413 +0.3544566 0.5084753 0.3951413 +0.3767383 0.5084753 0.3951413 +0.3951413 0.5084753 0.3951413 +0.4108177 0.5084753 0.3951413 +0.4244723 0.5084753 0.3951413 +0.4365675 0.5084753 0.3951413 +0.4474232 0.5084753 0.3951413 +0.45727 0.5084753 0.3951413 +0.4662797 0.5084753 0.3951413 +0.4745834 0.5084753 0.3951413 +0.4822838 0.5084753 0.3951413 +0.4894626 0.5084753 0.3951413 +0.4961862 0.5084753 0.3951413 +0.5025087 0.5084753 0.3951413 +0.5084753 0.5084753 0.3951413 +0.514124 0.5084753 0.3951413 +0.519487 0.5084753 0.3951413 +0.5245917 0.5084753 0.3951413 +0.529462 0.5084753 0.3951413 +0.5341183 0.5084753 0.3951413 +0.5385787 0.5084753 0.3951413 +0.5428591 0.5084753 0.3951413 +0.5469733 0.5084753 0.3951413 +0.5509339 0.5084753 0.3951413 +0.5547519 0.5084753 0.3951413 +0.5584371 0.5084753 0.3951413 +0.5619986 0.5084753 0.3951413 +0.5654443 0.5084753 0.3951413 +0.5687816 0.5084753 0.3951413 +0.092819 0.514124 0.3951413 +0.2262531 0.514124 0.3951413 +0.2875993 0.514124 0.3951413 +0.3262122 0.514124 0.3951413 +0.3544566 0.514124 0.3951413 +0.3767383 0.514124 0.3951413 +0.3951413 0.514124 0.3951413 +0.4108177 0.514124 0.3951413 +0.4244723 0.514124 0.3951413 +0.4365675 0.514124 0.3951413 +0.4474232 0.514124 0.3951413 +0.45727 0.514124 0.3951413 +0.4662797 0.514124 0.3951413 +0.4745834 0.514124 0.3951413 +0.4822838 0.514124 0.3951413 +0.4894626 0.514124 0.3951413 +0.4961862 0.514124 0.3951413 +0.5025087 0.514124 0.3951413 +0.5084753 0.514124 0.3951413 +0.514124 0.514124 0.3951413 +0.519487 0.514124 0.3951413 +0.5245917 0.514124 0.3951413 +0.529462 0.514124 0.3951413 +0.5341183 0.514124 0.3951413 +0.5385787 0.514124 0.3951413 +0.5428591 0.514124 0.3951413 +0.5469733 0.514124 0.3951413 +0.5509339 0.514124 0.3951413 +0.5547519 0.514124 0.3951413 +0.5584371 0.514124 0.3951413 +0.5619986 0.514124 0.3951413 +0.5654443 0.514124 0.3951413 +0.5687816 0.514124 0.3951413 +0.092819 0.519487 0.3951413 +0.2262531 0.519487 0.3951413 +0.2875993 0.519487 0.3951413 +0.3262122 0.519487 0.3951413 +0.3544566 0.519487 0.3951413 +0.3767383 0.519487 0.3951413 +0.3951413 0.519487 0.3951413 +0.4108177 0.519487 0.3951413 +0.4244723 0.519487 0.3951413 +0.4365675 0.519487 0.3951413 +0.4474232 0.519487 0.3951413 +0.45727 0.519487 0.3951413 +0.4662797 0.519487 0.3951413 +0.4745834 0.519487 0.3951413 +0.4822838 0.519487 0.3951413 +0.4894626 0.519487 0.3951413 +0.4961862 0.519487 0.3951413 +0.5025087 0.519487 0.3951413 +0.5084753 0.519487 0.3951413 +0.514124 0.519487 0.3951413 +0.519487 0.519487 0.3951413 +0.5245917 0.519487 0.3951413 +0.529462 0.519487 0.3951413 +0.5341183 0.519487 0.3951413 +0.5385787 0.519487 0.3951413 +0.5428591 0.519487 0.3951413 +0.5469733 0.519487 0.3951413 +0.5509339 0.519487 0.3951413 +0.5547519 0.519487 0.3951413 +0.5584371 0.519487 0.3951413 +0.5619986 0.519487 0.3951413 +0.5654443 0.519487 0.3951413 +0.5687816 0.519487 0.3951413 +0.092819 0.5245917 0.3951413 +0.2262531 0.5245917 0.3951413 +0.2875993 0.5245917 0.3951413 +0.3262122 0.5245917 0.3951413 +0.3544566 0.5245917 0.3951413 +0.3767383 0.5245917 0.3951413 +0.3951413 0.5245917 0.3951413 +0.4108177 0.5245917 0.3951413 +0.4244723 0.5245917 0.3951413 +0.4365675 0.5245917 0.3951413 +0.4474232 0.5245917 0.3951413 +0.45727 0.5245917 0.3951413 +0.4662797 0.5245917 0.3951413 +0.4745834 0.5245917 0.3951413 +0.4822838 0.5245917 0.3951413 +0.4894626 0.5245917 0.3951413 +0.4961862 0.5245917 0.3951413 +0.5025087 0.5245917 0.3951413 +0.5084753 0.5245917 0.3951413 +0.514124 0.5245917 0.3951413 +0.519487 0.5245917 0.3951413 +0.5245917 0.5245917 0.3951413 +0.529462 0.5245917 0.3951413 +0.5341183 0.5245917 0.3951413 +0.5385787 0.5245917 0.3951413 +0.5428591 0.5245917 0.3951413 +0.5469733 0.5245917 0.3951413 +0.5509339 0.5245917 0.3951413 +0.5547519 0.5245917 0.3951413 +0.5584371 0.5245917 0.3951413 +0.5619986 0.5245917 0.3951413 +0.5654443 0.5245917 0.3951413 +0.5687816 0.5245917 0.3951413 +0.092819 0.529462 0.3951413 +0.2262531 0.529462 0.3951413 +0.2875993 0.529462 0.3951413 +0.3262122 0.529462 0.3951413 +0.3544566 0.529462 0.3951413 +0.3767383 0.529462 0.3951413 +0.3951413 0.529462 0.3951413 +0.4108177 0.529462 0.3951413 +0.4244723 0.529462 0.3951413 +0.4365675 0.529462 0.3951413 +0.4474232 0.529462 0.3951413 +0.45727 0.529462 0.3951413 +0.4662797 0.529462 0.3951413 +0.4745834 0.529462 0.3951413 +0.4822838 0.529462 0.3951413 +0.4894626 0.529462 0.3951413 +0.4961862 0.529462 0.3951413 +0.5025087 0.529462 0.3951413 +0.5084753 0.529462 0.3951413 +0.514124 0.529462 0.3951413 +0.519487 0.529462 0.3951413 +0.5245917 0.529462 0.3951413 +0.529462 0.529462 0.3951413 +0.5341183 0.529462 0.3951413 +0.5385787 0.529462 0.3951413 +0.5428591 0.529462 0.3951413 +0.5469733 0.529462 0.3951413 +0.5509339 0.529462 0.3951413 +0.5547519 0.529462 0.3951413 +0.5584371 0.529462 0.3951413 +0.5619986 0.529462 0.3951413 +0.5654443 0.529462 0.3951413 +0.5687816 0.529462 0.3951413 +0.092819 0.5341183 0.3951413 +0.2262531 0.5341183 0.3951413 +0.2875993 0.5341183 0.3951413 +0.3262122 0.5341183 0.3951413 +0.3544566 0.5341183 0.3951413 +0.3767383 0.5341183 0.3951413 +0.3951413 0.5341183 0.3951413 +0.4108177 0.5341183 0.3951413 +0.4244723 0.5341183 0.3951413 +0.4365675 0.5341183 0.3951413 +0.4474232 0.5341183 0.3951413 +0.45727 0.5341183 0.3951413 +0.4662797 0.5341183 0.3951413 +0.4745834 0.5341183 0.3951413 +0.4822838 0.5341183 0.3951413 +0.4894626 0.5341183 0.3951413 +0.4961862 0.5341183 0.3951413 +0.5025087 0.5341183 0.3951413 +0.5084753 0.5341183 0.3951413 +0.514124 0.5341183 0.3951413 +0.519487 0.5341183 0.3951413 +0.5245917 0.5341183 0.3951413 +0.529462 0.5341183 0.3951413 +0.5341183 0.5341183 0.3951413 +0.5385787 0.5341183 0.3951413 +0.5428591 0.5341183 0.3951413 +0.5469733 0.5341183 0.3951413 +0.5509339 0.5341183 0.3951413 +0.5547519 0.5341183 0.3951413 +0.5584371 0.5341183 0.3951413 +0.5619986 0.5341183 0.3951413 +0.5654443 0.5341183 0.3951413 +0.5687816 0.5341183 0.3951413 +0.092819 0.5385787 0.3951413 +0.2262531 0.5385787 0.3951413 +0.2875993 0.5385787 0.3951413 +0.3262122 0.5385787 0.3951413 +0.3544566 0.5385787 0.3951413 +0.3767383 0.5385787 0.3951413 +0.3951413 0.5385787 0.3951413 +0.4108177 0.5385787 0.3951413 +0.4244723 0.5385787 0.3951413 +0.4365675 0.5385787 0.3951413 +0.4474232 0.5385787 0.3951413 +0.45727 0.5385787 0.3951413 +0.4662797 0.5385787 0.3951413 +0.4745834 0.5385787 0.3951413 +0.4822838 0.5385787 0.3951413 +0.4894626 0.5385787 0.3951413 +0.4961862 0.5385787 0.3951413 +0.5025087 0.5385787 0.3951413 +0.5084753 0.5385787 0.3951413 +0.514124 0.5385787 0.3951413 +0.519487 0.5385787 0.3951413 +0.5245917 0.5385787 0.3951413 +0.529462 0.5385787 0.3951413 +0.5341183 0.5385787 0.3951413 +0.5385787 0.5385787 0.3951413 +0.5428591 0.5385787 0.3951413 +0.5469733 0.5385787 0.3951413 +0.5509339 0.5385787 0.3951413 +0.5547519 0.5385787 0.3951413 +0.5584371 0.5385787 0.3951413 +0.5619986 0.5385787 0.3951413 +0.5654443 0.5385787 0.3951413 +0.5687816 0.5385787 0.3951413 +0.092819 0.5428591 0.3951413 +0.2262531 0.5428591 0.3951413 +0.2875993 0.5428591 0.3951413 +0.3262122 0.5428591 0.3951413 +0.3544566 0.5428591 0.3951413 +0.3767383 0.5428591 0.3951413 +0.3951413 0.5428591 0.3951413 +0.4108177 0.5428591 0.3951413 +0.4244723 0.5428591 0.3951413 +0.4365675 0.5428591 0.3951413 +0.4474232 0.5428591 0.3951413 +0.45727 0.5428591 0.3951413 +0.4662797 0.5428591 0.3951413 +0.4745834 0.5428591 0.3951413 +0.4822838 0.5428591 0.3951413 +0.4894626 0.5428591 0.3951413 +0.4961862 0.5428591 0.3951413 +0.5025087 0.5428591 0.3951413 +0.5084753 0.5428591 0.3951413 +0.514124 0.5428591 0.3951413 +0.519487 0.5428591 0.3951413 +0.5245917 0.5428591 0.3951413 +0.529462 0.5428591 0.3951413 +0.5341183 0.5428591 0.3951413 +0.5385787 0.5428591 0.3951413 +0.5428591 0.5428591 0.3951413 +0.5469733 0.5428591 0.3951413 +0.5509339 0.5428591 0.3951413 +0.5547519 0.5428591 0.3951413 +0.5584371 0.5428591 0.3951413 +0.5619986 0.5428591 0.3951413 +0.5654443 0.5428591 0.3951413 +0.5687816 0.5428591 0.3951413 +0.092819 0.5469733 0.3951413 +0.2262531 0.5469733 0.3951413 +0.2875993 0.5469733 0.3951413 +0.3262122 0.5469733 0.3951413 +0.3544566 0.5469733 0.3951413 +0.3767383 0.5469733 0.3951413 +0.3951413 0.5469733 0.3951413 +0.4108177 0.5469733 0.3951413 +0.4244723 0.5469733 0.3951413 +0.4365675 0.5469733 0.3951413 +0.4474232 0.5469733 0.3951413 +0.45727 0.5469733 0.3951413 +0.4662797 0.5469733 0.3951413 +0.4745834 0.5469733 0.3951413 +0.4822838 0.5469733 0.3951413 +0.4894626 0.5469733 0.3951413 +0.4961862 0.5469733 0.3951413 +0.5025087 0.5469733 0.3951413 +0.5084753 0.5469733 0.3951413 +0.514124 0.5469733 0.3951413 +0.519487 0.5469733 0.3951413 +0.5245917 0.5469733 0.3951413 +0.529462 0.5469733 0.3951413 +0.5341183 0.5469733 0.3951413 +0.5385787 0.5469733 0.3951413 +0.5428591 0.5469733 0.3951413 +0.5469733 0.5469733 0.3951413 +0.5509339 0.5469733 0.3951413 +0.5547519 0.5469733 0.3951413 +0.5584371 0.5469733 0.3951413 +0.5619986 0.5469733 0.3951413 +0.5654443 0.5469733 0.3951413 +0.5687816 0.5469733 0.3951413 +0.092819 0.5509339 0.3951413 +0.2262531 0.5509339 0.3951413 +0.2875993 0.5509339 0.3951413 +0.3262122 0.5509339 0.3951413 +0.3544566 0.5509339 0.3951413 +0.3767383 0.5509339 0.3951413 +0.3951413 0.5509339 0.3951413 +0.4108177 0.5509339 0.3951413 +0.4244723 0.5509339 0.3951413 +0.4365675 0.5509339 0.3951413 +0.4474232 0.5509339 0.3951413 +0.45727 0.5509339 0.3951413 +0.4662797 0.5509339 0.3951413 +0.4745834 0.5509339 0.3951413 +0.4822838 0.5509339 0.3951413 +0.4894626 0.5509339 0.3951413 +0.4961862 0.5509339 0.3951413 +0.5025087 0.5509339 0.3951413 +0.5084753 0.5509339 0.3951413 +0.514124 0.5509339 0.3951413 +0.519487 0.5509339 0.3951413 +0.5245917 0.5509339 0.3951413 +0.529462 0.5509339 0.3951413 +0.5341183 0.5509339 0.3951413 +0.5385787 0.5509339 0.3951413 +0.5428591 0.5509339 0.3951413 +0.5469733 0.5509339 0.3951413 +0.5509339 0.5509339 0.3951413 +0.5547519 0.5509339 0.3951413 +0.5584371 0.5509339 0.3951413 +0.5619986 0.5509339 0.3951413 +0.5654443 0.5509339 0.3951413 +0.5687816 0.5509339 0.3951413 +0.092819 0.5547519 0.3951413 +0.2262531 0.5547519 0.3951413 +0.2875993 0.5547519 0.3951413 +0.3262122 0.5547519 0.3951413 +0.3544566 0.5547519 0.3951413 +0.3767383 0.5547519 0.3951413 +0.3951413 0.5547519 0.3951413 +0.4108177 0.5547519 0.3951413 +0.4244723 0.5547519 0.3951413 +0.4365675 0.5547519 0.3951413 +0.4474232 0.5547519 0.3951413 +0.45727 0.5547519 0.3951413 +0.4662797 0.5547519 0.3951413 +0.4745834 0.5547519 0.3951413 +0.4822838 0.5547519 0.3951413 +0.4894626 0.5547519 0.3951413 +0.4961862 0.5547519 0.3951413 +0.5025087 0.5547519 0.3951413 +0.5084753 0.5547519 0.3951413 +0.514124 0.5547519 0.3951413 +0.519487 0.5547519 0.3951413 +0.5245917 0.5547519 0.3951413 +0.529462 0.5547519 0.3951413 +0.5341183 0.5547519 0.3951413 +0.5385787 0.5547519 0.3951413 +0.5428591 0.5547519 0.3951413 +0.5469733 0.5547519 0.3951413 +0.5509339 0.5547519 0.3951413 +0.5547519 0.5547519 0.3951413 +0.5584371 0.5547519 0.3951413 +0.5619986 0.5547519 0.3951413 +0.5654443 0.5547519 0.3951413 +0.5687816 0.5547519 0.3951413 +0.092819 0.5584371 0.3951413 +0.2262531 0.5584371 0.3951413 +0.2875993 0.5584371 0.3951413 +0.3262122 0.5584371 0.3951413 +0.3544566 0.5584371 0.3951413 +0.3767383 0.5584371 0.3951413 +0.3951413 0.5584371 0.3951413 +0.4108177 0.5584371 0.3951413 +0.4244723 0.5584371 0.3951413 +0.4365675 0.5584371 0.3951413 +0.4474232 0.5584371 0.3951413 +0.45727 0.5584371 0.3951413 +0.4662797 0.5584371 0.3951413 +0.4745834 0.5584371 0.3951413 +0.4822838 0.5584371 0.3951413 +0.4894626 0.5584371 0.3951413 +0.4961862 0.5584371 0.3951413 +0.5025087 0.5584371 0.3951413 +0.5084753 0.5584371 0.3951413 +0.514124 0.5584371 0.3951413 +0.519487 0.5584371 0.3951413 +0.5245917 0.5584371 0.3951413 +0.529462 0.5584371 0.3951413 +0.5341183 0.5584371 0.3951413 +0.5385787 0.5584371 0.3951413 +0.5428591 0.5584371 0.3951413 +0.5469733 0.5584371 0.3951413 +0.5509339 0.5584371 0.3951413 +0.5547519 0.5584371 0.3951413 +0.5584371 0.5584371 0.3951413 +0.5619986 0.5584371 0.3951413 +0.5654443 0.5584371 0.3951413 +0.5687816 0.5584371 0.3951413 +0.092819 0.5619986 0.3951413 +0.2262531 0.5619986 0.3951413 +0.2875993 0.5619986 0.3951413 +0.3262122 0.5619986 0.3951413 +0.3544566 0.5619986 0.3951413 +0.3767383 0.5619986 0.3951413 +0.3951413 0.5619986 0.3951413 +0.4108177 0.5619986 0.3951413 +0.4244723 0.5619986 0.3951413 +0.4365675 0.5619986 0.3951413 +0.4474232 0.5619986 0.3951413 +0.45727 0.5619986 0.3951413 +0.4662797 0.5619986 0.3951413 +0.4745834 0.5619986 0.3951413 +0.4822838 0.5619986 0.3951413 +0.4894626 0.5619986 0.3951413 +0.4961862 0.5619986 0.3951413 +0.5025087 0.5619986 0.3951413 +0.5084753 0.5619986 0.3951413 +0.514124 0.5619986 0.3951413 +0.519487 0.5619986 0.3951413 +0.5245917 0.5619986 0.3951413 +0.529462 0.5619986 0.3951413 +0.5341183 0.5619986 0.3951413 +0.5385787 0.5619986 0.3951413 +0.5428591 0.5619986 0.3951413 +0.5469733 0.5619986 0.3951413 +0.5509339 0.5619986 0.3951413 +0.5547519 0.5619986 0.3951413 +0.5584371 0.5619986 0.3951413 +0.5619986 0.5619986 0.3951413 +0.5654443 0.5619986 0.3951413 +0.5687816 0.5619986 0.3951413 +0.092819 0.5654443 0.3951413 +0.2262531 0.5654443 0.3951413 +0.2875993 0.5654443 0.3951413 +0.3262122 0.5654443 0.3951413 +0.3544566 0.5654443 0.3951413 +0.3767383 0.5654443 0.3951413 +0.3951413 0.5654443 0.3951413 +0.4108177 0.5654443 0.3951413 +0.4244723 0.5654443 0.3951413 +0.4365675 0.5654443 0.3951413 +0.4474232 0.5654443 0.3951413 +0.45727 0.5654443 0.3951413 +0.4662797 0.5654443 0.3951413 +0.4745834 0.5654443 0.3951413 +0.4822838 0.5654443 0.3951413 +0.4894626 0.5654443 0.3951413 +0.4961862 0.5654443 0.3951413 +0.5025087 0.5654443 0.3951413 +0.5084753 0.5654443 0.3951413 +0.514124 0.5654443 0.3951413 +0.519487 0.5654443 0.3951413 +0.5245917 0.5654443 0.3951413 +0.529462 0.5654443 0.3951413 +0.5341183 0.5654443 0.3951413 +0.5385787 0.5654443 0.3951413 +0.5428591 0.5654443 0.3951413 +0.5469733 0.5654443 0.3951413 +0.5509339 0.5654443 0.3951413 +0.5547519 0.5654443 0.3951413 +0.5584371 0.5654443 0.3951413 +0.5619986 0.5654443 0.3951413 +0.5654443 0.5654443 0.3951413 +0.5687816 0.5654443 0.3951413 +0.092819 0.5687816 0.3951413 +0.2262531 0.5687816 0.3951413 +0.2875993 0.5687816 0.3951413 +0.3262122 0.5687816 0.3951413 +0.3544566 0.5687816 0.3951413 +0.3767383 0.5687816 0.3951413 +0.3951413 0.5687816 0.3951413 +0.4108177 0.5687816 0.3951413 +0.4244723 0.5687816 0.3951413 +0.4365675 0.5687816 0.3951413 +0.4474232 0.5687816 0.3951413 +0.45727 0.5687816 0.3951413 +0.4662797 0.5687816 0.3951413 +0.4745834 0.5687816 0.3951413 +0.4822838 0.5687816 0.3951413 +0.4894626 0.5687816 0.3951413 +0.4961862 0.5687816 0.3951413 +0.5025087 0.5687816 0.3951413 +0.5084753 0.5687816 0.3951413 +0.514124 0.5687816 0.3951413 +0.519487 0.5687816 0.3951413 +0.5245917 0.5687816 0.3951413 +0.529462 0.5687816 0.3951413 +0.5341183 0.5687816 0.3951413 +0.5385787 0.5687816 0.3951413 +0.5428591 0.5687816 0.3951413 +0.5469733 0.5687816 0.3951413 +0.5509339 0.5687816 0.3951413 +0.5547519 0.5687816 0.3951413 +0.5584371 0.5687816 0.3951413 +0.5619986 0.5687816 0.3951413 +0.5654443 0.5687816 0.3951413 +0.5687816 0.5687816 0.3951413 +0.092819 0.092819 0.4108177 +0.2262531 0.092819 0.4108177 +0.2875993 0.092819 0.4108177 +0.3262122 0.092819 0.4108177 +0.3544566 0.092819 0.4108177 +0.3767383 0.092819 0.4108177 +0.3951413 0.092819 0.4108177 +0.4108177 0.092819 0.4108177 +0.4244723 0.092819 0.4108177 +0.4365675 0.092819 0.4108177 +0.4474232 0.092819 0.4108177 +0.45727 0.092819 0.4108177 +0.4662797 0.092819 0.4108177 +0.4745834 0.092819 0.4108177 +0.4822838 0.092819 0.4108177 +0.4894626 0.092819 0.4108177 +0.4961862 0.092819 0.4108177 +0.5025087 0.092819 0.4108177 +0.5084753 0.092819 0.4108177 +0.514124 0.092819 0.4108177 +0.519487 0.092819 0.4108177 +0.5245917 0.092819 0.4108177 +0.529462 0.092819 0.4108177 +0.5341183 0.092819 0.4108177 +0.5385787 0.092819 0.4108177 +0.5428591 0.092819 0.4108177 +0.5469733 0.092819 0.4108177 +0.5509339 0.092819 0.4108177 +0.5547519 0.092819 0.4108177 +0.5584371 0.092819 0.4108177 +0.5619986 0.092819 0.4108177 +0.5654443 0.092819 0.4108177 +0.5687816 0.092819 0.4108177 +0.092819 0.2262531 0.4108177 +0.2262531 0.2262531 0.4108177 +0.2875993 0.2262531 0.4108177 +0.3262122 0.2262531 0.4108177 +0.3544566 0.2262531 0.4108177 +0.3767383 0.2262531 0.4108177 +0.3951413 0.2262531 0.4108177 +0.4108177 0.2262531 0.4108177 +0.4244723 0.2262531 0.4108177 +0.4365675 0.2262531 0.4108177 +0.4474232 0.2262531 0.4108177 +0.45727 0.2262531 0.4108177 +0.4662797 0.2262531 0.4108177 +0.4745834 0.2262531 0.4108177 +0.4822838 0.2262531 0.4108177 +0.4894626 0.2262531 0.4108177 +0.4961862 0.2262531 0.4108177 +0.5025087 0.2262531 0.4108177 +0.5084753 0.2262531 0.4108177 +0.514124 0.2262531 0.4108177 +0.519487 0.2262531 0.4108177 +0.5245917 0.2262531 0.4108177 +0.529462 0.2262531 0.4108177 +0.5341183 0.2262531 0.4108177 +0.5385787 0.2262531 0.4108177 +0.5428591 0.2262531 0.4108177 +0.5469733 0.2262531 0.4108177 +0.5509339 0.2262531 0.4108177 +0.5547519 0.2262531 0.4108177 +0.5584371 0.2262531 0.4108177 +0.5619986 0.2262531 0.4108177 +0.5654443 0.2262531 0.4108177 +0.5687816 0.2262531 0.4108177 +0.092819 0.2875993 0.4108177 +0.2262531 0.2875993 0.4108177 +0.2875993 0.2875993 0.4108177 +0.3262122 0.2875993 0.4108177 +0.3544566 0.2875993 0.4108177 +0.3767383 0.2875993 0.4108177 +0.3951413 0.2875993 0.4108177 +0.4108177 0.2875993 0.4108177 +0.4244723 0.2875993 0.4108177 +0.4365675 0.2875993 0.4108177 +0.4474232 0.2875993 0.4108177 +0.45727 0.2875993 0.4108177 +0.4662797 0.2875993 0.4108177 +0.4745834 0.2875993 0.4108177 +0.4822838 0.2875993 0.4108177 +0.4894626 0.2875993 0.4108177 +0.4961862 0.2875993 0.4108177 +0.5025087 0.2875993 0.4108177 +0.5084753 0.2875993 0.4108177 +0.514124 0.2875993 0.4108177 +0.519487 0.2875993 0.4108177 +0.5245917 0.2875993 0.4108177 +0.529462 0.2875993 0.4108177 +0.5341183 0.2875993 0.4108177 +0.5385787 0.2875993 0.4108177 +0.5428591 0.2875993 0.4108177 +0.5469733 0.2875993 0.4108177 +0.5509339 0.2875993 0.4108177 +0.5547519 0.2875993 0.4108177 +0.5584371 0.2875993 0.4108177 +0.5619986 0.2875993 0.4108177 +0.5654443 0.2875993 0.4108177 +0.5687816 0.2875993 0.4108177 +0.092819 0.3262122 0.4108177 +0.2262531 0.3262122 0.4108177 +0.2875993 0.3262122 0.4108177 +0.3262122 0.3262122 0.4108177 +0.3544566 0.3262122 0.4108177 +0.3767383 0.3262122 0.4108177 +0.3951413 0.3262122 0.4108177 +0.4108177 0.3262122 0.4108177 +0.4244723 0.3262122 0.4108177 +0.4365675 0.3262122 0.4108177 +0.4474232 0.3262122 0.4108177 +0.45727 0.3262122 0.4108177 +0.4662797 0.3262122 0.4108177 +0.4745834 0.3262122 0.4108177 +0.4822838 0.3262122 0.4108177 +0.4894626 0.3262122 0.4108177 +0.4961862 0.3262122 0.4108177 +0.5025087 0.3262122 0.4108177 +0.5084753 0.3262122 0.4108177 +0.514124 0.3262122 0.4108177 +0.519487 0.3262122 0.4108177 +0.5245917 0.3262122 0.4108177 +0.529462 0.3262122 0.4108177 +0.5341183 0.3262122 0.4108177 +0.5385787 0.3262122 0.4108177 +0.5428591 0.3262122 0.4108177 +0.5469733 0.3262122 0.4108177 +0.5509339 0.3262122 0.4108177 +0.5547519 0.3262122 0.4108177 +0.5584371 0.3262122 0.4108177 +0.5619986 0.3262122 0.4108177 +0.5654443 0.3262122 0.4108177 +0.5687816 0.3262122 0.4108177 +0.092819 0.3544566 0.4108177 +0.2262531 0.3544566 0.4108177 +0.2875993 0.3544566 0.4108177 +0.3262122 0.3544566 0.4108177 +0.3544566 0.3544566 0.4108177 +0.3767383 0.3544566 0.4108177 +0.3951413 0.3544566 0.4108177 +0.4108177 0.3544566 0.4108177 +0.4244723 0.3544566 0.4108177 +0.4365675 0.3544566 0.4108177 +0.4474232 0.3544566 0.4108177 +0.45727 0.3544566 0.4108177 +0.4662797 0.3544566 0.4108177 +0.4745834 0.3544566 0.4108177 +0.4822838 0.3544566 0.4108177 +0.4894626 0.3544566 0.4108177 +0.4961862 0.3544566 0.4108177 +0.5025087 0.3544566 0.4108177 +0.5084753 0.3544566 0.4108177 +0.514124 0.3544566 0.4108177 +0.519487 0.3544566 0.4108177 +0.5245917 0.3544566 0.4108177 +0.529462 0.3544566 0.4108177 +0.5341183 0.3544566 0.4108177 +0.5385787 0.3544566 0.4108177 +0.5428591 0.3544566 0.4108177 +0.5469733 0.3544566 0.4108177 +0.5509339 0.3544566 0.4108177 +0.5547519 0.3544566 0.4108177 +0.5584371 0.3544566 0.4108177 +0.5619986 0.3544566 0.4108177 +0.5654443 0.3544566 0.4108177 +0.5687816 0.3544566 0.4108177 +0.092819 0.3767383 0.4108177 +0.2262531 0.3767383 0.4108177 +0.2875993 0.3767383 0.4108177 +0.3262122 0.3767383 0.4108177 +0.3544566 0.3767383 0.4108177 +0.3767383 0.3767383 0.4108177 +0.3951413 0.3767383 0.4108177 +0.4108177 0.3767383 0.4108177 +0.4244723 0.3767383 0.4108177 +0.4365675 0.3767383 0.4108177 +0.4474232 0.3767383 0.4108177 +0.45727 0.3767383 0.4108177 +0.4662797 0.3767383 0.4108177 +0.4745834 0.3767383 0.4108177 +0.4822838 0.3767383 0.4108177 +0.4894626 0.3767383 0.4108177 +0.4961862 0.3767383 0.4108177 +0.5025087 0.3767383 0.4108177 +0.5084753 0.3767383 0.4108177 +0.514124 0.3767383 0.4108177 +0.519487 0.3767383 0.4108177 +0.5245917 0.3767383 0.4108177 +0.529462 0.3767383 0.4108177 +0.5341183 0.3767383 0.4108177 +0.5385787 0.3767383 0.4108177 +0.5428591 0.3767383 0.4108177 +0.5469733 0.3767383 0.4108177 +0.5509339 0.3767383 0.4108177 +0.5547519 0.3767383 0.4108177 +0.5584371 0.3767383 0.4108177 +0.5619986 0.3767383 0.4108177 +0.5654443 0.3767383 0.4108177 +0.5687816 0.3767383 0.4108177 +0.092819 0.3951413 0.4108177 +0.2262531 0.3951413 0.4108177 +0.2875993 0.3951413 0.4108177 +0.3262122 0.3951413 0.4108177 +0.3544566 0.3951413 0.4108177 +0.3767383 0.3951413 0.4108177 +0.3951413 0.3951413 0.4108177 +0.4108177 0.3951413 0.4108177 +0.4244723 0.3951413 0.4108177 +0.4365675 0.3951413 0.4108177 +0.4474232 0.3951413 0.4108177 +0.45727 0.3951413 0.4108177 +0.4662797 0.3951413 0.4108177 +0.4745834 0.3951413 0.4108177 +0.4822838 0.3951413 0.4108177 +0.4894626 0.3951413 0.4108177 +0.4961862 0.3951413 0.4108177 +0.5025087 0.3951413 0.4108177 +0.5084753 0.3951413 0.4108177 +0.514124 0.3951413 0.4108177 +0.519487 0.3951413 0.4108177 +0.5245917 0.3951413 0.4108177 +0.529462 0.3951413 0.4108177 +0.5341183 0.3951413 0.4108177 +0.5385787 0.3951413 0.4108177 +0.5428591 0.3951413 0.4108177 +0.5469733 0.3951413 0.4108177 +0.5509339 0.3951413 0.4108177 +0.5547519 0.3951413 0.4108177 +0.5584371 0.3951413 0.4108177 +0.5619986 0.3951413 0.4108177 +0.5654443 0.3951413 0.4108177 +0.5687816 0.3951413 0.4108177 +0.092819 0.4108177 0.4108177 +0.2262531 0.4108177 0.4108177 +0.2875993 0.4108177 0.4108177 +0.3262122 0.4108177 0.4108177 +0.3544566 0.4108177 0.4108177 +0.3767383 0.4108177 0.4108177 +0.3951413 0.4108177 0.4108177 +0.4108177 0.4108177 0.4108177 +0.4244723 0.4108177 0.4108177 +0.4365675 0.4108177 0.4108177 +0.4474232 0.4108177 0.4108177 +0.45727 0.4108177 0.4108177 +0.4662797 0.4108177 0.4108177 +0.4745834 0.4108177 0.4108177 +0.4822838 0.4108177 0.4108177 +0.4894626 0.4108177 0.4108177 +0.4961862 0.4108177 0.4108177 +0.5025087 0.4108177 0.4108177 +0.5084753 0.4108177 0.4108177 +0.514124 0.4108177 0.4108177 +0.519487 0.4108177 0.4108177 +0.5245917 0.4108177 0.4108177 +0.529462 0.4108177 0.4108177 +0.5341183 0.4108177 0.4108177 +0.5385787 0.4108177 0.4108177 +0.5428591 0.4108177 0.4108177 +0.5469733 0.4108177 0.4108177 +0.5509339 0.4108177 0.4108177 +0.5547519 0.4108177 0.4108177 +0.5584371 0.4108177 0.4108177 +0.5619986 0.4108177 0.4108177 +0.5654443 0.4108177 0.4108177 +0.5687816 0.4108177 0.4108177 +0.092819 0.4244723 0.4108177 +0.2262531 0.4244723 0.4108177 +0.2875993 0.4244723 0.4108177 +0.3262122 0.4244723 0.4108177 +0.3544566 0.4244723 0.4108177 +0.3767383 0.4244723 0.4108177 +0.3951413 0.4244723 0.4108177 +0.4108177 0.4244723 0.4108177 +0.4244723 0.4244723 0.4108177 +0.4365675 0.4244723 0.4108177 +0.4474232 0.4244723 0.4108177 +0.45727 0.4244723 0.4108177 +0.4662797 0.4244723 0.4108177 +0.4745834 0.4244723 0.4108177 +0.4822838 0.4244723 0.4108177 +0.4894626 0.4244723 0.4108177 +0.4961862 0.4244723 0.4108177 +0.5025087 0.4244723 0.4108177 +0.5084753 0.4244723 0.4108177 +0.514124 0.4244723 0.4108177 +0.519487 0.4244723 0.4108177 +0.5245917 0.4244723 0.4108177 +0.529462 0.4244723 0.4108177 +0.5341183 0.4244723 0.4108177 +0.5385787 0.4244723 0.4108177 +0.5428591 0.4244723 0.4108177 +0.5469733 0.4244723 0.4108177 +0.5509339 0.4244723 0.4108177 +0.5547519 0.4244723 0.4108177 +0.5584371 0.4244723 0.4108177 +0.5619986 0.4244723 0.4108177 +0.5654443 0.4244723 0.4108177 +0.5687816 0.4244723 0.4108177 +0.092819 0.4365675 0.4108177 +0.2262531 0.4365675 0.4108177 +0.2875993 0.4365675 0.4108177 +0.3262122 0.4365675 0.4108177 +0.3544566 0.4365675 0.4108177 +0.3767383 0.4365675 0.4108177 +0.3951413 0.4365675 0.4108177 +0.4108177 0.4365675 0.4108177 +0.4244723 0.4365675 0.4108177 +0.4365675 0.4365675 0.4108177 +0.4474232 0.4365675 0.4108177 +0.45727 0.4365675 0.4108177 +0.4662797 0.4365675 0.4108177 +0.4745834 0.4365675 0.4108177 +0.4822838 0.4365675 0.4108177 +0.4894626 0.4365675 0.4108177 +0.4961862 0.4365675 0.4108177 +0.5025087 0.4365675 0.4108177 +0.5084753 0.4365675 0.4108177 +0.514124 0.4365675 0.4108177 +0.519487 0.4365675 0.4108177 +0.5245917 0.4365675 0.4108177 +0.529462 0.4365675 0.4108177 +0.5341183 0.4365675 0.4108177 +0.5385787 0.4365675 0.4108177 +0.5428591 0.4365675 0.4108177 +0.5469733 0.4365675 0.4108177 +0.5509339 0.4365675 0.4108177 +0.5547519 0.4365675 0.4108177 +0.5584371 0.4365675 0.4108177 +0.5619986 0.4365675 0.4108177 +0.5654443 0.4365675 0.4108177 +0.5687816 0.4365675 0.4108177 +0.092819 0.4474232 0.4108177 +0.2262531 0.4474232 0.4108177 +0.2875993 0.4474232 0.4108177 +0.3262122 0.4474232 0.4108177 +0.3544566 0.4474232 0.4108177 +0.3767383 0.4474232 0.4108177 +0.3951413 0.4474232 0.4108177 +0.4108177 0.4474232 0.4108177 +0.4244723 0.4474232 0.4108177 +0.4365675 0.4474232 0.4108177 +0.4474232 0.4474232 0.4108177 +0.45727 0.4474232 0.4108177 +0.4662797 0.4474232 0.4108177 +0.4745834 0.4474232 0.4108177 +0.4822838 0.4474232 0.4108177 +0.4894626 0.4474232 0.4108177 +0.4961862 0.4474232 0.4108177 +0.5025087 0.4474232 0.4108177 +0.5084753 0.4474232 0.4108177 +0.514124 0.4474232 0.4108177 +0.519487 0.4474232 0.4108177 +0.5245917 0.4474232 0.4108177 +0.529462 0.4474232 0.4108177 +0.5341183 0.4474232 0.4108177 +0.5385787 0.4474232 0.4108177 +0.5428591 0.4474232 0.4108177 +0.5469733 0.4474232 0.4108177 +0.5509339 0.4474232 0.4108177 +0.5547519 0.4474232 0.4108177 +0.5584371 0.4474232 0.4108177 +0.5619986 0.4474232 0.4108177 +0.5654443 0.4474232 0.4108177 +0.5687816 0.4474232 0.4108177 +0.092819 0.45727 0.4108177 +0.2262531 0.45727 0.4108177 +0.2875993 0.45727 0.4108177 +0.3262122 0.45727 0.4108177 +0.3544566 0.45727 0.4108177 +0.3767383 0.45727 0.4108177 +0.3951413 0.45727 0.4108177 +0.4108177 0.45727 0.4108177 +0.4244723 0.45727 0.4108177 +0.4365675 0.45727 0.4108177 +0.4474232 0.45727 0.4108177 +0.45727 0.45727 0.4108177 +0.4662797 0.45727 0.4108177 +0.4745834 0.45727 0.4108177 +0.4822838 0.45727 0.4108177 +0.4894626 0.45727 0.4108177 +0.4961862 0.45727 0.4108177 +0.5025087 0.45727 0.4108177 +0.5084753 0.45727 0.4108177 +0.514124 0.45727 0.4108177 +0.519487 0.45727 0.4108177 +0.5245917 0.45727 0.4108177 +0.529462 0.45727 0.4108177 +0.5341183 0.45727 0.4108177 +0.5385787 0.45727 0.4108177 +0.5428591 0.45727 0.4108177 +0.5469733 0.45727 0.4108177 +0.5509339 0.45727 0.4108177 +0.5547519 0.45727 0.4108177 +0.5584371 0.45727 0.4108177 +0.5619986 0.45727 0.4108177 +0.5654443 0.45727 0.4108177 +0.5687816 0.45727 0.4108177 +0.092819 0.4662797 0.4108177 +0.2262531 0.4662797 0.4108177 +0.2875993 0.4662797 0.4108177 +0.3262122 0.4662797 0.4108177 +0.3544566 0.4662797 0.4108177 +0.3767383 0.4662797 0.4108177 +0.3951413 0.4662797 0.4108177 +0.4108177 0.4662797 0.4108177 +0.4244723 0.4662797 0.4108177 +0.4365675 0.4662797 0.4108177 +0.4474232 0.4662797 0.4108177 +0.45727 0.4662797 0.4108177 +0.4662797 0.4662797 0.4108177 +0.4745834 0.4662797 0.4108177 +0.4822838 0.4662797 0.4108177 +0.4894626 0.4662797 0.4108177 +0.4961862 0.4662797 0.4108177 +0.5025087 0.4662797 0.4108177 +0.5084753 0.4662797 0.4108177 +0.514124 0.4662797 0.4108177 +0.519487 0.4662797 0.4108177 +0.5245917 0.4662797 0.4108177 +0.529462 0.4662797 0.4108177 +0.5341183 0.4662797 0.4108177 +0.5385787 0.4662797 0.4108177 +0.5428591 0.4662797 0.4108177 +0.5469733 0.4662797 0.4108177 +0.5509339 0.4662797 0.4108177 +0.5547519 0.4662797 0.4108177 +0.5584371 0.4662797 0.4108177 +0.5619986 0.4662797 0.4108177 +0.5654443 0.4662797 0.4108177 +0.5687816 0.4662797 0.4108177 +0.092819 0.4745834 0.4108177 +0.2262531 0.4745834 0.4108177 +0.2875993 0.4745834 0.4108177 +0.3262122 0.4745834 0.4108177 +0.3544566 0.4745834 0.4108177 +0.3767383 0.4745834 0.4108177 +0.3951413 0.4745834 0.4108177 +0.4108177 0.4745834 0.4108177 +0.4244723 0.4745834 0.4108177 +0.4365675 0.4745834 0.4108177 +0.4474232 0.4745834 0.4108177 +0.45727 0.4745834 0.4108177 +0.4662797 0.4745834 0.4108177 +0.4745834 0.4745834 0.4108177 +0.4822838 0.4745834 0.4108177 +0.4894626 0.4745834 0.4108177 +0.4961862 0.4745834 0.4108177 +0.5025087 0.4745834 0.4108177 +0.5084753 0.4745834 0.4108177 +0.514124 0.4745834 0.4108177 +0.519487 0.4745834 0.4108177 +0.5245917 0.4745834 0.4108177 +0.529462 0.4745834 0.4108177 +0.5341183 0.4745834 0.4108177 +0.5385787 0.4745834 0.4108177 +0.5428591 0.4745834 0.4108177 +0.5469733 0.4745834 0.4108177 +0.5509339 0.4745834 0.4108177 +0.5547519 0.4745834 0.4108177 +0.5584371 0.4745834 0.4108177 +0.5619986 0.4745834 0.4108177 +0.5654443 0.4745834 0.4108177 +0.5687816 0.4745834 0.4108177 +0.092819 0.4822838 0.4108177 +0.2262531 0.4822838 0.4108177 +0.2875993 0.4822838 0.4108177 +0.3262122 0.4822838 0.4108177 +0.3544566 0.4822838 0.4108177 +0.3767383 0.4822838 0.4108177 +0.3951413 0.4822838 0.4108177 +0.4108177 0.4822838 0.4108177 +0.4244723 0.4822838 0.4108177 +0.4365675 0.4822838 0.4108177 +0.4474232 0.4822838 0.4108177 +0.45727 0.4822838 0.4108177 +0.4662797 0.4822838 0.4108177 +0.4745834 0.4822838 0.4108177 +0.4822838 0.4822838 0.4108177 +0.4894626 0.4822838 0.4108177 +0.4961862 0.4822838 0.4108177 +0.5025087 0.4822838 0.4108177 +0.5084753 0.4822838 0.4108177 +0.514124 0.4822838 0.4108177 +0.519487 0.4822838 0.4108177 +0.5245917 0.4822838 0.4108177 +0.529462 0.4822838 0.4108177 +0.5341183 0.4822838 0.4108177 +0.5385787 0.4822838 0.4108177 +0.5428591 0.4822838 0.4108177 +0.5469733 0.4822838 0.4108177 +0.5509339 0.4822838 0.4108177 +0.5547519 0.4822838 0.4108177 +0.5584371 0.4822838 0.4108177 +0.5619986 0.4822838 0.4108177 +0.5654443 0.4822838 0.4108177 +0.5687816 0.4822838 0.4108177 +0.092819 0.4894626 0.4108177 +0.2262531 0.4894626 0.4108177 +0.2875993 0.4894626 0.4108177 +0.3262122 0.4894626 0.4108177 +0.3544566 0.4894626 0.4108177 +0.3767383 0.4894626 0.4108177 +0.3951413 0.4894626 0.4108177 +0.4108177 0.4894626 0.4108177 +0.4244723 0.4894626 0.4108177 +0.4365675 0.4894626 0.4108177 +0.4474232 0.4894626 0.4108177 +0.45727 0.4894626 0.4108177 +0.4662797 0.4894626 0.4108177 +0.4745834 0.4894626 0.4108177 +0.4822838 0.4894626 0.4108177 +0.4894626 0.4894626 0.4108177 +0.4961862 0.4894626 0.4108177 +0.5025087 0.4894626 0.4108177 +0.5084753 0.4894626 0.4108177 +0.514124 0.4894626 0.4108177 +0.519487 0.4894626 0.4108177 +0.5245917 0.4894626 0.4108177 +0.529462 0.4894626 0.4108177 +0.5341183 0.4894626 0.4108177 +0.5385787 0.4894626 0.4108177 +0.5428591 0.4894626 0.4108177 +0.5469733 0.4894626 0.4108177 +0.5509339 0.4894626 0.4108177 +0.5547519 0.4894626 0.4108177 +0.5584371 0.4894626 0.4108177 +0.5619986 0.4894626 0.4108177 +0.5654443 0.4894626 0.4108177 +0.5687816 0.4894626 0.4108177 +0.092819 0.4961862 0.4108177 +0.2262531 0.4961862 0.4108177 +0.2875993 0.4961862 0.4108177 +0.3262122 0.4961862 0.4108177 +0.3544566 0.4961862 0.4108177 +0.3767383 0.4961862 0.4108177 +0.3951413 0.4961862 0.4108177 +0.4108177 0.4961862 0.4108177 +0.4244723 0.4961862 0.4108177 +0.4365675 0.4961862 0.4108177 +0.4474232 0.4961862 0.4108177 +0.45727 0.4961862 0.4108177 +0.4662797 0.4961862 0.4108177 +0.4745834 0.4961862 0.4108177 +0.4822838 0.4961862 0.4108177 +0.4894626 0.4961862 0.4108177 +0.4961862 0.4961862 0.4108177 +0.5025087 0.4961862 0.4108177 +0.5084753 0.4961862 0.4108177 +0.514124 0.4961862 0.4108177 +0.519487 0.4961862 0.4108177 +0.5245917 0.4961862 0.4108177 +0.529462 0.4961862 0.4108177 +0.5341183 0.4961862 0.4108177 +0.5385787 0.4961862 0.4108177 +0.5428591 0.4961862 0.4108177 +0.5469733 0.4961862 0.4108177 +0.5509339 0.4961862 0.4108177 +0.5547519 0.4961862 0.4108177 +0.5584371 0.4961862 0.4108177 +0.5619986 0.4961862 0.4108177 +0.5654443 0.4961862 0.4108177 +0.5687816 0.4961862 0.4108177 +0.092819 0.5025087 0.4108177 +0.2262531 0.5025087 0.4108177 +0.2875993 0.5025087 0.4108177 +0.3262122 0.5025087 0.4108177 +0.3544566 0.5025087 0.4108177 +0.3767383 0.5025087 0.4108177 +0.3951413 0.5025087 0.4108177 +0.4108177 0.5025087 0.4108177 +0.4244723 0.5025087 0.4108177 +0.4365675 0.5025087 0.4108177 +0.4474232 0.5025087 0.4108177 +0.45727 0.5025087 0.4108177 +0.4662797 0.5025087 0.4108177 +0.4745834 0.5025087 0.4108177 +0.4822838 0.5025087 0.4108177 +0.4894626 0.5025087 0.4108177 +0.4961862 0.5025087 0.4108177 +0.5025087 0.5025087 0.4108177 +0.5084753 0.5025087 0.4108177 +0.514124 0.5025087 0.4108177 +0.519487 0.5025087 0.4108177 +0.5245917 0.5025087 0.4108177 +0.529462 0.5025087 0.4108177 +0.5341183 0.5025087 0.4108177 +0.5385787 0.5025087 0.4108177 +0.5428591 0.5025087 0.4108177 +0.5469733 0.5025087 0.4108177 +0.5509339 0.5025087 0.4108177 +0.5547519 0.5025087 0.4108177 +0.5584371 0.5025087 0.4108177 +0.5619986 0.5025087 0.4108177 +0.5654443 0.5025087 0.4108177 +0.5687816 0.5025087 0.4108177 +0.092819 0.5084753 0.4108177 +0.2262531 0.5084753 0.4108177 +0.2875993 0.5084753 0.4108177 +0.3262122 0.5084753 0.4108177 +0.3544566 0.5084753 0.4108177 +0.3767383 0.5084753 0.4108177 +0.3951413 0.5084753 0.4108177 +0.4108177 0.5084753 0.4108177 +0.4244723 0.5084753 0.4108177 +0.4365675 0.5084753 0.4108177 +0.4474232 0.5084753 0.4108177 +0.45727 0.5084753 0.4108177 +0.4662797 0.5084753 0.4108177 +0.4745834 0.5084753 0.4108177 +0.4822838 0.5084753 0.4108177 +0.4894626 0.5084753 0.4108177 +0.4961862 0.5084753 0.4108177 +0.5025087 0.5084753 0.4108177 +0.5084753 0.5084753 0.4108177 +0.514124 0.5084753 0.4108177 +0.519487 0.5084753 0.4108177 +0.5245917 0.5084753 0.4108177 +0.529462 0.5084753 0.4108177 +0.5341183 0.5084753 0.4108177 +0.5385787 0.5084753 0.4108177 +0.5428591 0.5084753 0.4108177 +0.5469733 0.5084753 0.4108177 +0.5509339 0.5084753 0.4108177 +0.5547519 0.5084753 0.4108177 +0.5584371 0.5084753 0.4108177 +0.5619986 0.5084753 0.4108177 +0.5654443 0.5084753 0.4108177 +0.5687816 0.5084753 0.4108177 +0.092819 0.514124 0.4108177 +0.2262531 0.514124 0.4108177 +0.2875993 0.514124 0.4108177 +0.3262122 0.514124 0.4108177 +0.3544566 0.514124 0.4108177 +0.3767383 0.514124 0.4108177 +0.3951413 0.514124 0.4108177 +0.4108177 0.514124 0.4108177 +0.4244723 0.514124 0.4108177 +0.4365675 0.514124 0.4108177 +0.4474232 0.514124 0.4108177 +0.45727 0.514124 0.4108177 +0.4662797 0.514124 0.4108177 +0.4745834 0.514124 0.4108177 +0.4822838 0.514124 0.4108177 +0.4894626 0.514124 0.4108177 +0.4961862 0.514124 0.4108177 +0.5025087 0.514124 0.4108177 +0.5084753 0.514124 0.4108177 +0.514124 0.514124 0.4108177 +0.519487 0.514124 0.4108177 +0.5245917 0.514124 0.4108177 +0.529462 0.514124 0.4108177 +0.5341183 0.514124 0.4108177 +0.5385787 0.514124 0.4108177 +0.5428591 0.514124 0.4108177 +0.5469733 0.514124 0.4108177 +0.5509339 0.514124 0.4108177 +0.5547519 0.514124 0.4108177 +0.5584371 0.514124 0.4108177 +0.5619986 0.514124 0.4108177 +0.5654443 0.514124 0.4108177 +0.5687816 0.514124 0.4108177 +0.092819 0.519487 0.4108177 +0.2262531 0.519487 0.4108177 +0.2875993 0.519487 0.4108177 +0.3262122 0.519487 0.4108177 +0.3544566 0.519487 0.4108177 +0.3767383 0.519487 0.4108177 +0.3951413 0.519487 0.4108177 +0.4108177 0.519487 0.4108177 +0.4244723 0.519487 0.4108177 +0.4365675 0.519487 0.4108177 +0.4474232 0.519487 0.4108177 +0.45727 0.519487 0.4108177 +0.4662797 0.519487 0.4108177 +0.4745834 0.519487 0.4108177 +0.4822838 0.519487 0.4108177 +0.4894626 0.519487 0.4108177 +0.4961862 0.519487 0.4108177 +0.5025087 0.519487 0.4108177 +0.5084753 0.519487 0.4108177 +0.514124 0.519487 0.4108177 +0.519487 0.519487 0.4108177 +0.5245917 0.519487 0.4108177 +0.529462 0.519487 0.4108177 +0.5341183 0.519487 0.4108177 +0.5385787 0.519487 0.4108177 +0.5428591 0.519487 0.4108177 +0.5469733 0.519487 0.4108177 +0.5509339 0.519487 0.4108177 +0.5547519 0.519487 0.4108177 +0.5584371 0.519487 0.4108177 +0.5619986 0.519487 0.4108177 +0.5654443 0.519487 0.4108177 +0.5687816 0.519487 0.4108177 +0.092819 0.5245917 0.4108177 +0.2262531 0.5245917 0.4108177 +0.2875993 0.5245917 0.4108177 +0.3262122 0.5245917 0.4108177 +0.3544566 0.5245917 0.4108177 +0.3767383 0.5245917 0.4108177 +0.3951413 0.5245917 0.4108177 +0.4108177 0.5245917 0.4108177 +0.4244723 0.5245917 0.4108177 +0.4365675 0.5245917 0.4108177 +0.4474232 0.5245917 0.4108177 +0.45727 0.5245917 0.4108177 +0.4662797 0.5245917 0.4108177 +0.4745834 0.5245917 0.4108177 +0.4822838 0.5245917 0.4108177 +0.4894626 0.5245917 0.4108177 +0.4961862 0.5245917 0.4108177 +0.5025087 0.5245917 0.4108177 +0.5084753 0.5245917 0.4108177 +0.514124 0.5245917 0.4108177 +0.519487 0.5245917 0.4108177 +0.5245917 0.5245917 0.4108177 +0.529462 0.5245917 0.4108177 +0.5341183 0.5245917 0.4108177 +0.5385787 0.5245917 0.4108177 +0.5428591 0.5245917 0.4108177 +0.5469733 0.5245917 0.4108177 +0.5509339 0.5245917 0.4108177 +0.5547519 0.5245917 0.4108177 +0.5584371 0.5245917 0.4108177 +0.5619986 0.5245917 0.4108177 +0.5654443 0.5245917 0.4108177 +0.5687816 0.5245917 0.4108177 +0.092819 0.529462 0.4108177 +0.2262531 0.529462 0.4108177 +0.2875993 0.529462 0.4108177 +0.3262122 0.529462 0.4108177 +0.3544566 0.529462 0.4108177 +0.3767383 0.529462 0.4108177 +0.3951413 0.529462 0.4108177 +0.4108177 0.529462 0.4108177 +0.4244723 0.529462 0.4108177 +0.4365675 0.529462 0.4108177 +0.4474232 0.529462 0.4108177 +0.45727 0.529462 0.4108177 +0.4662797 0.529462 0.4108177 +0.4745834 0.529462 0.4108177 +0.4822838 0.529462 0.4108177 +0.4894626 0.529462 0.4108177 +0.4961862 0.529462 0.4108177 +0.5025087 0.529462 0.4108177 +0.5084753 0.529462 0.4108177 +0.514124 0.529462 0.4108177 +0.519487 0.529462 0.4108177 +0.5245917 0.529462 0.4108177 +0.529462 0.529462 0.4108177 +0.5341183 0.529462 0.4108177 +0.5385787 0.529462 0.4108177 +0.5428591 0.529462 0.4108177 +0.5469733 0.529462 0.4108177 +0.5509339 0.529462 0.4108177 +0.5547519 0.529462 0.4108177 +0.5584371 0.529462 0.4108177 +0.5619986 0.529462 0.4108177 +0.5654443 0.529462 0.4108177 +0.5687816 0.529462 0.4108177 +0.092819 0.5341183 0.4108177 +0.2262531 0.5341183 0.4108177 +0.2875993 0.5341183 0.4108177 +0.3262122 0.5341183 0.4108177 +0.3544566 0.5341183 0.4108177 +0.3767383 0.5341183 0.4108177 +0.3951413 0.5341183 0.4108177 +0.4108177 0.5341183 0.4108177 +0.4244723 0.5341183 0.4108177 +0.4365675 0.5341183 0.4108177 +0.4474232 0.5341183 0.4108177 +0.45727 0.5341183 0.4108177 +0.4662797 0.5341183 0.4108177 +0.4745834 0.5341183 0.4108177 +0.4822838 0.5341183 0.4108177 +0.4894626 0.5341183 0.4108177 +0.4961862 0.5341183 0.4108177 +0.5025087 0.5341183 0.4108177 +0.5084753 0.5341183 0.4108177 +0.514124 0.5341183 0.4108177 +0.519487 0.5341183 0.4108177 +0.5245917 0.5341183 0.4108177 +0.529462 0.5341183 0.4108177 +0.5341183 0.5341183 0.4108177 +0.5385787 0.5341183 0.4108177 +0.5428591 0.5341183 0.4108177 +0.5469733 0.5341183 0.4108177 +0.5509339 0.5341183 0.4108177 +0.5547519 0.5341183 0.4108177 +0.5584371 0.5341183 0.4108177 +0.5619986 0.5341183 0.4108177 +0.5654443 0.5341183 0.4108177 +0.5687816 0.5341183 0.4108177 +0.092819 0.5385787 0.4108177 +0.2262531 0.5385787 0.4108177 +0.2875993 0.5385787 0.4108177 +0.3262122 0.5385787 0.4108177 +0.3544566 0.5385787 0.4108177 +0.3767383 0.5385787 0.4108177 +0.3951413 0.5385787 0.4108177 +0.4108177 0.5385787 0.4108177 +0.4244723 0.5385787 0.4108177 +0.4365675 0.5385787 0.4108177 +0.4474232 0.5385787 0.4108177 +0.45727 0.5385787 0.4108177 +0.4662797 0.5385787 0.4108177 +0.4745834 0.5385787 0.4108177 +0.4822838 0.5385787 0.4108177 +0.4894626 0.5385787 0.4108177 +0.4961862 0.5385787 0.4108177 +0.5025087 0.5385787 0.4108177 +0.5084753 0.5385787 0.4108177 +0.514124 0.5385787 0.4108177 +0.519487 0.5385787 0.4108177 +0.5245917 0.5385787 0.4108177 +0.529462 0.5385787 0.4108177 +0.5341183 0.5385787 0.4108177 +0.5385787 0.5385787 0.4108177 +0.5428591 0.5385787 0.4108177 +0.5469733 0.5385787 0.4108177 +0.5509339 0.5385787 0.4108177 +0.5547519 0.5385787 0.4108177 +0.5584371 0.5385787 0.4108177 +0.5619986 0.5385787 0.4108177 +0.5654443 0.5385787 0.4108177 +0.5687816 0.5385787 0.4108177 +0.092819 0.5428591 0.4108177 +0.2262531 0.5428591 0.4108177 +0.2875993 0.5428591 0.4108177 +0.3262122 0.5428591 0.4108177 +0.3544566 0.5428591 0.4108177 +0.3767383 0.5428591 0.4108177 +0.3951413 0.5428591 0.4108177 +0.4108177 0.5428591 0.4108177 +0.4244723 0.5428591 0.4108177 +0.4365675 0.5428591 0.4108177 +0.4474232 0.5428591 0.4108177 +0.45727 0.5428591 0.4108177 +0.4662797 0.5428591 0.4108177 +0.4745834 0.5428591 0.4108177 +0.4822838 0.5428591 0.4108177 +0.4894626 0.5428591 0.4108177 +0.4961862 0.5428591 0.4108177 +0.5025087 0.5428591 0.4108177 +0.5084753 0.5428591 0.4108177 +0.514124 0.5428591 0.4108177 +0.519487 0.5428591 0.4108177 +0.5245917 0.5428591 0.4108177 +0.529462 0.5428591 0.4108177 +0.5341183 0.5428591 0.4108177 +0.5385787 0.5428591 0.4108177 +0.5428591 0.5428591 0.4108177 +0.5469733 0.5428591 0.4108177 +0.5509339 0.5428591 0.4108177 +0.5547519 0.5428591 0.4108177 +0.5584371 0.5428591 0.4108177 +0.5619986 0.5428591 0.4108177 +0.5654443 0.5428591 0.4108177 +0.5687816 0.5428591 0.4108177 +0.092819 0.5469733 0.4108177 +0.2262531 0.5469733 0.4108177 +0.2875993 0.5469733 0.4108177 +0.3262122 0.5469733 0.4108177 +0.3544566 0.5469733 0.4108177 +0.3767383 0.5469733 0.4108177 +0.3951413 0.5469733 0.4108177 +0.4108177 0.5469733 0.4108177 +0.4244723 0.5469733 0.4108177 +0.4365675 0.5469733 0.4108177 +0.4474232 0.5469733 0.4108177 +0.45727 0.5469733 0.4108177 +0.4662797 0.5469733 0.4108177 +0.4745834 0.5469733 0.4108177 +0.4822838 0.5469733 0.4108177 +0.4894626 0.5469733 0.4108177 +0.4961862 0.5469733 0.4108177 +0.5025087 0.5469733 0.4108177 +0.5084753 0.5469733 0.4108177 +0.514124 0.5469733 0.4108177 +0.519487 0.5469733 0.4108177 +0.5245917 0.5469733 0.4108177 +0.529462 0.5469733 0.4108177 +0.5341183 0.5469733 0.4108177 +0.5385787 0.5469733 0.4108177 +0.5428591 0.5469733 0.4108177 +0.5469733 0.5469733 0.4108177 +0.5509339 0.5469733 0.4108177 +0.5547519 0.5469733 0.4108177 +0.5584371 0.5469733 0.4108177 +0.5619986 0.5469733 0.4108177 +0.5654443 0.5469733 0.4108177 +0.5687816 0.5469733 0.4108177 +0.092819 0.5509339 0.4108177 +0.2262531 0.5509339 0.4108177 +0.2875993 0.5509339 0.4108177 +0.3262122 0.5509339 0.4108177 +0.3544566 0.5509339 0.4108177 +0.3767383 0.5509339 0.4108177 +0.3951413 0.5509339 0.4108177 +0.4108177 0.5509339 0.4108177 +0.4244723 0.5509339 0.4108177 +0.4365675 0.5509339 0.4108177 +0.4474232 0.5509339 0.4108177 +0.45727 0.5509339 0.4108177 +0.4662797 0.5509339 0.4108177 +0.4745834 0.5509339 0.4108177 +0.4822838 0.5509339 0.4108177 +0.4894626 0.5509339 0.4108177 +0.4961862 0.5509339 0.4108177 +0.5025087 0.5509339 0.4108177 +0.5084753 0.5509339 0.4108177 +0.514124 0.5509339 0.4108177 +0.519487 0.5509339 0.4108177 +0.5245917 0.5509339 0.4108177 +0.529462 0.5509339 0.4108177 +0.5341183 0.5509339 0.4108177 +0.5385787 0.5509339 0.4108177 +0.5428591 0.5509339 0.4108177 +0.5469733 0.5509339 0.4108177 +0.5509339 0.5509339 0.4108177 +0.5547519 0.5509339 0.4108177 +0.5584371 0.5509339 0.4108177 +0.5619986 0.5509339 0.4108177 +0.5654443 0.5509339 0.4108177 +0.5687816 0.5509339 0.4108177 +0.092819 0.5547519 0.4108177 +0.2262531 0.5547519 0.4108177 +0.2875993 0.5547519 0.4108177 +0.3262122 0.5547519 0.4108177 +0.3544566 0.5547519 0.4108177 +0.3767383 0.5547519 0.4108177 +0.3951413 0.5547519 0.4108177 +0.4108177 0.5547519 0.4108177 +0.4244723 0.5547519 0.4108177 +0.4365675 0.5547519 0.4108177 +0.4474232 0.5547519 0.4108177 +0.45727 0.5547519 0.4108177 +0.4662797 0.5547519 0.4108177 +0.4745834 0.5547519 0.4108177 +0.4822838 0.5547519 0.4108177 +0.4894626 0.5547519 0.4108177 +0.4961862 0.5547519 0.4108177 +0.5025087 0.5547519 0.4108177 +0.5084753 0.5547519 0.4108177 +0.514124 0.5547519 0.4108177 +0.519487 0.5547519 0.4108177 +0.5245917 0.5547519 0.4108177 +0.529462 0.5547519 0.4108177 +0.5341183 0.5547519 0.4108177 +0.5385787 0.5547519 0.4108177 +0.5428591 0.5547519 0.4108177 +0.5469733 0.5547519 0.4108177 +0.5509339 0.5547519 0.4108177 +0.5547519 0.5547519 0.4108177 +0.5584371 0.5547519 0.4108177 +0.5619986 0.5547519 0.4108177 +0.5654443 0.5547519 0.4108177 +0.5687816 0.5547519 0.4108177 +0.092819 0.5584371 0.4108177 +0.2262531 0.5584371 0.4108177 +0.2875993 0.5584371 0.4108177 +0.3262122 0.5584371 0.4108177 +0.3544566 0.5584371 0.4108177 +0.3767383 0.5584371 0.4108177 +0.3951413 0.5584371 0.4108177 +0.4108177 0.5584371 0.4108177 +0.4244723 0.5584371 0.4108177 +0.4365675 0.5584371 0.4108177 +0.4474232 0.5584371 0.4108177 +0.45727 0.5584371 0.4108177 +0.4662797 0.5584371 0.4108177 +0.4745834 0.5584371 0.4108177 +0.4822838 0.5584371 0.4108177 +0.4894626 0.5584371 0.4108177 +0.4961862 0.5584371 0.4108177 +0.5025087 0.5584371 0.4108177 +0.5084753 0.5584371 0.4108177 +0.514124 0.5584371 0.4108177 +0.519487 0.5584371 0.4108177 +0.5245917 0.5584371 0.4108177 +0.529462 0.5584371 0.4108177 +0.5341183 0.5584371 0.4108177 +0.5385787 0.5584371 0.4108177 +0.5428591 0.5584371 0.4108177 +0.5469733 0.5584371 0.4108177 +0.5509339 0.5584371 0.4108177 +0.5547519 0.5584371 0.4108177 +0.5584371 0.5584371 0.4108177 +0.5619986 0.5584371 0.4108177 +0.5654443 0.5584371 0.4108177 +0.5687816 0.5584371 0.4108177 +0.092819 0.5619986 0.4108177 +0.2262531 0.5619986 0.4108177 +0.2875993 0.5619986 0.4108177 +0.3262122 0.5619986 0.4108177 +0.3544566 0.5619986 0.4108177 +0.3767383 0.5619986 0.4108177 +0.3951413 0.5619986 0.4108177 +0.4108177 0.5619986 0.4108177 +0.4244723 0.5619986 0.4108177 +0.4365675 0.5619986 0.4108177 +0.4474232 0.5619986 0.4108177 +0.45727 0.5619986 0.4108177 +0.4662797 0.5619986 0.4108177 +0.4745834 0.5619986 0.4108177 +0.4822838 0.5619986 0.4108177 +0.4894626 0.5619986 0.4108177 +0.4961862 0.5619986 0.4108177 +0.5025087 0.5619986 0.4108177 +0.5084753 0.5619986 0.4108177 +0.514124 0.5619986 0.4108177 +0.519487 0.5619986 0.4108177 +0.5245917 0.5619986 0.4108177 +0.529462 0.5619986 0.4108177 +0.5341183 0.5619986 0.4108177 +0.5385787 0.5619986 0.4108177 +0.5428591 0.5619986 0.4108177 +0.5469733 0.5619986 0.4108177 +0.5509339 0.5619986 0.4108177 +0.5547519 0.5619986 0.4108177 +0.5584371 0.5619986 0.4108177 +0.5619986 0.5619986 0.4108177 +0.5654443 0.5619986 0.4108177 +0.5687816 0.5619986 0.4108177 +0.092819 0.5654443 0.4108177 +0.2262531 0.5654443 0.4108177 +0.2875993 0.5654443 0.4108177 +0.3262122 0.5654443 0.4108177 +0.3544566 0.5654443 0.4108177 +0.3767383 0.5654443 0.4108177 +0.3951413 0.5654443 0.4108177 +0.4108177 0.5654443 0.4108177 +0.4244723 0.5654443 0.4108177 +0.4365675 0.5654443 0.4108177 +0.4474232 0.5654443 0.4108177 +0.45727 0.5654443 0.4108177 +0.4662797 0.5654443 0.4108177 +0.4745834 0.5654443 0.4108177 +0.4822838 0.5654443 0.4108177 +0.4894626 0.5654443 0.4108177 +0.4961862 0.5654443 0.4108177 +0.5025087 0.5654443 0.4108177 +0.5084753 0.5654443 0.4108177 +0.514124 0.5654443 0.4108177 +0.519487 0.5654443 0.4108177 +0.5245917 0.5654443 0.4108177 +0.529462 0.5654443 0.4108177 +0.5341183 0.5654443 0.4108177 +0.5385787 0.5654443 0.4108177 +0.5428591 0.5654443 0.4108177 +0.5469733 0.5654443 0.4108177 +0.5509339 0.5654443 0.4108177 +0.5547519 0.5654443 0.4108177 +0.5584371 0.5654443 0.4108177 +0.5619986 0.5654443 0.4108177 +0.5654443 0.5654443 0.4108177 +0.5687816 0.5654443 0.4108177 +0.092819 0.5687816 0.4108177 +0.2262531 0.5687816 0.4108177 +0.2875993 0.5687816 0.4108177 +0.3262122 0.5687816 0.4108177 +0.3544566 0.5687816 0.4108177 +0.3767383 0.5687816 0.4108177 +0.3951413 0.5687816 0.4108177 +0.4108177 0.5687816 0.4108177 +0.4244723 0.5687816 0.4108177 +0.4365675 0.5687816 0.4108177 +0.4474232 0.5687816 0.4108177 +0.45727 0.5687816 0.4108177 +0.4662797 0.5687816 0.4108177 +0.4745834 0.5687816 0.4108177 +0.4822838 0.5687816 0.4108177 +0.4894626 0.5687816 0.4108177 +0.4961862 0.5687816 0.4108177 +0.5025087 0.5687816 0.4108177 +0.5084753 0.5687816 0.4108177 +0.514124 0.5687816 0.4108177 +0.519487 0.5687816 0.4108177 +0.5245917 0.5687816 0.4108177 +0.529462 0.5687816 0.4108177 +0.5341183 0.5687816 0.4108177 +0.5385787 0.5687816 0.4108177 +0.5428591 0.5687816 0.4108177 +0.5469733 0.5687816 0.4108177 +0.5509339 0.5687816 0.4108177 +0.5547519 0.5687816 0.4108177 +0.5584371 0.5687816 0.4108177 +0.5619986 0.5687816 0.4108177 +0.5654443 0.5687816 0.4108177 +0.5687816 0.5687816 0.4108177 +0.092819 0.092819 0.4244723 +0.2262531 0.092819 0.4244723 +0.2875993 0.092819 0.4244723 +0.3262122 0.092819 0.4244723 +0.3544566 0.092819 0.4244723 +0.3767383 0.092819 0.4244723 +0.3951413 0.092819 0.4244723 +0.4108177 0.092819 0.4244723 +0.4244723 0.092819 0.4244723 +0.4365675 0.092819 0.4244723 +0.4474232 0.092819 0.4244723 +0.45727 0.092819 0.4244723 +0.4662797 0.092819 0.4244723 +0.4745834 0.092819 0.4244723 +0.4822838 0.092819 0.4244723 +0.4894626 0.092819 0.4244723 +0.4961862 0.092819 0.4244723 +0.5025087 0.092819 0.4244723 +0.5084753 0.092819 0.4244723 +0.514124 0.092819 0.4244723 +0.519487 0.092819 0.4244723 +0.5245917 0.092819 0.4244723 +0.529462 0.092819 0.4244723 +0.5341183 0.092819 0.4244723 +0.5385787 0.092819 0.4244723 +0.5428591 0.092819 0.4244723 +0.5469733 0.092819 0.4244723 +0.5509339 0.092819 0.4244723 +0.5547519 0.092819 0.4244723 +0.5584371 0.092819 0.4244723 +0.5619986 0.092819 0.4244723 +0.5654443 0.092819 0.4244723 +0.5687816 0.092819 0.4244723 +0.092819 0.2262531 0.4244723 +0.2262531 0.2262531 0.4244723 +0.2875993 0.2262531 0.4244723 +0.3262122 0.2262531 0.4244723 +0.3544566 0.2262531 0.4244723 +0.3767383 0.2262531 0.4244723 +0.3951413 0.2262531 0.4244723 +0.4108177 0.2262531 0.4244723 +0.4244723 0.2262531 0.4244723 +0.4365675 0.2262531 0.4244723 +0.4474232 0.2262531 0.4244723 +0.45727 0.2262531 0.4244723 +0.4662797 0.2262531 0.4244723 +0.4745834 0.2262531 0.4244723 +0.4822838 0.2262531 0.4244723 +0.4894626 0.2262531 0.4244723 +0.4961862 0.2262531 0.4244723 +0.5025087 0.2262531 0.4244723 +0.5084753 0.2262531 0.4244723 +0.514124 0.2262531 0.4244723 +0.519487 0.2262531 0.4244723 +0.5245917 0.2262531 0.4244723 +0.529462 0.2262531 0.4244723 +0.5341183 0.2262531 0.4244723 +0.5385787 0.2262531 0.4244723 +0.5428591 0.2262531 0.4244723 +0.5469733 0.2262531 0.4244723 +0.5509339 0.2262531 0.4244723 +0.5547519 0.2262531 0.4244723 +0.5584371 0.2262531 0.4244723 +0.5619986 0.2262531 0.4244723 +0.5654443 0.2262531 0.4244723 +0.5687816 0.2262531 0.4244723 +0.092819 0.2875993 0.4244723 +0.2262531 0.2875993 0.4244723 +0.2875993 0.2875993 0.4244723 +0.3262122 0.2875993 0.4244723 +0.3544566 0.2875993 0.4244723 +0.3767383 0.2875993 0.4244723 +0.3951413 0.2875993 0.4244723 +0.4108177 0.2875993 0.4244723 +0.4244723 0.2875993 0.4244723 +0.4365675 0.2875993 0.4244723 +0.4474232 0.2875993 0.4244723 +0.45727 0.2875993 0.4244723 +0.4662797 0.2875993 0.4244723 +0.4745834 0.2875993 0.4244723 +0.4822838 0.2875993 0.4244723 +0.4894626 0.2875993 0.4244723 +0.4961862 0.2875993 0.4244723 +0.5025087 0.2875993 0.4244723 +0.5084753 0.2875993 0.4244723 +0.514124 0.2875993 0.4244723 +0.519487 0.2875993 0.4244723 +0.5245917 0.2875993 0.4244723 +0.529462 0.2875993 0.4244723 +0.5341183 0.2875993 0.4244723 +0.5385787 0.2875993 0.4244723 +0.5428591 0.2875993 0.4244723 +0.5469733 0.2875993 0.4244723 +0.5509339 0.2875993 0.4244723 +0.5547519 0.2875993 0.4244723 +0.5584371 0.2875993 0.4244723 +0.5619986 0.2875993 0.4244723 +0.5654443 0.2875993 0.4244723 +0.5687816 0.2875993 0.4244723 +0.092819 0.3262122 0.4244723 +0.2262531 0.3262122 0.4244723 +0.2875993 0.3262122 0.4244723 +0.3262122 0.3262122 0.4244723 +0.3544566 0.3262122 0.4244723 +0.3767383 0.3262122 0.4244723 +0.3951413 0.3262122 0.4244723 +0.4108177 0.3262122 0.4244723 +0.4244723 0.3262122 0.4244723 +0.4365675 0.3262122 0.4244723 +0.4474232 0.3262122 0.4244723 +0.45727 0.3262122 0.4244723 +0.4662797 0.3262122 0.4244723 +0.4745834 0.3262122 0.4244723 +0.4822838 0.3262122 0.4244723 +0.4894626 0.3262122 0.4244723 +0.4961862 0.3262122 0.4244723 +0.5025087 0.3262122 0.4244723 +0.5084753 0.3262122 0.4244723 +0.514124 0.3262122 0.4244723 +0.519487 0.3262122 0.4244723 +0.5245917 0.3262122 0.4244723 +0.529462 0.3262122 0.4244723 +0.5341183 0.3262122 0.4244723 +0.5385787 0.3262122 0.4244723 +0.5428591 0.3262122 0.4244723 +0.5469733 0.3262122 0.4244723 +0.5509339 0.3262122 0.4244723 +0.5547519 0.3262122 0.4244723 +0.5584371 0.3262122 0.4244723 +0.5619986 0.3262122 0.4244723 +0.5654443 0.3262122 0.4244723 +0.5687816 0.3262122 0.4244723 +0.092819 0.3544566 0.4244723 +0.2262531 0.3544566 0.4244723 +0.2875993 0.3544566 0.4244723 +0.3262122 0.3544566 0.4244723 +0.3544566 0.3544566 0.4244723 +0.3767383 0.3544566 0.4244723 +0.3951413 0.3544566 0.4244723 +0.4108177 0.3544566 0.4244723 +0.4244723 0.3544566 0.4244723 +0.4365675 0.3544566 0.4244723 +0.4474232 0.3544566 0.4244723 +0.45727 0.3544566 0.4244723 +0.4662797 0.3544566 0.4244723 +0.4745834 0.3544566 0.4244723 +0.4822838 0.3544566 0.4244723 +0.4894626 0.3544566 0.4244723 +0.4961862 0.3544566 0.4244723 +0.5025087 0.3544566 0.4244723 +0.5084753 0.3544566 0.4244723 +0.514124 0.3544566 0.4244723 +0.519487 0.3544566 0.4244723 +0.5245917 0.3544566 0.4244723 +0.529462 0.3544566 0.4244723 +0.5341183 0.3544566 0.4244723 +0.5385787 0.3544566 0.4244723 +0.5428591 0.3544566 0.4244723 +0.5469733 0.3544566 0.4244723 +0.5509339 0.3544566 0.4244723 +0.5547519 0.3544566 0.4244723 +0.5584371 0.3544566 0.4244723 +0.5619986 0.3544566 0.4244723 +0.5654443 0.3544566 0.4244723 +0.5687816 0.3544566 0.4244723 +0.092819 0.3767383 0.4244723 +0.2262531 0.3767383 0.4244723 +0.2875993 0.3767383 0.4244723 +0.3262122 0.3767383 0.4244723 +0.3544566 0.3767383 0.4244723 +0.3767383 0.3767383 0.4244723 +0.3951413 0.3767383 0.4244723 +0.4108177 0.3767383 0.4244723 +0.4244723 0.3767383 0.4244723 +0.4365675 0.3767383 0.4244723 +0.4474232 0.3767383 0.4244723 +0.45727 0.3767383 0.4244723 +0.4662797 0.3767383 0.4244723 +0.4745834 0.3767383 0.4244723 +0.4822838 0.3767383 0.4244723 +0.4894626 0.3767383 0.4244723 +0.4961862 0.3767383 0.4244723 +0.5025087 0.3767383 0.4244723 +0.5084753 0.3767383 0.4244723 +0.514124 0.3767383 0.4244723 +0.519487 0.3767383 0.4244723 +0.5245917 0.3767383 0.4244723 +0.529462 0.3767383 0.4244723 +0.5341183 0.3767383 0.4244723 +0.5385787 0.3767383 0.4244723 +0.5428591 0.3767383 0.4244723 +0.5469733 0.3767383 0.4244723 +0.5509339 0.3767383 0.4244723 +0.5547519 0.3767383 0.4244723 +0.5584371 0.3767383 0.4244723 +0.5619986 0.3767383 0.4244723 +0.5654443 0.3767383 0.4244723 +0.5687816 0.3767383 0.4244723 +0.092819 0.3951413 0.4244723 +0.2262531 0.3951413 0.4244723 +0.2875993 0.3951413 0.4244723 +0.3262122 0.3951413 0.4244723 +0.3544566 0.3951413 0.4244723 +0.3767383 0.3951413 0.4244723 +0.3951413 0.3951413 0.4244723 +0.4108177 0.3951413 0.4244723 +0.4244723 0.3951413 0.4244723 +0.4365675 0.3951413 0.4244723 +0.4474232 0.3951413 0.4244723 +0.45727 0.3951413 0.4244723 +0.4662797 0.3951413 0.4244723 +0.4745834 0.3951413 0.4244723 +0.4822838 0.3951413 0.4244723 +0.4894626 0.3951413 0.4244723 +0.4961862 0.3951413 0.4244723 +0.5025087 0.3951413 0.4244723 +0.5084753 0.3951413 0.4244723 +0.514124 0.3951413 0.4244723 +0.519487 0.3951413 0.4244723 +0.5245917 0.3951413 0.4244723 +0.529462 0.3951413 0.4244723 +0.5341183 0.3951413 0.4244723 +0.5385787 0.3951413 0.4244723 +0.5428591 0.3951413 0.4244723 +0.5469733 0.3951413 0.4244723 +0.5509339 0.3951413 0.4244723 +0.5547519 0.3951413 0.4244723 +0.5584371 0.3951413 0.4244723 +0.5619986 0.3951413 0.4244723 +0.5654443 0.3951413 0.4244723 +0.5687816 0.3951413 0.4244723 +0.092819 0.4108177 0.4244723 +0.2262531 0.4108177 0.4244723 +0.2875993 0.4108177 0.4244723 +0.3262122 0.4108177 0.4244723 +0.3544566 0.4108177 0.4244723 +0.3767383 0.4108177 0.4244723 +0.3951413 0.4108177 0.4244723 +0.4108177 0.4108177 0.4244723 +0.4244723 0.4108177 0.4244723 +0.4365675 0.4108177 0.4244723 +0.4474232 0.4108177 0.4244723 +0.45727 0.4108177 0.4244723 +0.4662797 0.4108177 0.4244723 +0.4745834 0.4108177 0.4244723 +0.4822838 0.4108177 0.4244723 +0.4894626 0.4108177 0.4244723 +0.4961862 0.4108177 0.4244723 +0.5025087 0.4108177 0.4244723 +0.5084753 0.4108177 0.4244723 +0.514124 0.4108177 0.4244723 +0.519487 0.4108177 0.4244723 +0.5245917 0.4108177 0.4244723 +0.529462 0.4108177 0.4244723 +0.5341183 0.4108177 0.4244723 +0.5385787 0.4108177 0.4244723 +0.5428591 0.4108177 0.4244723 +0.5469733 0.4108177 0.4244723 +0.5509339 0.4108177 0.4244723 +0.5547519 0.4108177 0.4244723 +0.5584371 0.4108177 0.4244723 +0.5619986 0.4108177 0.4244723 +0.5654443 0.4108177 0.4244723 +0.5687816 0.4108177 0.4244723 +0.092819 0.4244723 0.4244723 +0.2262531 0.4244723 0.4244723 +0.2875993 0.4244723 0.4244723 +0.3262122 0.4244723 0.4244723 +0.3544566 0.4244723 0.4244723 +0.3767383 0.4244723 0.4244723 +0.3951413 0.4244723 0.4244723 +0.4108177 0.4244723 0.4244723 +0.4244723 0.4244723 0.4244723 +0.4365675 0.4244723 0.4244723 +0.4474232 0.4244723 0.4244723 +0.45727 0.4244723 0.4244723 +0.4662797 0.4244723 0.4244723 +0.4745834 0.4244723 0.4244723 +0.4822838 0.4244723 0.4244723 +0.4894626 0.4244723 0.4244723 +0.4961862 0.4244723 0.4244723 +0.5025087 0.4244723 0.4244723 +0.5084753 0.4244723 0.4244723 +0.514124 0.4244723 0.4244723 +0.519487 0.4244723 0.4244723 +0.5245917 0.4244723 0.4244723 +0.529462 0.4244723 0.4244723 +0.5341183 0.4244723 0.4244723 +0.5385787 0.4244723 0.4244723 +0.5428591 0.4244723 0.4244723 +0.5469733 0.4244723 0.4244723 +0.5509339 0.4244723 0.4244723 +0.5547519 0.4244723 0.4244723 +0.5584371 0.4244723 0.4244723 +0.5619986 0.4244723 0.4244723 +0.5654443 0.4244723 0.4244723 +0.5687816 0.4244723 0.4244723 +0.092819 0.4365675 0.4244723 +0.2262531 0.4365675 0.4244723 +0.2875993 0.4365675 0.4244723 +0.3262122 0.4365675 0.4244723 +0.3544566 0.4365675 0.4244723 +0.3767383 0.4365675 0.4244723 +0.3951413 0.4365675 0.4244723 +0.4108177 0.4365675 0.4244723 +0.4244723 0.4365675 0.4244723 +0.4365675 0.4365675 0.4244723 +0.4474232 0.4365675 0.4244723 +0.45727 0.4365675 0.4244723 +0.4662797 0.4365675 0.4244723 +0.4745834 0.4365675 0.4244723 +0.4822838 0.4365675 0.4244723 +0.4894626 0.4365675 0.4244723 +0.4961862 0.4365675 0.4244723 +0.5025087 0.4365675 0.4244723 +0.5084753 0.4365675 0.4244723 +0.514124 0.4365675 0.4244723 +0.519487 0.4365675 0.4244723 +0.5245917 0.4365675 0.4244723 +0.529462 0.4365675 0.4244723 +0.5341183 0.4365675 0.4244723 +0.5385787 0.4365675 0.4244723 +0.5428591 0.4365675 0.4244723 +0.5469733 0.4365675 0.4244723 +0.5509339 0.4365675 0.4244723 +0.5547519 0.4365675 0.4244723 +0.5584371 0.4365675 0.4244723 +0.5619986 0.4365675 0.4244723 +0.5654443 0.4365675 0.4244723 +0.5687816 0.4365675 0.4244723 +0.092819 0.4474232 0.4244723 +0.2262531 0.4474232 0.4244723 +0.2875993 0.4474232 0.4244723 +0.3262122 0.4474232 0.4244723 +0.3544566 0.4474232 0.4244723 +0.3767383 0.4474232 0.4244723 +0.3951413 0.4474232 0.4244723 +0.4108177 0.4474232 0.4244723 +0.4244723 0.4474232 0.4244723 +0.4365675 0.4474232 0.4244723 +0.4474232 0.4474232 0.4244723 +0.45727 0.4474232 0.4244723 +0.4662797 0.4474232 0.4244723 +0.4745834 0.4474232 0.4244723 +0.4822838 0.4474232 0.4244723 +0.4894626 0.4474232 0.4244723 +0.4961862 0.4474232 0.4244723 +0.5025087 0.4474232 0.4244723 +0.5084753 0.4474232 0.4244723 +0.514124 0.4474232 0.4244723 +0.519487 0.4474232 0.4244723 +0.5245917 0.4474232 0.4244723 +0.529462 0.4474232 0.4244723 +0.5341183 0.4474232 0.4244723 +0.5385787 0.4474232 0.4244723 +0.5428591 0.4474232 0.4244723 +0.5469733 0.4474232 0.4244723 +0.5509339 0.4474232 0.4244723 +0.5547519 0.4474232 0.4244723 +0.5584371 0.4474232 0.4244723 +0.5619986 0.4474232 0.4244723 +0.5654443 0.4474232 0.4244723 +0.5687816 0.4474232 0.4244723 +0.092819 0.45727 0.4244723 +0.2262531 0.45727 0.4244723 +0.2875993 0.45727 0.4244723 +0.3262122 0.45727 0.4244723 +0.3544566 0.45727 0.4244723 +0.3767383 0.45727 0.4244723 +0.3951413 0.45727 0.4244723 +0.4108177 0.45727 0.4244723 +0.4244723 0.45727 0.4244723 +0.4365675 0.45727 0.4244723 +0.4474232 0.45727 0.4244723 +0.45727 0.45727 0.4244723 +0.4662797 0.45727 0.4244723 +0.4745834 0.45727 0.4244723 +0.4822838 0.45727 0.4244723 +0.4894626 0.45727 0.4244723 +0.4961862 0.45727 0.4244723 +0.5025087 0.45727 0.4244723 +0.5084753 0.45727 0.4244723 +0.514124 0.45727 0.4244723 +0.519487 0.45727 0.4244723 +0.5245917 0.45727 0.4244723 +0.529462 0.45727 0.4244723 +0.5341183 0.45727 0.4244723 +0.5385787 0.45727 0.4244723 +0.5428591 0.45727 0.4244723 +0.5469733 0.45727 0.4244723 +0.5509339 0.45727 0.4244723 +0.5547519 0.45727 0.4244723 +0.5584371 0.45727 0.4244723 +0.5619986 0.45727 0.4244723 +0.5654443 0.45727 0.4244723 +0.5687816 0.45727 0.4244723 +0.092819 0.4662797 0.4244723 +0.2262531 0.4662797 0.4244723 +0.2875993 0.4662797 0.4244723 +0.3262122 0.4662797 0.4244723 +0.3544566 0.4662797 0.4244723 +0.3767383 0.4662797 0.4244723 +0.3951413 0.4662797 0.4244723 +0.4108177 0.4662797 0.4244723 +0.4244723 0.4662797 0.4244723 +0.4365675 0.4662797 0.4244723 +0.4474232 0.4662797 0.4244723 +0.45727 0.4662797 0.4244723 +0.4662797 0.4662797 0.4244723 +0.4745834 0.4662797 0.4244723 +0.4822838 0.4662797 0.4244723 +0.4894626 0.4662797 0.4244723 +0.4961862 0.4662797 0.4244723 +0.5025087 0.4662797 0.4244723 +0.5084753 0.4662797 0.4244723 +0.514124 0.4662797 0.4244723 +0.519487 0.4662797 0.4244723 +0.5245917 0.4662797 0.4244723 +0.529462 0.4662797 0.4244723 +0.5341183 0.4662797 0.4244723 +0.5385787 0.4662797 0.4244723 +0.5428591 0.4662797 0.4244723 +0.5469733 0.4662797 0.4244723 +0.5509339 0.4662797 0.4244723 +0.5547519 0.4662797 0.4244723 +0.5584371 0.4662797 0.4244723 +0.5619986 0.4662797 0.4244723 +0.5654443 0.4662797 0.4244723 +0.5687816 0.4662797 0.4244723 +0.092819 0.4745834 0.4244723 +0.2262531 0.4745834 0.4244723 +0.2875993 0.4745834 0.4244723 +0.3262122 0.4745834 0.4244723 +0.3544566 0.4745834 0.4244723 +0.3767383 0.4745834 0.4244723 +0.3951413 0.4745834 0.4244723 +0.4108177 0.4745834 0.4244723 +0.4244723 0.4745834 0.4244723 +0.4365675 0.4745834 0.4244723 +0.4474232 0.4745834 0.4244723 +0.45727 0.4745834 0.4244723 +0.4662797 0.4745834 0.4244723 +0.4745834 0.4745834 0.4244723 +0.4822838 0.4745834 0.4244723 +0.4894626 0.4745834 0.4244723 +0.4961862 0.4745834 0.4244723 +0.5025087 0.4745834 0.4244723 +0.5084753 0.4745834 0.4244723 +0.514124 0.4745834 0.4244723 +0.519487 0.4745834 0.4244723 +0.5245917 0.4745834 0.4244723 +0.529462 0.4745834 0.4244723 +0.5341183 0.4745834 0.4244723 +0.5385787 0.4745834 0.4244723 +0.5428591 0.4745834 0.4244723 +0.5469733 0.4745834 0.4244723 +0.5509339 0.4745834 0.4244723 +0.5547519 0.4745834 0.4244723 +0.5584371 0.4745834 0.4244723 +0.5619986 0.4745834 0.4244723 +0.5654443 0.4745834 0.4244723 +0.5687816 0.4745834 0.4244723 +0.092819 0.4822838 0.4244723 +0.2262531 0.4822838 0.4244723 +0.2875993 0.4822838 0.4244723 +0.3262122 0.4822838 0.4244723 +0.3544566 0.4822838 0.4244723 +0.3767383 0.4822838 0.4244723 +0.3951413 0.4822838 0.4244723 +0.4108177 0.4822838 0.4244723 +0.4244723 0.4822838 0.4244723 +0.4365675 0.4822838 0.4244723 +0.4474232 0.4822838 0.4244723 +0.45727 0.4822838 0.4244723 +0.4662797 0.4822838 0.4244723 +0.4745834 0.4822838 0.4244723 +0.4822838 0.4822838 0.4244723 +0.4894626 0.4822838 0.4244723 +0.4961862 0.4822838 0.4244723 +0.5025087 0.4822838 0.4244723 +0.5084753 0.4822838 0.4244723 +0.514124 0.4822838 0.4244723 +0.519487 0.4822838 0.4244723 +0.5245917 0.4822838 0.4244723 +0.529462 0.4822838 0.4244723 +0.5341183 0.4822838 0.4244723 +0.5385787 0.4822838 0.4244723 +0.5428591 0.4822838 0.4244723 +0.5469733 0.4822838 0.4244723 +0.5509339 0.4822838 0.4244723 +0.5547519 0.4822838 0.4244723 +0.5584371 0.4822838 0.4244723 +0.5619986 0.4822838 0.4244723 +0.5654443 0.4822838 0.4244723 +0.5687816 0.4822838 0.4244723 +0.092819 0.4894626 0.4244723 +0.2262531 0.4894626 0.4244723 +0.2875993 0.4894626 0.4244723 +0.3262122 0.4894626 0.4244723 +0.3544566 0.4894626 0.4244723 +0.3767383 0.4894626 0.4244723 +0.3951413 0.4894626 0.4244723 +0.4108177 0.4894626 0.4244723 +0.4244723 0.4894626 0.4244723 +0.4365675 0.4894626 0.4244723 +0.4474232 0.4894626 0.4244723 +0.45727 0.4894626 0.4244723 +0.4662797 0.4894626 0.4244723 +0.4745834 0.4894626 0.4244723 +0.4822838 0.4894626 0.4244723 +0.4894626 0.4894626 0.4244723 +0.4961862 0.4894626 0.4244723 +0.5025087 0.4894626 0.4244723 +0.5084753 0.4894626 0.4244723 +0.514124 0.4894626 0.4244723 +0.519487 0.4894626 0.4244723 +0.5245917 0.4894626 0.4244723 +0.529462 0.4894626 0.4244723 +0.5341183 0.4894626 0.4244723 +0.5385787 0.4894626 0.4244723 +0.5428591 0.4894626 0.4244723 +0.5469733 0.4894626 0.4244723 +0.5509339 0.4894626 0.4244723 +0.5547519 0.4894626 0.4244723 +0.5584371 0.4894626 0.4244723 +0.5619986 0.4894626 0.4244723 +0.5654443 0.4894626 0.4244723 +0.5687816 0.4894626 0.4244723 +0.092819 0.4961862 0.4244723 +0.2262531 0.4961862 0.4244723 +0.2875993 0.4961862 0.4244723 +0.3262122 0.4961862 0.4244723 +0.3544566 0.4961862 0.4244723 +0.3767383 0.4961862 0.4244723 +0.3951413 0.4961862 0.4244723 +0.4108177 0.4961862 0.4244723 +0.4244723 0.4961862 0.4244723 +0.4365675 0.4961862 0.4244723 +0.4474232 0.4961862 0.4244723 +0.45727 0.4961862 0.4244723 +0.4662797 0.4961862 0.4244723 +0.4745834 0.4961862 0.4244723 +0.4822838 0.4961862 0.4244723 +0.4894626 0.4961862 0.4244723 +0.4961862 0.4961862 0.4244723 +0.5025087 0.4961862 0.4244723 +0.5084753 0.4961862 0.4244723 +0.514124 0.4961862 0.4244723 +0.519487 0.4961862 0.4244723 +0.5245917 0.4961862 0.4244723 +0.529462 0.4961862 0.4244723 +0.5341183 0.4961862 0.4244723 +0.5385787 0.4961862 0.4244723 +0.5428591 0.4961862 0.4244723 +0.5469733 0.4961862 0.4244723 +0.5509339 0.4961862 0.4244723 +0.5547519 0.4961862 0.4244723 +0.5584371 0.4961862 0.4244723 +0.5619986 0.4961862 0.4244723 +0.5654443 0.4961862 0.4244723 +0.5687816 0.4961862 0.4244723 +0.092819 0.5025087 0.4244723 +0.2262531 0.5025087 0.4244723 +0.2875993 0.5025087 0.4244723 +0.3262122 0.5025087 0.4244723 +0.3544566 0.5025087 0.4244723 +0.3767383 0.5025087 0.4244723 +0.3951413 0.5025087 0.4244723 +0.4108177 0.5025087 0.4244723 +0.4244723 0.5025087 0.4244723 +0.4365675 0.5025087 0.4244723 +0.4474232 0.5025087 0.4244723 +0.45727 0.5025087 0.4244723 +0.4662797 0.5025087 0.4244723 +0.4745834 0.5025087 0.4244723 +0.4822838 0.5025087 0.4244723 +0.4894626 0.5025087 0.4244723 +0.4961862 0.5025087 0.4244723 +0.5025087 0.5025087 0.4244723 +0.5084753 0.5025087 0.4244723 +0.514124 0.5025087 0.4244723 +0.519487 0.5025087 0.4244723 +0.5245917 0.5025087 0.4244723 +0.529462 0.5025087 0.4244723 +0.5341183 0.5025087 0.4244723 +0.5385787 0.5025087 0.4244723 +0.5428591 0.5025087 0.4244723 +0.5469733 0.5025087 0.4244723 +0.5509339 0.5025087 0.4244723 +0.5547519 0.5025087 0.4244723 +0.5584371 0.5025087 0.4244723 +0.5619986 0.5025087 0.4244723 +0.5654443 0.5025087 0.4244723 +0.5687816 0.5025087 0.4244723 +0.092819 0.5084753 0.4244723 +0.2262531 0.5084753 0.4244723 +0.2875993 0.5084753 0.4244723 +0.3262122 0.5084753 0.4244723 +0.3544566 0.5084753 0.4244723 +0.3767383 0.5084753 0.4244723 +0.3951413 0.5084753 0.4244723 +0.4108177 0.5084753 0.4244723 +0.4244723 0.5084753 0.4244723 +0.4365675 0.5084753 0.4244723 +0.4474232 0.5084753 0.4244723 +0.45727 0.5084753 0.4244723 +0.4662797 0.5084753 0.4244723 +0.4745834 0.5084753 0.4244723 +0.4822838 0.5084753 0.4244723 +0.4894626 0.5084753 0.4244723 +0.4961862 0.5084753 0.4244723 +0.5025087 0.5084753 0.4244723 +0.5084753 0.5084753 0.4244723 +0.514124 0.5084753 0.4244723 +0.519487 0.5084753 0.4244723 +0.5245917 0.5084753 0.4244723 +0.529462 0.5084753 0.4244723 +0.5341183 0.5084753 0.4244723 +0.5385787 0.5084753 0.4244723 +0.5428591 0.5084753 0.4244723 +0.5469733 0.5084753 0.4244723 +0.5509339 0.5084753 0.4244723 +0.5547519 0.5084753 0.4244723 +0.5584371 0.5084753 0.4244723 +0.5619986 0.5084753 0.4244723 +0.5654443 0.5084753 0.4244723 +0.5687816 0.5084753 0.4244723 +0.092819 0.514124 0.4244723 +0.2262531 0.514124 0.4244723 +0.2875993 0.514124 0.4244723 +0.3262122 0.514124 0.4244723 +0.3544566 0.514124 0.4244723 +0.3767383 0.514124 0.4244723 +0.3951413 0.514124 0.4244723 +0.4108177 0.514124 0.4244723 +0.4244723 0.514124 0.4244723 +0.4365675 0.514124 0.4244723 +0.4474232 0.514124 0.4244723 +0.45727 0.514124 0.4244723 +0.4662797 0.514124 0.4244723 +0.4745834 0.514124 0.4244723 +0.4822838 0.514124 0.4244723 +0.4894626 0.514124 0.4244723 +0.4961862 0.514124 0.4244723 +0.5025087 0.514124 0.4244723 +0.5084753 0.514124 0.4244723 +0.514124 0.514124 0.4244723 +0.519487 0.514124 0.4244723 +0.5245917 0.514124 0.4244723 +0.529462 0.514124 0.4244723 +0.5341183 0.514124 0.4244723 +0.5385787 0.514124 0.4244723 +0.5428591 0.514124 0.4244723 +0.5469733 0.514124 0.4244723 +0.5509339 0.514124 0.4244723 +0.5547519 0.514124 0.4244723 +0.5584371 0.514124 0.4244723 +0.5619986 0.514124 0.4244723 +0.5654443 0.514124 0.4244723 +0.5687816 0.514124 0.4244723 +0.092819 0.519487 0.4244723 +0.2262531 0.519487 0.4244723 +0.2875993 0.519487 0.4244723 +0.3262122 0.519487 0.4244723 +0.3544566 0.519487 0.4244723 +0.3767383 0.519487 0.4244723 +0.3951413 0.519487 0.4244723 +0.4108177 0.519487 0.4244723 +0.4244723 0.519487 0.4244723 +0.4365675 0.519487 0.4244723 +0.4474232 0.519487 0.4244723 +0.45727 0.519487 0.4244723 +0.4662797 0.519487 0.4244723 +0.4745834 0.519487 0.4244723 +0.4822838 0.519487 0.4244723 +0.4894626 0.519487 0.4244723 +0.4961862 0.519487 0.4244723 +0.5025087 0.519487 0.4244723 +0.5084753 0.519487 0.4244723 +0.514124 0.519487 0.4244723 +0.519487 0.519487 0.4244723 +0.5245917 0.519487 0.4244723 +0.529462 0.519487 0.4244723 +0.5341183 0.519487 0.4244723 +0.5385787 0.519487 0.4244723 +0.5428591 0.519487 0.4244723 +0.5469733 0.519487 0.4244723 +0.5509339 0.519487 0.4244723 +0.5547519 0.519487 0.4244723 +0.5584371 0.519487 0.4244723 +0.5619986 0.519487 0.4244723 +0.5654443 0.519487 0.4244723 +0.5687816 0.519487 0.4244723 +0.092819 0.5245917 0.4244723 +0.2262531 0.5245917 0.4244723 +0.2875993 0.5245917 0.4244723 +0.3262122 0.5245917 0.4244723 +0.3544566 0.5245917 0.4244723 +0.3767383 0.5245917 0.4244723 +0.3951413 0.5245917 0.4244723 +0.4108177 0.5245917 0.4244723 +0.4244723 0.5245917 0.4244723 +0.4365675 0.5245917 0.4244723 +0.4474232 0.5245917 0.4244723 +0.45727 0.5245917 0.4244723 +0.4662797 0.5245917 0.4244723 +0.4745834 0.5245917 0.4244723 +0.4822838 0.5245917 0.4244723 +0.4894626 0.5245917 0.4244723 +0.4961862 0.5245917 0.4244723 +0.5025087 0.5245917 0.4244723 +0.5084753 0.5245917 0.4244723 +0.514124 0.5245917 0.4244723 +0.519487 0.5245917 0.4244723 +0.5245917 0.5245917 0.4244723 +0.529462 0.5245917 0.4244723 +0.5341183 0.5245917 0.4244723 +0.5385787 0.5245917 0.4244723 +0.5428591 0.5245917 0.4244723 +0.5469733 0.5245917 0.4244723 +0.5509339 0.5245917 0.4244723 +0.5547519 0.5245917 0.4244723 +0.5584371 0.5245917 0.4244723 +0.5619986 0.5245917 0.4244723 +0.5654443 0.5245917 0.4244723 +0.5687816 0.5245917 0.4244723 +0.092819 0.529462 0.4244723 +0.2262531 0.529462 0.4244723 +0.2875993 0.529462 0.4244723 +0.3262122 0.529462 0.4244723 +0.3544566 0.529462 0.4244723 +0.3767383 0.529462 0.4244723 +0.3951413 0.529462 0.4244723 +0.4108177 0.529462 0.4244723 +0.4244723 0.529462 0.4244723 +0.4365675 0.529462 0.4244723 +0.4474232 0.529462 0.4244723 +0.45727 0.529462 0.4244723 +0.4662797 0.529462 0.4244723 +0.4745834 0.529462 0.4244723 +0.4822838 0.529462 0.4244723 +0.4894626 0.529462 0.4244723 +0.4961862 0.529462 0.4244723 +0.5025087 0.529462 0.4244723 +0.5084753 0.529462 0.4244723 +0.514124 0.529462 0.4244723 +0.519487 0.529462 0.4244723 +0.5245917 0.529462 0.4244723 +0.529462 0.529462 0.4244723 +0.5341183 0.529462 0.4244723 +0.5385787 0.529462 0.4244723 +0.5428591 0.529462 0.4244723 +0.5469733 0.529462 0.4244723 +0.5509339 0.529462 0.4244723 +0.5547519 0.529462 0.4244723 +0.5584371 0.529462 0.4244723 +0.5619986 0.529462 0.4244723 +0.5654443 0.529462 0.4244723 +0.5687816 0.529462 0.4244723 +0.092819 0.5341183 0.4244723 +0.2262531 0.5341183 0.4244723 +0.2875993 0.5341183 0.4244723 +0.3262122 0.5341183 0.4244723 +0.3544566 0.5341183 0.4244723 +0.3767383 0.5341183 0.4244723 +0.3951413 0.5341183 0.4244723 +0.4108177 0.5341183 0.4244723 +0.4244723 0.5341183 0.4244723 +0.4365675 0.5341183 0.4244723 +0.4474232 0.5341183 0.4244723 +0.45727 0.5341183 0.4244723 +0.4662797 0.5341183 0.4244723 +0.4745834 0.5341183 0.4244723 +0.4822838 0.5341183 0.4244723 +0.4894626 0.5341183 0.4244723 +0.4961862 0.5341183 0.4244723 +0.5025087 0.5341183 0.4244723 +0.5084753 0.5341183 0.4244723 +0.514124 0.5341183 0.4244723 +0.519487 0.5341183 0.4244723 +0.5245917 0.5341183 0.4244723 +0.529462 0.5341183 0.4244723 +0.5341183 0.5341183 0.4244723 +0.5385787 0.5341183 0.4244723 +0.5428591 0.5341183 0.4244723 +0.5469733 0.5341183 0.4244723 +0.5509339 0.5341183 0.4244723 +0.5547519 0.5341183 0.4244723 +0.5584371 0.5341183 0.4244723 +0.5619986 0.5341183 0.4244723 +0.5654443 0.5341183 0.4244723 +0.5687816 0.5341183 0.4244723 +0.092819 0.5385787 0.4244723 +0.2262531 0.5385787 0.4244723 +0.2875993 0.5385787 0.4244723 +0.3262122 0.5385787 0.4244723 +0.3544566 0.5385787 0.4244723 +0.3767383 0.5385787 0.4244723 +0.3951413 0.5385787 0.4244723 +0.4108177 0.5385787 0.4244723 +0.4244723 0.5385787 0.4244723 +0.4365675 0.5385787 0.4244723 +0.4474232 0.5385787 0.4244723 +0.45727 0.5385787 0.4244723 +0.4662797 0.5385787 0.4244723 +0.4745834 0.5385787 0.4244723 +0.4822838 0.5385787 0.4244723 +0.4894626 0.5385787 0.4244723 +0.4961862 0.5385787 0.4244723 +0.5025087 0.5385787 0.4244723 +0.5084753 0.5385787 0.4244723 +0.514124 0.5385787 0.4244723 +0.519487 0.5385787 0.4244723 +0.5245917 0.5385787 0.4244723 +0.529462 0.5385787 0.4244723 +0.5341183 0.5385787 0.4244723 +0.5385787 0.5385787 0.4244723 +0.5428591 0.5385787 0.4244723 +0.5469733 0.5385787 0.4244723 +0.5509339 0.5385787 0.4244723 +0.5547519 0.5385787 0.4244723 +0.5584371 0.5385787 0.4244723 +0.5619986 0.5385787 0.4244723 +0.5654443 0.5385787 0.4244723 +0.5687816 0.5385787 0.4244723 +0.092819 0.5428591 0.4244723 +0.2262531 0.5428591 0.4244723 +0.2875993 0.5428591 0.4244723 +0.3262122 0.5428591 0.4244723 +0.3544566 0.5428591 0.4244723 +0.3767383 0.5428591 0.4244723 +0.3951413 0.5428591 0.4244723 +0.4108177 0.5428591 0.4244723 +0.4244723 0.5428591 0.4244723 +0.4365675 0.5428591 0.4244723 +0.4474232 0.5428591 0.4244723 +0.45727 0.5428591 0.4244723 +0.4662797 0.5428591 0.4244723 +0.4745834 0.5428591 0.4244723 +0.4822838 0.5428591 0.4244723 +0.4894626 0.5428591 0.4244723 +0.4961862 0.5428591 0.4244723 +0.5025087 0.5428591 0.4244723 +0.5084753 0.5428591 0.4244723 +0.514124 0.5428591 0.4244723 +0.519487 0.5428591 0.4244723 +0.5245917 0.5428591 0.4244723 +0.529462 0.5428591 0.4244723 +0.5341183 0.5428591 0.4244723 +0.5385787 0.5428591 0.4244723 +0.5428591 0.5428591 0.4244723 +0.5469733 0.5428591 0.4244723 +0.5509339 0.5428591 0.4244723 +0.5547519 0.5428591 0.4244723 +0.5584371 0.5428591 0.4244723 +0.5619986 0.5428591 0.4244723 +0.5654443 0.5428591 0.4244723 +0.5687816 0.5428591 0.4244723 +0.092819 0.5469733 0.4244723 +0.2262531 0.5469733 0.4244723 +0.2875993 0.5469733 0.4244723 +0.3262122 0.5469733 0.4244723 +0.3544566 0.5469733 0.4244723 +0.3767383 0.5469733 0.4244723 +0.3951413 0.5469733 0.4244723 +0.4108177 0.5469733 0.4244723 +0.4244723 0.5469733 0.4244723 +0.4365675 0.5469733 0.4244723 +0.4474232 0.5469733 0.4244723 +0.45727 0.5469733 0.4244723 +0.4662797 0.5469733 0.4244723 +0.4745834 0.5469733 0.4244723 +0.4822838 0.5469733 0.4244723 +0.4894626 0.5469733 0.4244723 +0.4961862 0.5469733 0.4244723 +0.5025087 0.5469733 0.4244723 +0.5084753 0.5469733 0.4244723 +0.514124 0.5469733 0.4244723 +0.519487 0.5469733 0.4244723 +0.5245917 0.5469733 0.4244723 +0.529462 0.5469733 0.4244723 +0.5341183 0.5469733 0.4244723 +0.5385787 0.5469733 0.4244723 +0.5428591 0.5469733 0.4244723 +0.5469733 0.5469733 0.4244723 +0.5509339 0.5469733 0.4244723 +0.5547519 0.5469733 0.4244723 +0.5584371 0.5469733 0.4244723 +0.5619986 0.5469733 0.4244723 +0.5654443 0.5469733 0.4244723 +0.5687816 0.5469733 0.4244723 +0.092819 0.5509339 0.4244723 +0.2262531 0.5509339 0.4244723 +0.2875993 0.5509339 0.4244723 +0.3262122 0.5509339 0.4244723 +0.3544566 0.5509339 0.4244723 +0.3767383 0.5509339 0.4244723 +0.3951413 0.5509339 0.4244723 +0.4108177 0.5509339 0.4244723 +0.4244723 0.5509339 0.4244723 +0.4365675 0.5509339 0.4244723 +0.4474232 0.5509339 0.4244723 +0.45727 0.5509339 0.4244723 +0.4662797 0.5509339 0.4244723 +0.4745834 0.5509339 0.4244723 +0.4822838 0.5509339 0.4244723 +0.4894626 0.5509339 0.4244723 +0.4961862 0.5509339 0.4244723 +0.5025087 0.5509339 0.4244723 +0.5084753 0.5509339 0.4244723 +0.514124 0.5509339 0.4244723 +0.519487 0.5509339 0.4244723 +0.5245917 0.5509339 0.4244723 +0.529462 0.5509339 0.4244723 +0.5341183 0.5509339 0.4244723 +0.5385787 0.5509339 0.4244723 +0.5428591 0.5509339 0.4244723 +0.5469733 0.5509339 0.4244723 +0.5509339 0.5509339 0.4244723 +0.5547519 0.5509339 0.4244723 +0.5584371 0.5509339 0.4244723 +0.5619986 0.5509339 0.4244723 +0.5654443 0.5509339 0.4244723 +0.5687816 0.5509339 0.4244723 +0.092819 0.5547519 0.4244723 +0.2262531 0.5547519 0.4244723 +0.2875993 0.5547519 0.4244723 +0.3262122 0.5547519 0.4244723 +0.3544566 0.5547519 0.4244723 +0.3767383 0.5547519 0.4244723 +0.3951413 0.5547519 0.4244723 +0.4108177 0.5547519 0.4244723 +0.4244723 0.5547519 0.4244723 +0.4365675 0.5547519 0.4244723 +0.4474232 0.5547519 0.4244723 +0.45727 0.5547519 0.4244723 +0.4662797 0.5547519 0.4244723 +0.4745834 0.5547519 0.4244723 +0.4822838 0.5547519 0.4244723 +0.4894626 0.5547519 0.4244723 +0.4961862 0.5547519 0.4244723 +0.5025087 0.5547519 0.4244723 +0.5084753 0.5547519 0.4244723 +0.514124 0.5547519 0.4244723 +0.519487 0.5547519 0.4244723 +0.5245917 0.5547519 0.4244723 +0.529462 0.5547519 0.4244723 +0.5341183 0.5547519 0.4244723 +0.5385787 0.5547519 0.4244723 +0.5428591 0.5547519 0.4244723 +0.5469733 0.5547519 0.4244723 +0.5509339 0.5547519 0.4244723 +0.5547519 0.5547519 0.4244723 +0.5584371 0.5547519 0.4244723 +0.5619986 0.5547519 0.4244723 +0.5654443 0.5547519 0.4244723 +0.5687816 0.5547519 0.4244723 +0.092819 0.5584371 0.4244723 +0.2262531 0.5584371 0.4244723 +0.2875993 0.5584371 0.4244723 +0.3262122 0.5584371 0.4244723 +0.3544566 0.5584371 0.4244723 +0.3767383 0.5584371 0.4244723 +0.3951413 0.5584371 0.4244723 +0.4108177 0.5584371 0.4244723 +0.4244723 0.5584371 0.4244723 +0.4365675 0.5584371 0.4244723 +0.4474232 0.5584371 0.4244723 +0.45727 0.5584371 0.4244723 +0.4662797 0.5584371 0.4244723 +0.4745834 0.5584371 0.4244723 +0.4822838 0.5584371 0.4244723 +0.4894626 0.5584371 0.4244723 +0.4961862 0.5584371 0.4244723 +0.5025087 0.5584371 0.4244723 +0.5084753 0.5584371 0.4244723 +0.514124 0.5584371 0.4244723 +0.519487 0.5584371 0.4244723 +0.5245917 0.5584371 0.4244723 +0.529462 0.5584371 0.4244723 +0.5341183 0.5584371 0.4244723 +0.5385787 0.5584371 0.4244723 +0.5428591 0.5584371 0.4244723 +0.5469733 0.5584371 0.4244723 +0.5509339 0.5584371 0.4244723 +0.5547519 0.5584371 0.4244723 +0.5584371 0.5584371 0.4244723 +0.5619986 0.5584371 0.4244723 +0.5654443 0.5584371 0.4244723 +0.5687816 0.5584371 0.4244723 +0.092819 0.5619986 0.4244723 +0.2262531 0.5619986 0.4244723 +0.2875993 0.5619986 0.4244723 +0.3262122 0.5619986 0.4244723 +0.3544566 0.5619986 0.4244723 +0.3767383 0.5619986 0.4244723 +0.3951413 0.5619986 0.4244723 +0.4108177 0.5619986 0.4244723 +0.4244723 0.5619986 0.4244723 +0.4365675 0.5619986 0.4244723 +0.4474232 0.5619986 0.4244723 +0.45727 0.5619986 0.4244723 +0.4662797 0.5619986 0.4244723 +0.4745834 0.5619986 0.4244723 +0.4822838 0.5619986 0.4244723 +0.4894626 0.5619986 0.4244723 +0.4961862 0.5619986 0.4244723 +0.5025087 0.5619986 0.4244723 +0.5084753 0.5619986 0.4244723 +0.514124 0.5619986 0.4244723 +0.519487 0.5619986 0.4244723 +0.5245917 0.5619986 0.4244723 +0.529462 0.5619986 0.4244723 +0.5341183 0.5619986 0.4244723 +0.5385787 0.5619986 0.4244723 +0.5428591 0.5619986 0.4244723 +0.5469733 0.5619986 0.4244723 +0.5509339 0.5619986 0.4244723 +0.5547519 0.5619986 0.4244723 +0.5584371 0.5619986 0.4244723 +0.5619986 0.5619986 0.4244723 +0.5654443 0.5619986 0.4244723 +0.5687816 0.5619986 0.4244723 +0.092819 0.5654443 0.4244723 +0.2262531 0.5654443 0.4244723 +0.2875993 0.5654443 0.4244723 +0.3262122 0.5654443 0.4244723 +0.3544566 0.5654443 0.4244723 +0.3767383 0.5654443 0.4244723 +0.3951413 0.5654443 0.4244723 +0.4108177 0.5654443 0.4244723 +0.4244723 0.5654443 0.4244723 +0.4365675 0.5654443 0.4244723 +0.4474232 0.5654443 0.4244723 +0.45727 0.5654443 0.4244723 +0.4662797 0.5654443 0.4244723 +0.4745834 0.5654443 0.4244723 +0.4822838 0.5654443 0.4244723 +0.4894626 0.5654443 0.4244723 +0.4961862 0.5654443 0.4244723 +0.5025087 0.5654443 0.4244723 +0.5084753 0.5654443 0.4244723 +0.514124 0.5654443 0.4244723 +0.519487 0.5654443 0.4244723 +0.5245917 0.5654443 0.4244723 +0.529462 0.5654443 0.4244723 +0.5341183 0.5654443 0.4244723 +0.5385787 0.5654443 0.4244723 +0.5428591 0.5654443 0.4244723 +0.5469733 0.5654443 0.4244723 +0.5509339 0.5654443 0.4244723 +0.5547519 0.5654443 0.4244723 +0.5584371 0.5654443 0.4244723 +0.5619986 0.5654443 0.4244723 +0.5654443 0.5654443 0.4244723 +0.5687816 0.5654443 0.4244723 +0.092819 0.5687816 0.4244723 +0.2262531 0.5687816 0.4244723 +0.2875993 0.5687816 0.4244723 +0.3262122 0.5687816 0.4244723 +0.3544566 0.5687816 0.4244723 +0.3767383 0.5687816 0.4244723 +0.3951413 0.5687816 0.4244723 +0.4108177 0.5687816 0.4244723 +0.4244723 0.5687816 0.4244723 +0.4365675 0.5687816 0.4244723 +0.4474232 0.5687816 0.4244723 +0.45727 0.5687816 0.4244723 +0.4662797 0.5687816 0.4244723 +0.4745834 0.5687816 0.4244723 +0.4822838 0.5687816 0.4244723 +0.4894626 0.5687816 0.4244723 +0.4961862 0.5687816 0.4244723 +0.5025087 0.5687816 0.4244723 +0.5084753 0.5687816 0.4244723 +0.514124 0.5687816 0.4244723 +0.519487 0.5687816 0.4244723 +0.5245917 0.5687816 0.4244723 +0.529462 0.5687816 0.4244723 +0.5341183 0.5687816 0.4244723 +0.5385787 0.5687816 0.4244723 +0.5428591 0.5687816 0.4244723 +0.5469733 0.5687816 0.4244723 +0.5509339 0.5687816 0.4244723 +0.5547519 0.5687816 0.4244723 +0.5584371 0.5687816 0.4244723 +0.5619986 0.5687816 0.4244723 +0.5654443 0.5687816 0.4244723 +0.5687816 0.5687816 0.4244723 +0.092819 0.092819 0.4365675 +0.2262531 0.092819 0.4365675 +0.2875993 0.092819 0.4365675 +0.3262122 0.092819 0.4365675 +0.3544566 0.092819 0.4365675 +0.3767383 0.092819 0.4365675 +0.3951413 0.092819 0.4365675 +0.4108177 0.092819 0.4365675 +0.4244723 0.092819 0.4365675 +0.4365675 0.092819 0.4365675 +0.4474232 0.092819 0.4365675 +0.45727 0.092819 0.4365675 +0.4662797 0.092819 0.4365675 +0.4745834 0.092819 0.4365675 +0.4822838 0.092819 0.4365675 +0.4894626 0.092819 0.4365675 +0.4961862 0.092819 0.4365675 +0.5025087 0.092819 0.4365675 +0.5084753 0.092819 0.4365675 +0.514124 0.092819 0.4365675 +0.519487 0.092819 0.4365675 +0.5245917 0.092819 0.4365675 +0.529462 0.092819 0.4365675 +0.5341183 0.092819 0.4365675 +0.5385787 0.092819 0.4365675 +0.5428591 0.092819 0.4365675 +0.5469733 0.092819 0.4365675 +0.5509339 0.092819 0.4365675 +0.5547519 0.092819 0.4365675 +0.5584371 0.092819 0.4365675 +0.5619986 0.092819 0.4365675 +0.5654443 0.092819 0.4365675 +0.5687816 0.092819 0.4365675 +0.092819 0.2262531 0.4365675 +0.2262531 0.2262531 0.4365675 +0.2875993 0.2262531 0.4365675 +0.3262122 0.2262531 0.4365675 +0.3544566 0.2262531 0.4365675 +0.3767383 0.2262531 0.4365675 +0.3951413 0.2262531 0.4365675 +0.4108177 0.2262531 0.4365675 +0.4244723 0.2262531 0.4365675 +0.4365675 0.2262531 0.4365675 +0.4474232 0.2262531 0.4365675 +0.45727 0.2262531 0.4365675 +0.4662797 0.2262531 0.4365675 +0.4745834 0.2262531 0.4365675 +0.4822838 0.2262531 0.4365675 +0.4894626 0.2262531 0.4365675 +0.4961862 0.2262531 0.4365675 +0.5025087 0.2262531 0.4365675 +0.5084753 0.2262531 0.4365675 +0.514124 0.2262531 0.4365675 +0.519487 0.2262531 0.4365675 +0.5245917 0.2262531 0.4365675 +0.529462 0.2262531 0.4365675 +0.5341183 0.2262531 0.4365675 +0.5385787 0.2262531 0.4365675 +0.5428591 0.2262531 0.4365675 +0.5469733 0.2262531 0.4365675 +0.5509339 0.2262531 0.4365675 +0.5547519 0.2262531 0.4365675 +0.5584371 0.2262531 0.4365675 +0.5619986 0.2262531 0.4365675 +0.5654443 0.2262531 0.4365675 +0.5687816 0.2262531 0.4365675 +0.092819 0.2875993 0.4365675 +0.2262531 0.2875993 0.4365675 +0.2875993 0.2875993 0.4365675 +0.3262122 0.2875993 0.4365675 +0.3544566 0.2875993 0.4365675 +0.3767383 0.2875993 0.4365675 +0.3951413 0.2875993 0.4365675 +0.4108177 0.2875993 0.4365675 +0.4244723 0.2875993 0.4365675 +0.4365675 0.2875993 0.4365675 +0.4474232 0.2875993 0.4365675 +0.45727 0.2875993 0.4365675 +0.4662797 0.2875993 0.4365675 +0.4745834 0.2875993 0.4365675 +0.4822838 0.2875993 0.4365675 +0.4894626 0.2875993 0.4365675 +0.4961862 0.2875993 0.4365675 +0.5025087 0.2875993 0.4365675 +0.5084753 0.2875993 0.4365675 +0.514124 0.2875993 0.4365675 +0.519487 0.2875993 0.4365675 +0.5245917 0.2875993 0.4365675 +0.529462 0.2875993 0.4365675 +0.5341183 0.2875993 0.4365675 +0.5385787 0.2875993 0.4365675 +0.5428591 0.2875993 0.4365675 +0.5469733 0.2875993 0.4365675 +0.5509339 0.2875993 0.4365675 +0.5547519 0.2875993 0.4365675 +0.5584371 0.2875993 0.4365675 +0.5619986 0.2875993 0.4365675 +0.5654443 0.2875993 0.4365675 +0.5687816 0.2875993 0.4365675 +0.092819 0.3262122 0.4365675 +0.2262531 0.3262122 0.4365675 +0.2875993 0.3262122 0.4365675 +0.3262122 0.3262122 0.4365675 +0.3544566 0.3262122 0.4365675 +0.3767383 0.3262122 0.4365675 +0.3951413 0.3262122 0.4365675 +0.4108177 0.3262122 0.4365675 +0.4244723 0.3262122 0.4365675 +0.4365675 0.3262122 0.4365675 +0.4474232 0.3262122 0.4365675 +0.45727 0.3262122 0.4365675 +0.4662797 0.3262122 0.4365675 +0.4745834 0.3262122 0.4365675 +0.4822838 0.3262122 0.4365675 +0.4894626 0.3262122 0.4365675 +0.4961862 0.3262122 0.4365675 +0.5025087 0.3262122 0.4365675 +0.5084753 0.3262122 0.4365675 +0.514124 0.3262122 0.4365675 +0.519487 0.3262122 0.4365675 +0.5245917 0.3262122 0.4365675 +0.529462 0.3262122 0.4365675 +0.5341183 0.3262122 0.4365675 +0.5385787 0.3262122 0.4365675 +0.5428591 0.3262122 0.4365675 +0.5469733 0.3262122 0.4365675 +0.5509339 0.3262122 0.4365675 +0.5547519 0.3262122 0.4365675 +0.5584371 0.3262122 0.4365675 +0.5619986 0.3262122 0.4365675 +0.5654443 0.3262122 0.4365675 +0.5687816 0.3262122 0.4365675 +0.092819 0.3544566 0.4365675 +0.2262531 0.3544566 0.4365675 +0.2875993 0.3544566 0.4365675 +0.3262122 0.3544566 0.4365675 +0.3544566 0.3544566 0.4365675 +0.3767383 0.3544566 0.4365675 +0.3951413 0.3544566 0.4365675 +0.4108177 0.3544566 0.4365675 +0.4244723 0.3544566 0.4365675 +0.4365675 0.3544566 0.4365675 +0.4474232 0.3544566 0.4365675 +0.45727 0.3544566 0.4365675 +0.4662797 0.3544566 0.4365675 +0.4745834 0.3544566 0.4365675 +0.4822838 0.3544566 0.4365675 +0.4894626 0.3544566 0.4365675 +0.4961862 0.3544566 0.4365675 +0.5025087 0.3544566 0.4365675 +0.5084753 0.3544566 0.4365675 +0.514124 0.3544566 0.4365675 +0.519487 0.3544566 0.4365675 +0.5245917 0.3544566 0.4365675 +0.529462 0.3544566 0.4365675 +0.5341183 0.3544566 0.4365675 +0.5385787 0.3544566 0.4365675 +0.5428591 0.3544566 0.4365675 +0.5469733 0.3544566 0.4365675 +0.5509339 0.3544566 0.4365675 +0.5547519 0.3544566 0.4365675 +0.5584371 0.3544566 0.4365675 +0.5619986 0.3544566 0.4365675 +0.5654443 0.3544566 0.4365675 +0.5687816 0.3544566 0.4365675 +0.092819 0.3767383 0.4365675 +0.2262531 0.3767383 0.4365675 +0.2875993 0.3767383 0.4365675 +0.3262122 0.3767383 0.4365675 +0.3544566 0.3767383 0.4365675 +0.3767383 0.3767383 0.4365675 +0.3951413 0.3767383 0.4365675 +0.4108177 0.3767383 0.4365675 +0.4244723 0.3767383 0.4365675 +0.4365675 0.3767383 0.4365675 +0.4474232 0.3767383 0.4365675 +0.45727 0.3767383 0.4365675 +0.4662797 0.3767383 0.4365675 +0.4745834 0.3767383 0.4365675 +0.4822838 0.3767383 0.4365675 +0.4894626 0.3767383 0.4365675 +0.4961862 0.3767383 0.4365675 +0.5025087 0.3767383 0.4365675 +0.5084753 0.3767383 0.4365675 +0.514124 0.3767383 0.4365675 +0.519487 0.3767383 0.4365675 +0.5245917 0.3767383 0.4365675 +0.529462 0.3767383 0.4365675 +0.5341183 0.3767383 0.4365675 +0.5385787 0.3767383 0.4365675 +0.5428591 0.3767383 0.4365675 +0.5469733 0.3767383 0.4365675 +0.5509339 0.3767383 0.4365675 +0.5547519 0.3767383 0.4365675 +0.5584371 0.3767383 0.4365675 +0.5619986 0.3767383 0.4365675 +0.5654443 0.3767383 0.4365675 +0.5687816 0.3767383 0.4365675 +0.092819 0.3951413 0.4365675 +0.2262531 0.3951413 0.4365675 +0.2875993 0.3951413 0.4365675 +0.3262122 0.3951413 0.4365675 +0.3544566 0.3951413 0.4365675 +0.3767383 0.3951413 0.4365675 +0.3951413 0.3951413 0.4365675 +0.4108177 0.3951413 0.4365675 +0.4244723 0.3951413 0.4365675 +0.4365675 0.3951413 0.4365675 +0.4474232 0.3951413 0.4365675 +0.45727 0.3951413 0.4365675 +0.4662797 0.3951413 0.4365675 +0.4745834 0.3951413 0.4365675 +0.4822838 0.3951413 0.4365675 +0.4894626 0.3951413 0.4365675 +0.4961862 0.3951413 0.4365675 +0.5025087 0.3951413 0.4365675 +0.5084753 0.3951413 0.4365675 +0.514124 0.3951413 0.4365675 +0.519487 0.3951413 0.4365675 +0.5245917 0.3951413 0.4365675 +0.529462 0.3951413 0.4365675 +0.5341183 0.3951413 0.4365675 +0.5385787 0.3951413 0.4365675 +0.5428591 0.3951413 0.4365675 +0.5469733 0.3951413 0.4365675 +0.5509339 0.3951413 0.4365675 +0.5547519 0.3951413 0.4365675 +0.5584371 0.3951413 0.4365675 +0.5619986 0.3951413 0.4365675 +0.5654443 0.3951413 0.4365675 +0.5687816 0.3951413 0.4365675 +0.092819 0.4108177 0.4365675 +0.2262531 0.4108177 0.4365675 +0.2875993 0.4108177 0.4365675 +0.3262122 0.4108177 0.4365675 +0.3544566 0.4108177 0.4365675 +0.3767383 0.4108177 0.4365675 +0.3951413 0.4108177 0.4365675 +0.4108177 0.4108177 0.4365675 +0.4244723 0.4108177 0.4365675 +0.4365675 0.4108177 0.4365675 +0.4474232 0.4108177 0.4365675 +0.45727 0.4108177 0.4365675 +0.4662797 0.4108177 0.4365675 +0.4745834 0.4108177 0.4365675 +0.4822838 0.4108177 0.4365675 +0.4894626 0.4108177 0.4365675 +0.4961862 0.4108177 0.4365675 +0.5025087 0.4108177 0.4365675 +0.5084753 0.4108177 0.4365675 +0.514124 0.4108177 0.4365675 +0.519487 0.4108177 0.4365675 +0.5245917 0.4108177 0.4365675 +0.529462 0.4108177 0.4365675 +0.5341183 0.4108177 0.4365675 +0.5385787 0.4108177 0.4365675 +0.5428591 0.4108177 0.4365675 +0.5469733 0.4108177 0.4365675 +0.5509339 0.4108177 0.4365675 +0.5547519 0.4108177 0.4365675 +0.5584371 0.4108177 0.4365675 +0.5619986 0.4108177 0.4365675 +0.5654443 0.4108177 0.4365675 +0.5687816 0.4108177 0.4365675 +0.092819 0.4244723 0.4365675 +0.2262531 0.4244723 0.4365675 +0.2875993 0.4244723 0.4365675 +0.3262122 0.4244723 0.4365675 +0.3544566 0.4244723 0.4365675 +0.3767383 0.4244723 0.4365675 +0.3951413 0.4244723 0.4365675 +0.4108177 0.4244723 0.4365675 +0.4244723 0.4244723 0.4365675 +0.4365675 0.4244723 0.4365675 +0.4474232 0.4244723 0.4365675 +0.45727 0.4244723 0.4365675 +0.4662797 0.4244723 0.4365675 +0.4745834 0.4244723 0.4365675 +0.4822838 0.4244723 0.4365675 +0.4894626 0.4244723 0.4365675 +0.4961862 0.4244723 0.4365675 +0.5025087 0.4244723 0.4365675 +0.5084753 0.4244723 0.4365675 +0.514124 0.4244723 0.4365675 +0.519487 0.4244723 0.4365675 +0.5245917 0.4244723 0.4365675 +0.529462 0.4244723 0.4365675 +0.5341183 0.4244723 0.4365675 +0.5385787 0.4244723 0.4365675 +0.5428591 0.4244723 0.4365675 +0.5469733 0.4244723 0.4365675 +0.5509339 0.4244723 0.4365675 +0.5547519 0.4244723 0.4365675 +0.5584371 0.4244723 0.4365675 +0.5619986 0.4244723 0.4365675 +0.5654443 0.4244723 0.4365675 +0.5687816 0.4244723 0.4365675 +0.092819 0.4365675 0.4365675 +0.2262531 0.4365675 0.4365675 +0.2875993 0.4365675 0.4365675 +0.3262122 0.4365675 0.4365675 +0.3544566 0.4365675 0.4365675 +0.3767383 0.4365675 0.4365675 +0.3951413 0.4365675 0.4365675 +0.4108177 0.4365675 0.4365675 +0.4244723 0.4365675 0.4365675 +0.4365675 0.4365675 0.4365675 +0.4474232 0.4365675 0.4365675 +0.45727 0.4365675 0.4365675 +0.4662797 0.4365675 0.4365675 +0.4745834 0.4365675 0.4365675 +0.4822838 0.4365675 0.4365675 +0.4894626 0.4365675 0.4365675 +0.4961862 0.4365675 0.4365675 +0.5025087 0.4365675 0.4365675 +0.5084753 0.4365675 0.4365675 +0.514124 0.4365675 0.4365675 +0.519487 0.4365675 0.4365675 +0.5245917 0.4365675 0.4365675 +0.529462 0.4365675 0.4365675 +0.5341183 0.4365675 0.4365675 +0.5385787 0.4365675 0.4365675 +0.5428591 0.4365675 0.4365675 +0.5469733 0.4365675 0.4365675 +0.5509339 0.4365675 0.4365675 +0.5547519 0.4365675 0.4365675 +0.5584371 0.4365675 0.4365675 +0.5619986 0.4365675 0.4365675 +0.5654443 0.4365675 0.4365675 +0.5687816 0.4365675 0.4365675 +0.092819 0.4474232 0.4365675 +0.2262531 0.4474232 0.4365675 +0.2875993 0.4474232 0.4365675 +0.3262122 0.4474232 0.4365675 +0.3544566 0.4474232 0.4365675 +0.3767383 0.4474232 0.4365675 +0.3951413 0.4474232 0.4365675 +0.4108177 0.4474232 0.4365675 +0.4244723 0.4474232 0.4365675 +0.4365675 0.4474232 0.4365675 +0.4474232 0.4474232 0.4365675 +0.45727 0.4474232 0.4365675 +0.4662797 0.4474232 0.4365675 +0.4745834 0.4474232 0.4365675 +0.4822838 0.4474232 0.4365675 +0.4894626 0.4474232 0.4365675 +0.4961862 0.4474232 0.4365675 +0.5025087 0.4474232 0.4365675 +0.5084753 0.4474232 0.4365675 +0.514124 0.4474232 0.4365675 +0.519487 0.4474232 0.4365675 +0.5245917 0.4474232 0.4365675 +0.529462 0.4474232 0.4365675 +0.5341183 0.4474232 0.4365675 +0.5385787 0.4474232 0.4365675 +0.5428591 0.4474232 0.4365675 +0.5469733 0.4474232 0.4365675 +0.5509339 0.4474232 0.4365675 +0.5547519 0.4474232 0.4365675 +0.5584371 0.4474232 0.4365675 +0.5619986 0.4474232 0.4365675 +0.5654443 0.4474232 0.4365675 +0.5687816 0.4474232 0.4365675 +0.092819 0.45727 0.4365675 +0.2262531 0.45727 0.4365675 +0.2875993 0.45727 0.4365675 +0.3262122 0.45727 0.4365675 +0.3544566 0.45727 0.4365675 +0.3767383 0.45727 0.4365675 +0.3951413 0.45727 0.4365675 +0.4108177 0.45727 0.4365675 +0.4244723 0.45727 0.4365675 +0.4365675 0.45727 0.4365675 +0.4474232 0.45727 0.4365675 +0.45727 0.45727 0.4365675 +0.4662797 0.45727 0.4365675 +0.4745834 0.45727 0.4365675 +0.4822838 0.45727 0.4365675 +0.4894626 0.45727 0.4365675 +0.4961862 0.45727 0.4365675 +0.5025087 0.45727 0.4365675 +0.5084753 0.45727 0.4365675 +0.514124 0.45727 0.4365675 +0.519487 0.45727 0.4365675 +0.5245917 0.45727 0.4365675 +0.529462 0.45727 0.4365675 +0.5341183 0.45727 0.4365675 +0.5385787 0.45727 0.4365675 +0.5428591 0.45727 0.4365675 +0.5469733 0.45727 0.4365675 +0.5509339 0.45727 0.4365675 +0.5547519 0.45727 0.4365675 +0.5584371 0.45727 0.4365675 +0.5619986 0.45727 0.4365675 +0.5654443 0.45727 0.4365675 +0.5687816 0.45727 0.4365675 +0.092819 0.4662797 0.4365675 +0.2262531 0.4662797 0.4365675 +0.2875993 0.4662797 0.4365675 +0.3262122 0.4662797 0.4365675 +0.3544566 0.4662797 0.4365675 +0.3767383 0.4662797 0.4365675 +0.3951413 0.4662797 0.4365675 +0.4108177 0.4662797 0.4365675 +0.4244723 0.4662797 0.4365675 +0.4365675 0.4662797 0.4365675 +0.4474232 0.4662797 0.4365675 +0.45727 0.4662797 0.4365675 +0.4662797 0.4662797 0.4365675 +0.4745834 0.4662797 0.4365675 +0.4822838 0.4662797 0.4365675 +0.4894626 0.4662797 0.4365675 +0.4961862 0.4662797 0.4365675 +0.5025087 0.4662797 0.4365675 +0.5084753 0.4662797 0.4365675 +0.514124 0.4662797 0.4365675 +0.519487 0.4662797 0.4365675 +0.5245917 0.4662797 0.4365675 +0.529462 0.4662797 0.4365675 +0.5341183 0.4662797 0.4365675 +0.5385787 0.4662797 0.4365675 +0.5428591 0.4662797 0.4365675 +0.5469733 0.4662797 0.4365675 +0.5509339 0.4662797 0.4365675 +0.5547519 0.4662797 0.4365675 +0.5584371 0.4662797 0.4365675 +0.5619986 0.4662797 0.4365675 +0.5654443 0.4662797 0.4365675 +0.5687816 0.4662797 0.4365675 +0.092819 0.4745834 0.4365675 +0.2262531 0.4745834 0.4365675 +0.2875993 0.4745834 0.4365675 +0.3262122 0.4745834 0.4365675 +0.3544566 0.4745834 0.4365675 +0.3767383 0.4745834 0.4365675 +0.3951413 0.4745834 0.4365675 +0.4108177 0.4745834 0.4365675 +0.4244723 0.4745834 0.4365675 +0.4365675 0.4745834 0.4365675 +0.4474232 0.4745834 0.4365675 +0.45727 0.4745834 0.4365675 +0.4662797 0.4745834 0.4365675 +0.4745834 0.4745834 0.4365675 +0.4822838 0.4745834 0.4365675 +0.4894626 0.4745834 0.4365675 +0.4961862 0.4745834 0.4365675 +0.5025087 0.4745834 0.4365675 +0.5084753 0.4745834 0.4365675 +0.514124 0.4745834 0.4365675 +0.519487 0.4745834 0.4365675 +0.5245917 0.4745834 0.4365675 +0.529462 0.4745834 0.4365675 +0.5341183 0.4745834 0.4365675 +0.5385787 0.4745834 0.4365675 +0.5428591 0.4745834 0.4365675 +0.5469733 0.4745834 0.4365675 +0.5509339 0.4745834 0.4365675 +0.5547519 0.4745834 0.4365675 +0.5584371 0.4745834 0.4365675 +0.5619986 0.4745834 0.4365675 +0.5654443 0.4745834 0.4365675 +0.5687816 0.4745834 0.4365675 +0.092819 0.4822838 0.4365675 +0.2262531 0.4822838 0.4365675 +0.2875993 0.4822838 0.4365675 +0.3262122 0.4822838 0.4365675 +0.3544566 0.4822838 0.4365675 +0.3767383 0.4822838 0.4365675 +0.3951413 0.4822838 0.4365675 +0.4108177 0.4822838 0.4365675 +0.4244723 0.4822838 0.4365675 +0.4365675 0.4822838 0.4365675 +0.4474232 0.4822838 0.4365675 +0.45727 0.4822838 0.4365675 +0.4662797 0.4822838 0.4365675 +0.4745834 0.4822838 0.4365675 +0.4822838 0.4822838 0.4365675 +0.4894626 0.4822838 0.4365675 +0.4961862 0.4822838 0.4365675 +0.5025087 0.4822838 0.4365675 +0.5084753 0.4822838 0.4365675 +0.514124 0.4822838 0.4365675 +0.519487 0.4822838 0.4365675 +0.5245917 0.4822838 0.4365675 +0.529462 0.4822838 0.4365675 +0.5341183 0.4822838 0.4365675 +0.5385787 0.4822838 0.4365675 +0.5428591 0.4822838 0.4365675 +0.5469733 0.4822838 0.4365675 +0.5509339 0.4822838 0.4365675 +0.5547519 0.4822838 0.4365675 +0.5584371 0.4822838 0.4365675 +0.5619986 0.4822838 0.4365675 +0.5654443 0.4822838 0.4365675 +0.5687816 0.4822838 0.4365675 +0.092819 0.4894626 0.4365675 +0.2262531 0.4894626 0.4365675 +0.2875993 0.4894626 0.4365675 +0.3262122 0.4894626 0.4365675 +0.3544566 0.4894626 0.4365675 +0.3767383 0.4894626 0.4365675 +0.3951413 0.4894626 0.4365675 +0.4108177 0.4894626 0.4365675 +0.4244723 0.4894626 0.4365675 +0.4365675 0.4894626 0.4365675 +0.4474232 0.4894626 0.4365675 +0.45727 0.4894626 0.4365675 +0.4662797 0.4894626 0.4365675 +0.4745834 0.4894626 0.4365675 +0.4822838 0.4894626 0.4365675 +0.4894626 0.4894626 0.4365675 +0.4961862 0.4894626 0.4365675 +0.5025087 0.4894626 0.4365675 +0.5084753 0.4894626 0.4365675 +0.514124 0.4894626 0.4365675 +0.519487 0.4894626 0.4365675 +0.5245917 0.4894626 0.4365675 +0.529462 0.4894626 0.4365675 +0.5341183 0.4894626 0.4365675 +0.5385787 0.4894626 0.4365675 +0.5428591 0.4894626 0.4365675 +0.5469733 0.4894626 0.4365675 +0.5509339 0.4894626 0.4365675 +0.5547519 0.4894626 0.4365675 +0.5584371 0.4894626 0.4365675 +0.5619986 0.4894626 0.4365675 +0.5654443 0.4894626 0.4365675 +0.5687816 0.4894626 0.4365675 +0.092819 0.4961862 0.4365675 +0.2262531 0.4961862 0.4365675 +0.2875993 0.4961862 0.4365675 +0.3262122 0.4961862 0.4365675 +0.3544566 0.4961862 0.4365675 +0.3767383 0.4961862 0.4365675 +0.3951413 0.4961862 0.4365675 +0.4108177 0.4961862 0.4365675 +0.4244723 0.4961862 0.4365675 +0.4365675 0.4961862 0.4365675 +0.4474232 0.4961862 0.4365675 +0.45727 0.4961862 0.4365675 +0.4662797 0.4961862 0.4365675 +0.4745834 0.4961862 0.4365675 +0.4822838 0.4961862 0.4365675 +0.4894626 0.4961862 0.4365675 +0.4961862 0.4961862 0.4365675 +0.5025087 0.4961862 0.4365675 +0.5084753 0.4961862 0.4365675 +0.514124 0.4961862 0.4365675 +0.519487 0.4961862 0.4365675 +0.5245917 0.4961862 0.4365675 +0.529462 0.4961862 0.4365675 +0.5341183 0.4961862 0.4365675 +0.5385787 0.4961862 0.4365675 +0.5428591 0.4961862 0.4365675 +0.5469733 0.4961862 0.4365675 +0.5509339 0.4961862 0.4365675 +0.5547519 0.4961862 0.4365675 +0.5584371 0.4961862 0.4365675 +0.5619986 0.4961862 0.4365675 +0.5654443 0.4961862 0.4365675 +0.5687816 0.4961862 0.4365675 +0.092819 0.5025087 0.4365675 +0.2262531 0.5025087 0.4365675 +0.2875993 0.5025087 0.4365675 +0.3262122 0.5025087 0.4365675 +0.3544566 0.5025087 0.4365675 +0.3767383 0.5025087 0.4365675 +0.3951413 0.5025087 0.4365675 +0.4108177 0.5025087 0.4365675 +0.4244723 0.5025087 0.4365675 +0.4365675 0.5025087 0.4365675 +0.4474232 0.5025087 0.4365675 +0.45727 0.5025087 0.4365675 +0.4662797 0.5025087 0.4365675 +0.4745834 0.5025087 0.4365675 +0.4822838 0.5025087 0.4365675 +0.4894626 0.5025087 0.4365675 +0.4961862 0.5025087 0.4365675 +0.5025087 0.5025087 0.4365675 +0.5084753 0.5025087 0.4365675 +0.514124 0.5025087 0.4365675 +0.519487 0.5025087 0.4365675 +0.5245917 0.5025087 0.4365675 +0.529462 0.5025087 0.4365675 +0.5341183 0.5025087 0.4365675 +0.5385787 0.5025087 0.4365675 +0.5428591 0.5025087 0.4365675 +0.5469733 0.5025087 0.4365675 +0.5509339 0.5025087 0.4365675 +0.5547519 0.5025087 0.4365675 +0.5584371 0.5025087 0.4365675 +0.5619986 0.5025087 0.4365675 +0.5654443 0.5025087 0.4365675 +0.5687816 0.5025087 0.4365675 +0.092819 0.5084753 0.4365675 +0.2262531 0.5084753 0.4365675 +0.2875993 0.5084753 0.4365675 +0.3262122 0.5084753 0.4365675 +0.3544566 0.5084753 0.4365675 +0.3767383 0.5084753 0.4365675 +0.3951413 0.5084753 0.4365675 +0.4108177 0.5084753 0.4365675 +0.4244723 0.5084753 0.4365675 +0.4365675 0.5084753 0.4365675 +0.4474232 0.5084753 0.4365675 +0.45727 0.5084753 0.4365675 +0.4662797 0.5084753 0.4365675 +0.4745834 0.5084753 0.4365675 +0.4822838 0.5084753 0.4365675 +0.4894626 0.5084753 0.4365675 +0.4961862 0.5084753 0.4365675 +0.5025087 0.5084753 0.4365675 +0.5084753 0.5084753 0.4365675 +0.514124 0.5084753 0.4365675 +0.519487 0.5084753 0.4365675 +0.5245917 0.5084753 0.4365675 +0.529462 0.5084753 0.4365675 +0.5341183 0.5084753 0.4365675 +0.5385787 0.5084753 0.4365675 +0.5428591 0.5084753 0.4365675 +0.5469733 0.5084753 0.4365675 +0.5509339 0.5084753 0.4365675 +0.5547519 0.5084753 0.4365675 +0.5584371 0.5084753 0.4365675 +0.5619986 0.5084753 0.4365675 +0.5654443 0.5084753 0.4365675 +0.5687816 0.5084753 0.4365675 +0.092819 0.514124 0.4365675 +0.2262531 0.514124 0.4365675 +0.2875993 0.514124 0.4365675 +0.3262122 0.514124 0.4365675 +0.3544566 0.514124 0.4365675 +0.3767383 0.514124 0.4365675 +0.3951413 0.514124 0.4365675 +0.4108177 0.514124 0.4365675 +0.4244723 0.514124 0.4365675 +0.4365675 0.514124 0.4365675 +0.4474232 0.514124 0.4365675 +0.45727 0.514124 0.4365675 +0.4662797 0.514124 0.4365675 +0.4745834 0.514124 0.4365675 +0.4822838 0.514124 0.4365675 +0.4894626 0.514124 0.4365675 +0.4961862 0.514124 0.4365675 +0.5025087 0.514124 0.4365675 +0.5084753 0.514124 0.4365675 +0.514124 0.514124 0.4365675 +0.519487 0.514124 0.4365675 +0.5245917 0.514124 0.4365675 +0.529462 0.514124 0.4365675 +0.5341183 0.514124 0.4365675 +0.5385787 0.514124 0.4365675 +0.5428591 0.514124 0.4365675 +0.5469733 0.514124 0.4365675 +0.5509339 0.514124 0.4365675 +0.5547519 0.514124 0.4365675 +0.5584371 0.514124 0.4365675 +0.5619986 0.514124 0.4365675 +0.5654443 0.514124 0.4365675 +0.5687816 0.514124 0.4365675 +0.092819 0.519487 0.4365675 +0.2262531 0.519487 0.4365675 +0.2875993 0.519487 0.4365675 +0.3262122 0.519487 0.4365675 +0.3544566 0.519487 0.4365675 +0.3767383 0.519487 0.4365675 +0.3951413 0.519487 0.4365675 +0.4108177 0.519487 0.4365675 +0.4244723 0.519487 0.4365675 +0.4365675 0.519487 0.4365675 +0.4474232 0.519487 0.4365675 +0.45727 0.519487 0.4365675 +0.4662797 0.519487 0.4365675 +0.4745834 0.519487 0.4365675 +0.4822838 0.519487 0.4365675 +0.4894626 0.519487 0.4365675 +0.4961862 0.519487 0.4365675 +0.5025087 0.519487 0.4365675 +0.5084753 0.519487 0.4365675 +0.514124 0.519487 0.4365675 +0.519487 0.519487 0.4365675 +0.5245917 0.519487 0.4365675 +0.529462 0.519487 0.4365675 +0.5341183 0.519487 0.4365675 +0.5385787 0.519487 0.4365675 +0.5428591 0.519487 0.4365675 +0.5469733 0.519487 0.4365675 +0.5509339 0.519487 0.4365675 +0.5547519 0.519487 0.4365675 +0.5584371 0.519487 0.4365675 +0.5619986 0.519487 0.4365675 +0.5654443 0.519487 0.4365675 +0.5687816 0.519487 0.4365675 +0.092819 0.5245917 0.4365675 +0.2262531 0.5245917 0.4365675 +0.2875993 0.5245917 0.4365675 +0.3262122 0.5245917 0.4365675 +0.3544566 0.5245917 0.4365675 +0.3767383 0.5245917 0.4365675 +0.3951413 0.5245917 0.4365675 +0.4108177 0.5245917 0.4365675 +0.4244723 0.5245917 0.4365675 +0.4365675 0.5245917 0.4365675 +0.4474232 0.5245917 0.4365675 +0.45727 0.5245917 0.4365675 +0.4662797 0.5245917 0.4365675 +0.4745834 0.5245917 0.4365675 +0.4822838 0.5245917 0.4365675 +0.4894626 0.5245917 0.4365675 +0.4961862 0.5245917 0.4365675 +0.5025087 0.5245917 0.4365675 +0.5084753 0.5245917 0.4365675 +0.514124 0.5245917 0.4365675 +0.519487 0.5245917 0.4365675 +0.5245917 0.5245917 0.4365675 +0.529462 0.5245917 0.4365675 +0.5341183 0.5245917 0.4365675 +0.5385787 0.5245917 0.4365675 +0.5428591 0.5245917 0.4365675 +0.5469733 0.5245917 0.4365675 +0.5509339 0.5245917 0.4365675 +0.5547519 0.5245917 0.4365675 +0.5584371 0.5245917 0.4365675 +0.5619986 0.5245917 0.4365675 +0.5654443 0.5245917 0.4365675 +0.5687816 0.5245917 0.4365675 +0.092819 0.529462 0.4365675 +0.2262531 0.529462 0.4365675 +0.2875993 0.529462 0.4365675 +0.3262122 0.529462 0.4365675 +0.3544566 0.529462 0.4365675 +0.3767383 0.529462 0.4365675 +0.3951413 0.529462 0.4365675 +0.4108177 0.529462 0.4365675 +0.4244723 0.529462 0.4365675 +0.4365675 0.529462 0.4365675 +0.4474232 0.529462 0.4365675 +0.45727 0.529462 0.4365675 +0.4662797 0.529462 0.4365675 +0.4745834 0.529462 0.4365675 +0.4822838 0.529462 0.4365675 +0.4894626 0.529462 0.4365675 +0.4961862 0.529462 0.4365675 +0.5025087 0.529462 0.4365675 +0.5084753 0.529462 0.4365675 +0.514124 0.529462 0.4365675 +0.519487 0.529462 0.4365675 +0.5245917 0.529462 0.4365675 +0.529462 0.529462 0.4365675 +0.5341183 0.529462 0.4365675 +0.5385787 0.529462 0.4365675 +0.5428591 0.529462 0.4365675 +0.5469733 0.529462 0.4365675 +0.5509339 0.529462 0.4365675 +0.5547519 0.529462 0.4365675 +0.5584371 0.529462 0.4365675 +0.5619986 0.529462 0.4365675 +0.5654443 0.529462 0.4365675 +0.5687816 0.529462 0.4365675 +0.092819 0.5341183 0.4365675 +0.2262531 0.5341183 0.4365675 +0.2875993 0.5341183 0.4365675 +0.3262122 0.5341183 0.4365675 +0.3544566 0.5341183 0.4365675 +0.3767383 0.5341183 0.4365675 +0.3951413 0.5341183 0.4365675 +0.4108177 0.5341183 0.4365675 +0.4244723 0.5341183 0.4365675 +0.4365675 0.5341183 0.4365675 +0.4474232 0.5341183 0.4365675 +0.45727 0.5341183 0.4365675 +0.4662797 0.5341183 0.4365675 +0.4745834 0.5341183 0.4365675 +0.4822838 0.5341183 0.4365675 +0.4894626 0.5341183 0.4365675 +0.4961862 0.5341183 0.4365675 +0.5025087 0.5341183 0.4365675 +0.5084753 0.5341183 0.4365675 +0.514124 0.5341183 0.4365675 +0.519487 0.5341183 0.4365675 +0.5245917 0.5341183 0.4365675 +0.529462 0.5341183 0.4365675 +0.5341183 0.5341183 0.4365675 +0.5385787 0.5341183 0.4365675 +0.5428591 0.5341183 0.4365675 +0.5469733 0.5341183 0.4365675 +0.5509339 0.5341183 0.4365675 +0.5547519 0.5341183 0.4365675 +0.5584371 0.5341183 0.4365675 +0.5619986 0.5341183 0.4365675 +0.5654443 0.5341183 0.4365675 +0.5687816 0.5341183 0.4365675 +0.092819 0.5385787 0.4365675 +0.2262531 0.5385787 0.4365675 +0.2875993 0.5385787 0.4365675 +0.3262122 0.5385787 0.4365675 +0.3544566 0.5385787 0.4365675 +0.3767383 0.5385787 0.4365675 +0.3951413 0.5385787 0.4365675 +0.4108177 0.5385787 0.4365675 +0.4244723 0.5385787 0.4365675 +0.4365675 0.5385787 0.4365675 +0.4474232 0.5385787 0.4365675 +0.45727 0.5385787 0.4365675 +0.4662797 0.5385787 0.4365675 +0.4745834 0.5385787 0.4365675 +0.4822838 0.5385787 0.4365675 +0.4894626 0.5385787 0.4365675 +0.4961862 0.5385787 0.4365675 +0.5025087 0.5385787 0.4365675 +0.5084753 0.5385787 0.4365675 +0.514124 0.5385787 0.4365675 +0.519487 0.5385787 0.4365675 +0.5245917 0.5385787 0.4365675 +0.529462 0.5385787 0.4365675 +0.5341183 0.5385787 0.4365675 +0.5385787 0.5385787 0.4365675 +0.5428591 0.5385787 0.4365675 +0.5469733 0.5385787 0.4365675 +0.5509339 0.5385787 0.4365675 +0.5547519 0.5385787 0.4365675 +0.5584371 0.5385787 0.4365675 +0.5619986 0.5385787 0.4365675 +0.5654443 0.5385787 0.4365675 +0.5687816 0.5385787 0.4365675 +0.092819 0.5428591 0.4365675 +0.2262531 0.5428591 0.4365675 +0.2875993 0.5428591 0.4365675 +0.3262122 0.5428591 0.4365675 +0.3544566 0.5428591 0.4365675 +0.3767383 0.5428591 0.4365675 +0.3951413 0.5428591 0.4365675 +0.4108177 0.5428591 0.4365675 +0.4244723 0.5428591 0.4365675 +0.4365675 0.5428591 0.4365675 +0.4474232 0.5428591 0.4365675 +0.45727 0.5428591 0.4365675 +0.4662797 0.5428591 0.4365675 +0.4745834 0.5428591 0.4365675 +0.4822838 0.5428591 0.4365675 +0.4894626 0.5428591 0.4365675 +0.4961862 0.5428591 0.4365675 +0.5025087 0.5428591 0.4365675 +0.5084753 0.5428591 0.4365675 +0.514124 0.5428591 0.4365675 +0.519487 0.5428591 0.4365675 +0.5245917 0.5428591 0.4365675 +0.529462 0.5428591 0.4365675 +0.5341183 0.5428591 0.4365675 +0.5385787 0.5428591 0.4365675 +0.5428591 0.5428591 0.4365675 +0.5469733 0.5428591 0.4365675 +0.5509339 0.5428591 0.4365675 +0.5547519 0.5428591 0.4365675 +0.5584371 0.5428591 0.4365675 +0.5619986 0.5428591 0.4365675 +0.5654443 0.5428591 0.4365675 +0.5687816 0.5428591 0.4365675 +0.092819 0.5469733 0.4365675 +0.2262531 0.5469733 0.4365675 +0.2875993 0.5469733 0.4365675 +0.3262122 0.5469733 0.4365675 +0.3544566 0.5469733 0.4365675 +0.3767383 0.5469733 0.4365675 +0.3951413 0.5469733 0.4365675 +0.4108177 0.5469733 0.4365675 +0.4244723 0.5469733 0.4365675 +0.4365675 0.5469733 0.4365675 +0.4474232 0.5469733 0.4365675 +0.45727 0.5469733 0.4365675 +0.4662797 0.5469733 0.4365675 +0.4745834 0.5469733 0.4365675 +0.4822838 0.5469733 0.4365675 +0.4894626 0.5469733 0.4365675 +0.4961862 0.5469733 0.4365675 +0.5025087 0.5469733 0.4365675 +0.5084753 0.5469733 0.4365675 +0.514124 0.5469733 0.4365675 +0.519487 0.5469733 0.4365675 +0.5245917 0.5469733 0.4365675 +0.529462 0.5469733 0.4365675 +0.5341183 0.5469733 0.4365675 +0.5385787 0.5469733 0.4365675 +0.5428591 0.5469733 0.4365675 +0.5469733 0.5469733 0.4365675 +0.5509339 0.5469733 0.4365675 +0.5547519 0.5469733 0.4365675 +0.5584371 0.5469733 0.4365675 +0.5619986 0.5469733 0.4365675 +0.5654443 0.5469733 0.4365675 +0.5687816 0.5469733 0.4365675 +0.092819 0.5509339 0.4365675 +0.2262531 0.5509339 0.4365675 +0.2875993 0.5509339 0.4365675 +0.3262122 0.5509339 0.4365675 +0.3544566 0.5509339 0.4365675 +0.3767383 0.5509339 0.4365675 +0.3951413 0.5509339 0.4365675 +0.4108177 0.5509339 0.4365675 +0.4244723 0.5509339 0.4365675 +0.4365675 0.5509339 0.4365675 +0.4474232 0.5509339 0.4365675 +0.45727 0.5509339 0.4365675 +0.4662797 0.5509339 0.4365675 +0.4745834 0.5509339 0.4365675 +0.4822838 0.5509339 0.4365675 +0.4894626 0.5509339 0.4365675 +0.4961862 0.5509339 0.4365675 +0.5025087 0.5509339 0.4365675 +0.5084753 0.5509339 0.4365675 +0.514124 0.5509339 0.4365675 +0.519487 0.5509339 0.4365675 +0.5245917 0.5509339 0.4365675 +0.529462 0.5509339 0.4365675 +0.5341183 0.5509339 0.4365675 +0.5385787 0.5509339 0.4365675 +0.5428591 0.5509339 0.4365675 +0.5469733 0.5509339 0.4365675 +0.5509339 0.5509339 0.4365675 +0.5547519 0.5509339 0.4365675 +0.5584371 0.5509339 0.4365675 +0.5619986 0.5509339 0.4365675 +0.5654443 0.5509339 0.4365675 +0.5687816 0.5509339 0.4365675 +0.092819 0.5547519 0.4365675 +0.2262531 0.5547519 0.4365675 +0.2875993 0.5547519 0.4365675 +0.3262122 0.5547519 0.4365675 +0.3544566 0.5547519 0.4365675 +0.3767383 0.5547519 0.4365675 +0.3951413 0.5547519 0.4365675 +0.4108177 0.5547519 0.4365675 +0.4244723 0.5547519 0.4365675 +0.4365675 0.5547519 0.4365675 +0.4474232 0.5547519 0.4365675 +0.45727 0.5547519 0.4365675 +0.4662797 0.5547519 0.4365675 +0.4745834 0.5547519 0.4365675 +0.4822838 0.5547519 0.4365675 +0.4894626 0.5547519 0.4365675 +0.4961862 0.5547519 0.4365675 +0.5025087 0.5547519 0.4365675 +0.5084753 0.5547519 0.4365675 +0.514124 0.5547519 0.4365675 +0.519487 0.5547519 0.4365675 +0.5245917 0.5547519 0.4365675 +0.529462 0.5547519 0.4365675 +0.5341183 0.5547519 0.4365675 +0.5385787 0.5547519 0.4365675 +0.5428591 0.5547519 0.4365675 +0.5469733 0.5547519 0.4365675 +0.5509339 0.5547519 0.4365675 +0.5547519 0.5547519 0.4365675 +0.5584371 0.5547519 0.4365675 +0.5619986 0.5547519 0.4365675 +0.5654443 0.5547519 0.4365675 +0.5687816 0.5547519 0.4365675 +0.092819 0.5584371 0.4365675 +0.2262531 0.5584371 0.4365675 +0.2875993 0.5584371 0.4365675 +0.3262122 0.5584371 0.4365675 +0.3544566 0.5584371 0.4365675 +0.3767383 0.5584371 0.4365675 +0.3951413 0.5584371 0.4365675 +0.4108177 0.5584371 0.4365675 +0.4244723 0.5584371 0.4365675 +0.4365675 0.5584371 0.4365675 +0.4474232 0.5584371 0.4365675 +0.45727 0.5584371 0.4365675 +0.4662797 0.5584371 0.4365675 +0.4745834 0.5584371 0.4365675 +0.4822838 0.5584371 0.4365675 +0.4894626 0.5584371 0.4365675 +0.4961862 0.5584371 0.4365675 +0.5025087 0.5584371 0.4365675 +0.5084753 0.5584371 0.4365675 +0.514124 0.5584371 0.4365675 +0.519487 0.5584371 0.4365675 +0.5245917 0.5584371 0.4365675 +0.529462 0.5584371 0.4365675 +0.5341183 0.5584371 0.4365675 +0.5385787 0.5584371 0.4365675 +0.5428591 0.5584371 0.4365675 +0.5469733 0.5584371 0.4365675 +0.5509339 0.5584371 0.4365675 +0.5547519 0.5584371 0.4365675 +0.5584371 0.5584371 0.4365675 +0.5619986 0.5584371 0.4365675 +0.5654443 0.5584371 0.4365675 +0.5687816 0.5584371 0.4365675 +0.092819 0.5619986 0.4365675 +0.2262531 0.5619986 0.4365675 +0.2875993 0.5619986 0.4365675 +0.3262122 0.5619986 0.4365675 +0.3544566 0.5619986 0.4365675 +0.3767383 0.5619986 0.4365675 +0.3951413 0.5619986 0.4365675 +0.4108177 0.5619986 0.4365675 +0.4244723 0.5619986 0.4365675 +0.4365675 0.5619986 0.4365675 +0.4474232 0.5619986 0.4365675 +0.45727 0.5619986 0.4365675 +0.4662797 0.5619986 0.4365675 +0.4745834 0.5619986 0.4365675 +0.4822838 0.5619986 0.4365675 +0.4894626 0.5619986 0.4365675 +0.4961862 0.5619986 0.4365675 +0.5025087 0.5619986 0.4365675 +0.5084753 0.5619986 0.4365675 +0.514124 0.5619986 0.4365675 +0.519487 0.5619986 0.4365675 +0.5245917 0.5619986 0.4365675 +0.529462 0.5619986 0.4365675 +0.5341183 0.5619986 0.4365675 +0.5385787 0.5619986 0.4365675 +0.5428591 0.5619986 0.4365675 +0.5469733 0.5619986 0.4365675 +0.5509339 0.5619986 0.4365675 +0.5547519 0.5619986 0.4365675 +0.5584371 0.5619986 0.4365675 +0.5619986 0.5619986 0.4365675 +0.5654443 0.5619986 0.4365675 +0.5687816 0.5619986 0.4365675 +0.092819 0.5654443 0.4365675 +0.2262531 0.5654443 0.4365675 +0.2875993 0.5654443 0.4365675 +0.3262122 0.5654443 0.4365675 +0.3544566 0.5654443 0.4365675 +0.3767383 0.5654443 0.4365675 +0.3951413 0.5654443 0.4365675 +0.4108177 0.5654443 0.4365675 +0.4244723 0.5654443 0.4365675 +0.4365675 0.5654443 0.4365675 +0.4474232 0.5654443 0.4365675 +0.45727 0.5654443 0.4365675 +0.4662797 0.5654443 0.4365675 +0.4745834 0.5654443 0.4365675 +0.4822838 0.5654443 0.4365675 +0.4894626 0.5654443 0.4365675 +0.4961862 0.5654443 0.4365675 +0.5025087 0.5654443 0.4365675 +0.5084753 0.5654443 0.4365675 +0.514124 0.5654443 0.4365675 +0.519487 0.5654443 0.4365675 +0.5245917 0.5654443 0.4365675 +0.529462 0.5654443 0.4365675 +0.5341183 0.5654443 0.4365675 +0.5385787 0.5654443 0.4365675 +0.5428591 0.5654443 0.4365675 +0.5469733 0.5654443 0.4365675 +0.5509339 0.5654443 0.4365675 +0.5547519 0.5654443 0.4365675 +0.5584371 0.5654443 0.4365675 +0.5619986 0.5654443 0.4365675 +0.5654443 0.5654443 0.4365675 +0.5687816 0.5654443 0.4365675 +0.092819 0.5687816 0.4365675 +0.2262531 0.5687816 0.4365675 +0.2875993 0.5687816 0.4365675 +0.3262122 0.5687816 0.4365675 +0.3544566 0.5687816 0.4365675 +0.3767383 0.5687816 0.4365675 +0.3951413 0.5687816 0.4365675 +0.4108177 0.5687816 0.4365675 +0.4244723 0.5687816 0.4365675 +0.4365675 0.5687816 0.4365675 +0.4474232 0.5687816 0.4365675 +0.45727 0.5687816 0.4365675 +0.4662797 0.5687816 0.4365675 +0.4745834 0.5687816 0.4365675 +0.4822838 0.5687816 0.4365675 +0.4894626 0.5687816 0.4365675 +0.4961862 0.5687816 0.4365675 +0.5025087 0.5687816 0.4365675 +0.5084753 0.5687816 0.4365675 +0.514124 0.5687816 0.4365675 +0.519487 0.5687816 0.4365675 +0.5245917 0.5687816 0.4365675 +0.529462 0.5687816 0.4365675 +0.5341183 0.5687816 0.4365675 +0.5385787 0.5687816 0.4365675 +0.5428591 0.5687816 0.4365675 +0.5469733 0.5687816 0.4365675 +0.5509339 0.5687816 0.4365675 +0.5547519 0.5687816 0.4365675 +0.5584371 0.5687816 0.4365675 +0.5619986 0.5687816 0.4365675 +0.5654443 0.5687816 0.4365675 +0.5687816 0.5687816 0.4365675 +0.092819 0.092819 0.4474232 +0.2262531 0.092819 0.4474232 +0.2875993 0.092819 0.4474232 +0.3262122 0.092819 0.4474232 +0.3544566 0.092819 0.4474232 +0.3767383 0.092819 0.4474232 +0.3951413 0.092819 0.4474232 +0.4108177 0.092819 0.4474232 +0.4244723 0.092819 0.4474232 +0.4365675 0.092819 0.4474232 +0.4474232 0.092819 0.4474232 +0.45727 0.092819 0.4474232 +0.4662797 0.092819 0.4474232 +0.4745834 0.092819 0.4474232 +0.4822838 0.092819 0.4474232 +0.4894626 0.092819 0.4474232 +0.4961862 0.092819 0.4474232 +0.5025087 0.092819 0.4474232 +0.5084753 0.092819 0.4474232 +0.514124 0.092819 0.4474232 +0.519487 0.092819 0.4474232 +0.5245917 0.092819 0.4474232 +0.529462 0.092819 0.4474232 +0.5341183 0.092819 0.4474232 +0.5385787 0.092819 0.4474232 +0.5428591 0.092819 0.4474232 +0.5469733 0.092819 0.4474232 +0.5509339 0.092819 0.4474232 +0.5547519 0.092819 0.4474232 +0.5584371 0.092819 0.4474232 +0.5619986 0.092819 0.4474232 +0.5654443 0.092819 0.4474232 +0.5687816 0.092819 0.4474232 +0.092819 0.2262531 0.4474232 +0.2262531 0.2262531 0.4474232 +0.2875993 0.2262531 0.4474232 +0.3262122 0.2262531 0.4474232 +0.3544566 0.2262531 0.4474232 +0.3767383 0.2262531 0.4474232 +0.3951413 0.2262531 0.4474232 +0.4108177 0.2262531 0.4474232 +0.4244723 0.2262531 0.4474232 +0.4365675 0.2262531 0.4474232 +0.4474232 0.2262531 0.4474232 +0.45727 0.2262531 0.4474232 +0.4662797 0.2262531 0.4474232 +0.4745834 0.2262531 0.4474232 +0.4822838 0.2262531 0.4474232 +0.4894626 0.2262531 0.4474232 +0.4961862 0.2262531 0.4474232 +0.5025087 0.2262531 0.4474232 +0.5084753 0.2262531 0.4474232 +0.514124 0.2262531 0.4474232 +0.519487 0.2262531 0.4474232 +0.5245917 0.2262531 0.4474232 +0.529462 0.2262531 0.4474232 +0.5341183 0.2262531 0.4474232 +0.5385787 0.2262531 0.4474232 +0.5428591 0.2262531 0.4474232 +0.5469733 0.2262531 0.4474232 +0.5509339 0.2262531 0.4474232 +0.5547519 0.2262531 0.4474232 +0.5584371 0.2262531 0.4474232 +0.5619986 0.2262531 0.4474232 +0.5654443 0.2262531 0.4474232 +0.5687816 0.2262531 0.4474232 +0.092819 0.2875993 0.4474232 +0.2262531 0.2875993 0.4474232 +0.2875993 0.2875993 0.4474232 +0.3262122 0.2875993 0.4474232 +0.3544566 0.2875993 0.4474232 +0.3767383 0.2875993 0.4474232 +0.3951413 0.2875993 0.4474232 +0.4108177 0.2875993 0.4474232 +0.4244723 0.2875993 0.4474232 +0.4365675 0.2875993 0.4474232 +0.4474232 0.2875993 0.4474232 +0.45727 0.2875993 0.4474232 +0.4662797 0.2875993 0.4474232 +0.4745834 0.2875993 0.4474232 +0.4822838 0.2875993 0.4474232 +0.4894626 0.2875993 0.4474232 +0.4961862 0.2875993 0.4474232 +0.5025087 0.2875993 0.4474232 +0.5084753 0.2875993 0.4474232 +0.514124 0.2875993 0.4474232 +0.519487 0.2875993 0.4474232 +0.5245917 0.2875993 0.4474232 +0.529462 0.2875993 0.4474232 +0.5341183 0.2875993 0.4474232 +0.5385787 0.2875993 0.4474232 +0.5428591 0.2875993 0.4474232 +0.5469733 0.2875993 0.4474232 +0.5509339 0.2875993 0.4474232 +0.5547519 0.2875993 0.4474232 +0.5584371 0.2875993 0.4474232 +0.5619986 0.2875993 0.4474232 +0.5654443 0.2875993 0.4474232 +0.5687816 0.2875993 0.4474232 +0.092819 0.3262122 0.4474232 +0.2262531 0.3262122 0.4474232 +0.2875993 0.3262122 0.4474232 +0.3262122 0.3262122 0.4474232 +0.3544566 0.3262122 0.4474232 +0.3767383 0.3262122 0.4474232 +0.3951413 0.3262122 0.4474232 +0.4108177 0.3262122 0.4474232 +0.4244723 0.3262122 0.4474232 +0.4365675 0.3262122 0.4474232 +0.4474232 0.3262122 0.4474232 +0.45727 0.3262122 0.4474232 +0.4662797 0.3262122 0.4474232 +0.4745834 0.3262122 0.4474232 +0.4822838 0.3262122 0.4474232 +0.4894626 0.3262122 0.4474232 +0.4961862 0.3262122 0.4474232 +0.5025087 0.3262122 0.4474232 +0.5084753 0.3262122 0.4474232 +0.514124 0.3262122 0.4474232 +0.519487 0.3262122 0.4474232 +0.5245917 0.3262122 0.4474232 +0.529462 0.3262122 0.4474232 +0.5341183 0.3262122 0.4474232 +0.5385787 0.3262122 0.4474232 +0.5428591 0.3262122 0.4474232 +0.5469733 0.3262122 0.4474232 +0.5509339 0.3262122 0.4474232 +0.5547519 0.3262122 0.4474232 +0.5584371 0.3262122 0.4474232 +0.5619986 0.3262122 0.4474232 +0.5654443 0.3262122 0.4474232 +0.5687816 0.3262122 0.4474232 +0.092819 0.3544566 0.4474232 +0.2262531 0.3544566 0.4474232 +0.2875993 0.3544566 0.4474232 +0.3262122 0.3544566 0.4474232 +0.3544566 0.3544566 0.4474232 +0.3767383 0.3544566 0.4474232 +0.3951413 0.3544566 0.4474232 +0.4108177 0.3544566 0.4474232 +0.4244723 0.3544566 0.4474232 +0.4365675 0.3544566 0.4474232 +0.4474232 0.3544566 0.4474232 +0.45727 0.3544566 0.4474232 +0.4662797 0.3544566 0.4474232 +0.4745834 0.3544566 0.4474232 +0.4822838 0.3544566 0.4474232 +0.4894626 0.3544566 0.4474232 +0.4961862 0.3544566 0.4474232 +0.5025087 0.3544566 0.4474232 +0.5084753 0.3544566 0.4474232 +0.514124 0.3544566 0.4474232 +0.519487 0.3544566 0.4474232 +0.5245917 0.3544566 0.4474232 +0.529462 0.3544566 0.4474232 +0.5341183 0.3544566 0.4474232 +0.5385787 0.3544566 0.4474232 +0.5428591 0.3544566 0.4474232 +0.5469733 0.3544566 0.4474232 +0.5509339 0.3544566 0.4474232 +0.5547519 0.3544566 0.4474232 +0.5584371 0.3544566 0.4474232 +0.5619986 0.3544566 0.4474232 +0.5654443 0.3544566 0.4474232 +0.5687816 0.3544566 0.4474232 +0.092819 0.3767383 0.4474232 +0.2262531 0.3767383 0.4474232 +0.2875993 0.3767383 0.4474232 +0.3262122 0.3767383 0.4474232 +0.3544566 0.3767383 0.4474232 +0.3767383 0.3767383 0.4474232 +0.3951413 0.3767383 0.4474232 +0.4108177 0.3767383 0.4474232 +0.4244723 0.3767383 0.4474232 +0.4365675 0.3767383 0.4474232 +0.4474232 0.3767383 0.4474232 +0.45727 0.3767383 0.4474232 +0.4662797 0.3767383 0.4474232 +0.4745834 0.3767383 0.4474232 +0.4822838 0.3767383 0.4474232 +0.4894626 0.3767383 0.4474232 +0.4961862 0.3767383 0.4474232 +0.5025087 0.3767383 0.4474232 +0.5084753 0.3767383 0.4474232 +0.514124 0.3767383 0.4474232 +0.519487 0.3767383 0.4474232 +0.5245917 0.3767383 0.4474232 +0.529462 0.3767383 0.4474232 +0.5341183 0.3767383 0.4474232 +0.5385787 0.3767383 0.4474232 +0.5428591 0.3767383 0.4474232 +0.5469733 0.3767383 0.4474232 +0.5509339 0.3767383 0.4474232 +0.5547519 0.3767383 0.4474232 +0.5584371 0.3767383 0.4474232 +0.5619986 0.3767383 0.4474232 +0.5654443 0.3767383 0.4474232 +0.5687816 0.3767383 0.4474232 +0.092819 0.3951413 0.4474232 +0.2262531 0.3951413 0.4474232 +0.2875993 0.3951413 0.4474232 +0.3262122 0.3951413 0.4474232 +0.3544566 0.3951413 0.4474232 +0.3767383 0.3951413 0.4474232 +0.3951413 0.3951413 0.4474232 +0.4108177 0.3951413 0.4474232 +0.4244723 0.3951413 0.4474232 +0.4365675 0.3951413 0.4474232 +0.4474232 0.3951413 0.4474232 +0.45727 0.3951413 0.4474232 +0.4662797 0.3951413 0.4474232 +0.4745834 0.3951413 0.4474232 +0.4822838 0.3951413 0.4474232 +0.4894626 0.3951413 0.4474232 +0.4961862 0.3951413 0.4474232 +0.5025087 0.3951413 0.4474232 +0.5084753 0.3951413 0.4474232 +0.514124 0.3951413 0.4474232 +0.519487 0.3951413 0.4474232 +0.5245917 0.3951413 0.4474232 +0.529462 0.3951413 0.4474232 +0.5341183 0.3951413 0.4474232 +0.5385787 0.3951413 0.4474232 +0.5428591 0.3951413 0.4474232 +0.5469733 0.3951413 0.4474232 +0.5509339 0.3951413 0.4474232 +0.5547519 0.3951413 0.4474232 +0.5584371 0.3951413 0.4474232 +0.5619986 0.3951413 0.4474232 +0.5654443 0.3951413 0.4474232 +0.5687816 0.3951413 0.4474232 +0.092819 0.4108177 0.4474232 +0.2262531 0.4108177 0.4474232 +0.2875993 0.4108177 0.4474232 +0.3262122 0.4108177 0.4474232 +0.3544566 0.4108177 0.4474232 +0.3767383 0.4108177 0.4474232 +0.3951413 0.4108177 0.4474232 +0.4108177 0.4108177 0.4474232 +0.4244723 0.4108177 0.4474232 +0.4365675 0.4108177 0.4474232 +0.4474232 0.4108177 0.4474232 +0.45727 0.4108177 0.4474232 +0.4662797 0.4108177 0.4474232 +0.4745834 0.4108177 0.4474232 +0.4822838 0.4108177 0.4474232 +0.4894626 0.4108177 0.4474232 +0.4961862 0.4108177 0.4474232 +0.5025087 0.4108177 0.4474232 +0.5084753 0.4108177 0.4474232 +0.514124 0.4108177 0.4474232 +0.519487 0.4108177 0.4474232 +0.5245917 0.4108177 0.4474232 +0.529462 0.4108177 0.4474232 +0.5341183 0.4108177 0.4474232 +0.5385787 0.4108177 0.4474232 +0.5428591 0.4108177 0.4474232 +0.5469733 0.4108177 0.4474232 +0.5509339 0.4108177 0.4474232 +0.5547519 0.4108177 0.4474232 +0.5584371 0.4108177 0.4474232 +0.5619986 0.4108177 0.4474232 +0.5654443 0.4108177 0.4474232 +0.5687816 0.4108177 0.4474232 +0.092819 0.4244723 0.4474232 +0.2262531 0.4244723 0.4474232 +0.2875993 0.4244723 0.4474232 +0.3262122 0.4244723 0.4474232 +0.3544566 0.4244723 0.4474232 +0.3767383 0.4244723 0.4474232 +0.3951413 0.4244723 0.4474232 +0.4108177 0.4244723 0.4474232 +0.4244723 0.4244723 0.4474232 +0.4365675 0.4244723 0.4474232 +0.4474232 0.4244723 0.4474232 +0.45727 0.4244723 0.4474232 +0.4662797 0.4244723 0.4474232 +0.4745834 0.4244723 0.4474232 +0.4822838 0.4244723 0.4474232 +0.4894626 0.4244723 0.4474232 +0.4961862 0.4244723 0.4474232 +0.5025087 0.4244723 0.4474232 +0.5084753 0.4244723 0.4474232 +0.514124 0.4244723 0.4474232 +0.519487 0.4244723 0.4474232 +0.5245917 0.4244723 0.4474232 +0.529462 0.4244723 0.4474232 +0.5341183 0.4244723 0.4474232 +0.5385787 0.4244723 0.4474232 +0.5428591 0.4244723 0.4474232 +0.5469733 0.4244723 0.4474232 +0.5509339 0.4244723 0.4474232 +0.5547519 0.4244723 0.4474232 +0.5584371 0.4244723 0.4474232 +0.5619986 0.4244723 0.4474232 +0.5654443 0.4244723 0.4474232 +0.5687816 0.4244723 0.4474232 +0.092819 0.4365675 0.4474232 +0.2262531 0.4365675 0.4474232 +0.2875993 0.4365675 0.4474232 +0.3262122 0.4365675 0.4474232 +0.3544566 0.4365675 0.4474232 +0.3767383 0.4365675 0.4474232 +0.3951413 0.4365675 0.4474232 +0.4108177 0.4365675 0.4474232 +0.4244723 0.4365675 0.4474232 +0.4365675 0.4365675 0.4474232 +0.4474232 0.4365675 0.4474232 +0.45727 0.4365675 0.4474232 +0.4662797 0.4365675 0.4474232 +0.4745834 0.4365675 0.4474232 +0.4822838 0.4365675 0.4474232 +0.4894626 0.4365675 0.4474232 +0.4961862 0.4365675 0.4474232 +0.5025087 0.4365675 0.4474232 +0.5084753 0.4365675 0.4474232 +0.514124 0.4365675 0.4474232 +0.519487 0.4365675 0.4474232 +0.5245917 0.4365675 0.4474232 +0.529462 0.4365675 0.4474232 +0.5341183 0.4365675 0.4474232 +0.5385787 0.4365675 0.4474232 +0.5428591 0.4365675 0.4474232 +0.5469733 0.4365675 0.4474232 +0.5509339 0.4365675 0.4474232 +0.5547519 0.4365675 0.4474232 +0.5584371 0.4365675 0.4474232 +0.5619986 0.4365675 0.4474232 +0.5654443 0.4365675 0.4474232 +0.5687816 0.4365675 0.4474232 +0.092819 0.4474232 0.4474232 +0.2262531 0.4474232 0.4474232 +0.2875993 0.4474232 0.4474232 +0.3262122 0.4474232 0.4474232 +0.3544566 0.4474232 0.4474232 +0.3767383 0.4474232 0.4474232 +0.3951413 0.4474232 0.4474232 +0.4108177 0.4474232 0.4474232 +0.4244723 0.4474232 0.4474232 +0.4365675 0.4474232 0.4474232 +0.4474232 0.4474232 0.4474232 +0.45727 0.4474232 0.4474232 +0.4662797 0.4474232 0.4474232 +0.4745834 0.4474232 0.4474232 +0.4822838 0.4474232 0.4474232 +0.4894626 0.4474232 0.4474232 +0.4961862 0.4474232 0.4474232 +0.5025087 0.4474232 0.4474232 +0.5084753 0.4474232 0.4474232 +0.514124 0.4474232 0.4474232 +0.519487 0.4474232 0.4474232 +0.5245917 0.4474232 0.4474232 +0.529462 0.4474232 0.4474232 +0.5341183 0.4474232 0.4474232 +0.5385787 0.4474232 0.4474232 +0.5428591 0.4474232 0.4474232 +0.5469733 0.4474232 0.4474232 +0.5509339 0.4474232 0.4474232 +0.5547519 0.4474232 0.4474232 +0.5584371 0.4474232 0.4474232 +0.5619986 0.4474232 0.4474232 +0.5654443 0.4474232 0.4474232 +0.5687816 0.4474232 0.4474232 +0.092819 0.45727 0.4474232 +0.2262531 0.45727 0.4474232 +0.2875993 0.45727 0.4474232 +0.3262122 0.45727 0.4474232 +0.3544566 0.45727 0.4474232 +0.3767383 0.45727 0.4474232 +0.3951413 0.45727 0.4474232 +0.4108177 0.45727 0.4474232 +0.4244723 0.45727 0.4474232 +0.4365675 0.45727 0.4474232 +0.4474232 0.45727 0.4474232 +0.45727 0.45727 0.4474232 +0.4662797 0.45727 0.4474232 +0.4745834 0.45727 0.4474232 +0.4822838 0.45727 0.4474232 +0.4894626 0.45727 0.4474232 +0.4961862 0.45727 0.4474232 +0.5025087 0.45727 0.4474232 +0.5084753 0.45727 0.4474232 +0.514124 0.45727 0.4474232 +0.519487 0.45727 0.4474232 +0.5245917 0.45727 0.4474232 +0.529462 0.45727 0.4474232 +0.5341183 0.45727 0.4474232 +0.5385787 0.45727 0.4474232 +0.5428591 0.45727 0.4474232 +0.5469733 0.45727 0.4474232 +0.5509339 0.45727 0.4474232 +0.5547519 0.45727 0.4474232 +0.5584371 0.45727 0.4474232 +0.5619986 0.45727 0.4474232 +0.5654443 0.45727 0.4474232 +0.5687816 0.45727 0.4474232 +0.092819 0.4662797 0.4474232 +0.2262531 0.4662797 0.4474232 +0.2875993 0.4662797 0.4474232 +0.3262122 0.4662797 0.4474232 +0.3544566 0.4662797 0.4474232 +0.3767383 0.4662797 0.4474232 +0.3951413 0.4662797 0.4474232 +0.4108177 0.4662797 0.4474232 +0.4244723 0.4662797 0.4474232 +0.4365675 0.4662797 0.4474232 +0.4474232 0.4662797 0.4474232 +0.45727 0.4662797 0.4474232 +0.4662797 0.4662797 0.4474232 +0.4745834 0.4662797 0.4474232 +0.4822838 0.4662797 0.4474232 +0.4894626 0.4662797 0.4474232 +0.4961862 0.4662797 0.4474232 +0.5025087 0.4662797 0.4474232 +0.5084753 0.4662797 0.4474232 +0.514124 0.4662797 0.4474232 +0.519487 0.4662797 0.4474232 +0.5245917 0.4662797 0.4474232 +0.529462 0.4662797 0.4474232 +0.5341183 0.4662797 0.4474232 +0.5385787 0.4662797 0.4474232 +0.5428591 0.4662797 0.4474232 +0.5469733 0.4662797 0.4474232 +0.5509339 0.4662797 0.4474232 +0.5547519 0.4662797 0.4474232 +0.5584371 0.4662797 0.4474232 +0.5619986 0.4662797 0.4474232 +0.5654443 0.4662797 0.4474232 +0.5687816 0.4662797 0.4474232 +0.092819 0.4745834 0.4474232 +0.2262531 0.4745834 0.4474232 +0.2875993 0.4745834 0.4474232 +0.3262122 0.4745834 0.4474232 +0.3544566 0.4745834 0.4474232 +0.3767383 0.4745834 0.4474232 +0.3951413 0.4745834 0.4474232 +0.4108177 0.4745834 0.4474232 +0.4244723 0.4745834 0.4474232 +0.4365675 0.4745834 0.4474232 +0.4474232 0.4745834 0.4474232 +0.45727 0.4745834 0.4474232 +0.4662797 0.4745834 0.4474232 +0.4745834 0.4745834 0.4474232 +0.4822838 0.4745834 0.4474232 +0.4894626 0.4745834 0.4474232 +0.4961862 0.4745834 0.4474232 +0.5025087 0.4745834 0.4474232 +0.5084753 0.4745834 0.4474232 +0.514124 0.4745834 0.4474232 +0.519487 0.4745834 0.4474232 +0.5245917 0.4745834 0.4474232 +0.529462 0.4745834 0.4474232 +0.5341183 0.4745834 0.4474232 +0.5385787 0.4745834 0.4474232 +0.5428591 0.4745834 0.4474232 +0.5469733 0.4745834 0.4474232 +0.5509339 0.4745834 0.4474232 +0.5547519 0.4745834 0.4474232 +0.5584371 0.4745834 0.4474232 +0.5619986 0.4745834 0.4474232 +0.5654443 0.4745834 0.4474232 +0.5687816 0.4745834 0.4474232 +0.092819 0.4822838 0.4474232 +0.2262531 0.4822838 0.4474232 +0.2875993 0.4822838 0.4474232 +0.3262122 0.4822838 0.4474232 +0.3544566 0.4822838 0.4474232 +0.3767383 0.4822838 0.4474232 +0.3951413 0.4822838 0.4474232 +0.4108177 0.4822838 0.4474232 +0.4244723 0.4822838 0.4474232 +0.4365675 0.4822838 0.4474232 +0.4474232 0.4822838 0.4474232 +0.45727 0.4822838 0.4474232 +0.4662797 0.4822838 0.4474232 +0.4745834 0.4822838 0.4474232 +0.4822838 0.4822838 0.4474232 +0.4894626 0.4822838 0.4474232 +0.4961862 0.4822838 0.4474232 +0.5025087 0.4822838 0.4474232 +0.5084753 0.4822838 0.4474232 +0.514124 0.4822838 0.4474232 +0.519487 0.4822838 0.4474232 +0.5245917 0.4822838 0.4474232 +0.529462 0.4822838 0.4474232 +0.5341183 0.4822838 0.4474232 +0.5385787 0.4822838 0.4474232 +0.5428591 0.4822838 0.4474232 +0.5469733 0.4822838 0.4474232 +0.5509339 0.4822838 0.4474232 +0.5547519 0.4822838 0.4474232 +0.5584371 0.4822838 0.4474232 +0.5619986 0.4822838 0.4474232 +0.5654443 0.4822838 0.4474232 +0.5687816 0.4822838 0.4474232 +0.092819 0.4894626 0.4474232 +0.2262531 0.4894626 0.4474232 +0.2875993 0.4894626 0.4474232 +0.3262122 0.4894626 0.4474232 +0.3544566 0.4894626 0.4474232 +0.3767383 0.4894626 0.4474232 +0.3951413 0.4894626 0.4474232 +0.4108177 0.4894626 0.4474232 +0.4244723 0.4894626 0.4474232 +0.4365675 0.4894626 0.4474232 +0.4474232 0.4894626 0.4474232 +0.45727 0.4894626 0.4474232 +0.4662797 0.4894626 0.4474232 +0.4745834 0.4894626 0.4474232 +0.4822838 0.4894626 0.4474232 +0.4894626 0.4894626 0.4474232 +0.4961862 0.4894626 0.4474232 +0.5025087 0.4894626 0.4474232 +0.5084753 0.4894626 0.4474232 +0.514124 0.4894626 0.4474232 +0.519487 0.4894626 0.4474232 +0.5245917 0.4894626 0.4474232 +0.529462 0.4894626 0.4474232 +0.5341183 0.4894626 0.4474232 +0.5385787 0.4894626 0.4474232 +0.5428591 0.4894626 0.4474232 +0.5469733 0.4894626 0.4474232 +0.5509339 0.4894626 0.4474232 +0.5547519 0.4894626 0.4474232 +0.5584371 0.4894626 0.4474232 +0.5619986 0.4894626 0.4474232 +0.5654443 0.4894626 0.4474232 +0.5687816 0.4894626 0.4474232 +0.092819 0.4961862 0.4474232 +0.2262531 0.4961862 0.4474232 +0.2875993 0.4961862 0.4474232 +0.3262122 0.4961862 0.4474232 +0.3544566 0.4961862 0.4474232 +0.3767383 0.4961862 0.4474232 +0.3951413 0.4961862 0.4474232 +0.4108177 0.4961862 0.4474232 +0.4244723 0.4961862 0.4474232 +0.4365675 0.4961862 0.4474232 +0.4474232 0.4961862 0.4474232 +0.45727 0.4961862 0.4474232 +0.4662797 0.4961862 0.4474232 +0.4745834 0.4961862 0.4474232 +0.4822838 0.4961862 0.4474232 +0.4894626 0.4961862 0.4474232 +0.4961862 0.4961862 0.4474232 +0.5025087 0.4961862 0.4474232 +0.5084753 0.4961862 0.4474232 +0.514124 0.4961862 0.4474232 +0.519487 0.4961862 0.4474232 +0.5245917 0.4961862 0.4474232 +0.529462 0.4961862 0.4474232 +0.5341183 0.4961862 0.4474232 +0.5385787 0.4961862 0.4474232 +0.5428591 0.4961862 0.4474232 +0.5469733 0.4961862 0.4474232 +0.5509339 0.4961862 0.4474232 +0.5547519 0.4961862 0.4474232 +0.5584371 0.4961862 0.4474232 +0.5619986 0.4961862 0.4474232 +0.5654443 0.4961862 0.4474232 +0.5687816 0.4961862 0.4474232 +0.092819 0.5025087 0.4474232 +0.2262531 0.5025087 0.4474232 +0.2875993 0.5025087 0.4474232 +0.3262122 0.5025087 0.4474232 +0.3544566 0.5025087 0.4474232 +0.3767383 0.5025087 0.4474232 +0.3951413 0.5025087 0.4474232 +0.4108177 0.5025087 0.4474232 +0.4244723 0.5025087 0.4474232 +0.4365675 0.5025087 0.4474232 +0.4474232 0.5025087 0.4474232 +0.45727 0.5025087 0.4474232 +0.4662797 0.5025087 0.4474232 +0.4745834 0.5025087 0.4474232 +0.4822838 0.5025087 0.4474232 +0.4894626 0.5025087 0.4474232 +0.4961862 0.5025087 0.4474232 +0.5025087 0.5025087 0.4474232 +0.5084753 0.5025087 0.4474232 +0.514124 0.5025087 0.4474232 +0.519487 0.5025087 0.4474232 +0.5245917 0.5025087 0.4474232 +0.529462 0.5025087 0.4474232 +0.5341183 0.5025087 0.4474232 +0.5385787 0.5025087 0.4474232 +0.5428591 0.5025087 0.4474232 +0.5469733 0.5025087 0.4474232 +0.5509339 0.5025087 0.4474232 +0.5547519 0.5025087 0.4474232 +0.5584371 0.5025087 0.4474232 +0.5619986 0.5025087 0.4474232 +0.5654443 0.5025087 0.4474232 +0.5687816 0.5025087 0.4474232 +0.092819 0.5084753 0.4474232 +0.2262531 0.5084753 0.4474232 +0.2875993 0.5084753 0.4474232 +0.3262122 0.5084753 0.4474232 +0.3544566 0.5084753 0.4474232 +0.3767383 0.5084753 0.4474232 +0.3951413 0.5084753 0.4474232 +0.4108177 0.5084753 0.4474232 +0.4244723 0.5084753 0.4474232 +0.4365675 0.5084753 0.4474232 +0.4474232 0.5084753 0.4474232 +0.45727 0.5084753 0.4474232 +0.4662797 0.5084753 0.4474232 +0.4745834 0.5084753 0.4474232 +0.4822838 0.5084753 0.4474232 +0.4894626 0.5084753 0.4474232 +0.4961862 0.5084753 0.4474232 +0.5025087 0.5084753 0.4474232 +0.5084753 0.5084753 0.4474232 +0.514124 0.5084753 0.4474232 +0.519487 0.5084753 0.4474232 +0.5245917 0.5084753 0.4474232 +0.529462 0.5084753 0.4474232 +0.5341183 0.5084753 0.4474232 +0.5385787 0.5084753 0.4474232 +0.5428591 0.5084753 0.4474232 +0.5469733 0.5084753 0.4474232 +0.5509339 0.5084753 0.4474232 +0.5547519 0.5084753 0.4474232 +0.5584371 0.5084753 0.4474232 +0.5619986 0.5084753 0.4474232 +0.5654443 0.5084753 0.4474232 +0.5687816 0.5084753 0.4474232 +0.092819 0.514124 0.4474232 +0.2262531 0.514124 0.4474232 +0.2875993 0.514124 0.4474232 +0.3262122 0.514124 0.4474232 +0.3544566 0.514124 0.4474232 +0.3767383 0.514124 0.4474232 +0.3951413 0.514124 0.4474232 +0.4108177 0.514124 0.4474232 +0.4244723 0.514124 0.4474232 +0.4365675 0.514124 0.4474232 +0.4474232 0.514124 0.4474232 +0.45727 0.514124 0.4474232 +0.4662797 0.514124 0.4474232 +0.4745834 0.514124 0.4474232 +0.4822838 0.514124 0.4474232 +0.4894626 0.514124 0.4474232 +0.4961862 0.514124 0.4474232 +0.5025087 0.514124 0.4474232 +0.5084753 0.514124 0.4474232 +0.514124 0.514124 0.4474232 +0.519487 0.514124 0.4474232 +0.5245917 0.514124 0.4474232 +0.529462 0.514124 0.4474232 +0.5341183 0.514124 0.4474232 +0.5385787 0.514124 0.4474232 +0.5428591 0.514124 0.4474232 +0.5469733 0.514124 0.4474232 +0.5509339 0.514124 0.4474232 +0.5547519 0.514124 0.4474232 +0.5584371 0.514124 0.4474232 +0.5619986 0.514124 0.4474232 +0.5654443 0.514124 0.4474232 +0.5687816 0.514124 0.4474232 +0.092819 0.519487 0.4474232 +0.2262531 0.519487 0.4474232 +0.2875993 0.519487 0.4474232 +0.3262122 0.519487 0.4474232 +0.3544566 0.519487 0.4474232 +0.3767383 0.519487 0.4474232 +0.3951413 0.519487 0.4474232 +0.4108177 0.519487 0.4474232 +0.4244723 0.519487 0.4474232 +0.4365675 0.519487 0.4474232 +0.4474232 0.519487 0.4474232 +0.45727 0.519487 0.4474232 +0.4662797 0.519487 0.4474232 +0.4745834 0.519487 0.4474232 +0.4822838 0.519487 0.4474232 +0.4894626 0.519487 0.4474232 +0.4961862 0.519487 0.4474232 +0.5025087 0.519487 0.4474232 +0.5084753 0.519487 0.4474232 +0.514124 0.519487 0.4474232 +0.519487 0.519487 0.4474232 +0.5245917 0.519487 0.4474232 +0.529462 0.519487 0.4474232 +0.5341183 0.519487 0.4474232 +0.5385787 0.519487 0.4474232 +0.5428591 0.519487 0.4474232 +0.5469733 0.519487 0.4474232 +0.5509339 0.519487 0.4474232 +0.5547519 0.519487 0.4474232 +0.5584371 0.519487 0.4474232 +0.5619986 0.519487 0.4474232 +0.5654443 0.519487 0.4474232 +0.5687816 0.519487 0.4474232 +0.092819 0.5245917 0.4474232 +0.2262531 0.5245917 0.4474232 +0.2875993 0.5245917 0.4474232 +0.3262122 0.5245917 0.4474232 +0.3544566 0.5245917 0.4474232 +0.3767383 0.5245917 0.4474232 +0.3951413 0.5245917 0.4474232 +0.4108177 0.5245917 0.4474232 +0.4244723 0.5245917 0.4474232 +0.4365675 0.5245917 0.4474232 +0.4474232 0.5245917 0.4474232 +0.45727 0.5245917 0.4474232 +0.4662797 0.5245917 0.4474232 +0.4745834 0.5245917 0.4474232 +0.4822838 0.5245917 0.4474232 +0.4894626 0.5245917 0.4474232 +0.4961862 0.5245917 0.4474232 +0.5025087 0.5245917 0.4474232 +0.5084753 0.5245917 0.4474232 +0.514124 0.5245917 0.4474232 +0.519487 0.5245917 0.4474232 +0.5245917 0.5245917 0.4474232 +0.529462 0.5245917 0.4474232 +0.5341183 0.5245917 0.4474232 +0.5385787 0.5245917 0.4474232 +0.5428591 0.5245917 0.4474232 +0.5469733 0.5245917 0.4474232 +0.5509339 0.5245917 0.4474232 +0.5547519 0.5245917 0.4474232 +0.5584371 0.5245917 0.4474232 +0.5619986 0.5245917 0.4474232 +0.5654443 0.5245917 0.4474232 +0.5687816 0.5245917 0.4474232 +0.092819 0.529462 0.4474232 +0.2262531 0.529462 0.4474232 +0.2875993 0.529462 0.4474232 +0.3262122 0.529462 0.4474232 +0.3544566 0.529462 0.4474232 +0.3767383 0.529462 0.4474232 +0.3951413 0.529462 0.4474232 +0.4108177 0.529462 0.4474232 +0.4244723 0.529462 0.4474232 +0.4365675 0.529462 0.4474232 +0.4474232 0.529462 0.4474232 +0.45727 0.529462 0.4474232 +0.4662797 0.529462 0.4474232 +0.4745834 0.529462 0.4474232 +0.4822838 0.529462 0.4474232 +0.4894626 0.529462 0.4474232 +0.4961862 0.529462 0.4474232 +0.5025087 0.529462 0.4474232 +0.5084753 0.529462 0.4474232 +0.514124 0.529462 0.4474232 +0.519487 0.529462 0.4474232 +0.5245917 0.529462 0.4474232 +0.529462 0.529462 0.4474232 +0.5341183 0.529462 0.4474232 +0.5385787 0.529462 0.4474232 +0.5428591 0.529462 0.4474232 +0.5469733 0.529462 0.4474232 +0.5509339 0.529462 0.4474232 +0.5547519 0.529462 0.4474232 +0.5584371 0.529462 0.4474232 +0.5619986 0.529462 0.4474232 +0.5654443 0.529462 0.4474232 +0.5687816 0.529462 0.4474232 +0.092819 0.5341183 0.4474232 +0.2262531 0.5341183 0.4474232 +0.2875993 0.5341183 0.4474232 +0.3262122 0.5341183 0.4474232 +0.3544566 0.5341183 0.4474232 +0.3767383 0.5341183 0.4474232 +0.3951413 0.5341183 0.4474232 +0.4108177 0.5341183 0.4474232 +0.4244723 0.5341183 0.4474232 +0.4365675 0.5341183 0.4474232 +0.4474232 0.5341183 0.4474232 +0.45727 0.5341183 0.4474232 +0.4662797 0.5341183 0.4474232 +0.4745834 0.5341183 0.4474232 +0.4822838 0.5341183 0.4474232 +0.4894626 0.5341183 0.4474232 +0.4961862 0.5341183 0.4474232 +0.5025087 0.5341183 0.4474232 +0.5084753 0.5341183 0.4474232 +0.514124 0.5341183 0.4474232 +0.519487 0.5341183 0.4474232 +0.5245917 0.5341183 0.4474232 +0.529462 0.5341183 0.4474232 +0.5341183 0.5341183 0.4474232 +0.5385787 0.5341183 0.4474232 +0.5428591 0.5341183 0.4474232 +0.5469733 0.5341183 0.4474232 +0.5509339 0.5341183 0.4474232 +0.5547519 0.5341183 0.4474232 +0.5584371 0.5341183 0.4474232 +0.5619986 0.5341183 0.4474232 +0.5654443 0.5341183 0.4474232 +0.5687816 0.5341183 0.4474232 +0.092819 0.5385787 0.4474232 +0.2262531 0.5385787 0.4474232 +0.2875993 0.5385787 0.4474232 +0.3262122 0.5385787 0.4474232 +0.3544566 0.5385787 0.4474232 +0.3767383 0.5385787 0.4474232 +0.3951413 0.5385787 0.4474232 +0.4108177 0.5385787 0.4474232 +0.4244723 0.5385787 0.4474232 +0.4365675 0.5385787 0.4474232 +0.4474232 0.5385787 0.4474232 +0.45727 0.5385787 0.4474232 +0.4662797 0.5385787 0.4474232 +0.4745834 0.5385787 0.4474232 +0.4822838 0.5385787 0.4474232 +0.4894626 0.5385787 0.4474232 +0.4961862 0.5385787 0.4474232 +0.5025087 0.5385787 0.4474232 +0.5084753 0.5385787 0.4474232 +0.514124 0.5385787 0.4474232 +0.519487 0.5385787 0.4474232 +0.5245917 0.5385787 0.4474232 +0.529462 0.5385787 0.4474232 +0.5341183 0.5385787 0.4474232 +0.5385787 0.5385787 0.4474232 +0.5428591 0.5385787 0.4474232 +0.5469733 0.5385787 0.4474232 +0.5509339 0.5385787 0.4474232 +0.5547519 0.5385787 0.4474232 +0.5584371 0.5385787 0.4474232 +0.5619986 0.5385787 0.4474232 +0.5654443 0.5385787 0.4474232 +0.5687816 0.5385787 0.4474232 +0.092819 0.5428591 0.4474232 +0.2262531 0.5428591 0.4474232 +0.2875993 0.5428591 0.4474232 +0.3262122 0.5428591 0.4474232 +0.3544566 0.5428591 0.4474232 +0.3767383 0.5428591 0.4474232 +0.3951413 0.5428591 0.4474232 +0.4108177 0.5428591 0.4474232 +0.4244723 0.5428591 0.4474232 +0.4365675 0.5428591 0.4474232 +0.4474232 0.5428591 0.4474232 +0.45727 0.5428591 0.4474232 +0.4662797 0.5428591 0.4474232 +0.4745834 0.5428591 0.4474232 +0.4822838 0.5428591 0.4474232 +0.4894626 0.5428591 0.4474232 +0.4961862 0.5428591 0.4474232 +0.5025087 0.5428591 0.4474232 +0.5084753 0.5428591 0.4474232 +0.514124 0.5428591 0.4474232 +0.519487 0.5428591 0.4474232 +0.5245917 0.5428591 0.4474232 +0.529462 0.5428591 0.4474232 +0.5341183 0.5428591 0.4474232 +0.5385787 0.5428591 0.4474232 +0.5428591 0.5428591 0.4474232 +0.5469733 0.5428591 0.4474232 +0.5509339 0.5428591 0.4474232 +0.5547519 0.5428591 0.4474232 +0.5584371 0.5428591 0.4474232 +0.5619986 0.5428591 0.4474232 +0.5654443 0.5428591 0.4474232 +0.5687816 0.5428591 0.4474232 +0.092819 0.5469733 0.4474232 +0.2262531 0.5469733 0.4474232 +0.2875993 0.5469733 0.4474232 +0.3262122 0.5469733 0.4474232 +0.3544566 0.5469733 0.4474232 +0.3767383 0.5469733 0.4474232 +0.3951413 0.5469733 0.4474232 +0.4108177 0.5469733 0.4474232 +0.4244723 0.5469733 0.4474232 +0.4365675 0.5469733 0.4474232 +0.4474232 0.5469733 0.4474232 +0.45727 0.5469733 0.4474232 +0.4662797 0.5469733 0.4474232 +0.4745834 0.5469733 0.4474232 +0.4822838 0.5469733 0.4474232 +0.4894626 0.5469733 0.4474232 +0.4961862 0.5469733 0.4474232 +0.5025087 0.5469733 0.4474232 +0.5084753 0.5469733 0.4474232 +0.514124 0.5469733 0.4474232 +0.519487 0.5469733 0.4474232 +0.5245917 0.5469733 0.4474232 +0.529462 0.5469733 0.4474232 +0.5341183 0.5469733 0.4474232 +0.5385787 0.5469733 0.4474232 +0.5428591 0.5469733 0.4474232 +0.5469733 0.5469733 0.4474232 +0.5509339 0.5469733 0.4474232 +0.5547519 0.5469733 0.4474232 +0.5584371 0.5469733 0.4474232 +0.5619986 0.5469733 0.4474232 +0.5654443 0.5469733 0.4474232 +0.5687816 0.5469733 0.4474232 +0.092819 0.5509339 0.4474232 +0.2262531 0.5509339 0.4474232 +0.2875993 0.5509339 0.4474232 +0.3262122 0.5509339 0.4474232 +0.3544566 0.5509339 0.4474232 +0.3767383 0.5509339 0.4474232 +0.3951413 0.5509339 0.4474232 +0.4108177 0.5509339 0.4474232 +0.4244723 0.5509339 0.4474232 +0.4365675 0.5509339 0.4474232 +0.4474232 0.5509339 0.4474232 +0.45727 0.5509339 0.4474232 +0.4662797 0.5509339 0.4474232 +0.4745834 0.5509339 0.4474232 +0.4822838 0.5509339 0.4474232 +0.4894626 0.5509339 0.4474232 +0.4961862 0.5509339 0.4474232 +0.5025087 0.5509339 0.4474232 +0.5084753 0.5509339 0.4474232 +0.514124 0.5509339 0.4474232 +0.519487 0.5509339 0.4474232 +0.5245917 0.5509339 0.4474232 +0.529462 0.5509339 0.4474232 +0.5341183 0.5509339 0.4474232 +0.5385787 0.5509339 0.4474232 +0.5428591 0.5509339 0.4474232 +0.5469733 0.5509339 0.4474232 +0.5509339 0.5509339 0.4474232 +0.5547519 0.5509339 0.4474232 +0.5584371 0.5509339 0.4474232 +0.5619986 0.5509339 0.4474232 +0.5654443 0.5509339 0.4474232 +0.5687816 0.5509339 0.4474232 +0.092819 0.5547519 0.4474232 +0.2262531 0.5547519 0.4474232 +0.2875993 0.5547519 0.4474232 +0.3262122 0.5547519 0.4474232 +0.3544566 0.5547519 0.4474232 +0.3767383 0.5547519 0.4474232 +0.3951413 0.5547519 0.4474232 +0.4108177 0.5547519 0.4474232 +0.4244723 0.5547519 0.4474232 +0.4365675 0.5547519 0.4474232 +0.4474232 0.5547519 0.4474232 +0.45727 0.5547519 0.4474232 +0.4662797 0.5547519 0.4474232 +0.4745834 0.5547519 0.4474232 +0.4822838 0.5547519 0.4474232 +0.4894626 0.5547519 0.4474232 +0.4961862 0.5547519 0.4474232 +0.5025087 0.5547519 0.4474232 +0.5084753 0.5547519 0.4474232 +0.514124 0.5547519 0.4474232 +0.519487 0.5547519 0.4474232 +0.5245917 0.5547519 0.4474232 +0.529462 0.5547519 0.4474232 +0.5341183 0.5547519 0.4474232 +0.5385787 0.5547519 0.4474232 +0.5428591 0.5547519 0.4474232 +0.5469733 0.5547519 0.4474232 +0.5509339 0.5547519 0.4474232 +0.5547519 0.5547519 0.4474232 +0.5584371 0.5547519 0.4474232 +0.5619986 0.5547519 0.4474232 +0.5654443 0.5547519 0.4474232 +0.5687816 0.5547519 0.4474232 +0.092819 0.5584371 0.4474232 +0.2262531 0.5584371 0.4474232 +0.2875993 0.5584371 0.4474232 +0.3262122 0.5584371 0.4474232 +0.3544566 0.5584371 0.4474232 +0.3767383 0.5584371 0.4474232 +0.3951413 0.5584371 0.4474232 +0.4108177 0.5584371 0.4474232 +0.4244723 0.5584371 0.4474232 +0.4365675 0.5584371 0.4474232 +0.4474232 0.5584371 0.4474232 +0.45727 0.5584371 0.4474232 +0.4662797 0.5584371 0.4474232 +0.4745834 0.5584371 0.4474232 +0.4822838 0.5584371 0.4474232 +0.4894626 0.5584371 0.4474232 +0.4961862 0.5584371 0.4474232 +0.5025087 0.5584371 0.4474232 +0.5084753 0.5584371 0.4474232 +0.514124 0.5584371 0.4474232 +0.519487 0.5584371 0.4474232 +0.5245917 0.5584371 0.4474232 +0.529462 0.5584371 0.4474232 +0.5341183 0.5584371 0.4474232 +0.5385787 0.5584371 0.4474232 +0.5428591 0.5584371 0.4474232 +0.5469733 0.5584371 0.4474232 +0.5509339 0.5584371 0.4474232 +0.5547519 0.5584371 0.4474232 +0.5584371 0.5584371 0.4474232 +0.5619986 0.5584371 0.4474232 +0.5654443 0.5584371 0.4474232 +0.5687816 0.5584371 0.4474232 +0.092819 0.5619986 0.4474232 +0.2262531 0.5619986 0.4474232 +0.2875993 0.5619986 0.4474232 +0.3262122 0.5619986 0.4474232 +0.3544566 0.5619986 0.4474232 +0.3767383 0.5619986 0.4474232 +0.3951413 0.5619986 0.4474232 +0.4108177 0.5619986 0.4474232 +0.4244723 0.5619986 0.4474232 +0.4365675 0.5619986 0.4474232 +0.4474232 0.5619986 0.4474232 +0.45727 0.5619986 0.4474232 +0.4662797 0.5619986 0.4474232 +0.4745834 0.5619986 0.4474232 +0.4822838 0.5619986 0.4474232 +0.4894626 0.5619986 0.4474232 +0.4961862 0.5619986 0.4474232 +0.5025087 0.5619986 0.4474232 +0.5084753 0.5619986 0.4474232 +0.514124 0.5619986 0.4474232 +0.519487 0.5619986 0.4474232 +0.5245917 0.5619986 0.4474232 +0.529462 0.5619986 0.4474232 +0.5341183 0.5619986 0.4474232 +0.5385787 0.5619986 0.4474232 +0.5428591 0.5619986 0.4474232 +0.5469733 0.5619986 0.4474232 +0.5509339 0.5619986 0.4474232 +0.5547519 0.5619986 0.4474232 +0.5584371 0.5619986 0.4474232 +0.5619986 0.5619986 0.4474232 +0.5654443 0.5619986 0.4474232 +0.5687816 0.5619986 0.4474232 +0.092819 0.5654443 0.4474232 +0.2262531 0.5654443 0.4474232 +0.2875993 0.5654443 0.4474232 +0.3262122 0.5654443 0.4474232 +0.3544566 0.5654443 0.4474232 +0.3767383 0.5654443 0.4474232 +0.3951413 0.5654443 0.4474232 +0.4108177 0.5654443 0.4474232 +0.4244723 0.5654443 0.4474232 +0.4365675 0.5654443 0.4474232 +0.4474232 0.5654443 0.4474232 +0.45727 0.5654443 0.4474232 +0.4662797 0.5654443 0.4474232 +0.4745834 0.5654443 0.4474232 +0.4822838 0.5654443 0.4474232 +0.4894626 0.5654443 0.4474232 +0.4961862 0.5654443 0.4474232 +0.5025087 0.5654443 0.4474232 +0.5084753 0.5654443 0.4474232 +0.514124 0.5654443 0.4474232 +0.519487 0.5654443 0.4474232 +0.5245917 0.5654443 0.4474232 +0.529462 0.5654443 0.4474232 +0.5341183 0.5654443 0.4474232 +0.5385787 0.5654443 0.4474232 +0.5428591 0.5654443 0.4474232 +0.5469733 0.5654443 0.4474232 +0.5509339 0.5654443 0.4474232 +0.5547519 0.5654443 0.4474232 +0.5584371 0.5654443 0.4474232 +0.5619986 0.5654443 0.4474232 +0.5654443 0.5654443 0.4474232 +0.5687816 0.5654443 0.4474232 +0.092819 0.5687816 0.4474232 +0.2262531 0.5687816 0.4474232 +0.2875993 0.5687816 0.4474232 +0.3262122 0.5687816 0.4474232 +0.3544566 0.5687816 0.4474232 +0.3767383 0.5687816 0.4474232 +0.3951413 0.5687816 0.4474232 +0.4108177 0.5687816 0.4474232 +0.4244723 0.5687816 0.4474232 +0.4365675 0.5687816 0.4474232 +0.4474232 0.5687816 0.4474232 +0.45727 0.5687816 0.4474232 +0.4662797 0.5687816 0.4474232 +0.4745834 0.5687816 0.4474232 +0.4822838 0.5687816 0.4474232 +0.4894626 0.5687816 0.4474232 +0.4961862 0.5687816 0.4474232 +0.5025087 0.5687816 0.4474232 +0.5084753 0.5687816 0.4474232 +0.514124 0.5687816 0.4474232 +0.519487 0.5687816 0.4474232 +0.5245917 0.5687816 0.4474232 +0.529462 0.5687816 0.4474232 +0.5341183 0.5687816 0.4474232 +0.5385787 0.5687816 0.4474232 +0.5428591 0.5687816 0.4474232 +0.5469733 0.5687816 0.4474232 +0.5509339 0.5687816 0.4474232 +0.5547519 0.5687816 0.4474232 +0.5584371 0.5687816 0.4474232 +0.5619986 0.5687816 0.4474232 +0.5654443 0.5687816 0.4474232 +0.5687816 0.5687816 0.4474232 +0.092819 0.092819 0.45727 +0.2262531 0.092819 0.45727 +0.2875993 0.092819 0.45727 +0.3262122 0.092819 0.45727 +0.3544566 0.092819 0.45727 +0.3767383 0.092819 0.45727 +0.3951413 0.092819 0.45727 +0.4108177 0.092819 0.45727 +0.4244723 0.092819 0.45727 +0.4365675 0.092819 0.45727 +0.4474232 0.092819 0.45727 +0.45727 0.092819 0.45727 +0.4662797 0.092819 0.45727 +0.4745834 0.092819 0.45727 +0.4822838 0.092819 0.45727 +0.4894626 0.092819 0.45727 +0.4961862 0.092819 0.45727 +0.5025087 0.092819 0.45727 +0.5084753 0.092819 0.45727 +0.514124 0.092819 0.45727 +0.519487 0.092819 0.45727 +0.5245917 0.092819 0.45727 +0.529462 0.092819 0.45727 +0.5341183 0.092819 0.45727 +0.5385787 0.092819 0.45727 +0.5428591 0.092819 0.45727 +0.5469733 0.092819 0.45727 +0.5509339 0.092819 0.45727 +0.5547519 0.092819 0.45727 +0.5584371 0.092819 0.45727 +0.5619986 0.092819 0.45727 +0.5654443 0.092819 0.45727 +0.5687816 0.092819 0.45727 +0.092819 0.2262531 0.45727 +0.2262531 0.2262531 0.45727 +0.2875993 0.2262531 0.45727 +0.3262122 0.2262531 0.45727 +0.3544566 0.2262531 0.45727 +0.3767383 0.2262531 0.45727 +0.3951413 0.2262531 0.45727 +0.4108177 0.2262531 0.45727 +0.4244723 0.2262531 0.45727 +0.4365675 0.2262531 0.45727 +0.4474232 0.2262531 0.45727 +0.45727 0.2262531 0.45727 +0.4662797 0.2262531 0.45727 +0.4745834 0.2262531 0.45727 +0.4822838 0.2262531 0.45727 +0.4894626 0.2262531 0.45727 +0.4961862 0.2262531 0.45727 +0.5025087 0.2262531 0.45727 +0.5084753 0.2262531 0.45727 +0.514124 0.2262531 0.45727 +0.519487 0.2262531 0.45727 +0.5245917 0.2262531 0.45727 +0.529462 0.2262531 0.45727 +0.5341183 0.2262531 0.45727 +0.5385787 0.2262531 0.45727 +0.5428591 0.2262531 0.45727 +0.5469733 0.2262531 0.45727 +0.5509339 0.2262531 0.45727 +0.5547519 0.2262531 0.45727 +0.5584371 0.2262531 0.45727 +0.5619986 0.2262531 0.45727 +0.5654443 0.2262531 0.45727 +0.5687816 0.2262531 0.45727 +0.092819 0.2875993 0.45727 +0.2262531 0.2875993 0.45727 +0.2875993 0.2875993 0.45727 +0.3262122 0.2875993 0.45727 +0.3544566 0.2875993 0.45727 +0.3767383 0.2875993 0.45727 +0.3951413 0.2875993 0.45727 +0.4108177 0.2875993 0.45727 +0.4244723 0.2875993 0.45727 +0.4365675 0.2875993 0.45727 +0.4474232 0.2875993 0.45727 +0.45727 0.2875993 0.45727 +0.4662797 0.2875993 0.45727 +0.4745834 0.2875993 0.45727 +0.4822838 0.2875993 0.45727 +0.4894626 0.2875993 0.45727 +0.4961862 0.2875993 0.45727 +0.5025087 0.2875993 0.45727 +0.5084753 0.2875993 0.45727 +0.514124 0.2875993 0.45727 +0.519487 0.2875993 0.45727 +0.5245917 0.2875993 0.45727 +0.529462 0.2875993 0.45727 +0.5341183 0.2875993 0.45727 +0.5385787 0.2875993 0.45727 +0.5428591 0.2875993 0.45727 +0.5469733 0.2875993 0.45727 +0.5509339 0.2875993 0.45727 +0.5547519 0.2875993 0.45727 +0.5584371 0.2875993 0.45727 +0.5619986 0.2875993 0.45727 +0.5654443 0.2875993 0.45727 +0.5687816 0.2875993 0.45727 +0.092819 0.3262122 0.45727 +0.2262531 0.3262122 0.45727 +0.2875993 0.3262122 0.45727 +0.3262122 0.3262122 0.45727 +0.3544566 0.3262122 0.45727 +0.3767383 0.3262122 0.45727 +0.3951413 0.3262122 0.45727 +0.4108177 0.3262122 0.45727 +0.4244723 0.3262122 0.45727 +0.4365675 0.3262122 0.45727 +0.4474232 0.3262122 0.45727 +0.45727 0.3262122 0.45727 +0.4662797 0.3262122 0.45727 +0.4745834 0.3262122 0.45727 +0.4822838 0.3262122 0.45727 +0.4894626 0.3262122 0.45727 +0.4961862 0.3262122 0.45727 +0.5025087 0.3262122 0.45727 +0.5084753 0.3262122 0.45727 +0.514124 0.3262122 0.45727 +0.519487 0.3262122 0.45727 +0.5245917 0.3262122 0.45727 +0.529462 0.3262122 0.45727 +0.5341183 0.3262122 0.45727 +0.5385787 0.3262122 0.45727 +0.5428591 0.3262122 0.45727 +0.5469733 0.3262122 0.45727 +0.5509339 0.3262122 0.45727 +0.5547519 0.3262122 0.45727 +0.5584371 0.3262122 0.45727 +0.5619986 0.3262122 0.45727 +0.5654443 0.3262122 0.45727 +0.5687816 0.3262122 0.45727 +0.092819 0.3544566 0.45727 +0.2262531 0.3544566 0.45727 +0.2875993 0.3544566 0.45727 +0.3262122 0.3544566 0.45727 +0.3544566 0.3544566 0.45727 +0.3767383 0.3544566 0.45727 +0.3951413 0.3544566 0.45727 +0.4108177 0.3544566 0.45727 +0.4244723 0.3544566 0.45727 +0.4365675 0.3544566 0.45727 +0.4474232 0.3544566 0.45727 +0.45727 0.3544566 0.45727 +0.4662797 0.3544566 0.45727 +0.4745834 0.3544566 0.45727 +0.4822838 0.3544566 0.45727 +0.4894626 0.3544566 0.45727 +0.4961862 0.3544566 0.45727 +0.5025087 0.3544566 0.45727 +0.5084753 0.3544566 0.45727 +0.514124 0.3544566 0.45727 +0.519487 0.3544566 0.45727 +0.5245917 0.3544566 0.45727 +0.529462 0.3544566 0.45727 +0.5341183 0.3544566 0.45727 +0.5385787 0.3544566 0.45727 +0.5428591 0.3544566 0.45727 +0.5469733 0.3544566 0.45727 +0.5509339 0.3544566 0.45727 +0.5547519 0.3544566 0.45727 +0.5584371 0.3544566 0.45727 +0.5619986 0.3544566 0.45727 +0.5654443 0.3544566 0.45727 +0.5687816 0.3544566 0.45727 +0.092819 0.3767383 0.45727 +0.2262531 0.3767383 0.45727 +0.2875993 0.3767383 0.45727 +0.3262122 0.3767383 0.45727 +0.3544566 0.3767383 0.45727 +0.3767383 0.3767383 0.45727 +0.3951413 0.3767383 0.45727 +0.4108177 0.3767383 0.45727 +0.4244723 0.3767383 0.45727 +0.4365675 0.3767383 0.45727 +0.4474232 0.3767383 0.45727 +0.45727 0.3767383 0.45727 +0.4662797 0.3767383 0.45727 +0.4745834 0.3767383 0.45727 +0.4822838 0.3767383 0.45727 +0.4894626 0.3767383 0.45727 +0.4961862 0.3767383 0.45727 +0.5025087 0.3767383 0.45727 +0.5084753 0.3767383 0.45727 +0.514124 0.3767383 0.45727 +0.519487 0.3767383 0.45727 +0.5245917 0.3767383 0.45727 +0.529462 0.3767383 0.45727 +0.5341183 0.3767383 0.45727 +0.5385787 0.3767383 0.45727 +0.5428591 0.3767383 0.45727 +0.5469733 0.3767383 0.45727 +0.5509339 0.3767383 0.45727 +0.5547519 0.3767383 0.45727 +0.5584371 0.3767383 0.45727 +0.5619986 0.3767383 0.45727 +0.5654443 0.3767383 0.45727 +0.5687816 0.3767383 0.45727 +0.092819 0.3951413 0.45727 +0.2262531 0.3951413 0.45727 +0.2875993 0.3951413 0.45727 +0.3262122 0.3951413 0.45727 +0.3544566 0.3951413 0.45727 +0.3767383 0.3951413 0.45727 +0.3951413 0.3951413 0.45727 +0.4108177 0.3951413 0.45727 +0.4244723 0.3951413 0.45727 +0.4365675 0.3951413 0.45727 +0.4474232 0.3951413 0.45727 +0.45727 0.3951413 0.45727 +0.4662797 0.3951413 0.45727 +0.4745834 0.3951413 0.45727 +0.4822838 0.3951413 0.45727 +0.4894626 0.3951413 0.45727 +0.4961862 0.3951413 0.45727 +0.5025087 0.3951413 0.45727 +0.5084753 0.3951413 0.45727 +0.514124 0.3951413 0.45727 +0.519487 0.3951413 0.45727 +0.5245917 0.3951413 0.45727 +0.529462 0.3951413 0.45727 +0.5341183 0.3951413 0.45727 +0.5385787 0.3951413 0.45727 +0.5428591 0.3951413 0.45727 +0.5469733 0.3951413 0.45727 +0.5509339 0.3951413 0.45727 +0.5547519 0.3951413 0.45727 +0.5584371 0.3951413 0.45727 +0.5619986 0.3951413 0.45727 +0.5654443 0.3951413 0.45727 +0.5687816 0.3951413 0.45727 +0.092819 0.4108177 0.45727 +0.2262531 0.4108177 0.45727 +0.2875993 0.4108177 0.45727 +0.3262122 0.4108177 0.45727 +0.3544566 0.4108177 0.45727 +0.3767383 0.4108177 0.45727 +0.3951413 0.4108177 0.45727 +0.4108177 0.4108177 0.45727 +0.4244723 0.4108177 0.45727 +0.4365675 0.4108177 0.45727 +0.4474232 0.4108177 0.45727 +0.45727 0.4108177 0.45727 +0.4662797 0.4108177 0.45727 +0.4745834 0.4108177 0.45727 +0.4822838 0.4108177 0.45727 +0.4894626 0.4108177 0.45727 +0.4961862 0.4108177 0.45727 +0.5025087 0.4108177 0.45727 +0.5084753 0.4108177 0.45727 +0.514124 0.4108177 0.45727 +0.519487 0.4108177 0.45727 +0.5245917 0.4108177 0.45727 +0.529462 0.4108177 0.45727 +0.5341183 0.4108177 0.45727 +0.5385787 0.4108177 0.45727 +0.5428591 0.4108177 0.45727 +0.5469733 0.4108177 0.45727 +0.5509339 0.4108177 0.45727 +0.5547519 0.4108177 0.45727 +0.5584371 0.4108177 0.45727 +0.5619986 0.4108177 0.45727 +0.5654443 0.4108177 0.45727 +0.5687816 0.4108177 0.45727 +0.092819 0.4244723 0.45727 +0.2262531 0.4244723 0.45727 +0.2875993 0.4244723 0.45727 +0.3262122 0.4244723 0.45727 +0.3544566 0.4244723 0.45727 +0.3767383 0.4244723 0.45727 +0.3951413 0.4244723 0.45727 +0.4108177 0.4244723 0.45727 +0.4244723 0.4244723 0.45727 +0.4365675 0.4244723 0.45727 +0.4474232 0.4244723 0.45727 +0.45727 0.4244723 0.45727 +0.4662797 0.4244723 0.45727 +0.4745834 0.4244723 0.45727 +0.4822838 0.4244723 0.45727 +0.4894626 0.4244723 0.45727 +0.4961862 0.4244723 0.45727 +0.5025087 0.4244723 0.45727 +0.5084753 0.4244723 0.45727 +0.514124 0.4244723 0.45727 +0.519487 0.4244723 0.45727 +0.5245917 0.4244723 0.45727 +0.529462 0.4244723 0.45727 +0.5341183 0.4244723 0.45727 +0.5385787 0.4244723 0.45727 +0.5428591 0.4244723 0.45727 +0.5469733 0.4244723 0.45727 +0.5509339 0.4244723 0.45727 +0.5547519 0.4244723 0.45727 +0.5584371 0.4244723 0.45727 +0.5619986 0.4244723 0.45727 +0.5654443 0.4244723 0.45727 +0.5687816 0.4244723 0.45727 +0.092819 0.4365675 0.45727 +0.2262531 0.4365675 0.45727 +0.2875993 0.4365675 0.45727 +0.3262122 0.4365675 0.45727 +0.3544566 0.4365675 0.45727 +0.3767383 0.4365675 0.45727 +0.3951413 0.4365675 0.45727 +0.4108177 0.4365675 0.45727 +0.4244723 0.4365675 0.45727 +0.4365675 0.4365675 0.45727 +0.4474232 0.4365675 0.45727 +0.45727 0.4365675 0.45727 +0.4662797 0.4365675 0.45727 +0.4745834 0.4365675 0.45727 +0.4822838 0.4365675 0.45727 +0.4894626 0.4365675 0.45727 +0.4961862 0.4365675 0.45727 +0.5025087 0.4365675 0.45727 +0.5084753 0.4365675 0.45727 +0.514124 0.4365675 0.45727 +0.519487 0.4365675 0.45727 +0.5245917 0.4365675 0.45727 +0.529462 0.4365675 0.45727 +0.5341183 0.4365675 0.45727 +0.5385787 0.4365675 0.45727 +0.5428591 0.4365675 0.45727 +0.5469733 0.4365675 0.45727 +0.5509339 0.4365675 0.45727 +0.5547519 0.4365675 0.45727 +0.5584371 0.4365675 0.45727 +0.5619986 0.4365675 0.45727 +0.5654443 0.4365675 0.45727 +0.5687816 0.4365675 0.45727 +0.092819 0.4474232 0.45727 +0.2262531 0.4474232 0.45727 +0.2875993 0.4474232 0.45727 +0.3262122 0.4474232 0.45727 +0.3544566 0.4474232 0.45727 +0.3767383 0.4474232 0.45727 +0.3951413 0.4474232 0.45727 +0.4108177 0.4474232 0.45727 +0.4244723 0.4474232 0.45727 +0.4365675 0.4474232 0.45727 +0.4474232 0.4474232 0.45727 +0.45727 0.4474232 0.45727 +0.4662797 0.4474232 0.45727 +0.4745834 0.4474232 0.45727 +0.4822838 0.4474232 0.45727 +0.4894626 0.4474232 0.45727 +0.4961862 0.4474232 0.45727 +0.5025087 0.4474232 0.45727 +0.5084753 0.4474232 0.45727 +0.514124 0.4474232 0.45727 +0.519487 0.4474232 0.45727 +0.5245917 0.4474232 0.45727 +0.529462 0.4474232 0.45727 +0.5341183 0.4474232 0.45727 +0.5385787 0.4474232 0.45727 +0.5428591 0.4474232 0.45727 +0.5469733 0.4474232 0.45727 +0.5509339 0.4474232 0.45727 +0.5547519 0.4474232 0.45727 +0.5584371 0.4474232 0.45727 +0.5619986 0.4474232 0.45727 +0.5654443 0.4474232 0.45727 +0.5687816 0.4474232 0.45727 +0.092819 0.45727 0.45727 +0.2262531 0.45727 0.45727 +0.2875993 0.45727 0.45727 +0.3262122 0.45727 0.45727 +0.3544566 0.45727 0.45727 +0.3767383 0.45727 0.45727 +0.3951413 0.45727 0.45727 +0.4108177 0.45727 0.45727 +0.4244723 0.45727 0.45727 +0.4365675 0.45727 0.45727 +0.4474232 0.45727 0.45727 +0.45727 0.45727 0.45727 +0.4662797 0.45727 0.45727 +0.4745834 0.45727 0.45727 +0.4822838 0.45727 0.45727 +0.4894626 0.45727 0.45727 +0.4961862 0.45727 0.45727 +0.5025087 0.45727 0.45727 +0.5084753 0.45727 0.45727 +0.514124 0.45727 0.45727 +0.519487 0.45727 0.45727 +0.5245917 0.45727 0.45727 +0.529462 0.45727 0.45727 +0.5341183 0.45727 0.45727 +0.5385787 0.45727 0.45727 +0.5428591 0.45727 0.45727 +0.5469733 0.45727 0.45727 +0.5509339 0.45727 0.45727 +0.5547519 0.45727 0.45727 +0.5584371 0.45727 0.45727 +0.5619986 0.45727 0.45727 +0.5654443 0.45727 0.45727 +0.5687816 0.45727 0.45727 +0.092819 0.4662797 0.45727 +0.2262531 0.4662797 0.45727 +0.2875993 0.4662797 0.45727 +0.3262122 0.4662797 0.45727 +0.3544566 0.4662797 0.45727 +0.3767383 0.4662797 0.45727 +0.3951413 0.4662797 0.45727 +0.4108177 0.4662797 0.45727 +0.4244723 0.4662797 0.45727 +0.4365675 0.4662797 0.45727 +0.4474232 0.4662797 0.45727 +0.45727 0.4662797 0.45727 +0.4662797 0.4662797 0.45727 +0.4745834 0.4662797 0.45727 +0.4822838 0.4662797 0.45727 +0.4894626 0.4662797 0.45727 +0.4961862 0.4662797 0.45727 +0.5025087 0.4662797 0.45727 +0.5084753 0.4662797 0.45727 +0.514124 0.4662797 0.45727 +0.519487 0.4662797 0.45727 +0.5245917 0.4662797 0.45727 +0.529462 0.4662797 0.45727 +0.5341183 0.4662797 0.45727 +0.5385787 0.4662797 0.45727 +0.5428591 0.4662797 0.45727 +0.5469733 0.4662797 0.45727 +0.5509339 0.4662797 0.45727 +0.5547519 0.4662797 0.45727 +0.5584371 0.4662797 0.45727 +0.5619986 0.4662797 0.45727 +0.5654443 0.4662797 0.45727 +0.5687816 0.4662797 0.45727 +0.092819 0.4745834 0.45727 +0.2262531 0.4745834 0.45727 +0.2875993 0.4745834 0.45727 +0.3262122 0.4745834 0.45727 +0.3544566 0.4745834 0.45727 +0.3767383 0.4745834 0.45727 +0.3951413 0.4745834 0.45727 +0.4108177 0.4745834 0.45727 +0.4244723 0.4745834 0.45727 +0.4365675 0.4745834 0.45727 +0.4474232 0.4745834 0.45727 +0.45727 0.4745834 0.45727 +0.4662797 0.4745834 0.45727 +0.4745834 0.4745834 0.45727 +0.4822838 0.4745834 0.45727 +0.4894626 0.4745834 0.45727 +0.4961862 0.4745834 0.45727 +0.5025087 0.4745834 0.45727 +0.5084753 0.4745834 0.45727 +0.514124 0.4745834 0.45727 +0.519487 0.4745834 0.45727 +0.5245917 0.4745834 0.45727 +0.529462 0.4745834 0.45727 +0.5341183 0.4745834 0.45727 +0.5385787 0.4745834 0.45727 +0.5428591 0.4745834 0.45727 +0.5469733 0.4745834 0.45727 +0.5509339 0.4745834 0.45727 +0.5547519 0.4745834 0.45727 +0.5584371 0.4745834 0.45727 +0.5619986 0.4745834 0.45727 +0.5654443 0.4745834 0.45727 +0.5687816 0.4745834 0.45727 +0.092819 0.4822838 0.45727 +0.2262531 0.4822838 0.45727 +0.2875993 0.4822838 0.45727 +0.3262122 0.4822838 0.45727 +0.3544566 0.4822838 0.45727 +0.3767383 0.4822838 0.45727 +0.3951413 0.4822838 0.45727 +0.4108177 0.4822838 0.45727 +0.4244723 0.4822838 0.45727 +0.4365675 0.4822838 0.45727 +0.4474232 0.4822838 0.45727 +0.45727 0.4822838 0.45727 +0.4662797 0.4822838 0.45727 +0.4745834 0.4822838 0.45727 +0.4822838 0.4822838 0.45727 +0.4894626 0.4822838 0.45727 +0.4961862 0.4822838 0.45727 +0.5025087 0.4822838 0.45727 +0.5084753 0.4822838 0.45727 +0.514124 0.4822838 0.45727 +0.519487 0.4822838 0.45727 +0.5245917 0.4822838 0.45727 +0.529462 0.4822838 0.45727 +0.5341183 0.4822838 0.45727 +0.5385787 0.4822838 0.45727 +0.5428591 0.4822838 0.45727 +0.5469733 0.4822838 0.45727 +0.5509339 0.4822838 0.45727 +0.5547519 0.4822838 0.45727 +0.5584371 0.4822838 0.45727 +0.5619986 0.4822838 0.45727 +0.5654443 0.4822838 0.45727 +0.5687816 0.4822838 0.45727 +0.092819 0.4894626 0.45727 +0.2262531 0.4894626 0.45727 +0.2875993 0.4894626 0.45727 +0.3262122 0.4894626 0.45727 +0.3544566 0.4894626 0.45727 +0.3767383 0.4894626 0.45727 +0.3951413 0.4894626 0.45727 +0.4108177 0.4894626 0.45727 +0.4244723 0.4894626 0.45727 +0.4365675 0.4894626 0.45727 +0.4474232 0.4894626 0.45727 +0.45727 0.4894626 0.45727 +0.4662797 0.4894626 0.45727 +0.4745834 0.4894626 0.45727 +0.4822838 0.4894626 0.45727 +0.4894626 0.4894626 0.45727 +0.4961862 0.4894626 0.45727 +0.5025087 0.4894626 0.45727 +0.5084753 0.4894626 0.45727 +0.514124 0.4894626 0.45727 +0.519487 0.4894626 0.45727 +0.5245917 0.4894626 0.45727 +0.529462 0.4894626 0.45727 +0.5341183 0.4894626 0.45727 +0.5385787 0.4894626 0.45727 +0.5428591 0.4894626 0.45727 +0.5469733 0.4894626 0.45727 +0.5509339 0.4894626 0.45727 +0.5547519 0.4894626 0.45727 +0.5584371 0.4894626 0.45727 +0.5619986 0.4894626 0.45727 +0.5654443 0.4894626 0.45727 +0.5687816 0.4894626 0.45727 +0.092819 0.4961862 0.45727 +0.2262531 0.4961862 0.45727 +0.2875993 0.4961862 0.45727 +0.3262122 0.4961862 0.45727 +0.3544566 0.4961862 0.45727 +0.3767383 0.4961862 0.45727 +0.3951413 0.4961862 0.45727 +0.4108177 0.4961862 0.45727 +0.4244723 0.4961862 0.45727 +0.4365675 0.4961862 0.45727 +0.4474232 0.4961862 0.45727 +0.45727 0.4961862 0.45727 +0.4662797 0.4961862 0.45727 +0.4745834 0.4961862 0.45727 +0.4822838 0.4961862 0.45727 +0.4894626 0.4961862 0.45727 +0.4961862 0.4961862 0.45727 +0.5025087 0.4961862 0.45727 +0.5084753 0.4961862 0.45727 +0.514124 0.4961862 0.45727 +0.519487 0.4961862 0.45727 +0.5245917 0.4961862 0.45727 +0.529462 0.4961862 0.45727 +0.5341183 0.4961862 0.45727 +0.5385787 0.4961862 0.45727 +0.5428591 0.4961862 0.45727 +0.5469733 0.4961862 0.45727 +0.5509339 0.4961862 0.45727 +0.5547519 0.4961862 0.45727 +0.5584371 0.4961862 0.45727 +0.5619986 0.4961862 0.45727 +0.5654443 0.4961862 0.45727 +0.5687816 0.4961862 0.45727 +0.092819 0.5025087 0.45727 +0.2262531 0.5025087 0.45727 +0.2875993 0.5025087 0.45727 +0.3262122 0.5025087 0.45727 +0.3544566 0.5025087 0.45727 +0.3767383 0.5025087 0.45727 +0.3951413 0.5025087 0.45727 +0.4108177 0.5025087 0.45727 +0.4244723 0.5025087 0.45727 +0.4365675 0.5025087 0.45727 +0.4474232 0.5025087 0.45727 +0.45727 0.5025087 0.45727 +0.4662797 0.5025087 0.45727 +0.4745834 0.5025087 0.45727 +0.4822838 0.5025087 0.45727 +0.4894626 0.5025087 0.45727 +0.4961862 0.5025087 0.45727 +0.5025087 0.5025087 0.45727 +0.5084753 0.5025087 0.45727 +0.514124 0.5025087 0.45727 +0.519487 0.5025087 0.45727 +0.5245917 0.5025087 0.45727 +0.529462 0.5025087 0.45727 +0.5341183 0.5025087 0.45727 +0.5385787 0.5025087 0.45727 +0.5428591 0.5025087 0.45727 +0.5469733 0.5025087 0.45727 +0.5509339 0.5025087 0.45727 +0.5547519 0.5025087 0.45727 +0.5584371 0.5025087 0.45727 +0.5619986 0.5025087 0.45727 +0.5654443 0.5025087 0.45727 +0.5687816 0.5025087 0.45727 +0.092819 0.5084753 0.45727 +0.2262531 0.5084753 0.45727 +0.2875993 0.5084753 0.45727 +0.3262122 0.5084753 0.45727 +0.3544566 0.5084753 0.45727 +0.3767383 0.5084753 0.45727 +0.3951413 0.5084753 0.45727 +0.4108177 0.5084753 0.45727 +0.4244723 0.5084753 0.45727 +0.4365675 0.5084753 0.45727 +0.4474232 0.5084753 0.45727 +0.45727 0.5084753 0.45727 +0.4662797 0.5084753 0.45727 +0.4745834 0.5084753 0.45727 +0.4822838 0.5084753 0.45727 +0.4894626 0.5084753 0.45727 +0.4961862 0.5084753 0.45727 +0.5025087 0.5084753 0.45727 +0.5084753 0.5084753 0.45727 +0.514124 0.5084753 0.45727 +0.519487 0.5084753 0.45727 +0.5245917 0.5084753 0.45727 +0.529462 0.5084753 0.45727 +0.5341183 0.5084753 0.45727 +0.5385787 0.5084753 0.45727 +0.5428591 0.5084753 0.45727 +0.5469733 0.5084753 0.45727 +0.5509339 0.5084753 0.45727 +0.5547519 0.5084753 0.45727 +0.5584371 0.5084753 0.45727 +0.5619986 0.5084753 0.45727 +0.5654443 0.5084753 0.45727 +0.5687816 0.5084753 0.45727 +0.092819 0.514124 0.45727 +0.2262531 0.514124 0.45727 +0.2875993 0.514124 0.45727 +0.3262122 0.514124 0.45727 +0.3544566 0.514124 0.45727 +0.3767383 0.514124 0.45727 +0.3951413 0.514124 0.45727 +0.4108177 0.514124 0.45727 +0.4244723 0.514124 0.45727 +0.4365675 0.514124 0.45727 +0.4474232 0.514124 0.45727 +0.45727 0.514124 0.45727 +0.4662797 0.514124 0.45727 +0.4745834 0.514124 0.45727 +0.4822838 0.514124 0.45727 +0.4894626 0.514124 0.45727 +0.4961862 0.514124 0.45727 +0.5025087 0.514124 0.45727 +0.5084753 0.514124 0.45727 +0.514124 0.514124 0.45727 +0.519487 0.514124 0.45727 +0.5245917 0.514124 0.45727 +0.529462 0.514124 0.45727 +0.5341183 0.514124 0.45727 +0.5385787 0.514124 0.45727 +0.5428591 0.514124 0.45727 +0.5469733 0.514124 0.45727 +0.5509339 0.514124 0.45727 +0.5547519 0.514124 0.45727 +0.5584371 0.514124 0.45727 +0.5619986 0.514124 0.45727 +0.5654443 0.514124 0.45727 +0.5687816 0.514124 0.45727 +0.092819 0.519487 0.45727 +0.2262531 0.519487 0.45727 +0.2875993 0.519487 0.45727 +0.3262122 0.519487 0.45727 +0.3544566 0.519487 0.45727 +0.3767383 0.519487 0.45727 +0.3951413 0.519487 0.45727 +0.4108177 0.519487 0.45727 +0.4244723 0.519487 0.45727 +0.4365675 0.519487 0.45727 +0.4474232 0.519487 0.45727 +0.45727 0.519487 0.45727 +0.4662797 0.519487 0.45727 +0.4745834 0.519487 0.45727 +0.4822838 0.519487 0.45727 +0.4894626 0.519487 0.45727 +0.4961862 0.519487 0.45727 +0.5025087 0.519487 0.45727 +0.5084753 0.519487 0.45727 +0.514124 0.519487 0.45727 +0.519487 0.519487 0.45727 +0.5245917 0.519487 0.45727 +0.529462 0.519487 0.45727 +0.5341183 0.519487 0.45727 +0.5385787 0.519487 0.45727 +0.5428591 0.519487 0.45727 +0.5469733 0.519487 0.45727 +0.5509339 0.519487 0.45727 +0.5547519 0.519487 0.45727 +0.5584371 0.519487 0.45727 +0.5619986 0.519487 0.45727 +0.5654443 0.519487 0.45727 +0.5687816 0.519487 0.45727 +0.092819 0.5245917 0.45727 +0.2262531 0.5245917 0.45727 +0.2875993 0.5245917 0.45727 +0.3262122 0.5245917 0.45727 +0.3544566 0.5245917 0.45727 +0.3767383 0.5245917 0.45727 +0.3951413 0.5245917 0.45727 +0.4108177 0.5245917 0.45727 +0.4244723 0.5245917 0.45727 +0.4365675 0.5245917 0.45727 +0.4474232 0.5245917 0.45727 +0.45727 0.5245917 0.45727 +0.4662797 0.5245917 0.45727 +0.4745834 0.5245917 0.45727 +0.4822838 0.5245917 0.45727 +0.4894626 0.5245917 0.45727 +0.4961862 0.5245917 0.45727 +0.5025087 0.5245917 0.45727 +0.5084753 0.5245917 0.45727 +0.514124 0.5245917 0.45727 +0.519487 0.5245917 0.45727 +0.5245917 0.5245917 0.45727 +0.529462 0.5245917 0.45727 +0.5341183 0.5245917 0.45727 +0.5385787 0.5245917 0.45727 +0.5428591 0.5245917 0.45727 +0.5469733 0.5245917 0.45727 +0.5509339 0.5245917 0.45727 +0.5547519 0.5245917 0.45727 +0.5584371 0.5245917 0.45727 +0.5619986 0.5245917 0.45727 +0.5654443 0.5245917 0.45727 +0.5687816 0.5245917 0.45727 +0.092819 0.529462 0.45727 +0.2262531 0.529462 0.45727 +0.2875993 0.529462 0.45727 +0.3262122 0.529462 0.45727 +0.3544566 0.529462 0.45727 +0.3767383 0.529462 0.45727 +0.3951413 0.529462 0.45727 +0.4108177 0.529462 0.45727 +0.4244723 0.529462 0.45727 +0.4365675 0.529462 0.45727 +0.4474232 0.529462 0.45727 +0.45727 0.529462 0.45727 +0.4662797 0.529462 0.45727 +0.4745834 0.529462 0.45727 +0.4822838 0.529462 0.45727 +0.4894626 0.529462 0.45727 +0.4961862 0.529462 0.45727 +0.5025087 0.529462 0.45727 +0.5084753 0.529462 0.45727 +0.514124 0.529462 0.45727 +0.519487 0.529462 0.45727 +0.5245917 0.529462 0.45727 +0.529462 0.529462 0.45727 +0.5341183 0.529462 0.45727 +0.5385787 0.529462 0.45727 +0.5428591 0.529462 0.45727 +0.5469733 0.529462 0.45727 +0.5509339 0.529462 0.45727 +0.5547519 0.529462 0.45727 +0.5584371 0.529462 0.45727 +0.5619986 0.529462 0.45727 +0.5654443 0.529462 0.45727 +0.5687816 0.529462 0.45727 +0.092819 0.5341183 0.45727 +0.2262531 0.5341183 0.45727 +0.2875993 0.5341183 0.45727 +0.3262122 0.5341183 0.45727 +0.3544566 0.5341183 0.45727 +0.3767383 0.5341183 0.45727 +0.3951413 0.5341183 0.45727 +0.4108177 0.5341183 0.45727 +0.4244723 0.5341183 0.45727 +0.4365675 0.5341183 0.45727 +0.4474232 0.5341183 0.45727 +0.45727 0.5341183 0.45727 +0.4662797 0.5341183 0.45727 +0.4745834 0.5341183 0.45727 +0.4822838 0.5341183 0.45727 +0.4894626 0.5341183 0.45727 +0.4961862 0.5341183 0.45727 +0.5025087 0.5341183 0.45727 +0.5084753 0.5341183 0.45727 +0.514124 0.5341183 0.45727 +0.519487 0.5341183 0.45727 +0.5245917 0.5341183 0.45727 +0.529462 0.5341183 0.45727 +0.5341183 0.5341183 0.45727 +0.5385787 0.5341183 0.45727 +0.5428591 0.5341183 0.45727 +0.5469733 0.5341183 0.45727 +0.5509339 0.5341183 0.45727 +0.5547519 0.5341183 0.45727 +0.5584371 0.5341183 0.45727 +0.5619986 0.5341183 0.45727 +0.5654443 0.5341183 0.45727 +0.5687816 0.5341183 0.45727 +0.092819 0.5385787 0.45727 +0.2262531 0.5385787 0.45727 +0.2875993 0.5385787 0.45727 +0.3262122 0.5385787 0.45727 +0.3544566 0.5385787 0.45727 +0.3767383 0.5385787 0.45727 +0.3951413 0.5385787 0.45727 +0.4108177 0.5385787 0.45727 +0.4244723 0.5385787 0.45727 +0.4365675 0.5385787 0.45727 +0.4474232 0.5385787 0.45727 +0.45727 0.5385787 0.45727 +0.4662797 0.5385787 0.45727 +0.4745834 0.5385787 0.45727 +0.4822838 0.5385787 0.45727 +0.4894626 0.5385787 0.45727 +0.4961862 0.5385787 0.45727 +0.5025087 0.5385787 0.45727 +0.5084753 0.5385787 0.45727 +0.514124 0.5385787 0.45727 +0.519487 0.5385787 0.45727 +0.5245917 0.5385787 0.45727 +0.529462 0.5385787 0.45727 +0.5341183 0.5385787 0.45727 +0.5385787 0.5385787 0.45727 +0.5428591 0.5385787 0.45727 +0.5469733 0.5385787 0.45727 +0.5509339 0.5385787 0.45727 +0.5547519 0.5385787 0.45727 +0.5584371 0.5385787 0.45727 +0.5619986 0.5385787 0.45727 +0.5654443 0.5385787 0.45727 +0.5687816 0.5385787 0.45727 +0.092819 0.5428591 0.45727 +0.2262531 0.5428591 0.45727 +0.2875993 0.5428591 0.45727 +0.3262122 0.5428591 0.45727 +0.3544566 0.5428591 0.45727 +0.3767383 0.5428591 0.45727 +0.3951413 0.5428591 0.45727 +0.4108177 0.5428591 0.45727 +0.4244723 0.5428591 0.45727 +0.4365675 0.5428591 0.45727 +0.4474232 0.5428591 0.45727 +0.45727 0.5428591 0.45727 +0.4662797 0.5428591 0.45727 +0.4745834 0.5428591 0.45727 +0.4822838 0.5428591 0.45727 +0.4894626 0.5428591 0.45727 +0.4961862 0.5428591 0.45727 +0.5025087 0.5428591 0.45727 +0.5084753 0.5428591 0.45727 +0.514124 0.5428591 0.45727 +0.519487 0.5428591 0.45727 +0.5245917 0.5428591 0.45727 +0.529462 0.5428591 0.45727 +0.5341183 0.5428591 0.45727 +0.5385787 0.5428591 0.45727 +0.5428591 0.5428591 0.45727 +0.5469733 0.5428591 0.45727 +0.5509339 0.5428591 0.45727 +0.5547519 0.5428591 0.45727 +0.5584371 0.5428591 0.45727 +0.5619986 0.5428591 0.45727 +0.5654443 0.5428591 0.45727 +0.5687816 0.5428591 0.45727 +0.092819 0.5469733 0.45727 +0.2262531 0.5469733 0.45727 +0.2875993 0.5469733 0.45727 +0.3262122 0.5469733 0.45727 +0.3544566 0.5469733 0.45727 +0.3767383 0.5469733 0.45727 +0.3951413 0.5469733 0.45727 +0.4108177 0.5469733 0.45727 +0.4244723 0.5469733 0.45727 +0.4365675 0.5469733 0.45727 +0.4474232 0.5469733 0.45727 +0.45727 0.5469733 0.45727 +0.4662797 0.5469733 0.45727 +0.4745834 0.5469733 0.45727 +0.4822838 0.5469733 0.45727 +0.4894626 0.5469733 0.45727 +0.4961862 0.5469733 0.45727 +0.5025087 0.5469733 0.45727 +0.5084753 0.5469733 0.45727 +0.514124 0.5469733 0.45727 +0.519487 0.5469733 0.45727 +0.5245917 0.5469733 0.45727 +0.529462 0.5469733 0.45727 +0.5341183 0.5469733 0.45727 +0.5385787 0.5469733 0.45727 +0.5428591 0.5469733 0.45727 +0.5469733 0.5469733 0.45727 +0.5509339 0.5469733 0.45727 +0.5547519 0.5469733 0.45727 +0.5584371 0.5469733 0.45727 +0.5619986 0.5469733 0.45727 +0.5654443 0.5469733 0.45727 +0.5687816 0.5469733 0.45727 +0.092819 0.5509339 0.45727 +0.2262531 0.5509339 0.45727 +0.2875993 0.5509339 0.45727 +0.3262122 0.5509339 0.45727 +0.3544566 0.5509339 0.45727 +0.3767383 0.5509339 0.45727 +0.3951413 0.5509339 0.45727 +0.4108177 0.5509339 0.45727 +0.4244723 0.5509339 0.45727 +0.4365675 0.5509339 0.45727 +0.4474232 0.5509339 0.45727 +0.45727 0.5509339 0.45727 +0.4662797 0.5509339 0.45727 +0.4745834 0.5509339 0.45727 +0.4822838 0.5509339 0.45727 +0.4894626 0.5509339 0.45727 +0.4961862 0.5509339 0.45727 +0.5025087 0.5509339 0.45727 +0.5084753 0.5509339 0.45727 +0.514124 0.5509339 0.45727 +0.519487 0.5509339 0.45727 +0.5245917 0.5509339 0.45727 +0.529462 0.5509339 0.45727 +0.5341183 0.5509339 0.45727 +0.5385787 0.5509339 0.45727 +0.5428591 0.5509339 0.45727 +0.5469733 0.5509339 0.45727 +0.5509339 0.5509339 0.45727 +0.5547519 0.5509339 0.45727 +0.5584371 0.5509339 0.45727 +0.5619986 0.5509339 0.45727 +0.5654443 0.5509339 0.45727 +0.5687816 0.5509339 0.45727 +0.092819 0.5547519 0.45727 +0.2262531 0.5547519 0.45727 +0.2875993 0.5547519 0.45727 +0.3262122 0.5547519 0.45727 +0.3544566 0.5547519 0.45727 +0.3767383 0.5547519 0.45727 +0.3951413 0.5547519 0.45727 +0.4108177 0.5547519 0.45727 +0.4244723 0.5547519 0.45727 +0.4365675 0.5547519 0.45727 +0.4474232 0.5547519 0.45727 +0.45727 0.5547519 0.45727 +0.4662797 0.5547519 0.45727 +0.4745834 0.5547519 0.45727 +0.4822838 0.5547519 0.45727 +0.4894626 0.5547519 0.45727 +0.4961862 0.5547519 0.45727 +0.5025087 0.5547519 0.45727 +0.5084753 0.5547519 0.45727 +0.514124 0.5547519 0.45727 +0.519487 0.5547519 0.45727 +0.5245917 0.5547519 0.45727 +0.529462 0.5547519 0.45727 +0.5341183 0.5547519 0.45727 +0.5385787 0.5547519 0.45727 +0.5428591 0.5547519 0.45727 +0.5469733 0.5547519 0.45727 +0.5509339 0.5547519 0.45727 +0.5547519 0.5547519 0.45727 +0.5584371 0.5547519 0.45727 +0.5619986 0.5547519 0.45727 +0.5654443 0.5547519 0.45727 +0.5687816 0.5547519 0.45727 +0.092819 0.5584371 0.45727 +0.2262531 0.5584371 0.45727 +0.2875993 0.5584371 0.45727 +0.3262122 0.5584371 0.45727 +0.3544566 0.5584371 0.45727 +0.3767383 0.5584371 0.45727 +0.3951413 0.5584371 0.45727 +0.4108177 0.5584371 0.45727 +0.4244723 0.5584371 0.45727 +0.4365675 0.5584371 0.45727 +0.4474232 0.5584371 0.45727 +0.45727 0.5584371 0.45727 +0.4662797 0.5584371 0.45727 +0.4745834 0.5584371 0.45727 +0.4822838 0.5584371 0.45727 +0.4894626 0.5584371 0.45727 +0.4961862 0.5584371 0.45727 +0.5025087 0.5584371 0.45727 +0.5084753 0.5584371 0.45727 +0.514124 0.5584371 0.45727 +0.519487 0.5584371 0.45727 +0.5245917 0.5584371 0.45727 +0.529462 0.5584371 0.45727 +0.5341183 0.5584371 0.45727 +0.5385787 0.5584371 0.45727 +0.5428591 0.5584371 0.45727 +0.5469733 0.5584371 0.45727 +0.5509339 0.5584371 0.45727 +0.5547519 0.5584371 0.45727 +0.5584371 0.5584371 0.45727 +0.5619986 0.5584371 0.45727 +0.5654443 0.5584371 0.45727 +0.5687816 0.5584371 0.45727 +0.092819 0.5619986 0.45727 +0.2262531 0.5619986 0.45727 +0.2875993 0.5619986 0.45727 +0.3262122 0.5619986 0.45727 +0.3544566 0.5619986 0.45727 +0.3767383 0.5619986 0.45727 +0.3951413 0.5619986 0.45727 +0.4108177 0.5619986 0.45727 +0.4244723 0.5619986 0.45727 +0.4365675 0.5619986 0.45727 +0.4474232 0.5619986 0.45727 +0.45727 0.5619986 0.45727 +0.4662797 0.5619986 0.45727 +0.4745834 0.5619986 0.45727 +0.4822838 0.5619986 0.45727 +0.4894626 0.5619986 0.45727 +0.4961862 0.5619986 0.45727 +0.5025087 0.5619986 0.45727 +0.5084753 0.5619986 0.45727 +0.514124 0.5619986 0.45727 +0.519487 0.5619986 0.45727 +0.5245917 0.5619986 0.45727 +0.529462 0.5619986 0.45727 +0.5341183 0.5619986 0.45727 +0.5385787 0.5619986 0.45727 +0.5428591 0.5619986 0.45727 +0.5469733 0.5619986 0.45727 +0.5509339 0.5619986 0.45727 +0.5547519 0.5619986 0.45727 +0.5584371 0.5619986 0.45727 +0.5619986 0.5619986 0.45727 +0.5654443 0.5619986 0.45727 +0.5687816 0.5619986 0.45727 +0.092819 0.5654443 0.45727 +0.2262531 0.5654443 0.45727 +0.2875993 0.5654443 0.45727 +0.3262122 0.5654443 0.45727 +0.3544566 0.5654443 0.45727 +0.3767383 0.5654443 0.45727 +0.3951413 0.5654443 0.45727 +0.4108177 0.5654443 0.45727 +0.4244723 0.5654443 0.45727 +0.4365675 0.5654443 0.45727 +0.4474232 0.5654443 0.45727 +0.45727 0.5654443 0.45727 +0.4662797 0.5654443 0.45727 +0.4745834 0.5654443 0.45727 +0.4822838 0.5654443 0.45727 +0.4894626 0.5654443 0.45727 +0.4961862 0.5654443 0.45727 +0.5025087 0.5654443 0.45727 +0.5084753 0.5654443 0.45727 +0.514124 0.5654443 0.45727 +0.519487 0.5654443 0.45727 +0.5245917 0.5654443 0.45727 +0.529462 0.5654443 0.45727 +0.5341183 0.5654443 0.45727 +0.5385787 0.5654443 0.45727 +0.5428591 0.5654443 0.45727 +0.5469733 0.5654443 0.45727 +0.5509339 0.5654443 0.45727 +0.5547519 0.5654443 0.45727 +0.5584371 0.5654443 0.45727 +0.5619986 0.5654443 0.45727 +0.5654443 0.5654443 0.45727 +0.5687816 0.5654443 0.45727 +0.092819 0.5687816 0.45727 +0.2262531 0.5687816 0.45727 +0.2875993 0.5687816 0.45727 +0.3262122 0.5687816 0.45727 +0.3544566 0.5687816 0.45727 +0.3767383 0.5687816 0.45727 +0.3951413 0.5687816 0.45727 +0.4108177 0.5687816 0.45727 +0.4244723 0.5687816 0.45727 +0.4365675 0.5687816 0.45727 +0.4474232 0.5687816 0.45727 +0.45727 0.5687816 0.45727 +0.4662797 0.5687816 0.45727 +0.4745834 0.5687816 0.45727 +0.4822838 0.5687816 0.45727 +0.4894626 0.5687816 0.45727 +0.4961862 0.5687816 0.45727 +0.5025087 0.5687816 0.45727 +0.5084753 0.5687816 0.45727 +0.514124 0.5687816 0.45727 +0.519487 0.5687816 0.45727 +0.5245917 0.5687816 0.45727 +0.529462 0.5687816 0.45727 +0.5341183 0.5687816 0.45727 +0.5385787 0.5687816 0.45727 +0.5428591 0.5687816 0.45727 +0.5469733 0.5687816 0.45727 +0.5509339 0.5687816 0.45727 +0.5547519 0.5687816 0.45727 +0.5584371 0.5687816 0.45727 +0.5619986 0.5687816 0.45727 +0.5654443 0.5687816 0.45727 +0.5687816 0.5687816 0.45727 +0.092819 0.092819 0.4662797 +0.2262531 0.092819 0.4662797 +0.2875993 0.092819 0.4662797 +0.3262122 0.092819 0.4662797 +0.3544566 0.092819 0.4662797 +0.3767383 0.092819 0.4662797 +0.3951413 0.092819 0.4662797 +0.4108177 0.092819 0.4662797 +0.4244723 0.092819 0.4662797 +0.4365675 0.092819 0.4662797 +0.4474232 0.092819 0.4662797 +0.45727 0.092819 0.4662797 +0.4662797 0.092819 0.4662797 +0.4745834 0.092819 0.4662797 +0.4822838 0.092819 0.4662797 +0.4894626 0.092819 0.4662797 +0.4961862 0.092819 0.4662797 +0.5025087 0.092819 0.4662797 +0.5084753 0.092819 0.4662797 +0.514124 0.092819 0.4662797 +0.519487 0.092819 0.4662797 +0.5245917 0.092819 0.4662797 +0.529462 0.092819 0.4662797 +0.5341183 0.092819 0.4662797 +0.5385787 0.092819 0.4662797 +0.5428591 0.092819 0.4662797 +0.5469733 0.092819 0.4662797 +0.5509339 0.092819 0.4662797 +0.5547519 0.092819 0.4662797 +0.5584371 0.092819 0.4662797 +0.5619986 0.092819 0.4662797 +0.5654443 0.092819 0.4662797 +0.5687816 0.092819 0.4662797 +0.092819 0.2262531 0.4662797 +0.2262531 0.2262531 0.4662797 +0.2875993 0.2262531 0.4662797 +0.3262122 0.2262531 0.4662797 +0.3544566 0.2262531 0.4662797 +0.3767383 0.2262531 0.4662797 +0.3951413 0.2262531 0.4662797 +0.4108177 0.2262531 0.4662797 +0.4244723 0.2262531 0.4662797 +0.4365675 0.2262531 0.4662797 +0.4474232 0.2262531 0.4662797 +0.45727 0.2262531 0.4662797 +0.4662797 0.2262531 0.4662797 +0.4745834 0.2262531 0.4662797 +0.4822838 0.2262531 0.4662797 +0.4894626 0.2262531 0.4662797 +0.4961862 0.2262531 0.4662797 +0.5025087 0.2262531 0.4662797 +0.5084753 0.2262531 0.4662797 +0.514124 0.2262531 0.4662797 +0.519487 0.2262531 0.4662797 +0.5245917 0.2262531 0.4662797 +0.529462 0.2262531 0.4662797 +0.5341183 0.2262531 0.4662797 +0.5385787 0.2262531 0.4662797 +0.5428591 0.2262531 0.4662797 +0.5469733 0.2262531 0.4662797 +0.5509339 0.2262531 0.4662797 +0.5547519 0.2262531 0.4662797 +0.5584371 0.2262531 0.4662797 +0.5619986 0.2262531 0.4662797 +0.5654443 0.2262531 0.4662797 +0.5687816 0.2262531 0.4662797 +0.092819 0.2875993 0.4662797 +0.2262531 0.2875993 0.4662797 +0.2875993 0.2875993 0.4662797 +0.3262122 0.2875993 0.4662797 +0.3544566 0.2875993 0.4662797 +0.3767383 0.2875993 0.4662797 +0.3951413 0.2875993 0.4662797 +0.4108177 0.2875993 0.4662797 +0.4244723 0.2875993 0.4662797 +0.4365675 0.2875993 0.4662797 +0.4474232 0.2875993 0.4662797 +0.45727 0.2875993 0.4662797 +0.4662797 0.2875993 0.4662797 +0.4745834 0.2875993 0.4662797 +0.4822838 0.2875993 0.4662797 +0.4894626 0.2875993 0.4662797 +0.4961862 0.2875993 0.4662797 +0.5025087 0.2875993 0.4662797 +0.5084753 0.2875993 0.4662797 +0.514124 0.2875993 0.4662797 +0.519487 0.2875993 0.4662797 +0.5245917 0.2875993 0.4662797 +0.529462 0.2875993 0.4662797 +0.5341183 0.2875993 0.4662797 +0.5385787 0.2875993 0.4662797 +0.5428591 0.2875993 0.4662797 +0.5469733 0.2875993 0.4662797 +0.5509339 0.2875993 0.4662797 +0.5547519 0.2875993 0.4662797 +0.5584371 0.2875993 0.4662797 +0.5619986 0.2875993 0.4662797 +0.5654443 0.2875993 0.4662797 +0.5687816 0.2875993 0.4662797 +0.092819 0.3262122 0.4662797 +0.2262531 0.3262122 0.4662797 +0.2875993 0.3262122 0.4662797 +0.3262122 0.3262122 0.4662797 +0.3544566 0.3262122 0.4662797 +0.3767383 0.3262122 0.4662797 +0.3951413 0.3262122 0.4662797 +0.4108177 0.3262122 0.4662797 +0.4244723 0.3262122 0.4662797 +0.4365675 0.3262122 0.4662797 +0.4474232 0.3262122 0.4662797 +0.45727 0.3262122 0.4662797 +0.4662797 0.3262122 0.4662797 +0.4745834 0.3262122 0.4662797 +0.4822838 0.3262122 0.4662797 +0.4894626 0.3262122 0.4662797 +0.4961862 0.3262122 0.4662797 +0.5025087 0.3262122 0.4662797 +0.5084753 0.3262122 0.4662797 +0.514124 0.3262122 0.4662797 +0.519487 0.3262122 0.4662797 +0.5245917 0.3262122 0.4662797 +0.529462 0.3262122 0.4662797 +0.5341183 0.3262122 0.4662797 +0.5385787 0.3262122 0.4662797 +0.5428591 0.3262122 0.4662797 +0.5469733 0.3262122 0.4662797 +0.5509339 0.3262122 0.4662797 +0.5547519 0.3262122 0.4662797 +0.5584371 0.3262122 0.4662797 +0.5619986 0.3262122 0.4662797 +0.5654443 0.3262122 0.4662797 +0.5687816 0.3262122 0.4662797 +0.092819 0.3544566 0.4662797 +0.2262531 0.3544566 0.4662797 +0.2875993 0.3544566 0.4662797 +0.3262122 0.3544566 0.4662797 +0.3544566 0.3544566 0.4662797 +0.3767383 0.3544566 0.4662797 +0.3951413 0.3544566 0.4662797 +0.4108177 0.3544566 0.4662797 +0.4244723 0.3544566 0.4662797 +0.4365675 0.3544566 0.4662797 +0.4474232 0.3544566 0.4662797 +0.45727 0.3544566 0.4662797 +0.4662797 0.3544566 0.4662797 +0.4745834 0.3544566 0.4662797 +0.4822838 0.3544566 0.4662797 +0.4894626 0.3544566 0.4662797 +0.4961862 0.3544566 0.4662797 +0.5025087 0.3544566 0.4662797 +0.5084753 0.3544566 0.4662797 +0.514124 0.3544566 0.4662797 +0.519487 0.3544566 0.4662797 +0.5245917 0.3544566 0.4662797 +0.529462 0.3544566 0.4662797 +0.5341183 0.3544566 0.4662797 +0.5385787 0.3544566 0.4662797 +0.5428591 0.3544566 0.4662797 +0.5469733 0.3544566 0.4662797 +0.5509339 0.3544566 0.4662797 +0.5547519 0.3544566 0.4662797 +0.5584371 0.3544566 0.4662797 +0.5619986 0.3544566 0.4662797 +0.5654443 0.3544566 0.4662797 +0.5687816 0.3544566 0.4662797 +0.092819 0.3767383 0.4662797 +0.2262531 0.3767383 0.4662797 +0.2875993 0.3767383 0.4662797 +0.3262122 0.3767383 0.4662797 +0.3544566 0.3767383 0.4662797 +0.3767383 0.3767383 0.4662797 +0.3951413 0.3767383 0.4662797 +0.4108177 0.3767383 0.4662797 +0.4244723 0.3767383 0.4662797 +0.4365675 0.3767383 0.4662797 +0.4474232 0.3767383 0.4662797 +0.45727 0.3767383 0.4662797 +0.4662797 0.3767383 0.4662797 +0.4745834 0.3767383 0.4662797 +0.4822838 0.3767383 0.4662797 +0.4894626 0.3767383 0.4662797 +0.4961862 0.3767383 0.4662797 +0.5025087 0.3767383 0.4662797 +0.5084753 0.3767383 0.4662797 +0.514124 0.3767383 0.4662797 +0.519487 0.3767383 0.4662797 +0.5245917 0.3767383 0.4662797 +0.529462 0.3767383 0.4662797 +0.5341183 0.3767383 0.4662797 +0.5385787 0.3767383 0.4662797 +0.5428591 0.3767383 0.4662797 +0.5469733 0.3767383 0.4662797 +0.5509339 0.3767383 0.4662797 +0.5547519 0.3767383 0.4662797 +0.5584371 0.3767383 0.4662797 +0.5619986 0.3767383 0.4662797 +0.5654443 0.3767383 0.4662797 +0.5687816 0.3767383 0.4662797 +0.092819 0.3951413 0.4662797 +0.2262531 0.3951413 0.4662797 +0.2875993 0.3951413 0.4662797 +0.3262122 0.3951413 0.4662797 +0.3544566 0.3951413 0.4662797 +0.3767383 0.3951413 0.4662797 +0.3951413 0.3951413 0.4662797 +0.4108177 0.3951413 0.4662797 +0.4244723 0.3951413 0.4662797 +0.4365675 0.3951413 0.4662797 +0.4474232 0.3951413 0.4662797 +0.45727 0.3951413 0.4662797 +0.4662797 0.3951413 0.4662797 +0.4745834 0.3951413 0.4662797 +0.4822838 0.3951413 0.4662797 +0.4894626 0.3951413 0.4662797 +0.4961862 0.3951413 0.4662797 +0.5025087 0.3951413 0.4662797 +0.5084753 0.3951413 0.4662797 +0.514124 0.3951413 0.4662797 +0.519487 0.3951413 0.4662797 +0.5245917 0.3951413 0.4662797 +0.529462 0.3951413 0.4662797 +0.5341183 0.3951413 0.4662797 +0.5385787 0.3951413 0.4662797 +0.5428591 0.3951413 0.4662797 +0.5469733 0.3951413 0.4662797 +0.5509339 0.3951413 0.4662797 +0.5547519 0.3951413 0.4662797 +0.5584371 0.3951413 0.4662797 +0.5619986 0.3951413 0.4662797 +0.5654443 0.3951413 0.4662797 +0.5687816 0.3951413 0.4662797 +0.092819 0.4108177 0.4662797 +0.2262531 0.4108177 0.4662797 +0.2875993 0.4108177 0.4662797 +0.3262122 0.4108177 0.4662797 +0.3544566 0.4108177 0.4662797 +0.3767383 0.4108177 0.4662797 +0.3951413 0.4108177 0.4662797 +0.4108177 0.4108177 0.4662797 +0.4244723 0.4108177 0.4662797 +0.4365675 0.4108177 0.4662797 +0.4474232 0.4108177 0.4662797 +0.45727 0.4108177 0.4662797 +0.4662797 0.4108177 0.4662797 +0.4745834 0.4108177 0.4662797 +0.4822838 0.4108177 0.4662797 +0.4894626 0.4108177 0.4662797 +0.4961862 0.4108177 0.4662797 +0.5025087 0.4108177 0.4662797 +0.5084753 0.4108177 0.4662797 +0.514124 0.4108177 0.4662797 +0.519487 0.4108177 0.4662797 +0.5245917 0.4108177 0.4662797 +0.529462 0.4108177 0.4662797 +0.5341183 0.4108177 0.4662797 +0.5385787 0.4108177 0.4662797 +0.5428591 0.4108177 0.4662797 +0.5469733 0.4108177 0.4662797 +0.5509339 0.4108177 0.4662797 +0.5547519 0.4108177 0.4662797 +0.5584371 0.4108177 0.4662797 +0.5619986 0.4108177 0.4662797 +0.5654443 0.4108177 0.4662797 +0.5687816 0.4108177 0.4662797 +0.092819 0.4244723 0.4662797 +0.2262531 0.4244723 0.4662797 +0.2875993 0.4244723 0.4662797 +0.3262122 0.4244723 0.4662797 +0.3544566 0.4244723 0.4662797 +0.3767383 0.4244723 0.4662797 +0.3951413 0.4244723 0.4662797 +0.4108177 0.4244723 0.4662797 +0.4244723 0.4244723 0.4662797 +0.4365675 0.4244723 0.4662797 +0.4474232 0.4244723 0.4662797 +0.45727 0.4244723 0.4662797 +0.4662797 0.4244723 0.4662797 +0.4745834 0.4244723 0.4662797 +0.4822838 0.4244723 0.4662797 +0.4894626 0.4244723 0.4662797 +0.4961862 0.4244723 0.4662797 +0.5025087 0.4244723 0.4662797 +0.5084753 0.4244723 0.4662797 +0.514124 0.4244723 0.4662797 +0.519487 0.4244723 0.4662797 +0.5245917 0.4244723 0.4662797 +0.529462 0.4244723 0.4662797 +0.5341183 0.4244723 0.4662797 +0.5385787 0.4244723 0.4662797 +0.5428591 0.4244723 0.4662797 +0.5469733 0.4244723 0.4662797 +0.5509339 0.4244723 0.4662797 +0.5547519 0.4244723 0.4662797 +0.5584371 0.4244723 0.4662797 +0.5619986 0.4244723 0.4662797 +0.5654443 0.4244723 0.4662797 +0.5687816 0.4244723 0.4662797 +0.092819 0.4365675 0.4662797 +0.2262531 0.4365675 0.4662797 +0.2875993 0.4365675 0.4662797 +0.3262122 0.4365675 0.4662797 +0.3544566 0.4365675 0.4662797 +0.3767383 0.4365675 0.4662797 +0.3951413 0.4365675 0.4662797 +0.4108177 0.4365675 0.4662797 +0.4244723 0.4365675 0.4662797 +0.4365675 0.4365675 0.4662797 +0.4474232 0.4365675 0.4662797 +0.45727 0.4365675 0.4662797 +0.4662797 0.4365675 0.4662797 +0.4745834 0.4365675 0.4662797 +0.4822838 0.4365675 0.4662797 +0.4894626 0.4365675 0.4662797 +0.4961862 0.4365675 0.4662797 +0.5025087 0.4365675 0.4662797 +0.5084753 0.4365675 0.4662797 +0.514124 0.4365675 0.4662797 +0.519487 0.4365675 0.4662797 +0.5245917 0.4365675 0.4662797 +0.529462 0.4365675 0.4662797 +0.5341183 0.4365675 0.4662797 +0.5385787 0.4365675 0.4662797 +0.5428591 0.4365675 0.4662797 +0.5469733 0.4365675 0.4662797 +0.5509339 0.4365675 0.4662797 +0.5547519 0.4365675 0.4662797 +0.5584371 0.4365675 0.4662797 +0.5619986 0.4365675 0.4662797 +0.5654443 0.4365675 0.4662797 +0.5687816 0.4365675 0.4662797 +0.092819 0.4474232 0.4662797 +0.2262531 0.4474232 0.4662797 +0.2875993 0.4474232 0.4662797 +0.3262122 0.4474232 0.4662797 +0.3544566 0.4474232 0.4662797 +0.3767383 0.4474232 0.4662797 +0.3951413 0.4474232 0.4662797 +0.4108177 0.4474232 0.4662797 +0.4244723 0.4474232 0.4662797 +0.4365675 0.4474232 0.4662797 +0.4474232 0.4474232 0.4662797 +0.45727 0.4474232 0.4662797 +0.4662797 0.4474232 0.4662797 +0.4745834 0.4474232 0.4662797 +0.4822838 0.4474232 0.4662797 +0.4894626 0.4474232 0.4662797 +0.4961862 0.4474232 0.4662797 +0.5025087 0.4474232 0.4662797 +0.5084753 0.4474232 0.4662797 +0.514124 0.4474232 0.4662797 +0.519487 0.4474232 0.4662797 +0.5245917 0.4474232 0.4662797 +0.529462 0.4474232 0.4662797 +0.5341183 0.4474232 0.4662797 +0.5385787 0.4474232 0.4662797 +0.5428591 0.4474232 0.4662797 +0.5469733 0.4474232 0.4662797 +0.5509339 0.4474232 0.4662797 +0.5547519 0.4474232 0.4662797 +0.5584371 0.4474232 0.4662797 +0.5619986 0.4474232 0.4662797 +0.5654443 0.4474232 0.4662797 +0.5687816 0.4474232 0.4662797 +0.092819 0.45727 0.4662797 +0.2262531 0.45727 0.4662797 +0.2875993 0.45727 0.4662797 +0.3262122 0.45727 0.4662797 +0.3544566 0.45727 0.4662797 +0.3767383 0.45727 0.4662797 +0.3951413 0.45727 0.4662797 +0.4108177 0.45727 0.4662797 +0.4244723 0.45727 0.4662797 +0.4365675 0.45727 0.4662797 +0.4474232 0.45727 0.4662797 +0.45727 0.45727 0.4662797 +0.4662797 0.45727 0.4662797 +0.4745834 0.45727 0.4662797 +0.4822838 0.45727 0.4662797 +0.4894626 0.45727 0.4662797 +0.4961862 0.45727 0.4662797 +0.5025087 0.45727 0.4662797 +0.5084753 0.45727 0.4662797 +0.514124 0.45727 0.4662797 +0.519487 0.45727 0.4662797 +0.5245917 0.45727 0.4662797 +0.529462 0.45727 0.4662797 +0.5341183 0.45727 0.4662797 +0.5385787 0.45727 0.4662797 +0.5428591 0.45727 0.4662797 +0.5469733 0.45727 0.4662797 +0.5509339 0.45727 0.4662797 +0.5547519 0.45727 0.4662797 +0.5584371 0.45727 0.4662797 +0.5619986 0.45727 0.4662797 +0.5654443 0.45727 0.4662797 +0.5687816 0.45727 0.4662797 +0.092819 0.4662797 0.4662797 +0.2262531 0.4662797 0.4662797 +0.2875993 0.4662797 0.4662797 +0.3262122 0.4662797 0.4662797 +0.3544566 0.4662797 0.4662797 +0.3767383 0.4662797 0.4662797 +0.3951413 0.4662797 0.4662797 +0.4108177 0.4662797 0.4662797 +0.4244723 0.4662797 0.4662797 +0.4365675 0.4662797 0.4662797 +0.4474232 0.4662797 0.4662797 +0.45727 0.4662797 0.4662797 +0.4662797 0.4662797 0.4662797 +0.4745834 0.4662797 0.4662797 +0.4822838 0.4662797 0.4662797 +0.4894626 0.4662797 0.4662797 +0.4961862 0.4662797 0.4662797 +0.5025087 0.4662797 0.4662797 +0.5084753 0.4662797 0.4662797 +0.514124 0.4662797 0.4662797 +0.519487 0.4662797 0.4662797 +0.5245917 0.4662797 0.4662797 +0.529462 0.4662797 0.4662797 +0.5341183 0.4662797 0.4662797 +0.5385787 0.4662797 0.4662797 +0.5428591 0.4662797 0.4662797 +0.5469733 0.4662797 0.4662797 +0.5509339 0.4662797 0.4662797 +0.5547519 0.4662797 0.4662797 +0.5584371 0.4662797 0.4662797 +0.5619986 0.4662797 0.4662797 +0.5654443 0.4662797 0.4662797 +0.5687816 0.4662797 0.4662797 +0.092819 0.4745834 0.4662797 +0.2262531 0.4745834 0.4662797 +0.2875993 0.4745834 0.4662797 +0.3262122 0.4745834 0.4662797 +0.3544566 0.4745834 0.4662797 +0.3767383 0.4745834 0.4662797 +0.3951413 0.4745834 0.4662797 +0.4108177 0.4745834 0.4662797 +0.4244723 0.4745834 0.4662797 +0.4365675 0.4745834 0.4662797 +0.4474232 0.4745834 0.4662797 +0.45727 0.4745834 0.4662797 +0.4662797 0.4745834 0.4662797 +0.4745834 0.4745834 0.4662797 +0.4822838 0.4745834 0.4662797 +0.4894626 0.4745834 0.4662797 +0.4961862 0.4745834 0.4662797 +0.5025087 0.4745834 0.4662797 +0.5084753 0.4745834 0.4662797 +0.514124 0.4745834 0.4662797 +0.519487 0.4745834 0.4662797 +0.5245917 0.4745834 0.4662797 +0.529462 0.4745834 0.4662797 +0.5341183 0.4745834 0.4662797 +0.5385787 0.4745834 0.4662797 +0.5428591 0.4745834 0.4662797 +0.5469733 0.4745834 0.4662797 +0.5509339 0.4745834 0.4662797 +0.5547519 0.4745834 0.4662797 +0.5584371 0.4745834 0.4662797 +0.5619986 0.4745834 0.4662797 +0.5654443 0.4745834 0.4662797 +0.5687816 0.4745834 0.4662797 +0.092819 0.4822838 0.4662797 +0.2262531 0.4822838 0.4662797 +0.2875993 0.4822838 0.4662797 +0.3262122 0.4822838 0.4662797 +0.3544566 0.4822838 0.4662797 +0.3767383 0.4822838 0.4662797 +0.3951413 0.4822838 0.4662797 +0.4108177 0.4822838 0.4662797 +0.4244723 0.4822838 0.4662797 +0.4365675 0.4822838 0.4662797 +0.4474232 0.4822838 0.4662797 +0.45727 0.4822838 0.4662797 +0.4662797 0.4822838 0.4662797 +0.4745834 0.4822838 0.4662797 +0.4822838 0.4822838 0.4662797 +0.4894626 0.4822838 0.4662797 +0.4961862 0.4822838 0.4662797 +0.5025087 0.4822838 0.4662797 +0.5084753 0.4822838 0.4662797 +0.514124 0.4822838 0.4662797 +0.519487 0.4822838 0.4662797 +0.5245917 0.4822838 0.4662797 +0.529462 0.4822838 0.4662797 +0.5341183 0.4822838 0.4662797 +0.5385787 0.4822838 0.4662797 +0.5428591 0.4822838 0.4662797 +0.5469733 0.4822838 0.4662797 +0.5509339 0.4822838 0.4662797 +0.5547519 0.4822838 0.4662797 +0.5584371 0.4822838 0.4662797 +0.5619986 0.4822838 0.4662797 +0.5654443 0.4822838 0.4662797 +0.5687816 0.4822838 0.4662797 +0.092819 0.4894626 0.4662797 +0.2262531 0.4894626 0.4662797 +0.2875993 0.4894626 0.4662797 +0.3262122 0.4894626 0.4662797 +0.3544566 0.4894626 0.4662797 +0.3767383 0.4894626 0.4662797 +0.3951413 0.4894626 0.4662797 +0.4108177 0.4894626 0.4662797 +0.4244723 0.4894626 0.4662797 +0.4365675 0.4894626 0.4662797 +0.4474232 0.4894626 0.4662797 +0.45727 0.4894626 0.4662797 +0.4662797 0.4894626 0.4662797 +0.4745834 0.4894626 0.4662797 +0.4822838 0.4894626 0.4662797 +0.4894626 0.4894626 0.4662797 +0.4961862 0.4894626 0.4662797 +0.5025087 0.4894626 0.4662797 +0.5084753 0.4894626 0.4662797 +0.514124 0.4894626 0.4662797 +0.519487 0.4894626 0.4662797 +0.5245917 0.4894626 0.4662797 +0.529462 0.4894626 0.4662797 +0.5341183 0.4894626 0.4662797 +0.5385787 0.4894626 0.4662797 +0.5428591 0.4894626 0.4662797 +0.5469733 0.4894626 0.4662797 +0.5509339 0.4894626 0.4662797 +0.5547519 0.4894626 0.4662797 +0.5584371 0.4894626 0.4662797 +0.5619986 0.4894626 0.4662797 +0.5654443 0.4894626 0.4662797 +0.5687816 0.4894626 0.4662797 +0.092819 0.4961862 0.4662797 +0.2262531 0.4961862 0.4662797 +0.2875993 0.4961862 0.4662797 +0.3262122 0.4961862 0.4662797 +0.3544566 0.4961862 0.4662797 +0.3767383 0.4961862 0.4662797 +0.3951413 0.4961862 0.4662797 +0.4108177 0.4961862 0.4662797 +0.4244723 0.4961862 0.4662797 +0.4365675 0.4961862 0.4662797 +0.4474232 0.4961862 0.4662797 +0.45727 0.4961862 0.4662797 +0.4662797 0.4961862 0.4662797 +0.4745834 0.4961862 0.4662797 +0.4822838 0.4961862 0.4662797 +0.4894626 0.4961862 0.4662797 +0.4961862 0.4961862 0.4662797 +0.5025087 0.4961862 0.4662797 +0.5084753 0.4961862 0.4662797 +0.514124 0.4961862 0.4662797 +0.519487 0.4961862 0.4662797 +0.5245917 0.4961862 0.4662797 +0.529462 0.4961862 0.4662797 +0.5341183 0.4961862 0.4662797 +0.5385787 0.4961862 0.4662797 +0.5428591 0.4961862 0.4662797 +0.5469733 0.4961862 0.4662797 +0.5509339 0.4961862 0.4662797 +0.5547519 0.4961862 0.4662797 +0.5584371 0.4961862 0.4662797 +0.5619986 0.4961862 0.4662797 +0.5654443 0.4961862 0.4662797 +0.5687816 0.4961862 0.4662797 +0.092819 0.5025087 0.4662797 +0.2262531 0.5025087 0.4662797 +0.2875993 0.5025087 0.4662797 +0.3262122 0.5025087 0.4662797 +0.3544566 0.5025087 0.4662797 +0.3767383 0.5025087 0.4662797 +0.3951413 0.5025087 0.4662797 +0.4108177 0.5025087 0.4662797 +0.4244723 0.5025087 0.4662797 +0.4365675 0.5025087 0.4662797 +0.4474232 0.5025087 0.4662797 +0.45727 0.5025087 0.4662797 +0.4662797 0.5025087 0.4662797 +0.4745834 0.5025087 0.4662797 +0.4822838 0.5025087 0.4662797 +0.4894626 0.5025087 0.4662797 +0.4961862 0.5025087 0.4662797 +0.5025087 0.5025087 0.4662797 +0.5084753 0.5025087 0.4662797 +0.514124 0.5025087 0.4662797 +0.519487 0.5025087 0.4662797 +0.5245917 0.5025087 0.4662797 +0.529462 0.5025087 0.4662797 +0.5341183 0.5025087 0.4662797 +0.5385787 0.5025087 0.4662797 +0.5428591 0.5025087 0.4662797 +0.5469733 0.5025087 0.4662797 +0.5509339 0.5025087 0.4662797 +0.5547519 0.5025087 0.4662797 +0.5584371 0.5025087 0.4662797 +0.5619986 0.5025087 0.4662797 +0.5654443 0.5025087 0.4662797 +0.5687816 0.5025087 0.4662797 +0.092819 0.5084753 0.4662797 +0.2262531 0.5084753 0.4662797 +0.2875993 0.5084753 0.4662797 +0.3262122 0.5084753 0.4662797 +0.3544566 0.5084753 0.4662797 +0.3767383 0.5084753 0.4662797 +0.3951413 0.5084753 0.4662797 +0.4108177 0.5084753 0.4662797 +0.4244723 0.5084753 0.4662797 +0.4365675 0.5084753 0.4662797 +0.4474232 0.5084753 0.4662797 +0.45727 0.5084753 0.4662797 +0.4662797 0.5084753 0.4662797 +0.4745834 0.5084753 0.4662797 +0.4822838 0.5084753 0.4662797 +0.4894626 0.5084753 0.4662797 +0.4961862 0.5084753 0.4662797 +0.5025087 0.5084753 0.4662797 +0.5084753 0.5084753 0.4662797 +0.514124 0.5084753 0.4662797 +0.519487 0.5084753 0.4662797 +0.5245917 0.5084753 0.4662797 +0.529462 0.5084753 0.4662797 +0.5341183 0.5084753 0.4662797 +0.5385787 0.5084753 0.4662797 +0.5428591 0.5084753 0.4662797 +0.5469733 0.5084753 0.4662797 +0.5509339 0.5084753 0.4662797 +0.5547519 0.5084753 0.4662797 +0.5584371 0.5084753 0.4662797 +0.5619986 0.5084753 0.4662797 +0.5654443 0.5084753 0.4662797 +0.5687816 0.5084753 0.4662797 +0.092819 0.514124 0.4662797 +0.2262531 0.514124 0.4662797 +0.2875993 0.514124 0.4662797 +0.3262122 0.514124 0.4662797 +0.3544566 0.514124 0.4662797 +0.3767383 0.514124 0.4662797 +0.3951413 0.514124 0.4662797 +0.4108177 0.514124 0.4662797 +0.4244723 0.514124 0.4662797 +0.4365675 0.514124 0.4662797 +0.4474232 0.514124 0.4662797 +0.45727 0.514124 0.4662797 +0.4662797 0.514124 0.4662797 +0.4745834 0.514124 0.4662797 +0.4822838 0.514124 0.4662797 +0.4894626 0.514124 0.4662797 +0.4961862 0.514124 0.4662797 +0.5025087 0.514124 0.4662797 +0.5084753 0.514124 0.4662797 +0.514124 0.514124 0.4662797 +0.519487 0.514124 0.4662797 +0.5245917 0.514124 0.4662797 +0.529462 0.514124 0.4662797 +0.5341183 0.514124 0.4662797 +0.5385787 0.514124 0.4662797 +0.5428591 0.514124 0.4662797 +0.5469733 0.514124 0.4662797 +0.5509339 0.514124 0.4662797 +0.5547519 0.514124 0.4662797 +0.5584371 0.514124 0.4662797 +0.5619986 0.514124 0.4662797 +0.5654443 0.514124 0.4662797 +0.5687816 0.514124 0.4662797 +0.092819 0.519487 0.4662797 +0.2262531 0.519487 0.4662797 +0.2875993 0.519487 0.4662797 +0.3262122 0.519487 0.4662797 +0.3544566 0.519487 0.4662797 +0.3767383 0.519487 0.4662797 +0.3951413 0.519487 0.4662797 +0.4108177 0.519487 0.4662797 +0.4244723 0.519487 0.4662797 +0.4365675 0.519487 0.4662797 +0.4474232 0.519487 0.4662797 +0.45727 0.519487 0.4662797 +0.4662797 0.519487 0.4662797 +0.4745834 0.519487 0.4662797 +0.4822838 0.519487 0.4662797 +0.4894626 0.519487 0.4662797 +0.4961862 0.519487 0.4662797 +0.5025087 0.519487 0.4662797 +0.5084753 0.519487 0.4662797 +0.514124 0.519487 0.4662797 +0.519487 0.519487 0.4662797 +0.5245917 0.519487 0.4662797 +0.529462 0.519487 0.4662797 +0.5341183 0.519487 0.4662797 +0.5385787 0.519487 0.4662797 +0.5428591 0.519487 0.4662797 +0.5469733 0.519487 0.4662797 +0.5509339 0.519487 0.4662797 +0.5547519 0.519487 0.4662797 +0.5584371 0.519487 0.4662797 +0.5619986 0.519487 0.4662797 +0.5654443 0.519487 0.4662797 +0.5687816 0.519487 0.4662797 +0.092819 0.5245917 0.4662797 +0.2262531 0.5245917 0.4662797 +0.2875993 0.5245917 0.4662797 +0.3262122 0.5245917 0.4662797 +0.3544566 0.5245917 0.4662797 +0.3767383 0.5245917 0.4662797 +0.3951413 0.5245917 0.4662797 +0.4108177 0.5245917 0.4662797 +0.4244723 0.5245917 0.4662797 +0.4365675 0.5245917 0.4662797 +0.4474232 0.5245917 0.4662797 +0.45727 0.5245917 0.4662797 +0.4662797 0.5245917 0.4662797 +0.4745834 0.5245917 0.4662797 +0.4822838 0.5245917 0.4662797 +0.4894626 0.5245917 0.4662797 +0.4961862 0.5245917 0.4662797 +0.5025087 0.5245917 0.4662797 +0.5084753 0.5245917 0.4662797 +0.514124 0.5245917 0.4662797 +0.519487 0.5245917 0.4662797 +0.5245917 0.5245917 0.4662797 +0.529462 0.5245917 0.4662797 +0.5341183 0.5245917 0.4662797 +0.5385787 0.5245917 0.4662797 +0.5428591 0.5245917 0.4662797 +0.5469733 0.5245917 0.4662797 +0.5509339 0.5245917 0.4662797 +0.5547519 0.5245917 0.4662797 +0.5584371 0.5245917 0.4662797 +0.5619986 0.5245917 0.4662797 +0.5654443 0.5245917 0.4662797 +0.5687816 0.5245917 0.4662797 +0.092819 0.529462 0.4662797 +0.2262531 0.529462 0.4662797 +0.2875993 0.529462 0.4662797 +0.3262122 0.529462 0.4662797 +0.3544566 0.529462 0.4662797 +0.3767383 0.529462 0.4662797 +0.3951413 0.529462 0.4662797 +0.4108177 0.529462 0.4662797 +0.4244723 0.529462 0.4662797 +0.4365675 0.529462 0.4662797 +0.4474232 0.529462 0.4662797 +0.45727 0.529462 0.4662797 +0.4662797 0.529462 0.4662797 +0.4745834 0.529462 0.4662797 +0.4822838 0.529462 0.4662797 +0.4894626 0.529462 0.4662797 +0.4961862 0.529462 0.4662797 +0.5025087 0.529462 0.4662797 +0.5084753 0.529462 0.4662797 +0.514124 0.529462 0.4662797 +0.519487 0.529462 0.4662797 +0.5245917 0.529462 0.4662797 +0.529462 0.529462 0.4662797 +0.5341183 0.529462 0.4662797 +0.5385787 0.529462 0.4662797 +0.5428591 0.529462 0.4662797 +0.5469733 0.529462 0.4662797 +0.5509339 0.529462 0.4662797 +0.5547519 0.529462 0.4662797 +0.5584371 0.529462 0.4662797 +0.5619986 0.529462 0.4662797 +0.5654443 0.529462 0.4662797 +0.5687816 0.529462 0.4662797 +0.092819 0.5341183 0.4662797 +0.2262531 0.5341183 0.4662797 +0.2875993 0.5341183 0.4662797 +0.3262122 0.5341183 0.4662797 +0.3544566 0.5341183 0.4662797 +0.3767383 0.5341183 0.4662797 +0.3951413 0.5341183 0.4662797 +0.4108177 0.5341183 0.4662797 +0.4244723 0.5341183 0.4662797 +0.4365675 0.5341183 0.4662797 +0.4474232 0.5341183 0.4662797 +0.45727 0.5341183 0.4662797 +0.4662797 0.5341183 0.4662797 +0.4745834 0.5341183 0.4662797 +0.4822838 0.5341183 0.4662797 +0.4894626 0.5341183 0.4662797 +0.4961862 0.5341183 0.4662797 +0.5025087 0.5341183 0.4662797 +0.5084753 0.5341183 0.4662797 +0.514124 0.5341183 0.4662797 +0.519487 0.5341183 0.4662797 +0.5245917 0.5341183 0.4662797 +0.529462 0.5341183 0.4662797 +0.5341183 0.5341183 0.4662797 +0.5385787 0.5341183 0.4662797 +0.5428591 0.5341183 0.4662797 +0.5469733 0.5341183 0.4662797 +0.5509339 0.5341183 0.4662797 +0.5547519 0.5341183 0.4662797 +0.5584371 0.5341183 0.4662797 +0.5619986 0.5341183 0.4662797 +0.5654443 0.5341183 0.4662797 +0.5687816 0.5341183 0.4662797 +0.092819 0.5385787 0.4662797 +0.2262531 0.5385787 0.4662797 +0.2875993 0.5385787 0.4662797 +0.3262122 0.5385787 0.4662797 +0.3544566 0.5385787 0.4662797 +0.3767383 0.5385787 0.4662797 +0.3951413 0.5385787 0.4662797 +0.4108177 0.5385787 0.4662797 +0.4244723 0.5385787 0.4662797 +0.4365675 0.5385787 0.4662797 +0.4474232 0.5385787 0.4662797 +0.45727 0.5385787 0.4662797 +0.4662797 0.5385787 0.4662797 +0.4745834 0.5385787 0.4662797 +0.4822838 0.5385787 0.4662797 +0.4894626 0.5385787 0.4662797 +0.4961862 0.5385787 0.4662797 +0.5025087 0.5385787 0.4662797 +0.5084753 0.5385787 0.4662797 +0.514124 0.5385787 0.4662797 +0.519487 0.5385787 0.4662797 +0.5245917 0.5385787 0.4662797 +0.529462 0.5385787 0.4662797 +0.5341183 0.5385787 0.4662797 +0.5385787 0.5385787 0.4662797 +0.5428591 0.5385787 0.4662797 +0.5469733 0.5385787 0.4662797 +0.5509339 0.5385787 0.4662797 +0.5547519 0.5385787 0.4662797 +0.5584371 0.5385787 0.4662797 +0.5619986 0.5385787 0.4662797 +0.5654443 0.5385787 0.4662797 +0.5687816 0.5385787 0.4662797 +0.092819 0.5428591 0.4662797 +0.2262531 0.5428591 0.4662797 +0.2875993 0.5428591 0.4662797 +0.3262122 0.5428591 0.4662797 +0.3544566 0.5428591 0.4662797 +0.3767383 0.5428591 0.4662797 +0.3951413 0.5428591 0.4662797 +0.4108177 0.5428591 0.4662797 +0.4244723 0.5428591 0.4662797 +0.4365675 0.5428591 0.4662797 +0.4474232 0.5428591 0.4662797 +0.45727 0.5428591 0.4662797 +0.4662797 0.5428591 0.4662797 +0.4745834 0.5428591 0.4662797 +0.4822838 0.5428591 0.4662797 +0.4894626 0.5428591 0.4662797 +0.4961862 0.5428591 0.4662797 +0.5025087 0.5428591 0.4662797 +0.5084753 0.5428591 0.4662797 +0.514124 0.5428591 0.4662797 +0.519487 0.5428591 0.4662797 +0.5245917 0.5428591 0.4662797 +0.529462 0.5428591 0.4662797 +0.5341183 0.5428591 0.4662797 +0.5385787 0.5428591 0.4662797 +0.5428591 0.5428591 0.4662797 +0.5469733 0.5428591 0.4662797 +0.5509339 0.5428591 0.4662797 +0.5547519 0.5428591 0.4662797 +0.5584371 0.5428591 0.4662797 +0.5619986 0.5428591 0.4662797 +0.5654443 0.5428591 0.4662797 +0.5687816 0.5428591 0.4662797 +0.092819 0.5469733 0.4662797 +0.2262531 0.5469733 0.4662797 +0.2875993 0.5469733 0.4662797 +0.3262122 0.5469733 0.4662797 +0.3544566 0.5469733 0.4662797 +0.3767383 0.5469733 0.4662797 +0.3951413 0.5469733 0.4662797 +0.4108177 0.5469733 0.4662797 +0.4244723 0.5469733 0.4662797 +0.4365675 0.5469733 0.4662797 +0.4474232 0.5469733 0.4662797 +0.45727 0.5469733 0.4662797 +0.4662797 0.5469733 0.4662797 +0.4745834 0.5469733 0.4662797 +0.4822838 0.5469733 0.4662797 +0.4894626 0.5469733 0.4662797 +0.4961862 0.5469733 0.4662797 +0.5025087 0.5469733 0.4662797 +0.5084753 0.5469733 0.4662797 +0.514124 0.5469733 0.4662797 +0.519487 0.5469733 0.4662797 +0.5245917 0.5469733 0.4662797 +0.529462 0.5469733 0.4662797 +0.5341183 0.5469733 0.4662797 +0.5385787 0.5469733 0.4662797 +0.5428591 0.5469733 0.4662797 +0.5469733 0.5469733 0.4662797 +0.5509339 0.5469733 0.4662797 +0.5547519 0.5469733 0.4662797 +0.5584371 0.5469733 0.4662797 +0.5619986 0.5469733 0.4662797 +0.5654443 0.5469733 0.4662797 +0.5687816 0.5469733 0.4662797 +0.092819 0.5509339 0.4662797 +0.2262531 0.5509339 0.4662797 +0.2875993 0.5509339 0.4662797 +0.3262122 0.5509339 0.4662797 +0.3544566 0.5509339 0.4662797 +0.3767383 0.5509339 0.4662797 +0.3951413 0.5509339 0.4662797 +0.4108177 0.5509339 0.4662797 +0.4244723 0.5509339 0.4662797 +0.4365675 0.5509339 0.4662797 +0.4474232 0.5509339 0.4662797 +0.45727 0.5509339 0.4662797 +0.4662797 0.5509339 0.4662797 +0.4745834 0.5509339 0.4662797 +0.4822838 0.5509339 0.4662797 +0.4894626 0.5509339 0.4662797 +0.4961862 0.5509339 0.4662797 +0.5025087 0.5509339 0.4662797 +0.5084753 0.5509339 0.4662797 +0.514124 0.5509339 0.4662797 +0.519487 0.5509339 0.4662797 +0.5245917 0.5509339 0.4662797 +0.529462 0.5509339 0.4662797 +0.5341183 0.5509339 0.4662797 +0.5385787 0.5509339 0.4662797 +0.5428591 0.5509339 0.4662797 +0.5469733 0.5509339 0.4662797 +0.5509339 0.5509339 0.4662797 +0.5547519 0.5509339 0.4662797 +0.5584371 0.5509339 0.4662797 +0.5619986 0.5509339 0.4662797 +0.5654443 0.5509339 0.4662797 +0.5687816 0.5509339 0.4662797 +0.092819 0.5547519 0.4662797 +0.2262531 0.5547519 0.4662797 +0.2875993 0.5547519 0.4662797 +0.3262122 0.5547519 0.4662797 +0.3544566 0.5547519 0.4662797 +0.3767383 0.5547519 0.4662797 +0.3951413 0.5547519 0.4662797 +0.4108177 0.5547519 0.4662797 +0.4244723 0.5547519 0.4662797 +0.4365675 0.5547519 0.4662797 +0.4474232 0.5547519 0.4662797 +0.45727 0.5547519 0.4662797 +0.4662797 0.5547519 0.4662797 +0.4745834 0.5547519 0.4662797 +0.4822838 0.5547519 0.4662797 +0.4894626 0.5547519 0.4662797 +0.4961862 0.5547519 0.4662797 +0.5025087 0.5547519 0.4662797 +0.5084753 0.5547519 0.4662797 +0.514124 0.5547519 0.4662797 +0.519487 0.5547519 0.4662797 +0.5245917 0.5547519 0.4662797 +0.529462 0.5547519 0.4662797 +0.5341183 0.5547519 0.4662797 +0.5385787 0.5547519 0.4662797 +0.5428591 0.5547519 0.4662797 +0.5469733 0.5547519 0.4662797 +0.5509339 0.5547519 0.4662797 +0.5547519 0.5547519 0.4662797 +0.5584371 0.5547519 0.4662797 +0.5619986 0.5547519 0.4662797 +0.5654443 0.5547519 0.4662797 +0.5687816 0.5547519 0.4662797 +0.092819 0.5584371 0.4662797 +0.2262531 0.5584371 0.4662797 +0.2875993 0.5584371 0.4662797 +0.3262122 0.5584371 0.4662797 +0.3544566 0.5584371 0.4662797 +0.3767383 0.5584371 0.4662797 +0.3951413 0.5584371 0.4662797 +0.4108177 0.5584371 0.4662797 +0.4244723 0.5584371 0.4662797 +0.4365675 0.5584371 0.4662797 +0.4474232 0.5584371 0.4662797 +0.45727 0.5584371 0.4662797 +0.4662797 0.5584371 0.4662797 +0.4745834 0.5584371 0.4662797 +0.4822838 0.5584371 0.4662797 +0.4894626 0.5584371 0.4662797 +0.4961862 0.5584371 0.4662797 +0.5025087 0.5584371 0.4662797 +0.5084753 0.5584371 0.4662797 +0.514124 0.5584371 0.4662797 +0.519487 0.5584371 0.4662797 +0.5245917 0.5584371 0.4662797 +0.529462 0.5584371 0.4662797 +0.5341183 0.5584371 0.4662797 +0.5385787 0.5584371 0.4662797 +0.5428591 0.5584371 0.4662797 +0.5469733 0.5584371 0.4662797 +0.5509339 0.5584371 0.4662797 +0.5547519 0.5584371 0.4662797 +0.5584371 0.5584371 0.4662797 +0.5619986 0.5584371 0.4662797 +0.5654443 0.5584371 0.4662797 +0.5687816 0.5584371 0.4662797 +0.092819 0.5619986 0.4662797 +0.2262531 0.5619986 0.4662797 +0.2875993 0.5619986 0.4662797 +0.3262122 0.5619986 0.4662797 +0.3544566 0.5619986 0.4662797 +0.3767383 0.5619986 0.4662797 +0.3951413 0.5619986 0.4662797 +0.4108177 0.5619986 0.4662797 +0.4244723 0.5619986 0.4662797 +0.4365675 0.5619986 0.4662797 +0.4474232 0.5619986 0.4662797 +0.45727 0.5619986 0.4662797 +0.4662797 0.5619986 0.4662797 +0.4745834 0.5619986 0.4662797 +0.4822838 0.5619986 0.4662797 +0.4894626 0.5619986 0.4662797 +0.4961862 0.5619986 0.4662797 +0.5025087 0.5619986 0.4662797 +0.5084753 0.5619986 0.4662797 +0.514124 0.5619986 0.4662797 +0.519487 0.5619986 0.4662797 +0.5245917 0.5619986 0.4662797 +0.529462 0.5619986 0.4662797 +0.5341183 0.5619986 0.4662797 +0.5385787 0.5619986 0.4662797 +0.5428591 0.5619986 0.4662797 +0.5469733 0.5619986 0.4662797 +0.5509339 0.5619986 0.4662797 +0.5547519 0.5619986 0.4662797 +0.5584371 0.5619986 0.4662797 +0.5619986 0.5619986 0.4662797 +0.5654443 0.5619986 0.4662797 +0.5687816 0.5619986 0.4662797 +0.092819 0.5654443 0.4662797 +0.2262531 0.5654443 0.4662797 +0.2875993 0.5654443 0.4662797 +0.3262122 0.5654443 0.4662797 +0.3544566 0.5654443 0.4662797 +0.3767383 0.5654443 0.4662797 +0.3951413 0.5654443 0.4662797 +0.4108177 0.5654443 0.4662797 +0.4244723 0.5654443 0.4662797 +0.4365675 0.5654443 0.4662797 +0.4474232 0.5654443 0.4662797 +0.45727 0.5654443 0.4662797 +0.4662797 0.5654443 0.4662797 +0.4745834 0.5654443 0.4662797 +0.4822838 0.5654443 0.4662797 +0.4894626 0.5654443 0.4662797 +0.4961862 0.5654443 0.4662797 +0.5025087 0.5654443 0.4662797 +0.5084753 0.5654443 0.4662797 +0.514124 0.5654443 0.4662797 +0.519487 0.5654443 0.4662797 +0.5245917 0.5654443 0.4662797 +0.529462 0.5654443 0.4662797 +0.5341183 0.5654443 0.4662797 +0.5385787 0.5654443 0.4662797 +0.5428591 0.5654443 0.4662797 +0.5469733 0.5654443 0.4662797 +0.5509339 0.5654443 0.4662797 +0.5547519 0.5654443 0.4662797 +0.5584371 0.5654443 0.4662797 +0.5619986 0.5654443 0.4662797 +0.5654443 0.5654443 0.4662797 +0.5687816 0.5654443 0.4662797 +0.092819 0.5687816 0.4662797 +0.2262531 0.5687816 0.4662797 +0.2875993 0.5687816 0.4662797 +0.3262122 0.5687816 0.4662797 +0.3544566 0.5687816 0.4662797 +0.3767383 0.5687816 0.4662797 +0.3951413 0.5687816 0.4662797 +0.4108177 0.5687816 0.4662797 +0.4244723 0.5687816 0.4662797 +0.4365675 0.5687816 0.4662797 +0.4474232 0.5687816 0.4662797 +0.45727 0.5687816 0.4662797 +0.4662797 0.5687816 0.4662797 +0.4745834 0.5687816 0.4662797 +0.4822838 0.5687816 0.4662797 +0.4894626 0.5687816 0.4662797 +0.4961862 0.5687816 0.4662797 +0.5025087 0.5687816 0.4662797 +0.5084753 0.5687816 0.4662797 +0.514124 0.5687816 0.4662797 +0.519487 0.5687816 0.4662797 +0.5245917 0.5687816 0.4662797 +0.529462 0.5687816 0.4662797 +0.5341183 0.5687816 0.4662797 +0.5385787 0.5687816 0.4662797 +0.5428591 0.5687816 0.4662797 +0.5469733 0.5687816 0.4662797 +0.5509339 0.5687816 0.4662797 +0.5547519 0.5687816 0.4662797 +0.5584371 0.5687816 0.4662797 +0.5619986 0.5687816 0.4662797 +0.5654443 0.5687816 0.4662797 +0.5687816 0.5687816 0.4662797 +0.092819 0.092819 0.4745834 +0.2262531 0.092819 0.4745834 +0.2875993 0.092819 0.4745834 +0.3262122 0.092819 0.4745834 +0.3544566 0.092819 0.4745834 +0.3767383 0.092819 0.4745834 +0.3951413 0.092819 0.4745834 +0.4108177 0.092819 0.4745834 +0.4244723 0.092819 0.4745834 +0.4365675 0.092819 0.4745834 +0.4474232 0.092819 0.4745834 +0.45727 0.092819 0.4745834 +0.4662797 0.092819 0.4745834 +0.4745834 0.092819 0.4745834 +0.4822838 0.092819 0.4745834 +0.4894626 0.092819 0.4745834 +0.4961862 0.092819 0.4745834 +0.5025087 0.092819 0.4745834 +0.5084753 0.092819 0.4745834 +0.514124 0.092819 0.4745834 +0.519487 0.092819 0.4745834 +0.5245917 0.092819 0.4745834 +0.529462 0.092819 0.4745834 +0.5341183 0.092819 0.4745834 +0.5385787 0.092819 0.4745834 +0.5428591 0.092819 0.4745834 +0.5469733 0.092819 0.4745834 +0.5509339 0.092819 0.4745834 +0.5547519 0.092819 0.4745834 +0.5584371 0.092819 0.4745834 +0.5619986 0.092819 0.4745834 +0.5654443 0.092819 0.4745834 +0.5687816 0.092819 0.4745834 +0.092819 0.2262531 0.4745834 +0.2262531 0.2262531 0.4745834 +0.2875993 0.2262531 0.4745834 +0.3262122 0.2262531 0.4745834 +0.3544566 0.2262531 0.4745834 +0.3767383 0.2262531 0.4745834 +0.3951413 0.2262531 0.4745834 +0.4108177 0.2262531 0.4745834 +0.4244723 0.2262531 0.4745834 +0.4365675 0.2262531 0.4745834 +0.4474232 0.2262531 0.4745834 +0.45727 0.2262531 0.4745834 +0.4662797 0.2262531 0.4745834 +0.4745834 0.2262531 0.4745834 +0.4822838 0.2262531 0.4745834 +0.4894626 0.2262531 0.4745834 +0.4961862 0.2262531 0.4745834 +0.5025087 0.2262531 0.4745834 +0.5084753 0.2262531 0.4745834 +0.514124 0.2262531 0.4745834 +0.519487 0.2262531 0.4745834 +0.5245917 0.2262531 0.4745834 +0.529462 0.2262531 0.4745834 +0.5341183 0.2262531 0.4745834 +0.5385787 0.2262531 0.4745834 +0.5428591 0.2262531 0.4745834 +0.5469733 0.2262531 0.4745834 +0.5509339 0.2262531 0.4745834 +0.5547519 0.2262531 0.4745834 +0.5584371 0.2262531 0.4745834 +0.5619986 0.2262531 0.4745834 +0.5654443 0.2262531 0.4745834 +0.5687816 0.2262531 0.4745834 +0.092819 0.2875993 0.4745834 +0.2262531 0.2875993 0.4745834 +0.2875993 0.2875993 0.4745834 +0.3262122 0.2875993 0.4745834 +0.3544566 0.2875993 0.4745834 +0.3767383 0.2875993 0.4745834 +0.3951413 0.2875993 0.4745834 +0.4108177 0.2875993 0.4745834 +0.4244723 0.2875993 0.4745834 +0.4365675 0.2875993 0.4745834 +0.4474232 0.2875993 0.4745834 +0.45727 0.2875993 0.4745834 +0.4662797 0.2875993 0.4745834 +0.4745834 0.2875993 0.4745834 +0.4822838 0.2875993 0.4745834 +0.4894626 0.2875993 0.4745834 +0.4961862 0.2875993 0.4745834 +0.5025087 0.2875993 0.4745834 +0.5084753 0.2875993 0.4745834 +0.514124 0.2875993 0.4745834 +0.519487 0.2875993 0.4745834 +0.5245917 0.2875993 0.4745834 +0.529462 0.2875993 0.4745834 +0.5341183 0.2875993 0.4745834 +0.5385787 0.2875993 0.4745834 +0.5428591 0.2875993 0.4745834 +0.5469733 0.2875993 0.4745834 +0.5509339 0.2875993 0.4745834 +0.5547519 0.2875993 0.4745834 +0.5584371 0.2875993 0.4745834 +0.5619986 0.2875993 0.4745834 +0.5654443 0.2875993 0.4745834 +0.5687816 0.2875993 0.4745834 +0.092819 0.3262122 0.4745834 +0.2262531 0.3262122 0.4745834 +0.2875993 0.3262122 0.4745834 +0.3262122 0.3262122 0.4745834 +0.3544566 0.3262122 0.4745834 +0.3767383 0.3262122 0.4745834 +0.3951413 0.3262122 0.4745834 +0.4108177 0.3262122 0.4745834 +0.4244723 0.3262122 0.4745834 +0.4365675 0.3262122 0.4745834 +0.4474232 0.3262122 0.4745834 +0.45727 0.3262122 0.4745834 +0.4662797 0.3262122 0.4745834 +0.4745834 0.3262122 0.4745834 +0.4822838 0.3262122 0.4745834 +0.4894626 0.3262122 0.4745834 +0.4961862 0.3262122 0.4745834 +0.5025087 0.3262122 0.4745834 +0.5084753 0.3262122 0.4745834 +0.514124 0.3262122 0.4745834 +0.519487 0.3262122 0.4745834 +0.5245917 0.3262122 0.4745834 +0.529462 0.3262122 0.4745834 +0.5341183 0.3262122 0.4745834 +0.5385787 0.3262122 0.4745834 +0.5428591 0.3262122 0.4745834 +0.5469733 0.3262122 0.4745834 +0.5509339 0.3262122 0.4745834 +0.5547519 0.3262122 0.4745834 +0.5584371 0.3262122 0.4745834 +0.5619986 0.3262122 0.4745834 +0.5654443 0.3262122 0.4745834 +0.5687816 0.3262122 0.4745834 +0.092819 0.3544566 0.4745834 +0.2262531 0.3544566 0.4745834 +0.2875993 0.3544566 0.4745834 +0.3262122 0.3544566 0.4745834 +0.3544566 0.3544566 0.4745834 +0.3767383 0.3544566 0.4745834 +0.3951413 0.3544566 0.4745834 +0.4108177 0.3544566 0.4745834 +0.4244723 0.3544566 0.4745834 +0.4365675 0.3544566 0.4745834 +0.4474232 0.3544566 0.4745834 +0.45727 0.3544566 0.4745834 +0.4662797 0.3544566 0.4745834 +0.4745834 0.3544566 0.4745834 +0.4822838 0.3544566 0.4745834 +0.4894626 0.3544566 0.4745834 +0.4961862 0.3544566 0.4745834 +0.5025087 0.3544566 0.4745834 +0.5084753 0.3544566 0.4745834 +0.514124 0.3544566 0.4745834 +0.519487 0.3544566 0.4745834 +0.5245917 0.3544566 0.4745834 +0.529462 0.3544566 0.4745834 +0.5341183 0.3544566 0.4745834 +0.5385787 0.3544566 0.4745834 +0.5428591 0.3544566 0.4745834 +0.5469733 0.3544566 0.4745834 +0.5509339 0.3544566 0.4745834 +0.5547519 0.3544566 0.4745834 +0.5584371 0.3544566 0.4745834 +0.5619986 0.3544566 0.4745834 +0.5654443 0.3544566 0.4745834 +0.5687816 0.3544566 0.4745834 +0.092819 0.3767383 0.4745834 +0.2262531 0.3767383 0.4745834 +0.2875993 0.3767383 0.4745834 +0.3262122 0.3767383 0.4745834 +0.3544566 0.3767383 0.4745834 +0.3767383 0.3767383 0.4745834 +0.3951413 0.3767383 0.4745834 +0.4108177 0.3767383 0.4745834 +0.4244723 0.3767383 0.4745834 +0.4365675 0.3767383 0.4745834 +0.4474232 0.3767383 0.4745834 +0.45727 0.3767383 0.4745834 +0.4662797 0.3767383 0.4745834 +0.4745834 0.3767383 0.4745834 +0.4822838 0.3767383 0.4745834 +0.4894626 0.3767383 0.4745834 +0.4961862 0.3767383 0.4745834 +0.5025087 0.3767383 0.4745834 +0.5084753 0.3767383 0.4745834 +0.514124 0.3767383 0.4745834 +0.519487 0.3767383 0.4745834 +0.5245917 0.3767383 0.4745834 +0.529462 0.3767383 0.4745834 +0.5341183 0.3767383 0.4745834 +0.5385787 0.3767383 0.4745834 +0.5428591 0.3767383 0.4745834 +0.5469733 0.3767383 0.4745834 +0.5509339 0.3767383 0.4745834 +0.5547519 0.3767383 0.4745834 +0.5584371 0.3767383 0.4745834 +0.5619986 0.3767383 0.4745834 +0.5654443 0.3767383 0.4745834 +0.5687816 0.3767383 0.4745834 +0.092819 0.3951413 0.4745834 +0.2262531 0.3951413 0.4745834 +0.2875993 0.3951413 0.4745834 +0.3262122 0.3951413 0.4745834 +0.3544566 0.3951413 0.4745834 +0.3767383 0.3951413 0.4745834 +0.3951413 0.3951413 0.4745834 +0.4108177 0.3951413 0.4745834 +0.4244723 0.3951413 0.4745834 +0.4365675 0.3951413 0.4745834 +0.4474232 0.3951413 0.4745834 +0.45727 0.3951413 0.4745834 +0.4662797 0.3951413 0.4745834 +0.4745834 0.3951413 0.4745834 +0.4822838 0.3951413 0.4745834 +0.4894626 0.3951413 0.4745834 +0.4961862 0.3951413 0.4745834 +0.5025087 0.3951413 0.4745834 +0.5084753 0.3951413 0.4745834 +0.514124 0.3951413 0.4745834 +0.519487 0.3951413 0.4745834 +0.5245917 0.3951413 0.4745834 +0.529462 0.3951413 0.4745834 +0.5341183 0.3951413 0.4745834 +0.5385787 0.3951413 0.4745834 +0.5428591 0.3951413 0.4745834 +0.5469733 0.3951413 0.4745834 +0.5509339 0.3951413 0.4745834 +0.5547519 0.3951413 0.4745834 +0.5584371 0.3951413 0.4745834 +0.5619986 0.3951413 0.4745834 +0.5654443 0.3951413 0.4745834 +0.5687816 0.3951413 0.4745834 +0.092819 0.4108177 0.4745834 +0.2262531 0.4108177 0.4745834 +0.2875993 0.4108177 0.4745834 +0.3262122 0.4108177 0.4745834 +0.3544566 0.4108177 0.4745834 +0.3767383 0.4108177 0.4745834 +0.3951413 0.4108177 0.4745834 +0.4108177 0.4108177 0.4745834 +0.4244723 0.4108177 0.4745834 +0.4365675 0.4108177 0.4745834 +0.4474232 0.4108177 0.4745834 +0.45727 0.4108177 0.4745834 +0.4662797 0.4108177 0.4745834 +0.4745834 0.4108177 0.4745834 +0.4822838 0.4108177 0.4745834 +0.4894626 0.4108177 0.4745834 +0.4961862 0.4108177 0.4745834 +0.5025087 0.4108177 0.4745834 +0.5084753 0.4108177 0.4745834 +0.514124 0.4108177 0.4745834 +0.519487 0.4108177 0.4745834 +0.5245917 0.4108177 0.4745834 +0.529462 0.4108177 0.4745834 +0.5341183 0.4108177 0.4745834 +0.5385787 0.4108177 0.4745834 +0.5428591 0.4108177 0.4745834 +0.5469733 0.4108177 0.4745834 +0.5509339 0.4108177 0.4745834 +0.5547519 0.4108177 0.4745834 +0.5584371 0.4108177 0.4745834 +0.5619986 0.4108177 0.4745834 +0.5654443 0.4108177 0.4745834 +0.5687816 0.4108177 0.4745834 +0.092819 0.4244723 0.4745834 +0.2262531 0.4244723 0.4745834 +0.2875993 0.4244723 0.4745834 +0.3262122 0.4244723 0.4745834 +0.3544566 0.4244723 0.4745834 +0.3767383 0.4244723 0.4745834 +0.3951413 0.4244723 0.4745834 +0.4108177 0.4244723 0.4745834 +0.4244723 0.4244723 0.4745834 +0.4365675 0.4244723 0.4745834 +0.4474232 0.4244723 0.4745834 +0.45727 0.4244723 0.4745834 +0.4662797 0.4244723 0.4745834 +0.4745834 0.4244723 0.4745834 +0.4822838 0.4244723 0.4745834 +0.4894626 0.4244723 0.4745834 +0.4961862 0.4244723 0.4745834 +0.5025087 0.4244723 0.4745834 +0.5084753 0.4244723 0.4745834 +0.514124 0.4244723 0.4745834 +0.519487 0.4244723 0.4745834 +0.5245917 0.4244723 0.4745834 +0.529462 0.4244723 0.4745834 +0.5341183 0.4244723 0.4745834 +0.5385787 0.4244723 0.4745834 +0.5428591 0.4244723 0.4745834 +0.5469733 0.4244723 0.4745834 +0.5509339 0.4244723 0.4745834 +0.5547519 0.4244723 0.4745834 +0.5584371 0.4244723 0.4745834 +0.5619986 0.4244723 0.4745834 +0.5654443 0.4244723 0.4745834 +0.5687816 0.4244723 0.4745834 +0.092819 0.4365675 0.4745834 +0.2262531 0.4365675 0.4745834 +0.2875993 0.4365675 0.4745834 +0.3262122 0.4365675 0.4745834 +0.3544566 0.4365675 0.4745834 +0.3767383 0.4365675 0.4745834 +0.3951413 0.4365675 0.4745834 +0.4108177 0.4365675 0.4745834 +0.4244723 0.4365675 0.4745834 +0.4365675 0.4365675 0.4745834 +0.4474232 0.4365675 0.4745834 +0.45727 0.4365675 0.4745834 +0.4662797 0.4365675 0.4745834 +0.4745834 0.4365675 0.4745834 +0.4822838 0.4365675 0.4745834 +0.4894626 0.4365675 0.4745834 +0.4961862 0.4365675 0.4745834 +0.5025087 0.4365675 0.4745834 +0.5084753 0.4365675 0.4745834 +0.514124 0.4365675 0.4745834 +0.519487 0.4365675 0.4745834 +0.5245917 0.4365675 0.4745834 +0.529462 0.4365675 0.4745834 +0.5341183 0.4365675 0.4745834 +0.5385787 0.4365675 0.4745834 +0.5428591 0.4365675 0.4745834 +0.5469733 0.4365675 0.4745834 +0.5509339 0.4365675 0.4745834 +0.5547519 0.4365675 0.4745834 +0.5584371 0.4365675 0.4745834 +0.5619986 0.4365675 0.4745834 +0.5654443 0.4365675 0.4745834 +0.5687816 0.4365675 0.4745834 +0.092819 0.4474232 0.4745834 +0.2262531 0.4474232 0.4745834 +0.2875993 0.4474232 0.4745834 +0.3262122 0.4474232 0.4745834 +0.3544566 0.4474232 0.4745834 +0.3767383 0.4474232 0.4745834 +0.3951413 0.4474232 0.4745834 +0.4108177 0.4474232 0.4745834 +0.4244723 0.4474232 0.4745834 +0.4365675 0.4474232 0.4745834 +0.4474232 0.4474232 0.4745834 +0.45727 0.4474232 0.4745834 +0.4662797 0.4474232 0.4745834 +0.4745834 0.4474232 0.4745834 +0.4822838 0.4474232 0.4745834 +0.4894626 0.4474232 0.4745834 +0.4961862 0.4474232 0.4745834 +0.5025087 0.4474232 0.4745834 +0.5084753 0.4474232 0.4745834 +0.514124 0.4474232 0.4745834 +0.519487 0.4474232 0.4745834 +0.5245917 0.4474232 0.4745834 +0.529462 0.4474232 0.4745834 +0.5341183 0.4474232 0.4745834 +0.5385787 0.4474232 0.4745834 +0.5428591 0.4474232 0.4745834 +0.5469733 0.4474232 0.4745834 +0.5509339 0.4474232 0.4745834 +0.5547519 0.4474232 0.4745834 +0.5584371 0.4474232 0.4745834 +0.5619986 0.4474232 0.4745834 +0.5654443 0.4474232 0.4745834 +0.5687816 0.4474232 0.4745834 +0.092819 0.45727 0.4745834 +0.2262531 0.45727 0.4745834 +0.2875993 0.45727 0.4745834 +0.3262122 0.45727 0.4745834 +0.3544566 0.45727 0.4745834 +0.3767383 0.45727 0.4745834 +0.3951413 0.45727 0.4745834 +0.4108177 0.45727 0.4745834 +0.4244723 0.45727 0.4745834 +0.4365675 0.45727 0.4745834 +0.4474232 0.45727 0.4745834 +0.45727 0.45727 0.4745834 +0.4662797 0.45727 0.4745834 +0.4745834 0.45727 0.4745834 +0.4822838 0.45727 0.4745834 +0.4894626 0.45727 0.4745834 +0.4961862 0.45727 0.4745834 +0.5025087 0.45727 0.4745834 +0.5084753 0.45727 0.4745834 +0.514124 0.45727 0.4745834 +0.519487 0.45727 0.4745834 +0.5245917 0.45727 0.4745834 +0.529462 0.45727 0.4745834 +0.5341183 0.45727 0.4745834 +0.5385787 0.45727 0.4745834 +0.5428591 0.45727 0.4745834 +0.5469733 0.45727 0.4745834 +0.5509339 0.45727 0.4745834 +0.5547519 0.45727 0.4745834 +0.5584371 0.45727 0.4745834 +0.5619986 0.45727 0.4745834 +0.5654443 0.45727 0.4745834 +0.5687816 0.45727 0.4745834 +0.092819 0.4662797 0.4745834 +0.2262531 0.4662797 0.4745834 +0.2875993 0.4662797 0.4745834 +0.3262122 0.4662797 0.4745834 +0.3544566 0.4662797 0.4745834 +0.3767383 0.4662797 0.4745834 +0.3951413 0.4662797 0.4745834 +0.4108177 0.4662797 0.4745834 +0.4244723 0.4662797 0.4745834 +0.4365675 0.4662797 0.4745834 +0.4474232 0.4662797 0.4745834 +0.45727 0.4662797 0.4745834 +0.4662797 0.4662797 0.4745834 +0.4745834 0.4662797 0.4745834 +0.4822838 0.4662797 0.4745834 +0.4894626 0.4662797 0.4745834 +0.4961862 0.4662797 0.4745834 +0.5025087 0.4662797 0.4745834 +0.5084753 0.4662797 0.4745834 +0.514124 0.4662797 0.4745834 +0.519487 0.4662797 0.4745834 +0.5245917 0.4662797 0.4745834 +0.529462 0.4662797 0.4745834 +0.5341183 0.4662797 0.4745834 +0.5385787 0.4662797 0.4745834 +0.5428591 0.4662797 0.4745834 +0.5469733 0.4662797 0.4745834 +0.5509339 0.4662797 0.4745834 +0.5547519 0.4662797 0.4745834 +0.5584371 0.4662797 0.4745834 +0.5619986 0.4662797 0.4745834 +0.5654443 0.4662797 0.4745834 +0.5687816 0.4662797 0.4745834 +0.092819 0.4745834 0.4745834 +0.2262531 0.4745834 0.4745834 +0.2875993 0.4745834 0.4745834 +0.3262122 0.4745834 0.4745834 +0.3544566 0.4745834 0.4745834 +0.3767383 0.4745834 0.4745834 +0.3951413 0.4745834 0.4745834 +0.4108177 0.4745834 0.4745834 +0.4244723 0.4745834 0.4745834 +0.4365675 0.4745834 0.4745834 +0.4474232 0.4745834 0.4745834 +0.45727 0.4745834 0.4745834 +0.4662797 0.4745834 0.4745834 +0.4745834 0.4745834 0.4745834 +0.4822838 0.4745834 0.4745834 +0.4894626 0.4745834 0.4745834 +0.4961862 0.4745834 0.4745834 +0.5025087 0.4745834 0.4745834 +0.5084753 0.4745834 0.4745834 +0.514124 0.4745834 0.4745834 +0.519487 0.4745834 0.4745834 +0.5245917 0.4745834 0.4745834 +0.529462 0.4745834 0.4745834 +0.5341183 0.4745834 0.4745834 +0.5385787 0.4745834 0.4745834 +0.5428591 0.4745834 0.4745834 +0.5469733 0.4745834 0.4745834 +0.5509339 0.4745834 0.4745834 +0.5547519 0.4745834 0.4745834 +0.5584371 0.4745834 0.4745834 +0.5619986 0.4745834 0.4745834 +0.5654443 0.4745834 0.4745834 +0.5687816 0.4745834 0.4745834 +0.092819 0.4822838 0.4745834 +0.2262531 0.4822838 0.4745834 +0.2875993 0.4822838 0.4745834 +0.3262122 0.4822838 0.4745834 +0.3544566 0.4822838 0.4745834 +0.3767383 0.4822838 0.4745834 +0.3951413 0.4822838 0.4745834 +0.4108177 0.4822838 0.4745834 +0.4244723 0.4822838 0.4745834 +0.4365675 0.4822838 0.4745834 +0.4474232 0.4822838 0.4745834 +0.45727 0.4822838 0.4745834 +0.4662797 0.4822838 0.4745834 +0.4745834 0.4822838 0.4745834 +0.4822838 0.4822838 0.4745834 +0.4894626 0.4822838 0.4745834 +0.4961862 0.4822838 0.4745834 +0.5025087 0.4822838 0.4745834 +0.5084753 0.4822838 0.4745834 +0.514124 0.4822838 0.4745834 +0.519487 0.4822838 0.4745834 +0.5245917 0.4822838 0.4745834 +0.529462 0.4822838 0.4745834 +0.5341183 0.4822838 0.4745834 +0.5385787 0.4822838 0.4745834 +0.5428591 0.4822838 0.4745834 +0.5469733 0.4822838 0.4745834 +0.5509339 0.4822838 0.4745834 +0.5547519 0.4822838 0.4745834 +0.5584371 0.4822838 0.4745834 +0.5619986 0.4822838 0.4745834 +0.5654443 0.4822838 0.4745834 +0.5687816 0.4822838 0.4745834 +0.092819 0.4894626 0.4745834 +0.2262531 0.4894626 0.4745834 +0.2875993 0.4894626 0.4745834 +0.3262122 0.4894626 0.4745834 +0.3544566 0.4894626 0.4745834 +0.3767383 0.4894626 0.4745834 +0.3951413 0.4894626 0.4745834 +0.4108177 0.4894626 0.4745834 +0.4244723 0.4894626 0.4745834 +0.4365675 0.4894626 0.4745834 +0.4474232 0.4894626 0.4745834 +0.45727 0.4894626 0.4745834 +0.4662797 0.4894626 0.4745834 +0.4745834 0.4894626 0.4745834 +0.4822838 0.4894626 0.4745834 +0.4894626 0.4894626 0.4745834 +0.4961862 0.4894626 0.4745834 +0.5025087 0.4894626 0.4745834 +0.5084753 0.4894626 0.4745834 +0.514124 0.4894626 0.4745834 +0.519487 0.4894626 0.4745834 +0.5245917 0.4894626 0.4745834 +0.529462 0.4894626 0.4745834 +0.5341183 0.4894626 0.4745834 +0.5385787 0.4894626 0.4745834 +0.5428591 0.4894626 0.4745834 +0.5469733 0.4894626 0.4745834 +0.5509339 0.4894626 0.4745834 +0.5547519 0.4894626 0.4745834 +0.5584371 0.4894626 0.4745834 +0.5619986 0.4894626 0.4745834 +0.5654443 0.4894626 0.4745834 +0.5687816 0.4894626 0.4745834 +0.092819 0.4961862 0.4745834 +0.2262531 0.4961862 0.4745834 +0.2875993 0.4961862 0.4745834 +0.3262122 0.4961862 0.4745834 +0.3544566 0.4961862 0.4745834 +0.3767383 0.4961862 0.4745834 +0.3951413 0.4961862 0.4745834 +0.4108177 0.4961862 0.4745834 +0.4244723 0.4961862 0.4745834 +0.4365675 0.4961862 0.4745834 +0.4474232 0.4961862 0.4745834 +0.45727 0.4961862 0.4745834 +0.4662797 0.4961862 0.4745834 +0.4745834 0.4961862 0.4745834 +0.4822838 0.4961862 0.4745834 +0.4894626 0.4961862 0.4745834 +0.4961862 0.4961862 0.4745834 +0.5025087 0.4961862 0.4745834 +0.5084753 0.4961862 0.4745834 +0.514124 0.4961862 0.4745834 +0.519487 0.4961862 0.4745834 +0.5245917 0.4961862 0.4745834 +0.529462 0.4961862 0.4745834 +0.5341183 0.4961862 0.4745834 +0.5385787 0.4961862 0.4745834 +0.5428591 0.4961862 0.4745834 +0.5469733 0.4961862 0.4745834 +0.5509339 0.4961862 0.4745834 +0.5547519 0.4961862 0.4745834 +0.5584371 0.4961862 0.4745834 +0.5619986 0.4961862 0.4745834 +0.5654443 0.4961862 0.4745834 +0.5687816 0.4961862 0.4745834 +0.092819 0.5025087 0.4745834 +0.2262531 0.5025087 0.4745834 +0.2875993 0.5025087 0.4745834 +0.3262122 0.5025087 0.4745834 +0.3544566 0.5025087 0.4745834 +0.3767383 0.5025087 0.4745834 +0.3951413 0.5025087 0.4745834 +0.4108177 0.5025087 0.4745834 +0.4244723 0.5025087 0.4745834 +0.4365675 0.5025087 0.4745834 +0.4474232 0.5025087 0.4745834 +0.45727 0.5025087 0.4745834 +0.4662797 0.5025087 0.4745834 +0.4745834 0.5025087 0.4745834 +0.4822838 0.5025087 0.4745834 +0.4894626 0.5025087 0.4745834 +0.4961862 0.5025087 0.4745834 +0.5025087 0.5025087 0.4745834 +0.5084753 0.5025087 0.4745834 +0.514124 0.5025087 0.4745834 +0.519487 0.5025087 0.4745834 +0.5245917 0.5025087 0.4745834 +0.529462 0.5025087 0.4745834 +0.5341183 0.5025087 0.4745834 +0.5385787 0.5025087 0.4745834 +0.5428591 0.5025087 0.4745834 +0.5469733 0.5025087 0.4745834 +0.5509339 0.5025087 0.4745834 +0.5547519 0.5025087 0.4745834 +0.5584371 0.5025087 0.4745834 +0.5619986 0.5025087 0.4745834 +0.5654443 0.5025087 0.4745834 +0.5687816 0.5025087 0.4745834 +0.092819 0.5084753 0.4745834 +0.2262531 0.5084753 0.4745834 +0.2875993 0.5084753 0.4745834 +0.3262122 0.5084753 0.4745834 +0.3544566 0.5084753 0.4745834 +0.3767383 0.5084753 0.4745834 +0.3951413 0.5084753 0.4745834 +0.4108177 0.5084753 0.4745834 +0.4244723 0.5084753 0.4745834 +0.4365675 0.5084753 0.4745834 +0.4474232 0.5084753 0.4745834 +0.45727 0.5084753 0.4745834 +0.4662797 0.5084753 0.4745834 +0.4745834 0.5084753 0.4745834 +0.4822838 0.5084753 0.4745834 +0.4894626 0.5084753 0.4745834 +0.4961862 0.5084753 0.4745834 +0.5025087 0.5084753 0.4745834 +0.5084753 0.5084753 0.4745834 +0.514124 0.5084753 0.4745834 +0.519487 0.5084753 0.4745834 +0.5245917 0.5084753 0.4745834 +0.529462 0.5084753 0.4745834 +0.5341183 0.5084753 0.4745834 +0.5385787 0.5084753 0.4745834 +0.5428591 0.5084753 0.4745834 +0.5469733 0.5084753 0.4745834 +0.5509339 0.5084753 0.4745834 +0.5547519 0.5084753 0.4745834 +0.5584371 0.5084753 0.4745834 +0.5619986 0.5084753 0.4745834 +0.5654443 0.5084753 0.4745834 +0.5687816 0.5084753 0.4745834 +0.092819 0.514124 0.4745834 +0.2262531 0.514124 0.4745834 +0.2875993 0.514124 0.4745834 +0.3262122 0.514124 0.4745834 +0.3544566 0.514124 0.4745834 +0.3767383 0.514124 0.4745834 +0.3951413 0.514124 0.4745834 +0.4108177 0.514124 0.4745834 +0.4244723 0.514124 0.4745834 +0.4365675 0.514124 0.4745834 +0.4474232 0.514124 0.4745834 +0.45727 0.514124 0.4745834 +0.4662797 0.514124 0.4745834 +0.4745834 0.514124 0.4745834 +0.4822838 0.514124 0.4745834 +0.4894626 0.514124 0.4745834 +0.4961862 0.514124 0.4745834 +0.5025087 0.514124 0.4745834 +0.5084753 0.514124 0.4745834 +0.514124 0.514124 0.4745834 +0.519487 0.514124 0.4745834 +0.5245917 0.514124 0.4745834 +0.529462 0.514124 0.4745834 +0.5341183 0.514124 0.4745834 +0.5385787 0.514124 0.4745834 +0.5428591 0.514124 0.4745834 +0.5469733 0.514124 0.4745834 +0.5509339 0.514124 0.4745834 +0.5547519 0.514124 0.4745834 +0.5584371 0.514124 0.4745834 +0.5619986 0.514124 0.4745834 +0.5654443 0.514124 0.4745834 +0.5687816 0.514124 0.4745834 +0.092819 0.519487 0.4745834 +0.2262531 0.519487 0.4745834 +0.2875993 0.519487 0.4745834 +0.3262122 0.519487 0.4745834 +0.3544566 0.519487 0.4745834 +0.3767383 0.519487 0.4745834 +0.3951413 0.519487 0.4745834 +0.4108177 0.519487 0.4745834 +0.4244723 0.519487 0.4745834 +0.4365675 0.519487 0.4745834 +0.4474232 0.519487 0.4745834 +0.45727 0.519487 0.4745834 +0.4662797 0.519487 0.4745834 +0.4745834 0.519487 0.4745834 +0.4822838 0.519487 0.4745834 +0.4894626 0.519487 0.4745834 +0.4961862 0.519487 0.4745834 +0.5025087 0.519487 0.4745834 +0.5084753 0.519487 0.4745834 +0.514124 0.519487 0.4745834 +0.519487 0.519487 0.4745834 +0.5245917 0.519487 0.4745834 +0.529462 0.519487 0.4745834 +0.5341183 0.519487 0.4745834 +0.5385787 0.519487 0.4745834 +0.5428591 0.519487 0.4745834 +0.5469733 0.519487 0.4745834 +0.5509339 0.519487 0.4745834 +0.5547519 0.519487 0.4745834 +0.5584371 0.519487 0.4745834 +0.5619986 0.519487 0.4745834 +0.5654443 0.519487 0.4745834 +0.5687816 0.519487 0.4745834 +0.092819 0.5245917 0.4745834 +0.2262531 0.5245917 0.4745834 +0.2875993 0.5245917 0.4745834 +0.3262122 0.5245917 0.4745834 +0.3544566 0.5245917 0.4745834 +0.3767383 0.5245917 0.4745834 +0.3951413 0.5245917 0.4745834 +0.4108177 0.5245917 0.4745834 +0.4244723 0.5245917 0.4745834 +0.4365675 0.5245917 0.4745834 +0.4474232 0.5245917 0.4745834 +0.45727 0.5245917 0.4745834 +0.4662797 0.5245917 0.4745834 +0.4745834 0.5245917 0.4745834 +0.4822838 0.5245917 0.4745834 +0.4894626 0.5245917 0.4745834 +0.4961862 0.5245917 0.4745834 +0.5025087 0.5245917 0.4745834 +0.5084753 0.5245917 0.4745834 +0.514124 0.5245917 0.4745834 +0.519487 0.5245917 0.4745834 +0.5245917 0.5245917 0.4745834 +0.529462 0.5245917 0.4745834 +0.5341183 0.5245917 0.4745834 +0.5385787 0.5245917 0.4745834 +0.5428591 0.5245917 0.4745834 +0.5469733 0.5245917 0.4745834 +0.5509339 0.5245917 0.4745834 +0.5547519 0.5245917 0.4745834 +0.5584371 0.5245917 0.4745834 +0.5619986 0.5245917 0.4745834 +0.5654443 0.5245917 0.4745834 +0.5687816 0.5245917 0.4745834 +0.092819 0.529462 0.4745834 +0.2262531 0.529462 0.4745834 +0.2875993 0.529462 0.4745834 +0.3262122 0.529462 0.4745834 +0.3544566 0.529462 0.4745834 +0.3767383 0.529462 0.4745834 +0.3951413 0.529462 0.4745834 +0.4108177 0.529462 0.4745834 +0.4244723 0.529462 0.4745834 +0.4365675 0.529462 0.4745834 +0.4474232 0.529462 0.4745834 +0.45727 0.529462 0.4745834 +0.4662797 0.529462 0.4745834 +0.4745834 0.529462 0.4745834 +0.4822838 0.529462 0.4745834 +0.4894626 0.529462 0.4745834 +0.4961862 0.529462 0.4745834 +0.5025087 0.529462 0.4745834 +0.5084753 0.529462 0.4745834 +0.514124 0.529462 0.4745834 +0.519487 0.529462 0.4745834 +0.5245917 0.529462 0.4745834 +0.529462 0.529462 0.4745834 +0.5341183 0.529462 0.4745834 +0.5385787 0.529462 0.4745834 +0.5428591 0.529462 0.4745834 +0.5469733 0.529462 0.4745834 +0.5509339 0.529462 0.4745834 +0.5547519 0.529462 0.4745834 +0.5584371 0.529462 0.4745834 +0.5619986 0.529462 0.4745834 +0.5654443 0.529462 0.4745834 +0.5687816 0.529462 0.4745834 +0.092819 0.5341183 0.4745834 +0.2262531 0.5341183 0.4745834 +0.2875993 0.5341183 0.4745834 +0.3262122 0.5341183 0.4745834 +0.3544566 0.5341183 0.4745834 +0.3767383 0.5341183 0.4745834 +0.3951413 0.5341183 0.4745834 +0.4108177 0.5341183 0.4745834 +0.4244723 0.5341183 0.4745834 +0.4365675 0.5341183 0.4745834 +0.4474232 0.5341183 0.4745834 +0.45727 0.5341183 0.4745834 +0.4662797 0.5341183 0.4745834 +0.4745834 0.5341183 0.4745834 +0.4822838 0.5341183 0.4745834 +0.4894626 0.5341183 0.4745834 +0.4961862 0.5341183 0.4745834 +0.5025087 0.5341183 0.4745834 +0.5084753 0.5341183 0.4745834 +0.514124 0.5341183 0.4745834 +0.519487 0.5341183 0.4745834 +0.5245917 0.5341183 0.4745834 +0.529462 0.5341183 0.4745834 +0.5341183 0.5341183 0.4745834 +0.5385787 0.5341183 0.4745834 +0.5428591 0.5341183 0.4745834 +0.5469733 0.5341183 0.4745834 +0.5509339 0.5341183 0.4745834 +0.5547519 0.5341183 0.4745834 +0.5584371 0.5341183 0.4745834 +0.5619986 0.5341183 0.4745834 +0.5654443 0.5341183 0.4745834 +0.5687816 0.5341183 0.4745834 +0.092819 0.5385787 0.4745834 +0.2262531 0.5385787 0.4745834 +0.2875993 0.5385787 0.4745834 +0.3262122 0.5385787 0.4745834 +0.3544566 0.5385787 0.4745834 +0.3767383 0.5385787 0.4745834 +0.3951413 0.5385787 0.4745834 +0.4108177 0.5385787 0.4745834 +0.4244723 0.5385787 0.4745834 +0.4365675 0.5385787 0.4745834 +0.4474232 0.5385787 0.4745834 +0.45727 0.5385787 0.4745834 +0.4662797 0.5385787 0.4745834 +0.4745834 0.5385787 0.4745834 +0.4822838 0.5385787 0.4745834 +0.4894626 0.5385787 0.4745834 +0.4961862 0.5385787 0.4745834 +0.5025087 0.5385787 0.4745834 +0.5084753 0.5385787 0.4745834 +0.514124 0.5385787 0.4745834 +0.519487 0.5385787 0.4745834 +0.5245917 0.5385787 0.4745834 +0.529462 0.5385787 0.4745834 +0.5341183 0.5385787 0.4745834 +0.5385787 0.5385787 0.4745834 +0.5428591 0.5385787 0.4745834 +0.5469733 0.5385787 0.4745834 +0.5509339 0.5385787 0.4745834 +0.5547519 0.5385787 0.4745834 +0.5584371 0.5385787 0.4745834 +0.5619986 0.5385787 0.4745834 +0.5654443 0.5385787 0.4745834 +0.5687816 0.5385787 0.4745834 +0.092819 0.5428591 0.4745834 +0.2262531 0.5428591 0.4745834 +0.2875993 0.5428591 0.4745834 +0.3262122 0.5428591 0.4745834 +0.3544566 0.5428591 0.4745834 +0.3767383 0.5428591 0.4745834 +0.3951413 0.5428591 0.4745834 +0.4108177 0.5428591 0.4745834 +0.4244723 0.5428591 0.4745834 +0.4365675 0.5428591 0.4745834 +0.4474232 0.5428591 0.4745834 +0.45727 0.5428591 0.4745834 +0.4662797 0.5428591 0.4745834 +0.4745834 0.5428591 0.4745834 +0.4822838 0.5428591 0.4745834 +0.4894626 0.5428591 0.4745834 +0.4961862 0.5428591 0.4745834 +0.5025087 0.5428591 0.4745834 +0.5084753 0.5428591 0.4745834 +0.514124 0.5428591 0.4745834 +0.519487 0.5428591 0.4745834 +0.5245917 0.5428591 0.4745834 +0.529462 0.5428591 0.4745834 +0.5341183 0.5428591 0.4745834 +0.5385787 0.5428591 0.4745834 +0.5428591 0.5428591 0.4745834 +0.5469733 0.5428591 0.4745834 +0.5509339 0.5428591 0.4745834 +0.5547519 0.5428591 0.4745834 +0.5584371 0.5428591 0.4745834 +0.5619986 0.5428591 0.4745834 +0.5654443 0.5428591 0.4745834 +0.5687816 0.5428591 0.4745834 +0.092819 0.5469733 0.4745834 +0.2262531 0.5469733 0.4745834 +0.2875993 0.5469733 0.4745834 +0.3262122 0.5469733 0.4745834 +0.3544566 0.5469733 0.4745834 +0.3767383 0.5469733 0.4745834 +0.3951413 0.5469733 0.4745834 +0.4108177 0.5469733 0.4745834 +0.4244723 0.5469733 0.4745834 +0.4365675 0.5469733 0.4745834 +0.4474232 0.5469733 0.4745834 +0.45727 0.5469733 0.4745834 +0.4662797 0.5469733 0.4745834 +0.4745834 0.5469733 0.4745834 +0.4822838 0.5469733 0.4745834 +0.4894626 0.5469733 0.4745834 +0.4961862 0.5469733 0.4745834 +0.5025087 0.5469733 0.4745834 +0.5084753 0.5469733 0.4745834 +0.514124 0.5469733 0.4745834 +0.519487 0.5469733 0.4745834 +0.5245917 0.5469733 0.4745834 +0.529462 0.5469733 0.4745834 +0.5341183 0.5469733 0.4745834 +0.5385787 0.5469733 0.4745834 +0.5428591 0.5469733 0.4745834 +0.5469733 0.5469733 0.4745834 +0.5509339 0.5469733 0.4745834 +0.5547519 0.5469733 0.4745834 +0.5584371 0.5469733 0.4745834 +0.5619986 0.5469733 0.4745834 +0.5654443 0.5469733 0.4745834 +0.5687816 0.5469733 0.4745834 +0.092819 0.5509339 0.4745834 +0.2262531 0.5509339 0.4745834 +0.2875993 0.5509339 0.4745834 +0.3262122 0.5509339 0.4745834 +0.3544566 0.5509339 0.4745834 +0.3767383 0.5509339 0.4745834 +0.3951413 0.5509339 0.4745834 +0.4108177 0.5509339 0.4745834 +0.4244723 0.5509339 0.4745834 +0.4365675 0.5509339 0.4745834 +0.4474232 0.5509339 0.4745834 +0.45727 0.5509339 0.4745834 +0.4662797 0.5509339 0.4745834 +0.4745834 0.5509339 0.4745834 +0.4822838 0.5509339 0.4745834 +0.4894626 0.5509339 0.4745834 +0.4961862 0.5509339 0.4745834 +0.5025087 0.5509339 0.4745834 +0.5084753 0.5509339 0.4745834 +0.514124 0.5509339 0.4745834 +0.519487 0.5509339 0.4745834 +0.5245917 0.5509339 0.4745834 +0.529462 0.5509339 0.4745834 +0.5341183 0.5509339 0.4745834 +0.5385787 0.5509339 0.4745834 +0.5428591 0.5509339 0.4745834 +0.5469733 0.5509339 0.4745834 +0.5509339 0.5509339 0.4745834 +0.5547519 0.5509339 0.4745834 +0.5584371 0.5509339 0.4745834 +0.5619986 0.5509339 0.4745834 +0.5654443 0.5509339 0.4745834 +0.5687816 0.5509339 0.4745834 +0.092819 0.5547519 0.4745834 +0.2262531 0.5547519 0.4745834 +0.2875993 0.5547519 0.4745834 +0.3262122 0.5547519 0.4745834 +0.3544566 0.5547519 0.4745834 +0.3767383 0.5547519 0.4745834 +0.3951413 0.5547519 0.4745834 +0.4108177 0.5547519 0.4745834 +0.4244723 0.5547519 0.4745834 +0.4365675 0.5547519 0.4745834 +0.4474232 0.5547519 0.4745834 +0.45727 0.5547519 0.4745834 +0.4662797 0.5547519 0.4745834 +0.4745834 0.5547519 0.4745834 +0.4822838 0.5547519 0.4745834 +0.4894626 0.5547519 0.4745834 +0.4961862 0.5547519 0.4745834 +0.5025087 0.5547519 0.4745834 +0.5084753 0.5547519 0.4745834 +0.514124 0.5547519 0.4745834 +0.519487 0.5547519 0.4745834 +0.5245917 0.5547519 0.4745834 +0.529462 0.5547519 0.4745834 +0.5341183 0.5547519 0.4745834 +0.5385787 0.5547519 0.4745834 +0.5428591 0.5547519 0.4745834 +0.5469733 0.5547519 0.4745834 +0.5509339 0.5547519 0.4745834 +0.5547519 0.5547519 0.4745834 +0.5584371 0.5547519 0.4745834 +0.5619986 0.5547519 0.4745834 +0.5654443 0.5547519 0.4745834 +0.5687816 0.5547519 0.4745834 +0.092819 0.5584371 0.4745834 +0.2262531 0.5584371 0.4745834 +0.2875993 0.5584371 0.4745834 +0.3262122 0.5584371 0.4745834 +0.3544566 0.5584371 0.4745834 +0.3767383 0.5584371 0.4745834 +0.3951413 0.5584371 0.4745834 +0.4108177 0.5584371 0.4745834 +0.4244723 0.5584371 0.4745834 +0.4365675 0.5584371 0.4745834 +0.4474232 0.5584371 0.4745834 +0.45727 0.5584371 0.4745834 +0.4662797 0.5584371 0.4745834 +0.4745834 0.5584371 0.4745834 +0.4822838 0.5584371 0.4745834 +0.4894626 0.5584371 0.4745834 +0.4961862 0.5584371 0.4745834 +0.5025087 0.5584371 0.4745834 +0.5084753 0.5584371 0.4745834 +0.514124 0.5584371 0.4745834 +0.519487 0.5584371 0.4745834 +0.5245917 0.5584371 0.4745834 +0.529462 0.5584371 0.4745834 +0.5341183 0.5584371 0.4745834 +0.5385787 0.5584371 0.4745834 +0.5428591 0.5584371 0.4745834 +0.5469733 0.5584371 0.4745834 +0.5509339 0.5584371 0.4745834 +0.5547519 0.5584371 0.4745834 +0.5584371 0.5584371 0.4745834 +0.5619986 0.5584371 0.4745834 +0.5654443 0.5584371 0.4745834 +0.5687816 0.5584371 0.4745834 +0.092819 0.5619986 0.4745834 +0.2262531 0.5619986 0.4745834 +0.2875993 0.5619986 0.4745834 +0.3262122 0.5619986 0.4745834 +0.3544566 0.5619986 0.4745834 +0.3767383 0.5619986 0.4745834 +0.3951413 0.5619986 0.4745834 +0.4108177 0.5619986 0.4745834 +0.4244723 0.5619986 0.4745834 +0.4365675 0.5619986 0.4745834 +0.4474232 0.5619986 0.4745834 +0.45727 0.5619986 0.4745834 +0.4662797 0.5619986 0.4745834 +0.4745834 0.5619986 0.4745834 +0.4822838 0.5619986 0.4745834 +0.4894626 0.5619986 0.4745834 +0.4961862 0.5619986 0.4745834 +0.5025087 0.5619986 0.4745834 +0.5084753 0.5619986 0.4745834 +0.514124 0.5619986 0.4745834 +0.519487 0.5619986 0.4745834 +0.5245917 0.5619986 0.4745834 +0.529462 0.5619986 0.4745834 +0.5341183 0.5619986 0.4745834 +0.5385787 0.5619986 0.4745834 +0.5428591 0.5619986 0.4745834 +0.5469733 0.5619986 0.4745834 +0.5509339 0.5619986 0.4745834 +0.5547519 0.5619986 0.4745834 +0.5584371 0.5619986 0.4745834 +0.5619986 0.5619986 0.4745834 +0.5654443 0.5619986 0.4745834 +0.5687816 0.5619986 0.4745834 +0.092819 0.5654443 0.4745834 +0.2262531 0.5654443 0.4745834 +0.2875993 0.5654443 0.4745834 +0.3262122 0.5654443 0.4745834 +0.3544566 0.5654443 0.4745834 +0.3767383 0.5654443 0.4745834 +0.3951413 0.5654443 0.4745834 +0.4108177 0.5654443 0.4745834 +0.4244723 0.5654443 0.4745834 +0.4365675 0.5654443 0.4745834 +0.4474232 0.5654443 0.4745834 +0.45727 0.5654443 0.4745834 +0.4662797 0.5654443 0.4745834 +0.4745834 0.5654443 0.4745834 +0.4822838 0.5654443 0.4745834 +0.4894626 0.5654443 0.4745834 +0.4961862 0.5654443 0.4745834 +0.5025087 0.5654443 0.4745834 +0.5084753 0.5654443 0.4745834 +0.514124 0.5654443 0.4745834 +0.519487 0.5654443 0.4745834 +0.5245917 0.5654443 0.4745834 +0.529462 0.5654443 0.4745834 +0.5341183 0.5654443 0.4745834 +0.5385787 0.5654443 0.4745834 +0.5428591 0.5654443 0.4745834 +0.5469733 0.5654443 0.4745834 +0.5509339 0.5654443 0.4745834 +0.5547519 0.5654443 0.4745834 +0.5584371 0.5654443 0.4745834 +0.5619986 0.5654443 0.4745834 +0.5654443 0.5654443 0.4745834 +0.5687816 0.5654443 0.4745834 +0.092819 0.5687816 0.4745834 +0.2262531 0.5687816 0.4745834 +0.2875993 0.5687816 0.4745834 +0.3262122 0.5687816 0.4745834 +0.3544566 0.5687816 0.4745834 +0.3767383 0.5687816 0.4745834 +0.3951413 0.5687816 0.4745834 +0.4108177 0.5687816 0.4745834 +0.4244723 0.5687816 0.4745834 +0.4365675 0.5687816 0.4745834 +0.4474232 0.5687816 0.4745834 +0.45727 0.5687816 0.4745834 +0.4662797 0.5687816 0.4745834 +0.4745834 0.5687816 0.4745834 +0.4822838 0.5687816 0.4745834 +0.4894626 0.5687816 0.4745834 +0.4961862 0.5687816 0.4745834 +0.5025087 0.5687816 0.4745834 +0.5084753 0.5687816 0.4745834 +0.514124 0.5687816 0.4745834 +0.519487 0.5687816 0.4745834 +0.5245917 0.5687816 0.4745834 +0.529462 0.5687816 0.4745834 +0.5341183 0.5687816 0.4745834 +0.5385787 0.5687816 0.4745834 +0.5428591 0.5687816 0.4745834 +0.5469733 0.5687816 0.4745834 +0.5509339 0.5687816 0.4745834 +0.5547519 0.5687816 0.4745834 +0.5584371 0.5687816 0.4745834 +0.5619986 0.5687816 0.4745834 +0.5654443 0.5687816 0.4745834 +0.5687816 0.5687816 0.4745834 +0.092819 0.092819 0.4822838 +0.2262531 0.092819 0.4822838 +0.2875993 0.092819 0.4822838 +0.3262122 0.092819 0.4822838 +0.3544566 0.092819 0.4822838 +0.3767383 0.092819 0.4822838 +0.3951413 0.092819 0.4822838 +0.4108177 0.092819 0.4822838 +0.4244723 0.092819 0.4822838 +0.4365675 0.092819 0.4822838 +0.4474232 0.092819 0.4822838 +0.45727 0.092819 0.4822838 +0.4662797 0.092819 0.4822838 +0.4745834 0.092819 0.4822838 +0.4822838 0.092819 0.4822838 +0.4894626 0.092819 0.4822838 +0.4961862 0.092819 0.4822838 +0.5025087 0.092819 0.4822838 +0.5084753 0.092819 0.4822838 +0.514124 0.092819 0.4822838 +0.519487 0.092819 0.4822838 +0.5245917 0.092819 0.4822838 +0.529462 0.092819 0.4822838 +0.5341183 0.092819 0.4822838 +0.5385787 0.092819 0.4822838 +0.5428591 0.092819 0.4822838 +0.5469733 0.092819 0.4822838 +0.5509339 0.092819 0.4822838 +0.5547519 0.092819 0.4822838 +0.5584371 0.092819 0.4822838 +0.5619986 0.092819 0.4822838 +0.5654443 0.092819 0.4822838 +0.5687816 0.092819 0.4822838 +0.092819 0.2262531 0.4822838 +0.2262531 0.2262531 0.4822838 +0.2875993 0.2262531 0.4822838 +0.3262122 0.2262531 0.4822838 +0.3544566 0.2262531 0.4822838 +0.3767383 0.2262531 0.4822838 +0.3951413 0.2262531 0.4822838 +0.4108177 0.2262531 0.4822838 +0.4244723 0.2262531 0.4822838 +0.4365675 0.2262531 0.4822838 +0.4474232 0.2262531 0.4822838 +0.45727 0.2262531 0.4822838 +0.4662797 0.2262531 0.4822838 +0.4745834 0.2262531 0.4822838 +0.4822838 0.2262531 0.4822838 +0.4894626 0.2262531 0.4822838 +0.4961862 0.2262531 0.4822838 +0.5025087 0.2262531 0.4822838 +0.5084753 0.2262531 0.4822838 +0.514124 0.2262531 0.4822838 +0.519487 0.2262531 0.4822838 +0.5245917 0.2262531 0.4822838 +0.529462 0.2262531 0.4822838 +0.5341183 0.2262531 0.4822838 +0.5385787 0.2262531 0.4822838 +0.5428591 0.2262531 0.4822838 +0.5469733 0.2262531 0.4822838 +0.5509339 0.2262531 0.4822838 +0.5547519 0.2262531 0.4822838 +0.5584371 0.2262531 0.4822838 +0.5619986 0.2262531 0.4822838 +0.5654443 0.2262531 0.4822838 +0.5687816 0.2262531 0.4822838 +0.092819 0.2875993 0.4822838 +0.2262531 0.2875993 0.4822838 +0.2875993 0.2875993 0.4822838 +0.3262122 0.2875993 0.4822838 +0.3544566 0.2875993 0.4822838 +0.3767383 0.2875993 0.4822838 +0.3951413 0.2875993 0.4822838 +0.4108177 0.2875993 0.4822838 +0.4244723 0.2875993 0.4822838 +0.4365675 0.2875993 0.4822838 +0.4474232 0.2875993 0.4822838 +0.45727 0.2875993 0.4822838 +0.4662797 0.2875993 0.4822838 +0.4745834 0.2875993 0.4822838 +0.4822838 0.2875993 0.4822838 +0.4894626 0.2875993 0.4822838 +0.4961862 0.2875993 0.4822838 +0.5025087 0.2875993 0.4822838 +0.5084753 0.2875993 0.4822838 +0.514124 0.2875993 0.4822838 +0.519487 0.2875993 0.4822838 +0.5245917 0.2875993 0.4822838 +0.529462 0.2875993 0.4822838 +0.5341183 0.2875993 0.4822838 +0.5385787 0.2875993 0.4822838 +0.5428591 0.2875993 0.4822838 +0.5469733 0.2875993 0.4822838 +0.5509339 0.2875993 0.4822838 +0.5547519 0.2875993 0.4822838 +0.5584371 0.2875993 0.4822838 +0.5619986 0.2875993 0.4822838 +0.5654443 0.2875993 0.4822838 +0.5687816 0.2875993 0.4822838 +0.092819 0.3262122 0.4822838 +0.2262531 0.3262122 0.4822838 +0.2875993 0.3262122 0.4822838 +0.3262122 0.3262122 0.4822838 +0.3544566 0.3262122 0.4822838 +0.3767383 0.3262122 0.4822838 +0.3951413 0.3262122 0.4822838 +0.4108177 0.3262122 0.4822838 +0.4244723 0.3262122 0.4822838 +0.4365675 0.3262122 0.4822838 +0.4474232 0.3262122 0.4822838 +0.45727 0.3262122 0.4822838 +0.4662797 0.3262122 0.4822838 +0.4745834 0.3262122 0.4822838 +0.4822838 0.3262122 0.4822838 +0.4894626 0.3262122 0.4822838 +0.4961862 0.3262122 0.4822838 +0.5025087 0.3262122 0.4822838 +0.5084753 0.3262122 0.4822838 +0.514124 0.3262122 0.4822838 +0.519487 0.3262122 0.4822838 +0.5245917 0.3262122 0.4822838 +0.529462 0.3262122 0.4822838 +0.5341183 0.3262122 0.4822838 +0.5385787 0.3262122 0.4822838 +0.5428591 0.3262122 0.4822838 +0.5469733 0.3262122 0.4822838 +0.5509339 0.3262122 0.4822838 +0.5547519 0.3262122 0.4822838 +0.5584371 0.3262122 0.4822838 +0.5619986 0.3262122 0.4822838 +0.5654443 0.3262122 0.4822838 +0.5687816 0.3262122 0.4822838 +0.092819 0.3544566 0.4822838 +0.2262531 0.3544566 0.4822838 +0.2875993 0.3544566 0.4822838 +0.3262122 0.3544566 0.4822838 +0.3544566 0.3544566 0.4822838 +0.3767383 0.3544566 0.4822838 +0.3951413 0.3544566 0.4822838 +0.4108177 0.3544566 0.4822838 +0.4244723 0.3544566 0.4822838 +0.4365675 0.3544566 0.4822838 +0.4474232 0.3544566 0.4822838 +0.45727 0.3544566 0.4822838 +0.4662797 0.3544566 0.4822838 +0.4745834 0.3544566 0.4822838 +0.4822838 0.3544566 0.4822838 +0.4894626 0.3544566 0.4822838 +0.4961862 0.3544566 0.4822838 +0.5025087 0.3544566 0.4822838 +0.5084753 0.3544566 0.4822838 +0.514124 0.3544566 0.4822838 +0.519487 0.3544566 0.4822838 +0.5245917 0.3544566 0.4822838 +0.529462 0.3544566 0.4822838 +0.5341183 0.3544566 0.4822838 +0.5385787 0.3544566 0.4822838 +0.5428591 0.3544566 0.4822838 +0.5469733 0.3544566 0.4822838 +0.5509339 0.3544566 0.4822838 +0.5547519 0.3544566 0.4822838 +0.5584371 0.3544566 0.4822838 +0.5619986 0.3544566 0.4822838 +0.5654443 0.3544566 0.4822838 +0.5687816 0.3544566 0.4822838 +0.092819 0.3767383 0.4822838 +0.2262531 0.3767383 0.4822838 +0.2875993 0.3767383 0.4822838 +0.3262122 0.3767383 0.4822838 +0.3544566 0.3767383 0.4822838 +0.3767383 0.3767383 0.4822838 +0.3951413 0.3767383 0.4822838 +0.4108177 0.3767383 0.4822838 +0.4244723 0.3767383 0.4822838 +0.4365675 0.3767383 0.4822838 +0.4474232 0.3767383 0.4822838 +0.45727 0.3767383 0.4822838 +0.4662797 0.3767383 0.4822838 +0.4745834 0.3767383 0.4822838 +0.4822838 0.3767383 0.4822838 +0.4894626 0.3767383 0.4822838 +0.4961862 0.3767383 0.4822838 +0.5025087 0.3767383 0.4822838 +0.5084753 0.3767383 0.4822838 +0.514124 0.3767383 0.4822838 +0.519487 0.3767383 0.4822838 +0.5245917 0.3767383 0.4822838 +0.529462 0.3767383 0.4822838 +0.5341183 0.3767383 0.4822838 +0.5385787 0.3767383 0.4822838 +0.5428591 0.3767383 0.4822838 +0.5469733 0.3767383 0.4822838 +0.5509339 0.3767383 0.4822838 +0.5547519 0.3767383 0.4822838 +0.5584371 0.3767383 0.4822838 +0.5619986 0.3767383 0.4822838 +0.5654443 0.3767383 0.4822838 +0.5687816 0.3767383 0.4822838 +0.092819 0.3951413 0.4822838 +0.2262531 0.3951413 0.4822838 +0.2875993 0.3951413 0.4822838 +0.3262122 0.3951413 0.4822838 +0.3544566 0.3951413 0.4822838 +0.3767383 0.3951413 0.4822838 +0.3951413 0.3951413 0.4822838 +0.4108177 0.3951413 0.4822838 +0.4244723 0.3951413 0.4822838 +0.4365675 0.3951413 0.4822838 +0.4474232 0.3951413 0.4822838 +0.45727 0.3951413 0.4822838 +0.4662797 0.3951413 0.4822838 +0.4745834 0.3951413 0.4822838 +0.4822838 0.3951413 0.4822838 +0.4894626 0.3951413 0.4822838 +0.4961862 0.3951413 0.4822838 +0.5025087 0.3951413 0.4822838 +0.5084753 0.3951413 0.4822838 +0.514124 0.3951413 0.4822838 +0.519487 0.3951413 0.4822838 +0.5245917 0.3951413 0.4822838 +0.529462 0.3951413 0.4822838 +0.5341183 0.3951413 0.4822838 +0.5385787 0.3951413 0.4822838 +0.5428591 0.3951413 0.4822838 +0.5469733 0.3951413 0.4822838 +0.5509339 0.3951413 0.4822838 +0.5547519 0.3951413 0.4822838 +0.5584371 0.3951413 0.4822838 +0.5619986 0.3951413 0.4822838 +0.5654443 0.3951413 0.4822838 +0.5687816 0.3951413 0.4822838 +0.092819 0.4108177 0.4822838 +0.2262531 0.4108177 0.4822838 +0.2875993 0.4108177 0.4822838 +0.3262122 0.4108177 0.4822838 +0.3544566 0.4108177 0.4822838 +0.3767383 0.4108177 0.4822838 +0.3951413 0.4108177 0.4822838 +0.4108177 0.4108177 0.4822838 +0.4244723 0.4108177 0.4822838 +0.4365675 0.4108177 0.4822838 +0.4474232 0.4108177 0.4822838 +0.45727 0.4108177 0.4822838 +0.4662797 0.4108177 0.4822838 +0.4745834 0.4108177 0.4822838 +0.4822838 0.4108177 0.4822838 +0.4894626 0.4108177 0.4822838 +0.4961862 0.4108177 0.4822838 +0.5025087 0.4108177 0.4822838 +0.5084753 0.4108177 0.4822838 +0.514124 0.4108177 0.4822838 +0.519487 0.4108177 0.4822838 +0.5245917 0.4108177 0.4822838 +0.529462 0.4108177 0.4822838 +0.5341183 0.4108177 0.4822838 +0.5385787 0.4108177 0.4822838 +0.5428591 0.4108177 0.4822838 +0.5469733 0.4108177 0.4822838 +0.5509339 0.4108177 0.4822838 +0.5547519 0.4108177 0.4822838 +0.5584371 0.4108177 0.4822838 +0.5619986 0.4108177 0.4822838 +0.5654443 0.4108177 0.4822838 +0.5687816 0.4108177 0.4822838 +0.092819 0.4244723 0.4822838 +0.2262531 0.4244723 0.4822838 +0.2875993 0.4244723 0.4822838 +0.3262122 0.4244723 0.4822838 +0.3544566 0.4244723 0.4822838 +0.3767383 0.4244723 0.4822838 +0.3951413 0.4244723 0.4822838 +0.4108177 0.4244723 0.4822838 +0.4244723 0.4244723 0.4822838 +0.4365675 0.4244723 0.4822838 +0.4474232 0.4244723 0.4822838 +0.45727 0.4244723 0.4822838 +0.4662797 0.4244723 0.4822838 +0.4745834 0.4244723 0.4822838 +0.4822838 0.4244723 0.4822838 +0.4894626 0.4244723 0.4822838 +0.4961862 0.4244723 0.4822838 +0.5025087 0.4244723 0.4822838 +0.5084753 0.4244723 0.4822838 +0.514124 0.4244723 0.4822838 +0.519487 0.4244723 0.4822838 +0.5245917 0.4244723 0.4822838 +0.529462 0.4244723 0.4822838 +0.5341183 0.4244723 0.4822838 +0.5385787 0.4244723 0.4822838 +0.5428591 0.4244723 0.4822838 +0.5469733 0.4244723 0.4822838 +0.5509339 0.4244723 0.4822838 +0.5547519 0.4244723 0.4822838 +0.5584371 0.4244723 0.4822838 +0.5619986 0.4244723 0.4822838 +0.5654443 0.4244723 0.4822838 +0.5687816 0.4244723 0.4822838 +0.092819 0.4365675 0.4822838 +0.2262531 0.4365675 0.4822838 +0.2875993 0.4365675 0.4822838 +0.3262122 0.4365675 0.4822838 +0.3544566 0.4365675 0.4822838 +0.3767383 0.4365675 0.4822838 +0.3951413 0.4365675 0.4822838 +0.4108177 0.4365675 0.4822838 +0.4244723 0.4365675 0.4822838 +0.4365675 0.4365675 0.4822838 +0.4474232 0.4365675 0.4822838 +0.45727 0.4365675 0.4822838 +0.4662797 0.4365675 0.4822838 +0.4745834 0.4365675 0.4822838 +0.4822838 0.4365675 0.4822838 +0.4894626 0.4365675 0.4822838 +0.4961862 0.4365675 0.4822838 +0.5025087 0.4365675 0.4822838 +0.5084753 0.4365675 0.4822838 +0.514124 0.4365675 0.4822838 +0.519487 0.4365675 0.4822838 +0.5245917 0.4365675 0.4822838 +0.529462 0.4365675 0.4822838 +0.5341183 0.4365675 0.4822838 +0.5385787 0.4365675 0.4822838 +0.5428591 0.4365675 0.4822838 +0.5469733 0.4365675 0.4822838 +0.5509339 0.4365675 0.4822838 +0.5547519 0.4365675 0.4822838 +0.5584371 0.4365675 0.4822838 +0.5619986 0.4365675 0.4822838 +0.5654443 0.4365675 0.4822838 +0.5687816 0.4365675 0.4822838 +0.092819 0.4474232 0.4822838 +0.2262531 0.4474232 0.4822838 +0.2875993 0.4474232 0.4822838 +0.3262122 0.4474232 0.4822838 +0.3544566 0.4474232 0.4822838 +0.3767383 0.4474232 0.4822838 +0.3951413 0.4474232 0.4822838 +0.4108177 0.4474232 0.4822838 +0.4244723 0.4474232 0.4822838 +0.4365675 0.4474232 0.4822838 +0.4474232 0.4474232 0.4822838 +0.45727 0.4474232 0.4822838 +0.4662797 0.4474232 0.4822838 +0.4745834 0.4474232 0.4822838 +0.4822838 0.4474232 0.4822838 +0.4894626 0.4474232 0.4822838 +0.4961862 0.4474232 0.4822838 +0.5025087 0.4474232 0.4822838 +0.5084753 0.4474232 0.4822838 +0.514124 0.4474232 0.4822838 +0.519487 0.4474232 0.4822838 +0.5245917 0.4474232 0.4822838 +0.529462 0.4474232 0.4822838 +0.5341183 0.4474232 0.4822838 +0.5385787 0.4474232 0.4822838 +0.5428591 0.4474232 0.4822838 +0.5469733 0.4474232 0.4822838 +0.5509339 0.4474232 0.4822838 +0.5547519 0.4474232 0.4822838 +0.5584371 0.4474232 0.4822838 +0.5619986 0.4474232 0.4822838 +0.5654443 0.4474232 0.4822838 +0.5687816 0.4474232 0.4822838 +0.092819 0.45727 0.4822838 +0.2262531 0.45727 0.4822838 +0.2875993 0.45727 0.4822838 +0.3262122 0.45727 0.4822838 +0.3544566 0.45727 0.4822838 +0.3767383 0.45727 0.4822838 +0.3951413 0.45727 0.4822838 +0.4108177 0.45727 0.4822838 +0.4244723 0.45727 0.4822838 +0.4365675 0.45727 0.4822838 +0.4474232 0.45727 0.4822838 +0.45727 0.45727 0.4822838 +0.4662797 0.45727 0.4822838 +0.4745834 0.45727 0.4822838 +0.4822838 0.45727 0.4822838 +0.4894626 0.45727 0.4822838 +0.4961862 0.45727 0.4822838 +0.5025087 0.45727 0.4822838 +0.5084753 0.45727 0.4822838 +0.514124 0.45727 0.4822838 +0.519487 0.45727 0.4822838 +0.5245917 0.45727 0.4822838 +0.529462 0.45727 0.4822838 +0.5341183 0.45727 0.4822838 +0.5385787 0.45727 0.4822838 +0.5428591 0.45727 0.4822838 +0.5469733 0.45727 0.4822838 +0.5509339 0.45727 0.4822838 +0.5547519 0.45727 0.4822838 +0.5584371 0.45727 0.4822838 +0.5619986 0.45727 0.4822838 +0.5654443 0.45727 0.4822838 +0.5687816 0.45727 0.4822838 +0.092819 0.4662797 0.4822838 +0.2262531 0.4662797 0.4822838 +0.2875993 0.4662797 0.4822838 +0.3262122 0.4662797 0.4822838 +0.3544566 0.4662797 0.4822838 +0.3767383 0.4662797 0.4822838 +0.3951413 0.4662797 0.4822838 +0.4108177 0.4662797 0.4822838 +0.4244723 0.4662797 0.4822838 +0.4365675 0.4662797 0.4822838 +0.4474232 0.4662797 0.4822838 +0.45727 0.4662797 0.4822838 +0.4662797 0.4662797 0.4822838 +0.4745834 0.4662797 0.4822838 +0.4822838 0.4662797 0.4822838 +0.4894626 0.4662797 0.4822838 +0.4961862 0.4662797 0.4822838 +0.5025087 0.4662797 0.4822838 +0.5084753 0.4662797 0.4822838 +0.514124 0.4662797 0.4822838 +0.519487 0.4662797 0.4822838 +0.5245917 0.4662797 0.4822838 +0.529462 0.4662797 0.4822838 +0.5341183 0.4662797 0.4822838 +0.5385787 0.4662797 0.4822838 +0.5428591 0.4662797 0.4822838 +0.5469733 0.4662797 0.4822838 +0.5509339 0.4662797 0.4822838 +0.5547519 0.4662797 0.4822838 +0.5584371 0.4662797 0.4822838 +0.5619986 0.4662797 0.4822838 +0.5654443 0.4662797 0.4822838 +0.5687816 0.4662797 0.4822838 +0.092819 0.4745834 0.4822838 +0.2262531 0.4745834 0.4822838 +0.2875993 0.4745834 0.4822838 +0.3262122 0.4745834 0.4822838 +0.3544566 0.4745834 0.4822838 +0.3767383 0.4745834 0.4822838 +0.3951413 0.4745834 0.4822838 +0.4108177 0.4745834 0.4822838 +0.4244723 0.4745834 0.4822838 +0.4365675 0.4745834 0.4822838 +0.4474232 0.4745834 0.4822838 +0.45727 0.4745834 0.4822838 +0.4662797 0.4745834 0.4822838 +0.4745834 0.4745834 0.4822838 +0.4822838 0.4745834 0.4822838 +0.4894626 0.4745834 0.4822838 +0.4961862 0.4745834 0.4822838 +0.5025087 0.4745834 0.4822838 +0.5084753 0.4745834 0.4822838 +0.514124 0.4745834 0.4822838 +0.519487 0.4745834 0.4822838 +0.5245917 0.4745834 0.4822838 +0.529462 0.4745834 0.4822838 +0.5341183 0.4745834 0.4822838 +0.5385787 0.4745834 0.4822838 +0.5428591 0.4745834 0.4822838 +0.5469733 0.4745834 0.4822838 +0.5509339 0.4745834 0.4822838 +0.5547519 0.4745834 0.4822838 +0.5584371 0.4745834 0.4822838 +0.5619986 0.4745834 0.4822838 +0.5654443 0.4745834 0.4822838 +0.5687816 0.4745834 0.4822838 +0.092819 0.4822838 0.4822838 +0.2262531 0.4822838 0.4822838 +0.2875993 0.4822838 0.4822838 +0.3262122 0.4822838 0.4822838 +0.3544566 0.4822838 0.4822838 +0.3767383 0.4822838 0.4822838 +0.3951413 0.4822838 0.4822838 +0.4108177 0.4822838 0.4822838 +0.4244723 0.4822838 0.4822838 +0.4365675 0.4822838 0.4822838 +0.4474232 0.4822838 0.4822838 +0.45727 0.4822838 0.4822838 +0.4662797 0.4822838 0.4822838 +0.4745834 0.4822838 0.4822838 +0.4822838 0.4822838 0.4822838 +0.4894626 0.4822838 0.4822838 +0.4961862 0.4822838 0.4822838 +0.5025087 0.4822838 0.4822838 +0.5084753 0.4822838 0.4822838 +0.514124 0.4822838 0.4822838 +0.519487 0.4822838 0.4822838 +0.5245917 0.4822838 0.4822838 +0.529462 0.4822838 0.4822838 +0.5341183 0.4822838 0.4822838 +0.5385787 0.4822838 0.4822838 +0.5428591 0.4822838 0.4822838 +0.5469733 0.4822838 0.4822838 +0.5509339 0.4822838 0.4822838 +0.5547519 0.4822838 0.4822838 +0.5584371 0.4822838 0.4822838 +0.5619986 0.4822838 0.4822838 +0.5654443 0.4822838 0.4822838 +0.5687816 0.4822838 0.4822838 +0.092819 0.4894626 0.4822838 +0.2262531 0.4894626 0.4822838 +0.2875993 0.4894626 0.4822838 +0.3262122 0.4894626 0.4822838 +0.3544566 0.4894626 0.4822838 +0.3767383 0.4894626 0.4822838 +0.3951413 0.4894626 0.4822838 +0.4108177 0.4894626 0.4822838 +0.4244723 0.4894626 0.4822838 +0.4365675 0.4894626 0.4822838 +0.4474232 0.4894626 0.4822838 +0.45727 0.4894626 0.4822838 +0.4662797 0.4894626 0.4822838 +0.4745834 0.4894626 0.4822838 +0.4822838 0.4894626 0.4822838 +0.4894626 0.4894626 0.4822838 +0.4961862 0.4894626 0.4822838 +0.5025087 0.4894626 0.4822838 +0.5084753 0.4894626 0.4822838 +0.514124 0.4894626 0.4822838 +0.519487 0.4894626 0.4822838 +0.5245917 0.4894626 0.4822838 +0.529462 0.4894626 0.4822838 +0.5341183 0.4894626 0.4822838 +0.5385787 0.4894626 0.4822838 +0.5428591 0.4894626 0.4822838 +0.5469733 0.4894626 0.4822838 +0.5509339 0.4894626 0.4822838 +0.5547519 0.4894626 0.4822838 +0.5584371 0.4894626 0.4822838 +0.5619986 0.4894626 0.4822838 +0.5654443 0.4894626 0.4822838 +0.5687816 0.4894626 0.4822838 +0.092819 0.4961862 0.4822838 +0.2262531 0.4961862 0.4822838 +0.2875993 0.4961862 0.4822838 +0.3262122 0.4961862 0.4822838 +0.3544566 0.4961862 0.4822838 +0.3767383 0.4961862 0.4822838 +0.3951413 0.4961862 0.4822838 +0.4108177 0.4961862 0.4822838 +0.4244723 0.4961862 0.4822838 +0.4365675 0.4961862 0.4822838 +0.4474232 0.4961862 0.4822838 +0.45727 0.4961862 0.4822838 +0.4662797 0.4961862 0.4822838 +0.4745834 0.4961862 0.4822838 +0.4822838 0.4961862 0.4822838 +0.4894626 0.4961862 0.4822838 +0.4961862 0.4961862 0.4822838 +0.5025087 0.4961862 0.4822838 +0.5084753 0.4961862 0.4822838 +0.514124 0.4961862 0.4822838 +0.519487 0.4961862 0.4822838 +0.5245917 0.4961862 0.4822838 +0.529462 0.4961862 0.4822838 +0.5341183 0.4961862 0.4822838 +0.5385787 0.4961862 0.4822838 +0.5428591 0.4961862 0.4822838 +0.5469733 0.4961862 0.4822838 +0.5509339 0.4961862 0.4822838 +0.5547519 0.4961862 0.4822838 +0.5584371 0.4961862 0.4822838 +0.5619986 0.4961862 0.4822838 +0.5654443 0.4961862 0.4822838 +0.5687816 0.4961862 0.4822838 +0.092819 0.5025087 0.4822838 +0.2262531 0.5025087 0.4822838 +0.2875993 0.5025087 0.4822838 +0.3262122 0.5025087 0.4822838 +0.3544566 0.5025087 0.4822838 +0.3767383 0.5025087 0.4822838 +0.3951413 0.5025087 0.4822838 +0.4108177 0.5025087 0.4822838 +0.4244723 0.5025087 0.4822838 +0.4365675 0.5025087 0.4822838 +0.4474232 0.5025087 0.4822838 +0.45727 0.5025087 0.4822838 +0.4662797 0.5025087 0.4822838 +0.4745834 0.5025087 0.4822838 +0.4822838 0.5025087 0.4822838 +0.4894626 0.5025087 0.4822838 +0.4961862 0.5025087 0.4822838 +0.5025087 0.5025087 0.4822838 +0.5084753 0.5025087 0.4822838 +0.514124 0.5025087 0.4822838 +0.519487 0.5025087 0.4822838 +0.5245917 0.5025087 0.4822838 +0.529462 0.5025087 0.4822838 +0.5341183 0.5025087 0.4822838 +0.5385787 0.5025087 0.4822838 +0.5428591 0.5025087 0.4822838 +0.5469733 0.5025087 0.4822838 +0.5509339 0.5025087 0.4822838 +0.5547519 0.5025087 0.4822838 +0.5584371 0.5025087 0.4822838 +0.5619986 0.5025087 0.4822838 +0.5654443 0.5025087 0.4822838 +0.5687816 0.5025087 0.4822838 +0.092819 0.5084753 0.4822838 +0.2262531 0.5084753 0.4822838 +0.2875993 0.5084753 0.4822838 +0.3262122 0.5084753 0.4822838 +0.3544566 0.5084753 0.4822838 +0.3767383 0.5084753 0.4822838 +0.3951413 0.5084753 0.4822838 +0.4108177 0.5084753 0.4822838 +0.4244723 0.5084753 0.4822838 +0.4365675 0.5084753 0.4822838 +0.4474232 0.5084753 0.4822838 +0.45727 0.5084753 0.4822838 +0.4662797 0.5084753 0.4822838 +0.4745834 0.5084753 0.4822838 +0.4822838 0.5084753 0.4822838 +0.4894626 0.5084753 0.4822838 +0.4961862 0.5084753 0.4822838 +0.5025087 0.5084753 0.4822838 +0.5084753 0.5084753 0.4822838 +0.514124 0.5084753 0.4822838 +0.519487 0.5084753 0.4822838 +0.5245917 0.5084753 0.4822838 +0.529462 0.5084753 0.4822838 +0.5341183 0.5084753 0.4822838 +0.5385787 0.5084753 0.4822838 +0.5428591 0.5084753 0.4822838 +0.5469733 0.5084753 0.4822838 +0.5509339 0.5084753 0.4822838 +0.5547519 0.5084753 0.4822838 +0.5584371 0.5084753 0.4822838 +0.5619986 0.5084753 0.4822838 +0.5654443 0.5084753 0.4822838 +0.5687816 0.5084753 0.4822838 +0.092819 0.514124 0.4822838 +0.2262531 0.514124 0.4822838 +0.2875993 0.514124 0.4822838 +0.3262122 0.514124 0.4822838 +0.3544566 0.514124 0.4822838 +0.3767383 0.514124 0.4822838 +0.3951413 0.514124 0.4822838 +0.4108177 0.514124 0.4822838 +0.4244723 0.514124 0.4822838 +0.4365675 0.514124 0.4822838 +0.4474232 0.514124 0.4822838 +0.45727 0.514124 0.4822838 +0.4662797 0.514124 0.4822838 +0.4745834 0.514124 0.4822838 +0.4822838 0.514124 0.4822838 +0.4894626 0.514124 0.4822838 +0.4961862 0.514124 0.4822838 +0.5025087 0.514124 0.4822838 +0.5084753 0.514124 0.4822838 +0.514124 0.514124 0.4822838 +0.519487 0.514124 0.4822838 +0.5245917 0.514124 0.4822838 +0.529462 0.514124 0.4822838 +0.5341183 0.514124 0.4822838 +0.5385787 0.514124 0.4822838 +0.5428591 0.514124 0.4822838 +0.5469733 0.514124 0.4822838 +0.5509339 0.514124 0.4822838 +0.5547519 0.514124 0.4822838 +0.5584371 0.514124 0.4822838 +0.5619986 0.514124 0.4822838 +0.5654443 0.514124 0.4822838 +0.5687816 0.514124 0.4822838 +0.092819 0.519487 0.4822838 +0.2262531 0.519487 0.4822838 +0.2875993 0.519487 0.4822838 +0.3262122 0.519487 0.4822838 +0.3544566 0.519487 0.4822838 +0.3767383 0.519487 0.4822838 +0.3951413 0.519487 0.4822838 +0.4108177 0.519487 0.4822838 +0.4244723 0.519487 0.4822838 +0.4365675 0.519487 0.4822838 +0.4474232 0.519487 0.4822838 +0.45727 0.519487 0.4822838 +0.4662797 0.519487 0.4822838 +0.4745834 0.519487 0.4822838 +0.4822838 0.519487 0.4822838 +0.4894626 0.519487 0.4822838 +0.4961862 0.519487 0.4822838 +0.5025087 0.519487 0.4822838 +0.5084753 0.519487 0.4822838 +0.514124 0.519487 0.4822838 +0.519487 0.519487 0.4822838 +0.5245917 0.519487 0.4822838 +0.529462 0.519487 0.4822838 +0.5341183 0.519487 0.4822838 +0.5385787 0.519487 0.4822838 +0.5428591 0.519487 0.4822838 +0.5469733 0.519487 0.4822838 +0.5509339 0.519487 0.4822838 +0.5547519 0.519487 0.4822838 +0.5584371 0.519487 0.4822838 +0.5619986 0.519487 0.4822838 +0.5654443 0.519487 0.4822838 +0.5687816 0.519487 0.4822838 +0.092819 0.5245917 0.4822838 +0.2262531 0.5245917 0.4822838 +0.2875993 0.5245917 0.4822838 +0.3262122 0.5245917 0.4822838 +0.3544566 0.5245917 0.4822838 +0.3767383 0.5245917 0.4822838 +0.3951413 0.5245917 0.4822838 +0.4108177 0.5245917 0.4822838 +0.4244723 0.5245917 0.4822838 +0.4365675 0.5245917 0.4822838 +0.4474232 0.5245917 0.4822838 +0.45727 0.5245917 0.4822838 +0.4662797 0.5245917 0.4822838 +0.4745834 0.5245917 0.4822838 +0.4822838 0.5245917 0.4822838 +0.4894626 0.5245917 0.4822838 +0.4961862 0.5245917 0.4822838 +0.5025087 0.5245917 0.4822838 +0.5084753 0.5245917 0.4822838 +0.514124 0.5245917 0.4822838 +0.519487 0.5245917 0.4822838 +0.5245917 0.5245917 0.4822838 +0.529462 0.5245917 0.4822838 +0.5341183 0.5245917 0.4822838 +0.5385787 0.5245917 0.4822838 +0.5428591 0.5245917 0.4822838 +0.5469733 0.5245917 0.4822838 +0.5509339 0.5245917 0.4822838 +0.5547519 0.5245917 0.4822838 +0.5584371 0.5245917 0.4822838 +0.5619986 0.5245917 0.4822838 +0.5654443 0.5245917 0.4822838 +0.5687816 0.5245917 0.4822838 +0.092819 0.529462 0.4822838 +0.2262531 0.529462 0.4822838 +0.2875993 0.529462 0.4822838 +0.3262122 0.529462 0.4822838 +0.3544566 0.529462 0.4822838 +0.3767383 0.529462 0.4822838 +0.3951413 0.529462 0.4822838 +0.4108177 0.529462 0.4822838 +0.4244723 0.529462 0.4822838 +0.4365675 0.529462 0.4822838 +0.4474232 0.529462 0.4822838 +0.45727 0.529462 0.4822838 +0.4662797 0.529462 0.4822838 +0.4745834 0.529462 0.4822838 +0.4822838 0.529462 0.4822838 +0.4894626 0.529462 0.4822838 +0.4961862 0.529462 0.4822838 +0.5025087 0.529462 0.4822838 +0.5084753 0.529462 0.4822838 +0.514124 0.529462 0.4822838 +0.519487 0.529462 0.4822838 +0.5245917 0.529462 0.4822838 +0.529462 0.529462 0.4822838 +0.5341183 0.529462 0.4822838 +0.5385787 0.529462 0.4822838 +0.5428591 0.529462 0.4822838 +0.5469733 0.529462 0.4822838 +0.5509339 0.529462 0.4822838 +0.5547519 0.529462 0.4822838 +0.5584371 0.529462 0.4822838 +0.5619986 0.529462 0.4822838 +0.5654443 0.529462 0.4822838 +0.5687816 0.529462 0.4822838 +0.092819 0.5341183 0.4822838 +0.2262531 0.5341183 0.4822838 +0.2875993 0.5341183 0.4822838 +0.3262122 0.5341183 0.4822838 +0.3544566 0.5341183 0.4822838 +0.3767383 0.5341183 0.4822838 +0.3951413 0.5341183 0.4822838 +0.4108177 0.5341183 0.4822838 +0.4244723 0.5341183 0.4822838 +0.4365675 0.5341183 0.4822838 +0.4474232 0.5341183 0.4822838 +0.45727 0.5341183 0.4822838 +0.4662797 0.5341183 0.4822838 +0.4745834 0.5341183 0.4822838 +0.4822838 0.5341183 0.4822838 +0.4894626 0.5341183 0.4822838 +0.4961862 0.5341183 0.4822838 +0.5025087 0.5341183 0.4822838 +0.5084753 0.5341183 0.4822838 +0.514124 0.5341183 0.4822838 +0.519487 0.5341183 0.4822838 +0.5245917 0.5341183 0.4822838 +0.529462 0.5341183 0.4822838 +0.5341183 0.5341183 0.4822838 +0.5385787 0.5341183 0.4822838 +0.5428591 0.5341183 0.4822838 +0.5469733 0.5341183 0.4822838 +0.5509339 0.5341183 0.4822838 +0.5547519 0.5341183 0.4822838 +0.5584371 0.5341183 0.4822838 +0.5619986 0.5341183 0.4822838 +0.5654443 0.5341183 0.4822838 +0.5687816 0.5341183 0.4822838 +0.092819 0.5385787 0.4822838 +0.2262531 0.5385787 0.4822838 +0.2875993 0.5385787 0.4822838 +0.3262122 0.5385787 0.4822838 +0.3544566 0.5385787 0.4822838 +0.3767383 0.5385787 0.4822838 +0.3951413 0.5385787 0.4822838 +0.4108177 0.5385787 0.4822838 +0.4244723 0.5385787 0.4822838 +0.4365675 0.5385787 0.4822838 +0.4474232 0.5385787 0.4822838 +0.45727 0.5385787 0.4822838 +0.4662797 0.5385787 0.4822838 +0.4745834 0.5385787 0.4822838 +0.4822838 0.5385787 0.4822838 +0.4894626 0.5385787 0.4822838 +0.4961862 0.5385787 0.4822838 +0.5025087 0.5385787 0.4822838 +0.5084753 0.5385787 0.4822838 +0.514124 0.5385787 0.4822838 +0.519487 0.5385787 0.4822838 +0.5245917 0.5385787 0.4822838 +0.529462 0.5385787 0.4822838 +0.5341183 0.5385787 0.4822838 +0.5385787 0.5385787 0.4822838 +0.5428591 0.5385787 0.4822838 +0.5469733 0.5385787 0.4822838 +0.5509339 0.5385787 0.4822838 +0.5547519 0.5385787 0.4822838 +0.5584371 0.5385787 0.4822838 +0.5619986 0.5385787 0.4822838 +0.5654443 0.5385787 0.4822838 +0.5687816 0.5385787 0.4822838 +0.092819 0.5428591 0.4822838 +0.2262531 0.5428591 0.4822838 +0.2875993 0.5428591 0.4822838 +0.3262122 0.5428591 0.4822838 +0.3544566 0.5428591 0.4822838 +0.3767383 0.5428591 0.4822838 +0.3951413 0.5428591 0.4822838 +0.4108177 0.5428591 0.4822838 +0.4244723 0.5428591 0.4822838 +0.4365675 0.5428591 0.4822838 +0.4474232 0.5428591 0.4822838 +0.45727 0.5428591 0.4822838 +0.4662797 0.5428591 0.4822838 +0.4745834 0.5428591 0.4822838 +0.4822838 0.5428591 0.4822838 +0.4894626 0.5428591 0.4822838 +0.4961862 0.5428591 0.4822838 +0.5025087 0.5428591 0.4822838 +0.5084753 0.5428591 0.4822838 +0.514124 0.5428591 0.4822838 +0.519487 0.5428591 0.4822838 +0.5245917 0.5428591 0.4822838 +0.529462 0.5428591 0.4822838 +0.5341183 0.5428591 0.4822838 +0.5385787 0.5428591 0.4822838 +0.5428591 0.5428591 0.4822838 +0.5469733 0.5428591 0.4822838 +0.5509339 0.5428591 0.4822838 +0.5547519 0.5428591 0.4822838 +0.5584371 0.5428591 0.4822838 +0.5619986 0.5428591 0.4822838 +0.5654443 0.5428591 0.4822838 +0.5687816 0.5428591 0.4822838 +0.092819 0.5469733 0.4822838 +0.2262531 0.5469733 0.4822838 +0.2875993 0.5469733 0.4822838 +0.3262122 0.5469733 0.4822838 +0.3544566 0.5469733 0.4822838 +0.3767383 0.5469733 0.4822838 +0.3951413 0.5469733 0.4822838 +0.4108177 0.5469733 0.4822838 +0.4244723 0.5469733 0.4822838 +0.4365675 0.5469733 0.4822838 +0.4474232 0.5469733 0.4822838 +0.45727 0.5469733 0.4822838 +0.4662797 0.5469733 0.4822838 +0.4745834 0.5469733 0.4822838 +0.4822838 0.5469733 0.4822838 +0.4894626 0.5469733 0.4822838 +0.4961862 0.5469733 0.4822838 +0.5025087 0.5469733 0.4822838 +0.5084753 0.5469733 0.4822838 +0.514124 0.5469733 0.4822838 +0.519487 0.5469733 0.4822838 +0.5245917 0.5469733 0.4822838 +0.529462 0.5469733 0.4822838 +0.5341183 0.5469733 0.4822838 +0.5385787 0.5469733 0.4822838 +0.5428591 0.5469733 0.4822838 +0.5469733 0.5469733 0.4822838 +0.5509339 0.5469733 0.4822838 +0.5547519 0.5469733 0.4822838 +0.5584371 0.5469733 0.4822838 +0.5619986 0.5469733 0.4822838 +0.5654443 0.5469733 0.4822838 +0.5687816 0.5469733 0.4822838 +0.092819 0.5509339 0.4822838 +0.2262531 0.5509339 0.4822838 +0.2875993 0.5509339 0.4822838 +0.3262122 0.5509339 0.4822838 +0.3544566 0.5509339 0.4822838 +0.3767383 0.5509339 0.4822838 +0.3951413 0.5509339 0.4822838 +0.4108177 0.5509339 0.4822838 +0.4244723 0.5509339 0.4822838 +0.4365675 0.5509339 0.4822838 +0.4474232 0.5509339 0.4822838 +0.45727 0.5509339 0.4822838 +0.4662797 0.5509339 0.4822838 +0.4745834 0.5509339 0.4822838 +0.4822838 0.5509339 0.4822838 +0.4894626 0.5509339 0.4822838 +0.4961862 0.5509339 0.4822838 +0.5025087 0.5509339 0.4822838 +0.5084753 0.5509339 0.4822838 +0.514124 0.5509339 0.4822838 +0.519487 0.5509339 0.4822838 +0.5245917 0.5509339 0.4822838 +0.529462 0.5509339 0.4822838 +0.5341183 0.5509339 0.4822838 +0.5385787 0.5509339 0.4822838 +0.5428591 0.5509339 0.4822838 +0.5469733 0.5509339 0.4822838 +0.5509339 0.5509339 0.4822838 +0.5547519 0.5509339 0.4822838 +0.5584371 0.5509339 0.4822838 +0.5619986 0.5509339 0.4822838 +0.5654443 0.5509339 0.4822838 +0.5687816 0.5509339 0.4822838 +0.092819 0.5547519 0.4822838 +0.2262531 0.5547519 0.4822838 +0.2875993 0.5547519 0.4822838 +0.3262122 0.5547519 0.4822838 +0.3544566 0.5547519 0.4822838 +0.3767383 0.5547519 0.4822838 +0.3951413 0.5547519 0.4822838 +0.4108177 0.5547519 0.4822838 +0.4244723 0.5547519 0.4822838 +0.4365675 0.5547519 0.4822838 +0.4474232 0.5547519 0.4822838 +0.45727 0.5547519 0.4822838 +0.4662797 0.5547519 0.4822838 +0.4745834 0.5547519 0.4822838 +0.4822838 0.5547519 0.4822838 +0.4894626 0.5547519 0.4822838 +0.4961862 0.5547519 0.4822838 +0.5025087 0.5547519 0.4822838 +0.5084753 0.5547519 0.4822838 +0.514124 0.5547519 0.4822838 +0.519487 0.5547519 0.4822838 +0.5245917 0.5547519 0.4822838 +0.529462 0.5547519 0.4822838 +0.5341183 0.5547519 0.4822838 +0.5385787 0.5547519 0.4822838 +0.5428591 0.5547519 0.4822838 +0.5469733 0.5547519 0.4822838 +0.5509339 0.5547519 0.4822838 +0.5547519 0.5547519 0.4822838 +0.5584371 0.5547519 0.4822838 +0.5619986 0.5547519 0.4822838 +0.5654443 0.5547519 0.4822838 +0.5687816 0.5547519 0.4822838 +0.092819 0.5584371 0.4822838 +0.2262531 0.5584371 0.4822838 +0.2875993 0.5584371 0.4822838 +0.3262122 0.5584371 0.4822838 +0.3544566 0.5584371 0.4822838 +0.3767383 0.5584371 0.4822838 +0.3951413 0.5584371 0.4822838 +0.4108177 0.5584371 0.4822838 +0.4244723 0.5584371 0.4822838 +0.4365675 0.5584371 0.4822838 +0.4474232 0.5584371 0.4822838 +0.45727 0.5584371 0.4822838 +0.4662797 0.5584371 0.4822838 +0.4745834 0.5584371 0.4822838 +0.4822838 0.5584371 0.4822838 +0.4894626 0.5584371 0.4822838 +0.4961862 0.5584371 0.4822838 +0.5025087 0.5584371 0.4822838 +0.5084753 0.5584371 0.4822838 +0.514124 0.5584371 0.4822838 +0.519487 0.5584371 0.4822838 +0.5245917 0.5584371 0.4822838 +0.529462 0.5584371 0.4822838 +0.5341183 0.5584371 0.4822838 +0.5385787 0.5584371 0.4822838 +0.5428591 0.5584371 0.4822838 +0.5469733 0.5584371 0.4822838 +0.5509339 0.5584371 0.4822838 +0.5547519 0.5584371 0.4822838 +0.5584371 0.5584371 0.4822838 +0.5619986 0.5584371 0.4822838 +0.5654443 0.5584371 0.4822838 +0.5687816 0.5584371 0.4822838 +0.092819 0.5619986 0.4822838 +0.2262531 0.5619986 0.4822838 +0.2875993 0.5619986 0.4822838 +0.3262122 0.5619986 0.4822838 +0.3544566 0.5619986 0.4822838 +0.3767383 0.5619986 0.4822838 +0.3951413 0.5619986 0.4822838 +0.4108177 0.5619986 0.4822838 +0.4244723 0.5619986 0.4822838 +0.4365675 0.5619986 0.4822838 +0.4474232 0.5619986 0.4822838 +0.45727 0.5619986 0.4822838 +0.4662797 0.5619986 0.4822838 +0.4745834 0.5619986 0.4822838 +0.4822838 0.5619986 0.4822838 +0.4894626 0.5619986 0.4822838 +0.4961862 0.5619986 0.4822838 +0.5025087 0.5619986 0.4822838 +0.5084753 0.5619986 0.4822838 +0.514124 0.5619986 0.4822838 +0.519487 0.5619986 0.4822838 +0.5245917 0.5619986 0.4822838 +0.529462 0.5619986 0.4822838 +0.5341183 0.5619986 0.4822838 +0.5385787 0.5619986 0.4822838 +0.5428591 0.5619986 0.4822838 +0.5469733 0.5619986 0.4822838 +0.5509339 0.5619986 0.4822838 +0.5547519 0.5619986 0.4822838 +0.5584371 0.5619986 0.4822838 +0.5619986 0.5619986 0.4822838 +0.5654443 0.5619986 0.4822838 +0.5687816 0.5619986 0.4822838 +0.092819 0.5654443 0.4822838 +0.2262531 0.5654443 0.4822838 +0.2875993 0.5654443 0.4822838 +0.3262122 0.5654443 0.4822838 +0.3544566 0.5654443 0.4822838 +0.3767383 0.5654443 0.4822838 +0.3951413 0.5654443 0.4822838 +0.4108177 0.5654443 0.4822838 +0.4244723 0.5654443 0.4822838 +0.4365675 0.5654443 0.4822838 +0.4474232 0.5654443 0.4822838 +0.45727 0.5654443 0.4822838 +0.4662797 0.5654443 0.4822838 +0.4745834 0.5654443 0.4822838 +0.4822838 0.5654443 0.4822838 +0.4894626 0.5654443 0.4822838 +0.4961862 0.5654443 0.4822838 +0.5025087 0.5654443 0.4822838 +0.5084753 0.5654443 0.4822838 +0.514124 0.5654443 0.4822838 +0.519487 0.5654443 0.4822838 +0.5245917 0.5654443 0.4822838 +0.529462 0.5654443 0.4822838 +0.5341183 0.5654443 0.4822838 +0.5385787 0.5654443 0.4822838 +0.5428591 0.5654443 0.4822838 +0.5469733 0.5654443 0.4822838 +0.5509339 0.5654443 0.4822838 +0.5547519 0.5654443 0.4822838 +0.5584371 0.5654443 0.4822838 +0.5619986 0.5654443 0.4822838 +0.5654443 0.5654443 0.4822838 +0.5687816 0.5654443 0.4822838 +0.092819 0.5687816 0.4822838 +0.2262531 0.5687816 0.4822838 +0.2875993 0.5687816 0.4822838 +0.3262122 0.5687816 0.4822838 +0.3544566 0.5687816 0.4822838 +0.3767383 0.5687816 0.4822838 +0.3951413 0.5687816 0.4822838 +0.4108177 0.5687816 0.4822838 +0.4244723 0.5687816 0.4822838 +0.4365675 0.5687816 0.4822838 +0.4474232 0.5687816 0.4822838 +0.45727 0.5687816 0.4822838 +0.4662797 0.5687816 0.4822838 +0.4745834 0.5687816 0.4822838 +0.4822838 0.5687816 0.4822838 +0.4894626 0.5687816 0.4822838 +0.4961862 0.5687816 0.4822838 +0.5025087 0.5687816 0.4822838 +0.5084753 0.5687816 0.4822838 +0.514124 0.5687816 0.4822838 +0.519487 0.5687816 0.4822838 +0.5245917 0.5687816 0.4822838 +0.529462 0.5687816 0.4822838 +0.5341183 0.5687816 0.4822838 +0.5385787 0.5687816 0.4822838 +0.5428591 0.5687816 0.4822838 +0.5469733 0.5687816 0.4822838 +0.5509339 0.5687816 0.4822838 +0.5547519 0.5687816 0.4822838 +0.5584371 0.5687816 0.4822838 +0.5619986 0.5687816 0.4822838 +0.5654443 0.5687816 0.4822838 +0.5687816 0.5687816 0.4822838 +0.092819 0.092819 0.4894626 +0.2262531 0.092819 0.4894626 +0.2875993 0.092819 0.4894626 +0.3262122 0.092819 0.4894626 +0.3544566 0.092819 0.4894626 +0.3767383 0.092819 0.4894626 +0.3951413 0.092819 0.4894626 +0.4108177 0.092819 0.4894626 +0.4244723 0.092819 0.4894626 +0.4365675 0.092819 0.4894626 +0.4474232 0.092819 0.4894626 +0.45727 0.092819 0.4894626 +0.4662797 0.092819 0.4894626 +0.4745834 0.092819 0.4894626 +0.4822838 0.092819 0.4894626 +0.4894626 0.092819 0.4894626 +0.4961862 0.092819 0.4894626 +0.5025087 0.092819 0.4894626 +0.5084753 0.092819 0.4894626 +0.514124 0.092819 0.4894626 +0.519487 0.092819 0.4894626 +0.5245917 0.092819 0.4894626 +0.529462 0.092819 0.4894626 +0.5341183 0.092819 0.4894626 +0.5385787 0.092819 0.4894626 +0.5428591 0.092819 0.4894626 +0.5469733 0.092819 0.4894626 +0.5509339 0.092819 0.4894626 +0.5547519 0.092819 0.4894626 +0.5584371 0.092819 0.4894626 +0.5619986 0.092819 0.4894626 +0.5654443 0.092819 0.4894626 +0.5687816 0.092819 0.4894626 +0.092819 0.2262531 0.4894626 +0.2262531 0.2262531 0.4894626 +0.2875993 0.2262531 0.4894626 +0.3262122 0.2262531 0.4894626 +0.3544566 0.2262531 0.4894626 +0.3767383 0.2262531 0.4894626 +0.3951413 0.2262531 0.4894626 +0.4108177 0.2262531 0.4894626 +0.4244723 0.2262531 0.4894626 +0.4365675 0.2262531 0.4894626 +0.4474232 0.2262531 0.4894626 +0.45727 0.2262531 0.4894626 +0.4662797 0.2262531 0.4894626 +0.4745834 0.2262531 0.4894626 +0.4822838 0.2262531 0.4894626 +0.4894626 0.2262531 0.4894626 +0.4961862 0.2262531 0.4894626 +0.5025087 0.2262531 0.4894626 +0.5084753 0.2262531 0.4894626 +0.514124 0.2262531 0.4894626 +0.519487 0.2262531 0.4894626 +0.5245917 0.2262531 0.4894626 +0.529462 0.2262531 0.4894626 +0.5341183 0.2262531 0.4894626 +0.5385787 0.2262531 0.4894626 +0.5428591 0.2262531 0.4894626 +0.5469733 0.2262531 0.4894626 +0.5509339 0.2262531 0.4894626 +0.5547519 0.2262531 0.4894626 +0.5584371 0.2262531 0.4894626 +0.5619986 0.2262531 0.4894626 +0.5654443 0.2262531 0.4894626 +0.5687816 0.2262531 0.4894626 +0.092819 0.2875993 0.4894626 +0.2262531 0.2875993 0.4894626 +0.2875993 0.2875993 0.4894626 +0.3262122 0.2875993 0.4894626 +0.3544566 0.2875993 0.4894626 +0.3767383 0.2875993 0.4894626 +0.3951413 0.2875993 0.4894626 +0.4108177 0.2875993 0.4894626 +0.4244723 0.2875993 0.4894626 +0.4365675 0.2875993 0.4894626 +0.4474232 0.2875993 0.4894626 +0.45727 0.2875993 0.4894626 +0.4662797 0.2875993 0.4894626 +0.4745834 0.2875993 0.4894626 +0.4822838 0.2875993 0.4894626 +0.4894626 0.2875993 0.4894626 +0.4961862 0.2875993 0.4894626 +0.5025087 0.2875993 0.4894626 +0.5084753 0.2875993 0.4894626 +0.514124 0.2875993 0.4894626 +0.519487 0.2875993 0.4894626 +0.5245917 0.2875993 0.4894626 +0.529462 0.2875993 0.4894626 +0.5341183 0.2875993 0.4894626 +0.5385787 0.2875993 0.4894626 +0.5428591 0.2875993 0.4894626 +0.5469733 0.2875993 0.4894626 +0.5509339 0.2875993 0.4894626 +0.5547519 0.2875993 0.4894626 +0.5584371 0.2875993 0.4894626 +0.5619986 0.2875993 0.4894626 +0.5654443 0.2875993 0.4894626 +0.5687816 0.2875993 0.4894626 +0.092819 0.3262122 0.4894626 +0.2262531 0.3262122 0.4894626 +0.2875993 0.3262122 0.4894626 +0.3262122 0.3262122 0.4894626 +0.3544566 0.3262122 0.4894626 +0.3767383 0.3262122 0.4894626 +0.3951413 0.3262122 0.4894626 +0.4108177 0.3262122 0.4894626 +0.4244723 0.3262122 0.4894626 +0.4365675 0.3262122 0.4894626 +0.4474232 0.3262122 0.4894626 +0.45727 0.3262122 0.4894626 +0.4662797 0.3262122 0.4894626 +0.4745834 0.3262122 0.4894626 +0.4822838 0.3262122 0.4894626 +0.4894626 0.3262122 0.4894626 +0.4961862 0.3262122 0.4894626 +0.5025087 0.3262122 0.4894626 +0.5084753 0.3262122 0.4894626 +0.514124 0.3262122 0.4894626 +0.519487 0.3262122 0.4894626 +0.5245917 0.3262122 0.4894626 +0.529462 0.3262122 0.4894626 +0.5341183 0.3262122 0.4894626 +0.5385787 0.3262122 0.4894626 +0.5428591 0.3262122 0.4894626 +0.5469733 0.3262122 0.4894626 +0.5509339 0.3262122 0.4894626 +0.5547519 0.3262122 0.4894626 +0.5584371 0.3262122 0.4894626 +0.5619986 0.3262122 0.4894626 +0.5654443 0.3262122 0.4894626 +0.5687816 0.3262122 0.4894626 +0.092819 0.3544566 0.4894626 +0.2262531 0.3544566 0.4894626 +0.2875993 0.3544566 0.4894626 +0.3262122 0.3544566 0.4894626 +0.3544566 0.3544566 0.4894626 +0.3767383 0.3544566 0.4894626 +0.3951413 0.3544566 0.4894626 +0.4108177 0.3544566 0.4894626 +0.4244723 0.3544566 0.4894626 +0.4365675 0.3544566 0.4894626 +0.4474232 0.3544566 0.4894626 +0.45727 0.3544566 0.4894626 +0.4662797 0.3544566 0.4894626 +0.4745834 0.3544566 0.4894626 +0.4822838 0.3544566 0.4894626 +0.4894626 0.3544566 0.4894626 +0.4961862 0.3544566 0.4894626 +0.5025087 0.3544566 0.4894626 +0.5084753 0.3544566 0.4894626 +0.514124 0.3544566 0.4894626 +0.519487 0.3544566 0.4894626 +0.5245917 0.3544566 0.4894626 +0.529462 0.3544566 0.4894626 +0.5341183 0.3544566 0.4894626 +0.5385787 0.3544566 0.4894626 +0.5428591 0.3544566 0.4894626 +0.5469733 0.3544566 0.4894626 +0.5509339 0.3544566 0.4894626 +0.5547519 0.3544566 0.4894626 +0.5584371 0.3544566 0.4894626 +0.5619986 0.3544566 0.4894626 +0.5654443 0.3544566 0.4894626 +0.5687816 0.3544566 0.4894626 +0.092819 0.3767383 0.4894626 +0.2262531 0.3767383 0.4894626 +0.2875993 0.3767383 0.4894626 +0.3262122 0.3767383 0.4894626 +0.3544566 0.3767383 0.4894626 +0.3767383 0.3767383 0.4894626 +0.3951413 0.3767383 0.4894626 +0.4108177 0.3767383 0.4894626 +0.4244723 0.3767383 0.4894626 +0.4365675 0.3767383 0.4894626 +0.4474232 0.3767383 0.4894626 +0.45727 0.3767383 0.4894626 +0.4662797 0.3767383 0.4894626 +0.4745834 0.3767383 0.4894626 +0.4822838 0.3767383 0.4894626 +0.4894626 0.3767383 0.4894626 +0.4961862 0.3767383 0.4894626 +0.5025087 0.3767383 0.4894626 +0.5084753 0.3767383 0.4894626 +0.514124 0.3767383 0.4894626 +0.519487 0.3767383 0.4894626 +0.5245917 0.3767383 0.4894626 +0.529462 0.3767383 0.4894626 +0.5341183 0.3767383 0.4894626 +0.5385787 0.3767383 0.4894626 +0.5428591 0.3767383 0.4894626 +0.5469733 0.3767383 0.4894626 +0.5509339 0.3767383 0.4894626 +0.5547519 0.3767383 0.4894626 +0.5584371 0.3767383 0.4894626 +0.5619986 0.3767383 0.4894626 +0.5654443 0.3767383 0.4894626 +0.5687816 0.3767383 0.4894626 +0.092819 0.3951413 0.4894626 +0.2262531 0.3951413 0.4894626 +0.2875993 0.3951413 0.4894626 +0.3262122 0.3951413 0.4894626 +0.3544566 0.3951413 0.4894626 +0.3767383 0.3951413 0.4894626 +0.3951413 0.3951413 0.4894626 +0.4108177 0.3951413 0.4894626 +0.4244723 0.3951413 0.4894626 +0.4365675 0.3951413 0.4894626 +0.4474232 0.3951413 0.4894626 +0.45727 0.3951413 0.4894626 +0.4662797 0.3951413 0.4894626 +0.4745834 0.3951413 0.4894626 +0.4822838 0.3951413 0.4894626 +0.4894626 0.3951413 0.4894626 +0.4961862 0.3951413 0.4894626 +0.5025087 0.3951413 0.4894626 +0.5084753 0.3951413 0.4894626 +0.514124 0.3951413 0.4894626 +0.519487 0.3951413 0.4894626 +0.5245917 0.3951413 0.4894626 +0.529462 0.3951413 0.4894626 +0.5341183 0.3951413 0.4894626 +0.5385787 0.3951413 0.4894626 +0.5428591 0.3951413 0.4894626 +0.5469733 0.3951413 0.4894626 +0.5509339 0.3951413 0.4894626 +0.5547519 0.3951413 0.4894626 +0.5584371 0.3951413 0.4894626 +0.5619986 0.3951413 0.4894626 +0.5654443 0.3951413 0.4894626 +0.5687816 0.3951413 0.4894626 +0.092819 0.4108177 0.4894626 +0.2262531 0.4108177 0.4894626 +0.2875993 0.4108177 0.4894626 +0.3262122 0.4108177 0.4894626 +0.3544566 0.4108177 0.4894626 +0.3767383 0.4108177 0.4894626 +0.3951413 0.4108177 0.4894626 +0.4108177 0.4108177 0.4894626 +0.4244723 0.4108177 0.4894626 +0.4365675 0.4108177 0.4894626 +0.4474232 0.4108177 0.4894626 +0.45727 0.4108177 0.4894626 +0.4662797 0.4108177 0.4894626 +0.4745834 0.4108177 0.4894626 +0.4822838 0.4108177 0.4894626 +0.4894626 0.4108177 0.4894626 +0.4961862 0.4108177 0.4894626 +0.5025087 0.4108177 0.4894626 +0.5084753 0.4108177 0.4894626 +0.514124 0.4108177 0.4894626 +0.519487 0.4108177 0.4894626 +0.5245917 0.4108177 0.4894626 +0.529462 0.4108177 0.4894626 +0.5341183 0.4108177 0.4894626 +0.5385787 0.4108177 0.4894626 +0.5428591 0.4108177 0.4894626 +0.5469733 0.4108177 0.4894626 +0.5509339 0.4108177 0.4894626 +0.5547519 0.4108177 0.4894626 +0.5584371 0.4108177 0.4894626 +0.5619986 0.4108177 0.4894626 +0.5654443 0.4108177 0.4894626 +0.5687816 0.4108177 0.4894626 +0.092819 0.4244723 0.4894626 +0.2262531 0.4244723 0.4894626 +0.2875993 0.4244723 0.4894626 +0.3262122 0.4244723 0.4894626 +0.3544566 0.4244723 0.4894626 +0.3767383 0.4244723 0.4894626 +0.3951413 0.4244723 0.4894626 +0.4108177 0.4244723 0.4894626 +0.4244723 0.4244723 0.4894626 +0.4365675 0.4244723 0.4894626 +0.4474232 0.4244723 0.4894626 +0.45727 0.4244723 0.4894626 +0.4662797 0.4244723 0.4894626 +0.4745834 0.4244723 0.4894626 +0.4822838 0.4244723 0.4894626 +0.4894626 0.4244723 0.4894626 +0.4961862 0.4244723 0.4894626 +0.5025087 0.4244723 0.4894626 +0.5084753 0.4244723 0.4894626 +0.514124 0.4244723 0.4894626 +0.519487 0.4244723 0.4894626 +0.5245917 0.4244723 0.4894626 +0.529462 0.4244723 0.4894626 +0.5341183 0.4244723 0.4894626 +0.5385787 0.4244723 0.4894626 +0.5428591 0.4244723 0.4894626 +0.5469733 0.4244723 0.4894626 +0.5509339 0.4244723 0.4894626 +0.5547519 0.4244723 0.4894626 +0.5584371 0.4244723 0.4894626 +0.5619986 0.4244723 0.4894626 +0.5654443 0.4244723 0.4894626 +0.5687816 0.4244723 0.4894626 +0.092819 0.4365675 0.4894626 +0.2262531 0.4365675 0.4894626 +0.2875993 0.4365675 0.4894626 +0.3262122 0.4365675 0.4894626 +0.3544566 0.4365675 0.4894626 +0.3767383 0.4365675 0.4894626 +0.3951413 0.4365675 0.4894626 +0.4108177 0.4365675 0.4894626 +0.4244723 0.4365675 0.4894626 +0.4365675 0.4365675 0.4894626 +0.4474232 0.4365675 0.4894626 +0.45727 0.4365675 0.4894626 +0.4662797 0.4365675 0.4894626 +0.4745834 0.4365675 0.4894626 +0.4822838 0.4365675 0.4894626 +0.4894626 0.4365675 0.4894626 +0.4961862 0.4365675 0.4894626 +0.5025087 0.4365675 0.4894626 +0.5084753 0.4365675 0.4894626 +0.514124 0.4365675 0.4894626 +0.519487 0.4365675 0.4894626 +0.5245917 0.4365675 0.4894626 +0.529462 0.4365675 0.4894626 +0.5341183 0.4365675 0.4894626 +0.5385787 0.4365675 0.4894626 +0.5428591 0.4365675 0.4894626 +0.5469733 0.4365675 0.4894626 +0.5509339 0.4365675 0.4894626 +0.5547519 0.4365675 0.4894626 +0.5584371 0.4365675 0.4894626 +0.5619986 0.4365675 0.4894626 +0.5654443 0.4365675 0.4894626 +0.5687816 0.4365675 0.4894626 +0.092819 0.4474232 0.4894626 +0.2262531 0.4474232 0.4894626 +0.2875993 0.4474232 0.4894626 +0.3262122 0.4474232 0.4894626 +0.3544566 0.4474232 0.4894626 +0.3767383 0.4474232 0.4894626 +0.3951413 0.4474232 0.4894626 +0.4108177 0.4474232 0.4894626 +0.4244723 0.4474232 0.4894626 +0.4365675 0.4474232 0.4894626 +0.4474232 0.4474232 0.4894626 +0.45727 0.4474232 0.4894626 +0.4662797 0.4474232 0.4894626 +0.4745834 0.4474232 0.4894626 +0.4822838 0.4474232 0.4894626 +0.4894626 0.4474232 0.4894626 +0.4961862 0.4474232 0.4894626 +0.5025087 0.4474232 0.4894626 +0.5084753 0.4474232 0.4894626 +0.514124 0.4474232 0.4894626 +0.519487 0.4474232 0.4894626 +0.5245917 0.4474232 0.4894626 +0.529462 0.4474232 0.4894626 +0.5341183 0.4474232 0.4894626 +0.5385787 0.4474232 0.4894626 +0.5428591 0.4474232 0.4894626 +0.5469733 0.4474232 0.4894626 +0.5509339 0.4474232 0.4894626 +0.5547519 0.4474232 0.4894626 +0.5584371 0.4474232 0.4894626 +0.5619986 0.4474232 0.4894626 +0.5654443 0.4474232 0.4894626 +0.5687816 0.4474232 0.4894626 +0.092819 0.45727 0.4894626 +0.2262531 0.45727 0.4894626 +0.2875993 0.45727 0.4894626 +0.3262122 0.45727 0.4894626 +0.3544566 0.45727 0.4894626 +0.3767383 0.45727 0.4894626 +0.3951413 0.45727 0.4894626 +0.4108177 0.45727 0.4894626 +0.4244723 0.45727 0.4894626 +0.4365675 0.45727 0.4894626 +0.4474232 0.45727 0.4894626 +0.45727 0.45727 0.4894626 +0.4662797 0.45727 0.4894626 +0.4745834 0.45727 0.4894626 +0.4822838 0.45727 0.4894626 +0.4894626 0.45727 0.4894626 +0.4961862 0.45727 0.4894626 +0.5025087 0.45727 0.4894626 +0.5084753 0.45727 0.4894626 +0.514124 0.45727 0.4894626 +0.519487 0.45727 0.4894626 +0.5245917 0.45727 0.4894626 +0.529462 0.45727 0.4894626 +0.5341183 0.45727 0.4894626 +0.5385787 0.45727 0.4894626 +0.5428591 0.45727 0.4894626 +0.5469733 0.45727 0.4894626 +0.5509339 0.45727 0.4894626 +0.5547519 0.45727 0.4894626 +0.5584371 0.45727 0.4894626 +0.5619986 0.45727 0.4894626 +0.5654443 0.45727 0.4894626 +0.5687816 0.45727 0.4894626 +0.092819 0.4662797 0.4894626 +0.2262531 0.4662797 0.4894626 +0.2875993 0.4662797 0.4894626 +0.3262122 0.4662797 0.4894626 +0.3544566 0.4662797 0.4894626 +0.3767383 0.4662797 0.4894626 +0.3951413 0.4662797 0.4894626 +0.4108177 0.4662797 0.4894626 +0.4244723 0.4662797 0.4894626 +0.4365675 0.4662797 0.4894626 +0.4474232 0.4662797 0.4894626 +0.45727 0.4662797 0.4894626 +0.4662797 0.4662797 0.4894626 +0.4745834 0.4662797 0.4894626 +0.4822838 0.4662797 0.4894626 +0.4894626 0.4662797 0.4894626 +0.4961862 0.4662797 0.4894626 +0.5025087 0.4662797 0.4894626 +0.5084753 0.4662797 0.4894626 +0.514124 0.4662797 0.4894626 +0.519487 0.4662797 0.4894626 +0.5245917 0.4662797 0.4894626 +0.529462 0.4662797 0.4894626 +0.5341183 0.4662797 0.4894626 +0.5385787 0.4662797 0.4894626 +0.5428591 0.4662797 0.4894626 +0.5469733 0.4662797 0.4894626 +0.5509339 0.4662797 0.4894626 +0.5547519 0.4662797 0.4894626 +0.5584371 0.4662797 0.4894626 +0.5619986 0.4662797 0.4894626 +0.5654443 0.4662797 0.4894626 +0.5687816 0.4662797 0.4894626 +0.092819 0.4745834 0.4894626 +0.2262531 0.4745834 0.4894626 +0.2875993 0.4745834 0.4894626 +0.3262122 0.4745834 0.4894626 +0.3544566 0.4745834 0.4894626 +0.3767383 0.4745834 0.4894626 +0.3951413 0.4745834 0.4894626 +0.4108177 0.4745834 0.4894626 +0.4244723 0.4745834 0.4894626 +0.4365675 0.4745834 0.4894626 +0.4474232 0.4745834 0.4894626 +0.45727 0.4745834 0.4894626 +0.4662797 0.4745834 0.4894626 +0.4745834 0.4745834 0.4894626 +0.4822838 0.4745834 0.4894626 +0.4894626 0.4745834 0.4894626 +0.4961862 0.4745834 0.4894626 +0.5025087 0.4745834 0.4894626 +0.5084753 0.4745834 0.4894626 +0.514124 0.4745834 0.4894626 +0.519487 0.4745834 0.4894626 +0.5245917 0.4745834 0.4894626 +0.529462 0.4745834 0.4894626 +0.5341183 0.4745834 0.4894626 +0.5385787 0.4745834 0.4894626 +0.5428591 0.4745834 0.4894626 +0.5469733 0.4745834 0.4894626 +0.5509339 0.4745834 0.4894626 +0.5547519 0.4745834 0.4894626 +0.5584371 0.4745834 0.4894626 +0.5619986 0.4745834 0.4894626 +0.5654443 0.4745834 0.4894626 +0.5687816 0.4745834 0.4894626 +0.092819 0.4822838 0.4894626 +0.2262531 0.4822838 0.4894626 +0.2875993 0.4822838 0.4894626 +0.3262122 0.4822838 0.4894626 +0.3544566 0.4822838 0.4894626 +0.3767383 0.4822838 0.4894626 +0.3951413 0.4822838 0.4894626 +0.4108177 0.4822838 0.4894626 +0.4244723 0.4822838 0.4894626 +0.4365675 0.4822838 0.4894626 +0.4474232 0.4822838 0.4894626 +0.45727 0.4822838 0.4894626 +0.4662797 0.4822838 0.4894626 +0.4745834 0.4822838 0.4894626 +0.4822838 0.4822838 0.4894626 +0.4894626 0.4822838 0.4894626 +0.4961862 0.4822838 0.4894626 +0.5025087 0.4822838 0.4894626 +0.5084753 0.4822838 0.4894626 +0.514124 0.4822838 0.4894626 +0.519487 0.4822838 0.4894626 +0.5245917 0.4822838 0.4894626 +0.529462 0.4822838 0.4894626 +0.5341183 0.4822838 0.4894626 +0.5385787 0.4822838 0.4894626 +0.5428591 0.4822838 0.4894626 +0.5469733 0.4822838 0.4894626 +0.5509339 0.4822838 0.4894626 +0.5547519 0.4822838 0.4894626 +0.5584371 0.4822838 0.4894626 +0.5619986 0.4822838 0.4894626 +0.5654443 0.4822838 0.4894626 +0.5687816 0.4822838 0.4894626 +0.092819 0.4894626 0.4894626 +0.2262531 0.4894626 0.4894626 +0.2875993 0.4894626 0.4894626 +0.3262122 0.4894626 0.4894626 +0.3544566 0.4894626 0.4894626 +0.3767383 0.4894626 0.4894626 +0.3951413 0.4894626 0.4894626 +0.4108177 0.4894626 0.4894626 +0.4244723 0.4894626 0.4894626 +0.4365675 0.4894626 0.4894626 +0.4474232 0.4894626 0.4894626 +0.45727 0.4894626 0.4894626 +0.4662797 0.4894626 0.4894626 +0.4745834 0.4894626 0.4894626 +0.4822838 0.4894626 0.4894626 +0.4894626 0.4894626 0.4894626 +0.4961862 0.4894626 0.4894626 +0.5025087 0.4894626 0.4894626 +0.5084753 0.4894626 0.4894626 +0.514124 0.4894626 0.4894626 +0.519487 0.4894626 0.4894626 +0.5245917 0.4894626 0.4894626 +0.529462 0.4894626 0.4894626 +0.5341183 0.4894626 0.4894626 +0.5385787 0.4894626 0.4894626 +0.5428591 0.4894626 0.4894626 +0.5469733 0.4894626 0.4894626 +0.5509339 0.4894626 0.4894626 +0.5547519 0.4894626 0.4894626 +0.5584371 0.4894626 0.4894626 +0.5619986 0.4894626 0.4894626 +0.5654443 0.4894626 0.4894626 +0.5687816 0.4894626 0.4894626 +0.092819 0.4961862 0.4894626 +0.2262531 0.4961862 0.4894626 +0.2875993 0.4961862 0.4894626 +0.3262122 0.4961862 0.4894626 +0.3544566 0.4961862 0.4894626 +0.3767383 0.4961862 0.4894626 +0.3951413 0.4961862 0.4894626 +0.4108177 0.4961862 0.4894626 +0.4244723 0.4961862 0.4894626 +0.4365675 0.4961862 0.4894626 +0.4474232 0.4961862 0.4894626 +0.45727 0.4961862 0.4894626 +0.4662797 0.4961862 0.4894626 +0.4745834 0.4961862 0.4894626 +0.4822838 0.4961862 0.4894626 +0.4894626 0.4961862 0.4894626 +0.4961862 0.4961862 0.4894626 +0.5025087 0.4961862 0.4894626 +0.5084753 0.4961862 0.4894626 +0.514124 0.4961862 0.4894626 +0.519487 0.4961862 0.4894626 +0.5245917 0.4961862 0.4894626 +0.529462 0.4961862 0.4894626 +0.5341183 0.4961862 0.4894626 +0.5385787 0.4961862 0.4894626 +0.5428591 0.4961862 0.4894626 +0.5469733 0.4961862 0.4894626 +0.5509339 0.4961862 0.4894626 +0.5547519 0.4961862 0.4894626 +0.5584371 0.4961862 0.4894626 +0.5619986 0.4961862 0.4894626 +0.5654443 0.4961862 0.4894626 +0.5687816 0.4961862 0.4894626 +0.092819 0.5025087 0.4894626 +0.2262531 0.5025087 0.4894626 +0.2875993 0.5025087 0.4894626 +0.3262122 0.5025087 0.4894626 +0.3544566 0.5025087 0.4894626 +0.3767383 0.5025087 0.4894626 +0.3951413 0.5025087 0.4894626 +0.4108177 0.5025087 0.4894626 +0.4244723 0.5025087 0.4894626 +0.4365675 0.5025087 0.4894626 +0.4474232 0.5025087 0.4894626 +0.45727 0.5025087 0.4894626 +0.4662797 0.5025087 0.4894626 +0.4745834 0.5025087 0.4894626 +0.4822838 0.5025087 0.4894626 +0.4894626 0.5025087 0.4894626 +0.4961862 0.5025087 0.4894626 +0.5025087 0.5025087 0.4894626 +0.5084753 0.5025087 0.4894626 +0.514124 0.5025087 0.4894626 +0.519487 0.5025087 0.4894626 +0.5245917 0.5025087 0.4894626 +0.529462 0.5025087 0.4894626 +0.5341183 0.5025087 0.4894626 +0.5385787 0.5025087 0.4894626 +0.5428591 0.5025087 0.4894626 +0.5469733 0.5025087 0.4894626 +0.5509339 0.5025087 0.4894626 +0.5547519 0.5025087 0.4894626 +0.5584371 0.5025087 0.4894626 +0.5619986 0.5025087 0.4894626 +0.5654443 0.5025087 0.4894626 +0.5687816 0.5025087 0.4894626 +0.092819 0.5084753 0.4894626 +0.2262531 0.5084753 0.4894626 +0.2875993 0.5084753 0.4894626 +0.3262122 0.5084753 0.4894626 +0.3544566 0.5084753 0.4894626 +0.3767383 0.5084753 0.4894626 +0.3951413 0.5084753 0.4894626 +0.4108177 0.5084753 0.4894626 +0.4244723 0.5084753 0.4894626 +0.4365675 0.5084753 0.4894626 +0.4474232 0.5084753 0.4894626 +0.45727 0.5084753 0.4894626 +0.4662797 0.5084753 0.4894626 +0.4745834 0.5084753 0.4894626 +0.4822838 0.5084753 0.4894626 +0.4894626 0.5084753 0.4894626 +0.4961862 0.5084753 0.4894626 +0.5025087 0.5084753 0.4894626 +0.5084753 0.5084753 0.4894626 +0.514124 0.5084753 0.4894626 +0.519487 0.5084753 0.4894626 +0.5245917 0.5084753 0.4894626 +0.529462 0.5084753 0.4894626 +0.5341183 0.5084753 0.4894626 +0.5385787 0.5084753 0.4894626 +0.5428591 0.5084753 0.4894626 +0.5469733 0.5084753 0.4894626 +0.5509339 0.5084753 0.4894626 +0.5547519 0.5084753 0.4894626 +0.5584371 0.5084753 0.4894626 +0.5619986 0.5084753 0.4894626 +0.5654443 0.5084753 0.4894626 +0.5687816 0.5084753 0.4894626 +0.092819 0.514124 0.4894626 +0.2262531 0.514124 0.4894626 +0.2875993 0.514124 0.4894626 +0.3262122 0.514124 0.4894626 +0.3544566 0.514124 0.4894626 +0.3767383 0.514124 0.4894626 +0.3951413 0.514124 0.4894626 +0.4108177 0.514124 0.4894626 +0.4244723 0.514124 0.4894626 +0.4365675 0.514124 0.4894626 +0.4474232 0.514124 0.4894626 +0.45727 0.514124 0.4894626 +0.4662797 0.514124 0.4894626 +0.4745834 0.514124 0.4894626 +0.4822838 0.514124 0.4894626 +0.4894626 0.514124 0.4894626 +0.4961862 0.514124 0.4894626 +0.5025087 0.514124 0.4894626 +0.5084753 0.514124 0.4894626 +0.514124 0.514124 0.4894626 +0.519487 0.514124 0.4894626 +0.5245917 0.514124 0.4894626 +0.529462 0.514124 0.4894626 +0.5341183 0.514124 0.4894626 +0.5385787 0.514124 0.4894626 +0.5428591 0.514124 0.4894626 +0.5469733 0.514124 0.4894626 +0.5509339 0.514124 0.4894626 +0.5547519 0.514124 0.4894626 +0.5584371 0.514124 0.4894626 +0.5619986 0.514124 0.4894626 +0.5654443 0.514124 0.4894626 +0.5687816 0.514124 0.4894626 +0.092819 0.519487 0.4894626 +0.2262531 0.519487 0.4894626 +0.2875993 0.519487 0.4894626 +0.3262122 0.519487 0.4894626 +0.3544566 0.519487 0.4894626 +0.3767383 0.519487 0.4894626 +0.3951413 0.519487 0.4894626 +0.4108177 0.519487 0.4894626 +0.4244723 0.519487 0.4894626 +0.4365675 0.519487 0.4894626 +0.4474232 0.519487 0.4894626 +0.45727 0.519487 0.4894626 +0.4662797 0.519487 0.4894626 +0.4745834 0.519487 0.4894626 +0.4822838 0.519487 0.4894626 +0.4894626 0.519487 0.4894626 +0.4961862 0.519487 0.4894626 +0.5025087 0.519487 0.4894626 +0.5084753 0.519487 0.4894626 +0.514124 0.519487 0.4894626 +0.519487 0.519487 0.4894626 +0.5245917 0.519487 0.4894626 +0.529462 0.519487 0.4894626 +0.5341183 0.519487 0.4894626 +0.5385787 0.519487 0.4894626 +0.5428591 0.519487 0.4894626 +0.5469733 0.519487 0.4894626 +0.5509339 0.519487 0.4894626 +0.5547519 0.519487 0.4894626 +0.5584371 0.519487 0.4894626 +0.5619986 0.519487 0.4894626 +0.5654443 0.519487 0.4894626 +0.5687816 0.519487 0.4894626 +0.092819 0.5245917 0.4894626 +0.2262531 0.5245917 0.4894626 +0.2875993 0.5245917 0.4894626 +0.3262122 0.5245917 0.4894626 +0.3544566 0.5245917 0.4894626 +0.3767383 0.5245917 0.4894626 +0.3951413 0.5245917 0.4894626 +0.4108177 0.5245917 0.4894626 +0.4244723 0.5245917 0.4894626 +0.4365675 0.5245917 0.4894626 +0.4474232 0.5245917 0.4894626 +0.45727 0.5245917 0.4894626 +0.4662797 0.5245917 0.4894626 +0.4745834 0.5245917 0.4894626 +0.4822838 0.5245917 0.4894626 +0.4894626 0.5245917 0.4894626 +0.4961862 0.5245917 0.4894626 +0.5025087 0.5245917 0.4894626 +0.5084753 0.5245917 0.4894626 +0.514124 0.5245917 0.4894626 +0.519487 0.5245917 0.4894626 +0.5245917 0.5245917 0.4894626 +0.529462 0.5245917 0.4894626 +0.5341183 0.5245917 0.4894626 +0.5385787 0.5245917 0.4894626 +0.5428591 0.5245917 0.4894626 +0.5469733 0.5245917 0.4894626 +0.5509339 0.5245917 0.4894626 +0.5547519 0.5245917 0.4894626 +0.5584371 0.5245917 0.4894626 +0.5619986 0.5245917 0.4894626 +0.5654443 0.5245917 0.4894626 +0.5687816 0.5245917 0.4894626 +0.092819 0.529462 0.4894626 +0.2262531 0.529462 0.4894626 +0.2875993 0.529462 0.4894626 +0.3262122 0.529462 0.4894626 +0.3544566 0.529462 0.4894626 +0.3767383 0.529462 0.4894626 +0.3951413 0.529462 0.4894626 +0.4108177 0.529462 0.4894626 +0.4244723 0.529462 0.4894626 +0.4365675 0.529462 0.4894626 +0.4474232 0.529462 0.4894626 +0.45727 0.529462 0.4894626 +0.4662797 0.529462 0.4894626 +0.4745834 0.529462 0.4894626 +0.4822838 0.529462 0.4894626 +0.4894626 0.529462 0.4894626 +0.4961862 0.529462 0.4894626 +0.5025087 0.529462 0.4894626 +0.5084753 0.529462 0.4894626 +0.514124 0.529462 0.4894626 +0.519487 0.529462 0.4894626 +0.5245917 0.529462 0.4894626 +0.529462 0.529462 0.4894626 +0.5341183 0.529462 0.4894626 +0.5385787 0.529462 0.4894626 +0.5428591 0.529462 0.4894626 +0.5469733 0.529462 0.4894626 +0.5509339 0.529462 0.4894626 +0.5547519 0.529462 0.4894626 +0.5584371 0.529462 0.4894626 +0.5619986 0.529462 0.4894626 +0.5654443 0.529462 0.4894626 +0.5687816 0.529462 0.4894626 +0.092819 0.5341183 0.4894626 +0.2262531 0.5341183 0.4894626 +0.2875993 0.5341183 0.4894626 +0.3262122 0.5341183 0.4894626 +0.3544566 0.5341183 0.4894626 +0.3767383 0.5341183 0.4894626 +0.3951413 0.5341183 0.4894626 +0.4108177 0.5341183 0.4894626 +0.4244723 0.5341183 0.4894626 +0.4365675 0.5341183 0.4894626 +0.4474232 0.5341183 0.4894626 +0.45727 0.5341183 0.4894626 +0.4662797 0.5341183 0.4894626 +0.4745834 0.5341183 0.4894626 +0.4822838 0.5341183 0.4894626 +0.4894626 0.5341183 0.4894626 +0.4961862 0.5341183 0.4894626 +0.5025087 0.5341183 0.4894626 +0.5084753 0.5341183 0.4894626 +0.514124 0.5341183 0.4894626 +0.519487 0.5341183 0.4894626 +0.5245917 0.5341183 0.4894626 +0.529462 0.5341183 0.4894626 +0.5341183 0.5341183 0.4894626 +0.5385787 0.5341183 0.4894626 +0.5428591 0.5341183 0.4894626 +0.5469733 0.5341183 0.4894626 +0.5509339 0.5341183 0.4894626 +0.5547519 0.5341183 0.4894626 +0.5584371 0.5341183 0.4894626 +0.5619986 0.5341183 0.4894626 +0.5654443 0.5341183 0.4894626 +0.5687816 0.5341183 0.4894626 +0.092819 0.5385787 0.4894626 +0.2262531 0.5385787 0.4894626 +0.2875993 0.5385787 0.4894626 +0.3262122 0.5385787 0.4894626 +0.3544566 0.5385787 0.4894626 +0.3767383 0.5385787 0.4894626 +0.3951413 0.5385787 0.4894626 +0.4108177 0.5385787 0.4894626 +0.4244723 0.5385787 0.4894626 +0.4365675 0.5385787 0.4894626 +0.4474232 0.5385787 0.4894626 +0.45727 0.5385787 0.4894626 +0.4662797 0.5385787 0.4894626 +0.4745834 0.5385787 0.4894626 +0.4822838 0.5385787 0.4894626 +0.4894626 0.5385787 0.4894626 +0.4961862 0.5385787 0.4894626 +0.5025087 0.5385787 0.4894626 +0.5084753 0.5385787 0.4894626 +0.514124 0.5385787 0.4894626 +0.519487 0.5385787 0.4894626 +0.5245917 0.5385787 0.4894626 +0.529462 0.5385787 0.4894626 +0.5341183 0.5385787 0.4894626 +0.5385787 0.5385787 0.4894626 +0.5428591 0.5385787 0.4894626 +0.5469733 0.5385787 0.4894626 +0.5509339 0.5385787 0.4894626 +0.5547519 0.5385787 0.4894626 +0.5584371 0.5385787 0.4894626 +0.5619986 0.5385787 0.4894626 +0.5654443 0.5385787 0.4894626 +0.5687816 0.5385787 0.4894626 +0.092819 0.5428591 0.4894626 +0.2262531 0.5428591 0.4894626 +0.2875993 0.5428591 0.4894626 +0.3262122 0.5428591 0.4894626 +0.3544566 0.5428591 0.4894626 +0.3767383 0.5428591 0.4894626 +0.3951413 0.5428591 0.4894626 +0.4108177 0.5428591 0.4894626 +0.4244723 0.5428591 0.4894626 +0.4365675 0.5428591 0.4894626 +0.4474232 0.5428591 0.4894626 +0.45727 0.5428591 0.4894626 +0.4662797 0.5428591 0.4894626 +0.4745834 0.5428591 0.4894626 +0.4822838 0.5428591 0.4894626 +0.4894626 0.5428591 0.4894626 +0.4961862 0.5428591 0.4894626 +0.5025087 0.5428591 0.4894626 +0.5084753 0.5428591 0.4894626 +0.514124 0.5428591 0.4894626 +0.519487 0.5428591 0.4894626 +0.5245917 0.5428591 0.4894626 +0.529462 0.5428591 0.4894626 +0.5341183 0.5428591 0.4894626 +0.5385787 0.5428591 0.4894626 +0.5428591 0.5428591 0.4894626 +0.5469733 0.5428591 0.4894626 +0.5509339 0.5428591 0.4894626 +0.5547519 0.5428591 0.4894626 +0.5584371 0.5428591 0.4894626 +0.5619986 0.5428591 0.4894626 +0.5654443 0.5428591 0.4894626 +0.5687816 0.5428591 0.4894626 +0.092819 0.5469733 0.4894626 +0.2262531 0.5469733 0.4894626 +0.2875993 0.5469733 0.4894626 +0.3262122 0.5469733 0.4894626 +0.3544566 0.5469733 0.4894626 +0.3767383 0.5469733 0.4894626 +0.3951413 0.5469733 0.4894626 +0.4108177 0.5469733 0.4894626 +0.4244723 0.5469733 0.4894626 +0.4365675 0.5469733 0.4894626 +0.4474232 0.5469733 0.4894626 +0.45727 0.5469733 0.4894626 +0.4662797 0.5469733 0.4894626 +0.4745834 0.5469733 0.4894626 +0.4822838 0.5469733 0.4894626 +0.4894626 0.5469733 0.4894626 +0.4961862 0.5469733 0.4894626 +0.5025087 0.5469733 0.4894626 +0.5084753 0.5469733 0.4894626 +0.514124 0.5469733 0.4894626 +0.519487 0.5469733 0.4894626 +0.5245917 0.5469733 0.4894626 +0.529462 0.5469733 0.4894626 +0.5341183 0.5469733 0.4894626 +0.5385787 0.5469733 0.4894626 +0.5428591 0.5469733 0.4894626 +0.5469733 0.5469733 0.4894626 +0.5509339 0.5469733 0.4894626 +0.5547519 0.5469733 0.4894626 +0.5584371 0.5469733 0.4894626 +0.5619986 0.5469733 0.4894626 +0.5654443 0.5469733 0.4894626 +0.5687816 0.5469733 0.4894626 +0.092819 0.5509339 0.4894626 +0.2262531 0.5509339 0.4894626 +0.2875993 0.5509339 0.4894626 +0.3262122 0.5509339 0.4894626 +0.3544566 0.5509339 0.4894626 +0.3767383 0.5509339 0.4894626 +0.3951413 0.5509339 0.4894626 +0.4108177 0.5509339 0.4894626 +0.4244723 0.5509339 0.4894626 +0.4365675 0.5509339 0.4894626 +0.4474232 0.5509339 0.4894626 +0.45727 0.5509339 0.4894626 +0.4662797 0.5509339 0.4894626 +0.4745834 0.5509339 0.4894626 +0.4822838 0.5509339 0.4894626 +0.4894626 0.5509339 0.4894626 +0.4961862 0.5509339 0.4894626 +0.5025087 0.5509339 0.4894626 +0.5084753 0.5509339 0.4894626 +0.514124 0.5509339 0.4894626 +0.519487 0.5509339 0.4894626 +0.5245917 0.5509339 0.4894626 +0.529462 0.5509339 0.4894626 +0.5341183 0.5509339 0.4894626 +0.5385787 0.5509339 0.4894626 +0.5428591 0.5509339 0.4894626 +0.5469733 0.5509339 0.4894626 +0.5509339 0.5509339 0.4894626 +0.5547519 0.5509339 0.4894626 +0.5584371 0.5509339 0.4894626 +0.5619986 0.5509339 0.4894626 +0.5654443 0.5509339 0.4894626 +0.5687816 0.5509339 0.4894626 +0.092819 0.5547519 0.4894626 +0.2262531 0.5547519 0.4894626 +0.2875993 0.5547519 0.4894626 +0.3262122 0.5547519 0.4894626 +0.3544566 0.5547519 0.4894626 +0.3767383 0.5547519 0.4894626 +0.3951413 0.5547519 0.4894626 +0.4108177 0.5547519 0.4894626 +0.4244723 0.5547519 0.4894626 +0.4365675 0.5547519 0.4894626 +0.4474232 0.5547519 0.4894626 +0.45727 0.5547519 0.4894626 +0.4662797 0.5547519 0.4894626 +0.4745834 0.5547519 0.4894626 +0.4822838 0.5547519 0.4894626 +0.4894626 0.5547519 0.4894626 +0.4961862 0.5547519 0.4894626 +0.5025087 0.5547519 0.4894626 +0.5084753 0.5547519 0.4894626 +0.514124 0.5547519 0.4894626 +0.519487 0.5547519 0.4894626 +0.5245917 0.5547519 0.4894626 +0.529462 0.5547519 0.4894626 +0.5341183 0.5547519 0.4894626 +0.5385787 0.5547519 0.4894626 +0.5428591 0.5547519 0.4894626 +0.5469733 0.5547519 0.4894626 +0.5509339 0.5547519 0.4894626 +0.5547519 0.5547519 0.4894626 +0.5584371 0.5547519 0.4894626 +0.5619986 0.5547519 0.4894626 +0.5654443 0.5547519 0.4894626 +0.5687816 0.5547519 0.4894626 +0.092819 0.5584371 0.4894626 +0.2262531 0.5584371 0.4894626 +0.2875993 0.5584371 0.4894626 +0.3262122 0.5584371 0.4894626 +0.3544566 0.5584371 0.4894626 +0.3767383 0.5584371 0.4894626 +0.3951413 0.5584371 0.4894626 +0.4108177 0.5584371 0.4894626 +0.4244723 0.5584371 0.4894626 +0.4365675 0.5584371 0.4894626 +0.4474232 0.5584371 0.4894626 +0.45727 0.5584371 0.4894626 +0.4662797 0.5584371 0.4894626 +0.4745834 0.5584371 0.4894626 +0.4822838 0.5584371 0.4894626 +0.4894626 0.5584371 0.4894626 +0.4961862 0.5584371 0.4894626 +0.5025087 0.5584371 0.4894626 +0.5084753 0.5584371 0.4894626 +0.514124 0.5584371 0.4894626 +0.519487 0.5584371 0.4894626 +0.5245917 0.5584371 0.4894626 +0.529462 0.5584371 0.4894626 +0.5341183 0.5584371 0.4894626 +0.5385787 0.5584371 0.4894626 +0.5428591 0.5584371 0.4894626 +0.5469733 0.5584371 0.4894626 +0.5509339 0.5584371 0.4894626 +0.5547519 0.5584371 0.4894626 +0.5584371 0.5584371 0.4894626 +0.5619986 0.5584371 0.4894626 +0.5654443 0.5584371 0.4894626 +0.5687816 0.5584371 0.4894626 +0.092819 0.5619986 0.4894626 +0.2262531 0.5619986 0.4894626 +0.2875993 0.5619986 0.4894626 +0.3262122 0.5619986 0.4894626 +0.3544566 0.5619986 0.4894626 +0.3767383 0.5619986 0.4894626 +0.3951413 0.5619986 0.4894626 +0.4108177 0.5619986 0.4894626 +0.4244723 0.5619986 0.4894626 +0.4365675 0.5619986 0.4894626 +0.4474232 0.5619986 0.4894626 +0.45727 0.5619986 0.4894626 +0.4662797 0.5619986 0.4894626 +0.4745834 0.5619986 0.4894626 +0.4822838 0.5619986 0.4894626 +0.4894626 0.5619986 0.4894626 +0.4961862 0.5619986 0.4894626 +0.5025087 0.5619986 0.4894626 +0.5084753 0.5619986 0.4894626 +0.514124 0.5619986 0.4894626 +0.519487 0.5619986 0.4894626 +0.5245917 0.5619986 0.4894626 +0.529462 0.5619986 0.4894626 +0.5341183 0.5619986 0.4894626 +0.5385787 0.5619986 0.4894626 +0.5428591 0.5619986 0.4894626 +0.5469733 0.5619986 0.4894626 +0.5509339 0.5619986 0.4894626 +0.5547519 0.5619986 0.4894626 +0.5584371 0.5619986 0.4894626 +0.5619986 0.5619986 0.4894626 +0.5654443 0.5619986 0.4894626 +0.5687816 0.5619986 0.4894626 +0.092819 0.5654443 0.4894626 +0.2262531 0.5654443 0.4894626 +0.2875993 0.5654443 0.4894626 +0.3262122 0.5654443 0.4894626 +0.3544566 0.5654443 0.4894626 +0.3767383 0.5654443 0.4894626 +0.3951413 0.5654443 0.4894626 +0.4108177 0.5654443 0.4894626 +0.4244723 0.5654443 0.4894626 +0.4365675 0.5654443 0.4894626 +0.4474232 0.5654443 0.4894626 +0.45727 0.5654443 0.4894626 +0.4662797 0.5654443 0.4894626 +0.4745834 0.5654443 0.4894626 +0.4822838 0.5654443 0.4894626 +0.4894626 0.5654443 0.4894626 +0.4961862 0.5654443 0.4894626 +0.5025087 0.5654443 0.4894626 +0.5084753 0.5654443 0.4894626 +0.514124 0.5654443 0.4894626 +0.519487 0.5654443 0.4894626 +0.5245917 0.5654443 0.4894626 +0.529462 0.5654443 0.4894626 +0.5341183 0.5654443 0.4894626 +0.5385787 0.5654443 0.4894626 +0.5428591 0.5654443 0.4894626 +0.5469733 0.5654443 0.4894626 +0.5509339 0.5654443 0.4894626 +0.5547519 0.5654443 0.4894626 +0.5584371 0.5654443 0.4894626 +0.5619986 0.5654443 0.4894626 +0.5654443 0.5654443 0.4894626 +0.5687816 0.5654443 0.4894626 +0.092819 0.5687816 0.4894626 +0.2262531 0.5687816 0.4894626 +0.2875993 0.5687816 0.4894626 +0.3262122 0.5687816 0.4894626 +0.3544566 0.5687816 0.4894626 +0.3767383 0.5687816 0.4894626 +0.3951413 0.5687816 0.4894626 +0.4108177 0.5687816 0.4894626 +0.4244723 0.5687816 0.4894626 +0.4365675 0.5687816 0.4894626 +0.4474232 0.5687816 0.4894626 +0.45727 0.5687816 0.4894626 +0.4662797 0.5687816 0.4894626 +0.4745834 0.5687816 0.4894626 +0.4822838 0.5687816 0.4894626 +0.4894626 0.5687816 0.4894626 +0.4961862 0.5687816 0.4894626 +0.5025087 0.5687816 0.4894626 +0.5084753 0.5687816 0.4894626 +0.514124 0.5687816 0.4894626 +0.519487 0.5687816 0.4894626 +0.5245917 0.5687816 0.4894626 +0.529462 0.5687816 0.4894626 +0.5341183 0.5687816 0.4894626 +0.5385787 0.5687816 0.4894626 +0.5428591 0.5687816 0.4894626 +0.5469733 0.5687816 0.4894626 +0.5509339 0.5687816 0.4894626 +0.5547519 0.5687816 0.4894626 +0.5584371 0.5687816 0.4894626 +0.5619986 0.5687816 0.4894626 +0.5654443 0.5687816 0.4894626 +0.5687816 0.5687816 0.4894626 +0.092819 0.092819 0.4961862 +0.2262531 0.092819 0.4961862 +0.2875993 0.092819 0.4961862 +0.3262122 0.092819 0.4961862 +0.3544566 0.092819 0.4961862 +0.3767383 0.092819 0.4961862 +0.3951413 0.092819 0.4961862 +0.4108177 0.092819 0.4961862 +0.4244723 0.092819 0.4961862 +0.4365675 0.092819 0.4961862 +0.4474232 0.092819 0.4961862 +0.45727 0.092819 0.4961862 +0.4662797 0.092819 0.4961862 +0.4745834 0.092819 0.4961862 +0.4822838 0.092819 0.4961862 +0.4894626 0.092819 0.4961862 +0.4961862 0.092819 0.4961862 +0.5025087 0.092819 0.4961862 +0.5084753 0.092819 0.4961862 +0.514124 0.092819 0.4961862 +0.519487 0.092819 0.4961862 +0.5245917 0.092819 0.4961862 +0.529462 0.092819 0.4961862 +0.5341183 0.092819 0.4961862 +0.5385787 0.092819 0.4961862 +0.5428591 0.092819 0.4961862 +0.5469733 0.092819 0.4961862 +0.5509339 0.092819 0.4961862 +0.5547519 0.092819 0.4961862 +0.5584371 0.092819 0.4961862 +0.5619986 0.092819 0.4961862 +0.5654443 0.092819 0.4961862 +0.5687816 0.092819 0.4961862 +0.092819 0.2262531 0.4961862 +0.2262531 0.2262531 0.4961862 +0.2875993 0.2262531 0.4961862 +0.3262122 0.2262531 0.4961862 +0.3544566 0.2262531 0.4961862 +0.3767383 0.2262531 0.4961862 +0.3951413 0.2262531 0.4961862 +0.4108177 0.2262531 0.4961862 +0.4244723 0.2262531 0.4961862 +0.4365675 0.2262531 0.4961862 +0.4474232 0.2262531 0.4961862 +0.45727 0.2262531 0.4961862 +0.4662797 0.2262531 0.4961862 +0.4745834 0.2262531 0.4961862 +0.4822838 0.2262531 0.4961862 +0.4894626 0.2262531 0.4961862 +0.4961862 0.2262531 0.4961862 +0.5025087 0.2262531 0.4961862 +0.5084753 0.2262531 0.4961862 +0.514124 0.2262531 0.4961862 +0.519487 0.2262531 0.4961862 +0.5245917 0.2262531 0.4961862 +0.529462 0.2262531 0.4961862 +0.5341183 0.2262531 0.4961862 +0.5385787 0.2262531 0.4961862 +0.5428591 0.2262531 0.4961862 +0.5469733 0.2262531 0.4961862 +0.5509339 0.2262531 0.4961862 +0.5547519 0.2262531 0.4961862 +0.5584371 0.2262531 0.4961862 +0.5619986 0.2262531 0.4961862 +0.5654443 0.2262531 0.4961862 +0.5687816 0.2262531 0.4961862 +0.092819 0.2875993 0.4961862 +0.2262531 0.2875993 0.4961862 +0.2875993 0.2875993 0.4961862 +0.3262122 0.2875993 0.4961862 +0.3544566 0.2875993 0.4961862 +0.3767383 0.2875993 0.4961862 +0.3951413 0.2875993 0.4961862 +0.4108177 0.2875993 0.4961862 +0.4244723 0.2875993 0.4961862 +0.4365675 0.2875993 0.4961862 +0.4474232 0.2875993 0.4961862 +0.45727 0.2875993 0.4961862 +0.4662797 0.2875993 0.4961862 +0.4745834 0.2875993 0.4961862 +0.4822838 0.2875993 0.4961862 +0.4894626 0.2875993 0.4961862 +0.4961862 0.2875993 0.4961862 +0.5025087 0.2875993 0.4961862 +0.5084753 0.2875993 0.4961862 +0.514124 0.2875993 0.4961862 +0.519487 0.2875993 0.4961862 +0.5245917 0.2875993 0.4961862 +0.529462 0.2875993 0.4961862 +0.5341183 0.2875993 0.4961862 +0.5385787 0.2875993 0.4961862 +0.5428591 0.2875993 0.4961862 +0.5469733 0.2875993 0.4961862 +0.5509339 0.2875993 0.4961862 +0.5547519 0.2875993 0.4961862 +0.5584371 0.2875993 0.4961862 +0.5619986 0.2875993 0.4961862 +0.5654443 0.2875993 0.4961862 +0.5687816 0.2875993 0.4961862 +0.092819 0.3262122 0.4961862 +0.2262531 0.3262122 0.4961862 +0.2875993 0.3262122 0.4961862 +0.3262122 0.3262122 0.4961862 +0.3544566 0.3262122 0.4961862 +0.3767383 0.3262122 0.4961862 +0.3951413 0.3262122 0.4961862 +0.4108177 0.3262122 0.4961862 +0.4244723 0.3262122 0.4961862 +0.4365675 0.3262122 0.4961862 +0.4474232 0.3262122 0.4961862 +0.45727 0.3262122 0.4961862 +0.4662797 0.3262122 0.4961862 +0.4745834 0.3262122 0.4961862 +0.4822838 0.3262122 0.4961862 +0.4894626 0.3262122 0.4961862 +0.4961862 0.3262122 0.4961862 +0.5025087 0.3262122 0.4961862 +0.5084753 0.3262122 0.4961862 +0.514124 0.3262122 0.4961862 +0.519487 0.3262122 0.4961862 +0.5245917 0.3262122 0.4961862 +0.529462 0.3262122 0.4961862 +0.5341183 0.3262122 0.4961862 +0.5385787 0.3262122 0.4961862 +0.5428591 0.3262122 0.4961862 +0.5469733 0.3262122 0.4961862 +0.5509339 0.3262122 0.4961862 +0.5547519 0.3262122 0.4961862 +0.5584371 0.3262122 0.4961862 +0.5619986 0.3262122 0.4961862 +0.5654443 0.3262122 0.4961862 +0.5687816 0.3262122 0.4961862 +0.092819 0.3544566 0.4961862 +0.2262531 0.3544566 0.4961862 +0.2875993 0.3544566 0.4961862 +0.3262122 0.3544566 0.4961862 +0.3544566 0.3544566 0.4961862 +0.3767383 0.3544566 0.4961862 +0.3951413 0.3544566 0.4961862 +0.4108177 0.3544566 0.4961862 +0.4244723 0.3544566 0.4961862 +0.4365675 0.3544566 0.4961862 +0.4474232 0.3544566 0.4961862 +0.45727 0.3544566 0.4961862 +0.4662797 0.3544566 0.4961862 +0.4745834 0.3544566 0.4961862 +0.4822838 0.3544566 0.4961862 +0.4894626 0.3544566 0.4961862 +0.4961862 0.3544566 0.4961862 +0.5025087 0.3544566 0.4961862 +0.5084753 0.3544566 0.4961862 +0.514124 0.3544566 0.4961862 +0.519487 0.3544566 0.4961862 +0.5245917 0.3544566 0.4961862 +0.529462 0.3544566 0.4961862 +0.5341183 0.3544566 0.4961862 +0.5385787 0.3544566 0.4961862 +0.5428591 0.3544566 0.4961862 +0.5469733 0.3544566 0.4961862 +0.5509339 0.3544566 0.4961862 +0.5547519 0.3544566 0.4961862 +0.5584371 0.3544566 0.4961862 +0.5619986 0.3544566 0.4961862 +0.5654443 0.3544566 0.4961862 +0.5687816 0.3544566 0.4961862 +0.092819 0.3767383 0.4961862 +0.2262531 0.3767383 0.4961862 +0.2875993 0.3767383 0.4961862 +0.3262122 0.3767383 0.4961862 +0.3544566 0.3767383 0.4961862 +0.3767383 0.3767383 0.4961862 +0.3951413 0.3767383 0.4961862 +0.4108177 0.3767383 0.4961862 +0.4244723 0.3767383 0.4961862 +0.4365675 0.3767383 0.4961862 +0.4474232 0.3767383 0.4961862 +0.45727 0.3767383 0.4961862 +0.4662797 0.3767383 0.4961862 +0.4745834 0.3767383 0.4961862 +0.4822838 0.3767383 0.4961862 +0.4894626 0.3767383 0.4961862 +0.4961862 0.3767383 0.4961862 +0.5025087 0.3767383 0.4961862 +0.5084753 0.3767383 0.4961862 +0.514124 0.3767383 0.4961862 +0.519487 0.3767383 0.4961862 +0.5245917 0.3767383 0.4961862 +0.529462 0.3767383 0.4961862 +0.5341183 0.3767383 0.4961862 +0.5385787 0.3767383 0.4961862 +0.5428591 0.3767383 0.4961862 +0.5469733 0.3767383 0.4961862 +0.5509339 0.3767383 0.4961862 +0.5547519 0.3767383 0.4961862 +0.5584371 0.3767383 0.4961862 +0.5619986 0.3767383 0.4961862 +0.5654443 0.3767383 0.4961862 +0.5687816 0.3767383 0.4961862 +0.092819 0.3951413 0.4961862 +0.2262531 0.3951413 0.4961862 +0.2875993 0.3951413 0.4961862 +0.3262122 0.3951413 0.4961862 +0.3544566 0.3951413 0.4961862 +0.3767383 0.3951413 0.4961862 +0.3951413 0.3951413 0.4961862 +0.4108177 0.3951413 0.4961862 +0.4244723 0.3951413 0.4961862 +0.4365675 0.3951413 0.4961862 +0.4474232 0.3951413 0.4961862 +0.45727 0.3951413 0.4961862 +0.4662797 0.3951413 0.4961862 +0.4745834 0.3951413 0.4961862 +0.4822838 0.3951413 0.4961862 +0.4894626 0.3951413 0.4961862 +0.4961862 0.3951413 0.4961862 +0.5025087 0.3951413 0.4961862 +0.5084753 0.3951413 0.4961862 +0.514124 0.3951413 0.4961862 +0.519487 0.3951413 0.4961862 +0.5245917 0.3951413 0.4961862 +0.529462 0.3951413 0.4961862 +0.5341183 0.3951413 0.4961862 +0.5385787 0.3951413 0.4961862 +0.5428591 0.3951413 0.4961862 +0.5469733 0.3951413 0.4961862 +0.5509339 0.3951413 0.4961862 +0.5547519 0.3951413 0.4961862 +0.5584371 0.3951413 0.4961862 +0.5619986 0.3951413 0.4961862 +0.5654443 0.3951413 0.4961862 +0.5687816 0.3951413 0.4961862 +0.092819 0.4108177 0.4961862 +0.2262531 0.4108177 0.4961862 +0.2875993 0.4108177 0.4961862 +0.3262122 0.4108177 0.4961862 +0.3544566 0.4108177 0.4961862 +0.3767383 0.4108177 0.4961862 +0.3951413 0.4108177 0.4961862 +0.4108177 0.4108177 0.4961862 +0.4244723 0.4108177 0.4961862 +0.4365675 0.4108177 0.4961862 +0.4474232 0.4108177 0.4961862 +0.45727 0.4108177 0.4961862 +0.4662797 0.4108177 0.4961862 +0.4745834 0.4108177 0.4961862 +0.4822838 0.4108177 0.4961862 +0.4894626 0.4108177 0.4961862 +0.4961862 0.4108177 0.4961862 +0.5025087 0.4108177 0.4961862 +0.5084753 0.4108177 0.4961862 +0.514124 0.4108177 0.4961862 +0.519487 0.4108177 0.4961862 +0.5245917 0.4108177 0.4961862 +0.529462 0.4108177 0.4961862 +0.5341183 0.4108177 0.4961862 +0.5385787 0.4108177 0.4961862 +0.5428591 0.4108177 0.4961862 +0.5469733 0.4108177 0.4961862 +0.5509339 0.4108177 0.4961862 +0.5547519 0.4108177 0.4961862 +0.5584371 0.4108177 0.4961862 +0.5619986 0.4108177 0.4961862 +0.5654443 0.4108177 0.4961862 +0.5687816 0.4108177 0.4961862 +0.092819 0.4244723 0.4961862 +0.2262531 0.4244723 0.4961862 +0.2875993 0.4244723 0.4961862 +0.3262122 0.4244723 0.4961862 +0.3544566 0.4244723 0.4961862 +0.3767383 0.4244723 0.4961862 +0.3951413 0.4244723 0.4961862 +0.4108177 0.4244723 0.4961862 +0.4244723 0.4244723 0.4961862 +0.4365675 0.4244723 0.4961862 +0.4474232 0.4244723 0.4961862 +0.45727 0.4244723 0.4961862 +0.4662797 0.4244723 0.4961862 +0.4745834 0.4244723 0.4961862 +0.4822838 0.4244723 0.4961862 +0.4894626 0.4244723 0.4961862 +0.4961862 0.4244723 0.4961862 +0.5025087 0.4244723 0.4961862 +0.5084753 0.4244723 0.4961862 +0.514124 0.4244723 0.4961862 +0.519487 0.4244723 0.4961862 +0.5245917 0.4244723 0.4961862 +0.529462 0.4244723 0.4961862 +0.5341183 0.4244723 0.4961862 +0.5385787 0.4244723 0.4961862 +0.5428591 0.4244723 0.4961862 +0.5469733 0.4244723 0.4961862 +0.5509339 0.4244723 0.4961862 +0.5547519 0.4244723 0.4961862 +0.5584371 0.4244723 0.4961862 +0.5619986 0.4244723 0.4961862 +0.5654443 0.4244723 0.4961862 +0.5687816 0.4244723 0.4961862 +0.092819 0.4365675 0.4961862 +0.2262531 0.4365675 0.4961862 +0.2875993 0.4365675 0.4961862 +0.3262122 0.4365675 0.4961862 +0.3544566 0.4365675 0.4961862 +0.3767383 0.4365675 0.4961862 +0.3951413 0.4365675 0.4961862 +0.4108177 0.4365675 0.4961862 +0.4244723 0.4365675 0.4961862 +0.4365675 0.4365675 0.4961862 +0.4474232 0.4365675 0.4961862 +0.45727 0.4365675 0.4961862 +0.4662797 0.4365675 0.4961862 +0.4745834 0.4365675 0.4961862 +0.4822838 0.4365675 0.4961862 +0.4894626 0.4365675 0.4961862 +0.4961862 0.4365675 0.4961862 +0.5025087 0.4365675 0.4961862 +0.5084753 0.4365675 0.4961862 +0.514124 0.4365675 0.4961862 +0.519487 0.4365675 0.4961862 +0.5245917 0.4365675 0.4961862 +0.529462 0.4365675 0.4961862 +0.5341183 0.4365675 0.4961862 +0.5385787 0.4365675 0.4961862 +0.5428591 0.4365675 0.4961862 +0.5469733 0.4365675 0.4961862 +0.5509339 0.4365675 0.4961862 +0.5547519 0.4365675 0.4961862 +0.5584371 0.4365675 0.4961862 +0.5619986 0.4365675 0.4961862 +0.5654443 0.4365675 0.4961862 +0.5687816 0.4365675 0.4961862 +0.092819 0.4474232 0.4961862 +0.2262531 0.4474232 0.4961862 +0.2875993 0.4474232 0.4961862 +0.3262122 0.4474232 0.4961862 +0.3544566 0.4474232 0.4961862 +0.3767383 0.4474232 0.4961862 +0.3951413 0.4474232 0.4961862 +0.4108177 0.4474232 0.4961862 +0.4244723 0.4474232 0.4961862 +0.4365675 0.4474232 0.4961862 +0.4474232 0.4474232 0.4961862 +0.45727 0.4474232 0.4961862 +0.4662797 0.4474232 0.4961862 +0.4745834 0.4474232 0.4961862 +0.4822838 0.4474232 0.4961862 +0.4894626 0.4474232 0.4961862 +0.4961862 0.4474232 0.4961862 +0.5025087 0.4474232 0.4961862 +0.5084753 0.4474232 0.4961862 +0.514124 0.4474232 0.4961862 +0.519487 0.4474232 0.4961862 +0.5245917 0.4474232 0.4961862 +0.529462 0.4474232 0.4961862 +0.5341183 0.4474232 0.4961862 +0.5385787 0.4474232 0.4961862 +0.5428591 0.4474232 0.4961862 +0.5469733 0.4474232 0.4961862 +0.5509339 0.4474232 0.4961862 +0.5547519 0.4474232 0.4961862 +0.5584371 0.4474232 0.4961862 +0.5619986 0.4474232 0.4961862 +0.5654443 0.4474232 0.4961862 +0.5687816 0.4474232 0.4961862 +0.092819 0.45727 0.4961862 +0.2262531 0.45727 0.4961862 +0.2875993 0.45727 0.4961862 +0.3262122 0.45727 0.4961862 +0.3544566 0.45727 0.4961862 +0.3767383 0.45727 0.4961862 +0.3951413 0.45727 0.4961862 +0.4108177 0.45727 0.4961862 +0.4244723 0.45727 0.4961862 +0.4365675 0.45727 0.4961862 +0.4474232 0.45727 0.4961862 +0.45727 0.45727 0.4961862 +0.4662797 0.45727 0.4961862 +0.4745834 0.45727 0.4961862 +0.4822838 0.45727 0.4961862 +0.4894626 0.45727 0.4961862 +0.4961862 0.45727 0.4961862 +0.5025087 0.45727 0.4961862 +0.5084753 0.45727 0.4961862 +0.514124 0.45727 0.4961862 +0.519487 0.45727 0.4961862 +0.5245917 0.45727 0.4961862 +0.529462 0.45727 0.4961862 +0.5341183 0.45727 0.4961862 +0.5385787 0.45727 0.4961862 +0.5428591 0.45727 0.4961862 +0.5469733 0.45727 0.4961862 +0.5509339 0.45727 0.4961862 +0.5547519 0.45727 0.4961862 +0.5584371 0.45727 0.4961862 +0.5619986 0.45727 0.4961862 +0.5654443 0.45727 0.4961862 +0.5687816 0.45727 0.4961862 +0.092819 0.4662797 0.4961862 +0.2262531 0.4662797 0.4961862 +0.2875993 0.4662797 0.4961862 +0.3262122 0.4662797 0.4961862 +0.3544566 0.4662797 0.4961862 +0.3767383 0.4662797 0.4961862 +0.3951413 0.4662797 0.4961862 +0.4108177 0.4662797 0.4961862 +0.4244723 0.4662797 0.4961862 +0.4365675 0.4662797 0.4961862 +0.4474232 0.4662797 0.4961862 +0.45727 0.4662797 0.4961862 +0.4662797 0.4662797 0.4961862 +0.4745834 0.4662797 0.4961862 +0.4822838 0.4662797 0.4961862 +0.4894626 0.4662797 0.4961862 +0.4961862 0.4662797 0.4961862 +0.5025087 0.4662797 0.4961862 +0.5084753 0.4662797 0.4961862 +0.514124 0.4662797 0.4961862 +0.519487 0.4662797 0.4961862 +0.5245917 0.4662797 0.4961862 +0.529462 0.4662797 0.4961862 +0.5341183 0.4662797 0.4961862 +0.5385787 0.4662797 0.4961862 +0.5428591 0.4662797 0.4961862 +0.5469733 0.4662797 0.4961862 +0.5509339 0.4662797 0.4961862 +0.5547519 0.4662797 0.4961862 +0.5584371 0.4662797 0.4961862 +0.5619986 0.4662797 0.4961862 +0.5654443 0.4662797 0.4961862 +0.5687816 0.4662797 0.4961862 +0.092819 0.4745834 0.4961862 +0.2262531 0.4745834 0.4961862 +0.2875993 0.4745834 0.4961862 +0.3262122 0.4745834 0.4961862 +0.3544566 0.4745834 0.4961862 +0.3767383 0.4745834 0.4961862 +0.3951413 0.4745834 0.4961862 +0.4108177 0.4745834 0.4961862 +0.4244723 0.4745834 0.4961862 +0.4365675 0.4745834 0.4961862 +0.4474232 0.4745834 0.4961862 +0.45727 0.4745834 0.4961862 +0.4662797 0.4745834 0.4961862 +0.4745834 0.4745834 0.4961862 +0.4822838 0.4745834 0.4961862 +0.4894626 0.4745834 0.4961862 +0.4961862 0.4745834 0.4961862 +0.5025087 0.4745834 0.4961862 +0.5084753 0.4745834 0.4961862 +0.514124 0.4745834 0.4961862 +0.519487 0.4745834 0.4961862 +0.5245917 0.4745834 0.4961862 +0.529462 0.4745834 0.4961862 +0.5341183 0.4745834 0.4961862 +0.5385787 0.4745834 0.4961862 +0.5428591 0.4745834 0.4961862 +0.5469733 0.4745834 0.4961862 +0.5509339 0.4745834 0.4961862 +0.5547519 0.4745834 0.4961862 +0.5584371 0.4745834 0.4961862 +0.5619986 0.4745834 0.4961862 +0.5654443 0.4745834 0.4961862 +0.5687816 0.4745834 0.4961862 +0.092819 0.4822838 0.4961862 +0.2262531 0.4822838 0.4961862 +0.2875993 0.4822838 0.4961862 +0.3262122 0.4822838 0.4961862 +0.3544566 0.4822838 0.4961862 +0.3767383 0.4822838 0.4961862 +0.3951413 0.4822838 0.4961862 +0.4108177 0.4822838 0.4961862 +0.4244723 0.4822838 0.4961862 +0.4365675 0.4822838 0.4961862 +0.4474232 0.4822838 0.4961862 +0.45727 0.4822838 0.4961862 +0.4662797 0.4822838 0.4961862 +0.4745834 0.4822838 0.4961862 +0.4822838 0.4822838 0.4961862 +0.4894626 0.4822838 0.4961862 +0.4961862 0.4822838 0.4961862 +0.5025087 0.4822838 0.4961862 +0.5084753 0.4822838 0.4961862 +0.514124 0.4822838 0.4961862 +0.519487 0.4822838 0.4961862 +0.5245917 0.4822838 0.4961862 +0.529462 0.4822838 0.4961862 +0.5341183 0.4822838 0.4961862 +0.5385787 0.4822838 0.4961862 +0.5428591 0.4822838 0.4961862 +0.5469733 0.4822838 0.4961862 +0.5509339 0.4822838 0.4961862 +0.5547519 0.4822838 0.4961862 +0.5584371 0.4822838 0.4961862 +0.5619986 0.4822838 0.4961862 +0.5654443 0.4822838 0.4961862 +0.5687816 0.4822838 0.4961862 +0.092819 0.4894626 0.4961862 +0.2262531 0.4894626 0.4961862 +0.2875993 0.4894626 0.4961862 +0.3262122 0.4894626 0.4961862 +0.3544566 0.4894626 0.4961862 +0.3767383 0.4894626 0.4961862 +0.3951413 0.4894626 0.4961862 +0.4108177 0.4894626 0.4961862 +0.4244723 0.4894626 0.4961862 +0.4365675 0.4894626 0.4961862 +0.4474232 0.4894626 0.4961862 +0.45727 0.4894626 0.4961862 +0.4662797 0.4894626 0.4961862 +0.4745834 0.4894626 0.4961862 +0.4822838 0.4894626 0.4961862 +0.4894626 0.4894626 0.4961862 +0.4961862 0.4894626 0.4961862 +0.5025087 0.4894626 0.4961862 +0.5084753 0.4894626 0.4961862 +0.514124 0.4894626 0.4961862 +0.519487 0.4894626 0.4961862 +0.5245917 0.4894626 0.4961862 +0.529462 0.4894626 0.4961862 +0.5341183 0.4894626 0.4961862 +0.5385787 0.4894626 0.4961862 +0.5428591 0.4894626 0.4961862 +0.5469733 0.4894626 0.4961862 +0.5509339 0.4894626 0.4961862 +0.5547519 0.4894626 0.4961862 +0.5584371 0.4894626 0.4961862 +0.5619986 0.4894626 0.4961862 +0.5654443 0.4894626 0.4961862 +0.5687816 0.4894626 0.4961862 +0.092819 0.4961862 0.4961862 +0.2262531 0.4961862 0.4961862 +0.2875993 0.4961862 0.4961862 +0.3262122 0.4961862 0.4961862 +0.3544566 0.4961862 0.4961862 +0.3767383 0.4961862 0.4961862 +0.3951413 0.4961862 0.4961862 +0.4108177 0.4961862 0.4961862 +0.4244723 0.4961862 0.4961862 +0.4365675 0.4961862 0.4961862 +0.4474232 0.4961862 0.4961862 +0.45727 0.4961862 0.4961862 +0.4662797 0.4961862 0.4961862 +0.4745834 0.4961862 0.4961862 +0.4822838 0.4961862 0.4961862 +0.4894626 0.4961862 0.4961862 +0.4961862 0.4961862 0.4961862 +0.5025087 0.4961862 0.4961862 +0.5084753 0.4961862 0.4961862 +0.514124 0.4961862 0.4961862 +0.519487 0.4961862 0.4961862 +0.5245917 0.4961862 0.4961862 +0.529462 0.4961862 0.4961862 +0.5341183 0.4961862 0.4961862 +0.5385787 0.4961862 0.4961862 +0.5428591 0.4961862 0.4961862 +0.5469733 0.4961862 0.4961862 +0.5509339 0.4961862 0.4961862 +0.5547519 0.4961862 0.4961862 +0.5584371 0.4961862 0.4961862 +0.5619986 0.4961862 0.4961862 +0.5654443 0.4961862 0.4961862 +0.5687816 0.4961862 0.4961862 +0.092819 0.5025087 0.4961862 +0.2262531 0.5025087 0.4961862 +0.2875993 0.5025087 0.4961862 +0.3262122 0.5025087 0.4961862 +0.3544566 0.5025087 0.4961862 +0.3767383 0.5025087 0.4961862 +0.3951413 0.5025087 0.4961862 +0.4108177 0.5025087 0.4961862 +0.4244723 0.5025087 0.4961862 +0.4365675 0.5025087 0.4961862 +0.4474232 0.5025087 0.4961862 +0.45727 0.5025087 0.4961862 +0.4662797 0.5025087 0.4961862 +0.4745834 0.5025087 0.4961862 +0.4822838 0.5025087 0.4961862 +0.4894626 0.5025087 0.4961862 +0.4961862 0.5025087 0.4961862 +0.5025087 0.5025087 0.4961862 +0.5084753 0.5025087 0.4961862 +0.514124 0.5025087 0.4961862 +0.519487 0.5025087 0.4961862 +0.5245917 0.5025087 0.4961862 +0.529462 0.5025087 0.4961862 +0.5341183 0.5025087 0.4961862 +0.5385787 0.5025087 0.4961862 +0.5428591 0.5025087 0.4961862 +0.5469733 0.5025087 0.4961862 +0.5509339 0.5025087 0.4961862 +0.5547519 0.5025087 0.4961862 +0.5584371 0.5025087 0.4961862 +0.5619986 0.5025087 0.4961862 +0.5654443 0.5025087 0.4961862 +0.5687816 0.5025087 0.4961862 +0.092819 0.5084753 0.4961862 +0.2262531 0.5084753 0.4961862 +0.2875993 0.5084753 0.4961862 +0.3262122 0.5084753 0.4961862 +0.3544566 0.5084753 0.4961862 +0.3767383 0.5084753 0.4961862 +0.3951413 0.5084753 0.4961862 +0.4108177 0.5084753 0.4961862 +0.4244723 0.5084753 0.4961862 +0.4365675 0.5084753 0.4961862 +0.4474232 0.5084753 0.4961862 +0.45727 0.5084753 0.4961862 +0.4662797 0.5084753 0.4961862 +0.4745834 0.5084753 0.4961862 +0.4822838 0.5084753 0.4961862 +0.4894626 0.5084753 0.4961862 +0.4961862 0.5084753 0.4961862 +0.5025087 0.5084753 0.4961862 +0.5084753 0.5084753 0.4961862 +0.514124 0.5084753 0.4961862 +0.519487 0.5084753 0.4961862 +0.5245917 0.5084753 0.4961862 +0.529462 0.5084753 0.4961862 +0.5341183 0.5084753 0.4961862 +0.5385787 0.5084753 0.4961862 +0.5428591 0.5084753 0.4961862 +0.5469733 0.5084753 0.4961862 +0.5509339 0.5084753 0.4961862 +0.5547519 0.5084753 0.4961862 +0.5584371 0.5084753 0.4961862 +0.5619986 0.5084753 0.4961862 +0.5654443 0.5084753 0.4961862 +0.5687816 0.5084753 0.4961862 +0.092819 0.514124 0.4961862 +0.2262531 0.514124 0.4961862 +0.2875993 0.514124 0.4961862 +0.3262122 0.514124 0.4961862 +0.3544566 0.514124 0.4961862 +0.3767383 0.514124 0.4961862 +0.3951413 0.514124 0.4961862 +0.4108177 0.514124 0.4961862 +0.4244723 0.514124 0.4961862 +0.4365675 0.514124 0.4961862 +0.4474232 0.514124 0.4961862 +0.45727 0.514124 0.4961862 +0.4662797 0.514124 0.4961862 +0.4745834 0.514124 0.4961862 +0.4822838 0.514124 0.4961862 +0.4894626 0.514124 0.4961862 +0.4961862 0.514124 0.4961862 +0.5025087 0.514124 0.4961862 +0.5084753 0.514124 0.4961862 +0.514124 0.514124 0.4961862 +0.519487 0.514124 0.4961862 +0.5245917 0.514124 0.4961862 +0.529462 0.514124 0.4961862 +0.5341183 0.514124 0.4961862 +0.5385787 0.514124 0.4961862 +0.5428591 0.514124 0.4961862 +0.5469733 0.514124 0.4961862 +0.5509339 0.514124 0.4961862 +0.5547519 0.514124 0.4961862 +0.5584371 0.514124 0.4961862 +0.5619986 0.514124 0.4961862 +0.5654443 0.514124 0.4961862 +0.5687816 0.514124 0.4961862 +0.092819 0.519487 0.4961862 +0.2262531 0.519487 0.4961862 +0.2875993 0.519487 0.4961862 +0.3262122 0.519487 0.4961862 +0.3544566 0.519487 0.4961862 +0.3767383 0.519487 0.4961862 +0.3951413 0.519487 0.4961862 +0.4108177 0.519487 0.4961862 +0.4244723 0.519487 0.4961862 +0.4365675 0.519487 0.4961862 +0.4474232 0.519487 0.4961862 +0.45727 0.519487 0.4961862 +0.4662797 0.519487 0.4961862 +0.4745834 0.519487 0.4961862 +0.4822838 0.519487 0.4961862 +0.4894626 0.519487 0.4961862 +0.4961862 0.519487 0.4961862 +0.5025087 0.519487 0.4961862 +0.5084753 0.519487 0.4961862 +0.514124 0.519487 0.4961862 +0.519487 0.519487 0.4961862 +0.5245917 0.519487 0.4961862 +0.529462 0.519487 0.4961862 +0.5341183 0.519487 0.4961862 +0.5385787 0.519487 0.4961862 +0.5428591 0.519487 0.4961862 +0.5469733 0.519487 0.4961862 +0.5509339 0.519487 0.4961862 +0.5547519 0.519487 0.4961862 +0.5584371 0.519487 0.4961862 +0.5619986 0.519487 0.4961862 +0.5654443 0.519487 0.4961862 +0.5687816 0.519487 0.4961862 +0.092819 0.5245917 0.4961862 +0.2262531 0.5245917 0.4961862 +0.2875993 0.5245917 0.4961862 +0.3262122 0.5245917 0.4961862 +0.3544566 0.5245917 0.4961862 +0.3767383 0.5245917 0.4961862 +0.3951413 0.5245917 0.4961862 +0.4108177 0.5245917 0.4961862 +0.4244723 0.5245917 0.4961862 +0.4365675 0.5245917 0.4961862 +0.4474232 0.5245917 0.4961862 +0.45727 0.5245917 0.4961862 +0.4662797 0.5245917 0.4961862 +0.4745834 0.5245917 0.4961862 +0.4822838 0.5245917 0.4961862 +0.4894626 0.5245917 0.4961862 +0.4961862 0.5245917 0.4961862 +0.5025087 0.5245917 0.4961862 +0.5084753 0.5245917 0.4961862 +0.514124 0.5245917 0.4961862 +0.519487 0.5245917 0.4961862 +0.5245917 0.5245917 0.4961862 +0.529462 0.5245917 0.4961862 +0.5341183 0.5245917 0.4961862 +0.5385787 0.5245917 0.4961862 +0.5428591 0.5245917 0.4961862 +0.5469733 0.5245917 0.4961862 +0.5509339 0.5245917 0.4961862 +0.5547519 0.5245917 0.4961862 +0.5584371 0.5245917 0.4961862 +0.5619986 0.5245917 0.4961862 +0.5654443 0.5245917 0.4961862 +0.5687816 0.5245917 0.4961862 +0.092819 0.529462 0.4961862 +0.2262531 0.529462 0.4961862 +0.2875993 0.529462 0.4961862 +0.3262122 0.529462 0.4961862 +0.3544566 0.529462 0.4961862 +0.3767383 0.529462 0.4961862 +0.3951413 0.529462 0.4961862 +0.4108177 0.529462 0.4961862 +0.4244723 0.529462 0.4961862 +0.4365675 0.529462 0.4961862 +0.4474232 0.529462 0.4961862 +0.45727 0.529462 0.4961862 +0.4662797 0.529462 0.4961862 +0.4745834 0.529462 0.4961862 +0.4822838 0.529462 0.4961862 +0.4894626 0.529462 0.4961862 +0.4961862 0.529462 0.4961862 +0.5025087 0.529462 0.4961862 +0.5084753 0.529462 0.4961862 +0.514124 0.529462 0.4961862 +0.519487 0.529462 0.4961862 +0.5245917 0.529462 0.4961862 +0.529462 0.529462 0.4961862 +0.5341183 0.529462 0.4961862 +0.5385787 0.529462 0.4961862 +0.5428591 0.529462 0.4961862 +0.5469733 0.529462 0.4961862 +0.5509339 0.529462 0.4961862 +0.5547519 0.529462 0.4961862 +0.5584371 0.529462 0.4961862 +0.5619986 0.529462 0.4961862 +0.5654443 0.529462 0.4961862 +0.5687816 0.529462 0.4961862 +0.092819 0.5341183 0.4961862 +0.2262531 0.5341183 0.4961862 +0.2875993 0.5341183 0.4961862 +0.3262122 0.5341183 0.4961862 +0.3544566 0.5341183 0.4961862 +0.3767383 0.5341183 0.4961862 +0.3951413 0.5341183 0.4961862 +0.4108177 0.5341183 0.4961862 +0.4244723 0.5341183 0.4961862 +0.4365675 0.5341183 0.4961862 +0.4474232 0.5341183 0.4961862 +0.45727 0.5341183 0.4961862 +0.4662797 0.5341183 0.4961862 +0.4745834 0.5341183 0.4961862 +0.4822838 0.5341183 0.4961862 +0.4894626 0.5341183 0.4961862 +0.4961862 0.5341183 0.4961862 +0.5025087 0.5341183 0.4961862 +0.5084753 0.5341183 0.4961862 +0.514124 0.5341183 0.4961862 +0.519487 0.5341183 0.4961862 +0.5245917 0.5341183 0.4961862 +0.529462 0.5341183 0.4961862 +0.5341183 0.5341183 0.4961862 +0.5385787 0.5341183 0.4961862 +0.5428591 0.5341183 0.4961862 +0.5469733 0.5341183 0.4961862 +0.5509339 0.5341183 0.4961862 +0.5547519 0.5341183 0.4961862 +0.5584371 0.5341183 0.4961862 +0.5619986 0.5341183 0.4961862 +0.5654443 0.5341183 0.4961862 +0.5687816 0.5341183 0.4961862 +0.092819 0.5385787 0.4961862 +0.2262531 0.5385787 0.4961862 +0.2875993 0.5385787 0.4961862 +0.3262122 0.5385787 0.4961862 +0.3544566 0.5385787 0.4961862 +0.3767383 0.5385787 0.4961862 +0.3951413 0.5385787 0.4961862 +0.4108177 0.5385787 0.4961862 +0.4244723 0.5385787 0.4961862 +0.4365675 0.5385787 0.4961862 +0.4474232 0.5385787 0.4961862 +0.45727 0.5385787 0.4961862 +0.4662797 0.5385787 0.4961862 +0.4745834 0.5385787 0.4961862 +0.4822838 0.5385787 0.4961862 +0.4894626 0.5385787 0.4961862 +0.4961862 0.5385787 0.4961862 +0.5025087 0.5385787 0.4961862 +0.5084753 0.5385787 0.4961862 +0.514124 0.5385787 0.4961862 +0.519487 0.5385787 0.4961862 +0.5245917 0.5385787 0.4961862 +0.529462 0.5385787 0.4961862 +0.5341183 0.5385787 0.4961862 +0.5385787 0.5385787 0.4961862 +0.5428591 0.5385787 0.4961862 +0.5469733 0.5385787 0.4961862 +0.5509339 0.5385787 0.4961862 +0.5547519 0.5385787 0.4961862 +0.5584371 0.5385787 0.4961862 +0.5619986 0.5385787 0.4961862 +0.5654443 0.5385787 0.4961862 +0.5687816 0.5385787 0.4961862 +0.092819 0.5428591 0.4961862 +0.2262531 0.5428591 0.4961862 +0.2875993 0.5428591 0.4961862 +0.3262122 0.5428591 0.4961862 +0.3544566 0.5428591 0.4961862 +0.3767383 0.5428591 0.4961862 +0.3951413 0.5428591 0.4961862 +0.4108177 0.5428591 0.4961862 +0.4244723 0.5428591 0.4961862 +0.4365675 0.5428591 0.4961862 +0.4474232 0.5428591 0.4961862 +0.45727 0.5428591 0.4961862 +0.4662797 0.5428591 0.4961862 +0.4745834 0.5428591 0.4961862 +0.4822838 0.5428591 0.4961862 +0.4894626 0.5428591 0.4961862 +0.4961862 0.5428591 0.4961862 +0.5025087 0.5428591 0.4961862 +0.5084753 0.5428591 0.4961862 +0.514124 0.5428591 0.4961862 +0.519487 0.5428591 0.4961862 +0.5245917 0.5428591 0.4961862 +0.529462 0.5428591 0.4961862 +0.5341183 0.5428591 0.4961862 +0.5385787 0.5428591 0.4961862 +0.5428591 0.5428591 0.4961862 +0.5469733 0.5428591 0.4961862 +0.5509339 0.5428591 0.4961862 +0.5547519 0.5428591 0.4961862 +0.5584371 0.5428591 0.4961862 +0.5619986 0.5428591 0.4961862 +0.5654443 0.5428591 0.4961862 +0.5687816 0.5428591 0.4961862 +0.092819 0.5469733 0.4961862 +0.2262531 0.5469733 0.4961862 +0.2875993 0.5469733 0.4961862 +0.3262122 0.5469733 0.4961862 +0.3544566 0.5469733 0.4961862 +0.3767383 0.5469733 0.4961862 +0.3951413 0.5469733 0.4961862 +0.4108177 0.5469733 0.4961862 +0.4244723 0.5469733 0.4961862 +0.4365675 0.5469733 0.4961862 +0.4474232 0.5469733 0.4961862 +0.45727 0.5469733 0.4961862 +0.4662797 0.5469733 0.4961862 +0.4745834 0.5469733 0.4961862 +0.4822838 0.5469733 0.4961862 +0.4894626 0.5469733 0.4961862 +0.4961862 0.5469733 0.4961862 +0.5025087 0.5469733 0.4961862 +0.5084753 0.5469733 0.4961862 +0.514124 0.5469733 0.4961862 +0.519487 0.5469733 0.4961862 +0.5245917 0.5469733 0.4961862 +0.529462 0.5469733 0.4961862 +0.5341183 0.5469733 0.4961862 +0.5385787 0.5469733 0.4961862 +0.5428591 0.5469733 0.4961862 +0.5469733 0.5469733 0.4961862 +0.5509339 0.5469733 0.4961862 +0.5547519 0.5469733 0.4961862 +0.5584371 0.5469733 0.4961862 +0.5619986 0.5469733 0.4961862 +0.5654443 0.5469733 0.4961862 +0.5687816 0.5469733 0.4961862 +0.092819 0.5509339 0.4961862 +0.2262531 0.5509339 0.4961862 +0.2875993 0.5509339 0.4961862 +0.3262122 0.5509339 0.4961862 +0.3544566 0.5509339 0.4961862 +0.3767383 0.5509339 0.4961862 +0.3951413 0.5509339 0.4961862 +0.4108177 0.5509339 0.4961862 +0.4244723 0.5509339 0.4961862 +0.4365675 0.5509339 0.4961862 +0.4474232 0.5509339 0.4961862 +0.45727 0.5509339 0.4961862 +0.4662797 0.5509339 0.4961862 +0.4745834 0.5509339 0.4961862 +0.4822838 0.5509339 0.4961862 +0.4894626 0.5509339 0.4961862 +0.4961862 0.5509339 0.4961862 +0.5025087 0.5509339 0.4961862 +0.5084753 0.5509339 0.4961862 +0.514124 0.5509339 0.4961862 +0.519487 0.5509339 0.4961862 +0.5245917 0.5509339 0.4961862 +0.529462 0.5509339 0.4961862 +0.5341183 0.5509339 0.4961862 +0.5385787 0.5509339 0.4961862 +0.5428591 0.5509339 0.4961862 +0.5469733 0.5509339 0.4961862 +0.5509339 0.5509339 0.4961862 +0.5547519 0.5509339 0.4961862 +0.5584371 0.5509339 0.4961862 +0.5619986 0.5509339 0.4961862 +0.5654443 0.5509339 0.4961862 +0.5687816 0.5509339 0.4961862 +0.092819 0.5547519 0.4961862 +0.2262531 0.5547519 0.4961862 +0.2875993 0.5547519 0.4961862 +0.3262122 0.5547519 0.4961862 +0.3544566 0.5547519 0.4961862 +0.3767383 0.5547519 0.4961862 +0.3951413 0.5547519 0.4961862 +0.4108177 0.5547519 0.4961862 +0.4244723 0.5547519 0.4961862 +0.4365675 0.5547519 0.4961862 +0.4474232 0.5547519 0.4961862 +0.45727 0.5547519 0.4961862 +0.4662797 0.5547519 0.4961862 +0.4745834 0.5547519 0.4961862 +0.4822838 0.5547519 0.4961862 +0.4894626 0.5547519 0.4961862 +0.4961862 0.5547519 0.4961862 +0.5025087 0.5547519 0.4961862 +0.5084753 0.5547519 0.4961862 +0.514124 0.5547519 0.4961862 +0.519487 0.5547519 0.4961862 +0.5245917 0.5547519 0.4961862 +0.529462 0.5547519 0.4961862 +0.5341183 0.5547519 0.4961862 +0.5385787 0.5547519 0.4961862 +0.5428591 0.5547519 0.4961862 +0.5469733 0.5547519 0.4961862 +0.5509339 0.5547519 0.4961862 +0.5547519 0.5547519 0.4961862 +0.5584371 0.5547519 0.4961862 +0.5619986 0.5547519 0.4961862 +0.5654443 0.5547519 0.4961862 +0.5687816 0.5547519 0.4961862 +0.092819 0.5584371 0.4961862 +0.2262531 0.5584371 0.4961862 +0.2875993 0.5584371 0.4961862 +0.3262122 0.5584371 0.4961862 +0.3544566 0.5584371 0.4961862 +0.3767383 0.5584371 0.4961862 +0.3951413 0.5584371 0.4961862 +0.4108177 0.5584371 0.4961862 +0.4244723 0.5584371 0.4961862 +0.4365675 0.5584371 0.4961862 +0.4474232 0.5584371 0.4961862 +0.45727 0.5584371 0.4961862 +0.4662797 0.5584371 0.4961862 +0.4745834 0.5584371 0.4961862 +0.4822838 0.5584371 0.4961862 +0.4894626 0.5584371 0.4961862 +0.4961862 0.5584371 0.4961862 +0.5025087 0.5584371 0.4961862 +0.5084753 0.5584371 0.4961862 +0.514124 0.5584371 0.4961862 +0.519487 0.5584371 0.4961862 +0.5245917 0.5584371 0.4961862 +0.529462 0.5584371 0.4961862 +0.5341183 0.5584371 0.4961862 +0.5385787 0.5584371 0.4961862 +0.5428591 0.5584371 0.4961862 +0.5469733 0.5584371 0.4961862 +0.5509339 0.5584371 0.4961862 +0.5547519 0.5584371 0.4961862 +0.5584371 0.5584371 0.4961862 +0.5619986 0.5584371 0.4961862 +0.5654443 0.5584371 0.4961862 +0.5687816 0.5584371 0.4961862 +0.092819 0.5619986 0.4961862 +0.2262531 0.5619986 0.4961862 +0.2875993 0.5619986 0.4961862 +0.3262122 0.5619986 0.4961862 +0.3544566 0.5619986 0.4961862 +0.3767383 0.5619986 0.4961862 +0.3951413 0.5619986 0.4961862 +0.4108177 0.5619986 0.4961862 +0.4244723 0.5619986 0.4961862 +0.4365675 0.5619986 0.4961862 +0.4474232 0.5619986 0.4961862 +0.45727 0.5619986 0.4961862 +0.4662797 0.5619986 0.4961862 +0.4745834 0.5619986 0.4961862 +0.4822838 0.5619986 0.4961862 +0.4894626 0.5619986 0.4961862 +0.4961862 0.5619986 0.4961862 +0.5025087 0.5619986 0.4961862 +0.5084753 0.5619986 0.4961862 +0.514124 0.5619986 0.4961862 +0.519487 0.5619986 0.4961862 +0.5245917 0.5619986 0.4961862 +0.529462 0.5619986 0.4961862 +0.5341183 0.5619986 0.4961862 +0.5385787 0.5619986 0.4961862 +0.5428591 0.5619986 0.4961862 +0.5469733 0.5619986 0.4961862 +0.5509339 0.5619986 0.4961862 +0.5547519 0.5619986 0.4961862 +0.5584371 0.5619986 0.4961862 +0.5619986 0.5619986 0.4961862 +0.5654443 0.5619986 0.4961862 +0.5687816 0.5619986 0.4961862 +0.092819 0.5654443 0.4961862 +0.2262531 0.5654443 0.4961862 +0.2875993 0.5654443 0.4961862 +0.3262122 0.5654443 0.4961862 +0.3544566 0.5654443 0.4961862 +0.3767383 0.5654443 0.4961862 +0.3951413 0.5654443 0.4961862 +0.4108177 0.5654443 0.4961862 +0.4244723 0.5654443 0.4961862 +0.4365675 0.5654443 0.4961862 +0.4474232 0.5654443 0.4961862 +0.45727 0.5654443 0.4961862 +0.4662797 0.5654443 0.4961862 +0.4745834 0.5654443 0.4961862 +0.4822838 0.5654443 0.4961862 +0.4894626 0.5654443 0.4961862 +0.4961862 0.5654443 0.4961862 +0.5025087 0.5654443 0.4961862 +0.5084753 0.5654443 0.4961862 +0.514124 0.5654443 0.4961862 +0.519487 0.5654443 0.4961862 +0.5245917 0.5654443 0.4961862 +0.529462 0.5654443 0.4961862 +0.5341183 0.5654443 0.4961862 +0.5385787 0.5654443 0.4961862 +0.5428591 0.5654443 0.4961862 +0.5469733 0.5654443 0.4961862 +0.5509339 0.5654443 0.4961862 +0.5547519 0.5654443 0.4961862 +0.5584371 0.5654443 0.4961862 +0.5619986 0.5654443 0.4961862 +0.5654443 0.5654443 0.4961862 +0.5687816 0.5654443 0.4961862 +0.092819 0.5687816 0.4961862 +0.2262531 0.5687816 0.4961862 +0.2875993 0.5687816 0.4961862 +0.3262122 0.5687816 0.4961862 +0.3544566 0.5687816 0.4961862 +0.3767383 0.5687816 0.4961862 +0.3951413 0.5687816 0.4961862 +0.4108177 0.5687816 0.4961862 +0.4244723 0.5687816 0.4961862 +0.4365675 0.5687816 0.4961862 +0.4474232 0.5687816 0.4961862 +0.45727 0.5687816 0.4961862 +0.4662797 0.5687816 0.4961862 +0.4745834 0.5687816 0.4961862 +0.4822838 0.5687816 0.4961862 +0.4894626 0.5687816 0.4961862 +0.4961862 0.5687816 0.4961862 +0.5025087 0.5687816 0.4961862 +0.5084753 0.5687816 0.4961862 +0.514124 0.5687816 0.4961862 +0.519487 0.5687816 0.4961862 +0.5245917 0.5687816 0.4961862 +0.529462 0.5687816 0.4961862 +0.5341183 0.5687816 0.4961862 +0.5385787 0.5687816 0.4961862 +0.5428591 0.5687816 0.4961862 +0.5469733 0.5687816 0.4961862 +0.5509339 0.5687816 0.4961862 +0.5547519 0.5687816 0.4961862 +0.5584371 0.5687816 0.4961862 +0.5619986 0.5687816 0.4961862 +0.5654443 0.5687816 0.4961862 +0.5687816 0.5687816 0.4961862 +0.092819 0.092819 0.5025087 +0.2262531 0.092819 0.5025087 +0.2875993 0.092819 0.5025087 +0.3262122 0.092819 0.5025087 +0.3544566 0.092819 0.5025087 +0.3767383 0.092819 0.5025087 +0.3951413 0.092819 0.5025087 +0.4108177 0.092819 0.5025087 +0.4244723 0.092819 0.5025087 +0.4365675 0.092819 0.5025087 +0.4474232 0.092819 0.5025087 +0.45727 0.092819 0.5025087 +0.4662797 0.092819 0.5025087 +0.4745834 0.092819 0.5025087 +0.4822838 0.092819 0.5025087 +0.4894626 0.092819 0.5025087 +0.4961862 0.092819 0.5025087 +0.5025087 0.092819 0.5025087 +0.5084753 0.092819 0.5025087 +0.514124 0.092819 0.5025087 +0.519487 0.092819 0.5025087 +0.5245917 0.092819 0.5025087 +0.529462 0.092819 0.5025087 +0.5341183 0.092819 0.5025087 +0.5385787 0.092819 0.5025087 +0.5428591 0.092819 0.5025087 +0.5469733 0.092819 0.5025087 +0.5509339 0.092819 0.5025087 +0.5547519 0.092819 0.5025087 +0.5584371 0.092819 0.5025087 +0.5619986 0.092819 0.5025087 +0.5654443 0.092819 0.5025087 +0.5687816 0.092819 0.5025087 +0.092819 0.2262531 0.5025087 +0.2262531 0.2262531 0.5025087 +0.2875993 0.2262531 0.5025087 +0.3262122 0.2262531 0.5025087 +0.3544566 0.2262531 0.5025087 +0.3767383 0.2262531 0.5025087 +0.3951413 0.2262531 0.5025087 +0.4108177 0.2262531 0.5025087 +0.4244723 0.2262531 0.5025087 +0.4365675 0.2262531 0.5025087 +0.4474232 0.2262531 0.5025087 +0.45727 0.2262531 0.5025087 +0.4662797 0.2262531 0.5025087 +0.4745834 0.2262531 0.5025087 +0.4822838 0.2262531 0.5025087 +0.4894626 0.2262531 0.5025087 +0.4961862 0.2262531 0.5025087 +0.5025087 0.2262531 0.5025087 +0.5084753 0.2262531 0.5025087 +0.514124 0.2262531 0.5025087 +0.519487 0.2262531 0.5025087 +0.5245917 0.2262531 0.5025087 +0.529462 0.2262531 0.5025087 +0.5341183 0.2262531 0.5025087 +0.5385787 0.2262531 0.5025087 +0.5428591 0.2262531 0.5025087 +0.5469733 0.2262531 0.5025087 +0.5509339 0.2262531 0.5025087 +0.5547519 0.2262531 0.5025087 +0.5584371 0.2262531 0.5025087 +0.5619986 0.2262531 0.5025087 +0.5654443 0.2262531 0.5025087 +0.5687816 0.2262531 0.5025087 +0.092819 0.2875993 0.5025087 +0.2262531 0.2875993 0.5025087 +0.2875993 0.2875993 0.5025087 +0.3262122 0.2875993 0.5025087 +0.3544566 0.2875993 0.5025087 +0.3767383 0.2875993 0.5025087 +0.3951413 0.2875993 0.5025087 +0.4108177 0.2875993 0.5025087 +0.4244723 0.2875993 0.5025087 +0.4365675 0.2875993 0.5025087 +0.4474232 0.2875993 0.5025087 +0.45727 0.2875993 0.5025087 +0.4662797 0.2875993 0.5025087 +0.4745834 0.2875993 0.5025087 +0.4822838 0.2875993 0.5025087 +0.4894626 0.2875993 0.5025087 +0.4961862 0.2875993 0.5025087 +0.5025087 0.2875993 0.5025087 +0.5084753 0.2875993 0.5025087 +0.514124 0.2875993 0.5025087 +0.519487 0.2875993 0.5025087 +0.5245917 0.2875993 0.5025087 +0.529462 0.2875993 0.5025087 +0.5341183 0.2875993 0.5025087 +0.5385787 0.2875993 0.5025087 +0.5428591 0.2875993 0.5025087 +0.5469733 0.2875993 0.5025087 +0.5509339 0.2875993 0.5025087 +0.5547519 0.2875993 0.5025087 +0.5584371 0.2875993 0.5025087 +0.5619986 0.2875993 0.5025087 +0.5654443 0.2875993 0.5025087 +0.5687816 0.2875993 0.5025087 +0.092819 0.3262122 0.5025087 +0.2262531 0.3262122 0.5025087 +0.2875993 0.3262122 0.5025087 +0.3262122 0.3262122 0.5025087 +0.3544566 0.3262122 0.5025087 +0.3767383 0.3262122 0.5025087 +0.3951413 0.3262122 0.5025087 +0.4108177 0.3262122 0.5025087 +0.4244723 0.3262122 0.5025087 +0.4365675 0.3262122 0.5025087 +0.4474232 0.3262122 0.5025087 +0.45727 0.3262122 0.5025087 +0.4662797 0.3262122 0.5025087 +0.4745834 0.3262122 0.5025087 +0.4822838 0.3262122 0.5025087 +0.4894626 0.3262122 0.5025087 +0.4961862 0.3262122 0.5025087 +0.5025087 0.3262122 0.5025087 +0.5084753 0.3262122 0.5025087 +0.514124 0.3262122 0.5025087 +0.519487 0.3262122 0.5025087 +0.5245917 0.3262122 0.5025087 +0.529462 0.3262122 0.5025087 +0.5341183 0.3262122 0.5025087 +0.5385787 0.3262122 0.5025087 +0.5428591 0.3262122 0.5025087 +0.5469733 0.3262122 0.5025087 +0.5509339 0.3262122 0.5025087 +0.5547519 0.3262122 0.5025087 +0.5584371 0.3262122 0.5025087 +0.5619986 0.3262122 0.5025087 +0.5654443 0.3262122 0.5025087 +0.5687816 0.3262122 0.5025087 +0.092819 0.3544566 0.5025087 +0.2262531 0.3544566 0.5025087 +0.2875993 0.3544566 0.5025087 +0.3262122 0.3544566 0.5025087 +0.3544566 0.3544566 0.5025087 +0.3767383 0.3544566 0.5025087 +0.3951413 0.3544566 0.5025087 +0.4108177 0.3544566 0.5025087 +0.4244723 0.3544566 0.5025087 +0.4365675 0.3544566 0.5025087 +0.4474232 0.3544566 0.5025087 +0.45727 0.3544566 0.5025087 +0.4662797 0.3544566 0.5025087 +0.4745834 0.3544566 0.5025087 +0.4822838 0.3544566 0.5025087 +0.4894626 0.3544566 0.5025087 +0.4961862 0.3544566 0.5025087 +0.5025087 0.3544566 0.5025087 +0.5084753 0.3544566 0.5025087 +0.514124 0.3544566 0.5025087 +0.519487 0.3544566 0.5025087 +0.5245917 0.3544566 0.5025087 +0.529462 0.3544566 0.5025087 +0.5341183 0.3544566 0.5025087 +0.5385787 0.3544566 0.5025087 +0.5428591 0.3544566 0.5025087 +0.5469733 0.3544566 0.5025087 +0.5509339 0.3544566 0.5025087 +0.5547519 0.3544566 0.5025087 +0.5584371 0.3544566 0.5025087 +0.5619986 0.3544566 0.5025087 +0.5654443 0.3544566 0.5025087 +0.5687816 0.3544566 0.5025087 +0.092819 0.3767383 0.5025087 +0.2262531 0.3767383 0.5025087 +0.2875993 0.3767383 0.5025087 +0.3262122 0.3767383 0.5025087 +0.3544566 0.3767383 0.5025087 +0.3767383 0.3767383 0.5025087 +0.3951413 0.3767383 0.5025087 +0.4108177 0.3767383 0.5025087 +0.4244723 0.3767383 0.5025087 +0.4365675 0.3767383 0.5025087 +0.4474232 0.3767383 0.5025087 +0.45727 0.3767383 0.5025087 +0.4662797 0.3767383 0.5025087 +0.4745834 0.3767383 0.5025087 +0.4822838 0.3767383 0.5025087 +0.4894626 0.3767383 0.5025087 +0.4961862 0.3767383 0.5025087 +0.5025087 0.3767383 0.5025087 +0.5084753 0.3767383 0.5025087 +0.514124 0.3767383 0.5025087 +0.519487 0.3767383 0.5025087 +0.5245917 0.3767383 0.5025087 +0.529462 0.3767383 0.5025087 +0.5341183 0.3767383 0.5025087 +0.5385787 0.3767383 0.5025087 +0.5428591 0.3767383 0.5025087 +0.5469733 0.3767383 0.5025087 +0.5509339 0.3767383 0.5025087 +0.5547519 0.3767383 0.5025087 +0.5584371 0.3767383 0.5025087 +0.5619986 0.3767383 0.5025087 +0.5654443 0.3767383 0.5025087 +0.5687816 0.3767383 0.5025087 +0.092819 0.3951413 0.5025087 +0.2262531 0.3951413 0.5025087 +0.2875993 0.3951413 0.5025087 +0.3262122 0.3951413 0.5025087 +0.3544566 0.3951413 0.5025087 +0.3767383 0.3951413 0.5025087 +0.3951413 0.3951413 0.5025087 +0.4108177 0.3951413 0.5025087 +0.4244723 0.3951413 0.5025087 +0.4365675 0.3951413 0.5025087 +0.4474232 0.3951413 0.5025087 +0.45727 0.3951413 0.5025087 +0.4662797 0.3951413 0.5025087 +0.4745834 0.3951413 0.5025087 +0.4822838 0.3951413 0.5025087 +0.4894626 0.3951413 0.5025087 +0.4961862 0.3951413 0.5025087 +0.5025087 0.3951413 0.5025087 +0.5084753 0.3951413 0.5025087 +0.514124 0.3951413 0.5025087 +0.519487 0.3951413 0.5025087 +0.5245917 0.3951413 0.5025087 +0.529462 0.3951413 0.5025087 +0.5341183 0.3951413 0.5025087 +0.5385787 0.3951413 0.5025087 +0.5428591 0.3951413 0.5025087 +0.5469733 0.3951413 0.5025087 +0.5509339 0.3951413 0.5025087 +0.5547519 0.3951413 0.5025087 +0.5584371 0.3951413 0.5025087 +0.5619986 0.3951413 0.5025087 +0.5654443 0.3951413 0.5025087 +0.5687816 0.3951413 0.5025087 +0.092819 0.4108177 0.5025087 +0.2262531 0.4108177 0.5025087 +0.2875993 0.4108177 0.5025087 +0.3262122 0.4108177 0.5025087 +0.3544566 0.4108177 0.5025087 +0.3767383 0.4108177 0.5025087 +0.3951413 0.4108177 0.5025087 +0.4108177 0.4108177 0.5025087 +0.4244723 0.4108177 0.5025087 +0.4365675 0.4108177 0.5025087 +0.4474232 0.4108177 0.5025087 +0.45727 0.4108177 0.5025087 +0.4662797 0.4108177 0.5025087 +0.4745834 0.4108177 0.5025087 +0.4822838 0.4108177 0.5025087 +0.4894626 0.4108177 0.5025087 +0.4961862 0.4108177 0.5025087 +0.5025087 0.4108177 0.5025087 +0.5084753 0.4108177 0.5025087 +0.514124 0.4108177 0.5025087 +0.519487 0.4108177 0.5025087 +0.5245917 0.4108177 0.5025087 +0.529462 0.4108177 0.5025087 +0.5341183 0.4108177 0.5025087 +0.5385787 0.4108177 0.5025087 +0.5428591 0.4108177 0.5025087 +0.5469733 0.4108177 0.5025087 +0.5509339 0.4108177 0.5025087 +0.5547519 0.4108177 0.5025087 +0.5584371 0.4108177 0.5025087 +0.5619986 0.4108177 0.5025087 +0.5654443 0.4108177 0.5025087 +0.5687816 0.4108177 0.5025087 +0.092819 0.4244723 0.5025087 +0.2262531 0.4244723 0.5025087 +0.2875993 0.4244723 0.5025087 +0.3262122 0.4244723 0.5025087 +0.3544566 0.4244723 0.5025087 +0.3767383 0.4244723 0.5025087 +0.3951413 0.4244723 0.5025087 +0.4108177 0.4244723 0.5025087 +0.4244723 0.4244723 0.5025087 +0.4365675 0.4244723 0.5025087 +0.4474232 0.4244723 0.5025087 +0.45727 0.4244723 0.5025087 +0.4662797 0.4244723 0.5025087 +0.4745834 0.4244723 0.5025087 +0.4822838 0.4244723 0.5025087 +0.4894626 0.4244723 0.5025087 +0.4961862 0.4244723 0.5025087 +0.5025087 0.4244723 0.5025087 +0.5084753 0.4244723 0.5025087 +0.514124 0.4244723 0.5025087 +0.519487 0.4244723 0.5025087 +0.5245917 0.4244723 0.5025087 +0.529462 0.4244723 0.5025087 +0.5341183 0.4244723 0.5025087 +0.5385787 0.4244723 0.5025087 +0.5428591 0.4244723 0.5025087 +0.5469733 0.4244723 0.5025087 +0.5509339 0.4244723 0.5025087 +0.5547519 0.4244723 0.5025087 +0.5584371 0.4244723 0.5025087 +0.5619986 0.4244723 0.5025087 +0.5654443 0.4244723 0.5025087 +0.5687816 0.4244723 0.5025087 +0.092819 0.4365675 0.5025087 +0.2262531 0.4365675 0.5025087 +0.2875993 0.4365675 0.5025087 +0.3262122 0.4365675 0.5025087 +0.3544566 0.4365675 0.5025087 +0.3767383 0.4365675 0.5025087 +0.3951413 0.4365675 0.5025087 +0.4108177 0.4365675 0.5025087 +0.4244723 0.4365675 0.5025087 +0.4365675 0.4365675 0.5025087 +0.4474232 0.4365675 0.5025087 +0.45727 0.4365675 0.5025087 +0.4662797 0.4365675 0.5025087 +0.4745834 0.4365675 0.5025087 +0.4822838 0.4365675 0.5025087 +0.4894626 0.4365675 0.5025087 +0.4961862 0.4365675 0.5025087 +0.5025087 0.4365675 0.5025087 +0.5084753 0.4365675 0.5025087 +0.514124 0.4365675 0.5025087 +0.519487 0.4365675 0.5025087 +0.5245917 0.4365675 0.5025087 +0.529462 0.4365675 0.5025087 +0.5341183 0.4365675 0.5025087 +0.5385787 0.4365675 0.5025087 +0.5428591 0.4365675 0.5025087 +0.5469733 0.4365675 0.5025087 +0.5509339 0.4365675 0.5025087 +0.5547519 0.4365675 0.5025087 +0.5584371 0.4365675 0.5025087 +0.5619986 0.4365675 0.5025087 +0.5654443 0.4365675 0.5025087 +0.5687816 0.4365675 0.5025087 +0.092819 0.4474232 0.5025087 +0.2262531 0.4474232 0.5025087 +0.2875993 0.4474232 0.5025087 +0.3262122 0.4474232 0.5025087 +0.3544566 0.4474232 0.5025087 +0.3767383 0.4474232 0.5025087 +0.3951413 0.4474232 0.5025087 +0.4108177 0.4474232 0.5025087 +0.4244723 0.4474232 0.5025087 +0.4365675 0.4474232 0.5025087 +0.4474232 0.4474232 0.5025087 +0.45727 0.4474232 0.5025087 +0.4662797 0.4474232 0.5025087 +0.4745834 0.4474232 0.5025087 +0.4822838 0.4474232 0.5025087 +0.4894626 0.4474232 0.5025087 +0.4961862 0.4474232 0.5025087 +0.5025087 0.4474232 0.5025087 +0.5084753 0.4474232 0.5025087 +0.514124 0.4474232 0.5025087 +0.519487 0.4474232 0.5025087 +0.5245917 0.4474232 0.5025087 +0.529462 0.4474232 0.5025087 +0.5341183 0.4474232 0.5025087 +0.5385787 0.4474232 0.5025087 +0.5428591 0.4474232 0.5025087 +0.5469733 0.4474232 0.5025087 +0.5509339 0.4474232 0.5025087 +0.5547519 0.4474232 0.5025087 +0.5584371 0.4474232 0.5025087 +0.5619986 0.4474232 0.5025087 +0.5654443 0.4474232 0.5025087 +0.5687816 0.4474232 0.5025087 +0.092819 0.45727 0.5025087 +0.2262531 0.45727 0.5025087 +0.2875993 0.45727 0.5025087 +0.3262122 0.45727 0.5025087 +0.3544566 0.45727 0.5025087 +0.3767383 0.45727 0.5025087 +0.3951413 0.45727 0.5025087 +0.4108177 0.45727 0.5025087 +0.4244723 0.45727 0.5025087 +0.4365675 0.45727 0.5025087 +0.4474232 0.45727 0.5025087 +0.45727 0.45727 0.5025087 +0.4662797 0.45727 0.5025087 +0.4745834 0.45727 0.5025087 +0.4822838 0.45727 0.5025087 +0.4894626 0.45727 0.5025087 +0.4961862 0.45727 0.5025087 +0.5025087 0.45727 0.5025087 +0.5084753 0.45727 0.5025087 +0.514124 0.45727 0.5025087 +0.519487 0.45727 0.5025087 +0.5245917 0.45727 0.5025087 +0.529462 0.45727 0.5025087 +0.5341183 0.45727 0.5025087 +0.5385787 0.45727 0.5025087 +0.5428591 0.45727 0.5025087 +0.5469733 0.45727 0.5025087 +0.5509339 0.45727 0.5025087 +0.5547519 0.45727 0.5025087 +0.5584371 0.45727 0.5025087 +0.5619986 0.45727 0.5025087 +0.5654443 0.45727 0.5025087 +0.5687816 0.45727 0.5025087 +0.092819 0.4662797 0.5025087 +0.2262531 0.4662797 0.5025087 +0.2875993 0.4662797 0.5025087 +0.3262122 0.4662797 0.5025087 +0.3544566 0.4662797 0.5025087 +0.3767383 0.4662797 0.5025087 +0.3951413 0.4662797 0.5025087 +0.4108177 0.4662797 0.5025087 +0.4244723 0.4662797 0.5025087 +0.4365675 0.4662797 0.5025087 +0.4474232 0.4662797 0.5025087 +0.45727 0.4662797 0.5025087 +0.4662797 0.4662797 0.5025087 +0.4745834 0.4662797 0.5025087 +0.4822838 0.4662797 0.5025087 +0.4894626 0.4662797 0.5025087 +0.4961862 0.4662797 0.5025087 +0.5025087 0.4662797 0.5025087 +0.5084753 0.4662797 0.5025087 +0.514124 0.4662797 0.5025087 +0.519487 0.4662797 0.5025087 +0.5245917 0.4662797 0.5025087 +0.529462 0.4662797 0.5025087 +0.5341183 0.4662797 0.5025087 +0.5385787 0.4662797 0.5025087 +0.5428591 0.4662797 0.5025087 +0.5469733 0.4662797 0.5025087 +0.5509339 0.4662797 0.5025087 +0.5547519 0.4662797 0.5025087 +0.5584371 0.4662797 0.5025087 +0.5619986 0.4662797 0.5025087 +0.5654443 0.4662797 0.5025087 +0.5687816 0.4662797 0.5025087 +0.092819 0.4745834 0.5025087 +0.2262531 0.4745834 0.5025087 +0.2875993 0.4745834 0.5025087 +0.3262122 0.4745834 0.5025087 +0.3544566 0.4745834 0.5025087 +0.3767383 0.4745834 0.5025087 +0.3951413 0.4745834 0.5025087 +0.4108177 0.4745834 0.5025087 +0.4244723 0.4745834 0.5025087 +0.4365675 0.4745834 0.5025087 +0.4474232 0.4745834 0.5025087 +0.45727 0.4745834 0.5025087 +0.4662797 0.4745834 0.5025087 +0.4745834 0.4745834 0.5025087 +0.4822838 0.4745834 0.5025087 +0.4894626 0.4745834 0.5025087 +0.4961862 0.4745834 0.5025087 +0.5025087 0.4745834 0.5025087 +0.5084753 0.4745834 0.5025087 +0.514124 0.4745834 0.5025087 +0.519487 0.4745834 0.5025087 +0.5245917 0.4745834 0.5025087 +0.529462 0.4745834 0.5025087 +0.5341183 0.4745834 0.5025087 +0.5385787 0.4745834 0.5025087 +0.5428591 0.4745834 0.5025087 +0.5469733 0.4745834 0.5025087 +0.5509339 0.4745834 0.5025087 +0.5547519 0.4745834 0.5025087 +0.5584371 0.4745834 0.5025087 +0.5619986 0.4745834 0.5025087 +0.5654443 0.4745834 0.5025087 +0.5687816 0.4745834 0.5025087 +0.092819 0.4822838 0.5025087 +0.2262531 0.4822838 0.5025087 +0.2875993 0.4822838 0.5025087 +0.3262122 0.4822838 0.5025087 +0.3544566 0.4822838 0.5025087 +0.3767383 0.4822838 0.5025087 +0.3951413 0.4822838 0.5025087 +0.4108177 0.4822838 0.5025087 +0.4244723 0.4822838 0.5025087 +0.4365675 0.4822838 0.5025087 +0.4474232 0.4822838 0.5025087 +0.45727 0.4822838 0.5025087 +0.4662797 0.4822838 0.5025087 +0.4745834 0.4822838 0.5025087 +0.4822838 0.4822838 0.5025087 +0.4894626 0.4822838 0.5025087 +0.4961862 0.4822838 0.5025087 +0.5025087 0.4822838 0.5025087 +0.5084753 0.4822838 0.5025087 +0.514124 0.4822838 0.5025087 +0.519487 0.4822838 0.5025087 +0.5245917 0.4822838 0.5025087 +0.529462 0.4822838 0.5025087 +0.5341183 0.4822838 0.5025087 +0.5385787 0.4822838 0.5025087 +0.5428591 0.4822838 0.5025087 +0.5469733 0.4822838 0.5025087 +0.5509339 0.4822838 0.5025087 +0.5547519 0.4822838 0.5025087 +0.5584371 0.4822838 0.5025087 +0.5619986 0.4822838 0.5025087 +0.5654443 0.4822838 0.5025087 +0.5687816 0.4822838 0.5025087 +0.092819 0.4894626 0.5025087 +0.2262531 0.4894626 0.5025087 +0.2875993 0.4894626 0.5025087 +0.3262122 0.4894626 0.5025087 +0.3544566 0.4894626 0.5025087 +0.3767383 0.4894626 0.5025087 +0.3951413 0.4894626 0.5025087 +0.4108177 0.4894626 0.5025087 +0.4244723 0.4894626 0.5025087 +0.4365675 0.4894626 0.5025087 +0.4474232 0.4894626 0.5025087 +0.45727 0.4894626 0.5025087 +0.4662797 0.4894626 0.5025087 +0.4745834 0.4894626 0.5025087 +0.4822838 0.4894626 0.5025087 +0.4894626 0.4894626 0.5025087 +0.4961862 0.4894626 0.5025087 +0.5025087 0.4894626 0.5025087 +0.5084753 0.4894626 0.5025087 +0.514124 0.4894626 0.5025087 +0.519487 0.4894626 0.5025087 +0.5245917 0.4894626 0.5025087 +0.529462 0.4894626 0.5025087 +0.5341183 0.4894626 0.5025087 +0.5385787 0.4894626 0.5025087 +0.5428591 0.4894626 0.5025087 +0.5469733 0.4894626 0.5025087 +0.5509339 0.4894626 0.5025087 +0.5547519 0.4894626 0.5025087 +0.5584371 0.4894626 0.5025087 +0.5619986 0.4894626 0.5025087 +0.5654443 0.4894626 0.5025087 +0.5687816 0.4894626 0.5025087 +0.092819 0.4961862 0.5025087 +0.2262531 0.4961862 0.5025087 +0.2875993 0.4961862 0.5025087 +0.3262122 0.4961862 0.5025087 +0.3544566 0.4961862 0.5025087 +0.3767383 0.4961862 0.5025087 +0.3951413 0.4961862 0.5025087 +0.4108177 0.4961862 0.5025087 +0.4244723 0.4961862 0.5025087 +0.4365675 0.4961862 0.5025087 +0.4474232 0.4961862 0.5025087 +0.45727 0.4961862 0.5025087 +0.4662797 0.4961862 0.5025087 +0.4745834 0.4961862 0.5025087 +0.4822838 0.4961862 0.5025087 +0.4894626 0.4961862 0.5025087 +0.4961862 0.4961862 0.5025087 +0.5025087 0.4961862 0.5025087 +0.5084753 0.4961862 0.5025087 +0.514124 0.4961862 0.5025087 +0.519487 0.4961862 0.5025087 +0.5245917 0.4961862 0.5025087 +0.529462 0.4961862 0.5025087 +0.5341183 0.4961862 0.5025087 +0.5385787 0.4961862 0.5025087 +0.5428591 0.4961862 0.5025087 +0.5469733 0.4961862 0.5025087 +0.5509339 0.4961862 0.5025087 +0.5547519 0.4961862 0.5025087 +0.5584371 0.4961862 0.5025087 +0.5619986 0.4961862 0.5025087 +0.5654443 0.4961862 0.5025087 +0.5687816 0.4961862 0.5025087 +0.092819 0.5025087 0.5025087 +0.2262531 0.5025087 0.5025087 +0.2875993 0.5025087 0.5025087 +0.3262122 0.5025087 0.5025087 +0.3544566 0.5025087 0.5025087 +0.3767383 0.5025087 0.5025087 +0.3951413 0.5025087 0.5025087 +0.4108177 0.5025087 0.5025087 +0.4244723 0.5025087 0.5025087 +0.4365675 0.5025087 0.5025087 +0.4474232 0.5025087 0.5025087 +0.45727 0.5025087 0.5025087 +0.4662797 0.5025087 0.5025087 +0.4745834 0.5025087 0.5025087 +0.4822838 0.5025087 0.5025087 +0.4894626 0.5025087 0.5025087 +0.4961862 0.5025087 0.5025087 +0.5025087 0.5025087 0.5025087 +0.5084753 0.5025087 0.5025087 +0.514124 0.5025087 0.5025087 +0.519487 0.5025087 0.5025087 +0.5245917 0.5025087 0.5025087 +0.529462 0.5025087 0.5025087 +0.5341183 0.5025087 0.5025087 +0.5385787 0.5025087 0.5025087 +0.5428591 0.5025087 0.5025087 +0.5469733 0.5025087 0.5025087 +0.5509339 0.5025087 0.5025087 +0.5547519 0.5025087 0.5025087 +0.5584371 0.5025087 0.5025087 +0.5619986 0.5025087 0.5025087 +0.5654443 0.5025087 0.5025087 +0.5687816 0.5025087 0.5025087 +0.092819 0.5084753 0.5025087 +0.2262531 0.5084753 0.5025087 +0.2875993 0.5084753 0.5025087 +0.3262122 0.5084753 0.5025087 +0.3544566 0.5084753 0.5025087 +0.3767383 0.5084753 0.5025087 +0.3951413 0.5084753 0.5025087 +0.4108177 0.5084753 0.5025087 +0.4244723 0.5084753 0.5025087 +0.4365675 0.5084753 0.5025087 +0.4474232 0.5084753 0.5025087 +0.45727 0.5084753 0.5025087 +0.4662797 0.5084753 0.5025087 +0.4745834 0.5084753 0.5025087 +0.4822838 0.5084753 0.5025087 +0.4894626 0.5084753 0.5025087 +0.4961862 0.5084753 0.5025087 +0.5025087 0.5084753 0.5025087 +0.5084753 0.5084753 0.5025087 +0.514124 0.5084753 0.5025087 +0.519487 0.5084753 0.5025087 +0.5245917 0.5084753 0.5025087 +0.529462 0.5084753 0.5025087 +0.5341183 0.5084753 0.5025087 +0.5385787 0.5084753 0.5025087 +0.5428591 0.5084753 0.5025087 +0.5469733 0.5084753 0.5025087 +0.5509339 0.5084753 0.5025087 +0.5547519 0.5084753 0.5025087 +0.5584371 0.5084753 0.5025087 +0.5619986 0.5084753 0.5025087 +0.5654443 0.5084753 0.5025087 +0.5687816 0.5084753 0.5025087 +0.092819 0.514124 0.5025087 +0.2262531 0.514124 0.5025087 +0.2875993 0.514124 0.5025087 +0.3262122 0.514124 0.5025087 +0.3544566 0.514124 0.5025087 +0.3767383 0.514124 0.5025087 +0.3951413 0.514124 0.5025087 +0.4108177 0.514124 0.5025087 +0.4244723 0.514124 0.5025087 +0.4365675 0.514124 0.5025087 +0.4474232 0.514124 0.5025087 +0.45727 0.514124 0.5025087 +0.4662797 0.514124 0.5025087 +0.4745834 0.514124 0.5025087 +0.4822838 0.514124 0.5025087 +0.4894626 0.514124 0.5025087 +0.4961862 0.514124 0.5025087 +0.5025087 0.514124 0.5025087 +0.5084753 0.514124 0.5025087 +0.514124 0.514124 0.5025087 +0.519487 0.514124 0.5025087 +0.5245917 0.514124 0.5025087 +0.529462 0.514124 0.5025087 +0.5341183 0.514124 0.5025087 +0.5385787 0.514124 0.5025087 +0.5428591 0.514124 0.5025087 +0.5469733 0.514124 0.5025087 +0.5509339 0.514124 0.5025087 +0.5547519 0.514124 0.5025087 +0.5584371 0.514124 0.5025087 +0.5619986 0.514124 0.5025087 +0.5654443 0.514124 0.5025087 +0.5687816 0.514124 0.5025087 +0.092819 0.519487 0.5025087 +0.2262531 0.519487 0.5025087 +0.2875993 0.519487 0.5025087 +0.3262122 0.519487 0.5025087 +0.3544566 0.519487 0.5025087 +0.3767383 0.519487 0.5025087 +0.3951413 0.519487 0.5025087 +0.4108177 0.519487 0.5025087 +0.4244723 0.519487 0.5025087 +0.4365675 0.519487 0.5025087 +0.4474232 0.519487 0.5025087 +0.45727 0.519487 0.5025087 +0.4662797 0.519487 0.5025087 +0.4745834 0.519487 0.5025087 +0.4822838 0.519487 0.5025087 +0.4894626 0.519487 0.5025087 +0.4961862 0.519487 0.5025087 +0.5025087 0.519487 0.5025087 +0.5084753 0.519487 0.5025087 +0.514124 0.519487 0.5025087 +0.519487 0.519487 0.5025087 +0.5245917 0.519487 0.5025087 +0.529462 0.519487 0.5025087 +0.5341183 0.519487 0.5025087 +0.5385787 0.519487 0.5025087 +0.5428591 0.519487 0.5025087 +0.5469733 0.519487 0.5025087 +0.5509339 0.519487 0.5025087 +0.5547519 0.519487 0.5025087 +0.5584371 0.519487 0.5025087 +0.5619986 0.519487 0.5025087 +0.5654443 0.519487 0.5025087 +0.5687816 0.519487 0.5025087 +0.092819 0.5245917 0.5025087 +0.2262531 0.5245917 0.5025087 +0.2875993 0.5245917 0.5025087 +0.3262122 0.5245917 0.5025087 +0.3544566 0.5245917 0.5025087 +0.3767383 0.5245917 0.5025087 +0.3951413 0.5245917 0.5025087 +0.4108177 0.5245917 0.5025087 +0.4244723 0.5245917 0.5025087 +0.4365675 0.5245917 0.5025087 +0.4474232 0.5245917 0.5025087 +0.45727 0.5245917 0.5025087 +0.4662797 0.5245917 0.5025087 +0.4745834 0.5245917 0.5025087 +0.4822838 0.5245917 0.5025087 +0.4894626 0.5245917 0.5025087 +0.4961862 0.5245917 0.5025087 +0.5025087 0.5245917 0.5025087 +0.5084753 0.5245917 0.5025087 +0.514124 0.5245917 0.5025087 +0.519487 0.5245917 0.5025087 +0.5245917 0.5245917 0.5025087 +0.529462 0.5245917 0.5025087 +0.5341183 0.5245917 0.5025087 +0.5385787 0.5245917 0.5025087 +0.5428591 0.5245917 0.5025087 +0.5469733 0.5245917 0.5025087 +0.5509339 0.5245917 0.5025087 +0.5547519 0.5245917 0.5025087 +0.5584371 0.5245917 0.5025087 +0.5619986 0.5245917 0.5025087 +0.5654443 0.5245917 0.5025087 +0.5687816 0.5245917 0.5025087 +0.092819 0.529462 0.5025087 +0.2262531 0.529462 0.5025087 +0.2875993 0.529462 0.5025087 +0.3262122 0.529462 0.5025087 +0.3544566 0.529462 0.5025087 +0.3767383 0.529462 0.5025087 +0.3951413 0.529462 0.5025087 +0.4108177 0.529462 0.5025087 +0.4244723 0.529462 0.5025087 +0.4365675 0.529462 0.5025087 +0.4474232 0.529462 0.5025087 +0.45727 0.529462 0.5025087 +0.4662797 0.529462 0.5025087 +0.4745834 0.529462 0.5025087 +0.4822838 0.529462 0.5025087 +0.4894626 0.529462 0.5025087 +0.4961862 0.529462 0.5025087 +0.5025087 0.529462 0.5025087 +0.5084753 0.529462 0.5025087 +0.514124 0.529462 0.5025087 +0.519487 0.529462 0.5025087 +0.5245917 0.529462 0.5025087 +0.529462 0.529462 0.5025087 +0.5341183 0.529462 0.5025087 +0.5385787 0.529462 0.5025087 +0.5428591 0.529462 0.5025087 +0.5469733 0.529462 0.5025087 +0.5509339 0.529462 0.5025087 +0.5547519 0.529462 0.5025087 +0.5584371 0.529462 0.5025087 +0.5619986 0.529462 0.5025087 +0.5654443 0.529462 0.5025087 +0.5687816 0.529462 0.5025087 +0.092819 0.5341183 0.5025087 +0.2262531 0.5341183 0.5025087 +0.2875993 0.5341183 0.5025087 +0.3262122 0.5341183 0.5025087 +0.3544566 0.5341183 0.5025087 +0.3767383 0.5341183 0.5025087 +0.3951413 0.5341183 0.5025087 +0.4108177 0.5341183 0.5025087 +0.4244723 0.5341183 0.5025087 +0.4365675 0.5341183 0.5025087 +0.4474232 0.5341183 0.5025087 +0.45727 0.5341183 0.5025087 +0.4662797 0.5341183 0.5025087 +0.4745834 0.5341183 0.5025087 +0.4822838 0.5341183 0.5025087 +0.4894626 0.5341183 0.5025087 +0.4961862 0.5341183 0.5025087 +0.5025087 0.5341183 0.5025087 +0.5084753 0.5341183 0.5025087 +0.514124 0.5341183 0.5025087 +0.519487 0.5341183 0.5025087 +0.5245917 0.5341183 0.5025087 +0.529462 0.5341183 0.5025087 +0.5341183 0.5341183 0.5025087 +0.5385787 0.5341183 0.5025087 +0.5428591 0.5341183 0.5025087 +0.5469733 0.5341183 0.5025087 +0.5509339 0.5341183 0.5025087 +0.5547519 0.5341183 0.5025087 +0.5584371 0.5341183 0.5025087 +0.5619986 0.5341183 0.5025087 +0.5654443 0.5341183 0.5025087 +0.5687816 0.5341183 0.5025087 +0.092819 0.5385787 0.5025087 +0.2262531 0.5385787 0.5025087 +0.2875993 0.5385787 0.5025087 +0.3262122 0.5385787 0.5025087 +0.3544566 0.5385787 0.5025087 +0.3767383 0.5385787 0.5025087 +0.3951413 0.5385787 0.5025087 +0.4108177 0.5385787 0.5025087 +0.4244723 0.5385787 0.5025087 +0.4365675 0.5385787 0.5025087 +0.4474232 0.5385787 0.5025087 +0.45727 0.5385787 0.5025087 +0.4662797 0.5385787 0.5025087 +0.4745834 0.5385787 0.5025087 +0.4822838 0.5385787 0.5025087 +0.4894626 0.5385787 0.5025087 +0.4961862 0.5385787 0.5025087 +0.5025087 0.5385787 0.5025087 +0.5084753 0.5385787 0.5025087 +0.514124 0.5385787 0.5025087 +0.519487 0.5385787 0.5025087 +0.5245917 0.5385787 0.5025087 +0.529462 0.5385787 0.5025087 +0.5341183 0.5385787 0.5025087 +0.5385787 0.5385787 0.5025087 +0.5428591 0.5385787 0.5025087 +0.5469733 0.5385787 0.5025087 +0.5509339 0.5385787 0.5025087 +0.5547519 0.5385787 0.5025087 +0.5584371 0.5385787 0.5025087 +0.5619986 0.5385787 0.5025087 +0.5654443 0.5385787 0.5025087 +0.5687816 0.5385787 0.5025087 +0.092819 0.5428591 0.5025087 +0.2262531 0.5428591 0.5025087 +0.2875993 0.5428591 0.5025087 +0.3262122 0.5428591 0.5025087 +0.3544566 0.5428591 0.5025087 +0.3767383 0.5428591 0.5025087 +0.3951413 0.5428591 0.5025087 +0.4108177 0.5428591 0.5025087 +0.4244723 0.5428591 0.5025087 +0.4365675 0.5428591 0.5025087 +0.4474232 0.5428591 0.5025087 +0.45727 0.5428591 0.5025087 +0.4662797 0.5428591 0.5025087 +0.4745834 0.5428591 0.5025087 +0.4822838 0.5428591 0.5025087 +0.4894626 0.5428591 0.5025087 +0.4961862 0.5428591 0.5025087 +0.5025087 0.5428591 0.5025087 +0.5084753 0.5428591 0.5025087 +0.514124 0.5428591 0.5025087 +0.519487 0.5428591 0.5025087 +0.5245917 0.5428591 0.5025087 +0.529462 0.5428591 0.5025087 +0.5341183 0.5428591 0.5025087 +0.5385787 0.5428591 0.5025087 +0.5428591 0.5428591 0.5025087 +0.5469733 0.5428591 0.5025087 +0.5509339 0.5428591 0.5025087 +0.5547519 0.5428591 0.5025087 +0.5584371 0.5428591 0.5025087 +0.5619986 0.5428591 0.5025087 +0.5654443 0.5428591 0.5025087 +0.5687816 0.5428591 0.5025087 +0.092819 0.5469733 0.5025087 +0.2262531 0.5469733 0.5025087 +0.2875993 0.5469733 0.5025087 +0.3262122 0.5469733 0.5025087 +0.3544566 0.5469733 0.5025087 +0.3767383 0.5469733 0.5025087 +0.3951413 0.5469733 0.5025087 +0.4108177 0.5469733 0.5025087 +0.4244723 0.5469733 0.5025087 +0.4365675 0.5469733 0.5025087 +0.4474232 0.5469733 0.5025087 +0.45727 0.5469733 0.5025087 +0.4662797 0.5469733 0.5025087 +0.4745834 0.5469733 0.5025087 +0.4822838 0.5469733 0.5025087 +0.4894626 0.5469733 0.5025087 +0.4961862 0.5469733 0.5025087 +0.5025087 0.5469733 0.5025087 +0.5084753 0.5469733 0.5025087 +0.514124 0.5469733 0.5025087 +0.519487 0.5469733 0.5025087 +0.5245917 0.5469733 0.5025087 +0.529462 0.5469733 0.5025087 +0.5341183 0.5469733 0.5025087 +0.5385787 0.5469733 0.5025087 +0.5428591 0.5469733 0.5025087 +0.5469733 0.5469733 0.5025087 +0.5509339 0.5469733 0.5025087 +0.5547519 0.5469733 0.5025087 +0.5584371 0.5469733 0.5025087 +0.5619986 0.5469733 0.5025087 +0.5654443 0.5469733 0.5025087 +0.5687816 0.5469733 0.5025087 +0.092819 0.5509339 0.5025087 +0.2262531 0.5509339 0.5025087 +0.2875993 0.5509339 0.5025087 +0.3262122 0.5509339 0.5025087 +0.3544566 0.5509339 0.5025087 +0.3767383 0.5509339 0.5025087 +0.3951413 0.5509339 0.5025087 +0.4108177 0.5509339 0.5025087 +0.4244723 0.5509339 0.5025087 +0.4365675 0.5509339 0.5025087 +0.4474232 0.5509339 0.5025087 +0.45727 0.5509339 0.5025087 +0.4662797 0.5509339 0.5025087 +0.4745834 0.5509339 0.5025087 +0.4822838 0.5509339 0.5025087 +0.4894626 0.5509339 0.5025087 +0.4961862 0.5509339 0.5025087 +0.5025087 0.5509339 0.5025087 +0.5084753 0.5509339 0.5025087 +0.514124 0.5509339 0.5025087 +0.519487 0.5509339 0.5025087 +0.5245917 0.5509339 0.5025087 +0.529462 0.5509339 0.5025087 +0.5341183 0.5509339 0.5025087 +0.5385787 0.5509339 0.5025087 +0.5428591 0.5509339 0.5025087 +0.5469733 0.5509339 0.5025087 +0.5509339 0.5509339 0.5025087 +0.5547519 0.5509339 0.5025087 +0.5584371 0.5509339 0.5025087 +0.5619986 0.5509339 0.5025087 +0.5654443 0.5509339 0.5025087 +0.5687816 0.5509339 0.5025087 +0.092819 0.5547519 0.5025087 +0.2262531 0.5547519 0.5025087 +0.2875993 0.5547519 0.5025087 +0.3262122 0.5547519 0.5025087 +0.3544566 0.5547519 0.5025087 +0.3767383 0.5547519 0.5025087 +0.3951413 0.5547519 0.5025087 +0.4108177 0.5547519 0.5025087 +0.4244723 0.5547519 0.5025087 +0.4365675 0.5547519 0.5025087 +0.4474232 0.5547519 0.5025087 +0.45727 0.5547519 0.5025087 +0.4662797 0.5547519 0.5025087 +0.4745834 0.5547519 0.5025087 +0.4822838 0.5547519 0.5025087 +0.4894626 0.5547519 0.5025087 +0.4961862 0.5547519 0.5025087 +0.5025087 0.5547519 0.5025087 +0.5084753 0.5547519 0.5025087 +0.514124 0.5547519 0.5025087 +0.519487 0.5547519 0.5025087 +0.5245917 0.5547519 0.5025087 +0.529462 0.5547519 0.5025087 +0.5341183 0.5547519 0.5025087 +0.5385787 0.5547519 0.5025087 +0.5428591 0.5547519 0.5025087 +0.5469733 0.5547519 0.5025087 +0.5509339 0.5547519 0.5025087 +0.5547519 0.5547519 0.5025087 +0.5584371 0.5547519 0.5025087 +0.5619986 0.5547519 0.5025087 +0.5654443 0.5547519 0.5025087 +0.5687816 0.5547519 0.5025087 +0.092819 0.5584371 0.5025087 +0.2262531 0.5584371 0.5025087 +0.2875993 0.5584371 0.5025087 +0.3262122 0.5584371 0.5025087 +0.3544566 0.5584371 0.5025087 +0.3767383 0.5584371 0.5025087 +0.3951413 0.5584371 0.5025087 +0.4108177 0.5584371 0.5025087 +0.4244723 0.5584371 0.5025087 +0.4365675 0.5584371 0.5025087 +0.4474232 0.5584371 0.5025087 +0.45727 0.5584371 0.5025087 +0.4662797 0.5584371 0.5025087 +0.4745834 0.5584371 0.5025087 +0.4822838 0.5584371 0.5025087 +0.4894626 0.5584371 0.5025087 +0.4961862 0.5584371 0.5025087 +0.5025087 0.5584371 0.5025087 +0.5084753 0.5584371 0.5025087 +0.514124 0.5584371 0.5025087 +0.519487 0.5584371 0.5025087 +0.5245917 0.5584371 0.5025087 +0.529462 0.5584371 0.5025087 +0.5341183 0.5584371 0.5025087 +0.5385787 0.5584371 0.5025087 +0.5428591 0.5584371 0.5025087 +0.5469733 0.5584371 0.5025087 +0.5509339 0.5584371 0.5025087 +0.5547519 0.5584371 0.5025087 +0.5584371 0.5584371 0.5025087 +0.5619986 0.5584371 0.5025087 +0.5654443 0.5584371 0.5025087 +0.5687816 0.5584371 0.5025087 +0.092819 0.5619986 0.5025087 +0.2262531 0.5619986 0.5025087 +0.2875993 0.5619986 0.5025087 +0.3262122 0.5619986 0.5025087 +0.3544566 0.5619986 0.5025087 +0.3767383 0.5619986 0.5025087 +0.3951413 0.5619986 0.5025087 +0.4108177 0.5619986 0.5025087 +0.4244723 0.5619986 0.5025087 +0.4365675 0.5619986 0.5025087 +0.4474232 0.5619986 0.5025087 +0.45727 0.5619986 0.5025087 +0.4662797 0.5619986 0.5025087 +0.4745834 0.5619986 0.5025087 +0.4822838 0.5619986 0.5025087 +0.4894626 0.5619986 0.5025087 +0.4961862 0.5619986 0.5025087 +0.5025087 0.5619986 0.5025087 +0.5084753 0.5619986 0.5025087 +0.514124 0.5619986 0.5025087 +0.519487 0.5619986 0.5025087 +0.5245917 0.5619986 0.5025087 +0.529462 0.5619986 0.5025087 +0.5341183 0.5619986 0.5025087 +0.5385787 0.5619986 0.5025087 +0.5428591 0.5619986 0.5025087 +0.5469733 0.5619986 0.5025087 +0.5509339 0.5619986 0.5025087 +0.5547519 0.5619986 0.5025087 +0.5584371 0.5619986 0.5025087 +0.5619986 0.5619986 0.5025087 +0.5654443 0.5619986 0.5025087 +0.5687816 0.5619986 0.5025087 +0.092819 0.5654443 0.5025087 +0.2262531 0.5654443 0.5025087 +0.2875993 0.5654443 0.5025087 +0.3262122 0.5654443 0.5025087 +0.3544566 0.5654443 0.5025087 +0.3767383 0.5654443 0.5025087 +0.3951413 0.5654443 0.5025087 +0.4108177 0.5654443 0.5025087 +0.4244723 0.5654443 0.5025087 +0.4365675 0.5654443 0.5025087 +0.4474232 0.5654443 0.5025087 +0.45727 0.5654443 0.5025087 +0.4662797 0.5654443 0.5025087 +0.4745834 0.5654443 0.5025087 +0.4822838 0.5654443 0.5025087 +0.4894626 0.5654443 0.5025087 +0.4961862 0.5654443 0.5025087 +0.5025087 0.5654443 0.5025087 +0.5084753 0.5654443 0.5025087 +0.514124 0.5654443 0.5025087 +0.519487 0.5654443 0.5025087 +0.5245917 0.5654443 0.5025087 +0.529462 0.5654443 0.5025087 +0.5341183 0.5654443 0.5025087 +0.5385787 0.5654443 0.5025087 +0.5428591 0.5654443 0.5025087 +0.5469733 0.5654443 0.5025087 +0.5509339 0.5654443 0.5025087 +0.5547519 0.5654443 0.5025087 +0.5584371 0.5654443 0.5025087 +0.5619986 0.5654443 0.5025087 +0.5654443 0.5654443 0.5025087 +0.5687816 0.5654443 0.5025087 +0.092819 0.5687816 0.5025087 +0.2262531 0.5687816 0.5025087 +0.2875993 0.5687816 0.5025087 +0.3262122 0.5687816 0.5025087 +0.3544566 0.5687816 0.5025087 +0.3767383 0.5687816 0.5025087 +0.3951413 0.5687816 0.5025087 +0.4108177 0.5687816 0.5025087 +0.4244723 0.5687816 0.5025087 +0.4365675 0.5687816 0.5025087 +0.4474232 0.5687816 0.5025087 +0.45727 0.5687816 0.5025087 +0.4662797 0.5687816 0.5025087 +0.4745834 0.5687816 0.5025087 +0.4822838 0.5687816 0.5025087 +0.4894626 0.5687816 0.5025087 +0.4961862 0.5687816 0.5025087 +0.5025087 0.5687816 0.5025087 +0.5084753 0.5687816 0.5025087 +0.514124 0.5687816 0.5025087 +0.519487 0.5687816 0.5025087 +0.5245917 0.5687816 0.5025087 +0.529462 0.5687816 0.5025087 +0.5341183 0.5687816 0.5025087 +0.5385787 0.5687816 0.5025087 +0.5428591 0.5687816 0.5025087 +0.5469733 0.5687816 0.5025087 +0.5509339 0.5687816 0.5025087 +0.5547519 0.5687816 0.5025087 +0.5584371 0.5687816 0.5025087 +0.5619986 0.5687816 0.5025087 +0.5654443 0.5687816 0.5025087 +0.5687816 0.5687816 0.5025087 +0.092819 0.092819 0.5084753 +0.2262531 0.092819 0.5084753 +0.2875993 0.092819 0.5084753 +0.3262122 0.092819 0.5084753 +0.3544566 0.092819 0.5084753 +0.3767383 0.092819 0.5084753 +0.3951413 0.092819 0.5084753 +0.4108177 0.092819 0.5084753 +0.4244723 0.092819 0.5084753 +0.4365675 0.092819 0.5084753 +0.4474232 0.092819 0.5084753 +0.45727 0.092819 0.5084753 +0.4662797 0.092819 0.5084753 +0.4745834 0.092819 0.5084753 +0.4822838 0.092819 0.5084753 +0.4894626 0.092819 0.5084753 +0.4961862 0.092819 0.5084753 +0.5025087 0.092819 0.5084753 +0.5084753 0.092819 0.5084753 +0.514124 0.092819 0.5084753 +0.519487 0.092819 0.5084753 +0.5245917 0.092819 0.5084753 +0.529462 0.092819 0.5084753 +0.5341183 0.092819 0.5084753 +0.5385787 0.092819 0.5084753 +0.5428591 0.092819 0.5084753 +0.5469733 0.092819 0.5084753 +0.5509339 0.092819 0.5084753 +0.5547519 0.092819 0.5084753 +0.5584371 0.092819 0.5084753 +0.5619986 0.092819 0.5084753 +0.5654443 0.092819 0.5084753 +0.5687816 0.092819 0.5084753 +0.092819 0.2262531 0.5084753 +0.2262531 0.2262531 0.5084753 +0.2875993 0.2262531 0.5084753 +0.3262122 0.2262531 0.5084753 +0.3544566 0.2262531 0.5084753 +0.3767383 0.2262531 0.5084753 +0.3951413 0.2262531 0.5084753 +0.4108177 0.2262531 0.5084753 +0.4244723 0.2262531 0.5084753 +0.4365675 0.2262531 0.5084753 +0.4474232 0.2262531 0.5084753 +0.45727 0.2262531 0.5084753 +0.4662797 0.2262531 0.5084753 +0.4745834 0.2262531 0.5084753 +0.4822838 0.2262531 0.5084753 +0.4894626 0.2262531 0.5084753 +0.4961862 0.2262531 0.5084753 +0.5025087 0.2262531 0.5084753 +0.5084753 0.2262531 0.5084753 +0.514124 0.2262531 0.5084753 +0.519487 0.2262531 0.5084753 +0.5245917 0.2262531 0.5084753 +0.529462 0.2262531 0.5084753 +0.5341183 0.2262531 0.5084753 +0.5385787 0.2262531 0.5084753 +0.5428591 0.2262531 0.5084753 +0.5469733 0.2262531 0.5084753 +0.5509339 0.2262531 0.5084753 +0.5547519 0.2262531 0.5084753 +0.5584371 0.2262531 0.5084753 +0.5619986 0.2262531 0.5084753 +0.5654443 0.2262531 0.5084753 +0.5687816 0.2262531 0.5084753 +0.092819 0.2875993 0.5084753 +0.2262531 0.2875993 0.5084753 +0.2875993 0.2875993 0.5084753 +0.3262122 0.2875993 0.5084753 +0.3544566 0.2875993 0.5084753 +0.3767383 0.2875993 0.5084753 +0.3951413 0.2875993 0.5084753 +0.4108177 0.2875993 0.5084753 +0.4244723 0.2875993 0.5084753 +0.4365675 0.2875993 0.5084753 +0.4474232 0.2875993 0.5084753 +0.45727 0.2875993 0.5084753 +0.4662797 0.2875993 0.5084753 +0.4745834 0.2875993 0.5084753 +0.4822838 0.2875993 0.5084753 +0.4894626 0.2875993 0.5084753 +0.4961862 0.2875993 0.5084753 +0.5025087 0.2875993 0.5084753 +0.5084753 0.2875993 0.5084753 +0.514124 0.2875993 0.5084753 +0.519487 0.2875993 0.5084753 +0.5245917 0.2875993 0.5084753 +0.529462 0.2875993 0.5084753 +0.5341183 0.2875993 0.5084753 +0.5385787 0.2875993 0.5084753 +0.5428591 0.2875993 0.5084753 +0.5469733 0.2875993 0.5084753 +0.5509339 0.2875993 0.5084753 +0.5547519 0.2875993 0.5084753 +0.5584371 0.2875993 0.5084753 +0.5619986 0.2875993 0.5084753 +0.5654443 0.2875993 0.5084753 +0.5687816 0.2875993 0.5084753 +0.092819 0.3262122 0.5084753 +0.2262531 0.3262122 0.5084753 +0.2875993 0.3262122 0.5084753 +0.3262122 0.3262122 0.5084753 +0.3544566 0.3262122 0.5084753 +0.3767383 0.3262122 0.5084753 +0.3951413 0.3262122 0.5084753 +0.4108177 0.3262122 0.5084753 +0.4244723 0.3262122 0.5084753 +0.4365675 0.3262122 0.5084753 +0.4474232 0.3262122 0.5084753 +0.45727 0.3262122 0.5084753 +0.4662797 0.3262122 0.5084753 +0.4745834 0.3262122 0.5084753 +0.4822838 0.3262122 0.5084753 +0.4894626 0.3262122 0.5084753 +0.4961862 0.3262122 0.5084753 +0.5025087 0.3262122 0.5084753 +0.5084753 0.3262122 0.5084753 +0.514124 0.3262122 0.5084753 +0.519487 0.3262122 0.5084753 +0.5245917 0.3262122 0.5084753 +0.529462 0.3262122 0.5084753 +0.5341183 0.3262122 0.5084753 +0.5385787 0.3262122 0.5084753 +0.5428591 0.3262122 0.5084753 +0.5469733 0.3262122 0.5084753 +0.5509339 0.3262122 0.5084753 +0.5547519 0.3262122 0.5084753 +0.5584371 0.3262122 0.5084753 +0.5619986 0.3262122 0.5084753 +0.5654443 0.3262122 0.5084753 +0.5687816 0.3262122 0.5084753 +0.092819 0.3544566 0.5084753 +0.2262531 0.3544566 0.5084753 +0.2875993 0.3544566 0.5084753 +0.3262122 0.3544566 0.5084753 +0.3544566 0.3544566 0.5084753 +0.3767383 0.3544566 0.5084753 +0.3951413 0.3544566 0.5084753 +0.4108177 0.3544566 0.5084753 +0.4244723 0.3544566 0.5084753 +0.4365675 0.3544566 0.5084753 +0.4474232 0.3544566 0.5084753 +0.45727 0.3544566 0.5084753 +0.4662797 0.3544566 0.5084753 +0.4745834 0.3544566 0.5084753 +0.4822838 0.3544566 0.5084753 +0.4894626 0.3544566 0.5084753 +0.4961862 0.3544566 0.5084753 +0.5025087 0.3544566 0.5084753 +0.5084753 0.3544566 0.5084753 +0.514124 0.3544566 0.5084753 +0.519487 0.3544566 0.5084753 +0.5245917 0.3544566 0.5084753 +0.529462 0.3544566 0.5084753 +0.5341183 0.3544566 0.5084753 +0.5385787 0.3544566 0.5084753 +0.5428591 0.3544566 0.5084753 +0.5469733 0.3544566 0.5084753 +0.5509339 0.3544566 0.5084753 +0.5547519 0.3544566 0.5084753 +0.5584371 0.3544566 0.5084753 +0.5619986 0.3544566 0.5084753 +0.5654443 0.3544566 0.5084753 +0.5687816 0.3544566 0.5084753 +0.092819 0.3767383 0.5084753 +0.2262531 0.3767383 0.5084753 +0.2875993 0.3767383 0.5084753 +0.3262122 0.3767383 0.5084753 +0.3544566 0.3767383 0.5084753 +0.3767383 0.3767383 0.5084753 +0.3951413 0.3767383 0.5084753 +0.4108177 0.3767383 0.5084753 +0.4244723 0.3767383 0.5084753 +0.4365675 0.3767383 0.5084753 +0.4474232 0.3767383 0.5084753 +0.45727 0.3767383 0.5084753 +0.4662797 0.3767383 0.5084753 +0.4745834 0.3767383 0.5084753 +0.4822838 0.3767383 0.5084753 +0.4894626 0.3767383 0.5084753 +0.4961862 0.3767383 0.5084753 +0.5025087 0.3767383 0.5084753 +0.5084753 0.3767383 0.5084753 +0.514124 0.3767383 0.5084753 +0.519487 0.3767383 0.5084753 +0.5245917 0.3767383 0.5084753 +0.529462 0.3767383 0.5084753 +0.5341183 0.3767383 0.5084753 +0.5385787 0.3767383 0.5084753 +0.5428591 0.3767383 0.5084753 +0.5469733 0.3767383 0.5084753 +0.5509339 0.3767383 0.5084753 +0.5547519 0.3767383 0.5084753 +0.5584371 0.3767383 0.5084753 +0.5619986 0.3767383 0.5084753 +0.5654443 0.3767383 0.5084753 +0.5687816 0.3767383 0.5084753 +0.092819 0.3951413 0.5084753 +0.2262531 0.3951413 0.5084753 +0.2875993 0.3951413 0.5084753 +0.3262122 0.3951413 0.5084753 +0.3544566 0.3951413 0.5084753 +0.3767383 0.3951413 0.5084753 +0.3951413 0.3951413 0.5084753 +0.4108177 0.3951413 0.5084753 +0.4244723 0.3951413 0.5084753 +0.4365675 0.3951413 0.5084753 +0.4474232 0.3951413 0.5084753 +0.45727 0.3951413 0.5084753 +0.4662797 0.3951413 0.5084753 +0.4745834 0.3951413 0.5084753 +0.4822838 0.3951413 0.5084753 +0.4894626 0.3951413 0.5084753 +0.4961862 0.3951413 0.5084753 +0.5025087 0.3951413 0.5084753 +0.5084753 0.3951413 0.5084753 +0.514124 0.3951413 0.5084753 +0.519487 0.3951413 0.5084753 +0.5245917 0.3951413 0.5084753 +0.529462 0.3951413 0.5084753 +0.5341183 0.3951413 0.5084753 +0.5385787 0.3951413 0.5084753 +0.5428591 0.3951413 0.5084753 +0.5469733 0.3951413 0.5084753 +0.5509339 0.3951413 0.5084753 +0.5547519 0.3951413 0.5084753 +0.5584371 0.3951413 0.5084753 +0.5619986 0.3951413 0.5084753 +0.5654443 0.3951413 0.5084753 +0.5687816 0.3951413 0.5084753 +0.092819 0.4108177 0.5084753 +0.2262531 0.4108177 0.5084753 +0.2875993 0.4108177 0.5084753 +0.3262122 0.4108177 0.5084753 +0.3544566 0.4108177 0.5084753 +0.3767383 0.4108177 0.5084753 +0.3951413 0.4108177 0.5084753 +0.4108177 0.4108177 0.5084753 +0.4244723 0.4108177 0.5084753 +0.4365675 0.4108177 0.5084753 +0.4474232 0.4108177 0.5084753 +0.45727 0.4108177 0.5084753 +0.4662797 0.4108177 0.5084753 +0.4745834 0.4108177 0.5084753 +0.4822838 0.4108177 0.5084753 +0.4894626 0.4108177 0.5084753 +0.4961862 0.4108177 0.5084753 +0.5025087 0.4108177 0.5084753 +0.5084753 0.4108177 0.5084753 +0.514124 0.4108177 0.5084753 +0.519487 0.4108177 0.5084753 +0.5245917 0.4108177 0.5084753 +0.529462 0.4108177 0.5084753 +0.5341183 0.4108177 0.5084753 +0.5385787 0.4108177 0.5084753 +0.5428591 0.4108177 0.5084753 +0.5469733 0.4108177 0.5084753 +0.5509339 0.4108177 0.5084753 +0.5547519 0.4108177 0.5084753 +0.5584371 0.4108177 0.5084753 +0.5619986 0.4108177 0.5084753 +0.5654443 0.4108177 0.5084753 +0.5687816 0.4108177 0.5084753 +0.092819 0.4244723 0.5084753 +0.2262531 0.4244723 0.5084753 +0.2875993 0.4244723 0.5084753 +0.3262122 0.4244723 0.5084753 +0.3544566 0.4244723 0.5084753 +0.3767383 0.4244723 0.5084753 +0.3951413 0.4244723 0.5084753 +0.4108177 0.4244723 0.5084753 +0.4244723 0.4244723 0.5084753 +0.4365675 0.4244723 0.5084753 +0.4474232 0.4244723 0.5084753 +0.45727 0.4244723 0.5084753 +0.4662797 0.4244723 0.5084753 +0.4745834 0.4244723 0.5084753 +0.4822838 0.4244723 0.5084753 +0.4894626 0.4244723 0.5084753 +0.4961862 0.4244723 0.5084753 +0.5025087 0.4244723 0.5084753 +0.5084753 0.4244723 0.5084753 +0.514124 0.4244723 0.5084753 +0.519487 0.4244723 0.5084753 +0.5245917 0.4244723 0.5084753 +0.529462 0.4244723 0.5084753 +0.5341183 0.4244723 0.5084753 +0.5385787 0.4244723 0.5084753 +0.5428591 0.4244723 0.5084753 +0.5469733 0.4244723 0.5084753 +0.5509339 0.4244723 0.5084753 +0.5547519 0.4244723 0.5084753 +0.5584371 0.4244723 0.5084753 +0.5619986 0.4244723 0.5084753 +0.5654443 0.4244723 0.5084753 +0.5687816 0.4244723 0.5084753 +0.092819 0.4365675 0.5084753 +0.2262531 0.4365675 0.5084753 +0.2875993 0.4365675 0.5084753 +0.3262122 0.4365675 0.5084753 +0.3544566 0.4365675 0.5084753 +0.3767383 0.4365675 0.5084753 +0.3951413 0.4365675 0.5084753 +0.4108177 0.4365675 0.5084753 +0.4244723 0.4365675 0.5084753 +0.4365675 0.4365675 0.5084753 +0.4474232 0.4365675 0.5084753 +0.45727 0.4365675 0.5084753 +0.4662797 0.4365675 0.5084753 +0.4745834 0.4365675 0.5084753 +0.4822838 0.4365675 0.5084753 +0.4894626 0.4365675 0.5084753 +0.4961862 0.4365675 0.5084753 +0.5025087 0.4365675 0.5084753 +0.5084753 0.4365675 0.5084753 +0.514124 0.4365675 0.5084753 +0.519487 0.4365675 0.5084753 +0.5245917 0.4365675 0.5084753 +0.529462 0.4365675 0.5084753 +0.5341183 0.4365675 0.5084753 +0.5385787 0.4365675 0.5084753 +0.5428591 0.4365675 0.5084753 +0.5469733 0.4365675 0.5084753 +0.5509339 0.4365675 0.5084753 +0.5547519 0.4365675 0.5084753 +0.5584371 0.4365675 0.5084753 +0.5619986 0.4365675 0.5084753 +0.5654443 0.4365675 0.5084753 +0.5687816 0.4365675 0.5084753 +0.092819 0.4474232 0.5084753 +0.2262531 0.4474232 0.5084753 +0.2875993 0.4474232 0.5084753 +0.3262122 0.4474232 0.5084753 +0.3544566 0.4474232 0.5084753 +0.3767383 0.4474232 0.5084753 +0.3951413 0.4474232 0.5084753 +0.4108177 0.4474232 0.5084753 +0.4244723 0.4474232 0.5084753 +0.4365675 0.4474232 0.5084753 +0.4474232 0.4474232 0.5084753 +0.45727 0.4474232 0.5084753 +0.4662797 0.4474232 0.5084753 +0.4745834 0.4474232 0.5084753 +0.4822838 0.4474232 0.5084753 +0.4894626 0.4474232 0.5084753 +0.4961862 0.4474232 0.5084753 +0.5025087 0.4474232 0.5084753 +0.5084753 0.4474232 0.5084753 +0.514124 0.4474232 0.5084753 +0.519487 0.4474232 0.5084753 +0.5245917 0.4474232 0.5084753 +0.529462 0.4474232 0.5084753 +0.5341183 0.4474232 0.5084753 +0.5385787 0.4474232 0.5084753 +0.5428591 0.4474232 0.5084753 +0.5469733 0.4474232 0.5084753 +0.5509339 0.4474232 0.5084753 +0.5547519 0.4474232 0.5084753 +0.5584371 0.4474232 0.5084753 +0.5619986 0.4474232 0.5084753 +0.5654443 0.4474232 0.5084753 +0.5687816 0.4474232 0.5084753 +0.092819 0.45727 0.5084753 +0.2262531 0.45727 0.5084753 +0.2875993 0.45727 0.5084753 +0.3262122 0.45727 0.5084753 +0.3544566 0.45727 0.5084753 +0.3767383 0.45727 0.5084753 +0.3951413 0.45727 0.5084753 +0.4108177 0.45727 0.5084753 +0.4244723 0.45727 0.5084753 +0.4365675 0.45727 0.5084753 +0.4474232 0.45727 0.5084753 +0.45727 0.45727 0.5084753 +0.4662797 0.45727 0.5084753 +0.4745834 0.45727 0.5084753 +0.4822838 0.45727 0.5084753 +0.4894626 0.45727 0.5084753 +0.4961862 0.45727 0.5084753 +0.5025087 0.45727 0.5084753 +0.5084753 0.45727 0.5084753 +0.514124 0.45727 0.5084753 +0.519487 0.45727 0.5084753 +0.5245917 0.45727 0.5084753 +0.529462 0.45727 0.5084753 +0.5341183 0.45727 0.5084753 +0.5385787 0.45727 0.5084753 +0.5428591 0.45727 0.5084753 +0.5469733 0.45727 0.5084753 +0.5509339 0.45727 0.5084753 +0.5547519 0.45727 0.5084753 +0.5584371 0.45727 0.5084753 +0.5619986 0.45727 0.5084753 +0.5654443 0.45727 0.5084753 +0.5687816 0.45727 0.5084753 +0.092819 0.4662797 0.5084753 +0.2262531 0.4662797 0.5084753 +0.2875993 0.4662797 0.5084753 +0.3262122 0.4662797 0.5084753 +0.3544566 0.4662797 0.5084753 +0.3767383 0.4662797 0.5084753 +0.3951413 0.4662797 0.5084753 +0.4108177 0.4662797 0.5084753 +0.4244723 0.4662797 0.5084753 +0.4365675 0.4662797 0.5084753 +0.4474232 0.4662797 0.5084753 +0.45727 0.4662797 0.5084753 +0.4662797 0.4662797 0.5084753 +0.4745834 0.4662797 0.5084753 +0.4822838 0.4662797 0.5084753 +0.4894626 0.4662797 0.5084753 +0.4961862 0.4662797 0.5084753 +0.5025087 0.4662797 0.5084753 +0.5084753 0.4662797 0.5084753 +0.514124 0.4662797 0.5084753 +0.519487 0.4662797 0.5084753 +0.5245917 0.4662797 0.5084753 +0.529462 0.4662797 0.5084753 +0.5341183 0.4662797 0.5084753 +0.5385787 0.4662797 0.5084753 +0.5428591 0.4662797 0.5084753 +0.5469733 0.4662797 0.5084753 +0.5509339 0.4662797 0.5084753 +0.5547519 0.4662797 0.5084753 +0.5584371 0.4662797 0.5084753 +0.5619986 0.4662797 0.5084753 +0.5654443 0.4662797 0.5084753 +0.5687816 0.4662797 0.5084753 +0.092819 0.4745834 0.5084753 +0.2262531 0.4745834 0.5084753 +0.2875993 0.4745834 0.5084753 +0.3262122 0.4745834 0.5084753 +0.3544566 0.4745834 0.5084753 +0.3767383 0.4745834 0.5084753 +0.3951413 0.4745834 0.5084753 +0.4108177 0.4745834 0.5084753 +0.4244723 0.4745834 0.5084753 +0.4365675 0.4745834 0.5084753 +0.4474232 0.4745834 0.5084753 +0.45727 0.4745834 0.5084753 +0.4662797 0.4745834 0.5084753 +0.4745834 0.4745834 0.5084753 +0.4822838 0.4745834 0.5084753 +0.4894626 0.4745834 0.5084753 +0.4961862 0.4745834 0.5084753 +0.5025087 0.4745834 0.5084753 +0.5084753 0.4745834 0.5084753 +0.514124 0.4745834 0.5084753 +0.519487 0.4745834 0.5084753 +0.5245917 0.4745834 0.5084753 +0.529462 0.4745834 0.5084753 +0.5341183 0.4745834 0.5084753 +0.5385787 0.4745834 0.5084753 +0.5428591 0.4745834 0.5084753 +0.5469733 0.4745834 0.5084753 +0.5509339 0.4745834 0.5084753 +0.5547519 0.4745834 0.5084753 +0.5584371 0.4745834 0.5084753 +0.5619986 0.4745834 0.5084753 +0.5654443 0.4745834 0.5084753 +0.5687816 0.4745834 0.5084753 +0.092819 0.4822838 0.5084753 +0.2262531 0.4822838 0.5084753 +0.2875993 0.4822838 0.5084753 +0.3262122 0.4822838 0.5084753 +0.3544566 0.4822838 0.5084753 +0.3767383 0.4822838 0.5084753 +0.3951413 0.4822838 0.5084753 +0.4108177 0.4822838 0.5084753 +0.4244723 0.4822838 0.5084753 +0.4365675 0.4822838 0.5084753 +0.4474232 0.4822838 0.5084753 +0.45727 0.4822838 0.5084753 +0.4662797 0.4822838 0.5084753 +0.4745834 0.4822838 0.5084753 +0.4822838 0.4822838 0.5084753 +0.4894626 0.4822838 0.5084753 +0.4961862 0.4822838 0.5084753 +0.5025087 0.4822838 0.5084753 +0.5084753 0.4822838 0.5084753 +0.514124 0.4822838 0.5084753 +0.519487 0.4822838 0.5084753 +0.5245917 0.4822838 0.5084753 +0.529462 0.4822838 0.5084753 +0.5341183 0.4822838 0.5084753 +0.5385787 0.4822838 0.5084753 +0.5428591 0.4822838 0.5084753 +0.5469733 0.4822838 0.5084753 +0.5509339 0.4822838 0.5084753 +0.5547519 0.4822838 0.5084753 +0.5584371 0.4822838 0.5084753 +0.5619986 0.4822838 0.5084753 +0.5654443 0.4822838 0.5084753 +0.5687816 0.4822838 0.5084753 +0.092819 0.4894626 0.5084753 +0.2262531 0.4894626 0.5084753 +0.2875993 0.4894626 0.5084753 +0.3262122 0.4894626 0.5084753 +0.3544566 0.4894626 0.5084753 +0.3767383 0.4894626 0.5084753 +0.3951413 0.4894626 0.5084753 +0.4108177 0.4894626 0.5084753 +0.4244723 0.4894626 0.5084753 +0.4365675 0.4894626 0.5084753 +0.4474232 0.4894626 0.5084753 +0.45727 0.4894626 0.5084753 +0.4662797 0.4894626 0.5084753 +0.4745834 0.4894626 0.5084753 +0.4822838 0.4894626 0.5084753 +0.4894626 0.4894626 0.5084753 +0.4961862 0.4894626 0.5084753 +0.5025087 0.4894626 0.5084753 +0.5084753 0.4894626 0.5084753 +0.514124 0.4894626 0.5084753 +0.519487 0.4894626 0.5084753 +0.5245917 0.4894626 0.5084753 +0.529462 0.4894626 0.5084753 +0.5341183 0.4894626 0.5084753 +0.5385787 0.4894626 0.5084753 +0.5428591 0.4894626 0.5084753 +0.5469733 0.4894626 0.5084753 +0.5509339 0.4894626 0.5084753 +0.5547519 0.4894626 0.5084753 +0.5584371 0.4894626 0.5084753 +0.5619986 0.4894626 0.5084753 +0.5654443 0.4894626 0.5084753 +0.5687816 0.4894626 0.5084753 +0.092819 0.4961862 0.5084753 +0.2262531 0.4961862 0.5084753 +0.2875993 0.4961862 0.5084753 +0.3262122 0.4961862 0.5084753 +0.3544566 0.4961862 0.5084753 +0.3767383 0.4961862 0.5084753 +0.3951413 0.4961862 0.5084753 +0.4108177 0.4961862 0.5084753 +0.4244723 0.4961862 0.5084753 +0.4365675 0.4961862 0.5084753 +0.4474232 0.4961862 0.5084753 +0.45727 0.4961862 0.5084753 +0.4662797 0.4961862 0.5084753 +0.4745834 0.4961862 0.5084753 +0.4822838 0.4961862 0.5084753 +0.4894626 0.4961862 0.5084753 +0.4961862 0.4961862 0.5084753 +0.5025087 0.4961862 0.5084753 +0.5084753 0.4961862 0.5084753 +0.514124 0.4961862 0.5084753 +0.519487 0.4961862 0.5084753 +0.5245917 0.4961862 0.5084753 +0.529462 0.4961862 0.5084753 +0.5341183 0.4961862 0.5084753 +0.5385787 0.4961862 0.5084753 +0.5428591 0.4961862 0.5084753 +0.5469733 0.4961862 0.5084753 +0.5509339 0.4961862 0.5084753 +0.5547519 0.4961862 0.5084753 +0.5584371 0.4961862 0.5084753 +0.5619986 0.4961862 0.5084753 +0.5654443 0.4961862 0.5084753 +0.5687816 0.4961862 0.5084753 +0.092819 0.5025087 0.5084753 +0.2262531 0.5025087 0.5084753 +0.2875993 0.5025087 0.5084753 +0.3262122 0.5025087 0.5084753 +0.3544566 0.5025087 0.5084753 +0.3767383 0.5025087 0.5084753 +0.3951413 0.5025087 0.5084753 +0.4108177 0.5025087 0.5084753 +0.4244723 0.5025087 0.5084753 +0.4365675 0.5025087 0.5084753 +0.4474232 0.5025087 0.5084753 +0.45727 0.5025087 0.5084753 +0.4662797 0.5025087 0.5084753 +0.4745834 0.5025087 0.5084753 +0.4822838 0.5025087 0.5084753 +0.4894626 0.5025087 0.5084753 +0.4961862 0.5025087 0.5084753 +0.5025087 0.5025087 0.5084753 +0.5084753 0.5025087 0.5084753 +0.514124 0.5025087 0.5084753 +0.519487 0.5025087 0.5084753 +0.5245917 0.5025087 0.5084753 +0.529462 0.5025087 0.5084753 +0.5341183 0.5025087 0.5084753 +0.5385787 0.5025087 0.5084753 +0.5428591 0.5025087 0.5084753 +0.5469733 0.5025087 0.5084753 +0.5509339 0.5025087 0.5084753 +0.5547519 0.5025087 0.5084753 +0.5584371 0.5025087 0.5084753 +0.5619986 0.5025087 0.5084753 +0.5654443 0.5025087 0.5084753 +0.5687816 0.5025087 0.5084753 +0.092819 0.5084753 0.5084753 +0.2262531 0.5084753 0.5084753 +0.2875993 0.5084753 0.5084753 +0.3262122 0.5084753 0.5084753 +0.3544566 0.5084753 0.5084753 +0.3767383 0.5084753 0.5084753 +0.3951413 0.5084753 0.5084753 +0.4108177 0.5084753 0.5084753 +0.4244723 0.5084753 0.5084753 +0.4365675 0.5084753 0.5084753 +0.4474232 0.5084753 0.5084753 +0.45727 0.5084753 0.5084753 +0.4662797 0.5084753 0.5084753 +0.4745834 0.5084753 0.5084753 +0.4822838 0.5084753 0.5084753 +0.4894626 0.5084753 0.5084753 +0.4961862 0.5084753 0.5084753 +0.5025087 0.5084753 0.5084753 +0.5084753 0.5084753 0.5084753 +0.514124 0.5084753 0.5084753 +0.519487 0.5084753 0.5084753 +0.5245917 0.5084753 0.5084753 +0.529462 0.5084753 0.5084753 +0.5341183 0.5084753 0.5084753 +0.5385787 0.5084753 0.5084753 +0.5428591 0.5084753 0.5084753 +0.5469733 0.5084753 0.5084753 +0.5509339 0.5084753 0.5084753 +0.5547519 0.5084753 0.5084753 +0.5584371 0.5084753 0.5084753 +0.5619986 0.5084753 0.5084753 +0.5654443 0.5084753 0.5084753 +0.5687816 0.5084753 0.5084753 +0.092819 0.514124 0.5084753 +0.2262531 0.514124 0.5084753 +0.2875993 0.514124 0.5084753 +0.3262122 0.514124 0.5084753 +0.3544566 0.514124 0.5084753 +0.3767383 0.514124 0.5084753 +0.3951413 0.514124 0.5084753 +0.4108177 0.514124 0.5084753 +0.4244723 0.514124 0.5084753 +0.4365675 0.514124 0.5084753 +0.4474232 0.514124 0.5084753 +0.45727 0.514124 0.5084753 +0.4662797 0.514124 0.5084753 +0.4745834 0.514124 0.5084753 +0.4822838 0.514124 0.5084753 +0.4894626 0.514124 0.5084753 +0.4961862 0.514124 0.5084753 +0.5025087 0.514124 0.5084753 +0.5084753 0.514124 0.5084753 +0.514124 0.514124 0.5084753 +0.519487 0.514124 0.5084753 +0.5245917 0.514124 0.5084753 +0.529462 0.514124 0.5084753 +0.5341183 0.514124 0.5084753 +0.5385787 0.514124 0.5084753 +0.5428591 0.514124 0.5084753 +0.5469733 0.514124 0.5084753 +0.5509339 0.514124 0.5084753 +0.5547519 0.514124 0.5084753 +0.5584371 0.514124 0.5084753 +0.5619986 0.514124 0.5084753 +0.5654443 0.514124 0.5084753 +0.5687816 0.514124 0.5084753 +0.092819 0.519487 0.5084753 +0.2262531 0.519487 0.5084753 +0.2875993 0.519487 0.5084753 +0.3262122 0.519487 0.5084753 +0.3544566 0.519487 0.5084753 +0.3767383 0.519487 0.5084753 +0.3951413 0.519487 0.5084753 +0.4108177 0.519487 0.5084753 +0.4244723 0.519487 0.5084753 +0.4365675 0.519487 0.5084753 +0.4474232 0.519487 0.5084753 +0.45727 0.519487 0.5084753 +0.4662797 0.519487 0.5084753 +0.4745834 0.519487 0.5084753 +0.4822838 0.519487 0.5084753 +0.4894626 0.519487 0.5084753 +0.4961862 0.519487 0.5084753 +0.5025087 0.519487 0.5084753 +0.5084753 0.519487 0.5084753 +0.514124 0.519487 0.5084753 +0.519487 0.519487 0.5084753 +0.5245917 0.519487 0.5084753 +0.529462 0.519487 0.5084753 +0.5341183 0.519487 0.5084753 +0.5385787 0.519487 0.5084753 +0.5428591 0.519487 0.5084753 +0.5469733 0.519487 0.5084753 +0.5509339 0.519487 0.5084753 +0.5547519 0.519487 0.5084753 +0.5584371 0.519487 0.5084753 +0.5619986 0.519487 0.5084753 +0.5654443 0.519487 0.5084753 +0.5687816 0.519487 0.5084753 +0.092819 0.5245917 0.5084753 +0.2262531 0.5245917 0.5084753 +0.2875993 0.5245917 0.5084753 +0.3262122 0.5245917 0.5084753 +0.3544566 0.5245917 0.5084753 +0.3767383 0.5245917 0.5084753 +0.3951413 0.5245917 0.5084753 +0.4108177 0.5245917 0.5084753 +0.4244723 0.5245917 0.5084753 +0.4365675 0.5245917 0.5084753 +0.4474232 0.5245917 0.5084753 +0.45727 0.5245917 0.5084753 +0.4662797 0.5245917 0.5084753 +0.4745834 0.5245917 0.5084753 +0.4822838 0.5245917 0.5084753 +0.4894626 0.5245917 0.5084753 +0.4961862 0.5245917 0.5084753 +0.5025087 0.5245917 0.5084753 +0.5084753 0.5245917 0.5084753 +0.514124 0.5245917 0.5084753 +0.519487 0.5245917 0.5084753 +0.5245917 0.5245917 0.5084753 +0.529462 0.5245917 0.5084753 +0.5341183 0.5245917 0.5084753 +0.5385787 0.5245917 0.5084753 +0.5428591 0.5245917 0.5084753 +0.5469733 0.5245917 0.5084753 +0.5509339 0.5245917 0.5084753 +0.5547519 0.5245917 0.5084753 +0.5584371 0.5245917 0.5084753 +0.5619986 0.5245917 0.5084753 +0.5654443 0.5245917 0.5084753 +0.5687816 0.5245917 0.5084753 +0.092819 0.529462 0.5084753 +0.2262531 0.529462 0.5084753 +0.2875993 0.529462 0.5084753 +0.3262122 0.529462 0.5084753 +0.3544566 0.529462 0.5084753 +0.3767383 0.529462 0.5084753 +0.3951413 0.529462 0.5084753 +0.4108177 0.529462 0.5084753 +0.4244723 0.529462 0.5084753 +0.4365675 0.529462 0.5084753 +0.4474232 0.529462 0.5084753 +0.45727 0.529462 0.5084753 +0.4662797 0.529462 0.5084753 +0.4745834 0.529462 0.5084753 +0.4822838 0.529462 0.5084753 +0.4894626 0.529462 0.5084753 +0.4961862 0.529462 0.5084753 +0.5025087 0.529462 0.5084753 +0.5084753 0.529462 0.5084753 +0.514124 0.529462 0.5084753 +0.519487 0.529462 0.5084753 +0.5245917 0.529462 0.5084753 +0.529462 0.529462 0.5084753 +0.5341183 0.529462 0.5084753 +0.5385787 0.529462 0.5084753 +0.5428591 0.529462 0.5084753 +0.5469733 0.529462 0.5084753 +0.5509339 0.529462 0.5084753 +0.5547519 0.529462 0.5084753 +0.5584371 0.529462 0.5084753 +0.5619986 0.529462 0.5084753 +0.5654443 0.529462 0.5084753 +0.5687816 0.529462 0.5084753 +0.092819 0.5341183 0.5084753 +0.2262531 0.5341183 0.5084753 +0.2875993 0.5341183 0.5084753 +0.3262122 0.5341183 0.5084753 +0.3544566 0.5341183 0.5084753 +0.3767383 0.5341183 0.5084753 +0.3951413 0.5341183 0.5084753 +0.4108177 0.5341183 0.5084753 +0.4244723 0.5341183 0.5084753 +0.4365675 0.5341183 0.5084753 +0.4474232 0.5341183 0.5084753 +0.45727 0.5341183 0.5084753 +0.4662797 0.5341183 0.5084753 +0.4745834 0.5341183 0.5084753 +0.4822838 0.5341183 0.5084753 +0.4894626 0.5341183 0.5084753 +0.4961862 0.5341183 0.5084753 +0.5025087 0.5341183 0.5084753 +0.5084753 0.5341183 0.5084753 +0.514124 0.5341183 0.5084753 +0.519487 0.5341183 0.5084753 +0.5245917 0.5341183 0.5084753 +0.529462 0.5341183 0.5084753 +0.5341183 0.5341183 0.5084753 +0.5385787 0.5341183 0.5084753 +0.5428591 0.5341183 0.5084753 +0.5469733 0.5341183 0.5084753 +0.5509339 0.5341183 0.5084753 +0.5547519 0.5341183 0.5084753 +0.5584371 0.5341183 0.5084753 +0.5619986 0.5341183 0.5084753 +0.5654443 0.5341183 0.5084753 +0.5687816 0.5341183 0.5084753 +0.092819 0.5385787 0.5084753 +0.2262531 0.5385787 0.5084753 +0.2875993 0.5385787 0.5084753 +0.3262122 0.5385787 0.5084753 +0.3544566 0.5385787 0.5084753 +0.3767383 0.5385787 0.5084753 +0.3951413 0.5385787 0.5084753 +0.4108177 0.5385787 0.5084753 +0.4244723 0.5385787 0.5084753 +0.4365675 0.5385787 0.5084753 +0.4474232 0.5385787 0.5084753 +0.45727 0.5385787 0.5084753 +0.4662797 0.5385787 0.5084753 +0.4745834 0.5385787 0.5084753 +0.4822838 0.5385787 0.5084753 +0.4894626 0.5385787 0.5084753 +0.4961862 0.5385787 0.5084753 +0.5025087 0.5385787 0.5084753 +0.5084753 0.5385787 0.5084753 +0.514124 0.5385787 0.5084753 +0.519487 0.5385787 0.5084753 +0.5245917 0.5385787 0.5084753 +0.529462 0.5385787 0.5084753 +0.5341183 0.5385787 0.5084753 +0.5385787 0.5385787 0.5084753 +0.5428591 0.5385787 0.5084753 +0.5469733 0.5385787 0.5084753 +0.5509339 0.5385787 0.5084753 +0.5547519 0.5385787 0.5084753 +0.5584371 0.5385787 0.5084753 +0.5619986 0.5385787 0.5084753 +0.5654443 0.5385787 0.5084753 +0.5687816 0.5385787 0.5084753 +0.092819 0.5428591 0.5084753 +0.2262531 0.5428591 0.5084753 +0.2875993 0.5428591 0.5084753 +0.3262122 0.5428591 0.5084753 +0.3544566 0.5428591 0.5084753 +0.3767383 0.5428591 0.5084753 +0.3951413 0.5428591 0.5084753 +0.4108177 0.5428591 0.5084753 +0.4244723 0.5428591 0.5084753 +0.4365675 0.5428591 0.5084753 +0.4474232 0.5428591 0.5084753 +0.45727 0.5428591 0.5084753 +0.4662797 0.5428591 0.5084753 +0.4745834 0.5428591 0.5084753 +0.4822838 0.5428591 0.5084753 +0.4894626 0.5428591 0.5084753 +0.4961862 0.5428591 0.5084753 +0.5025087 0.5428591 0.5084753 +0.5084753 0.5428591 0.5084753 +0.514124 0.5428591 0.5084753 +0.519487 0.5428591 0.5084753 +0.5245917 0.5428591 0.5084753 +0.529462 0.5428591 0.5084753 +0.5341183 0.5428591 0.5084753 +0.5385787 0.5428591 0.5084753 +0.5428591 0.5428591 0.5084753 +0.5469733 0.5428591 0.5084753 +0.5509339 0.5428591 0.5084753 +0.5547519 0.5428591 0.5084753 +0.5584371 0.5428591 0.5084753 +0.5619986 0.5428591 0.5084753 +0.5654443 0.5428591 0.5084753 +0.5687816 0.5428591 0.5084753 +0.092819 0.5469733 0.5084753 +0.2262531 0.5469733 0.5084753 +0.2875993 0.5469733 0.5084753 +0.3262122 0.5469733 0.5084753 +0.3544566 0.5469733 0.5084753 +0.3767383 0.5469733 0.5084753 +0.3951413 0.5469733 0.5084753 +0.4108177 0.5469733 0.5084753 +0.4244723 0.5469733 0.5084753 +0.4365675 0.5469733 0.5084753 +0.4474232 0.5469733 0.5084753 +0.45727 0.5469733 0.5084753 +0.4662797 0.5469733 0.5084753 +0.4745834 0.5469733 0.5084753 +0.4822838 0.5469733 0.5084753 +0.4894626 0.5469733 0.5084753 +0.4961862 0.5469733 0.5084753 +0.5025087 0.5469733 0.5084753 +0.5084753 0.5469733 0.5084753 +0.514124 0.5469733 0.5084753 +0.519487 0.5469733 0.5084753 +0.5245917 0.5469733 0.5084753 +0.529462 0.5469733 0.5084753 +0.5341183 0.5469733 0.5084753 +0.5385787 0.5469733 0.5084753 +0.5428591 0.5469733 0.5084753 +0.5469733 0.5469733 0.5084753 +0.5509339 0.5469733 0.5084753 +0.5547519 0.5469733 0.5084753 +0.5584371 0.5469733 0.5084753 +0.5619986 0.5469733 0.5084753 +0.5654443 0.5469733 0.5084753 +0.5687816 0.5469733 0.5084753 +0.092819 0.5509339 0.5084753 +0.2262531 0.5509339 0.5084753 +0.2875993 0.5509339 0.5084753 +0.3262122 0.5509339 0.5084753 +0.3544566 0.5509339 0.5084753 +0.3767383 0.5509339 0.5084753 +0.3951413 0.5509339 0.5084753 +0.4108177 0.5509339 0.5084753 +0.4244723 0.5509339 0.5084753 +0.4365675 0.5509339 0.5084753 +0.4474232 0.5509339 0.5084753 +0.45727 0.5509339 0.5084753 +0.4662797 0.5509339 0.5084753 +0.4745834 0.5509339 0.5084753 +0.4822838 0.5509339 0.5084753 +0.4894626 0.5509339 0.5084753 +0.4961862 0.5509339 0.5084753 +0.5025087 0.5509339 0.5084753 +0.5084753 0.5509339 0.5084753 +0.514124 0.5509339 0.5084753 +0.519487 0.5509339 0.5084753 +0.5245917 0.5509339 0.5084753 +0.529462 0.5509339 0.5084753 +0.5341183 0.5509339 0.5084753 +0.5385787 0.5509339 0.5084753 +0.5428591 0.5509339 0.5084753 +0.5469733 0.5509339 0.5084753 +0.5509339 0.5509339 0.5084753 +0.5547519 0.5509339 0.5084753 +0.5584371 0.5509339 0.5084753 +0.5619986 0.5509339 0.5084753 +0.5654443 0.5509339 0.5084753 +0.5687816 0.5509339 0.5084753 +0.092819 0.5547519 0.5084753 +0.2262531 0.5547519 0.5084753 +0.2875993 0.5547519 0.5084753 +0.3262122 0.5547519 0.5084753 +0.3544566 0.5547519 0.5084753 +0.3767383 0.5547519 0.5084753 +0.3951413 0.5547519 0.5084753 +0.4108177 0.5547519 0.5084753 +0.4244723 0.5547519 0.5084753 +0.4365675 0.5547519 0.5084753 +0.4474232 0.5547519 0.5084753 +0.45727 0.5547519 0.5084753 +0.4662797 0.5547519 0.5084753 +0.4745834 0.5547519 0.5084753 +0.4822838 0.5547519 0.5084753 +0.4894626 0.5547519 0.5084753 +0.4961862 0.5547519 0.5084753 +0.5025087 0.5547519 0.5084753 +0.5084753 0.5547519 0.5084753 +0.514124 0.5547519 0.5084753 +0.519487 0.5547519 0.5084753 +0.5245917 0.5547519 0.5084753 +0.529462 0.5547519 0.5084753 +0.5341183 0.5547519 0.5084753 +0.5385787 0.5547519 0.5084753 +0.5428591 0.5547519 0.5084753 +0.5469733 0.5547519 0.5084753 +0.5509339 0.5547519 0.5084753 +0.5547519 0.5547519 0.5084753 +0.5584371 0.5547519 0.5084753 +0.5619986 0.5547519 0.5084753 +0.5654443 0.5547519 0.5084753 +0.5687816 0.5547519 0.5084753 +0.092819 0.5584371 0.5084753 +0.2262531 0.5584371 0.5084753 +0.2875993 0.5584371 0.5084753 +0.3262122 0.5584371 0.5084753 +0.3544566 0.5584371 0.5084753 +0.3767383 0.5584371 0.5084753 +0.3951413 0.5584371 0.5084753 +0.4108177 0.5584371 0.5084753 +0.4244723 0.5584371 0.5084753 +0.4365675 0.5584371 0.5084753 +0.4474232 0.5584371 0.5084753 +0.45727 0.5584371 0.5084753 +0.4662797 0.5584371 0.5084753 +0.4745834 0.5584371 0.5084753 +0.4822838 0.5584371 0.5084753 +0.4894626 0.5584371 0.5084753 +0.4961862 0.5584371 0.5084753 +0.5025087 0.5584371 0.5084753 +0.5084753 0.5584371 0.5084753 +0.514124 0.5584371 0.5084753 +0.519487 0.5584371 0.5084753 +0.5245917 0.5584371 0.5084753 +0.529462 0.5584371 0.5084753 +0.5341183 0.5584371 0.5084753 +0.5385787 0.5584371 0.5084753 +0.5428591 0.5584371 0.5084753 +0.5469733 0.5584371 0.5084753 +0.5509339 0.5584371 0.5084753 +0.5547519 0.5584371 0.5084753 +0.5584371 0.5584371 0.5084753 +0.5619986 0.5584371 0.5084753 +0.5654443 0.5584371 0.5084753 +0.5687816 0.5584371 0.5084753 +0.092819 0.5619986 0.5084753 +0.2262531 0.5619986 0.5084753 +0.2875993 0.5619986 0.5084753 +0.3262122 0.5619986 0.5084753 +0.3544566 0.5619986 0.5084753 +0.3767383 0.5619986 0.5084753 +0.3951413 0.5619986 0.5084753 +0.4108177 0.5619986 0.5084753 +0.4244723 0.5619986 0.5084753 +0.4365675 0.5619986 0.5084753 +0.4474232 0.5619986 0.5084753 +0.45727 0.5619986 0.5084753 +0.4662797 0.5619986 0.5084753 +0.4745834 0.5619986 0.5084753 +0.4822838 0.5619986 0.5084753 +0.4894626 0.5619986 0.5084753 +0.4961862 0.5619986 0.5084753 +0.5025087 0.5619986 0.5084753 +0.5084753 0.5619986 0.5084753 +0.514124 0.5619986 0.5084753 +0.519487 0.5619986 0.5084753 +0.5245917 0.5619986 0.5084753 +0.529462 0.5619986 0.5084753 +0.5341183 0.5619986 0.5084753 +0.5385787 0.5619986 0.5084753 +0.5428591 0.5619986 0.5084753 +0.5469733 0.5619986 0.5084753 +0.5509339 0.5619986 0.5084753 +0.5547519 0.5619986 0.5084753 +0.5584371 0.5619986 0.5084753 +0.5619986 0.5619986 0.5084753 +0.5654443 0.5619986 0.5084753 +0.5687816 0.5619986 0.5084753 +0.092819 0.5654443 0.5084753 +0.2262531 0.5654443 0.5084753 +0.2875993 0.5654443 0.5084753 +0.3262122 0.5654443 0.5084753 +0.3544566 0.5654443 0.5084753 +0.3767383 0.5654443 0.5084753 +0.3951413 0.5654443 0.5084753 +0.4108177 0.5654443 0.5084753 +0.4244723 0.5654443 0.5084753 +0.4365675 0.5654443 0.5084753 +0.4474232 0.5654443 0.5084753 +0.45727 0.5654443 0.5084753 +0.4662797 0.5654443 0.5084753 +0.4745834 0.5654443 0.5084753 +0.4822838 0.5654443 0.5084753 +0.4894626 0.5654443 0.5084753 +0.4961862 0.5654443 0.5084753 +0.5025087 0.5654443 0.5084753 +0.5084753 0.5654443 0.5084753 +0.514124 0.5654443 0.5084753 +0.519487 0.5654443 0.5084753 +0.5245917 0.5654443 0.5084753 +0.529462 0.5654443 0.5084753 +0.5341183 0.5654443 0.5084753 +0.5385787 0.5654443 0.5084753 +0.5428591 0.5654443 0.5084753 +0.5469733 0.5654443 0.5084753 +0.5509339 0.5654443 0.5084753 +0.5547519 0.5654443 0.5084753 +0.5584371 0.5654443 0.5084753 +0.5619986 0.5654443 0.5084753 +0.5654443 0.5654443 0.5084753 +0.5687816 0.5654443 0.5084753 +0.092819 0.5687816 0.5084753 +0.2262531 0.5687816 0.5084753 +0.2875993 0.5687816 0.5084753 +0.3262122 0.5687816 0.5084753 +0.3544566 0.5687816 0.5084753 +0.3767383 0.5687816 0.5084753 +0.3951413 0.5687816 0.5084753 +0.4108177 0.5687816 0.5084753 +0.4244723 0.5687816 0.5084753 +0.4365675 0.5687816 0.5084753 +0.4474232 0.5687816 0.5084753 +0.45727 0.5687816 0.5084753 +0.4662797 0.5687816 0.5084753 +0.4745834 0.5687816 0.5084753 +0.4822838 0.5687816 0.5084753 +0.4894626 0.5687816 0.5084753 +0.4961862 0.5687816 0.5084753 +0.5025087 0.5687816 0.5084753 +0.5084753 0.5687816 0.5084753 +0.514124 0.5687816 0.5084753 +0.519487 0.5687816 0.5084753 +0.5245917 0.5687816 0.5084753 +0.529462 0.5687816 0.5084753 +0.5341183 0.5687816 0.5084753 +0.5385787 0.5687816 0.5084753 +0.5428591 0.5687816 0.5084753 +0.5469733 0.5687816 0.5084753 +0.5509339 0.5687816 0.5084753 +0.5547519 0.5687816 0.5084753 +0.5584371 0.5687816 0.5084753 +0.5619986 0.5687816 0.5084753 +0.5654443 0.5687816 0.5084753 +0.5687816 0.5687816 0.5084753 +0.092819 0.092819 0.514124 +0.2262531 0.092819 0.514124 +0.2875993 0.092819 0.514124 +0.3262122 0.092819 0.514124 +0.3544566 0.092819 0.514124 +0.3767383 0.092819 0.514124 +0.3951413 0.092819 0.514124 +0.4108177 0.092819 0.514124 +0.4244723 0.092819 0.514124 +0.4365675 0.092819 0.514124 +0.4474232 0.092819 0.514124 +0.45727 0.092819 0.514124 +0.4662797 0.092819 0.514124 +0.4745834 0.092819 0.514124 +0.4822838 0.092819 0.514124 +0.4894626 0.092819 0.514124 +0.4961862 0.092819 0.514124 +0.5025087 0.092819 0.514124 +0.5084753 0.092819 0.514124 +0.514124 0.092819 0.514124 +0.519487 0.092819 0.514124 +0.5245917 0.092819 0.514124 +0.529462 0.092819 0.514124 +0.5341183 0.092819 0.514124 +0.5385787 0.092819 0.514124 +0.5428591 0.092819 0.514124 +0.5469733 0.092819 0.514124 +0.5509339 0.092819 0.514124 +0.5547519 0.092819 0.514124 +0.5584371 0.092819 0.514124 +0.5619986 0.092819 0.514124 +0.5654443 0.092819 0.514124 +0.5687816 0.092819 0.514124 +0.092819 0.2262531 0.514124 +0.2262531 0.2262531 0.514124 +0.2875993 0.2262531 0.514124 +0.3262122 0.2262531 0.514124 +0.3544566 0.2262531 0.514124 +0.3767383 0.2262531 0.514124 +0.3951413 0.2262531 0.514124 +0.4108177 0.2262531 0.514124 +0.4244723 0.2262531 0.514124 +0.4365675 0.2262531 0.514124 +0.4474232 0.2262531 0.514124 +0.45727 0.2262531 0.514124 +0.4662797 0.2262531 0.514124 +0.4745834 0.2262531 0.514124 +0.4822838 0.2262531 0.514124 +0.4894626 0.2262531 0.514124 +0.4961862 0.2262531 0.514124 +0.5025087 0.2262531 0.514124 +0.5084753 0.2262531 0.514124 +0.514124 0.2262531 0.514124 +0.519487 0.2262531 0.514124 +0.5245917 0.2262531 0.514124 +0.529462 0.2262531 0.514124 +0.5341183 0.2262531 0.514124 +0.5385787 0.2262531 0.514124 +0.5428591 0.2262531 0.514124 +0.5469733 0.2262531 0.514124 +0.5509339 0.2262531 0.514124 +0.5547519 0.2262531 0.514124 +0.5584371 0.2262531 0.514124 +0.5619986 0.2262531 0.514124 +0.5654443 0.2262531 0.514124 +0.5687816 0.2262531 0.514124 +0.092819 0.2875993 0.514124 +0.2262531 0.2875993 0.514124 +0.2875993 0.2875993 0.514124 +0.3262122 0.2875993 0.514124 +0.3544566 0.2875993 0.514124 +0.3767383 0.2875993 0.514124 +0.3951413 0.2875993 0.514124 +0.4108177 0.2875993 0.514124 +0.4244723 0.2875993 0.514124 +0.4365675 0.2875993 0.514124 +0.4474232 0.2875993 0.514124 +0.45727 0.2875993 0.514124 +0.4662797 0.2875993 0.514124 +0.4745834 0.2875993 0.514124 +0.4822838 0.2875993 0.514124 +0.4894626 0.2875993 0.514124 +0.4961862 0.2875993 0.514124 +0.5025087 0.2875993 0.514124 +0.5084753 0.2875993 0.514124 +0.514124 0.2875993 0.514124 +0.519487 0.2875993 0.514124 +0.5245917 0.2875993 0.514124 +0.529462 0.2875993 0.514124 +0.5341183 0.2875993 0.514124 +0.5385787 0.2875993 0.514124 +0.5428591 0.2875993 0.514124 +0.5469733 0.2875993 0.514124 +0.5509339 0.2875993 0.514124 +0.5547519 0.2875993 0.514124 +0.5584371 0.2875993 0.514124 +0.5619986 0.2875993 0.514124 +0.5654443 0.2875993 0.514124 +0.5687816 0.2875993 0.514124 +0.092819 0.3262122 0.514124 +0.2262531 0.3262122 0.514124 +0.2875993 0.3262122 0.514124 +0.3262122 0.3262122 0.514124 +0.3544566 0.3262122 0.514124 +0.3767383 0.3262122 0.514124 +0.3951413 0.3262122 0.514124 +0.4108177 0.3262122 0.514124 +0.4244723 0.3262122 0.514124 +0.4365675 0.3262122 0.514124 +0.4474232 0.3262122 0.514124 +0.45727 0.3262122 0.514124 +0.4662797 0.3262122 0.514124 +0.4745834 0.3262122 0.514124 +0.4822838 0.3262122 0.514124 +0.4894626 0.3262122 0.514124 +0.4961862 0.3262122 0.514124 +0.5025087 0.3262122 0.514124 +0.5084753 0.3262122 0.514124 +0.514124 0.3262122 0.514124 +0.519487 0.3262122 0.514124 +0.5245917 0.3262122 0.514124 +0.529462 0.3262122 0.514124 +0.5341183 0.3262122 0.514124 +0.5385787 0.3262122 0.514124 +0.5428591 0.3262122 0.514124 +0.5469733 0.3262122 0.514124 +0.5509339 0.3262122 0.514124 +0.5547519 0.3262122 0.514124 +0.5584371 0.3262122 0.514124 +0.5619986 0.3262122 0.514124 +0.5654443 0.3262122 0.514124 +0.5687816 0.3262122 0.514124 +0.092819 0.3544566 0.514124 +0.2262531 0.3544566 0.514124 +0.2875993 0.3544566 0.514124 +0.3262122 0.3544566 0.514124 +0.3544566 0.3544566 0.514124 +0.3767383 0.3544566 0.514124 +0.3951413 0.3544566 0.514124 +0.4108177 0.3544566 0.514124 +0.4244723 0.3544566 0.514124 +0.4365675 0.3544566 0.514124 +0.4474232 0.3544566 0.514124 +0.45727 0.3544566 0.514124 +0.4662797 0.3544566 0.514124 +0.4745834 0.3544566 0.514124 +0.4822838 0.3544566 0.514124 +0.4894626 0.3544566 0.514124 +0.4961862 0.3544566 0.514124 +0.5025087 0.3544566 0.514124 +0.5084753 0.3544566 0.514124 +0.514124 0.3544566 0.514124 +0.519487 0.3544566 0.514124 +0.5245917 0.3544566 0.514124 +0.529462 0.3544566 0.514124 +0.5341183 0.3544566 0.514124 +0.5385787 0.3544566 0.514124 +0.5428591 0.3544566 0.514124 +0.5469733 0.3544566 0.514124 +0.5509339 0.3544566 0.514124 +0.5547519 0.3544566 0.514124 +0.5584371 0.3544566 0.514124 +0.5619986 0.3544566 0.514124 +0.5654443 0.3544566 0.514124 +0.5687816 0.3544566 0.514124 +0.092819 0.3767383 0.514124 +0.2262531 0.3767383 0.514124 +0.2875993 0.3767383 0.514124 +0.3262122 0.3767383 0.514124 +0.3544566 0.3767383 0.514124 +0.3767383 0.3767383 0.514124 +0.3951413 0.3767383 0.514124 +0.4108177 0.3767383 0.514124 +0.4244723 0.3767383 0.514124 +0.4365675 0.3767383 0.514124 +0.4474232 0.3767383 0.514124 +0.45727 0.3767383 0.514124 +0.4662797 0.3767383 0.514124 +0.4745834 0.3767383 0.514124 +0.4822838 0.3767383 0.514124 +0.4894626 0.3767383 0.514124 +0.4961862 0.3767383 0.514124 +0.5025087 0.3767383 0.514124 +0.5084753 0.3767383 0.514124 +0.514124 0.3767383 0.514124 +0.519487 0.3767383 0.514124 +0.5245917 0.3767383 0.514124 +0.529462 0.3767383 0.514124 +0.5341183 0.3767383 0.514124 +0.5385787 0.3767383 0.514124 +0.5428591 0.3767383 0.514124 +0.5469733 0.3767383 0.514124 +0.5509339 0.3767383 0.514124 +0.5547519 0.3767383 0.514124 +0.5584371 0.3767383 0.514124 +0.5619986 0.3767383 0.514124 +0.5654443 0.3767383 0.514124 +0.5687816 0.3767383 0.514124 +0.092819 0.3951413 0.514124 +0.2262531 0.3951413 0.514124 +0.2875993 0.3951413 0.514124 +0.3262122 0.3951413 0.514124 +0.3544566 0.3951413 0.514124 +0.3767383 0.3951413 0.514124 +0.3951413 0.3951413 0.514124 +0.4108177 0.3951413 0.514124 +0.4244723 0.3951413 0.514124 +0.4365675 0.3951413 0.514124 +0.4474232 0.3951413 0.514124 +0.45727 0.3951413 0.514124 +0.4662797 0.3951413 0.514124 +0.4745834 0.3951413 0.514124 +0.4822838 0.3951413 0.514124 +0.4894626 0.3951413 0.514124 +0.4961862 0.3951413 0.514124 +0.5025087 0.3951413 0.514124 +0.5084753 0.3951413 0.514124 +0.514124 0.3951413 0.514124 +0.519487 0.3951413 0.514124 +0.5245917 0.3951413 0.514124 +0.529462 0.3951413 0.514124 +0.5341183 0.3951413 0.514124 +0.5385787 0.3951413 0.514124 +0.5428591 0.3951413 0.514124 +0.5469733 0.3951413 0.514124 +0.5509339 0.3951413 0.514124 +0.5547519 0.3951413 0.514124 +0.5584371 0.3951413 0.514124 +0.5619986 0.3951413 0.514124 +0.5654443 0.3951413 0.514124 +0.5687816 0.3951413 0.514124 +0.092819 0.4108177 0.514124 +0.2262531 0.4108177 0.514124 +0.2875993 0.4108177 0.514124 +0.3262122 0.4108177 0.514124 +0.3544566 0.4108177 0.514124 +0.3767383 0.4108177 0.514124 +0.3951413 0.4108177 0.514124 +0.4108177 0.4108177 0.514124 +0.4244723 0.4108177 0.514124 +0.4365675 0.4108177 0.514124 +0.4474232 0.4108177 0.514124 +0.45727 0.4108177 0.514124 +0.4662797 0.4108177 0.514124 +0.4745834 0.4108177 0.514124 +0.4822838 0.4108177 0.514124 +0.4894626 0.4108177 0.514124 +0.4961862 0.4108177 0.514124 +0.5025087 0.4108177 0.514124 +0.5084753 0.4108177 0.514124 +0.514124 0.4108177 0.514124 +0.519487 0.4108177 0.514124 +0.5245917 0.4108177 0.514124 +0.529462 0.4108177 0.514124 +0.5341183 0.4108177 0.514124 +0.5385787 0.4108177 0.514124 +0.5428591 0.4108177 0.514124 +0.5469733 0.4108177 0.514124 +0.5509339 0.4108177 0.514124 +0.5547519 0.4108177 0.514124 +0.5584371 0.4108177 0.514124 +0.5619986 0.4108177 0.514124 +0.5654443 0.4108177 0.514124 +0.5687816 0.4108177 0.514124 +0.092819 0.4244723 0.514124 +0.2262531 0.4244723 0.514124 +0.2875993 0.4244723 0.514124 +0.3262122 0.4244723 0.514124 +0.3544566 0.4244723 0.514124 +0.3767383 0.4244723 0.514124 +0.3951413 0.4244723 0.514124 +0.4108177 0.4244723 0.514124 +0.4244723 0.4244723 0.514124 +0.4365675 0.4244723 0.514124 +0.4474232 0.4244723 0.514124 +0.45727 0.4244723 0.514124 +0.4662797 0.4244723 0.514124 +0.4745834 0.4244723 0.514124 +0.4822838 0.4244723 0.514124 +0.4894626 0.4244723 0.514124 +0.4961862 0.4244723 0.514124 +0.5025087 0.4244723 0.514124 +0.5084753 0.4244723 0.514124 +0.514124 0.4244723 0.514124 +0.519487 0.4244723 0.514124 +0.5245917 0.4244723 0.514124 +0.529462 0.4244723 0.514124 +0.5341183 0.4244723 0.514124 +0.5385787 0.4244723 0.514124 +0.5428591 0.4244723 0.514124 +0.5469733 0.4244723 0.514124 +0.5509339 0.4244723 0.514124 +0.5547519 0.4244723 0.514124 +0.5584371 0.4244723 0.514124 +0.5619986 0.4244723 0.514124 +0.5654443 0.4244723 0.514124 +0.5687816 0.4244723 0.514124 +0.092819 0.4365675 0.514124 +0.2262531 0.4365675 0.514124 +0.2875993 0.4365675 0.514124 +0.3262122 0.4365675 0.514124 +0.3544566 0.4365675 0.514124 +0.3767383 0.4365675 0.514124 +0.3951413 0.4365675 0.514124 +0.4108177 0.4365675 0.514124 +0.4244723 0.4365675 0.514124 +0.4365675 0.4365675 0.514124 +0.4474232 0.4365675 0.514124 +0.45727 0.4365675 0.514124 +0.4662797 0.4365675 0.514124 +0.4745834 0.4365675 0.514124 +0.4822838 0.4365675 0.514124 +0.4894626 0.4365675 0.514124 +0.4961862 0.4365675 0.514124 +0.5025087 0.4365675 0.514124 +0.5084753 0.4365675 0.514124 +0.514124 0.4365675 0.514124 +0.519487 0.4365675 0.514124 +0.5245917 0.4365675 0.514124 +0.529462 0.4365675 0.514124 +0.5341183 0.4365675 0.514124 +0.5385787 0.4365675 0.514124 +0.5428591 0.4365675 0.514124 +0.5469733 0.4365675 0.514124 +0.5509339 0.4365675 0.514124 +0.5547519 0.4365675 0.514124 +0.5584371 0.4365675 0.514124 +0.5619986 0.4365675 0.514124 +0.5654443 0.4365675 0.514124 +0.5687816 0.4365675 0.514124 +0.092819 0.4474232 0.514124 +0.2262531 0.4474232 0.514124 +0.2875993 0.4474232 0.514124 +0.3262122 0.4474232 0.514124 +0.3544566 0.4474232 0.514124 +0.3767383 0.4474232 0.514124 +0.3951413 0.4474232 0.514124 +0.4108177 0.4474232 0.514124 +0.4244723 0.4474232 0.514124 +0.4365675 0.4474232 0.514124 +0.4474232 0.4474232 0.514124 +0.45727 0.4474232 0.514124 +0.4662797 0.4474232 0.514124 +0.4745834 0.4474232 0.514124 +0.4822838 0.4474232 0.514124 +0.4894626 0.4474232 0.514124 +0.4961862 0.4474232 0.514124 +0.5025087 0.4474232 0.514124 +0.5084753 0.4474232 0.514124 +0.514124 0.4474232 0.514124 +0.519487 0.4474232 0.514124 +0.5245917 0.4474232 0.514124 +0.529462 0.4474232 0.514124 +0.5341183 0.4474232 0.514124 +0.5385787 0.4474232 0.514124 +0.5428591 0.4474232 0.514124 +0.5469733 0.4474232 0.514124 +0.5509339 0.4474232 0.514124 +0.5547519 0.4474232 0.514124 +0.5584371 0.4474232 0.514124 +0.5619986 0.4474232 0.514124 +0.5654443 0.4474232 0.514124 +0.5687816 0.4474232 0.514124 +0.092819 0.45727 0.514124 +0.2262531 0.45727 0.514124 +0.2875993 0.45727 0.514124 +0.3262122 0.45727 0.514124 +0.3544566 0.45727 0.514124 +0.3767383 0.45727 0.514124 +0.3951413 0.45727 0.514124 +0.4108177 0.45727 0.514124 +0.4244723 0.45727 0.514124 +0.4365675 0.45727 0.514124 +0.4474232 0.45727 0.514124 +0.45727 0.45727 0.514124 +0.4662797 0.45727 0.514124 +0.4745834 0.45727 0.514124 +0.4822838 0.45727 0.514124 +0.4894626 0.45727 0.514124 +0.4961862 0.45727 0.514124 +0.5025087 0.45727 0.514124 +0.5084753 0.45727 0.514124 +0.514124 0.45727 0.514124 +0.519487 0.45727 0.514124 +0.5245917 0.45727 0.514124 +0.529462 0.45727 0.514124 +0.5341183 0.45727 0.514124 +0.5385787 0.45727 0.514124 +0.5428591 0.45727 0.514124 +0.5469733 0.45727 0.514124 +0.5509339 0.45727 0.514124 +0.5547519 0.45727 0.514124 +0.5584371 0.45727 0.514124 +0.5619986 0.45727 0.514124 +0.5654443 0.45727 0.514124 +0.5687816 0.45727 0.514124 +0.092819 0.4662797 0.514124 +0.2262531 0.4662797 0.514124 +0.2875993 0.4662797 0.514124 +0.3262122 0.4662797 0.514124 +0.3544566 0.4662797 0.514124 +0.3767383 0.4662797 0.514124 +0.3951413 0.4662797 0.514124 +0.4108177 0.4662797 0.514124 +0.4244723 0.4662797 0.514124 +0.4365675 0.4662797 0.514124 +0.4474232 0.4662797 0.514124 +0.45727 0.4662797 0.514124 +0.4662797 0.4662797 0.514124 +0.4745834 0.4662797 0.514124 +0.4822838 0.4662797 0.514124 +0.4894626 0.4662797 0.514124 +0.4961862 0.4662797 0.514124 +0.5025087 0.4662797 0.514124 +0.5084753 0.4662797 0.514124 +0.514124 0.4662797 0.514124 +0.519487 0.4662797 0.514124 +0.5245917 0.4662797 0.514124 +0.529462 0.4662797 0.514124 +0.5341183 0.4662797 0.514124 +0.5385787 0.4662797 0.514124 +0.5428591 0.4662797 0.514124 +0.5469733 0.4662797 0.514124 +0.5509339 0.4662797 0.514124 +0.5547519 0.4662797 0.514124 +0.5584371 0.4662797 0.514124 +0.5619986 0.4662797 0.514124 +0.5654443 0.4662797 0.514124 +0.5687816 0.4662797 0.514124 +0.092819 0.4745834 0.514124 +0.2262531 0.4745834 0.514124 +0.2875993 0.4745834 0.514124 +0.3262122 0.4745834 0.514124 +0.3544566 0.4745834 0.514124 +0.3767383 0.4745834 0.514124 +0.3951413 0.4745834 0.514124 +0.4108177 0.4745834 0.514124 +0.4244723 0.4745834 0.514124 +0.4365675 0.4745834 0.514124 +0.4474232 0.4745834 0.514124 +0.45727 0.4745834 0.514124 +0.4662797 0.4745834 0.514124 +0.4745834 0.4745834 0.514124 +0.4822838 0.4745834 0.514124 +0.4894626 0.4745834 0.514124 +0.4961862 0.4745834 0.514124 +0.5025087 0.4745834 0.514124 +0.5084753 0.4745834 0.514124 +0.514124 0.4745834 0.514124 +0.519487 0.4745834 0.514124 +0.5245917 0.4745834 0.514124 +0.529462 0.4745834 0.514124 +0.5341183 0.4745834 0.514124 +0.5385787 0.4745834 0.514124 +0.5428591 0.4745834 0.514124 +0.5469733 0.4745834 0.514124 +0.5509339 0.4745834 0.514124 +0.5547519 0.4745834 0.514124 +0.5584371 0.4745834 0.514124 +0.5619986 0.4745834 0.514124 +0.5654443 0.4745834 0.514124 +0.5687816 0.4745834 0.514124 +0.092819 0.4822838 0.514124 +0.2262531 0.4822838 0.514124 +0.2875993 0.4822838 0.514124 +0.3262122 0.4822838 0.514124 +0.3544566 0.4822838 0.514124 +0.3767383 0.4822838 0.514124 +0.3951413 0.4822838 0.514124 +0.4108177 0.4822838 0.514124 +0.4244723 0.4822838 0.514124 +0.4365675 0.4822838 0.514124 +0.4474232 0.4822838 0.514124 +0.45727 0.4822838 0.514124 +0.4662797 0.4822838 0.514124 +0.4745834 0.4822838 0.514124 +0.4822838 0.4822838 0.514124 +0.4894626 0.4822838 0.514124 +0.4961862 0.4822838 0.514124 +0.5025087 0.4822838 0.514124 +0.5084753 0.4822838 0.514124 +0.514124 0.4822838 0.514124 +0.519487 0.4822838 0.514124 +0.5245917 0.4822838 0.514124 +0.529462 0.4822838 0.514124 +0.5341183 0.4822838 0.514124 +0.5385787 0.4822838 0.514124 +0.5428591 0.4822838 0.514124 +0.5469733 0.4822838 0.514124 +0.5509339 0.4822838 0.514124 +0.5547519 0.4822838 0.514124 +0.5584371 0.4822838 0.514124 +0.5619986 0.4822838 0.514124 +0.5654443 0.4822838 0.514124 +0.5687816 0.4822838 0.514124 +0.092819 0.4894626 0.514124 +0.2262531 0.4894626 0.514124 +0.2875993 0.4894626 0.514124 +0.3262122 0.4894626 0.514124 +0.3544566 0.4894626 0.514124 +0.3767383 0.4894626 0.514124 +0.3951413 0.4894626 0.514124 +0.4108177 0.4894626 0.514124 +0.4244723 0.4894626 0.514124 +0.4365675 0.4894626 0.514124 +0.4474232 0.4894626 0.514124 +0.45727 0.4894626 0.514124 +0.4662797 0.4894626 0.514124 +0.4745834 0.4894626 0.514124 +0.4822838 0.4894626 0.514124 +0.4894626 0.4894626 0.514124 +0.4961862 0.4894626 0.514124 +0.5025087 0.4894626 0.514124 +0.5084753 0.4894626 0.514124 +0.514124 0.4894626 0.514124 +0.519487 0.4894626 0.514124 +0.5245917 0.4894626 0.514124 +0.529462 0.4894626 0.514124 +0.5341183 0.4894626 0.514124 +0.5385787 0.4894626 0.514124 +0.5428591 0.4894626 0.514124 +0.5469733 0.4894626 0.514124 +0.5509339 0.4894626 0.514124 +0.5547519 0.4894626 0.514124 +0.5584371 0.4894626 0.514124 +0.5619986 0.4894626 0.514124 +0.5654443 0.4894626 0.514124 +0.5687816 0.4894626 0.514124 +0.092819 0.4961862 0.514124 +0.2262531 0.4961862 0.514124 +0.2875993 0.4961862 0.514124 +0.3262122 0.4961862 0.514124 +0.3544566 0.4961862 0.514124 +0.3767383 0.4961862 0.514124 +0.3951413 0.4961862 0.514124 +0.4108177 0.4961862 0.514124 +0.4244723 0.4961862 0.514124 +0.4365675 0.4961862 0.514124 +0.4474232 0.4961862 0.514124 +0.45727 0.4961862 0.514124 +0.4662797 0.4961862 0.514124 +0.4745834 0.4961862 0.514124 +0.4822838 0.4961862 0.514124 +0.4894626 0.4961862 0.514124 +0.4961862 0.4961862 0.514124 +0.5025087 0.4961862 0.514124 +0.5084753 0.4961862 0.514124 +0.514124 0.4961862 0.514124 +0.519487 0.4961862 0.514124 +0.5245917 0.4961862 0.514124 +0.529462 0.4961862 0.514124 +0.5341183 0.4961862 0.514124 +0.5385787 0.4961862 0.514124 +0.5428591 0.4961862 0.514124 +0.5469733 0.4961862 0.514124 +0.5509339 0.4961862 0.514124 +0.5547519 0.4961862 0.514124 +0.5584371 0.4961862 0.514124 +0.5619986 0.4961862 0.514124 +0.5654443 0.4961862 0.514124 +0.5687816 0.4961862 0.514124 +0.092819 0.5025087 0.514124 +0.2262531 0.5025087 0.514124 +0.2875993 0.5025087 0.514124 +0.3262122 0.5025087 0.514124 +0.3544566 0.5025087 0.514124 +0.3767383 0.5025087 0.514124 +0.3951413 0.5025087 0.514124 +0.4108177 0.5025087 0.514124 +0.4244723 0.5025087 0.514124 +0.4365675 0.5025087 0.514124 +0.4474232 0.5025087 0.514124 +0.45727 0.5025087 0.514124 +0.4662797 0.5025087 0.514124 +0.4745834 0.5025087 0.514124 +0.4822838 0.5025087 0.514124 +0.4894626 0.5025087 0.514124 +0.4961862 0.5025087 0.514124 +0.5025087 0.5025087 0.514124 +0.5084753 0.5025087 0.514124 +0.514124 0.5025087 0.514124 +0.519487 0.5025087 0.514124 +0.5245917 0.5025087 0.514124 +0.529462 0.5025087 0.514124 +0.5341183 0.5025087 0.514124 +0.5385787 0.5025087 0.514124 +0.5428591 0.5025087 0.514124 +0.5469733 0.5025087 0.514124 +0.5509339 0.5025087 0.514124 +0.5547519 0.5025087 0.514124 +0.5584371 0.5025087 0.514124 +0.5619986 0.5025087 0.514124 +0.5654443 0.5025087 0.514124 +0.5687816 0.5025087 0.514124 +0.092819 0.5084753 0.514124 +0.2262531 0.5084753 0.514124 +0.2875993 0.5084753 0.514124 +0.3262122 0.5084753 0.514124 +0.3544566 0.5084753 0.514124 +0.3767383 0.5084753 0.514124 +0.3951413 0.5084753 0.514124 +0.4108177 0.5084753 0.514124 +0.4244723 0.5084753 0.514124 +0.4365675 0.5084753 0.514124 +0.4474232 0.5084753 0.514124 +0.45727 0.5084753 0.514124 +0.4662797 0.5084753 0.514124 +0.4745834 0.5084753 0.514124 +0.4822838 0.5084753 0.514124 +0.4894626 0.5084753 0.514124 +0.4961862 0.5084753 0.514124 +0.5025087 0.5084753 0.514124 +0.5084753 0.5084753 0.514124 +0.514124 0.5084753 0.514124 +0.519487 0.5084753 0.514124 +0.5245917 0.5084753 0.514124 +0.529462 0.5084753 0.514124 +0.5341183 0.5084753 0.514124 +0.5385787 0.5084753 0.514124 +0.5428591 0.5084753 0.514124 +0.5469733 0.5084753 0.514124 +0.5509339 0.5084753 0.514124 +0.5547519 0.5084753 0.514124 +0.5584371 0.5084753 0.514124 +0.5619986 0.5084753 0.514124 +0.5654443 0.5084753 0.514124 +0.5687816 0.5084753 0.514124 +0.092819 0.514124 0.514124 +0.2262531 0.514124 0.514124 +0.2875993 0.514124 0.514124 +0.3262122 0.514124 0.514124 +0.3544566 0.514124 0.514124 +0.3767383 0.514124 0.514124 +0.3951413 0.514124 0.514124 +0.4108177 0.514124 0.514124 +0.4244723 0.514124 0.514124 +0.4365675 0.514124 0.514124 +0.4474232 0.514124 0.514124 +0.45727 0.514124 0.514124 +0.4662797 0.514124 0.514124 +0.4745834 0.514124 0.514124 +0.4822838 0.514124 0.514124 +0.4894626 0.514124 0.514124 +0.4961862 0.514124 0.514124 +0.5025087 0.514124 0.514124 +0.5084753 0.514124 0.514124 +0.514124 0.514124 0.514124 +0.519487 0.514124 0.514124 +0.5245917 0.514124 0.514124 +0.529462 0.514124 0.514124 +0.5341183 0.514124 0.514124 +0.5385787 0.514124 0.514124 +0.5428591 0.514124 0.514124 +0.5469733 0.514124 0.514124 +0.5509339 0.514124 0.514124 +0.5547519 0.514124 0.514124 +0.5584371 0.514124 0.514124 +0.5619986 0.514124 0.514124 +0.5654443 0.514124 0.514124 +0.5687816 0.514124 0.514124 +0.092819 0.519487 0.514124 +0.2262531 0.519487 0.514124 +0.2875993 0.519487 0.514124 +0.3262122 0.519487 0.514124 +0.3544566 0.519487 0.514124 +0.3767383 0.519487 0.514124 +0.3951413 0.519487 0.514124 +0.4108177 0.519487 0.514124 +0.4244723 0.519487 0.514124 +0.4365675 0.519487 0.514124 +0.4474232 0.519487 0.514124 +0.45727 0.519487 0.514124 +0.4662797 0.519487 0.514124 +0.4745834 0.519487 0.514124 +0.4822838 0.519487 0.514124 +0.4894626 0.519487 0.514124 +0.4961862 0.519487 0.514124 +0.5025087 0.519487 0.514124 +0.5084753 0.519487 0.514124 +0.514124 0.519487 0.514124 +0.519487 0.519487 0.514124 +0.5245917 0.519487 0.514124 +0.529462 0.519487 0.514124 +0.5341183 0.519487 0.514124 +0.5385787 0.519487 0.514124 +0.5428591 0.519487 0.514124 +0.5469733 0.519487 0.514124 +0.5509339 0.519487 0.514124 +0.5547519 0.519487 0.514124 +0.5584371 0.519487 0.514124 +0.5619986 0.519487 0.514124 +0.5654443 0.519487 0.514124 +0.5687816 0.519487 0.514124 +0.092819 0.5245917 0.514124 +0.2262531 0.5245917 0.514124 +0.2875993 0.5245917 0.514124 +0.3262122 0.5245917 0.514124 +0.3544566 0.5245917 0.514124 +0.3767383 0.5245917 0.514124 +0.3951413 0.5245917 0.514124 +0.4108177 0.5245917 0.514124 +0.4244723 0.5245917 0.514124 +0.4365675 0.5245917 0.514124 +0.4474232 0.5245917 0.514124 +0.45727 0.5245917 0.514124 +0.4662797 0.5245917 0.514124 +0.4745834 0.5245917 0.514124 +0.4822838 0.5245917 0.514124 +0.4894626 0.5245917 0.514124 +0.4961862 0.5245917 0.514124 +0.5025087 0.5245917 0.514124 +0.5084753 0.5245917 0.514124 +0.514124 0.5245917 0.514124 +0.519487 0.5245917 0.514124 +0.5245917 0.5245917 0.514124 +0.529462 0.5245917 0.514124 +0.5341183 0.5245917 0.514124 +0.5385787 0.5245917 0.514124 +0.5428591 0.5245917 0.514124 +0.5469733 0.5245917 0.514124 +0.5509339 0.5245917 0.514124 +0.5547519 0.5245917 0.514124 +0.5584371 0.5245917 0.514124 +0.5619986 0.5245917 0.514124 +0.5654443 0.5245917 0.514124 +0.5687816 0.5245917 0.514124 +0.092819 0.529462 0.514124 +0.2262531 0.529462 0.514124 +0.2875993 0.529462 0.514124 +0.3262122 0.529462 0.514124 +0.3544566 0.529462 0.514124 +0.3767383 0.529462 0.514124 +0.3951413 0.529462 0.514124 +0.4108177 0.529462 0.514124 +0.4244723 0.529462 0.514124 +0.4365675 0.529462 0.514124 +0.4474232 0.529462 0.514124 +0.45727 0.529462 0.514124 +0.4662797 0.529462 0.514124 +0.4745834 0.529462 0.514124 +0.4822838 0.529462 0.514124 +0.4894626 0.529462 0.514124 +0.4961862 0.529462 0.514124 +0.5025087 0.529462 0.514124 +0.5084753 0.529462 0.514124 +0.514124 0.529462 0.514124 +0.519487 0.529462 0.514124 +0.5245917 0.529462 0.514124 +0.529462 0.529462 0.514124 +0.5341183 0.529462 0.514124 +0.5385787 0.529462 0.514124 +0.5428591 0.529462 0.514124 +0.5469733 0.529462 0.514124 +0.5509339 0.529462 0.514124 +0.5547519 0.529462 0.514124 +0.5584371 0.529462 0.514124 +0.5619986 0.529462 0.514124 +0.5654443 0.529462 0.514124 +0.5687816 0.529462 0.514124 +0.092819 0.5341183 0.514124 +0.2262531 0.5341183 0.514124 +0.2875993 0.5341183 0.514124 +0.3262122 0.5341183 0.514124 +0.3544566 0.5341183 0.514124 +0.3767383 0.5341183 0.514124 +0.3951413 0.5341183 0.514124 +0.4108177 0.5341183 0.514124 +0.4244723 0.5341183 0.514124 +0.4365675 0.5341183 0.514124 +0.4474232 0.5341183 0.514124 +0.45727 0.5341183 0.514124 +0.4662797 0.5341183 0.514124 +0.4745834 0.5341183 0.514124 +0.4822838 0.5341183 0.514124 +0.4894626 0.5341183 0.514124 +0.4961862 0.5341183 0.514124 +0.5025087 0.5341183 0.514124 +0.5084753 0.5341183 0.514124 +0.514124 0.5341183 0.514124 +0.519487 0.5341183 0.514124 +0.5245917 0.5341183 0.514124 +0.529462 0.5341183 0.514124 +0.5341183 0.5341183 0.514124 +0.5385787 0.5341183 0.514124 +0.5428591 0.5341183 0.514124 +0.5469733 0.5341183 0.514124 +0.5509339 0.5341183 0.514124 +0.5547519 0.5341183 0.514124 +0.5584371 0.5341183 0.514124 +0.5619986 0.5341183 0.514124 +0.5654443 0.5341183 0.514124 +0.5687816 0.5341183 0.514124 +0.092819 0.5385787 0.514124 +0.2262531 0.5385787 0.514124 +0.2875993 0.5385787 0.514124 +0.3262122 0.5385787 0.514124 +0.3544566 0.5385787 0.514124 +0.3767383 0.5385787 0.514124 +0.3951413 0.5385787 0.514124 +0.4108177 0.5385787 0.514124 +0.4244723 0.5385787 0.514124 +0.4365675 0.5385787 0.514124 +0.4474232 0.5385787 0.514124 +0.45727 0.5385787 0.514124 +0.4662797 0.5385787 0.514124 +0.4745834 0.5385787 0.514124 +0.4822838 0.5385787 0.514124 +0.4894626 0.5385787 0.514124 +0.4961862 0.5385787 0.514124 +0.5025087 0.5385787 0.514124 +0.5084753 0.5385787 0.514124 +0.514124 0.5385787 0.514124 +0.519487 0.5385787 0.514124 +0.5245917 0.5385787 0.514124 +0.529462 0.5385787 0.514124 +0.5341183 0.5385787 0.514124 +0.5385787 0.5385787 0.514124 +0.5428591 0.5385787 0.514124 +0.5469733 0.5385787 0.514124 +0.5509339 0.5385787 0.514124 +0.5547519 0.5385787 0.514124 +0.5584371 0.5385787 0.514124 +0.5619986 0.5385787 0.514124 +0.5654443 0.5385787 0.514124 +0.5687816 0.5385787 0.514124 +0.092819 0.5428591 0.514124 +0.2262531 0.5428591 0.514124 +0.2875993 0.5428591 0.514124 +0.3262122 0.5428591 0.514124 +0.3544566 0.5428591 0.514124 +0.3767383 0.5428591 0.514124 +0.3951413 0.5428591 0.514124 +0.4108177 0.5428591 0.514124 +0.4244723 0.5428591 0.514124 +0.4365675 0.5428591 0.514124 +0.4474232 0.5428591 0.514124 +0.45727 0.5428591 0.514124 +0.4662797 0.5428591 0.514124 +0.4745834 0.5428591 0.514124 +0.4822838 0.5428591 0.514124 +0.4894626 0.5428591 0.514124 +0.4961862 0.5428591 0.514124 +0.5025087 0.5428591 0.514124 +0.5084753 0.5428591 0.514124 +0.514124 0.5428591 0.514124 +0.519487 0.5428591 0.514124 +0.5245917 0.5428591 0.514124 +0.529462 0.5428591 0.514124 +0.5341183 0.5428591 0.514124 +0.5385787 0.5428591 0.514124 +0.5428591 0.5428591 0.514124 +0.5469733 0.5428591 0.514124 +0.5509339 0.5428591 0.514124 +0.5547519 0.5428591 0.514124 +0.5584371 0.5428591 0.514124 +0.5619986 0.5428591 0.514124 +0.5654443 0.5428591 0.514124 +0.5687816 0.5428591 0.514124 +0.092819 0.5469733 0.514124 +0.2262531 0.5469733 0.514124 +0.2875993 0.5469733 0.514124 +0.3262122 0.5469733 0.514124 +0.3544566 0.5469733 0.514124 +0.3767383 0.5469733 0.514124 +0.3951413 0.5469733 0.514124 +0.4108177 0.5469733 0.514124 +0.4244723 0.5469733 0.514124 +0.4365675 0.5469733 0.514124 +0.4474232 0.5469733 0.514124 +0.45727 0.5469733 0.514124 +0.4662797 0.5469733 0.514124 +0.4745834 0.5469733 0.514124 +0.4822838 0.5469733 0.514124 +0.4894626 0.5469733 0.514124 +0.4961862 0.5469733 0.514124 +0.5025087 0.5469733 0.514124 +0.5084753 0.5469733 0.514124 +0.514124 0.5469733 0.514124 +0.519487 0.5469733 0.514124 +0.5245917 0.5469733 0.514124 +0.529462 0.5469733 0.514124 +0.5341183 0.5469733 0.514124 +0.5385787 0.5469733 0.514124 +0.5428591 0.5469733 0.514124 +0.5469733 0.5469733 0.514124 +0.5509339 0.5469733 0.514124 +0.5547519 0.5469733 0.514124 +0.5584371 0.5469733 0.514124 +0.5619986 0.5469733 0.514124 +0.5654443 0.5469733 0.514124 +0.5687816 0.5469733 0.514124 +0.092819 0.5509339 0.514124 +0.2262531 0.5509339 0.514124 +0.2875993 0.5509339 0.514124 +0.3262122 0.5509339 0.514124 +0.3544566 0.5509339 0.514124 +0.3767383 0.5509339 0.514124 +0.3951413 0.5509339 0.514124 +0.4108177 0.5509339 0.514124 +0.4244723 0.5509339 0.514124 +0.4365675 0.5509339 0.514124 +0.4474232 0.5509339 0.514124 +0.45727 0.5509339 0.514124 +0.4662797 0.5509339 0.514124 +0.4745834 0.5509339 0.514124 +0.4822838 0.5509339 0.514124 +0.4894626 0.5509339 0.514124 +0.4961862 0.5509339 0.514124 +0.5025087 0.5509339 0.514124 +0.5084753 0.5509339 0.514124 +0.514124 0.5509339 0.514124 +0.519487 0.5509339 0.514124 +0.5245917 0.5509339 0.514124 +0.529462 0.5509339 0.514124 +0.5341183 0.5509339 0.514124 +0.5385787 0.5509339 0.514124 +0.5428591 0.5509339 0.514124 +0.5469733 0.5509339 0.514124 +0.5509339 0.5509339 0.514124 +0.5547519 0.5509339 0.514124 +0.5584371 0.5509339 0.514124 +0.5619986 0.5509339 0.514124 +0.5654443 0.5509339 0.514124 +0.5687816 0.5509339 0.514124 +0.092819 0.5547519 0.514124 +0.2262531 0.5547519 0.514124 +0.2875993 0.5547519 0.514124 +0.3262122 0.5547519 0.514124 +0.3544566 0.5547519 0.514124 +0.3767383 0.5547519 0.514124 +0.3951413 0.5547519 0.514124 +0.4108177 0.5547519 0.514124 +0.4244723 0.5547519 0.514124 +0.4365675 0.5547519 0.514124 +0.4474232 0.5547519 0.514124 +0.45727 0.5547519 0.514124 +0.4662797 0.5547519 0.514124 +0.4745834 0.5547519 0.514124 +0.4822838 0.5547519 0.514124 +0.4894626 0.5547519 0.514124 +0.4961862 0.5547519 0.514124 +0.5025087 0.5547519 0.514124 +0.5084753 0.5547519 0.514124 +0.514124 0.5547519 0.514124 +0.519487 0.5547519 0.514124 +0.5245917 0.5547519 0.514124 +0.529462 0.5547519 0.514124 +0.5341183 0.5547519 0.514124 +0.5385787 0.5547519 0.514124 +0.5428591 0.5547519 0.514124 +0.5469733 0.5547519 0.514124 +0.5509339 0.5547519 0.514124 +0.5547519 0.5547519 0.514124 +0.5584371 0.5547519 0.514124 +0.5619986 0.5547519 0.514124 +0.5654443 0.5547519 0.514124 +0.5687816 0.5547519 0.514124 +0.092819 0.5584371 0.514124 +0.2262531 0.5584371 0.514124 +0.2875993 0.5584371 0.514124 +0.3262122 0.5584371 0.514124 +0.3544566 0.5584371 0.514124 +0.3767383 0.5584371 0.514124 +0.3951413 0.5584371 0.514124 +0.4108177 0.5584371 0.514124 +0.4244723 0.5584371 0.514124 +0.4365675 0.5584371 0.514124 +0.4474232 0.5584371 0.514124 +0.45727 0.5584371 0.514124 +0.4662797 0.5584371 0.514124 +0.4745834 0.5584371 0.514124 +0.4822838 0.5584371 0.514124 +0.4894626 0.5584371 0.514124 +0.4961862 0.5584371 0.514124 +0.5025087 0.5584371 0.514124 +0.5084753 0.5584371 0.514124 +0.514124 0.5584371 0.514124 +0.519487 0.5584371 0.514124 +0.5245917 0.5584371 0.514124 +0.529462 0.5584371 0.514124 +0.5341183 0.5584371 0.514124 +0.5385787 0.5584371 0.514124 +0.5428591 0.5584371 0.514124 +0.5469733 0.5584371 0.514124 +0.5509339 0.5584371 0.514124 +0.5547519 0.5584371 0.514124 +0.5584371 0.5584371 0.514124 +0.5619986 0.5584371 0.514124 +0.5654443 0.5584371 0.514124 +0.5687816 0.5584371 0.514124 +0.092819 0.5619986 0.514124 +0.2262531 0.5619986 0.514124 +0.2875993 0.5619986 0.514124 +0.3262122 0.5619986 0.514124 +0.3544566 0.5619986 0.514124 +0.3767383 0.5619986 0.514124 +0.3951413 0.5619986 0.514124 +0.4108177 0.5619986 0.514124 +0.4244723 0.5619986 0.514124 +0.4365675 0.5619986 0.514124 +0.4474232 0.5619986 0.514124 +0.45727 0.5619986 0.514124 +0.4662797 0.5619986 0.514124 +0.4745834 0.5619986 0.514124 +0.4822838 0.5619986 0.514124 +0.4894626 0.5619986 0.514124 +0.4961862 0.5619986 0.514124 +0.5025087 0.5619986 0.514124 +0.5084753 0.5619986 0.514124 +0.514124 0.5619986 0.514124 +0.519487 0.5619986 0.514124 +0.5245917 0.5619986 0.514124 +0.529462 0.5619986 0.514124 +0.5341183 0.5619986 0.514124 +0.5385787 0.5619986 0.514124 +0.5428591 0.5619986 0.514124 +0.5469733 0.5619986 0.514124 +0.5509339 0.5619986 0.514124 +0.5547519 0.5619986 0.514124 +0.5584371 0.5619986 0.514124 +0.5619986 0.5619986 0.514124 +0.5654443 0.5619986 0.514124 +0.5687816 0.5619986 0.514124 +0.092819 0.5654443 0.514124 +0.2262531 0.5654443 0.514124 +0.2875993 0.5654443 0.514124 +0.3262122 0.5654443 0.514124 +0.3544566 0.5654443 0.514124 +0.3767383 0.5654443 0.514124 +0.3951413 0.5654443 0.514124 +0.4108177 0.5654443 0.514124 +0.4244723 0.5654443 0.514124 +0.4365675 0.5654443 0.514124 +0.4474232 0.5654443 0.514124 +0.45727 0.5654443 0.514124 +0.4662797 0.5654443 0.514124 +0.4745834 0.5654443 0.514124 +0.4822838 0.5654443 0.514124 +0.4894626 0.5654443 0.514124 +0.4961862 0.5654443 0.514124 +0.5025087 0.5654443 0.514124 +0.5084753 0.5654443 0.514124 +0.514124 0.5654443 0.514124 +0.519487 0.5654443 0.514124 +0.5245917 0.5654443 0.514124 +0.529462 0.5654443 0.514124 +0.5341183 0.5654443 0.514124 +0.5385787 0.5654443 0.514124 +0.5428591 0.5654443 0.514124 +0.5469733 0.5654443 0.514124 +0.5509339 0.5654443 0.514124 +0.5547519 0.5654443 0.514124 +0.5584371 0.5654443 0.514124 +0.5619986 0.5654443 0.514124 +0.5654443 0.5654443 0.514124 +0.5687816 0.5654443 0.514124 +0.092819 0.5687816 0.514124 +0.2262531 0.5687816 0.514124 +0.2875993 0.5687816 0.514124 +0.3262122 0.5687816 0.514124 +0.3544566 0.5687816 0.514124 +0.3767383 0.5687816 0.514124 +0.3951413 0.5687816 0.514124 +0.4108177 0.5687816 0.514124 +0.4244723 0.5687816 0.514124 +0.4365675 0.5687816 0.514124 +0.4474232 0.5687816 0.514124 +0.45727 0.5687816 0.514124 +0.4662797 0.5687816 0.514124 +0.4745834 0.5687816 0.514124 +0.4822838 0.5687816 0.514124 +0.4894626 0.5687816 0.514124 +0.4961862 0.5687816 0.514124 +0.5025087 0.5687816 0.514124 +0.5084753 0.5687816 0.514124 +0.514124 0.5687816 0.514124 +0.519487 0.5687816 0.514124 +0.5245917 0.5687816 0.514124 +0.529462 0.5687816 0.514124 +0.5341183 0.5687816 0.514124 +0.5385787 0.5687816 0.514124 +0.5428591 0.5687816 0.514124 +0.5469733 0.5687816 0.514124 +0.5509339 0.5687816 0.514124 +0.5547519 0.5687816 0.514124 +0.5584371 0.5687816 0.514124 +0.5619986 0.5687816 0.514124 +0.5654443 0.5687816 0.514124 +0.5687816 0.5687816 0.514124 +0.092819 0.092819 0.519487 +0.2262531 0.092819 0.519487 +0.2875993 0.092819 0.519487 +0.3262122 0.092819 0.519487 +0.3544566 0.092819 0.519487 +0.3767383 0.092819 0.519487 +0.3951413 0.092819 0.519487 +0.4108177 0.092819 0.519487 +0.4244723 0.092819 0.519487 +0.4365675 0.092819 0.519487 +0.4474232 0.092819 0.519487 +0.45727 0.092819 0.519487 +0.4662797 0.092819 0.519487 +0.4745834 0.092819 0.519487 +0.4822838 0.092819 0.519487 +0.4894626 0.092819 0.519487 +0.4961862 0.092819 0.519487 +0.5025087 0.092819 0.519487 +0.5084753 0.092819 0.519487 +0.514124 0.092819 0.519487 +0.519487 0.092819 0.519487 +0.5245917 0.092819 0.519487 +0.529462 0.092819 0.519487 +0.5341183 0.092819 0.519487 +0.5385787 0.092819 0.519487 +0.5428591 0.092819 0.519487 +0.5469733 0.092819 0.519487 +0.5509339 0.092819 0.519487 +0.5547519 0.092819 0.519487 +0.5584371 0.092819 0.519487 +0.5619986 0.092819 0.519487 +0.5654443 0.092819 0.519487 +0.5687816 0.092819 0.519487 +0.092819 0.2262531 0.519487 +0.2262531 0.2262531 0.519487 +0.2875993 0.2262531 0.519487 +0.3262122 0.2262531 0.519487 +0.3544566 0.2262531 0.519487 +0.3767383 0.2262531 0.519487 +0.3951413 0.2262531 0.519487 +0.4108177 0.2262531 0.519487 +0.4244723 0.2262531 0.519487 +0.4365675 0.2262531 0.519487 +0.4474232 0.2262531 0.519487 +0.45727 0.2262531 0.519487 +0.4662797 0.2262531 0.519487 +0.4745834 0.2262531 0.519487 +0.4822838 0.2262531 0.519487 +0.4894626 0.2262531 0.519487 +0.4961862 0.2262531 0.519487 +0.5025087 0.2262531 0.519487 +0.5084753 0.2262531 0.519487 +0.514124 0.2262531 0.519487 +0.519487 0.2262531 0.519487 +0.5245917 0.2262531 0.519487 +0.529462 0.2262531 0.519487 +0.5341183 0.2262531 0.519487 +0.5385787 0.2262531 0.519487 +0.5428591 0.2262531 0.519487 +0.5469733 0.2262531 0.519487 +0.5509339 0.2262531 0.519487 +0.5547519 0.2262531 0.519487 +0.5584371 0.2262531 0.519487 +0.5619986 0.2262531 0.519487 +0.5654443 0.2262531 0.519487 +0.5687816 0.2262531 0.519487 +0.092819 0.2875993 0.519487 +0.2262531 0.2875993 0.519487 +0.2875993 0.2875993 0.519487 +0.3262122 0.2875993 0.519487 +0.3544566 0.2875993 0.519487 +0.3767383 0.2875993 0.519487 +0.3951413 0.2875993 0.519487 +0.4108177 0.2875993 0.519487 +0.4244723 0.2875993 0.519487 +0.4365675 0.2875993 0.519487 +0.4474232 0.2875993 0.519487 +0.45727 0.2875993 0.519487 +0.4662797 0.2875993 0.519487 +0.4745834 0.2875993 0.519487 +0.4822838 0.2875993 0.519487 +0.4894626 0.2875993 0.519487 +0.4961862 0.2875993 0.519487 +0.5025087 0.2875993 0.519487 +0.5084753 0.2875993 0.519487 +0.514124 0.2875993 0.519487 +0.519487 0.2875993 0.519487 +0.5245917 0.2875993 0.519487 +0.529462 0.2875993 0.519487 +0.5341183 0.2875993 0.519487 +0.5385787 0.2875993 0.519487 +0.5428591 0.2875993 0.519487 +0.5469733 0.2875993 0.519487 +0.5509339 0.2875993 0.519487 +0.5547519 0.2875993 0.519487 +0.5584371 0.2875993 0.519487 +0.5619986 0.2875993 0.519487 +0.5654443 0.2875993 0.519487 +0.5687816 0.2875993 0.519487 +0.092819 0.3262122 0.519487 +0.2262531 0.3262122 0.519487 +0.2875993 0.3262122 0.519487 +0.3262122 0.3262122 0.519487 +0.3544566 0.3262122 0.519487 +0.3767383 0.3262122 0.519487 +0.3951413 0.3262122 0.519487 +0.4108177 0.3262122 0.519487 +0.4244723 0.3262122 0.519487 +0.4365675 0.3262122 0.519487 +0.4474232 0.3262122 0.519487 +0.45727 0.3262122 0.519487 +0.4662797 0.3262122 0.519487 +0.4745834 0.3262122 0.519487 +0.4822838 0.3262122 0.519487 +0.4894626 0.3262122 0.519487 +0.4961862 0.3262122 0.519487 +0.5025087 0.3262122 0.519487 +0.5084753 0.3262122 0.519487 +0.514124 0.3262122 0.519487 +0.519487 0.3262122 0.519487 +0.5245917 0.3262122 0.519487 +0.529462 0.3262122 0.519487 +0.5341183 0.3262122 0.519487 +0.5385787 0.3262122 0.519487 +0.5428591 0.3262122 0.519487 +0.5469733 0.3262122 0.519487 +0.5509339 0.3262122 0.519487 +0.5547519 0.3262122 0.519487 +0.5584371 0.3262122 0.519487 +0.5619986 0.3262122 0.519487 +0.5654443 0.3262122 0.519487 +0.5687816 0.3262122 0.519487 +0.092819 0.3544566 0.519487 +0.2262531 0.3544566 0.519487 +0.2875993 0.3544566 0.519487 +0.3262122 0.3544566 0.519487 +0.3544566 0.3544566 0.519487 +0.3767383 0.3544566 0.519487 +0.3951413 0.3544566 0.519487 +0.4108177 0.3544566 0.519487 +0.4244723 0.3544566 0.519487 +0.4365675 0.3544566 0.519487 +0.4474232 0.3544566 0.519487 +0.45727 0.3544566 0.519487 +0.4662797 0.3544566 0.519487 +0.4745834 0.3544566 0.519487 +0.4822838 0.3544566 0.519487 +0.4894626 0.3544566 0.519487 +0.4961862 0.3544566 0.519487 +0.5025087 0.3544566 0.519487 +0.5084753 0.3544566 0.519487 +0.514124 0.3544566 0.519487 +0.519487 0.3544566 0.519487 +0.5245917 0.3544566 0.519487 +0.529462 0.3544566 0.519487 +0.5341183 0.3544566 0.519487 +0.5385787 0.3544566 0.519487 +0.5428591 0.3544566 0.519487 +0.5469733 0.3544566 0.519487 +0.5509339 0.3544566 0.519487 +0.5547519 0.3544566 0.519487 +0.5584371 0.3544566 0.519487 +0.5619986 0.3544566 0.519487 +0.5654443 0.3544566 0.519487 +0.5687816 0.3544566 0.519487 +0.092819 0.3767383 0.519487 +0.2262531 0.3767383 0.519487 +0.2875993 0.3767383 0.519487 +0.3262122 0.3767383 0.519487 +0.3544566 0.3767383 0.519487 +0.3767383 0.3767383 0.519487 +0.3951413 0.3767383 0.519487 +0.4108177 0.3767383 0.519487 +0.4244723 0.3767383 0.519487 +0.4365675 0.3767383 0.519487 +0.4474232 0.3767383 0.519487 +0.45727 0.3767383 0.519487 +0.4662797 0.3767383 0.519487 +0.4745834 0.3767383 0.519487 +0.4822838 0.3767383 0.519487 +0.4894626 0.3767383 0.519487 +0.4961862 0.3767383 0.519487 +0.5025087 0.3767383 0.519487 +0.5084753 0.3767383 0.519487 +0.514124 0.3767383 0.519487 +0.519487 0.3767383 0.519487 +0.5245917 0.3767383 0.519487 +0.529462 0.3767383 0.519487 +0.5341183 0.3767383 0.519487 +0.5385787 0.3767383 0.519487 +0.5428591 0.3767383 0.519487 +0.5469733 0.3767383 0.519487 +0.5509339 0.3767383 0.519487 +0.5547519 0.3767383 0.519487 +0.5584371 0.3767383 0.519487 +0.5619986 0.3767383 0.519487 +0.5654443 0.3767383 0.519487 +0.5687816 0.3767383 0.519487 +0.092819 0.3951413 0.519487 +0.2262531 0.3951413 0.519487 +0.2875993 0.3951413 0.519487 +0.3262122 0.3951413 0.519487 +0.3544566 0.3951413 0.519487 +0.3767383 0.3951413 0.519487 +0.3951413 0.3951413 0.519487 +0.4108177 0.3951413 0.519487 +0.4244723 0.3951413 0.519487 +0.4365675 0.3951413 0.519487 +0.4474232 0.3951413 0.519487 +0.45727 0.3951413 0.519487 +0.4662797 0.3951413 0.519487 +0.4745834 0.3951413 0.519487 +0.4822838 0.3951413 0.519487 +0.4894626 0.3951413 0.519487 +0.4961862 0.3951413 0.519487 +0.5025087 0.3951413 0.519487 +0.5084753 0.3951413 0.519487 +0.514124 0.3951413 0.519487 +0.519487 0.3951413 0.519487 +0.5245917 0.3951413 0.519487 +0.529462 0.3951413 0.519487 +0.5341183 0.3951413 0.519487 +0.5385787 0.3951413 0.519487 +0.5428591 0.3951413 0.519487 +0.5469733 0.3951413 0.519487 +0.5509339 0.3951413 0.519487 +0.5547519 0.3951413 0.519487 +0.5584371 0.3951413 0.519487 +0.5619986 0.3951413 0.519487 +0.5654443 0.3951413 0.519487 +0.5687816 0.3951413 0.519487 +0.092819 0.4108177 0.519487 +0.2262531 0.4108177 0.519487 +0.2875993 0.4108177 0.519487 +0.3262122 0.4108177 0.519487 +0.3544566 0.4108177 0.519487 +0.3767383 0.4108177 0.519487 +0.3951413 0.4108177 0.519487 +0.4108177 0.4108177 0.519487 +0.4244723 0.4108177 0.519487 +0.4365675 0.4108177 0.519487 +0.4474232 0.4108177 0.519487 +0.45727 0.4108177 0.519487 +0.4662797 0.4108177 0.519487 +0.4745834 0.4108177 0.519487 +0.4822838 0.4108177 0.519487 +0.4894626 0.4108177 0.519487 +0.4961862 0.4108177 0.519487 +0.5025087 0.4108177 0.519487 +0.5084753 0.4108177 0.519487 +0.514124 0.4108177 0.519487 +0.519487 0.4108177 0.519487 +0.5245917 0.4108177 0.519487 +0.529462 0.4108177 0.519487 +0.5341183 0.4108177 0.519487 +0.5385787 0.4108177 0.519487 +0.5428591 0.4108177 0.519487 +0.5469733 0.4108177 0.519487 +0.5509339 0.4108177 0.519487 +0.5547519 0.4108177 0.519487 +0.5584371 0.4108177 0.519487 +0.5619986 0.4108177 0.519487 +0.5654443 0.4108177 0.519487 +0.5687816 0.4108177 0.519487 +0.092819 0.4244723 0.519487 +0.2262531 0.4244723 0.519487 +0.2875993 0.4244723 0.519487 +0.3262122 0.4244723 0.519487 +0.3544566 0.4244723 0.519487 +0.3767383 0.4244723 0.519487 +0.3951413 0.4244723 0.519487 +0.4108177 0.4244723 0.519487 +0.4244723 0.4244723 0.519487 +0.4365675 0.4244723 0.519487 +0.4474232 0.4244723 0.519487 +0.45727 0.4244723 0.519487 +0.4662797 0.4244723 0.519487 +0.4745834 0.4244723 0.519487 +0.4822838 0.4244723 0.519487 +0.4894626 0.4244723 0.519487 +0.4961862 0.4244723 0.519487 +0.5025087 0.4244723 0.519487 +0.5084753 0.4244723 0.519487 +0.514124 0.4244723 0.519487 +0.519487 0.4244723 0.519487 +0.5245917 0.4244723 0.519487 +0.529462 0.4244723 0.519487 +0.5341183 0.4244723 0.519487 +0.5385787 0.4244723 0.519487 +0.5428591 0.4244723 0.519487 +0.5469733 0.4244723 0.519487 +0.5509339 0.4244723 0.519487 +0.5547519 0.4244723 0.519487 +0.5584371 0.4244723 0.519487 +0.5619986 0.4244723 0.519487 +0.5654443 0.4244723 0.519487 +0.5687816 0.4244723 0.519487 +0.092819 0.4365675 0.519487 +0.2262531 0.4365675 0.519487 +0.2875993 0.4365675 0.519487 +0.3262122 0.4365675 0.519487 +0.3544566 0.4365675 0.519487 +0.3767383 0.4365675 0.519487 +0.3951413 0.4365675 0.519487 +0.4108177 0.4365675 0.519487 +0.4244723 0.4365675 0.519487 +0.4365675 0.4365675 0.519487 +0.4474232 0.4365675 0.519487 +0.45727 0.4365675 0.519487 +0.4662797 0.4365675 0.519487 +0.4745834 0.4365675 0.519487 +0.4822838 0.4365675 0.519487 +0.4894626 0.4365675 0.519487 +0.4961862 0.4365675 0.519487 +0.5025087 0.4365675 0.519487 +0.5084753 0.4365675 0.519487 +0.514124 0.4365675 0.519487 +0.519487 0.4365675 0.519487 +0.5245917 0.4365675 0.519487 +0.529462 0.4365675 0.519487 +0.5341183 0.4365675 0.519487 +0.5385787 0.4365675 0.519487 +0.5428591 0.4365675 0.519487 +0.5469733 0.4365675 0.519487 +0.5509339 0.4365675 0.519487 +0.5547519 0.4365675 0.519487 +0.5584371 0.4365675 0.519487 +0.5619986 0.4365675 0.519487 +0.5654443 0.4365675 0.519487 +0.5687816 0.4365675 0.519487 +0.092819 0.4474232 0.519487 +0.2262531 0.4474232 0.519487 +0.2875993 0.4474232 0.519487 +0.3262122 0.4474232 0.519487 +0.3544566 0.4474232 0.519487 +0.3767383 0.4474232 0.519487 +0.3951413 0.4474232 0.519487 +0.4108177 0.4474232 0.519487 +0.4244723 0.4474232 0.519487 +0.4365675 0.4474232 0.519487 +0.4474232 0.4474232 0.519487 +0.45727 0.4474232 0.519487 +0.4662797 0.4474232 0.519487 +0.4745834 0.4474232 0.519487 +0.4822838 0.4474232 0.519487 +0.4894626 0.4474232 0.519487 +0.4961862 0.4474232 0.519487 +0.5025087 0.4474232 0.519487 +0.5084753 0.4474232 0.519487 +0.514124 0.4474232 0.519487 +0.519487 0.4474232 0.519487 +0.5245917 0.4474232 0.519487 +0.529462 0.4474232 0.519487 +0.5341183 0.4474232 0.519487 +0.5385787 0.4474232 0.519487 +0.5428591 0.4474232 0.519487 +0.5469733 0.4474232 0.519487 +0.5509339 0.4474232 0.519487 +0.5547519 0.4474232 0.519487 +0.5584371 0.4474232 0.519487 +0.5619986 0.4474232 0.519487 +0.5654443 0.4474232 0.519487 +0.5687816 0.4474232 0.519487 +0.092819 0.45727 0.519487 +0.2262531 0.45727 0.519487 +0.2875993 0.45727 0.519487 +0.3262122 0.45727 0.519487 +0.3544566 0.45727 0.519487 +0.3767383 0.45727 0.519487 +0.3951413 0.45727 0.519487 +0.4108177 0.45727 0.519487 +0.4244723 0.45727 0.519487 +0.4365675 0.45727 0.519487 +0.4474232 0.45727 0.519487 +0.45727 0.45727 0.519487 +0.4662797 0.45727 0.519487 +0.4745834 0.45727 0.519487 +0.4822838 0.45727 0.519487 +0.4894626 0.45727 0.519487 +0.4961862 0.45727 0.519487 +0.5025087 0.45727 0.519487 +0.5084753 0.45727 0.519487 +0.514124 0.45727 0.519487 +0.519487 0.45727 0.519487 +0.5245917 0.45727 0.519487 +0.529462 0.45727 0.519487 +0.5341183 0.45727 0.519487 +0.5385787 0.45727 0.519487 +0.5428591 0.45727 0.519487 +0.5469733 0.45727 0.519487 +0.5509339 0.45727 0.519487 +0.5547519 0.45727 0.519487 +0.5584371 0.45727 0.519487 +0.5619986 0.45727 0.519487 +0.5654443 0.45727 0.519487 +0.5687816 0.45727 0.519487 +0.092819 0.4662797 0.519487 +0.2262531 0.4662797 0.519487 +0.2875993 0.4662797 0.519487 +0.3262122 0.4662797 0.519487 +0.3544566 0.4662797 0.519487 +0.3767383 0.4662797 0.519487 +0.3951413 0.4662797 0.519487 +0.4108177 0.4662797 0.519487 +0.4244723 0.4662797 0.519487 +0.4365675 0.4662797 0.519487 +0.4474232 0.4662797 0.519487 +0.45727 0.4662797 0.519487 +0.4662797 0.4662797 0.519487 +0.4745834 0.4662797 0.519487 +0.4822838 0.4662797 0.519487 +0.4894626 0.4662797 0.519487 +0.4961862 0.4662797 0.519487 +0.5025087 0.4662797 0.519487 +0.5084753 0.4662797 0.519487 +0.514124 0.4662797 0.519487 +0.519487 0.4662797 0.519487 +0.5245917 0.4662797 0.519487 +0.529462 0.4662797 0.519487 +0.5341183 0.4662797 0.519487 +0.5385787 0.4662797 0.519487 +0.5428591 0.4662797 0.519487 +0.5469733 0.4662797 0.519487 +0.5509339 0.4662797 0.519487 +0.5547519 0.4662797 0.519487 +0.5584371 0.4662797 0.519487 +0.5619986 0.4662797 0.519487 +0.5654443 0.4662797 0.519487 +0.5687816 0.4662797 0.519487 +0.092819 0.4745834 0.519487 +0.2262531 0.4745834 0.519487 +0.2875993 0.4745834 0.519487 +0.3262122 0.4745834 0.519487 +0.3544566 0.4745834 0.519487 +0.3767383 0.4745834 0.519487 +0.3951413 0.4745834 0.519487 +0.4108177 0.4745834 0.519487 +0.4244723 0.4745834 0.519487 +0.4365675 0.4745834 0.519487 +0.4474232 0.4745834 0.519487 +0.45727 0.4745834 0.519487 +0.4662797 0.4745834 0.519487 +0.4745834 0.4745834 0.519487 +0.4822838 0.4745834 0.519487 +0.4894626 0.4745834 0.519487 +0.4961862 0.4745834 0.519487 +0.5025087 0.4745834 0.519487 +0.5084753 0.4745834 0.519487 +0.514124 0.4745834 0.519487 +0.519487 0.4745834 0.519487 +0.5245917 0.4745834 0.519487 +0.529462 0.4745834 0.519487 +0.5341183 0.4745834 0.519487 +0.5385787 0.4745834 0.519487 +0.5428591 0.4745834 0.519487 +0.5469733 0.4745834 0.519487 +0.5509339 0.4745834 0.519487 +0.5547519 0.4745834 0.519487 +0.5584371 0.4745834 0.519487 +0.5619986 0.4745834 0.519487 +0.5654443 0.4745834 0.519487 +0.5687816 0.4745834 0.519487 +0.092819 0.4822838 0.519487 +0.2262531 0.4822838 0.519487 +0.2875993 0.4822838 0.519487 +0.3262122 0.4822838 0.519487 +0.3544566 0.4822838 0.519487 +0.3767383 0.4822838 0.519487 +0.3951413 0.4822838 0.519487 +0.4108177 0.4822838 0.519487 +0.4244723 0.4822838 0.519487 +0.4365675 0.4822838 0.519487 +0.4474232 0.4822838 0.519487 +0.45727 0.4822838 0.519487 +0.4662797 0.4822838 0.519487 +0.4745834 0.4822838 0.519487 +0.4822838 0.4822838 0.519487 +0.4894626 0.4822838 0.519487 +0.4961862 0.4822838 0.519487 +0.5025087 0.4822838 0.519487 +0.5084753 0.4822838 0.519487 +0.514124 0.4822838 0.519487 +0.519487 0.4822838 0.519487 +0.5245917 0.4822838 0.519487 +0.529462 0.4822838 0.519487 +0.5341183 0.4822838 0.519487 +0.5385787 0.4822838 0.519487 +0.5428591 0.4822838 0.519487 +0.5469733 0.4822838 0.519487 +0.5509339 0.4822838 0.519487 +0.5547519 0.4822838 0.519487 +0.5584371 0.4822838 0.519487 +0.5619986 0.4822838 0.519487 +0.5654443 0.4822838 0.519487 +0.5687816 0.4822838 0.519487 +0.092819 0.4894626 0.519487 +0.2262531 0.4894626 0.519487 +0.2875993 0.4894626 0.519487 +0.3262122 0.4894626 0.519487 +0.3544566 0.4894626 0.519487 +0.3767383 0.4894626 0.519487 +0.3951413 0.4894626 0.519487 +0.4108177 0.4894626 0.519487 +0.4244723 0.4894626 0.519487 +0.4365675 0.4894626 0.519487 +0.4474232 0.4894626 0.519487 +0.45727 0.4894626 0.519487 +0.4662797 0.4894626 0.519487 +0.4745834 0.4894626 0.519487 +0.4822838 0.4894626 0.519487 +0.4894626 0.4894626 0.519487 +0.4961862 0.4894626 0.519487 +0.5025087 0.4894626 0.519487 +0.5084753 0.4894626 0.519487 +0.514124 0.4894626 0.519487 +0.519487 0.4894626 0.519487 +0.5245917 0.4894626 0.519487 +0.529462 0.4894626 0.519487 +0.5341183 0.4894626 0.519487 +0.5385787 0.4894626 0.519487 +0.5428591 0.4894626 0.519487 +0.5469733 0.4894626 0.519487 +0.5509339 0.4894626 0.519487 +0.5547519 0.4894626 0.519487 +0.5584371 0.4894626 0.519487 +0.5619986 0.4894626 0.519487 +0.5654443 0.4894626 0.519487 +0.5687816 0.4894626 0.519487 +0.092819 0.4961862 0.519487 +0.2262531 0.4961862 0.519487 +0.2875993 0.4961862 0.519487 +0.3262122 0.4961862 0.519487 +0.3544566 0.4961862 0.519487 +0.3767383 0.4961862 0.519487 +0.3951413 0.4961862 0.519487 +0.4108177 0.4961862 0.519487 +0.4244723 0.4961862 0.519487 +0.4365675 0.4961862 0.519487 +0.4474232 0.4961862 0.519487 +0.45727 0.4961862 0.519487 +0.4662797 0.4961862 0.519487 +0.4745834 0.4961862 0.519487 +0.4822838 0.4961862 0.519487 +0.4894626 0.4961862 0.519487 +0.4961862 0.4961862 0.519487 +0.5025087 0.4961862 0.519487 +0.5084753 0.4961862 0.519487 +0.514124 0.4961862 0.519487 +0.519487 0.4961862 0.519487 +0.5245917 0.4961862 0.519487 +0.529462 0.4961862 0.519487 +0.5341183 0.4961862 0.519487 +0.5385787 0.4961862 0.519487 +0.5428591 0.4961862 0.519487 +0.5469733 0.4961862 0.519487 +0.5509339 0.4961862 0.519487 +0.5547519 0.4961862 0.519487 +0.5584371 0.4961862 0.519487 +0.5619986 0.4961862 0.519487 +0.5654443 0.4961862 0.519487 +0.5687816 0.4961862 0.519487 +0.092819 0.5025087 0.519487 +0.2262531 0.5025087 0.519487 +0.2875993 0.5025087 0.519487 +0.3262122 0.5025087 0.519487 +0.3544566 0.5025087 0.519487 +0.3767383 0.5025087 0.519487 +0.3951413 0.5025087 0.519487 +0.4108177 0.5025087 0.519487 +0.4244723 0.5025087 0.519487 +0.4365675 0.5025087 0.519487 +0.4474232 0.5025087 0.519487 +0.45727 0.5025087 0.519487 +0.4662797 0.5025087 0.519487 +0.4745834 0.5025087 0.519487 +0.4822838 0.5025087 0.519487 +0.4894626 0.5025087 0.519487 +0.4961862 0.5025087 0.519487 +0.5025087 0.5025087 0.519487 +0.5084753 0.5025087 0.519487 +0.514124 0.5025087 0.519487 +0.519487 0.5025087 0.519487 +0.5245917 0.5025087 0.519487 +0.529462 0.5025087 0.519487 +0.5341183 0.5025087 0.519487 +0.5385787 0.5025087 0.519487 +0.5428591 0.5025087 0.519487 +0.5469733 0.5025087 0.519487 +0.5509339 0.5025087 0.519487 +0.5547519 0.5025087 0.519487 +0.5584371 0.5025087 0.519487 +0.5619986 0.5025087 0.519487 +0.5654443 0.5025087 0.519487 +0.5687816 0.5025087 0.519487 +0.092819 0.5084753 0.519487 +0.2262531 0.5084753 0.519487 +0.2875993 0.5084753 0.519487 +0.3262122 0.5084753 0.519487 +0.3544566 0.5084753 0.519487 +0.3767383 0.5084753 0.519487 +0.3951413 0.5084753 0.519487 +0.4108177 0.5084753 0.519487 +0.4244723 0.5084753 0.519487 +0.4365675 0.5084753 0.519487 +0.4474232 0.5084753 0.519487 +0.45727 0.5084753 0.519487 +0.4662797 0.5084753 0.519487 +0.4745834 0.5084753 0.519487 +0.4822838 0.5084753 0.519487 +0.4894626 0.5084753 0.519487 +0.4961862 0.5084753 0.519487 +0.5025087 0.5084753 0.519487 +0.5084753 0.5084753 0.519487 +0.514124 0.5084753 0.519487 +0.519487 0.5084753 0.519487 +0.5245917 0.5084753 0.519487 +0.529462 0.5084753 0.519487 +0.5341183 0.5084753 0.519487 +0.5385787 0.5084753 0.519487 +0.5428591 0.5084753 0.519487 +0.5469733 0.5084753 0.519487 +0.5509339 0.5084753 0.519487 +0.5547519 0.5084753 0.519487 +0.5584371 0.5084753 0.519487 +0.5619986 0.5084753 0.519487 +0.5654443 0.5084753 0.519487 +0.5687816 0.5084753 0.519487 +0.092819 0.514124 0.519487 +0.2262531 0.514124 0.519487 +0.2875993 0.514124 0.519487 +0.3262122 0.514124 0.519487 +0.3544566 0.514124 0.519487 +0.3767383 0.514124 0.519487 +0.3951413 0.514124 0.519487 +0.4108177 0.514124 0.519487 +0.4244723 0.514124 0.519487 +0.4365675 0.514124 0.519487 +0.4474232 0.514124 0.519487 +0.45727 0.514124 0.519487 +0.4662797 0.514124 0.519487 +0.4745834 0.514124 0.519487 +0.4822838 0.514124 0.519487 +0.4894626 0.514124 0.519487 +0.4961862 0.514124 0.519487 +0.5025087 0.514124 0.519487 +0.5084753 0.514124 0.519487 +0.514124 0.514124 0.519487 +0.519487 0.514124 0.519487 +0.5245917 0.514124 0.519487 +0.529462 0.514124 0.519487 +0.5341183 0.514124 0.519487 +0.5385787 0.514124 0.519487 +0.5428591 0.514124 0.519487 +0.5469733 0.514124 0.519487 +0.5509339 0.514124 0.519487 +0.5547519 0.514124 0.519487 +0.5584371 0.514124 0.519487 +0.5619986 0.514124 0.519487 +0.5654443 0.514124 0.519487 +0.5687816 0.514124 0.519487 +0.092819 0.519487 0.519487 +0.2262531 0.519487 0.519487 +0.2875993 0.519487 0.519487 +0.3262122 0.519487 0.519487 +0.3544566 0.519487 0.519487 +0.3767383 0.519487 0.519487 +0.3951413 0.519487 0.519487 +0.4108177 0.519487 0.519487 +0.4244723 0.519487 0.519487 +0.4365675 0.519487 0.519487 +0.4474232 0.519487 0.519487 +0.45727 0.519487 0.519487 +0.4662797 0.519487 0.519487 +0.4745834 0.519487 0.519487 +0.4822838 0.519487 0.519487 +0.4894626 0.519487 0.519487 +0.4961862 0.519487 0.519487 +0.5025087 0.519487 0.519487 +0.5084753 0.519487 0.519487 +0.514124 0.519487 0.519487 +0.519487 0.519487 0.519487 +0.5245917 0.519487 0.519487 +0.529462 0.519487 0.519487 +0.5341183 0.519487 0.519487 +0.5385787 0.519487 0.519487 +0.5428591 0.519487 0.519487 +0.5469733 0.519487 0.519487 +0.5509339 0.519487 0.519487 +0.5547519 0.519487 0.519487 +0.5584371 0.519487 0.519487 +0.5619986 0.519487 0.519487 +0.5654443 0.519487 0.519487 +0.5687816 0.519487 0.519487 +0.092819 0.5245917 0.519487 +0.2262531 0.5245917 0.519487 +0.2875993 0.5245917 0.519487 +0.3262122 0.5245917 0.519487 +0.3544566 0.5245917 0.519487 +0.3767383 0.5245917 0.519487 +0.3951413 0.5245917 0.519487 +0.4108177 0.5245917 0.519487 +0.4244723 0.5245917 0.519487 +0.4365675 0.5245917 0.519487 +0.4474232 0.5245917 0.519487 +0.45727 0.5245917 0.519487 +0.4662797 0.5245917 0.519487 +0.4745834 0.5245917 0.519487 +0.4822838 0.5245917 0.519487 +0.4894626 0.5245917 0.519487 +0.4961862 0.5245917 0.519487 +0.5025087 0.5245917 0.519487 +0.5084753 0.5245917 0.519487 +0.514124 0.5245917 0.519487 +0.519487 0.5245917 0.519487 +0.5245917 0.5245917 0.519487 +0.529462 0.5245917 0.519487 +0.5341183 0.5245917 0.519487 +0.5385787 0.5245917 0.519487 +0.5428591 0.5245917 0.519487 +0.5469733 0.5245917 0.519487 +0.5509339 0.5245917 0.519487 +0.5547519 0.5245917 0.519487 +0.5584371 0.5245917 0.519487 +0.5619986 0.5245917 0.519487 +0.5654443 0.5245917 0.519487 +0.5687816 0.5245917 0.519487 +0.092819 0.529462 0.519487 +0.2262531 0.529462 0.519487 +0.2875993 0.529462 0.519487 +0.3262122 0.529462 0.519487 +0.3544566 0.529462 0.519487 +0.3767383 0.529462 0.519487 +0.3951413 0.529462 0.519487 +0.4108177 0.529462 0.519487 +0.4244723 0.529462 0.519487 +0.4365675 0.529462 0.519487 +0.4474232 0.529462 0.519487 +0.45727 0.529462 0.519487 +0.4662797 0.529462 0.519487 +0.4745834 0.529462 0.519487 +0.4822838 0.529462 0.519487 +0.4894626 0.529462 0.519487 +0.4961862 0.529462 0.519487 +0.5025087 0.529462 0.519487 +0.5084753 0.529462 0.519487 +0.514124 0.529462 0.519487 +0.519487 0.529462 0.519487 +0.5245917 0.529462 0.519487 +0.529462 0.529462 0.519487 +0.5341183 0.529462 0.519487 +0.5385787 0.529462 0.519487 +0.5428591 0.529462 0.519487 +0.5469733 0.529462 0.519487 +0.5509339 0.529462 0.519487 +0.5547519 0.529462 0.519487 +0.5584371 0.529462 0.519487 +0.5619986 0.529462 0.519487 +0.5654443 0.529462 0.519487 +0.5687816 0.529462 0.519487 +0.092819 0.5341183 0.519487 +0.2262531 0.5341183 0.519487 +0.2875993 0.5341183 0.519487 +0.3262122 0.5341183 0.519487 +0.3544566 0.5341183 0.519487 +0.3767383 0.5341183 0.519487 +0.3951413 0.5341183 0.519487 +0.4108177 0.5341183 0.519487 +0.4244723 0.5341183 0.519487 +0.4365675 0.5341183 0.519487 +0.4474232 0.5341183 0.519487 +0.45727 0.5341183 0.519487 +0.4662797 0.5341183 0.519487 +0.4745834 0.5341183 0.519487 +0.4822838 0.5341183 0.519487 +0.4894626 0.5341183 0.519487 +0.4961862 0.5341183 0.519487 +0.5025087 0.5341183 0.519487 +0.5084753 0.5341183 0.519487 +0.514124 0.5341183 0.519487 +0.519487 0.5341183 0.519487 +0.5245917 0.5341183 0.519487 +0.529462 0.5341183 0.519487 +0.5341183 0.5341183 0.519487 +0.5385787 0.5341183 0.519487 +0.5428591 0.5341183 0.519487 +0.5469733 0.5341183 0.519487 +0.5509339 0.5341183 0.519487 +0.5547519 0.5341183 0.519487 +0.5584371 0.5341183 0.519487 +0.5619986 0.5341183 0.519487 +0.5654443 0.5341183 0.519487 +0.5687816 0.5341183 0.519487 +0.092819 0.5385787 0.519487 +0.2262531 0.5385787 0.519487 +0.2875993 0.5385787 0.519487 +0.3262122 0.5385787 0.519487 +0.3544566 0.5385787 0.519487 +0.3767383 0.5385787 0.519487 +0.3951413 0.5385787 0.519487 +0.4108177 0.5385787 0.519487 +0.4244723 0.5385787 0.519487 +0.4365675 0.5385787 0.519487 +0.4474232 0.5385787 0.519487 +0.45727 0.5385787 0.519487 +0.4662797 0.5385787 0.519487 +0.4745834 0.5385787 0.519487 +0.4822838 0.5385787 0.519487 +0.4894626 0.5385787 0.519487 +0.4961862 0.5385787 0.519487 +0.5025087 0.5385787 0.519487 +0.5084753 0.5385787 0.519487 +0.514124 0.5385787 0.519487 +0.519487 0.5385787 0.519487 +0.5245917 0.5385787 0.519487 +0.529462 0.5385787 0.519487 +0.5341183 0.5385787 0.519487 +0.5385787 0.5385787 0.519487 +0.5428591 0.5385787 0.519487 +0.5469733 0.5385787 0.519487 +0.5509339 0.5385787 0.519487 +0.5547519 0.5385787 0.519487 +0.5584371 0.5385787 0.519487 +0.5619986 0.5385787 0.519487 +0.5654443 0.5385787 0.519487 +0.5687816 0.5385787 0.519487 +0.092819 0.5428591 0.519487 +0.2262531 0.5428591 0.519487 +0.2875993 0.5428591 0.519487 +0.3262122 0.5428591 0.519487 +0.3544566 0.5428591 0.519487 +0.3767383 0.5428591 0.519487 +0.3951413 0.5428591 0.519487 +0.4108177 0.5428591 0.519487 +0.4244723 0.5428591 0.519487 +0.4365675 0.5428591 0.519487 +0.4474232 0.5428591 0.519487 +0.45727 0.5428591 0.519487 +0.4662797 0.5428591 0.519487 +0.4745834 0.5428591 0.519487 +0.4822838 0.5428591 0.519487 +0.4894626 0.5428591 0.519487 +0.4961862 0.5428591 0.519487 +0.5025087 0.5428591 0.519487 +0.5084753 0.5428591 0.519487 +0.514124 0.5428591 0.519487 +0.519487 0.5428591 0.519487 +0.5245917 0.5428591 0.519487 +0.529462 0.5428591 0.519487 +0.5341183 0.5428591 0.519487 +0.5385787 0.5428591 0.519487 +0.5428591 0.5428591 0.519487 +0.5469733 0.5428591 0.519487 +0.5509339 0.5428591 0.519487 +0.5547519 0.5428591 0.519487 +0.5584371 0.5428591 0.519487 +0.5619986 0.5428591 0.519487 +0.5654443 0.5428591 0.519487 +0.5687816 0.5428591 0.519487 +0.092819 0.5469733 0.519487 +0.2262531 0.5469733 0.519487 +0.2875993 0.5469733 0.519487 +0.3262122 0.5469733 0.519487 +0.3544566 0.5469733 0.519487 +0.3767383 0.5469733 0.519487 +0.3951413 0.5469733 0.519487 +0.4108177 0.5469733 0.519487 +0.4244723 0.5469733 0.519487 +0.4365675 0.5469733 0.519487 +0.4474232 0.5469733 0.519487 +0.45727 0.5469733 0.519487 +0.4662797 0.5469733 0.519487 +0.4745834 0.5469733 0.519487 +0.4822838 0.5469733 0.519487 +0.4894626 0.5469733 0.519487 +0.4961862 0.5469733 0.519487 +0.5025087 0.5469733 0.519487 +0.5084753 0.5469733 0.519487 +0.514124 0.5469733 0.519487 +0.519487 0.5469733 0.519487 +0.5245917 0.5469733 0.519487 +0.529462 0.5469733 0.519487 +0.5341183 0.5469733 0.519487 +0.5385787 0.5469733 0.519487 +0.5428591 0.5469733 0.519487 +0.5469733 0.5469733 0.519487 +0.5509339 0.5469733 0.519487 +0.5547519 0.5469733 0.519487 +0.5584371 0.5469733 0.519487 +0.5619986 0.5469733 0.519487 +0.5654443 0.5469733 0.519487 +0.5687816 0.5469733 0.519487 +0.092819 0.5509339 0.519487 +0.2262531 0.5509339 0.519487 +0.2875993 0.5509339 0.519487 +0.3262122 0.5509339 0.519487 +0.3544566 0.5509339 0.519487 +0.3767383 0.5509339 0.519487 +0.3951413 0.5509339 0.519487 +0.4108177 0.5509339 0.519487 +0.4244723 0.5509339 0.519487 +0.4365675 0.5509339 0.519487 +0.4474232 0.5509339 0.519487 +0.45727 0.5509339 0.519487 +0.4662797 0.5509339 0.519487 +0.4745834 0.5509339 0.519487 +0.4822838 0.5509339 0.519487 +0.4894626 0.5509339 0.519487 +0.4961862 0.5509339 0.519487 +0.5025087 0.5509339 0.519487 +0.5084753 0.5509339 0.519487 +0.514124 0.5509339 0.519487 +0.519487 0.5509339 0.519487 +0.5245917 0.5509339 0.519487 +0.529462 0.5509339 0.519487 +0.5341183 0.5509339 0.519487 +0.5385787 0.5509339 0.519487 +0.5428591 0.5509339 0.519487 +0.5469733 0.5509339 0.519487 +0.5509339 0.5509339 0.519487 +0.5547519 0.5509339 0.519487 +0.5584371 0.5509339 0.519487 +0.5619986 0.5509339 0.519487 +0.5654443 0.5509339 0.519487 +0.5687816 0.5509339 0.519487 +0.092819 0.5547519 0.519487 +0.2262531 0.5547519 0.519487 +0.2875993 0.5547519 0.519487 +0.3262122 0.5547519 0.519487 +0.3544566 0.5547519 0.519487 +0.3767383 0.5547519 0.519487 +0.3951413 0.5547519 0.519487 +0.4108177 0.5547519 0.519487 +0.4244723 0.5547519 0.519487 +0.4365675 0.5547519 0.519487 +0.4474232 0.5547519 0.519487 +0.45727 0.5547519 0.519487 +0.4662797 0.5547519 0.519487 +0.4745834 0.5547519 0.519487 +0.4822838 0.5547519 0.519487 +0.4894626 0.5547519 0.519487 +0.4961862 0.5547519 0.519487 +0.5025087 0.5547519 0.519487 +0.5084753 0.5547519 0.519487 +0.514124 0.5547519 0.519487 +0.519487 0.5547519 0.519487 +0.5245917 0.5547519 0.519487 +0.529462 0.5547519 0.519487 +0.5341183 0.5547519 0.519487 +0.5385787 0.5547519 0.519487 +0.5428591 0.5547519 0.519487 +0.5469733 0.5547519 0.519487 +0.5509339 0.5547519 0.519487 +0.5547519 0.5547519 0.519487 +0.5584371 0.5547519 0.519487 +0.5619986 0.5547519 0.519487 +0.5654443 0.5547519 0.519487 +0.5687816 0.5547519 0.519487 +0.092819 0.5584371 0.519487 +0.2262531 0.5584371 0.519487 +0.2875993 0.5584371 0.519487 +0.3262122 0.5584371 0.519487 +0.3544566 0.5584371 0.519487 +0.3767383 0.5584371 0.519487 +0.3951413 0.5584371 0.519487 +0.4108177 0.5584371 0.519487 +0.4244723 0.5584371 0.519487 +0.4365675 0.5584371 0.519487 +0.4474232 0.5584371 0.519487 +0.45727 0.5584371 0.519487 +0.4662797 0.5584371 0.519487 +0.4745834 0.5584371 0.519487 +0.4822838 0.5584371 0.519487 +0.4894626 0.5584371 0.519487 +0.4961862 0.5584371 0.519487 +0.5025087 0.5584371 0.519487 +0.5084753 0.5584371 0.519487 +0.514124 0.5584371 0.519487 +0.519487 0.5584371 0.519487 +0.5245917 0.5584371 0.519487 +0.529462 0.5584371 0.519487 +0.5341183 0.5584371 0.519487 +0.5385787 0.5584371 0.519487 +0.5428591 0.5584371 0.519487 +0.5469733 0.5584371 0.519487 +0.5509339 0.5584371 0.519487 +0.5547519 0.5584371 0.519487 +0.5584371 0.5584371 0.519487 +0.5619986 0.5584371 0.519487 +0.5654443 0.5584371 0.519487 +0.5687816 0.5584371 0.519487 +0.092819 0.5619986 0.519487 +0.2262531 0.5619986 0.519487 +0.2875993 0.5619986 0.519487 +0.3262122 0.5619986 0.519487 +0.3544566 0.5619986 0.519487 +0.3767383 0.5619986 0.519487 +0.3951413 0.5619986 0.519487 +0.4108177 0.5619986 0.519487 +0.4244723 0.5619986 0.519487 +0.4365675 0.5619986 0.519487 +0.4474232 0.5619986 0.519487 +0.45727 0.5619986 0.519487 +0.4662797 0.5619986 0.519487 +0.4745834 0.5619986 0.519487 +0.4822838 0.5619986 0.519487 +0.4894626 0.5619986 0.519487 +0.4961862 0.5619986 0.519487 +0.5025087 0.5619986 0.519487 +0.5084753 0.5619986 0.519487 +0.514124 0.5619986 0.519487 +0.519487 0.5619986 0.519487 +0.5245917 0.5619986 0.519487 +0.529462 0.5619986 0.519487 +0.5341183 0.5619986 0.519487 +0.5385787 0.5619986 0.519487 +0.5428591 0.5619986 0.519487 +0.5469733 0.5619986 0.519487 +0.5509339 0.5619986 0.519487 +0.5547519 0.5619986 0.519487 +0.5584371 0.5619986 0.519487 +0.5619986 0.5619986 0.519487 +0.5654443 0.5619986 0.519487 +0.5687816 0.5619986 0.519487 +0.092819 0.5654443 0.519487 +0.2262531 0.5654443 0.519487 +0.2875993 0.5654443 0.519487 +0.3262122 0.5654443 0.519487 +0.3544566 0.5654443 0.519487 +0.3767383 0.5654443 0.519487 +0.3951413 0.5654443 0.519487 +0.4108177 0.5654443 0.519487 +0.4244723 0.5654443 0.519487 +0.4365675 0.5654443 0.519487 +0.4474232 0.5654443 0.519487 +0.45727 0.5654443 0.519487 +0.4662797 0.5654443 0.519487 +0.4745834 0.5654443 0.519487 +0.4822838 0.5654443 0.519487 +0.4894626 0.5654443 0.519487 +0.4961862 0.5654443 0.519487 +0.5025087 0.5654443 0.519487 +0.5084753 0.5654443 0.519487 +0.514124 0.5654443 0.519487 +0.519487 0.5654443 0.519487 +0.5245917 0.5654443 0.519487 +0.529462 0.5654443 0.519487 +0.5341183 0.5654443 0.519487 +0.5385787 0.5654443 0.519487 +0.5428591 0.5654443 0.519487 +0.5469733 0.5654443 0.519487 +0.5509339 0.5654443 0.519487 +0.5547519 0.5654443 0.519487 +0.5584371 0.5654443 0.519487 +0.5619986 0.5654443 0.519487 +0.5654443 0.5654443 0.519487 +0.5687816 0.5654443 0.519487 +0.092819 0.5687816 0.519487 +0.2262531 0.5687816 0.519487 +0.2875993 0.5687816 0.519487 +0.3262122 0.5687816 0.519487 +0.3544566 0.5687816 0.519487 +0.3767383 0.5687816 0.519487 +0.3951413 0.5687816 0.519487 +0.4108177 0.5687816 0.519487 +0.4244723 0.5687816 0.519487 +0.4365675 0.5687816 0.519487 +0.4474232 0.5687816 0.519487 +0.45727 0.5687816 0.519487 +0.4662797 0.5687816 0.519487 +0.4745834 0.5687816 0.519487 +0.4822838 0.5687816 0.519487 +0.4894626 0.5687816 0.519487 +0.4961862 0.5687816 0.519487 +0.5025087 0.5687816 0.519487 +0.5084753 0.5687816 0.519487 +0.514124 0.5687816 0.519487 +0.519487 0.5687816 0.519487 +0.5245917 0.5687816 0.519487 +0.529462 0.5687816 0.519487 +0.5341183 0.5687816 0.519487 +0.5385787 0.5687816 0.519487 +0.5428591 0.5687816 0.519487 +0.5469733 0.5687816 0.519487 +0.5509339 0.5687816 0.519487 +0.5547519 0.5687816 0.519487 +0.5584371 0.5687816 0.519487 +0.5619986 0.5687816 0.519487 +0.5654443 0.5687816 0.519487 +0.5687816 0.5687816 0.519487 +0.092819 0.092819 0.5245917 +0.2262531 0.092819 0.5245917 +0.2875993 0.092819 0.5245917 +0.3262122 0.092819 0.5245917 +0.3544566 0.092819 0.5245917 +0.3767383 0.092819 0.5245917 +0.3951413 0.092819 0.5245917 +0.4108177 0.092819 0.5245917 +0.4244723 0.092819 0.5245917 +0.4365675 0.092819 0.5245917 +0.4474232 0.092819 0.5245917 +0.45727 0.092819 0.5245917 +0.4662797 0.092819 0.5245917 +0.4745834 0.092819 0.5245917 +0.4822838 0.092819 0.5245917 +0.4894626 0.092819 0.5245917 +0.4961862 0.092819 0.5245917 +0.5025087 0.092819 0.5245917 +0.5084753 0.092819 0.5245917 +0.514124 0.092819 0.5245917 +0.519487 0.092819 0.5245917 +0.5245917 0.092819 0.5245917 +0.529462 0.092819 0.5245917 +0.5341183 0.092819 0.5245917 +0.5385787 0.092819 0.5245917 +0.5428591 0.092819 0.5245917 +0.5469733 0.092819 0.5245917 +0.5509339 0.092819 0.5245917 +0.5547519 0.092819 0.5245917 +0.5584371 0.092819 0.5245917 +0.5619986 0.092819 0.5245917 +0.5654443 0.092819 0.5245917 +0.5687816 0.092819 0.5245917 +0.092819 0.2262531 0.5245917 +0.2262531 0.2262531 0.5245917 +0.2875993 0.2262531 0.5245917 +0.3262122 0.2262531 0.5245917 +0.3544566 0.2262531 0.5245917 +0.3767383 0.2262531 0.5245917 +0.3951413 0.2262531 0.5245917 +0.4108177 0.2262531 0.5245917 +0.4244723 0.2262531 0.5245917 +0.4365675 0.2262531 0.5245917 +0.4474232 0.2262531 0.5245917 +0.45727 0.2262531 0.5245917 +0.4662797 0.2262531 0.5245917 +0.4745834 0.2262531 0.5245917 +0.4822838 0.2262531 0.5245917 +0.4894626 0.2262531 0.5245917 +0.4961862 0.2262531 0.5245917 +0.5025087 0.2262531 0.5245917 +0.5084753 0.2262531 0.5245917 +0.514124 0.2262531 0.5245917 +0.519487 0.2262531 0.5245917 +0.5245917 0.2262531 0.5245917 +0.529462 0.2262531 0.5245917 +0.5341183 0.2262531 0.5245917 +0.5385787 0.2262531 0.5245917 +0.5428591 0.2262531 0.5245917 +0.5469733 0.2262531 0.5245917 +0.5509339 0.2262531 0.5245917 +0.5547519 0.2262531 0.5245917 +0.5584371 0.2262531 0.5245917 +0.5619986 0.2262531 0.5245917 +0.5654443 0.2262531 0.5245917 +0.5687816 0.2262531 0.5245917 +0.092819 0.2875993 0.5245917 +0.2262531 0.2875993 0.5245917 +0.2875993 0.2875993 0.5245917 +0.3262122 0.2875993 0.5245917 +0.3544566 0.2875993 0.5245917 +0.3767383 0.2875993 0.5245917 +0.3951413 0.2875993 0.5245917 +0.4108177 0.2875993 0.5245917 +0.4244723 0.2875993 0.5245917 +0.4365675 0.2875993 0.5245917 +0.4474232 0.2875993 0.5245917 +0.45727 0.2875993 0.5245917 +0.4662797 0.2875993 0.5245917 +0.4745834 0.2875993 0.5245917 +0.4822838 0.2875993 0.5245917 +0.4894626 0.2875993 0.5245917 +0.4961862 0.2875993 0.5245917 +0.5025087 0.2875993 0.5245917 +0.5084753 0.2875993 0.5245917 +0.514124 0.2875993 0.5245917 +0.519487 0.2875993 0.5245917 +0.5245917 0.2875993 0.5245917 +0.529462 0.2875993 0.5245917 +0.5341183 0.2875993 0.5245917 +0.5385787 0.2875993 0.5245917 +0.5428591 0.2875993 0.5245917 +0.5469733 0.2875993 0.5245917 +0.5509339 0.2875993 0.5245917 +0.5547519 0.2875993 0.5245917 +0.5584371 0.2875993 0.5245917 +0.5619986 0.2875993 0.5245917 +0.5654443 0.2875993 0.5245917 +0.5687816 0.2875993 0.5245917 +0.092819 0.3262122 0.5245917 +0.2262531 0.3262122 0.5245917 +0.2875993 0.3262122 0.5245917 +0.3262122 0.3262122 0.5245917 +0.3544566 0.3262122 0.5245917 +0.3767383 0.3262122 0.5245917 +0.3951413 0.3262122 0.5245917 +0.4108177 0.3262122 0.5245917 +0.4244723 0.3262122 0.5245917 +0.4365675 0.3262122 0.5245917 +0.4474232 0.3262122 0.5245917 +0.45727 0.3262122 0.5245917 +0.4662797 0.3262122 0.5245917 +0.4745834 0.3262122 0.5245917 +0.4822838 0.3262122 0.5245917 +0.4894626 0.3262122 0.5245917 +0.4961862 0.3262122 0.5245917 +0.5025087 0.3262122 0.5245917 +0.5084753 0.3262122 0.5245917 +0.514124 0.3262122 0.5245917 +0.519487 0.3262122 0.5245917 +0.5245917 0.3262122 0.5245917 +0.529462 0.3262122 0.5245917 +0.5341183 0.3262122 0.5245917 +0.5385787 0.3262122 0.5245917 +0.5428591 0.3262122 0.5245917 +0.5469733 0.3262122 0.5245917 +0.5509339 0.3262122 0.5245917 +0.5547519 0.3262122 0.5245917 +0.5584371 0.3262122 0.5245917 +0.5619986 0.3262122 0.5245917 +0.5654443 0.3262122 0.5245917 +0.5687816 0.3262122 0.5245917 +0.092819 0.3544566 0.5245917 +0.2262531 0.3544566 0.5245917 +0.2875993 0.3544566 0.5245917 +0.3262122 0.3544566 0.5245917 +0.3544566 0.3544566 0.5245917 +0.3767383 0.3544566 0.5245917 +0.3951413 0.3544566 0.5245917 +0.4108177 0.3544566 0.5245917 +0.4244723 0.3544566 0.5245917 +0.4365675 0.3544566 0.5245917 +0.4474232 0.3544566 0.5245917 +0.45727 0.3544566 0.5245917 +0.4662797 0.3544566 0.5245917 +0.4745834 0.3544566 0.5245917 +0.4822838 0.3544566 0.5245917 +0.4894626 0.3544566 0.5245917 +0.4961862 0.3544566 0.5245917 +0.5025087 0.3544566 0.5245917 +0.5084753 0.3544566 0.5245917 +0.514124 0.3544566 0.5245917 +0.519487 0.3544566 0.5245917 +0.5245917 0.3544566 0.5245917 +0.529462 0.3544566 0.5245917 +0.5341183 0.3544566 0.5245917 +0.5385787 0.3544566 0.5245917 +0.5428591 0.3544566 0.5245917 +0.5469733 0.3544566 0.5245917 +0.5509339 0.3544566 0.5245917 +0.5547519 0.3544566 0.5245917 +0.5584371 0.3544566 0.5245917 +0.5619986 0.3544566 0.5245917 +0.5654443 0.3544566 0.5245917 +0.5687816 0.3544566 0.5245917 +0.092819 0.3767383 0.5245917 +0.2262531 0.3767383 0.5245917 +0.2875993 0.3767383 0.5245917 +0.3262122 0.3767383 0.5245917 +0.3544566 0.3767383 0.5245917 +0.3767383 0.3767383 0.5245917 +0.3951413 0.3767383 0.5245917 +0.4108177 0.3767383 0.5245917 +0.4244723 0.3767383 0.5245917 +0.4365675 0.3767383 0.5245917 +0.4474232 0.3767383 0.5245917 +0.45727 0.3767383 0.5245917 +0.4662797 0.3767383 0.5245917 +0.4745834 0.3767383 0.5245917 +0.4822838 0.3767383 0.5245917 +0.4894626 0.3767383 0.5245917 +0.4961862 0.3767383 0.5245917 +0.5025087 0.3767383 0.5245917 +0.5084753 0.3767383 0.5245917 +0.514124 0.3767383 0.5245917 +0.519487 0.3767383 0.5245917 +0.5245917 0.3767383 0.5245917 +0.529462 0.3767383 0.5245917 +0.5341183 0.3767383 0.5245917 +0.5385787 0.3767383 0.5245917 +0.5428591 0.3767383 0.5245917 +0.5469733 0.3767383 0.5245917 +0.5509339 0.3767383 0.5245917 +0.5547519 0.3767383 0.5245917 +0.5584371 0.3767383 0.5245917 +0.5619986 0.3767383 0.5245917 +0.5654443 0.3767383 0.5245917 +0.5687816 0.3767383 0.5245917 +0.092819 0.3951413 0.5245917 +0.2262531 0.3951413 0.5245917 +0.2875993 0.3951413 0.5245917 +0.3262122 0.3951413 0.5245917 +0.3544566 0.3951413 0.5245917 +0.3767383 0.3951413 0.5245917 +0.3951413 0.3951413 0.5245917 +0.4108177 0.3951413 0.5245917 +0.4244723 0.3951413 0.5245917 +0.4365675 0.3951413 0.5245917 +0.4474232 0.3951413 0.5245917 +0.45727 0.3951413 0.5245917 +0.4662797 0.3951413 0.5245917 +0.4745834 0.3951413 0.5245917 +0.4822838 0.3951413 0.5245917 +0.4894626 0.3951413 0.5245917 +0.4961862 0.3951413 0.5245917 +0.5025087 0.3951413 0.5245917 +0.5084753 0.3951413 0.5245917 +0.514124 0.3951413 0.5245917 +0.519487 0.3951413 0.5245917 +0.5245917 0.3951413 0.5245917 +0.529462 0.3951413 0.5245917 +0.5341183 0.3951413 0.5245917 +0.5385787 0.3951413 0.5245917 +0.5428591 0.3951413 0.5245917 +0.5469733 0.3951413 0.5245917 +0.5509339 0.3951413 0.5245917 +0.5547519 0.3951413 0.5245917 +0.5584371 0.3951413 0.5245917 +0.5619986 0.3951413 0.5245917 +0.5654443 0.3951413 0.5245917 +0.5687816 0.3951413 0.5245917 +0.092819 0.4108177 0.5245917 +0.2262531 0.4108177 0.5245917 +0.2875993 0.4108177 0.5245917 +0.3262122 0.4108177 0.5245917 +0.3544566 0.4108177 0.5245917 +0.3767383 0.4108177 0.5245917 +0.3951413 0.4108177 0.5245917 +0.4108177 0.4108177 0.5245917 +0.4244723 0.4108177 0.5245917 +0.4365675 0.4108177 0.5245917 +0.4474232 0.4108177 0.5245917 +0.45727 0.4108177 0.5245917 +0.4662797 0.4108177 0.5245917 +0.4745834 0.4108177 0.5245917 +0.4822838 0.4108177 0.5245917 +0.4894626 0.4108177 0.5245917 +0.4961862 0.4108177 0.5245917 +0.5025087 0.4108177 0.5245917 +0.5084753 0.4108177 0.5245917 +0.514124 0.4108177 0.5245917 +0.519487 0.4108177 0.5245917 +0.5245917 0.4108177 0.5245917 +0.529462 0.4108177 0.5245917 +0.5341183 0.4108177 0.5245917 +0.5385787 0.4108177 0.5245917 +0.5428591 0.4108177 0.5245917 +0.5469733 0.4108177 0.5245917 +0.5509339 0.4108177 0.5245917 +0.5547519 0.4108177 0.5245917 +0.5584371 0.4108177 0.5245917 +0.5619986 0.4108177 0.5245917 +0.5654443 0.4108177 0.5245917 +0.5687816 0.4108177 0.5245917 +0.092819 0.4244723 0.5245917 +0.2262531 0.4244723 0.5245917 +0.2875993 0.4244723 0.5245917 +0.3262122 0.4244723 0.5245917 +0.3544566 0.4244723 0.5245917 +0.3767383 0.4244723 0.5245917 +0.3951413 0.4244723 0.5245917 +0.4108177 0.4244723 0.5245917 +0.4244723 0.4244723 0.5245917 +0.4365675 0.4244723 0.5245917 +0.4474232 0.4244723 0.5245917 +0.45727 0.4244723 0.5245917 +0.4662797 0.4244723 0.5245917 +0.4745834 0.4244723 0.5245917 +0.4822838 0.4244723 0.5245917 +0.4894626 0.4244723 0.5245917 +0.4961862 0.4244723 0.5245917 +0.5025087 0.4244723 0.5245917 +0.5084753 0.4244723 0.5245917 +0.514124 0.4244723 0.5245917 +0.519487 0.4244723 0.5245917 +0.5245917 0.4244723 0.5245917 +0.529462 0.4244723 0.5245917 +0.5341183 0.4244723 0.5245917 +0.5385787 0.4244723 0.5245917 +0.5428591 0.4244723 0.5245917 +0.5469733 0.4244723 0.5245917 +0.5509339 0.4244723 0.5245917 +0.5547519 0.4244723 0.5245917 +0.5584371 0.4244723 0.5245917 +0.5619986 0.4244723 0.5245917 +0.5654443 0.4244723 0.5245917 +0.5687816 0.4244723 0.5245917 +0.092819 0.4365675 0.5245917 +0.2262531 0.4365675 0.5245917 +0.2875993 0.4365675 0.5245917 +0.3262122 0.4365675 0.5245917 +0.3544566 0.4365675 0.5245917 +0.3767383 0.4365675 0.5245917 +0.3951413 0.4365675 0.5245917 +0.4108177 0.4365675 0.5245917 +0.4244723 0.4365675 0.5245917 +0.4365675 0.4365675 0.5245917 +0.4474232 0.4365675 0.5245917 +0.45727 0.4365675 0.5245917 +0.4662797 0.4365675 0.5245917 +0.4745834 0.4365675 0.5245917 +0.4822838 0.4365675 0.5245917 +0.4894626 0.4365675 0.5245917 +0.4961862 0.4365675 0.5245917 +0.5025087 0.4365675 0.5245917 +0.5084753 0.4365675 0.5245917 +0.514124 0.4365675 0.5245917 +0.519487 0.4365675 0.5245917 +0.5245917 0.4365675 0.5245917 +0.529462 0.4365675 0.5245917 +0.5341183 0.4365675 0.5245917 +0.5385787 0.4365675 0.5245917 +0.5428591 0.4365675 0.5245917 +0.5469733 0.4365675 0.5245917 +0.5509339 0.4365675 0.5245917 +0.5547519 0.4365675 0.5245917 +0.5584371 0.4365675 0.5245917 +0.5619986 0.4365675 0.5245917 +0.5654443 0.4365675 0.5245917 +0.5687816 0.4365675 0.5245917 +0.092819 0.4474232 0.5245917 +0.2262531 0.4474232 0.5245917 +0.2875993 0.4474232 0.5245917 +0.3262122 0.4474232 0.5245917 +0.3544566 0.4474232 0.5245917 +0.3767383 0.4474232 0.5245917 +0.3951413 0.4474232 0.5245917 +0.4108177 0.4474232 0.5245917 +0.4244723 0.4474232 0.5245917 +0.4365675 0.4474232 0.5245917 +0.4474232 0.4474232 0.5245917 +0.45727 0.4474232 0.5245917 +0.4662797 0.4474232 0.5245917 +0.4745834 0.4474232 0.5245917 +0.4822838 0.4474232 0.5245917 +0.4894626 0.4474232 0.5245917 +0.4961862 0.4474232 0.5245917 +0.5025087 0.4474232 0.5245917 +0.5084753 0.4474232 0.5245917 +0.514124 0.4474232 0.5245917 +0.519487 0.4474232 0.5245917 +0.5245917 0.4474232 0.5245917 +0.529462 0.4474232 0.5245917 +0.5341183 0.4474232 0.5245917 +0.5385787 0.4474232 0.5245917 +0.5428591 0.4474232 0.5245917 +0.5469733 0.4474232 0.5245917 +0.5509339 0.4474232 0.5245917 +0.5547519 0.4474232 0.5245917 +0.5584371 0.4474232 0.5245917 +0.5619986 0.4474232 0.5245917 +0.5654443 0.4474232 0.5245917 +0.5687816 0.4474232 0.5245917 +0.092819 0.45727 0.5245917 +0.2262531 0.45727 0.5245917 +0.2875993 0.45727 0.5245917 +0.3262122 0.45727 0.5245917 +0.3544566 0.45727 0.5245917 +0.3767383 0.45727 0.5245917 +0.3951413 0.45727 0.5245917 +0.4108177 0.45727 0.5245917 +0.4244723 0.45727 0.5245917 +0.4365675 0.45727 0.5245917 +0.4474232 0.45727 0.5245917 +0.45727 0.45727 0.5245917 +0.4662797 0.45727 0.5245917 +0.4745834 0.45727 0.5245917 +0.4822838 0.45727 0.5245917 +0.4894626 0.45727 0.5245917 +0.4961862 0.45727 0.5245917 +0.5025087 0.45727 0.5245917 +0.5084753 0.45727 0.5245917 +0.514124 0.45727 0.5245917 +0.519487 0.45727 0.5245917 +0.5245917 0.45727 0.5245917 +0.529462 0.45727 0.5245917 +0.5341183 0.45727 0.5245917 +0.5385787 0.45727 0.5245917 +0.5428591 0.45727 0.5245917 +0.5469733 0.45727 0.5245917 +0.5509339 0.45727 0.5245917 +0.5547519 0.45727 0.5245917 +0.5584371 0.45727 0.5245917 +0.5619986 0.45727 0.5245917 +0.5654443 0.45727 0.5245917 +0.5687816 0.45727 0.5245917 +0.092819 0.4662797 0.5245917 +0.2262531 0.4662797 0.5245917 +0.2875993 0.4662797 0.5245917 +0.3262122 0.4662797 0.5245917 +0.3544566 0.4662797 0.5245917 +0.3767383 0.4662797 0.5245917 +0.3951413 0.4662797 0.5245917 +0.4108177 0.4662797 0.5245917 +0.4244723 0.4662797 0.5245917 +0.4365675 0.4662797 0.5245917 +0.4474232 0.4662797 0.5245917 +0.45727 0.4662797 0.5245917 +0.4662797 0.4662797 0.5245917 +0.4745834 0.4662797 0.5245917 +0.4822838 0.4662797 0.5245917 +0.4894626 0.4662797 0.5245917 +0.4961862 0.4662797 0.5245917 +0.5025087 0.4662797 0.5245917 +0.5084753 0.4662797 0.5245917 +0.514124 0.4662797 0.5245917 +0.519487 0.4662797 0.5245917 +0.5245917 0.4662797 0.5245917 +0.529462 0.4662797 0.5245917 +0.5341183 0.4662797 0.5245917 +0.5385787 0.4662797 0.5245917 +0.5428591 0.4662797 0.5245917 +0.5469733 0.4662797 0.5245917 +0.5509339 0.4662797 0.5245917 +0.5547519 0.4662797 0.5245917 +0.5584371 0.4662797 0.5245917 +0.5619986 0.4662797 0.5245917 +0.5654443 0.4662797 0.5245917 +0.5687816 0.4662797 0.5245917 +0.092819 0.4745834 0.5245917 +0.2262531 0.4745834 0.5245917 +0.2875993 0.4745834 0.5245917 +0.3262122 0.4745834 0.5245917 +0.3544566 0.4745834 0.5245917 +0.3767383 0.4745834 0.5245917 +0.3951413 0.4745834 0.5245917 +0.4108177 0.4745834 0.5245917 +0.4244723 0.4745834 0.5245917 +0.4365675 0.4745834 0.5245917 +0.4474232 0.4745834 0.5245917 +0.45727 0.4745834 0.5245917 +0.4662797 0.4745834 0.5245917 +0.4745834 0.4745834 0.5245917 +0.4822838 0.4745834 0.5245917 +0.4894626 0.4745834 0.5245917 +0.4961862 0.4745834 0.5245917 +0.5025087 0.4745834 0.5245917 +0.5084753 0.4745834 0.5245917 +0.514124 0.4745834 0.5245917 +0.519487 0.4745834 0.5245917 +0.5245917 0.4745834 0.5245917 +0.529462 0.4745834 0.5245917 +0.5341183 0.4745834 0.5245917 +0.5385787 0.4745834 0.5245917 +0.5428591 0.4745834 0.5245917 +0.5469733 0.4745834 0.5245917 +0.5509339 0.4745834 0.5245917 +0.5547519 0.4745834 0.5245917 +0.5584371 0.4745834 0.5245917 +0.5619986 0.4745834 0.5245917 +0.5654443 0.4745834 0.5245917 +0.5687816 0.4745834 0.5245917 +0.092819 0.4822838 0.5245917 +0.2262531 0.4822838 0.5245917 +0.2875993 0.4822838 0.5245917 +0.3262122 0.4822838 0.5245917 +0.3544566 0.4822838 0.5245917 +0.3767383 0.4822838 0.5245917 +0.3951413 0.4822838 0.5245917 +0.4108177 0.4822838 0.5245917 +0.4244723 0.4822838 0.5245917 +0.4365675 0.4822838 0.5245917 +0.4474232 0.4822838 0.5245917 +0.45727 0.4822838 0.5245917 +0.4662797 0.4822838 0.5245917 +0.4745834 0.4822838 0.5245917 +0.4822838 0.4822838 0.5245917 +0.4894626 0.4822838 0.5245917 +0.4961862 0.4822838 0.5245917 +0.5025087 0.4822838 0.5245917 +0.5084753 0.4822838 0.5245917 +0.514124 0.4822838 0.5245917 +0.519487 0.4822838 0.5245917 +0.5245917 0.4822838 0.5245917 +0.529462 0.4822838 0.5245917 +0.5341183 0.4822838 0.5245917 +0.5385787 0.4822838 0.5245917 +0.5428591 0.4822838 0.5245917 +0.5469733 0.4822838 0.5245917 +0.5509339 0.4822838 0.5245917 +0.5547519 0.4822838 0.5245917 +0.5584371 0.4822838 0.5245917 +0.5619986 0.4822838 0.5245917 +0.5654443 0.4822838 0.5245917 +0.5687816 0.4822838 0.5245917 +0.092819 0.4894626 0.5245917 +0.2262531 0.4894626 0.5245917 +0.2875993 0.4894626 0.5245917 +0.3262122 0.4894626 0.5245917 +0.3544566 0.4894626 0.5245917 +0.3767383 0.4894626 0.5245917 +0.3951413 0.4894626 0.5245917 +0.4108177 0.4894626 0.5245917 +0.4244723 0.4894626 0.5245917 +0.4365675 0.4894626 0.5245917 +0.4474232 0.4894626 0.5245917 +0.45727 0.4894626 0.5245917 +0.4662797 0.4894626 0.5245917 +0.4745834 0.4894626 0.5245917 +0.4822838 0.4894626 0.5245917 +0.4894626 0.4894626 0.5245917 +0.4961862 0.4894626 0.5245917 +0.5025087 0.4894626 0.5245917 +0.5084753 0.4894626 0.5245917 +0.514124 0.4894626 0.5245917 +0.519487 0.4894626 0.5245917 +0.5245917 0.4894626 0.5245917 +0.529462 0.4894626 0.5245917 +0.5341183 0.4894626 0.5245917 +0.5385787 0.4894626 0.5245917 +0.5428591 0.4894626 0.5245917 +0.5469733 0.4894626 0.5245917 +0.5509339 0.4894626 0.5245917 +0.5547519 0.4894626 0.5245917 +0.5584371 0.4894626 0.5245917 +0.5619986 0.4894626 0.5245917 +0.5654443 0.4894626 0.5245917 +0.5687816 0.4894626 0.5245917 +0.092819 0.4961862 0.5245917 +0.2262531 0.4961862 0.5245917 +0.2875993 0.4961862 0.5245917 +0.3262122 0.4961862 0.5245917 +0.3544566 0.4961862 0.5245917 +0.3767383 0.4961862 0.5245917 +0.3951413 0.4961862 0.5245917 +0.4108177 0.4961862 0.5245917 +0.4244723 0.4961862 0.5245917 +0.4365675 0.4961862 0.5245917 +0.4474232 0.4961862 0.5245917 +0.45727 0.4961862 0.5245917 +0.4662797 0.4961862 0.5245917 +0.4745834 0.4961862 0.5245917 +0.4822838 0.4961862 0.5245917 +0.4894626 0.4961862 0.5245917 +0.4961862 0.4961862 0.5245917 +0.5025087 0.4961862 0.5245917 +0.5084753 0.4961862 0.5245917 +0.514124 0.4961862 0.5245917 +0.519487 0.4961862 0.5245917 +0.5245917 0.4961862 0.5245917 +0.529462 0.4961862 0.5245917 +0.5341183 0.4961862 0.5245917 +0.5385787 0.4961862 0.5245917 +0.5428591 0.4961862 0.5245917 +0.5469733 0.4961862 0.5245917 +0.5509339 0.4961862 0.5245917 +0.5547519 0.4961862 0.5245917 +0.5584371 0.4961862 0.5245917 +0.5619986 0.4961862 0.5245917 +0.5654443 0.4961862 0.5245917 +0.5687816 0.4961862 0.5245917 +0.092819 0.5025087 0.5245917 +0.2262531 0.5025087 0.5245917 +0.2875993 0.5025087 0.5245917 +0.3262122 0.5025087 0.5245917 +0.3544566 0.5025087 0.5245917 +0.3767383 0.5025087 0.5245917 +0.3951413 0.5025087 0.5245917 +0.4108177 0.5025087 0.5245917 +0.4244723 0.5025087 0.5245917 +0.4365675 0.5025087 0.5245917 +0.4474232 0.5025087 0.5245917 +0.45727 0.5025087 0.5245917 +0.4662797 0.5025087 0.5245917 +0.4745834 0.5025087 0.5245917 +0.4822838 0.5025087 0.5245917 +0.4894626 0.5025087 0.5245917 +0.4961862 0.5025087 0.5245917 +0.5025087 0.5025087 0.5245917 +0.5084753 0.5025087 0.5245917 +0.514124 0.5025087 0.5245917 +0.519487 0.5025087 0.5245917 +0.5245917 0.5025087 0.5245917 +0.529462 0.5025087 0.5245917 +0.5341183 0.5025087 0.5245917 +0.5385787 0.5025087 0.5245917 +0.5428591 0.5025087 0.5245917 +0.5469733 0.5025087 0.5245917 +0.5509339 0.5025087 0.5245917 +0.5547519 0.5025087 0.5245917 +0.5584371 0.5025087 0.5245917 +0.5619986 0.5025087 0.5245917 +0.5654443 0.5025087 0.5245917 +0.5687816 0.5025087 0.5245917 +0.092819 0.5084753 0.5245917 +0.2262531 0.5084753 0.5245917 +0.2875993 0.5084753 0.5245917 +0.3262122 0.5084753 0.5245917 +0.3544566 0.5084753 0.5245917 +0.3767383 0.5084753 0.5245917 +0.3951413 0.5084753 0.5245917 +0.4108177 0.5084753 0.5245917 +0.4244723 0.5084753 0.5245917 +0.4365675 0.5084753 0.5245917 +0.4474232 0.5084753 0.5245917 +0.45727 0.5084753 0.5245917 +0.4662797 0.5084753 0.5245917 +0.4745834 0.5084753 0.5245917 +0.4822838 0.5084753 0.5245917 +0.4894626 0.5084753 0.5245917 +0.4961862 0.5084753 0.5245917 +0.5025087 0.5084753 0.5245917 +0.5084753 0.5084753 0.5245917 +0.514124 0.5084753 0.5245917 +0.519487 0.5084753 0.5245917 +0.5245917 0.5084753 0.5245917 +0.529462 0.5084753 0.5245917 +0.5341183 0.5084753 0.5245917 +0.5385787 0.5084753 0.5245917 +0.5428591 0.5084753 0.5245917 +0.5469733 0.5084753 0.5245917 +0.5509339 0.5084753 0.5245917 +0.5547519 0.5084753 0.5245917 +0.5584371 0.5084753 0.5245917 +0.5619986 0.5084753 0.5245917 +0.5654443 0.5084753 0.5245917 +0.5687816 0.5084753 0.5245917 +0.092819 0.514124 0.5245917 +0.2262531 0.514124 0.5245917 +0.2875993 0.514124 0.5245917 +0.3262122 0.514124 0.5245917 +0.3544566 0.514124 0.5245917 +0.3767383 0.514124 0.5245917 +0.3951413 0.514124 0.5245917 +0.4108177 0.514124 0.5245917 +0.4244723 0.514124 0.5245917 +0.4365675 0.514124 0.5245917 +0.4474232 0.514124 0.5245917 +0.45727 0.514124 0.5245917 +0.4662797 0.514124 0.5245917 +0.4745834 0.514124 0.5245917 +0.4822838 0.514124 0.5245917 +0.4894626 0.514124 0.5245917 +0.4961862 0.514124 0.5245917 +0.5025087 0.514124 0.5245917 +0.5084753 0.514124 0.5245917 +0.514124 0.514124 0.5245917 +0.519487 0.514124 0.5245917 +0.5245917 0.514124 0.5245917 +0.529462 0.514124 0.5245917 +0.5341183 0.514124 0.5245917 +0.5385787 0.514124 0.5245917 +0.5428591 0.514124 0.5245917 +0.5469733 0.514124 0.5245917 +0.5509339 0.514124 0.5245917 +0.5547519 0.514124 0.5245917 +0.5584371 0.514124 0.5245917 +0.5619986 0.514124 0.5245917 +0.5654443 0.514124 0.5245917 +0.5687816 0.514124 0.5245917 +0.092819 0.519487 0.5245917 +0.2262531 0.519487 0.5245917 +0.2875993 0.519487 0.5245917 +0.3262122 0.519487 0.5245917 +0.3544566 0.519487 0.5245917 +0.3767383 0.519487 0.5245917 +0.3951413 0.519487 0.5245917 +0.4108177 0.519487 0.5245917 +0.4244723 0.519487 0.5245917 +0.4365675 0.519487 0.5245917 +0.4474232 0.519487 0.5245917 +0.45727 0.519487 0.5245917 +0.4662797 0.519487 0.5245917 +0.4745834 0.519487 0.5245917 +0.4822838 0.519487 0.5245917 +0.4894626 0.519487 0.5245917 +0.4961862 0.519487 0.5245917 +0.5025087 0.519487 0.5245917 +0.5084753 0.519487 0.5245917 +0.514124 0.519487 0.5245917 +0.519487 0.519487 0.5245917 +0.5245917 0.519487 0.5245917 +0.529462 0.519487 0.5245917 +0.5341183 0.519487 0.5245917 +0.5385787 0.519487 0.5245917 +0.5428591 0.519487 0.5245917 +0.5469733 0.519487 0.5245917 +0.5509339 0.519487 0.5245917 +0.5547519 0.519487 0.5245917 +0.5584371 0.519487 0.5245917 +0.5619986 0.519487 0.5245917 +0.5654443 0.519487 0.5245917 +0.5687816 0.519487 0.5245917 +0.092819 0.5245917 0.5245917 +0.2262531 0.5245917 0.5245917 +0.2875993 0.5245917 0.5245917 +0.3262122 0.5245917 0.5245917 +0.3544566 0.5245917 0.5245917 +0.3767383 0.5245917 0.5245917 +0.3951413 0.5245917 0.5245917 +0.4108177 0.5245917 0.5245917 +0.4244723 0.5245917 0.5245917 +0.4365675 0.5245917 0.5245917 +0.4474232 0.5245917 0.5245917 +0.45727 0.5245917 0.5245917 +0.4662797 0.5245917 0.5245917 +0.4745834 0.5245917 0.5245917 +0.4822838 0.5245917 0.5245917 +0.4894626 0.5245917 0.5245917 +0.4961862 0.5245917 0.5245917 +0.5025087 0.5245917 0.5245917 +0.5084753 0.5245917 0.5245917 +0.514124 0.5245917 0.5245917 +0.519487 0.5245917 0.5245917 +0.5245917 0.5245917 0.5245917 +0.529462 0.5245917 0.5245917 +0.5341183 0.5245917 0.5245917 +0.5385787 0.5245917 0.5245917 +0.5428591 0.5245917 0.5245917 +0.5469733 0.5245917 0.5245917 +0.5509339 0.5245917 0.5245917 +0.5547519 0.5245917 0.5245917 +0.5584371 0.5245917 0.5245917 +0.5619986 0.5245917 0.5245917 +0.5654443 0.5245917 0.5245917 +0.5687816 0.5245917 0.5245917 +0.092819 0.529462 0.5245917 +0.2262531 0.529462 0.5245917 +0.2875993 0.529462 0.5245917 +0.3262122 0.529462 0.5245917 +0.3544566 0.529462 0.5245917 +0.3767383 0.529462 0.5245917 +0.3951413 0.529462 0.5245917 +0.4108177 0.529462 0.5245917 +0.4244723 0.529462 0.5245917 +0.4365675 0.529462 0.5245917 +0.4474232 0.529462 0.5245917 +0.45727 0.529462 0.5245917 +0.4662797 0.529462 0.5245917 +0.4745834 0.529462 0.5245917 +0.4822838 0.529462 0.5245917 +0.4894626 0.529462 0.5245917 +0.4961862 0.529462 0.5245917 +0.5025087 0.529462 0.5245917 +0.5084753 0.529462 0.5245917 +0.514124 0.529462 0.5245917 +0.519487 0.529462 0.5245917 +0.5245917 0.529462 0.5245917 +0.529462 0.529462 0.5245917 +0.5341183 0.529462 0.5245917 +0.5385787 0.529462 0.5245917 +0.5428591 0.529462 0.5245917 +0.5469733 0.529462 0.5245917 +0.5509339 0.529462 0.5245917 +0.5547519 0.529462 0.5245917 +0.5584371 0.529462 0.5245917 +0.5619986 0.529462 0.5245917 +0.5654443 0.529462 0.5245917 +0.5687816 0.529462 0.5245917 +0.092819 0.5341183 0.5245917 +0.2262531 0.5341183 0.5245917 +0.2875993 0.5341183 0.5245917 +0.3262122 0.5341183 0.5245917 +0.3544566 0.5341183 0.5245917 +0.3767383 0.5341183 0.5245917 +0.3951413 0.5341183 0.5245917 +0.4108177 0.5341183 0.5245917 +0.4244723 0.5341183 0.5245917 +0.4365675 0.5341183 0.5245917 +0.4474232 0.5341183 0.5245917 +0.45727 0.5341183 0.5245917 +0.4662797 0.5341183 0.5245917 +0.4745834 0.5341183 0.5245917 +0.4822838 0.5341183 0.5245917 +0.4894626 0.5341183 0.5245917 +0.4961862 0.5341183 0.5245917 +0.5025087 0.5341183 0.5245917 +0.5084753 0.5341183 0.5245917 +0.514124 0.5341183 0.5245917 +0.519487 0.5341183 0.5245917 +0.5245917 0.5341183 0.5245917 +0.529462 0.5341183 0.5245917 +0.5341183 0.5341183 0.5245917 +0.5385787 0.5341183 0.5245917 +0.5428591 0.5341183 0.5245917 +0.5469733 0.5341183 0.5245917 +0.5509339 0.5341183 0.5245917 +0.5547519 0.5341183 0.5245917 +0.5584371 0.5341183 0.5245917 +0.5619986 0.5341183 0.5245917 +0.5654443 0.5341183 0.5245917 +0.5687816 0.5341183 0.5245917 +0.092819 0.5385787 0.5245917 +0.2262531 0.5385787 0.5245917 +0.2875993 0.5385787 0.5245917 +0.3262122 0.5385787 0.5245917 +0.3544566 0.5385787 0.5245917 +0.3767383 0.5385787 0.5245917 +0.3951413 0.5385787 0.5245917 +0.4108177 0.5385787 0.5245917 +0.4244723 0.5385787 0.5245917 +0.4365675 0.5385787 0.5245917 +0.4474232 0.5385787 0.5245917 +0.45727 0.5385787 0.5245917 +0.4662797 0.5385787 0.5245917 +0.4745834 0.5385787 0.5245917 +0.4822838 0.5385787 0.5245917 +0.4894626 0.5385787 0.5245917 +0.4961862 0.5385787 0.5245917 +0.5025087 0.5385787 0.5245917 +0.5084753 0.5385787 0.5245917 +0.514124 0.5385787 0.5245917 +0.519487 0.5385787 0.5245917 +0.5245917 0.5385787 0.5245917 +0.529462 0.5385787 0.5245917 +0.5341183 0.5385787 0.5245917 +0.5385787 0.5385787 0.5245917 +0.5428591 0.5385787 0.5245917 +0.5469733 0.5385787 0.5245917 +0.5509339 0.5385787 0.5245917 +0.5547519 0.5385787 0.5245917 +0.5584371 0.5385787 0.5245917 +0.5619986 0.5385787 0.5245917 +0.5654443 0.5385787 0.5245917 +0.5687816 0.5385787 0.5245917 +0.092819 0.5428591 0.5245917 +0.2262531 0.5428591 0.5245917 +0.2875993 0.5428591 0.5245917 +0.3262122 0.5428591 0.5245917 +0.3544566 0.5428591 0.5245917 +0.3767383 0.5428591 0.5245917 +0.3951413 0.5428591 0.5245917 +0.4108177 0.5428591 0.5245917 +0.4244723 0.5428591 0.5245917 +0.4365675 0.5428591 0.5245917 +0.4474232 0.5428591 0.5245917 +0.45727 0.5428591 0.5245917 +0.4662797 0.5428591 0.5245917 +0.4745834 0.5428591 0.5245917 +0.4822838 0.5428591 0.5245917 +0.4894626 0.5428591 0.5245917 +0.4961862 0.5428591 0.5245917 +0.5025087 0.5428591 0.5245917 +0.5084753 0.5428591 0.5245917 +0.514124 0.5428591 0.5245917 +0.519487 0.5428591 0.5245917 +0.5245917 0.5428591 0.5245917 +0.529462 0.5428591 0.5245917 +0.5341183 0.5428591 0.5245917 +0.5385787 0.5428591 0.5245917 +0.5428591 0.5428591 0.5245917 +0.5469733 0.5428591 0.5245917 +0.5509339 0.5428591 0.5245917 +0.5547519 0.5428591 0.5245917 +0.5584371 0.5428591 0.5245917 +0.5619986 0.5428591 0.5245917 +0.5654443 0.5428591 0.5245917 +0.5687816 0.5428591 0.5245917 +0.092819 0.5469733 0.5245917 +0.2262531 0.5469733 0.5245917 +0.2875993 0.5469733 0.5245917 +0.3262122 0.5469733 0.5245917 +0.3544566 0.5469733 0.5245917 +0.3767383 0.5469733 0.5245917 +0.3951413 0.5469733 0.5245917 +0.4108177 0.5469733 0.5245917 +0.4244723 0.5469733 0.5245917 +0.4365675 0.5469733 0.5245917 +0.4474232 0.5469733 0.5245917 +0.45727 0.5469733 0.5245917 +0.4662797 0.5469733 0.5245917 +0.4745834 0.5469733 0.5245917 +0.4822838 0.5469733 0.5245917 +0.4894626 0.5469733 0.5245917 +0.4961862 0.5469733 0.5245917 +0.5025087 0.5469733 0.5245917 +0.5084753 0.5469733 0.5245917 +0.514124 0.5469733 0.5245917 +0.519487 0.5469733 0.5245917 +0.5245917 0.5469733 0.5245917 +0.529462 0.5469733 0.5245917 +0.5341183 0.5469733 0.5245917 +0.5385787 0.5469733 0.5245917 +0.5428591 0.5469733 0.5245917 +0.5469733 0.5469733 0.5245917 +0.5509339 0.5469733 0.5245917 +0.5547519 0.5469733 0.5245917 +0.5584371 0.5469733 0.5245917 +0.5619986 0.5469733 0.5245917 +0.5654443 0.5469733 0.5245917 +0.5687816 0.5469733 0.5245917 +0.092819 0.5509339 0.5245917 +0.2262531 0.5509339 0.5245917 +0.2875993 0.5509339 0.5245917 +0.3262122 0.5509339 0.5245917 +0.3544566 0.5509339 0.5245917 +0.3767383 0.5509339 0.5245917 +0.3951413 0.5509339 0.5245917 +0.4108177 0.5509339 0.5245917 +0.4244723 0.5509339 0.5245917 +0.4365675 0.5509339 0.5245917 +0.4474232 0.5509339 0.5245917 +0.45727 0.5509339 0.5245917 +0.4662797 0.5509339 0.5245917 +0.4745834 0.5509339 0.5245917 +0.4822838 0.5509339 0.5245917 +0.4894626 0.5509339 0.5245917 +0.4961862 0.5509339 0.5245917 +0.5025087 0.5509339 0.5245917 +0.5084753 0.5509339 0.5245917 +0.514124 0.5509339 0.5245917 +0.519487 0.5509339 0.5245917 +0.5245917 0.5509339 0.5245917 +0.529462 0.5509339 0.5245917 +0.5341183 0.5509339 0.5245917 +0.5385787 0.5509339 0.5245917 +0.5428591 0.5509339 0.5245917 +0.5469733 0.5509339 0.5245917 +0.5509339 0.5509339 0.5245917 +0.5547519 0.5509339 0.5245917 +0.5584371 0.5509339 0.5245917 +0.5619986 0.5509339 0.5245917 +0.5654443 0.5509339 0.5245917 +0.5687816 0.5509339 0.5245917 +0.092819 0.5547519 0.5245917 +0.2262531 0.5547519 0.5245917 +0.2875993 0.5547519 0.5245917 +0.3262122 0.5547519 0.5245917 +0.3544566 0.5547519 0.5245917 +0.3767383 0.5547519 0.5245917 +0.3951413 0.5547519 0.5245917 +0.4108177 0.5547519 0.5245917 +0.4244723 0.5547519 0.5245917 +0.4365675 0.5547519 0.5245917 +0.4474232 0.5547519 0.5245917 +0.45727 0.5547519 0.5245917 +0.4662797 0.5547519 0.5245917 +0.4745834 0.5547519 0.5245917 +0.4822838 0.5547519 0.5245917 +0.4894626 0.5547519 0.5245917 +0.4961862 0.5547519 0.5245917 +0.5025087 0.5547519 0.5245917 +0.5084753 0.5547519 0.5245917 +0.514124 0.5547519 0.5245917 +0.519487 0.5547519 0.5245917 +0.5245917 0.5547519 0.5245917 +0.529462 0.5547519 0.5245917 +0.5341183 0.5547519 0.5245917 +0.5385787 0.5547519 0.5245917 +0.5428591 0.5547519 0.5245917 +0.5469733 0.5547519 0.5245917 +0.5509339 0.5547519 0.5245917 +0.5547519 0.5547519 0.5245917 +0.5584371 0.5547519 0.5245917 +0.5619986 0.5547519 0.5245917 +0.5654443 0.5547519 0.5245917 +0.5687816 0.5547519 0.5245917 +0.092819 0.5584371 0.5245917 +0.2262531 0.5584371 0.5245917 +0.2875993 0.5584371 0.5245917 +0.3262122 0.5584371 0.5245917 +0.3544566 0.5584371 0.5245917 +0.3767383 0.5584371 0.5245917 +0.3951413 0.5584371 0.5245917 +0.4108177 0.5584371 0.5245917 +0.4244723 0.5584371 0.5245917 +0.4365675 0.5584371 0.5245917 +0.4474232 0.5584371 0.5245917 +0.45727 0.5584371 0.5245917 +0.4662797 0.5584371 0.5245917 +0.4745834 0.5584371 0.5245917 +0.4822838 0.5584371 0.5245917 +0.4894626 0.5584371 0.5245917 +0.4961862 0.5584371 0.5245917 +0.5025087 0.5584371 0.5245917 +0.5084753 0.5584371 0.5245917 +0.514124 0.5584371 0.5245917 +0.519487 0.5584371 0.5245917 +0.5245917 0.5584371 0.5245917 +0.529462 0.5584371 0.5245917 +0.5341183 0.5584371 0.5245917 +0.5385787 0.5584371 0.5245917 +0.5428591 0.5584371 0.5245917 +0.5469733 0.5584371 0.5245917 +0.5509339 0.5584371 0.5245917 +0.5547519 0.5584371 0.5245917 +0.5584371 0.5584371 0.5245917 +0.5619986 0.5584371 0.5245917 +0.5654443 0.5584371 0.5245917 +0.5687816 0.5584371 0.5245917 +0.092819 0.5619986 0.5245917 +0.2262531 0.5619986 0.5245917 +0.2875993 0.5619986 0.5245917 +0.3262122 0.5619986 0.5245917 +0.3544566 0.5619986 0.5245917 +0.3767383 0.5619986 0.5245917 +0.3951413 0.5619986 0.5245917 +0.4108177 0.5619986 0.5245917 +0.4244723 0.5619986 0.5245917 +0.4365675 0.5619986 0.5245917 +0.4474232 0.5619986 0.5245917 +0.45727 0.5619986 0.5245917 +0.4662797 0.5619986 0.5245917 +0.4745834 0.5619986 0.5245917 +0.4822838 0.5619986 0.5245917 +0.4894626 0.5619986 0.5245917 +0.4961862 0.5619986 0.5245917 +0.5025087 0.5619986 0.5245917 +0.5084753 0.5619986 0.5245917 +0.514124 0.5619986 0.5245917 +0.519487 0.5619986 0.5245917 +0.5245917 0.5619986 0.5245917 +0.529462 0.5619986 0.5245917 +0.5341183 0.5619986 0.5245917 +0.5385787 0.5619986 0.5245917 +0.5428591 0.5619986 0.5245917 +0.5469733 0.5619986 0.5245917 +0.5509339 0.5619986 0.5245917 +0.5547519 0.5619986 0.5245917 +0.5584371 0.5619986 0.5245917 +0.5619986 0.5619986 0.5245917 +0.5654443 0.5619986 0.5245917 +0.5687816 0.5619986 0.5245917 +0.092819 0.5654443 0.5245917 +0.2262531 0.5654443 0.5245917 +0.2875993 0.5654443 0.5245917 +0.3262122 0.5654443 0.5245917 +0.3544566 0.5654443 0.5245917 +0.3767383 0.5654443 0.5245917 +0.3951413 0.5654443 0.5245917 +0.4108177 0.5654443 0.5245917 +0.4244723 0.5654443 0.5245917 +0.4365675 0.5654443 0.5245917 +0.4474232 0.5654443 0.5245917 +0.45727 0.5654443 0.5245917 +0.4662797 0.5654443 0.5245917 +0.4745834 0.5654443 0.5245917 +0.4822838 0.5654443 0.5245917 +0.4894626 0.5654443 0.5245917 +0.4961862 0.5654443 0.5245917 +0.5025087 0.5654443 0.5245917 +0.5084753 0.5654443 0.5245917 +0.514124 0.5654443 0.5245917 +0.519487 0.5654443 0.5245917 +0.5245917 0.5654443 0.5245917 +0.529462 0.5654443 0.5245917 +0.5341183 0.5654443 0.5245917 +0.5385787 0.5654443 0.5245917 +0.5428591 0.5654443 0.5245917 +0.5469733 0.5654443 0.5245917 +0.5509339 0.5654443 0.5245917 +0.5547519 0.5654443 0.5245917 +0.5584371 0.5654443 0.5245917 +0.5619986 0.5654443 0.5245917 +0.5654443 0.5654443 0.5245917 +0.5687816 0.5654443 0.5245917 +0.092819 0.5687816 0.5245917 +0.2262531 0.5687816 0.5245917 +0.2875993 0.5687816 0.5245917 +0.3262122 0.5687816 0.5245917 +0.3544566 0.5687816 0.5245917 +0.3767383 0.5687816 0.5245917 +0.3951413 0.5687816 0.5245917 +0.4108177 0.5687816 0.5245917 +0.4244723 0.5687816 0.5245917 +0.4365675 0.5687816 0.5245917 +0.4474232 0.5687816 0.5245917 +0.45727 0.5687816 0.5245917 +0.4662797 0.5687816 0.5245917 +0.4745834 0.5687816 0.5245917 +0.4822838 0.5687816 0.5245917 +0.4894626 0.5687816 0.5245917 +0.4961862 0.5687816 0.5245917 +0.5025087 0.5687816 0.5245917 +0.5084753 0.5687816 0.5245917 +0.514124 0.5687816 0.5245917 +0.519487 0.5687816 0.5245917 +0.5245917 0.5687816 0.5245917 +0.529462 0.5687816 0.5245917 +0.5341183 0.5687816 0.5245917 +0.5385787 0.5687816 0.5245917 +0.5428591 0.5687816 0.5245917 +0.5469733 0.5687816 0.5245917 +0.5509339 0.5687816 0.5245917 +0.5547519 0.5687816 0.5245917 +0.5584371 0.5687816 0.5245917 +0.5619986 0.5687816 0.5245917 +0.5654443 0.5687816 0.5245917 +0.5687816 0.5687816 0.5245917 +0.092819 0.092819 0.529462 +0.2262531 0.092819 0.529462 +0.2875993 0.092819 0.529462 +0.3262122 0.092819 0.529462 +0.3544566 0.092819 0.529462 +0.3767383 0.092819 0.529462 +0.3951413 0.092819 0.529462 +0.4108177 0.092819 0.529462 +0.4244723 0.092819 0.529462 +0.4365675 0.092819 0.529462 +0.4474232 0.092819 0.529462 +0.45727 0.092819 0.529462 +0.4662797 0.092819 0.529462 +0.4745834 0.092819 0.529462 +0.4822838 0.092819 0.529462 +0.4894626 0.092819 0.529462 +0.4961862 0.092819 0.529462 +0.5025087 0.092819 0.529462 +0.5084753 0.092819 0.529462 +0.514124 0.092819 0.529462 +0.519487 0.092819 0.529462 +0.5245917 0.092819 0.529462 +0.529462 0.092819 0.529462 +0.5341183 0.092819 0.529462 +0.5385787 0.092819 0.529462 +0.5428591 0.092819 0.529462 +0.5469733 0.092819 0.529462 +0.5509339 0.092819 0.529462 +0.5547519 0.092819 0.529462 +0.5584371 0.092819 0.529462 +0.5619986 0.092819 0.529462 +0.5654443 0.092819 0.529462 +0.5687816 0.092819 0.529462 +0.092819 0.2262531 0.529462 +0.2262531 0.2262531 0.529462 +0.2875993 0.2262531 0.529462 +0.3262122 0.2262531 0.529462 +0.3544566 0.2262531 0.529462 +0.3767383 0.2262531 0.529462 +0.3951413 0.2262531 0.529462 +0.4108177 0.2262531 0.529462 +0.4244723 0.2262531 0.529462 +0.4365675 0.2262531 0.529462 +0.4474232 0.2262531 0.529462 +0.45727 0.2262531 0.529462 +0.4662797 0.2262531 0.529462 +0.4745834 0.2262531 0.529462 +0.4822838 0.2262531 0.529462 +0.4894626 0.2262531 0.529462 +0.4961862 0.2262531 0.529462 +0.5025087 0.2262531 0.529462 +0.5084753 0.2262531 0.529462 +0.514124 0.2262531 0.529462 +0.519487 0.2262531 0.529462 +0.5245917 0.2262531 0.529462 +0.529462 0.2262531 0.529462 +0.5341183 0.2262531 0.529462 +0.5385787 0.2262531 0.529462 +0.5428591 0.2262531 0.529462 +0.5469733 0.2262531 0.529462 +0.5509339 0.2262531 0.529462 +0.5547519 0.2262531 0.529462 +0.5584371 0.2262531 0.529462 +0.5619986 0.2262531 0.529462 +0.5654443 0.2262531 0.529462 +0.5687816 0.2262531 0.529462 +0.092819 0.2875993 0.529462 +0.2262531 0.2875993 0.529462 +0.2875993 0.2875993 0.529462 +0.3262122 0.2875993 0.529462 +0.3544566 0.2875993 0.529462 +0.3767383 0.2875993 0.529462 +0.3951413 0.2875993 0.529462 +0.4108177 0.2875993 0.529462 +0.4244723 0.2875993 0.529462 +0.4365675 0.2875993 0.529462 +0.4474232 0.2875993 0.529462 +0.45727 0.2875993 0.529462 +0.4662797 0.2875993 0.529462 +0.4745834 0.2875993 0.529462 +0.4822838 0.2875993 0.529462 +0.4894626 0.2875993 0.529462 +0.4961862 0.2875993 0.529462 +0.5025087 0.2875993 0.529462 +0.5084753 0.2875993 0.529462 +0.514124 0.2875993 0.529462 +0.519487 0.2875993 0.529462 +0.5245917 0.2875993 0.529462 +0.529462 0.2875993 0.529462 +0.5341183 0.2875993 0.529462 +0.5385787 0.2875993 0.529462 +0.5428591 0.2875993 0.529462 +0.5469733 0.2875993 0.529462 +0.5509339 0.2875993 0.529462 +0.5547519 0.2875993 0.529462 +0.5584371 0.2875993 0.529462 +0.5619986 0.2875993 0.529462 +0.5654443 0.2875993 0.529462 +0.5687816 0.2875993 0.529462 +0.092819 0.3262122 0.529462 +0.2262531 0.3262122 0.529462 +0.2875993 0.3262122 0.529462 +0.3262122 0.3262122 0.529462 +0.3544566 0.3262122 0.529462 +0.3767383 0.3262122 0.529462 +0.3951413 0.3262122 0.529462 +0.4108177 0.3262122 0.529462 +0.4244723 0.3262122 0.529462 +0.4365675 0.3262122 0.529462 +0.4474232 0.3262122 0.529462 +0.45727 0.3262122 0.529462 +0.4662797 0.3262122 0.529462 +0.4745834 0.3262122 0.529462 +0.4822838 0.3262122 0.529462 +0.4894626 0.3262122 0.529462 +0.4961862 0.3262122 0.529462 +0.5025087 0.3262122 0.529462 +0.5084753 0.3262122 0.529462 +0.514124 0.3262122 0.529462 +0.519487 0.3262122 0.529462 +0.5245917 0.3262122 0.529462 +0.529462 0.3262122 0.529462 +0.5341183 0.3262122 0.529462 +0.5385787 0.3262122 0.529462 +0.5428591 0.3262122 0.529462 +0.5469733 0.3262122 0.529462 +0.5509339 0.3262122 0.529462 +0.5547519 0.3262122 0.529462 +0.5584371 0.3262122 0.529462 +0.5619986 0.3262122 0.529462 +0.5654443 0.3262122 0.529462 +0.5687816 0.3262122 0.529462 +0.092819 0.3544566 0.529462 +0.2262531 0.3544566 0.529462 +0.2875993 0.3544566 0.529462 +0.3262122 0.3544566 0.529462 +0.3544566 0.3544566 0.529462 +0.3767383 0.3544566 0.529462 +0.3951413 0.3544566 0.529462 +0.4108177 0.3544566 0.529462 +0.4244723 0.3544566 0.529462 +0.4365675 0.3544566 0.529462 +0.4474232 0.3544566 0.529462 +0.45727 0.3544566 0.529462 +0.4662797 0.3544566 0.529462 +0.4745834 0.3544566 0.529462 +0.4822838 0.3544566 0.529462 +0.4894626 0.3544566 0.529462 +0.4961862 0.3544566 0.529462 +0.5025087 0.3544566 0.529462 +0.5084753 0.3544566 0.529462 +0.514124 0.3544566 0.529462 +0.519487 0.3544566 0.529462 +0.5245917 0.3544566 0.529462 +0.529462 0.3544566 0.529462 +0.5341183 0.3544566 0.529462 +0.5385787 0.3544566 0.529462 +0.5428591 0.3544566 0.529462 +0.5469733 0.3544566 0.529462 +0.5509339 0.3544566 0.529462 +0.5547519 0.3544566 0.529462 +0.5584371 0.3544566 0.529462 +0.5619986 0.3544566 0.529462 +0.5654443 0.3544566 0.529462 +0.5687816 0.3544566 0.529462 +0.092819 0.3767383 0.529462 +0.2262531 0.3767383 0.529462 +0.2875993 0.3767383 0.529462 +0.3262122 0.3767383 0.529462 +0.3544566 0.3767383 0.529462 +0.3767383 0.3767383 0.529462 +0.3951413 0.3767383 0.529462 +0.4108177 0.3767383 0.529462 +0.4244723 0.3767383 0.529462 +0.4365675 0.3767383 0.529462 +0.4474232 0.3767383 0.529462 +0.45727 0.3767383 0.529462 +0.4662797 0.3767383 0.529462 +0.4745834 0.3767383 0.529462 +0.4822838 0.3767383 0.529462 +0.4894626 0.3767383 0.529462 +0.4961862 0.3767383 0.529462 +0.5025087 0.3767383 0.529462 +0.5084753 0.3767383 0.529462 +0.514124 0.3767383 0.529462 +0.519487 0.3767383 0.529462 +0.5245917 0.3767383 0.529462 +0.529462 0.3767383 0.529462 +0.5341183 0.3767383 0.529462 +0.5385787 0.3767383 0.529462 +0.5428591 0.3767383 0.529462 +0.5469733 0.3767383 0.529462 +0.5509339 0.3767383 0.529462 +0.5547519 0.3767383 0.529462 +0.5584371 0.3767383 0.529462 +0.5619986 0.3767383 0.529462 +0.5654443 0.3767383 0.529462 +0.5687816 0.3767383 0.529462 +0.092819 0.3951413 0.529462 +0.2262531 0.3951413 0.529462 +0.2875993 0.3951413 0.529462 +0.3262122 0.3951413 0.529462 +0.3544566 0.3951413 0.529462 +0.3767383 0.3951413 0.529462 +0.3951413 0.3951413 0.529462 +0.4108177 0.3951413 0.529462 +0.4244723 0.3951413 0.529462 +0.4365675 0.3951413 0.529462 +0.4474232 0.3951413 0.529462 +0.45727 0.3951413 0.529462 +0.4662797 0.3951413 0.529462 +0.4745834 0.3951413 0.529462 +0.4822838 0.3951413 0.529462 +0.4894626 0.3951413 0.529462 +0.4961862 0.3951413 0.529462 +0.5025087 0.3951413 0.529462 +0.5084753 0.3951413 0.529462 +0.514124 0.3951413 0.529462 +0.519487 0.3951413 0.529462 +0.5245917 0.3951413 0.529462 +0.529462 0.3951413 0.529462 +0.5341183 0.3951413 0.529462 +0.5385787 0.3951413 0.529462 +0.5428591 0.3951413 0.529462 +0.5469733 0.3951413 0.529462 +0.5509339 0.3951413 0.529462 +0.5547519 0.3951413 0.529462 +0.5584371 0.3951413 0.529462 +0.5619986 0.3951413 0.529462 +0.5654443 0.3951413 0.529462 +0.5687816 0.3951413 0.529462 +0.092819 0.4108177 0.529462 +0.2262531 0.4108177 0.529462 +0.2875993 0.4108177 0.529462 +0.3262122 0.4108177 0.529462 +0.3544566 0.4108177 0.529462 +0.3767383 0.4108177 0.529462 +0.3951413 0.4108177 0.529462 +0.4108177 0.4108177 0.529462 +0.4244723 0.4108177 0.529462 +0.4365675 0.4108177 0.529462 +0.4474232 0.4108177 0.529462 +0.45727 0.4108177 0.529462 +0.4662797 0.4108177 0.529462 +0.4745834 0.4108177 0.529462 +0.4822838 0.4108177 0.529462 +0.4894626 0.4108177 0.529462 +0.4961862 0.4108177 0.529462 +0.5025087 0.4108177 0.529462 +0.5084753 0.4108177 0.529462 +0.514124 0.4108177 0.529462 +0.519487 0.4108177 0.529462 +0.5245917 0.4108177 0.529462 +0.529462 0.4108177 0.529462 +0.5341183 0.4108177 0.529462 +0.5385787 0.4108177 0.529462 +0.5428591 0.4108177 0.529462 +0.5469733 0.4108177 0.529462 +0.5509339 0.4108177 0.529462 +0.5547519 0.4108177 0.529462 +0.5584371 0.4108177 0.529462 +0.5619986 0.4108177 0.529462 +0.5654443 0.4108177 0.529462 +0.5687816 0.4108177 0.529462 +0.092819 0.4244723 0.529462 +0.2262531 0.4244723 0.529462 +0.2875993 0.4244723 0.529462 +0.3262122 0.4244723 0.529462 +0.3544566 0.4244723 0.529462 +0.3767383 0.4244723 0.529462 +0.3951413 0.4244723 0.529462 +0.4108177 0.4244723 0.529462 +0.4244723 0.4244723 0.529462 +0.4365675 0.4244723 0.529462 +0.4474232 0.4244723 0.529462 +0.45727 0.4244723 0.529462 +0.4662797 0.4244723 0.529462 +0.4745834 0.4244723 0.529462 +0.4822838 0.4244723 0.529462 +0.4894626 0.4244723 0.529462 +0.4961862 0.4244723 0.529462 +0.5025087 0.4244723 0.529462 +0.5084753 0.4244723 0.529462 +0.514124 0.4244723 0.529462 +0.519487 0.4244723 0.529462 +0.5245917 0.4244723 0.529462 +0.529462 0.4244723 0.529462 +0.5341183 0.4244723 0.529462 +0.5385787 0.4244723 0.529462 +0.5428591 0.4244723 0.529462 +0.5469733 0.4244723 0.529462 +0.5509339 0.4244723 0.529462 +0.5547519 0.4244723 0.529462 +0.5584371 0.4244723 0.529462 +0.5619986 0.4244723 0.529462 +0.5654443 0.4244723 0.529462 +0.5687816 0.4244723 0.529462 +0.092819 0.4365675 0.529462 +0.2262531 0.4365675 0.529462 +0.2875993 0.4365675 0.529462 +0.3262122 0.4365675 0.529462 +0.3544566 0.4365675 0.529462 +0.3767383 0.4365675 0.529462 +0.3951413 0.4365675 0.529462 +0.4108177 0.4365675 0.529462 +0.4244723 0.4365675 0.529462 +0.4365675 0.4365675 0.529462 +0.4474232 0.4365675 0.529462 +0.45727 0.4365675 0.529462 +0.4662797 0.4365675 0.529462 +0.4745834 0.4365675 0.529462 +0.4822838 0.4365675 0.529462 +0.4894626 0.4365675 0.529462 +0.4961862 0.4365675 0.529462 +0.5025087 0.4365675 0.529462 +0.5084753 0.4365675 0.529462 +0.514124 0.4365675 0.529462 +0.519487 0.4365675 0.529462 +0.5245917 0.4365675 0.529462 +0.529462 0.4365675 0.529462 +0.5341183 0.4365675 0.529462 +0.5385787 0.4365675 0.529462 +0.5428591 0.4365675 0.529462 +0.5469733 0.4365675 0.529462 +0.5509339 0.4365675 0.529462 +0.5547519 0.4365675 0.529462 +0.5584371 0.4365675 0.529462 +0.5619986 0.4365675 0.529462 +0.5654443 0.4365675 0.529462 +0.5687816 0.4365675 0.529462 +0.092819 0.4474232 0.529462 +0.2262531 0.4474232 0.529462 +0.2875993 0.4474232 0.529462 +0.3262122 0.4474232 0.529462 +0.3544566 0.4474232 0.529462 +0.3767383 0.4474232 0.529462 +0.3951413 0.4474232 0.529462 +0.4108177 0.4474232 0.529462 +0.4244723 0.4474232 0.529462 +0.4365675 0.4474232 0.529462 +0.4474232 0.4474232 0.529462 +0.45727 0.4474232 0.529462 +0.4662797 0.4474232 0.529462 +0.4745834 0.4474232 0.529462 +0.4822838 0.4474232 0.529462 +0.4894626 0.4474232 0.529462 +0.4961862 0.4474232 0.529462 +0.5025087 0.4474232 0.529462 +0.5084753 0.4474232 0.529462 +0.514124 0.4474232 0.529462 +0.519487 0.4474232 0.529462 +0.5245917 0.4474232 0.529462 +0.529462 0.4474232 0.529462 +0.5341183 0.4474232 0.529462 +0.5385787 0.4474232 0.529462 +0.5428591 0.4474232 0.529462 +0.5469733 0.4474232 0.529462 +0.5509339 0.4474232 0.529462 +0.5547519 0.4474232 0.529462 +0.5584371 0.4474232 0.529462 +0.5619986 0.4474232 0.529462 +0.5654443 0.4474232 0.529462 +0.5687816 0.4474232 0.529462 +0.092819 0.45727 0.529462 +0.2262531 0.45727 0.529462 +0.2875993 0.45727 0.529462 +0.3262122 0.45727 0.529462 +0.3544566 0.45727 0.529462 +0.3767383 0.45727 0.529462 +0.3951413 0.45727 0.529462 +0.4108177 0.45727 0.529462 +0.4244723 0.45727 0.529462 +0.4365675 0.45727 0.529462 +0.4474232 0.45727 0.529462 +0.45727 0.45727 0.529462 +0.4662797 0.45727 0.529462 +0.4745834 0.45727 0.529462 +0.4822838 0.45727 0.529462 +0.4894626 0.45727 0.529462 +0.4961862 0.45727 0.529462 +0.5025087 0.45727 0.529462 +0.5084753 0.45727 0.529462 +0.514124 0.45727 0.529462 +0.519487 0.45727 0.529462 +0.5245917 0.45727 0.529462 +0.529462 0.45727 0.529462 +0.5341183 0.45727 0.529462 +0.5385787 0.45727 0.529462 +0.5428591 0.45727 0.529462 +0.5469733 0.45727 0.529462 +0.5509339 0.45727 0.529462 +0.5547519 0.45727 0.529462 +0.5584371 0.45727 0.529462 +0.5619986 0.45727 0.529462 +0.5654443 0.45727 0.529462 +0.5687816 0.45727 0.529462 +0.092819 0.4662797 0.529462 +0.2262531 0.4662797 0.529462 +0.2875993 0.4662797 0.529462 +0.3262122 0.4662797 0.529462 +0.3544566 0.4662797 0.529462 +0.3767383 0.4662797 0.529462 +0.3951413 0.4662797 0.529462 +0.4108177 0.4662797 0.529462 +0.4244723 0.4662797 0.529462 +0.4365675 0.4662797 0.529462 +0.4474232 0.4662797 0.529462 +0.45727 0.4662797 0.529462 +0.4662797 0.4662797 0.529462 +0.4745834 0.4662797 0.529462 +0.4822838 0.4662797 0.529462 +0.4894626 0.4662797 0.529462 +0.4961862 0.4662797 0.529462 +0.5025087 0.4662797 0.529462 +0.5084753 0.4662797 0.529462 +0.514124 0.4662797 0.529462 +0.519487 0.4662797 0.529462 +0.5245917 0.4662797 0.529462 +0.529462 0.4662797 0.529462 +0.5341183 0.4662797 0.529462 +0.5385787 0.4662797 0.529462 +0.5428591 0.4662797 0.529462 +0.5469733 0.4662797 0.529462 +0.5509339 0.4662797 0.529462 +0.5547519 0.4662797 0.529462 +0.5584371 0.4662797 0.529462 +0.5619986 0.4662797 0.529462 +0.5654443 0.4662797 0.529462 +0.5687816 0.4662797 0.529462 +0.092819 0.4745834 0.529462 +0.2262531 0.4745834 0.529462 +0.2875993 0.4745834 0.529462 +0.3262122 0.4745834 0.529462 +0.3544566 0.4745834 0.529462 +0.3767383 0.4745834 0.529462 +0.3951413 0.4745834 0.529462 +0.4108177 0.4745834 0.529462 +0.4244723 0.4745834 0.529462 +0.4365675 0.4745834 0.529462 +0.4474232 0.4745834 0.529462 +0.45727 0.4745834 0.529462 +0.4662797 0.4745834 0.529462 +0.4745834 0.4745834 0.529462 +0.4822838 0.4745834 0.529462 +0.4894626 0.4745834 0.529462 +0.4961862 0.4745834 0.529462 +0.5025087 0.4745834 0.529462 +0.5084753 0.4745834 0.529462 +0.514124 0.4745834 0.529462 +0.519487 0.4745834 0.529462 +0.5245917 0.4745834 0.529462 +0.529462 0.4745834 0.529462 +0.5341183 0.4745834 0.529462 +0.5385787 0.4745834 0.529462 +0.5428591 0.4745834 0.529462 +0.5469733 0.4745834 0.529462 +0.5509339 0.4745834 0.529462 +0.5547519 0.4745834 0.529462 +0.5584371 0.4745834 0.529462 +0.5619986 0.4745834 0.529462 +0.5654443 0.4745834 0.529462 +0.5687816 0.4745834 0.529462 +0.092819 0.4822838 0.529462 +0.2262531 0.4822838 0.529462 +0.2875993 0.4822838 0.529462 +0.3262122 0.4822838 0.529462 +0.3544566 0.4822838 0.529462 +0.3767383 0.4822838 0.529462 +0.3951413 0.4822838 0.529462 +0.4108177 0.4822838 0.529462 +0.4244723 0.4822838 0.529462 +0.4365675 0.4822838 0.529462 +0.4474232 0.4822838 0.529462 +0.45727 0.4822838 0.529462 +0.4662797 0.4822838 0.529462 +0.4745834 0.4822838 0.529462 +0.4822838 0.4822838 0.529462 +0.4894626 0.4822838 0.529462 +0.4961862 0.4822838 0.529462 +0.5025087 0.4822838 0.529462 +0.5084753 0.4822838 0.529462 +0.514124 0.4822838 0.529462 +0.519487 0.4822838 0.529462 +0.5245917 0.4822838 0.529462 +0.529462 0.4822838 0.529462 +0.5341183 0.4822838 0.529462 +0.5385787 0.4822838 0.529462 +0.5428591 0.4822838 0.529462 +0.5469733 0.4822838 0.529462 +0.5509339 0.4822838 0.529462 +0.5547519 0.4822838 0.529462 +0.5584371 0.4822838 0.529462 +0.5619986 0.4822838 0.529462 +0.5654443 0.4822838 0.529462 +0.5687816 0.4822838 0.529462 +0.092819 0.4894626 0.529462 +0.2262531 0.4894626 0.529462 +0.2875993 0.4894626 0.529462 +0.3262122 0.4894626 0.529462 +0.3544566 0.4894626 0.529462 +0.3767383 0.4894626 0.529462 +0.3951413 0.4894626 0.529462 +0.4108177 0.4894626 0.529462 +0.4244723 0.4894626 0.529462 +0.4365675 0.4894626 0.529462 +0.4474232 0.4894626 0.529462 +0.45727 0.4894626 0.529462 +0.4662797 0.4894626 0.529462 +0.4745834 0.4894626 0.529462 +0.4822838 0.4894626 0.529462 +0.4894626 0.4894626 0.529462 +0.4961862 0.4894626 0.529462 +0.5025087 0.4894626 0.529462 +0.5084753 0.4894626 0.529462 +0.514124 0.4894626 0.529462 +0.519487 0.4894626 0.529462 +0.5245917 0.4894626 0.529462 +0.529462 0.4894626 0.529462 +0.5341183 0.4894626 0.529462 +0.5385787 0.4894626 0.529462 +0.5428591 0.4894626 0.529462 +0.5469733 0.4894626 0.529462 +0.5509339 0.4894626 0.529462 +0.5547519 0.4894626 0.529462 +0.5584371 0.4894626 0.529462 +0.5619986 0.4894626 0.529462 +0.5654443 0.4894626 0.529462 +0.5687816 0.4894626 0.529462 +0.092819 0.4961862 0.529462 +0.2262531 0.4961862 0.529462 +0.2875993 0.4961862 0.529462 +0.3262122 0.4961862 0.529462 +0.3544566 0.4961862 0.529462 +0.3767383 0.4961862 0.529462 +0.3951413 0.4961862 0.529462 +0.4108177 0.4961862 0.529462 +0.4244723 0.4961862 0.529462 +0.4365675 0.4961862 0.529462 +0.4474232 0.4961862 0.529462 +0.45727 0.4961862 0.529462 +0.4662797 0.4961862 0.529462 +0.4745834 0.4961862 0.529462 +0.4822838 0.4961862 0.529462 +0.4894626 0.4961862 0.529462 +0.4961862 0.4961862 0.529462 +0.5025087 0.4961862 0.529462 +0.5084753 0.4961862 0.529462 +0.514124 0.4961862 0.529462 +0.519487 0.4961862 0.529462 +0.5245917 0.4961862 0.529462 +0.529462 0.4961862 0.529462 +0.5341183 0.4961862 0.529462 +0.5385787 0.4961862 0.529462 +0.5428591 0.4961862 0.529462 +0.5469733 0.4961862 0.529462 +0.5509339 0.4961862 0.529462 +0.5547519 0.4961862 0.529462 +0.5584371 0.4961862 0.529462 +0.5619986 0.4961862 0.529462 +0.5654443 0.4961862 0.529462 +0.5687816 0.4961862 0.529462 +0.092819 0.5025087 0.529462 +0.2262531 0.5025087 0.529462 +0.2875993 0.5025087 0.529462 +0.3262122 0.5025087 0.529462 +0.3544566 0.5025087 0.529462 +0.3767383 0.5025087 0.529462 +0.3951413 0.5025087 0.529462 +0.4108177 0.5025087 0.529462 +0.4244723 0.5025087 0.529462 +0.4365675 0.5025087 0.529462 +0.4474232 0.5025087 0.529462 +0.45727 0.5025087 0.529462 +0.4662797 0.5025087 0.529462 +0.4745834 0.5025087 0.529462 +0.4822838 0.5025087 0.529462 +0.4894626 0.5025087 0.529462 +0.4961862 0.5025087 0.529462 +0.5025087 0.5025087 0.529462 +0.5084753 0.5025087 0.529462 +0.514124 0.5025087 0.529462 +0.519487 0.5025087 0.529462 +0.5245917 0.5025087 0.529462 +0.529462 0.5025087 0.529462 +0.5341183 0.5025087 0.529462 +0.5385787 0.5025087 0.529462 +0.5428591 0.5025087 0.529462 +0.5469733 0.5025087 0.529462 +0.5509339 0.5025087 0.529462 +0.5547519 0.5025087 0.529462 +0.5584371 0.5025087 0.529462 +0.5619986 0.5025087 0.529462 +0.5654443 0.5025087 0.529462 +0.5687816 0.5025087 0.529462 +0.092819 0.5084753 0.529462 +0.2262531 0.5084753 0.529462 +0.2875993 0.5084753 0.529462 +0.3262122 0.5084753 0.529462 +0.3544566 0.5084753 0.529462 +0.3767383 0.5084753 0.529462 +0.3951413 0.5084753 0.529462 +0.4108177 0.5084753 0.529462 +0.4244723 0.5084753 0.529462 +0.4365675 0.5084753 0.529462 +0.4474232 0.5084753 0.529462 +0.45727 0.5084753 0.529462 +0.4662797 0.5084753 0.529462 +0.4745834 0.5084753 0.529462 +0.4822838 0.5084753 0.529462 +0.4894626 0.5084753 0.529462 +0.4961862 0.5084753 0.529462 +0.5025087 0.5084753 0.529462 +0.5084753 0.5084753 0.529462 +0.514124 0.5084753 0.529462 +0.519487 0.5084753 0.529462 +0.5245917 0.5084753 0.529462 +0.529462 0.5084753 0.529462 +0.5341183 0.5084753 0.529462 +0.5385787 0.5084753 0.529462 +0.5428591 0.5084753 0.529462 +0.5469733 0.5084753 0.529462 +0.5509339 0.5084753 0.529462 +0.5547519 0.5084753 0.529462 +0.5584371 0.5084753 0.529462 +0.5619986 0.5084753 0.529462 +0.5654443 0.5084753 0.529462 +0.5687816 0.5084753 0.529462 +0.092819 0.514124 0.529462 +0.2262531 0.514124 0.529462 +0.2875993 0.514124 0.529462 +0.3262122 0.514124 0.529462 +0.3544566 0.514124 0.529462 +0.3767383 0.514124 0.529462 +0.3951413 0.514124 0.529462 +0.4108177 0.514124 0.529462 +0.4244723 0.514124 0.529462 +0.4365675 0.514124 0.529462 +0.4474232 0.514124 0.529462 +0.45727 0.514124 0.529462 +0.4662797 0.514124 0.529462 +0.4745834 0.514124 0.529462 +0.4822838 0.514124 0.529462 +0.4894626 0.514124 0.529462 +0.4961862 0.514124 0.529462 +0.5025087 0.514124 0.529462 +0.5084753 0.514124 0.529462 +0.514124 0.514124 0.529462 +0.519487 0.514124 0.529462 +0.5245917 0.514124 0.529462 +0.529462 0.514124 0.529462 +0.5341183 0.514124 0.529462 +0.5385787 0.514124 0.529462 +0.5428591 0.514124 0.529462 +0.5469733 0.514124 0.529462 +0.5509339 0.514124 0.529462 +0.5547519 0.514124 0.529462 +0.5584371 0.514124 0.529462 +0.5619986 0.514124 0.529462 +0.5654443 0.514124 0.529462 +0.5687816 0.514124 0.529462 +0.092819 0.519487 0.529462 +0.2262531 0.519487 0.529462 +0.2875993 0.519487 0.529462 +0.3262122 0.519487 0.529462 +0.3544566 0.519487 0.529462 +0.3767383 0.519487 0.529462 +0.3951413 0.519487 0.529462 +0.4108177 0.519487 0.529462 +0.4244723 0.519487 0.529462 +0.4365675 0.519487 0.529462 +0.4474232 0.519487 0.529462 +0.45727 0.519487 0.529462 +0.4662797 0.519487 0.529462 +0.4745834 0.519487 0.529462 +0.4822838 0.519487 0.529462 +0.4894626 0.519487 0.529462 +0.4961862 0.519487 0.529462 +0.5025087 0.519487 0.529462 +0.5084753 0.519487 0.529462 +0.514124 0.519487 0.529462 +0.519487 0.519487 0.529462 +0.5245917 0.519487 0.529462 +0.529462 0.519487 0.529462 +0.5341183 0.519487 0.529462 +0.5385787 0.519487 0.529462 +0.5428591 0.519487 0.529462 +0.5469733 0.519487 0.529462 +0.5509339 0.519487 0.529462 +0.5547519 0.519487 0.529462 +0.5584371 0.519487 0.529462 +0.5619986 0.519487 0.529462 +0.5654443 0.519487 0.529462 +0.5687816 0.519487 0.529462 +0.092819 0.5245917 0.529462 +0.2262531 0.5245917 0.529462 +0.2875993 0.5245917 0.529462 +0.3262122 0.5245917 0.529462 +0.3544566 0.5245917 0.529462 +0.3767383 0.5245917 0.529462 +0.3951413 0.5245917 0.529462 +0.4108177 0.5245917 0.529462 +0.4244723 0.5245917 0.529462 +0.4365675 0.5245917 0.529462 +0.4474232 0.5245917 0.529462 +0.45727 0.5245917 0.529462 +0.4662797 0.5245917 0.529462 +0.4745834 0.5245917 0.529462 +0.4822838 0.5245917 0.529462 +0.4894626 0.5245917 0.529462 +0.4961862 0.5245917 0.529462 +0.5025087 0.5245917 0.529462 +0.5084753 0.5245917 0.529462 +0.514124 0.5245917 0.529462 +0.519487 0.5245917 0.529462 +0.5245917 0.5245917 0.529462 +0.529462 0.5245917 0.529462 +0.5341183 0.5245917 0.529462 +0.5385787 0.5245917 0.529462 +0.5428591 0.5245917 0.529462 +0.5469733 0.5245917 0.529462 +0.5509339 0.5245917 0.529462 +0.5547519 0.5245917 0.529462 +0.5584371 0.5245917 0.529462 +0.5619986 0.5245917 0.529462 +0.5654443 0.5245917 0.529462 +0.5687816 0.5245917 0.529462 +0.092819 0.529462 0.529462 +0.2262531 0.529462 0.529462 +0.2875993 0.529462 0.529462 +0.3262122 0.529462 0.529462 +0.3544566 0.529462 0.529462 +0.3767383 0.529462 0.529462 +0.3951413 0.529462 0.529462 +0.4108177 0.529462 0.529462 +0.4244723 0.529462 0.529462 +0.4365675 0.529462 0.529462 +0.4474232 0.529462 0.529462 +0.45727 0.529462 0.529462 +0.4662797 0.529462 0.529462 +0.4745834 0.529462 0.529462 +0.4822838 0.529462 0.529462 +0.4894626 0.529462 0.529462 +0.4961862 0.529462 0.529462 +0.5025087 0.529462 0.529462 +0.5084753 0.529462 0.529462 +0.514124 0.529462 0.529462 +0.519487 0.529462 0.529462 +0.5245917 0.529462 0.529462 +0.529462 0.529462 0.529462 +0.5341183 0.529462 0.529462 +0.5385787 0.529462 0.529462 +0.5428591 0.529462 0.529462 +0.5469733 0.529462 0.529462 +0.5509339 0.529462 0.529462 +0.5547519 0.529462 0.529462 +0.5584371 0.529462 0.529462 +0.5619986 0.529462 0.529462 +0.5654443 0.529462 0.529462 +0.5687816 0.529462 0.529462 +0.092819 0.5341183 0.529462 +0.2262531 0.5341183 0.529462 +0.2875993 0.5341183 0.529462 +0.3262122 0.5341183 0.529462 +0.3544566 0.5341183 0.529462 +0.3767383 0.5341183 0.529462 +0.3951413 0.5341183 0.529462 +0.4108177 0.5341183 0.529462 +0.4244723 0.5341183 0.529462 +0.4365675 0.5341183 0.529462 +0.4474232 0.5341183 0.529462 +0.45727 0.5341183 0.529462 +0.4662797 0.5341183 0.529462 +0.4745834 0.5341183 0.529462 +0.4822838 0.5341183 0.529462 +0.4894626 0.5341183 0.529462 +0.4961862 0.5341183 0.529462 +0.5025087 0.5341183 0.529462 +0.5084753 0.5341183 0.529462 +0.514124 0.5341183 0.529462 +0.519487 0.5341183 0.529462 +0.5245917 0.5341183 0.529462 +0.529462 0.5341183 0.529462 +0.5341183 0.5341183 0.529462 +0.5385787 0.5341183 0.529462 +0.5428591 0.5341183 0.529462 +0.5469733 0.5341183 0.529462 +0.5509339 0.5341183 0.529462 +0.5547519 0.5341183 0.529462 +0.5584371 0.5341183 0.529462 +0.5619986 0.5341183 0.529462 +0.5654443 0.5341183 0.529462 +0.5687816 0.5341183 0.529462 +0.092819 0.5385787 0.529462 +0.2262531 0.5385787 0.529462 +0.2875993 0.5385787 0.529462 +0.3262122 0.5385787 0.529462 +0.3544566 0.5385787 0.529462 +0.3767383 0.5385787 0.529462 +0.3951413 0.5385787 0.529462 +0.4108177 0.5385787 0.529462 +0.4244723 0.5385787 0.529462 +0.4365675 0.5385787 0.529462 +0.4474232 0.5385787 0.529462 +0.45727 0.5385787 0.529462 +0.4662797 0.5385787 0.529462 +0.4745834 0.5385787 0.529462 +0.4822838 0.5385787 0.529462 +0.4894626 0.5385787 0.529462 +0.4961862 0.5385787 0.529462 +0.5025087 0.5385787 0.529462 +0.5084753 0.5385787 0.529462 +0.514124 0.5385787 0.529462 +0.519487 0.5385787 0.529462 +0.5245917 0.5385787 0.529462 +0.529462 0.5385787 0.529462 +0.5341183 0.5385787 0.529462 +0.5385787 0.5385787 0.529462 +0.5428591 0.5385787 0.529462 +0.5469733 0.5385787 0.529462 +0.5509339 0.5385787 0.529462 +0.5547519 0.5385787 0.529462 +0.5584371 0.5385787 0.529462 +0.5619986 0.5385787 0.529462 +0.5654443 0.5385787 0.529462 +0.5687816 0.5385787 0.529462 +0.092819 0.5428591 0.529462 +0.2262531 0.5428591 0.529462 +0.2875993 0.5428591 0.529462 +0.3262122 0.5428591 0.529462 +0.3544566 0.5428591 0.529462 +0.3767383 0.5428591 0.529462 +0.3951413 0.5428591 0.529462 +0.4108177 0.5428591 0.529462 +0.4244723 0.5428591 0.529462 +0.4365675 0.5428591 0.529462 +0.4474232 0.5428591 0.529462 +0.45727 0.5428591 0.529462 +0.4662797 0.5428591 0.529462 +0.4745834 0.5428591 0.529462 +0.4822838 0.5428591 0.529462 +0.4894626 0.5428591 0.529462 +0.4961862 0.5428591 0.529462 +0.5025087 0.5428591 0.529462 +0.5084753 0.5428591 0.529462 +0.514124 0.5428591 0.529462 +0.519487 0.5428591 0.529462 +0.5245917 0.5428591 0.529462 +0.529462 0.5428591 0.529462 +0.5341183 0.5428591 0.529462 +0.5385787 0.5428591 0.529462 +0.5428591 0.5428591 0.529462 +0.5469733 0.5428591 0.529462 +0.5509339 0.5428591 0.529462 +0.5547519 0.5428591 0.529462 +0.5584371 0.5428591 0.529462 +0.5619986 0.5428591 0.529462 +0.5654443 0.5428591 0.529462 +0.5687816 0.5428591 0.529462 +0.092819 0.5469733 0.529462 +0.2262531 0.5469733 0.529462 +0.2875993 0.5469733 0.529462 +0.3262122 0.5469733 0.529462 +0.3544566 0.5469733 0.529462 +0.3767383 0.5469733 0.529462 +0.3951413 0.5469733 0.529462 +0.4108177 0.5469733 0.529462 +0.4244723 0.5469733 0.529462 +0.4365675 0.5469733 0.529462 +0.4474232 0.5469733 0.529462 +0.45727 0.5469733 0.529462 +0.4662797 0.5469733 0.529462 +0.4745834 0.5469733 0.529462 +0.4822838 0.5469733 0.529462 +0.4894626 0.5469733 0.529462 +0.4961862 0.5469733 0.529462 +0.5025087 0.5469733 0.529462 +0.5084753 0.5469733 0.529462 +0.514124 0.5469733 0.529462 +0.519487 0.5469733 0.529462 +0.5245917 0.5469733 0.529462 +0.529462 0.5469733 0.529462 +0.5341183 0.5469733 0.529462 +0.5385787 0.5469733 0.529462 +0.5428591 0.5469733 0.529462 +0.5469733 0.5469733 0.529462 +0.5509339 0.5469733 0.529462 +0.5547519 0.5469733 0.529462 +0.5584371 0.5469733 0.529462 +0.5619986 0.5469733 0.529462 +0.5654443 0.5469733 0.529462 +0.5687816 0.5469733 0.529462 +0.092819 0.5509339 0.529462 +0.2262531 0.5509339 0.529462 +0.2875993 0.5509339 0.529462 +0.3262122 0.5509339 0.529462 +0.3544566 0.5509339 0.529462 +0.3767383 0.5509339 0.529462 +0.3951413 0.5509339 0.529462 +0.4108177 0.5509339 0.529462 +0.4244723 0.5509339 0.529462 +0.4365675 0.5509339 0.529462 +0.4474232 0.5509339 0.529462 +0.45727 0.5509339 0.529462 +0.4662797 0.5509339 0.529462 +0.4745834 0.5509339 0.529462 +0.4822838 0.5509339 0.529462 +0.4894626 0.5509339 0.529462 +0.4961862 0.5509339 0.529462 +0.5025087 0.5509339 0.529462 +0.5084753 0.5509339 0.529462 +0.514124 0.5509339 0.529462 +0.519487 0.5509339 0.529462 +0.5245917 0.5509339 0.529462 +0.529462 0.5509339 0.529462 +0.5341183 0.5509339 0.529462 +0.5385787 0.5509339 0.529462 +0.5428591 0.5509339 0.529462 +0.5469733 0.5509339 0.529462 +0.5509339 0.5509339 0.529462 +0.5547519 0.5509339 0.529462 +0.5584371 0.5509339 0.529462 +0.5619986 0.5509339 0.529462 +0.5654443 0.5509339 0.529462 +0.5687816 0.5509339 0.529462 +0.092819 0.5547519 0.529462 +0.2262531 0.5547519 0.529462 +0.2875993 0.5547519 0.529462 +0.3262122 0.5547519 0.529462 +0.3544566 0.5547519 0.529462 +0.3767383 0.5547519 0.529462 +0.3951413 0.5547519 0.529462 +0.4108177 0.5547519 0.529462 +0.4244723 0.5547519 0.529462 +0.4365675 0.5547519 0.529462 +0.4474232 0.5547519 0.529462 +0.45727 0.5547519 0.529462 +0.4662797 0.5547519 0.529462 +0.4745834 0.5547519 0.529462 +0.4822838 0.5547519 0.529462 +0.4894626 0.5547519 0.529462 +0.4961862 0.5547519 0.529462 +0.5025087 0.5547519 0.529462 +0.5084753 0.5547519 0.529462 +0.514124 0.5547519 0.529462 +0.519487 0.5547519 0.529462 +0.5245917 0.5547519 0.529462 +0.529462 0.5547519 0.529462 +0.5341183 0.5547519 0.529462 +0.5385787 0.5547519 0.529462 +0.5428591 0.5547519 0.529462 +0.5469733 0.5547519 0.529462 +0.5509339 0.5547519 0.529462 +0.5547519 0.5547519 0.529462 +0.5584371 0.5547519 0.529462 +0.5619986 0.5547519 0.529462 +0.5654443 0.5547519 0.529462 +0.5687816 0.5547519 0.529462 +0.092819 0.5584371 0.529462 +0.2262531 0.5584371 0.529462 +0.2875993 0.5584371 0.529462 +0.3262122 0.5584371 0.529462 +0.3544566 0.5584371 0.529462 +0.3767383 0.5584371 0.529462 +0.3951413 0.5584371 0.529462 +0.4108177 0.5584371 0.529462 +0.4244723 0.5584371 0.529462 +0.4365675 0.5584371 0.529462 +0.4474232 0.5584371 0.529462 +0.45727 0.5584371 0.529462 +0.4662797 0.5584371 0.529462 +0.4745834 0.5584371 0.529462 +0.4822838 0.5584371 0.529462 +0.4894626 0.5584371 0.529462 +0.4961862 0.5584371 0.529462 +0.5025087 0.5584371 0.529462 +0.5084753 0.5584371 0.529462 +0.514124 0.5584371 0.529462 +0.519487 0.5584371 0.529462 +0.5245917 0.5584371 0.529462 +0.529462 0.5584371 0.529462 +0.5341183 0.5584371 0.529462 +0.5385787 0.5584371 0.529462 +0.5428591 0.5584371 0.529462 +0.5469733 0.5584371 0.529462 +0.5509339 0.5584371 0.529462 +0.5547519 0.5584371 0.529462 +0.5584371 0.5584371 0.529462 +0.5619986 0.5584371 0.529462 +0.5654443 0.5584371 0.529462 +0.5687816 0.5584371 0.529462 +0.092819 0.5619986 0.529462 +0.2262531 0.5619986 0.529462 +0.2875993 0.5619986 0.529462 +0.3262122 0.5619986 0.529462 +0.3544566 0.5619986 0.529462 +0.3767383 0.5619986 0.529462 +0.3951413 0.5619986 0.529462 +0.4108177 0.5619986 0.529462 +0.4244723 0.5619986 0.529462 +0.4365675 0.5619986 0.529462 +0.4474232 0.5619986 0.529462 +0.45727 0.5619986 0.529462 +0.4662797 0.5619986 0.529462 +0.4745834 0.5619986 0.529462 +0.4822838 0.5619986 0.529462 +0.4894626 0.5619986 0.529462 +0.4961862 0.5619986 0.529462 +0.5025087 0.5619986 0.529462 +0.5084753 0.5619986 0.529462 +0.514124 0.5619986 0.529462 +0.519487 0.5619986 0.529462 +0.5245917 0.5619986 0.529462 +0.529462 0.5619986 0.529462 +0.5341183 0.5619986 0.529462 +0.5385787 0.5619986 0.529462 +0.5428591 0.5619986 0.529462 +0.5469733 0.5619986 0.529462 +0.5509339 0.5619986 0.529462 +0.5547519 0.5619986 0.529462 +0.5584371 0.5619986 0.529462 +0.5619986 0.5619986 0.529462 +0.5654443 0.5619986 0.529462 +0.5687816 0.5619986 0.529462 +0.092819 0.5654443 0.529462 +0.2262531 0.5654443 0.529462 +0.2875993 0.5654443 0.529462 +0.3262122 0.5654443 0.529462 +0.3544566 0.5654443 0.529462 +0.3767383 0.5654443 0.529462 +0.3951413 0.5654443 0.529462 +0.4108177 0.5654443 0.529462 +0.4244723 0.5654443 0.529462 +0.4365675 0.5654443 0.529462 +0.4474232 0.5654443 0.529462 +0.45727 0.5654443 0.529462 +0.4662797 0.5654443 0.529462 +0.4745834 0.5654443 0.529462 +0.4822838 0.5654443 0.529462 +0.4894626 0.5654443 0.529462 +0.4961862 0.5654443 0.529462 +0.5025087 0.5654443 0.529462 +0.5084753 0.5654443 0.529462 +0.514124 0.5654443 0.529462 +0.519487 0.5654443 0.529462 +0.5245917 0.5654443 0.529462 +0.529462 0.5654443 0.529462 +0.5341183 0.5654443 0.529462 +0.5385787 0.5654443 0.529462 +0.5428591 0.5654443 0.529462 +0.5469733 0.5654443 0.529462 +0.5509339 0.5654443 0.529462 +0.5547519 0.5654443 0.529462 +0.5584371 0.5654443 0.529462 +0.5619986 0.5654443 0.529462 +0.5654443 0.5654443 0.529462 +0.5687816 0.5654443 0.529462 +0.092819 0.5687816 0.529462 +0.2262531 0.5687816 0.529462 +0.2875993 0.5687816 0.529462 +0.3262122 0.5687816 0.529462 +0.3544566 0.5687816 0.529462 +0.3767383 0.5687816 0.529462 +0.3951413 0.5687816 0.529462 +0.4108177 0.5687816 0.529462 +0.4244723 0.5687816 0.529462 +0.4365675 0.5687816 0.529462 +0.4474232 0.5687816 0.529462 +0.45727 0.5687816 0.529462 +0.4662797 0.5687816 0.529462 +0.4745834 0.5687816 0.529462 +0.4822838 0.5687816 0.529462 +0.4894626 0.5687816 0.529462 +0.4961862 0.5687816 0.529462 +0.5025087 0.5687816 0.529462 +0.5084753 0.5687816 0.529462 +0.514124 0.5687816 0.529462 +0.519487 0.5687816 0.529462 +0.5245917 0.5687816 0.529462 +0.529462 0.5687816 0.529462 +0.5341183 0.5687816 0.529462 +0.5385787 0.5687816 0.529462 +0.5428591 0.5687816 0.529462 +0.5469733 0.5687816 0.529462 +0.5509339 0.5687816 0.529462 +0.5547519 0.5687816 0.529462 +0.5584371 0.5687816 0.529462 +0.5619986 0.5687816 0.529462 +0.5654443 0.5687816 0.529462 +0.5687816 0.5687816 0.529462 +0.092819 0.092819 0.5341183 +0.2262531 0.092819 0.5341183 +0.2875993 0.092819 0.5341183 +0.3262122 0.092819 0.5341183 +0.3544566 0.092819 0.5341183 +0.3767383 0.092819 0.5341183 +0.3951413 0.092819 0.5341183 +0.4108177 0.092819 0.5341183 +0.4244723 0.092819 0.5341183 +0.4365675 0.092819 0.5341183 +0.4474232 0.092819 0.5341183 +0.45727 0.092819 0.5341183 +0.4662797 0.092819 0.5341183 +0.4745834 0.092819 0.5341183 +0.4822838 0.092819 0.5341183 +0.4894626 0.092819 0.5341183 +0.4961862 0.092819 0.5341183 +0.5025087 0.092819 0.5341183 +0.5084753 0.092819 0.5341183 +0.514124 0.092819 0.5341183 +0.519487 0.092819 0.5341183 +0.5245917 0.092819 0.5341183 +0.529462 0.092819 0.5341183 +0.5341183 0.092819 0.5341183 +0.5385787 0.092819 0.5341183 +0.5428591 0.092819 0.5341183 +0.5469733 0.092819 0.5341183 +0.5509339 0.092819 0.5341183 +0.5547519 0.092819 0.5341183 +0.5584371 0.092819 0.5341183 +0.5619986 0.092819 0.5341183 +0.5654443 0.092819 0.5341183 +0.5687816 0.092819 0.5341183 +0.092819 0.2262531 0.5341183 +0.2262531 0.2262531 0.5341183 +0.2875993 0.2262531 0.5341183 +0.3262122 0.2262531 0.5341183 +0.3544566 0.2262531 0.5341183 +0.3767383 0.2262531 0.5341183 +0.3951413 0.2262531 0.5341183 +0.4108177 0.2262531 0.5341183 +0.4244723 0.2262531 0.5341183 +0.4365675 0.2262531 0.5341183 +0.4474232 0.2262531 0.5341183 +0.45727 0.2262531 0.5341183 +0.4662797 0.2262531 0.5341183 +0.4745834 0.2262531 0.5341183 +0.4822838 0.2262531 0.5341183 +0.4894626 0.2262531 0.5341183 +0.4961862 0.2262531 0.5341183 +0.5025087 0.2262531 0.5341183 +0.5084753 0.2262531 0.5341183 +0.514124 0.2262531 0.5341183 +0.519487 0.2262531 0.5341183 +0.5245917 0.2262531 0.5341183 +0.529462 0.2262531 0.5341183 +0.5341183 0.2262531 0.5341183 +0.5385787 0.2262531 0.5341183 +0.5428591 0.2262531 0.5341183 +0.5469733 0.2262531 0.5341183 +0.5509339 0.2262531 0.5341183 +0.5547519 0.2262531 0.5341183 +0.5584371 0.2262531 0.5341183 +0.5619986 0.2262531 0.5341183 +0.5654443 0.2262531 0.5341183 +0.5687816 0.2262531 0.5341183 +0.092819 0.2875993 0.5341183 +0.2262531 0.2875993 0.5341183 +0.2875993 0.2875993 0.5341183 +0.3262122 0.2875993 0.5341183 +0.3544566 0.2875993 0.5341183 +0.3767383 0.2875993 0.5341183 +0.3951413 0.2875993 0.5341183 +0.4108177 0.2875993 0.5341183 +0.4244723 0.2875993 0.5341183 +0.4365675 0.2875993 0.5341183 +0.4474232 0.2875993 0.5341183 +0.45727 0.2875993 0.5341183 +0.4662797 0.2875993 0.5341183 +0.4745834 0.2875993 0.5341183 +0.4822838 0.2875993 0.5341183 +0.4894626 0.2875993 0.5341183 +0.4961862 0.2875993 0.5341183 +0.5025087 0.2875993 0.5341183 +0.5084753 0.2875993 0.5341183 +0.514124 0.2875993 0.5341183 +0.519487 0.2875993 0.5341183 +0.5245917 0.2875993 0.5341183 +0.529462 0.2875993 0.5341183 +0.5341183 0.2875993 0.5341183 +0.5385787 0.2875993 0.5341183 +0.5428591 0.2875993 0.5341183 +0.5469733 0.2875993 0.5341183 +0.5509339 0.2875993 0.5341183 +0.5547519 0.2875993 0.5341183 +0.5584371 0.2875993 0.5341183 +0.5619986 0.2875993 0.5341183 +0.5654443 0.2875993 0.5341183 +0.5687816 0.2875993 0.5341183 +0.092819 0.3262122 0.5341183 +0.2262531 0.3262122 0.5341183 +0.2875993 0.3262122 0.5341183 +0.3262122 0.3262122 0.5341183 +0.3544566 0.3262122 0.5341183 +0.3767383 0.3262122 0.5341183 +0.3951413 0.3262122 0.5341183 +0.4108177 0.3262122 0.5341183 +0.4244723 0.3262122 0.5341183 +0.4365675 0.3262122 0.5341183 +0.4474232 0.3262122 0.5341183 +0.45727 0.3262122 0.5341183 +0.4662797 0.3262122 0.5341183 +0.4745834 0.3262122 0.5341183 +0.4822838 0.3262122 0.5341183 +0.4894626 0.3262122 0.5341183 +0.4961862 0.3262122 0.5341183 +0.5025087 0.3262122 0.5341183 +0.5084753 0.3262122 0.5341183 +0.514124 0.3262122 0.5341183 +0.519487 0.3262122 0.5341183 +0.5245917 0.3262122 0.5341183 +0.529462 0.3262122 0.5341183 +0.5341183 0.3262122 0.5341183 +0.5385787 0.3262122 0.5341183 +0.5428591 0.3262122 0.5341183 +0.5469733 0.3262122 0.5341183 +0.5509339 0.3262122 0.5341183 +0.5547519 0.3262122 0.5341183 +0.5584371 0.3262122 0.5341183 +0.5619986 0.3262122 0.5341183 +0.5654443 0.3262122 0.5341183 +0.5687816 0.3262122 0.5341183 +0.092819 0.3544566 0.5341183 +0.2262531 0.3544566 0.5341183 +0.2875993 0.3544566 0.5341183 +0.3262122 0.3544566 0.5341183 +0.3544566 0.3544566 0.5341183 +0.3767383 0.3544566 0.5341183 +0.3951413 0.3544566 0.5341183 +0.4108177 0.3544566 0.5341183 +0.4244723 0.3544566 0.5341183 +0.4365675 0.3544566 0.5341183 +0.4474232 0.3544566 0.5341183 +0.45727 0.3544566 0.5341183 +0.4662797 0.3544566 0.5341183 +0.4745834 0.3544566 0.5341183 +0.4822838 0.3544566 0.5341183 +0.4894626 0.3544566 0.5341183 +0.4961862 0.3544566 0.5341183 +0.5025087 0.3544566 0.5341183 +0.5084753 0.3544566 0.5341183 +0.514124 0.3544566 0.5341183 +0.519487 0.3544566 0.5341183 +0.5245917 0.3544566 0.5341183 +0.529462 0.3544566 0.5341183 +0.5341183 0.3544566 0.5341183 +0.5385787 0.3544566 0.5341183 +0.5428591 0.3544566 0.5341183 +0.5469733 0.3544566 0.5341183 +0.5509339 0.3544566 0.5341183 +0.5547519 0.3544566 0.5341183 +0.5584371 0.3544566 0.5341183 +0.5619986 0.3544566 0.5341183 +0.5654443 0.3544566 0.5341183 +0.5687816 0.3544566 0.5341183 +0.092819 0.3767383 0.5341183 +0.2262531 0.3767383 0.5341183 +0.2875993 0.3767383 0.5341183 +0.3262122 0.3767383 0.5341183 +0.3544566 0.3767383 0.5341183 +0.3767383 0.3767383 0.5341183 +0.3951413 0.3767383 0.5341183 +0.4108177 0.3767383 0.5341183 +0.4244723 0.3767383 0.5341183 +0.4365675 0.3767383 0.5341183 +0.4474232 0.3767383 0.5341183 +0.45727 0.3767383 0.5341183 +0.4662797 0.3767383 0.5341183 +0.4745834 0.3767383 0.5341183 +0.4822838 0.3767383 0.5341183 +0.4894626 0.3767383 0.5341183 +0.4961862 0.3767383 0.5341183 +0.5025087 0.3767383 0.5341183 +0.5084753 0.3767383 0.5341183 +0.514124 0.3767383 0.5341183 +0.519487 0.3767383 0.5341183 +0.5245917 0.3767383 0.5341183 +0.529462 0.3767383 0.5341183 +0.5341183 0.3767383 0.5341183 +0.5385787 0.3767383 0.5341183 +0.5428591 0.3767383 0.5341183 +0.5469733 0.3767383 0.5341183 +0.5509339 0.3767383 0.5341183 +0.5547519 0.3767383 0.5341183 +0.5584371 0.3767383 0.5341183 +0.5619986 0.3767383 0.5341183 +0.5654443 0.3767383 0.5341183 +0.5687816 0.3767383 0.5341183 +0.092819 0.3951413 0.5341183 +0.2262531 0.3951413 0.5341183 +0.2875993 0.3951413 0.5341183 +0.3262122 0.3951413 0.5341183 +0.3544566 0.3951413 0.5341183 +0.3767383 0.3951413 0.5341183 +0.3951413 0.3951413 0.5341183 +0.4108177 0.3951413 0.5341183 +0.4244723 0.3951413 0.5341183 +0.4365675 0.3951413 0.5341183 +0.4474232 0.3951413 0.5341183 +0.45727 0.3951413 0.5341183 +0.4662797 0.3951413 0.5341183 +0.4745834 0.3951413 0.5341183 +0.4822838 0.3951413 0.5341183 +0.4894626 0.3951413 0.5341183 +0.4961862 0.3951413 0.5341183 +0.5025087 0.3951413 0.5341183 +0.5084753 0.3951413 0.5341183 +0.514124 0.3951413 0.5341183 +0.519487 0.3951413 0.5341183 +0.5245917 0.3951413 0.5341183 +0.529462 0.3951413 0.5341183 +0.5341183 0.3951413 0.5341183 +0.5385787 0.3951413 0.5341183 +0.5428591 0.3951413 0.5341183 +0.5469733 0.3951413 0.5341183 +0.5509339 0.3951413 0.5341183 +0.5547519 0.3951413 0.5341183 +0.5584371 0.3951413 0.5341183 +0.5619986 0.3951413 0.5341183 +0.5654443 0.3951413 0.5341183 +0.5687816 0.3951413 0.5341183 +0.092819 0.4108177 0.5341183 +0.2262531 0.4108177 0.5341183 +0.2875993 0.4108177 0.5341183 +0.3262122 0.4108177 0.5341183 +0.3544566 0.4108177 0.5341183 +0.3767383 0.4108177 0.5341183 +0.3951413 0.4108177 0.5341183 +0.4108177 0.4108177 0.5341183 +0.4244723 0.4108177 0.5341183 +0.4365675 0.4108177 0.5341183 +0.4474232 0.4108177 0.5341183 +0.45727 0.4108177 0.5341183 +0.4662797 0.4108177 0.5341183 +0.4745834 0.4108177 0.5341183 +0.4822838 0.4108177 0.5341183 +0.4894626 0.4108177 0.5341183 +0.4961862 0.4108177 0.5341183 +0.5025087 0.4108177 0.5341183 +0.5084753 0.4108177 0.5341183 +0.514124 0.4108177 0.5341183 +0.519487 0.4108177 0.5341183 +0.5245917 0.4108177 0.5341183 +0.529462 0.4108177 0.5341183 +0.5341183 0.4108177 0.5341183 +0.5385787 0.4108177 0.5341183 +0.5428591 0.4108177 0.5341183 +0.5469733 0.4108177 0.5341183 +0.5509339 0.4108177 0.5341183 +0.5547519 0.4108177 0.5341183 +0.5584371 0.4108177 0.5341183 +0.5619986 0.4108177 0.5341183 +0.5654443 0.4108177 0.5341183 +0.5687816 0.4108177 0.5341183 +0.092819 0.4244723 0.5341183 +0.2262531 0.4244723 0.5341183 +0.2875993 0.4244723 0.5341183 +0.3262122 0.4244723 0.5341183 +0.3544566 0.4244723 0.5341183 +0.3767383 0.4244723 0.5341183 +0.3951413 0.4244723 0.5341183 +0.4108177 0.4244723 0.5341183 +0.4244723 0.4244723 0.5341183 +0.4365675 0.4244723 0.5341183 +0.4474232 0.4244723 0.5341183 +0.45727 0.4244723 0.5341183 +0.4662797 0.4244723 0.5341183 +0.4745834 0.4244723 0.5341183 +0.4822838 0.4244723 0.5341183 +0.4894626 0.4244723 0.5341183 +0.4961862 0.4244723 0.5341183 +0.5025087 0.4244723 0.5341183 +0.5084753 0.4244723 0.5341183 +0.514124 0.4244723 0.5341183 +0.519487 0.4244723 0.5341183 +0.5245917 0.4244723 0.5341183 +0.529462 0.4244723 0.5341183 +0.5341183 0.4244723 0.5341183 +0.5385787 0.4244723 0.5341183 +0.5428591 0.4244723 0.5341183 +0.5469733 0.4244723 0.5341183 +0.5509339 0.4244723 0.5341183 +0.5547519 0.4244723 0.5341183 +0.5584371 0.4244723 0.5341183 +0.5619986 0.4244723 0.5341183 +0.5654443 0.4244723 0.5341183 +0.5687816 0.4244723 0.5341183 +0.092819 0.4365675 0.5341183 +0.2262531 0.4365675 0.5341183 +0.2875993 0.4365675 0.5341183 +0.3262122 0.4365675 0.5341183 +0.3544566 0.4365675 0.5341183 +0.3767383 0.4365675 0.5341183 +0.3951413 0.4365675 0.5341183 +0.4108177 0.4365675 0.5341183 +0.4244723 0.4365675 0.5341183 +0.4365675 0.4365675 0.5341183 +0.4474232 0.4365675 0.5341183 +0.45727 0.4365675 0.5341183 +0.4662797 0.4365675 0.5341183 +0.4745834 0.4365675 0.5341183 +0.4822838 0.4365675 0.5341183 +0.4894626 0.4365675 0.5341183 +0.4961862 0.4365675 0.5341183 +0.5025087 0.4365675 0.5341183 +0.5084753 0.4365675 0.5341183 +0.514124 0.4365675 0.5341183 +0.519487 0.4365675 0.5341183 +0.5245917 0.4365675 0.5341183 +0.529462 0.4365675 0.5341183 +0.5341183 0.4365675 0.5341183 +0.5385787 0.4365675 0.5341183 +0.5428591 0.4365675 0.5341183 +0.5469733 0.4365675 0.5341183 +0.5509339 0.4365675 0.5341183 +0.5547519 0.4365675 0.5341183 +0.5584371 0.4365675 0.5341183 +0.5619986 0.4365675 0.5341183 +0.5654443 0.4365675 0.5341183 +0.5687816 0.4365675 0.5341183 +0.092819 0.4474232 0.5341183 +0.2262531 0.4474232 0.5341183 +0.2875993 0.4474232 0.5341183 +0.3262122 0.4474232 0.5341183 +0.3544566 0.4474232 0.5341183 +0.3767383 0.4474232 0.5341183 +0.3951413 0.4474232 0.5341183 +0.4108177 0.4474232 0.5341183 +0.4244723 0.4474232 0.5341183 +0.4365675 0.4474232 0.5341183 +0.4474232 0.4474232 0.5341183 +0.45727 0.4474232 0.5341183 +0.4662797 0.4474232 0.5341183 +0.4745834 0.4474232 0.5341183 +0.4822838 0.4474232 0.5341183 +0.4894626 0.4474232 0.5341183 +0.4961862 0.4474232 0.5341183 +0.5025087 0.4474232 0.5341183 +0.5084753 0.4474232 0.5341183 +0.514124 0.4474232 0.5341183 +0.519487 0.4474232 0.5341183 +0.5245917 0.4474232 0.5341183 +0.529462 0.4474232 0.5341183 +0.5341183 0.4474232 0.5341183 +0.5385787 0.4474232 0.5341183 +0.5428591 0.4474232 0.5341183 +0.5469733 0.4474232 0.5341183 +0.5509339 0.4474232 0.5341183 +0.5547519 0.4474232 0.5341183 +0.5584371 0.4474232 0.5341183 +0.5619986 0.4474232 0.5341183 +0.5654443 0.4474232 0.5341183 +0.5687816 0.4474232 0.5341183 +0.092819 0.45727 0.5341183 +0.2262531 0.45727 0.5341183 +0.2875993 0.45727 0.5341183 +0.3262122 0.45727 0.5341183 +0.3544566 0.45727 0.5341183 +0.3767383 0.45727 0.5341183 +0.3951413 0.45727 0.5341183 +0.4108177 0.45727 0.5341183 +0.4244723 0.45727 0.5341183 +0.4365675 0.45727 0.5341183 +0.4474232 0.45727 0.5341183 +0.45727 0.45727 0.5341183 +0.4662797 0.45727 0.5341183 +0.4745834 0.45727 0.5341183 +0.4822838 0.45727 0.5341183 +0.4894626 0.45727 0.5341183 +0.4961862 0.45727 0.5341183 +0.5025087 0.45727 0.5341183 +0.5084753 0.45727 0.5341183 +0.514124 0.45727 0.5341183 +0.519487 0.45727 0.5341183 +0.5245917 0.45727 0.5341183 +0.529462 0.45727 0.5341183 +0.5341183 0.45727 0.5341183 +0.5385787 0.45727 0.5341183 +0.5428591 0.45727 0.5341183 +0.5469733 0.45727 0.5341183 +0.5509339 0.45727 0.5341183 +0.5547519 0.45727 0.5341183 +0.5584371 0.45727 0.5341183 +0.5619986 0.45727 0.5341183 +0.5654443 0.45727 0.5341183 +0.5687816 0.45727 0.5341183 +0.092819 0.4662797 0.5341183 +0.2262531 0.4662797 0.5341183 +0.2875993 0.4662797 0.5341183 +0.3262122 0.4662797 0.5341183 +0.3544566 0.4662797 0.5341183 +0.3767383 0.4662797 0.5341183 +0.3951413 0.4662797 0.5341183 +0.4108177 0.4662797 0.5341183 +0.4244723 0.4662797 0.5341183 +0.4365675 0.4662797 0.5341183 +0.4474232 0.4662797 0.5341183 +0.45727 0.4662797 0.5341183 +0.4662797 0.4662797 0.5341183 +0.4745834 0.4662797 0.5341183 +0.4822838 0.4662797 0.5341183 +0.4894626 0.4662797 0.5341183 +0.4961862 0.4662797 0.5341183 +0.5025087 0.4662797 0.5341183 +0.5084753 0.4662797 0.5341183 +0.514124 0.4662797 0.5341183 +0.519487 0.4662797 0.5341183 +0.5245917 0.4662797 0.5341183 +0.529462 0.4662797 0.5341183 +0.5341183 0.4662797 0.5341183 +0.5385787 0.4662797 0.5341183 +0.5428591 0.4662797 0.5341183 +0.5469733 0.4662797 0.5341183 +0.5509339 0.4662797 0.5341183 +0.5547519 0.4662797 0.5341183 +0.5584371 0.4662797 0.5341183 +0.5619986 0.4662797 0.5341183 +0.5654443 0.4662797 0.5341183 +0.5687816 0.4662797 0.5341183 +0.092819 0.4745834 0.5341183 +0.2262531 0.4745834 0.5341183 +0.2875993 0.4745834 0.5341183 +0.3262122 0.4745834 0.5341183 +0.3544566 0.4745834 0.5341183 +0.3767383 0.4745834 0.5341183 +0.3951413 0.4745834 0.5341183 +0.4108177 0.4745834 0.5341183 +0.4244723 0.4745834 0.5341183 +0.4365675 0.4745834 0.5341183 +0.4474232 0.4745834 0.5341183 +0.45727 0.4745834 0.5341183 +0.4662797 0.4745834 0.5341183 +0.4745834 0.4745834 0.5341183 +0.4822838 0.4745834 0.5341183 +0.4894626 0.4745834 0.5341183 +0.4961862 0.4745834 0.5341183 +0.5025087 0.4745834 0.5341183 +0.5084753 0.4745834 0.5341183 +0.514124 0.4745834 0.5341183 +0.519487 0.4745834 0.5341183 +0.5245917 0.4745834 0.5341183 +0.529462 0.4745834 0.5341183 +0.5341183 0.4745834 0.5341183 +0.5385787 0.4745834 0.5341183 +0.5428591 0.4745834 0.5341183 +0.5469733 0.4745834 0.5341183 +0.5509339 0.4745834 0.5341183 +0.5547519 0.4745834 0.5341183 +0.5584371 0.4745834 0.5341183 +0.5619986 0.4745834 0.5341183 +0.5654443 0.4745834 0.5341183 +0.5687816 0.4745834 0.5341183 +0.092819 0.4822838 0.5341183 +0.2262531 0.4822838 0.5341183 +0.2875993 0.4822838 0.5341183 +0.3262122 0.4822838 0.5341183 +0.3544566 0.4822838 0.5341183 +0.3767383 0.4822838 0.5341183 +0.3951413 0.4822838 0.5341183 +0.4108177 0.4822838 0.5341183 +0.4244723 0.4822838 0.5341183 +0.4365675 0.4822838 0.5341183 +0.4474232 0.4822838 0.5341183 +0.45727 0.4822838 0.5341183 +0.4662797 0.4822838 0.5341183 +0.4745834 0.4822838 0.5341183 +0.4822838 0.4822838 0.5341183 +0.4894626 0.4822838 0.5341183 +0.4961862 0.4822838 0.5341183 +0.5025087 0.4822838 0.5341183 +0.5084753 0.4822838 0.5341183 +0.514124 0.4822838 0.5341183 +0.519487 0.4822838 0.5341183 +0.5245917 0.4822838 0.5341183 +0.529462 0.4822838 0.5341183 +0.5341183 0.4822838 0.5341183 +0.5385787 0.4822838 0.5341183 +0.5428591 0.4822838 0.5341183 +0.5469733 0.4822838 0.5341183 +0.5509339 0.4822838 0.5341183 +0.5547519 0.4822838 0.5341183 +0.5584371 0.4822838 0.5341183 +0.5619986 0.4822838 0.5341183 +0.5654443 0.4822838 0.5341183 +0.5687816 0.4822838 0.5341183 +0.092819 0.4894626 0.5341183 +0.2262531 0.4894626 0.5341183 +0.2875993 0.4894626 0.5341183 +0.3262122 0.4894626 0.5341183 +0.3544566 0.4894626 0.5341183 +0.3767383 0.4894626 0.5341183 +0.3951413 0.4894626 0.5341183 +0.4108177 0.4894626 0.5341183 +0.4244723 0.4894626 0.5341183 +0.4365675 0.4894626 0.5341183 +0.4474232 0.4894626 0.5341183 +0.45727 0.4894626 0.5341183 +0.4662797 0.4894626 0.5341183 +0.4745834 0.4894626 0.5341183 +0.4822838 0.4894626 0.5341183 +0.4894626 0.4894626 0.5341183 +0.4961862 0.4894626 0.5341183 +0.5025087 0.4894626 0.5341183 +0.5084753 0.4894626 0.5341183 +0.514124 0.4894626 0.5341183 +0.519487 0.4894626 0.5341183 +0.5245917 0.4894626 0.5341183 +0.529462 0.4894626 0.5341183 +0.5341183 0.4894626 0.5341183 +0.5385787 0.4894626 0.5341183 +0.5428591 0.4894626 0.5341183 +0.5469733 0.4894626 0.5341183 +0.5509339 0.4894626 0.5341183 +0.5547519 0.4894626 0.5341183 +0.5584371 0.4894626 0.5341183 +0.5619986 0.4894626 0.5341183 +0.5654443 0.4894626 0.5341183 +0.5687816 0.4894626 0.5341183 +0.092819 0.4961862 0.5341183 +0.2262531 0.4961862 0.5341183 +0.2875993 0.4961862 0.5341183 +0.3262122 0.4961862 0.5341183 +0.3544566 0.4961862 0.5341183 +0.3767383 0.4961862 0.5341183 +0.3951413 0.4961862 0.5341183 +0.4108177 0.4961862 0.5341183 +0.4244723 0.4961862 0.5341183 +0.4365675 0.4961862 0.5341183 +0.4474232 0.4961862 0.5341183 +0.45727 0.4961862 0.5341183 +0.4662797 0.4961862 0.5341183 +0.4745834 0.4961862 0.5341183 +0.4822838 0.4961862 0.5341183 +0.4894626 0.4961862 0.5341183 +0.4961862 0.4961862 0.5341183 +0.5025087 0.4961862 0.5341183 +0.5084753 0.4961862 0.5341183 +0.514124 0.4961862 0.5341183 +0.519487 0.4961862 0.5341183 +0.5245917 0.4961862 0.5341183 +0.529462 0.4961862 0.5341183 +0.5341183 0.4961862 0.5341183 +0.5385787 0.4961862 0.5341183 +0.5428591 0.4961862 0.5341183 +0.5469733 0.4961862 0.5341183 +0.5509339 0.4961862 0.5341183 +0.5547519 0.4961862 0.5341183 +0.5584371 0.4961862 0.5341183 +0.5619986 0.4961862 0.5341183 +0.5654443 0.4961862 0.5341183 +0.5687816 0.4961862 0.5341183 +0.092819 0.5025087 0.5341183 +0.2262531 0.5025087 0.5341183 +0.2875993 0.5025087 0.5341183 +0.3262122 0.5025087 0.5341183 +0.3544566 0.5025087 0.5341183 +0.3767383 0.5025087 0.5341183 +0.3951413 0.5025087 0.5341183 +0.4108177 0.5025087 0.5341183 +0.4244723 0.5025087 0.5341183 +0.4365675 0.5025087 0.5341183 +0.4474232 0.5025087 0.5341183 +0.45727 0.5025087 0.5341183 +0.4662797 0.5025087 0.5341183 +0.4745834 0.5025087 0.5341183 +0.4822838 0.5025087 0.5341183 +0.4894626 0.5025087 0.5341183 +0.4961862 0.5025087 0.5341183 +0.5025087 0.5025087 0.5341183 +0.5084753 0.5025087 0.5341183 +0.514124 0.5025087 0.5341183 +0.519487 0.5025087 0.5341183 +0.5245917 0.5025087 0.5341183 +0.529462 0.5025087 0.5341183 +0.5341183 0.5025087 0.5341183 +0.5385787 0.5025087 0.5341183 +0.5428591 0.5025087 0.5341183 +0.5469733 0.5025087 0.5341183 +0.5509339 0.5025087 0.5341183 +0.5547519 0.5025087 0.5341183 +0.5584371 0.5025087 0.5341183 +0.5619986 0.5025087 0.5341183 +0.5654443 0.5025087 0.5341183 +0.5687816 0.5025087 0.5341183 +0.092819 0.5084753 0.5341183 +0.2262531 0.5084753 0.5341183 +0.2875993 0.5084753 0.5341183 +0.3262122 0.5084753 0.5341183 +0.3544566 0.5084753 0.5341183 +0.3767383 0.5084753 0.5341183 +0.3951413 0.5084753 0.5341183 +0.4108177 0.5084753 0.5341183 +0.4244723 0.5084753 0.5341183 +0.4365675 0.5084753 0.5341183 +0.4474232 0.5084753 0.5341183 +0.45727 0.5084753 0.5341183 +0.4662797 0.5084753 0.5341183 +0.4745834 0.5084753 0.5341183 +0.4822838 0.5084753 0.5341183 +0.4894626 0.5084753 0.5341183 +0.4961862 0.5084753 0.5341183 +0.5025087 0.5084753 0.5341183 +0.5084753 0.5084753 0.5341183 +0.514124 0.5084753 0.5341183 +0.519487 0.5084753 0.5341183 +0.5245917 0.5084753 0.5341183 +0.529462 0.5084753 0.5341183 +0.5341183 0.5084753 0.5341183 +0.5385787 0.5084753 0.5341183 +0.5428591 0.5084753 0.5341183 +0.5469733 0.5084753 0.5341183 +0.5509339 0.5084753 0.5341183 +0.5547519 0.5084753 0.5341183 +0.5584371 0.5084753 0.5341183 +0.5619986 0.5084753 0.5341183 +0.5654443 0.5084753 0.5341183 +0.5687816 0.5084753 0.5341183 +0.092819 0.514124 0.5341183 +0.2262531 0.514124 0.5341183 +0.2875993 0.514124 0.5341183 +0.3262122 0.514124 0.5341183 +0.3544566 0.514124 0.5341183 +0.3767383 0.514124 0.5341183 +0.3951413 0.514124 0.5341183 +0.4108177 0.514124 0.5341183 +0.4244723 0.514124 0.5341183 +0.4365675 0.514124 0.5341183 +0.4474232 0.514124 0.5341183 +0.45727 0.514124 0.5341183 +0.4662797 0.514124 0.5341183 +0.4745834 0.514124 0.5341183 +0.4822838 0.514124 0.5341183 +0.4894626 0.514124 0.5341183 +0.4961862 0.514124 0.5341183 +0.5025087 0.514124 0.5341183 +0.5084753 0.514124 0.5341183 +0.514124 0.514124 0.5341183 +0.519487 0.514124 0.5341183 +0.5245917 0.514124 0.5341183 +0.529462 0.514124 0.5341183 +0.5341183 0.514124 0.5341183 +0.5385787 0.514124 0.5341183 +0.5428591 0.514124 0.5341183 +0.5469733 0.514124 0.5341183 +0.5509339 0.514124 0.5341183 +0.5547519 0.514124 0.5341183 +0.5584371 0.514124 0.5341183 +0.5619986 0.514124 0.5341183 +0.5654443 0.514124 0.5341183 +0.5687816 0.514124 0.5341183 +0.092819 0.519487 0.5341183 +0.2262531 0.519487 0.5341183 +0.2875993 0.519487 0.5341183 +0.3262122 0.519487 0.5341183 +0.3544566 0.519487 0.5341183 +0.3767383 0.519487 0.5341183 +0.3951413 0.519487 0.5341183 +0.4108177 0.519487 0.5341183 +0.4244723 0.519487 0.5341183 +0.4365675 0.519487 0.5341183 +0.4474232 0.519487 0.5341183 +0.45727 0.519487 0.5341183 +0.4662797 0.519487 0.5341183 +0.4745834 0.519487 0.5341183 +0.4822838 0.519487 0.5341183 +0.4894626 0.519487 0.5341183 +0.4961862 0.519487 0.5341183 +0.5025087 0.519487 0.5341183 +0.5084753 0.519487 0.5341183 +0.514124 0.519487 0.5341183 +0.519487 0.519487 0.5341183 +0.5245917 0.519487 0.5341183 +0.529462 0.519487 0.5341183 +0.5341183 0.519487 0.5341183 +0.5385787 0.519487 0.5341183 +0.5428591 0.519487 0.5341183 +0.5469733 0.519487 0.5341183 +0.5509339 0.519487 0.5341183 +0.5547519 0.519487 0.5341183 +0.5584371 0.519487 0.5341183 +0.5619986 0.519487 0.5341183 +0.5654443 0.519487 0.5341183 +0.5687816 0.519487 0.5341183 +0.092819 0.5245917 0.5341183 +0.2262531 0.5245917 0.5341183 +0.2875993 0.5245917 0.5341183 +0.3262122 0.5245917 0.5341183 +0.3544566 0.5245917 0.5341183 +0.3767383 0.5245917 0.5341183 +0.3951413 0.5245917 0.5341183 +0.4108177 0.5245917 0.5341183 +0.4244723 0.5245917 0.5341183 +0.4365675 0.5245917 0.5341183 +0.4474232 0.5245917 0.5341183 +0.45727 0.5245917 0.5341183 +0.4662797 0.5245917 0.5341183 +0.4745834 0.5245917 0.5341183 +0.4822838 0.5245917 0.5341183 +0.4894626 0.5245917 0.5341183 +0.4961862 0.5245917 0.5341183 +0.5025087 0.5245917 0.5341183 +0.5084753 0.5245917 0.5341183 +0.514124 0.5245917 0.5341183 +0.519487 0.5245917 0.5341183 +0.5245917 0.5245917 0.5341183 +0.529462 0.5245917 0.5341183 +0.5341183 0.5245917 0.5341183 +0.5385787 0.5245917 0.5341183 +0.5428591 0.5245917 0.5341183 +0.5469733 0.5245917 0.5341183 +0.5509339 0.5245917 0.5341183 +0.5547519 0.5245917 0.5341183 +0.5584371 0.5245917 0.5341183 +0.5619986 0.5245917 0.5341183 +0.5654443 0.5245917 0.5341183 +0.5687816 0.5245917 0.5341183 +0.092819 0.529462 0.5341183 +0.2262531 0.529462 0.5341183 +0.2875993 0.529462 0.5341183 +0.3262122 0.529462 0.5341183 +0.3544566 0.529462 0.5341183 +0.3767383 0.529462 0.5341183 +0.3951413 0.529462 0.5341183 +0.4108177 0.529462 0.5341183 +0.4244723 0.529462 0.5341183 +0.4365675 0.529462 0.5341183 +0.4474232 0.529462 0.5341183 +0.45727 0.529462 0.5341183 +0.4662797 0.529462 0.5341183 +0.4745834 0.529462 0.5341183 +0.4822838 0.529462 0.5341183 +0.4894626 0.529462 0.5341183 +0.4961862 0.529462 0.5341183 +0.5025087 0.529462 0.5341183 +0.5084753 0.529462 0.5341183 +0.514124 0.529462 0.5341183 +0.519487 0.529462 0.5341183 +0.5245917 0.529462 0.5341183 +0.529462 0.529462 0.5341183 +0.5341183 0.529462 0.5341183 +0.5385787 0.529462 0.5341183 +0.5428591 0.529462 0.5341183 +0.5469733 0.529462 0.5341183 +0.5509339 0.529462 0.5341183 +0.5547519 0.529462 0.5341183 +0.5584371 0.529462 0.5341183 +0.5619986 0.529462 0.5341183 +0.5654443 0.529462 0.5341183 +0.5687816 0.529462 0.5341183 +0.092819 0.5341183 0.5341183 +0.2262531 0.5341183 0.5341183 +0.2875993 0.5341183 0.5341183 +0.3262122 0.5341183 0.5341183 +0.3544566 0.5341183 0.5341183 +0.3767383 0.5341183 0.5341183 +0.3951413 0.5341183 0.5341183 +0.4108177 0.5341183 0.5341183 +0.4244723 0.5341183 0.5341183 +0.4365675 0.5341183 0.5341183 +0.4474232 0.5341183 0.5341183 +0.45727 0.5341183 0.5341183 +0.4662797 0.5341183 0.5341183 +0.4745834 0.5341183 0.5341183 +0.4822838 0.5341183 0.5341183 +0.4894626 0.5341183 0.5341183 +0.4961862 0.5341183 0.5341183 +0.5025087 0.5341183 0.5341183 +0.5084753 0.5341183 0.5341183 +0.514124 0.5341183 0.5341183 +0.519487 0.5341183 0.5341183 +0.5245917 0.5341183 0.5341183 +0.529462 0.5341183 0.5341183 +0.5341183 0.5341183 0.5341183 +0.5385787 0.5341183 0.5341183 +0.5428591 0.5341183 0.5341183 +0.5469733 0.5341183 0.5341183 +0.5509339 0.5341183 0.5341183 +0.5547519 0.5341183 0.5341183 +0.5584371 0.5341183 0.5341183 +0.5619986 0.5341183 0.5341183 +0.5654443 0.5341183 0.5341183 +0.5687816 0.5341183 0.5341183 +0.092819 0.5385787 0.5341183 +0.2262531 0.5385787 0.5341183 +0.2875993 0.5385787 0.5341183 +0.3262122 0.5385787 0.5341183 +0.3544566 0.5385787 0.5341183 +0.3767383 0.5385787 0.5341183 +0.3951413 0.5385787 0.5341183 +0.4108177 0.5385787 0.5341183 +0.4244723 0.5385787 0.5341183 +0.4365675 0.5385787 0.5341183 +0.4474232 0.5385787 0.5341183 +0.45727 0.5385787 0.5341183 +0.4662797 0.5385787 0.5341183 +0.4745834 0.5385787 0.5341183 +0.4822838 0.5385787 0.5341183 +0.4894626 0.5385787 0.5341183 +0.4961862 0.5385787 0.5341183 +0.5025087 0.5385787 0.5341183 +0.5084753 0.5385787 0.5341183 +0.514124 0.5385787 0.5341183 +0.519487 0.5385787 0.5341183 +0.5245917 0.5385787 0.5341183 +0.529462 0.5385787 0.5341183 +0.5341183 0.5385787 0.5341183 +0.5385787 0.5385787 0.5341183 +0.5428591 0.5385787 0.5341183 +0.5469733 0.5385787 0.5341183 +0.5509339 0.5385787 0.5341183 +0.5547519 0.5385787 0.5341183 +0.5584371 0.5385787 0.5341183 +0.5619986 0.5385787 0.5341183 +0.5654443 0.5385787 0.5341183 +0.5687816 0.5385787 0.5341183 +0.092819 0.5428591 0.5341183 +0.2262531 0.5428591 0.5341183 +0.2875993 0.5428591 0.5341183 +0.3262122 0.5428591 0.5341183 +0.3544566 0.5428591 0.5341183 +0.3767383 0.5428591 0.5341183 +0.3951413 0.5428591 0.5341183 +0.4108177 0.5428591 0.5341183 +0.4244723 0.5428591 0.5341183 +0.4365675 0.5428591 0.5341183 +0.4474232 0.5428591 0.5341183 +0.45727 0.5428591 0.5341183 +0.4662797 0.5428591 0.5341183 +0.4745834 0.5428591 0.5341183 +0.4822838 0.5428591 0.5341183 +0.4894626 0.5428591 0.5341183 +0.4961862 0.5428591 0.5341183 +0.5025087 0.5428591 0.5341183 +0.5084753 0.5428591 0.5341183 +0.514124 0.5428591 0.5341183 +0.519487 0.5428591 0.5341183 +0.5245917 0.5428591 0.5341183 +0.529462 0.5428591 0.5341183 +0.5341183 0.5428591 0.5341183 +0.5385787 0.5428591 0.5341183 +0.5428591 0.5428591 0.5341183 +0.5469733 0.5428591 0.5341183 +0.5509339 0.5428591 0.5341183 +0.5547519 0.5428591 0.5341183 +0.5584371 0.5428591 0.5341183 +0.5619986 0.5428591 0.5341183 +0.5654443 0.5428591 0.5341183 +0.5687816 0.5428591 0.5341183 +0.092819 0.5469733 0.5341183 +0.2262531 0.5469733 0.5341183 +0.2875993 0.5469733 0.5341183 +0.3262122 0.5469733 0.5341183 +0.3544566 0.5469733 0.5341183 +0.3767383 0.5469733 0.5341183 +0.3951413 0.5469733 0.5341183 +0.4108177 0.5469733 0.5341183 +0.4244723 0.5469733 0.5341183 +0.4365675 0.5469733 0.5341183 +0.4474232 0.5469733 0.5341183 +0.45727 0.5469733 0.5341183 +0.4662797 0.5469733 0.5341183 +0.4745834 0.5469733 0.5341183 +0.4822838 0.5469733 0.5341183 +0.4894626 0.5469733 0.5341183 +0.4961862 0.5469733 0.5341183 +0.5025087 0.5469733 0.5341183 +0.5084753 0.5469733 0.5341183 +0.514124 0.5469733 0.5341183 +0.519487 0.5469733 0.5341183 +0.5245917 0.5469733 0.5341183 +0.529462 0.5469733 0.5341183 +0.5341183 0.5469733 0.5341183 +0.5385787 0.5469733 0.5341183 +0.5428591 0.5469733 0.5341183 +0.5469733 0.5469733 0.5341183 +0.5509339 0.5469733 0.5341183 +0.5547519 0.5469733 0.5341183 +0.5584371 0.5469733 0.5341183 +0.5619986 0.5469733 0.5341183 +0.5654443 0.5469733 0.5341183 +0.5687816 0.5469733 0.5341183 +0.092819 0.5509339 0.5341183 +0.2262531 0.5509339 0.5341183 +0.2875993 0.5509339 0.5341183 +0.3262122 0.5509339 0.5341183 +0.3544566 0.5509339 0.5341183 +0.3767383 0.5509339 0.5341183 +0.3951413 0.5509339 0.5341183 +0.4108177 0.5509339 0.5341183 +0.4244723 0.5509339 0.5341183 +0.4365675 0.5509339 0.5341183 +0.4474232 0.5509339 0.5341183 +0.45727 0.5509339 0.5341183 +0.4662797 0.5509339 0.5341183 +0.4745834 0.5509339 0.5341183 +0.4822838 0.5509339 0.5341183 +0.4894626 0.5509339 0.5341183 +0.4961862 0.5509339 0.5341183 +0.5025087 0.5509339 0.5341183 +0.5084753 0.5509339 0.5341183 +0.514124 0.5509339 0.5341183 +0.519487 0.5509339 0.5341183 +0.5245917 0.5509339 0.5341183 +0.529462 0.5509339 0.5341183 +0.5341183 0.5509339 0.5341183 +0.5385787 0.5509339 0.5341183 +0.5428591 0.5509339 0.5341183 +0.5469733 0.5509339 0.5341183 +0.5509339 0.5509339 0.5341183 +0.5547519 0.5509339 0.5341183 +0.5584371 0.5509339 0.5341183 +0.5619986 0.5509339 0.5341183 +0.5654443 0.5509339 0.5341183 +0.5687816 0.5509339 0.5341183 +0.092819 0.5547519 0.5341183 +0.2262531 0.5547519 0.5341183 +0.2875993 0.5547519 0.5341183 +0.3262122 0.5547519 0.5341183 +0.3544566 0.5547519 0.5341183 +0.3767383 0.5547519 0.5341183 +0.3951413 0.5547519 0.5341183 +0.4108177 0.5547519 0.5341183 +0.4244723 0.5547519 0.5341183 +0.4365675 0.5547519 0.5341183 +0.4474232 0.5547519 0.5341183 +0.45727 0.5547519 0.5341183 +0.4662797 0.5547519 0.5341183 +0.4745834 0.5547519 0.5341183 +0.4822838 0.5547519 0.5341183 +0.4894626 0.5547519 0.5341183 +0.4961862 0.5547519 0.5341183 +0.5025087 0.5547519 0.5341183 +0.5084753 0.5547519 0.5341183 +0.514124 0.5547519 0.5341183 +0.519487 0.5547519 0.5341183 +0.5245917 0.5547519 0.5341183 +0.529462 0.5547519 0.5341183 +0.5341183 0.5547519 0.5341183 +0.5385787 0.5547519 0.5341183 +0.5428591 0.5547519 0.5341183 +0.5469733 0.5547519 0.5341183 +0.5509339 0.5547519 0.5341183 +0.5547519 0.5547519 0.5341183 +0.5584371 0.5547519 0.5341183 +0.5619986 0.5547519 0.5341183 +0.5654443 0.5547519 0.5341183 +0.5687816 0.5547519 0.5341183 +0.092819 0.5584371 0.5341183 +0.2262531 0.5584371 0.5341183 +0.2875993 0.5584371 0.5341183 +0.3262122 0.5584371 0.5341183 +0.3544566 0.5584371 0.5341183 +0.3767383 0.5584371 0.5341183 +0.3951413 0.5584371 0.5341183 +0.4108177 0.5584371 0.5341183 +0.4244723 0.5584371 0.5341183 +0.4365675 0.5584371 0.5341183 +0.4474232 0.5584371 0.5341183 +0.45727 0.5584371 0.5341183 +0.4662797 0.5584371 0.5341183 +0.4745834 0.5584371 0.5341183 +0.4822838 0.5584371 0.5341183 +0.4894626 0.5584371 0.5341183 +0.4961862 0.5584371 0.5341183 +0.5025087 0.5584371 0.5341183 +0.5084753 0.5584371 0.5341183 +0.514124 0.5584371 0.5341183 +0.519487 0.5584371 0.5341183 +0.5245917 0.5584371 0.5341183 +0.529462 0.5584371 0.5341183 +0.5341183 0.5584371 0.5341183 +0.5385787 0.5584371 0.5341183 +0.5428591 0.5584371 0.5341183 +0.5469733 0.5584371 0.5341183 +0.5509339 0.5584371 0.5341183 +0.5547519 0.5584371 0.5341183 +0.5584371 0.5584371 0.5341183 +0.5619986 0.5584371 0.5341183 +0.5654443 0.5584371 0.5341183 +0.5687816 0.5584371 0.5341183 +0.092819 0.5619986 0.5341183 +0.2262531 0.5619986 0.5341183 +0.2875993 0.5619986 0.5341183 +0.3262122 0.5619986 0.5341183 +0.3544566 0.5619986 0.5341183 +0.3767383 0.5619986 0.5341183 +0.3951413 0.5619986 0.5341183 +0.4108177 0.5619986 0.5341183 +0.4244723 0.5619986 0.5341183 +0.4365675 0.5619986 0.5341183 +0.4474232 0.5619986 0.5341183 +0.45727 0.5619986 0.5341183 +0.4662797 0.5619986 0.5341183 +0.4745834 0.5619986 0.5341183 +0.4822838 0.5619986 0.5341183 +0.4894626 0.5619986 0.5341183 +0.4961862 0.5619986 0.5341183 +0.5025087 0.5619986 0.5341183 +0.5084753 0.5619986 0.5341183 +0.514124 0.5619986 0.5341183 +0.519487 0.5619986 0.5341183 +0.5245917 0.5619986 0.5341183 +0.529462 0.5619986 0.5341183 +0.5341183 0.5619986 0.5341183 +0.5385787 0.5619986 0.5341183 +0.5428591 0.5619986 0.5341183 +0.5469733 0.5619986 0.5341183 +0.5509339 0.5619986 0.5341183 +0.5547519 0.5619986 0.5341183 +0.5584371 0.5619986 0.5341183 +0.5619986 0.5619986 0.5341183 +0.5654443 0.5619986 0.5341183 +0.5687816 0.5619986 0.5341183 +0.092819 0.5654443 0.5341183 +0.2262531 0.5654443 0.5341183 +0.2875993 0.5654443 0.5341183 +0.3262122 0.5654443 0.5341183 +0.3544566 0.5654443 0.5341183 +0.3767383 0.5654443 0.5341183 +0.3951413 0.5654443 0.5341183 +0.4108177 0.5654443 0.5341183 +0.4244723 0.5654443 0.5341183 +0.4365675 0.5654443 0.5341183 +0.4474232 0.5654443 0.5341183 +0.45727 0.5654443 0.5341183 +0.4662797 0.5654443 0.5341183 +0.4745834 0.5654443 0.5341183 +0.4822838 0.5654443 0.5341183 +0.4894626 0.5654443 0.5341183 +0.4961862 0.5654443 0.5341183 +0.5025087 0.5654443 0.5341183 +0.5084753 0.5654443 0.5341183 +0.514124 0.5654443 0.5341183 +0.519487 0.5654443 0.5341183 +0.5245917 0.5654443 0.5341183 +0.529462 0.5654443 0.5341183 +0.5341183 0.5654443 0.5341183 +0.5385787 0.5654443 0.5341183 +0.5428591 0.5654443 0.5341183 +0.5469733 0.5654443 0.5341183 +0.5509339 0.5654443 0.5341183 +0.5547519 0.5654443 0.5341183 +0.5584371 0.5654443 0.5341183 +0.5619986 0.5654443 0.5341183 +0.5654443 0.5654443 0.5341183 +0.5687816 0.5654443 0.5341183 +0.092819 0.5687816 0.5341183 +0.2262531 0.5687816 0.5341183 +0.2875993 0.5687816 0.5341183 +0.3262122 0.5687816 0.5341183 +0.3544566 0.5687816 0.5341183 +0.3767383 0.5687816 0.5341183 +0.3951413 0.5687816 0.5341183 +0.4108177 0.5687816 0.5341183 +0.4244723 0.5687816 0.5341183 +0.4365675 0.5687816 0.5341183 +0.4474232 0.5687816 0.5341183 +0.45727 0.5687816 0.5341183 +0.4662797 0.5687816 0.5341183 +0.4745834 0.5687816 0.5341183 +0.4822838 0.5687816 0.5341183 +0.4894626 0.5687816 0.5341183 +0.4961862 0.5687816 0.5341183 +0.5025087 0.5687816 0.5341183 +0.5084753 0.5687816 0.5341183 +0.514124 0.5687816 0.5341183 +0.519487 0.5687816 0.5341183 +0.5245917 0.5687816 0.5341183 +0.529462 0.5687816 0.5341183 +0.5341183 0.5687816 0.5341183 +0.5385787 0.5687816 0.5341183 +0.5428591 0.5687816 0.5341183 +0.5469733 0.5687816 0.5341183 +0.5509339 0.5687816 0.5341183 +0.5547519 0.5687816 0.5341183 +0.5584371 0.5687816 0.5341183 +0.5619986 0.5687816 0.5341183 +0.5654443 0.5687816 0.5341183 +0.5687816 0.5687816 0.5341183 +0.092819 0.092819 0.5385787 +0.2262531 0.092819 0.5385787 +0.2875993 0.092819 0.5385787 +0.3262122 0.092819 0.5385787 +0.3544566 0.092819 0.5385787 +0.3767383 0.092819 0.5385787 +0.3951413 0.092819 0.5385787 +0.4108177 0.092819 0.5385787 +0.4244723 0.092819 0.5385787 +0.4365675 0.092819 0.5385787 +0.4474232 0.092819 0.5385787 +0.45727 0.092819 0.5385787 +0.4662797 0.092819 0.5385787 +0.4745834 0.092819 0.5385787 +0.4822838 0.092819 0.5385787 +0.4894626 0.092819 0.5385787 +0.4961862 0.092819 0.5385787 +0.5025087 0.092819 0.5385787 +0.5084753 0.092819 0.5385787 +0.514124 0.092819 0.5385787 +0.519487 0.092819 0.5385787 +0.5245917 0.092819 0.5385787 +0.529462 0.092819 0.5385787 +0.5341183 0.092819 0.5385787 +0.5385787 0.092819 0.5385787 +0.5428591 0.092819 0.5385787 +0.5469733 0.092819 0.5385787 +0.5509339 0.092819 0.5385787 +0.5547519 0.092819 0.5385787 +0.5584371 0.092819 0.5385787 +0.5619986 0.092819 0.5385787 +0.5654443 0.092819 0.5385787 +0.5687816 0.092819 0.5385787 +0.092819 0.2262531 0.5385787 +0.2262531 0.2262531 0.5385787 +0.2875993 0.2262531 0.5385787 +0.3262122 0.2262531 0.5385787 +0.3544566 0.2262531 0.5385787 +0.3767383 0.2262531 0.5385787 +0.3951413 0.2262531 0.5385787 +0.4108177 0.2262531 0.5385787 +0.4244723 0.2262531 0.5385787 +0.4365675 0.2262531 0.5385787 +0.4474232 0.2262531 0.5385787 +0.45727 0.2262531 0.5385787 +0.4662797 0.2262531 0.5385787 +0.4745834 0.2262531 0.5385787 +0.4822838 0.2262531 0.5385787 +0.4894626 0.2262531 0.5385787 +0.4961862 0.2262531 0.5385787 +0.5025087 0.2262531 0.5385787 +0.5084753 0.2262531 0.5385787 +0.514124 0.2262531 0.5385787 +0.519487 0.2262531 0.5385787 +0.5245917 0.2262531 0.5385787 +0.529462 0.2262531 0.5385787 +0.5341183 0.2262531 0.5385787 +0.5385787 0.2262531 0.5385787 +0.5428591 0.2262531 0.5385787 +0.5469733 0.2262531 0.5385787 +0.5509339 0.2262531 0.5385787 +0.5547519 0.2262531 0.5385787 +0.5584371 0.2262531 0.5385787 +0.5619986 0.2262531 0.5385787 +0.5654443 0.2262531 0.5385787 +0.5687816 0.2262531 0.5385787 +0.092819 0.2875993 0.5385787 +0.2262531 0.2875993 0.5385787 +0.2875993 0.2875993 0.5385787 +0.3262122 0.2875993 0.5385787 +0.3544566 0.2875993 0.5385787 +0.3767383 0.2875993 0.5385787 +0.3951413 0.2875993 0.5385787 +0.4108177 0.2875993 0.5385787 +0.4244723 0.2875993 0.5385787 +0.4365675 0.2875993 0.5385787 +0.4474232 0.2875993 0.5385787 +0.45727 0.2875993 0.5385787 +0.4662797 0.2875993 0.5385787 +0.4745834 0.2875993 0.5385787 +0.4822838 0.2875993 0.5385787 +0.4894626 0.2875993 0.5385787 +0.4961862 0.2875993 0.5385787 +0.5025087 0.2875993 0.5385787 +0.5084753 0.2875993 0.5385787 +0.514124 0.2875993 0.5385787 +0.519487 0.2875993 0.5385787 +0.5245917 0.2875993 0.5385787 +0.529462 0.2875993 0.5385787 +0.5341183 0.2875993 0.5385787 +0.5385787 0.2875993 0.5385787 +0.5428591 0.2875993 0.5385787 +0.5469733 0.2875993 0.5385787 +0.5509339 0.2875993 0.5385787 +0.5547519 0.2875993 0.5385787 +0.5584371 0.2875993 0.5385787 +0.5619986 0.2875993 0.5385787 +0.5654443 0.2875993 0.5385787 +0.5687816 0.2875993 0.5385787 +0.092819 0.3262122 0.5385787 +0.2262531 0.3262122 0.5385787 +0.2875993 0.3262122 0.5385787 +0.3262122 0.3262122 0.5385787 +0.3544566 0.3262122 0.5385787 +0.3767383 0.3262122 0.5385787 +0.3951413 0.3262122 0.5385787 +0.4108177 0.3262122 0.5385787 +0.4244723 0.3262122 0.5385787 +0.4365675 0.3262122 0.5385787 +0.4474232 0.3262122 0.5385787 +0.45727 0.3262122 0.5385787 +0.4662797 0.3262122 0.5385787 +0.4745834 0.3262122 0.5385787 +0.4822838 0.3262122 0.5385787 +0.4894626 0.3262122 0.5385787 +0.4961862 0.3262122 0.5385787 +0.5025087 0.3262122 0.5385787 +0.5084753 0.3262122 0.5385787 +0.514124 0.3262122 0.5385787 +0.519487 0.3262122 0.5385787 +0.5245917 0.3262122 0.5385787 +0.529462 0.3262122 0.5385787 +0.5341183 0.3262122 0.5385787 +0.5385787 0.3262122 0.5385787 +0.5428591 0.3262122 0.5385787 +0.5469733 0.3262122 0.5385787 +0.5509339 0.3262122 0.5385787 +0.5547519 0.3262122 0.5385787 +0.5584371 0.3262122 0.5385787 +0.5619986 0.3262122 0.5385787 +0.5654443 0.3262122 0.5385787 +0.5687816 0.3262122 0.5385787 +0.092819 0.3544566 0.5385787 +0.2262531 0.3544566 0.5385787 +0.2875993 0.3544566 0.5385787 +0.3262122 0.3544566 0.5385787 +0.3544566 0.3544566 0.5385787 +0.3767383 0.3544566 0.5385787 +0.3951413 0.3544566 0.5385787 +0.4108177 0.3544566 0.5385787 +0.4244723 0.3544566 0.5385787 +0.4365675 0.3544566 0.5385787 +0.4474232 0.3544566 0.5385787 +0.45727 0.3544566 0.5385787 +0.4662797 0.3544566 0.5385787 +0.4745834 0.3544566 0.5385787 +0.4822838 0.3544566 0.5385787 +0.4894626 0.3544566 0.5385787 +0.4961862 0.3544566 0.5385787 +0.5025087 0.3544566 0.5385787 +0.5084753 0.3544566 0.5385787 +0.514124 0.3544566 0.5385787 +0.519487 0.3544566 0.5385787 +0.5245917 0.3544566 0.5385787 +0.529462 0.3544566 0.5385787 +0.5341183 0.3544566 0.5385787 +0.5385787 0.3544566 0.5385787 +0.5428591 0.3544566 0.5385787 +0.5469733 0.3544566 0.5385787 +0.5509339 0.3544566 0.5385787 +0.5547519 0.3544566 0.5385787 +0.5584371 0.3544566 0.5385787 +0.5619986 0.3544566 0.5385787 +0.5654443 0.3544566 0.5385787 +0.5687816 0.3544566 0.5385787 +0.092819 0.3767383 0.5385787 +0.2262531 0.3767383 0.5385787 +0.2875993 0.3767383 0.5385787 +0.3262122 0.3767383 0.5385787 +0.3544566 0.3767383 0.5385787 +0.3767383 0.3767383 0.5385787 +0.3951413 0.3767383 0.5385787 +0.4108177 0.3767383 0.5385787 +0.4244723 0.3767383 0.5385787 +0.4365675 0.3767383 0.5385787 +0.4474232 0.3767383 0.5385787 +0.45727 0.3767383 0.5385787 +0.4662797 0.3767383 0.5385787 +0.4745834 0.3767383 0.5385787 +0.4822838 0.3767383 0.5385787 +0.4894626 0.3767383 0.5385787 +0.4961862 0.3767383 0.5385787 +0.5025087 0.3767383 0.5385787 +0.5084753 0.3767383 0.5385787 +0.514124 0.3767383 0.5385787 +0.519487 0.3767383 0.5385787 +0.5245917 0.3767383 0.5385787 +0.529462 0.3767383 0.5385787 +0.5341183 0.3767383 0.5385787 +0.5385787 0.3767383 0.5385787 +0.5428591 0.3767383 0.5385787 +0.5469733 0.3767383 0.5385787 +0.5509339 0.3767383 0.5385787 +0.5547519 0.3767383 0.5385787 +0.5584371 0.3767383 0.5385787 +0.5619986 0.3767383 0.5385787 +0.5654443 0.3767383 0.5385787 +0.5687816 0.3767383 0.5385787 +0.092819 0.3951413 0.5385787 +0.2262531 0.3951413 0.5385787 +0.2875993 0.3951413 0.5385787 +0.3262122 0.3951413 0.5385787 +0.3544566 0.3951413 0.5385787 +0.3767383 0.3951413 0.5385787 +0.3951413 0.3951413 0.5385787 +0.4108177 0.3951413 0.5385787 +0.4244723 0.3951413 0.5385787 +0.4365675 0.3951413 0.5385787 +0.4474232 0.3951413 0.5385787 +0.45727 0.3951413 0.5385787 +0.4662797 0.3951413 0.5385787 +0.4745834 0.3951413 0.5385787 +0.4822838 0.3951413 0.5385787 +0.4894626 0.3951413 0.5385787 +0.4961862 0.3951413 0.5385787 +0.5025087 0.3951413 0.5385787 +0.5084753 0.3951413 0.5385787 +0.514124 0.3951413 0.5385787 +0.519487 0.3951413 0.5385787 +0.5245917 0.3951413 0.5385787 +0.529462 0.3951413 0.5385787 +0.5341183 0.3951413 0.5385787 +0.5385787 0.3951413 0.5385787 +0.5428591 0.3951413 0.5385787 +0.5469733 0.3951413 0.5385787 +0.5509339 0.3951413 0.5385787 +0.5547519 0.3951413 0.5385787 +0.5584371 0.3951413 0.5385787 +0.5619986 0.3951413 0.5385787 +0.5654443 0.3951413 0.5385787 +0.5687816 0.3951413 0.5385787 +0.092819 0.4108177 0.5385787 +0.2262531 0.4108177 0.5385787 +0.2875993 0.4108177 0.5385787 +0.3262122 0.4108177 0.5385787 +0.3544566 0.4108177 0.5385787 +0.3767383 0.4108177 0.5385787 +0.3951413 0.4108177 0.5385787 +0.4108177 0.4108177 0.5385787 +0.4244723 0.4108177 0.5385787 +0.4365675 0.4108177 0.5385787 +0.4474232 0.4108177 0.5385787 +0.45727 0.4108177 0.5385787 +0.4662797 0.4108177 0.5385787 +0.4745834 0.4108177 0.5385787 +0.4822838 0.4108177 0.5385787 +0.4894626 0.4108177 0.5385787 +0.4961862 0.4108177 0.5385787 +0.5025087 0.4108177 0.5385787 +0.5084753 0.4108177 0.5385787 +0.514124 0.4108177 0.5385787 +0.519487 0.4108177 0.5385787 +0.5245917 0.4108177 0.5385787 +0.529462 0.4108177 0.5385787 +0.5341183 0.4108177 0.5385787 +0.5385787 0.4108177 0.5385787 +0.5428591 0.4108177 0.5385787 +0.5469733 0.4108177 0.5385787 +0.5509339 0.4108177 0.5385787 +0.5547519 0.4108177 0.5385787 +0.5584371 0.4108177 0.5385787 +0.5619986 0.4108177 0.5385787 +0.5654443 0.4108177 0.5385787 +0.5687816 0.4108177 0.5385787 +0.092819 0.4244723 0.5385787 +0.2262531 0.4244723 0.5385787 +0.2875993 0.4244723 0.5385787 +0.3262122 0.4244723 0.5385787 +0.3544566 0.4244723 0.5385787 +0.3767383 0.4244723 0.5385787 +0.3951413 0.4244723 0.5385787 +0.4108177 0.4244723 0.5385787 +0.4244723 0.4244723 0.5385787 +0.4365675 0.4244723 0.5385787 +0.4474232 0.4244723 0.5385787 +0.45727 0.4244723 0.5385787 +0.4662797 0.4244723 0.5385787 +0.4745834 0.4244723 0.5385787 +0.4822838 0.4244723 0.5385787 +0.4894626 0.4244723 0.5385787 +0.4961862 0.4244723 0.5385787 +0.5025087 0.4244723 0.5385787 +0.5084753 0.4244723 0.5385787 +0.514124 0.4244723 0.5385787 +0.519487 0.4244723 0.5385787 +0.5245917 0.4244723 0.5385787 +0.529462 0.4244723 0.5385787 +0.5341183 0.4244723 0.5385787 +0.5385787 0.4244723 0.5385787 +0.5428591 0.4244723 0.5385787 +0.5469733 0.4244723 0.5385787 +0.5509339 0.4244723 0.5385787 +0.5547519 0.4244723 0.5385787 +0.5584371 0.4244723 0.5385787 +0.5619986 0.4244723 0.5385787 +0.5654443 0.4244723 0.5385787 +0.5687816 0.4244723 0.5385787 +0.092819 0.4365675 0.5385787 +0.2262531 0.4365675 0.5385787 +0.2875993 0.4365675 0.5385787 +0.3262122 0.4365675 0.5385787 +0.3544566 0.4365675 0.5385787 +0.3767383 0.4365675 0.5385787 +0.3951413 0.4365675 0.5385787 +0.4108177 0.4365675 0.5385787 +0.4244723 0.4365675 0.5385787 +0.4365675 0.4365675 0.5385787 +0.4474232 0.4365675 0.5385787 +0.45727 0.4365675 0.5385787 +0.4662797 0.4365675 0.5385787 +0.4745834 0.4365675 0.5385787 +0.4822838 0.4365675 0.5385787 +0.4894626 0.4365675 0.5385787 +0.4961862 0.4365675 0.5385787 +0.5025087 0.4365675 0.5385787 +0.5084753 0.4365675 0.5385787 +0.514124 0.4365675 0.5385787 +0.519487 0.4365675 0.5385787 +0.5245917 0.4365675 0.5385787 +0.529462 0.4365675 0.5385787 +0.5341183 0.4365675 0.5385787 +0.5385787 0.4365675 0.5385787 +0.5428591 0.4365675 0.5385787 +0.5469733 0.4365675 0.5385787 +0.5509339 0.4365675 0.5385787 +0.5547519 0.4365675 0.5385787 +0.5584371 0.4365675 0.5385787 +0.5619986 0.4365675 0.5385787 +0.5654443 0.4365675 0.5385787 +0.5687816 0.4365675 0.5385787 +0.092819 0.4474232 0.5385787 +0.2262531 0.4474232 0.5385787 +0.2875993 0.4474232 0.5385787 +0.3262122 0.4474232 0.5385787 +0.3544566 0.4474232 0.5385787 +0.3767383 0.4474232 0.5385787 +0.3951413 0.4474232 0.5385787 +0.4108177 0.4474232 0.5385787 +0.4244723 0.4474232 0.5385787 +0.4365675 0.4474232 0.5385787 +0.4474232 0.4474232 0.5385787 +0.45727 0.4474232 0.5385787 +0.4662797 0.4474232 0.5385787 +0.4745834 0.4474232 0.5385787 +0.4822838 0.4474232 0.5385787 +0.4894626 0.4474232 0.5385787 +0.4961862 0.4474232 0.5385787 +0.5025087 0.4474232 0.5385787 +0.5084753 0.4474232 0.5385787 +0.514124 0.4474232 0.5385787 +0.519487 0.4474232 0.5385787 +0.5245917 0.4474232 0.5385787 +0.529462 0.4474232 0.5385787 +0.5341183 0.4474232 0.5385787 +0.5385787 0.4474232 0.5385787 +0.5428591 0.4474232 0.5385787 +0.5469733 0.4474232 0.5385787 +0.5509339 0.4474232 0.5385787 +0.5547519 0.4474232 0.5385787 +0.5584371 0.4474232 0.5385787 +0.5619986 0.4474232 0.5385787 +0.5654443 0.4474232 0.5385787 +0.5687816 0.4474232 0.5385787 +0.092819 0.45727 0.5385787 +0.2262531 0.45727 0.5385787 +0.2875993 0.45727 0.5385787 +0.3262122 0.45727 0.5385787 +0.3544566 0.45727 0.5385787 +0.3767383 0.45727 0.5385787 +0.3951413 0.45727 0.5385787 +0.4108177 0.45727 0.5385787 +0.4244723 0.45727 0.5385787 +0.4365675 0.45727 0.5385787 +0.4474232 0.45727 0.5385787 +0.45727 0.45727 0.5385787 +0.4662797 0.45727 0.5385787 +0.4745834 0.45727 0.5385787 +0.4822838 0.45727 0.5385787 +0.4894626 0.45727 0.5385787 +0.4961862 0.45727 0.5385787 +0.5025087 0.45727 0.5385787 +0.5084753 0.45727 0.5385787 +0.514124 0.45727 0.5385787 +0.519487 0.45727 0.5385787 +0.5245917 0.45727 0.5385787 +0.529462 0.45727 0.5385787 +0.5341183 0.45727 0.5385787 +0.5385787 0.45727 0.5385787 +0.5428591 0.45727 0.5385787 +0.5469733 0.45727 0.5385787 +0.5509339 0.45727 0.5385787 +0.5547519 0.45727 0.5385787 +0.5584371 0.45727 0.5385787 +0.5619986 0.45727 0.5385787 +0.5654443 0.45727 0.5385787 +0.5687816 0.45727 0.5385787 +0.092819 0.4662797 0.5385787 +0.2262531 0.4662797 0.5385787 +0.2875993 0.4662797 0.5385787 +0.3262122 0.4662797 0.5385787 +0.3544566 0.4662797 0.5385787 +0.3767383 0.4662797 0.5385787 +0.3951413 0.4662797 0.5385787 +0.4108177 0.4662797 0.5385787 +0.4244723 0.4662797 0.5385787 +0.4365675 0.4662797 0.5385787 +0.4474232 0.4662797 0.5385787 +0.45727 0.4662797 0.5385787 +0.4662797 0.4662797 0.5385787 +0.4745834 0.4662797 0.5385787 +0.4822838 0.4662797 0.5385787 +0.4894626 0.4662797 0.5385787 +0.4961862 0.4662797 0.5385787 +0.5025087 0.4662797 0.5385787 +0.5084753 0.4662797 0.5385787 +0.514124 0.4662797 0.5385787 +0.519487 0.4662797 0.5385787 +0.5245917 0.4662797 0.5385787 +0.529462 0.4662797 0.5385787 +0.5341183 0.4662797 0.5385787 +0.5385787 0.4662797 0.5385787 +0.5428591 0.4662797 0.5385787 +0.5469733 0.4662797 0.5385787 +0.5509339 0.4662797 0.5385787 +0.5547519 0.4662797 0.5385787 +0.5584371 0.4662797 0.5385787 +0.5619986 0.4662797 0.5385787 +0.5654443 0.4662797 0.5385787 +0.5687816 0.4662797 0.5385787 +0.092819 0.4745834 0.5385787 +0.2262531 0.4745834 0.5385787 +0.2875993 0.4745834 0.5385787 +0.3262122 0.4745834 0.5385787 +0.3544566 0.4745834 0.5385787 +0.3767383 0.4745834 0.5385787 +0.3951413 0.4745834 0.5385787 +0.4108177 0.4745834 0.5385787 +0.4244723 0.4745834 0.5385787 +0.4365675 0.4745834 0.5385787 +0.4474232 0.4745834 0.5385787 +0.45727 0.4745834 0.5385787 +0.4662797 0.4745834 0.5385787 +0.4745834 0.4745834 0.5385787 +0.4822838 0.4745834 0.5385787 +0.4894626 0.4745834 0.5385787 +0.4961862 0.4745834 0.5385787 +0.5025087 0.4745834 0.5385787 +0.5084753 0.4745834 0.5385787 +0.514124 0.4745834 0.5385787 +0.519487 0.4745834 0.5385787 +0.5245917 0.4745834 0.5385787 +0.529462 0.4745834 0.5385787 +0.5341183 0.4745834 0.5385787 +0.5385787 0.4745834 0.5385787 +0.5428591 0.4745834 0.5385787 +0.5469733 0.4745834 0.5385787 +0.5509339 0.4745834 0.5385787 +0.5547519 0.4745834 0.5385787 +0.5584371 0.4745834 0.5385787 +0.5619986 0.4745834 0.5385787 +0.5654443 0.4745834 0.5385787 +0.5687816 0.4745834 0.5385787 +0.092819 0.4822838 0.5385787 +0.2262531 0.4822838 0.5385787 +0.2875993 0.4822838 0.5385787 +0.3262122 0.4822838 0.5385787 +0.3544566 0.4822838 0.5385787 +0.3767383 0.4822838 0.5385787 +0.3951413 0.4822838 0.5385787 +0.4108177 0.4822838 0.5385787 +0.4244723 0.4822838 0.5385787 +0.4365675 0.4822838 0.5385787 +0.4474232 0.4822838 0.5385787 +0.45727 0.4822838 0.5385787 +0.4662797 0.4822838 0.5385787 +0.4745834 0.4822838 0.5385787 +0.4822838 0.4822838 0.5385787 +0.4894626 0.4822838 0.5385787 +0.4961862 0.4822838 0.5385787 +0.5025087 0.4822838 0.5385787 +0.5084753 0.4822838 0.5385787 +0.514124 0.4822838 0.5385787 +0.519487 0.4822838 0.5385787 +0.5245917 0.4822838 0.5385787 +0.529462 0.4822838 0.5385787 +0.5341183 0.4822838 0.5385787 +0.5385787 0.4822838 0.5385787 +0.5428591 0.4822838 0.5385787 +0.5469733 0.4822838 0.5385787 +0.5509339 0.4822838 0.5385787 +0.5547519 0.4822838 0.5385787 +0.5584371 0.4822838 0.5385787 +0.5619986 0.4822838 0.5385787 +0.5654443 0.4822838 0.5385787 +0.5687816 0.4822838 0.5385787 +0.092819 0.4894626 0.5385787 +0.2262531 0.4894626 0.5385787 +0.2875993 0.4894626 0.5385787 +0.3262122 0.4894626 0.5385787 +0.3544566 0.4894626 0.5385787 +0.3767383 0.4894626 0.5385787 +0.3951413 0.4894626 0.5385787 +0.4108177 0.4894626 0.5385787 +0.4244723 0.4894626 0.5385787 +0.4365675 0.4894626 0.5385787 +0.4474232 0.4894626 0.5385787 +0.45727 0.4894626 0.5385787 +0.4662797 0.4894626 0.5385787 +0.4745834 0.4894626 0.5385787 +0.4822838 0.4894626 0.5385787 +0.4894626 0.4894626 0.5385787 +0.4961862 0.4894626 0.5385787 +0.5025087 0.4894626 0.5385787 +0.5084753 0.4894626 0.5385787 +0.514124 0.4894626 0.5385787 +0.519487 0.4894626 0.5385787 +0.5245917 0.4894626 0.5385787 +0.529462 0.4894626 0.5385787 +0.5341183 0.4894626 0.5385787 +0.5385787 0.4894626 0.5385787 +0.5428591 0.4894626 0.5385787 +0.5469733 0.4894626 0.5385787 +0.5509339 0.4894626 0.5385787 +0.5547519 0.4894626 0.5385787 +0.5584371 0.4894626 0.5385787 +0.5619986 0.4894626 0.5385787 +0.5654443 0.4894626 0.5385787 +0.5687816 0.4894626 0.5385787 +0.092819 0.4961862 0.5385787 +0.2262531 0.4961862 0.5385787 +0.2875993 0.4961862 0.5385787 +0.3262122 0.4961862 0.5385787 +0.3544566 0.4961862 0.5385787 +0.3767383 0.4961862 0.5385787 +0.3951413 0.4961862 0.5385787 +0.4108177 0.4961862 0.5385787 +0.4244723 0.4961862 0.5385787 +0.4365675 0.4961862 0.5385787 +0.4474232 0.4961862 0.5385787 +0.45727 0.4961862 0.5385787 +0.4662797 0.4961862 0.5385787 +0.4745834 0.4961862 0.5385787 +0.4822838 0.4961862 0.5385787 +0.4894626 0.4961862 0.5385787 +0.4961862 0.4961862 0.5385787 +0.5025087 0.4961862 0.5385787 +0.5084753 0.4961862 0.5385787 +0.514124 0.4961862 0.5385787 +0.519487 0.4961862 0.5385787 +0.5245917 0.4961862 0.5385787 +0.529462 0.4961862 0.5385787 +0.5341183 0.4961862 0.5385787 +0.5385787 0.4961862 0.5385787 +0.5428591 0.4961862 0.5385787 +0.5469733 0.4961862 0.5385787 +0.5509339 0.4961862 0.5385787 +0.5547519 0.4961862 0.5385787 +0.5584371 0.4961862 0.5385787 +0.5619986 0.4961862 0.5385787 +0.5654443 0.4961862 0.5385787 +0.5687816 0.4961862 0.5385787 +0.092819 0.5025087 0.5385787 +0.2262531 0.5025087 0.5385787 +0.2875993 0.5025087 0.5385787 +0.3262122 0.5025087 0.5385787 +0.3544566 0.5025087 0.5385787 +0.3767383 0.5025087 0.5385787 +0.3951413 0.5025087 0.5385787 +0.4108177 0.5025087 0.5385787 +0.4244723 0.5025087 0.5385787 +0.4365675 0.5025087 0.5385787 +0.4474232 0.5025087 0.5385787 +0.45727 0.5025087 0.5385787 +0.4662797 0.5025087 0.5385787 +0.4745834 0.5025087 0.5385787 +0.4822838 0.5025087 0.5385787 +0.4894626 0.5025087 0.5385787 +0.4961862 0.5025087 0.5385787 +0.5025087 0.5025087 0.5385787 +0.5084753 0.5025087 0.5385787 +0.514124 0.5025087 0.5385787 +0.519487 0.5025087 0.5385787 +0.5245917 0.5025087 0.5385787 +0.529462 0.5025087 0.5385787 +0.5341183 0.5025087 0.5385787 +0.5385787 0.5025087 0.5385787 +0.5428591 0.5025087 0.5385787 +0.5469733 0.5025087 0.5385787 +0.5509339 0.5025087 0.5385787 +0.5547519 0.5025087 0.5385787 +0.5584371 0.5025087 0.5385787 +0.5619986 0.5025087 0.5385787 +0.5654443 0.5025087 0.5385787 +0.5687816 0.5025087 0.5385787 +0.092819 0.5084753 0.5385787 +0.2262531 0.5084753 0.5385787 +0.2875993 0.5084753 0.5385787 +0.3262122 0.5084753 0.5385787 +0.3544566 0.5084753 0.5385787 +0.3767383 0.5084753 0.5385787 +0.3951413 0.5084753 0.5385787 +0.4108177 0.5084753 0.5385787 +0.4244723 0.5084753 0.5385787 +0.4365675 0.5084753 0.5385787 +0.4474232 0.5084753 0.5385787 +0.45727 0.5084753 0.5385787 +0.4662797 0.5084753 0.5385787 +0.4745834 0.5084753 0.5385787 +0.4822838 0.5084753 0.5385787 +0.4894626 0.5084753 0.5385787 +0.4961862 0.5084753 0.5385787 +0.5025087 0.5084753 0.5385787 +0.5084753 0.5084753 0.5385787 +0.514124 0.5084753 0.5385787 +0.519487 0.5084753 0.5385787 +0.5245917 0.5084753 0.5385787 +0.529462 0.5084753 0.5385787 +0.5341183 0.5084753 0.5385787 +0.5385787 0.5084753 0.5385787 +0.5428591 0.5084753 0.5385787 +0.5469733 0.5084753 0.5385787 +0.5509339 0.5084753 0.5385787 +0.5547519 0.5084753 0.5385787 +0.5584371 0.5084753 0.5385787 +0.5619986 0.5084753 0.5385787 +0.5654443 0.5084753 0.5385787 +0.5687816 0.5084753 0.5385787 +0.092819 0.514124 0.5385787 +0.2262531 0.514124 0.5385787 +0.2875993 0.514124 0.5385787 +0.3262122 0.514124 0.5385787 +0.3544566 0.514124 0.5385787 +0.3767383 0.514124 0.5385787 +0.3951413 0.514124 0.5385787 +0.4108177 0.514124 0.5385787 +0.4244723 0.514124 0.5385787 +0.4365675 0.514124 0.5385787 +0.4474232 0.514124 0.5385787 +0.45727 0.514124 0.5385787 +0.4662797 0.514124 0.5385787 +0.4745834 0.514124 0.5385787 +0.4822838 0.514124 0.5385787 +0.4894626 0.514124 0.5385787 +0.4961862 0.514124 0.5385787 +0.5025087 0.514124 0.5385787 +0.5084753 0.514124 0.5385787 +0.514124 0.514124 0.5385787 +0.519487 0.514124 0.5385787 +0.5245917 0.514124 0.5385787 +0.529462 0.514124 0.5385787 +0.5341183 0.514124 0.5385787 +0.5385787 0.514124 0.5385787 +0.5428591 0.514124 0.5385787 +0.5469733 0.514124 0.5385787 +0.5509339 0.514124 0.5385787 +0.5547519 0.514124 0.5385787 +0.5584371 0.514124 0.5385787 +0.5619986 0.514124 0.5385787 +0.5654443 0.514124 0.5385787 +0.5687816 0.514124 0.5385787 +0.092819 0.519487 0.5385787 +0.2262531 0.519487 0.5385787 +0.2875993 0.519487 0.5385787 +0.3262122 0.519487 0.5385787 +0.3544566 0.519487 0.5385787 +0.3767383 0.519487 0.5385787 +0.3951413 0.519487 0.5385787 +0.4108177 0.519487 0.5385787 +0.4244723 0.519487 0.5385787 +0.4365675 0.519487 0.5385787 +0.4474232 0.519487 0.5385787 +0.45727 0.519487 0.5385787 +0.4662797 0.519487 0.5385787 +0.4745834 0.519487 0.5385787 +0.4822838 0.519487 0.5385787 +0.4894626 0.519487 0.5385787 +0.4961862 0.519487 0.5385787 +0.5025087 0.519487 0.5385787 +0.5084753 0.519487 0.5385787 +0.514124 0.519487 0.5385787 +0.519487 0.519487 0.5385787 +0.5245917 0.519487 0.5385787 +0.529462 0.519487 0.5385787 +0.5341183 0.519487 0.5385787 +0.5385787 0.519487 0.5385787 +0.5428591 0.519487 0.5385787 +0.5469733 0.519487 0.5385787 +0.5509339 0.519487 0.5385787 +0.5547519 0.519487 0.5385787 +0.5584371 0.519487 0.5385787 +0.5619986 0.519487 0.5385787 +0.5654443 0.519487 0.5385787 +0.5687816 0.519487 0.5385787 +0.092819 0.5245917 0.5385787 +0.2262531 0.5245917 0.5385787 +0.2875993 0.5245917 0.5385787 +0.3262122 0.5245917 0.5385787 +0.3544566 0.5245917 0.5385787 +0.3767383 0.5245917 0.5385787 +0.3951413 0.5245917 0.5385787 +0.4108177 0.5245917 0.5385787 +0.4244723 0.5245917 0.5385787 +0.4365675 0.5245917 0.5385787 +0.4474232 0.5245917 0.5385787 +0.45727 0.5245917 0.5385787 +0.4662797 0.5245917 0.5385787 +0.4745834 0.5245917 0.5385787 +0.4822838 0.5245917 0.5385787 +0.4894626 0.5245917 0.5385787 +0.4961862 0.5245917 0.5385787 +0.5025087 0.5245917 0.5385787 +0.5084753 0.5245917 0.5385787 +0.514124 0.5245917 0.5385787 +0.519487 0.5245917 0.5385787 +0.5245917 0.5245917 0.5385787 +0.529462 0.5245917 0.5385787 +0.5341183 0.5245917 0.5385787 +0.5385787 0.5245917 0.5385787 +0.5428591 0.5245917 0.5385787 +0.5469733 0.5245917 0.5385787 +0.5509339 0.5245917 0.5385787 +0.5547519 0.5245917 0.5385787 +0.5584371 0.5245917 0.5385787 +0.5619986 0.5245917 0.5385787 +0.5654443 0.5245917 0.5385787 +0.5687816 0.5245917 0.5385787 +0.092819 0.529462 0.5385787 +0.2262531 0.529462 0.5385787 +0.2875993 0.529462 0.5385787 +0.3262122 0.529462 0.5385787 +0.3544566 0.529462 0.5385787 +0.3767383 0.529462 0.5385787 +0.3951413 0.529462 0.5385787 +0.4108177 0.529462 0.5385787 +0.4244723 0.529462 0.5385787 +0.4365675 0.529462 0.5385787 +0.4474232 0.529462 0.5385787 +0.45727 0.529462 0.5385787 +0.4662797 0.529462 0.5385787 +0.4745834 0.529462 0.5385787 +0.4822838 0.529462 0.5385787 +0.4894626 0.529462 0.5385787 +0.4961862 0.529462 0.5385787 +0.5025087 0.529462 0.5385787 +0.5084753 0.529462 0.5385787 +0.514124 0.529462 0.5385787 +0.519487 0.529462 0.5385787 +0.5245917 0.529462 0.5385787 +0.529462 0.529462 0.5385787 +0.5341183 0.529462 0.5385787 +0.5385787 0.529462 0.5385787 +0.5428591 0.529462 0.5385787 +0.5469733 0.529462 0.5385787 +0.5509339 0.529462 0.5385787 +0.5547519 0.529462 0.5385787 +0.5584371 0.529462 0.5385787 +0.5619986 0.529462 0.5385787 +0.5654443 0.529462 0.5385787 +0.5687816 0.529462 0.5385787 +0.092819 0.5341183 0.5385787 +0.2262531 0.5341183 0.5385787 +0.2875993 0.5341183 0.5385787 +0.3262122 0.5341183 0.5385787 +0.3544566 0.5341183 0.5385787 +0.3767383 0.5341183 0.5385787 +0.3951413 0.5341183 0.5385787 +0.4108177 0.5341183 0.5385787 +0.4244723 0.5341183 0.5385787 +0.4365675 0.5341183 0.5385787 +0.4474232 0.5341183 0.5385787 +0.45727 0.5341183 0.5385787 +0.4662797 0.5341183 0.5385787 +0.4745834 0.5341183 0.5385787 +0.4822838 0.5341183 0.5385787 +0.4894626 0.5341183 0.5385787 +0.4961862 0.5341183 0.5385787 +0.5025087 0.5341183 0.5385787 +0.5084753 0.5341183 0.5385787 +0.514124 0.5341183 0.5385787 +0.519487 0.5341183 0.5385787 +0.5245917 0.5341183 0.5385787 +0.529462 0.5341183 0.5385787 +0.5341183 0.5341183 0.5385787 +0.5385787 0.5341183 0.5385787 +0.5428591 0.5341183 0.5385787 +0.5469733 0.5341183 0.5385787 +0.5509339 0.5341183 0.5385787 +0.5547519 0.5341183 0.5385787 +0.5584371 0.5341183 0.5385787 +0.5619986 0.5341183 0.5385787 +0.5654443 0.5341183 0.5385787 +0.5687816 0.5341183 0.5385787 +0.092819 0.5385787 0.5385787 +0.2262531 0.5385787 0.5385787 +0.2875993 0.5385787 0.5385787 +0.3262122 0.5385787 0.5385787 +0.3544566 0.5385787 0.5385787 +0.3767383 0.5385787 0.5385787 +0.3951413 0.5385787 0.5385787 +0.4108177 0.5385787 0.5385787 +0.4244723 0.5385787 0.5385787 +0.4365675 0.5385787 0.5385787 +0.4474232 0.5385787 0.5385787 +0.45727 0.5385787 0.5385787 +0.4662797 0.5385787 0.5385787 +0.4745834 0.5385787 0.5385787 +0.4822838 0.5385787 0.5385787 +0.4894626 0.5385787 0.5385787 +0.4961862 0.5385787 0.5385787 +0.5025087 0.5385787 0.5385787 +0.5084753 0.5385787 0.5385787 +0.514124 0.5385787 0.5385787 +0.519487 0.5385787 0.5385787 +0.5245917 0.5385787 0.5385787 +0.529462 0.5385787 0.5385787 +0.5341183 0.5385787 0.5385787 +0.5385787 0.5385787 0.5385787 +0.5428591 0.5385787 0.5385787 +0.5469733 0.5385787 0.5385787 +0.5509339 0.5385787 0.5385787 +0.5547519 0.5385787 0.5385787 +0.5584371 0.5385787 0.5385787 +0.5619986 0.5385787 0.5385787 +0.5654443 0.5385787 0.5385787 +0.5687816 0.5385787 0.5385787 +0.092819 0.5428591 0.5385787 +0.2262531 0.5428591 0.5385787 +0.2875993 0.5428591 0.5385787 +0.3262122 0.5428591 0.5385787 +0.3544566 0.5428591 0.5385787 +0.3767383 0.5428591 0.5385787 +0.3951413 0.5428591 0.5385787 +0.4108177 0.5428591 0.5385787 +0.4244723 0.5428591 0.5385787 +0.4365675 0.5428591 0.5385787 +0.4474232 0.5428591 0.5385787 +0.45727 0.5428591 0.5385787 +0.4662797 0.5428591 0.5385787 +0.4745834 0.5428591 0.5385787 +0.4822838 0.5428591 0.5385787 +0.4894626 0.5428591 0.5385787 +0.4961862 0.5428591 0.5385787 +0.5025087 0.5428591 0.5385787 +0.5084753 0.5428591 0.5385787 +0.514124 0.5428591 0.5385787 +0.519487 0.5428591 0.5385787 +0.5245917 0.5428591 0.5385787 +0.529462 0.5428591 0.5385787 +0.5341183 0.5428591 0.5385787 +0.5385787 0.5428591 0.5385787 +0.5428591 0.5428591 0.5385787 +0.5469733 0.5428591 0.5385787 +0.5509339 0.5428591 0.5385787 +0.5547519 0.5428591 0.5385787 +0.5584371 0.5428591 0.5385787 +0.5619986 0.5428591 0.5385787 +0.5654443 0.5428591 0.5385787 +0.5687816 0.5428591 0.5385787 +0.092819 0.5469733 0.5385787 +0.2262531 0.5469733 0.5385787 +0.2875993 0.5469733 0.5385787 +0.3262122 0.5469733 0.5385787 +0.3544566 0.5469733 0.5385787 +0.3767383 0.5469733 0.5385787 +0.3951413 0.5469733 0.5385787 +0.4108177 0.5469733 0.5385787 +0.4244723 0.5469733 0.5385787 +0.4365675 0.5469733 0.5385787 +0.4474232 0.5469733 0.5385787 +0.45727 0.5469733 0.5385787 +0.4662797 0.5469733 0.5385787 +0.4745834 0.5469733 0.5385787 +0.4822838 0.5469733 0.5385787 +0.4894626 0.5469733 0.5385787 +0.4961862 0.5469733 0.5385787 +0.5025087 0.5469733 0.5385787 +0.5084753 0.5469733 0.5385787 +0.514124 0.5469733 0.5385787 +0.519487 0.5469733 0.5385787 +0.5245917 0.5469733 0.5385787 +0.529462 0.5469733 0.5385787 +0.5341183 0.5469733 0.5385787 +0.5385787 0.5469733 0.5385787 +0.5428591 0.5469733 0.5385787 +0.5469733 0.5469733 0.5385787 +0.5509339 0.5469733 0.5385787 +0.5547519 0.5469733 0.5385787 +0.5584371 0.5469733 0.5385787 +0.5619986 0.5469733 0.5385787 +0.5654443 0.5469733 0.5385787 +0.5687816 0.5469733 0.5385787 +0.092819 0.5509339 0.5385787 +0.2262531 0.5509339 0.5385787 +0.2875993 0.5509339 0.5385787 +0.3262122 0.5509339 0.5385787 +0.3544566 0.5509339 0.5385787 +0.3767383 0.5509339 0.5385787 +0.3951413 0.5509339 0.5385787 +0.4108177 0.5509339 0.5385787 +0.4244723 0.5509339 0.5385787 +0.4365675 0.5509339 0.5385787 +0.4474232 0.5509339 0.5385787 +0.45727 0.5509339 0.5385787 +0.4662797 0.5509339 0.5385787 +0.4745834 0.5509339 0.5385787 +0.4822838 0.5509339 0.5385787 +0.4894626 0.5509339 0.5385787 +0.4961862 0.5509339 0.5385787 +0.5025087 0.5509339 0.5385787 +0.5084753 0.5509339 0.5385787 +0.514124 0.5509339 0.5385787 +0.519487 0.5509339 0.5385787 +0.5245917 0.5509339 0.5385787 +0.529462 0.5509339 0.5385787 +0.5341183 0.5509339 0.5385787 +0.5385787 0.5509339 0.5385787 +0.5428591 0.5509339 0.5385787 +0.5469733 0.5509339 0.5385787 +0.5509339 0.5509339 0.5385787 +0.5547519 0.5509339 0.5385787 +0.5584371 0.5509339 0.5385787 +0.5619986 0.5509339 0.5385787 +0.5654443 0.5509339 0.5385787 +0.5687816 0.5509339 0.5385787 +0.092819 0.5547519 0.5385787 +0.2262531 0.5547519 0.5385787 +0.2875993 0.5547519 0.5385787 +0.3262122 0.5547519 0.5385787 +0.3544566 0.5547519 0.5385787 +0.3767383 0.5547519 0.5385787 +0.3951413 0.5547519 0.5385787 +0.4108177 0.5547519 0.5385787 +0.4244723 0.5547519 0.5385787 +0.4365675 0.5547519 0.5385787 +0.4474232 0.5547519 0.5385787 +0.45727 0.5547519 0.5385787 +0.4662797 0.5547519 0.5385787 +0.4745834 0.5547519 0.5385787 +0.4822838 0.5547519 0.5385787 +0.4894626 0.5547519 0.5385787 +0.4961862 0.5547519 0.5385787 +0.5025087 0.5547519 0.5385787 +0.5084753 0.5547519 0.5385787 +0.514124 0.5547519 0.5385787 +0.519487 0.5547519 0.5385787 +0.5245917 0.5547519 0.5385787 +0.529462 0.5547519 0.5385787 +0.5341183 0.5547519 0.5385787 +0.5385787 0.5547519 0.5385787 +0.5428591 0.5547519 0.5385787 +0.5469733 0.5547519 0.5385787 +0.5509339 0.5547519 0.5385787 +0.5547519 0.5547519 0.5385787 +0.5584371 0.5547519 0.5385787 +0.5619986 0.5547519 0.5385787 +0.5654443 0.5547519 0.5385787 +0.5687816 0.5547519 0.5385787 +0.092819 0.5584371 0.5385787 +0.2262531 0.5584371 0.5385787 +0.2875993 0.5584371 0.5385787 +0.3262122 0.5584371 0.5385787 +0.3544566 0.5584371 0.5385787 +0.3767383 0.5584371 0.5385787 +0.3951413 0.5584371 0.5385787 +0.4108177 0.5584371 0.5385787 +0.4244723 0.5584371 0.5385787 +0.4365675 0.5584371 0.5385787 +0.4474232 0.5584371 0.5385787 +0.45727 0.5584371 0.5385787 +0.4662797 0.5584371 0.5385787 +0.4745834 0.5584371 0.5385787 +0.4822838 0.5584371 0.5385787 +0.4894626 0.5584371 0.5385787 +0.4961862 0.5584371 0.5385787 +0.5025087 0.5584371 0.5385787 +0.5084753 0.5584371 0.5385787 +0.514124 0.5584371 0.5385787 +0.519487 0.5584371 0.5385787 +0.5245917 0.5584371 0.5385787 +0.529462 0.5584371 0.5385787 +0.5341183 0.5584371 0.5385787 +0.5385787 0.5584371 0.5385787 +0.5428591 0.5584371 0.5385787 +0.5469733 0.5584371 0.5385787 +0.5509339 0.5584371 0.5385787 +0.5547519 0.5584371 0.5385787 +0.5584371 0.5584371 0.5385787 +0.5619986 0.5584371 0.5385787 +0.5654443 0.5584371 0.5385787 +0.5687816 0.5584371 0.5385787 +0.092819 0.5619986 0.5385787 +0.2262531 0.5619986 0.5385787 +0.2875993 0.5619986 0.5385787 +0.3262122 0.5619986 0.5385787 +0.3544566 0.5619986 0.5385787 +0.3767383 0.5619986 0.5385787 +0.3951413 0.5619986 0.5385787 +0.4108177 0.5619986 0.5385787 +0.4244723 0.5619986 0.5385787 +0.4365675 0.5619986 0.5385787 +0.4474232 0.5619986 0.5385787 +0.45727 0.5619986 0.5385787 +0.4662797 0.5619986 0.5385787 +0.4745834 0.5619986 0.5385787 +0.4822838 0.5619986 0.5385787 +0.4894626 0.5619986 0.5385787 +0.4961862 0.5619986 0.5385787 +0.5025087 0.5619986 0.5385787 +0.5084753 0.5619986 0.5385787 +0.514124 0.5619986 0.5385787 +0.519487 0.5619986 0.5385787 +0.5245917 0.5619986 0.5385787 +0.529462 0.5619986 0.5385787 +0.5341183 0.5619986 0.5385787 +0.5385787 0.5619986 0.5385787 +0.5428591 0.5619986 0.5385787 +0.5469733 0.5619986 0.5385787 +0.5509339 0.5619986 0.5385787 +0.5547519 0.5619986 0.5385787 +0.5584371 0.5619986 0.5385787 +0.5619986 0.5619986 0.5385787 +0.5654443 0.5619986 0.5385787 +0.5687816 0.5619986 0.5385787 +0.092819 0.5654443 0.5385787 +0.2262531 0.5654443 0.5385787 +0.2875993 0.5654443 0.5385787 +0.3262122 0.5654443 0.5385787 +0.3544566 0.5654443 0.5385787 +0.3767383 0.5654443 0.5385787 +0.3951413 0.5654443 0.5385787 +0.4108177 0.5654443 0.5385787 +0.4244723 0.5654443 0.5385787 +0.4365675 0.5654443 0.5385787 +0.4474232 0.5654443 0.5385787 +0.45727 0.5654443 0.5385787 +0.4662797 0.5654443 0.5385787 +0.4745834 0.5654443 0.5385787 +0.4822838 0.5654443 0.5385787 +0.4894626 0.5654443 0.5385787 +0.4961862 0.5654443 0.5385787 +0.5025087 0.5654443 0.5385787 +0.5084753 0.5654443 0.5385787 +0.514124 0.5654443 0.5385787 +0.519487 0.5654443 0.5385787 +0.5245917 0.5654443 0.5385787 +0.529462 0.5654443 0.5385787 +0.5341183 0.5654443 0.5385787 +0.5385787 0.5654443 0.5385787 +0.5428591 0.5654443 0.5385787 +0.5469733 0.5654443 0.5385787 +0.5509339 0.5654443 0.5385787 +0.5547519 0.5654443 0.5385787 +0.5584371 0.5654443 0.5385787 +0.5619986 0.5654443 0.5385787 +0.5654443 0.5654443 0.5385787 +0.5687816 0.5654443 0.5385787 +0.092819 0.5687816 0.5385787 +0.2262531 0.5687816 0.5385787 +0.2875993 0.5687816 0.5385787 +0.3262122 0.5687816 0.5385787 +0.3544566 0.5687816 0.5385787 +0.3767383 0.5687816 0.5385787 +0.3951413 0.5687816 0.5385787 +0.4108177 0.5687816 0.5385787 +0.4244723 0.5687816 0.5385787 +0.4365675 0.5687816 0.5385787 +0.4474232 0.5687816 0.5385787 +0.45727 0.5687816 0.5385787 +0.4662797 0.5687816 0.5385787 +0.4745834 0.5687816 0.5385787 +0.4822838 0.5687816 0.5385787 +0.4894626 0.5687816 0.5385787 +0.4961862 0.5687816 0.5385787 +0.5025087 0.5687816 0.5385787 +0.5084753 0.5687816 0.5385787 +0.514124 0.5687816 0.5385787 +0.519487 0.5687816 0.5385787 +0.5245917 0.5687816 0.5385787 +0.529462 0.5687816 0.5385787 +0.5341183 0.5687816 0.5385787 +0.5385787 0.5687816 0.5385787 +0.5428591 0.5687816 0.5385787 +0.5469733 0.5687816 0.5385787 +0.5509339 0.5687816 0.5385787 +0.5547519 0.5687816 0.5385787 +0.5584371 0.5687816 0.5385787 +0.5619986 0.5687816 0.5385787 +0.5654443 0.5687816 0.5385787 +0.5687816 0.5687816 0.5385787 +0.092819 0.092819 0.5428591 +0.2262531 0.092819 0.5428591 +0.2875993 0.092819 0.5428591 +0.3262122 0.092819 0.5428591 +0.3544566 0.092819 0.5428591 +0.3767383 0.092819 0.5428591 +0.3951413 0.092819 0.5428591 +0.4108177 0.092819 0.5428591 +0.4244723 0.092819 0.5428591 +0.4365675 0.092819 0.5428591 +0.4474232 0.092819 0.5428591 +0.45727 0.092819 0.5428591 +0.4662797 0.092819 0.5428591 +0.4745834 0.092819 0.5428591 +0.4822838 0.092819 0.5428591 +0.4894626 0.092819 0.5428591 +0.4961862 0.092819 0.5428591 +0.5025087 0.092819 0.5428591 +0.5084753 0.092819 0.5428591 +0.514124 0.092819 0.5428591 +0.519487 0.092819 0.5428591 +0.5245917 0.092819 0.5428591 +0.529462 0.092819 0.5428591 +0.5341183 0.092819 0.5428591 +0.5385787 0.092819 0.5428591 +0.5428591 0.092819 0.5428591 +0.5469733 0.092819 0.5428591 +0.5509339 0.092819 0.5428591 +0.5547519 0.092819 0.5428591 +0.5584371 0.092819 0.5428591 +0.5619986 0.092819 0.5428591 +0.5654443 0.092819 0.5428591 +0.5687816 0.092819 0.5428591 +0.092819 0.2262531 0.5428591 +0.2262531 0.2262531 0.5428591 +0.2875993 0.2262531 0.5428591 +0.3262122 0.2262531 0.5428591 +0.3544566 0.2262531 0.5428591 +0.3767383 0.2262531 0.5428591 +0.3951413 0.2262531 0.5428591 +0.4108177 0.2262531 0.5428591 +0.4244723 0.2262531 0.5428591 +0.4365675 0.2262531 0.5428591 +0.4474232 0.2262531 0.5428591 +0.45727 0.2262531 0.5428591 +0.4662797 0.2262531 0.5428591 +0.4745834 0.2262531 0.5428591 +0.4822838 0.2262531 0.5428591 +0.4894626 0.2262531 0.5428591 +0.4961862 0.2262531 0.5428591 +0.5025087 0.2262531 0.5428591 +0.5084753 0.2262531 0.5428591 +0.514124 0.2262531 0.5428591 +0.519487 0.2262531 0.5428591 +0.5245917 0.2262531 0.5428591 +0.529462 0.2262531 0.5428591 +0.5341183 0.2262531 0.5428591 +0.5385787 0.2262531 0.5428591 +0.5428591 0.2262531 0.5428591 +0.5469733 0.2262531 0.5428591 +0.5509339 0.2262531 0.5428591 +0.5547519 0.2262531 0.5428591 +0.5584371 0.2262531 0.5428591 +0.5619986 0.2262531 0.5428591 +0.5654443 0.2262531 0.5428591 +0.5687816 0.2262531 0.5428591 +0.092819 0.2875993 0.5428591 +0.2262531 0.2875993 0.5428591 +0.2875993 0.2875993 0.5428591 +0.3262122 0.2875993 0.5428591 +0.3544566 0.2875993 0.5428591 +0.3767383 0.2875993 0.5428591 +0.3951413 0.2875993 0.5428591 +0.4108177 0.2875993 0.5428591 +0.4244723 0.2875993 0.5428591 +0.4365675 0.2875993 0.5428591 +0.4474232 0.2875993 0.5428591 +0.45727 0.2875993 0.5428591 +0.4662797 0.2875993 0.5428591 +0.4745834 0.2875993 0.5428591 +0.4822838 0.2875993 0.5428591 +0.4894626 0.2875993 0.5428591 +0.4961862 0.2875993 0.5428591 +0.5025087 0.2875993 0.5428591 +0.5084753 0.2875993 0.5428591 +0.514124 0.2875993 0.5428591 +0.519487 0.2875993 0.5428591 +0.5245917 0.2875993 0.5428591 +0.529462 0.2875993 0.5428591 +0.5341183 0.2875993 0.5428591 +0.5385787 0.2875993 0.5428591 +0.5428591 0.2875993 0.5428591 +0.5469733 0.2875993 0.5428591 +0.5509339 0.2875993 0.5428591 +0.5547519 0.2875993 0.5428591 +0.5584371 0.2875993 0.5428591 +0.5619986 0.2875993 0.5428591 +0.5654443 0.2875993 0.5428591 +0.5687816 0.2875993 0.5428591 +0.092819 0.3262122 0.5428591 +0.2262531 0.3262122 0.5428591 +0.2875993 0.3262122 0.5428591 +0.3262122 0.3262122 0.5428591 +0.3544566 0.3262122 0.5428591 +0.3767383 0.3262122 0.5428591 +0.3951413 0.3262122 0.5428591 +0.4108177 0.3262122 0.5428591 +0.4244723 0.3262122 0.5428591 +0.4365675 0.3262122 0.5428591 +0.4474232 0.3262122 0.5428591 +0.45727 0.3262122 0.5428591 +0.4662797 0.3262122 0.5428591 +0.4745834 0.3262122 0.5428591 +0.4822838 0.3262122 0.5428591 +0.4894626 0.3262122 0.5428591 +0.4961862 0.3262122 0.5428591 +0.5025087 0.3262122 0.5428591 +0.5084753 0.3262122 0.5428591 +0.514124 0.3262122 0.5428591 +0.519487 0.3262122 0.5428591 +0.5245917 0.3262122 0.5428591 +0.529462 0.3262122 0.5428591 +0.5341183 0.3262122 0.5428591 +0.5385787 0.3262122 0.5428591 +0.5428591 0.3262122 0.5428591 +0.5469733 0.3262122 0.5428591 +0.5509339 0.3262122 0.5428591 +0.5547519 0.3262122 0.5428591 +0.5584371 0.3262122 0.5428591 +0.5619986 0.3262122 0.5428591 +0.5654443 0.3262122 0.5428591 +0.5687816 0.3262122 0.5428591 +0.092819 0.3544566 0.5428591 +0.2262531 0.3544566 0.5428591 +0.2875993 0.3544566 0.5428591 +0.3262122 0.3544566 0.5428591 +0.3544566 0.3544566 0.5428591 +0.3767383 0.3544566 0.5428591 +0.3951413 0.3544566 0.5428591 +0.4108177 0.3544566 0.5428591 +0.4244723 0.3544566 0.5428591 +0.4365675 0.3544566 0.5428591 +0.4474232 0.3544566 0.5428591 +0.45727 0.3544566 0.5428591 +0.4662797 0.3544566 0.5428591 +0.4745834 0.3544566 0.5428591 +0.4822838 0.3544566 0.5428591 +0.4894626 0.3544566 0.5428591 +0.4961862 0.3544566 0.5428591 +0.5025087 0.3544566 0.5428591 +0.5084753 0.3544566 0.5428591 +0.514124 0.3544566 0.5428591 +0.519487 0.3544566 0.5428591 +0.5245917 0.3544566 0.5428591 +0.529462 0.3544566 0.5428591 +0.5341183 0.3544566 0.5428591 +0.5385787 0.3544566 0.5428591 +0.5428591 0.3544566 0.5428591 +0.5469733 0.3544566 0.5428591 +0.5509339 0.3544566 0.5428591 +0.5547519 0.3544566 0.5428591 +0.5584371 0.3544566 0.5428591 +0.5619986 0.3544566 0.5428591 +0.5654443 0.3544566 0.5428591 +0.5687816 0.3544566 0.5428591 +0.092819 0.3767383 0.5428591 +0.2262531 0.3767383 0.5428591 +0.2875993 0.3767383 0.5428591 +0.3262122 0.3767383 0.5428591 +0.3544566 0.3767383 0.5428591 +0.3767383 0.3767383 0.5428591 +0.3951413 0.3767383 0.5428591 +0.4108177 0.3767383 0.5428591 +0.4244723 0.3767383 0.5428591 +0.4365675 0.3767383 0.5428591 +0.4474232 0.3767383 0.5428591 +0.45727 0.3767383 0.5428591 +0.4662797 0.3767383 0.5428591 +0.4745834 0.3767383 0.5428591 +0.4822838 0.3767383 0.5428591 +0.4894626 0.3767383 0.5428591 +0.4961862 0.3767383 0.5428591 +0.5025087 0.3767383 0.5428591 +0.5084753 0.3767383 0.5428591 +0.514124 0.3767383 0.5428591 +0.519487 0.3767383 0.5428591 +0.5245917 0.3767383 0.5428591 +0.529462 0.3767383 0.5428591 +0.5341183 0.3767383 0.5428591 +0.5385787 0.3767383 0.5428591 +0.5428591 0.3767383 0.5428591 +0.5469733 0.3767383 0.5428591 +0.5509339 0.3767383 0.5428591 +0.5547519 0.3767383 0.5428591 +0.5584371 0.3767383 0.5428591 +0.5619986 0.3767383 0.5428591 +0.5654443 0.3767383 0.5428591 +0.5687816 0.3767383 0.5428591 +0.092819 0.3951413 0.5428591 +0.2262531 0.3951413 0.5428591 +0.2875993 0.3951413 0.5428591 +0.3262122 0.3951413 0.5428591 +0.3544566 0.3951413 0.5428591 +0.3767383 0.3951413 0.5428591 +0.3951413 0.3951413 0.5428591 +0.4108177 0.3951413 0.5428591 +0.4244723 0.3951413 0.5428591 +0.4365675 0.3951413 0.5428591 +0.4474232 0.3951413 0.5428591 +0.45727 0.3951413 0.5428591 +0.4662797 0.3951413 0.5428591 +0.4745834 0.3951413 0.5428591 +0.4822838 0.3951413 0.5428591 +0.4894626 0.3951413 0.5428591 +0.4961862 0.3951413 0.5428591 +0.5025087 0.3951413 0.5428591 +0.5084753 0.3951413 0.5428591 +0.514124 0.3951413 0.5428591 +0.519487 0.3951413 0.5428591 +0.5245917 0.3951413 0.5428591 +0.529462 0.3951413 0.5428591 +0.5341183 0.3951413 0.5428591 +0.5385787 0.3951413 0.5428591 +0.5428591 0.3951413 0.5428591 +0.5469733 0.3951413 0.5428591 +0.5509339 0.3951413 0.5428591 +0.5547519 0.3951413 0.5428591 +0.5584371 0.3951413 0.5428591 +0.5619986 0.3951413 0.5428591 +0.5654443 0.3951413 0.5428591 +0.5687816 0.3951413 0.5428591 +0.092819 0.4108177 0.5428591 +0.2262531 0.4108177 0.5428591 +0.2875993 0.4108177 0.5428591 +0.3262122 0.4108177 0.5428591 +0.3544566 0.4108177 0.5428591 +0.3767383 0.4108177 0.5428591 +0.3951413 0.4108177 0.5428591 +0.4108177 0.4108177 0.5428591 +0.4244723 0.4108177 0.5428591 +0.4365675 0.4108177 0.5428591 +0.4474232 0.4108177 0.5428591 +0.45727 0.4108177 0.5428591 +0.4662797 0.4108177 0.5428591 +0.4745834 0.4108177 0.5428591 +0.4822838 0.4108177 0.5428591 +0.4894626 0.4108177 0.5428591 +0.4961862 0.4108177 0.5428591 +0.5025087 0.4108177 0.5428591 +0.5084753 0.4108177 0.5428591 +0.514124 0.4108177 0.5428591 +0.519487 0.4108177 0.5428591 +0.5245917 0.4108177 0.5428591 +0.529462 0.4108177 0.5428591 +0.5341183 0.4108177 0.5428591 +0.5385787 0.4108177 0.5428591 +0.5428591 0.4108177 0.5428591 +0.5469733 0.4108177 0.5428591 +0.5509339 0.4108177 0.5428591 +0.5547519 0.4108177 0.5428591 +0.5584371 0.4108177 0.5428591 +0.5619986 0.4108177 0.5428591 +0.5654443 0.4108177 0.5428591 +0.5687816 0.4108177 0.5428591 +0.092819 0.4244723 0.5428591 +0.2262531 0.4244723 0.5428591 +0.2875993 0.4244723 0.5428591 +0.3262122 0.4244723 0.5428591 +0.3544566 0.4244723 0.5428591 +0.3767383 0.4244723 0.5428591 +0.3951413 0.4244723 0.5428591 +0.4108177 0.4244723 0.5428591 +0.4244723 0.4244723 0.5428591 +0.4365675 0.4244723 0.5428591 +0.4474232 0.4244723 0.5428591 +0.45727 0.4244723 0.5428591 +0.4662797 0.4244723 0.5428591 +0.4745834 0.4244723 0.5428591 +0.4822838 0.4244723 0.5428591 +0.4894626 0.4244723 0.5428591 +0.4961862 0.4244723 0.5428591 +0.5025087 0.4244723 0.5428591 +0.5084753 0.4244723 0.5428591 +0.514124 0.4244723 0.5428591 +0.519487 0.4244723 0.5428591 +0.5245917 0.4244723 0.5428591 +0.529462 0.4244723 0.5428591 +0.5341183 0.4244723 0.5428591 +0.5385787 0.4244723 0.5428591 +0.5428591 0.4244723 0.5428591 +0.5469733 0.4244723 0.5428591 +0.5509339 0.4244723 0.5428591 +0.5547519 0.4244723 0.5428591 +0.5584371 0.4244723 0.5428591 +0.5619986 0.4244723 0.5428591 +0.5654443 0.4244723 0.5428591 +0.5687816 0.4244723 0.5428591 +0.092819 0.4365675 0.5428591 +0.2262531 0.4365675 0.5428591 +0.2875993 0.4365675 0.5428591 +0.3262122 0.4365675 0.5428591 +0.3544566 0.4365675 0.5428591 +0.3767383 0.4365675 0.5428591 +0.3951413 0.4365675 0.5428591 +0.4108177 0.4365675 0.5428591 +0.4244723 0.4365675 0.5428591 +0.4365675 0.4365675 0.5428591 +0.4474232 0.4365675 0.5428591 +0.45727 0.4365675 0.5428591 +0.4662797 0.4365675 0.5428591 +0.4745834 0.4365675 0.5428591 +0.4822838 0.4365675 0.5428591 +0.4894626 0.4365675 0.5428591 +0.4961862 0.4365675 0.5428591 +0.5025087 0.4365675 0.5428591 +0.5084753 0.4365675 0.5428591 +0.514124 0.4365675 0.5428591 +0.519487 0.4365675 0.5428591 +0.5245917 0.4365675 0.5428591 +0.529462 0.4365675 0.5428591 +0.5341183 0.4365675 0.5428591 +0.5385787 0.4365675 0.5428591 +0.5428591 0.4365675 0.5428591 +0.5469733 0.4365675 0.5428591 +0.5509339 0.4365675 0.5428591 +0.5547519 0.4365675 0.5428591 +0.5584371 0.4365675 0.5428591 +0.5619986 0.4365675 0.5428591 +0.5654443 0.4365675 0.5428591 +0.5687816 0.4365675 0.5428591 +0.092819 0.4474232 0.5428591 +0.2262531 0.4474232 0.5428591 +0.2875993 0.4474232 0.5428591 +0.3262122 0.4474232 0.5428591 +0.3544566 0.4474232 0.5428591 +0.3767383 0.4474232 0.5428591 +0.3951413 0.4474232 0.5428591 +0.4108177 0.4474232 0.5428591 +0.4244723 0.4474232 0.5428591 +0.4365675 0.4474232 0.5428591 +0.4474232 0.4474232 0.5428591 +0.45727 0.4474232 0.5428591 +0.4662797 0.4474232 0.5428591 +0.4745834 0.4474232 0.5428591 +0.4822838 0.4474232 0.5428591 +0.4894626 0.4474232 0.5428591 +0.4961862 0.4474232 0.5428591 +0.5025087 0.4474232 0.5428591 +0.5084753 0.4474232 0.5428591 +0.514124 0.4474232 0.5428591 +0.519487 0.4474232 0.5428591 +0.5245917 0.4474232 0.5428591 +0.529462 0.4474232 0.5428591 +0.5341183 0.4474232 0.5428591 +0.5385787 0.4474232 0.5428591 +0.5428591 0.4474232 0.5428591 +0.5469733 0.4474232 0.5428591 +0.5509339 0.4474232 0.5428591 +0.5547519 0.4474232 0.5428591 +0.5584371 0.4474232 0.5428591 +0.5619986 0.4474232 0.5428591 +0.5654443 0.4474232 0.5428591 +0.5687816 0.4474232 0.5428591 +0.092819 0.45727 0.5428591 +0.2262531 0.45727 0.5428591 +0.2875993 0.45727 0.5428591 +0.3262122 0.45727 0.5428591 +0.3544566 0.45727 0.5428591 +0.3767383 0.45727 0.5428591 +0.3951413 0.45727 0.5428591 +0.4108177 0.45727 0.5428591 +0.4244723 0.45727 0.5428591 +0.4365675 0.45727 0.5428591 +0.4474232 0.45727 0.5428591 +0.45727 0.45727 0.5428591 +0.4662797 0.45727 0.5428591 +0.4745834 0.45727 0.5428591 +0.4822838 0.45727 0.5428591 +0.4894626 0.45727 0.5428591 +0.4961862 0.45727 0.5428591 +0.5025087 0.45727 0.5428591 +0.5084753 0.45727 0.5428591 +0.514124 0.45727 0.5428591 +0.519487 0.45727 0.5428591 +0.5245917 0.45727 0.5428591 +0.529462 0.45727 0.5428591 +0.5341183 0.45727 0.5428591 +0.5385787 0.45727 0.5428591 +0.5428591 0.45727 0.5428591 +0.5469733 0.45727 0.5428591 +0.5509339 0.45727 0.5428591 +0.5547519 0.45727 0.5428591 +0.5584371 0.45727 0.5428591 +0.5619986 0.45727 0.5428591 +0.5654443 0.45727 0.5428591 +0.5687816 0.45727 0.5428591 +0.092819 0.4662797 0.5428591 +0.2262531 0.4662797 0.5428591 +0.2875993 0.4662797 0.5428591 +0.3262122 0.4662797 0.5428591 +0.3544566 0.4662797 0.5428591 +0.3767383 0.4662797 0.5428591 +0.3951413 0.4662797 0.5428591 +0.4108177 0.4662797 0.5428591 +0.4244723 0.4662797 0.5428591 +0.4365675 0.4662797 0.5428591 +0.4474232 0.4662797 0.5428591 +0.45727 0.4662797 0.5428591 +0.4662797 0.4662797 0.5428591 +0.4745834 0.4662797 0.5428591 +0.4822838 0.4662797 0.5428591 +0.4894626 0.4662797 0.5428591 +0.4961862 0.4662797 0.5428591 +0.5025087 0.4662797 0.5428591 +0.5084753 0.4662797 0.5428591 +0.514124 0.4662797 0.5428591 +0.519487 0.4662797 0.5428591 +0.5245917 0.4662797 0.5428591 +0.529462 0.4662797 0.5428591 +0.5341183 0.4662797 0.5428591 +0.5385787 0.4662797 0.5428591 +0.5428591 0.4662797 0.5428591 +0.5469733 0.4662797 0.5428591 +0.5509339 0.4662797 0.5428591 +0.5547519 0.4662797 0.5428591 +0.5584371 0.4662797 0.5428591 +0.5619986 0.4662797 0.5428591 +0.5654443 0.4662797 0.5428591 +0.5687816 0.4662797 0.5428591 +0.092819 0.4745834 0.5428591 +0.2262531 0.4745834 0.5428591 +0.2875993 0.4745834 0.5428591 +0.3262122 0.4745834 0.5428591 +0.3544566 0.4745834 0.5428591 +0.3767383 0.4745834 0.5428591 +0.3951413 0.4745834 0.5428591 +0.4108177 0.4745834 0.5428591 +0.4244723 0.4745834 0.5428591 +0.4365675 0.4745834 0.5428591 +0.4474232 0.4745834 0.5428591 +0.45727 0.4745834 0.5428591 +0.4662797 0.4745834 0.5428591 +0.4745834 0.4745834 0.5428591 +0.4822838 0.4745834 0.5428591 +0.4894626 0.4745834 0.5428591 +0.4961862 0.4745834 0.5428591 +0.5025087 0.4745834 0.5428591 +0.5084753 0.4745834 0.5428591 +0.514124 0.4745834 0.5428591 +0.519487 0.4745834 0.5428591 +0.5245917 0.4745834 0.5428591 +0.529462 0.4745834 0.5428591 +0.5341183 0.4745834 0.5428591 +0.5385787 0.4745834 0.5428591 +0.5428591 0.4745834 0.5428591 +0.5469733 0.4745834 0.5428591 +0.5509339 0.4745834 0.5428591 +0.5547519 0.4745834 0.5428591 +0.5584371 0.4745834 0.5428591 +0.5619986 0.4745834 0.5428591 +0.5654443 0.4745834 0.5428591 +0.5687816 0.4745834 0.5428591 +0.092819 0.4822838 0.5428591 +0.2262531 0.4822838 0.5428591 +0.2875993 0.4822838 0.5428591 +0.3262122 0.4822838 0.5428591 +0.3544566 0.4822838 0.5428591 +0.3767383 0.4822838 0.5428591 +0.3951413 0.4822838 0.5428591 +0.4108177 0.4822838 0.5428591 +0.4244723 0.4822838 0.5428591 +0.4365675 0.4822838 0.5428591 +0.4474232 0.4822838 0.5428591 +0.45727 0.4822838 0.5428591 +0.4662797 0.4822838 0.5428591 +0.4745834 0.4822838 0.5428591 +0.4822838 0.4822838 0.5428591 +0.4894626 0.4822838 0.5428591 +0.4961862 0.4822838 0.5428591 +0.5025087 0.4822838 0.5428591 +0.5084753 0.4822838 0.5428591 +0.514124 0.4822838 0.5428591 +0.519487 0.4822838 0.5428591 +0.5245917 0.4822838 0.5428591 +0.529462 0.4822838 0.5428591 +0.5341183 0.4822838 0.5428591 +0.5385787 0.4822838 0.5428591 +0.5428591 0.4822838 0.5428591 +0.5469733 0.4822838 0.5428591 +0.5509339 0.4822838 0.5428591 +0.5547519 0.4822838 0.5428591 +0.5584371 0.4822838 0.5428591 +0.5619986 0.4822838 0.5428591 +0.5654443 0.4822838 0.5428591 +0.5687816 0.4822838 0.5428591 +0.092819 0.4894626 0.5428591 +0.2262531 0.4894626 0.5428591 +0.2875993 0.4894626 0.5428591 +0.3262122 0.4894626 0.5428591 +0.3544566 0.4894626 0.5428591 +0.3767383 0.4894626 0.5428591 +0.3951413 0.4894626 0.5428591 +0.4108177 0.4894626 0.5428591 +0.4244723 0.4894626 0.5428591 +0.4365675 0.4894626 0.5428591 +0.4474232 0.4894626 0.5428591 +0.45727 0.4894626 0.5428591 +0.4662797 0.4894626 0.5428591 +0.4745834 0.4894626 0.5428591 +0.4822838 0.4894626 0.5428591 +0.4894626 0.4894626 0.5428591 +0.4961862 0.4894626 0.5428591 +0.5025087 0.4894626 0.5428591 +0.5084753 0.4894626 0.5428591 +0.514124 0.4894626 0.5428591 +0.519487 0.4894626 0.5428591 +0.5245917 0.4894626 0.5428591 +0.529462 0.4894626 0.5428591 +0.5341183 0.4894626 0.5428591 +0.5385787 0.4894626 0.5428591 +0.5428591 0.4894626 0.5428591 +0.5469733 0.4894626 0.5428591 +0.5509339 0.4894626 0.5428591 +0.5547519 0.4894626 0.5428591 +0.5584371 0.4894626 0.5428591 +0.5619986 0.4894626 0.5428591 +0.5654443 0.4894626 0.5428591 +0.5687816 0.4894626 0.5428591 +0.092819 0.4961862 0.5428591 +0.2262531 0.4961862 0.5428591 +0.2875993 0.4961862 0.5428591 +0.3262122 0.4961862 0.5428591 +0.3544566 0.4961862 0.5428591 +0.3767383 0.4961862 0.5428591 +0.3951413 0.4961862 0.5428591 +0.4108177 0.4961862 0.5428591 +0.4244723 0.4961862 0.5428591 +0.4365675 0.4961862 0.5428591 +0.4474232 0.4961862 0.5428591 +0.45727 0.4961862 0.5428591 +0.4662797 0.4961862 0.5428591 +0.4745834 0.4961862 0.5428591 +0.4822838 0.4961862 0.5428591 +0.4894626 0.4961862 0.5428591 +0.4961862 0.4961862 0.5428591 +0.5025087 0.4961862 0.5428591 +0.5084753 0.4961862 0.5428591 +0.514124 0.4961862 0.5428591 +0.519487 0.4961862 0.5428591 +0.5245917 0.4961862 0.5428591 +0.529462 0.4961862 0.5428591 +0.5341183 0.4961862 0.5428591 +0.5385787 0.4961862 0.5428591 +0.5428591 0.4961862 0.5428591 +0.5469733 0.4961862 0.5428591 +0.5509339 0.4961862 0.5428591 +0.5547519 0.4961862 0.5428591 +0.5584371 0.4961862 0.5428591 +0.5619986 0.4961862 0.5428591 +0.5654443 0.4961862 0.5428591 +0.5687816 0.4961862 0.5428591 +0.092819 0.5025087 0.5428591 +0.2262531 0.5025087 0.5428591 +0.2875993 0.5025087 0.5428591 +0.3262122 0.5025087 0.5428591 +0.3544566 0.5025087 0.5428591 +0.3767383 0.5025087 0.5428591 +0.3951413 0.5025087 0.5428591 +0.4108177 0.5025087 0.5428591 +0.4244723 0.5025087 0.5428591 +0.4365675 0.5025087 0.5428591 +0.4474232 0.5025087 0.5428591 +0.45727 0.5025087 0.5428591 +0.4662797 0.5025087 0.5428591 +0.4745834 0.5025087 0.5428591 +0.4822838 0.5025087 0.5428591 +0.4894626 0.5025087 0.5428591 +0.4961862 0.5025087 0.5428591 +0.5025087 0.5025087 0.5428591 +0.5084753 0.5025087 0.5428591 +0.514124 0.5025087 0.5428591 +0.519487 0.5025087 0.5428591 +0.5245917 0.5025087 0.5428591 +0.529462 0.5025087 0.5428591 +0.5341183 0.5025087 0.5428591 +0.5385787 0.5025087 0.5428591 +0.5428591 0.5025087 0.5428591 +0.5469733 0.5025087 0.5428591 +0.5509339 0.5025087 0.5428591 +0.5547519 0.5025087 0.5428591 +0.5584371 0.5025087 0.5428591 +0.5619986 0.5025087 0.5428591 +0.5654443 0.5025087 0.5428591 +0.5687816 0.5025087 0.5428591 +0.092819 0.5084753 0.5428591 +0.2262531 0.5084753 0.5428591 +0.2875993 0.5084753 0.5428591 +0.3262122 0.5084753 0.5428591 +0.3544566 0.5084753 0.5428591 +0.3767383 0.5084753 0.5428591 +0.3951413 0.5084753 0.5428591 +0.4108177 0.5084753 0.5428591 +0.4244723 0.5084753 0.5428591 +0.4365675 0.5084753 0.5428591 +0.4474232 0.5084753 0.5428591 +0.45727 0.5084753 0.5428591 +0.4662797 0.5084753 0.5428591 +0.4745834 0.5084753 0.5428591 +0.4822838 0.5084753 0.5428591 +0.4894626 0.5084753 0.5428591 +0.4961862 0.5084753 0.5428591 +0.5025087 0.5084753 0.5428591 +0.5084753 0.5084753 0.5428591 +0.514124 0.5084753 0.5428591 +0.519487 0.5084753 0.5428591 +0.5245917 0.5084753 0.5428591 +0.529462 0.5084753 0.5428591 +0.5341183 0.5084753 0.5428591 +0.5385787 0.5084753 0.5428591 +0.5428591 0.5084753 0.5428591 +0.5469733 0.5084753 0.5428591 +0.5509339 0.5084753 0.5428591 +0.5547519 0.5084753 0.5428591 +0.5584371 0.5084753 0.5428591 +0.5619986 0.5084753 0.5428591 +0.5654443 0.5084753 0.5428591 +0.5687816 0.5084753 0.5428591 +0.092819 0.514124 0.5428591 +0.2262531 0.514124 0.5428591 +0.2875993 0.514124 0.5428591 +0.3262122 0.514124 0.5428591 +0.3544566 0.514124 0.5428591 +0.3767383 0.514124 0.5428591 +0.3951413 0.514124 0.5428591 +0.4108177 0.514124 0.5428591 +0.4244723 0.514124 0.5428591 +0.4365675 0.514124 0.5428591 +0.4474232 0.514124 0.5428591 +0.45727 0.514124 0.5428591 +0.4662797 0.514124 0.5428591 +0.4745834 0.514124 0.5428591 +0.4822838 0.514124 0.5428591 +0.4894626 0.514124 0.5428591 +0.4961862 0.514124 0.5428591 +0.5025087 0.514124 0.5428591 +0.5084753 0.514124 0.5428591 +0.514124 0.514124 0.5428591 +0.519487 0.514124 0.5428591 +0.5245917 0.514124 0.5428591 +0.529462 0.514124 0.5428591 +0.5341183 0.514124 0.5428591 +0.5385787 0.514124 0.5428591 +0.5428591 0.514124 0.5428591 +0.5469733 0.514124 0.5428591 +0.5509339 0.514124 0.5428591 +0.5547519 0.514124 0.5428591 +0.5584371 0.514124 0.5428591 +0.5619986 0.514124 0.5428591 +0.5654443 0.514124 0.5428591 +0.5687816 0.514124 0.5428591 +0.092819 0.519487 0.5428591 +0.2262531 0.519487 0.5428591 +0.2875993 0.519487 0.5428591 +0.3262122 0.519487 0.5428591 +0.3544566 0.519487 0.5428591 +0.3767383 0.519487 0.5428591 +0.3951413 0.519487 0.5428591 +0.4108177 0.519487 0.5428591 +0.4244723 0.519487 0.5428591 +0.4365675 0.519487 0.5428591 +0.4474232 0.519487 0.5428591 +0.45727 0.519487 0.5428591 +0.4662797 0.519487 0.5428591 +0.4745834 0.519487 0.5428591 +0.4822838 0.519487 0.5428591 +0.4894626 0.519487 0.5428591 +0.4961862 0.519487 0.5428591 +0.5025087 0.519487 0.5428591 +0.5084753 0.519487 0.5428591 +0.514124 0.519487 0.5428591 +0.519487 0.519487 0.5428591 +0.5245917 0.519487 0.5428591 +0.529462 0.519487 0.5428591 +0.5341183 0.519487 0.5428591 +0.5385787 0.519487 0.5428591 +0.5428591 0.519487 0.5428591 +0.5469733 0.519487 0.5428591 +0.5509339 0.519487 0.5428591 +0.5547519 0.519487 0.5428591 +0.5584371 0.519487 0.5428591 +0.5619986 0.519487 0.5428591 +0.5654443 0.519487 0.5428591 +0.5687816 0.519487 0.5428591 +0.092819 0.5245917 0.5428591 +0.2262531 0.5245917 0.5428591 +0.2875993 0.5245917 0.5428591 +0.3262122 0.5245917 0.5428591 +0.3544566 0.5245917 0.5428591 +0.3767383 0.5245917 0.5428591 +0.3951413 0.5245917 0.5428591 +0.4108177 0.5245917 0.5428591 +0.4244723 0.5245917 0.5428591 +0.4365675 0.5245917 0.5428591 +0.4474232 0.5245917 0.5428591 +0.45727 0.5245917 0.5428591 +0.4662797 0.5245917 0.5428591 +0.4745834 0.5245917 0.5428591 +0.4822838 0.5245917 0.5428591 +0.4894626 0.5245917 0.5428591 +0.4961862 0.5245917 0.5428591 +0.5025087 0.5245917 0.5428591 +0.5084753 0.5245917 0.5428591 +0.514124 0.5245917 0.5428591 +0.519487 0.5245917 0.5428591 +0.5245917 0.5245917 0.5428591 +0.529462 0.5245917 0.5428591 +0.5341183 0.5245917 0.5428591 +0.5385787 0.5245917 0.5428591 +0.5428591 0.5245917 0.5428591 +0.5469733 0.5245917 0.5428591 +0.5509339 0.5245917 0.5428591 +0.5547519 0.5245917 0.5428591 +0.5584371 0.5245917 0.5428591 +0.5619986 0.5245917 0.5428591 +0.5654443 0.5245917 0.5428591 +0.5687816 0.5245917 0.5428591 +0.092819 0.529462 0.5428591 +0.2262531 0.529462 0.5428591 +0.2875993 0.529462 0.5428591 +0.3262122 0.529462 0.5428591 +0.3544566 0.529462 0.5428591 +0.3767383 0.529462 0.5428591 +0.3951413 0.529462 0.5428591 +0.4108177 0.529462 0.5428591 +0.4244723 0.529462 0.5428591 +0.4365675 0.529462 0.5428591 +0.4474232 0.529462 0.5428591 +0.45727 0.529462 0.5428591 +0.4662797 0.529462 0.5428591 +0.4745834 0.529462 0.5428591 +0.4822838 0.529462 0.5428591 +0.4894626 0.529462 0.5428591 +0.4961862 0.529462 0.5428591 +0.5025087 0.529462 0.5428591 +0.5084753 0.529462 0.5428591 +0.514124 0.529462 0.5428591 +0.519487 0.529462 0.5428591 +0.5245917 0.529462 0.5428591 +0.529462 0.529462 0.5428591 +0.5341183 0.529462 0.5428591 +0.5385787 0.529462 0.5428591 +0.5428591 0.529462 0.5428591 +0.5469733 0.529462 0.5428591 +0.5509339 0.529462 0.5428591 +0.5547519 0.529462 0.5428591 +0.5584371 0.529462 0.5428591 +0.5619986 0.529462 0.5428591 +0.5654443 0.529462 0.5428591 +0.5687816 0.529462 0.5428591 +0.092819 0.5341183 0.5428591 +0.2262531 0.5341183 0.5428591 +0.2875993 0.5341183 0.5428591 +0.3262122 0.5341183 0.5428591 +0.3544566 0.5341183 0.5428591 +0.3767383 0.5341183 0.5428591 +0.3951413 0.5341183 0.5428591 +0.4108177 0.5341183 0.5428591 +0.4244723 0.5341183 0.5428591 +0.4365675 0.5341183 0.5428591 +0.4474232 0.5341183 0.5428591 +0.45727 0.5341183 0.5428591 +0.4662797 0.5341183 0.5428591 +0.4745834 0.5341183 0.5428591 +0.4822838 0.5341183 0.5428591 +0.4894626 0.5341183 0.5428591 +0.4961862 0.5341183 0.5428591 +0.5025087 0.5341183 0.5428591 +0.5084753 0.5341183 0.5428591 +0.514124 0.5341183 0.5428591 +0.519487 0.5341183 0.5428591 +0.5245917 0.5341183 0.5428591 +0.529462 0.5341183 0.5428591 +0.5341183 0.5341183 0.5428591 +0.5385787 0.5341183 0.5428591 +0.5428591 0.5341183 0.5428591 +0.5469733 0.5341183 0.5428591 +0.5509339 0.5341183 0.5428591 +0.5547519 0.5341183 0.5428591 +0.5584371 0.5341183 0.5428591 +0.5619986 0.5341183 0.5428591 +0.5654443 0.5341183 0.5428591 +0.5687816 0.5341183 0.5428591 +0.092819 0.5385787 0.5428591 +0.2262531 0.5385787 0.5428591 +0.2875993 0.5385787 0.5428591 +0.3262122 0.5385787 0.5428591 +0.3544566 0.5385787 0.5428591 +0.3767383 0.5385787 0.5428591 +0.3951413 0.5385787 0.5428591 +0.4108177 0.5385787 0.5428591 +0.4244723 0.5385787 0.5428591 +0.4365675 0.5385787 0.5428591 +0.4474232 0.5385787 0.5428591 +0.45727 0.5385787 0.5428591 +0.4662797 0.5385787 0.5428591 +0.4745834 0.5385787 0.5428591 +0.4822838 0.5385787 0.5428591 +0.4894626 0.5385787 0.5428591 +0.4961862 0.5385787 0.5428591 +0.5025087 0.5385787 0.5428591 +0.5084753 0.5385787 0.5428591 +0.514124 0.5385787 0.5428591 +0.519487 0.5385787 0.5428591 +0.5245917 0.5385787 0.5428591 +0.529462 0.5385787 0.5428591 +0.5341183 0.5385787 0.5428591 +0.5385787 0.5385787 0.5428591 +0.5428591 0.5385787 0.5428591 +0.5469733 0.5385787 0.5428591 +0.5509339 0.5385787 0.5428591 +0.5547519 0.5385787 0.5428591 +0.5584371 0.5385787 0.5428591 +0.5619986 0.5385787 0.5428591 +0.5654443 0.5385787 0.5428591 +0.5687816 0.5385787 0.5428591 +0.092819 0.5428591 0.5428591 +0.2262531 0.5428591 0.5428591 +0.2875993 0.5428591 0.5428591 +0.3262122 0.5428591 0.5428591 +0.3544566 0.5428591 0.5428591 +0.3767383 0.5428591 0.5428591 +0.3951413 0.5428591 0.5428591 +0.4108177 0.5428591 0.5428591 +0.4244723 0.5428591 0.5428591 +0.4365675 0.5428591 0.5428591 +0.4474232 0.5428591 0.5428591 +0.45727 0.5428591 0.5428591 +0.4662797 0.5428591 0.5428591 +0.4745834 0.5428591 0.5428591 +0.4822838 0.5428591 0.5428591 +0.4894626 0.5428591 0.5428591 +0.4961862 0.5428591 0.5428591 +0.5025087 0.5428591 0.5428591 +0.5084753 0.5428591 0.5428591 +0.514124 0.5428591 0.5428591 +0.519487 0.5428591 0.5428591 +0.5245917 0.5428591 0.5428591 +0.529462 0.5428591 0.5428591 +0.5341183 0.5428591 0.5428591 +0.5385787 0.5428591 0.5428591 +0.5428591 0.5428591 0.5428591 +0.5469733 0.5428591 0.5428591 +0.5509339 0.5428591 0.5428591 +0.5547519 0.5428591 0.5428591 +0.5584371 0.5428591 0.5428591 +0.5619986 0.5428591 0.5428591 +0.5654443 0.5428591 0.5428591 +0.5687816 0.5428591 0.5428591 +0.092819 0.5469733 0.5428591 +0.2262531 0.5469733 0.5428591 +0.2875993 0.5469733 0.5428591 +0.3262122 0.5469733 0.5428591 +0.3544566 0.5469733 0.5428591 +0.3767383 0.5469733 0.5428591 +0.3951413 0.5469733 0.5428591 +0.4108177 0.5469733 0.5428591 +0.4244723 0.5469733 0.5428591 +0.4365675 0.5469733 0.5428591 +0.4474232 0.5469733 0.5428591 +0.45727 0.5469733 0.5428591 +0.4662797 0.5469733 0.5428591 +0.4745834 0.5469733 0.5428591 +0.4822838 0.5469733 0.5428591 +0.4894626 0.5469733 0.5428591 +0.4961862 0.5469733 0.5428591 +0.5025087 0.5469733 0.5428591 +0.5084753 0.5469733 0.5428591 +0.514124 0.5469733 0.5428591 +0.519487 0.5469733 0.5428591 +0.5245917 0.5469733 0.5428591 +0.529462 0.5469733 0.5428591 +0.5341183 0.5469733 0.5428591 +0.5385787 0.5469733 0.5428591 +0.5428591 0.5469733 0.5428591 +0.5469733 0.5469733 0.5428591 +0.5509339 0.5469733 0.5428591 +0.5547519 0.5469733 0.5428591 +0.5584371 0.5469733 0.5428591 +0.5619986 0.5469733 0.5428591 +0.5654443 0.5469733 0.5428591 +0.5687816 0.5469733 0.5428591 +0.092819 0.5509339 0.5428591 +0.2262531 0.5509339 0.5428591 +0.2875993 0.5509339 0.5428591 +0.3262122 0.5509339 0.5428591 +0.3544566 0.5509339 0.5428591 +0.3767383 0.5509339 0.5428591 +0.3951413 0.5509339 0.5428591 +0.4108177 0.5509339 0.5428591 +0.4244723 0.5509339 0.5428591 +0.4365675 0.5509339 0.5428591 +0.4474232 0.5509339 0.5428591 +0.45727 0.5509339 0.5428591 +0.4662797 0.5509339 0.5428591 +0.4745834 0.5509339 0.5428591 +0.4822838 0.5509339 0.5428591 +0.4894626 0.5509339 0.5428591 +0.4961862 0.5509339 0.5428591 +0.5025087 0.5509339 0.5428591 +0.5084753 0.5509339 0.5428591 +0.514124 0.5509339 0.5428591 +0.519487 0.5509339 0.5428591 +0.5245917 0.5509339 0.5428591 +0.529462 0.5509339 0.5428591 +0.5341183 0.5509339 0.5428591 +0.5385787 0.5509339 0.5428591 +0.5428591 0.5509339 0.5428591 +0.5469733 0.5509339 0.5428591 +0.5509339 0.5509339 0.5428591 +0.5547519 0.5509339 0.5428591 +0.5584371 0.5509339 0.5428591 +0.5619986 0.5509339 0.5428591 +0.5654443 0.5509339 0.5428591 +0.5687816 0.5509339 0.5428591 +0.092819 0.5547519 0.5428591 +0.2262531 0.5547519 0.5428591 +0.2875993 0.5547519 0.5428591 +0.3262122 0.5547519 0.5428591 +0.3544566 0.5547519 0.5428591 +0.3767383 0.5547519 0.5428591 +0.3951413 0.5547519 0.5428591 +0.4108177 0.5547519 0.5428591 +0.4244723 0.5547519 0.5428591 +0.4365675 0.5547519 0.5428591 +0.4474232 0.5547519 0.5428591 +0.45727 0.5547519 0.5428591 +0.4662797 0.5547519 0.5428591 +0.4745834 0.5547519 0.5428591 +0.4822838 0.5547519 0.5428591 +0.4894626 0.5547519 0.5428591 +0.4961862 0.5547519 0.5428591 +0.5025087 0.5547519 0.5428591 +0.5084753 0.5547519 0.5428591 +0.514124 0.5547519 0.5428591 +0.519487 0.5547519 0.5428591 +0.5245917 0.5547519 0.5428591 +0.529462 0.5547519 0.5428591 +0.5341183 0.5547519 0.5428591 +0.5385787 0.5547519 0.5428591 +0.5428591 0.5547519 0.5428591 +0.5469733 0.5547519 0.5428591 +0.5509339 0.5547519 0.5428591 +0.5547519 0.5547519 0.5428591 +0.5584371 0.5547519 0.5428591 +0.5619986 0.5547519 0.5428591 +0.5654443 0.5547519 0.5428591 +0.5687816 0.5547519 0.5428591 +0.092819 0.5584371 0.5428591 +0.2262531 0.5584371 0.5428591 +0.2875993 0.5584371 0.5428591 +0.3262122 0.5584371 0.5428591 +0.3544566 0.5584371 0.5428591 +0.3767383 0.5584371 0.5428591 +0.3951413 0.5584371 0.5428591 +0.4108177 0.5584371 0.5428591 +0.4244723 0.5584371 0.5428591 +0.4365675 0.5584371 0.5428591 +0.4474232 0.5584371 0.5428591 +0.45727 0.5584371 0.5428591 +0.4662797 0.5584371 0.5428591 +0.4745834 0.5584371 0.5428591 +0.4822838 0.5584371 0.5428591 +0.4894626 0.5584371 0.5428591 +0.4961862 0.5584371 0.5428591 +0.5025087 0.5584371 0.5428591 +0.5084753 0.5584371 0.5428591 +0.514124 0.5584371 0.5428591 +0.519487 0.5584371 0.5428591 +0.5245917 0.5584371 0.5428591 +0.529462 0.5584371 0.5428591 +0.5341183 0.5584371 0.5428591 +0.5385787 0.5584371 0.5428591 +0.5428591 0.5584371 0.5428591 +0.5469733 0.5584371 0.5428591 +0.5509339 0.5584371 0.5428591 +0.5547519 0.5584371 0.5428591 +0.5584371 0.5584371 0.5428591 +0.5619986 0.5584371 0.5428591 +0.5654443 0.5584371 0.5428591 +0.5687816 0.5584371 0.5428591 +0.092819 0.5619986 0.5428591 +0.2262531 0.5619986 0.5428591 +0.2875993 0.5619986 0.5428591 +0.3262122 0.5619986 0.5428591 +0.3544566 0.5619986 0.5428591 +0.3767383 0.5619986 0.5428591 +0.3951413 0.5619986 0.5428591 +0.4108177 0.5619986 0.5428591 +0.4244723 0.5619986 0.5428591 +0.4365675 0.5619986 0.5428591 +0.4474232 0.5619986 0.5428591 +0.45727 0.5619986 0.5428591 +0.4662797 0.5619986 0.5428591 +0.4745834 0.5619986 0.5428591 +0.4822838 0.5619986 0.5428591 +0.4894626 0.5619986 0.5428591 +0.4961862 0.5619986 0.5428591 +0.5025087 0.5619986 0.5428591 +0.5084753 0.5619986 0.5428591 +0.514124 0.5619986 0.5428591 +0.519487 0.5619986 0.5428591 +0.5245917 0.5619986 0.5428591 +0.529462 0.5619986 0.5428591 +0.5341183 0.5619986 0.5428591 +0.5385787 0.5619986 0.5428591 +0.5428591 0.5619986 0.5428591 +0.5469733 0.5619986 0.5428591 +0.5509339 0.5619986 0.5428591 +0.5547519 0.5619986 0.5428591 +0.5584371 0.5619986 0.5428591 +0.5619986 0.5619986 0.5428591 +0.5654443 0.5619986 0.5428591 +0.5687816 0.5619986 0.5428591 +0.092819 0.5654443 0.5428591 +0.2262531 0.5654443 0.5428591 +0.2875993 0.5654443 0.5428591 +0.3262122 0.5654443 0.5428591 +0.3544566 0.5654443 0.5428591 +0.3767383 0.5654443 0.5428591 +0.3951413 0.5654443 0.5428591 +0.4108177 0.5654443 0.5428591 +0.4244723 0.5654443 0.5428591 +0.4365675 0.5654443 0.5428591 +0.4474232 0.5654443 0.5428591 +0.45727 0.5654443 0.5428591 +0.4662797 0.5654443 0.5428591 +0.4745834 0.5654443 0.5428591 +0.4822838 0.5654443 0.5428591 +0.4894626 0.5654443 0.5428591 +0.4961862 0.5654443 0.5428591 +0.5025087 0.5654443 0.5428591 +0.5084753 0.5654443 0.5428591 +0.514124 0.5654443 0.5428591 +0.519487 0.5654443 0.5428591 +0.5245917 0.5654443 0.5428591 +0.529462 0.5654443 0.5428591 +0.5341183 0.5654443 0.5428591 +0.5385787 0.5654443 0.5428591 +0.5428591 0.5654443 0.5428591 +0.5469733 0.5654443 0.5428591 +0.5509339 0.5654443 0.5428591 +0.5547519 0.5654443 0.5428591 +0.5584371 0.5654443 0.5428591 +0.5619986 0.5654443 0.5428591 +0.5654443 0.5654443 0.5428591 +0.5687816 0.5654443 0.5428591 +0.092819 0.5687816 0.5428591 +0.2262531 0.5687816 0.5428591 +0.2875993 0.5687816 0.5428591 +0.3262122 0.5687816 0.5428591 +0.3544566 0.5687816 0.5428591 +0.3767383 0.5687816 0.5428591 +0.3951413 0.5687816 0.5428591 +0.4108177 0.5687816 0.5428591 +0.4244723 0.5687816 0.5428591 +0.4365675 0.5687816 0.5428591 +0.4474232 0.5687816 0.5428591 +0.45727 0.5687816 0.5428591 +0.4662797 0.5687816 0.5428591 +0.4745834 0.5687816 0.5428591 +0.4822838 0.5687816 0.5428591 +0.4894626 0.5687816 0.5428591 +0.4961862 0.5687816 0.5428591 +0.5025087 0.5687816 0.5428591 +0.5084753 0.5687816 0.5428591 +0.514124 0.5687816 0.5428591 +0.519487 0.5687816 0.5428591 +0.5245917 0.5687816 0.5428591 +0.529462 0.5687816 0.5428591 +0.5341183 0.5687816 0.5428591 +0.5385787 0.5687816 0.5428591 +0.5428591 0.5687816 0.5428591 +0.5469733 0.5687816 0.5428591 +0.5509339 0.5687816 0.5428591 +0.5547519 0.5687816 0.5428591 +0.5584371 0.5687816 0.5428591 +0.5619986 0.5687816 0.5428591 +0.5654443 0.5687816 0.5428591 +0.5687816 0.5687816 0.5428591 +0.092819 0.092819 0.5469733 +0.2262531 0.092819 0.5469733 +0.2875993 0.092819 0.5469733 +0.3262122 0.092819 0.5469733 +0.3544566 0.092819 0.5469733 +0.3767383 0.092819 0.5469733 +0.3951413 0.092819 0.5469733 +0.4108177 0.092819 0.5469733 +0.4244723 0.092819 0.5469733 +0.4365675 0.092819 0.5469733 +0.4474232 0.092819 0.5469733 +0.45727 0.092819 0.5469733 +0.4662797 0.092819 0.5469733 +0.4745834 0.092819 0.5469733 +0.4822838 0.092819 0.5469733 +0.4894626 0.092819 0.5469733 +0.4961862 0.092819 0.5469733 +0.5025087 0.092819 0.5469733 +0.5084753 0.092819 0.5469733 +0.514124 0.092819 0.5469733 +0.519487 0.092819 0.5469733 +0.5245917 0.092819 0.5469733 +0.529462 0.092819 0.5469733 +0.5341183 0.092819 0.5469733 +0.5385787 0.092819 0.5469733 +0.5428591 0.092819 0.5469733 +0.5469733 0.092819 0.5469733 +0.5509339 0.092819 0.5469733 +0.5547519 0.092819 0.5469733 +0.5584371 0.092819 0.5469733 +0.5619986 0.092819 0.5469733 +0.5654443 0.092819 0.5469733 +0.5687816 0.092819 0.5469733 +0.092819 0.2262531 0.5469733 +0.2262531 0.2262531 0.5469733 +0.2875993 0.2262531 0.5469733 +0.3262122 0.2262531 0.5469733 +0.3544566 0.2262531 0.5469733 +0.3767383 0.2262531 0.5469733 +0.3951413 0.2262531 0.5469733 +0.4108177 0.2262531 0.5469733 +0.4244723 0.2262531 0.5469733 +0.4365675 0.2262531 0.5469733 +0.4474232 0.2262531 0.5469733 +0.45727 0.2262531 0.5469733 +0.4662797 0.2262531 0.5469733 +0.4745834 0.2262531 0.5469733 +0.4822838 0.2262531 0.5469733 +0.4894626 0.2262531 0.5469733 +0.4961862 0.2262531 0.5469733 +0.5025087 0.2262531 0.5469733 +0.5084753 0.2262531 0.5469733 +0.514124 0.2262531 0.5469733 +0.519487 0.2262531 0.5469733 +0.5245917 0.2262531 0.5469733 +0.529462 0.2262531 0.5469733 +0.5341183 0.2262531 0.5469733 +0.5385787 0.2262531 0.5469733 +0.5428591 0.2262531 0.5469733 +0.5469733 0.2262531 0.5469733 +0.5509339 0.2262531 0.5469733 +0.5547519 0.2262531 0.5469733 +0.5584371 0.2262531 0.5469733 +0.5619986 0.2262531 0.5469733 +0.5654443 0.2262531 0.5469733 +0.5687816 0.2262531 0.5469733 +0.092819 0.2875993 0.5469733 +0.2262531 0.2875993 0.5469733 +0.2875993 0.2875993 0.5469733 +0.3262122 0.2875993 0.5469733 +0.3544566 0.2875993 0.5469733 +0.3767383 0.2875993 0.5469733 +0.3951413 0.2875993 0.5469733 +0.4108177 0.2875993 0.5469733 +0.4244723 0.2875993 0.5469733 +0.4365675 0.2875993 0.5469733 +0.4474232 0.2875993 0.5469733 +0.45727 0.2875993 0.5469733 +0.4662797 0.2875993 0.5469733 +0.4745834 0.2875993 0.5469733 +0.4822838 0.2875993 0.5469733 +0.4894626 0.2875993 0.5469733 +0.4961862 0.2875993 0.5469733 +0.5025087 0.2875993 0.5469733 +0.5084753 0.2875993 0.5469733 +0.514124 0.2875993 0.5469733 +0.519487 0.2875993 0.5469733 +0.5245917 0.2875993 0.5469733 +0.529462 0.2875993 0.5469733 +0.5341183 0.2875993 0.5469733 +0.5385787 0.2875993 0.5469733 +0.5428591 0.2875993 0.5469733 +0.5469733 0.2875993 0.5469733 +0.5509339 0.2875993 0.5469733 +0.5547519 0.2875993 0.5469733 +0.5584371 0.2875993 0.5469733 +0.5619986 0.2875993 0.5469733 +0.5654443 0.2875993 0.5469733 +0.5687816 0.2875993 0.5469733 +0.092819 0.3262122 0.5469733 +0.2262531 0.3262122 0.5469733 +0.2875993 0.3262122 0.5469733 +0.3262122 0.3262122 0.5469733 +0.3544566 0.3262122 0.5469733 +0.3767383 0.3262122 0.5469733 +0.3951413 0.3262122 0.5469733 +0.4108177 0.3262122 0.5469733 +0.4244723 0.3262122 0.5469733 +0.4365675 0.3262122 0.5469733 +0.4474232 0.3262122 0.5469733 +0.45727 0.3262122 0.5469733 +0.4662797 0.3262122 0.5469733 +0.4745834 0.3262122 0.5469733 +0.4822838 0.3262122 0.5469733 +0.4894626 0.3262122 0.5469733 +0.4961862 0.3262122 0.5469733 +0.5025087 0.3262122 0.5469733 +0.5084753 0.3262122 0.5469733 +0.514124 0.3262122 0.5469733 +0.519487 0.3262122 0.5469733 +0.5245917 0.3262122 0.5469733 +0.529462 0.3262122 0.5469733 +0.5341183 0.3262122 0.5469733 +0.5385787 0.3262122 0.5469733 +0.5428591 0.3262122 0.5469733 +0.5469733 0.3262122 0.5469733 +0.5509339 0.3262122 0.5469733 +0.5547519 0.3262122 0.5469733 +0.5584371 0.3262122 0.5469733 +0.5619986 0.3262122 0.5469733 +0.5654443 0.3262122 0.5469733 +0.5687816 0.3262122 0.5469733 +0.092819 0.3544566 0.5469733 +0.2262531 0.3544566 0.5469733 +0.2875993 0.3544566 0.5469733 +0.3262122 0.3544566 0.5469733 +0.3544566 0.3544566 0.5469733 +0.3767383 0.3544566 0.5469733 +0.3951413 0.3544566 0.5469733 +0.4108177 0.3544566 0.5469733 +0.4244723 0.3544566 0.5469733 +0.4365675 0.3544566 0.5469733 +0.4474232 0.3544566 0.5469733 +0.45727 0.3544566 0.5469733 +0.4662797 0.3544566 0.5469733 +0.4745834 0.3544566 0.5469733 +0.4822838 0.3544566 0.5469733 +0.4894626 0.3544566 0.5469733 +0.4961862 0.3544566 0.5469733 +0.5025087 0.3544566 0.5469733 +0.5084753 0.3544566 0.5469733 +0.514124 0.3544566 0.5469733 +0.519487 0.3544566 0.5469733 +0.5245917 0.3544566 0.5469733 +0.529462 0.3544566 0.5469733 +0.5341183 0.3544566 0.5469733 +0.5385787 0.3544566 0.5469733 +0.5428591 0.3544566 0.5469733 +0.5469733 0.3544566 0.5469733 +0.5509339 0.3544566 0.5469733 +0.5547519 0.3544566 0.5469733 +0.5584371 0.3544566 0.5469733 +0.5619986 0.3544566 0.5469733 +0.5654443 0.3544566 0.5469733 +0.5687816 0.3544566 0.5469733 +0.092819 0.3767383 0.5469733 +0.2262531 0.3767383 0.5469733 +0.2875993 0.3767383 0.5469733 +0.3262122 0.3767383 0.5469733 +0.3544566 0.3767383 0.5469733 +0.3767383 0.3767383 0.5469733 +0.3951413 0.3767383 0.5469733 +0.4108177 0.3767383 0.5469733 +0.4244723 0.3767383 0.5469733 +0.4365675 0.3767383 0.5469733 +0.4474232 0.3767383 0.5469733 +0.45727 0.3767383 0.5469733 +0.4662797 0.3767383 0.5469733 +0.4745834 0.3767383 0.5469733 +0.4822838 0.3767383 0.5469733 +0.4894626 0.3767383 0.5469733 +0.4961862 0.3767383 0.5469733 +0.5025087 0.3767383 0.5469733 +0.5084753 0.3767383 0.5469733 +0.514124 0.3767383 0.5469733 +0.519487 0.3767383 0.5469733 +0.5245917 0.3767383 0.5469733 +0.529462 0.3767383 0.5469733 +0.5341183 0.3767383 0.5469733 +0.5385787 0.3767383 0.5469733 +0.5428591 0.3767383 0.5469733 +0.5469733 0.3767383 0.5469733 +0.5509339 0.3767383 0.5469733 +0.5547519 0.3767383 0.5469733 +0.5584371 0.3767383 0.5469733 +0.5619986 0.3767383 0.5469733 +0.5654443 0.3767383 0.5469733 +0.5687816 0.3767383 0.5469733 +0.092819 0.3951413 0.5469733 +0.2262531 0.3951413 0.5469733 +0.2875993 0.3951413 0.5469733 +0.3262122 0.3951413 0.5469733 +0.3544566 0.3951413 0.5469733 +0.3767383 0.3951413 0.5469733 +0.3951413 0.3951413 0.5469733 +0.4108177 0.3951413 0.5469733 +0.4244723 0.3951413 0.5469733 +0.4365675 0.3951413 0.5469733 +0.4474232 0.3951413 0.5469733 +0.45727 0.3951413 0.5469733 +0.4662797 0.3951413 0.5469733 +0.4745834 0.3951413 0.5469733 +0.4822838 0.3951413 0.5469733 +0.4894626 0.3951413 0.5469733 +0.4961862 0.3951413 0.5469733 +0.5025087 0.3951413 0.5469733 +0.5084753 0.3951413 0.5469733 +0.514124 0.3951413 0.5469733 +0.519487 0.3951413 0.5469733 +0.5245917 0.3951413 0.5469733 +0.529462 0.3951413 0.5469733 +0.5341183 0.3951413 0.5469733 +0.5385787 0.3951413 0.5469733 +0.5428591 0.3951413 0.5469733 +0.5469733 0.3951413 0.5469733 +0.5509339 0.3951413 0.5469733 +0.5547519 0.3951413 0.5469733 +0.5584371 0.3951413 0.5469733 +0.5619986 0.3951413 0.5469733 +0.5654443 0.3951413 0.5469733 +0.5687816 0.3951413 0.5469733 +0.092819 0.4108177 0.5469733 +0.2262531 0.4108177 0.5469733 +0.2875993 0.4108177 0.5469733 +0.3262122 0.4108177 0.5469733 +0.3544566 0.4108177 0.5469733 +0.3767383 0.4108177 0.5469733 +0.3951413 0.4108177 0.5469733 +0.4108177 0.4108177 0.5469733 +0.4244723 0.4108177 0.5469733 +0.4365675 0.4108177 0.5469733 +0.4474232 0.4108177 0.5469733 +0.45727 0.4108177 0.5469733 +0.4662797 0.4108177 0.5469733 +0.4745834 0.4108177 0.5469733 +0.4822838 0.4108177 0.5469733 +0.4894626 0.4108177 0.5469733 +0.4961862 0.4108177 0.5469733 +0.5025087 0.4108177 0.5469733 +0.5084753 0.4108177 0.5469733 +0.514124 0.4108177 0.5469733 +0.519487 0.4108177 0.5469733 +0.5245917 0.4108177 0.5469733 +0.529462 0.4108177 0.5469733 +0.5341183 0.4108177 0.5469733 +0.5385787 0.4108177 0.5469733 +0.5428591 0.4108177 0.5469733 +0.5469733 0.4108177 0.5469733 +0.5509339 0.4108177 0.5469733 +0.5547519 0.4108177 0.5469733 +0.5584371 0.4108177 0.5469733 +0.5619986 0.4108177 0.5469733 +0.5654443 0.4108177 0.5469733 +0.5687816 0.4108177 0.5469733 +0.092819 0.4244723 0.5469733 +0.2262531 0.4244723 0.5469733 +0.2875993 0.4244723 0.5469733 +0.3262122 0.4244723 0.5469733 +0.3544566 0.4244723 0.5469733 +0.3767383 0.4244723 0.5469733 +0.3951413 0.4244723 0.5469733 +0.4108177 0.4244723 0.5469733 +0.4244723 0.4244723 0.5469733 +0.4365675 0.4244723 0.5469733 +0.4474232 0.4244723 0.5469733 +0.45727 0.4244723 0.5469733 +0.4662797 0.4244723 0.5469733 +0.4745834 0.4244723 0.5469733 +0.4822838 0.4244723 0.5469733 +0.4894626 0.4244723 0.5469733 +0.4961862 0.4244723 0.5469733 +0.5025087 0.4244723 0.5469733 +0.5084753 0.4244723 0.5469733 +0.514124 0.4244723 0.5469733 +0.519487 0.4244723 0.5469733 +0.5245917 0.4244723 0.5469733 +0.529462 0.4244723 0.5469733 +0.5341183 0.4244723 0.5469733 +0.5385787 0.4244723 0.5469733 +0.5428591 0.4244723 0.5469733 +0.5469733 0.4244723 0.5469733 +0.5509339 0.4244723 0.5469733 +0.5547519 0.4244723 0.5469733 +0.5584371 0.4244723 0.5469733 +0.5619986 0.4244723 0.5469733 +0.5654443 0.4244723 0.5469733 +0.5687816 0.4244723 0.5469733 +0.092819 0.4365675 0.5469733 +0.2262531 0.4365675 0.5469733 +0.2875993 0.4365675 0.5469733 +0.3262122 0.4365675 0.5469733 +0.3544566 0.4365675 0.5469733 +0.3767383 0.4365675 0.5469733 +0.3951413 0.4365675 0.5469733 +0.4108177 0.4365675 0.5469733 +0.4244723 0.4365675 0.5469733 +0.4365675 0.4365675 0.5469733 +0.4474232 0.4365675 0.5469733 +0.45727 0.4365675 0.5469733 +0.4662797 0.4365675 0.5469733 +0.4745834 0.4365675 0.5469733 +0.4822838 0.4365675 0.5469733 +0.4894626 0.4365675 0.5469733 +0.4961862 0.4365675 0.5469733 +0.5025087 0.4365675 0.5469733 +0.5084753 0.4365675 0.5469733 +0.514124 0.4365675 0.5469733 +0.519487 0.4365675 0.5469733 +0.5245917 0.4365675 0.5469733 +0.529462 0.4365675 0.5469733 +0.5341183 0.4365675 0.5469733 +0.5385787 0.4365675 0.5469733 +0.5428591 0.4365675 0.5469733 +0.5469733 0.4365675 0.5469733 +0.5509339 0.4365675 0.5469733 +0.5547519 0.4365675 0.5469733 +0.5584371 0.4365675 0.5469733 +0.5619986 0.4365675 0.5469733 +0.5654443 0.4365675 0.5469733 +0.5687816 0.4365675 0.5469733 +0.092819 0.4474232 0.5469733 +0.2262531 0.4474232 0.5469733 +0.2875993 0.4474232 0.5469733 +0.3262122 0.4474232 0.5469733 +0.3544566 0.4474232 0.5469733 +0.3767383 0.4474232 0.5469733 +0.3951413 0.4474232 0.5469733 +0.4108177 0.4474232 0.5469733 +0.4244723 0.4474232 0.5469733 +0.4365675 0.4474232 0.5469733 +0.4474232 0.4474232 0.5469733 +0.45727 0.4474232 0.5469733 +0.4662797 0.4474232 0.5469733 +0.4745834 0.4474232 0.5469733 +0.4822838 0.4474232 0.5469733 +0.4894626 0.4474232 0.5469733 +0.4961862 0.4474232 0.5469733 +0.5025087 0.4474232 0.5469733 +0.5084753 0.4474232 0.5469733 +0.514124 0.4474232 0.5469733 +0.519487 0.4474232 0.5469733 +0.5245917 0.4474232 0.5469733 +0.529462 0.4474232 0.5469733 +0.5341183 0.4474232 0.5469733 +0.5385787 0.4474232 0.5469733 +0.5428591 0.4474232 0.5469733 +0.5469733 0.4474232 0.5469733 +0.5509339 0.4474232 0.5469733 +0.5547519 0.4474232 0.5469733 +0.5584371 0.4474232 0.5469733 +0.5619986 0.4474232 0.5469733 +0.5654443 0.4474232 0.5469733 +0.5687816 0.4474232 0.5469733 +0.092819 0.45727 0.5469733 +0.2262531 0.45727 0.5469733 +0.2875993 0.45727 0.5469733 +0.3262122 0.45727 0.5469733 +0.3544566 0.45727 0.5469733 +0.3767383 0.45727 0.5469733 +0.3951413 0.45727 0.5469733 +0.4108177 0.45727 0.5469733 +0.4244723 0.45727 0.5469733 +0.4365675 0.45727 0.5469733 +0.4474232 0.45727 0.5469733 +0.45727 0.45727 0.5469733 +0.4662797 0.45727 0.5469733 +0.4745834 0.45727 0.5469733 +0.4822838 0.45727 0.5469733 +0.4894626 0.45727 0.5469733 +0.4961862 0.45727 0.5469733 +0.5025087 0.45727 0.5469733 +0.5084753 0.45727 0.5469733 +0.514124 0.45727 0.5469733 +0.519487 0.45727 0.5469733 +0.5245917 0.45727 0.5469733 +0.529462 0.45727 0.5469733 +0.5341183 0.45727 0.5469733 +0.5385787 0.45727 0.5469733 +0.5428591 0.45727 0.5469733 +0.5469733 0.45727 0.5469733 +0.5509339 0.45727 0.5469733 +0.5547519 0.45727 0.5469733 +0.5584371 0.45727 0.5469733 +0.5619986 0.45727 0.5469733 +0.5654443 0.45727 0.5469733 +0.5687816 0.45727 0.5469733 +0.092819 0.4662797 0.5469733 +0.2262531 0.4662797 0.5469733 +0.2875993 0.4662797 0.5469733 +0.3262122 0.4662797 0.5469733 +0.3544566 0.4662797 0.5469733 +0.3767383 0.4662797 0.5469733 +0.3951413 0.4662797 0.5469733 +0.4108177 0.4662797 0.5469733 +0.4244723 0.4662797 0.5469733 +0.4365675 0.4662797 0.5469733 +0.4474232 0.4662797 0.5469733 +0.45727 0.4662797 0.5469733 +0.4662797 0.4662797 0.5469733 +0.4745834 0.4662797 0.5469733 +0.4822838 0.4662797 0.5469733 +0.4894626 0.4662797 0.5469733 +0.4961862 0.4662797 0.5469733 +0.5025087 0.4662797 0.5469733 +0.5084753 0.4662797 0.5469733 +0.514124 0.4662797 0.5469733 +0.519487 0.4662797 0.5469733 +0.5245917 0.4662797 0.5469733 +0.529462 0.4662797 0.5469733 +0.5341183 0.4662797 0.5469733 +0.5385787 0.4662797 0.5469733 +0.5428591 0.4662797 0.5469733 +0.5469733 0.4662797 0.5469733 +0.5509339 0.4662797 0.5469733 +0.5547519 0.4662797 0.5469733 +0.5584371 0.4662797 0.5469733 +0.5619986 0.4662797 0.5469733 +0.5654443 0.4662797 0.5469733 +0.5687816 0.4662797 0.5469733 +0.092819 0.4745834 0.5469733 +0.2262531 0.4745834 0.5469733 +0.2875993 0.4745834 0.5469733 +0.3262122 0.4745834 0.5469733 +0.3544566 0.4745834 0.5469733 +0.3767383 0.4745834 0.5469733 +0.3951413 0.4745834 0.5469733 +0.4108177 0.4745834 0.5469733 +0.4244723 0.4745834 0.5469733 +0.4365675 0.4745834 0.5469733 +0.4474232 0.4745834 0.5469733 +0.45727 0.4745834 0.5469733 +0.4662797 0.4745834 0.5469733 +0.4745834 0.4745834 0.5469733 +0.4822838 0.4745834 0.5469733 +0.4894626 0.4745834 0.5469733 +0.4961862 0.4745834 0.5469733 +0.5025087 0.4745834 0.5469733 +0.5084753 0.4745834 0.5469733 +0.514124 0.4745834 0.5469733 +0.519487 0.4745834 0.5469733 +0.5245917 0.4745834 0.5469733 +0.529462 0.4745834 0.5469733 +0.5341183 0.4745834 0.5469733 +0.5385787 0.4745834 0.5469733 +0.5428591 0.4745834 0.5469733 +0.5469733 0.4745834 0.5469733 +0.5509339 0.4745834 0.5469733 +0.5547519 0.4745834 0.5469733 +0.5584371 0.4745834 0.5469733 +0.5619986 0.4745834 0.5469733 +0.5654443 0.4745834 0.5469733 +0.5687816 0.4745834 0.5469733 +0.092819 0.4822838 0.5469733 +0.2262531 0.4822838 0.5469733 +0.2875993 0.4822838 0.5469733 +0.3262122 0.4822838 0.5469733 +0.3544566 0.4822838 0.5469733 +0.3767383 0.4822838 0.5469733 +0.3951413 0.4822838 0.5469733 +0.4108177 0.4822838 0.5469733 +0.4244723 0.4822838 0.5469733 +0.4365675 0.4822838 0.5469733 +0.4474232 0.4822838 0.5469733 +0.45727 0.4822838 0.5469733 +0.4662797 0.4822838 0.5469733 +0.4745834 0.4822838 0.5469733 +0.4822838 0.4822838 0.5469733 +0.4894626 0.4822838 0.5469733 +0.4961862 0.4822838 0.5469733 +0.5025087 0.4822838 0.5469733 +0.5084753 0.4822838 0.5469733 +0.514124 0.4822838 0.5469733 +0.519487 0.4822838 0.5469733 +0.5245917 0.4822838 0.5469733 +0.529462 0.4822838 0.5469733 +0.5341183 0.4822838 0.5469733 +0.5385787 0.4822838 0.5469733 +0.5428591 0.4822838 0.5469733 +0.5469733 0.4822838 0.5469733 +0.5509339 0.4822838 0.5469733 +0.5547519 0.4822838 0.5469733 +0.5584371 0.4822838 0.5469733 +0.5619986 0.4822838 0.5469733 +0.5654443 0.4822838 0.5469733 +0.5687816 0.4822838 0.5469733 +0.092819 0.4894626 0.5469733 +0.2262531 0.4894626 0.5469733 +0.2875993 0.4894626 0.5469733 +0.3262122 0.4894626 0.5469733 +0.3544566 0.4894626 0.5469733 +0.3767383 0.4894626 0.5469733 +0.3951413 0.4894626 0.5469733 +0.4108177 0.4894626 0.5469733 +0.4244723 0.4894626 0.5469733 +0.4365675 0.4894626 0.5469733 +0.4474232 0.4894626 0.5469733 +0.45727 0.4894626 0.5469733 +0.4662797 0.4894626 0.5469733 +0.4745834 0.4894626 0.5469733 +0.4822838 0.4894626 0.5469733 +0.4894626 0.4894626 0.5469733 +0.4961862 0.4894626 0.5469733 +0.5025087 0.4894626 0.5469733 +0.5084753 0.4894626 0.5469733 +0.514124 0.4894626 0.5469733 +0.519487 0.4894626 0.5469733 +0.5245917 0.4894626 0.5469733 +0.529462 0.4894626 0.5469733 +0.5341183 0.4894626 0.5469733 +0.5385787 0.4894626 0.5469733 +0.5428591 0.4894626 0.5469733 +0.5469733 0.4894626 0.5469733 +0.5509339 0.4894626 0.5469733 +0.5547519 0.4894626 0.5469733 +0.5584371 0.4894626 0.5469733 +0.5619986 0.4894626 0.5469733 +0.5654443 0.4894626 0.5469733 +0.5687816 0.4894626 0.5469733 +0.092819 0.4961862 0.5469733 +0.2262531 0.4961862 0.5469733 +0.2875993 0.4961862 0.5469733 +0.3262122 0.4961862 0.5469733 +0.3544566 0.4961862 0.5469733 +0.3767383 0.4961862 0.5469733 +0.3951413 0.4961862 0.5469733 +0.4108177 0.4961862 0.5469733 +0.4244723 0.4961862 0.5469733 +0.4365675 0.4961862 0.5469733 +0.4474232 0.4961862 0.5469733 +0.45727 0.4961862 0.5469733 +0.4662797 0.4961862 0.5469733 +0.4745834 0.4961862 0.5469733 +0.4822838 0.4961862 0.5469733 +0.4894626 0.4961862 0.5469733 +0.4961862 0.4961862 0.5469733 +0.5025087 0.4961862 0.5469733 +0.5084753 0.4961862 0.5469733 +0.514124 0.4961862 0.5469733 +0.519487 0.4961862 0.5469733 +0.5245917 0.4961862 0.5469733 +0.529462 0.4961862 0.5469733 +0.5341183 0.4961862 0.5469733 +0.5385787 0.4961862 0.5469733 +0.5428591 0.4961862 0.5469733 +0.5469733 0.4961862 0.5469733 +0.5509339 0.4961862 0.5469733 +0.5547519 0.4961862 0.5469733 +0.5584371 0.4961862 0.5469733 +0.5619986 0.4961862 0.5469733 +0.5654443 0.4961862 0.5469733 +0.5687816 0.4961862 0.5469733 +0.092819 0.5025087 0.5469733 +0.2262531 0.5025087 0.5469733 +0.2875993 0.5025087 0.5469733 +0.3262122 0.5025087 0.5469733 +0.3544566 0.5025087 0.5469733 +0.3767383 0.5025087 0.5469733 +0.3951413 0.5025087 0.5469733 +0.4108177 0.5025087 0.5469733 +0.4244723 0.5025087 0.5469733 +0.4365675 0.5025087 0.5469733 +0.4474232 0.5025087 0.5469733 +0.45727 0.5025087 0.5469733 +0.4662797 0.5025087 0.5469733 +0.4745834 0.5025087 0.5469733 +0.4822838 0.5025087 0.5469733 +0.4894626 0.5025087 0.5469733 +0.4961862 0.5025087 0.5469733 +0.5025087 0.5025087 0.5469733 +0.5084753 0.5025087 0.5469733 +0.514124 0.5025087 0.5469733 +0.519487 0.5025087 0.5469733 +0.5245917 0.5025087 0.5469733 +0.529462 0.5025087 0.5469733 +0.5341183 0.5025087 0.5469733 +0.5385787 0.5025087 0.5469733 +0.5428591 0.5025087 0.5469733 +0.5469733 0.5025087 0.5469733 +0.5509339 0.5025087 0.5469733 +0.5547519 0.5025087 0.5469733 +0.5584371 0.5025087 0.5469733 +0.5619986 0.5025087 0.5469733 +0.5654443 0.5025087 0.5469733 +0.5687816 0.5025087 0.5469733 +0.092819 0.5084753 0.5469733 +0.2262531 0.5084753 0.5469733 +0.2875993 0.5084753 0.5469733 +0.3262122 0.5084753 0.5469733 +0.3544566 0.5084753 0.5469733 +0.3767383 0.5084753 0.5469733 +0.3951413 0.5084753 0.5469733 +0.4108177 0.5084753 0.5469733 +0.4244723 0.5084753 0.5469733 +0.4365675 0.5084753 0.5469733 +0.4474232 0.5084753 0.5469733 +0.45727 0.5084753 0.5469733 +0.4662797 0.5084753 0.5469733 +0.4745834 0.5084753 0.5469733 +0.4822838 0.5084753 0.5469733 +0.4894626 0.5084753 0.5469733 +0.4961862 0.5084753 0.5469733 +0.5025087 0.5084753 0.5469733 +0.5084753 0.5084753 0.5469733 +0.514124 0.5084753 0.5469733 +0.519487 0.5084753 0.5469733 +0.5245917 0.5084753 0.5469733 +0.529462 0.5084753 0.5469733 +0.5341183 0.5084753 0.5469733 +0.5385787 0.5084753 0.5469733 +0.5428591 0.5084753 0.5469733 +0.5469733 0.5084753 0.5469733 +0.5509339 0.5084753 0.5469733 +0.5547519 0.5084753 0.5469733 +0.5584371 0.5084753 0.5469733 +0.5619986 0.5084753 0.5469733 +0.5654443 0.5084753 0.5469733 +0.5687816 0.5084753 0.5469733 +0.092819 0.514124 0.5469733 +0.2262531 0.514124 0.5469733 +0.2875993 0.514124 0.5469733 +0.3262122 0.514124 0.5469733 +0.3544566 0.514124 0.5469733 +0.3767383 0.514124 0.5469733 +0.3951413 0.514124 0.5469733 +0.4108177 0.514124 0.5469733 +0.4244723 0.514124 0.5469733 +0.4365675 0.514124 0.5469733 +0.4474232 0.514124 0.5469733 +0.45727 0.514124 0.5469733 +0.4662797 0.514124 0.5469733 +0.4745834 0.514124 0.5469733 +0.4822838 0.514124 0.5469733 +0.4894626 0.514124 0.5469733 +0.4961862 0.514124 0.5469733 +0.5025087 0.514124 0.5469733 +0.5084753 0.514124 0.5469733 +0.514124 0.514124 0.5469733 +0.519487 0.514124 0.5469733 +0.5245917 0.514124 0.5469733 +0.529462 0.514124 0.5469733 +0.5341183 0.514124 0.5469733 +0.5385787 0.514124 0.5469733 +0.5428591 0.514124 0.5469733 +0.5469733 0.514124 0.5469733 +0.5509339 0.514124 0.5469733 +0.5547519 0.514124 0.5469733 +0.5584371 0.514124 0.5469733 +0.5619986 0.514124 0.5469733 +0.5654443 0.514124 0.5469733 +0.5687816 0.514124 0.5469733 +0.092819 0.519487 0.5469733 +0.2262531 0.519487 0.5469733 +0.2875993 0.519487 0.5469733 +0.3262122 0.519487 0.5469733 +0.3544566 0.519487 0.5469733 +0.3767383 0.519487 0.5469733 +0.3951413 0.519487 0.5469733 +0.4108177 0.519487 0.5469733 +0.4244723 0.519487 0.5469733 +0.4365675 0.519487 0.5469733 +0.4474232 0.519487 0.5469733 +0.45727 0.519487 0.5469733 +0.4662797 0.519487 0.5469733 +0.4745834 0.519487 0.5469733 +0.4822838 0.519487 0.5469733 +0.4894626 0.519487 0.5469733 +0.4961862 0.519487 0.5469733 +0.5025087 0.519487 0.5469733 +0.5084753 0.519487 0.5469733 +0.514124 0.519487 0.5469733 +0.519487 0.519487 0.5469733 +0.5245917 0.519487 0.5469733 +0.529462 0.519487 0.5469733 +0.5341183 0.519487 0.5469733 +0.5385787 0.519487 0.5469733 +0.5428591 0.519487 0.5469733 +0.5469733 0.519487 0.5469733 +0.5509339 0.519487 0.5469733 +0.5547519 0.519487 0.5469733 +0.5584371 0.519487 0.5469733 +0.5619986 0.519487 0.5469733 +0.5654443 0.519487 0.5469733 +0.5687816 0.519487 0.5469733 +0.092819 0.5245917 0.5469733 +0.2262531 0.5245917 0.5469733 +0.2875993 0.5245917 0.5469733 +0.3262122 0.5245917 0.5469733 +0.3544566 0.5245917 0.5469733 +0.3767383 0.5245917 0.5469733 +0.3951413 0.5245917 0.5469733 +0.4108177 0.5245917 0.5469733 +0.4244723 0.5245917 0.5469733 +0.4365675 0.5245917 0.5469733 +0.4474232 0.5245917 0.5469733 +0.45727 0.5245917 0.5469733 +0.4662797 0.5245917 0.5469733 +0.4745834 0.5245917 0.5469733 +0.4822838 0.5245917 0.5469733 +0.4894626 0.5245917 0.5469733 +0.4961862 0.5245917 0.5469733 +0.5025087 0.5245917 0.5469733 +0.5084753 0.5245917 0.5469733 +0.514124 0.5245917 0.5469733 +0.519487 0.5245917 0.5469733 +0.5245917 0.5245917 0.5469733 +0.529462 0.5245917 0.5469733 +0.5341183 0.5245917 0.5469733 +0.5385787 0.5245917 0.5469733 +0.5428591 0.5245917 0.5469733 +0.5469733 0.5245917 0.5469733 +0.5509339 0.5245917 0.5469733 +0.5547519 0.5245917 0.5469733 +0.5584371 0.5245917 0.5469733 +0.5619986 0.5245917 0.5469733 +0.5654443 0.5245917 0.5469733 +0.5687816 0.5245917 0.5469733 +0.092819 0.529462 0.5469733 +0.2262531 0.529462 0.5469733 +0.2875993 0.529462 0.5469733 +0.3262122 0.529462 0.5469733 +0.3544566 0.529462 0.5469733 +0.3767383 0.529462 0.5469733 +0.3951413 0.529462 0.5469733 +0.4108177 0.529462 0.5469733 +0.4244723 0.529462 0.5469733 +0.4365675 0.529462 0.5469733 +0.4474232 0.529462 0.5469733 +0.45727 0.529462 0.5469733 +0.4662797 0.529462 0.5469733 +0.4745834 0.529462 0.5469733 +0.4822838 0.529462 0.5469733 +0.4894626 0.529462 0.5469733 +0.4961862 0.529462 0.5469733 +0.5025087 0.529462 0.5469733 +0.5084753 0.529462 0.5469733 +0.514124 0.529462 0.5469733 +0.519487 0.529462 0.5469733 +0.5245917 0.529462 0.5469733 +0.529462 0.529462 0.5469733 +0.5341183 0.529462 0.5469733 +0.5385787 0.529462 0.5469733 +0.5428591 0.529462 0.5469733 +0.5469733 0.529462 0.5469733 +0.5509339 0.529462 0.5469733 +0.5547519 0.529462 0.5469733 +0.5584371 0.529462 0.5469733 +0.5619986 0.529462 0.5469733 +0.5654443 0.529462 0.5469733 +0.5687816 0.529462 0.5469733 +0.092819 0.5341183 0.5469733 +0.2262531 0.5341183 0.5469733 +0.2875993 0.5341183 0.5469733 +0.3262122 0.5341183 0.5469733 +0.3544566 0.5341183 0.5469733 +0.3767383 0.5341183 0.5469733 +0.3951413 0.5341183 0.5469733 +0.4108177 0.5341183 0.5469733 +0.4244723 0.5341183 0.5469733 +0.4365675 0.5341183 0.5469733 +0.4474232 0.5341183 0.5469733 +0.45727 0.5341183 0.5469733 +0.4662797 0.5341183 0.5469733 +0.4745834 0.5341183 0.5469733 +0.4822838 0.5341183 0.5469733 +0.4894626 0.5341183 0.5469733 +0.4961862 0.5341183 0.5469733 +0.5025087 0.5341183 0.5469733 +0.5084753 0.5341183 0.5469733 +0.514124 0.5341183 0.5469733 +0.519487 0.5341183 0.5469733 +0.5245917 0.5341183 0.5469733 +0.529462 0.5341183 0.5469733 +0.5341183 0.5341183 0.5469733 +0.5385787 0.5341183 0.5469733 +0.5428591 0.5341183 0.5469733 +0.5469733 0.5341183 0.5469733 +0.5509339 0.5341183 0.5469733 +0.5547519 0.5341183 0.5469733 +0.5584371 0.5341183 0.5469733 +0.5619986 0.5341183 0.5469733 +0.5654443 0.5341183 0.5469733 +0.5687816 0.5341183 0.5469733 +0.092819 0.5385787 0.5469733 +0.2262531 0.5385787 0.5469733 +0.2875993 0.5385787 0.5469733 +0.3262122 0.5385787 0.5469733 +0.3544566 0.5385787 0.5469733 +0.3767383 0.5385787 0.5469733 +0.3951413 0.5385787 0.5469733 +0.4108177 0.5385787 0.5469733 +0.4244723 0.5385787 0.5469733 +0.4365675 0.5385787 0.5469733 +0.4474232 0.5385787 0.5469733 +0.45727 0.5385787 0.5469733 +0.4662797 0.5385787 0.5469733 +0.4745834 0.5385787 0.5469733 +0.4822838 0.5385787 0.5469733 +0.4894626 0.5385787 0.5469733 +0.4961862 0.5385787 0.5469733 +0.5025087 0.5385787 0.5469733 +0.5084753 0.5385787 0.5469733 +0.514124 0.5385787 0.5469733 +0.519487 0.5385787 0.5469733 +0.5245917 0.5385787 0.5469733 +0.529462 0.5385787 0.5469733 +0.5341183 0.5385787 0.5469733 +0.5385787 0.5385787 0.5469733 +0.5428591 0.5385787 0.5469733 +0.5469733 0.5385787 0.5469733 +0.5509339 0.5385787 0.5469733 +0.5547519 0.5385787 0.5469733 +0.5584371 0.5385787 0.5469733 +0.5619986 0.5385787 0.5469733 +0.5654443 0.5385787 0.5469733 +0.5687816 0.5385787 0.5469733 +0.092819 0.5428591 0.5469733 +0.2262531 0.5428591 0.5469733 +0.2875993 0.5428591 0.5469733 +0.3262122 0.5428591 0.5469733 +0.3544566 0.5428591 0.5469733 +0.3767383 0.5428591 0.5469733 +0.3951413 0.5428591 0.5469733 +0.4108177 0.5428591 0.5469733 +0.4244723 0.5428591 0.5469733 +0.4365675 0.5428591 0.5469733 +0.4474232 0.5428591 0.5469733 +0.45727 0.5428591 0.5469733 +0.4662797 0.5428591 0.5469733 +0.4745834 0.5428591 0.5469733 +0.4822838 0.5428591 0.5469733 +0.4894626 0.5428591 0.5469733 +0.4961862 0.5428591 0.5469733 +0.5025087 0.5428591 0.5469733 +0.5084753 0.5428591 0.5469733 +0.514124 0.5428591 0.5469733 +0.519487 0.5428591 0.5469733 +0.5245917 0.5428591 0.5469733 +0.529462 0.5428591 0.5469733 +0.5341183 0.5428591 0.5469733 +0.5385787 0.5428591 0.5469733 +0.5428591 0.5428591 0.5469733 +0.5469733 0.5428591 0.5469733 +0.5509339 0.5428591 0.5469733 +0.5547519 0.5428591 0.5469733 +0.5584371 0.5428591 0.5469733 +0.5619986 0.5428591 0.5469733 +0.5654443 0.5428591 0.5469733 +0.5687816 0.5428591 0.5469733 +0.092819 0.5469733 0.5469733 +0.2262531 0.5469733 0.5469733 +0.2875993 0.5469733 0.5469733 +0.3262122 0.5469733 0.5469733 +0.3544566 0.5469733 0.5469733 +0.3767383 0.5469733 0.5469733 +0.3951413 0.5469733 0.5469733 +0.4108177 0.5469733 0.5469733 +0.4244723 0.5469733 0.5469733 +0.4365675 0.5469733 0.5469733 +0.4474232 0.5469733 0.5469733 +0.45727 0.5469733 0.5469733 +0.4662797 0.5469733 0.5469733 +0.4745834 0.5469733 0.5469733 +0.4822838 0.5469733 0.5469733 +0.4894626 0.5469733 0.5469733 +0.4961862 0.5469733 0.5469733 +0.5025087 0.5469733 0.5469733 +0.5084753 0.5469733 0.5469733 +0.514124 0.5469733 0.5469733 +0.519487 0.5469733 0.5469733 +0.5245917 0.5469733 0.5469733 +0.529462 0.5469733 0.5469733 +0.5341183 0.5469733 0.5469733 +0.5385787 0.5469733 0.5469733 +0.5428591 0.5469733 0.5469733 +0.5469733 0.5469733 0.5469733 +0.5509339 0.5469733 0.5469733 +0.5547519 0.5469733 0.5469733 +0.5584371 0.5469733 0.5469733 +0.5619986 0.5469733 0.5469733 +0.5654443 0.5469733 0.5469733 +0.5687816 0.5469733 0.5469733 +0.092819 0.5509339 0.5469733 +0.2262531 0.5509339 0.5469733 +0.2875993 0.5509339 0.5469733 +0.3262122 0.5509339 0.5469733 +0.3544566 0.5509339 0.5469733 +0.3767383 0.5509339 0.5469733 +0.3951413 0.5509339 0.5469733 +0.4108177 0.5509339 0.5469733 +0.4244723 0.5509339 0.5469733 +0.4365675 0.5509339 0.5469733 +0.4474232 0.5509339 0.5469733 +0.45727 0.5509339 0.5469733 +0.4662797 0.5509339 0.5469733 +0.4745834 0.5509339 0.5469733 +0.4822838 0.5509339 0.5469733 +0.4894626 0.5509339 0.5469733 +0.4961862 0.5509339 0.5469733 +0.5025087 0.5509339 0.5469733 +0.5084753 0.5509339 0.5469733 +0.514124 0.5509339 0.5469733 +0.519487 0.5509339 0.5469733 +0.5245917 0.5509339 0.5469733 +0.529462 0.5509339 0.5469733 +0.5341183 0.5509339 0.5469733 +0.5385787 0.5509339 0.5469733 +0.5428591 0.5509339 0.5469733 +0.5469733 0.5509339 0.5469733 +0.5509339 0.5509339 0.5469733 +0.5547519 0.5509339 0.5469733 +0.5584371 0.5509339 0.5469733 +0.5619986 0.5509339 0.5469733 +0.5654443 0.5509339 0.5469733 +0.5687816 0.5509339 0.5469733 +0.092819 0.5547519 0.5469733 +0.2262531 0.5547519 0.5469733 +0.2875993 0.5547519 0.5469733 +0.3262122 0.5547519 0.5469733 +0.3544566 0.5547519 0.5469733 +0.3767383 0.5547519 0.5469733 +0.3951413 0.5547519 0.5469733 +0.4108177 0.5547519 0.5469733 +0.4244723 0.5547519 0.5469733 +0.4365675 0.5547519 0.5469733 +0.4474232 0.5547519 0.5469733 +0.45727 0.5547519 0.5469733 +0.4662797 0.5547519 0.5469733 +0.4745834 0.5547519 0.5469733 +0.4822838 0.5547519 0.5469733 +0.4894626 0.5547519 0.5469733 +0.4961862 0.5547519 0.5469733 +0.5025087 0.5547519 0.5469733 +0.5084753 0.5547519 0.5469733 +0.514124 0.5547519 0.5469733 +0.519487 0.5547519 0.5469733 +0.5245917 0.5547519 0.5469733 +0.529462 0.5547519 0.5469733 +0.5341183 0.5547519 0.5469733 +0.5385787 0.5547519 0.5469733 +0.5428591 0.5547519 0.5469733 +0.5469733 0.5547519 0.5469733 +0.5509339 0.5547519 0.5469733 +0.5547519 0.5547519 0.5469733 +0.5584371 0.5547519 0.5469733 +0.5619986 0.5547519 0.5469733 +0.5654443 0.5547519 0.5469733 +0.5687816 0.5547519 0.5469733 +0.092819 0.5584371 0.5469733 +0.2262531 0.5584371 0.5469733 +0.2875993 0.5584371 0.5469733 +0.3262122 0.5584371 0.5469733 +0.3544566 0.5584371 0.5469733 +0.3767383 0.5584371 0.5469733 +0.3951413 0.5584371 0.5469733 +0.4108177 0.5584371 0.5469733 +0.4244723 0.5584371 0.5469733 +0.4365675 0.5584371 0.5469733 +0.4474232 0.5584371 0.5469733 +0.45727 0.5584371 0.5469733 +0.4662797 0.5584371 0.5469733 +0.4745834 0.5584371 0.5469733 +0.4822838 0.5584371 0.5469733 +0.4894626 0.5584371 0.5469733 +0.4961862 0.5584371 0.5469733 +0.5025087 0.5584371 0.5469733 +0.5084753 0.5584371 0.5469733 +0.514124 0.5584371 0.5469733 +0.519487 0.5584371 0.5469733 +0.5245917 0.5584371 0.5469733 +0.529462 0.5584371 0.5469733 +0.5341183 0.5584371 0.5469733 +0.5385787 0.5584371 0.5469733 +0.5428591 0.5584371 0.5469733 +0.5469733 0.5584371 0.5469733 +0.5509339 0.5584371 0.5469733 +0.5547519 0.5584371 0.5469733 +0.5584371 0.5584371 0.5469733 +0.5619986 0.5584371 0.5469733 +0.5654443 0.5584371 0.5469733 +0.5687816 0.5584371 0.5469733 +0.092819 0.5619986 0.5469733 +0.2262531 0.5619986 0.5469733 +0.2875993 0.5619986 0.5469733 +0.3262122 0.5619986 0.5469733 +0.3544566 0.5619986 0.5469733 +0.3767383 0.5619986 0.5469733 +0.3951413 0.5619986 0.5469733 +0.4108177 0.5619986 0.5469733 +0.4244723 0.5619986 0.5469733 +0.4365675 0.5619986 0.5469733 +0.4474232 0.5619986 0.5469733 +0.45727 0.5619986 0.5469733 +0.4662797 0.5619986 0.5469733 +0.4745834 0.5619986 0.5469733 +0.4822838 0.5619986 0.5469733 +0.4894626 0.5619986 0.5469733 +0.4961862 0.5619986 0.5469733 +0.5025087 0.5619986 0.5469733 +0.5084753 0.5619986 0.5469733 +0.514124 0.5619986 0.5469733 +0.519487 0.5619986 0.5469733 +0.5245917 0.5619986 0.5469733 +0.529462 0.5619986 0.5469733 +0.5341183 0.5619986 0.5469733 +0.5385787 0.5619986 0.5469733 +0.5428591 0.5619986 0.5469733 +0.5469733 0.5619986 0.5469733 +0.5509339 0.5619986 0.5469733 +0.5547519 0.5619986 0.5469733 +0.5584371 0.5619986 0.5469733 +0.5619986 0.5619986 0.5469733 +0.5654443 0.5619986 0.5469733 +0.5687816 0.5619986 0.5469733 +0.092819 0.5654443 0.5469733 +0.2262531 0.5654443 0.5469733 +0.2875993 0.5654443 0.5469733 +0.3262122 0.5654443 0.5469733 +0.3544566 0.5654443 0.5469733 +0.3767383 0.5654443 0.5469733 +0.3951413 0.5654443 0.5469733 +0.4108177 0.5654443 0.5469733 +0.4244723 0.5654443 0.5469733 +0.4365675 0.5654443 0.5469733 +0.4474232 0.5654443 0.5469733 +0.45727 0.5654443 0.5469733 +0.4662797 0.5654443 0.5469733 +0.4745834 0.5654443 0.5469733 +0.4822838 0.5654443 0.5469733 +0.4894626 0.5654443 0.5469733 +0.4961862 0.5654443 0.5469733 +0.5025087 0.5654443 0.5469733 +0.5084753 0.5654443 0.5469733 +0.514124 0.5654443 0.5469733 +0.519487 0.5654443 0.5469733 +0.5245917 0.5654443 0.5469733 +0.529462 0.5654443 0.5469733 +0.5341183 0.5654443 0.5469733 +0.5385787 0.5654443 0.5469733 +0.5428591 0.5654443 0.5469733 +0.5469733 0.5654443 0.5469733 +0.5509339 0.5654443 0.5469733 +0.5547519 0.5654443 0.5469733 +0.5584371 0.5654443 0.5469733 +0.5619986 0.5654443 0.5469733 +0.5654443 0.5654443 0.5469733 +0.5687816 0.5654443 0.5469733 +0.092819 0.5687816 0.5469733 +0.2262531 0.5687816 0.5469733 +0.2875993 0.5687816 0.5469733 +0.3262122 0.5687816 0.5469733 +0.3544566 0.5687816 0.5469733 +0.3767383 0.5687816 0.5469733 +0.3951413 0.5687816 0.5469733 +0.4108177 0.5687816 0.5469733 +0.4244723 0.5687816 0.5469733 +0.4365675 0.5687816 0.5469733 +0.4474232 0.5687816 0.5469733 +0.45727 0.5687816 0.5469733 +0.4662797 0.5687816 0.5469733 +0.4745834 0.5687816 0.5469733 +0.4822838 0.5687816 0.5469733 +0.4894626 0.5687816 0.5469733 +0.4961862 0.5687816 0.5469733 +0.5025087 0.5687816 0.5469733 +0.5084753 0.5687816 0.5469733 +0.514124 0.5687816 0.5469733 +0.519487 0.5687816 0.5469733 +0.5245917 0.5687816 0.5469733 +0.529462 0.5687816 0.5469733 +0.5341183 0.5687816 0.5469733 +0.5385787 0.5687816 0.5469733 +0.5428591 0.5687816 0.5469733 +0.5469733 0.5687816 0.5469733 +0.5509339 0.5687816 0.5469733 +0.5547519 0.5687816 0.5469733 +0.5584371 0.5687816 0.5469733 +0.5619986 0.5687816 0.5469733 +0.5654443 0.5687816 0.5469733 +0.5687816 0.5687816 0.5469733 +0.092819 0.092819 0.5509339 +0.2262531 0.092819 0.5509339 +0.2875993 0.092819 0.5509339 +0.3262122 0.092819 0.5509339 +0.3544566 0.092819 0.5509339 +0.3767383 0.092819 0.5509339 +0.3951413 0.092819 0.5509339 +0.4108177 0.092819 0.5509339 +0.4244723 0.092819 0.5509339 +0.4365675 0.092819 0.5509339 +0.4474232 0.092819 0.5509339 +0.45727 0.092819 0.5509339 +0.4662797 0.092819 0.5509339 +0.4745834 0.092819 0.5509339 +0.4822838 0.092819 0.5509339 +0.4894626 0.092819 0.5509339 +0.4961862 0.092819 0.5509339 +0.5025087 0.092819 0.5509339 +0.5084753 0.092819 0.5509339 +0.514124 0.092819 0.5509339 +0.519487 0.092819 0.5509339 +0.5245917 0.092819 0.5509339 +0.529462 0.092819 0.5509339 +0.5341183 0.092819 0.5509339 +0.5385787 0.092819 0.5509339 +0.5428591 0.092819 0.5509339 +0.5469733 0.092819 0.5509339 +0.5509339 0.092819 0.5509339 +0.5547519 0.092819 0.5509339 +0.5584371 0.092819 0.5509339 +0.5619986 0.092819 0.5509339 +0.5654443 0.092819 0.5509339 +0.5687816 0.092819 0.5509339 +0.092819 0.2262531 0.5509339 +0.2262531 0.2262531 0.5509339 +0.2875993 0.2262531 0.5509339 +0.3262122 0.2262531 0.5509339 +0.3544566 0.2262531 0.5509339 +0.3767383 0.2262531 0.5509339 +0.3951413 0.2262531 0.5509339 +0.4108177 0.2262531 0.5509339 +0.4244723 0.2262531 0.5509339 +0.4365675 0.2262531 0.5509339 +0.4474232 0.2262531 0.5509339 +0.45727 0.2262531 0.5509339 +0.4662797 0.2262531 0.5509339 +0.4745834 0.2262531 0.5509339 +0.4822838 0.2262531 0.5509339 +0.4894626 0.2262531 0.5509339 +0.4961862 0.2262531 0.5509339 +0.5025087 0.2262531 0.5509339 +0.5084753 0.2262531 0.5509339 +0.514124 0.2262531 0.5509339 +0.519487 0.2262531 0.5509339 +0.5245917 0.2262531 0.5509339 +0.529462 0.2262531 0.5509339 +0.5341183 0.2262531 0.5509339 +0.5385787 0.2262531 0.5509339 +0.5428591 0.2262531 0.5509339 +0.5469733 0.2262531 0.5509339 +0.5509339 0.2262531 0.5509339 +0.5547519 0.2262531 0.5509339 +0.5584371 0.2262531 0.5509339 +0.5619986 0.2262531 0.5509339 +0.5654443 0.2262531 0.5509339 +0.5687816 0.2262531 0.5509339 +0.092819 0.2875993 0.5509339 +0.2262531 0.2875993 0.5509339 +0.2875993 0.2875993 0.5509339 +0.3262122 0.2875993 0.5509339 +0.3544566 0.2875993 0.5509339 +0.3767383 0.2875993 0.5509339 +0.3951413 0.2875993 0.5509339 +0.4108177 0.2875993 0.5509339 +0.4244723 0.2875993 0.5509339 +0.4365675 0.2875993 0.5509339 +0.4474232 0.2875993 0.5509339 +0.45727 0.2875993 0.5509339 +0.4662797 0.2875993 0.5509339 +0.4745834 0.2875993 0.5509339 +0.4822838 0.2875993 0.5509339 +0.4894626 0.2875993 0.5509339 +0.4961862 0.2875993 0.5509339 +0.5025087 0.2875993 0.5509339 +0.5084753 0.2875993 0.5509339 +0.514124 0.2875993 0.5509339 +0.519487 0.2875993 0.5509339 +0.5245917 0.2875993 0.5509339 +0.529462 0.2875993 0.5509339 +0.5341183 0.2875993 0.5509339 +0.5385787 0.2875993 0.5509339 +0.5428591 0.2875993 0.5509339 +0.5469733 0.2875993 0.5509339 +0.5509339 0.2875993 0.5509339 +0.5547519 0.2875993 0.5509339 +0.5584371 0.2875993 0.5509339 +0.5619986 0.2875993 0.5509339 +0.5654443 0.2875993 0.5509339 +0.5687816 0.2875993 0.5509339 +0.092819 0.3262122 0.5509339 +0.2262531 0.3262122 0.5509339 +0.2875993 0.3262122 0.5509339 +0.3262122 0.3262122 0.5509339 +0.3544566 0.3262122 0.5509339 +0.3767383 0.3262122 0.5509339 +0.3951413 0.3262122 0.5509339 +0.4108177 0.3262122 0.5509339 +0.4244723 0.3262122 0.5509339 +0.4365675 0.3262122 0.5509339 +0.4474232 0.3262122 0.5509339 +0.45727 0.3262122 0.5509339 +0.4662797 0.3262122 0.5509339 +0.4745834 0.3262122 0.5509339 +0.4822838 0.3262122 0.5509339 +0.4894626 0.3262122 0.5509339 +0.4961862 0.3262122 0.5509339 +0.5025087 0.3262122 0.5509339 +0.5084753 0.3262122 0.5509339 +0.514124 0.3262122 0.5509339 +0.519487 0.3262122 0.5509339 +0.5245917 0.3262122 0.5509339 +0.529462 0.3262122 0.5509339 +0.5341183 0.3262122 0.5509339 +0.5385787 0.3262122 0.5509339 +0.5428591 0.3262122 0.5509339 +0.5469733 0.3262122 0.5509339 +0.5509339 0.3262122 0.5509339 +0.5547519 0.3262122 0.5509339 +0.5584371 0.3262122 0.5509339 +0.5619986 0.3262122 0.5509339 +0.5654443 0.3262122 0.5509339 +0.5687816 0.3262122 0.5509339 +0.092819 0.3544566 0.5509339 +0.2262531 0.3544566 0.5509339 +0.2875993 0.3544566 0.5509339 +0.3262122 0.3544566 0.5509339 +0.3544566 0.3544566 0.5509339 +0.3767383 0.3544566 0.5509339 +0.3951413 0.3544566 0.5509339 +0.4108177 0.3544566 0.5509339 +0.4244723 0.3544566 0.5509339 +0.4365675 0.3544566 0.5509339 +0.4474232 0.3544566 0.5509339 +0.45727 0.3544566 0.5509339 +0.4662797 0.3544566 0.5509339 +0.4745834 0.3544566 0.5509339 +0.4822838 0.3544566 0.5509339 +0.4894626 0.3544566 0.5509339 +0.4961862 0.3544566 0.5509339 +0.5025087 0.3544566 0.5509339 +0.5084753 0.3544566 0.5509339 +0.514124 0.3544566 0.5509339 +0.519487 0.3544566 0.5509339 +0.5245917 0.3544566 0.5509339 +0.529462 0.3544566 0.5509339 +0.5341183 0.3544566 0.5509339 +0.5385787 0.3544566 0.5509339 +0.5428591 0.3544566 0.5509339 +0.5469733 0.3544566 0.5509339 +0.5509339 0.3544566 0.5509339 +0.5547519 0.3544566 0.5509339 +0.5584371 0.3544566 0.5509339 +0.5619986 0.3544566 0.5509339 +0.5654443 0.3544566 0.5509339 +0.5687816 0.3544566 0.5509339 +0.092819 0.3767383 0.5509339 +0.2262531 0.3767383 0.5509339 +0.2875993 0.3767383 0.5509339 +0.3262122 0.3767383 0.5509339 +0.3544566 0.3767383 0.5509339 +0.3767383 0.3767383 0.5509339 +0.3951413 0.3767383 0.5509339 +0.4108177 0.3767383 0.5509339 +0.4244723 0.3767383 0.5509339 +0.4365675 0.3767383 0.5509339 +0.4474232 0.3767383 0.5509339 +0.45727 0.3767383 0.5509339 +0.4662797 0.3767383 0.5509339 +0.4745834 0.3767383 0.5509339 +0.4822838 0.3767383 0.5509339 +0.4894626 0.3767383 0.5509339 +0.4961862 0.3767383 0.5509339 +0.5025087 0.3767383 0.5509339 +0.5084753 0.3767383 0.5509339 +0.514124 0.3767383 0.5509339 +0.519487 0.3767383 0.5509339 +0.5245917 0.3767383 0.5509339 +0.529462 0.3767383 0.5509339 +0.5341183 0.3767383 0.5509339 +0.5385787 0.3767383 0.5509339 +0.5428591 0.3767383 0.5509339 +0.5469733 0.3767383 0.5509339 +0.5509339 0.3767383 0.5509339 +0.5547519 0.3767383 0.5509339 +0.5584371 0.3767383 0.5509339 +0.5619986 0.3767383 0.5509339 +0.5654443 0.3767383 0.5509339 +0.5687816 0.3767383 0.5509339 +0.092819 0.3951413 0.5509339 +0.2262531 0.3951413 0.5509339 +0.2875993 0.3951413 0.5509339 +0.3262122 0.3951413 0.5509339 +0.3544566 0.3951413 0.5509339 +0.3767383 0.3951413 0.5509339 +0.3951413 0.3951413 0.5509339 +0.4108177 0.3951413 0.5509339 +0.4244723 0.3951413 0.5509339 +0.4365675 0.3951413 0.5509339 +0.4474232 0.3951413 0.5509339 +0.45727 0.3951413 0.5509339 +0.4662797 0.3951413 0.5509339 +0.4745834 0.3951413 0.5509339 +0.4822838 0.3951413 0.5509339 +0.4894626 0.3951413 0.5509339 +0.4961862 0.3951413 0.5509339 +0.5025087 0.3951413 0.5509339 +0.5084753 0.3951413 0.5509339 +0.514124 0.3951413 0.5509339 +0.519487 0.3951413 0.5509339 +0.5245917 0.3951413 0.5509339 +0.529462 0.3951413 0.5509339 +0.5341183 0.3951413 0.5509339 +0.5385787 0.3951413 0.5509339 +0.5428591 0.3951413 0.5509339 +0.5469733 0.3951413 0.5509339 +0.5509339 0.3951413 0.5509339 +0.5547519 0.3951413 0.5509339 +0.5584371 0.3951413 0.5509339 +0.5619986 0.3951413 0.5509339 +0.5654443 0.3951413 0.5509339 +0.5687816 0.3951413 0.5509339 +0.092819 0.4108177 0.5509339 +0.2262531 0.4108177 0.5509339 +0.2875993 0.4108177 0.5509339 +0.3262122 0.4108177 0.5509339 +0.3544566 0.4108177 0.5509339 +0.3767383 0.4108177 0.5509339 +0.3951413 0.4108177 0.5509339 +0.4108177 0.4108177 0.5509339 +0.4244723 0.4108177 0.5509339 +0.4365675 0.4108177 0.5509339 +0.4474232 0.4108177 0.5509339 +0.45727 0.4108177 0.5509339 +0.4662797 0.4108177 0.5509339 +0.4745834 0.4108177 0.5509339 +0.4822838 0.4108177 0.5509339 +0.4894626 0.4108177 0.5509339 +0.4961862 0.4108177 0.5509339 +0.5025087 0.4108177 0.5509339 +0.5084753 0.4108177 0.5509339 +0.514124 0.4108177 0.5509339 +0.519487 0.4108177 0.5509339 +0.5245917 0.4108177 0.5509339 +0.529462 0.4108177 0.5509339 +0.5341183 0.4108177 0.5509339 +0.5385787 0.4108177 0.5509339 +0.5428591 0.4108177 0.5509339 +0.5469733 0.4108177 0.5509339 +0.5509339 0.4108177 0.5509339 +0.5547519 0.4108177 0.5509339 +0.5584371 0.4108177 0.5509339 +0.5619986 0.4108177 0.5509339 +0.5654443 0.4108177 0.5509339 +0.5687816 0.4108177 0.5509339 +0.092819 0.4244723 0.5509339 +0.2262531 0.4244723 0.5509339 +0.2875993 0.4244723 0.5509339 +0.3262122 0.4244723 0.5509339 +0.3544566 0.4244723 0.5509339 +0.3767383 0.4244723 0.5509339 +0.3951413 0.4244723 0.5509339 +0.4108177 0.4244723 0.5509339 +0.4244723 0.4244723 0.5509339 +0.4365675 0.4244723 0.5509339 +0.4474232 0.4244723 0.5509339 +0.45727 0.4244723 0.5509339 +0.4662797 0.4244723 0.5509339 +0.4745834 0.4244723 0.5509339 +0.4822838 0.4244723 0.5509339 +0.4894626 0.4244723 0.5509339 +0.4961862 0.4244723 0.5509339 +0.5025087 0.4244723 0.5509339 +0.5084753 0.4244723 0.5509339 +0.514124 0.4244723 0.5509339 +0.519487 0.4244723 0.5509339 +0.5245917 0.4244723 0.5509339 +0.529462 0.4244723 0.5509339 +0.5341183 0.4244723 0.5509339 +0.5385787 0.4244723 0.5509339 +0.5428591 0.4244723 0.5509339 +0.5469733 0.4244723 0.5509339 +0.5509339 0.4244723 0.5509339 +0.5547519 0.4244723 0.5509339 +0.5584371 0.4244723 0.5509339 +0.5619986 0.4244723 0.5509339 +0.5654443 0.4244723 0.5509339 +0.5687816 0.4244723 0.5509339 +0.092819 0.4365675 0.5509339 +0.2262531 0.4365675 0.5509339 +0.2875993 0.4365675 0.5509339 +0.3262122 0.4365675 0.5509339 +0.3544566 0.4365675 0.5509339 +0.3767383 0.4365675 0.5509339 +0.3951413 0.4365675 0.5509339 +0.4108177 0.4365675 0.5509339 +0.4244723 0.4365675 0.5509339 +0.4365675 0.4365675 0.5509339 +0.4474232 0.4365675 0.5509339 +0.45727 0.4365675 0.5509339 +0.4662797 0.4365675 0.5509339 +0.4745834 0.4365675 0.5509339 +0.4822838 0.4365675 0.5509339 +0.4894626 0.4365675 0.5509339 +0.4961862 0.4365675 0.5509339 +0.5025087 0.4365675 0.5509339 +0.5084753 0.4365675 0.5509339 +0.514124 0.4365675 0.5509339 +0.519487 0.4365675 0.5509339 +0.5245917 0.4365675 0.5509339 +0.529462 0.4365675 0.5509339 +0.5341183 0.4365675 0.5509339 +0.5385787 0.4365675 0.5509339 +0.5428591 0.4365675 0.5509339 +0.5469733 0.4365675 0.5509339 +0.5509339 0.4365675 0.5509339 +0.5547519 0.4365675 0.5509339 +0.5584371 0.4365675 0.5509339 +0.5619986 0.4365675 0.5509339 +0.5654443 0.4365675 0.5509339 +0.5687816 0.4365675 0.5509339 +0.092819 0.4474232 0.5509339 +0.2262531 0.4474232 0.5509339 +0.2875993 0.4474232 0.5509339 +0.3262122 0.4474232 0.5509339 +0.3544566 0.4474232 0.5509339 +0.3767383 0.4474232 0.5509339 +0.3951413 0.4474232 0.5509339 +0.4108177 0.4474232 0.5509339 +0.4244723 0.4474232 0.5509339 +0.4365675 0.4474232 0.5509339 +0.4474232 0.4474232 0.5509339 +0.45727 0.4474232 0.5509339 +0.4662797 0.4474232 0.5509339 +0.4745834 0.4474232 0.5509339 +0.4822838 0.4474232 0.5509339 +0.4894626 0.4474232 0.5509339 +0.4961862 0.4474232 0.5509339 +0.5025087 0.4474232 0.5509339 +0.5084753 0.4474232 0.5509339 +0.514124 0.4474232 0.5509339 +0.519487 0.4474232 0.5509339 +0.5245917 0.4474232 0.5509339 +0.529462 0.4474232 0.5509339 +0.5341183 0.4474232 0.5509339 +0.5385787 0.4474232 0.5509339 +0.5428591 0.4474232 0.5509339 +0.5469733 0.4474232 0.5509339 +0.5509339 0.4474232 0.5509339 +0.5547519 0.4474232 0.5509339 +0.5584371 0.4474232 0.5509339 +0.5619986 0.4474232 0.5509339 +0.5654443 0.4474232 0.5509339 +0.5687816 0.4474232 0.5509339 +0.092819 0.45727 0.5509339 +0.2262531 0.45727 0.5509339 +0.2875993 0.45727 0.5509339 +0.3262122 0.45727 0.5509339 +0.3544566 0.45727 0.5509339 +0.3767383 0.45727 0.5509339 +0.3951413 0.45727 0.5509339 +0.4108177 0.45727 0.5509339 +0.4244723 0.45727 0.5509339 +0.4365675 0.45727 0.5509339 +0.4474232 0.45727 0.5509339 +0.45727 0.45727 0.5509339 +0.4662797 0.45727 0.5509339 +0.4745834 0.45727 0.5509339 +0.4822838 0.45727 0.5509339 +0.4894626 0.45727 0.5509339 +0.4961862 0.45727 0.5509339 +0.5025087 0.45727 0.5509339 +0.5084753 0.45727 0.5509339 +0.514124 0.45727 0.5509339 +0.519487 0.45727 0.5509339 +0.5245917 0.45727 0.5509339 +0.529462 0.45727 0.5509339 +0.5341183 0.45727 0.5509339 +0.5385787 0.45727 0.5509339 +0.5428591 0.45727 0.5509339 +0.5469733 0.45727 0.5509339 +0.5509339 0.45727 0.5509339 +0.5547519 0.45727 0.5509339 +0.5584371 0.45727 0.5509339 +0.5619986 0.45727 0.5509339 +0.5654443 0.45727 0.5509339 +0.5687816 0.45727 0.5509339 +0.092819 0.4662797 0.5509339 +0.2262531 0.4662797 0.5509339 +0.2875993 0.4662797 0.5509339 +0.3262122 0.4662797 0.5509339 +0.3544566 0.4662797 0.5509339 +0.3767383 0.4662797 0.5509339 +0.3951413 0.4662797 0.5509339 +0.4108177 0.4662797 0.5509339 +0.4244723 0.4662797 0.5509339 +0.4365675 0.4662797 0.5509339 +0.4474232 0.4662797 0.5509339 +0.45727 0.4662797 0.5509339 +0.4662797 0.4662797 0.5509339 +0.4745834 0.4662797 0.5509339 +0.4822838 0.4662797 0.5509339 +0.4894626 0.4662797 0.5509339 +0.4961862 0.4662797 0.5509339 +0.5025087 0.4662797 0.5509339 +0.5084753 0.4662797 0.5509339 +0.514124 0.4662797 0.5509339 +0.519487 0.4662797 0.5509339 +0.5245917 0.4662797 0.5509339 +0.529462 0.4662797 0.5509339 +0.5341183 0.4662797 0.5509339 +0.5385787 0.4662797 0.5509339 +0.5428591 0.4662797 0.5509339 +0.5469733 0.4662797 0.5509339 +0.5509339 0.4662797 0.5509339 +0.5547519 0.4662797 0.5509339 +0.5584371 0.4662797 0.5509339 +0.5619986 0.4662797 0.5509339 +0.5654443 0.4662797 0.5509339 +0.5687816 0.4662797 0.5509339 +0.092819 0.4745834 0.5509339 +0.2262531 0.4745834 0.5509339 +0.2875993 0.4745834 0.5509339 +0.3262122 0.4745834 0.5509339 +0.3544566 0.4745834 0.5509339 +0.3767383 0.4745834 0.5509339 +0.3951413 0.4745834 0.5509339 +0.4108177 0.4745834 0.5509339 +0.4244723 0.4745834 0.5509339 +0.4365675 0.4745834 0.5509339 +0.4474232 0.4745834 0.5509339 +0.45727 0.4745834 0.5509339 +0.4662797 0.4745834 0.5509339 +0.4745834 0.4745834 0.5509339 +0.4822838 0.4745834 0.5509339 +0.4894626 0.4745834 0.5509339 +0.4961862 0.4745834 0.5509339 +0.5025087 0.4745834 0.5509339 +0.5084753 0.4745834 0.5509339 +0.514124 0.4745834 0.5509339 +0.519487 0.4745834 0.5509339 +0.5245917 0.4745834 0.5509339 +0.529462 0.4745834 0.5509339 +0.5341183 0.4745834 0.5509339 +0.5385787 0.4745834 0.5509339 +0.5428591 0.4745834 0.5509339 +0.5469733 0.4745834 0.5509339 +0.5509339 0.4745834 0.5509339 +0.5547519 0.4745834 0.5509339 +0.5584371 0.4745834 0.5509339 +0.5619986 0.4745834 0.5509339 +0.5654443 0.4745834 0.5509339 +0.5687816 0.4745834 0.5509339 +0.092819 0.4822838 0.5509339 +0.2262531 0.4822838 0.5509339 +0.2875993 0.4822838 0.5509339 +0.3262122 0.4822838 0.5509339 +0.3544566 0.4822838 0.5509339 +0.3767383 0.4822838 0.5509339 +0.3951413 0.4822838 0.5509339 +0.4108177 0.4822838 0.5509339 +0.4244723 0.4822838 0.5509339 +0.4365675 0.4822838 0.5509339 +0.4474232 0.4822838 0.5509339 +0.45727 0.4822838 0.5509339 +0.4662797 0.4822838 0.5509339 +0.4745834 0.4822838 0.5509339 +0.4822838 0.4822838 0.5509339 +0.4894626 0.4822838 0.5509339 +0.4961862 0.4822838 0.5509339 +0.5025087 0.4822838 0.5509339 +0.5084753 0.4822838 0.5509339 +0.514124 0.4822838 0.5509339 +0.519487 0.4822838 0.5509339 +0.5245917 0.4822838 0.5509339 +0.529462 0.4822838 0.5509339 +0.5341183 0.4822838 0.5509339 +0.5385787 0.4822838 0.5509339 +0.5428591 0.4822838 0.5509339 +0.5469733 0.4822838 0.5509339 +0.5509339 0.4822838 0.5509339 +0.5547519 0.4822838 0.5509339 +0.5584371 0.4822838 0.5509339 +0.5619986 0.4822838 0.5509339 +0.5654443 0.4822838 0.5509339 +0.5687816 0.4822838 0.5509339 +0.092819 0.4894626 0.5509339 +0.2262531 0.4894626 0.5509339 +0.2875993 0.4894626 0.5509339 +0.3262122 0.4894626 0.5509339 +0.3544566 0.4894626 0.5509339 +0.3767383 0.4894626 0.5509339 +0.3951413 0.4894626 0.5509339 +0.4108177 0.4894626 0.5509339 +0.4244723 0.4894626 0.5509339 +0.4365675 0.4894626 0.5509339 +0.4474232 0.4894626 0.5509339 +0.45727 0.4894626 0.5509339 +0.4662797 0.4894626 0.5509339 +0.4745834 0.4894626 0.5509339 +0.4822838 0.4894626 0.5509339 +0.4894626 0.4894626 0.5509339 +0.4961862 0.4894626 0.5509339 +0.5025087 0.4894626 0.5509339 +0.5084753 0.4894626 0.5509339 +0.514124 0.4894626 0.5509339 +0.519487 0.4894626 0.5509339 +0.5245917 0.4894626 0.5509339 +0.529462 0.4894626 0.5509339 +0.5341183 0.4894626 0.5509339 +0.5385787 0.4894626 0.5509339 +0.5428591 0.4894626 0.5509339 +0.5469733 0.4894626 0.5509339 +0.5509339 0.4894626 0.5509339 +0.5547519 0.4894626 0.5509339 +0.5584371 0.4894626 0.5509339 +0.5619986 0.4894626 0.5509339 +0.5654443 0.4894626 0.5509339 +0.5687816 0.4894626 0.5509339 +0.092819 0.4961862 0.5509339 +0.2262531 0.4961862 0.5509339 +0.2875993 0.4961862 0.5509339 +0.3262122 0.4961862 0.5509339 +0.3544566 0.4961862 0.5509339 +0.3767383 0.4961862 0.5509339 +0.3951413 0.4961862 0.5509339 +0.4108177 0.4961862 0.5509339 +0.4244723 0.4961862 0.5509339 +0.4365675 0.4961862 0.5509339 +0.4474232 0.4961862 0.5509339 +0.45727 0.4961862 0.5509339 +0.4662797 0.4961862 0.5509339 +0.4745834 0.4961862 0.5509339 +0.4822838 0.4961862 0.5509339 +0.4894626 0.4961862 0.5509339 +0.4961862 0.4961862 0.5509339 +0.5025087 0.4961862 0.5509339 +0.5084753 0.4961862 0.5509339 +0.514124 0.4961862 0.5509339 +0.519487 0.4961862 0.5509339 +0.5245917 0.4961862 0.5509339 +0.529462 0.4961862 0.5509339 +0.5341183 0.4961862 0.5509339 +0.5385787 0.4961862 0.5509339 +0.5428591 0.4961862 0.5509339 +0.5469733 0.4961862 0.5509339 +0.5509339 0.4961862 0.5509339 +0.5547519 0.4961862 0.5509339 +0.5584371 0.4961862 0.5509339 +0.5619986 0.4961862 0.5509339 +0.5654443 0.4961862 0.5509339 +0.5687816 0.4961862 0.5509339 +0.092819 0.5025087 0.5509339 +0.2262531 0.5025087 0.5509339 +0.2875993 0.5025087 0.5509339 +0.3262122 0.5025087 0.5509339 +0.3544566 0.5025087 0.5509339 +0.3767383 0.5025087 0.5509339 +0.3951413 0.5025087 0.5509339 +0.4108177 0.5025087 0.5509339 +0.4244723 0.5025087 0.5509339 +0.4365675 0.5025087 0.5509339 +0.4474232 0.5025087 0.5509339 +0.45727 0.5025087 0.5509339 +0.4662797 0.5025087 0.5509339 +0.4745834 0.5025087 0.5509339 +0.4822838 0.5025087 0.5509339 +0.4894626 0.5025087 0.5509339 +0.4961862 0.5025087 0.5509339 +0.5025087 0.5025087 0.5509339 +0.5084753 0.5025087 0.5509339 +0.514124 0.5025087 0.5509339 +0.519487 0.5025087 0.5509339 +0.5245917 0.5025087 0.5509339 +0.529462 0.5025087 0.5509339 +0.5341183 0.5025087 0.5509339 +0.5385787 0.5025087 0.5509339 +0.5428591 0.5025087 0.5509339 +0.5469733 0.5025087 0.5509339 +0.5509339 0.5025087 0.5509339 +0.5547519 0.5025087 0.5509339 +0.5584371 0.5025087 0.5509339 +0.5619986 0.5025087 0.5509339 +0.5654443 0.5025087 0.5509339 +0.5687816 0.5025087 0.5509339 +0.092819 0.5084753 0.5509339 +0.2262531 0.5084753 0.5509339 +0.2875993 0.5084753 0.5509339 +0.3262122 0.5084753 0.5509339 +0.3544566 0.5084753 0.5509339 +0.3767383 0.5084753 0.5509339 +0.3951413 0.5084753 0.5509339 +0.4108177 0.5084753 0.5509339 +0.4244723 0.5084753 0.5509339 +0.4365675 0.5084753 0.5509339 +0.4474232 0.5084753 0.5509339 +0.45727 0.5084753 0.5509339 +0.4662797 0.5084753 0.5509339 +0.4745834 0.5084753 0.5509339 +0.4822838 0.5084753 0.5509339 +0.4894626 0.5084753 0.5509339 +0.4961862 0.5084753 0.5509339 +0.5025087 0.5084753 0.5509339 +0.5084753 0.5084753 0.5509339 +0.514124 0.5084753 0.5509339 +0.519487 0.5084753 0.5509339 +0.5245917 0.5084753 0.5509339 +0.529462 0.5084753 0.5509339 +0.5341183 0.5084753 0.5509339 +0.5385787 0.5084753 0.5509339 +0.5428591 0.5084753 0.5509339 +0.5469733 0.5084753 0.5509339 +0.5509339 0.5084753 0.5509339 +0.5547519 0.5084753 0.5509339 +0.5584371 0.5084753 0.5509339 +0.5619986 0.5084753 0.5509339 +0.5654443 0.5084753 0.5509339 +0.5687816 0.5084753 0.5509339 +0.092819 0.514124 0.5509339 +0.2262531 0.514124 0.5509339 +0.2875993 0.514124 0.5509339 +0.3262122 0.514124 0.5509339 +0.3544566 0.514124 0.5509339 +0.3767383 0.514124 0.5509339 +0.3951413 0.514124 0.5509339 +0.4108177 0.514124 0.5509339 +0.4244723 0.514124 0.5509339 +0.4365675 0.514124 0.5509339 +0.4474232 0.514124 0.5509339 +0.45727 0.514124 0.5509339 +0.4662797 0.514124 0.5509339 +0.4745834 0.514124 0.5509339 +0.4822838 0.514124 0.5509339 +0.4894626 0.514124 0.5509339 +0.4961862 0.514124 0.5509339 +0.5025087 0.514124 0.5509339 +0.5084753 0.514124 0.5509339 +0.514124 0.514124 0.5509339 +0.519487 0.514124 0.5509339 +0.5245917 0.514124 0.5509339 +0.529462 0.514124 0.5509339 +0.5341183 0.514124 0.5509339 +0.5385787 0.514124 0.5509339 +0.5428591 0.514124 0.5509339 +0.5469733 0.514124 0.5509339 +0.5509339 0.514124 0.5509339 +0.5547519 0.514124 0.5509339 +0.5584371 0.514124 0.5509339 +0.5619986 0.514124 0.5509339 +0.5654443 0.514124 0.5509339 +0.5687816 0.514124 0.5509339 +0.092819 0.519487 0.5509339 +0.2262531 0.519487 0.5509339 +0.2875993 0.519487 0.5509339 +0.3262122 0.519487 0.5509339 +0.3544566 0.519487 0.5509339 +0.3767383 0.519487 0.5509339 +0.3951413 0.519487 0.5509339 +0.4108177 0.519487 0.5509339 +0.4244723 0.519487 0.5509339 +0.4365675 0.519487 0.5509339 +0.4474232 0.519487 0.5509339 +0.45727 0.519487 0.5509339 +0.4662797 0.519487 0.5509339 +0.4745834 0.519487 0.5509339 +0.4822838 0.519487 0.5509339 +0.4894626 0.519487 0.5509339 +0.4961862 0.519487 0.5509339 +0.5025087 0.519487 0.5509339 +0.5084753 0.519487 0.5509339 +0.514124 0.519487 0.5509339 +0.519487 0.519487 0.5509339 +0.5245917 0.519487 0.5509339 +0.529462 0.519487 0.5509339 +0.5341183 0.519487 0.5509339 +0.5385787 0.519487 0.5509339 +0.5428591 0.519487 0.5509339 +0.5469733 0.519487 0.5509339 +0.5509339 0.519487 0.5509339 +0.5547519 0.519487 0.5509339 +0.5584371 0.519487 0.5509339 +0.5619986 0.519487 0.5509339 +0.5654443 0.519487 0.5509339 +0.5687816 0.519487 0.5509339 +0.092819 0.5245917 0.5509339 +0.2262531 0.5245917 0.5509339 +0.2875993 0.5245917 0.5509339 +0.3262122 0.5245917 0.5509339 +0.3544566 0.5245917 0.5509339 +0.3767383 0.5245917 0.5509339 +0.3951413 0.5245917 0.5509339 +0.4108177 0.5245917 0.5509339 +0.4244723 0.5245917 0.5509339 +0.4365675 0.5245917 0.5509339 +0.4474232 0.5245917 0.5509339 +0.45727 0.5245917 0.5509339 +0.4662797 0.5245917 0.5509339 +0.4745834 0.5245917 0.5509339 +0.4822838 0.5245917 0.5509339 +0.4894626 0.5245917 0.5509339 +0.4961862 0.5245917 0.5509339 +0.5025087 0.5245917 0.5509339 +0.5084753 0.5245917 0.5509339 +0.514124 0.5245917 0.5509339 +0.519487 0.5245917 0.5509339 +0.5245917 0.5245917 0.5509339 +0.529462 0.5245917 0.5509339 +0.5341183 0.5245917 0.5509339 +0.5385787 0.5245917 0.5509339 +0.5428591 0.5245917 0.5509339 +0.5469733 0.5245917 0.5509339 +0.5509339 0.5245917 0.5509339 +0.5547519 0.5245917 0.5509339 +0.5584371 0.5245917 0.5509339 +0.5619986 0.5245917 0.5509339 +0.5654443 0.5245917 0.5509339 +0.5687816 0.5245917 0.5509339 +0.092819 0.529462 0.5509339 +0.2262531 0.529462 0.5509339 +0.2875993 0.529462 0.5509339 +0.3262122 0.529462 0.5509339 +0.3544566 0.529462 0.5509339 +0.3767383 0.529462 0.5509339 +0.3951413 0.529462 0.5509339 +0.4108177 0.529462 0.5509339 +0.4244723 0.529462 0.5509339 +0.4365675 0.529462 0.5509339 +0.4474232 0.529462 0.5509339 +0.45727 0.529462 0.5509339 +0.4662797 0.529462 0.5509339 +0.4745834 0.529462 0.5509339 +0.4822838 0.529462 0.5509339 +0.4894626 0.529462 0.5509339 +0.4961862 0.529462 0.5509339 +0.5025087 0.529462 0.5509339 +0.5084753 0.529462 0.5509339 +0.514124 0.529462 0.5509339 +0.519487 0.529462 0.5509339 +0.5245917 0.529462 0.5509339 +0.529462 0.529462 0.5509339 +0.5341183 0.529462 0.5509339 +0.5385787 0.529462 0.5509339 +0.5428591 0.529462 0.5509339 +0.5469733 0.529462 0.5509339 +0.5509339 0.529462 0.5509339 +0.5547519 0.529462 0.5509339 +0.5584371 0.529462 0.5509339 +0.5619986 0.529462 0.5509339 +0.5654443 0.529462 0.5509339 +0.5687816 0.529462 0.5509339 +0.092819 0.5341183 0.5509339 +0.2262531 0.5341183 0.5509339 +0.2875993 0.5341183 0.5509339 +0.3262122 0.5341183 0.5509339 +0.3544566 0.5341183 0.5509339 +0.3767383 0.5341183 0.5509339 +0.3951413 0.5341183 0.5509339 +0.4108177 0.5341183 0.5509339 +0.4244723 0.5341183 0.5509339 +0.4365675 0.5341183 0.5509339 +0.4474232 0.5341183 0.5509339 +0.45727 0.5341183 0.5509339 +0.4662797 0.5341183 0.5509339 +0.4745834 0.5341183 0.5509339 +0.4822838 0.5341183 0.5509339 +0.4894626 0.5341183 0.5509339 +0.4961862 0.5341183 0.5509339 +0.5025087 0.5341183 0.5509339 +0.5084753 0.5341183 0.5509339 +0.514124 0.5341183 0.5509339 +0.519487 0.5341183 0.5509339 +0.5245917 0.5341183 0.5509339 +0.529462 0.5341183 0.5509339 +0.5341183 0.5341183 0.5509339 +0.5385787 0.5341183 0.5509339 +0.5428591 0.5341183 0.5509339 +0.5469733 0.5341183 0.5509339 +0.5509339 0.5341183 0.5509339 +0.5547519 0.5341183 0.5509339 +0.5584371 0.5341183 0.5509339 +0.5619986 0.5341183 0.5509339 +0.5654443 0.5341183 0.5509339 +0.5687816 0.5341183 0.5509339 +0.092819 0.5385787 0.5509339 +0.2262531 0.5385787 0.5509339 +0.2875993 0.5385787 0.5509339 +0.3262122 0.5385787 0.5509339 +0.3544566 0.5385787 0.5509339 +0.3767383 0.5385787 0.5509339 +0.3951413 0.5385787 0.5509339 +0.4108177 0.5385787 0.5509339 +0.4244723 0.5385787 0.5509339 +0.4365675 0.5385787 0.5509339 +0.4474232 0.5385787 0.5509339 +0.45727 0.5385787 0.5509339 +0.4662797 0.5385787 0.5509339 +0.4745834 0.5385787 0.5509339 +0.4822838 0.5385787 0.5509339 +0.4894626 0.5385787 0.5509339 +0.4961862 0.5385787 0.5509339 +0.5025087 0.5385787 0.5509339 +0.5084753 0.5385787 0.5509339 +0.514124 0.5385787 0.5509339 +0.519487 0.5385787 0.5509339 +0.5245917 0.5385787 0.5509339 +0.529462 0.5385787 0.5509339 +0.5341183 0.5385787 0.5509339 +0.5385787 0.5385787 0.5509339 +0.5428591 0.5385787 0.5509339 +0.5469733 0.5385787 0.5509339 +0.5509339 0.5385787 0.5509339 +0.5547519 0.5385787 0.5509339 +0.5584371 0.5385787 0.5509339 +0.5619986 0.5385787 0.5509339 +0.5654443 0.5385787 0.5509339 +0.5687816 0.5385787 0.5509339 +0.092819 0.5428591 0.5509339 +0.2262531 0.5428591 0.5509339 +0.2875993 0.5428591 0.5509339 +0.3262122 0.5428591 0.5509339 +0.3544566 0.5428591 0.5509339 +0.3767383 0.5428591 0.5509339 +0.3951413 0.5428591 0.5509339 +0.4108177 0.5428591 0.5509339 +0.4244723 0.5428591 0.5509339 +0.4365675 0.5428591 0.5509339 +0.4474232 0.5428591 0.5509339 +0.45727 0.5428591 0.5509339 +0.4662797 0.5428591 0.5509339 +0.4745834 0.5428591 0.5509339 +0.4822838 0.5428591 0.5509339 +0.4894626 0.5428591 0.5509339 +0.4961862 0.5428591 0.5509339 +0.5025087 0.5428591 0.5509339 +0.5084753 0.5428591 0.5509339 +0.514124 0.5428591 0.5509339 +0.519487 0.5428591 0.5509339 +0.5245917 0.5428591 0.5509339 +0.529462 0.5428591 0.5509339 +0.5341183 0.5428591 0.5509339 +0.5385787 0.5428591 0.5509339 +0.5428591 0.5428591 0.5509339 +0.5469733 0.5428591 0.5509339 +0.5509339 0.5428591 0.5509339 +0.5547519 0.5428591 0.5509339 +0.5584371 0.5428591 0.5509339 +0.5619986 0.5428591 0.5509339 +0.5654443 0.5428591 0.5509339 +0.5687816 0.5428591 0.5509339 +0.092819 0.5469733 0.5509339 +0.2262531 0.5469733 0.5509339 +0.2875993 0.5469733 0.5509339 +0.3262122 0.5469733 0.5509339 +0.3544566 0.5469733 0.5509339 +0.3767383 0.5469733 0.5509339 +0.3951413 0.5469733 0.5509339 +0.4108177 0.5469733 0.5509339 +0.4244723 0.5469733 0.5509339 +0.4365675 0.5469733 0.5509339 +0.4474232 0.5469733 0.5509339 +0.45727 0.5469733 0.5509339 +0.4662797 0.5469733 0.5509339 +0.4745834 0.5469733 0.5509339 +0.4822838 0.5469733 0.5509339 +0.4894626 0.5469733 0.5509339 +0.4961862 0.5469733 0.5509339 +0.5025087 0.5469733 0.5509339 +0.5084753 0.5469733 0.5509339 +0.514124 0.5469733 0.5509339 +0.519487 0.5469733 0.5509339 +0.5245917 0.5469733 0.5509339 +0.529462 0.5469733 0.5509339 +0.5341183 0.5469733 0.5509339 +0.5385787 0.5469733 0.5509339 +0.5428591 0.5469733 0.5509339 +0.5469733 0.5469733 0.5509339 +0.5509339 0.5469733 0.5509339 +0.5547519 0.5469733 0.5509339 +0.5584371 0.5469733 0.5509339 +0.5619986 0.5469733 0.5509339 +0.5654443 0.5469733 0.5509339 +0.5687816 0.5469733 0.5509339 +0.092819 0.5509339 0.5509339 +0.2262531 0.5509339 0.5509339 +0.2875993 0.5509339 0.5509339 +0.3262122 0.5509339 0.5509339 +0.3544566 0.5509339 0.5509339 +0.3767383 0.5509339 0.5509339 +0.3951413 0.5509339 0.5509339 +0.4108177 0.5509339 0.5509339 +0.4244723 0.5509339 0.5509339 +0.4365675 0.5509339 0.5509339 +0.4474232 0.5509339 0.5509339 +0.45727 0.5509339 0.5509339 +0.4662797 0.5509339 0.5509339 +0.4745834 0.5509339 0.5509339 +0.4822838 0.5509339 0.5509339 +0.4894626 0.5509339 0.5509339 +0.4961862 0.5509339 0.5509339 +0.5025087 0.5509339 0.5509339 +0.5084753 0.5509339 0.5509339 +0.514124 0.5509339 0.5509339 +0.519487 0.5509339 0.5509339 +0.5245917 0.5509339 0.5509339 +0.529462 0.5509339 0.5509339 +0.5341183 0.5509339 0.5509339 +0.5385787 0.5509339 0.5509339 +0.5428591 0.5509339 0.5509339 +0.5469733 0.5509339 0.5509339 +0.5509339 0.5509339 0.5509339 +0.5547519 0.5509339 0.5509339 +0.5584371 0.5509339 0.5509339 +0.5619986 0.5509339 0.5509339 +0.5654443 0.5509339 0.5509339 +0.5687816 0.5509339 0.5509339 +0.092819 0.5547519 0.5509339 +0.2262531 0.5547519 0.5509339 +0.2875993 0.5547519 0.5509339 +0.3262122 0.5547519 0.5509339 +0.3544566 0.5547519 0.5509339 +0.3767383 0.5547519 0.5509339 +0.3951413 0.5547519 0.5509339 +0.4108177 0.5547519 0.5509339 +0.4244723 0.5547519 0.5509339 +0.4365675 0.5547519 0.5509339 +0.4474232 0.5547519 0.5509339 +0.45727 0.5547519 0.5509339 +0.4662797 0.5547519 0.5509339 +0.4745834 0.5547519 0.5509339 +0.4822838 0.5547519 0.5509339 +0.4894626 0.5547519 0.5509339 +0.4961862 0.5547519 0.5509339 +0.5025087 0.5547519 0.5509339 +0.5084753 0.5547519 0.5509339 +0.514124 0.5547519 0.5509339 +0.519487 0.5547519 0.5509339 +0.5245917 0.5547519 0.5509339 +0.529462 0.5547519 0.5509339 +0.5341183 0.5547519 0.5509339 +0.5385787 0.5547519 0.5509339 +0.5428591 0.5547519 0.5509339 +0.5469733 0.5547519 0.5509339 +0.5509339 0.5547519 0.5509339 +0.5547519 0.5547519 0.5509339 +0.5584371 0.5547519 0.5509339 +0.5619986 0.5547519 0.5509339 +0.5654443 0.5547519 0.5509339 +0.5687816 0.5547519 0.5509339 +0.092819 0.5584371 0.5509339 +0.2262531 0.5584371 0.5509339 +0.2875993 0.5584371 0.5509339 +0.3262122 0.5584371 0.5509339 +0.3544566 0.5584371 0.5509339 +0.3767383 0.5584371 0.5509339 +0.3951413 0.5584371 0.5509339 +0.4108177 0.5584371 0.5509339 +0.4244723 0.5584371 0.5509339 +0.4365675 0.5584371 0.5509339 +0.4474232 0.5584371 0.5509339 +0.45727 0.5584371 0.5509339 +0.4662797 0.5584371 0.5509339 +0.4745834 0.5584371 0.5509339 +0.4822838 0.5584371 0.5509339 +0.4894626 0.5584371 0.5509339 +0.4961862 0.5584371 0.5509339 +0.5025087 0.5584371 0.5509339 +0.5084753 0.5584371 0.5509339 +0.514124 0.5584371 0.5509339 +0.519487 0.5584371 0.5509339 +0.5245917 0.5584371 0.5509339 +0.529462 0.5584371 0.5509339 +0.5341183 0.5584371 0.5509339 +0.5385787 0.5584371 0.5509339 +0.5428591 0.5584371 0.5509339 +0.5469733 0.5584371 0.5509339 +0.5509339 0.5584371 0.5509339 +0.5547519 0.5584371 0.5509339 +0.5584371 0.5584371 0.5509339 +0.5619986 0.5584371 0.5509339 +0.5654443 0.5584371 0.5509339 +0.5687816 0.5584371 0.5509339 +0.092819 0.5619986 0.5509339 +0.2262531 0.5619986 0.5509339 +0.2875993 0.5619986 0.5509339 +0.3262122 0.5619986 0.5509339 +0.3544566 0.5619986 0.5509339 +0.3767383 0.5619986 0.5509339 +0.3951413 0.5619986 0.5509339 +0.4108177 0.5619986 0.5509339 +0.4244723 0.5619986 0.5509339 +0.4365675 0.5619986 0.5509339 +0.4474232 0.5619986 0.5509339 +0.45727 0.5619986 0.5509339 +0.4662797 0.5619986 0.5509339 +0.4745834 0.5619986 0.5509339 +0.4822838 0.5619986 0.5509339 +0.4894626 0.5619986 0.5509339 +0.4961862 0.5619986 0.5509339 +0.5025087 0.5619986 0.5509339 +0.5084753 0.5619986 0.5509339 +0.514124 0.5619986 0.5509339 +0.519487 0.5619986 0.5509339 +0.5245917 0.5619986 0.5509339 +0.529462 0.5619986 0.5509339 +0.5341183 0.5619986 0.5509339 +0.5385787 0.5619986 0.5509339 +0.5428591 0.5619986 0.5509339 +0.5469733 0.5619986 0.5509339 +0.5509339 0.5619986 0.5509339 +0.5547519 0.5619986 0.5509339 +0.5584371 0.5619986 0.5509339 +0.5619986 0.5619986 0.5509339 +0.5654443 0.5619986 0.5509339 +0.5687816 0.5619986 0.5509339 +0.092819 0.5654443 0.5509339 +0.2262531 0.5654443 0.5509339 +0.2875993 0.5654443 0.5509339 +0.3262122 0.5654443 0.5509339 +0.3544566 0.5654443 0.5509339 +0.3767383 0.5654443 0.5509339 +0.3951413 0.5654443 0.5509339 +0.4108177 0.5654443 0.5509339 +0.4244723 0.5654443 0.5509339 +0.4365675 0.5654443 0.5509339 +0.4474232 0.5654443 0.5509339 +0.45727 0.5654443 0.5509339 +0.4662797 0.5654443 0.5509339 +0.4745834 0.5654443 0.5509339 +0.4822838 0.5654443 0.5509339 +0.4894626 0.5654443 0.5509339 +0.4961862 0.5654443 0.5509339 +0.5025087 0.5654443 0.5509339 +0.5084753 0.5654443 0.5509339 +0.514124 0.5654443 0.5509339 +0.519487 0.5654443 0.5509339 +0.5245917 0.5654443 0.5509339 +0.529462 0.5654443 0.5509339 +0.5341183 0.5654443 0.5509339 +0.5385787 0.5654443 0.5509339 +0.5428591 0.5654443 0.5509339 +0.5469733 0.5654443 0.5509339 +0.5509339 0.5654443 0.5509339 +0.5547519 0.5654443 0.5509339 +0.5584371 0.5654443 0.5509339 +0.5619986 0.5654443 0.5509339 +0.5654443 0.5654443 0.5509339 +0.5687816 0.5654443 0.5509339 +0.092819 0.5687816 0.5509339 +0.2262531 0.5687816 0.5509339 +0.2875993 0.5687816 0.5509339 +0.3262122 0.5687816 0.5509339 +0.3544566 0.5687816 0.5509339 +0.3767383 0.5687816 0.5509339 +0.3951413 0.5687816 0.5509339 +0.4108177 0.5687816 0.5509339 +0.4244723 0.5687816 0.5509339 +0.4365675 0.5687816 0.5509339 +0.4474232 0.5687816 0.5509339 +0.45727 0.5687816 0.5509339 +0.4662797 0.5687816 0.5509339 +0.4745834 0.5687816 0.5509339 +0.4822838 0.5687816 0.5509339 +0.4894626 0.5687816 0.5509339 +0.4961862 0.5687816 0.5509339 +0.5025087 0.5687816 0.5509339 +0.5084753 0.5687816 0.5509339 +0.514124 0.5687816 0.5509339 +0.519487 0.5687816 0.5509339 +0.5245917 0.5687816 0.5509339 +0.529462 0.5687816 0.5509339 +0.5341183 0.5687816 0.5509339 +0.5385787 0.5687816 0.5509339 +0.5428591 0.5687816 0.5509339 +0.5469733 0.5687816 0.5509339 +0.5509339 0.5687816 0.5509339 +0.5547519 0.5687816 0.5509339 +0.5584371 0.5687816 0.5509339 +0.5619986 0.5687816 0.5509339 +0.5654443 0.5687816 0.5509339 +0.5687816 0.5687816 0.5509339 +0.092819 0.092819 0.5547519 +0.2262531 0.092819 0.5547519 +0.2875993 0.092819 0.5547519 +0.3262122 0.092819 0.5547519 +0.3544566 0.092819 0.5547519 +0.3767383 0.092819 0.5547519 +0.3951413 0.092819 0.5547519 +0.4108177 0.092819 0.5547519 +0.4244723 0.092819 0.5547519 +0.4365675 0.092819 0.5547519 +0.4474232 0.092819 0.5547519 +0.45727 0.092819 0.5547519 +0.4662797 0.092819 0.5547519 +0.4745834 0.092819 0.5547519 +0.4822838 0.092819 0.5547519 +0.4894626 0.092819 0.5547519 +0.4961862 0.092819 0.5547519 +0.5025087 0.092819 0.5547519 +0.5084753 0.092819 0.5547519 +0.514124 0.092819 0.5547519 +0.519487 0.092819 0.5547519 +0.5245917 0.092819 0.5547519 +0.529462 0.092819 0.5547519 +0.5341183 0.092819 0.5547519 +0.5385787 0.092819 0.5547519 +0.5428591 0.092819 0.5547519 +0.5469733 0.092819 0.5547519 +0.5509339 0.092819 0.5547519 +0.5547519 0.092819 0.5547519 +0.5584371 0.092819 0.5547519 +0.5619986 0.092819 0.5547519 +0.5654443 0.092819 0.5547519 +0.5687816 0.092819 0.5547519 +0.092819 0.2262531 0.5547519 +0.2262531 0.2262531 0.5547519 +0.2875993 0.2262531 0.5547519 +0.3262122 0.2262531 0.5547519 +0.3544566 0.2262531 0.5547519 +0.3767383 0.2262531 0.5547519 +0.3951413 0.2262531 0.5547519 +0.4108177 0.2262531 0.5547519 +0.4244723 0.2262531 0.5547519 +0.4365675 0.2262531 0.5547519 +0.4474232 0.2262531 0.5547519 +0.45727 0.2262531 0.5547519 +0.4662797 0.2262531 0.5547519 +0.4745834 0.2262531 0.5547519 +0.4822838 0.2262531 0.5547519 +0.4894626 0.2262531 0.5547519 +0.4961862 0.2262531 0.5547519 +0.5025087 0.2262531 0.5547519 +0.5084753 0.2262531 0.5547519 +0.514124 0.2262531 0.5547519 +0.519487 0.2262531 0.5547519 +0.5245917 0.2262531 0.5547519 +0.529462 0.2262531 0.5547519 +0.5341183 0.2262531 0.5547519 +0.5385787 0.2262531 0.5547519 +0.5428591 0.2262531 0.5547519 +0.5469733 0.2262531 0.5547519 +0.5509339 0.2262531 0.5547519 +0.5547519 0.2262531 0.5547519 +0.5584371 0.2262531 0.5547519 +0.5619986 0.2262531 0.5547519 +0.5654443 0.2262531 0.5547519 +0.5687816 0.2262531 0.5547519 +0.092819 0.2875993 0.5547519 +0.2262531 0.2875993 0.5547519 +0.2875993 0.2875993 0.5547519 +0.3262122 0.2875993 0.5547519 +0.3544566 0.2875993 0.5547519 +0.3767383 0.2875993 0.5547519 +0.3951413 0.2875993 0.5547519 +0.4108177 0.2875993 0.5547519 +0.4244723 0.2875993 0.5547519 +0.4365675 0.2875993 0.5547519 +0.4474232 0.2875993 0.5547519 +0.45727 0.2875993 0.5547519 +0.4662797 0.2875993 0.5547519 +0.4745834 0.2875993 0.5547519 +0.4822838 0.2875993 0.5547519 +0.4894626 0.2875993 0.5547519 +0.4961862 0.2875993 0.5547519 +0.5025087 0.2875993 0.5547519 +0.5084753 0.2875993 0.5547519 +0.514124 0.2875993 0.5547519 +0.519487 0.2875993 0.5547519 +0.5245917 0.2875993 0.5547519 +0.529462 0.2875993 0.5547519 +0.5341183 0.2875993 0.5547519 +0.5385787 0.2875993 0.5547519 +0.5428591 0.2875993 0.5547519 +0.5469733 0.2875993 0.5547519 +0.5509339 0.2875993 0.5547519 +0.5547519 0.2875993 0.5547519 +0.5584371 0.2875993 0.5547519 +0.5619986 0.2875993 0.5547519 +0.5654443 0.2875993 0.5547519 +0.5687816 0.2875993 0.5547519 +0.092819 0.3262122 0.5547519 +0.2262531 0.3262122 0.5547519 +0.2875993 0.3262122 0.5547519 +0.3262122 0.3262122 0.5547519 +0.3544566 0.3262122 0.5547519 +0.3767383 0.3262122 0.5547519 +0.3951413 0.3262122 0.5547519 +0.4108177 0.3262122 0.5547519 +0.4244723 0.3262122 0.5547519 +0.4365675 0.3262122 0.5547519 +0.4474232 0.3262122 0.5547519 +0.45727 0.3262122 0.5547519 +0.4662797 0.3262122 0.5547519 +0.4745834 0.3262122 0.5547519 +0.4822838 0.3262122 0.5547519 +0.4894626 0.3262122 0.5547519 +0.4961862 0.3262122 0.5547519 +0.5025087 0.3262122 0.5547519 +0.5084753 0.3262122 0.5547519 +0.514124 0.3262122 0.5547519 +0.519487 0.3262122 0.5547519 +0.5245917 0.3262122 0.5547519 +0.529462 0.3262122 0.5547519 +0.5341183 0.3262122 0.5547519 +0.5385787 0.3262122 0.5547519 +0.5428591 0.3262122 0.5547519 +0.5469733 0.3262122 0.5547519 +0.5509339 0.3262122 0.5547519 +0.5547519 0.3262122 0.5547519 +0.5584371 0.3262122 0.5547519 +0.5619986 0.3262122 0.5547519 +0.5654443 0.3262122 0.5547519 +0.5687816 0.3262122 0.5547519 +0.092819 0.3544566 0.5547519 +0.2262531 0.3544566 0.5547519 +0.2875993 0.3544566 0.5547519 +0.3262122 0.3544566 0.5547519 +0.3544566 0.3544566 0.5547519 +0.3767383 0.3544566 0.5547519 +0.3951413 0.3544566 0.5547519 +0.4108177 0.3544566 0.5547519 +0.4244723 0.3544566 0.5547519 +0.4365675 0.3544566 0.5547519 +0.4474232 0.3544566 0.5547519 +0.45727 0.3544566 0.5547519 +0.4662797 0.3544566 0.5547519 +0.4745834 0.3544566 0.5547519 +0.4822838 0.3544566 0.5547519 +0.4894626 0.3544566 0.5547519 +0.4961862 0.3544566 0.5547519 +0.5025087 0.3544566 0.5547519 +0.5084753 0.3544566 0.5547519 +0.514124 0.3544566 0.5547519 +0.519487 0.3544566 0.5547519 +0.5245917 0.3544566 0.5547519 +0.529462 0.3544566 0.5547519 +0.5341183 0.3544566 0.5547519 +0.5385787 0.3544566 0.5547519 +0.5428591 0.3544566 0.5547519 +0.5469733 0.3544566 0.5547519 +0.5509339 0.3544566 0.5547519 +0.5547519 0.3544566 0.5547519 +0.5584371 0.3544566 0.5547519 +0.5619986 0.3544566 0.5547519 +0.5654443 0.3544566 0.5547519 +0.5687816 0.3544566 0.5547519 +0.092819 0.3767383 0.5547519 +0.2262531 0.3767383 0.5547519 +0.2875993 0.3767383 0.5547519 +0.3262122 0.3767383 0.5547519 +0.3544566 0.3767383 0.5547519 +0.3767383 0.3767383 0.5547519 +0.3951413 0.3767383 0.5547519 +0.4108177 0.3767383 0.5547519 +0.4244723 0.3767383 0.5547519 +0.4365675 0.3767383 0.5547519 +0.4474232 0.3767383 0.5547519 +0.45727 0.3767383 0.5547519 +0.4662797 0.3767383 0.5547519 +0.4745834 0.3767383 0.5547519 +0.4822838 0.3767383 0.5547519 +0.4894626 0.3767383 0.5547519 +0.4961862 0.3767383 0.5547519 +0.5025087 0.3767383 0.5547519 +0.5084753 0.3767383 0.5547519 +0.514124 0.3767383 0.5547519 +0.519487 0.3767383 0.5547519 +0.5245917 0.3767383 0.5547519 +0.529462 0.3767383 0.5547519 +0.5341183 0.3767383 0.5547519 +0.5385787 0.3767383 0.5547519 +0.5428591 0.3767383 0.5547519 +0.5469733 0.3767383 0.5547519 +0.5509339 0.3767383 0.5547519 +0.5547519 0.3767383 0.5547519 +0.5584371 0.3767383 0.5547519 +0.5619986 0.3767383 0.5547519 +0.5654443 0.3767383 0.5547519 +0.5687816 0.3767383 0.5547519 +0.092819 0.3951413 0.5547519 +0.2262531 0.3951413 0.5547519 +0.2875993 0.3951413 0.5547519 +0.3262122 0.3951413 0.5547519 +0.3544566 0.3951413 0.5547519 +0.3767383 0.3951413 0.5547519 +0.3951413 0.3951413 0.5547519 +0.4108177 0.3951413 0.5547519 +0.4244723 0.3951413 0.5547519 +0.4365675 0.3951413 0.5547519 +0.4474232 0.3951413 0.5547519 +0.45727 0.3951413 0.5547519 +0.4662797 0.3951413 0.5547519 +0.4745834 0.3951413 0.5547519 +0.4822838 0.3951413 0.5547519 +0.4894626 0.3951413 0.5547519 +0.4961862 0.3951413 0.5547519 +0.5025087 0.3951413 0.5547519 +0.5084753 0.3951413 0.5547519 +0.514124 0.3951413 0.5547519 +0.519487 0.3951413 0.5547519 +0.5245917 0.3951413 0.5547519 +0.529462 0.3951413 0.5547519 +0.5341183 0.3951413 0.5547519 +0.5385787 0.3951413 0.5547519 +0.5428591 0.3951413 0.5547519 +0.5469733 0.3951413 0.5547519 +0.5509339 0.3951413 0.5547519 +0.5547519 0.3951413 0.5547519 +0.5584371 0.3951413 0.5547519 +0.5619986 0.3951413 0.5547519 +0.5654443 0.3951413 0.5547519 +0.5687816 0.3951413 0.5547519 +0.092819 0.4108177 0.5547519 +0.2262531 0.4108177 0.5547519 +0.2875993 0.4108177 0.5547519 +0.3262122 0.4108177 0.5547519 +0.3544566 0.4108177 0.5547519 +0.3767383 0.4108177 0.5547519 +0.3951413 0.4108177 0.5547519 +0.4108177 0.4108177 0.5547519 +0.4244723 0.4108177 0.5547519 +0.4365675 0.4108177 0.5547519 +0.4474232 0.4108177 0.5547519 +0.45727 0.4108177 0.5547519 +0.4662797 0.4108177 0.5547519 +0.4745834 0.4108177 0.5547519 +0.4822838 0.4108177 0.5547519 +0.4894626 0.4108177 0.5547519 +0.4961862 0.4108177 0.5547519 +0.5025087 0.4108177 0.5547519 +0.5084753 0.4108177 0.5547519 +0.514124 0.4108177 0.5547519 +0.519487 0.4108177 0.5547519 +0.5245917 0.4108177 0.5547519 +0.529462 0.4108177 0.5547519 +0.5341183 0.4108177 0.5547519 +0.5385787 0.4108177 0.5547519 +0.5428591 0.4108177 0.5547519 +0.5469733 0.4108177 0.5547519 +0.5509339 0.4108177 0.5547519 +0.5547519 0.4108177 0.5547519 +0.5584371 0.4108177 0.5547519 +0.5619986 0.4108177 0.5547519 +0.5654443 0.4108177 0.5547519 +0.5687816 0.4108177 0.5547519 +0.092819 0.4244723 0.5547519 +0.2262531 0.4244723 0.5547519 +0.2875993 0.4244723 0.5547519 +0.3262122 0.4244723 0.5547519 +0.3544566 0.4244723 0.5547519 +0.3767383 0.4244723 0.5547519 +0.3951413 0.4244723 0.5547519 +0.4108177 0.4244723 0.5547519 +0.4244723 0.4244723 0.5547519 +0.4365675 0.4244723 0.5547519 +0.4474232 0.4244723 0.5547519 +0.45727 0.4244723 0.5547519 +0.4662797 0.4244723 0.5547519 +0.4745834 0.4244723 0.5547519 +0.4822838 0.4244723 0.5547519 +0.4894626 0.4244723 0.5547519 +0.4961862 0.4244723 0.5547519 +0.5025087 0.4244723 0.5547519 +0.5084753 0.4244723 0.5547519 +0.514124 0.4244723 0.5547519 +0.519487 0.4244723 0.5547519 +0.5245917 0.4244723 0.5547519 +0.529462 0.4244723 0.5547519 +0.5341183 0.4244723 0.5547519 +0.5385787 0.4244723 0.5547519 +0.5428591 0.4244723 0.5547519 +0.5469733 0.4244723 0.5547519 +0.5509339 0.4244723 0.5547519 +0.5547519 0.4244723 0.5547519 +0.5584371 0.4244723 0.5547519 +0.5619986 0.4244723 0.5547519 +0.5654443 0.4244723 0.5547519 +0.5687816 0.4244723 0.5547519 +0.092819 0.4365675 0.5547519 +0.2262531 0.4365675 0.5547519 +0.2875993 0.4365675 0.5547519 +0.3262122 0.4365675 0.5547519 +0.3544566 0.4365675 0.5547519 +0.3767383 0.4365675 0.5547519 +0.3951413 0.4365675 0.5547519 +0.4108177 0.4365675 0.5547519 +0.4244723 0.4365675 0.5547519 +0.4365675 0.4365675 0.5547519 +0.4474232 0.4365675 0.5547519 +0.45727 0.4365675 0.5547519 +0.4662797 0.4365675 0.5547519 +0.4745834 0.4365675 0.5547519 +0.4822838 0.4365675 0.5547519 +0.4894626 0.4365675 0.5547519 +0.4961862 0.4365675 0.5547519 +0.5025087 0.4365675 0.5547519 +0.5084753 0.4365675 0.5547519 +0.514124 0.4365675 0.5547519 +0.519487 0.4365675 0.5547519 +0.5245917 0.4365675 0.5547519 +0.529462 0.4365675 0.5547519 +0.5341183 0.4365675 0.5547519 +0.5385787 0.4365675 0.5547519 +0.5428591 0.4365675 0.5547519 +0.5469733 0.4365675 0.5547519 +0.5509339 0.4365675 0.5547519 +0.5547519 0.4365675 0.5547519 +0.5584371 0.4365675 0.5547519 +0.5619986 0.4365675 0.5547519 +0.5654443 0.4365675 0.5547519 +0.5687816 0.4365675 0.5547519 +0.092819 0.4474232 0.5547519 +0.2262531 0.4474232 0.5547519 +0.2875993 0.4474232 0.5547519 +0.3262122 0.4474232 0.5547519 +0.3544566 0.4474232 0.5547519 +0.3767383 0.4474232 0.5547519 +0.3951413 0.4474232 0.5547519 +0.4108177 0.4474232 0.5547519 +0.4244723 0.4474232 0.5547519 +0.4365675 0.4474232 0.5547519 +0.4474232 0.4474232 0.5547519 +0.45727 0.4474232 0.5547519 +0.4662797 0.4474232 0.5547519 +0.4745834 0.4474232 0.5547519 +0.4822838 0.4474232 0.5547519 +0.4894626 0.4474232 0.5547519 +0.4961862 0.4474232 0.5547519 +0.5025087 0.4474232 0.5547519 +0.5084753 0.4474232 0.5547519 +0.514124 0.4474232 0.5547519 +0.519487 0.4474232 0.5547519 +0.5245917 0.4474232 0.5547519 +0.529462 0.4474232 0.5547519 +0.5341183 0.4474232 0.5547519 +0.5385787 0.4474232 0.5547519 +0.5428591 0.4474232 0.5547519 +0.5469733 0.4474232 0.5547519 +0.5509339 0.4474232 0.5547519 +0.5547519 0.4474232 0.5547519 +0.5584371 0.4474232 0.5547519 +0.5619986 0.4474232 0.5547519 +0.5654443 0.4474232 0.5547519 +0.5687816 0.4474232 0.5547519 +0.092819 0.45727 0.5547519 +0.2262531 0.45727 0.5547519 +0.2875993 0.45727 0.5547519 +0.3262122 0.45727 0.5547519 +0.3544566 0.45727 0.5547519 +0.3767383 0.45727 0.5547519 +0.3951413 0.45727 0.5547519 +0.4108177 0.45727 0.5547519 +0.4244723 0.45727 0.5547519 +0.4365675 0.45727 0.5547519 +0.4474232 0.45727 0.5547519 +0.45727 0.45727 0.5547519 +0.4662797 0.45727 0.5547519 +0.4745834 0.45727 0.5547519 +0.4822838 0.45727 0.5547519 +0.4894626 0.45727 0.5547519 +0.4961862 0.45727 0.5547519 +0.5025087 0.45727 0.5547519 +0.5084753 0.45727 0.5547519 +0.514124 0.45727 0.5547519 +0.519487 0.45727 0.5547519 +0.5245917 0.45727 0.5547519 +0.529462 0.45727 0.5547519 +0.5341183 0.45727 0.5547519 +0.5385787 0.45727 0.5547519 +0.5428591 0.45727 0.5547519 +0.5469733 0.45727 0.5547519 +0.5509339 0.45727 0.5547519 +0.5547519 0.45727 0.5547519 +0.5584371 0.45727 0.5547519 +0.5619986 0.45727 0.5547519 +0.5654443 0.45727 0.5547519 +0.5687816 0.45727 0.5547519 +0.092819 0.4662797 0.5547519 +0.2262531 0.4662797 0.5547519 +0.2875993 0.4662797 0.5547519 +0.3262122 0.4662797 0.5547519 +0.3544566 0.4662797 0.5547519 +0.3767383 0.4662797 0.5547519 +0.3951413 0.4662797 0.5547519 +0.4108177 0.4662797 0.5547519 +0.4244723 0.4662797 0.5547519 +0.4365675 0.4662797 0.5547519 +0.4474232 0.4662797 0.5547519 +0.45727 0.4662797 0.5547519 +0.4662797 0.4662797 0.5547519 +0.4745834 0.4662797 0.5547519 +0.4822838 0.4662797 0.5547519 +0.4894626 0.4662797 0.5547519 +0.4961862 0.4662797 0.5547519 +0.5025087 0.4662797 0.5547519 +0.5084753 0.4662797 0.5547519 +0.514124 0.4662797 0.5547519 +0.519487 0.4662797 0.5547519 +0.5245917 0.4662797 0.5547519 +0.529462 0.4662797 0.5547519 +0.5341183 0.4662797 0.5547519 +0.5385787 0.4662797 0.5547519 +0.5428591 0.4662797 0.5547519 +0.5469733 0.4662797 0.5547519 +0.5509339 0.4662797 0.5547519 +0.5547519 0.4662797 0.5547519 +0.5584371 0.4662797 0.5547519 +0.5619986 0.4662797 0.5547519 +0.5654443 0.4662797 0.5547519 +0.5687816 0.4662797 0.5547519 +0.092819 0.4745834 0.5547519 +0.2262531 0.4745834 0.5547519 +0.2875993 0.4745834 0.5547519 +0.3262122 0.4745834 0.5547519 +0.3544566 0.4745834 0.5547519 +0.3767383 0.4745834 0.5547519 +0.3951413 0.4745834 0.5547519 +0.4108177 0.4745834 0.5547519 +0.4244723 0.4745834 0.5547519 +0.4365675 0.4745834 0.5547519 +0.4474232 0.4745834 0.5547519 +0.45727 0.4745834 0.5547519 +0.4662797 0.4745834 0.5547519 +0.4745834 0.4745834 0.5547519 +0.4822838 0.4745834 0.5547519 +0.4894626 0.4745834 0.5547519 +0.4961862 0.4745834 0.5547519 +0.5025087 0.4745834 0.5547519 +0.5084753 0.4745834 0.5547519 +0.514124 0.4745834 0.5547519 +0.519487 0.4745834 0.5547519 +0.5245917 0.4745834 0.5547519 +0.529462 0.4745834 0.5547519 +0.5341183 0.4745834 0.5547519 +0.5385787 0.4745834 0.5547519 +0.5428591 0.4745834 0.5547519 +0.5469733 0.4745834 0.5547519 +0.5509339 0.4745834 0.5547519 +0.5547519 0.4745834 0.5547519 +0.5584371 0.4745834 0.5547519 +0.5619986 0.4745834 0.5547519 +0.5654443 0.4745834 0.5547519 +0.5687816 0.4745834 0.5547519 +0.092819 0.4822838 0.5547519 +0.2262531 0.4822838 0.5547519 +0.2875993 0.4822838 0.5547519 +0.3262122 0.4822838 0.5547519 +0.3544566 0.4822838 0.5547519 +0.3767383 0.4822838 0.5547519 +0.3951413 0.4822838 0.5547519 +0.4108177 0.4822838 0.5547519 +0.4244723 0.4822838 0.5547519 +0.4365675 0.4822838 0.5547519 +0.4474232 0.4822838 0.5547519 +0.45727 0.4822838 0.5547519 +0.4662797 0.4822838 0.5547519 +0.4745834 0.4822838 0.5547519 +0.4822838 0.4822838 0.5547519 +0.4894626 0.4822838 0.5547519 +0.4961862 0.4822838 0.5547519 +0.5025087 0.4822838 0.5547519 +0.5084753 0.4822838 0.5547519 +0.514124 0.4822838 0.5547519 +0.519487 0.4822838 0.5547519 +0.5245917 0.4822838 0.5547519 +0.529462 0.4822838 0.5547519 +0.5341183 0.4822838 0.5547519 +0.5385787 0.4822838 0.5547519 +0.5428591 0.4822838 0.5547519 +0.5469733 0.4822838 0.5547519 +0.5509339 0.4822838 0.5547519 +0.5547519 0.4822838 0.5547519 +0.5584371 0.4822838 0.5547519 +0.5619986 0.4822838 0.5547519 +0.5654443 0.4822838 0.5547519 +0.5687816 0.4822838 0.5547519 +0.092819 0.4894626 0.5547519 +0.2262531 0.4894626 0.5547519 +0.2875993 0.4894626 0.5547519 +0.3262122 0.4894626 0.5547519 +0.3544566 0.4894626 0.5547519 +0.3767383 0.4894626 0.5547519 +0.3951413 0.4894626 0.5547519 +0.4108177 0.4894626 0.5547519 +0.4244723 0.4894626 0.5547519 +0.4365675 0.4894626 0.5547519 +0.4474232 0.4894626 0.5547519 +0.45727 0.4894626 0.5547519 +0.4662797 0.4894626 0.5547519 +0.4745834 0.4894626 0.5547519 +0.4822838 0.4894626 0.5547519 +0.4894626 0.4894626 0.5547519 +0.4961862 0.4894626 0.5547519 +0.5025087 0.4894626 0.5547519 +0.5084753 0.4894626 0.5547519 +0.514124 0.4894626 0.5547519 +0.519487 0.4894626 0.5547519 +0.5245917 0.4894626 0.5547519 +0.529462 0.4894626 0.5547519 +0.5341183 0.4894626 0.5547519 +0.5385787 0.4894626 0.5547519 +0.5428591 0.4894626 0.5547519 +0.5469733 0.4894626 0.5547519 +0.5509339 0.4894626 0.5547519 +0.5547519 0.4894626 0.5547519 +0.5584371 0.4894626 0.5547519 +0.5619986 0.4894626 0.5547519 +0.5654443 0.4894626 0.5547519 +0.5687816 0.4894626 0.5547519 +0.092819 0.4961862 0.5547519 +0.2262531 0.4961862 0.5547519 +0.2875993 0.4961862 0.5547519 +0.3262122 0.4961862 0.5547519 +0.3544566 0.4961862 0.5547519 +0.3767383 0.4961862 0.5547519 +0.3951413 0.4961862 0.5547519 +0.4108177 0.4961862 0.5547519 +0.4244723 0.4961862 0.5547519 +0.4365675 0.4961862 0.5547519 +0.4474232 0.4961862 0.5547519 +0.45727 0.4961862 0.5547519 +0.4662797 0.4961862 0.5547519 +0.4745834 0.4961862 0.5547519 +0.4822838 0.4961862 0.5547519 +0.4894626 0.4961862 0.5547519 +0.4961862 0.4961862 0.5547519 +0.5025087 0.4961862 0.5547519 +0.5084753 0.4961862 0.5547519 +0.514124 0.4961862 0.5547519 +0.519487 0.4961862 0.5547519 +0.5245917 0.4961862 0.5547519 +0.529462 0.4961862 0.5547519 +0.5341183 0.4961862 0.5547519 +0.5385787 0.4961862 0.5547519 +0.5428591 0.4961862 0.5547519 +0.5469733 0.4961862 0.5547519 +0.5509339 0.4961862 0.5547519 +0.5547519 0.4961862 0.5547519 +0.5584371 0.4961862 0.5547519 +0.5619986 0.4961862 0.5547519 +0.5654443 0.4961862 0.5547519 +0.5687816 0.4961862 0.5547519 +0.092819 0.5025087 0.5547519 +0.2262531 0.5025087 0.5547519 +0.2875993 0.5025087 0.5547519 +0.3262122 0.5025087 0.5547519 +0.3544566 0.5025087 0.5547519 +0.3767383 0.5025087 0.5547519 +0.3951413 0.5025087 0.5547519 +0.4108177 0.5025087 0.5547519 +0.4244723 0.5025087 0.5547519 +0.4365675 0.5025087 0.5547519 +0.4474232 0.5025087 0.5547519 +0.45727 0.5025087 0.5547519 +0.4662797 0.5025087 0.5547519 +0.4745834 0.5025087 0.5547519 +0.4822838 0.5025087 0.5547519 +0.4894626 0.5025087 0.5547519 +0.4961862 0.5025087 0.5547519 +0.5025087 0.5025087 0.5547519 +0.5084753 0.5025087 0.5547519 +0.514124 0.5025087 0.5547519 +0.519487 0.5025087 0.5547519 +0.5245917 0.5025087 0.5547519 +0.529462 0.5025087 0.5547519 +0.5341183 0.5025087 0.5547519 +0.5385787 0.5025087 0.5547519 +0.5428591 0.5025087 0.5547519 +0.5469733 0.5025087 0.5547519 +0.5509339 0.5025087 0.5547519 +0.5547519 0.5025087 0.5547519 +0.5584371 0.5025087 0.5547519 +0.5619986 0.5025087 0.5547519 +0.5654443 0.5025087 0.5547519 +0.5687816 0.5025087 0.5547519 +0.092819 0.5084753 0.5547519 +0.2262531 0.5084753 0.5547519 +0.2875993 0.5084753 0.5547519 +0.3262122 0.5084753 0.5547519 +0.3544566 0.5084753 0.5547519 +0.3767383 0.5084753 0.5547519 +0.3951413 0.5084753 0.5547519 +0.4108177 0.5084753 0.5547519 +0.4244723 0.5084753 0.5547519 +0.4365675 0.5084753 0.5547519 +0.4474232 0.5084753 0.5547519 +0.45727 0.5084753 0.5547519 +0.4662797 0.5084753 0.5547519 +0.4745834 0.5084753 0.5547519 +0.4822838 0.5084753 0.5547519 +0.4894626 0.5084753 0.5547519 +0.4961862 0.5084753 0.5547519 +0.5025087 0.5084753 0.5547519 +0.5084753 0.5084753 0.5547519 +0.514124 0.5084753 0.5547519 +0.519487 0.5084753 0.5547519 +0.5245917 0.5084753 0.5547519 +0.529462 0.5084753 0.5547519 +0.5341183 0.5084753 0.5547519 +0.5385787 0.5084753 0.5547519 +0.5428591 0.5084753 0.5547519 +0.5469733 0.5084753 0.5547519 +0.5509339 0.5084753 0.5547519 +0.5547519 0.5084753 0.5547519 +0.5584371 0.5084753 0.5547519 +0.5619986 0.5084753 0.5547519 +0.5654443 0.5084753 0.5547519 +0.5687816 0.5084753 0.5547519 +0.092819 0.514124 0.5547519 +0.2262531 0.514124 0.5547519 +0.2875993 0.514124 0.5547519 +0.3262122 0.514124 0.5547519 +0.3544566 0.514124 0.5547519 +0.3767383 0.514124 0.5547519 +0.3951413 0.514124 0.5547519 +0.4108177 0.514124 0.5547519 +0.4244723 0.514124 0.5547519 +0.4365675 0.514124 0.5547519 +0.4474232 0.514124 0.5547519 +0.45727 0.514124 0.5547519 +0.4662797 0.514124 0.5547519 +0.4745834 0.514124 0.5547519 +0.4822838 0.514124 0.5547519 +0.4894626 0.514124 0.5547519 +0.4961862 0.514124 0.5547519 +0.5025087 0.514124 0.5547519 +0.5084753 0.514124 0.5547519 +0.514124 0.514124 0.5547519 +0.519487 0.514124 0.5547519 +0.5245917 0.514124 0.5547519 +0.529462 0.514124 0.5547519 +0.5341183 0.514124 0.5547519 +0.5385787 0.514124 0.5547519 +0.5428591 0.514124 0.5547519 +0.5469733 0.514124 0.5547519 +0.5509339 0.514124 0.5547519 +0.5547519 0.514124 0.5547519 +0.5584371 0.514124 0.5547519 +0.5619986 0.514124 0.5547519 +0.5654443 0.514124 0.5547519 +0.5687816 0.514124 0.5547519 +0.092819 0.519487 0.5547519 +0.2262531 0.519487 0.5547519 +0.2875993 0.519487 0.5547519 +0.3262122 0.519487 0.5547519 +0.3544566 0.519487 0.5547519 +0.3767383 0.519487 0.5547519 +0.3951413 0.519487 0.5547519 +0.4108177 0.519487 0.5547519 +0.4244723 0.519487 0.5547519 +0.4365675 0.519487 0.5547519 +0.4474232 0.519487 0.5547519 +0.45727 0.519487 0.5547519 +0.4662797 0.519487 0.5547519 +0.4745834 0.519487 0.5547519 +0.4822838 0.519487 0.5547519 +0.4894626 0.519487 0.5547519 +0.4961862 0.519487 0.5547519 +0.5025087 0.519487 0.5547519 +0.5084753 0.519487 0.5547519 +0.514124 0.519487 0.5547519 +0.519487 0.519487 0.5547519 +0.5245917 0.519487 0.5547519 +0.529462 0.519487 0.5547519 +0.5341183 0.519487 0.5547519 +0.5385787 0.519487 0.5547519 +0.5428591 0.519487 0.5547519 +0.5469733 0.519487 0.5547519 +0.5509339 0.519487 0.5547519 +0.5547519 0.519487 0.5547519 +0.5584371 0.519487 0.5547519 +0.5619986 0.519487 0.5547519 +0.5654443 0.519487 0.5547519 +0.5687816 0.519487 0.5547519 +0.092819 0.5245917 0.5547519 +0.2262531 0.5245917 0.5547519 +0.2875993 0.5245917 0.5547519 +0.3262122 0.5245917 0.5547519 +0.3544566 0.5245917 0.5547519 +0.3767383 0.5245917 0.5547519 +0.3951413 0.5245917 0.5547519 +0.4108177 0.5245917 0.5547519 +0.4244723 0.5245917 0.5547519 +0.4365675 0.5245917 0.5547519 +0.4474232 0.5245917 0.5547519 +0.45727 0.5245917 0.5547519 +0.4662797 0.5245917 0.5547519 +0.4745834 0.5245917 0.5547519 +0.4822838 0.5245917 0.5547519 +0.4894626 0.5245917 0.5547519 +0.4961862 0.5245917 0.5547519 +0.5025087 0.5245917 0.5547519 +0.5084753 0.5245917 0.5547519 +0.514124 0.5245917 0.5547519 +0.519487 0.5245917 0.5547519 +0.5245917 0.5245917 0.5547519 +0.529462 0.5245917 0.5547519 +0.5341183 0.5245917 0.5547519 +0.5385787 0.5245917 0.5547519 +0.5428591 0.5245917 0.5547519 +0.5469733 0.5245917 0.5547519 +0.5509339 0.5245917 0.5547519 +0.5547519 0.5245917 0.5547519 +0.5584371 0.5245917 0.5547519 +0.5619986 0.5245917 0.5547519 +0.5654443 0.5245917 0.5547519 +0.5687816 0.5245917 0.5547519 +0.092819 0.529462 0.5547519 +0.2262531 0.529462 0.5547519 +0.2875993 0.529462 0.5547519 +0.3262122 0.529462 0.5547519 +0.3544566 0.529462 0.5547519 +0.3767383 0.529462 0.5547519 +0.3951413 0.529462 0.5547519 +0.4108177 0.529462 0.5547519 +0.4244723 0.529462 0.5547519 +0.4365675 0.529462 0.5547519 +0.4474232 0.529462 0.5547519 +0.45727 0.529462 0.5547519 +0.4662797 0.529462 0.5547519 +0.4745834 0.529462 0.5547519 +0.4822838 0.529462 0.5547519 +0.4894626 0.529462 0.5547519 +0.4961862 0.529462 0.5547519 +0.5025087 0.529462 0.5547519 +0.5084753 0.529462 0.5547519 +0.514124 0.529462 0.5547519 +0.519487 0.529462 0.5547519 +0.5245917 0.529462 0.5547519 +0.529462 0.529462 0.5547519 +0.5341183 0.529462 0.5547519 +0.5385787 0.529462 0.5547519 +0.5428591 0.529462 0.5547519 +0.5469733 0.529462 0.5547519 +0.5509339 0.529462 0.5547519 +0.5547519 0.529462 0.5547519 +0.5584371 0.529462 0.5547519 +0.5619986 0.529462 0.5547519 +0.5654443 0.529462 0.5547519 +0.5687816 0.529462 0.5547519 +0.092819 0.5341183 0.5547519 +0.2262531 0.5341183 0.5547519 +0.2875993 0.5341183 0.5547519 +0.3262122 0.5341183 0.5547519 +0.3544566 0.5341183 0.5547519 +0.3767383 0.5341183 0.5547519 +0.3951413 0.5341183 0.5547519 +0.4108177 0.5341183 0.5547519 +0.4244723 0.5341183 0.5547519 +0.4365675 0.5341183 0.5547519 +0.4474232 0.5341183 0.5547519 +0.45727 0.5341183 0.5547519 +0.4662797 0.5341183 0.5547519 +0.4745834 0.5341183 0.5547519 +0.4822838 0.5341183 0.5547519 +0.4894626 0.5341183 0.5547519 +0.4961862 0.5341183 0.5547519 +0.5025087 0.5341183 0.5547519 +0.5084753 0.5341183 0.5547519 +0.514124 0.5341183 0.5547519 +0.519487 0.5341183 0.5547519 +0.5245917 0.5341183 0.5547519 +0.529462 0.5341183 0.5547519 +0.5341183 0.5341183 0.5547519 +0.5385787 0.5341183 0.5547519 +0.5428591 0.5341183 0.5547519 +0.5469733 0.5341183 0.5547519 +0.5509339 0.5341183 0.5547519 +0.5547519 0.5341183 0.5547519 +0.5584371 0.5341183 0.5547519 +0.5619986 0.5341183 0.5547519 +0.5654443 0.5341183 0.5547519 +0.5687816 0.5341183 0.5547519 +0.092819 0.5385787 0.5547519 +0.2262531 0.5385787 0.5547519 +0.2875993 0.5385787 0.5547519 +0.3262122 0.5385787 0.5547519 +0.3544566 0.5385787 0.5547519 +0.3767383 0.5385787 0.5547519 +0.3951413 0.5385787 0.5547519 +0.4108177 0.5385787 0.5547519 +0.4244723 0.5385787 0.5547519 +0.4365675 0.5385787 0.5547519 +0.4474232 0.5385787 0.5547519 +0.45727 0.5385787 0.5547519 +0.4662797 0.5385787 0.5547519 +0.4745834 0.5385787 0.5547519 +0.4822838 0.5385787 0.5547519 +0.4894626 0.5385787 0.5547519 +0.4961862 0.5385787 0.5547519 +0.5025087 0.5385787 0.5547519 +0.5084753 0.5385787 0.5547519 +0.514124 0.5385787 0.5547519 +0.519487 0.5385787 0.5547519 +0.5245917 0.5385787 0.5547519 +0.529462 0.5385787 0.5547519 +0.5341183 0.5385787 0.5547519 +0.5385787 0.5385787 0.5547519 +0.5428591 0.5385787 0.5547519 +0.5469733 0.5385787 0.5547519 +0.5509339 0.5385787 0.5547519 +0.5547519 0.5385787 0.5547519 +0.5584371 0.5385787 0.5547519 +0.5619986 0.5385787 0.5547519 +0.5654443 0.5385787 0.5547519 +0.5687816 0.5385787 0.5547519 +0.092819 0.5428591 0.5547519 +0.2262531 0.5428591 0.5547519 +0.2875993 0.5428591 0.5547519 +0.3262122 0.5428591 0.5547519 +0.3544566 0.5428591 0.5547519 +0.3767383 0.5428591 0.5547519 +0.3951413 0.5428591 0.5547519 +0.4108177 0.5428591 0.5547519 +0.4244723 0.5428591 0.5547519 +0.4365675 0.5428591 0.5547519 +0.4474232 0.5428591 0.5547519 +0.45727 0.5428591 0.5547519 +0.4662797 0.5428591 0.5547519 +0.4745834 0.5428591 0.5547519 +0.4822838 0.5428591 0.5547519 +0.4894626 0.5428591 0.5547519 +0.4961862 0.5428591 0.5547519 +0.5025087 0.5428591 0.5547519 +0.5084753 0.5428591 0.5547519 +0.514124 0.5428591 0.5547519 +0.519487 0.5428591 0.5547519 +0.5245917 0.5428591 0.5547519 +0.529462 0.5428591 0.5547519 +0.5341183 0.5428591 0.5547519 +0.5385787 0.5428591 0.5547519 +0.5428591 0.5428591 0.5547519 +0.5469733 0.5428591 0.5547519 +0.5509339 0.5428591 0.5547519 +0.5547519 0.5428591 0.5547519 +0.5584371 0.5428591 0.5547519 +0.5619986 0.5428591 0.5547519 +0.5654443 0.5428591 0.5547519 +0.5687816 0.5428591 0.5547519 +0.092819 0.5469733 0.5547519 +0.2262531 0.5469733 0.5547519 +0.2875993 0.5469733 0.5547519 +0.3262122 0.5469733 0.5547519 +0.3544566 0.5469733 0.5547519 +0.3767383 0.5469733 0.5547519 +0.3951413 0.5469733 0.5547519 +0.4108177 0.5469733 0.5547519 +0.4244723 0.5469733 0.5547519 +0.4365675 0.5469733 0.5547519 +0.4474232 0.5469733 0.5547519 +0.45727 0.5469733 0.5547519 +0.4662797 0.5469733 0.5547519 +0.4745834 0.5469733 0.5547519 +0.4822838 0.5469733 0.5547519 +0.4894626 0.5469733 0.5547519 +0.4961862 0.5469733 0.5547519 +0.5025087 0.5469733 0.5547519 +0.5084753 0.5469733 0.5547519 +0.514124 0.5469733 0.5547519 +0.519487 0.5469733 0.5547519 +0.5245917 0.5469733 0.5547519 +0.529462 0.5469733 0.5547519 +0.5341183 0.5469733 0.5547519 +0.5385787 0.5469733 0.5547519 +0.5428591 0.5469733 0.5547519 +0.5469733 0.5469733 0.5547519 +0.5509339 0.5469733 0.5547519 +0.5547519 0.5469733 0.5547519 +0.5584371 0.5469733 0.5547519 +0.5619986 0.5469733 0.5547519 +0.5654443 0.5469733 0.5547519 +0.5687816 0.5469733 0.5547519 +0.092819 0.5509339 0.5547519 +0.2262531 0.5509339 0.5547519 +0.2875993 0.5509339 0.5547519 +0.3262122 0.5509339 0.5547519 +0.3544566 0.5509339 0.5547519 +0.3767383 0.5509339 0.5547519 +0.3951413 0.5509339 0.5547519 +0.4108177 0.5509339 0.5547519 +0.4244723 0.5509339 0.5547519 +0.4365675 0.5509339 0.5547519 +0.4474232 0.5509339 0.5547519 +0.45727 0.5509339 0.5547519 +0.4662797 0.5509339 0.5547519 +0.4745834 0.5509339 0.5547519 +0.4822838 0.5509339 0.5547519 +0.4894626 0.5509339 0.5547519 +0.4961862 0.5509339 0.5547519 +0.5025087 0.5509339 0.5547519 +0.5084753 0.5509339 0.5547519 +0.514124 0.5509339 0.5547519 +0.519487 0.5509339 0.5547519 +0.5245917 0.5509339 0.5547519 +0.529462 0.5509339 0.5547519 +0.5341183 0.5509339 0.5547519 +0.5385787 0.5509339 0.5547519 +0.5428591 0.5509339 0.5547519 +0.5469733 0.5509339 0.5547519 +0.5509339 0.5509339 0.5547519 +0.5547519 0.5509339 0.5547519 +0.5584371 0.5509339 0.5547519 +0.5619986 0.5509339 0.5547519 +0.5654443 0.5509339 0.5547519 +0.5687816 0.5509339 0.5547519 +0.092819 0.5547519 0.5547519 +0.2262531 0.5547519 0.5547519 +0.2875993 0.5547519 0.5547519 +0.3262122 0.5547519 0.5547519 +0.3544566 0.5547519 0.5547519 +0.3767383 0.5547519 0.5547519 +0.3951413 0.5547519 0.5547519 +0.4108177 0.5547519 0.5547519 +0.4244723 0.5547519 0.5547519 +0.4365675 0.5547519 0.5547519 +0.4474232 0.5547519 0.5547519 +0.45727 0.5547519 0.5547519 +0.4662797 0.5547519 0.5547519 +0.4745834 0.5547519 0.5547519 +0.4822838 0.5547519 0.5547519 +0.4894626 0.5547519 0.5547519 +0.4961862 0.5547519 0.5547519 +0.5025087 0.5547519 0.5547519 +0.5084753 0.5547519 0.5547519 +0.514124 0.5547519 0.5547519 +0.519487 0.5547519 0.5547519 +0.5245917 0.5547519 0.5547519 +0.529462 0.5547519 0.5547519 +0.5341183 0.5547519 0.5547519 +0.5385787 0.5547519 0.5547519 +0.5428591 0.5547519 0.5547519 +0.5469733 0.5547519 0.5547519 +0.5509339 0.5547519 0.5547519 +0.5547519 0.5547519 0.5547519 +0.5584371 0.5547519 0.5547519 +0.5619986 0.5547519 0.5547519 +0.5654443 0.5547519 0.5547519 +0.5687816 0.5547519 0.5547519 +0.092819 0.5584371 0.5547519 +0.2262531 0.5584371 0.5547519 +0.2875993 0.5584371 0.5547519 +0.3262122 0.5584371 0.5547519 +0.3544566 0.5584371 0.5547519 +0.3767383 0.5584371 0.5547519 +0.3951413 0.5584371 0.5547519 +0.4108177 0.5584371 0.5547519 +0.4244723 0.5584371 0.5547519 +0.4365675 0.5584371 0.5547519 +0.4474232 0.5584371 0.5547519 +0.45727 0.5584371 0.5547519 +0.4662797 0.5584371 0.5547519 +0.4745834 0.5584371 0.5547519 +0.4822838 0.5584371 0.5547519 +0.4894626 0.5584371 0.5547519 +0.4961862 0.5584371 0.5547519 +0.5025087 0.5584371 0.5547519 +0.5084753 0.5584371 0.5547519 +0.514124 0.5584371 0.5547519 +0.519487 0.5584371 0.5547519 +0.5245917 0.5584371 0.5547519 +0.529462 0.5584371 0.5547519 +0.5341183 0.5584371 0.5547519 +0.5385787 0.5584371 0.5547519 +0.5428591 0.5584371 0.5547519 +0.5469733 0.5584371 0.5547519 +0.5509339 0.5584371 0.5547519 +0.5547519 0.5584371 0.5547519 +0.5584371 0.5584371 0.5547519 +0.5619986 0.5584371 0.5547519 +0.5654443 0.5584371 0.5547519 +0.5687816 0.5584371 0.5547519 +0.092819 0.5619986 0.5547519 +0.2262531 0.5619986 0.5547519 +0.2875993 0.5619986 0.5547519 +0.3262122 0.5619986 0.5547519 +0.3544566 0.5619986 0.5547519 +0.3767383 0.5619986 0.5547519 +0.3951413 0.5619986 0.5547519 +0.4108177 0.5619986 0.5547519 +0.4244723 0.5619986 0.5547519 +0.4365675 0.5619986 0.5547519 +0.4474232 0.5619986 0.5547519 +0.45727 0.5619986 0.5547519 +0.4662797 0.5619986 0.5547519 +0.4745834 0.5619986 0.5547519 +0.4822838 0.5619986 0.5547519 +0.4894626 0.5619986 0.5547519 +0.4961862 0.5619986 0.5547519 +0.5025087 0.5619986 0.5547519 +0.5084753 0.5619986 0.5547519 +0.514124 0.5619986 0.5547519 +0.519487 0.5619986 0.5547519 +0.5245917 0.5619986 0.5547519 +0.529462 0.5619986 0.5547519 +0.5341183 0.5619986 0.5547519 +0.5385787 0.5619986 0.5547519 +0.5428591 0.5619986 0.5547519 +0.5469733 0.5619986 0.5547519 +0.5509339 0.5619986 0.5547519 +0.5547519 0.5619986 0.5547519 +0.5584371 0.5619986 0.5547519 +0.5619986 0.5619986 0.5547519 +0.5654443 0.5619986 0.5547519 +0.5687816 0.5619986 0.5547519 +0.092819 0.5654443 0.5547519 +0.2262531 0.5654443 0.5547519 +0.2875993 0.5654443 0.5547519 +0.3262122 0.5654443 0.5547519 +0.3544566 0.5654443 0.5547519 +0.3767383 0.5654443 0.5547519 +0.3951413 0.5654443 0.5547519 +0.4108177 0.5654443 0.5547519 +0.4244723 0.5654443 0.5547519 +0.4365675 0.5654443 0.5547519 +0.4474232 0.5654443 0.5547519 +0.45727 0.5654443 0.5547519 +0.4662797 0.5654443 0.5547519 +0.4745834 0.5654443 0.5547519 +0.4822838 0.5654443 0.5547519 +0.4894626 0.5654443 0.5547519 +0.4961862 0.5654443 0.5547519 +0.5025087 0.5654443 0.5547519 +0.5084753 0.5654443 0.5547519 +0.514124 0.5654443 0.5547519 +0.519487 0.5654443 0.5547519 +0.5245917 0.5654443 0.5547519 +0.529462 0.5654443 0.5547519 +0.5341183 0.5654443 0.5547519 +0.5385787 0.5654443 0.5547519 +0.5428591 0.5654443 0.5547519 +0.5469733 0.5654443 0.5547519 +0.5509339 0.5654443 0.5547519 +0.5547519 0.5654443 0.5547519 +0.5584371 0.5654443 0.5547519 +0.5619986 0.5654443 0.5547519 +0.5654443 0.5654443 0.5547519 +0.5687816 0.5654443 0.5547519 +0.092819 0.5687816 0.5547519 +0.2262531 0.5687816 0.5547519 +0.2875993 0.5687816 0.5547519 +0.3262122 0.5687816 0.5547519 +0.3544566 0.5687816 0.5547519 +0.3767383 0.5687816 0.5547519 +0.3951413 0.5687816 0.5547519 +0.4108177 0.5687816 0.5547519 +0.4244723 0.5687816 0.5547519 +0.4365675 0.5687816 0.5547519 +0.4474232 0.5687816 0.5547519 +0.45727 0.5687816 0.5547519 +0.4662797 0.5687816 0.5547519 +0.4745834 0.5687816 0.5547519 +0.4822838 0.5687816 0.5547519 +0.4894626 0.5687816 0.5547519 +0.4961862 0.5687816 0.5547519 +0.5025087 0.5687816 0.5547519 +0.5084753 0.5687816 0.5547519 +0.514124 0.5687816 0.5547519 +0.519487 0.5687816 0.5547519 +0.5245917 0.5687816 0.5547519 +0.529462 0.5687816 0.5547519 +0.5341183 0.5687816 0.5547519 +0.5385787 0.5687816 0.5547519 +0.5428591 0.5687816 0.5547519 +0.5469733 0.5687816 0.5547519 +0.5509339 0.5687816 0.5547519 +0.5547519 0.5687816 0.5547519 +0.5584371 0.5687816 0.5547519 +0.5619986 0.5687816 0.5547519 +0.5654443 0.5687816 0.5547519 +0.5687816 0.5687816 0.5547519 +0.092819 0.092819 0.5584371 +0.2262531 0.092819 0.5584371 +0.2875993 0.092819 0.5584371 +0.3262122 0.092819 0.5584371 +0.3544566 0.092819 0.5584371 +0.3767383 0.092819 0.5584371 +0.3951413 0.092819 0.5584371 +0.4108177 0.092819 0.5584371 +0.4244723 0.092819 0.5584371 +0.4365675 0.092819 0.5584371 +0.4474232 0.092819 0.5584371 +0.45727 0.092819 0.5584371 +0.4662797 0.092819 0.5584371 +0.4745834 0.092819 0.5584371 +0.4822838 0.092819 0.5584371 +0.4894626 0.092819 0.5584371 +0.4961862 0.092819 0.5584371 +0.5025087 0.092819 0.5584371 +0.5084753 0.092819 0.5584371 +0.514124 0.092819 0.5584371 +0.519487 0.092819 0.5584371 +0.5245917 0.092819 0.5584371 +0.529462 0.092819 0.5584371 +0.5341183 0.092819 0.5584371 +0.5385787 0.092819 0.5584371 +0.5428591 0.092819 0.5584371 +0.5469733 0.092819 0.5584371 +0.5509339 0.092819 0.5584371 +0.5547519 0.092819 0.5584371 +0.5584371 0.092819 0.5584371 +0.5619986 0.092819 0.5584371 +0.5654443 0.092819 0.5584371 +0.5687816 0.092819 0.5584371 +0.092819 0.2262531 0.5584371 +0.2262531 0.2262531 0.5584371 +0.2875993 0.2262531 0.5584371 +0.3262122 0.2262531 0.5584371 +0.3544566 0.2262531 0.5584371 +0.3767383 0.2262531 0.5584371 +0.3951413 0.2262531 0.5584371 +0.4108177 0.2262531 0.5584371 +0.4244723 0.2262531 0.5584371 +0.4365675 0.2262531 0.5584371 +0.4474232 0.2262531 0.5584371 +0.45727 0.2262531 0.5584371 +0.4662797 0.2262531 0.5584371 +0.4745834 0.2262531 0.5584371 +0.4822838 0.2262531 0.5584371 +0.4894626 0.2262531 0.5584371 +0.4961862 0.2262531 0.5584371 +0.5025087 0.2262531 0.5584371 +0.5084753 0.2262531 0.5584371 +0.514124 0.2262531 0.5584371 +0.519487 0.2262531 0.5584371 +0.5245917 0.2262531 0.5584371 +0.529462 0.2262531 0.5584371 +0.5341183 0.2262531 0.5584371 +0.5385787 0.2262531 0.5584371 +0.5428591 0.2262531 0.5584371 +0.5469733 0.2262531 0.5584371 +0.5509339 0.2262531 0.5584371 +0.5547519 0.2262531 0.5584371 +0.5584371 0.2262531 0.5584371 +0.5619986 0.2262531 0.5584371 +0.5654443 0.2262531 0.5584371 +0.5687816 0.2262531 0.5584371 +0.092819 0.2875993 0.5584371 +0.2262531 0.2875993 0.5584371 +0.2875993 0.2875993 0.5584371 +0.3262122 0.2875993 0.5584371 +0.3544566 0.2875993 0.5584371 +0.3767383 0.2875993 0.5584371 +0.3951413 0.2875993 0.5584371 +0.4108177 0.2875993 0.5584371 +0.4244723 0.2875993 0.5584371 +0.4365675 0.2875993 0.5584371 +0.4474232 0.2875993 0.5584371 +0.45727 0.2875993 0.5584371 +0.4662797 0.2875993 0.5584371 +0.4745834 0.2875993 0.5584371 +0.4822838 0.2875993 0.5584371 +0.4894626 0.2875993 0.5584371 +0.4961862 0.2875993 0.5584371 +0.5025087 0.2875993 0.5584371 +0.5084753 0.2875993 0.5584371 +0.514124 0.2875993 0.5584371 +0.519487 0.2875993 0.5584371 +0.5245917 0.2875993 0.5584371 +0.529462 0.2875993 0.5584371 +0.5341183 0.2875993 0.5584371 +0.5385787 0.2875993 0.5584371 +0.5428591 0.2875993 0.5584371 +0.5469733 0.2875993 0.5584371 +0.5509339 0.2875993 0.5584371 +0.5547519 0.2875993 0.5584371 +0.5584371 0.2875993 0.5584371 +0.5619986 0.2875993 0.5584371 +0.5654443 0.2875993 0.5584371 +0.5687816 0.2875993 0.5584371 +0.092819 0.3262122 0.5584371 +0.2262531 0.3262122 0.5584371 +0.2875993 0.3262122 0.5584371 +0.3262122 0.3262122 0.5584371 +0.3544566 0.3262122 0.5584371 +0.3767383 0.3262122 0.5584371 +0.3951413 0.3262122 0.5584371 +0.4108177 0.3262122 0.5584371 +0.4244723 0.3262122 0.5584371 +0.4365675 0.3262122 0.5584371 +0.4474232 0.3262122 0.5584371 +0.45727 0.3262122 0.5584371 +0.4662797 0.3262122 0.5584371 +0.4745834 0.3262122 0.5584371 +0.4822838 0.3262122 0.5584371 +0.4894626 0.3262122 0.5584371 +0.4961862 0.3262122 0.5584371 +0.5025087 0.3262122 0.5584371 +0.5084753 0.3262122 0.5584371 +0.514124 0.3262122 0.5584371 +0.519487 0.3262122 0.5584371 +0.5245917 0.3262122 0.5584371 +0.529462 0.3262122 0.5584371 +0.5341183 0.3262122 0.5584371 +0.5385787 0.3262122 0.5584371 +0.5428591 0.3262122 0.5584371 +0.5469733 0.3262122 0.5584371 +0.5509339 0.3262122 0.5584371 +0.5547519 0.3262122 0.5584371 +0.5584371 0.3262122 0.5584371 +0.5619986 0.3262122 0.5584371 +0.5654443 0.3262122 0.5584371 +0.5687816 0.3262122 0.5584371 +0.092819 0.3544566 0.5584371 +0.2262531 0.3544566 0.5584371 +0.2875993 0.3544566 0.5584371 +0.3262122 0.3544566 0.5584371 +0.3544566 0.3544566 0.5584371 +0.3767383 0.3544566 0.5584371 +0.3951413 0.3544566 0.5584371 +0.4108177 0.3544566 0.5584371 +0.4244723 0.3544566 0.5584371 +0.4365675 0.3544566 0.5584371 +0.4474232 0.3544566 0.5584371 +0.45727 0.3544566 0.5584371 +0.4662797 0.3544566 0.5584371 +0.4745834 0.3544566 0.5584371 +0.4822838 0.3544566 0.5584371 +0.4894626 0.3544566 0.5584371 +0.4961862 0.3544566 0.5584371 +0.5025087 0.3544566 0.5584371 +0.5084753 0.3544566 0.5584371 +0.514124 0.3544566 0.5584371 +0.519487 0.3544566 0.5584371 +0.5245917 0.3544566 0.5584371 +0.529462 0.3544566 0.5584371 +0.5341183 0.3544566 0.5584371 +0.5385787 0.3544566 0.5584371 +0.5428591 0.3544566 0.5584371 +0.5469733 0.3544566 0.5584371 +0.5509339 0.3544566 0.5584371 +0.5547519 0.3544566 0.5584371 +0.5584371 0.3544566 0.5584371 +0.5619986 0.3544566 0.5584371 +0.5654443 0.3544566 0.5584371 +0.5687816 0.3544566 0.5584371 +0.092819 0.3767383 0.5584371 +0.2262531 0.3767383 0.5584371 +0.2875993 0.3767383 0.5584371 +0.3262122 0.3767383 0.5584371 +0.3544566 0.3767383 0.5584371 +0.3767383 0.3767383 0.5584371 +0.3951413 0.3767383 0.5584371 +0.4108177 0.3767383 0.5584371 +0.4244723 0.3767383 0.5584371 +0.4365675 0.3767383 0.5584371 +0.4474232 0.3767383 0.5584371 +0.45727 0.3767383 0.5584371 +0.4662797 0.3767383 0.5584371 +0.4745834 0.3767383 0.5584371 +0.4822838 0.3767383 0.5584371 +0.4894626 0.3767383 0.5584371 +0.4961862 0.3767383 0.5584371 +0.5025087 0.3767383 0.5584371 +0.5084753 0.3767383 0.5584371 +0.514124 0.3767383 0.5584371 +0.519487 0.3767383 0.5584371 +0.5245917 0.3767383 0.5584371 +0.529462 0.3767383 0.5584371 +0.5341183 0.3767383 0.5584371 +0.5385787 0.3767383 0.5584371 +0.5428591 0.3767383 0.5584371 +0.5469733 0.3767383 0.5584371 +0.5509339 0.3767383 0.5584371 +0.5547519 0.3767383 0.5584371 +0.5584371 0.3767383 0.5584371 +0.5619986 0.3767383 0.5584371 +0.5654443 0.3767383 0.5584371 +0.5687816 0.3767383 0.5584371 +0.092819 0.3951413 0.5584371 +0.2262531 0.3951413 0.5584371 +0.2875993 0.3951413 0.5584371 +0.3262122 0.3951413 0.5584371 +0.3544566 0.3951413 0.5584371 +0.3767383 0.3951413 0.5584371 +0.3951413 0.3951413 0.5584371 +0.4108177 0.3951413 0.5584371 +0.4244723 0.3951413 0.5584371 +0.4365675 0.3951413 0.5584371 +0.4474232 0.3951413 0.5584371 +0.45727 0.3951413 0.5584371 +0.4662797 0.3951413 0.5584371 +0.4745834 0.3951413 0.5584371 +0.4822838 0.3951413 0.5584371 +0.4894626 0.3951413 0.5584371 +0.4961862 0.3951413 0.5584371 +0.5025087 0.3951413 0.5584371 +0.5084753 0.3951413 0.5584371 +0.514124 0.3951413 0.5584371 +0.519487 0.3951413 0.5584371 +0.5245917 0.3951413 0.5584371 +0.529462 0.3951413 0.5584371 +0.5341183 0.3951413 0.5584371 +0.5385787 0.3951413 0.5584371 +0.5428591 0.3951413 0.5584371 +0.5469733 0.3951413 0.5584371 +0.5509339 0.3951413 0.5584371 +0.5547519 0.3951413 0.5584371 +0.5584371 0.3951413 0.5584371 +0.5619986 0.3951413 0.5584371 +0.5654443 0.3951413 0.5584371 +0.5687816 0.3951413 0.5584371 +0.092819 0.4108177 0.5584371 +0.2262531 0.4108177 0.5584371 +0.2875993 0.4108177 0.5584371 +0.3262122 0.4108177 0.5584371 +0.3544566 0.4108177 0.5584371 +0.3767383 0.4108177 0.5584371 +0.3951413 0.4108177 0.5584371 +0.4108177 0.4108177 0.5584371 +0.4244723 0.4108177 0.5584371 +0.4365675 0.4108177 0.5584371 +0.4474232 0.4108177 0.5584371 +0.45727 0.4108177 0.5584371 +0.4662797 0.4108177 0.5584371 +0.4745834 0.4108177 0.5584371 +0.4822838 0.4108177 0.5584371 +0.4894626 0.4108177 0.5584371 +0.4961862 0.4108177 0.5584371 +0.5025087 0.4108177 0.5584371 +0.5084753 0.4108177 0.5584371 +0.514124 0.4108177 0.5584371 +0.519487 0.4108177 0.5584371 +0.5245917 0.4108177 0.5584371 +0.529462 0.4108177 0.5584371 +0.5341183 0.4108177 0.5584371 +0.5385787 0.4108177 0.5584371 +0.5428591 0.4108177 0.5584371 +0.5469733 0.4108177 0.5584371 +0.5509339 0.4108177 0.5584371 +0.5547519 0.4108177 0.5584371 +0.5584371 0.4108177 0.5584371 +0.5619986 0.4108177 0.5584371 +0.5654443 0.4108177 0.5584371 +0.5687816 0.4108177 0.5584371 +0.092819 0.4244723 0.5584371 +0.2262531 0.4244723 0.5584371 +0.2875993 0.4244723 0.5584371 +0.3262122 0.4244723 0.5584371 +0.3544566 0.4244723 0.5584371 +0.3767383 0.4244723 0.5584371 +0.3951413 0.4244723 0.5584371 +0.4108177 0.4244723 0.5584371 +0.4244723 0.4244723 0.5584371 +0.4365675 0.4244723 0.5584371 +0.4474232 0.4244723 0.5584371 +0.45727 0.4244723 0.5584371 +0.4662797 0.4244723 0.5584371 +0.4745834 0.4244723 0.5584371 +0.4822838 0.4244723 0.5584371 +0.4894626 0.4244723 0.5584371 +0.4961862 0.4244723 0.5584371 +0.5025087 0.4244723 0.5584371 +0.5084753 0.4244723 0.5584371 +0.514124 0.4244723 0.5584371 +0.519487 0.4244723 0.5584371 +0.5245917 0.4244723 0.5584371 +0.529462 0.4244723 0.5584371 +0.5341183 0.4244723 0.5584371 +0.5385787 0.4244723 0.5584371 +0.5428591 0.4244723 0.5584371 +0.5469733 0.4244723 0.5584371 +0.5509339 0.4244723 0.5584371 +0.5547519 0.4244723 0.5584371 +0.5584371 0.4244723 0.5584371 +0.5619986 0.4244723 0.5584371 +0.5654443 0.4244723 0.5584371 +0.5687816 0.4244723 0.5584371 +0.092819 0.4365675 0.5584371 +0.2262531 0.4365675 0.5584371 +0.2875993 0.4365675 0.5584371 +0.3262122 0.4365675 0.5584371 +0.3544566 0.4365675 0.5584371 +0.3767383 0.4365675 0.5584371 +0.3951413 0.4365675 0.5584371 +0.4108177 0.4365675 0.5584371 +0.4244723 0.4365675 0.5584371 +0.4365675 0.4365675 0.5584371 +0.4474232 0.4365675 0.5584371 +0.45727 0.4365675 0.5584371 +0.4662797 0.4365675 0.5584371 +0.4745834 0.4365675 0.5584371 +0.4822838 0.4365675 0.5584371 +0.4894626 0.4365675 0.5584371 +0.4961862 0.4365675 0.5584371 +0.5025087 0.4365675 0.5584371 +0.5084753 0.4365675 0.5584371 +0.514124 0.4365675 0.5584371 +0.519487 0.4365675 0.5584371 +0.5245917 0.4365675 0.5584371 +0.529462 0.4365675 0.5584371 +0.5341183 0.4365675 0.5584371 +0.5385787 0.4365675 0.5584371 +0.5428591 0.4365675 0.5584371 +0.5469733 0.4365675 0.5584371 +0.5509339 0.4365675 0.5584371 +0.5547519 0.4365675 0.5584371 +0.5584371 0.4365675 0.5584371 +0.5619986 0.4365675 0.5584371 +0.5654443 0.4365675 0.5584371 +0.5687816 0.4365675 0.5584371 +0.092819 0.4474232 0.5584371 +0.2262531 0.4474232 0.5584371 +0.2875993 0.4474232 0.5584371 +0.3262122 0.4474232 0.5584371 +0.3544566 0.4474232 0.5584371 +0.3767383 0.4474232 0.5584371 +0.3951413 0.4474232 0.5584371 +0.4108177 0.4474232 0.5584371 +0.4244723 0.4474232 0.5584371 +0.4365675 0.4474232 0.5584371 +0.4474232 0.4474232 0.5584371 +0.45727 0.4474232 0.5584371 +0.4662797 0.4474232 0.5584371 +0.4745834 0.4474232 0.5584371 +0.4822838 0.4474232 0.5584371 +0.4894626 0.4474232 0.5584371 +0.4961862 0.4474232 0.5584371 +0.5025087 0.4474232 0.5584371 +0.5084753 0.4474232 0.5584371 +0.514124 0.4474232 0.5584371 +0.519487 0.4474232 0.5584371 +0.5245917 0.4474232 0.5584371 +0.529462 0.4474232 0.5584371 +0.5341183 0.4474232 0.5584371 +0.5385787 0.4474232 0.5584371 +0.5428591 0.4474232 0.5584371 +0.5469733 0.4474232 0.5584371 +0.5509339 0.4474232 0.5584371 +0.5547519 0.4474232 0.5584371 +0.5584371 0.4474232 0.5584371 +0.5619986 0.4474232 0.5584371 +0.5654443 0.4474232 0.5584371 +0.5687816 0.4474232 0.5584371 +0.092819 0.45727 0.5584371 +0.2262531 0.45727 0.5584371 +0.2875993 0.45727 0.5584371 +0.3262122 0.45727 0.5584371 +0.3544566 0.45727 0.5584371 +0.3767383 0.45727 0.5584371 +0.3951413 0.45727 0.5584371 +0.4108177 0.45727 0.5584371 +0.4244723 0.45727 0.5584371 +0.4365675 0.45727 0.5584371 +0.4474232 0.45727 0.5584371 +0.45727 0.45727 0.5584371 +0.4662797 0.45727 0.5584371 +0.4745834 0.45727 0.5584371 +0.4822838 0.45727 0.5584371 +0.4894626 0.45727 0.5584371 +0.4961862 0.45727 0.5584371 +0.5025087 0.45727 0.5584371 +0.5084753 0.45727 0.5584371 +0.514124 0.45727 0.5584371 +0.519487 0.45727 0.5584371 +0.5245917 0.45727 0.5584371 +0.529462 0.45727 0.5584371 +0.5341183 0.45727 0.5584371 +0.5385787 0.45727 0.5584371 +0.5428591 0.45727 0.5584371 +0.5469733 0.45727 0.5584371 +0.5509339 0.45727 0.5584371 +0.5547519 0.45727 0.5584371 +0.5584371 0.45727 0.5584371 +0.5619986 0.45727 0.5584371 +0.5654443 0.45727 0.5584371 +0.5687816 0.45727 0.5584371 +0.092819 0.4662797 0.5584371 +0.2262531 0.4662797 0.5584371 +0.2875993 0.4662797 0.5584371 +0.3262122 0.4662797 0.5584371 +0.3544566 0.4662797 0.5584371 +0.3767383 0.4662797 0.5584371 +0.3951413 0.4662797 0.5584371 +0.4108177 0.4662797 0.5584371 +0.4244723 0.4662797 0.5584371 +0.4365675 0.4662797 0.5584371 +0.4474232 0.4662797 0.5584371 +0.45727 0.4662797 0.5584371 +0.4662797 0.4662797 0.5584371 +0.4745834 0.4662797 0.5584371 +0.4822838 0.4662797 0.5584371 +0.4894626 0.4662797 0.5584371 +0.4961862 0.4662797 0.5584371 +0.5025087 0.4662797 0.5584371 +0.5084753 0.4662797 0.5584371 +0.514124 0.4662797 0.5584371 +0.519487 0.4662797 0.5584371 +0.5245917 0.4662797 0.5584371 +0.529462 0.4662797 0.5584371 +0.5341183 0.4662797 0.5584371 +0.5385787 0.4662797 0.5584371 +0.5428591 0.4662797 0.5584371 +0.5469733 0.4662797 0.5584371 +0.5509339 0.4662797 0.5584371 +0.5547519 0.4662797 0.5584371 +0.5584371 0.4662797 0.5584371 +0.5619986 0.4662797 0.5584371 +0.5654443 0.4662797 0.5584371 +0.5687816 0.4662797 0.5584371 +0.092819 0.4745834 0.5584371 +0.2262531 0.4745834 0.5584371 +0.2875993 0.4745834 0.5584371 +0.3262122 0.4745834 0.5584371 +0.3544566 0.4745834 0.5584371 +0.3767383 0.4745834 0.5584371 +0.3951413 0.4745834 0.5584371 +0.4108177 0.4745834 0.5584371 +0.4244723 0.4745834 0.5584371 +0.4365675 0.4745834 0.5584371 +0.4474232 0.4745834 0.5584371 +0.45727 0.4745834 0.5584371 +0.4662797 0.4745834 0.5584371 +0.4745834 0.4745834 0.5584371 +0.4822838 0.4745834 0.5584371 +0.4894626 0.4745834 0.5584371 +0.4961862 0.4745834 0.5584371 +0.5025087 0.4745834 0.5584371 +0.5084753 0.4745834 0.5584371 +0.514124 0.4745834 0.5584371 +0.519487 0.4745834 0.5584371 +0.5245917 0.4745834 0.5584371 +0.529462 0.4745834 0.5584371 +0.5341183 0.4745834 0.5584371 +0.5385787 0.4745834 0.5584371 +0.5428591 0.4745834 0.5584371 +0.5469733 0.4745834 0.5584371 +0.5509339 0.4745834 0.5584371 +0.5547519 0.4745834 0.5584371 +0.5584371 0.4745834 0.5584371 +0.5619986 0.4745834 0.5584371 +0.5654443 0.4745834 0.5584371 +0.5687816 0.4745834 0.5584371 +0.092819 0.4822838 0.5584371 +0.2262531 0.4822838 0.5584371 +0.2875993 0.4822838 0.5584371 +0.3262122 0.4822838 0.5584371 +0.3544566 0.4822838 0.5584371 +0.3767383 0.4822838 0.5584371 +0.3951413 0.4822838 0.5584371 +0.4108177 0.4822838 0.5584371 +0.4244723 0.4822838 0.5584371 +0.4365675 0.4822838 0.5584371 +0.4474232 0.4822838 0.5584371 +0.45727 0.4822838 0.5584371 +0.4662797 0.4822838 0.5584371 +0.4745834 0.4822838 0.5584371 +0.4822838 0.4822838 0.5584371 +0.4894626 0.4822838 0.5584371 +0.4961862 0.4822838 0.5584371 +0.5025087 0.4822838 0.5584371 +0.5084753 0.4822838 0.5584371 +0.514124 0.4822838 0.5584371 +0.519487 0.4822838 0.5584371 +0.5245917 0.4822838 0.5584371 +0.529462 0.4822838 0.5584371 +0.5341183 0.4822838 0.5584371 +0.5385787 0.4822838 0.5584371 +0.5428591 0.4822838 0.5584371 +0.5469733 0.4822838 0.5584371 +0.5509339 0.4822838 0.5584371 +0.5547519 0.4822838 0.5584371 +0.5584371 0.4822838 0.5584371 +0.5619986 0.4822838 0.5584371 +0.5654443 0.4822838 0.5584371 +0.5687816 0.4822838 0.5584371 +0.092819 0.4894626 0.5584371 +0.2262531 0.4894626 0.5584371 +0.2875993 0.4894626 0.5584371 +0.3262122 0.4894626 0.5584371 +0.3544566 0.4894626 0.5584371 +0.3767383 0.4894626 0.5584371 +0.3951413 0.4894626 0.5584371 +0.4108177 0.4894626 0.5584371 +0.4244723 0.4894626 0.5584371 +0.4365675 0.4894626 0.5584371 +0.4474232 0.4894626 0.5584371 +0.45727 0.4894626 0.5584371 +0.4662797 0.4894626 0.5584371 +0.4745834 0.4894626 0.5584371 +0.4822838 0.4894626 0.5584371 +0.4894626 0.4894626 0.5584371 +0.4961862 0.4894626 0.5584371 +0.5025087 0.4894626 0.5584371 +0.5084753 0.4894626 0.5584371 +0.514124 0.4894626 0.5584371 +0.519487 0.4894626 0.5584371 +0.5245917 0.4894626 0.5584371 +0.529462 0.4894626 0.5584371 +0.5341183 0.4894626 0.5584371 +0.5385787 0.4894626 0.5584371 +0.5428591 0.4894626 0.5584371 +0.5469733 0.4894626 0.5584371 +0.5509339 0.4894626 0.5584371 +0.5547519 0.4894626 0.5584371 +0.5584371 0.4894626 0.5584371 +0.5619986 0.4894626 0.5584371 +0.5654443 0.4894626 0.5584371 +0.5687816 0.4894626 0.5584371 +0.092819 0.4961862 0.5584371 +0.2262531 0.4961862 0.5584371 +0.2875993 0.4961862 0.5584371 +0.3262122 0.4961862 0.5584371 +0.3544566 0.4961862 0.5584371 +0.3767383 0.4961862 0.5584371 +0.3951413 0.4961862 0.5584371 +0.4108177 0.4961862 0.5584371 +0.4244723 0.4961862 0.5584371 +0.4365675 0.4961862 0.5584371 +0.4474232 0.4961862 0.5584371 +0.45727 0.4961862 0.5584371 +0.4662797 0.4961862 0.5584371 +0.4745834 0.4961862 0.5584371 +0.4822838 0.4961862 0.5584371 +0.4894626 0.4961862 0.5584371 +0.4961862 0.4961862 0.5584371 +0.5025087 0.4961862 0.5584371 +0.5084753 0.4961862 0.5584371 +0.514124 0.4961862 0.5584371 +0.519487 0.4961862 0.5584371 +0.5245917 0.4961862 0.5584371 +0.529462 0.4961862 0.5584371 +0.5341183 0.4961862 0.5584371 +0.5385787 0.4961862 0.5584371 +0.5428591 0.4961862 0.5584371 +0.5469733 0.4961862 0.5584371 +0.5509339 0.4961862 0.5584371 +0.5547519 0.4961862 0.5584371 +0.5584371 0.4961862 0.5584371 +0.5619986 0.4961862 0.5584371 +0.5654443 0.4961862 0.5584371 +0.5687816 0.4961862 0.5584371 +0.092819 0.5025087 0.5584371 +0.2262531 0.5025087 0.5584371 +0.2875993 0.5025087 0.5584371 +0.3262122 0.5025087 0.5584371 +0.3544566 0.5025087 0.5584371 +0.3767383 0.5025087 0.5584371 +0.3951413 0.5025087 0.5584371 +0.4108177 0.5025087 0.5584371 +0.4244723 0.5025087 0.5584371 +0.4365675 0.5025087 0.5584371 +0.4474232 0.5025087 0.5584371 +0.45727 0.5025087 0.5584371 +0.4662797 0.5025087 0.5584371 +0.4745834 0.5025087 0.5584371 +0.4822838 0.5025087 0.5584371 +0.4894626 0.5025087 0.5584371 +0.4961862 0.5025087 0.5584371 +0.5025087 0.5025087 0.5584371 +0.5084753 0.5025087 0.5584371 +0.514124 0.5025087 0.5584371 +0.519487 0.5025087 0.5584371 +0.5245917 0.5025087 0.5584371 +0.529462 0.5025087 0.5584371 +0.5341183 0.5025087 0.5584371 +0.5385787 0.5025087 0.5584371 +0.5428591 0.5025087 0.5584371 +0.5469733 0.5025087 0.5584371 +0.5509339 0.5025087 0.5584371 +0.5547519 0.5025087 0.5584371 +0.5584371 0.5025087 0.5584371 +0.5619986 0.5025087 0.5584371 +0.5654443 0.5025087 0.5584371 +0.5687816 0.5025087 0.5584371 +0.092819 0.5084753 0.5584371 +0.2262531 0.5084753 0.5584371 +0.2875993 0.5084753 0.5584371 +0.3262122 0.5084753 0.5584371 +0.3544566 0.5084753 0.5584371 +0.3767383 0.5084753 0.5584371 +0.3951413 0.5084753 0.5584371 +0.4108177 0.5084753 0.5584371 +0.4244723 0.5084753 0.5584371 +0.4365675 0.5084753 0.5584371 +0.4474232 0.5084753 0.5584371 +0.45727 0.5084753 0.5584371 +0.4662797 0.5084753 0.5584371 +0.4745834 0.5084753 0.5584371 +0.4822838 0.5084753 0.5584371 +0.4894626 0.5084753 0.5584371 +0.4961862 0.5084753 0.5584371 +0.5025087 0.5084753 0.5584371 +0.5084753 0.5084753 0.5584371 +0.514124 0.5084753 0.5584371 +0.519487 0.5084753 0.5584371 +0.5245917 0.5084753 0.5584371 +0.529462 0.5084753 0.5584371 +0.5341183 0.5084753 0.5584371 +0.5385787 0.5084753 0.5584371 +0.5428591 0.5084753 0.5584371 +0.5469733 0.5084753 0.5584371 +0.5509339 0.5084753 0.5584371 +0.5547519 0.5084753 0.5584371 +0.5584371 0.5084753 0.5584371 +0.5619986 0.5084753 0.5584371 +0.5654443 0.5084753 0.5584371 +0.5687816 0.5084753 0.5584371 +0.092819 0.514124 0.5584371 +0.2262531 0.514124 0.5584371 +0.2875993 0.514124 0.5584371 +0.3262122 0.514124 0.5584371 +0.3544566 0.514124 0.5584371 +0.3767383 0.514124 0.5584371 +0.3951413 0.514124 0.5584371 +0.4108177 0.514124 0.5584371 +0.4244723 0.514124 0.5584371 +0.4365675 0.514124 0.5584371 +0.4474232 0.514124 0.5584371 +0.45727 0.514124 0.5584371 +0.4662797 0.514124 0.5584371 +0.4745834 0.514124 0.5584371 +0.4822838 0.514124 0.5584371 +0.4894626 0.514124 0.5584371 +0.4961862 0.514124 0.5584371 +0.5025087 0.514124 0.5584371 +0.5084753 0.514124 0.5584371 +0.514124 0.514124 0.5584371 +0.519487 0.514124 0.5584371 +0.5245917 0.514124 0.5584371 +0.529462 0.514124 0.5584371 +0.5341183 0.514124 0.5584371 +0.5385787 0.514124 0.5584371 +0.5428591 0.514124 0.5584371 +0.5469733 0.514124 0.5584371 +0.5509339 0.514124 0.5584371 +0.5547519 0.514124 0.5584371 +0.5584371 0.514124 0.5584371 +0.5619986 0.514124 0.5584371 +0.5654443 0.514124 0.5584371 +0.5687816 0.514124 0.5584371 +0.092819 0.519487 0.5584371 +0.2262531 0.519487 0.5584371 +0.2875993 0.519487 0.5584371 +0.3262122 0.519487 0.5584371 +0.3544566 0.519487 0.5584371 +0.3767383 0.519487 0.5584371 +0.3951413 0.519487 0.5584371 +0.4108177 0.519487 0.5584371 +0.4244723 0.519487 0.5584371 +0.4365675 0.519487 0.5584371 +0.4474232 0.519487 0.5584371 +0.45727 0.519487 0.5584371 +0.4662797 0.519487 0.5584371 +0.4745834 0.519487 0.5584371 +0.4822838 0.519487 0.5584371 +0.4894626 0.519487 0.5584371 +0.4961862 0.519487 0.5584371 +0.5025087 0.519487 0.5584371 +0.5084753 0.519487 0.5584371 +0.514124 0.519487 0.5584371 +0.519487 0.519487 0.5584371 +0.5245917 0.519487 0.5584371 +0.529462 0.519487 0.5584371 +0.5341183 0.519487 0.5584371 +0.5385787 0.519487 0.5584371 +0.5428591 0.519487 0.5584371 +0.5469733 0.519487 0.5584371 +0.5509339 0.519487 0.5584371 +0.5547519 0.519487 0.5584371 +0.5584371 0.519487 0.5584371 +0.5619986 0.519487 0.5584371 +0.5654443 0.519487 0.5584371 +0.5687816 0.519487 0.5584371 +0.092819 0.5245917 0.5584371 +0.2262531 0.5245917 0.5584371 +0.2875993 0.5245917 0.5584371 +0.3262122 0.5245917 0.5584371 +0.3544566 0.5245917 0.5584371 +0.3767383 0.5245917 0.5584371 +0.3951413 0.5245917 0.5584371 +0.4108177 0.5245917 0.5584371 +0.4244723 0.5245917 0.5584371 +0.4365675 0.5245917 0.5584371 +0.4474232 0.5245917 0.5584371 +0.45727 0.5245917 0.5584371 +0.4662797 0.5245917 0.5584371 +0.4745834 0.5245917 0.5584371 +0.4822838 0.5245917 0.5584371 +0.4894626 0.5245917 0.5584371 +0.4961862 0.5245917 0.5584371 +0.5025087 0.5245917 0.5584371 +0.5084753 0.5245917 0.5584371 +0.514124 0.5245917 0.5584371 +0.519487 0.5245917 0.5584371 +0.5245917 0.5245917 0.5584371 +0.529462 0.5245917 0.5584371 +0.5341183 0.5245917 0.5584371 +0.5385787 0.5245917 0.5584371 +0.5428591 0.5245917 0.5584371 +0.5469733 0.5245917 0.5584371 +0.5509339 0.5245917 0.5584371 +0.5547519 0.5245917 0.5584371 +0.5584371 0.5245917 0.5584371 +0.5619986 0.5245917 0.5584371 +0.5654443 0.5245917 0.5584371 +0.5687816 0.5245917 0.5584371 +0.092819 0.529462 0.5584371 +0.2262531 0.529462 0.5584371 +0.2875993 0.529462 0.5584371 +0.3262122 0.529462 0.5584371 +0.3544566 0.529462 0.5584371 +0.3767383 0.529462 0.5584371 +0.3951413 0.529462 0.5584371 +0.4108177 0.529462 0.5584371 +0.4244723 0.529462 0.5584371 +0.4365675 0.529462 0.5584371 +0.4474232 0.529462 0.5584371 +0.45727 0.529462 0.5584371 +0.4662797 0.529462 0.5584371 +0.4745834 0.529462 0.5584371 +0.4822838 0.529462 0.5584371 +0.4894626 0.529462 0.5584371 +0.4961862 0.529462 0.5584371 +0.5025087 0.529462 0.5584371 +0.5084753 0.529462 0.5584371 +0.514124 0.529462 0.5584371 +0.519487 0.529462 0.5584371 +0.5245917 0.529462 0.5584371 +0.529462 0.529462 0.5584371 +0.5341183 0.529462 0.5584371 +0.5385787 0.529462 0.5584371 +0.5428591 0.529462 0.5584371 +0.5469733 0.529462 0.5584371 +0.5509339 0.529462 0.5584371 +0.5547519 0.529462 0.5584371 +0.5584371 0.529462 0.5584371 +0.5619986 0.529462 0.5584371 +0.5654443 0.529462 0.5584371 +0.5687816 0.529462 0.5584371 +0.092819 0.5341183 0.5584371 +0.2262531 0.5341183 0.5584371 +0.2875993 0.5341183 0.5584371 +0.3262122 0.5341183 0.5584371 +0.3544566 0.5341183 0.5584371 +0.3767383 0.5341183 0.5584371 +0.3951413 0.5341183 0.5584371 +0.4108177 0.5341183 0.5584371 +0.4244723 0.5341183 0.5584371 +0.4365675 0.5341183 0.5584371 +0.4474232 0.5341183 0.5584371 +0.45727 0.5341183 0.5584371 +0.4662797 0.5341183 0.5584371 +0.4745834 0.5341183 0.5584371 +0.4822838 0.5341183 0.5584371 +0.4894626 0.5341183 0.5584371 +0.4961862 0.5341183 0.5584371 +0.5025087 0.5341183 0.5584371 +0.5084753 0.5341183 0.5584371 +0.514124 0.5341183 0.5584371 +0.519487 0.5341183 0.5584371 +0.5245917 0.5341183 0.5584371 +0.529462 0.5341183 0.5584371 +0.5341183 0.5341183 0.5584371 +0.5385787 0.5341183 0.5584371 +0.5428591 0.5341183 0.5584371 +0.5469733 0.5341183 0.5584371 +0.5509339 0.5341183 0.5584371 +0.5547519 0.5341183 0.5584371 +0.5584371 0.5341183 0.5584371 +0.5619986 0.5341183 0.5584371 +0.5654443 0.5341183 0.5584371 +0.5687816 0.5341183 0.5584371 +0.092819 0.5385787 0.5584371 +0.2262531 0.5385787 0.5584371 +0.2875993 0.5385787 0.5584371 +0.3262122 0.5385787 0.5584371 +0.3544566 0.5385787 0.5584371 +0.3767383 0.5385787 0.5584371 +0.3951413 0.5385787 0.5584371 +0.4108177 0.5385787 0.5584371 +0.4244723 0.5385787 0.5584371 +0.4365675 0.5385787 0.5584371 +0.4474232 0.5385787 0.5584371 +0.45727 0.5385787 0.5584371 +0.4662797 0.5385787 0.5584371 +0.4745834 0.5385787 0.5584371 +0.4822838 0.5385787 0.5584371 +0.4894626 0.5385787 0.5584371 +0.4961862 0.5385787 0.5584371 +0.5025087 0.5385787 0.5584371 +0.5084753 0.5385787 0.5584371 +0.514124 0.5385787 0.5584371 +0.519487 0.5385787 0.5584371 +0.5245917 0.5385787 0.5584371 +0.529462 0.5385787 0.5584371 +0.5341183 0.5385787 0.5584371 +0.5385787 0.5385787 0.5584371 +0.5428591 0.5385787 0.5584371 +0.5469733 0.5385787 0.5584371 +0.5509339 0.5385787 0.5584371 +0.5547519 0.5385787 0.5584371 +0.5584371 0.5385787 0.5584371 +0.5619986 0.5385787 0.5584371 +0.5654443 0.5385787 0.5584371 +0.5687816 0.5385787 0.5584371 +0.092819 0.5428591 0.5584371 +0.2262531 0.5428591 0.5584371 +0.2875993 0.5428591 0.5584371 +0.3262122 0.5428591 0.5584371 +0.3544566 0.5428591 0.5584371 +0.3767383 0.5428591 0.5584371 +0.3951413 0.5428591 0.5584371 +0.4108177 0.5428591 0.5584371 +0.4244723 0.5428591 0.5584371 +0.4365675 0.5428591 0.5584371 +0.4474232 0.5428591 0.5584371 +0.45727 0.5428591 0.5584371 +0.4662797 0.5428591 0.5584371 +0.4745834 0.5428591 0.5584371 +0.4822838 0.5428591 0.5584371 +0.4894626 0.5428591 0.5584371 +0.4961862 0.5428591 0.5584371 +0.5025087 0.5428591 0.5584371 +0.5084753 0.5428591 0.5584371 +0.514124 0.5428591 0.5584371 +0.519487 0.5428591 0.5584371 +0.5245917 0.5428591 0.5584371 +0.529462 0.5428591 0.5584371 +0.5341183 0.5428591 0.5584371 +0.5385787 0.5428591 0.5584371 +0.5428591 0.5428591 0.5584371 +0.5469733 0.5428591 0.5584371 +0.5509339 0.5428591 0.5584371 +0.5547519 0.5428591 0.5584371 +0.5584371 0.5428591 0.5584371 +0.5619986 0.5428591 0.5584371 +0.5654443 0.5428591 0.5584371 +0.5687816 0.5428591 0.5584371 +0.092819 0.5469733 0.5584371 +0.2262531 0.5469733 0.5584371 +0.2875993 0.5469733 0.5584371 +0.3262122 0.5469733 0.5584371 +0.3544566 0.5469733 0.5584371 +0.3767383 0.5469733 0.5584371 +0.3951413 0.5469733 0.5584371 +0.4108177 0.5469733 0.5584371 +0.4244723 0.5469733 0.5584371 +0.4365675 0.5469733 0.5584371 +0.4474232 0.5469733 0.5584371 +0.45727 0.5469733 0.5584371 +0.4662797 0.5469733 0.5584371 +0.4745834 0.5469733 0.5584371 +0.4822838 0.5469733 0.5584371 +0.4894626 0.5469733 0.5584371 +0.4961862 0.5469733 0.5584371 +0.5025087 0.5469733 0.5584371 +0.5084753 0.5469733 0.5584371 +0.514124 0.5469733 0.5584371 +0.519487 0.5469733 0.5584371 +0.5245917 0.5469733 0.5584371 +0.529462 0.5469733 0.5584371 +0.5341183 0.5469733 0.5584371 +0.5385787 0.5469733 0.5584371 +0.5428591 0.5469733 0.5584371 +0.5469733 0.5469733 0.5584371 +0.5509339 0.5469733 0.5584371 +0.5547519 0.5469733 0.5584371 +0.5584371 0.5469733 0.5584371 +0.5619986 0.5469733 0.5584371 +0.5654443 0.5469733 0.5584371 +0.5687816 0.5469733 0.5584371 +0.092819 0.5509339 0.5584371 +0.2262531 0.5509339 0.5584371 +0.2875993 0.5509339 0.5584371 +0.3262122 0.5509339 0.5584371 +0.3544566 0.5509339 0.5584371 +0.3767383 0.5509339 0.5584371 +0.3951413 0.5509339 0.5584371 +0.4108177 0.5509339 0.5584371 +0.4244723 0.5509339 0.5584371 +0.4365675 0.5509339 0.5584371 +0.4474232 0.5509339 0.5584371 +0.45727 0.5509339 0.5584371 +0.4662797 0.5509339 0.5584371 +0.4745834 0.5509339 0.5584371 +0.4822838 0.5509339 0.5584371 +0.4894626 0.5509339 0.5584371 +0.4961862 0.5509339 0.5584371 +0.5025087 0.5509339 0.5584371 +0.5084753 0.5509339 0.5584371 +0.514124 0.5509339 0.5584371 +0.519487 0.5509339 0.5584371 +0.5245917 0.5509339 0.5584371 +0.529462 0.5509339 0.5584371 +0.5341183 0.5509339 0.5584371 +0.5385787 0.5509339 0.5584371 +0.5428591 0.5509339 0.5584371 +0.5469733 0.5509339 0.5584371 +0.5509339 0.5509339 0.5584371 +0.5547519 0.5509339 0.5584371 +0.5584371 0.5509339 0.5584371 +0.5619986 0.5509339 0.5584371 +0.5654443 0.5509339 0.5584371 +0.5687816 0.5509339 0.5584371 +0.092819 0.5547519 0.5584371 +0.2262531 0.5547519 0.5584371 +0.2875993 0.5547519 0.5584371 +0.3262122 0.5547519 0.5584371 +0.3544566 0.5547519 0.5584371 +0.3767383 0.5547519 0.5584371 +0.3951413 0.5547519 0.5584371 +0.4108177 0.5547519 0.5584371 +0.4244723 0.5547519 0.5584371 +0.4365675 0.5547519 0.5584371 +0.4474232 0.5547519 0.5584371 +0.45727 0.5547519 0.5584371 +0.4662797 0.5547519 0.5584371 +0.4745834 0.5547519 0.5584371 +0.4822838 0.5547519 0.5584371 +0.4894626 0.5547519 0.5584371 +0.4961862 0.5547519 0.5584371 +0.5025087 0.5547519 0.5584371 +0.5084753 0.5547519 0.5584371 +0.514124 0.5547519 0.5584371 +0.519487 0.5547519 0.5584371 +0.5245917 0.5547519 0.5584371 +0.529462 0.5547519 0.5584371 +0.5341183 0.5547519 0.5584371 +0.5385787 0.5547519 0.5584371 +0.5428591 0.5547519 0.5584371 +0.5469733 0.5547519 0.5584371 +0.5509339 0.5547519 0.5584371 +0.5547519 0.5547519 0.5584371 +0.5584371 0.5547519 0.5584371 +0.5619986 0.5547519 0.5584371 +0.5654443 0.5547519 0.5584371 +0.5687816 0.5547519 0.5584371 +0.092819 0.5584371 0.5584371 +0.2262531 0.5584371 0.5584371 +0.2875993 0.5584371 0.5584371 +0.3262122 0.5584371 0.5584371 +0.3544566 0.5584371 0.5584371 +0.3767383 0.5584371 0.5584371 +0.3951413 0.5584371 0.5584371 +0.4108177 0.5584371 0.5584371 +0.4244723 0.5584371 0.5584371 +0.4365675 0.5584371 0.5584371 +0.4474232 0.5584371 0.5584371 +0.45727 0.5584371 0.5584371 +0.4662797 0.5584371 0.5584371 +0.4745834 0.5584371 0.5584371 +0.4822838 0.5584371 0.5584371 +0.4894626 0.5584371 0.5584371 +0.4961862 0.5584371 0.5584371 +0.5025087 0.5584371 0.5584371 +0.5084753 0.5584371 0.5584371 +0.514124 0.5584371 0.5584371 +0.519487 0.5584371 0.5584371 +0.5245917 0.5584371 0.5584371 +0.529462 0.5584371 0.5584371 +0.5341183 0.5584371 0.5584371 +0.5385787 0.5584371 0.5584371 +0.5428591 0.5584371 0.5584371 +0.5469733 0.5584371 0.5584371 +0.5509339 0.5584371 0.5584371 +0.5547519 0.5584371 0.5584371 +0.5584371 0.5584371 0.5584371 +0.5619986 0.5584371 0.5584371 +0.5654443 0.5584371 0.5584371 +0.5687816 0.5584371 0.5584371 +0.092819 0.5619986 0.5584371 +0.2262531 0.5619986 0.5584371 +0.2875993 0.5619986 0.5584371 +0.3262122 0.5619986 0.5584371 +0.3544566 0.5619986 0.5584371 +0.3767383 0.5619986 0.5584371 +0.3951413 0.5619986 0.5584371 +0.4108177 0.5619986 0.5584371 +0.4244723 0.5619986 0.5584371 +0.4365675 0.5619986 0.5584371 +0.4474232 0.5619986 0.5584371 +0.45727 0.5619986 0.5584371 +0.4662797 0.5619986 0.5584371 +0.4745834 0.5619986 0.5584371 +0.4822838 0.5619986 0.5584371 +0.4894626 0.5619986 0.5584371 +0.4961862 0.5619986 0.5584371 +0.5025087 0.5619986 0.5584371 +0.5084753 0.5619986 0.5584371 +0.514124 0.5619986 0.5584371 +0.519487 0.5619986 0.5584371 +0.5245917 0.5619986 0.5584371 +0.529462 0.5619986 0.5584371 +0.5341183 0.5619986 0.5584371 +0.5385787 0.5619986 0.5584371 +0.5428591 0.5619986 0.5584371 +0.5469733 0.5619986 0.5584371 +0.5509339 0.5619986 0.5584371 +0.5547519 0.5619986 0.5584371 +0.5584371 0.5619986 0.5584371 +0.5619986 0.5619986 0.5584371 +0.5654443 0.5619986 0.5584371 +0.5687816 0.5619986 0.5584371 +0.092819 0.5654443 0.5584371 +0.2262531 0.5654443 0.5584371 +0.2875993 0.5654443 0.5584371 +0.3262122 0.5654443 0.5584371 +0.3544566 0.5654443 0.5584371 +0.3767383 0.5654443 0.5584371 +0.3951413 0.5654443 0.5584371 +0.4108177 0.5654443 0.5584371 +0.4244723 0.5654443 0.5584371 +0.4365675 0.5654443 0.5584371 +0.4474232 0.5654443 0.5584371 +0.45727 0.5654443 0.5584371 +0.4662797 0.5654443 0.5584371 +0.4745834 0.5654443 0.5584371 +0.4822838 0.5654443 0.5584371 +0.4894626 0.5654443 0.5584371 +0.4961862 0.5654443 0.5584371 +0.5025087 0.5654443 0.5584371 +0.5084753 0.5654443 0.5584371 +0.514124 0.5654443 0.5584371 +0.519487 0.5654443 0.5584371 +0.5245917 0.5654443 0.5584371 +0.529462 0.5654443 0.5584371 +0.5341183 0.5654443 0.5584371 +0.5385787 0.5654443 0.5584371 +0.5428591 0.5654443 0.5584371 +0.5469733 0.5654443 0.5584371 +0.5509339 0.5654443 0.5584371 +0.5547519 0.5654443 0.5584371 +0.5584371 0.5654443 0.5584371 +0.5619986 0.5654443 0.5584371 +0.5654443 0.5654443 0.5584371 +0.5687816 0.5654443 0.5584371 +0.092819 0.5687816 0.5584371 +0.2262531 0.5687816 0.5584371 +0.2875993 0.5687816 0.5584371 +0.3262122 0.5687816 0.5584371 +0.3544566 0.5687816 0.5584371 +0.3767383 0.5687816 0.5584371 +0.3951413 0.5687816 0.5584371 +0.4108177 0.5687816 0.5584371 +0.4244723 0.5687816 0.5584371 +0.4365675 0.5687816 0.5584371 +0.4474232 0.5687816 0.5584371 +0.45727 0.5687816 0.5584371 +0.4662797 0.5687816 0.5584371 +0.4745834 0.5687816 0.5584371 +0.4822838 0.5687816 0.5584371 +0.4894626 0.5687816 0.5584371 +0.4961862 0.5687816 0.5584371 +0.5025087 0.5687816 0.5584371 +0.5084753 0.5687816 0.5584371 +0.514124 0.5687816 0.5584371 +0.519487 0.5687816 0.5584371 +0.5245917 0.5687816 0.5584371 +0.529462 0.5687816 0.5584371 +0.5341183 0.5687816 0.5584371 +0.5385787 0.5687816 0.5584371 +0.5428591 0.5687816 0.5584371 +0.5469733 0.5687816 0.5584371 +0.5509339 0.5687816 0.5584371 +0.5547519 0.5687816 0.5584371 +0.5584371 0.5687816 0.5584371 +0.5619986 0.5687816 0.5584371 +0.5654443 0.5687816 0.5584371 +0.5687816 0.5687816 0.5584371 +0.092819 0.092819 0.5619986 +0.2262531 0.092819 0.5619986 +0.2875993 0.092819 0.5619986 +0.3262122 0.092819 0.5619986 +0.3544566 0.092819 0.5619986 +0.3767383 0.092819 0.5619986 +0.3951413 0.092819 0.5619986 +0.4108177 0.092819 0.5619986 +0.4244723 0.092819 0.5619986 +0.4365675 0.092819 0.5619986 +0.4474232 0.092819 0.5619986 +0.45727 0.092819 0.5619986 +0.4662797 0.092819 0.5619986 +0.4745834 0.092819 0.5619986 +0.4822838 0.092819 0.5619986 +0.4894626 0.092819 0.5619986 +0.4961862 0.092819 0.5619986 +0.5025087 0.092819 0.5619986 +0.5084753 0.092819 0.5619986 +0.514124 0.092819 0.5619986 +0.519487 0.092819 0.5619986 +0.5245917 0.092819 0.5619986 +0.529462 0.092819 0.5619986 +0.5341183 0.092819 0.5619986 +0.5385787 0.092819 0.5619986 +0.5428591 0.092819 0.5619986 +0.5469733 0.092819 0.5619986 +0.5509339 0.092819 0.5619986 +0.5547519 0.092819 0.5619986 +0.5584371 0.092819 0.5619986 +0.5619986 0.092819 0.5619986 +0.5654443 0.092819 0.5619986 +0.5687816 0.092819 0.5619986 +0.092819 0.2262531 0.5619986 +0.2262531 0.2262531 0.5619986 +0.2875993 0.2262531 0.5619986 +0.3262122 0.2262531 0.5619986 +0.3544566 0.2262531 0.5619986 +0.3767383 0.2262531 0.5619986 +0.3951413 0.2262531 0.5619986 +0.4108177 0.2262531 0.5619986 +0.4244723 0.2262531 0.5619986 +0.4365675 0.2262531 0.5619986 +0.4474232 0.2262531 0.5619986 +0.45727 0.2262531 0.5619986 +0.4662797 0.2262531 0.5619986 +0.4745834 0.2262531 0.5619986 +0.4822838 0.2262531 0.5619986 +0.4894626 0.2262531 0.5619986 +0.4961862 0.2262531 0.5619986 +0.5025087 0.2262531 0.5619986 +0.5084753 0.2262531 0.5619986 +0.514124 0.2262531 0.5619986 +0.519487 0.2262531 0.5619986 +0.5245917 0.2262531 0.5619986 +0.529462 0.2262531 0.5619986 +0.5341183 0.2262531 0.5619986 +0.5385787 0.2262531 0.5619986 +0.5428591 0.2262531 0.5619986 +0.5469733 0.2262531 0.5619986 +0.5509339 0.2262531 0.5619986 +0.5547519 0.2262531 0.5619986 +0.5584371 0.2262531 0.5619986 +0.5619986 0.2262531 0.5619986 +0.5654443 0.2262531 0.5619986 +0.5687816 0.2262531 0.5619986 +0.092819 0.2875993 0.5619986 +0.2262531 0.2875993 0.5619986 +0.2875993 0.2875993 0.5619986 +0.3262122 0.2875993 0.5619986 +0.3544566 0.2875993 0.5619986 +0.3767383 0.2875993 0.5619986 +0.3951413 0.2875993 0.5619986 +0.4108177 0.2875993 0.5619986 +0.4244723 0.2875993 0.5619986 +0.4365675 0.2875993 0.5619986 +0.4474232 0.2875993 0.5619986 +0.45727 0.2875993 0.5619986 +0.4662797 0.2875993 0.5619986 +0.4745834 0.2875993 0.5619986 +0.4822838 0.2875993 0.5619986 +0.4894626 0.2875993 0.5619986 +0.4961862 0.2875993 0.5619986 +0.5025087 0.2875993 0.5619986 +0.5084753 0.2875993 0.5619986 +0.514124 0.2875993 0.5619986 +0.519487 0.2875993 0.5619986 +0.5245917 0.2875993 0.5619986 +0.529462 0.2875993 0.5619986 +0.5341183 0.2875993 0.5619986 +0.5385787 0.2875993 0.5619986 +0.5428591 0.2875993 0.5619986 +0.5469733 0.2875993 0.5619986 +0.5509339 0.2875993 0.5619986 +0.5547519 0.2875993 0.5619986 +0.5584371 0.2875993 0.5619986 +0.5619986 0.2875993 0.5619986 +0.5654443 0.2875993 0.5619986 +0.5687816 0.2875993 0.5619986 +0.092819 0.3262122 0.5619986 +0.2262531 0.3262122 0.5619986 +0.2875993 0.3262122 0.5619986 +0.3262122 0.3262122 0.5619986 +0.3544566 0.3262122 0.5619986 +0.3767383 0.3262122 0.5619986 +0.3951413 0.3262122 0.5619986 +0.4108177 0.3262122 0.5619986 +0.4244723 0.3262122 0.5619986 +0.4365675 0.3262122 0.5619986 +0.4474232 0.3262122 0.5619986 +0.45727 0.3262122 0.5619986 +0.4662797 0.3262122 0.5619986 +0.4745834 0.3262122 0.5619986 +0.4822838 0.3262122 0.5619986 +0.4894626 0.3262122 0.5619986 +0.4961862 0.3262122 0.5619986 +0.5025087 0.3262122 0.5619986 +0.5084753 0.3262122 0.5619986 +0.514124 0.3262122 0.5619986 +0.519487 0.3262122 0.5619986 +0.5245917 0.3262122 0.5619986 +0.529462 0.3262122 0.5619986 +0.5341183 0.3262122 0.5619986 +0.5385787 0.3262122 0.5619986 +0.5428591 0.3262122 0.5619986 +0.5469733 0.3262122 0.5619986 +0.5509339 0.3262122 0.5619986 +0.5547519 0.3262122 0.5619986 +0.5584371 0.3262122 0.5619986 +0.5619986 0.3262122 0.5619986 +0.5654443 0.3262122 0.5619986 +0.5687816 0.3262122 0.5619986 +0.092819 0.3544566 0.5619986 +0.2262531 0.3544566 0.5619986 +0.2875993 0.3544566 0.5619986 +0.3262122 0.3544566 0.5619986 +0.3544566 0.3544566 0.5619986 +0.3767383 0.3544566 0.5619986 +0.3951413 0.3544566 0.5619986 +0.4108177 0.3544566 0.5619986 +0.4244723 0.3544566 0.5619986 +0.4365675 0.3544566 0.5619986 +0.4474232 0.3544566 0.5619986 +0.45727 0.3544566 0.5619986 +0.4662797 0.3544566 0.5619986 +0.4745834 0.3544566 0.5619986 +0.4822838 0.3544566 0.5619986 +0.4894626 0.3544566 0.5619986 +0.4961862 0.3544566 0.5619986 +0.5025087 0.3544566 0.5619986 +0.5084753 0.3544566 0.5619986 +0.514124 0.3544566 0.5619986 +0.519487 0.3544566 0.5619986 +0.5245917 0.3544566 0.5619986 +0.529462 0.3544566 0.5619986 +0.5341183 0.3544566 0.5619986 +0.5385787 0.3544566 0.5619986 +0.5428591 0.3544566 0.5619986 +0.5469733 0.3544566 0.5619986 +0.5509339 0.3544566 0.5619986 +0.5547519 0.3544566 0.5619986 +0.5584371 0.3544566 0.5619986 +0.5619986 0.3544566 0.5619986 +0.5654443 0.3544566 0.5619986 +0.5687816 0.3544566 0.5619986 +0.092819 0.3767383 0.5619986 +0.2262531 0.3767383 0.5619986 +0.2875993 0.3767383 0.5619986 +0.3262122 0.3767383 0.5619986 +0.3544566 0.3767383 0.5619986 +0.3767383 0.3767383 0.5619986 +0.3951413 0.3767383 0.5619986 +0.4108177 0.3767383 0.5619986 +0.4244723 0.3767383 0.5619986 +0.4365675 0.3767383 0.5619986 +0.4474232 0.3767383 0.5619986 +0.45727 0.3767383 0.5619986 +0.4662797 0.3767383 0.5619986 +0.4745834 0.3767383 0.5619986 +0.4822838 0.3767383 0.5619986 +0.4894626 0.3767383 0.5619986 +0.4961862 0.3767383 0.5619986 +0.5025087 0.3767383 0.5619986 +0.5084753 0.3767383 0.5619986 +0.514124 0.3767383 0.5619986 +0.519487 0.3767383 0.5619986 +0.5245917 0.3767383 0.5619986 +0.529462 0.3767383 0.5619986 +0.5341183 0.3767383 0.5619986 +0.5385787 0.3767383 0.5619986 +0.5428591 0.3767383 0.5619986 +0.5469733 0.3767383 0.5619986 +0.5509339 0.3767383 0.5619986 +0.5547519 0.3767383 0.5619986 +0.5584371 0.3767383 0.5619986 +0.5619986 0.3767383 0.5619986 +0.5654443 0.3767383 0.5619986 +0.5687816 0.3767383 0.5619986 +0.092819 0.3951413 0.5619986 +0.2262531 0.3951413 0.5619986 +0.2875993 0.3951413 0.5619986 +0.3262122 0.3951413 0.5619986 +0.3544566 0.3951413 0.5619986 +0.3767383 0.3951413 0.5619986 +0.3951413 0.3951413 0.5619986 +0.4108177 0.3951413 0.5619986 +0.4244723 0.3951413 0.5619986 +0.4365675 0.3951413 0.5619986 +0.4474232 0.3951413 0.5619986 +0.45727 0.3951413 0.5619986 +0.4662797 0.3951413 0.5619986 +0.4745834 0.3951413 0.5619986 +0.4822838 0.3951413 0.5619986 +0.4894626 0.3951413 0.5619986 +0.4961862 0.3951413 0.5619986 +0.5025087 0.3951413 0.5619986 +0.5084753 0.3951413 0.5619986 +0.514124 0.3951413 0.5619986 +0.519487 0.3951413 0.5619986 +0.5245917 0.3951413 0.5619986 +0.529462 0.3951413 0.5619986 +0.5341183 0.3951413 0.5619986 +0.5385787 0.3951413 0.5619986 +0.5428591 0.3951413 0.5619986 +0.5469733 0.3951413 0.5619986 +0.5509339 0.3951413 0.5619986 +0.5547519 0.3951413 0.5619986 +0.5584371 0.3951413 0.5619986 +0.5619986 0.3951413 0.5619986 +0.5654443 0.3951413 0.5619986 +0.5687816 0.3951413 0.5619986 +0.092819 0.4108177 0.5619986 +0.2262531 0.4108177 0.5619986 +0.2875993 0.4108177 0.5619986 +0.3262122 0.4108177 0.5619986 +0.3544566 0.4108177 0.5619986 +0.3767383 0.4108177 0.5619986 +0.3951413 0.4108177 0.5619986 +0.4108177 0.4108177 0.5619986 +0.4244723 0.4108177 0.5619986 +0.4365675 0.4108177 0.5619986 +0.4474232 0.4108177 0.5619986 +0.45727 0.4108177 0.5619986 +0.4662797 0.4108177 0.5619986 +0.4745834 0.4108177 0.5619986 +0.4822838 0.4108177 0.5619986 +0.4894626 0.4108177 0.5619986 +0.4961862 0.4108177 0.5619986 +0.5025087 0.4108177 0.5619986 +0.5084753 0.4108177 0.5619986 +0.514124 0.4108177 0.5619986 +0.519487 0.4108177 0.5619986 +0.5245917 0.4108177 0.5619986 +0.529462 0.4108177 0.5619986 +0.5341183 0.4108177 0.5619986 +0.5385787 0.4108177 0.5619986 +0.5428591 0.4108177 0.5619986 +0.5469733 0.4108177 0.5619986 +0.5509339 0.4108177 0.5619986 +0.5547519 0.4108177 0.5619986 +0.5584371 0.4108177 0.5619986 +0.5619986 0.4108177 0.5619986 +0.5654443 0.4108177 0.5619986 +0.5687816 0.4108177 0.5619986 +0.092819 0.4244723 0.5619986 +0.2262531 0.4244723 0.5619986 +0.2875993 0.4244723 0.5619986 +0.3262122 0.4244723 0.5619986 +0.3544566 0.4244723 0.5619986 +0.3767383 0.4244723 0.5619986 +0.3951413 0.4244723 0.5619986 +0.4108177 0.4244723 0.5619986 +0.4244723 0.4244723 0.5619986 +0.4365675 0.4244723 0.5619986 +0.4474232 0.4244723 0.5619986 +0.45727 0.4244723 0.5619986 +0.4662797 0.4244723 0.5619986 +0.4745834 0.4244723 0.5619986 +0.4822838 0.4244723 0.5619986 +0.4894626 0.4244723 0.5619986 +0.4961862 0.4244723 0.5619986 +0.5025087 0.4244723 0.5619986 +0.5084753 0.4244723 0.5619986 +0.514124 0.4244723 0.5619986 +0.519487 0.4244723 0.5619986 +0.5245917 0.4244723 0.5619986 +0.529462 0.4244723 0.5619986 +0.5341183 0.4244723 0.5619986 +0.5385787 0.4244723 0.5619986 +0.5428591 0.4244723 0.5619986 +0.5469733 0.4244723 0.5619986 +0.5509339 0.4244723 0.5619986 +0.5547519 0.4244723 0.5619986 +0.5584371 0.4244723 0.5619986 +0.5619986 0.4244723 0.5619986 +0.5654443 0.4244723 0.5619986 +0.5687816 0.4244723 0.5619986 +0.092819 0.4365675 0.5619986 +0.2262531 0.4365675 0.5619986 +0.2875993 0.4365675 0.5619986 +0.3262122 0.4365675 0.5619986 +0.3544566 0.4365675 0.5619986 +0.3767383 0.4365675 0.5619986 +0.3951413 0.4365675 0.5619986 +0.4108177 0.4365675 0.5619986 +0.4244723 0.4365675 0.5619986 +0.4365675 0.4365675 0.5619986 +0.4474232 0.4365675 0.5619986 +0.45727 0.4365675 0.5619986 +0.4662797 0.4365675 0.5619986 +0.4745834 0.4365675 0.5619986 +0.4822838 0.4365675 0.5619986 +0.4894626 0.4365675 0.5619986 +0.4961862 0.4365675 0.5619986 +0.5025087 0.4365675 0.5619986 +0.5084753 0.4365675 0.5619986 +0.514124 0.4365675 0.5619986 +0.519487 0.4365675 0.5619986 +0.5245917 0.4365675 0.5619986 +0.529462 0.4365675 0.5619986 +0.5341183 0.4365675 0.5619986 +0.5385787 0.4365675 0.5619986 +0.5428591 0.4365675 0.5619986 +0.5469733 0.4365675 0.5619986 +0.5509339 0.4365675 0.5619986 +0.5547519 0.4365675 0.5619986 +0.5584371 0.4365675 0.5619986 +0.5619986 0.4365675 0.5619986 +0.5654443 0.4365675 0.5619986 +0.5687816 0.4365675 0.5619986 +0.092819 0.4474232 0.5619986 +0.2262531 0.4474232 0.5619986 +0.2875993 0.4474232 0.5619986 +0.3262122 0.4474232 0.5619986 +0.3544566 0.4474232 0.5619986 +0.3767383 0.4474232 0.5619986 +0.3951413 0.4474232 0.5619986 +0.4108177 0.4474232 0.5619986 +0.4244723 0.4474232 0.5619986 +0.4365675 0.4474232 0.5619986 +0.4474232 0.4474232 0.5619986 +0.45727 0.4474232 0.5619986 +0.4662797 0.4474232 0.5619986 +0.4745834 0.4474232 0.5619986 +0.4822838 0.4474232 0.5619986 +0.4894626 0.4474232 0.5619986 +0.4961862 0.4474232 0.5619986 +0.5025087 0.4474232 0.5619986 +0.5084753 0.4474232 0.5619986 +0.514124 0.4474232 0.5619986 +0.519487 0.4474232 0.5619986 +0.5245917 0.4474232 0.5619986 +0.529462 0.4474232 0.5619986 +0.5341183 0.4474232 0.5619986 +0.5385787 0.4474232 0.5619986 +0.5428591 0.4474232 0.5619986 +0.5469733 0.4474232 0.5619986 +0.5509339 0.4474232 0.5619986 +0.5547519 0.4474232 0.5619986 +0.5584371 0.4474232 0.5619986 +0.5619986 0.4474232 0.5619986 +0.5654443 0.4474232 0.5619986 +0.5687816 0.4474232 0.5619986 +0.092819 0.45727 0.5619986 +0.2262531 0.45727 0.5619986 +0.2875993 0.45727 0.5619986 +0.3262122 0.45727 0.5619986 +0.3544566 0.45727 0.5619986 +0.3767383 0.45727 0.5619986 +0.3951413 0.45727 0.5619986 +0.4108177 0.45727 0.5619986 +0.4244723 0.45727 0.5619986 +0.4365675 0.45727 0.5619986 +0.4474232 0.45727 0.5619986 +0.45727 0.45727 0.5619986 +0.4662797 0.45727 0.5619986 +0.4745834 0.45727 0.5619986 +0.4822838 0.45727 0.5619986 +0.4894626 0.45727 0.5619986 +0.4961862 0.45727 0.5619986 +0.5025087 0.45727 0.5619986 +0.5084753 0.45727 0.5619986 +0.514124 0.45727 0.5619986 +0.519487 0.45727 0.5619986 +0.5245917 0.45727 0.5619986 +0.529462 0.45727 0.5619986 +0.5341183 0.45727 0.5619986 +0.5385787 0.45727 0.5619986 +0.5428591 0.45727 0.5619986 +0.5469733 0.45727 0.5619986 +0.5509339 0.45727 0.5619986 +0.5547519 0.45727 0.5619986 +0.5584371 0.45727 0.5619986 +0.5619986 0.45727 0.5619986 +0.5654443 0.45727 0.5619986 +0.5687816 0.45727 0.5619986 +0.092819 0.4662797 0.5619986 +0.2262531 0.4662797 0.5619986 +0.2875993 0.4662797 0.5619986 +0.3262122 0.4662797 0.5619986 +0.3544566 0.4662797 0.5619986 +0.3767383 0.4662797 0.5619986 +0.3951413 0.4662797 0.5619986 +0.4108177 0.4662797 0.5619986 +0.4244723 0.4662797 0.5619986 +0.4365675 0.4662797 0.5619986 +0.4474232 0.4662797 0.5619986 +0.45727 0.4662797 0.5619986 +0.4662797 0.4662797 0.5619986 +0.4745834 0.4662797 0.5619986 +0.4822838 0.4662797 0.5619986 +0.4894626 0.4662797 0.5619986 +0.4961862 0.4662797 0.5619986 +0.5025087 0.4662797 0.5619986 +0.5084753 0.4662797 0.5619986 +0.514124 0.4662797 0.5619986 +0.519487 0.4662797 0.5619986 +0.5245917 0.4662797 0.5619986 +0.529462 0.4662797 0.5619986 +0.5341183 0.4662797 0.5619986 +0.5385787 0.4662797 0.5619986 +0.5428591 0.4662797 0.5619986 +0.5469733 0.4662797 0.5619986 +0.5509339 0.4662797 0.5619986 +0.5547519 0.4662797 0.5619986 +0.5584371 0.4662797 0.5619986 +0.5619986 0.4662797 0.5619986 +0.5654443 0.4662797 0.5619986 +0.5687816 0.4662797 0.5619986 +0.092819 0.4745834 0.5619986 +0.2262531 0.4745834 0.5619986 +0.2875993 0.4745834 0.5619986 +0.3262122 0.4745834 0.5619986 +0.3544566 0.4745834 0.5619986 +0.3767383 0.4745834 0.5619986 +0.3951413 0.4745834 0.5619986 +0.4108177 0.4745834 0.5619986 +0.4244723 0.4745834 0.5619986 +0.4365675 0.4745834 0.5619986 +0.4474232 0.4745834 0.5619986 +0.45727 0.4745834 0.5619986 +0.4662797 0.4745834 0.5619986 +0.4745834 0.4745834 0.5619986 +0.4822838 0.4745834 0.5619986 +0.4894626 0.4745834 0.5619986 +0.4961862 0.4745834 0.5619986 +0.5025087 0.4745834 0.5619986 +0.5084753 0.4745834 0.5619986 +0.514124 0.4745834 0.5619986 +0.519487 0.4745834 0.5619986 +0.5245917 0.4745834 0.5619986 +0.529462 0.4745834 0.5619986 +0.5341183 0.4745834 0.5619986 +0.5385787 0.4745834 0.5619986 +0.5428591 0.4745834 0.5619986 +0.5469733 0.4745834 0.5619986 +0.5509339 0.4745834 0.5619986 +0.5547519 0.4745834 0.5619986 +0.5584371 0.4745834 0.5619986 +0.5619986 0.4745834 0.5619986 +0.5654443 0.4745834 0.5619986 +0.5687816 0.4745834 0.5619986 +0.092819 0.4822838 0.5619986 +0.2262531 0.4822838 0.5619986 +0.2875993 0.4822838 0.5619986 +0.3262122 0.4822838 0.5619986 +0.3544566 0.4822838 0.5619986 +0.3767383 0.4822838 0.5619986 +0.3951413 0.4822838 0.5619986 +0.4108177 0.4822838 0.5619986 +0.4244723 0.4822838 0.5619986 +0.4365675 0.4822838 0.5619986 +0.4474232 0.4822838 0.5619986 +0.45727 0.4822838 0.5619986 +0.4662797 0.4822838 0.5619986 +0.4745834 0.4822838 0.5619986 +0.4822838 0.4822838 0.5619986 +0.4894626 0.4822838 0.5619986 +0.4961862 0.4822838 0.5619986 +0.5025087 0.4822838 0.5619986 +0.5084753 0.4822838 0.5619986 +0.514124 0.4822838 0.5619986 +0.519487 0.4822838 0.5619986 +0.5245917 0.4822838 0.5619986 +0.529462 0.4822838 0.5619986 +0.5341183 0.4822838 0.5619986 +0.5385787 0.4822838 0.5619986 +0.5428591 0.4822838 0.5619986 +0.5469733 0.4822838 0.5619986 +0.5509339 0.4822838 0.5619986 +0.5547519 0.4822838 0.5619986 +0.5584371 0.4822838 0.5619986 +0.5619986 0.4822838 0.5619986 +0.5654443 0.4822838 0.5619986 +0.5687816 0.4822838 0.5619986 +0.092819 0.4894626 0.5619986 +0.2262531 0.4894626 0.5619986 +0.2875993 0.4894626 0.5619986 +0.3262122 0.4894626 0.5619986 +0.3544566 0.4894626 0.5619986 +0.3767383 0.4894626 0.5619986 +0.3951413 0.4894626 0.5619986 +0.4108177 0.4894626 0.5619986 +0.4244723 0.4894626 0.5619986 +0.4365675 0.4894626 0.5619986 +0.4474232 0.4894626 0.5619986 +0.45727 0.4894626 0.5619986 +0.4662797 0.4894626 0.5619986 +0.4745834 0.4894626 0.5619986 +0.4822838 0.4894626 0.5619986 +0.4894626 0.4894626 0.5619986 +0.4961862 0.4894626 0.5619986 +0.5025087 0.4894626 0.5619986 +0.5084753 0.4894626 0.5619986 +0.514124 0.4894626 0.5619986 +0.519487 0.4894626 0.5619986 +0.5245917 0.4894626 0.5619986 +0.529462 0.4894626 0.5619986 +0.5341183 0.4894626 0.5619986 +0.5385787 0.4894626 0.5619986 +0.5428591 0.4894626 0.5619986 +0.5469733 0.4894626 0.5619986 +0.5509339 0.4894626 0.5619986 +0.5547519 0.4894626 0.5619986 +0.5584371 0.4894626 0.5619986 +0.5619986 0.4894626 0.5619986 +0.5654443 0.4894626 0.5619986 +0.5687816 0.4894626 0.5619986 +0.092819 0.4961862 0.5619986 +0.2262531 0.4961862 0.5619986 +0.2875993 0.4961862 0.5619986 +0.3262122 0.4961862 0.5619986 +0.3544566 0.4961862 0.5619986 +0.3767383 0.4961862 0.5619986 +0.3951413 0.4961862 0.5619986 +0.4108177 0.4961862 0.5619986 +0.4244723 0.4961862 0.5619986 +0.4365675 0.4961862 0.5619986 +0.4474232 0.4961862 0.5619986 +0.45727 0.4961862 0.5619986 +0.4662797 0.4961862 0.5619986 +0.4745834 0.4961862 0.5619986 +0.4822838 0.4961862 0.5619986 +0.4894626 0.4961862 0.5619986 +0.4961862 0.4961862 0.5619986 +0.5025087 0.4961862 0.5619986 +0.5084753 0.4961862 0.5619986 +0.514124 0.4961862 0.5619986 +0.519487 0.4961862 0.5619986 +0.5245917 0.4961862 0.5619986 +0.529462 0.4961862 0.5619986 +0.5341183 0.4961862 0.5619986 +0.5385787 0.4961862 0.5619986 +0.5428591 0.4961862 0.5619986 +0.5469733 0.4961862 0.5619986 +0.5509339 0.4961862 0.5619986 +0.5547519 0.4961862 0.5619986 +0.5584371 0.4961862 0.5619986 +0.5619986 0.4961862 0.5619986 +0.5654443 0.4961862 0.5619986 +0.5687816 0.4961862 0.5619986 +0.092819 0.5025087 0.5619986 +0.2262531 0.5025087 0.5619986 +0.2875993 0.5025087 0.5619986 +0.3262122 0.5025087 0.5619986 +0.3544566 0.5025087 0.5619986 +0.3767383 0.5025087 0.5619986 +0.3951413 0.5025087 0.5619986 +0.4108177 0.5025087 0.5619986 +0.4244723 0.5025087 0.5619986 +0.4365675 0.5025087 0.5619986 +0.4474232 0.5025087 0.5619986 +0.45727 0.5025087 0.5619986 +0.4662797 0.5025087 0.5619986 +0.4745834 0.5025087 0.5619986 +0.4822838 0.5025087 0.5619986 +0.4894626 0.5025087 0.5619986 +0.4961862 0.5025087 0.5619986 +0.5025087 0.5025087 0.5619986 +0.5084753 0.5025087 0.5619986 +0.514124 0.5025087 0.5619986 +0.519487 0.5025087 0.5619986 +0.5245917 0.5025087 0.5619986 +0.529462 0.5025087 0.5619986 +0.5341183 0.5025087 0.5619986 +0.5385787 0.5025087 0.5619986 +0.5428591 0.5025087 0.5619986 +0.5469733 0.5025087 0.5619986 +0.5509339 0.5025087 0.5619986 +0.5547519 0.5025087 0.5619986 +0.5584371 0.5025087 0.5619986 +0.5619986 0.5025087 0.5619986 +0.5654443 0.5025087 0.5619986 +0.5687816 0.5025087 0.5619986 +0.092819 0.5084753 0.5619986 +0.2262531 0.5084753 0.5619986 +0.2875993 0.5084753 0.5619986 +0.3262122 0.5084753 0.5619986 +0.3544566 0.5084753 0.5619986 +0.3767383 0.5084753 0.5619986 +0.3951413 0.5084753 0.5619986 +0.4108177 0.5084753 0.5619986 +0.4244723 0.5084753 0.5619986 +0.4365675 0.5084753 0.5619986 +0.4474232 0.5084753 0.5619986 +0.45727 0.5084753 0.5619986 +0.4662797 0.5084753 0.5619986 +0.4745834 0.5084753 0.5619986 +0.4822838 0.5084753 0.5619986 +0.4894626 0.5084753 0.5619986 +0.4961862 0.5084753 0.5619986 +0.5025087 0.5084753 0.5619986 +0.5084753 0.5084753 0.5619986 +0.514124 0.5084753 0.5619986 +0.519487 0.5084753 0.5619986 +0.5245917 0.5084753 0.5619986 +0.529462 0.5084753 0.5619986 +0.5341183 0.5084753 0.5619986 +0.5385787 0.5084753 0.5619986 +0.5428591 0.5084753 0.5619986 +0.5469733 0.5084753 0.5619986 +0.5509339 0.5084753 0.5619986 +0.5547519 0.5084753 0.5619986 +0.5584371 0.5084753 0.5619986 +0.5619986 0.5084753 0.5619986 +0.5654443 0.5084753 0.5619986 +0.5687816 0.5084753 0.5619986 +0.092819 0.514124 0.5619986 +0.2262531 0.514124 0.5619986 +0.2875993 0.514124 0.5619986 +0.3262122 0.514124 0.5619986 +0.3544566 0.514124 0.5619986 +0.3767383 0.514124 0.5619986 +0.3951413 0.514124 0.5619986 +0.4108177 0.514124 0.5619986 +0.4244723 0.514124 0.5619986 +0.4365675 0.514124 0.5619986 +0.4474232 0.514124 0.5619986 +0.45727 0.514124 0.5619986 +0.4662797 0.514124 0.5619986 +0.4745834 0.514124 0.5619986 +0.4822838 0.514124 0.5619986 +0.4894626 0.514124 0.5619986 +0.4961862 0.514124 0.5619986 +0.5025087 0.514124 0.5619986 +0.5084753 0.514124 0.5619986 +0.514124 0.514124 0.5619986 +0.519487 0.514124 0.5619986 +0.5245917 0.514124 0.5619986 +0.529462 0.514124 0.5619986 +0.5341183 0.514124 0.5619986 +0.5385787 0.514124 0.5619986 +0.5428591 0.514124 0.5619986 +0.5469733 0.514124 0.5619986 +0.5509339 0.514124 0.5619986 +0.5547519 0.514124 0.5619986 +0.5584371 0.514124 0.5619986 +0.5619986 0.514124 0.5619986 +0.5654443 0.514124 0.5619986 +0.5687816 0.514124 0.5619986 +0.092819 0.519487 0.5619986 +0.2262531 0.519487 0.5619986 +0.2875993 0.519487 0.5619986 +0.3262122 0.519487 0.5619986 +0.3544566 0.519487 0.5619986 +0.3767383 0.519487 0.5619986 +0.3951413 0.519487 0.5619986 +0.4108177 0.519487 0.5619986 +0.4244723 0.519487 0.5619986 +0.4365675 0.519487 0.5619986 +0.4474232 0.519487 0.5619986 +0.45727 0.519487 0.5619986 +0.4662797 0.519487 0.5619986 +0.4745834 0.519487 0.5619986 +0.4822838 0.519487 0.5619986 +0.4894626 0.519487 0.5619986 +0.4961862 0.519487 0.5619986 +0.5025087 0.519487 0.5619986 +0.5084753 0.519487 0.5619986 +0.514124 0.519487 0.5619986 +0.519487 0.519487 0.5619986 +0.5245917 0.519487 0.5619986 +0.529462 0.519487 0.5619986 +0.5341183 0.519487 0.5619986 +0.5385787 0.519487 0.5619986 +0.5428591 0.519487 0.5619986 +0.5469733 0.519487 0.5619986 +0.5509339 0.519487 0.5619986 +0.5547519 0.519487 0.5619986 +0.5584371 0.519487 0.5619986 +0.5619986 0.519487 0.5619986 +0.5654443 0.519487 0.5619986 +0.5687816 0.519487 0.5619986 +0.092819 0.5245917 0.5619986 +0.2262531 0.5245917 0.5619986 +0.2875993 0.5245917 0.5619986 +0.3262122 0.5245917 0.5619986 +0.3544566 0.5245917 0.5619986 +0.3767383 0.5245917 0.5619986 +0.3951413 0.5245917 0.5619986 +0.4108177 0.5245917 0.5619986 +0.4244723 0.5245917 0.5619986 +0.4365675 0.5245917 0.5619986 +0.4474232 0.5245917 0.5619986 +0.45727 0.5245917 0.5619986 +0.4662797 0.5245917 0.5619986 +0.4745834 0.5245917 0.5619986 +0.4822838 0.5245917 0.5619986 +0.4894626 0.5245917 0.5619986 +0.4961862 0.5245917 0.5619986 +0.5025087 0.5245917 0.5619986 +0.5084753 0.5245917 0.5619986 +0.514124 0.5245917 0.5619986 +0.519487 0.5245917 0.5619986 +0.5245917 0.5245917 0.5619986 +0.529462 0.5245917 0.5619986 +0.5341183 0.5245917 0.5619986 +0.5385787 0.5245917 0.5619986 +0.5428591 0.5245917 0.5619986 +0.5469733 0.5245917 0.5619986 +0.5509339 0.5245917 0.5619986 +0.5547519 0.5245917 0.5619986 +0.5584371 0.5245917 0.5619986 +0.5619986 0.5245917 0.5619986 +0.5654443 0.5245917 0.5619986 +0.5687816 0.5245917 0.5619986 +0.092819 0.529462 0.5619986 +0.2262531 0.529462 0.5619986 +0.2875993 0.529462 0.5619986 +0.3262122 0.529462 0.5619986 +0.3544566 0.529462 0.5619986 +0.3767383 0.529462 0.5619986 +0.3951413 0.529462 0.5619986 +0.4108177 0.529462 0.5619986 +0.4244723 0.529462 0.5619986 +0.4365675 0.529462 0.5619986 +0.4474232 0.529462 0.5619986 +0.45727 0.529462 0.5619986 +0.4662797 0.529462 0.5619986 +0.4745834 0.529462 0.5619986 +0.4822838 0.529462 0.5619986 +0.4894626 0.529462 0.5619986 +0.4961862 0.529462 0.5619986 +0.5025087 0.529462 0.5619986 +0.5084753 0.529462 0.5619986 +0.514124 0.529462 0.5619986 +0.519487 0.529462 0.5619986 +0.5245917 0.529462 0.5619986 +0.529462 0.529462 0.5619986 +0.5341183 0.529462 0.5619986 +0.5385787 0.529462 0.5619986 +0.5428591 0.529462 0.5619986 +0.5469733 0.529462 0.5619986 +0.5509339 0.529462 0.5619986 +0.5547519 0.529462 0.5619986 +0.5584371 0.529462 0.5619986 +0.5619986 0.529462 0.5619986 +0.5654443 0.529462 0.5619986 +0.5687816 0.529462 0.5619986 +0.092819 0.5341183 0.5619986 +0.2262531 0.5341183 0.5619986 +0.2875993 0.5341183 0.5619986 +0.3262122 0.5341183 0.5619986 +0.3544566 0.5341183 0.5619986 +0.3767383 0.5341183 0.5619986 +0.3951413 0.5341183 0.5619986 +0.4108177 0.5341183 0.5619986 +0.4244723 0.5341183 0.5619986 +0.4365675 0.5341183 0.5619986 +0.4474232 0.5341183 0.5619986 +0.45727 0.5341183 0.5619986 +0.4662797 0.5341183 0.5619986 +0.4745834 0.5341183 0.5619986 +0.4822838 0.5341183 0.5619986 +0.4894626 0.5341183 0.5619986 +0.4961862 0.5341183 0.5619986 +0.5025087 0.5341183 0.5619986 +0.5084753 0.5341183 0.5619986 +0.514124 0.5341183 0.5619986 +0.519487 0.5341183 0.5619986 +0.5245917 0.5341183 0.5619986 +0.529462 0.5341183 0.5619986 +0.5341183 0.5341183 0.5619986 +0.5385787 0.5341183 0.5619986 +0.5428591 0.5341183 0.5619986 +0.5469733 0.5341183 0.5619986 +0.5509339 0.5341183 0.5619986 +0.5547519 0.5341183 0.5619986 +0.5584371 0.5341183 0.5619986 +0.5619986 0.5341183 0.5619986 +0.5654443 0.5341183 0.5619986 +0.5687816 0.5341183 0.5619986 +0.092819 0.5385787 0.5619986 +0.2262531 0.5385787 0.5619986 +0.2875993 0.5385787 0.5619986 +0.3262122 0.5385787 0.5619986 +0.3544566 0.5385787 0.5619986 +0.3767383 0.5385787 0.5619986 +0.3951413 0.5385787 0.5619986 +0.4108177 0.5385787 0.5619986 +0.4244723 0.5385787 0.5619986 +0.4365675 0.5385787 0.5619986 +0.4474232 0.5385787 0.5619986 +0.45727 0.5385787 0.5619986 +0.4662797 0.5385787 0.5619986 +0.4745834 0.5385787 0.5619986 +0.4822838 0.5385787 0.5619986 +0.4894626 0.5385787 0.5619986 +0.4961862 0.5385787 0.5619986 +0.5025087 0.5385787 0.5619986 +0.5084753 0.5385787 0.5619986 +0.514124 0.5385787 0.5619986 +0.519487 0.5385787 0.5619986 +0.5245917 0.5385787 0.5619986 +0.529462 0.5385787 0.5619986 +0.5341183 0.5385787 0.5619986 +0.5385787 0.5385787 0.5619986 +0.5428591 0.5385787 0.5619986 +0.5469733 0.5385787 0.5619986 +0.5509339 0.5385787 0.5619986 +0.5547519 0.5385787 0.5619986 +0.5584371 0.5385787 0.5619986 +0.5619986 0.5385787 0.5619986 +0.5654443 0.5385787 0.5619986 +0.5687816 0.5385787 0.5619986 +0.092819 0.5428591 0.5619986 +0.2262531 0.5428591 0.5619986 +0.2875993 0.5428591 0.5619986 +0.3262122 0.5428591 0.5619986 +0.3544566 0.5428591 0.5619986 +0.3767383 0.5428591 0.5619986 +0.3951413 0.5428591 0.5619986 +0.4108177 0.5428591 0.5619986 +0.4244723 0.5428591 0.5619986 +0.4365675 0.5428591 0.5619986 +0.4474232 0.5428591 0.5619986 +0.45727 0.5428591 0.5619986 +0.4662797 0.5428591 0.5619986 +0.4745834 0.5428591 0.5619986 +0.4822838 0.5428591 0.5619986 +0.4894626 0.5428591 0.5619986 +0.4961862 0.5428591 0.5619986 +0.5025087 0.5428591 0.5619986 +0.5084753 0.5428591 0.5619986 +0.514124 0.5428591 0.5619986 +0.519487 0.5428591 0.5619986 +0.5245917 0.5428591 0.5619986 +0.529462 0.5428591 0.5619986 +0.5341183 0.5428591 0.5619986 +0.5385787 0.5428591 0.5619986 +0.5428591 0.5428591 0.5619986 +0.5469733 0.5428591 0.5619986 +0.5509339 0.5428591 0.5619986 +0.5547519 0.5428591 0.5619986 +0.5584371 0.5428591 0.5619986 +0.5619986 0.5428591 0.5619986 +0.5654443 0.5428591 0.5619986 +0.5687816 0.5428591 0.5619986 +0.092819 0.5469733 0.5619986 +0.2262531 0.5469733 0.5619986 +0.2875993 0.5469733 0.5619986 +0.3262122 0.5469733 0.5619986 +0.3544566 0.5469733 0.5619986 +0.3767383 0.5469733 0.5619986 +0.3951413 0.5469733 0.5619986 +0.4108177 0.5469733 0.5619986 +0.4244723 0.5469733 0.5619986 +0.4365675 0.5469733 0.5619986 +0.4474232 0.5469733 0.5619986 +0.45727 0.5469733 0.5619986 +0.4662797 0.5469733 0.5619986 +0.4745834 0.5469733 0.5619986 +0.4822838 0.5469733 0.5619986 +0.4894626 0.5469733 0.5619986 +0.4961862 0.5469733 0.5619986 +0.5025087 0.5469733 0.5619986 +0.5084753 0.5469733 0.5619986 +0.514124 0.5469733 0.5619986 +0.519487 0.5469733 0.5619986 +0.5245917 0.5469733 0.5619986 +0.529462 0.5469733 0.5619986 +0.5341183 0.5469733 0.5619986 +0.5385787 0.5469733 0.5619986 +0.5428591 0.5469733 0.5619986 +0.5469733 0.5469733 0.5619986 +0.5509339 0.5469733 0.5619986 +0.5547519 0.5469733 0.5619986 +0.5584371 0.5469733 0.5619986 +0.5619986 0.5469733 0.5619986 +0.5654443 0.5469733 0.5619986 +0.5687816 0.5469733 0.5619986 +0.092819 0.5509339 0.5619986 +0.2262531 0.5509339 0.5619986 +0.2875993 0.5509339 0.5619986 +0.3262122 0.5509339 0.5619986 +0.3544566 0.5509339 0.5619986 +0.3767383 0.5509339 0.5619986 +0.3951413 0.5509339 0.5619986 +0.4108177 0.5509339 0.5619986 +0.4244723 0.5509339 0.5619986 +0.4365675 0.5509339 0.5619986 +0.4474232 0.5509339 0.5619986 +0.45727 0.5509339 0.5619986 +0.4662797 0.5509339 0.5619986 +0.4745834 0.5509339 0.5619986 +0.4822838 0.5509339 0.5619986 +0.4894626 0.5509339 0.5619986 +0.4961862 0.5509339 0.5619986 +0.5025087 0.5509339 0.5619986 +0.5084753 0.5509339 0.5619986 +0.514124 0.5509339 0.5619986 +0.519487 0.5509339 0.5619986 +0.5245917 0.5509339 0.5619986 +0.529462 0.5509339 0.5619986 +0.5341183 0.5509339 0.5619986 +0.5385787 0.5509339 0.5619986 +0.5428591 0.5509339 0.5619986 +0.5469733 0.5509339 0.5619986 +0.5509339 0.5509339 0.5619986 +0.5547519 0.5509339 0.5619986 +0.5584371 0.5509339 0.5619986 +0.5619986 0.5509339 0.5619986 +0.5654443 0.5509339 0.5619986 +0.5687816 0.5509339 0.5619986 +0.092819 0.5547519 0.5619986 +0.2262531 0.5547519 0.5619986 +0.2875993 0.5547519 0.5619986 +0.3262122 0.5547519 0.5619986 +0.3544566 0.5547519 0.5619986 +0.3767383 0.5547519 0.5619986 +0.3951413 0.5547519 0.5619986 +0.4108177 0.5547519 0.5619986 +0.4244723 0.5547519 0.5619986 +0.4365675 0.5547519 0.5619986 +0.4474232 0.5547519 0.5619986 +0.45727 0.5547519 0.5619986 +0.4662797 0.5547519 0.5619986 +0.4745834 0.5547519 0.5619986 +0.4822838 0.5547519 0.5619986 +0.4894626 0.5547519 0.5619986 +0.4961862 0.5547519 0.5619986 +0.5025087 0.5547519 0.5619986 +0.5084753 0.5547519 0.5619986 +0.514124 0.5547519 0.5619986 +0.519487 0.5547519 0.5619986 +0.5245917 0.5547519 0.5619986 +0.529462 0.5547519 0.5619986 +0.5341183 0.5547519 0.5619986 +0.5385787 0.5547519 0.5619986 +0.5428591 0.5547519 0.5619986 +0.5469733 0.5547519 0.5619986 +0.5509339 0.5547519 0.5619986 +0.5547519 0.5547519 0.5619986 +0.5584371 0.5547519 0.5619986 +0.5619986 0.5547519 0.5619986 +0.5654443 0.5547519 0.5619986 +0.5687816 0.5547519 0.5619986 +0.092819 0.5584371 0.5619986 +0.2262531 0.5584371 0.5619986 +0.2875993 0.5584371 0.5619986 +0.3262122 0.5584371 0.5619986 +0.3544566 0.5584371 0.5619986 +0.3767383 0.5584371 0.5619986 +0.3951413 0.5584371 0.5619986 +0.4108177 0.5584371 0.5619986 +0.4244723 0.5584371 0.5619986 +0.4365675 0.5584371 0.5619986 +0.4474232 0.5584371 0.5619986 +0.45727 0.5584371 0.5619986 +0.4662797 0.5584371 0.5619986 +0.4745834 0.5584371 0.5619986 +0.4822838 0.5584371 0.5619986 +0.4894626 0.5584371 0.5619986 +0.4961862 0.5584371 0.5619986 +0.5025087 0.5584371 0.5619986 +0.5084753 0.5584371 0.5619986 +0.514124 0.5584371 0.5619986 +0.519487 0.5584371 0.5619986 +0.5245917 0.5584371 0.5619986 +0.529462 0.5584371 0.5619986 +0.5341183 0.5584371 0.5619986 +0.5385787 0.5584371 0.5619986 +0.5428591 0.5584371 0.5619986 +0.5469733 0.5584371 0.5619986 +0.5509339 0.5584371 0.5619986 +0.5547519 0.5584371 0.5619986 +0.5584371 0.5584371 0.5619986 +0.5619986 0.5584371 0.5619986 +0.5654443 0.5584371 0.5619986 +0.5687816 0.5584371 0.5619986 +0.092819 0.5619986 0.5619986 +0.2262531 0.5619986 0.5619986 +0.2875993 0.5619986 0.5619986 +0.3262122 0.5619986 0.5619986 +0.3544566 0.5619986 0.5619986 +0.3767383 0.5619986 0.5619986 +0.3951413 0.5619986 0.5619986 +0.4108177 0.5619986 0.5619986 +0.4244723 0.5619986 0.5619986 +0.4365675 0.5619986 0.5619986 +0.4474232 0.5619986 0.5619986 +0.45727 0.5619986 0.5619986 +0.4662797 0.5619986 0.5619986 +0.4745834 0.5619986 0.5619986 +0.4822838 0.5619986 0.5619986 +0.4894626 0.5619986 0.5619986 +0.4961862 0.5619986 0.5619986 +0.5025087 0.5619986 0.5619986 +0.5084753 0.5619986 0.5619986 +0.514124 0.5619986 0.5619986 +0.519487 0.5619986 0.5619986 +0.5245917 0.5619986 0.5619986 +0.529462 0.5619986 0.5619986 +0.5341183 0.5619986 0.5619986 +0.5385787 0.5619986 0.5619986 +0.5428591 0.5619986 0.5619986 +0.5469733 0.5619986 0.5619986 +0.5509339 0.5619986 0.5619986 +0.5547519 0.5619986 0.5619986 +0.5584371 0.5619986 0.5619986 +0.5619986 0.5619986 0.5619986 +0.5654443 0.5619986 0.5619986 +0.5687816 0.5619986 0.5619986 +0.092819 0.5654443 0.5619986 +0.2262531 0.5654443 0.5619986 +0.2875993 0.5654443 0.5619986 +0.3262122 0.5654443 0.5619986 +0.3544566 0.5654443 0.5619986 +0.3767383 0.5654443 0.5619986 +0.3951413 0.5654443 0.5619986 +0.4108177 0.5654443 0.5619986 +0.4244723 0.5654443 0.5619986 +0.4365675 0.5654443 0.5619986 +0.4474232 0.5654443 0.5619986 +0.45727 0.5654443 0.5619986 +0.4662797 0.5654443 0.5619986 +0.4745834 0.5654443 0.5619986 +0.4822838 0.5654443 0.5619986 +0.4894626 0.5654443 0.5619986 +0.4961862 0.5654443 0.5619986 +0.5025087 0.5654443 0.5619986 +0.5084753 0.5654443 0.5619986 +0.514124 0.5654443 0.5619986 +0.519487 0.5654443 0.5619986 +0.5245917 0.5654443 0.5619986 +0.529462 0.5654443 0.5619986 +0.5341183 0.5654443 0.5619986 +0.5385787 0.5654443 0.5619986 +0.5428591 0.5654443 0.5619986 +0.5469733 0.5654443 0.5619986 +0.5509339 0.5654443 0.5619986 +0.5547519 0.5654443 0.5619986 +0.5584371 0.5654443 0.5619986 +0.5619986 0.5654443 0.5619986 +0.5654443 0.5654443 0.5619986 +0.5687816 0.5654443 0.5619986 +0.092819 0.5687816 0.5619986 +0.2262531 0.5687816 0.5619986 +0.2875993 0.5687816 0.5619986 +0.3262122 0.5687816 0.5619986 +0.3544566 0.5687816 0.5619986 +0.3767383 0.5687816 0.5619986 +0.3951413 0.5687816 0.5619986 +0.4108177 0.5687816 0.5619986 +0.4244723 0.5687816 0.5619986 +0.4365675 0.5687816 0.5619986 +0.4474232 0.5687816 0.5619986 +0.45727 0.5687816 0.5619986 +0.4662797 0.5687816 0.5619986 +0.4745834 0.5687816 0.5619986 +0.4822838 0.5687816 0.5619986 +0.4894626 0.5687816 0.5619986 +0.4961862 0.5687816 0.5619986 +0.5025087 0.5687816 0.5619986 +0.5084753 0.5687816 0.5619986 +0.514124 0.5687816 0.5619986 +0.519487 0.5687816 0.5619986 +0.5245917 0.5687816 0.5619986 +0.529462 0.5687816 0.5619986 +0.5341183 0.5687816 0.5619986 +0.5385787 0.5687816 0.5619986 +0.5428591 0.5687816 0.5619986 +0.5469733 0.5687816 0.5619986 +0.5509339 0.5687816 0.5619986 +0.5547519 0.5687816 0.5619986 +0.5584371 0.5687816 0.5619986 +0.5619986 0.5687816 0.5619986 +0.5654443 0.5687816 0.5619986 +0.5687816 0.5687816 0.5619986 +0.092819 0.092819 0.5654443 +0.2262531 0.092819 0.5654443 +0.2875993 0.092819 0.5654443 +0.3262122 0.092819 0.5654443 +0.3544566 0.092819 0.5654443 +0.3767383 0.092819 0.5654443 +0.3951413 0.092819 0.5654443 +0.4108177 0.092819 0.5654443 +0.4244723 0.092819 0.5654443 +0.4365675 0.092819 0.5654443 +0.4474232 0.092819 0.5654443 +0.45727 0.092819 0.5654443 +0.4662797 0.092819 0.5654443 +0.4745834 0.092819 0.5654443 +0.4822838 0.092819 0.5654443 +0.4894626 0.092819 0.5654443 +0.4961862 0.092819 0.5654443 +0.5025087 0.092819 0.5654443 +0.5084753 0.092819 0.5654443 +0.514124 0.092819 0.5654443 +0.519487 0.092819 0.5654443 +0.5245917 0.092819 0.5654443 +0.529462 0.092819 0.5654443 +0.5341183 0.092819 0.5654443 +0.5385787 0.092819 0.5654443 +0.5428591 0.092819 0.5654443 +0.5469733 0.092819 0.5654443 +0.5509339 0.092819 0.5654443 +0.5547519 0.092819 0.5654443 +0.5584371 0.092819 0.5654443 +0.5619986 0.092819 0.5654443 +0.5654443 0.092819 0.5654443 +0.5687816 0.092819 0.5654443 +0.092819 0.2262531 0.5654443 +0.2262531 0.2262531 0.5654443 +0.2875993 0.2262531 0.5654443 +0.3262122 0.2262531 0.5654443 +0.3544566 0.2262531 0.5654443 +0.3767383 0.2262531 0.5654443 +0.3951413 0.2262531 0.5654443 +0.4108177 0.2262531 0.5654443 +0.4244723 0.2262531 0.5654443 +0.4365675 0.2262531 0.5654443 +0.4474232 0.2262531 0.5654443 +0.45727 0.2262531 0.5654443 +0.4662797 0.2262531 0.5654443 +0.4745834 0.2262531 0.5654443 +0.4822838 0.2262531 0.5654443 +0.4894626 0.2262531 0.5654443 +0.4961862 0.2262531 0.5654443 +0.5025087 0.2262531 0.5654443 +0.5084753 0.2262531 0.5654443 +0.514124 0.2262531 0.5654443 +0.519487 0.2262531 0.5654443 +0.5245917 0.2262531 0.5654443 +0.529462 0.2262531 0.5654443 +0.5341183 0.2262531 0.5654443 +0.5385787 0.2262531 0.5654443 +0.5428591 0.2262531 0.5654443 +0.5469733 0.2262531 0.5654443 +0.5509339 0.2262531 0.5654443 +0.5547519 0.2262531 0.5654443 +0.5584371 0.2262531 0.5654443 +0.5619986 0.2262531 0.5654443 +0.5654443 0.2262531 0.5654443 +0.5687816 0.2262531 0.5654443 +0.092819 0.2875993 0.5654443 +0.2262531 0.2875993 0.5654443 +0.2875993 0.2875993 0.5654443 +0.3262122 0.2875993 0.5654443 +0.3544566 0.2875993 0.5654443 +0.3767383 0.2875993 0.5654443 +0.3951413 0.2875993 0.5654443 +0.4108177 0.2875993 0.5654443 +0.4244723 0.2875993 0.5654443 +0.4365675 0.2875993 0.5654443 +0.4474232 0.2875993 0.5654443 +0.45727 0.2875993 0.5654443 +0.4662797 0.2875993 0.5654443 +0.4745834 0.2875993 0.5654443 +0.4822838 0.2875993 0.5654443 +0.4894626 0.2875993 0.5654443 +0.4961862 0.2875993 0.5654443 +0.5025087 0.2875993 0.5654443 +0.5084753 0.2875993 0.5654443 +0.514124 0.2875993 0.5654443 +0.519487 0.2875993 0.5654443 +0.5245917 0.2875993 0.5654443 +0.529462 0.2875993 0.5654443 +0.5341183 0.2875993 0.5654443 +0.5385787 0.2875993 0.5654443 +0.5428591 0.2875993 0.5654443 +0.5469733 0.2875993 0.5654443 +0.5509339 0.2875993 0.5654443 +0.5547519 0.2875993 0.5654443 +0.5584371 0.2875993 0.5654443 +0.5619986 0.2875993 0.5654443 +0.5654443 0.2875993 0.5654443 +0.5687816 0.2875993 0.5654443 +0.092819 0.3262122 0.5654443 +0.2262531 0.3262122 0.5654443 +0.2875993 0.3262122 0.5654443 +0.3262122 0.3262122 0.5654443 +0.3544566 0.3262122 0.5654443 +0.3767383 0.3262122 0.5654443 +0.3951413 0.3262122 0.5654443 +0.4108177 0.3262122 0.5654443 +0.4244723 0.3262122 0.5654443 +0.4365675 0.3262122 0.5654443 +0.4474232 0.3262122 0.5654443 +0.45727 0.3262122 0.5654443 +0.4662797 0.3262122 0.5654443 +0.4745834 0.3262122 0.5654443 +0.4822838 0.3262122 0.5654443 +0.4894626 0.3262122 0.5654443 +0.4961862 0.3262122 0.5654443 +0.5025087 0.3262122 0.5654443 +0.5084753 0.3262122 0.5654443 +0.514124 0.3262122 0.5654443 +0.519487 0.3262122 0.5654443 +0.5245917 0.3262122 0.5654443 +0.529462 0.3262122 0.5654443 +0.5341183 0.3262122 0.5654443 +0.5385787 0.3262122 0.5654443 +0.5428591 0.3262122 0.5654443 +0.5469733 0.3262122 0.5654443 +0.5509339 0.3262122 0.5654443 +0.5547519 0.3262122 0.5654443 +0.5584371 0.3262122 0.5654443 +0.5619986 0.3262122 0.5654443 +0.5654443 0.3262122 0.5654443 +0.5687816 0.3262122 0.5654443 +0.092819 0.3544566 0.5654443 +0.2262531 0.3544566 0.5654443 +0.2875993 0.3544566 0.5654443 +0.3262122 0.3544566 0.5654443 +0.3544566 0.3544566 0.5654443 +0.3767383 0.3544566 0.5654443 +0.3951413 0.3544566 0.5654443 +0.4108177 0.3544566 0.5654443 +0.4244723 0.3544566 0.5654443 +0.4365675 0.3544566 0.5654443 +0.4474232 0.3544566 0.5654443 +0.45727 0.3544566 0.5654443 +0.4662797 0.3544566 0.5654443 +0.4745834 0.3544566 0.5654443 +0.4822838 0.3544566 0.5654443 +0.4894626 0.3544566 0.5654443 +0.4961862 0.3544566 0.5654443 +0.5025087 0.3544566 0.5654443 +0.5084753 0.3544566 0.5654443 +0.514124 0.3544566 0.5654443 +0.519487 0.3544566 0.5654443 +0.5245917 0.3544566 0.5654443 +0.529462 0.3544566 0.5654443 +0.5341183 0.3544566 0.5654443 +0.5385787 0.3544566 0.5654443 +0.5428591 0.3544566 0.5654443 +0.5469733 0.3544566 0.5654443 +0.5509339 0.3544566 0.5654443 +0.5547519 0.3544566 0.5654443 +0.5584371 0.3544566 0.5654443 +0.5619986 0.3544566 0.5654443 +0.5654443 0.3544566 0.5654443 +0.5687816 0.3544566 0.5654443 +0.092819 0.3767383 0.5654443 +0.2262531 0.3767383 0.5654443 +0.2875993 0.3767383 0.5654443 +0.3262122 0.3767383 0.5654443 +0.3544566 0.3767383 0.5654443 +0.3767383 0.3767383 0.5654443 +0.3951413 0.3767383 0.5654443 +0.4108177 0.3767383 0.5654443 +0.4244723 0.3767383 0.5654443 +0.4365675 0.3767383 0.5654443 +0.4474232 0.3767383 0.5654443 +0.45727 0.3767383 0.5654443 +0.4662797 0.3767383 0.5654443 +0.4745834 0.3767383 0.5654443 +0.4822838 0.3767383 0.5654443 +0.4894626 0.3767383 0.5654443 +0.4961862 0.3767383 0.5654443 +0.5025087 0.3767383 0.5654443 +0.5084753 0.3767383 0.5654443 +0.514124 0.3767383 0.5654443 +0.519487 0.3767383 0.5654443 +0.5245917 0.3767383 0.5654443 +0.529462 0.3767383 0.5654443 +0.5341183 0.3767383 0.5654443 +0.5385787 0.3767383 0.5654443 +0.5428591 0.3767383 0.5654443 +0.5469733 0.3767383 0.5654443 +0.5509339 0.3767383 0.5654443 +0.5547519 0.3767383 0.5654443 +0.5584371 0.3767383 0.5654443 +0.5619986 0.3767383 0.5654443 +0.5654443 0.3767383 0.5654443 +0.5687816 0.3767383 0.5654443 +0.092819 0.3951413 0.5654443 +0.2262531 0.3951413 0.5654443 +0.2875993 0.3951413 0.5654443 +0.3262122 0.3951413 0.5654443 +0.3544566 0.3951413 0.5654443 +0.3767383 0.3951413 0.5654443 +0.3951413 0.3951413 0.5654443 +0.4108177 0.3951413 0.5654443 +0.4244723 0.3951413 0.5654443 +0.4365675 0.3951413 0.5654443 +0.4474232 0.3951413 0.5654443 +0.45727 0.3951413 0.5654443 +0.4662797 0.3951413 0.5654443 +0.4745834 0.3951413 0.5654443 +0.4822838 0.3951413 0.5654443 +0.4894626 0.3951413 0.5654443 +0.4961862 0.3951413 0.5654443 +0.5025087 0.3951413 0.5654443 +0.5084753 0.3951413 0.5654443 +0.514124 0.3951413 0.5654443 +0.519487 0.3951413 0.5654443 +0.5245917 0.3951413 0.5654443 +0.529462 0.3951413 0.5654443 +0.5341183 0.3951413 0.5654443 +0.5385787 0.3951413 0.5654443 +0.5428591 0.3951413 0.5654443 +0.5469733 0.3951413 0.5654443 +0.5509339 0.3951413 0.5654443 +0.5547519 0.3951413 0.5654443 +0.5584371 0.3951413 0.5654443 +0.5619986 0.3951413 0.5654443 +0.5654443 0.3951413 0.5654443 +0.5687816 0.3951413 0.5654443 +0.092819 0.4108177 0.5654443 +0.2262531 0.4108177 0.5654443 +0.2875993 0.4108177 0.5654443 +0.3262122 0.4108177 0.5654443 +0.3544566 0.4108177 0.5654443 +0.3767383 0.4108177 0.5654443 +0.3951413 0.4108177 0.5654443 +0.4108177 0.4108177 0.5654443 +0.4244723 0.4108177 0.5654443 +0.4365675 0.4108177 0.5654443 +0.4474232 0.4108177 0.5654443 +0.45727 0.4108177 0.5654443 +0.4662797 0.4108177 0.5654443 +0.4745834 0.4108177 0.5654443 +0.4822838 0.4108177 0.5654443 +0.4894626 0.4108177 0.5654443 +0.4961862 0.4108177 0.5654443 +0.5025087 0.4108177 0.5654443 +0.5084753 0.4108177 0.5654443 +0.514124 0.4108177 0.5654443 +0.519487 0.4108177 0.5654443 +0.5245917 0.4108177 0.5654443 +0.529462 0.4108177 0.5654443 +0.5341183 0.4108177 0.5654443 +0.5385787 0.4108177 0.5654443 +0.5428591 0.4108177 0.5654443 +0.5469733 0.4108177 0.5654443 +0.5509339 0.4108177 0.5654443 +0.5547519 0.4108177 0.5654443 +0.5584371 0.4108177 0.5654443 +0.5619986 0.4108177 0.5654443 +0.5654443 0.4108177 0.5654443 +0.5687816 0.4108177 0.5654443 +0.092819 0.4244723 0.5654443 +0.2262531 0.4244723 0.5654443 +0.2875993 0.4244723 0.5654443 +0.3262122 0.4244723 0.5654443 +0.3544566 0.4244723 0.5654443 +0.3767383 0.4244723 0.5654443 +0.3951413 0.4244723 0.5654443 +0.4108177 0.4244723 0.5654443 +0.4244723 0.4244723 0.5654443 +0.4365675 0.4244723 0.5654443 +0.4474232 0.4244723 0.5654443 +0.45727 0.4244723 0.5654443 +0.4662797 0.4244723 0.5654443 +0.4745834 0.4244723 0.5654443 +0.4822838 0.4244723 0.5654443 +0.4894626 0.4244723 0.5654443 +0.4961862 0.4244723 0.5654443 +0.5025087 0.4244723 0.5654443 +0.5084753 0.4244723 0.5654443 +0.514124 0.4244723 0.5654443 +0.519487 0.4244723 0.5654443 +0.5245917 0.4244723 0.5654443 +0.529462 0.4244723 0.5654443 +0.5341183 0.4244723 0.5654443 +0.5385787 0.4244723 0.5654443 +0.5428591 0.4244723 0.5654443 +0.5469733 0.4244723 0.5654443 +0.5509339 0.4244723 0.5654443 +0.5547519 0.4244723 0.5654443 +0.5584371 0.4244723 0.5654443 +0.5619986 0.4244723 0.5654443 +0.5654443 0.4244723 0.5654443 +0.5687816 0.4244723 0.5654443 +0.092819 0.4365675 0.5654443 +0.2262531 0.4365675 0.5654443 +0.2875993 0.4365675 0.5654443 +0.3262122 0.4365675 0.5654443 +0.3544566 0.4365675 0.5654443 +0.3767383 0.4365675 0.5654443 +0.3951413 0.4365675 0.5654443 +0.4108177 0.4365675 0.5654443 +0.4244723 0.4365675 0.5654443 +0.4365675 0.4365675 0.5654443 +0.4474232 0.4365675 0.5654443 +0.45727 0.4365675 0.5654443 +0.4662797 0.4365675 0.5654443 +0.4745834 0.4365675 0.5654443 +0.4822838 0.4365675 0.5654443 +0.4894626 0.4365675 0.5654443 +0.4961862 0.4365675 0.5654443 +0.5025087 0.4365675 0.5654443 +0.5084753 0.4365675 0.5654443 +0.514124 0.4365675 0.5654443 +0.519487 0.4365675 0.5654443 +0.5245917 0.4365675 0.5654443 +0.529462 0.4365675 0.5654443 +0.5341183 0.4365675 0.5654443 +0.5385787 0.4365675 0.5654443 +0.5428591 0.4365675 0.5654443 +0.5469733 0.4365675 0.5654443 +0.5509339 0.4365675 0.5654443 +0.5547519 0.4365675 0.5654443 +0.5584371 0.4365675 0.5654443 +0.5619986 0.4365675 0.5654443 +0.5654443 0.4365675 0.5654443 +0.5687816 0.4365675 0.5654443 +0.092819 0.4474232 0.5654443 +0.2262531 0.4474232 0.5654443 +0.2875993 0.4474232 0.5654443 +0.3262122 0.4474232 0.5654443 +0.3544566 0.4474232 0.5654443 +0.3767383 0.4474232 0.5654443 +0.3951413 0.4474232 0.5654443 +0.4108177 0.4474232 0.5654443 +0.4244723 0.4474232 0.5654443 +0.4365675 0.4474232 0.5654443 +0.4474232 0.4474232 0.5654443 +0.45727 0.4474232 0.5654443 +0.4662797 0.4474232 0.5654443 +0.4745834 0.4474232 0.5654443 +0.4822838 0.4474232 0.5654443 +0.4894626 0.4474232 0.5654443 +0.4961862 0.4474232 0.5654443 +0.5025087 0.4474232 0.5654443 +0.5084753 0.4474232 0.5654443 +0.514124 0.4474232 0.5654443 +0.519487 0.4474232 0.5654443 +0.5245917 0.4474232 0.5654443 +0.529462 0.4474232 0.5654443 +0.5341183 0.4474232 0.5654443 +0.5385787 0.4474232 0.5654443 +0.5428591 0.4474232 0.5654443 +0.5469733 0.4474232 0.5654443 +0.5509339 0.4474232 0.5654443 +0.5547519 0.4474232 0.5654443 +0.5584371 0.4474232 0.5654443 +0.5619986 0.4474232 0.5654443 +0.5654443 0.4474232 0.5654443 +0.5687816 0.4474232 0.5654443 +0.092819 0.45727 0.5654443 +0.2262531 0.45727 0.5654443 +0.2875993 0.45727 0.5654443 +0.3262122 0.45727 0.5654443 +0.3544566 0.45727 0.5654443 +0.3767383 0.45727 0.5654443 +0.3951413 0.45727 0.5654443 +0.4108177 0.45727 0.5654443 +0.4244723 0.45727 0.5654443 +0.4365675 0.45727 0.5654443 +0.4474232 0.45727 0.5654443 +0.45727 0.45727 0.5654443 +0.4662797 0.45727 0.5654443 +0.4745834 0.45727 0.5654443 +0.4822838 0.45727 0.5654443 +0.4894626 0.45727 0.5654443 +0.4961862 0.45727 0.5654443 +0.5025087 0.45727 0.5654443 +0.5084753 0.45727 0.5654443 +0.514124 0.45727 0.5654443 +0.519487 0.45727 0.5654443 +0.5245917 0.45727 0.5654443 +0.529462 0.45727 0.5654443 +0.5341183 0.45727 0.5654443 +0.5385787 0.45727 0.5654443 +0.5428591 0.45727 0.5654443 +0.5469733 0.45727 0.5654443 +0.5509339 0.45727 0.5654443 +0.5547519 0.45727 0.5654443 +0.5584371 0.45727 0.5654443 +0.5619986 0.45727 0.5654443 +0.5654443 0.45727 0.5654443 +0.5687816 0.45727 0.5654443 +0.092819 0.4662797 0.5654443 +0.2262531 0.4662797 0.5654443 +0.2875993 0.4662797 0.5654443 +0.3262122 0.4662797 0.5654443 +0.3544566 0.4662797 0.5654443 +0.3767383 0.4662797 0.5654443 +0.3951413 0.4662797 0.5654443 +0.4108177 0.4662797 0.5654443 +0.4244723 0.4662797 0.5654443 +0.4365675 0.4662797 0.5654443 +0.4474232 0.4662797 0.5654443 +0.45727 0.4662797 0.5654443 +0.4662797 0.4662797 0.5654443 +0.4745834 0.4662797 0.5654443 +0.4822838 0.4662797 0.5654443 +0.4894626 0.4662797 0.5654443 +0.4961862 0.4662797 0.5654443 +0.5025087 0.4662797 0.5654443 +0.5084753 0.4662797 0.5654443 +0.514124 0.4662797 0.5654443 +0.519487 0.4662797 0.5654443 +0.5245917 0.4662797 0.5654443 +0.529462 0.4662797 0.5654443 +0.5341183 0.4662797 0.5654443 +0.5385787 0.4662797 0.5654443 +0.5428591 0.4662797 0.5654443 +0.5469733 0.4662797 0.5654443 +0.5509339 0.4662797 0.5654443 +0.5547519 0.4662797 0.5654443 +0.5584371 0.4662797 0.5654443 +0.5619986 0.4662797 0.5654443 +0.5654443 0.4662797 0.5654443 +0.5687816 0.4662797 0.5654443 +0.092819 0.4745834 0.5654443 +0.2262531 0.4745834 0.5654443 +0.2875993 0.4745834 0.5654443 +0.3262122 0.4745834 0.5654443 +0.3544566 0.4745834 0.5654443 +0.3767383 0.4745834 0.5654443 +0.3951413 0.4745834 0.5654443 +0.4108177 0.4745834 0.5654443 +0.4244723 0.4745834 0.5654443 +0.4365675 0.4745834 0.5654443 +0.4474232 0.4745834 0.5654443 +0.45727 0.4745834 0.5654443 +0.4662797 0.4745834 0.5654443 +0.4745834 0.4745834 0.5654443 +0.4822838 0.4745834 0.5654443 +0.4894626 0.4745834 0.5654443 +0.4961862 0.4745834 0.5654443 +0.5025087 0.4745834 0.5654443 +0.5084753 0.4745834 0.5654443 +0.514124 0.4745834 0.5654443 +0.519487 0.4745834 0.5654443 +0.5245917 0.4745834 0.5654443 +0.529462 0.4745834 0.5654443 +0.5341183 0.4745834 0.5654443 +0.5385787 0.4745834 0.5654443 +0.5428591 0.4745834 0.5654443 +0.5469733 0.4745834 0.5654443 +0.5509339 0.4745834 0.5654443 +0.5547519 0.4745834 0.5654443 +0.5584371 0.4745834 0.5654443 +0.5619986 0.4745834 0.5654443 +0.5654443 0.4745834 0.5654443 +0.5687816 0.4745834 0.5654443 +0.092819 0.4822838 0.5654443 +0.2262531 0.4822838 0.5654443 +0.2875993 0.4822838 0.5654443 +0.3262122 0.4822838 0.5654443 +0.3544566 0.4822838 0.5654443 +0.3767383 0.4822838 0.5654443 +0.3951413 0.4822838 0.5654443 +0.4108177 0.4822838 0.5654443 +0.4244723 0.4822838 0.5654443 +0.4365675 0.4822838 0.5654443 +0.4474232 0.4822838 0.5654443 +0.45727 0.4822838 0.5654443 +0.4662797 0.4822838 0.5654443 +0.4745834 0.4822838 0.5654443 +0.4822838 0.4822838 0.5654443 +0.4894626 0.4822838 0.5654443 +0.4961862 0.4822838 0.5654443 +0.5025087 0.4822838 0.5654443 +0.5084753 0.4822838 0.5654443 +0.514124 0.4822838 0.5654443 +0.519487 0.4822838 0.5654443 +0.5245917 0.4822838 0.5654443 +0.529462 0.4822838 0.5654443 +0.5341183 0.4822838 0.5654443 +0.5385787 0.4822838 0.5654443 +0.5428591 0.4822838 0.5654443 +0.5469733 0.4822838 0.5654443 +0.5509339 0.4822838 0.5654443 +0.5547519 0.4822838 0.5654443 +0.5584371 0.4822838 0.5654443 +0.5619986 0.4822838 0.5654443 +0.5654443 0.4822838 0.5654443 +0.5687816 0.4822838 0.5654443 +0.092819 0.4894626 0.5654443 +0.2262531 0.4894626 0.5654443 +0.2875993 0.4894626 0.5654443 +0.3262122 0.4894626 0.5654443 +0.3544566 0.4894626 0.5654443 +0.3767383 0.4894626 0.5654443 +0.3951413 0.4894626 0.5654443 +0.4108177 0.4894626 0.5654443 +0.4244723 0.4894626 0.5654443 +0.4365675 0.4894626 0.5654443 +0.4474232 0.4894626 0.5654443 +0.45727 0.4894626 0.5654443 +0.4662797 0.4894626 0.5654443 +0.4745834 0.4894626 0.5654443 +0.4822838 0.4894626 0.5654443 +0.4894626 0.4894626 0.5654443 +0.4961862 0.4894626 0.5654443 +0.5025087 0.4894626 0.5654443 +0.5084753 0.4894626 0.5654443 +0.514124 0.4894626 0.5654443 +0.519487 0.4894626 0.5654443 +0.5245917 0.4894626 0.5654443 +0.529462 0.4894626 0.5654443 +0.5341183 0.4894626 0.5654443 +0.5385787 0.4894626 0.5654443 +0.5428591 0.4894626 0.5654443 +0.5469733 0.4894626 0.5654443 +0.5509339 0.4894626 0.5654443 +0.5547519 0.4894626 0.5654443 +0.5584371 0.4894626 0.5654443 +0.5619986 0.4894626 0.5654443 +0.5654443 0.4894626 0.5654443 +0.5687816 0.4894626 0.5654443 +0.092819 0.4961862 0.5654443 +0.2262531 0.4961862 0.5654443 +0.2875993 0.4961862 0.5654443 +0.3262122 0.4961862 0.5654443 +0.3544566 0.4961862 0.5654443 +0.3767383 0.4961862 0.5654443 +0.3951413 0.4961862 0.5654443 +0.4108177 0.4961862 0.5654443 +0.4244723 0.4961862 0.5654443 +0.4365675 0.4961862 0.5654443 +0.4474232 0.4961862 0.5654443 +0.45727 0.4961862 0.5654443 +0.4662797 0.4961862 0.5654443 +0.4745834 0.4961862 0.5654443 +0.4822838 0.4961862 0.5654443 +0.4894626 0.4961862 0.5654443 +0.4961862 0.4961862 0.5654443 +0.5025087 0.4961862 0.5654443 +0.5084753 0.4961862 0.5654443 +0.514124 0.4961862 0.5654443 +0.519487 0.4961862 0.5654443 +0.5245917 0.4961862 0.5654443 +0.529462 0.4961862 0.5654443 +0.5341183 0.4961862 0.5654443 +0.5385787 0.4961862 0.5654443 +0.5428591 0.4961862 0.5654443 +0.5469733 0.4961862 0.5654443 +0.5509339 0.4961862 0.5654443 +0.5547519 0.4961862 0.5654443 +0.5584371 0.4961862 0.5654443 +0.5619986 0.4961862 0.5654443 +0.5654443 0.4961862 0.5654443 +0.5687816 0.4961862 0.5654443 +0.092819 0.5025087 0.5654443 +0.2262531 0.5025087 0.5654443 +0.2875993 0.5025087 0.5654443 +0.3262122 0.5025087 0.5654443 +0.3544566 0.5025087 0.5654443 +0.3767383 0.5025087 0.5654443 +0.3951413 0.5025087 0.5654443 +0.4108177 0.5025087 0.5654443 +0.4244723 0.5025087 0.5654443 +0.4365675 0.5025087 0.5654443 +0.4474232 0.5025087 0.5654443 +0.45727 0.5025087 0.5654443 +0.4662797 0.5025087 0.5654443 +0.4745834 0.5025087 0.5654443 +0.4822838 0.5025087 0.5654443 +0.4894626 0.5025087 0.5654443 +0.4961862 0.5025087 0.5654443 +0.5025087 0.5025087 0.5654443 +0.5084753 0.5025087 0.5654443 +0.514124 0.5025087 0.5654443 +0.519487 0.5025087 0.5654443 +0.5245917 0.5025087 0.5654443 +0.529462 0.5025087 0.5654443 +0.5341183 0.5025087 0.5654443 +0.5385787 0.5025087 0.5654443 +0.5428591 0.5025087 0.5654443 +0.5469733 0.5025087 0.5654443 +0.5509339 0.5025087 0.5654443 +0.5547519 0.5025087 0.5654443 +0.5584371 0.5025087 0.5654443 +0.5619986 0.5025087 0.5654443 +0.5654443 0.5025087 0.5654443 +0.5687816 0.5025087 0.5654443 +0.092819 0.5084753 0.5654443 +0.2262531 0.5084753 0.5654443 +0.2875993 0.5084753 0.5654443 +0.3262122 0.5084753 0.5654443 +0.3544566 0.5084753 0.5654443 +0.3767383 0.5084753 0.5654443 +0.3951413 0.5084753 0.5654443 +0.4108177 0.5084753 0.5654443 +0.4244723 0.5084753 0.5654443 +0.4365675 0.5084753 0.5654443 +0.4474232 0.5084753 0.5654443 +0.45727 0.5084753 0.5654443 +0.4662797 0.5084753 0.5654443 +0.4745834 0.5084753 0.5654443 +0.4822838 0.5084753 0.5654443 +0.4894626 0.5084753 0.5654443 +0.4961862 0.5084753 0.5654443 +0.5025087 0.5084753 0.5654443 +0.5084753 0.5084753 0.5654443 +0.514124 0.5084753 0.5654443 +0.519487 0.5084753 0.5654443 +0.5245917 0.5084753 0.5654443 +0.529462 0.5084753 0.5654443 +0.5341183 0.5084753 0.5654443 +0.5385787 0.5084753 0.5654443 +0.5428591 0.5084753 0.5654443 +0.5469733 0.5084753 0.5654443 +0.5509339 0.5084753 0.5654443 +0.5547519 0.5084753 0.5654443 +0.5584371 0.5084753 0.5654443 +0.5619986 0.5084753 0.5654443 +0.5654443 0.5084753 0.5654443 +0.5687816 0.5084753 0.5654443 +0.092819 0.514124 0.5654443 +0.2262531 0.514124 0.5654443 +0.2875993 0.514124 0.5654443 +0.3262122 0.514124 0.5654443 +0.3544566 0.514124 0.5654443 +0.3767383 0.514124 0.5654443 +0.3951413 0.514124 0.5654443 +0.4108177 0.514124 0.5654443 +0.4244723 0.514124 0.5654443 +0.4365675 0.514124 0.5654443 +0.4474232 0.514124 0.5654443 +0.45727 0.514124 0.5654443 +0.4662797 0.514124 0.5654443 +0.4745834 0.514124 0.5654443 +0.4822838 0.514124 0.5654443 +0.4894626 0.514124 0.5654443 +0.4961862 0.514124 0.5654443 +0.5025087 0.514124 0.5654443 +0.5084753 0.514124 0.5654443 +0.514124 0.514124 0.5654443 +0.519487 0.514124 0.5654443 +0.5245917 0.514124 0.5654443 +0.529462 0.514124 0.5654443 +0.5341183 0.514124 0.5654443 +0.5385787 0.514124 0.5654443 +0.5428591 0.514124 0.5654443 +0.5469733 0.514124 0.5654443 +0.5509339 0.514124 0.5654443 +0.5547519 0.514124 0.5654443 +0.5584371 0.514124 0.5654443 +0.5619986 0.514124 0.5654443 +0.5654443 0.514124 0.5654443 +0.5687816 0.514124 0.5654443 +0.092819 0.519487 0.5654443 +0.2262531 0.519487 0.5654443 +0.2875993 0.519487 0.5654443 +0.3262122 0.519487 0.5654443 +0.3544566 0.519487 0.5654443 +0.3767383 0.519487 0.5654443 +0.3951413 0.519487 0.5654443 +0.4108177 0.519487 0.5654443 +0.4244723 0.519487 0.5654443 +0.4365675 0.519487 0.5654443 +0.4474232 0.519487 0.5654443 +0.45727 0.519487 0.5654443 +0.4662797 0.519487 0.5654443 +0.4745834 0.519487 0.5654443 +0.4822838 0.519487 0.5654443 +0.4894626 0.519487 0.5654443 +0.4961862 0.519487 0.5654443 +0.5025087 0.519487 0.5654443 +0.5084753 0.519487 0.5654443 +0.514124 0.519487 0.5654443 +0.519487 0.519487 0.5654443 +0.5245917 0.519487 0.5654443 +0.529462 0.519487 0.5654443 +0.5341183 0.519487 0.5654443 +0.5385787 0.519487 0.5654443 +0.5428591 0.519487 0.5654443 +0.5469733 0.519487 0.5654443 +0.5509339 0.519487 0.5654443 +0.5547519 0.519487 0.5654443 +0.5584371 0.519487 0.5654443 +0.5619986 0.519487 0.5654443 +0.5654443 0.519487 0.5654443 +0.5687816 0.519487 0.5654443 +0.092819 0.5245917 0.5654443 +0.2262531 0.5245917 0.5654443 +0.2875993 0.5245917 0.5654443 +0.3262122 0.5245917 0.5654443 +0.3544566 0.5245917 0.5654443 +0.3767383 0.5245917 0.5654443 +0.3951413 0.5245917 0.5654443 +0.4108177 0.5245917 0.5654443 +0.4244723 0.5245917 0.5654443 +0.4365675 0.5245917 0.5654443 +0.4474232 0.5245917 0.5654443 +0.45727 0.5245917 0.5654443 +0.4662797 0.5245917 0.5654443 +0.4745834 0.5245917 0.5654443 +0.4822838 0.5245917 0.5654443 +0.4894626 0.5245917 0.5654443 +0.4961862 0.5245917 0.5654443 +0.5025087 0.5245917 0.5654443 +0.5084753 0.5245917 0.5654443 +0.514124 0.5245917 0.5654443 +0.519487 0.5245917 0.5654443 +0.5245917 0.5245917 0.5654443 +0.529462 0.5245917 0.5654443 +0.5341183 0.5245917 0.5654443 +0.5385787 0.5245917 0.5654443 +0.5428591 0.5245917 0.5654443 +0.5469733 0.5245917 0.5654443 +0.5509339 0.5245917 0.5654443 +0.5547519 0.5245917 0.5654443 +0.5584371 0.5245917 0.5654443 +0.5619986 0.5245917 0.5654443 +0.5654443 0.5245917 0.5654443 +0.5687816 0.5245917 0.5654443 +0.092819 0.529462 0.5654443 +0.2262531 0.529462 0.5654443 +0.2875993 0.529462 0.5654443 +0.3262122 0.529462 0.5654443 +0.3544566 0.529462 0.5654443 +0.3767383 0.529462 0.5654443 +0.3951413 0.529462 0.5654443 +0.4108177 0.529462 0.5654443 +0.4244723 0.529462 0.5654443 +0.4365675 0.529462 0.5654443 +0.4474232 0.529462 0.5654443 +0.45727 0.529462 0.5654443 +0.4662797 0.529462 0.5654443 +0.4745834 0.529462 0.5654443 +0.4822838 0.529462 0.5654443 +0.4894626 0.529462 0.5654443 +0.4961862 0.529462 0.5654443 +0.5025087 0.529462 0.5654443 +0.5084753 0.529462 0.5654443 +0.514124 0.529462 0.5654443 +0.519487 0.529462 0.5654443 +0.5245917 0.529462 0.5654443 +0.529462 0.529462 0.5654443 +0.5341183 0.529462 0.5654443 +0.5385787 0.529462 0.5654443 +0.5428591 0.529462 0.5654443 +0.5469733 0.529462 0.5654443 +0.5509339 0.529462 0.5654443 +0.5547519 0.529462 0.5654443 +0.5584371 0.529462 0.5654443 +0.5619986 0.529462 0.5654443 +0.5654443 0.529462 0.5654443 +0.5687816 0.529462 0.5654443 +0.092819 0.5341183 0.5654443 +0.2262531 0.5341183 0.5654443 +0.2875993 0.5341183 0.5654443 +0.3262122 0.5341183 0.5654443 +0.3544566 0.5341183 0.5654443 +0.3767383 0.5341183 0.5654443 +0.3951413 0.5341183 0.5654443 +0.4108177 0.5341183 0.5654443 +0.4244723 0.5341183 0.5654443 +0.4365675 0.5341183 0.5654443 +0.4474232 0.5341183 0.5654443 +0.45727 0.5341183 0.5654443 +0.4662797 0.5341183 0.5654443 +0.4745834 0.5341183 0.5654443 +0.4822838 0.5341183 0.5654443 +0.4894626 0.5341183 0.5654443 +0.4961862 0.5341183 0.5654443 +0.5025087 0.5341183 0.5654443 +0.5084753 0.5341183 0.5654443 +0.514124 0.5341183 0.5654443 +0.519487 0.5341183 0.5654443 +0.5245917 0.5341183 0.5654443 +0.529462 0.5341183 0.5654443 +0.5341183 0.5341183 0.5654443 +0.5385787 0.5341183 0.5654443 +0.5428591 0.5341183 0.5654443 +0.5469733 0.5341183 0.5654443 +0.5509339 0.5341183 0.5654443 +0.5547519 0.5341183 0.5654443 +0.5584371 0.5341183 0.5654443 +0.5619986 0.5341183 0.5654443 +0.5654443 0.5341183 0.5654443 +0.5687816 0.5341183 0.5654443 +0.092819 0.5385787 0.5654443 +0.2262531 0.5385787 0.5654443 +0.2875993 0.5385787 0.5654443 +0.3262122 0.5385787 0.5654443 +0.3544566 0.5385787 0.5654443 +0.3767383 0.5385787 0.5654443 +0.3951413 0.5385787 0.5654443 +0.4108177 0.5385787 0.5654443 +0.4244723 0.5385787 0.5654443 +0.4365675 0.5385787 0.5654443 +0.4474232 0.5385787 0.5654443 +0.45727 0.5385787 0.5654443 +0.4662797 0.5385787 0.5654443 +0.4745834 0.5385787 0.5654443 +0.4822838 0.5385787 0.5654443 +0.4894626 0.5385787 0.5654443 +0.4961862 0.5385787 0.5654443 +0.5025087 0.5385787 0.5654443 +0.5084753 0.5385787 0.5654443 +0.514124 0.5385787 0.5654443 +0.519487 0.5385787 0.5654443 +0.5245917 0.5385787 0.5654443 +0.529462 0.5385787 0.5654443 +0.5341183 0.5385787 0.5654443 +0.5385787 0.5385787 0.5654443 +0.5428591 0.5385787 0.5654443 +0.5469733 0.5385787 0.5654443 +0.5509339 0.5385787 0.5654443 +0.5547519 0.5385787 0.5654443 +0.5584371 0.5385787 0.5654443 +0.5619986 0.5385787 0.5654443 +0.5654443 0.5385787 0.5654443 +0.5687816 0.5385787 0.5654443 +0.092819 0.5428591 0.5654443 +0.2262531 0.5428591 0.5654443 +0.2875993 0.5428591 0.5654443 +0.3262122 0.5428591 0.5654443 +0.3544566 0.5428591 0.5654443 +0.3767383 0.5428591 0.5654443 +0.3951413 0.5428591 0.5654443 +0.4108177 0.5428591 0.5654443 +0.4244723 0.5428591 0.5654443 +0.4365675 0.5428591 0.5654443 +0.4474232 0.5428591 0.5654443 +0.45727 0.5428591 0.5654443 +0.4662797 0.5428591 0.5654443 +0.4745834 0.5428591 0.5654443 +0.4822838 0.5428591 0.5654443 +0.4894626 0.5428591 0.5654443 +0.4961862 0.5428591 0.5654443 +0.5025087 0.5428591 0.5654443 +0.5084753 0.5428591 0.5654443 +0.514124 0.5428591 0.5654443 +0.519487 0.5428591 0.5654443 +0.5245917 0.5428591 0.5654443 +0.529462 0.5428591 0.5654443 +0.5341183 0.5428591 0.5654443 +0.5385787 0.5428591 0.5654443 +0.5428591 0.5428591 0.5654443 +0.5469733 0.5428591 0.5654443 +0.5509339 0.5428591 0.5654443 +0.5547519 0.5428591 0.5654443 +0.5584371 0.5428591 0.5654443 +0.5619986 0.5428591 0.5654443 +0.5654443 0.5428591 0.5654443 +0.5687816 0.5428591 0.5654443 +0.092819 0.5469733 0.5654443 +0.2262531 0.5469733 0.5654443 +0.2875993 0.5469733 0.5654443 +0.3262122 0.5469733 0.5654443 +0.3544566 0.5469733 0.5654443 +0.3767383 0.5469733 0.5654443 +0.3951413 0.5469733 0.5654443 +0.4108177 0.5469733 0.5654443 +0.4244723 0.5469733 0.5654443 +0.4365675 0.5469733 0.5654443 +0.4474232 0.5469733 0.5654443 +0.45727 0.5469733 0.5654443 +0.4662797 0.5469733 0.5654443 +0.4745834 0.5469733 0.5654443 +0.4822838 0.5469733 0.5654443 +0.4894626 0.5469733 0.5654443 +0.4961862 0.5469733 0.5654443 +0.5025087 0.5469733 0.5654443 +0.5084753 0.5469733 0.5654443 +0.514124 0.5469733 0.5654443 +0.519487 0.5469733 0.5654443 +0.5245917 0.5469733 0.5654443 +0.529462 0.5469733 0.5654443 +0.5341183 0.5469733 0.5654443 +0.5385787 0.5469733 0.5654443 +0.5428591 0.5469733 0.5654443 +0.5469733 0.5469733 0.5654443 +0.5509339 0.5469733 0.5654443 +0.5547519 0.5469733 0.5654443 +0.5584371 0.5469733 0.5654443 +0.5619986 0.5469733 0.5654443 +0.5654443 0.5469733 0.5654443 +0.5687816 0.5469733 0.5654443 +0.092819 0.5509339 0.5654443 +0.2262531 0.5509339 0.5654443 +0.2875993 0.5509339 0.5654443 +0.3262122 0.5509339 0.5654443 +0.3544566 0.5509339 0.5654443 +0.3767383 0.5509339 0.5654443 +0.3951413 0.5509339 0.5654443 +0.4108177 0.5509339 0.5654443 +0.4244723 0.5509339 0.5654443 +0.4365675 0.5509339 0.5654443 +0.4474232 0.5509339 0.5654443 +0.45727 0.5509339 0.5654443 +0.4662797 0.5509339 0.5654443 +0.4745834 0.5509339 0.5654443 +0.4822838 0.5509339 0.5654443 +0.4894626 0.5509339 0.5654443 +0.4961862 0.5509339 0.5654443 +0.5025087 0.5509339 0.5654443 +0.5084753 0.5509339 0.5654443 +0.514124 0.5509339 0.5654443 +0.519487 0.5509339 0.5654443 +0.5245917 0.5509339 0.5654443 +0.529462 0.5509339 0.5654443 +0.5341183 0.5509339 0.5654443 +0.5385787 0.5509339 0.5654443 +0.5428591 0.5509339 0.5654443 +0.5469733 0.5509339 0.5654443 +0.5509339 0.5509339 0.5654443 +0.5547519 0.5509339 0.5654443 +0.5584371 0.5509339 0.5654443 +0.5619986 0.5509339 0.5654443 +0.5654443 0.5509339 0.5654443 +0.5687816 0.5509339 0.5654443 +0.092819 0.5547519 0.5654443 +0.2262531 0.5547519 0.5654443 +0.2875993 0.5547519 0.5654443 +0.3262122 0.5547519 0.5654443 +0.3544566 0.5547519 0.5654443 +0.3767383 0.5547519 0.5654443 +0.3951413 0.5547519 0.5654443 +0.4108177 0.5547519 0.5654443 +0.4244723 0.5547519 0.5654443 +0.4365675 0.5547519 0.5654443 +0.4474232 0.5547519 0.5654443 +0.45727 0.5547519 0.5654443 +0.4662797 0.5547519 0.5654443 +0.4745834 0.5547519 0.5654443 +0.4822838 0.5547519 0.5654443 +0.4894626 0.5547519 0.5654443 +0.4961862 0.5547519 0.5654443 +0.5025087 0.5547519 0.5654443 +0.5084753 0.5547519 0.5654443 +0.514124 0.5547519 0.5654443 +0.519487 0.5547519 0.5654443 +0.5245917 0.5547519 0.5654443 +0.529462 0.5547519 0.5654443 +0.5341183 0.5547519 0.5654443 +0.5385787 0.5547519 0.5654443 +0.5428591 0.5547519 0.5654443 +0.5469733 0.5547519 0.5654443 +0.5509339 0.5547519 0.5654443 +0.5547519 0.5547519 0.5654443 +0.5584371 0.5547519 0.5654443 +0.5619986 0.5547519 0.5654443 +0.5654443 0.5547519 0.5654443 +0.5687816 0.5547519 0.5654443 +0.092819 0.5584371 0.5654443 +0.2262531 0.5584371 0.5654443 +0.2875993 0.5584371 0.5654443 +0.3262122 0.5584371 0.5654443 +0.3544566 0.5584371 0.5654443 +0.3767383 0.5584371 0.5654443 +0.3951413 0.5584371 0.5654443 +0.4108177 0.5584371 0.5654443 +0.4244723 0.5584371 0.5654443 +0.4365675 0.5584371 0.5654443 +0.4474232 0.5584371 0.5654443 +0.45727 0.5584371 0.5654443 +0.4662797 0.5584371 0.5654443 +0.4745834 0.5584371 0.5654443 +0.4822838 0.5584371 0.5654443 +0.4894626 0.5584371 0.5654443 +0.4961862 0.5584371 0.5654443 +0.5025087 0.5584371 0.5654443 +0.5084753 0.5584371 0.5654443 +0.514124 0.5584371 0.5654443 +0.519487 0.5584371 0.5654443 +0.5245917 0.5584371 0.5654443 +0.529462 0.5584371 0.5654443 +0.5341183 0.5584371 0.5654443 +0.5385787 0.5584371 0.5654443 +0.5428591 0.5584371 0.5654443 +0.5469733 0.5584371 0.5654443 +0.5509339 0.5584371 0.5654443 +0.5547519 0.5584371 0.5654443 +0.5584371 0.5584371 0.5654443 +0.5619986 0.5584371 0.5654443 +0.5654443 0.5584371 0.5654443 +0.5687816 0.5584371 0.5654443 +0.092819 0.5619986 0.5654443 +0.2262531 0.5619986 0.5654443 +0.2875993 0.5619986 0.5654443 +0.3262122 0.5619986 0.5654443 +0.3544566 0.5619986 0.5654443 +0.3767383 0.5619986 0.5654443 +0.3951413 0.5619986 0.5654443 +0.4108177 0.5619986 0.5654443 +0.4244723 0.5619986 0.5654443 +0.4365675 0.5619986 0.5654443 +0.4474232 0.5619986 0.5654443 +0.45727 0.5619986 0.5654443 +0.4662797 0.5619986 0.5654443 +0.4745834 0.5619986 0.5654443 +0.4822838 0.5619986 0.5654443 +0.4894626 0.5619986 0.5654443 +0.4961862 0.5619986 0.5654443 +0.5025087 0.5619986 0.5654443 +0.5084753 0.5619986 0.5654443 +0.514124 0.5619986 0.5654443 +0.519487 0.5619986 0.5654443 +0.5245917 0.5619986 0.5654443 +0.529462 0.5619986 0.5654443 +0.5341183 0.5619986 0.5654443 +0.5385787 0.5619986 0.5654443 +0.5428591 0.5619986 0.5654443 +0.5469733 0.5619986 0.5654443 +0.5509339 0.5619986 0.5654443 +0.5547519 0.5619986 0.5654443 +0.5584371 0.5619986 0.5654443 +0.5619986 0.5619986 0.5654443 +0.5654443 0.5619986 0.5654443 +0.5687816 0.5619986 0.5654443 +0.092819 0.5654443 0.5654443 +0.2262531 0.5654443 0.5654443 +0.2875993 0.5654443 0.5654443 +0.3262122 0.5654443 0.5654443 +0.3544566 0.5654443 0.5654443 +0.3767383 0.5654443 0.5654443 +0.3951413 0.5654443 0.5654443 +0.4108177 0.5654443 0.5654443 +0.4244723 0.5654443 0.5654443 +0.4365675 0.5654443 0.5654443 +0.4474232 0.5654443 0.5654443 +0.45727 0.5654443 0.5654443 +0.4662797 0.5654443 0.5654443 +0.4745834 0.5654443 0.5654443 +0.4822838 0.5654443 0.5654443 +0.4894626 0.5654443 0.5654443 +0.4961862 0.5654443 0.5654443 +0.5025087 0.5654443 0.5654443 +0.5084753 0.5654443 0.5654443 +0.514124 0.5654443 0.5654443 +0.519487 0.5654443 0.5654443 +0.5245917 0.5654443 0.5654443 +0.529462 0.5654443 0.5654443 +0.5341183 0.5654443 0.5654443 +0.5385787 0.5654443 0.5654443 +0.5428591 0.5654443 0.5654443 +0.5469733 0.5654443 0.5654443 +0.5509339 0.5654443 0.5654443 +0.5547519 0.5654443 0.5654443 +0.5584371 0.5654443 0.5654443 +0.5619986 0.5654443 0.5654443 +0.5654443 0.5654443 0.5654443 +0.5687816 0.5654443 0.5654443 +0.092819 0.5687816 0.5654443 +0.2262531 0.5687816 0.5654443 +0.2875993 0.5687816 0.5654443 +0.3262122 0.5687816 0.5654443 +0.3544566 0.5687816 0.5654443 +0.3767383 0.5687816 0.5654443 +0.3951413 0.5687816 0.5654443 +0.4108177 0.5687816 0.5654443 +0.4244723 0.5687816 0.5654443 +0.4365675 0.5687816 0.5654443 +0.4474232 0.5687816 0.5654443 +0.45727 0.5687816 0.5654443 +0.4662797 0.5687816 0.5654443 +0.4745834 0.5687816 0.5654443 +0.4822838 0.5687816 0.5654443 +0.4894626 0.5687816 0.5654443 +0.4961862 0.5687816 0.5654443 +0.5025087 0.5687816 0.5654443 +0.5084753 0.5687816 0.5654443 +0.514124 0.5687816 0.5654443 +0.519487 0.5687816 0.5654443 +0.5245917 0.5687816 0.5654443 +0.529462 0.5687816 0.5654443 +0.5341183 0.5687816 0.5654443 +0.5385787 0.5687816 0.5654443 +0.5428591 0.5687816 0.5654443 +0.5469733 0.5687816 0.5654443 +0.5509339 0.5687816 0.5654443 +0.5547519 0.5687816 0.5654443 +0.5584371 0.5687816 0.5654443 +0.5619986 0.5687816 0.5654443 +0.5654443 0.5687816 0.5654443 +0.5687816 0.5687816 0.5654443 +0.092819 0.092819 0.5687816 +0.2262531 0.092819 0.5687816 +0.2875993 0.092819 0.5687816 +0.3262122 0.092819 0.5687816 +0.3544566 0.092819 0.5687816 +0.3767383 0.092819 0.5687816 +0.3951413 0.092819 0.5687816 +0.4108177 0.092819 0.5687816 +0.4244723 0.092819 0.5687816 +0.4365675 0.092819 0.5687816 +0.4474232 0.092819 0.5687816 +0.45727 0.092819 0.5687816 +0.4662797 0.092819 0.5687816 +0.4745834 0.092819 0.5687816 +0.4822838 0.092819 0.5687816 +0.4894626 0.092819 0.5687816 +0.4961862 0.092819 0.5687816 +0.5025087 0.092819 0.5687816 +0.5084753 0.092819 0.5687816 +0.514124 0.092819 0.5687816 +0.519487 0.092819 0.5687816 +0.5245917 0.092819 0.5687816 +0.529462 0.092819 0.5687816 +0.5341183 0.092819 0.5687816 +0.5385787 0.092819 0.5687816 +0.5428591 0.092819 0.5687816 +0.5469733 0.092819 0.5687816 +0.5509339 0.092819 0.5687816 +0.5547519 0.092819 0.5687816 +0.5584371 0.092819 0.5687816 +0.5619986 0.092819 0.5687816 +0.5654443 0.092819 0.5687816 +0.5687816 0.092819 0.5687816 +0.092819 0.2262531 0.5687816 +0.2262531 0.2262531 0.5687816 +0.2875993 0.2262531 0.5687816 +0.3262122 0.2262531 0.5687816 +0.3544566 0.2262531 0.5687816 +0.3767383 0.2262531 0.5687816 +0.3951413 0.2262531 0.5687816 +0.4108177 0.2262531 0.5687816 +0.4244723 0.2262531 0.5687816 +0.4365675 0.2262531 0.5687816 +0.4474232 0.2262531 0.5687816 +0.45727 0.2262531 0.5687816 +0.4662797 0.2262531 0.5687816 +0.4745834 0.2262531 0.5687816 +0.4822838 0.2262531 0.5687816 +0.4894626 0.2262531 0.5687816 +0.4961862 0.2262531 0.5687816 +0.5025087 0.2262531 0.5687816 +0.5084753 0.2262531 0.5687816 +0.514124 0.2262531 0.5687816 +0.519487 0.2262531 0.5687816 +0.5245917 0.2262531 0.5687816 +0.529462 0.2262531 0.5687816 +0.5341183 0.2262531 0.5687816 +0.5385787 0.2262531 0.5687816 +0.5428591 0.2262531 0.5687816 +0.5469733 0.2262531 0.5687816 +0.5509339 0.2262531 0.5687816 +0.5547519 0.2262531 0.5687816 +0.5584371 0.2262531 0.5687816 +0.5619986 0.2262531 0.5687816 +0.5654443 0.2262531 0.5687816 +0.5687816 0.2262531 0.5687816 +0.092819 0.2875993 0.5687816 +0.2262531 0.2875993 0.5687816 +0.2875993 0.2875993 0.5687816 +0.3262122 0.2875993 0.5687816 +0.3544566 0.2875993 0.5687816 +0.3767383 0.2875993 0.5687816 +0.3951413 0.2875993 0.5687816 +0.4108177 0.2875993 0.5687816 +0.4244723 0.2875993 0.5687816 +0.4365675 0.2875993 0.5687816 +0.4474232 0.2875993 0.5687816 +0.45727 0.2875993 0.5687816 +0.4662797 0.2875993 0.5687816 +0.4745834 0.2875993 0.5687816 +0.4822838 0.2875993 0.5687816 +0.4894626 0.2875993 0.5687816 +0.4961862 0.2875993 0.5687816 +0.5025087 0.2875993 0.5687816 +0.5084753 0.2875993 0.5687816 +0.514124 0.2875993 0.5687816 +0.519487 0.2875993 0.5687816 +0.5245917 0.2875993 0.5687816 +0.529462 0.2875993 0.5687816 +0.5341183 0.2875993 0.5687816 +0.5385787 0.2875993 0.5687816 +0.5428591 0.2875993 0.5687816 +0.5469733 0.2875993 0.5687816 +0.5509339 0.2875993 0.5687816 +0.5547519 0.2875993 0.5687816 +0.5584371 0.2875993 0.5687816 +0.5619986 0.2875993 0.5687816 +0.5654443 0.2875993 0.5687816 +0.5687816 0.2875993 0.5687816 +0.092819 0.3262122 0.5687816 +0.2262531 0.3262122 0.5687816 +0.2875993 0.3262122 0.5687816 +0.3262122 0.3262122 0.5687816 +0.3544566 0.3262122 0.5687816 +0.3767383 0.3262122 0.5687816 +0.3951413 0.3262122 0.5687816 +0.4108177 0.3262122 0.5687816 +0.4244723 0.3262122 0.5687816 +0.4365675 0.3262122 0.5687816 +0.4474232 0.3262122 0.5687816 +0.45727 0.3262122 0.5687816 +0.4662797 0.3262122 0.5687816 +0.4745834 0.3262122 0.5687816 +0.4822838 0.3262122 0.5687816 +0.4894626 0.3262122 0.5687816 +0.4961862 0.3262122 0.5687816 +0.5025087 0.3262122 0.5687816 +0.5084753 0.3262122 0.5687816 +0.514124 0.3262122 0.5687816 +0.519487 0.3262122 0.5687816 +0.5245917 0.3262122 0.5687816 +0.529462 0.3262122 0.5687816 +0.5341183 0.3262122 0.5687816 +0.5385787 0.3262122 0.5687816 +0.5428591 0.3262122 0.5687816 +0.5469733 0.3262122 0.5687816 +0.5509339 0.3262122 0.5687816 +0.5547519 0.3262122 0.5687816 +0.5584371 0.3262122 0.5687816 +0.5619986 0.3262122 0.5687816 +0.5654443 0.3262122 0.5687816 +0.5687816 0.3262122 0.5687816 +0.092819 0.3544566 0.5687816 +0.2262531 0.3544566 0.5687816 +0.2875993 0.3544566 0.5687816 +0.3262122 0.3544566 0.5687816 +0.3544566 0.3544566 0.5687816 +0.3767383 0.3544566 0.5687816 +0.3951413 0.3544566 0.5687816 +0.4108177 0.3544566 0.5687816 +0.4244723 0.3544566 0.5687816 +0.4365675 0.3544566 0.5687816 +0.4474232 0.3544566 0.5687816 +0.45727 0.3544566 0.5687816 +0.4662797 0.3544566 0.5687816 +0.4745834 0.3544566 0.5687816 +0.4822838 0.3544566 0.5687816 +0.4894626 0.3544566 0.5687816 +0.4961862 0.3544566 0.5687816 +0.5025087 0.3544566 0.5687816 +0.5084753 0.3544566 0.5687816 +0.514124 0.3544566 0.5687816 +0.519487 0.3544566 0.5687816 +0.5245917 0.3544566 0.5687816 +0.529462 0.3544566 0.5687816 +0.5341183 0.3544566 0.5687816 +0.5385787 0.3544566 0.5687816 +0.5428591 0.3544566 0.5687816 +0.5469733 0.3544566 0.5687816 +0.5509339 0.3544566 0.5687816 +0.5547519 0.3544566 0.5687816 +0.5584371 0.3544566 0.5687816 +0.5619986 0.3544566 0.5687816 +0.5654443 0.3544566 0.5687816 +0.5687816 0.3544566 0.5687816 +0.092819 0.3767383 0.5687816 +0.2262531 0.3767383 0.5687816 +0.2875993 0.3767383 0.5687816 +0.3262122 0.3767383 0.5687816 +0.3544566 0.3767383 0.5687816 +0.3767383 0.3767383 0.5687816 +0.3951413 0.3767383 0.5687816 +0.4108177 0.3767383 0.5687816 +0.4244723 0.3767383 0.5687816 +0.4365675 0.3767383 0.5687816 +0.4474232 0.3767383 0.5687816 +0.45727 0.3767383 0.5687816 +0.4662797 0.3767383 0.5687816 +0.4745834 0.3767383 0.5687816 +0.4822838 0.3767383 0.5687816 +0.4894626 0.3767383 0.5687816 +0.4961862 0.3767383 0.5687816 +0.5025087 0.3767383 0.5687816 +0.5084753 0.3767383 0.5687816 +0.514124 0.3767383 0.5687816 +0.519487 0.3767383 0.5687816 +0.5245917 0.3767383 0.5687816 +0.529462 0.3767383 0.5687816 +0.5341183 0.3767383 0.5687816 +0.5385787 0.3767383 0.5687816 +0.5428591 0.3767383 0.5687816 +0.5469733 0.3767383 0.5687816 +0.5509339 0.3767383 0.5687816 +0.5547519 0.3767383 0.5687816 +0.5584371 0.3767383 0.5687816 +0.5619986 0.3767383 0.5687816 +0.5654443 0.3767383 0.5687816 +0.5687816 0.3767383 0.5687816 +0.092819 0.3951413 0.5687816 +0.2262531 0.3951413 0.5687816 +0.2875993 0.3951413 0.5687816 +0.3262122 0.3951413 0.5687816 +0.3544566 0.3951413 0.5687816 +0.3767383 0.3951413 0.5687816 +0.3951413 0.3951413 0.5687816 +0.4108177 0.3951413 0.5687816 +0.4244723 0.3951413 0.5687816 +0.4365675 0.3951413 0.5687816 +0.4474232 0.3951413 0.5687816 +0.45727 0.3951413 0.5687816 +0.4662797 0.3951413 0.5687816 +0.4745834 0.3951413 0.5687816 +0.4822838 0.3951413 0.5687816 +0.4894626 0.3951413 0.5687816 +0.4961862 0.3951413 0.5687816 +0.5025087 0.3951413 0.5687816 +0.5084753 0.3951413 0.5687816 +0.514124 0.3951413 0.5687816 +0.519487 0.3951413 0.5687816 +0.5245917 0.3951413 0.5687816 +0.529462 0.3951413 0.5687816 +0.5341183 0.3951413 0.5687816 +0.5385787 0.3951413 0.5687816 +0.5428591 0.3951413 0.5687816 +0.5469733 0.3951413 0.5687816 +0.5509339 0.3951413 0.5687816 +0.5547519 0.3951413 0.5687816 +0.5584371 0.3951413 0.5687816 +0.5619986 0.3951413 0.5687816 +0.5654443 0.3951413 0.5687816 +0.5687816 0.3951413 0.5687816 +0.092819 0.4108177 0.5687816 +0.2262531 0.4108177 0.5687816 +0.2875993 0.4108177 0.5687816 +0.3262122 0.4108177 0.5687816 +0.3544566 0.4108177 0.5687816 +0.3767383 0.4108177 0.5687816 +0.3951413 0.4108177 0.5687816 +0.4108177 0.4108177 0.5687816 +0.4244723 0.4108177 0.5687816 +0.4365675 0.4108177 0.5687816 +0.4474232 0.4108177 0.5687816 +0.45727 0.4108177 0.5687816 +0.4662797 0.4108177 0.5687816 +0.4745834 0.4108177 0.5687816 +0.4822838 0.4108177 0.5687816 +0.4894626 0.4108177 0.5687816 +0.4961862 0.4108177 0.5687816 +0.5025087 0.4108177 0.5687816 +0.5084753 0.4108177 0.5687816 +0.514124 0.4108177 0.5687816 +0.519487 0.4108177 0.5687816 +0.5245917 0.4108177 0.5687816 +0.529462 0.4108177 0.5687816 +0.5341183 0.4108177 0.5687816 +0.5385787 0.4108177 0.5687816 +0.5428591 0.4108177 0.5687816 +0.5469733 0.4108177 0.5687816 +0.5509339 0.4108177 0.5687816 +0.5547519 0.4108177 0.5687816 +0.5584371 0.4108177 0.5687816 +0.5619986 0.4108177 0.5687816 +0.5654443 0.4108177 0.5687816 +0.5687816 0.4108177 0.5687816 +0.092819 0.4244723 0.5687816 +0.2262531 0.4244723 0.5687816 +0.2875993 0.4244723 0.5687816 +0.3262122 0.4244723 0.5687816 +0.3544566 0.4244723 0.5687816 +0.3767383 0.4244723 0.5687816 +0.3951413 0.4244723 0.5687816 +0.4108177 0.4244723 0.5687816 +0.4244723 0.4244723 0.5687816 +0.4365675 0.4244723 0.5687816 +0.4474232 0.4244723 0.5687816 +0.45727 0.4244723 0.5687816 +0.4662797 0.4244723 0.5687816 +0.4745834 0.4244723 0.5687816 +0.4822838 0.4244723 0.5687816 +0.4894626 0.4244723 0.5687816 +0.4961862 0.4244723 0.5687816 +0.5025087 0.4244723 0.5687816 +0.5084753 0.4244723 0.5687816 +0.514124 0.4244723 0.5687816 +0.519487 0.4244723 0.5687816 +0.5245917 0.4244723 0.5687816 +0.529462 0.4244723 0.5687816 +0.5341183 0.4244723 0.5687816 +0.5385787 0.4244723 0.5687816 +0.5428591 0.4244723 0.5687816 +0.5469733 0.4244723 0.5687816 +0.5509339 0.4244723 0.5687816 +0.5547519 0.4244723 0.5687816 +0.5584371 0.4244723 0.5687816 +0.5619986 0.4244723 0.5687816 +0.5654443 0.4244723 0.5687816 +0.5687816 0.4244723 0.5687816 +0.092819 0.4365675 0.5687816 +0.2262531 0.4365675 0.5687816 +0.2875993 0.4365675 0.5687816 +0.3262122 0.4365675 0.5687816 +0.3544566 0.4365675 0.5687816 +0.3767383 0.4365675 0.5687816 +0.3951413 0.4365675 0.5687816 +0.4108177 0.4365675 0.5687816 +0.4244723 0.4365675 0.5687816 +0.4365675 0.4365675 0.5687816 +0.4474232 0.4365675 0.5687816 +0.45727 0.4365675 0.5687816 +0.4662797 0.4365675 0.5687816 +0.4745834 0.4365675 0.5687816 +0.4822838 0.4365675 0.5687816 +0.4894626 0.4365675 0.5687816 +0.4961862 0.4365675 0.5687816 +0.5025087 0.4365675 0.5687816 +0.5084753 0.4365675 0.5687816 +0.514124 0.4365675 0.5687816 +0.519487 0.4365675 0.5687816 +0.5245917 0.4365675 0.5687816 +0.529462 0.4365675 0.5687816 +0.5341183 0.4365675 0.5687816 +0.5385787 0.4365675 0.5687816 +0.5428591 0.4365675 0.5687816 +0.5469733 0.4365675 0.5687816 +0.5509339 0.4365675 0.5687816 +0.5547519 0.4365675 0.5687816 +0.5584371 0.4365675 0.5687816 +0.5619986 0.4365675 0.5687816 +0.5654443 0.4365675 0.5687816 +0.5687816 0.4365675 0.5687816 +0.092819 0.4474232 0.5687816 +0.2262531 0.4474232 0.5687816 +0.2875993 0.4474232 0.5687816 +0.3262122 0.4474232 0.5687816 +0.3544566 0.4474232 0.5687816 +0.3767383 0.4474232 0.5687816 +0.3951413 0.4474232 0.5687816 +0.4108177 0.4474232 0.5687816 +0.4244723 0.4474232 0.5687816 +0.4365675 0.4474232 0.5687816 +0.4474232 0.4474232 0.5687816 +0.45727 0.4474232 0.5687816 +0.4662797 0.4474232 0.5687816 +0.4745834 0.4474232 0.5687816 +0.4822838 0.4474232 0.5687816 +0.4894626 0.4474232 0.5687816 +0.4961862 0.4474232 0.5687816 +0.5025087 0.4474232 0.5687816 +0.5084753 0.4474232 0.5687816 +0.514124 0.4474232 0.5687816 +0.519487 0.4474232 0.5687816 +0.5245917 0.4474232 0.5687816 +0.529462 0.4474232 0.5687816 +0.5341183 0.4474232 0.5687816 +0.5385787 0.4474232 0.5687816 +0.5428591 0.4474232 0.5687816 +0.5469733 0.4474232 0.5687816 +0.5509339 0.4474232 0.5687816 +0.5547519 0.4474232 0.5687816 +0.5584371 0.4474232 0.5687816 +0.5619986 0.4474232 0.5687816 +0.5654443 0.4474232 0.5687816 +0.5687816 0.4474232 0.5687816 +0.092819 0.45727 0.5687816 +0.2262531 0.45727 0.5687816 +0.2875993 0.45727 0.5687816 +0.3262122 0.45727 0.5687816 +0.3544566 0.45727 0.5687816 +0.3767383 0.45727 0.5687816 +0.3951413 0.45727 0.5687816 +0.4108177 0.45727 0.5687816 +0.4244723 0.45727 0.5687816 +0.4365675 0.45727 0.5687816 +0.4474232 0.45727 0.5687816 +0.45727 0.45727 0.5687816 +0.4662797 0.45727 0.5687816 +0.4745834 0.45727 0.5687816 +0.4822838 0.45727 0.5687816 +0.4894626 0.45727 0.5687816 +0.4961862 0.45727 0.5687816 +0.5025087 0.45727 0.5687816 +0.5084753 0.45727 0.5687816 +0.514124 0.45727 0.5687816 +0.519487 0.45727 0.5687816 +0.5245917 0.45727 0.5687816 +0.529462 0.45727 0.5687816 +0.5341183 0.45727 0.5687816 +0.5385787 0.45727 0.5687816 +0.5428591 0.45727 0.5687816 +0.5469733 0.45727 0.5687816 +0.5509339 0.45727 0.5687816 +0.5547519 0.45727 0.5687816 +0.5584371 0.45727 0.5687816 +0.5619986 0.45727 0.5687816 +0.5654443 0.45727 0.5687816 +0.5687816 0.45727 0.5687816 +0.092819 0.4662797 0.5687816 +0.2262531 0.4662797 0.5687816 +0.2875993 0.4662797 0.5687816 +0.3262122 0.4662797 0.5687816 +0.3544566 0.4662797 0.5687816 +0.3767383 0.4662797 0.5687816 +0.3951413 0.4662797 0.5687816 +0.4108177 0.4662797 0.5687816 +0.4244723 0.4662797 0.5687816 +0.4365675 0.4662797 0.5687816 +0.4474232 0.4662797 0.5687816 +0.45727 0.4662797 0.5687816 +0.4662797 0.4662797 0.5687816 +0.4745834 0.4662797 0.5687816 +0.4822838 0.4662797 0.5687816 +0.4894626 0.4662797 0.5687816 +0.4961862 0.4662797 0.5687816 +0.5025087 0.4662797 0.5687816 +0.5084753 0.4662797 0.5687816 +0.514124 0.4662797 0.5687816 +0.519487 0.4662797 0.5687816 +0.5245917 0.4662797 0.5687816 +0.529462 0.4662797 0.5687816 +0.5341183 0.4662797 0.5687816 +0.5385787 0.4662797 0.5687816 +0.5428591 0.4662797 0.5687816 +0.5469733 0.4662797 0.5687816 +0.5509339 0.4662797 0.5687816 +0.5547519 0.4662797 0.5687816 +0.5584371 0.4662797 0.5687816 +0.5619986 0.4662797 0.5687816 +0.5654443 0.4662797 0.5687816 +0.5687816 0.4662797 0.5687816 +0.092819 0.4745834 0.5687816 +0.2262531 0.4745834 0.5687816 +0.2875993 0.4745834 0.5687816 +0.3262122 0.4745834 0.5687816 +0.3544566 0.4745834 0.5687816 +0.3767383 0.4745834 0.5687816 +0.3951413 0.4745834 0.5687816 +0.4108177 0.4745834 0.5687816 +0.4244723 0.4745834 0.5687816 +0.4365675 0.4745834 0.5687816 +0.4474232 0.4745834 0.5687816 +0.45727 0.4745834 0.5687816 +0.4662797 0.4745834 0.5687816 +0.4745834 0.4745834 0.5687816 +0.4822838 0.4745834 0.5687816 +0.4894626 0.4745834 0.5687816 +0.4961862 0.4745834 0.5687816 +0.5025087 0.4745834 0.5687816 +0.5084753 0.4745834 0.5687816 +0.514124 0.4745834 0.5687816 +0.519487 0.4745834 0.5687816 +0.5245917 0.4745834 0.5687816 +0.529462 0.4745834 0.5687816 +0.5341183 0.4745834 0.5687816 +0.5385787 0.4745834 0.5687816 +0.5428591 0.4745834 0.5687816 +0.5469733 0.4745834 0.5687816 +0.5509339 0.4745834 0.5687816 +0.5547519 0.4745834 0.5687816 +0.5584371 0.4745834 0.5687816 +0.5619986 0.4745834 0.5687816 +0.5654443 0.4745834 0.5687816 +0.5687816 0.4745834 0.5687816 +0.092819 0.4822838 0.5687816 +0.2262531 0.4822838 0.5687816 +0.2875993 0.4822838 0.5687816 +0.3262122 0.4822838 0.5687816 +0.3544566 0.4822838 0.5687816 +0.3767383 0.4822838 0.5687816 +0.3951413 0.4822838 0.5687816 +0.4108177 0.4822838 0.5687816 +0.4244723 0.4822838 0.5687816 +0.4365675 0.4822838 0.5687816 +0.4474232 0.4822838 0.5687816 +0.45727 0.4822838 0.5687816 +0.4662797 0.4822838 0.5687816 +0.4745834 0.4822838 0.5687816 +0.4822838 0.4822838 0.5687816 +0.4894626 0.4822838 0.5687816 +0.4961862 0.4822838 0.5687816 +0.5025087 0.4822838 0.5687816 +0.5084753 0.4822838 0.5687816 +0.514124 0.4822838 0.5687816 +0.519487 0.4822838 0.5687816 +0.5245917 0.4822838 0.5687816 +0.529462 0.4822838 0.5687816 +0.5341183 0.4822838 0.5687816 +0.5385787 0.4822838 0.5687816 +0.5428591 0.4822838 0.5687816 +0.5469733 0.4822838 0.5687816 +0.5509339 0.4822838 0.5687816 +0.5547519 0.4822838 0.5687816 +0.5584371 0.4822838 0.5687816 +0.5619986 0.4822838 0.5687816 +0.5654443 0.4822838 0.5687816 +0.5687816 0.4822838 0.5687816 +0.092819 0.4894626 0.5687816 +0.2262531 0.4894626 0.5687816 +0.2875993 0.4894626 0.5687816 +0.3262122 0.4894626 0.5687816 +0.3544566 0.4894626 0.5687816 +0.3767383 0.4894626 0.5687816 +0.3951413 0.4894626 0.5687816 +0.4108177 0.4894626 0.5687816 +0.4244723 0.4894626 0.5687816 +0.4365675 0.4894626 0.5687816 +0.4474232 0.4894626 0.5687816 +0.45727 0.4894626 0.5687816 +0.4662797 0.4894626 0.5687816 +0.4745834 0.4894626 0.5687816 +0.4822838 0.4894626 0.5687816 +0.4894626 0.4894626 0.5687816 +0.4961862 0.4894626 0.5687816 +0.5025087 0.4894626 0.5687816 +0.5084753 0.4894626 0.5687816 +0.514124 0.4894626 0.5687816 +0.519487 0.4894626 0.5687816 +0.5245917 0.4894626 0.5687816 +0.529462 0.4894626 0.5687816 +0.5341183 0.4894626 0.5687816 +0.5385787 0.4894626 0.5687816 +0.5428591 0.4894626 0.5687816 +0.5469733 0.4894626 0.5687816 +0.5509339 0.4894626 0.5687816 +0.5547519 0.4894626 0.5687816 +0.5584371 0.4894626 0.5687816 +0.5619986 0.4894626 0.5687816 +0.5654443 0.4894626 0.5687816 +0.5687816 0.4894626 0.5687816 +0.092819 0.4961862 0.5687816 +0.2262531 0.4961862 0.5687816 +0.2875993 0.4961862 0.5687816 +0.3262122 0.4961862 0.5687816 +0.3544566 0.4961862 0.5687816 +0.3767383 0.4961862 0.5687816 +0.3951413 0.4961862 0.5687816 +0.4108177 0.4961862 0.5687816 +0.4244723 0.4961862 0.5687816 +0.4365675 0.4961862 0.5687816 +0.4474232 0.4961862 0.5687816 +0.45727 0.4961862 0.5687816 +0.4662797 0.4961862 0.5687816 +0.4745834 0.4961862 0.5687816 +0.4822838 0.4961862 0.5687816 +0.4894626 0.4961862 0.5687816 +0.4961862 0.4961862 0.5687816 +0.5025087 0.4961862 0.5687816 +0.5084753 0.4961862 0.5687816 +0.514124 0.4961862 0.5687816 +0.519487 0.4961862 0.5687816 +0.5245917 0.4961862 0.5687816 +0.529462 0.4961862 0.5687816 +0.5341183 0.4961862 0.5687816 +0.5385787 0.4961862 0.5687816 +0.5428591 0.4961862 0.5687816 +0.5469733 0.4961862 0.5687816 +0.5509339 0.4961862 0.5687816 +0.5547519 0.4961862 0.5687816 +0.5584371 0.4961862 0.5687816 +0.5619986 0.4961862 0.5687816 +0.5654443 0.4961862 0.5687816 +0.5687816 0.4961862 0.5687816 +0.092819 0.5025087 0.5687816 +0.2262531 0.5025087 0.5687816 +0.2875993 0.5025087 0.5687816 +0.3262122 0.5025087 0.5687816 +0.3544566 0.5025087 0.5687816 +0.3767383 0.5025087 0.5687816 +0.3951413 0.5025087 0.5687816 +0.4108177 0.5025087 0.5687816 +0.4244723 0.5025087 0.5687816 +0.4365675 0.5025087 0.5687816 +0.4474232 0.5025087 0.5687816 +0.45727 0.5025087 0.5687816 +0.4662797 0.5025087 0.5687816 +0.4745834 0.5025087 0.5687816 +0.4822838 0.5025087 0.5687816 +0.4894626 0.5025087 0.5687816 +0.4961862 0.5025087 0.5687816 +0.5025087 0.5025087 0.5687816 +0.5084753 0.5025087 0.5687816 +0.514124 0.5025087 0.5687816 +0.519487 0.5025087 0.5687816 +0.5245917 0.5025087 0.5687816 +0.529462 0.5025087 0.5687816 +0.5341183 0.5025087 0.5687816 +0.5385787 0.5025087 0.5687816 +0.5428591 0.5025087 0.5687816 +0.5469733 0.5025087 0.5687816 +0.5509339 0.5025087 0.5687816 +0.5547519 0.5025087 0.5687816 +0.5584371 0.5025087 0.5687816 +0.5619986 0.5025087 0.5687816 +0.5654443 0.5025087 0.5687816 +0.5687816 0.5025087 0.5687816 +0.092819 0.5084753 0.5687816 +0.2262531 0.5084753 0.5687816 +0.2875993 0.5084753 0.5687816 +0.3262122 0.5084753 0.5687816 +0.3544566 0.5084753 0.5687816 +0.3767383 0.5084753 0.5687816 +0.3951413 0.5084753 0.5687816 +0.4108177 0.5084753 0.5687816 +0.4244723 0.5084753 0.5687816 +0.4365675 0.5084753 0.5687816 +0.4474232 0.5084753 0.5687816 +0.45727 0.5084753 0.5687816 +0.4662797 0.5084753 0.5687816 +0.4745834 0.5084753 0.5687816 +0.4822838 0.5084753 0.5687816 +0.4894626 0.5084753 0.5687816 +0.4961862 0.5084753 0.5687816 +0.5025087 0.5084753 0.5687816 +0.5084753 0.5084753 0.5687816 +0.514124 0.5084753 0.5687816 +0.519487 0.5084753 0.5687816 +0.5245917 0.5084753 0.5687816 +0.529462 0.5084753 0.5687816 +0.5341183 0.5084753 0.5687816 +0.5385787 0.5084753 0.5687816 +0.5428591 0.5084753 0.5687816 +0.5469733 0.5084753 0.5687816 +0.5509339 0.5084753 0.5687816 +0.5547519 0.5084753 0.5687816 +0.5584371 0.5084753 0.5687816 +0.5619986 0.5084753 0.5687816 +0.5654443 0.5084753 0.5687816 +0.5687816 0.5084753 0.5687816 +0.092819 0.514124 0.5687816 +0.2262531 0.514124 0.5687816 +0.2875993 0.514124 0.5687816 +0.3262122 0.514124 0.5687816 +0.3544566 0.514124 0.5687816 +0.3767383 0.514124 0.5687816 +0.3951413 0.514124 0.5687816 +0.4108177 0.514124 0.5687816 +0.4244723 0.514124 0.5687816 +0.4365675 0.514124 0.5687816 +0.4474232 0.514124 0.5687816 +0.45727 0.514124 0.5687816 +0.4662797 0.514124 0.5687816 +0.4745834 0.514124 0.5687816 +0.4822838 0.514124 0.5687816 +0.4894626 0.514124 0.5687816 +0.4961862 0.514124 0.5687816 +0.5025087 0.514124 0.5687816 +0.5084753 0.514124 0.5687816 +0.514124 0.514124 0.5687816 +0.519487 0.514124 0.5687816 +0.5245917 0.514124 0.5687816 +0.529462 0.514124 0.5687816 +0.5341183 0.514124 0.5687816 +0.5385787 0.514124 0.5687816 +0.5428591 0.514124 0.5687816 +0.5469733 0.514124 0.5687816 +0.5509339 0.514124 0.5687816 +0.5547519 0.514124 0.5687816 +0.5584371 0.514124 0.5687816 +0.5619986 0.514124 0.5687816 +0.5654443 0.514124 0.5687816 +0.5687816 0.514124 0.5687816 +0.092819 0.519487 0.5687816 +0.2262531 0.519487 0.5687816 +0.2875993 0.519487 0.5687816 +0.3262122 0.519487 0.5687816 +0.3544566 0.519487 0.5687816 +0.3767383 0.519487 0.5687816 +0.3951413 0.519487 0.5687816 +0.4108177 0.519487 0.5687816 +0.4244723 0.519487 0.5687816 +0.4365675 0.519487 0.5687816 +0.4474232 0.519487 0.5687816 +0.45727 0.519487 0.5687816 +0.4662797 0.519487 0.5687816 +0.4745834 0.519487 0.5687816 +0.4822838 0.519487 0.5687816 +0.4894626 0.519487 0.5687816 +0.4961862 0.519487 0.5687816 +0.5025087 0.519487 0.5687816 +0.5084753 0.519487 0.5687816 +0.514124 0.519487 0.5687816 +0.519487 0.519487 0.5687816 +0.5245917 0.519487 0.5687816 +0.529462 0.519487 0.5687816 +0.5341183 0.519487 0.5687816 +0.5385787 0.519487 0.5687816 +0.5428591 0.519487 0.5687816 +0.5469733 0.519487 0.5687816 +0.5509339 0.519487 0.5687816 +0.5547519 0.519487 0.5687816 +0.5584371 0.519487 0.5687816 +0.5619986 0.519487 0.5687816 +0.5654443 0.519487 0.5687816 +0.5687816 0.519487 0.5687816 +0.092819 0.5245917 0.5687816 +0.2262531 0.5245917 0.5687816 +0.2875993 0.5245917 0.5687816 +0.3262122 0.5245917 0.5687816 +0.3544566 0.5245917 0.5687816 +0.3767383 0.5245917 0.5687816 +0.3951413 0.5245917 0.5687816 +0.4108177 0.5245917 0.5687816 +0.4244723 0.5245917 0.5687816 +0.4365675 0.5245917 0.5687816 +0.4474232 0.5245917 0.5687816 +0.45727 0.5245917 0.5687816 +0.4662797 0.5245917 0.5687816 +0.4745834 0.5245917 0.5687816 +0.4822838 0.5245917 0.5687816 +0.4894626 0.5245917 0.5687816 +0.4961862 0.5245917 0.5687816 +0.5025087 0.5245917 0.5687816 +0.5084753 0.5245917 0.5687816 +0.514124 0.5245917 0.5687816 +0.519487 0.5245917 0.5687816 +0.5245917 0.5245917 0.5687816 +0.529462 0.5245917 0.5687816 +0.5341183 0.5245917 0.5687816 +0.5385787 0.5245917 0.5687816 +0.5428591 0.5245917 0.5687816 +0.5469733 0.5245917 0.5687816 +0.5509339 0.5245917 0.5687816 +0.5547519 0.5245917 0.5687816 +0.5584371 0.5245917 0.5687816 +0.5619986 0.5245917 0.5687816 +0.5654443 0.5245917 0.5687816 +0.5687816 0.5245917 0.5687816 +0.092819 0.529462 0.5687816 +0.2262531 0.529462 0.5687816 +0.2875993 0.529462 0.5687816 +0.3262122 0.529462 0.5687816 +0.3544566 0.529462 0.5687816 +0.3767383 0.529462 0.5687816 +0.3951413 0.529462 0.5687816 +0.4108177 0.529462 0.5687816 +0.4244723 0.529462 0.5687816 +0.4365675 0.529462 0.5687816 +0.4474232 0.529462 0.5687816 +0.45727 0.529462 0.5687816 +0.4662797 0.529462 0.5687816 +0.4745834 0.529462 0.5687816 +0.4822838 0.529462 0.5687816 +0.4894626 0.529462 0.5687816 +0.4961862 0.529462 0.5687816 +0.5025087 0.529462 0.5687816 +0.5084753 0.529462 0.5687816 +0.514124 0.529462 0.5687816 +0.519487 0.529462 0.5687816 +0.5245917 0.529462 0.5687816 +0.529462 0.529462 0.5687816 +0.5341183 0.529462 0.5687816 +0.5385787 0.529462 0.5687816 +0.5428591 0.529462 0.5687816 +0.5469733 0.529462 0.5687816 +0.5509339 0.529462 0.5687816 +0.5547519 0.529462 0.5687816 +0.5584371 0.529462 0.5687816 +0.5619986 0.529462 0.5687816 +0.5654443 0.529462 0.5687816 +0.5687816 0.529462 0.5687816 +0.092819 0.5341183 0.5687816 +0.2262531 0.5341183 0.5687816 +0.2875993 0.5341183 0.5687816 +0.3262122 0.5341183 0.5687816 +0.3544566 0.5341183 0.5687816 +0.3767383 0.5341183 0.5687816 +0.3951413 0.5341183 0.5687816 +0.4108177 0.5341183 0.5687816 +0.4244723 0.5341183 0.5687816 +0.4365675 0.5341183 0.5687816 +0.4474232 0.5341183 0.5687816 +0.45727 0.5341183 0.5687816 +0.4662797 0.5341183 0.5687816 +0.4745834 0.5341183 0.5687816 +0.4822838 0.5341183 0.5687816 +0.4894626 0.5341183 0.5687816 +0.4961862 0.5341183 0.5687816 +0.5025087 0.5341183 0.5687816 +0.5084753 0.5341183 0.5687816 +0.514124 0.5341183 0.5687816 +0.519487 0.5341183 0.5687816 +0.5245917 0.5341183 0.5687816 +0.529462 0.5341183 0.5687816 +0.5341183 0.5341183 0.5687816 +0.5385787 0.5341183 0.5687816 +0.5428591 0.5341183 0.5687816 +0.5469733 0.5341183 0.5687816 +0.5509339 0.5341183 0.5687816 +0.5547519 0.5341183 0.5687816 +0.5584371 0.5341183 0.5687816 +0.5619986 0.5341183 0.5687816 +0.5654443 0.5341183 0.5687816 +0.5687816 0.5341183 0.5687816 +0.092819 0.5385787 0.5687816 +0.2262531 0.5385787 0.5687816 +0.2875993 0.5385787 0.5687816 +0.3262122 0.5385787 0.5687816 +0.3544566 0.5385787 0.5687816 +0.3767383 0.5385787 0.5687816 +0.3951413 0.5385787 0.5687816 +0.4108177 0.5385787 0.5687816 +0.4244723 0.5385787 0.5687816 +0.4365675 0.5385787 0.5687816 +0.4474232 0.5385787 0.5687816 +0.45727 0.5385787 0.5687816 +0.4662797 0.5385787 0.5687816 +0.4745834 0.5385787 0.5687816 +0.4822838 0.5385787 0.5687816 +0.4894626 0.5385787 0.5687816 +0.4961862 0.5385787 0.5687816 +0.5025087 0.5385787 0.5687816 +0.5084753 0.5385787 0.5687816 +0.514124 0.5385787 0.5687816 +0.519487 0.5385787 0.5687816 +0.5245917 0.5385787 0.5687816 +0.529462 0.5385787 0.5687816 +0.5341183 0.5385787 0.5687816 +0.5385787 0.5385787 0.5687816 +0.5428591 0.5385787 0.5687816 +0.5469733 0.5385787 0.5687816 +0.5509339 0.5385787 0.5687816 +0.5547519 0.5385787 0.5687816 +0.5584371 0.5385787 0.5687816 +0.5619986 0.5385787 0.5687816 +0.5654443 0.5385787 0.5687816 +0.5687816 0.5385787 0.5687816 +0.092819 0.5428591 0.5687816 +0.2262531 0.5428591 0.5687816 +0.2875993 0.5428591 0.5687816 +0.3262122 0.5428591 0.5687816 +0.3544566 0.5428591 0.5687816 +0.3767383 0.5428591 0.5687816 +0.3951413 0.5428591 0.5687816 +0.4108177 0.5428591 0.5687816 +0.4244723 0.5428591 0.5687816 +0.4365675 0.5428591 0.5687816 +0.4474232 0.5428591 0.5687816 +0.45727 0.5428591 0.5687816 +0.4662797 0.5428591 0.5687816 +0.4745834 0.5428591 0.5687816 +0.4822838 0.5428591 0.5687816 +0.4894626 0.5428591 0.5687816 +0.4961862 0.5428591 0.5687816 +0.5025087 0.5428591 0.5687816 +0.5084753 0.5428591 0.5687816 +0.514124 0.5428591 0.5687816 +0.519487 0.5428591 0.5687816 +0.5245917 0.5428591 0.5687816 +0.529462 0.5428591 0.5687816 +0.5341183 0.5428591 0.5687816 +0.5385787 0.5428591 0.5687816 +0.5428591 0.5428591 0.5687816 +0.5469733 0.5428591 0.5687816 +0.5509339 0.5428591 0.5687816 +0.5547519 0.5428591 0.5687816 +0.5584371 0.5428591 0.5687816 +0.5619986 0.5428591 0.5687816 +0.5654443 0.5428591 0.5687816 +0.5687816 0.5428591 0.5687816 +0.092819 0.5469733 0.5687816 +0.2262531 0.5469733 0.5687816 +0.2875993 0.5469733 0.5687816 +0.3262122 0.5469733 0.5687816 +0.3544566 0.5469733 0.5687816 +0.3767383 0.5469733 0.5687816 +0.3951413 0.5469733 0.5687816 +0.4108177 0.5469733 0.5687816 +0.4244723 0.5469733 0.5687816 +0.4365675 0.5469733 0.5687816 +0.4474232 0.5469733 0.5687816 +0.45727 0.5469733 0.5687816 +0.4662797 0.5469733 0.5687816 +0.4745834 0.5469733 0.5687816 +0.4822838 0.5469733 0.5687816 +0.4894626 0.5469733 0.5687816 +0.4961862 0.5469733 0.5687816 +0.5025087 0.5469733 0.5687816 +0.5084753 0.5469733 0.5687816 +0.514124 0.5469733 0.5687816 +0.519487 0.5469733 0.5687816 +0.5245917 0.5469733 0.5687816 +0.529462 0.5469733 0.5687816 +0.5341183 0.5469733 0.5687816 +0.5385787 0.5469733 0.5687816 +0.5428591 0.5469733 0.5687816 +0.5469733 0.5469733 0.5687816 +0.5509339 0.5469733 0.5687816 +0.5547519 0.5469733 0.5687816 +0.5584371 0.5469733 0.5687816 +0.5619986 0.5469733 0.5687816 +0.5654443 0.5469733 0.5687816 +0.5687816 0.5469733 0.5687816 +0.092819 0.5509339 0.5687816 +0.2262531 0.5509339 0.5687816 +0.2875993 0.5509339 0.5687816 +0.3262122 0.5509339 0.5687816 +0.3544566 0.5509339 0.5687816 +0.3767383 0.5509339 0.5687816 +0.3951413 0.5509339 0.5687816 +0.4108177 0.5509339 0.5687816 +0.4244723 0.5509339 0.5687816 +0.4365675 0.5509339 0.5687816 +0.4474232 0.5509339 0.5687816 +0.45727 0.5509339 0.5687816 +0.4662797 0.5509339 0.5687816 +0.4745834 0.5509339 0.5687816 +0.4822838 0.5509339 0.5687816 +0.4894626 0.5509339 0.5687816 +0.4961862 0.5509339 0.5687816 +0.5025087 0.5509339 0.5687816 +0.5084753 0.5509339 0.5687816 +0.514124 0.5509339 0.5687816 +0.519487 0.5509339 0.5687816 +0.5245917 0.5509339 0.5687816 +0.529462 0.5509339 0.5687816 +0.5341183 0.5509339 0.5687816 +0.5385787 0.5509339 0.5687816 +0.5428591 0.5509339 0.5687816 +0.5469733 0.5509339 0.5687816 +0.5509339 0.5509339 0.5687816 +0.5547519 0.5509339 0.5687816 +0.5584371 0.5509339 0.5687816 +0.5619986 0.5509339 0.5687816 +0.5654443 0.5509339 0.5687816 +0.5687816 0.5509339 0.5687816 +0.092819 0.5547519 0.5687816 +0.2262531 0.5547519 0.5687816 +0.2875993 0.5547519 0.5687816 +0.3262122 0.5547519 0.5687816 +0.3544566 0.5547519 0.5687816 +0.3767383 0.5547519 0.5687816 +0.3951413 0.5547519 0.5687816 +0.4108177 0.5547519 0.5687816 +0.4244723 0.5547519 0.5687816 +0.4365675 0.5547519 0.5687816 +0.4474232 0.5547519 0.5687816 +0.45727 0.5547519 0.5687816 +0.4662797 0.5547519 0.5687816 +0.4745834 0.5547519 0.5687816 +0.4822838 0.5547519 0.5687816 +0.4894626 0.5547519 0.5687816 +0.4961862 0.5547519 0.5687816 +0.5025087 0.5547519 0.5687816 +0.5084753 0.5547519 0.5687816 +0.514124 0.5547519 0.5687816 +0.519487 0.5547519 0.5687816 +0.5245917 0.5547519 0.5687816 +0.529462 0.5547519 0.5687816 +0.5341183 0.5547519 0.5687816 +0.5385787 0.5547519 0.5687816 +0.5428591 0.5547519 0.5687816 +0.5469733 0.5547519 0.5687816 +0.5509339 0.5547519 0.5687816 +0.5547519 0.5547519 0.5687816 +0.5584371 0.5547519 0.5687816 +0.5619986 0.5547519 0.5687816 +0.5654443 0.5547519 0.5687816 +0.5687816 0.5547519 0.5687816 +0.092819 0.5584371 0.5687816 +0.2262531 0.5584371 0.5687816 +0.2875993 0.5584371 0.5687816 +0.3262122 0.5584371 0.5687816 +0.3544566 0.5584371 0.5687816 +0.3767383 0.5584371 0.5687816 +0.3951413 0.5584371 0.5687816 +0.4108177 0.5584371 0.5687816 +0.4244723 0.5584371 0.5687816 +0.4365675 0.5584371 0.5687816 +0.4474232 0.5584371 0.5687816 +0.45727 0.5584371 0.5687816 +0.4662797 0.5584371 0.5687816 +0.4745834 0.5584371 0.5687816 +0.4822838 0.5584371 0.5687816 +0.4894626 0.5584371 0.5687816 +0.4961862 0.5584371 0.5687816 +0.5025087 0.5584371 0.5687816 +0.5084753 0.5584371 0.5687816 +0.514124 0.5584371 0.5687816 +0.519487 0.5584371 0.5687816 +0.5245917 0.5584371 0.5687816 +0.529462 0.5584371 0.5687816 +0.5341183 0.5584371 0.5687816 +0.5385787 0.5584371 0.5687816 +0.5428591 0.5584371 0.5687816 +0.5469733 0.5584371 0.5687816 +0.5509339 0.5584371 0.5687816 +0.5547519 0.5584371 0.5687816 +0.5584371 0.5584371 0.5687816 +0.5619986 0.5584371 0.5687816 +0.5654443 0.5584371 0.5687816 +0.5687816 0.5584371 0.5687816 +0.092819 0.5619986 0.5687816 +0.2262531 0.5619986 0.5687816 +0.2875993 0.5619986 0.5687816 +0.3262122 0.5619986 0.5687816 +0.3544566 0.5619986 0.5687816 +0.3767383 0.5619986 0.5687816 +0.3951413 0.5619986 0.5687816 +0.4108177 0.5619986 0.5687816 +0.4244723 0.5619986 0.5687816 +0.4365675 0.5619986 0.5687816 +0.4474232 0.5619986 0.5687816 +0.45727 0.5619986 0.5687816 +0.4662797 0.5619986 0.5687816 +0.4745834 0.5619986 0.5687816 +0.4822838 0.5619986 0.5687816 +0.4894626 0.5619986 0.5687816 +0.4961862 0.5619986 0.5687816 +0.5025087 0.5619986 0.5687816 +0.5084753 0.5619986 0.5687816 +0.514124 0.5619986 0.5687816 +0.519487 0.5619986 0.5687816 +0.5245917 0.5619986 0.5687816 +0.529462 0.5619986 0.5687816 +0.5341183 0.5619986 0.5687816 +0.5385787 0.5619986 0.5687816 +0.5428591 0.5619986 0.5687816 +0.5469733 0.5619986 0.5687816 +0.5509339 0.5619986 0.5687816 +0.5547519 0.5619986 0.5687816 +0.5584371 0.5619986 0.5687816 +0.5619986 0.5619986 0.5687816 +0.5654443 0.5619986 0.5687816 +0.5687816 0.5619986 0.5687816 +0.092819 0.5654443 0.5687816 +0.2262531 0.5654443 0.5687816 +0.2875993 0.5654443 0.5687816 +0.3262122 0.5654443 0.5687816 +0.3544566 0.5654443 0.5687816 +0.3767383 0.5654443 0.5687816 +0.3951413 0.5654443 0.5687816 +0.4108177 0.5654443 0.5687816 +0.4244723 0.5654443 0.5687816 +0.4365675 0.5654443 0.5687816 +0.4474232 0.5654443 0.5687816 +0.45727 0.5654443 0.5687816 +0.4662797 0.5654443 0.5687816 +0.4745834 0.5654443 0.5687816 +0.4822838 0.5654443 0.5687816 +0.4894626 0.5654443 0.5687816 +0.4961862 0.5654443 0.5687816 +0.5025087 0.5654443 0.5687816 +0.5084753 0.5654443 0.5687816 +0.514124 0.5654443 0.5687816 +0.519487 0.5654443 0.5687816 +0.5245917 0.5654443 0.5687816 +0.529462 0.5654443 0.5687816 +0.5341183 0.5654443 0.5687816 +0.5385787 0.5654443 0.5687816 +0.5428591 0.5654443 0.5687816 +0.5469733 0.5654443 0.5687816 +0.5509339 0.5654443 0.5687816 +0.5547519 0.5654443 0.5687816 +0.5584371 0.5654443 0.5687816 +0.5619986 0.5654443 0.5687816 +0.5654443 0.5654443 0.5687816 +0.5687816 0.5654443 0.5687816 +0.092819 0.5687816 0.5687816 +0.2262531 0.5687816 0.5687816 +0.2875993 0.5687816 0.5687816 +0.3262122 0.5687816 0.5687816 +0.3544566 0.5687816 0.5687816 +0.3767383 0.5687816 0.5687816 +0.3951413 0.5687816 0.5687816 +0.4108177 0.5687816 0.5687816 +0.4244723 0.5687816 0.5687816 +0.4365675 0.5687816 0.5687816 +0.4474232 0.5687816 0.5687816 +0.45727 0.5687816 0.5687816 +0.4662797 0.5687816 0.5687816 +0.4745834 0.5687816 0.5687816 +0.4822838 0.5687816 0.5687816 +0.4894626 0.5687816 0.5687816 +0.4961862 0.5687816 0.5687816 +0.5025087 0.5687816 0.5687816 +0.5084753 0.5687816 0.5687816 +0.514124 0.5687816 0.5687816 +0.519487 0.5687816 0.5687816 +0.5245917 0.5687816 0.5687816 +0.529462 0.5687816 0.5687816 +0.5341183 0.5687816 0.5687816 +0.5385787 0.5687816 0.5687816 +0.5428591 0.5687816 0.5687816 +0.5469733 0.5687816 0.5687816 +0.5509339 0.5687816 0.5687816 +0.5547519 0.5687816 0.5687816 +0.5584371 0.5687816 0.5687816 +0.5619986 0.5687816 0.5687816 +0.5654443 0.5687816 0.5687816 +0.5687816 0.5687816 0.5687816 diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Linear to Unity Log r1.cube.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Linear to Unity Log r1.cube.meta new file mode 100644 index 0000000..34a48fb --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Linear to Unity Log r1.cube.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aaf1ed25614e1134daed0822f948ebb8 +timeCreated: 1496826837 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Linear to sRGB r1.cube b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Linear to sRGB r1.cube new file mode 100644 index 0000000..57c17db --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Linear to sRGB r1.cube @@ -0,0 +1,35941 @@ +TITLE "Linear to sRGB r1" +LUT_3D_SIZE 33 +DOMAIN_MIN 0 0 0 +DOMAIN_MAX 1 1 1 +0 0 0 +0.1939468 0 0 +0.2773041 0 0 +0.3384659 0 0 +0.3885728 0 0 +0.4317928 0 0 +0.470214 0 0 +0.5050551 0 0 +0.5370987 0 0 +0.5668815 0 0 +0.5947903 0 0 +0.6211144 0 0 +0.6460766 0 0 +0.6698526 0 0 +0.6925839 0 0 +0.7143866 0 0 +0.7353569 0 0 +0.7555758 0 0 +0.7751122 0 0 +0.7940252 0 0 +0.8123661 0 0 +0.8301795 0 0 +0.8475045 0 0 +0.8643761 0 0 +0.880825 0 0 +0.8968787 0 0 +0.9125621 0 0 +0.9278974 0 0 +0.9429048 0 0 +0.9576028 0 0 +0.9720079 0 0 +0.9861357 0 0 +1 0 0 +0 0.1939468 0 +0.1939468 0.1939468 0 +0.2773041 0.1939468 0 +0.3384659 0.1939468 0 +0.3885728 0.1939468 0 +0.4317928 0.1939468 0 +0.470214 0.1939468 0 +0.5050551 0.1939468 0 +0.5370987 0.1939468 0 +0.5668815 0.1939468 0 +0.5947903 0.1939468 0 +0.6211144 0.1939468 0 +0.6460766 0.1939468 0 +0.6698526 0.1939468 0 +0.6925839 0.1939468 0 +0.7143866 0.1939468 0 +0.7353569 0.1939468 0 +0.7555758 0.1939468 0 +0.7751122 0.1939468 0 +0.7940252 0.1939468 0 +0.8123661 0.1939468 0 +0.8301795 0.1939468 0 +0.8475045 0.1939468 0 +0.8643761 0.1939468 0 +0.880825 0.1939468 0 +0.8968787 0.1939468 0 +0.9125621 0.1939468 0 +0.9278974 0.1939468 0 +0.9429048 0.1939468 0 +0.9576028 0.1939468 0 +0.9720079 0.1939468 0 +0.9861357 0.1939468 0 +1 0.1939468 0 +0 0.2773041 0 +0.1939468 0.2773041 0 +0.2773041 0.2773041 0 +0.3384659 0.2773041 0 +0.3885728 0.2773041 0 +0.4317928 0.2773041 0 +0.470214 0.2773041 0 +0.5050551 0.2773041 0 +0.5370987 0.2773041 0 +0.5668815 0.2773041 0 +0.5947903 0.2773041 0 +0.6211144 0.2773041 0 +0.6460766 0.2773041 0 +0.6698526 0.2773041 0 +0.6925839 0.2773041 0 +0.7143866 0.2773041 0 +0.7353569 0.2773041 0 +0.7555758 0.2773041 0 +0.7751122 0.2773041 0 +0.7940252 0.2773041 0 +0.8123661 0.2773041 0 +0.8301795 0.2773041 0 +0.8475045 0.2773041 0 +0.8643761 0.2773041 0 +0.880825 0.2773041 0 +0.8968787 0.2773041 0 +0.9125621 0.2773041 0 +0.9278974 0.2773041 0 +0.9429048 0.2773041 0 +0.9576028 0.2773041 0 +0.9720079 0.2773041 0 +0.9861357 0.2773041 0 +1 0.2773041 0 +0 0.3384659 0 +0.1939468 0.3384659 0 +0.2773041 0.3384659 0 +0.3384659 0.3384659 0 +0.3885728 0.3384659 0 +0.4317928 0.3384659 0 +0.470214 0.3384659 0 +0.5050551 0.3384659 0 +0.5370987 0.3384659 0 +0.5668815 0.3384659 0 +0.5947903 0.3384659 0 +0.6211144 0.3384659 0 +0.6460766 0.3384659 0 +0.6698526 0.3384659 0 +0.6925839 0.3384659 0 +0.7143866 0.3384659 0 +0.7353569 0.3384659 0 +0.7555758 0.3384659 0 +0.7751122 0.3384659 0 +0.7940252 0.3384659 0 +0.8123661 0.3384659 0 +0.8301795 0.3384659 0 +0.8475045 0.3384659 0 +0.8643761 0.3384659 0 +0.880825 0.3384659 0 +0.8968787 0.3384659 0 +0.9125621 0.3384659 0 +0.9278974 0.3384659 0 +0.9429048 0.3384659 0 +0.9576028 0.3384659 0 +0.9720079 0.3384659 0 +0.9861357 0.3384659 0 +1 0.3384659 0 +0 0.3885728 0 +0.1939468 0.3885728 0 +0.2773041 0.3885728 0 +0.3384659 0.3885728 0 +0.3885728 0.3885728 0 +0.4317928 0.3885728 0 +0.470214 0.3885728 0 +0.5050551 0.3885728 0 +0.5370987 0.3885728 0 +0.5668815 0.3885728 0 +0.5947903 0.3885728 0 +0.6211144 0.3885728 0 +0.6460766 0.3885728 0 +0.6698526 0.3885728 0 +0.6925839 0.3885728 0 +0.7143866 0.3885728 0 +0.7353569 0.3885728 0 +0.7555758 0.3885728 0 +0.7751122 0.3885728 0 +0.7940252 0.3885728 0 +0.8123661 0.3885728 0 +0.8301795 0.3885728 0 +0.8475045 0.3885728 0 +0.8643761 0.3885728 0 +0.880825 0.3885728 0 +0.8968787 0.3885728 0 +0.9125621 0.3885728 0 +0.9278974 0.3885728 0 +0.9429048 0.3885728 0 +0.9576028 0.3885728 0 +0.9720079 0.3885728 0 +0.9861357 0.3885728 0 +1 0.3885728 0 +0 0.4317928 0 +0.1939468 0.4317928 0 +0.2773041 0.4317928 0 +0.3384659 0.4317928 0 +0.3885728 0.4317928 0 +0.4317928 0.4317928 0 +0.470214 0.4317928 0 +0.5050551 0.4317928 0 +0.5370987 0.4317928 0 +0.5668815 0.4317928 0 +0.5947903 0.4317928 0 +0.6211144 0.4317928 0 +0.6460766 0.4317928 0 +0.6698526 0.4317928 0 +0.6925839 0.4317928 0 +0.7143866 0.4317928 0 +0.7353569 0.4317928 0 +0.7555758 0.4317928 0 +0.7751122 0.4317928 0 +0.7940252 0.4317928 0 +0.8123661 0.4317928 0 +0.8301795 0.4317928 0 +0.8475045 0.4317928 0 +0.8643761 0.4317928 0 +0.880825 0.4317928 0 +0.8968787 0.4317928 0 +0.9125621 0.4317928 0 +0.9278974 0.4317928 0 +0.9429048 0.4317928 0 +0.9576028 0.4317928 0 +0.9720079 0.4317928 0 +0.9861357 0.4317928 0 +1 0.4317928 0 +0 0.470214 0 +0.1939468 0.470214 0 +0.2773041 0.470214 0 +0.3384659 0.470214 0 +0.3885728 0.470214 0 +0.4317928 0.470214 0 +0.470214 0.470214 0 +0.5050551 0.470214 0 +0.5370987 0.470214 0 +0.5668815 0.470214 0 +0.5947903 0.470214 0 +0.6211144 0.470214 0 +0.6460766 0.470214 0 +0.6698526 0.470214 0 +0.6925839 0.470214 0 +0.7143866 0.470214 0 +0.7353569 0.470214 0 +0.7555758 0.470214 0 +0.7751122 0.470214 0 +0.7940252 0.470214 0 +0.8123661 0.470214 0 +0.8301795 0.470214 0 +0.8475045 0.470214 0 +0.8643761 0.470214 0 +0.880825 0.470214 0 +0.8968787 0.470214 0 +0.9125621 0.470214 0 +0.9278974 0.470214 0 +0.9429048 0.470214 0 +0.9576028 0.470214 0 +0.9720079 0.470214 0 +0.9861357 0.470214 0 +1 0.470214 0 +0 0.5050551 0 +0.1939468 0.5050551 0 +0.2773041 0.5050551 0 +0.3384659 0.5050551 0 +0.3885728 0.5050551 0 +0.4317928 0.5050551 0 +0.470214 0.5050551 0 +0.5050551 0.5050551 0 +0.5370987 0.5050551 0 +0.5668815 0.5050551 0 +0.5947903 0.5050551 0 +0.6211144 0.5050551 0 +0.6460766 0.5050551 0 +0.6698526 0.5050551 0 +0.6925839 0.5050551 0 +0.7143866 0.5050551 0 +0.7353569 0.5050551 0 +0.7555758 0.5050551 0 +0.7751122 0.5050551 0 +0.7940252 0.5050551 0 +0.8123661 0.5050551 0 +0.8301795 0.5050551 0 +0.8475045 0.5050551 0 +0.8643761 0.5050551 0 +0.880825 0.5050551 0 +0.8968787 0.5050551 0 +0.9125621 0.5050551 0 +0.9278974 0.5050551 0 +0.9429048 0.5050551 0 +0.9576028 0.5050551 0 +0.9720079 0.5050551 0 +0.9861357 0.5050551 0 +1 0.5050551 0 +0 0.5370987 0 +0.1939468 0.5370987 0 +0.2773041 0.5370987 0 +0.3384659 0.5370987 0 +0.3885728 0.5370987 0 +0.4317928 0.5370987 0 +0.470214 0.5370987 0 +0.5050551 0.5370987 0 +0.5370987 0.5370987 0 +0.5668815 0.5370987 0 +0.5947903 0.5370987 0 +0.6211144 0.5370987 0 +0.6460766 0.5370987 0 +0.6698526 0.5370987 0 +0.6925839 0.5370987 0 +0.7143866 0.5370987 0 +0.7353569 0.5370987 0 +0.7555758 0.5370987 0 +0.7751122 0.5370987 0 +0.7940252 0.5370987 0 +0.8123661 0.5370987 0 +0.8301795 0.5370987 0 +0.8475045 0.5370987 0 +0.8643761 0.5370987 0 +0.880825 0.5370987 0 +0.8968787 0.5370987 0 +0.9125621 0.5370987 0 +0.9278974 0.5370987 0 +0.9429048 0.5370987 0 +0.9576028 0.5370987 0 +0.9720079 0.5370987 0 +0.9861357 0.5370987 0 +1 0.5370987 0 +0 0.5668815 0 +0.1939468 0.5668815 0 +0.2773041 0.5668815 0 +0.3384659 0.5668815 0 +0.3885728 0.5668815 0 +0.4317928 0.5668815 0 +0.470214 0.5668815 0 +0.5050551 0.5668815 0 +0.5370987 0.5668815 0 +0.5668815 0.5668815 0 +0.5947903 0.5668815 0 +0.6211144 0.5668815 0 +0.6460766 0.5668815 0 +0.6698526 0.5668815 0 +0.6925839 0.5668815 0 +0.7143866 0.5668815 0 +0.7353569 0.5668815 0 +0.7555758 0.5668815 0 +0.7751122 0.5668815 0 +0.7940252 0.5668815 0 +0.8123661 0.5668815 0 +0.8301795 0.5668815 0 +0.8475045 0.5668815 0 +0.8643761 0.5668815 0 +0.880825 0.5668815 0 +0.8968787 0.5668815 0 +0.9125621 0.5668815 0 +0.9278974 0.5668815 0 +0.9429048 0.5668815 0 +0.9576028 0.5668815 0 +0.9720079 0.5668815 0 +0.9861357 0.5668815 0 +1 0.5668815 0 +0 0.5947903 0 +0.1939468 0.5947903 0 +0.2773041 0.5947903 0 +0.3384659 0.5947903 0 +0.3885728 0.5947903 0 +0.4317928 0.5947903 0 +0.470214 0.5947903 0 +0.5050551 0.5947903 0 +0.5370987 0.5947903 0 +0.5668815 0.5947903 0 +0.5947903 0.5947903 0 +0.6211144 0.5947903 0 +0.6460766 0.5947903 0 +0.6698526 0.5947903 0 +0.6925839 0.5947903 0 +0.7143866 0.5947903 0 +0.7353569 0.5947903 0 +0.7555758 0.5947903 0 +0.7751122 0.5947903 0 +0.7940252 0.5947903 0 +0.8123661 0.5947903 0 +0.8301795 0.5947903 0 +0.8475045 0.5947903 0 +0.8643761 0.5947903 0 +0.880825 0.5947903 0 +0.8968787 0.5947903 0 +0.9125621 0.5947903 0 +0.9278974 0.5947903 0 +0.9429048 0.5947903 0 +0.9576028 0.5947903 0 +0.9720079 0.5947903 0 +0.9861357 0.5947903 0 +1 0.5947903 0 +0 0.6211144 0 +0.1939468 0.6211144 0 +0.2773041 0.6211144 0 +0.3384659 0.6211144 0 +0.3885728 0.6211144 0 +0.4317928 0.6211144 0 +0.470214 0.6211144 0 +0.5050551 0.6211144 0 +0.5370987 0.6211144 0 +0.5668815 0.6211144 0 +0.5947903 0.6211144 0 +0.6211144 0.6211144 0 +0.6460766 0.6211144 0 +0.6698526 0.6211144 0 +0.6925839 0.6211144 0 +0.7143866 0.6211144 0 +0.7353569 0.6211144 0 +0.7555758 0.6211144 0 +0.7751122 0.6211144 0 +0.7940252 0.6211144 0 +0.8123661 0.6211144 0 +0.8301795 0.6211144 0 +0.8475045 0.6211144 0 +0.8643761 0.6211144 0 +0.880825 0.6211144 0 +0.8968787 0.6211144 0 +0.9125621 0.6211144 0 +0.9278974 0.6211144 0 +0.9429048 0.6211144 0 +0.9576028 0.6211144 0 +0.9720079 0.6211144 0 +0.9861357 0.6211144 0 +1 0.6211144 0 +0 0.6460766 0 +0.1939468 0.6460766 0 +0.2773041 0.6460766 0 +0.3384659 0.6460766 0 +0.3885728 0.6460766 0 +0.4317928 0.6460766 0 +0.470214 0.6460766 0 +0.5050551 0.6460766 0 +0.5370987 0.6460766 0 +0.5668815 0.6460766 0 +0.5947903 0.6460766 0 +0.6211144 0.6460766 0 +0.6460766 0.6460766 0 +0.6698526 0.6460766 0 +0.6925839 0.6460766 0 +0.7143866 0.6460766 0 +0.7353569 0.6460766 0 +0.7555758 0.6460766 0 +0.7751122 0.6460766 0 +0.7940252 0.6460766 0 +0.8123661 0.6460766 0 +0.8301795 0.6460766 0 +0.8475045 0.6460766 0 +0.8643761 0.6460766 0 +0.880825 0.6460766 0 +0.8968787 0.6460766 0 +0.9125621 0.6460766 0 +0.9278974 0.6460766 0 +0.9429048 0.6460766 0 +0.9576028 0.6460766 0 +0.9720079 0.6460766 0 +0.9861357 0.6460766 0 +1 0.6460766 0 +0 0.6698526 0 +0.1939468 0.6698526 0 +0.2773041 0.6698526 0 +0.3384659 0.6698526 0 +0.3885728 0.6698526 0 +0.4317928 0.6698526 0 +0.470214 0.6698526 0 +0.5050551 0.6698526 0 +0.5370987 0.6698526 0 +0.5668815 0.6698526 0 +0.5947903 0.6698526 0 +0.6211144 0.6698526 0 +0.6460766 0.6698526 0 +0.6698526 0.6698526 0 +0.6925839 0.6698526 0 +0.7143866 0.6698526 0 +0.7353569 0.6698526 0 +0.7555758 0.6698526 0 +0.7751122 0.6698526 0 +0.7940252 0.6698526 0 +0.8123661 0.6698526 0 +0.8301795 0.6698526 0 +0.8475045 0.6698526 0 +0.8643761 0.6698526 0 +0.880825 0.6698526 0 +0.8968787 0.6698526 0 +0.9125621 0.6698526 0 +0.9278974 0.6698526 0 +0.9429048 0.6698526 0 +0.9576028 0.6698526 0 +0.9720079 0.6698526 0 +0.9861357 0.6698526 0 +1 0.6698526 0 +0 0.6925839 0 +0.1939468 0.6925839 0 +0.2773041 0.6925839 0 +0.3384659 0.6925839 0 +0.3885728 0.6925839 0 +0.4317928 0.6925839 0 +0.470214 0.6925839 0 +0.5050551 0.6925839 0 +0.5370987 0.6925839 0 +0.5668815 0.6925839 0 +0.5947903 0.6925839 0 +0.6211144 0.6925839 0 +0.6460766 0.6925839 0 +0.6698526 0.6925839 0 +0.6925839 0.6925839 0 +0.7143866 0.6925839 0 +0.7353569 0.6925839 0 +0.7555758 0.6925839 0 +0.7751122 0.6925839 0 +0.7940252 0.6925839 0 +0.8123661 0.6925839 0 +0.8301795 0.6925839 0 +0.8475045 0.6925839 0 +0.8643761 0.6925839 0 +0.880825 0.6925839 0 +0.8968787 0.6925839 0 +0.9125621 0.6925839 0 +0.9278974 0.6925839 0 +0.9429048 0.6925839 0 +0.9576028 0.6925839 0 +0.9720079 0.6925839 0 +0.9861357 0.6925839 0 +1 0.6925839 0 +0 0.7143866 0 +0.1939468 0.7143866 0 +0.2773041 0.7143866 0 +0.3384659 0.7143866 0 +0.3885728 0.7143866 0 +0.4317928 0.7143866 0 +0.470214 0.7143866 0 +0.5050551 0.7143866 0 +0.5370987 0.7143866 0 +0.5668815 0.7143866 0 +0.5947903 0.7143866 0 +0.6211144 0.7143866 0 +0.6460766 0.7143866 0 +0.6698526 0.7143866 0 +0.6925839 0.7143866 0 +0.7143866 0.7143866 0 +0.7353569 0.7143866 0 +0.7555758 0.7143866 0 +0.7751122 0.7143866 0 +0.7940252 0.7143866 0 +0.8123661 0.7143866 0 +0.8301795 0.7143866 0 +0.8475045 0.7143866 0 +0.8643761 0.7143866 0 +0.880825 0.7143866 0 +0.8968787 0.7143866 0 +0.9125621 0.7143866 0 +0.9278974 0.7143866 0 +0.9429048 0.7143866 0 +0.9576028 0.7143866 0 +0.9720079 0.7143866 0 +0.9861357 0.7143866 0 +1 0.7143866 0 +0 0.7353569 0 +0.1939468 0.7353569 0 +0.2773041 0.7353569 0 +0.3384659 0.7353569 0 +0.3885728 0.7353569 0 +0.4317928 0.7353569 0 +0.470214 0.7353569 0 +0.5050551 0.7353569 0 +0.5370987 0.7353569 0 +0.5668815 0.7353569 0 +0.5947903 0.7353569 0 +0.6211144 0.7353569 0 +0.6460766 0.7353569 0 +0.6698526 0.7353569 0 +0.6925839 0.7353569 0 +0.7143866 0.7353569 0 +0.7353569 0.7353569 0 +0.7555758 0.7353569 0 +0.7751122 0.7353569 0 +0.7940252 0.7353569 0 +0.8123661 0.7353569 0 +0.8301795 0.7353569 0 +0.8475045 0.7353569 0 +0.8643761 0.7353569 0 +0.880825 0.7353569 0 +0.8968787 0.7353569 0 +0.9125621 0.7353569 0 +0.9278974 0.7353569 0 +0.9429048 0.7353569 0 +0.9576028 0.7353569 0 +0.9720079 0.7353569 0 +0.9861357 0.7353569 0 +1 0.7353569 0 +0 0.7555758 0 +0.1939468 0.7555758 0 +0.2773041 0.7555758 0 +0.3384659 0.7555758 0 +0.3885728 0.7555758 0 +0.4317928 0.7555758 0 +0.470214 0.7555758 0 +0.5050551 0.7555758 0 +0.5370987 0.7555758 0 +0.5668815 0.7555758 0 +0.5947903 0.7555758 0 +0.6211144 0.7555758 0 +0.6460766 0.7555758 0 +0.6698526 0.7555758 0 +0.6925839 0.7555758 0 +0.7143866 0.7555758 0 +0.7353569 0.7555758 0 +0.7555758 0.7555758 0 +0.7751122 0.7555758 0 +0.7940252 0.7555758 0 +0.8123661 0.7555758 0 +0.8301795 0.7555758 0 +0.8475045 0.7555758 0 +0.8643761 0.7555758 0 +0.880825 0.7555758 0 +0.8968787 0.7555758 0 +0.9125621 0.7555758 0 +0.9278974 0.7555758 0 +0.9429048 0.7555758 0 +0.9576028 0.7555758 0 +0.9720079 0.7555758 0 +0.9861357 0.7555758 0 +1 0.7555758 0 +0 0.7751122 0 +0.1939468 0.7751122 0 +0.2773041 0.7751122 0 +0.3384659 0.7751122 0 +0.3885728 0.7751122 0 +0.4317928 0.7751122 0 +0.470214 0.7751122 0 +0.5050551 0.7751122 0 +0.5370987 0.7751122 0 +0.5668815 0.7751122 0 +0.5947903 0.7751122 0 +0.6211144 0.7751122 0 +0.6460766 0.7751122 0 +0.6698526 0.7751122 0 +0.6925839 0.7751122 0 +0.7143866 0.7751122 0 +0.7353569 0.7751122 0 +0.7555758 0.7751122 0 +0.7751122 0.7751122 0 +0.7940252 0.7751122 0 +0.8123661 0.7751122 0 +0.8301795 0.7751122 0 +0.8475045 0.7751122 0 +0.8643761 0.7751122 0 +0.880825 0.7751122 0 +0.8968787 0.7751122 0 +0.9125621 0.7751122 0 +0.9278974 0.7751122 0 +0.9429048 0.7751122 0 +0.9576028 0.7751122 0 +0.9720079 0.7751122 0 +0.9861357 0.7751122 0 +1 0.7751122 0 +0 0.7940252 0 +0.1939468 0.7940252 0 +0.2773041 0.7940252 0 +0.3384659 0.7940252 0 +0.3885728 0.7940252 0 +0.4317928 0.7940252 0 +0.470214 0.7940252 0 +0.5050551 0.7940252 0 +0.5370987 0.7940252 0 +0.5668815 0.7940252 0 +0.5947903 0.7940252 0 +0.6211144 0.7940252 0 +0.6460766 0.7940252 0 +0.6698526 0.7940252 0 +0.6925839 0.7940252 0 +0.7143866 0.7940252 0 +0.7353569 0.7940252 0 +0.7555758 0.7940252 0 +0.7751122 0.7940252 0 +0.7940252 0.7940252 0 +0.8123661 0.7940252 0 +0.8301795 0.7940252 0 +0.8475045 0.7940252 0 +0.8643761 0.7940252 0 +0.880825 0.7940252 0 +0.8968787 0.7940252 0 +0.9125621 0.7940252 0 +0.9278974 0.7940252 0 +0.9429048 0.7940252 0 +0.9576028 0.7940252 0 +0.9720079 0.7940252 0 +0.9861357 0.7940252 0 +1 0.7940252 0 +0 0.8123661 0 +0.1939468 0.8123661 0 +0.2773041 0.8123661 0 +0.3384659 0.8123661 0 +0.3885728 0.8123661 0 +0.4317928 0.8123661 0 +0.470214 0.8123661 0 +0.5050551 0.8123661 0 +0.5370987 0.8123661 0 +0.5668815 0.8123661 0 +0.5947903 0.8123661 0 +0.6211144 0.8123661 0 +0.6460766 0.8123661 0 +0.6698526 0.8123661 0 +0.6925839 0.8123661 0 +0.7143866 0.8123661 0 +0.7353569 0.8123661 0 +0.7555758 0.8123661 0 +0.7751122 0.8123661 0 +0.7940252 0.8123661 0 +0.8123661 0.8123661 0 +0.8301795 0.8123661 0 +0.8475045 0.8123661 0 +0.8643761 0.8123661 0 +0.880825 0.8123661 0 +0.8968787 0.8123661 0 +0.9125621 0.8123661 0 +0.9278974 0.8123661 0 +0.9429048 0.8123661 0 +0.9576028 0.8123661 0 +0.9720079 0.8123661 0 +0.9861357 0.8123661 0 +1 0.8123661 0 +0 0.8301795 0 +0.1939468 0.8301795 0 +0.2773041 0.8301795 0 +0.3384659 0.8301795 0 +0.3885728 0.8301795 0 +0.4317928 0.8301795 0 +0.470214 0.8301795 0 +0.5050551 0.8301795 0 +0.5370987 0.8301795 0 +0.5668815 0.8301795 0 +0.5947903 0.8301795 0 +0.6211144 0.8301795 0 +0.6460766 0.8301795 0 +0.6698526 0.8301795 0 +0.6925839 0.8301795 0 +0.7143866 0.8301795 0 +0.7353569 0.8301795 0 +0.7555758 0.8301795 0 +0.7751122 0.8301795 0 +0.7940252 0.8301795 0 +0.8123661 0.8301795 0 +0.8301795 0.8301795 0 +0.8475045 0.8301795 0 +0.8643761 0.8301795 0 +0.880825 0.8301795 0 +0.8968787 0.8301795 0 +0.9125621 0.8301795 0 +0.9278974 0.8301795 0 +0.9429048 0.8301795 0 +0.9576028 0.8301795 0 +0.9720079 0.8301795 0 +0.9861357 0.8301795 0 +1 0.8301795 0 +0 0.8475045 0 +0.1939468 0.8475045 0 +0.2773041 0.8475045 0 +0.3384659 0.8475045 0 +0.3885728 0.8475045 0 +0.4317928 0.8475045 0 +0.470214 0.8475045 0 +0.5050551 0.8475045 0 +0.5370987 0.8475045 0 +0.5668815 0.8475045 0 +0.5947903 0.8475045 0 +0.6211144 0.8475045 0 +0.6460766 0.8475045 0 +0.6698526 0.8475045 0 +0.6925839 0.8475045 0 +0.7143866 0.8475045 0 +0.7353569 0.8475045 0 +0.7555758 0.8475045 0 +0.7751122 0.8475045 0 +0.7940252 0.8475045 0 +0.8123661 0.8475045 0 +0.8301795 0.8475045 0 +0.8475045 0.8475045 0 +0.8643761 0.8475045 0 +0.880825 0.8475045 0 +0.8968787 0.8475045 0 +0.9125621 0.8475045 0 +0.9278974 0.8475045 0 +0.9429048 0.8475045 0 +0.9576028 0.8475045 0 +0.9720079 0.8475045 0 +0.9861357 0.8475045 0 +1 0.8475045 0 +0 0.8643761 0 +0.1939468 0.8643761 0 +0.2773041 0.8643761 0 +0.3384659 0.8643761 0 +0.3885728 0.8643761 0 +0.4317928 0.8643761 0 +0.470214 0.8643761 0 +0.5050551 0.8643761 0 +0.5370987 0.8643761 0 +0.5668815 0.8643761 0 +0.5947903 0.8643761 0 +0.6211144 0.8643761 0 +0.6460766 0.8643761 0 +0.6698526 0.8643761 0 +0.6925839 0.8643761 0 +0.7143866 0.8643761 0 +0.7353569 0.8643761 0 +0.7555758 0.8643761 0 +0.7751122 0.8643761 0 +0.7940252 0.8643761 0 +0.8123661 0.8643761 0 +0.8301795 0.8643761 0 +0.8475045 0.8643761 0 +0.8643761 0.8643761 0 +0.880825 0.8643761 0 +0.8968787 0.8643761 0 +0.9125621 0.8643761 0 +0.9278974 0.8643761 0 +0.9429048 0.8643761 0 +0.9576028 0.8643761 0 +0.9720079 0.8643761 0 +0.9861357 0.8643761 0 +1 0.8643761 0 +0 0.880825 0 +0.1939468 0.880825 0 +0.2773041 0.880825 0 +0.3384659 0.880825 0 +0.3885728 0.880825 0 +0.4317928 0.880825 0 +0.470214 0.880825 0 +0.5050551 0.880825 0 +0.5370987 0.880825 0 +0.5668815 0.880825 0 +0.5947903 0.880825 0 +0.6211144 0.880825 0 +0.6460766 0.880825 0 +0.6698526 0.880825 0 +0.6925839 0.880825 0 +0.7143866 0.880825 0 +0.7353569 0.880825 0 +0.7555758 0.880825 0 +0.7751122 0.880825 0 +0.7940252 0.880825 0 +0.8123661 0.880825 0 +0.8301795 0.880825 0 +0.8475045 0.880825 0 +0.8643761 0.880825 0 +0.880825 0.880825 0 +0.8968787 0.880825 0 +0.9125621 0.880825 0 +0.9278974 0.880825 0 +0.9429048 0.880825 0 +0.9576028 0.880825 0 +0.9720079 0.880825 0 +0.9861357 0.880825 0 +1 0.880825 0 +0 0.8968787 0 +0.1939468 0.8968787 0 +0.2773041 0.8968787 0 +0.3384659 0.8968787 0 +0.3885728 0.8968787 0 +0.4317928 0.8968787 0 +0.470214 0.8968787 0 +0.5050551 0.8968787 0 +0.5370987 0.8968787 0 +0.5668815 0.8968787 0 +0.5947903 0.8968787 0 +0.6211144 0.8968787 0 +0.6460766 0.8968787 0 +0.6698526 0.8968787 0 +0.6925839 0.8968787 0 +0.7143866 0.8968787 0 +0.7353569 0.8968787 0 +0.7555758 0.8968787 0 +0.7751122 0.8968787 0 +0.7940252 0.8968787 0 +0.8123661 0.8968787 0 +0.8301795 0.8968787 0 +0.8475045 0.8968787 0 +0.8643761 0.8968787 0 +0.880825 0.8968787 0 +0.8968787 0.8968787 0 +0.9125621 0.8968787 0 +0.9278974 0.8968787 0 +0.9429048 0.8968787 0 +0.9576028 0.8968787 0 +0.9720079 0.8968787 0 +0.9861357 0.8968787 0 +1 0.8968787 0 +0 0.9125621 0 +0.1939468 0.9125621 0 +0.2773041 0.9125621 0 +0.3384659 0.9125621 0 +0.3885728 0.9125621 0 +0.4317928 0.9125621 0 +0.470214 0.9125621 0 +0.5050551 0.9125621 0 +0.5370987 0.9125621 0 +0.5668815 0.9125621 0 +0.5947903 0.9125621 0 +0.6211144 0.9125621 0 +0.6460766 0.9125621 0 +0.6698526 0.9125621 0 +0.6925839 0.9125621 0 +0.7143866 0.9125621 0 +0.7353569 0.9125621 0 +0.7555758 0.9125621 0 +0.7751122 0.9125621 0 +0.7940252 0.9125621 0 +0.8123661 0.9125621 0 +0.8301795 0.9125621 0 +0.8475045 0.9125621 0 +0.8643761 0.9125621 0 +0.880825 0.9125621 0 +0.8968787 0.9125621 0 +0.9125621 0.9125621 0 +0.9278974 0.9125621 0 +0.9429048 0.9125621 0 +0.9576028 0.9125621 0 +0.9720079 0.9125621 0 +0.9861357 0.9125621 0 +1 0.9125621 0 +0 0.9278974 0 +0.1939468 0.9278974 0 +0.2773041 0.9278974 0 +0.3384659 0.9278974 0 +0.3885728 0.9278974 0 +0.4317928 0.9278974 0 +0.470214 0.9278974 0 +0.5050551 0.9278974 0 +0.5370987 0.9278974 0 +0.5668815 0.9278974 0 +0.5947903 0.9278974 0 +0.6211144 0.9278974 0 +0.6460766 0.9278974 0 +0.6698526 0.9278974 0 +0.6925839 0.9278974 0 +0.7143866 0.9278974 0 +0.7353569 0.9278974 0 +0.7555758 0.9278974 0 +0.7751122 0.9278974 0 +0.7940252 0.9278974 0 +0.8123661 0.9278974 0 +0.8301795 0.9278974 0 +0.8475045 0.9278974 0 +0.8643761 0.9278974 0 +0.880825 0.9278974 0 +0.8968787 0.9278974 0 +0.9125621 0.9278974 0 +0.9278974 0.9278974 0 +0.9429048 0.9278974 0 +0.9576028 0.9278974 0 +0.9720079 0.9278974 0 +0.9861357 0.9278974 0 +1 0.9278974 0 +0 0.9429048 0 +0.1939468 0.9429048 0 +0.2773041 0.9429048 0 +0.3384659 0.9429048 0 +0.3885728 0.9429048 0 +0.4317928 0.9429048 0 +0.470214 0.9429048 0 +0.5050551 0.9429048 0 +0.5370987 0.9429048 0 +0.5668815 0.9429048 0 +0.5947903 0.9429048 0 +0.6211144 0.9429048 0 +0.6460766 0.9429048 0 +0.6698526 0.9429048 0 +0.6925839 0.9429048 0 +0.7143866 0.9429048 0 +0.7353569 0.9429048 0 +0.7555758 0.9429048 0 +0.7751122 0.9429048 0 +0.7940252 0.9429048 0 +0.8123661 0.9429048 0 +0.8301795 0.9429048 0 +0.8475045 0.9429048 0 +0.8643761 0.9429048 0 +0.880825 0.9429048 0 +0.8968787 0.9429048 0 +0.9125621 0.9429048 0 +0.9278974 0.9429048 0 +0.9429048 0.9429048 0 +0.9576028 0.9429048 0 +0.9720079 0.9429048 0 +0.9861357 0.9429048 0 +1 0.9429048 0 +0 0.9576028 0 +0.1939468 0.9576028 0 +0.2773041 0.9576028 0 +0.3384659 0.9576028 0 +0.3885728 0.9576028 0 +0.4317928 0.9576028 0 +0.470214 0.9576028 0 +0.5050551 0.9576028 0 +0.5370987 0.9576028 0 +0.5668815 0.9576028 0 +0.5947903 0.9576028 0 +0.6211144 0.9576028 0 +0.6460766 0.9576028 0 +0.6698526 0.9576028 0 +0.6925839 0.9576028 0 +0.7143866 0.9576028 0 +0.7353569 0.9576028 0 +0.7555758 0.9576028 0 +0.7751122 0.9576028 0 +0.7940252 0.9576028 0 +0.8123661 0.9576028 0 +0.8301795 0.9576028 0 +0.8475045 0.9576028 0 +0.8643761 0.9576028 0 +0.880825 0.9576028 0 +0.8968787 0.9576028 0 +0.9125621 0.9576028 0 +0.9278974 0.9576028 0 +0.9429048 0.9576028 0 +0.9576028 0.9576028 0 +0.9720079 0.9576028 0 +0.9861357 0.9576028 0 +1 0.9576028 0 +0 0.9720079 0 +0.1939468 0.9720079 0 +0.2773041 0.9720079 0 +0.3384659 0.9720079 0 +0.3885728 0.9720079 0 +0.4317928 0.9720079 0 +0.470214 0.9720079 0 +0.5050551 0.9720079 0 +0.5370987 0.9720079 0 +0.5668815 0.9720079 0 +0.5947903 0.9720079 0 +0.6211144 0.9720079 0 +0.6460766 0.9720079 0 +0.6698526 0.9720079 0 +0.6925839 0.9720079 0 +0.7143866 0.9720079 0 +0.7353569 0.9720079 0 +0.7555758 0.9720079 0 +0.7751122 0.9720079 0 +0.7940252 0.9720079 0 +0.8123661 0.9720079 0 +0.8301795 0.9720079 0 +0.8475045 0.9720079 0 +0.8643761 0.9720079 0 +0.880825 0.9720079 0 +0.8968787 0.9720079 0 +0.9125621 0.9720079 0 +0.9278974 0.9720079 0 +0.9429048 0.9720079 0 +0.9576028 0.9720079 0 +0.9720079 0.9720079 0 +0.9861357 0.9720079 0 +1 0.9720079 0 +0 0.9861357 0 +0.1939468 0.9861357 0 +0.2773041 0.9861357 0 +0.3384659 0.9861357 0 +0.3885728 0.9861357 0 +0.4317928 0.9861357 0 +0.470214 0.9861357 0 +0.5050551 0.9861357 0 +0.5370987 0.9861357 0 +0.5668815 0.9861357 0 +0.5947903 0.9861357 0 +0.6211144 0.9861357 0 +0.6460766 0.9861357 0 +0.6698526 0.9861357 0 +0.6925839 0.9861357 0 +0.7143866 0.9861357 0 +0.7353569 0.9861357 0 +0.7555758 0.9861357 0 +0.7751122 0.9861357 0 +0.7940252 0.9861357 0 +0.8123661 0.9861357 0 +0.8301795 0.9861357 0 +0.8475045 0.9861357 0 +0.8643761 0.9861357 0 +0.880825 0.9861357 0 +0.8968787 0.9861357 0 +0.9125621 0.9861357 0 +0.9278974 0.9861357 0 +0.9429048 0.9861357 0 +0.9576028 0.9861357 0 +0.9720079 0.9861357 0 +0.9861357 0.9861357 0 +1 0.9861357 0 +0 1 0 +0.1939468 1 0 +0.2773041 1 0 +0.3384659 1 0 +0.3885728 1 0 +0.4317928 1 0 +0.470214 1 0 +0.5050551 1 0 +0.5370987 1 0 +0.5668815 1 0 +0.5947903 1 0 +0.6211144 1 0 +0.6460766 1 0 +0.6698526 1 0 +0.6925839 1 0 +0.7143866 1 0 +0.7353569 1 0 +0.7555758 1 0 +0.7751122 1 0 +0.7940252 1 0 +0.8123661 1 0 +0.8301795 1 0 +0.8475045 1 0 +0.8643761 1 0 +0.880825 1 0 +0.8968787 1 0 +0.9125621 1 0 +0.9278974 1 0 +0.9429048 1 0 +0.9576028 1 0 +0.9720079 1 0 +0.9861357 1 0 +1 1 0 +0 0 0.1939468 +0.1939468 0 0.1939468 +0.2773041 0 0.1939468 +0.3384659 0 0.1939468 +0.3885728 0 0.1939468 +0.4317928 0 0.1939468 +0.470214 0 0.1939468 +0.5050551 0 0.1939468 +0.5370987 0 0.1939468 +0.5668815 0 0.1939468 +0.5947903 0 0.1939468 +0.6211144 0 0.1939468 +0.6460766 0 0.1939468 +0.6698526 0 0.1939468 +0.6925839 0 0.1939468 +0.7143866 0 0.1939468 +0.7353569 0 0.1939468 +0.7555758 0 0.1939468 +0.7751122 0 0.1939468 +0.7940252 0 0.1939468 +0.8123661 0 0.1939468 +0.8301795 0 0.1939468 +0.8475045 0 0.1939468 +0.8643761 0 0.1939468 +0.880825 0 0.1939468 +0.8968787 0 0.1939468 +0.9125621 0 0.1939468 +0.9278974 0 0.1939468 +0.9429048 0 0.1939468 +0.9576028 0 0.1939468 +0.9720079 0 0.1939468 +0.9861357 0 0.1939468 +1 0 0.1939468 +0 0.1939468 0.1939468 +0.1939468 0.1939468 0.1939468 +0.2773041 0.1939468 0.1939468 +0.3384659 0.1939468 0.1939468 +0.3885728 0.1939468 0.1939468 +0.4317928 0.1939468 0.1939468 +0.470214 0.1939468 0.1939468 +0.5050551 0.1939468 0.1939468 +0.5370987 0.1939468 0.1939468 +0.5668815 0.1939468 0.1939468 +0.5947903 0.1939468 0.1939468 +0.6211144 0.1939468 0.1939468 +0.6460766 0.1939468 0.1939468 +0.6698526 0.1939468 0.1939468 +0.6925839 0.1939468 0.1939468 +0.7143866 0.1939468 0.1939468 +0.7353569 0.1939468 0.1939468 +0.7555758 0.1939468 0.1939468 +0.7751122 0.1939468 0.1939468 +0.7940252 0.1939468 0.1939468 +0.8123661 0.1939468 0.1939468 +0.8301795 0.1939468 0.1939468 +0.8475045 0.1939468 0.1939468 +0.8643761 0.1939468 0.1939468 +0.880825 0.1939468 0.1939468 +0.8968787 0.1939468 0.1939468 +0.9125621 0.1939468 0.1939468 +0.9278974 0.1939468 0.1939468 +0.9429048 0.1939468 0.1939468 +0.9576028 0.1939468 0.1939468 +0.9720079 0.1939468 0.1939468 +0.9861357 0.1939468 0.1939468 +1 0.1939468 0.1939468 +0 0.2773041 0.1939468 +0.1939468 0.2773041 0.1939468 +0.2773041 0.2773041 0.1939468 +0.3384659 0.2773041 0.1939468 +0.3885728 0.2773041 0.1939468 +0.4317928 0.2773041 0.1939468 +0.470214 0.2773041 0.1939468 +0.5050551 0.2773041 0.1939468 +0.5370987 0.2773041 0.1939468 +0.5668815 0.2773041 0.1939468 +0.5947903 0.2773041 0.1939468 +0.6211144 0.2773041 0.1939468 +0.6460766 0.2773041 0.1939468 +0.6698526 0.2773041 0.1939468 +0.6925839 0.2773041 0.1939468 +0.7143866 0.2773041 0.1939468 +0.7353569 0.2773041 0.1939468 +0.7555758 0.2773041 0.1939468 +0.7751122 0.2773041 0.1939468 +0.7940252 0.2773041 0.1939468 +0.8123661 0.2773041 0.1939468 +0.8301795 0.2773041 0.1939468 +0.8475045 0.2773041 0.1939468 +0.8643761 0.2773041 0.1939468 +0.880825 0.2773041 0.1939468 +0.8968787 0.2773041 0.1939468 +0.9125621 0.2773041 0.1939468 +0.9278974 0.2773041 0.1939468 +0.9429048 0.2773041 0.1939468 +0.9576028 0.2773041 0.1939468 +0.9720079 0.2773041 0.1939468 +0.9861357 0.2773041 0.1939468 +1 0.2773041 0.1939468 +0 0.3384659 0.1939468 +0.1939468 0.3384659 0.1939468 +0.2773041 0.3384659 0.1939468 +0.3384659 0.3384659 0.1939468 +0.3885728 0.3384659 0.1939468 +0.4317928 0.3384659 0.1939468 +0.470214 0.3384659 0.1939468 +0.5050551 0.3384659 0.1939468 +0.5370987 0.3384659 0.1939468 +0.5668815 0.3384659 0.1939468 +0.5947903 0.3384659 0.1939468 +0.6211144 0.3384659 0.1939468 +0.6460766 0.3384659 0.1939468 +0.6698526 0.3384659 0.1939468 +0.6925839 0.3384659 0.1939468 +0.7143866 0.3384659 0.1939468 +0.7353569 0.3384659 0.1939468 +0.7555758 0.3384659 0.1939468 +0.7751122 0.3384659 0.1939468 +0.7940252 0.3384659 0.1939468 +0.8123661 0.3384659 0.1939468 +0.8301795 0.3384659 0.1939468 +0.8475045 0.3384659 0.1939468 +0.8643761 0.3384659 0.1939468 +0.880825 0.3384659 0.1939468 +0.8968787 0.3384659 0.1939468 +0.9125621 0.3384659 0.1939468 +0.9278974 0.3384659 0.1939468 +0.9429048 0.3384659 0.1939468 +0.9576028 0.3384659 0.1939468 +0.9720079 0.3384659 0.1939468 +0.9861357 0.3384659 0.1939468 +1 0.3384659 0.1939468 +0 0.3885728 0.1939468 +0.1939468 0.3885728 0.1939468 +0.2773041 0.3885728 0.1939468 +0.3384659 0.3885728 0.1939468 +0.3885728 0.3885728 0.1939468 +0.4317928 0.3885728 0.1939468 +0.470214 0.3885728 0.1939468 +0.5050551 0.3885728 0.1939468 +0.5370987 0.3885728 0.1939468 +0.5668815 0.3885728 0.1939468 +0.5947903 0.3885728 0.1939468 +0.6211144 0.3885728 0.1939468 +0.6460766 0.3885728 0.1939468 +0.6698526 0.3885728 0.1939468 +0.6925839 0.3885728 0.1939468 +0.7143866 0.3885728 0.1939468 +0.7353569 0.3885728 0.1939468 +0.7555758 0.3885728 0.1939468 +0.7751122 0.3885728 0.1939468 +0.7940252 0.3885728 0.1939468 +0.8123661 0.3885728 0.1939468 +0.8301795 0.3885728 0.1939468 +0.8475045 0.3885728 0.1939468 +0.8643761 0.3885728 0.1939468 +0.880825 0.3885728 0.1939468 +0.8968787 0.3885728 0.1939468 +0.9125621 0.3885728 0.1939468 +0.9278974 0.3885728 0.1939468 +0.9429048 0.3885728 0.1939468 +0.9576028 0.3885728 0.1939468 +0.9720079 0.3885728 0.1939468 +0.9861357 0.3885728 0.1939468 +1 0.3885728 0.1939468 +0 0.4317928 0.1939468 +0.1939468 0.4317928 0.1939468 +0.2773041 0.4317928 0.1939468 +0.3384659 0.4317928 0.1939468 +0.3885728 0.4317928 0.1939468 +0.4317928 0.4317928 0.1939468 +0.470214 0.4317928 0.1939468 +0.5050551 0.4317928 0.1939468 +0.5370987 0.4317928 0.1939468 +0.5668815 0.4317928 0.1939468 +0.5947903 0.4317928 0.1939468 +0.6211144 0.4317928 0.1939468 +0.6460766 0.4317928 0.1939468 +0.6698526 0.4317928 0.1939468 +0.6925839 0.4317928 0.1939468 +0.7143866 0.4317928 0.1939468 +0.7353569 0.4317928 0.1939468 +0.7555758 0.4317928 0.1939468 +0.7751122 0.4317928 0.1939468 +0.7940252 0.4317928 0.1939468 +0.8123661 0.4317928 0.1939468 +0.8301795 0.4317928 0.1939468 +0.8475045 0.4317928 0.1939468 +0.8643761 0.4317928 0.1939468 +0.880825 0.4317928 0.1939468 +0.8968787 0.4317928 0.1939468 +0.9125621 0.4317928 0.1939468 +0.9278974 0.4317928 0.1939468 +0.9429048 0.4317928 0.1939468 +0.9576028 0.4317928 0.1939468 +0.9720079 0.4317928 0.1939468 +0.9861357 0.4317928 0.1939468 +1 0.4317928 0.1939468 +0 0.470214 0.1939468 +0.1939468 0.470214 0.1939468 +0.2773041 0.470214 0.1939468 +0.3384659 0.470214 0.1939468 +0.3885728 0.470214 0.1939468 +0.4317928 0.470214 0.1939468 +0.470214 0.470214 0.1939468 +0.5050551 0.470214 0.1939468 +0.5370987 0.470214 0.1939468 +0.5668815 0.470214 0.1939468 +0.5947903 0.470214 0.1939468 +0.6211144 0.470214 0.1939468 +0.6460766 0.470214 0.1939468 +0.6698526 0.470214 0.1939468 +0.6925839 0.470214 0.1939468 +0.7143866 0.470214 0.1939468 +0.7353569 0.470214 0.1939468 +0.7555758 0.470214 0.1939468 +0.7751122 0.470214 0.1939468 +0.7940252 0.470214 0.1939468 +0.8123661 0.470214 0.1939468 +0.8301795 0.470214 0.1939468 +0.8475045 0.470214 0.1939468 +0.8643761 0.470214 0.1939468 +0.880825 0.470214 0.1939468 +0.8968787 0.470214 0.1939468 +0.9125621 0.470214 0.1939468 +0.9278974 0.470214 0.1939468 +0.9429048 0.470214 0.1939468 +0.9576028 0.470214 0.1939468 +0.9720079 0.470214 0.1939468 +0.9861357 0.470214 0.1939468 +1 0.470214 0.1939468 +0 0.5050551 0.1939468 +0.1939468 0.5050551 0.1939468 +0.2773041 0.5050551 0.1939468 +0.3384659 0.5050551 0.1939468 +0.3885728 0.5050551 0.1939468 +0.4317928 0.5050551 0.1939468 +0.470214 0.5050551 0.1939468 +0.5050551 0.5050551 0.1939468 +0.5370987 0.5050551 0.1939468 +0.5668815 0.5050551 0.1939468 +0.5947903 0.5050551 0.1939468 +0.6211144 0.5050551 0.1939468 +0.6460766 0.5050551 0.1939468 +0.6698526 0.5050551 0.1939468 +0.6925839 0.5050551 0.1939468 +0.7143866 0.5050551 0.1939468 +0.7353569 0.5050551 0.1939468 +0.7555758 0.5050551 0.1939468 +0.7751122 0.5050551 0.1939468 +0.7940252 0.5050551 0.1939468 +0.8123661 0.5050551 0.1939468 +0.8301795 0.5050551 0.1939468 +0.8475045 0.5050551 0.1939468 +0.8643761 0.5050551 0.1939468 +0.880825 0.5050551 0.1939468 +0.8968787 0.5050551 0.1939468 +0.9125621 0.5050551 0.1939468 +0.9278974 0.5050551 0.1939468 +0.9429048 0.5050551 0.1939468 +0.9576028 0.5050551 0.1939468 +0.9720079 0.5050551 0.1939468 +0.9861357 0.5050551 0.1939468 +1 0.5050551 0.1939468 +0 0.5370987 0.1939468 +0.1939468 0.5370987 0.1939468 +0.2773041 0.5370987 0.1939468 +0.3384659 0.5370987 0.1939468 +0.3885728 0.5370987 0.1939468 +0.4317928 0.5370987 0.1939468 +0.470214 0.5370987 0.1939468 +0.5050551 0.5370987 0.1939468 +0.5370987 0.5370987 0.1939468 +0.5668815 0.5370987 0.1939468 +0.5947903 0.5370987 0.1939468 +0.6211144 0.5370987 0.1939468 +0.6460766 0.5370987 0.1939468 +0.6698526 0.5370987 0.1939468 +0.6925839 0.5370987 0.1939468 +0.7143866 0.5370987 0.1939468 +0.7353569 0.5370987 0.1939468 +0.7555758 0.5370987 0.1939468 +0.7751122 0.5370987 0.1939468 +0.7940252 0.5370987 0.1939468 +0.8123661 0.5370987 0.1939468 +0.8301795 0.5370987 0.1939468 +0.8475045 0.5370987 0.1939468 +0.8643761 0.5370987 0.1939468 +0.880825 0.5370987 0.1939468 +0.8968787 0.5370987 0.1939468 +0.9125621 0.5370987 0.1939468 +0.9278974 0.5370987 0.1939468 +0.9429048 0.5370987 0.1939468 +0.9576028 0.5370987 0.1939468 +0.9720079 0.5370987 0.1939468 +0.9861357 0.5370987 0.1939468 +1 0.5370987 0.1939468 +0 0.5668815 0.1939468 +0.1939468 0.5668815 0.1939468 +0.2773041 0.5668815 0.1939468 +0.3384659 0.5668815 0.1939468 +0.3885728 0.5668815 0.1939468 +0.4317928 0.5668815 0.1939468 +0.470214 0.5668815 0.1939468 +0.5050551 0.5668815 0.1939468 +0.5370987 0.5668815 0.1939468 +0.5668815 0.5668815 0.1939468 +0.5947903 0.5668815 0.1939468 +0.6211144 0.5668815 0.1939468 +0.6460766 0.5668815 0.1939468 +0.6698526 0.5668815 0.1939468 +0.6925839 0.5668815 0.1939468 +0.7143866 0.5668815 0.1939468 +0.7353569 0.5668815 0.1939468 +0.7555758 0.5668815 0.1939468 +0.7751122 0.5668815 0.1939468 +0.7940252 0.5668815 0.1939468 +0.8123661 0.5668815 0.1939468 +0.8301795 0.5668815 0.1939468 +0.8475045 0.5668815 0.1939468 +0.8643761 0.5668815 0.1939468 +0.880825 0.5668815 0.1939468 +0.8968787 0.5668815 0.1939468 +0.9125621 0.5668815 0.1939468 +0.9278974 0.5668815 0.1939468 +0.9429048 0.5668815 0.1939468 +0.9576028 0.5668815 0.1939468 +0.9720079 0.5668815 0.1939468 +0.9861357 0.5668815 0.1939468 +1 0.5668815 0.1939468 +0 0.5947903 0.1939468 +0.1939468 0.5947903 0.1939468 +0.2773041 0.5947903 0.1939468 +0.3384659 0.5947903 0.1939468 +0.3885728 0.5947903 0.1939468 +0.4317928 0.5947903 0.1939468 +0.470214 0.5947903 0.1939468 +0.5050551 0.5947903 0.1939468 +0.5370987 0.5947903 0.1939468 +0.5668815 0.5947903 0.1939468 +0.5947903 0.5947903 0.1939468 +0.6211144 0.5947903 0.1939468 +0.6460766 0.5947903 0.1939468 +0.6698526 0.5947903 0.1939468 +0.6925839 0.5947903 0.1939468 +0.7143866 0.5947903 0.1939468 +0.7353569 0.5947903 0.1939468 +0.7555758 0.5947903 0.1939468 +0.7751122 0.5947903 0.1939468 +0.7940252 0.5947903 0.1939468 +0.8123661 0.5947903 0.1939468 +0.8301795 0.5947903 0.1939468 +0.8475045 0.5947903 0.1939468 +0.8643761 0.5947903 0.1939468 +0.880825 0.5947903 0.1939468 +0.8968787 0.5947903 0.1939468 +0.9125621 0.5947903 0.1939468 +0.9278974 0.5947903 0.1939468 +0.9429048 0.5947903 0.1939468 +0.9576028 0.5947903 0.1939468 +0.9720079 0.5947903 0.1939468 +0.9861357 0.5947903 0.1939468 +1 0.5947903 0.1939468 +0 0.6211144 0.1939468 +0.1939468 0.6211144 0.1939468 +0.2773041 0.6211144 0.1939468 +0.3384659 0.6211144 0.1939468 +0.3885728 0.6211144 0.1939468 +0.4317928 0.6211144 0.1939468 +0.470214 0.6211144 0.1939468 +0.5050551 0.6211144 0.1939468 +0.5370987 0.6211144 0.1939468 +0.5668815 0.6211144 0.1939468 +0.5947903 0.6211144 0.1939468 +0.6211144 0.6211144 0.1939468 +0.6460766 0.6211144 0.1939468 +0.6698526 0.6211144 0.1939468 +0.6925839 0.6211144 0.1939468 +0.7143866 0.6211144 0.1939468 +0.7353569 0.6211144 0.1939468 +0.7555758 0.6211144 0.1939468 +0.7751122 0.6211144 0.1939468 +0.7940252 0.6211144 0.1939468 +0.8123661 0.6211144 0.1939468 +0.8301795 0.6211144 0.1939468 +0.8475045 0.6211144 0.1939468 +0.8643761 0.6211144 0.1939468 +0.880825 0.6211144 0.1939468 +0.8968787 0.6211144 0.1939468 +0.9125621 0.6211144 0.1939468 +0.9278974 0.6211144 0.1939468 +0.9429048 0.6211144 0.1939468 +0.9576028 0.6211144 0.1939468 +0.9720079 0.6211144 0.1939468 +0.9861357 0.6211144 0.1939468 +1 0.6211144 0.1939468 +0 0.6460766 0.1939468 +0.1939468 0.6460766 0.1939468 +0.2773041 0.6460766 0.1939468 +0.3384659 0.6460766 0.1939468 +0.3885728 0.6460766 0.1939468 +0.4317928 0.6460766 0.1939468 +0.470214 0.6460766 0.1939468 +0.5050551 0.6460766 0.1939468 +0.5370987 0.6460766 0.1939468 +0.5668815 0.6460766 0.1939468 +0.5947903 0.6460766 0.1939468 +0.6211144 0.6460766 0.1939468 +0.6460766 0.6460766 0.1939468 +0.6698526 0.6460766 0.1939468 +0.6925839 0.6460766 0.1939468 +0.7143866 0.6460766 0.1939468 +0.7353569 0.6460766 0.1939468 +0.7555758 0.6460766 0.1939468 +0.7751122 0.6460766 0.1939468 +0.7940252 0.6460766 0.1939468 +0.8123661 0.6460766 0.1939468 +0.8301795 0.6460766 0.1939468 +0.8475045 0.6460766 0.1939468 +0.8643761 0.6460766 0.1939468 +0.880825 0.6460766 0.1939468 +0.8968787 0.6460766 0.1939468 +0.9125621 0.6460766 0.1939468 +0.9278974 0.6460766 0.1939468 +0.9429048 0.6460766 0.1939468 +0.9576028 0.6460766 0.1939468 +0.9720079 0.6460766 0.1939468 +0.9861357 0.6460766 0.1939468 +1 0.6460766 0.1939468 +0 0.6698526 0.1939468 +0.1939468 0.6698526 0.1939468 +0.2773041 0.6698526 0.1939468 +0.3384659 0.6698526 0.1939468 +0.3885728 0.6698526 0.1939468 +0.4317928 0.6698526 0.1939468 +0.470214 0.6698526 0.1939468 +0.5050551 0.6698526 0.1939468 +0.5370987 0.6698526 0.1939468 +0.5668815 0.6698526 0.1939468 +0.5947903 0.6698526 0.1939468 +0.6211144 0.6698526 0.1939468 +0.6460766 0.6698526 0.1939468 +0.6698526 0.6698526 0.1939468 +0.6925839 0.6698526 0.1939468 +0.7143866 0.6698526 0.1939468 +0.7353569 0.6698526 0.1939468 +0.7555758 0.6698526 0.1939468 +0.7751122 0.6698526 0.1939468 +0.7940252 0.6698526 0.1939468 +0.8123661 0.6698526 0.1939468 +0.8301795 0.6698526 0.1939468 +0.8475045 0.6698526 0.1939468 +0.8643761 0.6698526 0.1939468 +0.880825 0.6698526 0.1939468 +0.8968787 0.6698526 0.1939468 +0.9125621 0.6698526 0.1939468 +0.9278974 0.6698526 0.1939468 +0.9429048 0.6698526 0.1939468 +0.9576028 0.6698526 0.1939468 +0.9720079 0.6698526 0.1939468 +0.9861357 0.6698526 0.1939468 +1 0.6698526 0.1939468 +0 0.6925839 0.1939468 +0.1939468 0.6925839 0.1939468 +0.2773041 0.6925839 0.1939468 +0.3384659 0.6925839 0.1939468 +0.3885728 0.6925839 0.1939468 +0.4317928 0.6925839 0.1939468 +0.470214 0.6925839 0.1939468 +0.5050551 0.6925839 0.1939468 +0.5370987 0.6925839 0.1939468 +0.5668815 0.6925839 0.1939468 +0.5947903 0.6925839 0.1939468 +0.6211144 0.6925839 0.1939468 +0.6460766 0.6925839 0.1939468 +0.6698526 0.6925839 0.1939468 +0.6925839 0.6925839 0.1939468 +0.7143866 0.6925839 0.1939468 +0.7353569 0.6925839 0.1939468 +0.7555758 0.6925839 0.1939468 +0.7751122 0.6925839 0.1939468 +0.7940252 0.6925839 0.1939468 +0.8123661 0.6925839 0.1939468 +0.8301795 0.6925839 0.1939468 +0.8475045 0.6925839 0.1939468 +0.8643761 0.6925839 0.1939468 +0.880825 0.6925839 0.1939468 +0.8968787 0.6925839 0.1939468 +0.9125621 0.6925839 0.1939468 +0.9278974 0.6925839 0.1939468 +0.9429048 0.6925839 0.1939468 +0.9576028 0.6925839 0.1939468 +0.9720079 0.6925839 0.1939468 +0.9861357 0.6925839 0.1939468 +1 0.6925839 0.1939468 +0 0.7143866 0.1939468 +0.1939468 0.7143866 0.1939468 +0.2773041 0.7143866 0.1939468 +0.3384659 0.7143866 0.1939468 +0.3885728 0.7143866 0.1939468 +0.4317928 0.7143866 0.1939468 +0.470214 0.7143866 0.1939468 +0.5050551 0.7143866 0.1939468 +0.5370987 0.7143866 0.1939468 +0.5668815 0.7143866 0.1939468 +0.5947903 0.7143866 0.1939468 +0.6211144 0.7143866 0.1939468 +0.6460766 0.7143866 0.1939468 +0.6698526 0.7143866 0.1939468 +0.6925839 0.7143866 0.1939468 +0.7143866 0.7143866 0.1939468 +0.7353569 0.7143866 0.1939468 +0.7555758 0.7143866 0.1939468 +0.7751122 0.7143866 0.1939468 +0.7940252 0.7143866 0.1939468 +0.8123661 0.7143866 0.1939468 +0.8301795 0.7143866 0.1939468 +0.8475045 0.7143866 0.1939468 +0.8643761 0.7143866 0.1939468 +0.880825 0.7143866 0.1939468 +0.8968787 0.7143866 0.1939468 +0.9125621 0.7143866 0.1939468 +0.9278974 0.7143866 0.1939468 +0.9429048 0.7143866 0.1939468 +0.9576028 0.7143866 0.1939468 +0.9720079 0.7143866 0.1939468 +0.9861357 0.7143866 0.1939468 +1 0.7143866 0.1939468 +0 0.7353569 0.1939468 +0.1939468 0.7353569 0.1939468 +0.2773041 0.7353569 0.1939468 +0.3384659 0.7353569 0.1939468 +0.3885728 0.7353569 0.1939468 +0.4317928 0.7353569 0.1939468 +0.470214 0.7353569 0.1939468 +0.5050551 0.7353569 0.1939468 +0.5370987 0.7353569 0.1939468 +0.5668815 0.7353569 0.1939468 +0.5947903 0.7353569 0.1939468 +0.6211144 0.7353569 0.1939468 +0.6460766 0.7353569 0.1939468 +0.6698526 0.7353569 0.1939468 +0.6925839 0.7353569 0.1939468 +0.7143866 0.7353569 0.1939468 +0.7353569 0.7353569 0.1939468 +0.7555758 0.7353569 0.1939468 +0.7751122 0.7353569 0.1939468 +0.7940252 0.7353569 0.1939468 +0.8123661 0.7353569 0.1939468 +0.8301795 0.7353569 0.1939468 +0.8475045 0.7353569 0.1939468 +0.8643761 0.7353569 0.1939468 +0.880825 0.7353569 0.1939468 +0.8968787 0.7353569 0.1939468 +0.9125621 0.7353569 0.1939468 +0.9278974 0.7353569 0.1939468 +0.9429048 0.7353569 0.1939468 +0.9576028 0.7353569 0.1939468 +0.9720079 0.7353569 0.1939468 +0.9861357 0.7353569 0.1939468 +1 0.7353569 0.1939468 +0 0.7555758 0.1939468 +0.1939468 0.7555758 0.1939468 +0.2773041 0.7555758 0.1939468 +0.3384659 0.7555758 0.1939468 +0.3885728 0.7555758 0.1939468 +0.4317928 0.7555758 0.1939468 +0.470214 0.7555758 0.1939468 +0.5050551 0.7555758 0.1939468 +0.5370987 0.7555758 0.1939468 +0.5668815 0.7555758 0.1939468 +0.5947903 0.7555758 0.1939468 +0.6211144 0.7555758 0.1939468 +0.6460766 0.7555758 0.1939468 +0.6698526 0.7555758 0.1939468 +0.6925839 0.7555758 0.1939468 +0.7143866 0.7555758 0.1939468 +0.7353569 0.7555758 0.1939468 +0.7555758 0.7555758 0.1939468 +0.7751122 0.7555758 0.1939468 +0.7940252 0.7555758 0.1939468 +0.8123661 0.7555758 0.1939468 +0.8301795 0.7555758 0.1939468 +0.8475045 0.7555758 0.1939468 +0.8643761 0.7555758 0.1939468 +0.880825 0.7555758 0.1939468 +0.8968787 0.7555758 0.1939468 +0.9125621 0.7555758 0.1939468 +0.9278974 0.7555758 0.1939468 +0.9429048 0.7555758 0.1939468 +0.9576028 0.7555758 0.1939468 +0.9720079 0.7555758 0.1939468 +0.9861357 0.7555758 0.1939468 +1 0.7555758 0.1939468 +0 0.7751122 0.1939468 +0.1939468 0.7751122 0.1939468 +0.2773041 0.7751122 0.1939468 +0.3384659 0.7751122 0.1939468 +0.3885728 0.7751122 0.1939468 +0.4317928 0.7751122 0.1939468 +0.470214 0.7751122 0.1939468 +0.5050551 0.7751122 0.1939468 +0.5370987 0.7751122 0.1939468 +0.5668815 0.7751122 0.1939468 +0.5947903 0.7751122 0.1939468 +0.6211144 0.7751122 0.1939468 +0.6460766 0.7751122 0.1939468 +0.6698526 0.7751122 0.1939468 +0.6925839 0.7751122 0.1939468 +0.7143866 0.7751122 0.1939468 +0.7353569 0.7751122 0.1939468 +0.7555758 0.7751122 0.1939468 +0.7751122 0.7751122 0.1939468 +0.7940252 0.7751122 0.1939468 +0.8123661 0.7751122 0.1939468 +0.8301795 0.7751122 0.1939468 +0.8475045 0.7751122 0.1939468 +0.8643761 0.7751122 0.1939468 +0.880825 0.7751122 0.1939468 +0.8968787 0.7751122 0.1939468 +0.9125621 0.7751122 0.1939468 +0.9278974 0.7751122 0.1939468 +0.9429048 0.7751122 0.1939468 +0.9576028 0.7751122 0.1939468 +0.9720079 0.7751122 0.1939468 +0.9861357 0.7751122 0.1939468 +1 0.7751122 0.1939468 +0 0.7940252 0.1939468 +0.1939468 0.7940252 0.1939468 +0.2773041 0.7940252 0.1939468 +0.3384659 0.7940252 0.1939468 +0.3885728 0.7940252 0.1939468 +0.4317928 0.7940252 0.1939468 +0.470214 0.7940252 0.1939468 +0.5050551 0.7940252 0.1939468 +0.5370987 0.7940252 0.1939468 +0.5668815 0.7940252 0.1939468 +0.5947903 0.7940252 0.1939468 +0.6211144 0.7940252 0.1939468 +0.6460766 0.7940252 0.1939468 +0.6698526 0.7940252 0.1939468 +0.6925839 0.7940252 0.1939468 +0.7143866 0.7940252 0.1939468 +0.7353569 0.7940252 0.1939468 +0.7555758 0.7940252 0.1939468 +0.7751122 0.7940252 0.1939468 +0.7940252 0.7940252 0.1939468 +0.8123661 0.7940252 0.1939468 +0.8301795 0.7940252 0.1939468 +0.8475045 0.7940252 0.1939468 +0.8643761 0.7940252 0.1939468 +0.880825 0.7940252 0.1939468 +0.8968787 0.7940252 0.1939468 +0.9125621 0.7940252 0.1939468 +0.9278974 0.7940252 0.1939468 +0.9429048 0.7940252 0.1939468 +0.9576028 0.7940252 0.1939468 +0.9720079 0.7940252 0.1939468 +0.9861357 0.7940252 0.1939468 +1 0.7940252 0.1939468 +0 0.8123661 0.1939468 +0.1939468 0.8123661 0.1939468 +0.2773041 0.8123661 0.1939468 +0.3384659 0.8123661 0.1939468 +0.3885728 0.8123661 0.1939468 +0.4317928 0.8123661 0.1939468 +0.470214 0.8123661 0.1939468 +0.5050551 0.8123661 0.1939468 +0.5370987 0.8123661 0.1939468 +0.5668815 0.8123661 0.1939468 +0.5947903 0.8123661 0.1939468 +0.6211144 0.8123661 0.1939468 +0.6460766 0.8123661 0.1939468 +0.6698526 0.8123661 0.1939468 +0.6925839 0.8123661 0.1939468 +0.7143866 0.8123661 0.1939468 +0.7353569 0.8123661 0.1939468 +0.7555758 0.8123661 0.1939468 +0.7751122 0.8123661 0.1939468 +0.7940252 0.8123661 0.1939468 +0.8123661 0.8123661 0.1939468 +0.8301795 0.8123661 0.1939468 +0.8475045 0.8123661 0.1939468 +0.8643761 0.8123661 0.1939468 +0.880825 0.8123661 0.1939468 +0.8968787 0.8123661 0.1939468 +0.9125621 0.8123661 0.1939468 +0.9278974 0.8123661 0.1939468 +0.9429048 0.8123661 0.1939468 +0.9576028 0.8123661 0.1939468 +0.9720079 0.8123661 0.1939468 +0.9861357 0.8123661 0.1939468 +1 0.8123661 0.1939468 +0 0.8301795 0.1939468 +0.1939468 0.8301795 0.1939468 +0.2773041 0.8301795 0.1939468 +0.3384659 0.8301795 0.1939468 +0.3885728 0.8301795 0.1939468 +0.4317928 0.8301795 0.1939468 +0.470214 0.8301795 0.1939468 +0.5050551 0.8301795 0.1939468 +0.5370987 0.8301795 0.1939468 +0.5668815 0.8301795 0.1939468 +0.5947903 0.8301795 0.1939468 +0.6211144 0.8301795 0.1939468 +0.6460766 0.8301795 0.1939468 +0.6698526 0.8301795 0.1939468 +0.6925839 0.8301795 0.1939468 +0.7143866 0.8301795 0.1939468 +0.7353569 0.8301795 0.1939468 +0.7555758 0.8301795 0.1939468 +0.7751122 0.8301795 0.1939468 +0.7940252 0.8301795 0.1939468 +0.8123661 0.8301795 0.1939468 +0.8301795 0.8301795 0.1939468 +0.8475045 0.8301795 0.1939468 +0.8643761 0.8301795 0.1939468 +0.880825 0.8301795 0.1939468 +0.8968787 0.8301795 0.1939468 +0.9125621 0.8301795 0.1939468 +0.9278974 0.8301795 0.1939468 +0.9429048 0.8301795 0.1939468 +0.9576028 0.8301795 0.1939468 +0.9720079 0.8301795 0.1939468 +0.9861357 0.8301795 0.1939468 +1 0.8301795 0.1939468 +0 0.8475045 0.1939468 +0.1939468 0.8475045 0.1939468 +0.2773041 0.8475045 0.1939468 +0.3384659 0.8475045 0.1939468 +0.3885728 0.8475045 0.1939468 +0.4317928 0.8475045 0.1939468 +0.470214 0.8475045 0.1939468 +0.5050551 0.8475045 0.1939468 +0.5370987 0.8475045 0.1939468 +0.5668815 0.8475045 0.1939468 +0.5947903 0.8475045 0.1939468 +0.6211144 0.8475045 0.1939468 +0.6460766 0.8475045 0.1939468 +0.6698526 0.8475045 0.1939468 +0.6925839 0.8475045 0.1939468 +0.7143866 0.8475045 0.1939468 +0.7353569 0.8475045 0.1939468 +0.7555758 0.8475045 0.1939468 +0.7751122 0.8475045 0.1939468 +0.7940252 0.8475045 0.1939468 +0.8123661 0.8475045 0.1939468 +0.8301795 0.8475045 0.1939468 +0.8475045 0.8475045 0.1939468 +0.8643761 0.8475045 0.1939468 +0.880825 0.8475045 0.1939468 +0.8968787 0.8475045 0.1939468 +0.9125621 0.8475045 0.1939468 +0.9278974 0.8475045 0.1939468 +0.9429048 0.8475045 0.1939468 +0.9576028 0.8475045 0.1939468 +0.9720079 0.8475045 0.1939468 +0.9861357 0.8475045 0.1939468 +1 0.8475045 0.1939468 +0 0.8643761 0.1939468 +0.1939468 0.8643761 0.1939468 +0.2773041 0.8643761 0.1939468 +0.3384659 0.8643761 0.1939468 +0.3885728 0.8643761 0.1939468 +0.4317928 0.8643761 0.1939468 +0.470214 0.8643761 0.1939468 +0.5050551 0.8643761 0.1939468 +0.5370987 0.8643761 0.1939468 +0.5668815 0.8643761 0.1939468 +0.5947903 0.8643761 0.1939468 +0.6211144 0.8643761 0.1939468 +0.6460766 0.8643761 0.1939468 +0.6698526 0.8643761 0.1939468 +0.6925839 0.8643761 0.1939468 +0.7143866 0.8643761 0.1939468 +0.7353569 0.8643761 0.1939468 +0.7555758 0.8643761 0.1939468 +0.7751122 0.8643761 0.1939468 +0.7940252 0.8643761 0.1939468 +0.8123661 0.8643761 0.1939468 +0.8301795 0.8643761 0.1939468 +0.8475045 0.8643761 0.1939468 +0.8643761 0.8643761 0.1939468 +0.880825 0.8643761 0.1939468 +0.8968787 0.8643761 0.1939468 +0.9125621 0.8643761 0.1939468 +0.9278974 0.8643761 0.1939468 +0.9429048 0.8643761 0.1939468 +0.9576028 0.8643761 0.1939468 +0.9720079 0.8643761 0.1939468 +0.9861357 0.8643761 0.1939468 +1 0.8643761 0.1939468 +0 0.880825 0.1939468 +0.1939468 0.880825 0.1939468 +0.2773041 0.880825 0.1939468 +0.3384659 0.880825 0.1939468 +0.3885728 0.880825 0.1939468 +0.4317928 0.880825 0.1939468 +0.470214 0.880825 0.1939468 +0.5050551 0.880825 0.1939468 +0.5370987 0.880825 0.1939468 +0.5668815 0.880825 0.1939468 +0.5947903 0.880825 0.1939468 +0.6211144 0.880825 0.1939468 +0.6460766 0.880825 0.1939468 +0.6698526 0.880825 0.1939468 +0.6925839 0.880825 0.1939468 +0.7143866 0.880825 0.1939468 +0.7353569 0.880825 0.1939468 +0.7555758 0.880825 0.1939468 +0.7751122 0.880825 0.1939468 +0.7940252 0.880825 0.1939468 +0.8123661 0.880825 0.1939468 +0.8301795 0.880825 0.1939468 +0.8475045 0.880825 0.1939468 +0.8643761 0.880825 0.1939468 +0.880825 0.880825 0.1939468 +0.8968787 0.880825 0.1939468 +0.9125621 0.880825 0.1939468 +0.9278974 0.880825 0.1939468 +0.9429048 0.880825 0.1939468 +0.9576028 0.880825 0.1939468 +0.9720079 0.880825 0.1939468 +0.9861357 0.880825 0.1939468 +1 0.880825 0.1939468 +0 0.8968787 0.1939468 +0.1939468 0.8968787 0.1939468 +0.2773041 0.8968787 0.1939468 +0.3384659 0.8968787 0.1939468 +0.3885728 0.8968787 0.1939468 +0.4317928 0.8968787 0.1939468 +0.470214 0.8968787 0.1939468 +0.5050551 0.8968787 0.1939468 +0.5370987 0.8968787 0.1939468 +0.5668815 0.8968787 0.1939468 +0.5947903 0.8968787 0.1939468 +0.6211144 0.8968787 0.1939468 +0.6460766 0.8968787 0.1939468 +0.6698526 0.8968787 0.1939468 +0.6925839 0.8968787 0.1939468 +0.7143866 0.8968787 0.1939468 +0.7353569 0.8968787 0.1939468 +0.7555758 0.8968787 0.1939468 +0.7751122 0.8968787 0.1939468 +0.7940252 0.8968787 0.1939468 +0.8123661 0.8968787 0.1939468 +0.8301795 0.8968787 0.1939468 +0.8475045 0.8968787 0.1939468 +0.8643761 0.8968787 0.1939468 +0.880825 0.8968787 0.1939468 +0.8968787 0.8968787 0.1939468 +0.9125621 0.8968787 0.1939468 +0.9278974 0.8968787 0.1939468 +0.9429048 0.8968787 0.1939468 +0.9576028 0.8968787 0.1939468 +0.9720079 0.8968787 0.1939468 +0.9861357 0.8968787 0.1939468 +1 0.8968787 0.1939468 +0 0.9125621 0.1939468 +0.1939468 0.9125621 0.1939468 +0.2773041 0.9125621 0.1939468 +0.3384659 0.9125621 0.1939468 +0.3885728 0.9125621 0.1939468 +0.4317928 0.9125621 0.1939468 +0.470214 0.9125621 0.1939468 +0.5050551 0.9125621 0.1939468 +0.5370987 0.9125621 0.1939468 +0.5668815 0.9125621 0.1939468 +0.5947903 0.9125621 0.1939468 +0.6211144 0.9125621 0.1939468 +0.6460766 0.9125621 0.1939468 +0.6698526 0.9125621 0.1939468 +0.6925839 0.9125621 0.1939468 +0.7143866 0.9125621 0.1939468 +0.7353569 0.9125621 0.1939468 +0.7555758 0.9125621 0.1939468 +0.7751122 0.9125621 0.1939468 +0.7940252 0.9125621 0.1939468 +0.8123661 0.9125621 0.1939468 +0.8301795 0.9125621 0.1939468 +0.8475045 0.9125621 0.1939468 +0.8643761 0.9125621 0.1939468 +0.880825 0.9125621 0.1939468 +0.8968787 0.9125621 0.1939468 +0.9125621 0.9125621 0.1939468 +0.9278974 0.9125621 0.1939468 +0.9429048 0.9125621 0.1939468 +0.9576028 0.9125621 0.1939468 +0.9720079 0.9125621 0.1939468 +0.9861357 0.9125621 0.1939468 +1 0.9125621 0.1939468 +0 0.9278974 0.1939468 +0.1939468 0.9278974 0.1939468 +0.2773041 0.9278974 0.1939468 +0.3384659 0.9278974 0.1939468 +0.3885728 0.9278974 0.1939468 +0.4317928 0.9278974 0.1939468 +0.470214 0.9278974 0.1939468 +0.5050551 0.9278974 0.1939468 +0.5370987 0.9278974 0.1939468 +0.5668815 0.9278974 0.1939468 +0.5947903 0.9278974 0.1939468 +0.6211144 0.9278974 0.1939468 +0.6460766 0.9278974 0.1939468 +0.6698526 0.9278974 0.1939468 +0.6925839 0.9278974 0.1939468 +0.7143866 0.9278974 0.1939468 +0.7353569 0.9278974 0.1939468 +0.7555758 0.9278974 0.1939468 +0.7751122 0.9278974 0.1939468 +0.7940252 0.9278974 0.1939468 +0.8123661 0.9278974 0.1939468 +0.8301795 0.9278974 0.1939468 +0.8475045 0.9278974 0.1939468 +0.8643761 0.9278974 0.1939468 +0.880825 0.9278974 0.1939468 +0.8968787 0.9278974 0.1939468 +0.9125621 0.9278974 0.1939468 +0.9278974 0.9278974 0.1939468 +0.9429048 0.9278974 0.1939468 +0.9576028 0.9278974 0.1939468 +0.9720079 0.9278974 0.1939468 +0.9861357 0.9278974 0.1939468 +1 0.9278974 0.1939468 +0 0.9429048 0.1939468 +0.1939468 0.9429048 0.1939468 +0.2773041 0.9429048 0.1939468 +0.3384659 0.9429048 0.1939468 +0.3885728 0.9429048 0.1939468 +0.4317928 0.9429048 0.1939468 +0.470214 0.9429048 0.1939468 +0.5050551 0.9429048 0.1939468 +0.5370987 0.9429048 0.1939468 +0.5668815 0.9429048 0.1939468 +0.5947903 0.9429048 0.1939468 +0.6211144 0.9429048 0.1939468 +0.6460766 0.9429048 0.1939468 +0.6698526 0.9429048 0.1939468 +0.6925839 0.9429048 0.1939468 +0.7143866 0.9429048 0.1939468 +0.7353569 0.9429048 0.1939468 +0.7555758 0.9429048 0.1939468 +0.7751122 0.9429048 0.1939468 +0.7940252 0.9429048 0.1939468 +0.8123661 0.9429048 0.1939468 +0.8301795 0.9429048 0.1939468 +0.8475045 0.9429048 0.1939468 +0.8643761 0.9429048 0.1939468 +0.880825 0.9429048 0.1939468 +0.8968787 0.9429048 0.1939468 +0.9125621 0.9429048 0.1939468 +0.9278974 0.9429048 0.1939468 +0.9429048 0.9429048 0.1939468 +0.9576028 0.9429048 0.1939468 +0.9720079 0.9429048 0.1939468 +0.9861357 0.9429048 0.1939468 +1 0.9429048 0.1939468 +0 0.9576028 0.1939468 +0.1939468 0.9576028 0.1939468 +0.2773041 0.9576028 0.1939468 +0.3384659 0.9576028 0.1939468 +0.3885728 0.9576028 0.1939468 +0.4317928 0.9576028 0.1939468 +0.470214 0.9576028 0.1939468 +0.5050551 0.9576028 0.1939468 +0.5370987 0.9576028 0.1939468 +0.5668815 0.9576028 0.1939468 +0.5947903 0.9576028 0.1939468 +0.6211144 0.9576028 0.1939468 +0.6460766 0.9576028 0.1939468 +0.6698526 0.9576028 0.1939468 +0.6925839 0.9576028 0.1939468 +0.7143866 0.9576028 0.1939468 +0.7353569 0.9576028 0.1939468 +0.7555758 0.9576028 0.1939468 +0.7751122 0.9576028 0.1939468 +0.7940252 0.9576028 0.1939468 +0.8123661 0.9576028 0.1939468 +0.8301795 0.9576028 0.1939468 +0.8475045 0.9576028 0.1939468 +0.8643761 0.9576028 0.1939468 +0.880825 0.9576028 0.1939468 +0.8968787 0.9576028 0.1939468 +0.9125621 0.9576028 0.1939468 +0.9278974 0.9576028 0.1939468 +0.9429048 0.9576028 0.1939468 +0.9576028 0.9576028 0.1939468 +0.9720079 0.9576028 0.1939468 +0.9861357 0.9576028 0.1939468 +1 0.9576028 0.1939468 +0 0.9720079 0.1939468 +0.1939468 0.9720079 0.1939468 +0.2773041 0.9720079 0.1939468 +0.3384659 0.9720079 0.1939468 +0.3885728 0.9720079 0.1939468 +0.4317928 0.9720079 0.1939468 +0.470214 0.9720079 0.1939468 +0.5050551 0.9720079 0.1939468 +0.5370987 0.9720079 0.1939468 +0.5668815 0.9720079 0.1939468 +0.5947903 0.9720079 0.1939468 +0.6211144 0.9720079 0.1939468 +0.6460766 0.9720079 0.1939468 +0.6698526 0.9720079 0.1939468 +0.6925839 0.9720079 0.1939468 +0.7143866 0.9720079 0.1939468 +0.7353569 0.9720079 0.1939468 +0.7555758 0.9720079 0.1939468 +0.7751122 0.9720079 0.1939468 +0.7940252 0.9720079 0.1939468 +0.8123661 0.9720079 0.1939468 +0.8301795 0.9720079 0.1939468 +0.8475045 0.9720079 0.1939468 +0.8643761 0.9720079 0.1939468 +0.880825 0.9720079 0.1939468 +0.8968787 0.9720079 0.1939468 +0.9125621 0.9720079 0.1939468 +0.9278974 0.9720079 0.1939468 +0.9429048 0.9720079 0.1939468 +0.9576028 0.9720079 0.1939468 +0.9720079 0.9720079 0.1939468 +0.9861357 0.9720079 0.1939468 +1 0.9720079 0.1939468 +0 0.9861357 0.1939468 +0.1939468 0.9861357 0.1939468 +0.2773041 0.9861357 0.1939468 +0.3384659 0.9861357 0.1939468 +0.3885728 0.9861357 0.1939468 +0.4317928 0.9861357 0.1939468 +0.470214 0.9861357 0.1939468 +0.5050551 0.9861357 0.1939468 +0.5370987 0.9861357 0.1939468 +0.5668815 0.9861357 0.1939468 +0.5947903 0.9861357 0.1939468 +0.6211144 0.9861357 0.1939468 +0.6460766 0.9861357 0.1939468 +0.6698526 0.9861357 0.1939468 +0.6925839 0.9861357 0.1939468 +0.7143866 0.9861357 0.1939468 +0.7353569 0.9861357 0.1939468 +0.7555758 0.9861357 0.1939468 +0.7751122 0.9861357 0.1939468 +0.7940252 0.9861357 0.1939468 +0.8123661 0.9861357 0.1939468 +0.8301795 0.9861357 0.1939468 +0.8475045 0.9861357 0.1939468 +0.8643761 0.9861357 0.1939468 +0.880825 0.9861357 0.1939468 +0.8968787 0.9861357 0.1939468 +0.9125621 0.9861357 0.1939468 +0.9278974 0.9861357 0.1939468 +0.9429048 0.9861357 0.1939468 +0.9576028 0.9861357 0.1939468 +0.9720079 0.9861357 0.1939468 +0.9861357 0.9861357 0.1939468 +1 0.9861357 0.1939468 +0 1 0.1939468 +0.1939468 1 0.1939468 +0.2773041 1 0.1939468 +0.3384659 1 0.1939468 +0.3885728 1 0.1939468 +0.4317928 1 0.1939468 +0.470214 1 0.1939468 +0.5050551 1 0.1939468 +0.5370987 1 0.1939468 +0.5668815 1 0.1939468 +0.5947903 1 0.1939468 +0.6211144 1 0.1939468 +0.6460766 1 0.1939468 +0.6698526 1 0.1939468 +0.6925839 1 0.1939468 +0.7143866 1 0.1939468 +0.7353569 1 0.1939468 +0.7555758 1 0.1939468 +0.7751122 1 0.1939468 +0.7940252 1 0.1939468 +0.8123661 1 0.1939468 +0.8301795 1 0.1939468 +0.8475045 1 0.1939468 +0.8643761 1 0.1939468 +0.880825 1 0.1939468 +0.8968787 1 0.1939468 +0.9125621 1 0.1939468 +0.9278974 1 0.1939468 +0.9429048 1 0.1939468 +0.9576028 1 0.1939468 +0.9720079 1 0.1939468 +0.9861357 1 0.1939468 +1 1 0.1939468 +0 0 0.2773041 +0.1939468 0 0.2773041 +0.2773041 0 0.2773041 +0.3384659 0 0.2773041 +0.3885728 0 0.2773041 +0.4317928 0 0.2773041 +0.470214 0 0.2773041 +0.5050551 0 0.2773041 +0.5370987 0 0.2773041 +0.5668815 0 0.2773041 +0.5947903 0 0.2773041 +0.6211144 0 0.2773041 +0.6460766 0 0.2773041 +0.6698526 0 0.2773041 +0.6925839 0 0.2773041 +0.7143866 0 0.2773041 +0.7353569 0 0.2773041 +0.7555758 0 0.2773041 +0.7751122 0 0.2773041 +0.7940252 0 0.2773041 +0.8123661 0 0.2773041 +0.8301795 0 0.2773041 +0.8475045 0 0.2773041 +0.8643761 0 0.2773041 +0.880825 0 0.2773041 +0.8968787 0 0.2773041 +0.9125621 0 0.2773041 +0.9278974 0 0.2773041 +0.9429048 0 0.2773041 +0.9576028 0 0.2773041 +0.9720079 0 0.2773041 +0.9861357 0 0.2773041 +1 0 0.2773041 +0 0.1939468 0.2773041 +0.1939468 0.1939468 0.2773041 +0.2773041 0.1939468 0.2773041 +0.3384659 0.1939468 0.2773041 +0.3885728 0.1939468 0.2773041 +0.4317928 0.1939468 0.2773041 +0.470214 0.1939468 0.2773041 +0.5050551 0.1939468 0.2773041 +0.5370987 0.1939468 0.2773041 +0.5668815 0.1939468 0.2773041 +0.5947903 0.1939468 0.2773041 +0.6211144 0.1939468 0.2773041 +0.6460766 0.1939468 0.2773041 +0.6698526 0.1939468 0.2773041 +0.6925839 0.1939468 0.2773041 +0.7143866 0.1939468 0.2773041 +0.7353569 0.1939468 0.2773041 +0.7555758 0.1939468 0.2773041 +0.7751122 0.1939468 0.2773041 +0.7940252 0.1939468 0.2773041 +0.8123661 0.1939468 0.2773041 +0.8301795 0.1939468 0.2773041 +0.8475045 0.1939468 0.2773041 +0.8643761 0.1939468 0.2773041 +0.880825 0.1939468 0.2773041 +0.8968787 0.1939468 0.2773041 +0.9125621 0.1939468 0.2773041 +0.9278974 0.1939468 0.2773041 +0.9429048 0.1939468 0.2773041 +0.9576028 0.1939468 0.2773041 +0.9720079 0.1939468 0.2773041 +0.9861357 0.1939468 0.2773041 +1 0.1939468 0.2773041 +0 0.2773041 0.2773041 +0.1939468 0.2773041 0.2773041 +0.2773041 0.2773041 0.2773041 +0.3384659 0.2773041 0.2773041 +0.3885728 0.2773041 0.2773041 +0.4317928 0.2773041 0.2773041 +0.470214 0.2773041 0.2773041 +0.5050551 0.2773041 0.2773041 +0.5370987 0.2773041 0.2773041 +0.5668815 0.2773041 0.2773041 +0.5947903 0.2773041 0.2773041 +0.6211144 0.2773041 0.2773041 +0.6460766 0.2773041 0.2773041 +0.6698526 0.2773041 0.2773041 +0.6925839 0.2773041 0.2773041 +0.7143866 0.2773041 0.2773041 +0.7353569 0.2773041 0.2773041 +0.7555758 0.2773041 0.2773041 +0.7751122 0.2773041 0.2773041 +0.7940252 0.2773041 0.2773041 +0.8123661 0.2773041 0.2773041 +0.8301795 0.2773041 0.2773041 +0.8475045 0.2773041 0.2773041 +0.8643761 0.2773041 0.2773041 +0.880825 0.2773041 0.2773041 +0.8968787 0.2773041 0.2773041 +0.9125621 0.2773041 0.2773041 +0.9278974 0.2773041 0.2773041 +0.9429048 0.2773041 0.2773041 +0.9576028 0.2773041 0.2773041 +0.9720079 0.2773041 0.2773041 +0.9861357 0.2773041 0.2773041 +1 0.2773041 0.2773041 +0 0.3384659 0.2773041 +0.1939468 0.3384659 0.2773041 +0.2773041 0.3384659 0.2773041 +0.3384659 0.3384659 0.2773041 +0.3885728 0.3384659 0.2773041 +0.4317928 0.3384659 0.2773041 +0.470214 0.3384659 0.2773041 +0.5050551 0.3384659 0.2773041 +0.5370987 0.3384659 0.2773041 +0.5668815 0.3384659 0.2773041 +0.5947903 0.3384659 0.2773041 +0.6211144 0.3384659 0.2773041 +0.6460766 0.3384659 0.2773041 +0.6698526 0.3384659 0.2773041 +0.6925839 0.3384659 0.2773041 +0.7143866 0.3384659 0.2773041 +0.7353569 0.3384659 0.2773041 +0.7555758 0.3384659 0.2773041 +0.7751122 0.3384659 0.2773041 +0.7940252 0.3384659 0.2773041 +0.8123661 0.3384659 0.2773041 +0.8301795 0.3384659 0.2773041 +0.8475045 0.3384659 0.2773041 +0.8643761 0.3384659 0.2773041 +0.880825 0.3384659 0.2773041 +0.8968787 0.3384659 0.2773041 +0.9125621 0.3384659 0.2773041 +0.9278974 0.3384659 0.2773041 +0.9429048 0.3384659 0.2773041 +0.9576028 0.3384659 0.2773041 +0.9720079 0.3384659 0.2773041 +0.9861357 0.3384659 0.2773041 +1 0.3384659 0.2773041 +0 0.3885728 0.2773041 +0.1939468 0.3885728 0.2773041 +0.2773041 0.3885728 0.2773041 +0.3384659 0.3885728 0.2773041 +0.3885728 0.3885728 0.2773041 +0.4317928 0.3885728 0.2773041 +0.470214 0.3885728 0.2773041 +0.5050551 0.3885728 0.2773041 +0.5370987 0.3885728 0.2773041 +0.5668815 0.3885728 0.2773041 +0.5947903 0.3885728 0.2773041 +0.6211144 0.3885728 0.2773041 +0.6460766 0.3885728 0.2773041 +0.6698526 0.3885728 0.2773041 +0.6925839 0.3885728 0.2773041 +0.7143866 0.3885728 0.2773041 +0.7353569 0.3885728 0.2773041 +0.7555758 0.3885728 0.2773041 +0.7751122 0.3885728 0.2773041 +0.7940252 0.3885728 0.2773041 +0.8123661 0.3885728 0.2773041 +0.8301795 0.3885728 0.2773041 +0.8475045 0.3885728 0.2773041 +0.8643761 0.3885728 0.2773041 +0.880825 0.3885728 0.2773041 +0.8968787 0.3885728 0.2773041 +0.9125621 0.3885728 0.2773041 +0.9278974 0.3885728 0.2773041 +0.9429048 0.3885728 0.2773041 +0.9576028 0.3885728 0.2773041 +0.9720079 0.3885728 0.2773041 +0.9861357 0.3885728 0.2773041 +1 0.3885728 0.2773041 +0 0.4317928 0.2773041 +0.1939468 0.4317928 0.2773041 +0.2773041 0.4317928 0.2773041 +0.3384659 0.4317928 0.2773041 +0.3885728 0.4317928 0.2773041 +0.4317928 0.4317928 0.2773041 +0.470214 0.4317928 0.2773041 +0.5050551 0.4317928 0.2773041 +0.5370987 0.4317928 0.2773041 +0.5668815 0.4317928 0.2773041 +0.5947903 0.4317928 0.2773041 +0.6211144 0.4317928 0.2773041 +0.6460766 0.4317928 0.2773041 +0.6698526 0.4317928 0.2773041 +0.6925839 0.4317928 0.2773041 +0.7143866 0.4317928 0.2773041 +0.7353569 0.4317928 0.2773041 +0.7555758 0.4317928 0.2773041 +0.7751122 0.4317928 0.2773041 +0.7940252 0.4317928 0.2773041 +0.8123661 0.4317928 0.2773041 +0.8301795 0.4317928 0.2773041 +0.8475045 0.4317928 0.2773041 +0.8643761 0.4317928 0.2773041 +0.880825 0.4317928 0.2773041 +0.8968787 0.4317928 0.2773041 +0.9125621 0.4317928 0.2773041 +0.9278974 0.4317928 0.2773041 +0.9429048 0.4317928 0.2773041 +0.9576028 0.4317928 0.2773041 +0.9720079 0.4317928 0.2773041 +0.9861357 0.4317928 0.2773041 +1 0.4317928 0.2773041 +0 0.470214 0.2773041 +0.1939468 0.470214 0.2773041 +0.2773041 0.470214 0.2773041 +0.3384659 0.470214 0.2773041 +0.3885728 0.470214 0.2773041 +0.4317928 0.470214 0.2773041 +0.470214 0.470214 0.2773041 +0.5050551 0.470214 0.2773041 +0.5370987 0.470214 0.2773041 +0.5668815 0.470214 0.2773041 +0.5947903 0.470214 0.2773041 +0.6211144 0.470214 0.2773041 +0.6460766 0.470214 0.2773041 +0.6698526 0.470214 0.2773041 +0.6925839 0.470214 0.2773041 +0.7143866 0.470214 0.2773041 +0.7353569 0.470214 0.2773041 +0.7555758 0.470214 0.2773041 +0.7751122 0.470214 0.2773041 +0.7940252 0.470214 0.2773041 +0.8123661 0.470214 0.2773041 +0.8301795 0.470214 0.2773041 +0.8475045 0.470214 0.2773041 +0.8643761 0.470214 0.2773041 +0.880825 0.470214 0.2773041 +0.8968787 0.470214 0.2773041 +0.9125621 0.470214 0.2773041 +0.9278974 0.470214 0.2773041 +0.9429048 0.470214 0.2773041 +0.9576028 0.470214 0.2773041 +0.9720079 0.470214 0.2773041 +0.9861357 0.470214 0.2773041 +1 0.470214 0.2773041 +0 0.5050551 0.2773041 +0.1939468 0.5050551 0.2773041 +0.2773041 0.5050551 0.2773041 +0.3384659 0.5050551 0.2773041 +0.3885728 0.5050551 0.2773041 +0.4317928 0.5050551 0.2773041 +0.470214 0.5050551 0.2773041 +0.5050551 0.5050551 0.2773041 +0.5370987 0.5050551 0.2773041 +0.5668815 0.5050551 0.2773041 +0.5947903 0.5050551 0.2773041 +0.6211144 0.5050551 0.2773041 +0.6460766 0.5050551 0.2773041 +0.6698526 0.5050551 0.2773041 +0.6925839 0.5050551 0.2773041 +0.7143866 0.5050551 0.2773041 +0.7353569 0.5050551 0.2773041 +0.7555758 0.5050551 0.2773041 +0.7751122 0.5050551 0.2773041 +0.7940252 0.5050551 0.2773041 +0.8123661 0.5050551 0.2773041 +0.8301795 0.5050551 0.2773041 +0.8475045 0.5050551 0.2773041 +0.8643761 0.5050551 0.2773041 +0.880825 0.5050551 0.2773041 +0.8968787 0.5050551 0.2773041 +0.9125621 0.5050551 0.2773041 +0.9278974 0.5050551 0.2773041 +0.9429048 0.5050551 0.2773041 +0.9576028 0.5050551 0.2773041 +0.9720079 0.5050551 0.2773041 +0.9861357 0.5050551 0.2773041 +1 0.5050551 0.2773041 +0 0.5370987 0.2773041 +0.1939468 0.5370987 0.2773041 +0.2773041 0.5370987 0.2773041 +0.3384659 0.5370987 0.2773041 +0.3885728 0.5370987 0.2773041 +0.4317928 0.5370987 0.2773041 +0.470214 0.5370987 0.2773041 +0.5050551 0.5370987 0.2773041 +0.5370987 0.5370987 0.2773041 +0.5668815 0.5370987 0.2773041 +0.5947903 0.5370987 0.2773041 +0.6211144 0.5370987 0.2773041 +0.6460766 0.5370987 0.2773041 +0.6698526 0.5370987 0.2773041 +0.6925839 0.5370987 0.2773041 +0.7143866 0.5370987 0.2773041 +0.7353569 0.5370987 0.2773041 +0.7555758 0.5370987 0.2773041 +0.7751122 0.5370987 0.2773041 +0.7940252 0.5370987 0.2773041 +0.8123661 0.5370987 0.2773041 +0.8301795 0.5370987 0.2773041 +0.8475045 0.5370987 0.2773041 +0.8643761 0.5370987 0.2773041 +0.880825 0.5370987 0.2773041 +0.8968787 0.5370987 0.2773041 +0.9125621 0.5370987 0.2773041 +0.9278974 0.5370987 0.2773041 +0.9429048 0.5370987 0.2773041 +0.9576028 0.5370987 0.2773041 +0.9720079 0.5370987 0.2773041 +0.9861357 0.5370987 0.2773041 +1 0.5370987 0.2773041 +0 0.5668815 0.2773041 +0.1939468 0.5668815 0.2773041 +0.2773041 0.5668815 0.2773041 +0.3384659 0.5668815 0.2773041 +0.3885728 0.5668815 0.2773041 +0.4317928 0.5668815 0.2773041 +0.470214 0.5668815 0.2773041 +0.5050551 0.5668815 0.2773041 +0.5370987 0.5668815 0.2773041 +0.5668815 0.5668815 0.2773041 +0.5947903 0.5668815 0.2773041 +0.6211144 0.5668815 0.2773041 +0.6460766 0.5668815 0.2773041 +0.6698526 0.5668815 0.2773041 +0.6925839 0.5668815 0.2773041 +0.7143866 0.5668815 0.2773041 +0.7353569 0.5668815 0.2773041 +0.7555758 0.5668815 0.2773041 +0.7751122 0.5668815 0.2773041 +0.7940252 0.5668815 0.2773041 +0.8123661 0.5668815 0.2773041 +0.8301795 0.5668815 0.2773041 +0.8475045 0.5668815 0.2773041 +0.8643761 0.5668815 0.2773041 +0.880825 0.5668815 0.2773041 +0.8968787 0.5668815 0.2773041 +0.9125621 0.5668815 0.2773041 +0.9278974 0.5668815 0.2773041 +0.9429048 0.5668815 0.2773041 +0.9576028 0.5668815 0.2773041 +0.9720079 0.5668815 0.2773041 +0.9861357 0.5668815 0.2773041 +1 0.5668815 0.2773041 +0 0.5947903 0.2773041 +0.1939468 0.5947903 0.2773041 +0.2773041 0.5947903 0.2773041 +0.3384659 0.5947903 0.2773041 +0.3885728 0.5947903 0.2773041 +0.4317928 0.5947903 0.2773041 +0.470214 0.5947903 0.2773041 +0.5050551 0.5947903 0.2773041 +0.5370987 0.5947903 0.2773041 +0.5668815 0.5947903 0.2773041 +0.5947903 0.5947903 0.2773041 +0.6211144 0.5947903 0.2773041 +0.6460766 0.5947903 0.2773041 +0.6698526 0.5947903 0.2773041 +0.6925839 0.5947903 0.2773041 +0.7143866 0.5947903 0.2773041 +0.7353569 0.5947903 0.2773041 +0.7555758 0.5947903 0.2773041 +0.7751122 0.5947903 0.2773041 +0.7940252 0.5947903 0.2773041 +0.8123661 0.5947903 0.2773041 +0.8301795 0.5947903 0.2773041 +0.8475045 0.5947903 0.2773041 +0.8643761 0.5947903 0.2773041 +0.880825 0.5947903 0.2773041 +0.8968787 0.5947903 0.2773041 +0.9125621 0.5947903 0.2773041 +0.9278974 0.5947903 0.2773041 +0.9429048 0.5947903 0.2773041 +0.9576028 0.5947903 0.2773041 +0.9720079 0.5947903 0.2773041 +0.9861357 0.5947903 0.2773041 +1 0.5947903 0.2773041 +0 0.6211144 0.2773041 +0.1939468 0.6211144 0.2773041 +0.2773041 0.6211144 0.2773041 +0.3384659 0.6211144 0.2773041 +0.3885728 0.6211144 0.2773041 +0.4317928 0.6211144 0.2773041 +0.470214 0.6211144 0.2773041 +0.5050551 0.6211144 0.2773041 +0.5370987 0.6211144 0.2773041 +0.5668815 0.6211144 0.2773041 +0.5947903 0.6211144 0.2773041 +0.6211144 0.6211144 0.2773041 +0.6460766 0.6211144 0.2773041 +0.6698526 0.6211144 0.2773041 +0.6925839 0.6211144 0.2773041 +0.7143866 0.6211144 0.2773041 +0.7353569 0.6211144 0.2773041 +0.7555758 0.6211144 0.2773041 +0.7751122 0.6211144 0.2773041 +0.7940252 0.6211144 0.2773041 +0.8123661 0.6211144 0.2773041 +0.8301795 0.6211144 0.2773041 +0.8475045 0.6211144 0.2773041 +0.8643761 0.6211144 0.2773041 +0.880825 0.6211144 0.2773041 +0.8968787 0.6211144 0.2773041 +0.9125621 0.6211144 0.2773041 +0.9278974 0.6211144 0.2773041 +0.9429048 0.6211144 0.2773041 +0.9576028 0.6211144 0.2773041 +0.9720079 0.6211144 0.2773041 +0.9861357 0.6211144 0.2773041 +1 0.6211144 0.2773041 +0 0.6460766 0.2773041 +0.1939468 0.6460766 0.2773041 +0.2773041 0.6460766 0.2773041 +0.3384659 0.6460766 0.2773041 +0.3885728 0.6460766 0.2773041 +0.4317928 0.6460766 0.2773041 +0.470214 0.6460766 0.2773041 +0.5050551 0.6460766 0.2773041 +0.5370987 0.6460766 0.2773041 +0.5668815 0.6460766 0.2773041 +0.5947903 0.6460766 0.2773041 +0.6211144 0.6460766 0.2773041 +0.6460766 0.6460766 0.2773041 +0.6698526 0.6460766 0.2773041 +0.6925839 0.6460766 0.2773041 +0.7143866 0.6460766 0.2773041 +0.7353569 0.6460766 0.2773041 +0.7555758 0.6460766 0.2773041 +0.7751122 0.6460766 0.2773041 +0.7940252 0.6460766 0.2773041 +0.8123661 0.6460766 0.2773041 +0.8301795 0.6460766 0.2773041 +0.8475045 0.6460766 0.2773041 +0.8643761 0.6460766 0.2773041 +0.880825 0.6460766 0.2773041 +0.8968787 0.6460766 0.2773041 +0.9125621 0.6460766 0.2773041 +0.9278974 0.6460766 0.2773041 +0.9429048 0.6460766 0.2773041 +0.9576028 0.6460766 0.2773041 +0.9720079 0.6460766 0.2773041 +0.9861357 0.6460766 0.2773041 +1 0.6460766 0.2773041 +0 0.6698526 0.2773041 +0.1939468 0.6698526 0.2773041 +0.2773041 0.6698526 0.2773041 +0.3384659 0.6698526 0.2773041 +0.3885728 0.6698526 0.2773041 +0.4317928 0.6698526 0.2773041 +0.470214 0.6698526 0.2773041 +0.5050551 0.6698526 0.2773041 +0.5370987 0.6698526 0.2773041 +0.5668815 0.6698526 0.2773041 +0.5947903 0.6698526 0.2773041 +0.6211144 0.6698526 0.2773041 +0.6460766 0.6698526 0.2773041 +0.6698526 0.6698526 0.2773041 +0.6925839 0.6698526 0.2773041 +0.7143866 0.6698526 0.2773041 +0.7353569 0.6698526 0.2773041 +0.7555758 0.6698526 0.2773041 +0.7751122 0.6698526 0.2773041 +0.7940252 0.6698526 0.2773041 +0.8123661 0.6698526 0.2773041 +0.8301795 0.6698526 0.2773041 +0.8475045 0.6698526 0.2773041 +0.8643761 0.6698526 0.2773041 +0.880825 0.6698526 0.2773041 +0.8968787 0.6698526 0.2773041 +0.9125621 0.6698526 0.2773041 +0.9278974 0.6698526 0.2773041 +0.9429048 0.6698526 0.2773041 +0.9576028 0.6698526 0.2773041 +0.9720079 0.6698526 0.2773041 +0.9861357 0.6698526 0.2773041 +1 0.6698526 0.2773041 +0 0.6925839 0.2773041 +0.1939468 0.6925839 0.2773041 +0.2773041 0.6925839 0.2773041 +0.3384659 0.6925839 0.2773041 +0.3885728 0.6925839 0.2773041 +0.4317928 0.6925839 0.2773041 +0.470214 0.6925839 0.2773041 +0.5050551 0.6925839 0.2773041 +0.5370987 0.6925839 0.2773041 +0.5668815 0.6925839 0.2773041 +0.5947903 0.6925839 0.2773041 +0.6211144 0.6925839 0.2773041 +0.6460766 0.6925839 0.2773041 +0.6698526 0.6925839 0.2773041 +0.6925839 0.6925839 0.2773041 +0.7143866 0.6925839 0.2773041 +0.7353569 0.6925839 0.2773041 +0.7555758 0.6925839 0.2773041 +0.7751122 0.6925839 0.2773041 +0.7940252 0.6925839 0.2773041 +0.8123661 0.6925839 0.2773041 +0.8301795 0.6925839 0.2773041 +0.8475045 0.6925839 0.2773041 +0.8643761 0.6925839 0.2773041 +0.880825 0.6925839 0.2773041 +0.8968787 0.6925839 0.2773041 +0.9125621 0.6925839 0.2773041 +0.9278974 0.6925839 0.2773041 +0.9429048 0.6925839 0.2773041 +0.9576028 0.6925839 0.2773041 +0.9720079 0.6925839 0.2773041 +0.9861357 0.6925839 0.2773041 +1 0.6925839 0.2773041 +0 0.7143866 0.2773041 +0.1939468 0.7143866 0.2773041 +0.2773041 0.7143866 0.2773041 +0.3384659 0.7143866 0.2773041 +0.3885728 0.7143866 0.2773041 +0.4317928 0.7143866 0.2773041 +0.470214 0.7143866 0.2773041 +0.5050551 0.7143866 0.2773041 +0.5370987 0.7143866 0.2773041 +0.5668815 0.7143866 0.2773041 +0.5947903 0.7143866 0.2773041 +0.6211144 0.7143866 0.2773041 +0.6460766 0.7143866 0.2773041 +0.6698526 0.7143866 0.2773041 +0.6925839 0.7143866 0.2773041 +0.7143866 0.7143866 0.2773041 +0.7353569 0.7143866 0.2773041 +0.7555758 0.7143866 0.2773041 +0.7751122 0.7143866 0.2773041 +0.7940252 0.7143866 0.2773041 +0.8123661 0.7143866 0.2773041 +0.8301795 0.7143866 0.2773041 +0.8475045 0.7143866 0.2773041 +0.8643761 0.7143866 0.2773041 +0.880825 0.7143866 0.2773041 +0.8968787 0.7143866 0.2773041 +0.9125621 0.7143866 0.2773041 +0.9278974 0.7143866 0.2773041 +0.9429048 0.7143866 0.2773041 +0.9576028 0.7143866 0.2773041 +0.9720079 0.7143866 0.2773041 +0.9861357 0.7143866 0.2773041 +1 0.7143866 0.2773041 +0 0.7353569 0.2773041 +0.1939468 0.7353569 0.2773041 +0.2773041 0.7353569 0.2773041 +0.3384659 0.7353569 0.2773041 +0.3885728 0.7353569 0.2773041 +0.4317928 0.7353569 0.2773041 +0.470214 0.7353569 0.2773041 +0.5050551 0.7353569 0.2773041 +0.5370987 0.7353569 0.2773041 +0.5668815 0.7353569 0.2773041 +0.5947903 0.7353569 0.2773041 +0.6211144 0.7353569 0.2773041 +0.6460766 0.7353569 0.2773041 +0.6698526 0.7353569 0.2773041 +0.6925839 0.7353569 0.2773041 +0.7143866 0.7353569 0.2773041 +0.7353569 0.7353569 0.2773041 +0.7555758 0.7353569 0.2773041 +0.7751122 0.7353569 0.2773041 +0.7940252 0.7353569 0.2773041 +0.8123661 0.7353569 0.2773041 +0.8301795 0.7353569 0.2773041 +0.8475045 0.7353569 0.2773041 +0.8643761 0.7353569 0.2773041 +0.880825 0.7353569 0.2773041 +0.8968787 0.7353569 0.2773041 +0.9125621 0.7353569 0.2773041 +0.9278974 0.7353569 0.2773041 +0.9429048 0.7353569 0.2773041 +0.9576028 0.7353569 0.2773041 +0.9720079 0.7353569 0.2773041 +0.9861357 0.7353569 0.2773041 +1 0.7353569 0.2773041 +0 0.7555758 0.2773041 +0.1939468 0.7555758 0.2773041 +0.2773041 0.7555758 0.2773041 +0.3384659 0.7555758 0.2773041 +0.3885728 0.7555758 0.2773041 +0.4317928 0.7555758 0.2773041 +0.470214 0.7555758 0.2773041 +0.5050551 0.7555758 0.2773041 +0.5370987 0.7555758 0.2773041 +0.5668815 0.7555758 0.2773041 +0.5947903 0.7555758 0.2773041 +0.6211144 0.7555758 0.2773041 +0.6460766 0.7555758 0.2773041 +0.6698526 0.7555758 0.2773041 +0.6925839 0.7555758 0.2773041 +0.7143866 0.7555758 0.2773041 +0.7353569 0.7555758 0.2773041 +0.7555758 0.7555758 0.2773041 +0.7751122 0.7555758 0.2773041 +0.7940252 0.7555758 0.2773041 +0.8123661 0.7555758 0.2773041 +0.8301795 0.7555758 0.2773041 +0.8475045 0.7555758 0.2773041 +0.8643761 0.7555758 0.2773041 +0.880825 0.7555758 0.2773041 +0.8968787 0.7555758 0.2773041 +0.9125621 0.7555758 0.2773041 +0.9278974 0.7555758 0.2773041 +0.9429048 0.7555758 0.2773041 +0.9576028 0.7555758 0.2773041 +0.9720079 0.7555758 0.2773041 +0.9861357 0.7555758 0.2773041 +1 0.7555758 0.2773041 +0 0.7751122 0.2773041 +0.1939468 0.7751122 0.2773041 +0.2773041 0.7751122 0.2773041 +0.3384659 0.7751122 0.2773041 +0.3885728 0.7751122 0.2773041 +0.4317928 0.7751122 0.2773041 +0.470214 0.7751122 0.2773041 +0.5050551 0.7751122 0.2773041 +0.5370987 0.7751122 0.2773041 +0.5668815 0.7751122 0.2773041 +0.5947903 0.7751122 0.2773041 +0.6211144 0.7751122 0.2773041 +0.6460766 0.7751122 0.2773041 +0.6698526 0.7751122 0.2773041 +0.6925839 0.7751122 0.2773041 +0.7143866 0.7751122 0.2773041 +0.7353569 0.7751122 0.2773041 +0.7555758 0.7751122 0.2773041 +0.7751122 0.7751122 0.2773041 +0.7940252 0.7751122 0.2773041 +0.8123661 0.7751122 0.2773041 +0.8301795 0.7751122 0.2773041 +0.8475045 0.7751122 0.2773041 +0.8643761 0.7751122 0.2773041 +0.880825 0.7751122 0.2773041 +0.8968787 0.7751122 0.2773041 +0.9125621 0.7751122 0.2773041 +0.9278974 0.7751122 0.2773041 +0.9429048 0.7751122 0.2773041 +0.9576028 0.7751122 0.2773041 +0.9720079 0.7751122 0.2773041 +0.9861357 0.7751122 0.2773041 +1 0.7751122 0.2773041 +0 0.7940252 0.2773041 +0.1939468 0.7940252 0.2773041 +0.2773041 0.7940252 0.2773041 +0.3384659 0.7940252 0.2773041 +0.3885728 0.7940252 0.2773041 +0.4317928 0.7940252 0.2773041 +0.470214 0.7940252 0.2773041 +0.5050551 0.7940252 0.2773041 +0.5370987 0.7940252 0.2773041 +0.5668815 0.7940252 0.2773041 +0.5947903 0.7940252 0.2773041 +0.6211144 0.7940252 0.2773041 +0.6460766 0.7940252 0.2773041 +0.6698526 0.7940252 0.2773041 +0.6925839 0.7940252 0.2773041 +0.7143866 0.7940252 0.2773041 +0.7353569 0.7940252 0.2773041 +0.7555758 0.7940252 0.2773041 +0.7751122 0.7940252 0.2773041 +0.7940252 0.7940252 0.2773041 +0.8123661 0.7940252 0.2773041 +0.8301795 0.7940252 0.2773041 +0.8475045 0.7940252 0.2773041 +0.8643761 0.7940252 0.2773041 +0.880825 0.7940252 0.2773041 +0.8968787 0.7940252 0.2773041 +0.9125621 0.7940252 0.2773041 +0.9278974 0.7940252 0.2773041 +0.9429048 0.7940252 0.2773041 +0.9576028 0.7940252 0.2773041 +0.9720079 0.7940252 0.2773041 +0.9861357 0.7940252 0.2773041 +1 0.7940252 0.2773041 +0 0.8123661 0.2773041 +0.1939468 0.8123661 0.2773041 +0.2773041 0.8123661 0.2773041 +0.3384659 0.8123661 0.2773041 +0.3885728 0.8123661 0.2773041 +0.4317928 0.8123661 0.2773041 +0.470214 0.8123661 0.2773041 +0.5050551 0.8123661 0.2773041 +0.5370987 0.8123661 0.2773041 +0.5668815 0.8123661 0.2773041 +0.5947903 0.8123661 0.2773041 +0.6211144 0.8123661 0.2773041 +0.6460766 0.8123661 0.2773041 +0.6698526 0.8123661 0.2773041 +0.6925839 0.8123661 0.2773041 +0.7143866 0.8123661 0.2773041 +0.7353569 0.8123661 0.2773041 +0.7555758 0.8123661 0.2773041 +0.7751122 0.8123661 0.2773041 +0.7940252 0.8123661 0.2773041 +0.8123661 0.8123661 0.2773041 +0.8301795 0.8123661 0.2773041 +0.8475045 0.8123661 0.2773041 +0.8643761 0.8123661 0.2773041 +0.880825 0.8123661 0.2773041 +0.8968787 0.8123661 0.2773041 +0.9125621 0.8123661 0.2773041 +0.9278974 0.8123661 0.2773041 +0.9429048 0.8123661 0.2773041 +0.9576028 0.8123661 0.2773041 +0.9720079 0.8123661 0.2773041 +0.9861357 0.8123661 0.2773041 +1 0.8123661 0.2773041 +0 0.8301795 0.2773041 +0.1939468 0.8301795 0.2773041 +0.2773041 0.8301795 0.2773041 +0.3384659 0.8301795 0.2773041 +0.3885728 0.8301795 0.2773041 +0.4317928 0.8301795 0.2773041 +0.470214 0.8301795 0.2773041 +0.5050551 0.8301795 0.2773041 +0.5370987 0.8301795 0.2773041 +0.5668815 0.8301795 0.2773041 +0.5947903 0.8301795 0.2773041 +0.6211144 0.8301795 0.2773041 +0.6460766 0.8301795 0.2773041 +0.6698526 0.8301795 0.2773041 +0.6925839 0.8301795 0.2773041 +0.7143866 0.8301795 0.2773041 +0.7353569 0.8301795 0.2773041 +0.7555758 0.8301795 0.2773041 +0.7751122 0.8301795 0.2773041 +0.7940252 0.8301795 0.2773041 +0.8123661 0.8301795 0.2773041 +0.8301795 0.8301795 0.2773041 +0.8475045 0.8301795 0.2773041 +0.8643761 0.8301795 0.2773041 +0.880825 0.8301795 0.2773041 +0.8968787 0.8301795 0.2773041 +0.9125621 0.8301795 0.2773041 +0.9278974 0.8301795 0.2773041 +0.9429048 0.8301795 0.2773041 +0.9576028 0.8301795 0.2773041 +0.9720079 0.8301795 0.2773041 +0.9861357 0.8301795 0.2773041 +1 0.8301795 0.2773041 +0 0.8475045 0.2773041 +0.1939468 0.8475045 0.2773041 +0.2773041 0.8475045 0.2773041 +0.3384659 0.8475045 0.2773041 +0.3885728 0.8475045 0.2773041 +0.4317928 0.8475045 0.2773041 +0.470214 0.8475045 0.2773041 +0.5050551 0.8475045 0.2773041 +0.5370987 0.8475045 0.2773041 +0.5668815 0.8475045 0.2773041 +0.5947903 0.8475045 0.2773041 +0.6211144 0.8475045 0.2773041 +0.6460766 0.8475045 0.2773041 +0.6698526 0.8475045 0.2773041 +0.6925839 0.8475045 0.2773041 +0.7143866 0.8475045 0.2773041 +0.7353569 0.8475045 0.2773041 +0.7555758 0.8475045 0.2773041 +0.7751122 0.8475045 0.2773041 +0.7940252 0.8475045 0.2773041 +0.8123661 0.8475045 0.2773041 +0.8301795 0.8475045 0.2773041 +0.8475045 0.8475045 0.2773041 +0.8643761 0.8475045 0.2773041 +0.880825 0.8475045 0.2773041 +0.8968787 0.8475045 0.2773041 +0.9125621 0.8475045 0.2773041 +0.9278974 0.8475045 0.2773041 +0.9429048 0.8475045 0.2773041 +0.9576028 0.8475045 0.2773041 +0.9720079 0.8475045 0.2773041 +0.9861357 0.8475045 0.2773041 +1 0.8475045 0.2773041 +0 0.8643761 0.2773041 +0.1939468 0.8643761 0.2773041 +0.2773041 0.8643761 0.2773041 +0.3384659 0.8643761 0.2773041 +0.3885728 0.8643761 0.2773041 +0.4317928 0.8643761 0.2773041 +0.470214 0.8643761 0.2773041 +0.5050551 0.8643761 0.2773041 +0.5370987 0.8643761 0.2773041 +0.5668815 0.8643761 0.2773041 +0.5947903 0.8643761 0.2773041 +0.6211144 0.8643761 0.2773041 +0.6460766 0.8643761 0.2773041 +0.6698526 0.8643761 0.2773041 +0.6925839 0.8643761 0.2773041 +0.7143866 0.8643761 0.2773041 +0.7353569 0.8643761 0.2773041 +0.7555758 0.8643761 0.2773041 +0.7751122 0.8643761 0.2773041 +0.7940252 0.8643761 0.2773041 +0.8123661 0.8643761 0.2773041 +0.8301795 0.8643761 0.2773041 +0.8475045 0.8643761 0.2773041 +0.8643761 0.8643761 0.2773041 +0.880825 0.8643761 0.2773041 +0.8968787 0.8643761 0.2773041 +0.9125621 0.8643761 0.2773041 +0.9278974 0.8643761 0.2773041 +0.9429048 0.8643761 0.2773041 +0.9576028 0.8643761 0.2773041 +0.9720079 0.8643761 0.2773041 +0.9861357 0.8643761 0.2773041 +1 0.8643761 0.2773041 +0 0.880825 0.2773041 +0.1939468 0.880825 0.2773041 +0.2773041 0.880825 0.2773041 +0.3384659 0.880825 0.2773041 +0.3885728 0.880825 0.2773041 +0.4317928 0.880825 0.2773041 +0.470214 0.880825 0.2773041 +0.5050551 0.880825 0.2773041 +0.5370987 0.880825 0.2773041 +0.5668815 0.880825 0.2773041 +0.5947903 0.880825 0.2773041 +0.6211144 0.880825 0.2773041 +0.6460766 0.880825 0.2773041 +0.6698526 0.880825 0.2773041 +0.6925839 0.880825 0.2773041 +0.7143866 0.880825 0.2773041 +0.7353569 0.880825 0.2773041 +0.7555758 0.880825 0.2773041 +0.7751122 0.880825 0.2773041 +0.7940252 0.880825 0.2773041 +0.8123661 0.880825 0.2773041 +0.8301795 0.880825 0.2773041 +0.8475045 0.880825 0.2773041 +0.8643761 0.880825 0.2773041 +0.880825 0.880825 0.2773041 +0.8968787 0.880825 0.2773041 +0.9125621 0.880825 0.2773041 +0.9278974 0.880825 0.2773041 +0.9429048 0.880825 0.2773041 +0.9576028 0.880825 0.2773041 +0.9720079 0.880825 0.2773041 +0.9861357 0.880825 0.2773041 +1 0.880825 0.2773041 +0 0.8968787 0.2773041 +0.1939468 0.8968787 0.2773041 +0.2773041 0.8968787 0.2773041 +0.3384659 0.8968787 0.2773041 +0.3885728 0.8968787 0.2773041 +0.4317928 0.8968787 0.2773041 +0.470214 0.8968787 0.2773041 +0.5050551 0.8968787 0.2773041 +0.5370987 0.8968787 0.2773041 +0.5668815 0.8968787 0.2773041 +0.5947903 0.8968787 0.2773041 +0.6211144 0.8968787 0.2773041 +0.6460766 0.8968787 0.2773041 +0.6698526 0.8968787 0.2773041 +0.6925839 0.8968787 0.2773041 +0.7143866 0.8968787 0.2773041 +0.7353569 0.8968787 0.2773041 +0.7555758 0.8968787 0.2773041 +0.7751122 0.8968787 0.2773041 +0.7940252 0.8968787 0.2773041 +0.8123661 0.8968787 0.2773041 +0.8301795 0.8968787 0.2773041 +0.8475045 0.8968787 0.2773041 +0.8643761 0.8968787 0.2773041 +0.880825 0.8968787 0.2773041 +0.8968787 0.8968787 0.2773041 +0.9125621 0.8968787 0.2773041 +0.9278974 0.8968787 0.2773041 +0.9429048 0.8968787 0.2773041 +0.9576028 0.8968787 0.2773041 +0.9720079 0.8968787 0.2773041 +0.9861357 0.8968787 0.2773041 +1 0.8968787 0.2773041 +0 0.9125621 0.2773041 +0.1939468 0.9125621 0.2773041 +0.2773041 0.9125621 0.2773041 +0.3384659 0.9125621 0.2773041 +0.3885728 0.9125621 0.2773041 +0.4317928 0.9125621 0.2773041 +0.470214 0.9125621 0.2773041 +0.5050551 0.9125621 0.2773041 +0.5370987 0.9125621 0.2773041 +0.5668815 0.9125621 0.2773041 +0.5947903 0.9125621 0.2773041 +0.6211144 0.9125621 0.2773041 +0.6460766 0.9125621 0.2773041 +0.6698526 0.9125621 0.2773041 +0.6925839 0.9125621 0.2773041 +0.7143866 0.9125621 0.2773041 +0.7353569 0.9125621 0.2773041 +0.7555758 0.9125621 0.2773041 +0.7751122 0.9125621 0.2773041 +0.7940252 0.9125621 0.2773041 +0.8123661 0.9125621 0.2773041 +0.8301795 0.9125621 0.2773041 +0.8475045 0.9125621 0.2773041 +0.8643761 0.9125621 0.2773041 +0.880825 0.9125621 0.2773041 +0.8968787 0.9125621 0.2773041 +0.9125621 0.9125621 0.2773041 +0.9278974 0.9125621 0.2773041 +0.9429048 0.9125621 0.2773041 +0.9576028 0.9125621 0.2773041 +0.9720079 0.9125621 0.2773041 +0.9861357 0.9125621 0.2773041 +1 0.9125621 0.2773041 +0 0.9278974 0.2773041 +0.1939468 0.9278974 0.2773041 +0.2773041 0.9278974 0.2773041 +0.3384659 0.9278974 0.2773041 +0.3885728 0.9278974 0.2773041 +0.4317928 0.9278974 0.2773041 +0.470214 0.9278974 0.2773041 +0.5050551 0.9278974 0.2773041 +0.5370987 0.9278974 0.2773041 +0.5668815 0.9278974 0.2773041 +0.5947903 0.9278974 0.2773041 +0.6211144 0.9278974 0.2773041 +0.6460766 0.9278974 0.2773041 +0.6698526 0.9278974 0.2773041 +0.6925839 0.9278974 0.2773041 +0.7143866 0.9278974 0.2773041 +0.7353569 0.9278974 0.2773041 +0.7555758 0.9278974 0.2773041 +0.7751122 0.9278974 0.2773041 +0.7940252 0.9278974 0.2773041 +0.8123661 0.9278974 0.2773041 +0.8301795 0.9278974 0.2773041 +0.8475045 0.9278974 0.2773041 +0.8643761 0.9278974 0.2773041 +0.880825 0.9278974 0.2773041 +0.8968787 0.9278974 0.2773041 +0.9125621 0.9278974 0.2773041 +0.9278974 0.9278974 0.2773041 +0.9429048 0.9278974 0.2773041 +0.9576028 0.9278974 0.2773041 +0.9720079 0.9278974 0.2773041 +0.9861357 0.9278974 0.2773041 +1 0.9278974 0.2773041 +0 0.9429048 0.2773041 +0.1939468 0.9429048 0.2773041 +0.2773041 0.9429048 0.2773041 +0.3384659 0.9429048 0.2773041 +0.3885728 0.9429048 0.2773041 +0.4317928 0.9429048 0.2773041 +0.470214 0.9429048 0.2773041 +0.5050551 0.9429048 0.2773041 +0.5370987 0.9429048 0.2773041 +0.5668815 0.9429048 0.2773041 +0.5947903 0.9429048 0.2773041 +0.6211144 0.9429048 0.2773041 +0.6460766 0.9429048 0.2773041 +0.6698526 0.9429048 0.2773041 +0.6925839 0.9429048 0.2773041 +0.7143866 0.9429048 0.2773041 +0.7353569 0.9429048 0.2773041 +0.7555758 0.9429048 0.2773041 +0.7751122 0.9429048 0.2773041 +0.7940252 0.9429048 0.2773041 +0.8123661 0.9429048 0.2773041 +0.8301795 0.9429048 0.2773041 +0.8475045 0.9429048 0.2773041 +0.8643761 0.9429048 0.2773041 +0.880825 0.9429048 0.2773041 +0.8968787 0.9429048 0.2773041 +0.9125621 0.9429048 0.2773041 +0.9278974 0.9429048 0.2773041 +0.9429048 0.9429048 0.2773041 +0.9576028 0.9429048 0.2773041 +0.9720079 0.9429048 0.2773041 +0.9861357 0.9429048 0.2773041 +1 0.9429048 0.2773041 +0 0.9576028 0.2773041 +0.1939468 0.9576028 0.2773041 +0.2773041 0.9576028 0.2773041 +0.3384659 0.9576028 0.2773041 +0.3885728 0.9576028 0.2773041 +0.4317928 0.9576028 0.2773041 +0.470214 0.9576028 0.2773041 +0.5050551 0.9576028 0.2773041 +0.5370987 0.9576028 0.2773041 +0.5668815 0.9576028 0.2773041 +0.5947903 0.9576028 0.2773041 +0.6211144 0.9576028 0.2773041 +0.6460766 0.9576028 0.2773041 +0.6698526 0.9576028 0.2773041 +0.6925839 0.9576028 0.2773041 +0.7143866 0.9576028 0.2773041 +0.7353569 0.9576028 0.2773041 +0.7555758 0.9576028 0.2773041 +0.7751122 0.9576028 0.2773041 +0.7940252 0.9576028 0.2773041 +0.8123661 0.9576028 0.2773041 +0.8301795 0.9576028 0.2773041 +0.8475045 0.9576028 0.2773041 +0.8643761 0.9576028 0.2773041 +0.880825 0.9576028 0.2773041 +0.8968787 0.9576028 0.2773041 +0.9125621 0.9576028 0.2773041 +0.9278974 0.9576028 0.2773041 +0.9429048 0.9576028 0.2773041 +0.9576028 0.9576028 0.2773041 +0.9720079 0.9576028 0.2773041 +0.9861357 0.9576028 0.2773041 +1 0.9576028 0.2773041 +0 0.9720079 0.2773041 +0.1939468 0.9720079 0.2773041 +0.2773041 0.9720079 0.2773041 +0.3384659 0.9720079 0.2773041 +0.3885728 0.9720079 0.2773041 +0.4317928 0.9720079 0.2773041 +0.470214 0.9720079 0.2773041 +0.5050551 0.9720079 0.2773041 +0.5370987 0.9720079 0.2773041 +0.5668815 0.9720079 0.2773041 +0.5947903 0.9720079 0.2773041 +0.6211144 0.9720079 0.2773041 +0.6460766 0.9720079 0.2773041 +0.6698526 0.9720079 0.2773041 +0.6925839 0.9720079 0.2773041 +0.7143866 0.9720079 0.2773041 +0.7353569 0.9720079 0.2773041 +0.7555758 0.9720079 0.2773041 +0.7751122 0.9720079 0.2773041 +0.7940252 0.9720079 0.2773041 +0.8123661 0.9720079 0.2773041 +0.8301795 0.9720079 0.2773041 +0.8475045 0.9720079 0.2773041 +0.8643761 0.9720079 0.2773041 +0.880825 0.9720079 0.2773041 +0.8968787 0.9720079 0.2773041 +0.9125621 0.9720079 0.2773041 +0.9278974 0.9720079 0.2773041 +0.9429048 0.9720079 0.2773041 +0.9576028 0.9720079 0.2773041 +0.9720079 0.9720079 0.2773041 +0.9861357 0.9720079 0.2773041 +1 0.9720079 0.2773041 +0 0.9861357 0.2773041 +0.1939468 0.9861357 0.2773041 +0.2773041 0.9861357 0.2773041 +0.3384659 0.9861357 0.2773041 +0.3885728 0.9861357 0.2773041 +0.4317928 0.9861357 0.2773041 +0.470214 0.9861357 0.2773041 +0.5050551 0.9861357 0.2773041 +0.5370987 0.9861357 0.2773041 +0.5668815 0.9861357 0.2773041 +0.5947903 0.9861357 0.2773041 +0.6211144 0.9861357 0.2773041 +0.6460766 0.9861357 0.2773041 +0.6698526 0.9861357 0.2773041 +0.6925839 0.9861357 0.2773041 +0.7143866 0.9861357 0.2773041 +0.7353569 0.9861357 0.2773041 +0.7555758 0.9861357 0.2773041 +0.7751122 0.9861357 0.2773041 +0.7940252 0.9861357 0.2773041 +0.8123661 0.9861357 0.2773041 +0.8301795 0.9861357 0.2773041 +0.8475045 0.9861357 0.2773041 +0.8643761 0.9861357 0.2773041 +0.880825 0.9861357 0.2773041 +0.8968787 0.9861357 0.2773041 +0.9125621 0.9861357 0.2773041 +0.9278974 0.9861357 0.2773041 +0.9429048 0.9861357 0.2773041 +0.9576028 0.9861357 0.2773041 +0.9720079 0.9861357 0.2773041 +0.9861357 0.9861357 0.2773041 +1 0.9861357 0.2773041 +0 1 0.2773041 +0.1939468 1 0.2773041 +0.2773041 1 0.2773041 +0.3384659 1 0.2773041 +0.3885728 1 0.2773041 +0.4317928 1 0.2773041 +0.470214 1 0.2773041 +0.5050551 1 0.2773041 +0.5370987 1 0.2773041 +0.5668815 1 0.2773041 +0.5947903 1 0.2773041 +0.6211144 1 0.2773041 +0.6460766 1 0.2773041 +0.6698526 1 0.2773041 +0.6925839 1 0.2773041 +0.7143866 1 0.2773041 +0.7353569 1 0.2773041 +0.7555758 1 0.2773041 +0.7751122 1 0.2773041 +0.7940252 1 0.2773041 +0.8123661 1 0.2773041 +0.8301795 1 0.2773041 +0.8475045 1 0.2773041 +0.8643761 1 0.2773041 +0.880825 1 0.2773041 +0.8968787 1 0.2773041 +0.9125621 1 0.2773041 +0.9278974 1 0.2773041 +0.9429048 1 0.2773041 +0.9576028 1 0.2773041 +0.9720079 1 0.2773041 +0.9861357 1 0.2773041 +1 1 0.2773041 +0 0 0.3384659 +0.1939468 0 0.3384659 +0.2773041 0 0.3384659 +0.3384659 0 0.3384659 +0.3885728 0 0.3384659 +0.4317928 0 0.3384659 +0.470214 0 0.3384659 +0.5050551 0 0.3384659 +0.5370987 0 0.3384659 +0.5668815 0 0.3384659 +0.5947903 0 0.3384659 +0.6211144 0 0.3384659 +0.6460766 0 0.3384659 +0.6698526 0 0.3384659 +0.6925839 0 0.3384659 +0.7143866 0 0.3384659 +0.7353569 0 0.3384659 +0.7555758 0 0.3384659 +0.7751122 0 0.3384659 +0.7940252 0 0.3384659 +0.8123661 0 0.3384659 +0.8301795 0 0.3384659 +0.8475045 0 0.3384659 +0.8643761 0 0.3384659 +0.880825 0 0.3384659 +0.8968787 0 0.3384659 +0.9125621 0 0.3384659 +0.9278974 0 0.3384659 +0.9429048 0 0.3384659 +0.9576028 0 0.3384659 +0.9720079 0 0.3384659 +0.9861357 0 0.3384659 +1 0 0.3384659 +0 0.1939468 0.3384659 +0.1939468 0.1939468 0.3384659 +0.2773041 0.1939468 0.3384659 +0.3384659 0.1939468 0.3384659 +0.3885728 0.1939468 0.3384659 +0.4317928 0.1939468 0.3384659 +0.470214 0.1939468 0.3384659 +0.5050551 0.1939468 0.3384659 +0.5370987 0.1939468 0.3384659 +0.5668815 0.1939468 0.3384659 +0.5947903 0.1939468 0.3384659 +0.6211144 0.1939468 0.3384659 +0.6460766 0.1939468 0.3384659 +0.6698526 0.1939468 0.3384659 +0.6925839 0.1939468 0.3384659 +0.7143866 0.1939468 0.3384659 +0.7353569 0.1939468 0.3384659 +0.7555758 0.1939468 0.3384659 +0.7751122 0.1939468 0.3384659 +0.7940252 0.1939468 0.3384659 +0.8123661 0.1939468 0.3384659 +0.8301795 0.1939468 0.3384659 +0.8475045 0.1939468 0.3384659 +0.8643761 0.1939468 0.3384659 +0.880825 0.1939468 0.3384659 +0.8968787 0.1939468 0.3384659 +0.9125621 0.1939468 0.3384659 +0.9278974 0.1939468 0.3384659 +0.9429048 0.1939468 0.3384659 +0.9576028 0.1939468 0.3384659 +0.9720079 0.1939468 0.3384659 +0.9861357 0.1939468 0.3384659 +1 0.1939468 0.3384659 +0 0.2773041 0.3384659 +0.1939468 0.2773041 0.3384659 +0.2773041 0.2773041 0.3384659 +0.3384659 0.2773041 0.3384659 +0.3885728 0.2773041 0.3384659 +0.4317928 0.2773041 0.3384659 +0.470214 0.2773041 0.3384659 +0.5050551 0.2773041 0.3384659 +0.5370987 0.2773041 0.3384659 +0.5668815 0.2773041 0.3384659 +0.5947903 0.2773041 0.3384659 +0.6211144 0.2773041 0.3384659 +0.6460766 0.2773041 0.3384659 +0.6698526 0.2773041 0.3384659 +0.6925839 0.2773041 0.3384659 +0.7143866 0.2773041 0.3384659 +0.7353569 0.2773041 0.3384659 +0.7555758 0.2773041 0.3384659 +0.7751122 0.2773041 0.3384659 +0.7940252 0.2773041 0.3384659 +0.8123661 0.2773041 0.3384659 +0.8301795 0.2773041 0.3384659 +0.8475045 0.2773041 0.3384659 +0.8643761 0.2773041 0.3384659 +0.880825 0.2773041 0.3384659 +0.8968787 0.2773041 0.3384659 +0.9125621 0.2773041 0.3384659 +0.9278974 0.2773041 0.3384659 +0.9429048 0.2773041 0.3384659 +0.9576028 0.2773041 0.3384659 +0.9720079 0.2773041 0.3384659 +0.9861357 0.2773041 0.3384659 +1 0.2773041 0.3384659 +0 0.3384659 0.3384659 +0.1939468 0.3384659 0.3384659 +0.2773041 0.3384659 0.3384659 +0.3384659 0.3384659 0.3384659 +0.3885728 0.3384659 0.3384659 +0.4317928 0.3384659 0.3384659 +0.470214 0.3384659 0.3384659 +0.5050551 0.3384659 0.3384659 +0.5370987 0.3384659 0.3384659 +0.5668815 0.3384659 0.3384659 +0.5947903 0.3384659 0.3384659 +0.6211144 0.3384659 0.3384659 +0.6460766 0.3384659 0.3384659 +0.6698526 0.3384659 0.3384659 +0.6925839 0.3384659 0.3384659 +0.7143866 0.3384659 0.3384659 +0.7353569 0.3384659 0.3384659 +0.7555758 0.3384659 0.3384659 +0.7751122 0.3384659 0.3384659 +0.7940252 0.3384659 0.3384659 +0.8123661 0.3384659 0.3384659 +0.8301795 0.3384659 0.3384659 +0.8475045 0.3384659 0.3384659 +0.8643761 0.3384659 0.3384659 +0.880825 0.3384659 0.3384659 +0.8968787 0.3384659 0.3384659 +0.9125621 0.3384659 0.3384659 +0.9278974 0.3384659 0.3384659 +0.9429048 0.3384659 0.3384659 +0.9576028 0.3384659 0.3384659 +0.9720079 0.3384659 0.3384659 +0.9861357 0.3384659 0.3384659 +1 0.3384659 0.3384659 +0 0.3885728 0.3384659 +0.1939468 0.3885728 0.3384659 +0.2773041 0.3885728 0.3384659 +0.3384659 0.3885728 0.3384659 +0.3885728 0.3885728 0.3384659 +0.4317928 0.3885728 0.3384659 +0.470214 0.3885728 0.3384659 +0.5050551 0.3885728 0.3384659 +0.5370987 0.3885728 0.3384659 +0.5668815 0.3885728 0.3384659 +0.5947903 0.3885728 0.3384659 +0.6211144 0.3885728 0.3384659 +0.6460766 0.3885728 0.3384659 +0.6698526 0.3885728 0.3384659 +0.6925839 0.3885728 0.3384659 +0.7143866 0.3885728 0.3384659 +0.7353569 0.3885728 0.3384659 +0.7555758 0.3885728 0.3384659 +0.7751122 0.3885728 0.3384659 +0.7940252 0.3885728 0.3384659 +0.8123661 0.3885728 0.3384659 +0.8301795 0.3885728 0.3384659 +0.8475045 0.3885728 0.3384659 +0.8643761 0.3885728 0.3384659 +0.880825 0.3885728 0.3384659 +0.8968787 0.3885728 0.3384659 +0.9125621 0.3885728 0.3384659 +0.9278974 0.3885728 0.3384659 +0.9429048 0.3885728 0.3384659 +0.9576028 0.3885728 0.3384659 +0.9720079 0.3885728 0.3384659 +0.9861357 0.3885728 0.3384659 +1 0.3885728 0.3384659 +0 0.4317928 0.3384659 +0.1939468 0.4317928 0.3384659 +0.2773041 0.4317928 0.3384659 +0.3384659 0.4317928 0.3384659 +0.3885728 0.4317928 0.3384659 +0.4317928 0.4317928 0.3384659 +0.470214 0.4317928 0.3384659 +0.5050551 0.4317928 0.3384659 +0.5370987 0.4317928 0.3384659 +0.5668815 0.4317928 0.3384659 +0.5947903 0.4317928 0.3384659 +0.6211144 0.4317928 0.3384659 +0.6460766 0.4317928 0.3384659 +0.6698526 0.4317928 0.3384659 +0.6925839 0.4317928 0.3384659 +0.7143866 0.4317928 0.3384659 +0.7353569 0.4317928 0.3384659 +0.7555758 0.4317928 0.3384659 +0.7751122 0.4317928 0.3384659 +0.7940252 0.4317928 0.3384659 +0.8123661 0.4317928 0.3384659 +0.8301795 0.4317928 0.3384659 +0.8475045 0.4317928 0.3384659 +0.8643761 0.4317928 0.3384659 +0.880825 0.4317928 0.3384659 +0.8968787 0.4317928 0.3384659 +0.9125621 0.4317928 0.3384659 +0.9278974 0.4317928 0.3384659 +0.9429048 0.4317928 0.3384659 +0.9576028 0.4317928 0.3384659 +0.9720079 0.4317928 0.3384659 +0.9861357 0.4317928 0.3384659 +1 0.4317928 0.3384659 +0 0.470214 0.3384659 +0.1939468 0.470214 0.3384659 +0.2773041 0.470214 0.3384659 +0.3384659 0.470214 0.3384659 +0.3885728 0.470214 0.3384659 +0.4317928 0.470214 0.3384659 +0.470214 0.470214 0.3384659 +0.5050551 0.470214 0.3384659 +0.5370987 0.470214 0.3384659 +0.5668815 0.470214 0.3384659 +0.5947903 0.470214 0.3384659 +0.6211144 0.470214 0.3384659 +0.6460766 0.470214 0.3384659 +0.6698526 0.470214 0.3384659 +0.6925839 0.470214 0.3384659 +0.7143866 0.470214 0.3384659 +0.7353569 0.470214 0.3384659 +0.7555758 0.470214 0.3384659 +0.7751122 0.470214 0.3384659 +0.7940252 0.470214 0.3384659 +0.8123661 0.470214 0.3384659 +0.8301795 0.470214 0.3384659 +0.8475045 0.470214 0.3384659 +0.8643761 0.470214 0.3384659 +0.880825 0.470214 0.3384659 +0.8968787 0.470214 0.3384659 +0.9125621 0.470214 0.3384659 +0.9278974 0.470214 0.3384659 +0.9429048 0.470214 0.3384659 +0.9576028 0.470214 0.3384659 +0.9720079 0.470214 0.3384659 +0.9861357 0.470214 0.3384659 +1 0.470214 0.3384659 +0 0.5050551 0.3384659 +0.1939468 0.5050551 0.3384659 +0.2773041 0.5050551 0.3384659 +0.3384659 0.5050551 0.3384659 +0.3885728 0.5050551 0.3384659 +0.4317928 0.5050551 0.3384659 +0.470214 0.5050551 0.3384659 +0.5050551 0.5050551 0.3384659 +0.5370987 0.5050551 0.3384659 +0.5668815 0.5050551 0.3384659 +0.5947903 0.5050551 0.3384659 +0.6211144 0.5050551 0.3384659 +0.6460766 0.5050551 0.3384659 +0.6698526 0.5050551 0.3384659 +0.6925839 0.5050551 0.3384659 +0.7143866 0.5050551 0.3384659 +0.7353569 0.5050551 0.3384659 +0.7555758 0.5050551 0.3384659 +0.7751122 0.5050551 0.3384659 +0.7940252 0.5050551 0.3384659 +0.8123661 0.5050551 0.3384659 +0.8301795 0.5050551 0.3384659 +0.8475045 0.5050551 0.3384659 +0.8643761 0.5050551 0.3384659 +0.880825 0.5050551 0.3384659 +0.8968787 0.5050551 0.3384659 +0.9125621 0.5050551 0.3384659 +0.9278974 0.5050551 0.3384659 +0.9429048 0.5050551 0.3384659 +0.9576028 0.5050551 0.3384659 +0.9720079 0.5050551 0.3384659 +0.9861357 0.5050551 0.3384659 +1 0.5050551 0.3384659 +0 0.5370987 0.3384659 +0.1939468 0.5370987 0.3384659 +0.2773041 0.5370987 0.3384659 +0.3384659 0.5370987 0.3384659 +0.3885728 0.5370987 0.3384659 +0.4317928 0.5370987 0.3384659 +0.470214 0.5370987 0.3384659 +0.5050551 0.5370987 0.3384659 +0.5370987 0.5370987 0.3384659 +0.5668815 0.5370987 0.3384659 +0.5947903 0.5370987 0.3384659 +0.6211144 0.5370987 0.3384659 +0.6460766 0.5370987 0.3384659 +0.6698526 0.5370987 0.3384659 +0.6925839 0.5370987 0.3384659 +0.7143866 0.5370987 0.3384659 +0.7353569 0.5370987 0.3384659 +0.7555758 0.5370987 0.3384659 +0.7751122 0.5370987 0.3384659 +0.7940252 0.5370987 0.3384659 +0.8123661 0.5370987 0.3384659 +0.8301795 0.5370987 0.3384659 +0.8475045 0.5370987 0.3384659 +0.8643761 0.5370987 0.3384659 +0.880825 0.5370987 0.3384659 +0.8968787 0.5370987 0.3384659 +0.9125621 0.5370987 0.3384659 +0.9278974 0.5370987 0.3384659 +0.9429048 0.5370987 0.3384659 +0.9576028 0.5370987 0.3384659 +0.9720079 0.5370987 0.3384659 +0.9861357 0.5370987 0.3384659 +1 0.5370987 0.3384659 +0 0.5668815 0.3384659 +0.1939468 0.5668815 0.3384659 +0.2773041 0.5668815 0.3384659 +0.3384659 0.5668815 0.3384659 +0.3885728 0.5668815 0.3384659 +0.4317928 0.5668815 0.3384659 +0.470214 0.5668815 0.3384659 +0.5050551 0.5668815 0.3384659 +0.5370987 0.5668815 0.3384659 +0.5668815 0.5668815 0.3384659 +0.5947903 0.5668815 0.3384659 +0.6211144 0.5668815 0.3384659 +0.6460766 0.5668815 0.3384659 +0.6698526 0.5668815 0.3384659 +0.6925839 0.5668815 0.3384659 +0.7143866 0.5668815 0.3384659 +0.7353569 0.5668815 0.3384659 +0.7555758 0.5668815 0.3384659 +0.7751122 0.5668815 0.3384659 +0.7940252 0.5668815 0.3384659 +0.8123661 0.5668815 0.3384659 +0.8301795 0.5668815 0.3384659 +0.8475045 0.5668815 0.3384659 +0.8643761 0.5668815 0.3384659 +0.880825 0.5668815 0.3384659 +0.8968787 0.5668815 0.3384659 +0.9125621 0.5668815 0.3384659 +0.9278974 0.5668815 0.3384659 +0.9429048 0.5668815 0.3384659 +0.9576028 0.5668815 0.3384659 +0.9720079 0.5668815 0.3384659 +0.9861357 0.5668815 0.3384659 +1 0.5668815 0.3384659 +0 0.5947903 0.3384659 +0.1939468 0.5947903 0.3384659 +0.2773041 0.5947903 0.3384659 +0.3384659 0.5947903 0.3384659 +0.3885728 0.5947903 0.3384659 +0.4317928 0.5947903 0.3384659 +0.470214 0.5947903 0.3384659 +0.5050551 0.5947903 0.3384659 +0.5370987 0.5947903 0.3384659 +0.5668815 0.5947903 0.3384659 +0.5947903 0.5947903 0.3384659 +0.6211144 0.5947903 0.3384659 +0.6460766 0.5947903 0.3384659 +0.6698526 0.5947903 0.3384659 +0.6925839 0.5947903 0.3384659 +0.7143866 0.5947903 0.3384659 +0.7353569 0.5947903 0.3384659 +0.7555758 0.5947903 0.3384659 +0.7751122 0.5947903 0.3384659 +0.7940252 0.5947903 0.3384659 +0.8123661 0.5947903 0.3384659 +0.8301795 0.5947903 0.3384659 +0.8475045 0.5947903 0.3384659 +0.8643761 0.5947903 0.3384659 +0.880825 0.5947903 0.3384659 +0.8968787 0.5947903 0.3384659 +0.9125621 0.5947903 0.3384659 +0.9278974 0.5947903 0.3384659 +0.9429048 0.5947903 0.3384659 +0.9576028 0.5947903 0.3384659 +0.9720079 0.5947903 0.3384659 +0.9861357 0.5947903 0.3384659 +1 0.5947903 0.3384659 +0 0.6211144 0.3384659 +0.1939468 0.6211144 0.3384659 +0.2773041 0.6211144 0.3384659 +0.3384659 0.6211144 0.3384659 +0.3885728 0.6211144 0.3384659 +0.4317928 0.6211144 0.3384659 +0.470214 0.6211144 0.3384659 +0.5050551 0.6211144 0.3384659 +0.5370987 0.6211144 0.3384659 +0.5668815 0.6211144 0.3384659 +0.5947903 0.6211144 0.3384659 +0.6211144 0.6211144 0.3384659 +0.6460766 0.6211144 0.3384659 +0.6698526 0.6211144 0.3384659 +0.6925839 0.6211144 0.3384659 +0.7143866 0.6211144 0.3384659 +0.7353569 0.6211144 0.3384659 +0.7555758 0.6211144 0.3384659 +0.7751122 0.6211144 0.3384659 +0.7940252 0.6211144 0.3384659 +0.8123661 0.6211144 0.3384659 +0.8301795 0.6211144 0.3384659 +0.8475045 0.6211144 0.3384659 +0.8643761 0.6211144 0.3384659 +0.880825 0.6211144 0.3384659 +0.8968787 0.6211144 0.3384659 +0.9125621 0.6211144 0.3384659 +0.9278974 0.6211144 0.3384659 +0.9429048 0.6211144 0.3384659 +0.9576028 0.6211144 0.3384659 +0.9720079 0.6211144 0.3384659 +0.9861357 0.6211144 0.3384659 +1 0.6211144 0.3384659 +0 0.6460766 0.3384659 +0.1939468 0.6460766 0.3384659 +0.2773041 0.6460766 0.3384659 +0.3384659 0.6460766 0.3384659 +0.3885728 0.6460766 0.3384659 +0.4317928 0.6460766 0.3384659 +0.470214 0.6460766 0.3384659 +0.5050551 0.6460766 0.3384659 +0.5370987 0.6460766 0.3384659 +0.5668815 0.6460766 0.3384659 +0.5947903 0.6460766 0.3384659 +0.6211144 0.6460766 0.3384659 +0.6460766 0.6460766 0.3384659 +0.6698526 0.6460766 0.3384659 +0.6925839 0.6460766 0.3384659 +0.7143866 0.6460766 0.3384659 +0.7353569 0.6460766 0.3384659 +0.7555758 0.6460766 0.3384659 +0.7751122 0.6460766 0.3384659 +0.7940252 0.6460766 0.3384659 +0.8123661 0.6460766 0.3384659 +0.8301795 0.6460766 0.3384659 +0.8475045 0.6460766 0.3384659 +0.8643761 0.6460766 0.3384659 +0.880825 0.6460766 0.3384659 +0.8968787 0.6460766 0.3384659 +0.9125621 0.6460766 0.3384659 +0.9278974 0.6460766 0.3384659 +0.9429048 0.6460766 0.3384659 +0.9576028 0.6460766 0.3384659 +0.9720079 0.6460766 0.3384659 +0.9861357 0.6460766 0.3384659 +1 0.6460766 0.3384659 +0 0.6698526 0.3384659 +0.1939468 0.6698526 0.3384659 +0.2773041 0.6698526 0.3384659 +0.3384659 0.6698526 0.3384659 +0.3885728 0.6698526 0.3384659 +0.4317928 0.6698526 0.3384659 +0.470214 0.6698526 0.3384659 +0.5050551 0.6698526 0.3384659 +0.5370987 0.6698526 0.3384659 +0.5668815 0.6698526 0.3384659 +0.5947903 0.6698526 0.3384659 +0.6211144 0.6698526 0.3384659 +0.6460766 0.6698526 0.3384659 +0.6698526 0.6698526 0.3384659 +0.6925839 0.6698526 0.3384659 +0.7143866 0.6698526 0.3384659 +0.7353569 0.6698526 0.3384659 +0.7555758 0.6698526 0.3384659 +0.7751122 0.6698526 0.3384659 +0.7940252 0.6698526 0.3384659 +0.8123661 0.6698526 0.3384659 +0.8301795 0.6698526 0.3384659 +0.8475045 0.6698526 0.3384659 +0.8643761 0.6698526 0.3384659 +0.880825 0.6698526 0.3384659 +0.8968787 0.6698526 0.3384659 +0.9125621 0.6698526 0.3384659 +0.9278974 0.6698526 0.3384659 +0.9429048 0.6698526 0.3384659 +0.9576028 0.6698526 0.3384659 +0.9720079 0.6698526 0.3384659 +0.9861357 0.6698526 0.3384659 +1 0.6698526 0.3384659 +0 0.6925839 0.3384659 +0.1939468 0.6925839 0.3384659 +0.2773041 0.6925839 0.3384659 +0.3384659 0.6925839 0.3384659 +0.3885728 0.6925839 0.3384659 +0.4317928 0.6925839 0.3384659 +0.470214 0.6925839 0.3384659 +0.5050551 0.6925839 0.3384659 +0.5370987 0.6925839 0.3384659 +0.5668815 0.6925839 0.3384659 +0.5947903 0.6925839 0.3384659 +0.6211144 0.6925839 0.3384659 +0.6460766 0.6925839 0.3384659 +0.6698526 0.6925839 0.3384659 +0.6925839 0.6925839 0.3384659 +0.7143866 0.6925839 0.3384659 +0.7353569 0.6925839 0.3384659 +0.7555758 0.6925839 0.3384659 +0.7751122 0.6925839 0.3384659 +0.7940252 0.6925839 0.3384659 +0.8123661 0.6925839 0.3384659 +0.8301795 0.6925839 0.3384659 +0.8475045 0.6925839 0.3384659 +0.8643761 0.6925839 0.3384659 +0.880825 0.6925839 0.3384659 +0.8968787 0.6925839 0.3384659 +0.9125621 0.6925839 0.3384659 +0.9278974 0.6925839 0.3384659 +0.9429048 0.6925839 0.3384659 +0.9576028 0.6925839 0.3384659 +0.9720079 0.6925839 0.3384659 +0.9861357 0.6925839 0.3384659 +1 0.6925839 0.3384659 +0 0.7143866 0.3384659 +0.1939468 0.7143866 0.3384659 +0.2773041 0.7143866 0.3384659 +0.3384659 0.7143866 0.3384659 +0.3885728 0.7143866 0.3384659 +0.4317928 0.7143866 0.3384659 +0.470214 0.7143866 0.3384659 +0.5050551 0.7143866 0.3384659 +0.5370987 0.7143866 0.3384659 +0.5668815 0.7143866 0.3384659 +0.5947903 0.7143866 0.3384659 +0.6211144 0.7143866 0.3384659 +0.6460766 0.7143866 0.3384659 +0.6698526 0.7143866 0.3384659 +0.6925839 0.7143866 0.3384659 +0.7143866 0.7143866 0.3384659 +0.7353569 0.7143866 0.3384659 +0.7555758 0.7143866 0.3384659 +0.7751122 0.7143866 0.3384659 +0.7940252 0.7143866 0.3384659 +0.8123661 0.7143866 0.3384659 +0.8301795 0.7143866 0.3384659 +0.8475045 0.7143866 0.3384659 +0.8643761 0.7143866 0.3384659 +0.880825 0.7143866 0.3384659 +0.8968787 0.7143866 0.3384659 +0.9125621 0.7143866 0.3384659 +0.9278974 0.7143866 0.3384659 +0.9429048 0.7143866 0.3384659 +0.9576028 0.7143866 0.3384659 +0.9720079 0.7143866 0.3384659 +0.9861357 0.7143866 0.3384659 +1 0.7143866 0.3384659 +0 0.7353569 0.3384659 +0.1939468 0.7353569 0.3384659 +0.2773041 0.7353569 0.3384659 +0.3384659 0.7353569 0.3384659 +0.3885728 0.7353569 0.3384659 +0.4317928 0.7353569 0.3384659 +0.470214 0.7353569 0.3384659 +0.5050551 0.7353569 0.3384659 +0.5370987 0.7353569 0.3384659 +0.5668815 0.7353569 0.3384659 +0.5947903 0.7353569 0.3384659 +0.6211144 0.7353569 0.3384659 +0.6460766 0.7353569 0.3384659 +0.6698526 0.7353569 0.3384659 +0.6925839 0.7353569 0.3384659 +0.7143866 0.7353569 0.3384659 +0.7353569 0.7353569 0.3384659 +0.7555758 0.7353569 0.3384659 +0.7751122 0.7353569 0.3384659 +0.7940252 0.7353569 0.3384659 +0.8123661 0.7353569 0.3384659 +0.8301795 0.7353569 0.3384659 +0.8475045 0.7353569 0.3384659 +0.8643761 0.7353569 0.3384659 +0.880825 0.7353569 0.3384659 +0.8968787 0.7353569 0.3384659 +0.9125621 0.7353569 0.3384659 +0.9278974 0.7353569 0.3384659 +0.9429048 0.7353569 0.3384659 +0.9576028 0.7353569 0.3384659 +0.9720079 0.7353569 0.3384659 +0.9861357 0.7353569 0.3384659 +1 0.7353569 0.3384659 +0 0.7555758 0.3384659 +0.1939468 0.7555758 0.3384659 +0.2773041 0.7555758 0.3384659 +0.3384659 0.7555758 0.3384659 +0.3885728 0.7555758 0.3384659 +0.4317928 0.7555758 0.3384659 +0.470214 0.7555758 0.3384659 +0.5050551 0.7555758 0.3384659 +0.5370987 0.7555758 0.3384659 +0.5668815 0.7555758 0.3384659 +0.5947903 0.7555758 0.3384659 +0.6211144 0.7555758 0.3384659 +0.6460766 0.7555758 0.3384659 +0.6698526 0.7555758 0.3384659 +0.6925839 0.7555758 0.3384659 +0.7143866 0.7555758 0.3384659 +0.7353569 0.7555758 0.3384659 +0.7555758 0.7555758 0.3384659 +0.7751122 0.7555758 0.3384659 +0.7940252 0.7555758 0.3384659 +0.8123661 0.7555758 0.3384659 +0.8301795 0.7555758 0.3384659 +0.8475045 0.7555758 0.3384659 +0.8643761 0.7555758 0.3384659 +0.880825 0.7555758 0.3384659 +0.8968787 0.7555758 0.3384659 +0.9125621 0.7555758 0.3384659 +0.9278974 0.7555758 0.3384659 +0.9429048 0.7555758 0.3384659 +0.9576028 0.7555758 0.3384659 +0.9720079 0.7555758 0.3384659 +0.9861357 0.7555758 0.3384659 +1 0.7555758 0.3384659 +0 0.7751122 0.3384659 +0.1939468 0.7751122 0.3384659 +0.2773041 0.7751122 0.3384659 +0.3384659 0.7751122 0.3384659 +0.3885728 0.7751122 0.3384659 +0.4317928 0.7751122 0.3384659 +0.470214 0.7751122 0.3384659 +0.5050551 0.7751122 0.3384659 +0.5370987 0.7751122 0.3384659 +0.5668815 0.7751122 0.3384659 +0.5947903 0.7751122 0.3384659 +0.6211144 0.7751122 0.3384659 +0.6460766 0.7751122 0.3384659 +0.6698526 0.7751122 0.3384659 +0.6925839 0.7751122 0.3384659 +0.7143866 0.7751122 0.3384659 +0.7353569 0.7751122 0.3384659 +0.7555758 0.7751122 0.3384659 +0.7751122 0.7751122 0.3384659 +0.7940252 0.7751122 0.3384659 +0.8123661 0.7751122 0.3384659 +0.8301795 0.7751122 0.3384659 +0.8475045 0.7751122 0.3384659 +0.8643761 0.7751122 0.3384659 +0.880825 0.7751122 0.3384659 +0.8968787 0.7751122 0.3384659 +0.9125621 0.7751122 0.3384659 +0.9278974 0.7751122 0.3384659 +0.9429048 0.7751122 0.3384659 +0.9576028 0.7751122 0.3384659 +0.9720079 0.7751122 0.3384659 +0.9861357 0.7751122 0.3384659 +1 0.7751122 0.3384659 +0 0.7940252 0.3384659 +0.1939468 0.7940252 0.3384659 +0.2773041 0.7940252 0.3384659 +0.3384659 0.7940252 0.3384659 +0.3885728 0.7940252 0.3384659 +0.4317928 0.7940252 0.3384659 +0.470214 0.7940252 0.3384659 +0.5050551 0.7940252 0.3384659 +0.5370987 0.7940252 0.3384659 +0.5668815 0.7940252 0.3384659 +0.5947903 0.7940252 0.3384659 +0.6211144 0.7940252 0.3384659 +0.6460766 0.7940252 0.3384659 +0.6698526 0.7940252 0.3384659 +0.6925839 0.7940252 0.3384659 +0.7143866 0.7940252 0.3384659 +0.7353569 0.7940252 0.3384659 +0.7555758 0.7940252 0.3384659 +0.7751122 0.7940252 0.3384659 +0.7940252 0.7940252 0.3384659 +0.8123661 0.7940252 0.3384659 +0.8301795 0.7940252 0.3384659 +0.8475045 0.7940252 0.3384659 +0.8643761 0.7940252 0.3384659 +0.880825 0.7940252 0.3384659 +0.8968787 0.7940252 0.3384659 +0.9125621 0.7940252 0.3384659 +0.9278974 0.7940252 0.3384659 +0.9429048 0.7940252 0.3384659 +0.9576028 0.7940252 0.3384659 +0.9720079 0.7940252 0.3384659 +0.9861357 0.7940252 0.3384659 +1 0.7940252 0.3384659 +0 0.8123661 0.3384659 +0.1939468 0.8123661 0.3384659 +0.2773041 0.8123661 0.3384659 +0.3384659 0.8123661 0.3384659 +0.3885728 0.8123661 0.3384659 +0.4317928 0.8123661 0.3384659 +0.470214 0.8123661 0.3384659 +0.5050551 0.8123661 0.3384659 +0.5370987 0.8123661 0.3384659 +0.5668815 0.8123661 0.3384659 +0.5947903 0.8123661 0.3384659 +0.6211144 0.8123661 0.3384659 +0.6460766 0.8123661 0.3384659 +0.6698526 0.8123661 0.3384659 +0.6925839 0.8123661 0.3384659 +0.7143866 0.8123661 0.3384659 +0.7353569 0.8123661 0.3384659 +0.7555758 0.8123661 0.3384659 +0.7751122 0.8123661 0.3384659 +0.7940252 0.8123661 0.3384659 +0.8123661 0.8123661 0.3384659 +0.8301795 0.8123661 0.3384659 +0.8475045 0.8123661 0.3384659 +0.8643761 0.8123661 0.3384659 +0.880825 0.8123661 0.3384659 +0.8968787 0.8123661 0.3384659 +0.9125621 0.8123661 0.3384659 +0.9278974 0.8123661 0.3384659 +0.9429048 0.8123661 0.3384659 +0.9576028 0.8123661 0.3384659 +0.9720079 0.8123661 0.3384659 +0.9861357 0.8123661 0.3384659 +1 0.8123661 0.3384659 +0 0.8301795 0.3384659 +0.1939468 0.8301795 0.3384659 +0.2773041 0.8301795 0.3384659 +0.3384659 0.8301795 0.3384659 +0.3885728 0.8301795 0.3384659 +0.4317928 0.8301795 0.3384659 +0.470214 0.8301795 0.3384659 +0.5050551 0.8301795 0.3384659 +0.5370987 0.8301795 0.3384659 +0.5668815 0.8301795 0.3384659 +0.5947903 0.8301795 0.3384659 +0.6211144 0.8301795 0.3384659 +0.6460766 0.8301795 0.3384659 +0.6698526 0.8301795 0.3384659 +0.6925839 0.8301795 0.3384659 +0.7143866 0.8301795 0.3384659 +0.7353569 0.8301795 0.3384659 +0.7555758 0.8301795 0.3384659 +0.7751122 0.8301795 0.3384659 +0.7940252 0.8301795 0.3384659 +0.8123661 0.8301795 0.3384659 +0.8301795 0.8301795 0.3384659 +0.8475045 0.8301795 0.3384659 +0.8643761 0.8301795 0.3384659 +0.880825 0.8301795 0.3384659 +0.8968787 0.8301795 0.3384659 +0.9125621 0.8301795 0.3384659 +0.9278974 0.8301795 0.3384659 +0.9429048 0.8301795 0.3384659 +0.9576028 0.8301795 0.3384659 +0.9720079 0.8301795 0.3384659 +0.9861357 0.8301795 0.3384659 +1 0.8301795 0.3384659 +0 0.8475045 0.3384659 +0.1939468 0.8475045 0.3384659 +0.2773041 0.8475045 0.3384659 +0.3384659 0.8475045 0.3384659 +0.3885728 0.8475045 0.3384659 +0.4317928 0.8475045 0.3384659 +0.470214 0.8475045 0.3384659 +0.5050551 0.8475045 0.3384659 +0.5370987 0.8475045 0.3384659 +0.5668815 0.8475045 0.3384659 +0.5947903 0.8475045 0.3384659 +0.6211144 0.8475045 0.3384659 +0.6460766 0.8475045 0.3384659 +0.6698526 0.8475045 0.3384659 +0.6925839 0.8475045 0.3384659 +0.7143866 0.8475045 0.3384659 +0.7353569 0.8475045 0.3384659 +0.7555758 0.8475045 0.3384659 +0.7751122 0.8475045 0.3384659 +0.7940252 0.8475045 0.3384659 +0.8123661 0.8475045 0.3384659 +0.8301795 0.8475045 0.3384659 +0.8475045 0.8475045 0.3384659 +0.8643761 0.8475045 0.3384659 +0.880825 0.8475045 0.3384659 +0.8968787 0.8475045 0.3384659 +0.9125621 0.8475045 0.3384659 +0.9278974 0.8475045 0.3384659 +0.9429048 0.8475045 0.3384659 +0.9576028 0.8475045 0.3384659 +0.9720079 0.8475045 0.3384659 +0.9861357 0.8475045 0.3384659 +1 0.8475045 0.3384659 +0 0.8643761 0.3384659 +0.1939468 0.8643761 0.3384659 +0.2773041 0.8643761 0.3384659 +0.3384659 0.8643761 0.3384659 +0.3885728 0.8643761 0.3384659 +0.4317928 0.8643761 0.3384659 +0.470214 0.8643761 0.3384659 +0.5050551 0.8643761 0.3384659 +0.5370987 0.8643761 0.3384659 +0.5668815 0.8643761 0.3384659 +0.5947903 0.8643761 0.3384659 +0.6211144 0.8643761 0.3384659 +0.6460766 0.8643761 0.3384659 +0.6698526 0.8643761 0.3384659 +0.6925839 0.8643761 0.3384659 +0.7143866 0.8643761 0.3384659 +0.7353569 0.8643761 0.3384659 +0.7555758 0.8643761 0.3384659 +0.7751122 0.8643761 0.3384659 +0.7940252 0.8643761 0.3384659 +0.8123661 0.8643761 0.3384659 +0.8301795 0.8643761 0.3384659 +0.8475045 0.8643761 0.3384659 +0.8643761 0.8643761 0.3384659 +0.880825 0.8643761 0.3384659 +0.8968787 0.8643761 0.3384659 +0.9125621 0.8643761 0.3384659 +0.9278974 0.8643761 0.3384659 +0.9429048 0.8643761 0.3384659 +0.9576028 0.8643761 0.3384659 +0.9720079 0.8643761 0.3384659 +0.9861357 0.8643761 0.3384659 +1 0.8643761 0.3384659 +0 0.880825 0.3384659 +0.1939468 0.880825 0.3384659 +0.2773041 0.880825 0.3384659 +0.3384659 0.880825 0.3384659 +0.3885728 0.880825 0.3384659 +0.4317928 0.880825 0.3384659 +0.470214 0.880825 0.3384659 +0.5050551 0.880825 0.3384659 +0.5370987 0.880825 0.3384659 +0.5668815 0.880825 0.3384659 +0.5947903 0.880825 0.3384659 +0.6211144 0.880825 0.3384659 +0.6460766 0.880825 0.3384659 +0.6698526 0.880825 0.3384659 +0.6925839 0.880825 0.3384659 +0.7143866 0.880825 0.3384659 +0.7353569 0.880825 0.3384659 +0.7555758 0.880825 0.3384659 +0.7751122 0.880825 0.3384659 +0.7940252 0.880825 0.3384659 +0.8123661 0.880825 0.3384659 +0.8301795 0.880825 0.3384659 +0.8475045 0.880825 0.3384659 +0.8643761 0.880825 0.3384659 +0.880825 0.880825 0.3384659 +0.8968787 0.880825 0.3384659 +0.9125621 0.880825 0.3384659 +0.9278974 0.880825 0.3384659 +0.9429048 0.880825 0.3384659 +0.9576028 0.880825 0.3384659 +0.9720079 0.880825 0.3384659 +0.9861357 0.880825 0.3384659 +1 0.880825 0.3384659 +0 0.8968787 0.3384659 +0.1939468 0.8968787 0.3384659 +0.2773041 0.8968787 0.3384659 +0.3384659 0.8968787 0.3384659 +0.3885728 0.8968787 0.3384659 +0.4317928 0.8968787 0.3384659 +0.470214 0.8968787 0.3384659 +0.5050551 0.8968787 0.3384659 +0.5370987 0.8968787 0.3384659 +0.5668815 0.8968787 0.3384659 +0.5947903 0.8968787 0.3384659 +0.6211144 0.8968787 0.3384659 +0.6460766 0.8968787 0.3384659 +0.6698526 0.8968787 0.3384659 +0.6925839 0.8968787 0.3384659 +0.7143866 0.8968787 0.3384659 +0.7353569 0.8968787 0.3384659 +0.7555758 0.8968787 0.3384659 +0.7751122 0.8968787 0.3384659 +0.7940252 0.8968787 0.3384659 +0.8123661 0.8968787 0.3384659 +0.8301795 0.8968787 0.3384659 +0.8475045 0.8968787 0.3384659 +0.8643761 0.8968787 0.3384659 +0.880825 0.8968787 0.3384659 +0.8968787 0.8968787 0.3384659 +0.9125621 0.8968787 0.3384659 +0.9278974 0.8968787 0.3384659 +0.9429048 0.8968787 0.3384659 +0.9576028 0.8968787 0.3384659 +0.9720079 0.8968787 0.3384659 +0.9861357 0.8968787 0.3384659 +1 0.8968787 0.3384659 +0 0.9125621 0.3384659 +0.1939468 0.9125621 0.3384659 +0.2773041 0.9125621 0.3384659 +0.3384659 0.9125621 0.3384659 +0.3885728 0.9125621 0.3384659 +0.4317928 0.9125621 0.3384659 +0.470214 0.9125621 0.3384659 +0.5050551 0.9125621 0.3384659 +0.5370987 0.9125621 0.3384659 +0.5668815 0.9125621 0.3384659 +0.5947903 0.9125621 0.3384659 +0.6211144 0.9125621 0.3384659 +0.6460766 0.9125621 0.3384659 +0.6698526 0.9125621 0.3384659 +0.6925839 0.9125621 0.3384659 +0.7143866 0.9125621 0.3384659 +0.7353569 0.9125621 0.3384659 +0.7555758 0.9125621 0.3384659 +0.7751122 0.9125621 0.3384659 +0.7940252 0.9125621 0.3384659 +0.8123661 0.9125621 0.3384659 +0.8301795 0.9125621 0.3384659 +0.8475045 0.9125621 0.3384659 +0.8643761 0.9125621 0.3384659 +0.880825 0.9125621 0.3384659 +0.8968787 0.9125621 0.3384659 +0.9125621 0.9125621 0.3384659 +0.9278974 0.9125621 0.3384659 +0.9429048 0.9125621 0.3384659 +0.9576028 0.9125621 0.3384659 +0.9720079 0.9125621 0.3384659 +0.9861357 0.9125621 0.3384659 +1 0.9125621 0.3384659 +0 0.9278974 0.3384659 +0.1939468 0.9278974 0.3384659 +0.2773041 0.9278974 0.3384659 +0.3384659 0.9278974 0.3384659 +0.3885728 0.9278974 0.3384659 +0.4317928 0.9278974 0.3384659 +0.470214 0.9278974 0.3384659 +0.5050551 0.9278974 0.3384659 +0.5370987 0.9278974 0.3384659 +0.5668815 0.9278974 0.3384659 +0.5947903 0.9278974 0.3384659 +0.6211144 0.9278974 0.3384659 +0.6460766 0.9278974 0.3384659 +0.6698526 0.9278974 0.3384659 +0.6925839 0.9278974 0.3384659 +0.7143866 0.9278974 0.3384659 +0.7353569 0.9278974 0.3384659 +0.7555758 0.9278974 0.3384659 +0.7751122 0.9278974 0.3384659 +0.7940252 0.9278974 0.3384659 +0.8123661 0.9278974 0.3384659 +0.8301795 0.9278974 0.3384659 +0.8475045 0.9278974 0.3384659 +0.8643761 0.9278974 0.3384659 +0.880825 0.9278974 0.3384659 +0.8968787 0.9278974 0.3384659 +0.9125621 0.9278974 0.3384659 +0.9278974 0.9278974 0.3384659 +0.9429048 0.9278974 0.3384659 +0.9576028 0.9278974 0.3384659 +0.9720079 0.9278974 0.3384659 +0.9861357 0.9278974 0.3384659 +1 0.9278974 0.3384659 +0 0.9429048 0.3384659 +0.1939468 0.9429048 0.3384659 +0.2773041 0.9429048 0.3384659 +0.3384659 0.9429048 0.3384659 +0.3885728 0.9429048 0.3384659 +0.4317928 0.9429048 0.3384659 +0.470214 0.9429048 0.3384659 +0.5050551 0.9429048 0.3384659 +0.5370987 0.9429048 0.3384659 +0.5668815 0.9429048 0.3384659 +0.5947903 0.9429048 0.3384659 +0.6211144 0.9429048 0.3384659 +0.6460766 0.9429048 0.3384659 +0.6698526 0.9429048 0.3384659 +0.6925839 0.9429048 0.3384659 +0.7143866 0.9429048 0.3384659 +0.7353569 0.9429048 0.3384659 +0.7555758 0.9429048 0.3384659 +0.7751122 0.9429048 0.3384659 +0.7940252 0.9429048 0.3384659 +0.8123661 0.9429048 0.3384659 +0.8301795 0.9429048 0.3384659 +0.8475045 0.9429048 0.3384659 +0.8643761 0.9429048 0.3384659 +0.880825 0.9429048 0.3384659 +0.8968787 0.9429048 0.3384659 +0.9125621 0.9429048 0.3384659 +0.9278974 0.9429048 0.3384659 +0.9429048 0.9429048 0.3384659 +0.9576028 0.9429048 0.3384659 +0.9720079 0.9429048 0.3384659 +0.9861357 0.9429048 0.3384659 +1 0.9429048 0.3384659 +0 0.9576028 0.3384659 +0.1939468 0.9576028 0.3384659 +0.2773041 0.9576028 0.3384659 +0.3384659 0.9576028 0.3384659 +0.3885728 0.9576028 0.3384659 +0.4317928 0.9576028 0.3384659 +0.470214 0.9576028 0.3384659 +0.5050551 0.9576028 0.3384659 +0.5370987 0.9576028 0.3384659 +0.5668815 0.9576028 0.3384659 +0.5947903 0.9576028 0.3384659 +0.6211144 0.9576028 0.3384659 +0.6460766 0.9576028 0.3384659 +0.6698526 0.9576028 0.3384659 +0.6925839 0.9576028 0.3384659 +0.7143866 0.9576028 0.3384659 +0.7353569 0.9576028 0.3384659 +0.7555758 0.9576028 0.3384659 +0.7751122 0.9576028 0.3384659 +0.7940252 0.9576028 0.3384659 +0.8123661 0.9576028 0.3384659 +0.8301795 0.9576028 0.3384659 +0.8475045 0.9576028 0.3384659 +0.8643761 0.9576028 0.3384659 +0.880825 0.9576028 0.3384659 +0.8968787 0.9576028 0.3384659 +0.9125621 0.9576028 0.3384659 +0.9278974 0.9576028 0.3384659 +0.9429048 0.9576028 0.3384659 +0.9576028 0.9576028 0.3384659 +0.9720079 0.9576028 0.3384659 +0.9861357 0.9576028 0.3384659 +1 0.9576028 0.3384659 +0 0.9720079 0.3384659 +0.1939468 0.9720079 0.3384659 +0.2773041 0.9720079 0.3384659 +0.3384659 0.9720079 0.3384659 +0.3885728 0.9720079 0.3384659 +0.4317928 0.9720079 0.3384659 +0.470214 0.9720079 0.3384659 +0.5050551 0.9720079 0.3384659 +0.5370987 0.9720079 0.3384659 +0.5668815 0.9720079 0.3384659 +0.5947903 0.9720079 0.3384659 +0.6211144 0.9720079 0.3384659 +0.6460766 0.9720079 0.3384659 +0.6698526 0.9720079 0.3384659 +0.6925839 0.9720079 0.3384659 +0.7143866 0.9720079 0.3384659 +0.7353569 0.9720079 0.3384659 +0.7555758 0.9720079 0.3384659 +0.7751122 0.9720079 0.3384659 +0.7940252 0.9720079 0.3384659 +0.8123661 0.9720079 0.3384659 +0.8301795 0.9720079 0.3384659 +0.8475045 0.9720079 0.3384659 +0.8643761 0.9720079 0.3384659 +0.880825 0.9720079 0.3384659 +0.8968787 0.9720079 0.3384659 +0.9125621 0.9720079 0.3384659 +0.9278974 0.9720079 0.3384659 +0.9429048 0.9720079 0.3384659 +0.9576028 0.9720079 0.3384659 +0.9720079 0.9720079 0.3384659 +0.9861357 0.9720079 0.3384659 +1 0.9720079 0.3384659 +0 0.9861357 0.3384659 +0.1939468 0.9861357 0.3384659 +0.2773041 0.9861357 0.3384659 +0.3384659 0.9861357 0.3384659 +0.3885728 0.9861357 0.3384659 +0.4317928 0.9861357 0.3384659 +0.470214 0.9861357 0.3384659 +0.5050551 0.9861357 0.3384659 +0.5370987 0.9861357 0.3384659 +0.5668815 0.9861357 0.3384659 +0.5947903 0.9861357 0.3384659 +0.6211144 0.9861357 0.3384659 +0.6460766 0.9861357 0.3384659 +0.6698526 0.9861357 0.3384659 +0.6925839 0.9861357 0.3384659 +0.7143866 0.9861357 0.3384659 +0.7353569 0.9861357 0.3384659 +0.7555758 0.9861357 0.3384659 +0.7751122 0.9861357 0.3384659 +0.7940252 0.9861357 0.3384659 +0.8123661 0.9861357 0.3384659 +0.8301795 0.9861357 0.3384659 +0.8475045 0.9861357 0.3384659 +0.8643761 0.9861357 0.3384659 +0.880825 0.9861357 0.3384659 +0.8968787 0.9861357 0.3384659 +0.9125621 0.9861357 0.3384659 +0.9278974 0.9861357 0.3384659 +0.9429048 0.9861357 0.3384659 +0.9576028 0.9861357 0.3384659 +0.9720079 0.9861357 0.3384659 +0.9861357 0.9861357 0.3384659 +1 0.9861357 0.3384659 +0 1 0.3384659 +0.1939468 1 0.3384659 +0.2773041 1 0.3384659 +0.3384659 1 0.3384659 +0.3885728 1 0.3384659 +0.4317928 1 0.3384659 +0.470214 1 0.3384659 +0.5050551 1 0.3384659 +0.5370987 1 0.3384659 +0.5668815 1 0.3384659 +0.5947903 1 0.3384659 +0.6211144 1 0.3384659 +0.6460766 1 0.3384659 +0.6698526 1 0.3384659 +0.6925839 1 0.3384659 +0.7143866 1 0.3384659 +0.7353569 1 0.3384659 +0.7555758 1 0.3384659 +0.7751122 1 0.3384659 +0.7940252 1 0.3384659 +0.8123661 1 0.3384659 +0.8301795 1 0.3384659 +0.8475045 1 0.3384659 +0.8643761 1 0.3384659 +0.880825 1 0.3384659 +0.8968787 1 0.3384659 +0.9125621 1 0.3384659 +0.9278974 1 0.3384659 +0.9429048 1 0.3384659 +0.9576028 1 0.3384659 +0.9720079 1 0.3384659 +0.9861357 1 0.3384659 +1 1 0.3384659 +0 0 0.3885728 +0.1939468 0 0.3885728 +0.2773041 0 0.3885728 +0.3384659 0 0.3885728 +0.3885728 0 0.3885728 +0.4317928 0 0.3885728 +0.470214 0 0.3885728 +0.5050551 0 0.3885728 +0.5370987 0 0.3885728 +0.5668815 0 0.3885728 +0.5947903 0 0.3885728 +0.6211144 0 0.3885728 +0.6460766 0 0.3885728 +0.6698526 0 0.3885728 +0.6925839 0 0.3885728 +0.7143866 0 0.3885728 +0.7353569 0 0.3885728 +0.7555758 0 0.3885728 +0.7751122 0 0.3885728 +0.7940252 0 0.3885728 +0.8123661 0 0.3885728 +0.8301795 0 0.3885728 +0.8475045 0 0.3885728 +0.8643761 0 0.3885728 +0.880825 0 0.3885728 +0.8968787 0 0.3885728 +0.9125621 0 0.3885728 +0.9278974 0 0.3885728 +0.9429048 0 0.3885728 +0.9576028 0 0.3885728 +0.9720079 0 0.3885728 +0.9861357 0 0.3885728 +1 0 0.3885728 +0 0.1939468 0.3885728 +0.1939468 0.1939468 0.3885728 +0.2773041 0.1939468 0.3885728 +0.3384659 0.1939468 0.3885728 +0.3885728 0.1939468 0.3885728 +0.4317928 0.1939468 0.3885728 +0.470214 0.1939468 0.3885728 +0.5050551 0.1939468 0.3885728 +0.5370987 0.1939468 0.3885728 +0.5668815 0.1939468 0.3885728 +0.5947903 0.1939468 0.3885728 +0.6211144 0.1939468 0.3885728 +0.6460766 0.1939468 0.3885728 +0.6698526 0.1939468 0.3885728 +0.6925839 0.1939468 0.3885728 +0.7143866 0.1939468 0.3885728 +0.7353569 0.1939468 0.3885728 +0.7555758 0.1939468 0.3885728 +0.7751122 0.1939468 0.3885728 +0.7940252 0.1939468 0.3885728 +0.8123661 0.1939468 0.3885728 +0.8301795 0.1939468 0.3885728 +0.8475045 0.1939468 0.3885728 +0.8643761 0.1939468 0.3885728 +0.880825 0.1939468 0.3885728 +0.8968787 0.1939468 0.3885728 +0.9125621 0.1939468 0.3885728 +0.9278974 0.1939468 0.3885728 +0.9429048 0.1939468 0.3885728 +0.9576028 0.1939468 0.3885728 +0.9720079 0.1939468 0.3885728 +0.9861357 0.1939468 0.3885728 +1 0.1939468 0.3885728 +0 0.2773041 0.3885728 +0.1939468 0.2773041 0.3885728 +0.2773041 0.2773041 0.3885728 +0.3384659 0.2773041 0.3885728 +0.3885728 0.2773041 0.3885728 +0.4317928 0.2773041 0.3885728 +0.470214 0.2773041 0.3885728 +0.5050551 0.2773041 0.3885728 +0.5370987 0.2773041 0.3885728 +0.5668815 0.2773041 0.3885728 +0.5947903 0.2773041 0.3885728 +0.6211144 0.2773041 0.3885728 +0.6460766 0.2773041 0.3885728 +0.6698526 0.2773041 0.3885728 +0.6925839 0.2773041 0.3885728 +0.7143866 0.2773041 0.3885728 +0.7353569 0.2773041 0.3885728 +0.7555758 0.2773041 0.3885728 +0.7751122 0.2773041 0.3885728 +0.7940252 0.2773041 0.3885728 +0.8123661 0.2773041 0.3885728 +0.8301795 0.2773041 0.3885728 +0.8475045 0.2773041 0.3885728 +0.8643761 0.2773041 0.3885728 +0.880825 0.2773041 0.3885728 +0.8968787 0.2773041 0.3885728 +0.9125621 0.2773041 0.3885728 +0.9278974 0.2773041 0.3885728 +0.9429048 0.2773041 0.3885728 +0.9576028 0.2773041 0.3885728 +0.9720079 0.2773041 0.3885728 +0.9861357 0.2773041 0.3885728 +1 0.2773041 0.3885728 +0 0.3384659 0.3885728 +0.1939468 0.3384659 0.3885728 +0.2773041 0.3384659 0.3885728 +0.3384659 0.3384659 0.3885728 +0.3885728 0.3384659 0.3885728 +0.4317928 0.3384659 0.3885728 +0.470214 0.3384659 0.3885728 +0.5050551 0.3384659 0.3885728 +0.5370987 0.3384659 0.3885728 +0.5668815 0.3384659 0.3885728 +0.5947903 0.3384659 0.3885728 +0.6211144 0.3384659 0.3885728 +0.6460766 0.3384659 0.3885728 +0.6698526 0.3384659 0.3885728 +0.6925839 0.3384659 0.3885728 +0.7143866 0.3384659 0.3885728 +0.7353569 0.3384659 0.3885728 +0.7555758 0.3384659 0.3885728 +0.7751122 0.3384659 0.3885728 +0.7940252 0.3384659 0.3885728 +0.8123661 0.3384659 0.3885728 +0.8301795 0.3384659 0.3885728 +0.8475045 0.3384659 0.3885728 +0.8643761 0.3384659 0.3885728 +0.880825 0.3384659 0.3885728 +0.8968787 0.3384659 0.3885728 +0.9125621 0.3384659 0.3885728 +0.9278974 0.3384659 0.3885728 +0.9429048 0.3384659 0.3885728 +0.9576028 0.3384659 0.3885728 +0.9720079 0.3384659 0.3885728 +0.9861357 0.3384659 0.3885728 +1 0.3384659 0.3885728 +0 0.3885728 0.3885728 +0.1939468 0.3885728 0.3885728 +0.2773041 0.3885728 0.3885728 +0.3384659 0.3885728 0.3885728 +0.3885728 0.3885728 0.3885728 +0.4317928 0.3885728 0.3885728 +0.470214 0.3885728 0.3885728 +0.5050551 0.3885728 0.3885728 +0.5370987 0.3885728 0.3885728 +0.5668815 0.3885728 0.3885728 +0.5947903 0.3885728 0.3885728 +0.6211144 0.3885728 0.3885728 +0.6460766 0.3885728 0.3885728 +0.6698526 0.3885728 0.3885728 +0.6925839 0.3885728 0.3885728 +0.7143866 0.3885728 0.3885728 +0.7353569 0.3885728 0.3885728 +0.7555758 0.3885728 0.3885728 +0.7751122 0.3885728 0.3885728 +0.7940252 0.3885728 0.3885728 +0.8123661 0.3885728 0.3885728 +0.8301795 0.3885728 0.3885728 +0.8475045 0.3885728 0.3885728 +0.8643761 0.3885728 0.3885728 +0.880825 0.3885728 0.3885728 +0.8968787 0.3885728 0.3885728 +0.9125621 0.3885728 0.3885728 +0.9278974 0.3885728 0.3885728 +0.9429048 0.3885728 0.3885728 +0.9576028 0.3885728 0.3885728 +0.9720079 0.3885728 0.3885728 +0.9861357 0.3885728 0.3885728 +1 0.3885728 0.3885728 +0 0.4317928 0.3885728 +0.1939468 0.4317928 0.3885728 +0.2773041 0.4317928 0.3885728 +0.3384659 0.4317928 0.3885728 +0.3885728 0.4317928 0.3885728 +0.4317928 0.4317928 0.3885728 +0.470214 0.4317928 0.3885728 +0.5050551 0.4317928 0.3885728 +0.5370987 0.4317928 0.3885728 +0.5668815 0.4317928 0.3885728 +0.5947903 0.4317928 0.3885728 +0.6211144 0.4317928 0.3885728 +0.6460766 0.4317928 0.3885728 +0.6698526 0.4317928 0.3885728 +0.6925839 0.4317928 0.3885728 +0.7143866 0.4317928 0.3885728 +0.7353569 0.4317928 0.3885728 +0.7555758 0.4317928 0.3885728 +0.7751122 0.4317928 0.3885728 +0.7940252 0.4317928 0.3885728 +0.8123661 0.4317928 0.3885728 +0.8301795 0.4317928 0.3885728 +0.8475045 0.4317928 0.3885728 +0.8643761 0.4317928 0.3885728 +0.880825 0.4317928 0.3885728 +0.8968787 0.4317928 0.3885728 +0.9125621 0.4317928 0.3885728 +0.9278974 0.4317928 0.3885728 +0.9429048 0.4317928 0.3885728 +0.9576028 0.4317928 0.3885728 +0.9720079 0.4317928 0.3885728 +0.9861357 0.4317928 0.3885728 +1 0.4317928 0.3885728 +0 0.470214 0.3885728 +0.1939468 0.470214 0.3885728 +0.2773041 0.470214 0.3885728 +0.3384659 0.470214 0.3885728 +0.3885728 0.470214 0.3885728 +0.4317928 0.470214 0.3885728 +0.470214 0.470214 0.3885728 +0.5050551 0.470214 0.3885728 +0.5370987 0.470214 0.3885728 +0.5668815 0.470214 0.3885728 +0.5947903 0.470214 0.3885728 +0.6211144 0.470214 0.3885728 +0.6460766 0.470214 0.3885728 +0.6698526 0.470214 0.3885728 +0.6925839 0.470214 0.3885728 +0.7143866 0.470214 0.3885728 +0.7353569 0.470214 0.3885728 +0.7555758 0.470214 0.3885728 +0.7751122 0.470214 0.3885728 +0.7940252 0.470214 0.3885728 +0.8123661 0.470214 0.3885728 +0.8301795 0.470214 0.3885728 +0.8475045 0.470214 0.3885728 +0.8643761 0.470214 0.3885728 +0.880825 0.470214 0.3885728 +0.8968787 0.470214 0.3885728 +0.9125621 0.470214 0.3885728 +0.9278974 0.470214 0.3885728 +0.9429048 0.470214 0.3885728 +0.9576028 0.470214 0.3885728 +0.9720079 0.470214 0.3885728 +0.9861357 0.470214 0.3885728 +1 0.470214 0.3885728 +0 0.5050551 0.3885728 +0.1939468 0.5050551 0.3885728 +0.2773041 0.5050551 0.3885728 +0.3384659 0.5050551 0.3885728 +0.3885728 0.5050551 0.3885728 +0.4317928 0.5050551 0.3885728 +0.470214 0.5050551 0.3885728 +0.5050551 0.5050551 0.3885728 +0.5370987 0.5050551 0.3885728 +0.5668815 0.5050551 0.3885728 +0.5947903 0.5050551 0.3885728 +0.6211144 0.5050551 0.3885728 +0.6460766 0.5050551 0.3885728 +0.6698526 0.5050551 0.3885728 +0.6925839 0.5050551 0.3885728 +0.7143866 0.5050551 0.3885728 +0.7353569 0.5050551 0.3885728 +0.7555758 0.5050551 0.3885728 +0.7751122 0.5050551 0.3885728 +0.7940252 0.5050551 0.3885728 +0.8123661 0.5050551 0.3885728 +0.8301795 0.5050551 0.3885728 +0.8475045 0.5050551 0.3885728 +0.8643761 0.5050551 0.3885728 +0.880825 0.5050551 0.3885728 +0.8968787 0.5050551 0.3885728 +0.9125621 0.5050551 0.3885728 +0.9278974 0.5050551 0.3885728 +0.9429048 0.5050551 0.3885728 +0.9576028 0.5050551 0.3885728 +0.9720079 0.5050551 0.3885728 +0.9861357 0.5050551 0.3885728 +1 0.5050551 0.3885728 +0 0.5370987 0.3885728 +0.1939468 0.5370987 0.3885728 +0.2773041 0.5370987 0.3885728 +0.3384659 0.5370987 0.3885728 +0.3885728 0.5370987 0.3885728 +0.4317928 0.5370987 0.3885728 +0.470214 0.5370987 0.3885728 +0.5050551 0.5370987 0.3885728 +0.5370987 0.5370987 0.3885728 +0.5668815 0.5370987 0.3885728 +0.5947903 0.5370987 0.3885728 +0.6211144 0.5370987 0.3885728 +0.6460766 0.5370987 0.3885728 +0.6698526 0.5370987 0.3885728 +0.6925839 0.5370987 0.3885728 +0.7143866 0.5370987 0.3885728 +0.7353569 0.5370987 0.3885728 +0.7555758 0.5370987 0.3885728 +0.7751122 0.5370987 0.3885728 +0.7940252 0.5370987 0.3885728 +0.8123661 0.5370987 0.3885728 +0.8301795 0.5370987 0.3885728 +0.8475045 0.5370987 0.3885728 +0.8643761 0.5370987 0.3885728 +0.880825 0.5370987 0.3885728 +0.8968787 0.5370987 0.3885728 +0.9125621 0.5370987 0.3885728 +0.9278974 0.5370987 0.3885728 +0.9429048 0.5370987 0.3885728 +0.9576028 0.5370987 0.3885728 +0.9720079 0.5370987 0.3885728 +0.9861357 0.5370987 0.3885728 +1 0.5370987 0.3885728 +0 0.5668815 0.3885728 +0.1939468 0.5668815 0.3885728 +0.2773041 0.5668815 0.3885728 +0.3384659 0.5668815 0.3885728 +0.3885728 0.5668815 0.3885728 +0.4317928 0.5668815 0.3885728 +0.470214 0.5668815 0.3885728 +0.5050551 0.5668815 0.3885728 +0.5370987 0.5668815 0.3885728 +0.5668815 0.5668815 0.3885728 +0.5947903 0.5668815 0.3885728 +0.6211144 0.5668815 0.3885728 +0.6460766 0.5668815 0.3885728 +0.6698526 0.5668815 0.3885728 +0.6925839 0.5668815 0.3885728 +0.7143866 0.5668815 0.3885728 +0.7353569 0.5668815 0.3885728 +0.7555758 0.5668815 0.3885728 +0.7751122 0.5668815 0.3885728 +0.7940252 0.5668815 0.3885728 +0.8123661 0.5668815 0.3885728 +0.8301795 0.5668815 0.3885728 +0.8475045 0.5668815 0.3885728 +0.8643761 0.5668815 0.3885728 +0.880825 0.5668815 0.3885728 +0.8968787 0.5668815 0.3885728 +0.9125621 0.5668815 0.3885728 +0.9278974 0.5668815 0.3885728 +0.9429048 0.5668815 0.3885728 +0.9576028 0.5668815 0.3885728 +0.9720079 0.5668815 0.3885728 +0.9861357 0.5668815 0.3885728 +1 0.5668815 0.3885728 +0 0.5947903 0.3885728 +0.1939468 0.5947903 0.3885728 +0.2773041 0.5947903 0.3885728 +0.3384659 0.5947903 0.3885728 +0.3885728 0.5947903 0.3885728 +0.4317928 0.5947903 0.3885728 +0.470214 0.5947903 0.3885728 +0.5050551 0.5947903 0.3885728 +0.5370987 0.5947903 0.3885728 +0.5668815 0.5947903 0.3885728 +0.5947903 0.5947903 0.3885728 +0.6211144 0.5947903 0.3885728 +0.6460766 0.5947903 0.3885728 +0.6698526 0.5947903 0.3885728 +0.6925839 0.5947903 0.3885728 +0.7143866 0.5947903 0.3885728 +0.7353569 0.5947903 0.3885728 +0.7555758 0.5947903 0.3885728 +0.7751122 0.5947903 0.3885728 +0.7940252 0.5947903 0.3885728 +0.8123661 0.5947903 0.3885728 +0.8301795 0.5947903 0.3885728 +0.8475045 0.5947903 0.3885728 +0.8643761 0.5947903 0.3885728 +0.880825 0.5947903 0.3885728 +0.8968787 0.5947903 0.3885728 +0.9125621 0.5947903 0.3885728 +0.9278974 0.5947903 0.3885728 +0.9429048 0.5947903 0.3885728 +0.9576028 0.5947903 0.3885728 +0.9720079 0.5947903 0.3885728 +0.9861357 0.5947903 0.3885728 +1 0.5947903 0.3885728 +0 0.6211144 0.3885728 +0.1939468 0.6211144 0.3885728 +0.2773041 0.6211144 0.3885728 +0.3384659 0.6211144 0.3885728 +0.3885728 0.6211144 0.3885728 +0.4317928 0.6211144 0.3885728 +0.470214 0.6211144 0.3885728 +0.5050551 0.6211144 0.3885728 +0.5370987 0.6211144 0.3885728 +0.5668815 0.6211144 0.3885728 +0.5947903 0.6211144 0.3885728 +0.6211144 0.6211144 0.3885728 +0.6460766 0.6211144 0.3885728 +0.6698526 0.6211144 0.3885728 +0.6925839 0.6211144 0.3885728 +0.7143866 0.6211144 0.3885728 +0.7353569 0.6211144 0.3885728 +0.7555758 0.6211144 0.3885728 +0.7751122 0.6211144 0.3885728 +0.7940252 0.6211144 0.3885728 +0.8123661 0.6211144 0.3885728 +0.8301795 0.6211144 0.3885728 +0.8475045 0.6211144 0.3885728 +0.8643761 0.6211144 0.3885728 +0.880825 0.6211144 0.3885728 +0.8968787 0.6211144 0.3885728 +0.9125621 0.6211144 0.3885728 +0.9278974 0.6211144 0.3885728 +0.9429048 0.6211144 0.3885728 +0.9576028 0.6211144 0.3885728 +0.9720079 0.6211144 0.3885728 +0.9861357 0.6211144 0.3885728 +1 0.6211144 0.3885728 +0 0.6460766 0.3885728 +0.1939468 0.6460766 0.3885728 +0.2773041 0.6460766 0.3885728 +0.3384659 0.6460766 0.3885728 +0.3885728 0.6460766 0.3885728 +0.4317928 0.6460766 0.3885728 +0.470214 0.6460766 0.3885728 +0.5050551 0.6460766 0.3885728 +0.5370987 0.6460766 0.3885728 +0.5668815 0.6460766 0.3885728 +0.5947903 0.6460766 0.3885728 +0.6211144 0.6460766 0.3885728 +0.6460766 0.6460766 0.3885728 +0.6698526 0.6460766 0.3885728 +0.6925839 0.6460766 0.3885728 +0.7143866 0.6460766 0.3885728 +0.7353569 0.6460766 0.3885728 +0.7555758 0.6460766 0.3885728 +0.7751122 0.6460766 0.3885728 +0.7940252 0.6460766 0.3885728 +0.8123661 0.6460766 0.3885728 +0.8301795 0.6460766 0.3885728 +0.8475045 0.6460766 0.3885728 +0.8643761 0.6460766 0.3885728 +0.880825 0.6460766 0.3885728 +0.8968787 0.6460766 0.3885728 +0.9125621 0.6460766 0.3885728 +0.9278974 0.6460766 0.3885728 +0.9429048 0.6460766 0.3885728 +0.9576028 0.6460766 0.3885728 +0.9720079 0.6460766 0.3885728 +0.9861357 0.6460766 0.3885728 +1 0.6460766 0.3885728 +0 0.6698526 0.3885728 +0.1939468 0.6698526 0.3885728 +0.2773041 0.6698526 0.3885728 +0.3384659 0.6698526 0.3885728 +0.3885728 0.6698526 0.3885728 +0.4317928 0.6698526 0.3885728 +0.470214 0.6698526 0.3885728 +0.5050551 0.6698526 0.3885728 +0.5370987 0.6698526 0.3885728 +0.5668815 0.6698526 0.3885728 +0.5947903 0.6698526 0.3885728 +0.6211144 0.6698526 0.3885728 +0.6460766 0.6698526 0.3885728 +0.6698526 0.6698526 0.3885728 +0.6925839 0.6698526 0.3885728 +0.7143866 0.6698526 0.3885728 +0.7353569 0.6698526 0.3885728 +0.7555758 0.6698526 0.3885728 +0.7751122 0.6698526 0.3885728 +0.7940252 0.6698526 0.3885728 +0.8123661 0.6698526 0.3885728 +0.8301795 0.6698526 0.3885728 +0.8475045 0.6698526 0.3885728 +0.8643761 0.6698526 0.3885728 +0.880825 0.6698526 0.3885728 +0.8968787 0.6698526 0.3885728 +0.9125621 0.6698526 0.3885728 +0.9278974 0.6698526 0.3885728 +0.9429048 0.6698526 0.3885728 +0.9576028 0.6698526 0.3885728 +0.9720079 0.6698526 0.3885728 +0.9861357 0.6698526 0.3885728 +1 0.6698526 0.3885728 +0 0.6925839 0.3885728 +0.1939468 0.6925839 0.3885728 +0.2773041 0.6925839 0.3885728 +0.3384659 0.6925839 0.3885728 +0.3885728 0.6925839 0.3885728 +0.4317928 0.6925839 0.3885728 +0.470214 0.6925839 0.3885728 +0.5050551 0.6925839 0.3885728 +0.5370987 0.6925839 0.3885728 +0.5668815 0.6925839 0.3885728 +0.5947903 0.6925839 0.3885728 +0.6211144 0.6925839 0.3885728 +0.6460766 0.6925839 0.3885728 +0.6698526 0.6925839 0.3885728 +0.6925839 0.6925839 0.3885728 +0.7143866 0.6925839 0.3885728 +0.7353569 0.6925839 0.3885728 +0.7555758 0.6925839 0.3885728 +0.7751122 0.6925839 0.3885728 +0.7940252 0.6925839 0.3885728 +0.8123661 0.6925839 0.3885728 +0.8301795 0.6925839 0.3885728 +0.8475045 0.6925839 0.3885728 +0.8643761 0.6925839 0.3885728 +0.880825 0.6925839 0.3885728 +0.8968787 0.6925839 0.3885728 +0.9125621 0.6925839 0.3885728 +0.9278974 0.6925839 0.3885728 +0.9429048 0.6925839 0.3885728 +0.9576028 0.6925839 0.3885728 +0.9720079 0.6925839 0.3885728 +0.9861357 0.6925839 0.3885728 +1 0.6925839 0.3885728 +0 0.7143866 0.3885728 +0.1939468 0.7143866 0.3885728 +0.2773041 0.7143866 0.3885728 +0.3384659 0.7143866 0.3885728 +0.3885728 0.7143866 0.3885728 +0.4317928 0.7143866 0.3885728 +0.470214 0.7143866 0.3885728 +0.5050551 0.7143866 0.3885728 +0.5370987 0.7143866 0.3885728 +0.5668815 0.7143866 0.3885728 +0.5947903 0.7143866 0.3885728 +0.6211144 0.7143866 0.3885728 +0.6460766 0.7143866 0.3885728 +0.6698526 0.7143866 0.3885728 +0.6925839 0.7143866 0.3885728 +0.7143866 0.7143866 0.3885728 +0.7353569 0.7143866 0.3885728 +0.7555758 0.7143866 0.3885728 +0.7751122 0.7143866 0.3885728 +0.7940252 0.7143866 0.3885728 +0.8123661 0.7143866 0.3885728 +0.8301795 0.7143866 0.3885728 +0.8475045 0.7143866 0.3885728 +0.8643761 0.7143866 0.3885728 +0.880825 0.7143866 0.3885728 +0.8968787 0.7143866 0.3885728 +0.9125621 0.7143866 0.3885728 +0.9278974 0.7143866 0.3885728 +0.9429048 0.7143866 0.3885728 +0.9576028 0.7143866 0.3885728 +0.9720079 0.7143866 0.3885728 +0.9861357 0.7143866 0.3885728 +1 0.7143866 0.3885728 +0 0.7353569 0.3885728 +0.1939468 0.7353569 0.3885728 +0.2773041 0.7353569 0.3885728 +0.3384659 0.7353569 0.3885728 +0.3885728 0.7353569 0.3885728 +0.4317928 0.7353569 0.3885728 +0.470214 0.7353569 0.3885728 +0.5050551 0.7353569 0.3885728 +0.5370987 0.7353569 0.3885728 +0.5668815 0.7353569 0.3885728 +0.5947903 0.7353569 0.3885728 +0.6211144 0.7353569 0.3885728 +0.6460766 0.7353569 0.3885728 +0.6698526 0.7353569 0.3885728 +0.6925839 0.7353569 0.3885728 +0.7143866 0.7353569 0.3885728 +0.7353569 0.7353569 0.3885728 +0.7555758 0.7353569 0.3885728 +0.7751122 0.7353569 0.3885728 +0.7940252 0.7353569 0.3885728 +0.8123661 0.7353569 0.3885728 +0.8301795 0.7353569 0.3885728 +0.8475045 0.7353569 0.3885728 +0.8643761 0.7353569 0.3885728 +0.880825 0.7353569 0.3885728 +0.8968787 0.7353569 0.3885728 +0.9125621 0.7353569 0.3885728 +0.9278974 0.7353569 0.3885728 +0.9429048 0.7353569 0.3885728 +0.9576028 0.7353569 0.3885728 +0.9720079 0.7353569 0.3885728 +0.9861357 0.7353569 0.3885728 +1 0.7353569 0.3885728 +0 0.7555758 0.3885728 +0.1939468 0.7555758 0.3885728 +0.2773041 0.7555758 0.3885728 +0.3384659 0.7555758 0.3885728 +0.3885728 0.7555758 0.3885728 +0.4317928 0.7555758 0.3885728 +0.470214 0.7555758 0.3885728 +0.5050551 0.7555758 0.3885728 +0.5370987 0.7555758 0.3885728 +0.5668815 0.7555758 0.3885728 +0.5947903 0.7555758 0.3885728 +0.6211144 0.7555758 0.3885728 +0.6460766 0.7555758 0.3885728 +0.6698526 0.7555758 0.3885728 +0.6925839 0.7555758 0.3885728 +0.7143866 0.7555758 0.3885728 +0.7353569 0.7555758 0.3885728 +0.7555758 0.7555758 0.3885728 +0.7751122 0.7555758 0.3885728 +0.7940252 0.7555758 0.3885728 +0.8123661 0.7555758 0.3885728 +0.8301795 0.7555758 0.3885728 +0.8475045 0.7555758 0.3885728 +0.8643761 0.7555758 0.3885728 +0.880825 0.7555758 0.3885728 +0.8968787 0.7555758 0.3885728 +0.9125621 0.7555758 0.3885728 +0.9278974 0.7555758 0.3885728 +0.9429048 0.7555758 0.3885728 +0.9576028 0.7555758 0.3885728 +0.9720079 0.7555758 0.3885728 +0.9861357 0.7555758 0.3885728 +1 0.7555758 0.3885728 +0 0.7751122 0.3885728 +0.1939468 0.7751122 0.3885728 +0.2773041 0.7751122 0.3885728 +0.3384659 0.7751122 0.3885728 +0.3885728 0.7751122 0.3885728 +0.4317928 0.7751122 0.3885728 +0.470214 0.7751122 0.3885728 +0.5050551 0.7751122 0.3885728 +0.5370987 0.7751122 0.3885728 +0.5668815 0.7751122 0.3885728 +0.5947903 0.7751122 0.3885728 +0.6211144 0.7751122 0.3885728 +0.6460766 0.7751122 0.3885728 +0.6698526 0.7751122 0.3885728 +0.6925839 0.7751122 0.3885728 +0.7143866 0.7751122 0.3885728 +0.7353569 0.7751122 0.3885728 +0.7555758 0.7751122 0.3885728 +0.7751122 0.7751122 0.3885728 +0.7940252 0.7751122 0.3885728 +0.8123661 0.7751122 0.3885728 +0.8301795 0.7751122 0.3885728 +0.8475045 0.7751122 0.3885728 +0.8643761 0.7751122 0.3885728 +0.880825 0.7751122 0.3885728 +0.8968787 0.7751122 0.3885728 +0.9125621 0.7751122 0.3885728 +0.9278974 0.7751122 0.3885728 +0.9429048 0.7751122 0.3885728 +0.9576028 0.7751122 0.3885728 +0.9720079 0.7751122 0.3885728 +0.9861357 0.7751122 0.3885728 +1 0.7751122 0.3885728 +0 0.7940252 0.3885728 +0.1939468 0.7940252 0.3885728 +0.2773041 0.7940252 0.3885728 +0.3384659 0.7940252 0.3885728 +0.3885728 0.7940252 0.3885728 +0.4317928 0.7940252 0.3885728 +0.470214 0.7940252 0.3885728 +0.5050551 0.7940252 0.3885728 +0.5370987 0.7940252 0.3885728 +0.5668815 0.7940252 0.3885728 +0.5947903 0.7940252 0.3885728 +0.6211144 0.7940252 0.3885728 +0.6460766 0.7940252 0.3885728 +0.6698526 0.7940252 0.3885728 +0.6925839 0.7940252 0.3885728 +0.7143866 0.7940252 0.3885728 +0.7353569 0.7940252 0.3885728 +0.7555758 0.7940252 0.3885728 +0.7751122 0.7940252 0.3885728 +0.7940252 0.7940252 0.3885728 +0.8123661 0.7940252 0.3885728 +0.8301795 0.7940252 0.3885728 +0.8475045 0.7940252 0.3885728 +0.8643761 0.7940252 0.3885728 +0.880825 0.7940252 0.3885728 +0.8968787 0.7940252 0.3885728 +0.9125621 0.7940252 0.3885728 +0.9278974 0.7940252 0.3885728 +0.9429048 0.7940252 0.3885728 +0.9576028 0.7940252 0.3885728 +0.9720079 0.7940252 0.3885728 +0.9861357 0.7940252 0.3885728 +1 0.7940252 0.3885728 +0 0.8123661 0.3885728 +0.1939468 0.8123661 0.3885728 +0.2773041 0.8123661 0.3885728 +0.3384659 0.8123661 0.3885728 +0.3885728 0.8123661 0.3885728 +0.4317928 0.8123661 0.3885728 +0.470214 0.8123661 0.3885728 +0.5050551 0.8123661 0.3885728 +0.5370987 0.8123661 0.3885728 +0.5668815 0.8123661 0.3885728 +0.5947903 0.8123661 0.3885728 +0.6211144 0.8123661 0.3885728 +0.6460766 0.8123661 0.3885728 +0.6698526 0.8123661 0.3885728 +0.6925839 0.8123661 0.3885728 +0.7143866 0.8123661 0.3885728 +0.7353569 0.8123661 0.3885728 +0.7555758 0.8123661 0.3885728 +0.7751122 0.8123661 0.3885728 +0.7940252 0.8123661 0.3885728 +0.8123661 0.8123661 0.3885728 +0.8301795 0.8123661 0.3885728 +0.8475045 0.8123661 0.3885728 +0.8643761 0.8123661 0.3885728 +0.880825 0.8123661 0.3885728 +0.8968787 0.8123661 0.3885728 +0.9125621 0.8123661 0.3885728 +0.9278974 0.8123661 0.3885728 +0.9429048 0.8123661 0.3885728 +0.9576028 0.8123661 0.3885728 +0.9720079 0.8123661 0.3885728 +0.9861357 0.8123661 0.3885728 +1 0.8123661 0.3885728 +0 0.8301795 0.3885728 +0.1939468 0.8301795 0.3885728 +0.2773041 0.8301795 0.3885728 +0.3384659 0.8301795 0.3885728 +0.3885728 0.8301795 0.3885728 +0.4317928 0.8301795 0.3885728 +0.470214 0.8301795 0.3885728 +0.5050551 0.8301795 0.3885728 +0.5370987 0.8301795 0.3885728 +0.5668815 0.8301795 0.3885728 +0.5947903 0.8301795 0.3885728 +0.6211144 0.8301795 0.3885728 +0.6460766 0.8301795 0.3885728 +0.6698526 0.8301795 0.3885728 +0.6925839 0.8301795 0.3885728 +0.7143866 0.8301795 0.3885728 +0.7353569 0.8301795 0.3885728 +0.7555758 0.8301795 0.3885728 +0.7751122 0.8301795 0.3885728 +0.7940252 0.8301795 0.3885728 +0.8123661 0.8301795 0.3885728 +0.8301795 0.8301795 0.3885728 +0.8475045 0.8301795 0.3885728 +0.8643761 0.8301795 0.3885728 +0.880825 0.8301795 0.3885728 +0.8968787 0.8301795 0.3885728 +0.9125621 0.8301795 0.3885728 +0.9278974 0.8301795 0.3885728 +0.9429048 0.8301795 0.3885728 +0.9576028 0.8301795 0.3885728 +0.9720079 0.8301795 0.3885728 +0.9861357 0.8301795 0.3885728 +1 0.8301795 0.3885728 +0 0.8475045 0.3885728 +0.1939468 0.8475045 0.3885728 +0.2773041 0.8475045 0.3885728 +0.3384659 0.8475045 0.3885728 +0.3885728 0.8475045 0.3885728 +0.4317928 0.8475045 0.3885728 +0.470214 0.8475045 0.3885728 +0.5050551 0.8475045 0.3885728 +0.5370987 0.8475045 0.3885728 +0.5668815 0.8475045 0.3885728 +0.5947903 0.8475045 0.3885728 +0.6211144 0.8475045 0.3885728 +0.6460766 0.8475045 0.3885728 +0.6698526 0.8475045 0.3885728 +0.6925839 0.8475045 0.3885728 +0.7143866 0.8475045 0.3885728 +0.7353569 0.8475045 0.3885728 +0.7555758 0.8475045 0.3885728 +0.7751122 0.8475045 0.3885728 +0.7940252 0.8475045 0.3885728 +0.8123661 0.8475045 0.3885728 +0.8301795 0.8475045 0.3885728 +0.8475045 0.8475045 0.3885728 +0.8643761 0.8475045 0.3885728 +0.880825 0.8475045 0.3885728 +0.8968787 0.8475045 0.3885728 +0.9125621 0.8475045 0.3885728 +0.9278974 0.8475045 0.3885728 +0.9429048 0.8475045 0.3885728 +0.9576028 0.8475045 0.3885728 +0.9720079 0.8475045 0.3885728 +0.9861357 0.8475045 0.3885728 +1 0.8475045 0.3885728 +0 0.8643761 0.3885728 +0.1939468 0.8643761 0.3885728 +0.2773041 0.8643761 0.3885728 +0.3384659 0.8643761 0.3885728 +0.3885728 0.8643761 0.3885728 +0.4317928 0.8643761 0.3885728 +0.470214 0.8643761 0.3885728 +0.5050551 0.8643761 0.3885728 +0.5370987 0.8643761 0.3885728 +0.5668815 0.8643761 0.3885728 +0.5947903 0.8643761 0.3885728 +0.6211144 0.8643761 0.3885728 +0.6460766 0.8643761 0.3885728 +0.6698526 0.8643761 0.3885728 +0.6925839 0.8643761 0.3885728 +0.7143866 0.8643761 0.3885728 +0.7353569 0.8643761 0.3885728 +0.7555758 0.8643761 0.3885728 +0.7751122 0.8643761 0.3885728 +0.7940252 0.8643761 0.3885728 +0.8123661 0.8643761 0.3885728 +0.8301795 0.8643761 0.3885728 +0.8475045 0.8643761 0.3885728 +0.8643761 0.8643761 0.3885728 +0.880825 0.8643761 0.3885728 +0.8968787 0.8643761 0.3885728 +0.9125621 0.8643761 0.3885728 +0.9278974 0.8643761 0.3885728 +0.9429048 0.8643761 0.3885728 +0.9576028 0.8643761 0.3885728 +0.9720079 0.8643761 0.3885728 +0.9861357 0.8643761 0.3885728 +1 0.8643761 0.3885728 +0 0.880825 0.3885728 +0.1939468 0.880825 0.3885728 +0.2773041 0.880825 0.3885728 +0.3384659 0.880825 0.3885728 +0.3885728 0.880825 0.3885728 +0.4317928 0.880825 0.3885728 +0.470214 0.880825 0.3885728 +0.5050551 0.880825 0.3885728 +0.5370987 0.880825 0.3885728 +0.5668815 0.880825 0.3885728 +0.5947903 0.880825 0.3885728 +0.6211144 0.880825 0.3885728 +0.6460766 0.880825 0.3885728 +0.6698526 0.880825 0.3885728 +0.6925839 0.880825 0.3885728 +0.7143866 0.880825 0.3885728 +0.7353569 0.880825 0.3885728 +0.7555758 0.880825 0.3885728 +0.7751122 0.880825 0.3885728 +0.7940252 0.880825 0.3885728 +0.8123661 0.880825 0.3885728 +0.8301795 0.880825 0.3885728 +0.8475045 0.880825 0.3885728 +0.8643761 0.880825 0.3885728 +0.880825 0.880825 0.3885728 +0.8968787 0.880825 0.3885728 +0.9125621 0.880825 0.3885728 +0.9278974 0.880825 0.3885728 +0.9429048 0.880825 0.3885728 +0.9576028 0.880825 0.3885728 +0.9720079 0.880825 0.3885728 +0.9861357 0.880825 0.3885728 +1 0.880825 0.3885728 +0 0.8968787 0.3885728 +0.1939468 0.8968787 0.3885728 +0.2773041 0.8968787 0.3885728 +0.3384659 0.8968787 0.3885728 +0.3885728 0.8968787 0.3885728 +0.4317928 0.8968787 0.3885728 +0.470214 0.8968787 0.3885728 +0.5050551 0.8968787 0.3885728 +0.5370987 0.8968787 0.3885728 +0.5668815 0.8968787 0.3885728 +0.5947903 0.8968787 0.3885728 +0.6211144 0.8968787 0.3885728 +0.6460766 0.8968787 0.3885728 +0.6698526 0.8968787 0.3885728 +0.6925839 0.8968787 0.3885728 +0.7143866 0.8968787 0.3885728 +0.7353569 0.8968787 0.3885728 +0.7555758 0.8968787 0.3885728 +0.7751122 0.8968787 0.3885728 +0.7940252 0.8968787 0.3885728 +0.8123661 0.8968787 0.3885728 +0.8301795 0.8968787 0.3885728 +0.8475045 0.8968787 0.3885728 +0.8643761 0.8968787 0.3885728 +0.880825 0.8968787 0.3885728 +0.8968787 0.8968787 0.3885728 +0.9125621 0.8968787 0.3885728 +0.9278974 0.8968787 0.3885728 +0.9429048 0.8968787 0.3885728 +0.9576028 0.8968787 0.3885728 +0.9720079 0.8968787 0.3885728 +0.9861357 0.8968787 0.3885728 +1 0.8968787 0.3885728 +0 0.9125621 0.3885728 +0.1939468 0.9125621 0.3885728 +0.2773041 0.9125621 0.3885728 +0.3384659 0.9125621 0.3885728 +0.3885728 0.9125621 0.3885728 +0.4317928 0.9125621 0.3885728 +0.470214 0.9125621 0.3885728 +0.5050551 0.9125621 0.3885728 +0.5370987 0.9125621 0.3885728 +0.5668815 0.9125621 0.3885728 +0.5947903 0.9125621 0.3885728 +0.6211144 0.9125621 0.3885728 +0.6460766 0.9125621 0.3885728 +0.6698526 0.9125621 0.3885728 +0.6925839 0.9125621 0.3885728 +0.7143866 0.9125621 0.3885728 +0.7353569 0.9125621 0.3885728 +0.7555758 0.9125621 0.3885728 +0.7751122 0.9125621 0.3885728 +0.7940252 0.9125621 0.3885728 +0.8123661 0.9125621 0.3885728 +0.8301795 0.9125621 0.3885728 +0.8475045 0.9125621 0.3885728 +0.8643761 0.9125621 0.3885728 +0.880825 0.9125621 0.3885728 +0.8968787 0.9125621 0.3885728 +0.9125621 0.9125621 0.3885728 +0.9278974 0.9125621 0.3885728 +0.9429048 0.9125621 0.3885728 +0.9576028 0.9125621 0.3885728 +0.9720079 0.9125621 0.3885728 +0.9861357 0.9125621 0.3885728 +1 0.9125621 0.3885728 +0 0.9278974 0.3885728 +0.1939468 0.9278974 0.3885728 +0.2773041 0.9278974 0.3885728 +0.3384659 0.9278974 0.3885728 +0.3885728 0.9278974 0.3885728 +0.4317928 0.9278974 0.3885728 +0.470214 0.9278974 0.3885728 +0.5050551 0.9278974 0.3885728 +0.5370987 0.9278974 0.3885728 +0.5668815 0.9278974 0.3885728 +0.5947903 0.9278974 0.3885728 +0.6211144 0.9278974 0.3885728 +0.6460766 0.9278974 0.3885728 +0.6698526 0.9278974 0.3885728 +0.6925839 0.9278974 0.3885728 +0.7143866 0.9278974 0.3885728 +0.7353569 0.9278974 0.3885728 +0.7555758 0.9278974 0.3885728 +0.7751122 0.9278974 0.3885728 +0.7940252 0.9278974 0.3885728 +0.8123661 0.9278974 0.3885728 +0.8301795 0.9278974 0.3885728 +0.8475045 0.9278974 0.3885728 +0.8643761 0.9278974 0.3885728 +0.880825 0.9278974 0.3885728 +0.8968787 0.9278974 0.3885728 +0.9125621 0.9278974 0.3885728 +0.9278974 0.9278974 0.3885728 +0.9429048 0.9278974 0.3885728 +0.9576028 0.9278974 0.3885728 +0.9720079 0.9278974 0.3885728 +0.9861357 0.9278974 0.3885728 +1 0.9278974 0.3885728 +0 0.9429048 0.3885728 +0.1939468 0.9429048 0.3885728 +0.2773041 0.9429048 0.3885728 +0.3384659 0.9429048 0.3885728 +0.3885728 0.9429048 0.3885728 +0.4317928 0.9429048 0.3885728 +0.470214 0.9429048 0.3885728 +0.5050551 0.9429048 0.3885728 +0.5370987 0.9429048 0.3885728 +0.5668815 0.9429048 0.3885728 +0.5947903 0.9429048 0.3885728 +0.6211144 0.9429048 0.3885728 +0.6460766 0.9429048 0.3885728 +0.6698526 0.9429048 0.3885728 +0.6925839 0.9429048 0.3885728 +0.7143866 0.9429048 0.3885728 +0.7353569 0.9429048 0.3885728 +0.7555758 0.9429048 0.3885728 +0.7751122 0.9429048 0.3885728 +0.7940252 0.9429048 0.3885728 +0.8123661 0.9429048 0.3885728 +0.8301795 0.9429048 0.3885728 +0.8475045 0.9429048 0.3885728 +0.8643761 0.9429048 0.3885728 +0.880825 0.9429048 0.3885728 +0.8968787 0.9429048 0.3885728 +0.9125621 0.9429048 0.3885728 +0.9278974 0.9429048 0.3885728 +0.9429048 0.9429048 0.3885728 +0.9576028 0.9429048 0.3885728 +0.9720079 0.9429048 0.3885728 +0.9861357 0.9429048 0.3885728 +1 0.9429048 0.3885728 +0 0.9576028 0.3885728 +0.1939468 0.9576028 0.3885728 +0.2773041 0.9576028 0.3885728 +0.3384659 0.9576028 0.3885728 +0.3885728 0.9576028 0.3885728 +0.4317928 0.9576028 0.3885728 +0.470214 0.9576028 0.3885728 +0.5050551 0.9576028 0.3885728 +0.5370987 0.9576028 0.3885728 +0.5668815 0.9576028 0.3885728 +0.5947903 0.9576028 0.3885728 +0.6211144 0.9576028 0.3885728 +0.6460766 0.9576028 0.3885728 +0.6698526 0.9576028 0.3885728 +0.6925839 0.9576028 0.3885728 +0.7143866 0.9576028 0.3885728 +0.7353569 0.9576028 0.3885728 +0.7555758 0.9576028 0.3885728 +0.7751122 0.9576028 0.3885728 +0.7940252 0.9576028 0.3885728 +0.8123661 0.9576028 0.3885728 +0.8301795 0.9576028 0.3885728 +0.8475045 0.9576028 0.3885728 +0.8643761 0.9576028 0.3885728 +0.880825 0.9576028 0.3885728 +0.8968787 0.9576028 0.3885728 +0.9125621 0.9576028 0.3885728 +0.9278974 0.9576028 0.3885728 +0.9429048 0.9576028 0.3885728 +0.9576028 0.9576028 0.3885728 +0.9720079 0.9576028 0.3885728 +0.9861357 0.9576028 0.3885728 +1 0.9576028 0.3885728 +0 0.9720079 0.3885728 +0.1939468 0.9720079 0.3885728 +0.2773041 0.9720079 0.3885728 +0.3384659 0.9720079 0.3885728 +0.3885728 0.9720079 0.3885728 +0.4317928 0.9720079 0.3885728 +0.470214 0.9720079 0.3885728 +0.5050551 0.9720079 0.3885728 +0.5370987 0.9720079 0.3885728 +0.5668815 0.9720079 0.3885728 +0.5947903 0.9720079 0.3885728 +0.6211144 0.9720079 0.3885728 +0.6460766 0.9720079 0.3885728 +0.6698526 0.9720079 0.3885728 +0.6925839 0.9720079 0.3885728 +0.7143866 0.9720079 0.3885728 +0.7353569 0.9720079 0.3885728 +0.7555758 0.9720079 0.3885728 +0.7751122 0.9720079 0.3885728 +0.7940252 0.9720079 0.3885728 +0.8123661 0.9720079 0.3885728 +0.8301795 0.9720079 0.3885728 +0.8475045 0.9720079 0.3885728 +0.8643761 0.9720079 0.3885728 +0.880825 0.9720079 0.3885728 +0.8968787 0.9720079 0.3885728 +0.9125621 0.9720079 0.3885728 +0.9278974 0.9720079 0.3885728 +0.9429048 0.9720079 0.3885728 +0.9576028 0.9720079 0.3885728 +0.9720079 0.9720079 0.3885728 +0.9861357 0.9720079 0.3885728 +1 0.9720079 0.3885728 +0 0.9861357 0.3885728 +0.1939468 0.9861357 0.3885728 +0.2773041 0.9861357 0.3885728 +0.3384659 0.9861357 0.3885728 +0.3885728 0.9861357 0.3885728 +0.4317928 0.9861357 0.3885728 +0.470214 0.9861357 0.3885728 +0.5050551 0.9861357 0.3885728 +0.5370987 0.9861357 0.3885728 +0.5668815 0.9861357 0.3885728 +0.5947903 0.9861357 0.3885728 +0.6211144 0.9861357 0.3885728 +0.6460766 0.9861357 0.3885728 +0.6698526 0.9861357 0.3885728 +0.6925839 0.9861357 0.3885728 +0.7143866 0.9861357 0.3885728 +0.7353569 0.9861357 0.3885728 +0.7555758 0.9861357 0.3885728 +0.7751122 0.9861357 0.3885728 +0.7940252 0.9861357 0.3885728 +0.8123661 0.9861357 0.3885728 +0.8301795 0.9861357 0.3885728 +0.8475045 0.9861357 0.3885728 +0.8643761 0.9861357 0.3885728 +0.880825 0.9861357 0.3885728 +0.8968787 0.9861357 0.3885728 +0.9125621 0.9861357 0.3885728 +0.9278974 0.9861357 0.3885728 +0.9429048 0.9861357 0.3885728 +0.9576028 0.9861357 0.3885728 +0.9720079 0.9861357 0.3885728 +0.9861357 0.9861357 0.3885728 +1 0.9861357 0.3885728 +0 1 0.3885728 +0.1939468 1 0.3885728 +0.2773041 1 0.3885728 +0.3384659 1 0.3885728 +0.3885728 1 0.3885728 +0.4317928 1 0.3885728 +0.470214 1 0.3885728 +0.5050551 1 0.3885728 +0.5370987 1 0.3885728 +0.5668815 1 0.3885728 +0.5947903 1 0.3885728 +0.6211144 1 0.3885728 +0.6460766 1 0.3885728 +0.6698526 1 0.3885728 +0.6925839 1 0.3885728 +0.7143866 1 0.3885728 +0.7353569 1 0.3885728 +0.7555758 1 0.3885728 +0.7751122 1 0.3885728 +0.7940252 1 0.3885728 +0.8123661 1 0.3885728 +0.8301795 1 0.3885728 +0.8475045 1 0.3885728 +0.8643761 1 0.3885728 +0.880825 1 0.3885728 +0.8968787 1 0.3885728 +0.9125621 1 0.3885728 +0.9278974 1 0.3885728 +0.9429048 1 0.3885728 +0.9576028 1 0.3885728 +0.9720079 1 0.3885728 +0.9861357 1 0.3885728 +1 1 0.3885728 +0 0 0.4317928 +0.1939468 0 0.4317928 +0.2773041 0 0.4317928 +0.3384659 0 0.4317928 +0.3885728 0 0.4317928 +0.4317928 0 0.4317928 +0.470214 0 0.4317928 +0.5050551 0 0.4317928 +0.5370987 0 0.4317928 +0.5668815 0 0.4317928 +0.5947903 0 0.4317928 +0.6211144 0 0.4317928 +0.6460766 0 0.4317928 +0.6698526 0 0.4317928 +0.6925839 0 0.4317928 +0.7143866 0 0.4317928 +0.7353569 0 0.4317928 +0.7555758 0 0.4317928 +0.7751122 0 0.4317928 +0.7940252 0 0.4317928 +0.8123661 0 0.4317928 +0.8301795 0 0.4317928 +0.8475045 0 0.4317928 +0.8643761 0 0.4317928 +0.880825 0 0.4317928 +0.8968787 0 0.4317928 +0.9125621 0 0.4317928 +0.9278974 0 0.4317928 +0.9429048 0 0.4317928 +0.9576028 0 0.4317928 +0.9720079 0 0.4317928 +0.9861357 0 0.4317928 +1 0 0.4317928 +0 0.1939468 0.4317928 +0.1939468 0.1939468 0.4317928 +0.2773041 0.1939468 0.4317928 +0.3384659 0.1939468 0.4317928 +0.3885728 0.1939468 0.4317928 +0.4317928 0.1939468 0.4317928 +0.470214 0.1939468 0.4317928 +0.5050551 0.1939468 0.4317928 +0.5370987 0.1939468 0.4317928 +0.5668815 0.1939468 0.4317928 +0.5947903 0.1939468 0.4317928 +0.6211144 0.1939468 0.4317928 +0.6460766 0.1939468 0.4317928 +0.6698526 0.1939468 0.4317928 +0.6925839 0.1939468 0.4317928 +0.7143866 0.1939468 0.4317928 +0.7353569 0.1939468 0.4317928 +0.7555758 0.1939468 0.4317928 +0.7751122 0.1939468 0.4317928 +0.7940252 0.1939468 0.4317928 +0.8123661 0.1939468 0.4317928 +0.8301795 0.1939468 0.4317928 +0.8475045 0.1939468 0.4317928 +0.8643761 0.1939468 0.4317928 +0.880825 0.1939468 0.4317928 +0.8968787 0.1939468 0.4317928 +0.9125621 0.1939468 0.4317928 +0.9278974 0.1939468 0.4317928 +0.9429048 0.1939468 0.4317928 +0.9576028 0.1939468 0.4317928 +0.9720079 0.1939468 0.4317928 +0.9861357 0.1939468 0.4317928 +1 0.1939468 0.4317928 +0 0.2773041 0.4317928 +0.1939468 0.2773041 0.4317928 +0.2773041 0.2773041 0.4317928 +0.3384659 0.2773041 0.4317928 +0.3885728 0.2773041 0.4317928 +0.4317928 0.2773041 0.4317928 +0.470214 0.2773041 0.4317928 +0.5050551 0.2773041 0.4317928 +0.5370987 0.2773041 0.4317928 +0.5668815 0.2773041 0.4317928 +0.5947903 0.2773041 0.4317928 +0.6211144 0.2773041 0.4317928 +0.6460766 0.2773041 0.4317928 +0.6698526 0.2773041 0.4317928 +0.6925839 0.2773041 0.4317928 +0.7143866 0.2773041 0.4317928 +0.7353569 0.2773041 0.4317928 +0.7555758 0.2773041 0.4317928 +0.7751122 0.2773041 0.4317928 +0.7940252 0.2773041 0.4317928 +0.8123661 0.2773041 0.4317928 +0.8301795 0.2773041 0.4317928 +0.8475045 0.2773041 0.4317928 +0.8643761 0.2773041 0.4317928 +0.880825 0.2773041 0.4317928 +0.8968787 0.2773041 0.4317928 +0.9125621 0.2773041 0.4317928 +0.9278974 0.2773041 0.4317928 +0.9429048 0.2773041 0.4317928 +0.9576028 0.2773041 0.4317928 +0.9720079 0.2773041 0.4317928 +0.9861357 0.2773041 0.4317928 +1 0.2773041 0.4317928 +0 0.3384659 0.4317928 +0.1939468 0.3384659 0.4317928 +0.2773041 0.3384659 0.4317928 +0.3384659 0.3384659 0.4317928 +0.3885728 0.3384659 0.4317928 +0.4317928 0.3384659 0.4317928 +0.470214 0.3384659 0.4317928 +0.5050551 0.3384659 0.4317928 +0.5370987 0.3384659 0.4317928 +0.5668815 0.3384659 0.4317928 +0.5947903 0.3384659 0.4317928 +0.6211144 0.3384659 0.4317928 +0.6460766 0.3384659 0.4317928 +0.6698526 0.3384659 0.4317928 +0.6925839 0.3384659 0.4317928 +0.7143866 0.3384659 0.4317928 +0.7353569 0.3384659 0.4317928 +0.7555758 0.3384659 0.4317928 +0.7751122 0.3384659 0.4317928 +0.7940252 0.3384659 0.4317928 +0.8123661 0.3384659 0.4317928 +0.8301795 0.3384659 0.4317928 +0.8475045 0.3384659 0.4317928 +0.8643761 0.3384659 0.4317928 +0.880825 0.3384659 0.4317928 +0.8968787 0.3384659 0.4317928 +0.9125621 0.3384659 0.4317928 +0.9278974 0.3384659 0.4317928 +0.9429048 0.3384659 0.4317928 +0.9576028 0.3384659 0.4317928 +0.9720079 0.3384659 0.4317928 +0.9861357 0.3384659 0.4317928 +1 0.3384659 0.4317928 +0 0.3885728 0.4317928 +0.1939468 0.3885728 0.4317928 +0.2773041 0.3885728 0.4317928 +0.3384659 0.3885728 0.4317928 +0.3885728 0.3885728 0.4317928 +0.4317928 0.3885728 0.4317928 +0.470214 0.3885728 0.4317928 +0.5050551 0.3885728 0.4317928 +0.5370987 0.3885728 0.4317928 +0.5668815 0.3885728 0.4317928 +0.5947903 0.3885728 0.4317928 +0.6211144 0.3885728 0.4317928 +0.6460766 0.3885728 0.4317928 +0.6698526 0.3885728 0.4317928 +0.6925839 0.3885728 0.4317928 +0.7143866 0.3885728 0.4317928 +0.7353569 0.3885728 0.4317928 +0.7555758 0.3885728 0.4317928 +0.7751122 0.3885728 0.4317928 +0.7940252 0.3885728 0.4317928 +0.8123661 0.3885728 0.4317928 +0.8301795 0.3885728 0.4317928 +0.8475045 0.3885728 0.4317928 +0.8643761 0.3885728 0.4317928 +0.880825 0.3885728 0.4317928 +0.8968787 0.3885728 0.4317928 +0.9125621 0.3885728 0.4317928 +0.9278974 0.3885728 0.4317928 +0.9429048 0.3885728 0.4317928 +0.9576028 0.3885728 0.4317928 +0.9720079 0.3885728 0.4317928 +0.9861357 0.3885728 0.4317928 +1 0.3885728 0.4317928 +0 0.4317928 0.4317928 +0.1939468 0.4317928 0.4317928 +0.2773041 0.4317928 0.4317928 +0.3384659 0.4317928 0.4317928 +0.3885728 0.4317928 0.4317928 +0.4317928 0.4317928 0.4317928 +0.470214 0.4317928 0.4317928 +0.5050551 0.4317928 0.4317928 +0.5370987 0.4317928 0.4317928 +0.5668815 0.4317928 0.4317928 +0.5947903 0.4317928 0.4317928 +0.6211144 0.4317928 0.4317928 +0.6460766 0.4317928 0.4317928 +0.6698526 0.4317928 0.4317928 +0.6925839 0.4317928 0.4317928 +0.7143866 0.4317928 0.4317928 +0.7353569 0.4317928 0.4317928 +0.7555758 0.4317928 0.4317928 +0.7751122 0.4317928 0.4317928 +0.7940252 0.4317928 0.4317928 +0.8123661 0.4317928 0.4317928 +0.8301795 0.4317928 0.4317928 +0.8475045 0.4317928 0.4317928 +0.8643761 0.4317928 0.4317928 +0.880825 0.4317928 0.4317928 +0.8968787 0.4317928 0.4317928 +0.9125621 0.4317928 0.4317928 +0.9278974 0.4317928 0.4317928 +0.9429048 0.4317928 0.4317928 +0.9576028 0.4317928 0.4317928 +0.9720079 0.4317928 0.4317928 +0.9861357 0.4317928 0.4317928 +1 0.4317928 0.4317928 +0 0.470214 0.4317928 +0.1939468 0.470214 0.4317928 +0.2773041 0.470214 0.4317928 +0.3384659 0.470214 0.4317928 +0.3885728 0.470214 0.4317928 +0.4317928 0.470214 0.4317928 +0.470214 0.470214 0.4317928 +0.5050551 0.470214 0.4317928 +0.5370987 0.470214 0.4317928 +0.5668815 0.470214 0.4317928 +0.5947903 0.470214 0.4317928 +0.6211144 0.470214 0.4317928 +0.6460766 0.470214 0.4317928 +0.6698526 0.470214 0.4317928 +0.6925839 0.470214 0.4317928 +0.7143866 0.470214 0.4317928 +0.7353569 0.470214 0.4317928 +0.7555758 0.470214 0.4317928 +0.7751122 0.470214 0.4317928 +0.7940252 0.470214 0.4317928 +0.8123661 0.470214 0.4317928 +0.8301795 0.470214 0.4317928 +0.8475045 0.470214 0.4317928 +0.8643761 0.470214 0.4317928 +0.880825 0.470214 0.4317928 +0.8968787 0.470214 0.4317928 +0.9125621 0.470214 0.4317928 +0.9278974 0.470214 0.4317928 +0.9429048 0.470214 0.4317928 +0.9576028 0.470214 0.4317928 +0.9720079 0.470214 0.4317928 +0.9861357 0.470214 0.4317928 +1 0.470214 0.4317928 +0 0.5050551 0.4317928 +0.1939468 0.5050551 0.4317928 +0.2773041 0.5050551 0.4317928 +0.3384659 0.5050551 0.4317928 +0.3885728 0.5050551 0.4317928 +0.4317928 0.5050551 0.4317928 +0.470214 0.5050551 0.4317928 +0.5050551 0.5050551 0.4317928 +0.5370987 0.5050551 0.4317928 +0.5668815 0.5050551 0.4317928 +0.5947903 0.5050551 0.4317928 +0.6211144 0.5050551 0.4317928 +0.6460766 0.5050551 0.4317928 +0.6698526 0.5050551 0.4317928 +0.6925839 0.5050551 0.4317928 +0.7143866 0.5050551 0.4317928 +0.7353569 0.5050551 0.4317928 +0.7555758 0.5050551 0.4317928 +0.7751122 0.5050551 0.4317928 +0.7940252 0.5050551 0.4317928 +0.8123661 0.5050551 0.4317928 +0.8301795 0.5050551 0.4317928 +0.8475045 0.5050551 0.4317928 +0.8643761 0.5050551 0.4317928 +0.880825 0.5050551 0.4317928 +0.8968787 0.5050551 0.4317928 +0.9125621 0.5050551 0.4317928 +0.9278974 0.5050551 0.4317928 +0.9429048 0.5050551 0.4317928 +0.9576028 0.5050551 0.4317928 +0.9720079 0.5050551 0.4317928 +0.9861357 0.5050551 0.4317928 +1 0.5050551 0.4317928 +0 0.5370987 0.4317928 +0.1939468 0.5370987 0.4317928 +0.2773041 0.5370987 0.4317928 +0.3384659 0.5370987 0.4317928 +0.3885728 0.5370987 0.4317928 +0.4317928 0.5370987 0.4317928 +0.470214 0.5370987 0.4317928 +0.5050551 0.5370987 0.4317928 +0.5370987 0.5370987 0.4317928 +0.5668815 0.5370987 0.4317928 +0.5947903 0.5370987 0.4317928 +0.6211144 0.5370987 0.4317928 +0.6460766 0.5370987 0.4317928 +0.6698526 0.5370987 0.4317928 +0.6925839 0.5370987 0.4317928 +0.7143866 0.5370987 0.4317928 +0.7353569 0.5370987 0.4317928 +0.7555758 0.5370987 0.4317928 +0.7751122 0.5370987 0.4317928 +0.7940252 0.5370987 0.4317928 +0.8123661 0.5370987 0.4317928 +0.8301795 0.5370987 0.4317928 +0.8475045 0.5370987 0.4317928 +0.8643761 0.5370987 0.4317928 +0.880825 0.5370987 0.4317928 +0.8968787 0.5370987 0.4317928 +0.9125621 0.5370987 0.4317928 +0.9278974 0.5370987 0.4317928 +0.9429048 0.5370987 0.4317928 +0.9576028 0.5370987 0.4317928 +0.9720079 0.5370987 0.4317928 +0.9861357 0.5370987 0.4317928 +1 0.5370987 0.4317928 +0 0.5668815 0.4317928 +0.1939468 0.5668815 0.4317928 +0.2773041 0.5668815 0.4317928 +0.3384659 0.5668815 0.4317928 +0.3885728 0.5668815 0.4317928 +0.4317928 0.5668815 0.4317928 +0.470214 0.5668815 0.4317928 +0.5050551 0.5668815 0.4317928 +0.5370987 0.5668815 0.4317928 +0.5668815 0.5668815 0.4317928 +0.5947903 0.5668815 0.4317928 +0.6211144 0.5668815 0.4317928 +0.6460766 0.5668815 0.4317928 +0.6698526 0.5668815 0.4317928 +0.6925839 0.5668815 0.4317928 +0.7143866 0.5668815 0.4317928 +0.7353569 0.5668815 0.4317928 +0.7555758 0.5668815 0.4317928 +0.7751122 0.5668815 0.4317928 +0.7940252 0.5668815 0.4317928 +0.8123661 0.5668815 0.4317928 +0.8301795 0.5668815 0.4317928 +0.8475045 0.5668815 0.4317928 +0.8643761 0.5668815 0.4317928 +0.880825 0.5668815 0.4317928 +0.8968787 0.5668815 0.4317928 +0.9125621 0.5668815 0.4317928 +0.9278974 0.5668815 0.4317928 +0.9429048 0.5668815 0.4317928 +0.9576028 0.5668815 0.4317928 +0.9720079 0.5668815 0.4317928 +0.9861357 0.5668815 0.4317928 +1 0.5668815 0.4317928 +0 0.5947903 0.4317928 +0.1939468 0.5947903 0.4317928 +0.2773041 0.5947903 0.4317928 +0.3384659 0.5947903 0.4317928 +0.3885728 0.5947903 0.4317928 +0.4317928 0.5947903 0.4317928 +0.470214 0.5947903 0.4317928 +0.5050551 0.5947903 0.4317928 +0.5370987 0.5947903 0.4317928 +0.5668815 0.5947903 0.4317928 +0.5947903 0.5947903 0.4317928 +0.6211144 0.5947903 0.4317928 +0.6460766 0.5947903 0.4317928 +0.6698526 0.5947903 0.4317928 +0.6925839 0.5947903 0.4317928 +0.7143866 0.5947903 0.4317928 +0.7353569 0.5947903 0.4317928 +0.7555758 0.5947903 0.4317928 +0.7751122 0.5947903 0.4317928 +0.7940252 0.5947903 0.4317928 +0.8123661 0.5947903 0.4317928 +0.8301795 0.5947903 0.4317928 +0.8475045 0.5947903 0.4317928 +0.8643761 0.5947903 0.4317928 +0.880825 0.5947903 0.4317928 +0.8968787 0.5947903 0.4317928 +0.9125621 0.5947903 0.4317928 +0.9278974 0.5947903 0.4317928 +0.9429048 0.5947903 0.4317928 +0.9576028 0.5947903 0.4317928 +0.9720079 0.5947903 0.4317928 +0.9861357 0.5947903 0.4317928 +1 0.5947903 0.4317928 +0 0.6211144 0.4317928 +0.1939468 0.6211144 0.4317928 +0.2773041 0.6211144 0.4317928 +0.3384659 0.6211144 0.4317928 +0.3885728 0.6211144 0.4317928 +0.4317928 0.6211144 0.4317928 +0.470214 0.6211144 0.4317928 +0.5050551 0.6211144 0.4317928 +0.5370987 0.6211144 0.4317928 +0.5668815 0.6211144 0.4317928 +0.5947903 0.6211144 0.4317928 +0.6211144 0.6211144 0.4317928 +0.6460766 0.6211144 0.4317928 +0.6698526 0.6211144 0.4317928 +0.6925839 0.6211144 0.4317928 +0.7143866 0.6211144 0.4317928 +0.7353569 0.6211144 0.4317928 +0.7555758 0.6211144 0.4317928 +0.7751122 0.6211144 0.4317928 +0.7940252 0.6211144 0.4317928 +0.8123661 0.6211144 0.4317928 +0.8301795 0.6211144 0.4317928 +0.8475045 0.6211144 0.4317928 +0.8643761 0.6211144 0.4317928 +0.880825 0.6211144 0.4317928 +0.8968787 0.6211144 0.4317928 +0.9125621 0.6211144 0.4317928 +0.9278974 0.6211144 0.4317928 +0.9429048 0.6211144 0.4317928 +0.9576028 0.6211144 0.4317928 +0.9720079 0.6211144 0.4317928 +0.9861357 0.6211144 0.4317928 +1 0.6211144 0.4317928 +0 0.6460766 0.4317928 +0.1939468 0.6460766 0.4317928 +0.2773041 0.6460766 0.4317928 +0.3384659 0.6460766 0.4317928 +0.3885728 0.6460766 0.4317928 +0.4317928 0.6460766 0.4317928 +0.470214 0.6460766 0.4317928 +0.5050551 0.6460766 0.4317928 +0.5370987 0.6460766 0.4317928 +0.5668815 0.6460766 0.4317928 +0.5947903 0.6460766 0.4317928 +0.6211144 0.6460766 0.4317928 +0.6460766 0.6460766 0.4317928 +0.6698526 0.6460766 0.4317928 +0.6925839 0.6460766 0.4317928 +0.7143866 0.6460766 0.4317928 +0.7353569 0.6460766 0.4317928 +0.7555758 0.6460766 0.4317928 +0.7751122 0.6460766 0.4317928 +0.7940252 0.6460766 0.4317928 +0.8123661 0.6460766 0.4317928 +0.8301795 0.6460766 0.4317928 +0.8475045 0.6460766 0.4317928 +0.8643761 0.6460766 0.4317928 +0.880825 0.6460766 0.4317928 +0.8968787 0.6460766 0.4317928 +0.9125621 0.6460766 0.4317928 +0.9278974 0.6460766 0.4317928 +0.9429048 0.6460766 0.4317928 +0.9576028 0.6460766 0.4317928 +0.9720079 0.6460766 0.4317928 +0.9861357 0.6460766 0.4317928 +1 0.6460766 0.4317928 +0 0.6698526 0.4317928 +0.1939468 0.6698526 0.4317928 +0.2773041 0.6698526 0.4317928 +0.3384659 0.6698526 0.4317928 +0.3885728 0.6698526 0.4317928 +0.4317928 0.6698526 0.4317928 +0.470214 0.6698526 0.4317928 +0.5050551 0.6698526 0.4317928 +0.5370987 0.6698526 0.4317928 +0.5668815 0.6698526 0.4317928 +0.5947903 0.6698526 0.4317928 +0.6211144 0.6698526 0.4317928 +0.6460766 0.6698526 0.4317928 +0.6698526 0.6698526 0.4317928 +0.6925839 0.6698526 0.4317928 +0.7143866 0.6698526 0.4317928 +0.7353569 0.6698526 0.4317928 +0.7555758 0.6698526 0.4317928 +0.7751122 0.6698526 0.4317928 +0.7940252 0.6698526 0.4317928 +0.8123661 0.6698526 0.4317928 +0.8301795 0.6698526 0.4317928 +0.8475045 0.6698526 0.4317928 +0.8643761 0.6698526 0.4317928 +0.880825 0.6698526 0.4317928 +0.8968787 0.6698526 0.4317928 +0.9125621 0.6698526 0.4317928 +0.9278974 0.6698526 0.4317928 +0.9429048 0.6698526 0.4317928 +0.9576028 0.6698526 0.4317928 +0.9720079 0.6698526 0.4317928 +0.9861357 0.6698526 0.4317928 +1 0.6698526 0.4317928 +0 0.6925839 0.4317928 +0.1939468 0.6925839 0.4317928 +0.2773041 0.6925839 0.4317928 +0.3384659 0.6925839 0.4317928 +0.3885728 0.6925839 0.4317928 +0.4317928 0.6925839 0.4317928 +0.470214 0.6925839 0.4317928 +0.5050551 0.6925839 0.4317928 +0.5370987 0.6925839 0.4317928 +0.5668815 0.6925839 0.4317928 +0.5947903 0.6925839 0.4317928 +0.6211144 0.6925839 0.4317928 +0.6460766 0.6925839 0.4317928 +0.6698526 0.6925839 0.4317928 +0.6925839 0.6925839 0.4317928 +0.7143866 0.6925839 0.4317928 +0.7353569 0.6925839 0.4317928 +0.7555758 0.6925839 0.4317928 +0.7751122 0.6925839 0.4317928 +0.7940252 0.6925839 0.4317928 +0.8123661 0.6925839 0.4317928 +0.8301795 0.6925839 0.4317928 +0.8475045 0.6925839 0.4317928 +0.8643761 0.6925839 0.4317928 +0.880825 0.6925839 0.4317928 +0.8968787 0.6925839 0.4317928 +0.9125621 0.6925839 0.4317928 +0.9278974 0.6925839 0.4317928 +0.9429048 0.6925839 0.4317928 +0.9576028 0.6925839 0.4317928 +0.9720079 0.6925839 0.4317928 +0.9861357 0.6925839 0.4317928 +1 0.6925839 0.4317928 +0 0.7143866 0.4317928 +0.1939468 0.7143866 0.4317928 +0.2773041 0.7143866 0.4317928 +0.3384659 0.7143866 0.4317928 +0.3885728 0.7143866 0.4317928 +0.4317928 0.7143866 0.4317928 +0.470214 0.7143866 0.4317928 +0.5050551 0.7143866 0.4317928 +0.5370987 0.7143866 0.4317928 +0.5668815 0.7143866 0.4317928 +0.5947903 0.7143866 0.4317928 +0.6211144 0.7143866 0.4317928 +0.6460766 0.7143866 0.4317928 +0.6698526 0.7143866 0.4317928 +0.6925839 0.7143866 0.4317928 +0.7143866 0.7143866 0.4317928 +0.7353569 0.7143866 0.4317928 +0.7555758 0.7143866 0.4317928 +0.7751122 0.7143866 0.4317928 +0.7940252 0.7143866 0.4317928 +0.8123661 0.7143866 0.4317928 +0.8301795 0.7143866 0.4317928 +0.8475045 0.7143866 0.4317928 +0.8643761 0.7143866 0.4317928 +0.880825 0.7143866 0.4317928 +0.8968787 0.7143866 0.4317928 +0.9125621 0.7143866 0.4317928 +0.9278974 0.7143866 0.4317928 +0.9429048 0.7143866 0.4317928 +0.9576028 0.7143866 0.4317928 +0.9720079 0.7143866 0.4317928 +0.9861357 0.7143866 0.4317928 +1 0.7143866 0.4317928 +0 0.7353569 0.4317928 +0.1939468 0.7353569 0.4317928 +0.2773041 0.7353569 0.4317928 +0.3384659 0.7353569 0.4317928 +0.3885728 0.7353569 0.4317928 +0.4317928 0.7353569 0.4317928 +0.470214 0.7353569 0.4317928 +0.5050551 0.7353569 0.4317928 +0.5370987 0.7353569 0.4317928 +0.5668815 0.7353569 0.4317928 +0.5947903 0.7353569 0.4317928 +0.6211144 0.7353569 0.4317928 +0.6460766 0.7353569 0.4317928 +0.6698526 0.7353569 0.4317928 +0.6925839 0.7353569 0.4317928 +0.7143866 0.7353569 0.4317928 +0.7353569 0.7353569 0.4317928 +0.7555758 0.7353569 0.4317928 +0.7751122 0.7353569 0.4317928 +0.7940252 0.7353569 0.4317928 +0.8123661 0.7353569 0.4317928 +0.8301795 0.7353569 0.4317928 +0.8475045 0.7353569 0.4317928 +0.8643761 0.7353569 0.4317928 +0.880825 0.7353569 0.4317928 +0.8968787 0.7353569 0.4317928 +0.9125621 0.7353569 0.4317928 +0.9278974 0.7353569 0.4317928 +0.9429048 0.7353569 0.4317928 +0.9576028 0.7353569 0.4317928 +0.9720079 0.7353569 0.4317928 +0.9861357 0.7353569 0.4317928 +1 0.7353569 0.4317928 +0 0.7555758 0.4317928 +0.1939468 0.7555758 0.4317928 +0.2773041 0.7555758 0.4317928 +0.3384659 0.7555758 0.4317928 +0.3885728 0.7555758 0.4317928 +0.4317928 0.7555758 0.4317928 +0.470214 0.7555758 0.4317928 +0.5050551 0.7555758 0.4317928 +0.5370987 0.7555758 0.4317928 +0.5668815 0.7555758 0.4317928 +0.5947903 0.7555758 0.4317928 +0.6211144 0.7555758 0.4317928 +0.6460766 0.7555758 0.4317928 +0.6698526 0.7555758 0.4317928 +0.6925839 0.7555758 0.4317928 +0.7143866 0.7555758 0.4317928 +0.7353569 0.7555758 0.4317928 +0.7555758 0.7555758 0.4317928 +0.7751122 0.7555758 0.4317928 +0.7940252 0.7555758 0.4317928 +0.8123661 0.7555758 0.4317928 +0.8301795 0.7555758 0.4317928 +0.8475045 0.7555758 0.4317928 +0.8643761 0.7555758 0.4317928 +0.880825 0.7555758 0.4317928 +0.8968787 0.7555758 0.4317928 +0.9125621 0.7555758 0.4317928 +0.9278974 0.7555758 0.4317928 +0.9429048 0.7555758 0.4317928 +0.9576028 0.7555758 0.4317928 +0.9720079 0.7555758 0.4317928 +0.9861357 0.7555758 0.4317928 +1 0.7555758 0.4317928 +0 0.7751122 0.4317928 +0.1939468 0.7751122 0.4317928 +0.2773041 0.7751122 0.4317928 +0.3384659 0.7751122 0.4317928 +0.3885728 0.7751122 0.4317928 +0.4317928 0.7751122 0.4317928 +0.470214 0.7751122 0.4317928 +0.5050551 0.7751122 0.4317928 +0.5370987 0.7751122 0.4317928 +0.5668815 0.7751122 0.4317928 +0.5947903 0.7751122 0.4317928 +0.6211144 0.7751122 0.4317928 +0.6460766 0.7751122 0.4317928 +0.6698526 0.7751122 0.4317928 +0.6925839 0.7751122 0.4317928 +0.7143866 0.7751122 0.4317928 +0.7353569 0.7751122 0.4317928 +0.7555758 0.7751122 0.4317928 +0.7751122 0.7751122 0.4317928 +0.7940252 0.7751122 0.4317928 +0.8123661 0.7751122 0.4317928 +0.8301795 0.7751122 0.4317928 +0.8475045 0.7751122 0.4317928 +0.8643761 0.7751122 0.4317928 +0.880825 0.7751122 0.4317928 +0.8968787 0.7751122 0.4317928 +0.9125621 0.7751122 0.4317928 +0.9278974 0.7751122 0.4317928 +0.9429048 0.7751122 0.4317928 +0.9576028 0.7751122 0.4317928 +0.9720079 0.7751122 0.4317928 +0.9861357 0.7751122 0.4317928 +1 0.7751122 0.4317928 +0 0.7940252 0.4317928 +0.1939468 0.7940252 0.4317928 +0.2773041 0.7940252 0.4317928 +0.3384659 0.7940252 0.4317928 +0.3885728 0.7940252 0.4317928 +0.4317928 0.7940252 0.4317928 +0.470214 0.7940252 0.4317928 +0.5050551 0.7940252 0.4317928 +0.5370987 0.7940252 0.4317928 +0.5668815 0.7940252 0.4317928 +0.5947903 0.7940252 0.4317928 +0.6211144 0.7940252 0.4317928 +0.6460766 0.7940252 0.4317928 +0.6698526 0.7940252 0.4317928 +0.6925839 0.7940252 0.4317928 +0.7143866 0.7940252 0.4317928 +0.7353569 0.7940252 0.4317928 +0.7555758 0.7940252 0.4317928 +0.7751122 0.7940252 0.4317928 +0.7940252 0.7940252 0.4317928 +0.8123661 0.7940252 0.4317928 +0.8301795 0.7940252 0.4317928 +0.8475045 0.7940252 0.4317928 +0.8643761 0.7940252 0.4317928 +0.880825 0.7940252 0.4317928 +0.8968787 0.7940252 0.4317928 +0.9125621 0.7940252 0.4317928 +0.9278974 0.7940252 0.4317928 +0.9429048 0.7940252 0.4317928 +0.9576028 0.7940252 0.4317928 +0.9720079 0.7940252 0.4317928 +0.9861357 0.7940252 0.4317928 +1 0.7940252 0.4317928 +0 0.8123661 0.4317928 +0.1939468 0.8123661 0.4317928 +0.2773041 0.8123661 0.4317928 +0.3384659 0.8123661 0.4317928 +0.3885728 0.8123661 0.4317928 +0.4317928 0.8123661 0.4317928 +0.470214 0.8123661 0.4317928 +0.5050551 0.8123661 0.4317928 +0.5370987 0.8123661 0.4317928 +0.5668815 0.8123661 0.4317928 +0.5947903 0.8123661 0.4317928 +0.6211144 0.8123661 0.4317928 +0.6460766 0.8123661 0.4317928 +0.6698526 0.8123661 0.4317928 +0.6925839 0.8123661 0.4317928 +0.7143866 0.8123661 0.4317928 +0.7353569 0.8123661 0.4317928 +0.7555758 0.8123661 0.4317928 +0.7751122 0.8123661 0.4317928 +0.7940252 0.8123661 0.4317928 +0.8123661 0.8123661 0.4317928 +0.8301795 0.8123661 0.4317928 +0.8475045 0.8123661 0.4317928 +0.8643761 0.8123661 0.4317928 +0.880825 0.8123661 0.4317928 +0.8968787 0.8123661 0.4317928 +0.9125621 0.8123661 0.4317928 +0.9278974 0.8123661 0.4317928 +0.9429048 0.8123661 0.4317928 +0.9576028 0.8123661 0.4317928 +0.9720079 0.8123661 0.4317928 +0.9861357 0.8123661 0.4317928 +1 0.8123661 0.4317928 +0 0.8301795 0.4317928 +0.1939468 0.8301795 0.4317928 +0.2773041 0.8301795 0.4317928 +0.3384659 0.8301795 0.4317928 +0.3885728 0.8301795 0.4317928 +0.4317928 0.8301795 0.4317928 +0.470214 0.8301795 0.4317928 +0.5050551 0.8301795 0.4317928 +0.5370987 0.8301795 0.4317928 +0.5668815 0.8301795 0.4317928 +0.5947903 0.8301795 0.4317928 +0.6211144 0.8301795 0.4317928 +0.6460766 0.8301795 0.4317928 +0.6698526 0.8301795 0.4317928 +0.6925839 0.8301795 0.4317928 +0.7143866 0.8301795 0.4317928 +0.7353569 0.8301795 0.4317928 +0.7555758 0.8301795 0.4317928 +0.7751122 0.8301795 0.4317928 +0.7940252 0.8301795 0.4317928 +0.8123661 0.8301795 0.4317928 +0.8301795 0.8301795 0.4317928 +0.8475045 0.8301795 0.4317928 +0.8643761 0.8301795 0.4317928 +0.880825 0.8301795 0.4317928 +0.8968787 0.8301795 0.4317928 +0.9125621 0.8301795 0.4317928 +0.9278974 0.8301795 0.4317928 +0.9429048 0.8301795 0.4317928 +0.9576028 0.8301795 0.4317928 +0.9720079 0.8301795 0.4317928 +0.9861357 0.8301795 0.4317928 +1 0.8301795 0.4317928 +0 0.8475045 0.4317928 +0.1939468 0.8475045 0.4317928 +0.2773041 0.8475045 0.4317928 +0.3384659 0.8475045 0.4317928 +0.3885728 0.8475045 0.4317928 +0.4317928 0.8475045 0.4317928 +0.470214 0.8475045 0.4317928 +0.5050551 0.8475045 0.4317928 +0.5370987 0.8475045 0.4317928 +0.5668815 0.8475045 0.4317928 +0.5947903 0.8475045 0.4317928 +0.6211144 0.8475045 0.4317928 +0.6460766 0.8475045 0.4317928 +0.6698526 0.8475045 0.4317928 +0.6925839 0.8475045 0.4317928 +0.7143866 0.8475045 0.4317928 +0.7353569 0.8475045 0.4317928 +0.7555758 0.8475045 0.4317928 +0.7751122 0.8475045 0.4317928 +0.7940252 0.8475045 0.4317928 +0.8123661 0.8475045 0.4317928 +0.8301795 0.8475045 0.4317928 +0.8475045 0.8475045 0.4317928 +0.8643761 0.8475045 0.4317928 +0.880825 0.8475045 0.4317928 +0.8968787 0.8475045 0.4317928 +0.9125621 0.8475045 0.4317928 +0.9278974 0.8475045 0.4317928 +0.9429048 0.8475045 0.4317928 +0.9576028 0.8475045 0.4317928 +0.9720079 0.8475045 0.4317928 +0.9861357 0.8475045 0.4317928 +1 0.8475045 0.4317928 +0 0.8643761 0.4317928 +0.1939468 0.8643761 0.4317928 +0.2773041 0.8643761 0.4317928 +0.3384659 0.8643761 0.4317928 +0.3885728 0.8643761 0.4317928 +0.4317928 0.8643761 0.4317928 +0.470214 0.8643761 0.4317928 +0.5050551 0.8643761 0.4317928 +0.5370987 0.8643761 0.4317928 +0.5668815 0.8643761 0.4317928 +0.5947903 0.8643761 0.4317928 +0.6211144 0.8643761 0.4317928 +0.6460766 0.8643761 0.4317928 +0.6698526 0.8643761 0.4317928 +0.6925839 0.8643761 0.4317928 +0.7143866 0.8643761 0.4317928 +0.7353569 0.8643761 0.4317928 +0.7555758 0.8643761 0.4317928 +0.7751122 0.8643761 0.4317928 +0.7940252 0.8643761 0.4317928 +0.8123661 0.8643761 0.4317928 +0.8301795 0.8643761 0.4317928 +0.8475045 0.8643761 0.4317928 +0.8643761 0.8643761 0.4317928 +0.880825 0.8643761 0.4317928 +0.8968787 0.8643761 0.4317928 +0.9125621 0.8643761 0.4317928 +0.9278974 0.8643761 0.4317928 +0.9429048 0.8643761 0.4317928 +0.9576028 0.8643761 0.4317928 +0.9720079 0.8643761 0.4317928 +0.9861357 0.8643761 0.4317928 +1 0.8643761 0.4317928 +0 0.880825 0.4317928 +0.1939468 0.880825 0.4317928 +0.2773041 0.880825 0.4317928 +0.3384659 0.880825 0.4317928 +0.3885728 0.880825 0.4317928 +0.4317928 0.880825 0.4317928 +0.470214 0.880825 0.4317928 +0.5050551 0.880825 0.4317928 +0.5370987 0.880825 0.4317928 +0.5668815 0.880825 0.4317928 +0.5947903 0.880825 0.4317928 +0.6211144 0.880825 0.4317928 +0.6460766 0.880825 0.4317928 +0.6698526 0.880825 0.4317928 +0.6925839 0.880825 0.4317928 +0.7143866 0.880825 0.4317928 +0.7353569 0.880825 0.4317928 +0.7555758 0.880825 0.4317928 +0.7751122 0.880825 0.4317928 +0.7940252 0.880825 0.4317928 +0.8123661 0.880825 0.4317928 +0.8301795 0.880825 0.4317928 +0.8475045 0.880825 0.4317928 +0.8643761 0.880825 0.4317928 +0.880825 0.880825 0.4317928 +0.8968787 0.880825 0.4317928 +0.9125621 0.880825 0.4317928 +0.9278974 0.880825 0.4317928 +0.9429048 0.880825 0.4317928 +0.9576028 0.880825 0.4317928 +0.9720079 0.880825 0.4317928 +0.9861357 0.880825 0.4317928 +1 0.880825 0.4317928 +0 0.8968787 0.4317928 +0.1939468 0.8968787 0.4317928 +0.2773041 0.8968787 0.4317928 +0.3384659 0.8968787 0.4317928 +0.3885728 0.8968787 0.4317928 +0.4317928 0.8968787 0.4317928 +0.470214 0.8968787 0.4317928 +0.5050551 0.8968787 0.4317928 +0.5370987 0.8968787 0.4317928 +0.5668815 0.8968787 0.4317928 +0.5947903 0.8968787 0.4317928 +0.6211144 0.8968787 0.4317928 +0.6460766 0.8968787 0.4317928 +0.6698526 0.8968787 0.4317928 +0.6925839 0.8968787 0.4317928 +0.7143866 0.8968787 0.4317928 +0.7353569 0.8968787 0.4317928 +0.7555758 0.8968787 0.4317928 +0.7751122 0.8968787 0.4317928 +0.7940252 0.8968787 0.4317928 +0.8123661 0.8968787 0.4317928 +0.8301795 0.8968787 0.4317928 +0.8475045 0.8968787 0.4317928 +0.8643761 0.8968787 0.4317928 +0.880825 0.8968787 0.4317928 +0.8968787 0.8968787 0.4317928 +0.9125621 0.8968787 0.4317928 +0.9278974 0.8968787 0.4317928 +0.9429048 0.8968787 0.4317928 +0.9576028 0.8968787 0.4317928 +0.9720079 0.8968787 0.4317928 +0.9861357 0.8968787 0.4317928 +1 0.8968787 0.4317928 +0 0.9125621 0.4317928 +0.1939468 0.9125621 0.4317928 +0.2773041 0.9125621 0.4317928 +0.3384659 0.9125621 0.4317928 +0.3885728 0.9125621 0.4317928 +0.4317928 0.9125621 0.4317928 +0.470214 0.9125621 0.4317928 +0.5050551 0.9125621 0.4317928 +0.5370987 0.9125621 0.4317928 +0.5668815 0.9125621 0.4317928 +0.5947903 0.9125621 0.4317928 +0.6211144 0.9125621 0.4317928 +0.6460766 0.9125621 0.4317928 +0.6698526 0.9125621 0.4317928 +0.6925839 0.9125621 0.4317928 +0.7143866 0.9125621 0.4317928 +0.7353569 0.9125621 0.4317928 +0.7555758 0.9125621 0.4317928 +0.7751122 0.9125621 0.4317928 +0.7940252 0.9125621 0.4317928 +0.8123661 0.9125621 0.4317928 +0.8301795 0.9125621 0.4317928 +0.8475045 0.9125621 0.4317928 +0.8643761 0.9125621 0.4317928 +0.880825 0.9125621 0.4317928 +0.8968787 0.9125621 0.4317928 +0.9125621 0.9125621 0.4317928 +0.9278974 0.9125621 0.4317928 +0.9429048 0.9125621 0.4317928 +0.9576028 0.9125621 0.4317928 +0.9720079 0.9125621 0.4317928 +0.9861357 0.9125621 0.4317928 +1 0.9125621 0.4317928 +0 0.9278974 0.4317928 +0.1939468 0.9278974 0.4317928 +0.2773041 0.9278974 0.4317928 +0.3384659 0.9278974 0.4317928 +0.3885728 0.9278974 0.4317928 +0.4317928 0.9278974 0.4317928 +0.470214 0.9278974 0.4317928 +0.5050551 0.9278974 0.4317928 +0.5370987 0.9278974 0.4317928 +0.5668815 0.9278974 0.4317928 +0.5947903 0.9278974 0.4317928 +0.6211144 0.9278974 0.4317928 +0.6460766 0.9278974 0.4317928 +0.6698526 0.9278974 0.4317928 +0.6925839 0.9278974 0.4317928 +0.7143866 0.9278974 0.4317928 +0.7353569 0.9278974 0.4317928 +0.7555758 0.9278974 0.4317928 +0.7751122 0.9278974 0.4317928 +0.7940252 0.9278974 0.4317928 +0.8123661 0.9278974 0.4317928 +0.8301795 0.9278974 0.4317928 +0.8475045 0.9278974 0.4317928 +0.8643761 0.9278974 0.4317928 +0.880825 0.9278974 0.4317928 +0.8968787 0.9278974 0.4317928 +0.9125621 0.9278974 0.4317928 +0.9278974 0.9278974 0.4317928 +0.9429048 0.9278974 0.4317928 +0.9576028 0.9278974 0.4317928 +0.9720079 0.9278974 0.4317928 +0.9861357 0.9278974 0.4317928 +1 0.9278974 0.4317928 +0 0.9429048 0.4317928 +0.1939468 0.9429048 0.4317928 +0.2773041 0.9429048 0.4317928 +0.3384659 0.9429048 0.4317928 +0.3885728 0.9429048 0.4317928 +0.4317928 0.9429048 0.4317928 +0.470214 0.9429048 0.4317928 +0.5050551 0.9429048 0.4317928 +0.5370987 0.9429048 0.4317928 +0.5668815 0.9429048 0.4317928 +0.5947903 0.9429048 0.4317928 +0.6211144 0.9429048 0.4317928 +0.6460766 0.9429048 0.4317928 +0.6698526 0.9429048 0.4317928 +0.6925839 0.9429048 0.4317928 +0.7143866 0.9429048 0.4317928 +0.7353569 0.9429048 0.4317928 +0.7555758 0.9429048 0.4317928 +0.7751122 0.9429048 0.4317928 +0.7940252 0.9429048 0.4317928 +0.8123661 0.9429048 0.4317928 +0.8301795 0.9429048 0.4317928 +0.8475045 0.9429048 0.4317928 +0.8643761 0.9429048 0.4317928 +0.880825 0.9429048 0.4317928 +0.8968787 0.9429048 0.4317928 +0.9125621 0.9429048 0.4317928 +0.9278974 0.9429048 0.4317928 +0.9429048 0.9429048 0.4317928 +0.9576028 0.9429048 0.4317928 +0.9720079 0.9429048 0.4317928 +0.9861357 0.9429048 0.4317928 +1 0.9429048 0.4317928 +0 0.9576028 0.4317928 +0.1939468 0.9576028 0.4317928 +0.2773041 0.9576028 0.4317928 +0.3384659 0.9576028 0.4317928 +0.3885728 0.9576028 0.4317928 +0.4317928 0.9576028 0.4317928 +0.470214 0.9576028 0.4317928 +0.5050551 0.9576028 0.4317928 +0.5370987 0.9576028 0.4317928 +0.5668815 0.9576028 0.4317928 +0.5947903 0.9576028 0.4317928 +0.6211144 0.9576028 0.4317928 +0.6460766 0.9576028 0.4317928 +0.6698526 0.9576028 0.4317928 +0.6925839 0.9576028 0.4317928 +0.7143866 0.9576028 0.4317928 +0.7353569 0.9576028 0.4317928 +0.7555758 0.9576028 0.4317928 +0.7751122 0.9576028 0.4317928 +0.7940252 0.9576028 0.4317928 +0.8123661 0.9576028 0.4317928 +0.8301795 0.9576028 0.4317928 +0.8475045 0.9576028 0.4317928 +0.8643761 0.9576028 0.4317928 +0.880825 0.9576028 0.4317928 +0.8968787 0.9576028 0.4317928 +0.9125621 0.9576028 0.4317928 +0.9278974 0.9576028 0.4317928 +0.9429048 0.9576028 0.4317928 +0.9576028 0.9576028 0.4317928 +0.9720079 0.9576028 0.4317928 +0.9861357 0.9576028 0.4317928 +1 0.9576028 0.4317928 +0 0.9720079 0.4317928 +0.1939468 0.9720079 0.4317928 +0.2773041 0.9720079 0.4317928 +0.3384659 0.9720079 0.4317928 +0.3885728 0.9720079 0.4317928 +0.4317928 0.9720079 0.4317928 +0.470214 0.9720079 0.4317928 +0.5050551 0.9720079 0.4317928 +0.5370987 0.9720079 0.4317928 +0.5668815 0.9720079 0.4317928 +0.5947903 0.9720079 0.4317928 +0.6211144 0.9720079 0.4317928 +0.6460766 0.9720079 0.4317928 +0.6698526 0.9720079 0.4317928 +0.6925839 0.9720079 0.4317928 +0.7143866 0.9720079 0.4317928 +0.7353569 0.9720079 0.4317928 +0.7555758 0.9720079 0.4317928 +0.7751122 0.9720079 0.4317928 +0.7940252 0.9720079 0.4317928 +0.8123661 0.9720079 0.4317928 +0.8301795 0.9720079 0.4317928 +0.8475045 0.9720079 0.4317928 +0.8643761 0.9720079 0.4317928 +0.880825 0.9720079 0.4317928 +0.8968787 0.9720079 0.4317928 +0.9125621 0.9720079 0.4317928 +0.9278974 0.9720079 0.4317928 +0.9429048 0.9720079 0.4317928 +0.9576028 0.9720079 0.4317928 +0.9720079 0.9720079 0.4317928 +0.9861357 0.9720079 0.4317928 +1 0.9720079 0.4317928 +0 0.9861357 0.4317928 +0.1939468 0.9861357 0.4317928 +0.2773041 0.9861357 0.4317928 +0.3384659 0.9861357 0.4317928 +0.3885728 0.9861357 0.4317928 +0.4317928 0.9861357 0.4317928 +0.470214 0.9861357 0.4317928 +0.5050551 0.9861357 0.4317928 +0.5370987 0.9861357 0.4317928 +0.5668815 0.9861357 0.4317928 +0.5947903 0.9861357 0.4317928 +0.6211144 0.9861357 0.4317928 +0.6460766 0.9861357 0.4317928 +0.6698526 0.9861357 0.4317928 +0.6925839 0.9861357 0.4317928 +0.7143866 0.9861357 0.4317928 +0.7353569 0.9861357 0.4317928 +0.7555758 0.9861357 0.4317928 +0.7751122 0.9861357 0.4317928 +0.7940252 0.9861357 0.4317928 +0.8123661 0.9861357 0.4317928 +0.8301795 0.9861357 0.4317928 +0.8475045 0.9861357 0.4317928 +0.8643761 0.9861357 0.4317928 +0.880825 0.9861357 0.4317928 +0.8968787 0.9861357 0.4317928 +0.9125621 0.9861357 0.4317928 +0.9278974 0.9861357 0.4317928 +0.9429048 0.9861357 0.4317928 +0.9576028 0.9861357 0.4317928 +0.9720079 0.9861357 0.4317928 +0.9861357 0.9861357 0.4317928 +1 0.9861357 0.4317928 +0 1 0.4317928 +0.1939468 1 0.4317928 +0.2773041 1 0.4317928 +0.3384659 1 0.4317928 +0.3885728 1 0.4317928 +0.4317928 1 0.4317928 +0.470214 1 0.4317928 +0.5050551 1 0.4317928 +0.5370987 1 0.4317928 +0.5668815 1 0.4317928 +0.5947903 1 0.4317928 +0.6211144 1 0.4317928 +0.6460766 1 0.4317928 +0.6698526 1 0.4317928 +0.6925839 1 0.4317928 +0.7143866 1 0.4317928 +0.7353569 1 0.4317928 +0.7555758 1 0.4317928 +0.7751122 1 0.4317928 +0.7940252 1 0.4317928 +0.8123661 1 0.4317928 +0.8301795 1 0.4317928 +0.8475045 1 0.4317928 +0.8643761 1 0.4317928 +0.880825 1 0.4317928 +0.8968787 1 0.4317928 +0.9125621 1 0.4317928 +0.9278974 1 0.4317928 +0.9429048 1 0.4317928 +0.9576028 1 0.4317928 +0.9720079 1 0.4317928 +0.9861357 1 0.4317928 +1 1 0.4317928 +0 0 0.470214 +0.1939468 0 0.470214 +0.2773041 0 0.470214 +0.3384659 0 0.470214 +0.3885728 0 0.470214 +0.4317928 0 0.470214 +0.470214 0 0.470214 +0.5050551 0 0.470214 +0.5370987 0 0.470214 +0.5668815 0 0.470214 +0.5947903 0 0.470214 +0.6211144 0 0.470214 +0.6460766 0 0.470214 +0.6698526 0 0.470214 +0.6925839 0 0.470214 +0.7143866 0 0.470214 +0.7353569 0 0.470214 +0.7555758 0 0.470214 +0.7751122 0 0.470214 +0.7940252 0 0.470214 +0.8123661 0 0.470214 +0.8301795 0 0.470214 +0.8475045 0 0.470214 +0.8643761 0 0.470214 +0.880825 0 0.470214 +0.8968787 0 0.470214 +0.9125621 0 0.470214 +0.9278974 0 0.470214 +0.9429048 0 0.470214 +0.9576028 0 0.470214 +0.9720079 0 0.470214 +0.9861357 0 0.470214 +1 0 0.470214 +0 0.1939468 0.470214 +0.1939468 0.1939468 0.470214 +0.2773041 0.1939468 0.470214 +0.3384659 0.1939468 0.470214 +0.3885728 0.1939468 0.470214 +0.4317928 0.1939468 0.470214 +0.470214 0.1939468 0.470214 +0.5050551 0.1939468 0.470214 +0.5370987 0.1939468 0.470214 +0.5668815 0.1939468 0.470214 +0.5947903 0.1939468 0.470214 +0.6211144 0.1939468 0.470214 +0.6460766 0.1939468 0.470214 +0.6698526 0.1939468 0.470214 +0.6925839 0.1939468 0.470214 +0.7143866 0.1939468 0.470214 +0.7353569 0.1939468 0.470214 +0.7555758 0.1939468 0.470214 +0.7751122 0.1939468 0.470214 +0.7940252 0.1939468 0.470214 +0.8123661 0.1939468 0.470214 +0.8301795 0.1939468 0.470214 +0.8475045 0.1939468 0.470214 +0.8643761 0.1939468 0.470214 +0.880825 0.1939468 0.470214 +0.8968787 0.1939468 0.470214 +0.9125621 0.1939468 0.470214 +0.9278974 0.1939468 0.470214 +0.9429048 0.1939468 0.470214 +0.9576028 0.1939468 0.470214 +0.9720079 0.1939468 0.470214 +0.9861357 0.1939468 0.470214 +1 0.1939468 0.470214 +0 0.2773041 0.470214 +0.1939468 0.2773041 0.470214 +0.2773041 0.2773041 0.470214 +0.3384659 0.2773041 0.470214 +0.3885728 0.2773041 0.470214 +0.4317928 0.2773041 0.470214 +0.470214 0.2773041 0.470214 +0.5050551 0.2773041 0.470214 +0.5370987 0.2773041 0.470214 +0.5668815 0.2773041 0.470214 +0.5947903 0.2773041 0.470214 +0.6211144 0.2773041 0.470214 +0.6460766 0.2773041 0.470214 +0.6698526 0.2773041 0.470214 +0.6925839 0.2773041 0.470214 +0.7143866 0.2773041 0.470214 +0.7353569 0.2773041 0.470214 +0.7555758 0.2773041 0.470214 +0.7751122 0.2773041 0.470214 +0.7940252 0.2773041 0.470214 +0.8123661 0.2773041 0.470214 +0.8301795 0.2773041 0.470214 +0.8475045 0.2773041 0.470214 +0.8643761 0.2773041 0.470214 +0.880825 0.2773041 0.470214 +0.8968787 0.2773041 0.470214 +0.9125621 0.2773041 0.470214 +0.9278974 0.2773041 0.470214 +0.9429048 0.2773041 0.470214 +0.9576028 0.2773041 0.470214 +0.9720079 0.2773041 0.470214 +0.9861357 0.2773041 0.470214 +1 0.2773041 0.470214 +0 0.3384659 0.470214 +0.1939468 0.3384659 0.470214 +0.2773041 0.3384659 0.470214 +0.3384659 0.3384659 0.470214 +0.3885728 0.3384659 0.470214 +0.4317928 0.3384659 0.470214 +0.470214 0.3384659 0.470214 +0.5050551 0.3384659 0.470214 +0.5370987 0.3384659 0.470214 +0.5668815 0.3384659 0.470214 +0.5947903 0.3384659 0.470214 +0.6211144 0.3384659 0.470214 +0.6460766 0.3384659 0.470214 +0.6698526 0.3384659 0.470214 +0.6925839 0.3384659 0.470214 +0.7143866 0.3384659 0.470214 +0.7353569 0.3384659 0.470214 +0.7555758 0.3384659 0.470214 +0.7751122 0.3384659 0.470214 +0.7940252 0.3384659 0.470214 +0.8123661 0.3384659 0.470214 +0.8301795 0.3384659 0.470214 +0.8475045 0.3384659 0.470214 +0.8643761 0.3384659 0.470214 +0.880825 0.3384659 0.470214 +0.8968787 0.3384659 0.470214 +0.9125621 0.3384659 0.470214 +0.9278974 0.3384659 0.470214 +0.9429048 0.3384659 0.470214 +0.9576028 0.3384659 0.470214 +0.9720079 0.3384659 0.470214 +0.9861357 0.3384659 0.470214 +1 0.3384659 0.470214 +0 0.3885728 0.470214 +0.1939468 0.3885728 0.470214 +0.2773041 0.3885728 0.470214 +0.3384659 0.3885728 0.470214 +0.3885728 0.3885728 0.470214 +0.4317928 0.3885728 0.470214 +0.470214 0.3885728 0.470214 +0.5050551 0.3885728 0.470214 +0.5370987 0.3885728 0.470214 +0.5668815 0.3885728 0.470214 +0.5947903 0.3885728 0.470214 +0.6211144 0.3885728 0.470214 +0.6460766 0.3885728 0.470214 +0.6698526 0.3885728 0.470214 +0.6925839 0.3885728 0.470214 +0.7143866 0.3885728 0.470214 +0.7353569 0.3885728 0.470214 +0.7555758 0.3885728 0.470214 +0.7751122 0.3885728 0.470214 +0.7940252 0.3885728 0.470214 +0.8123661 0.3885728 0.470214 +0.8301795 0.3885728 0.470214 +0.8475045 0.3885728 0.470214 +0.8643761 0.3885728 0.470214 +0.880825 0.3885728 0.470214 +0.8968787 0.3885728 0.470214 +0.9125621 0.3885728 0.470214 +0.9278974 0.3885728 0.470214 +0.9429048 0.3885728 0.470214 +0.9576028 0.3885728 0.470214 +0.9720079 0.3885728 0.470214 +0.9861357 0.3885728 0.470214 +1 0.3885728 0.470214 +0 0.4317928 0.470214 +0.1939468 0.4317928 0.470214 +0.2773041 0.4317928 0.470214 +0.3384659 0.4317928 0.470214 +0.3885728 0.4317928 0.470214 +0.4317928 0.4317928 0.470214 +0.470214 0.4317928 0.470214 +0.5050551 0.4317928 0.470214 +0.5370987 0.4317928 0.470214 +0.5668815 0.4317928 0.470214 +0.5947903 0.4317928 0.470214 +0.6211144 0.4317928 0.470214 +0.6460766 0.4317928 0.470214 +0.6698526 0.4317928 0.470214 +0.6925839 0.4317928 0.470214 +0.7143866 0.4317928 0.470214 +0.7353569 0.4317928 0.470214 +0.7555758 0.4317928 0.470214 +0.7751122 0.4317928 0.470214 +0.7940252 0.4317928 0.470214 +0.8123661 0.4317928 0.470214 +0.8301795 0.4317928 0.470214 +0.8475045 0.4317928 0.470214 +0.8643761 0.4317928 0.470214 +0.880825 0.4317928 0.470214 +0.8968787 0.4317928 0.470214 +0.9125621 0.4317928 0.470214 +0.9278974 0.4317928 0.470214 +0.9429048 0.4317928 0.470214 +0.9576028 0.4317928 0.470214 +0.9720079 0.4317928 0.470214 +0.9861357 0.4317928 0.470214 +1 0.4317928 0.470214 +0 0.470214 0.470214 +0.1939468 0.470214 0.470214 +0.2773041 0.470214 0.470214 +0.3384659 0.470214 0.470214 +0.3885728 0.470214 0.470214 +0.4317928 0.470214 0.470214 +0.470214 0.470214 0.470214 +0.5050551 0.470214 0.470214 +0.5370987 0.470214 0.470214 +0.5668815 0.470214 0.470214 +0.5947903 0.470214 0.470214 +0.6211144 0.470214 0.470214 +0.6460766 0.470214 0.470214 +0.6698526 0.470214 0.470214 +0.6925839 0.470214 0.470214 +0.7143866 0.470214 0.470214 +0.7353569 0.470214 0.470214 +0.7555758 0.470214 0.470214 +0.7751122 0.470214 0.470214 +0.7940252 0.470214 0.470214 +0.8123661 0.470214 0.470214 +0.8301795 0.470214 0.470214 +0.8475045 0.470214 0.470214 +0.8643761 0.470214 0.470214 +0.880825 0.470214 0.470214 +0.8968787 0.470214 0.470214 +0.9125621 0.470214 0.470214 +0.9278974 0.470214 0.470214 +0.9429048 0.470214 0.470214 +0.9576028 0.470214 0.470214 +0.9720079 0.470214 0.470214 +0.9861357 0.470214 0.470214 +1 0.470214 0.470214 +0 0.5050551 0.470214 +0.1939468 0.5050551 0.470214 +0.2773041 0.5050551 0.470214 +0.3384659 0.5050551 0.470214 +0.3885728 0.5050551 0.470214 +0.4317928 0.5050551 0.470214 +0.470214 0.5050551 0.470214 +0.5050551 0.5050551 0.470214 +0.5370987 0.5050551 0.470214 +0.5668815 0.5050551 0.470214 +0.5947903 0.5050551 0.470214 +0.6211144 0.5050551 0.470214 +0.6460766 0.5050551 0.470214 +0.6698526 0.5050551 0.470214 +0.6925839 0.5050551 0.470214 +0.7143866 0.5050551 0.470214 +0.7353569 0.5050551 0.470214 +0.7555758 0.5050551 0.470214 +0.7751122 0.5050551 0.470214 +0.7940252 0.5050551 0.470214 +0.8123661 0.5050551 0.470214 +0.8301795 0.5050551 0.470214 +0.8475045 0.5050551 0.470214 +0.8643761 0.5050551 0.470214 +0.880825 0.5050551 0.470214 +0.8968787 0.5050551 0.470214 +0.9125621 0.5050551 0.470214 +0.9278974 0.5050551 0.470214 +0.9429048 0.5050551 0.470214 +0.9576028 0.5050551 0.470214 +0.9720079 0.5050551 0.470214 +0.9861357 0.5050551 0.470214 +1 0.5050551 0.470214 +0 0.5370987 0.470214 +0.1939468 0.5370987 0.470214 +0.2773041 0.5370987 0.470214 +0.3384659 0.5370987 0.470214 +0.3885728 0.5370987 0.470214 +0.4317928 0.5370987 0.470214 +0.470214 0.5370987 0.470214 +0.5050551 0.5370987 0.470214 +0.5370987 0.5370987 0.470214 +0.5668815 0.5370987 0.470214 +0.5947903 0.5370987 0.470214 +0.6211144 0.5370987 0.470214 +0.6460766 0.5370987 0.470214 +0.6698526 0.5370987 0.470214 +0.6925839 0.5370987 0.470214 +0.7143866 0.5370987 0.470214 +0.7353569 0.5370987 0.470214 +0.7555758 0.5370987 0.470214 +0.7751122 0.5370987 0.470214 +0.7940252 0.5370987 0.470214 +0.8123661 0.5370987 0.470214 +0.8301795 0.5370987 0.470214 +0.8475045 0.5370987 0.470214 +0.8643761 0.5370987 0.470214 +0.880825 0.5370987 0.470214 +0.8968787 0.5370987 0.470214 +0.9125621 0.5370987 0.470214 +0.9278974 0.5370987 0.470214 +0.9429048 0.5370987 0.470214 +0.9576028 0.5370987 0.470214 +0.9720079 0.5370987 0.470214 +0.9861357 0.5370987 0.470214 +1 0.5370987 0.470214 +0 0.5668815 0.470214 +0.1939468 0.5668815 0.470214 +0.2773041 0.5668815 0.470214 +0.3384659 0.5668815 0.470214 +0.3885728 0.5668815 0.470214 +0.4317928 0.5668815 0.470214 +0.470214 0.5668815 0.470214 +0.5050551 0.5668815 0.470214 +0.5370987 0.5668815 0.470214 +0.5668815 0.5668815 0.470214 +0.5947903 0.5668815 0.470214 +0.6211144 0.5668815 0.470214 +0.6460766 0.5668815 0.470214 +0.6698526 0.5668815 0.470214 +0.6925839 0.5668815 0.470214 +0.7143866 0.5668815 0.470214 +0.7353569 0.5668815 0.470214 +0.7555758 0.5668815 0.470214 +0.7751122 0.5668815 0.470214 +0.7940252 0.5668815 0.470214 +0.8123661 0.5668815 0.470214 +0.8301795 0.5668815 0.470214 +0.8475045 0.5668815 0.470214 +0.8643761 0.5668815 0.470214 +0.880825 0.5668815 0.470214 +0.8968787 0.5668815 0.470214 +0.9125621 0.5668815 0.470214 +0.9278974 0.5668815 0.470214 +0.9429048 0.5668815 0.470214 +0.9576028 0.5668815 0.470214 +0.9720079 0.5668815 0.470214 +0.9861357 0.5668815 0.470214 +1 0.5668815 0.470214 +0 0.5947903 0.470214 +0.1939468 0.5947903 0.470214 +0.2773041 0.5947903 0.470214 +0.3384659 0.5947903 0.470214 +0.3885728 0.5947903 0.470214 +0.4317928 0.5947903 0.470214 +0.470214 0.5947903 0.470214 +0.5050551 0.5947903 0.470214 +0.5370987 0.5947903 0.470214 +0.5668815 0.5947903 0.470214 +0.5947903 0.5947903 0.470214 +0.6211144 0.5947903 0.470214 +0.6460766 0.5947903 0.470214 +0.6698526 0.5947903 0.470214 +0.6925839 0.5947903 0.470214 +0.7143866 0.5947903 0.470214 +0.7353569 0.5947903 0.470214 +0.7555758 0.5947903 0.470214 +0.7751122 0.5947903 0.470214 +0.7940252 0.5947903 0.470214 +0.8123661 0.5947903 0.470214 +0.8301795 0.5947903 0.470214 +0.8475045 0.5947903 0.470214 +0.8643761 0.5947903 0.470214 +0.880825 0.5947903 0.470214 +0.8968787 0.5947903 0.470214 +0.9125621 0.5947903 0.470214 +0.9278974 0.5947903 0.470214 +0.9429048 0.5947903 0.470214 +0.9576028 0.5947903 0.470214 +0.9720079 0.5947903 0.470214 +0.9861357 0.5947903 0.470214 +1 0.5947903 0.470214 +0 0.6211144 0.470214 +0.1939468 0.6211144 0.470214 +0.2773041 0.6211144 0.470214 +0.3384659 0.6211144 0.470214 +0.3885728 0.6211144 0.470214 +0.4317928 0.6211144 0.470214 +0.470214 0.6211144 0.470214 +0.5050551 0.6211144 0.470214 +0.5370987 0.6211144 0.470214 +0.5668815 0.6211144 0.470214 +0.5947903 0.6211144 0.470214 +0.6211144 0.6211144 0.470214 +0.6460766 0.6211144 0.470214 +0.6698526 0.6211144 0.470214 +0.6925839 0.6211144 0.470214 +0.7143866 0.6211144 0.470214 +0.7353569 0.6211144 0.470214 +0.7555758 0.6211144 0.470214 +0.7751122 0.6211144 0.470214 +0.7940252 0.6211144 0.470214 +0.8123661 0.6211144 0.470214 +0.8301795 0.6211144 0.470214 +0.8475045 0.6211144 0.470214 +0.8643761 0.6211144 0.470214 +0.880825 0.6211144 0.470214 +0.8968787 0.6211144 0.470214 +0.9125621 0.6211144 0.470214 +0.9278974 0.6211144 0.470214 +0.9429048 0.6211144 0.470214 +0.9576028 0.6211144 0.470214 +0.9720079 0.6211144 0.470214 +0.9861357 0.6211144 0.470214 +1 0.6211144 0.470214 +0 0.6460766 0.470214 +0.1939468 0.6460766 0.470214 +0.2773041 0.6460766 0.470214 +0.3384659 0.6460766 0.470214 +0.3885728 0.6460766 0.470214 +0.4317928 0.6460766 0.470214 +0.470214 0.6460766 0.470214 +0.5050551 0.6460766 0.470214 +0.5370987 0.6460766 0.470214 +0.5668815 0.6460766 0.470214 +0.5947903 0.6460766 0.470214 +0.6211144 0.6460766 0.470214 +0.6460766 0.6460766 0.470214 +0.6698526 0.6460766 0.470214 +0.6925839 0.6460766 0.470214 +0.7143866 0.6460766 0.470214 +0.7353569 0.6460766 0.470214 +0.7555758 0.6460766 0.470214 +0.7751122 0.6460766 0.470214 +0.7940252 0.6460766 0.470214 +0.8123661 0.6460766 0.470214 +0.8301795 0.6460766 0.470214 +0.8475045 0.6460766 0.470214 +0.8643761 0.6460766 0.470214 +0.880825 0.6460766 0.470214 +0.8968787 0.6460766 0.470214 +0.9125621 0.6460766 0.470214 +0.9278974 0.6460766 0.470214 +0.9429048 0.6460766 0.470214 +0.9576028 0.6460766 0.470214 +0.9720079 0.6460766 0.470214 +0.9861357 0.6460766 0.470214 +1 0.6460766 0.470214 +0 0.6698526 0.470214 +0.1939468 0.6698526 0.470214 +0.2773041 0.6698526 0.470214 +0.3384659 0.6698526 0.470214 +0.3885728 0.6698526 0.470214 +0.4317928 0.6698526 0.470214 +0.470214 0.6698526 0.470214 +0.5050551 0.6698526 0.470214 +0.5370987 0.6698526 0.470214 +0.5668815 0.6698526 0.470214 +0.5947903 0.6698526 0.470214 +0.6211144 0.6698526 0.470214 +0.6460766 0.6698526 0.470214 +0.6698526 0.6698526 0.470214 +0.6925839 0.6698526 0.470214 +0.7143866 0.6698526 0.470214 +0.7353569 0.6698526 0.470214 +0.7555758 0.6698526 0.470214 +0.7751122 0.6698526 0.470214 +0.7940252 0.6698526 0.470214 +0.8123661 0.6698526 0.470214 +0.8301795 0.6698526 0.470214 +0.8475045 0.6698526 0.470214 +0.8643761 0.6698526 0.470214 +0.880825 0.6698526 0.470214 +0.8968787 0.6698526 0.470214 +0.9125621 0.6698526 0.470214 +0.9278974 0.6698526 0.470214 +0.9429048 0.6698526 0.470214 +0.9576028 0.6698526 0.470214 +0.9720079 0.6698526 0.470214 +0.9861357 0.6698526 0.470214 +1 0.6698526 0.470214 +0 0.6925839 0.470214 +0.1939468 0.6925839 0.470214 +0.2773041 0.6925839 0.470214 +0.3384659 0.6925839 0.470214 +0.3885728 0.6925839 0.470214 +0.4317928 0.6925839 0.470214 +0.470214 0.6925839 0.470214 +0.5050551 0.6925839 0.470214 +0.5370987 0.6925839 0.470214 +0.5668815 0.6925839 0.470214 +0.5947903 0.6925839 0.470214 +0.6211144 0.6925839 0.470214 +0.6460766 0.6925839 0.470214 +0.6698526 0.6925839 0.470214 +0.6925839 0.6925839 0.470214 +0.7143866 0.6925839 0.470214 +0.7353569 0.6925839 0.470214 +0.7555758 0.6925839 0.470214 +0.7751122 0.6925839 0.470214 +0.7940252 0.6925839 0.470214 +0.8123661 0.6925839 0.470214 +0.8301795 0.6925839 0.470214 +0.8475045 0.6925839 0.470214 +0.8643761 0.6925839 0.470214 +0.880825 0.6925839 0.470214 +0.8968787 0.6925839 0.470214 +0.9125621 0.6925839 0.470214 +0.9278974 0.6925839 0.470214 +0.9429048 0.6925839 0.470214 +0.9576028 0.6925839 0.470214 +0.9720079 0.6925839 0.470214 +0.9861357 0.6925839 0.470214 +1 0.6925839 0.470214 +0 0.7143866 0.470214 +0.1939468 0.7143866 0.470214 +0.2773041 0.7143866 0.470214 +0.3384659 0.7143866 0.470214 +0.3885728 0.7143866 0.470214 +0.4317928 0.7143866 0.470214 +0.470214 0.7143866 0.470214 +0.5050551 0.7143866 0.470214 +0.5370987 0.7143866 0.470214 +0.5668815 0.7143866 0.470214 +0.5947903 0.7143866 0.470214 +0.6211144 0.7143866 0.470214 +0.6460766 0.7143866 0.470214 +0.6698526 0.7143866 0.470214 +0.6925839 0.7143866 0.470214 +0.7143866 0.7143866 0.470214 +0.7353569 0.7143866 0.470214 +0.7555758 0.7143866 0.470214 +0.7751122 0.7143866 0.470214 +0.7940252 0.7143866 0.470214 +0.8123661 0.7143866 0.470214 +0.8301795 0.7143866 0.470214 +0.8475045 0.7143866 0.470214 +0.8643761 0.7143866 0.470214 +0.880825 0.7143866 0.470214 +0.8968787 0.7143866 0.470214 +0.9125621 0.7143866 0.470214 +0.9278974 0.7143866 0.470214 +0.9429048 0.7143866 0.470214 +0.9576028 0.7143866 0.470214 +0.9720079 0.7143866 0.470214 +0.9861357 0.7143866 0.470214 +1 0.7143866 0.470214 +0 0.7353569 0.470214 +0.1939468 0.7353569 0.470214 +0.2773041 0.7353569 0.470214 +0.3384659 0.7353569 0.470214 +0.3885728 0.7353569 0.470214 +0.4317928 0.7353569 0.470214 +0.470214 0.7353569 0.470214 +0.5050551 0.7353569 0.470214 +0.5370987 0.7353569 0.470214 +0.5668815 0.7353569 0.470214 +0.5947903 0.7353569 0.470214 +0.6211144 0.7353569 0.470214 +0.6460766 0.7353569 0.470214 +0.6698526 0.7353569 0.470214 +0.6925839 0.7353569 0.470214 +0.7143866 0.7353569 0.470214 +0.7353569 0.7353569 0.470214 +0.7555758 0.7353569 0.470214 +0.7751122 0.7353569 0.470214 +0.7940252 0.7353569 0.470214 +0.8123661 0.7353569 0.470214 +0.8301795 0.7353569 0.470214 +0.8475045 0.7353569 0.470214 +0.8643761 0.7353569 0.470214 +0.880825 0.7353569 0.470214 +0.8968787 0.7353569 0.470214 +0.9125621 0.7353569 0.470214 +0.9278974 0.7353569 0.470214 +0.9429048 0.7353569 0.470214 +0.9576028 0.7353569 0.470214 +0.9720079 0.7353569 0.470214 +0.9861357 0.7353569 0.470214 +1 0.7353569 0.470214 +0 0.7555758 0.470214 +0.1939468 0.7555758 0.470214 +0.2773041 0.7555758 0.470214 +0.3384659 0.7555758 0.470214 +0.3885728 0.7555758 0.470214 +0.4317928 0.7555758 0.470214 +0.470214 0.7555758 0.470214 +0.5050551 0.7555758 0.470214 +0.5370987 0.7555758 0.470214 +0.5668815 0.7555758 0.470214 +0.5947903 0.7555758 0.470214 +0.6211144 0.7555758 0.470214 +0.6460766 0.7555758 0.470214 +0.6698526 0.7555758 0.470214 +0.6925839 0.7555758 0.470214 +0.7143866 0.7555758 0.470214 +0.7353569 0.7555758 0.470214 +0.7555758 0.7555758 0.470214 +0.7751122 0.7555758 0.470214 +0.7940252 0.7555758 0.470214 +0.8123661 0.7555758 0.470214 +0.8301795 0.7555758 0.470214 +0.8475045 0.7555758 0.470214 +0.8643761 0.7555758 0.470214 +0.880825 0.7555758 0.470214 +0.8968787 0.7555758 0.470214 +0.9125621 0.7555758 0.470214 +0.9278974 0.7555758 0.470214 +0.9429048 0.7555758 0.470214 +0.9576028 0.7555758 0.470214 +0.9720079 0.7555758 0.470214 +0.9861357 0.7555758 0.470214 +1 0.7555758 0.470214 +0 0.7751122 0.470214 +0.1939468 0.7751122 0.470214 +0.2773041 0.7751122 0.470214 +0.3384659 0.7751122 0.470214 +0.3885728 0.7751122 0.470214 +0.4317928 0.7751122 0.470214 +0.470214 0.7751122 0.470214 +0.5050551 0.7751122 0.470214 +0.5370987 0.7751122 0.470214 +0.5668815 0.7751122 0.470214 +0.5947903 0.7751122 0.470214 +0.6211144 0.7751122 0.470214 +0.6460766 0.7751122 0.470214 +0.6698526 0.7751122 0.470214 +0.6925839 0.7751122 0.470214 +0.7143866 0.7751122 0.470214 +0.7353569 0.7751122 0.470214 +0.7555758 0.7751122 0.470214 +0.7751122 0.7751122 0.470214 +0.7940252 0.7751122 0.470214 +0.8123661 0.7751122 0.470214 +0.8301795 0.7751122 0.470214 +0.8475045 0.7751122 0.470214 +0.8643761 0.7751122 0.470214 +0.880825 0.7751122 0.470214 +0.8968787 0.7751122 0.470214 +0.9125621 0.7751122 0.470214 +0.9278974 0.7751122 0.470214 +0.9429048 0.7751122 0.470214 +0.9576028 0.7751122 0.470214 +0.9720079 0.7751122 0.470214 +0.9861357 0.7751122 0.470214 +1 0.7751122 0.470214 +0 0.7940252 0.470214 +0.1939468 0.7940252 0.470214 +0.2773041 0.7940252 0.470214 +0.3384659 0.7940252 0.470214 +0.3885728 0.7940252 0.470214 +0.4317928 0.7940252 0.470214 +0.470214 0.7940252 0.470214 +0.5050551 0.7940252 0.470214 +0.5370987 0.7940252 0.470214 +0.5668815 0.7940252 0.470214 +0.5947903 0.7940252 0.470214 +0.6211144 0.7940252 0.470214 +0.6460766 0.7940252 0.470214 +0.6698526 0.7940252 0.470214 +0.6925839 0.7940252 0.470214 +0.7143866 0.7940252 0.470214 +0.7353569 0.7940252 0.470214 +0.7555758 0.7940252 0.470214 +0.7751122 0.7940252 0.470214 +0.7940252 0.7940252 0.470214 +0.8123661 0.7940252 0.470214 +0.8301795 0.7940252 0.470214 +0.8475045 0.7940252 0.470214 +0.8643761 0.7940252 0.470214 +0.880825 0.7940252 0.470214 +0.8968787 0.7940252 0.470214 +0.9125621 0.7940252 0.470214 +0.9278974 0.7940252 0.470214 +0.9429048 0.7940252 0.470214 +0.9576028 0.7940252 0.470214 +0.9720079 0.7940252 0.470214 +0.9861357 0.7940252 0.470214 +1 0.7940252 0.470214 +0 0.8123661 0.470214 +0.1939468 0.8123661 0.470214 +0.2773041 0.8123661 0.470214 +0.3384659 0.8123661 0.470214 +0.3885728 0.8123661 0.470214 +0.4317928 0.8123661 0.470214 +0.470214 0.8123661 0.470214 +0.5050551 0.8123661 0.470214 +0.5370987 0.8123661 0.470214 +0.5668815 0.8123661 0.470214 +0.5947903 0.8123661 0.470214 +0.6211144 0.8123661 0.470214 +0.6460766 0.8123661 0.470214 +0.6698526 0.8123661 0.470214 +0.6925839 0.8123661 0.470214 +0.7143866 0.8123661 0.470214 +0.7353569 0.8123661 0.470214 +0.7555758 0.8123661 0.470214 +0.7751122 0.8123661 0.470214 +0.7940252 0.8123661 0.470214 +0.8123661 0.8123661 0.470214 +0.8301795 0.8123661 0.470214 +0.8475045 0.8123661 0.470214 +0.8643761 0.8123661 0.470214 +0.880825 0.8123661 0.470214 +0.8968787 0.8123661 0.470214 +0.9125621 0.8123661 0.470214 +0.9278974 0.8123661 0.470214 +0.9429048 0.8123661 0.470214 +0.9576028 0.8123661 0.470214 +0.9720079 0.8123661 0.470214 +0.9861357 0.8123661 0.470214 +1 0.8123661 0.470214 +0 0.8301795 0.470214 +0.1939468 0.8301795 0.470214 +0.2773041 0.8301795 0.470214 +0.3384659 0.8301795 0.470214 +0.3885728 0.8301795 0.470214 +0.4317928 0.8301795 0.470214 +0.470214 0.8301795 0.470214 +0.5050551 0.8301795 0.470214 +0.5370987 0.8301795 0.470214 +0.5668815 0.8301795 0.470214 +0.5947903 0.8301795 0.470214 +0.6211144 0.8301795 0.470214 +0.6460766 0.8301795 0.470214 +0.6698526 0.8301795 0.470214 +0.6925839 0.8301795 0.470214 +0.7143866 0.8301795 0.470214 +0.7353569 0.8301795 0.470214 +0.7555758 0.8301795 0.470214 +0.7751122 0.8301795 0.470214 +0.7940252 0.8301795 0.470214 +0.8123661 0.8301795 0.470214 +0.8301795 0.8301795 0.470214 +0.8475045 0.8301795 0.470214 +0.8643761 0.8301795 0.470214 +0.880825 0.8301795 0.470214 +0.8968787 0.8301795 0.470214 +0.9125621 0.8301795 0.470214 +0.9278974 0.8301795 0.470214 +0.9429048 0.8301795 0.470214 +0.9576028 0.8301795 0.470214 +0.9720079 0.8301795 0.470214 +0.9861357 0.8301795 0.470214 +1 0.8301795 0.470214 +0 0.8475045 0.470214 +0.1939468 0.8475045 0.470214 +0.2773041 0.8475045 0.470214 +0.3384659 0.8475045 0.470214 +0.3885728 0.8475045 0.470214 +0.4317928 0.8475045 0.470214 +0.470214 0.8475045 0.470214 +0.5050551 0.8475045 0.470214 +0.5370987 0.8475045 0.470214 +0.5668815 0.8475045 0.470214 +0.5947903 0.8475045 0.470214 +0.6211144 0.8475045 0.470214 +0.6460766 0.8475045 0.470214 +0.6698526 0.8475045 0.470214 +0.6925839 0.8475045 0.470214 +0.7143866 0.8475045 0.470214 +0.7353569 0.8475045 0.470214 +0.7555758 0.8475045 0.470214 +0.7751122 0.8475045 0.470214 +0.7940252 0.8475045 0.470214 +0.8123661 0.8475045 0.470214 +0.8301795 0.8475045 0.470214 +0.8475045 0.8475045 0.470214 +0.8643761 0.8475045 0.470214 +0.880825 0.8475045 0.470214 +0.8968787 0.8475045 0.470214 +0.9125621 0.8475045 0.470214 +0.9278974 0.8475045 0.470214 +0.9429048 0.8475045 0.470214 +0.9576028 0.8475045 0.470214 +0.9720079 0.8475045 0.470214 +0.9861357 0.8475045 0.470214 +1 0.8475045 0.470214 +0 0.8643761 0.470214 +0.1939468 0.8643761 0.470214 +0.2773041 0.8643761 0.470214 +0.3384659 0.8643761 0.470214 +0.3885728 0.8643761 0.470214 +0.4317928 0.8643761 0.470214 +0.470214 0.8643761 0.470214 +0.5050551 0.8643761 0.470214 +0.5370987 0.8643761 0.470214 +0.5668815 0.8643761 0.470214 +0.5947903 0.8643761 0.470214 +0.6211144 0.8643761 0.470214 +0.6460766 0.8643761 0.470214 +0.6698526 0.8643761 0.470214 +0.6925839 0.8643761 0.470214 +0.7143866 0.8643761 0.470214 +0.7353569 0.8643761 0.470214 +0.7555758 0.8643761 0.470214 +0.7751122 0.8643761 0.470214 +0.7940252 0.8643761 0.470214 +0.8123661 0.8643761 0.470214 +0.8301795 0.8643761 0.470214 +0.8475045 0.8643761 0.470214 +0.8643761 0.8643761 0.470214 +0.880825 0.8643761 0.470214 +0.8968787 0.8643761 0.470214 +0.9125621 0.8643761 0.470214 +0.9278974 0.8643761 0.470214 +0.9429048 0.8643761 0.470214 +0.9576028 0.8643761 0.470214 +0.9720079 0.8643761 0.470214 +0.9861357 0.8643761 0.470214 +1 0.8643761 0.470214 +0 0.880825 0.470214 +0.1939468 0.880825 0.470214 +0.2773041 0.880825 0.470214 +0.3384659 0.880825 0.470214 +0.3885728 0.880825 0.470214 +0.4317928 0.880825 0.470214 +0.470214 0.880825 0.470214 +0.5050551 0.880825 0.470214 +0.5370987 0.880825 0.470214 +0.5668815 0.880825 0.470214 +0.5947903 0.880825 0.470214 +0.6211144 0.880825 0.470214 +0.6460766 0.880825 0.470214 +0.6698526 0.880825 0.470214 +0.6925839 0.880825 0.470214 +0.7143866 0.880825 0.470214 +0.7353569 0.880825 0.470214 +0.7555758 0.880825 0.470214 +0.7751122 0.880825 0.470214 +0.7940252 0.880825 0.470214 +0.8123661 0.880825 0.470214 +0.8301795 0.880825 0.470214 +0.8475045 0.880825 0.470214 +0.8643761 0.880825 0.470214 +0.880825 0.880825 0.470214 +0.8968787 0.880825 0.470214 +0.9125621 0.880825 0.470214 +0.9278974 0.880825 0.470214 +0.9429048 0.880825 0.470214 +0.9576028 0.880825 0.470214 +0.9720079 0.880825 0.470214 +0.9861357 0.880825 0.470214 +1 0.880825 0.470214 +0 0.8968787 0.470214 +0.1939468 0.8968787 0.470214 +0.2773041 0.8968787 0.470214 +0.3384659 0.8968787 0.470214 +0.3885728 0.8968787 0.470214 +0.4317928 0.8968787 0.470214 +0.470214 0.8968787 0.470214 +0.5050551 0.8968787 0.470214 +0.5370987 0.8968787 0.470214 +0.5668815 0.8968787 0.470214 +0.5947903 0.8968787 0.470214 +0.6211144 0.8968787 0.470214 +0.6460766 0.8968787 0.470214 +0.6698526 0.8968787 0.470214 +0.6925839 0.8968787 0.470214 +0.7143866 0.8968787 0.470214 +0.7353569 0.8968787 0.470214 +0.7555758 0.8968787 0.470214 +0.7751122 0.8968787 0.470214 +0.7940252 0.8968787 0.470214 +0.8123661 0.8968787 0.470214 +0.8301795 0.8968787 0.470214 +0.8475045 0.8968787 0.470214 +0.8643761 0.8968787 0.470214 +0.880825 0.8968787 0.470214 +0.8968787 0.8968787 0.470214 +0.9125621 0.8968787 0.470214 +0.9278974 0.8968787 0.470214 +0.9429048 0.8968787 0.470214 +0.9576028 0.8968787 0.470214 +0.9720079 0.8968787 0.470214 +0.9861357 0.8968787 0.470214 +1 0.8968787 0.470214 +0 0.9125621 0.470214 +0.1939468 0.9125621 0.470214 +0.2773041 0.9125621 0.470214 +0.3384659 0.9125621 0.470214 +0.3885728 0.9125621 0.470214 +0.4317928 0.9125621 0.470214 +0.470214 0.9125621 0.470214 +0.5050551 0.9125621 0.470214 +0.5370987 0.9125621 0.470214 +0.5668815 0.9125621 0.470214 +0.5947903 0.9125621 0.470214 +0.6211144 0.9125621 0.470214 +0.6460766 0.9125621 0.470214 +0.6698526 0.9125621 0.470214 +0.6925839 0.9125621 0.470214 +0.7143866 0.9125621 0.470214 +0.7353569 0.9125621 0.470214 +0.7555758 0.9125621 0.470214 +0.7751122 0.9125621 0.470214 +0.7940252 0.9125621 0.470214 +0.8123661 0.9125621 0.470214 +0.8301795 0.9125621 0.470214 +0.8475045 0.9125621 0.470214 +0.8643761 0.9125621 0.470214 +0.880825 0.9125621 0.470214 +0.8968787 0.9125621 0.470214 +0.9125621 0.9125621 0.470214 +0.9278974 0.9125621 0.470214 +0.9429048 0.9125621 0.470214 +0.9576028 0.9125621 0.470214 +0.9720079 0.9125621 0.470214 +0.9861357 0.9125621 0.470214 +1 0.9125621 0.470214 +0 0.9278974 0.470214 +0.1939468 0.9278974 0.470214 +0.2773041 0.9278974 0.470214 +0.3384659 0.9278974 0.470214 +0.3885728 0.9278974 0.470214 +0.4317928 0.9278974 0.470214 +0.470214 0.9278974 0.470214 +0.5050551 0.9278974 0.470214 +0.5370987 0.9278974 0.470214 +0.5668815 0.9278974 0.470214 +0.5947903 0.9278974 0.470214 +0.6211144 0.9278974 0.470214 +0.6460766 0.9278974 0.470214 +0.6698526 0.9278974 0.470214 +0.6925839 0.9278974 0.470214 +0.7143866 0.9278974 0.470214 +0.7353569 0.9278974 0.470214 +0.7555758 0.9278974 0.470214 +0.7751122 0.9278974 0.470214 +0.7940252 0.9278974 0.470214 +0.8123661 0.9278974 0.470214 +0.8301795 0.9278974 0.470214 +0.8475045 0.9278974 0.470214 +0.8643761 0.9278974 0.470214 +0.880825 0.9278974 0.470214 +0.8968787 0.9278974 0.470214 +0.9125621 0.9278974 0.470214 +0.9278974 0.9278974 0.470214 +0.9429048 0.9278974 0.470214 +0.9576028 0.9278974 0.470214 +0.9720079 0.9278974 0.470214 +0.9861357 0.9278974 0.470214 +1 0.9278974 0.470214 +0 0.9429048 0.470214 +0.1939468 0.9429048 0.470214 +0.2773041 0.9429048 0.470214 +0.3384659 0.9429048 0.470214 +0.3885728 0.9429048 0.470214 +0.4317928 0.9429048 0.470214 +0.470214 0.9429048 0.470214 +0.5050551 0.9429048 0.470214 +0.5370987 0.9429048 0.470214 +0.5668815 0.9429048 0.470214 +0.5947903 0.9429048 0.470214 +0.6211144 0.9429048 0.470214 +0.6460766 0.9429048 0.470214 +0.6698526 0.9429048 0.470214 +0.6925839 0.9429048 0.470214 +0.7143866 0.9429048 0.470214 +0.7353569 0.9429048 0.470214 +0.7555758 0.9429048 0.470214 +0.7751122 0.9429048 0.470214 +0.7940252 0.9429048 0.470214 +0.8123661 0.9429048 0.470214 +0.8301795 0.9429048 0.470214 +0.8475045 0.9429048 0.470214 +0.8643761 0.9429048 0.470214 +0.880825 0.9429048 0.470214 +0.8968787 0.9429048 0.470214 +0.9125621 0.9429048 0.470214 +0.9278974 0.9429048 0.470214 +0.9429048 0.9429048 0.470214 +0.9576028 0.9429048 0.470214 +0.9720079 0.9429048 0.470214 +0.9861357 0.9429048 0.470214 +1 0.9429048 0.470214 +0 0.9576028 0.470214 +0.1939468 0.9576028 0.470214 +0.2773041 0.9576028 0.470214 +0.3384659 0.9576028 0.470214 +0.3885728 0.9576028 0.470214 +0.4317928 0.9576028 0.470214 +0.470214 0.9576028 0.470214 +0.5050551 0.9576028 0.470214 +0.5370987 0.9576028 0.470214 +0.5668815 0.9576028 0.470214 +0.5947903 0.9576028 0.470214 +0.6211144 0.9576028 0.470214 +0.6460766 0.9576028 0.470214 +0.6698526 0.9576028 0.470214 +0.6925839 0.9576028 0.470214 +0.7143866 0.9576028 0.470214 +0.7353569 0.9576028 0.470214 +0.7555758 0.9576028 0.470214 +0.7751122 0.9576028 0.470214 +0.7940252 0.9576028 0.470214 +0.8123661 0.9576028 0.470214 +0.8301795 0.9576028 0.470214 +0.8475045 0.9576028 0.470214 +0.8643761 0.9576028 0.470214 +0.880825 0.9576028 0.470214 +0.8968787 0.9576028 0.470214 +0.9125621 0.9576028 0.470214 +0.9278974 0.9576028 0.470214 +0.9429048 0.9576028 0.470214 +0.9576028 0.9576028 0.470214 +0.9720079 0.9576028 0.470214 +0.9861357 0.9576028 0.470214 +1 0.9576028 0.470214 +0 0.9720079 0.470214 +0.1939468 0.9720079 0.470214 +0.2773041 0.9720079 0.470214 +0.3384659 0.9720079 0.470214 +0.3885728 0.9720079 0.470214 +0.4317928 0.9720079 0.470214 +0.470214 0.9720079 0.470214 +0.5050551 0.9720079 0.470214 +0.5370987 0.9720079 0.470214 +0.5668815 0.9720079 0.470214 +0.5947903 0.9720079 0.470214 +0.6211144 0.9720079 0.470214 +0.6460766 0.9720079 0.470214 +0.6698526 0.9720079 0.470214 +0.6925839 0.9720079 0.470214 +0.7143866 0.9720079 0.470214 +0.7353569 0.9720079 0.470214 +0.7555758 0.9720079 0.470214 +0.7751122 0.9720079 0.470214 +0.7940252 0.9720079 0.470214 +0.8123661 0.9720079 0.470214 +0.8301795 0.9720079 0.470214 +0.8475045 0.9720079 0.470214 +0.8643761 0.9720079 0.470214 +0.880825 0.9720079 0.470214 +0.8968787 0.9720079 0.470214 +0.9125621 0.9720079 0.470214 +0.9278974 0.9720079 0.470214 +0.9429048 0.9720079 0.470214 +0.9576028 0.9720079 0.470214 +0.9720079 0.9720079 0.470214 +0.9861357 0.9720079 0.470214 +1 0.9720079 0.470214 +0 0.9861357 0.470214 +0.1939468 0.9861357 0.470214 +0.2773041 0.9861357 0.470214 +0.3384659 0.9861357 0.470214 +0.3885728 0.9861357 0.470214 +0.4317928 0.9861357 0.470214 +0.470214 0.9861357 0.470214 +0.5050551 0.9861357 0.470214 +0.5370987 0.9861357 0.470214 +0.5668815 0.9861357 0.470214 +0.5947903 0.9861357 0.470214 +0.6211144 0.9861357 0.470214 +0.6460766 0.9861357 0.470214 +0.6698526 0.9861357 0.470214 +0.6925839 0.9861357 0.470214 +0.7143866 0.9861357 0.470214 +0.7353569 0.9861357 0.470214 +0.7555758 0.9861357 0.470214 +0.7751122 0.9861357 0.470214 +0.7940252 0.9861357 0.470214 +0.8123661 0.9861357 0.470214 +0.8301795 0.9861357 0.470214 +0.8475045 0.9861357 0.470214 +0.8643761 0.9861357 0.470214 +0.880825 0.9861357 0.470214 +0.8968787 0.9861357 0.470214 +0.9125621 0.9861357 0.470214 +0.9278974 0.9861357 0.470214 +0.9429048 0.9861357 0.470214 +0.9576028 0.9861357 0.470214 +0.9720079 0.9861357 0.470214 +0.9861357 0.9861357 0.470214 +1 0.9861357 0.470214 +0 1 0.470214 +0.1939468 1 0.470214 +0.2773041 1 0.470214 +0.3384659 1 0.470214 +0.3885728 1 0.470214 +0.4317928 1 0.470214 +0.470214 1 0.470214 +0.5050551 1 0.470214 +0.5370987 1 0.470214 +0.5668815 1 0.470214 +0.5947903 1 0.470214 +0.6211144 1 0.470214 +0.6460766 1 0.470214 +0.6698526 1 0.470214 +0.6925839 1 0.470214 +0.7143866 1 0.470214 +0.7353569 1 0.470214 +0.7555758 1 0.470214 +0.7751122 1 0.470214 +0.7940252 1 0.470214 +0.8123661 1 0.470214 +0.8301795 1 0.470214 +0.8475045 1 0.470214 +0.8643761 1 0.470214 +0.880825 1 0.470214 +0.8968787 1 0.470214 +0.9125621 1 0.470214 +0.9278974 1 0.470214 +0.9429048 1 0.470214 +0.9576028 1 0.470214 +0.9720079 1 0.470214 +0.9861357 1 0.470214 +1 1 0.470214 +0 0 0.5050551 +0.1939468 0 0.5050551 +0.2773041 0 0.5050551 +0.3384659 0 0.5050551 +0.3885728 0 0.5050551 +0.4317928 0 0.5050551 +0.470214 0 0.5050551 +0.5050551 0 0.5050551 +0.5370987 0 0.5050551 +0.5668815 0 0.5050551 +0.5947903 0 0.5050551 +0.6211144 0 0.5050551 +0.6460766 0 0.5050551 +0.6698526 0 0.5050551 +0.6925839 0 0.5050551 +0.7143866 0 0.5050551 +0.7353569 0 0.5050551 +0.7555758 0 0.5050551 +0.7751122 0 0.5050551 +0.7940252 0 0.5050551 +0.8123661 0 0.5050551 +0.8301795 0 0.5050551 +0.8475045 0 0.5050551 +0.8643761 0 0.5050551 +0.880825 0 0.5050551 +0.8968787 0 0.5050551 +0.9125621 0 0.5050551 +0.9278974 0 0.5050551 +0.9429048 0 0.5050551 +0.9576028 0 0.5050551 +0.9720079 0 0.5050551 +0.9861357 0 0.5050551 +1 0 0.5050551 +0 0.1939468 0.5050551 +0.1939468 0.1939468 0.5050551 +0.2773041 0.1939468 0.5050551 +0.3384659 0.1939468 0.5050551 +0.3885728 0.1939468 0.5050551 +0.4317928 0.1939468 0.5050551 +0.470214 0.1939468 0.5050551 +0.5050551 0.1939468 0.5050551 +0.5370987 0.1939468 0.5050551 +0.5668815 0.1939468 0.5050551 +0.5947903 0.1939468 0.5050551 +0.6211144 0.1939468 0.5050551 +0.6460766 0.1939468 0.5050551 +0.6698526 0.1939468 0.5050551 +0.6925839 0.1939468 0.5050551 +0.7143866 0.1939468 0.5050551 +0.7353569 0.1939468 0.5050551 +0.7555758 0.1939468 0.5050551 +0.7751122 0.1939468 0.5050551 +0.7940252 0.1939468 0.5050551 +0.8123661 0.1939468 0.5050551 +0.8301795 0.1939468 0.5050551 +0.8475045 0.1939468 0.5050551 +0.8643761 0.1939468 0.5050551 +0.880825 0.1939468 0.5050551 +0.8968787 0.1939468 0.5050551 +0.9125621 0.1939468 0.5050551 +0.9278974 0.1939468 0.5050551 +0.9429048 0.1939468 0.5050551 +0.9576028 0.1939468 0.5050551 +0.9720079 0.1939468 0.5050551 +0.9861357 0.1939468 0.5050551 +1 0.1939468 0.5050551 +0 0.2773041 0.5050551 +0.1939468 0.2773041 0.5050551 +0.2773041 0.2773041 0.5050551 +0.3384659 0.2773041 0.5050551 +0.3885728 0.2773041 0.5050551 +0.4317928 0.2773041 0.5050551 +0.470214 0.2773041 0.5050551 +0.5050551 0.2773041 0.5050551 +0.5370987 0.2773041 0.5050551 +0.5668815 0.2773041 0.5050551 +0.5947903 0.2773041 0.5050551 +0.6211144 0.2773041 0.5050551 +0.6460766 0.2773041 0.5050551 +0.6698526 0.2773041 0.5050551 +0.6925839 0.2773041 0.5050551 +0.7143866 0.2773041 0.5050551 +0.7353569 0.2773041 0.5050551 +0.7555758 0.2773041 0.5050551 +0.7751122 0.2773041 0.5050551 +0.7940252 0.2773041 0.5050551 +0.8123661 0.2773041 0.5050551 +0.8301795 0.2773041 0.5050551 +0.8475045 0.2773041 0.5050551 +0.8643761 0.2773041 0.5050551 +0.880825 0.2773041 0.5050551 +0.8968787 0.2773041 0.5050551 +0.9125621 0.2773041 0.5050551 +0.9278974 0.2773041 0.5050551 +0.9429048 0.2773041 0.5050551 +0.9576028 0.2773041 0.5050551 +0.9720079 0.2773041 0.5050551 +0.9861357 0.2773041 0.5050551 +1 0.2773041 0.5050551 +0 0.3384659 0.5050551 +0.1939468 0.3384659 0.5050551 +0.2773041 0.3384659 0.5050551 +0.3384659 0.3384659 0.5050551 +0.3885728 0.3384659 0.5050551 +0.4317928 0.3384659 0.5050551 +0.470214 0.3384659 0.5050551 +0.5050551 0.3384659 0.5050551 +0.5370987 0.3384659 0.5050551 +0.5668815 0.3384659 0.5050551 +0.5947903 0.3384659 0.5050551 +0.6211144 0.3384659 0.5050551 +0.6460766 0.3384659 0.5050551 +0.6698526 0.3384659 0.5050551 +0.6925839 0.3384659 0.5050551 +0.7143866 0.3384659 0.5050551 +0.7353569 0.3384659 0.5050551 +0.7555758 0.3384659 0.5050551 +0.7751122 0.3384659 0.5050551 +0.7940252 0.3384659 0.5050551 +0.8123661 0.3384659 0.5050551 +0.8301795 0.3384659 0.5050551 +0.8475045 0.3384659 0.5050551 +0.8643761 0.3384659 0.5050551 +0.880825 0.3384659 0.5050551 +0.8968787 0.3384659 0.5050551 +0.9125621 0.3384659 0.5050551 +0.9278974 0.3384659 0.5050551 +0.9429048 0.3384659 0.5050551 +0.9576028 0.3384659 0.5050551 +0.9720079 0.3384659 0.5050551 +0.9861357 0.3384659 0.5050551 +1 0.3384659 0.5050551 +0 0.3885728 0.5050551 +0.1939468 0.3885728 0.5050551 +0.2773041 0.3885728 0.5050551 +0.3384659 0.3885728 0.5050551 +0.3885728 0.3885728 0.5050551 +0.4317928 0.3885728 0.5050551 +0.470214 0.3885728 0.5050551 +0.5050551 0.3885728 0.5050551 +0.5370987 0.3885728 0.5050551 +0.5668815 0.3885728 0.5050551 +0.5947903 0.3885728 0.5050551 +0.6211144 0.3885728 0.5050551 +0.6460766 0.3885728 0.5050551 +0.6698526 0.3885728 0.5050551 +0.6925839 0.3885728 0.5050551 +0.7143866 0.3885728 0.5050551 +0.7353569 0.3885728 0.5050551 +0.7555758 0.3885728 0.5050551 +0.7751122 0.3885728 0.5050551 +0.7940252 0.3885728 0.5050551 +0.8123661 0.3885728 0.5050551 +0.8301795 0.3885728 0.5050551 +0.8475045 0.3885728 0.5050551 +0.8643761 0.3885728 0.5050551 +0.880825 0.3885728 0.5050551 +0.8968787 0.3885728 0.5050551 +0.9125621 0.3885728 0.5050551 +0.9278974 0.3885728 0.5050551 +0.9429048 0.3885728 0.5050551 +0.9576028 0.3885728 0.5050551 +0.9720079 0.3885728 0.5050551 +0.9861357 0.3885728 0.5050551 +1 0.3885728 0.5050551 +0 0.4317928 0.5050551 +0.1939468 0.4317928 0.5050551 +0.2773041 0.4317928 0.5050551 +0.3384659 0.4317928 0.5050551 +0.3885728 0.4317928 0.5050551 +0.4317928 0.4317928 0.5050551 +0.470214 0.4317928 0.5050551 +0.5050551 0.4317928 0.5050551 +0.5370987 0.4317928 0.5050551 +0.5668815 0.4317928 0.5050551 +0.5947903 0.4317928 0.5050551 +0.6211144 0.4317928 0.5050551 +0.6460766 0.4317928 0.5050551 +0.6698526 0.4317928 0.5050551 +0.6925839 0.4317928 0.5050551 +0.7143866 0.4317928 0.5050551 +0.7353569 0.4317928 0.5050551 +0.7555758 0.4317928 0.5050551 +0.7751122 0.4317928 0.5050551 +0.7940252 0.4317928 0.5050551 +0.8123661 0.4317928 0.5050551 +0.8301795 0.4317928 0.5050551 +0.8475045 0.4317928 0.5050551 +0.8643761 0.4317928 0.5050551 +0.880825 0.4317928 0.5050551 +0.8968787 0.4317928 0.5050551 +0.9125621 0.4317928 0.5050551 +0.9278974 0.4317928 0.5050551 +0.9429048 0.4317928 0.5050551 +0.9576028 0.4317928 0.5050551 +0.9720079 0.4317928 0.5050551 +0.9861357 0.4317928 0.5050551 +1 0.4317928 0.5050551 +0 0.470214 0.5050551 +0.1939468 0.470214 0.5050551 +0.2773041 0.470214 0.5050551 +0.3384659 0.470214 0.5050551 +0.3885728 0.470214 0.5050551 +0.4317928 0.470214 0.5050551 +0.470214 0.470214 0.5050551 +0.5050551 0.470214 0.5050551 +0.5370987 0.470214 0.5050551 +0.5668815 0.470214 0.5050551 +0.5947903 0.470214 0.5050551 +0.6211144 0.470214 0.5050551 +0.6460766 0.470214 0.5050551 +0.6698526 0.470214 0.5050551 +0.6925839 0.470214 0.5050551 +0.7143866 0.470214 0.5050551 +0.7353569 0.470214 0.5050551 +0.7555758 0.470214 0.5050551 +0.7751122 0.470214 0.5050551 +0.7940252 0.470214 0.5050551 +0.8123661 0.470214 0.5050551 +0.8301795 0.470214 0.5050551 +0.8475045 0.470214 0.5050551 +0.8643761 0.470214 0.5050551 +0.880825 0.470214 0.5050551 +0.8968787 0.470214 0.5050551 +0.9125621 0.470214 0.5050551 +0.9278974 0.470214 0.5050551 +0.9429048 0.470214 0.5050551 +0.9576028 0.470214 0.5050551 +0.9720079 0.470214 0.5050551 +0.9861357 0.470214 0.5050551 +1 0.470214 0.5050551 +0 0.5050551 0.5050551 +0.1939468 0.5050551 0.5050551 +0.2773041 0.5050551 0.5050551 +0.3384659 0.5050551 0.5050551 +0.3885728 0.5050551 0.5050551 +0.4317928 0.5050551 0.5050551 +0.470214 0.5050551 0.5050551 +0.5050551 0.5050551 0.5050551 +0.5370987 0.5050551 0.5050551 +0.5668815 0.5050551 0.5050551 +0.5947903 0.5050551 0.5050551 +0.6211144 0.5050551 0.5050551 +0.6460766 0.5050551 0.5050551 +0.6698526 0.5050551 0.5050551 +0.6925839 0.5050551 0.5050551 +0.7143866 0.5050551 0.5050551 +0.7353569 0.5050551 0.5050551 +0.7555758 0.5050551 0.5050551 +0.7751122 0.5050551 0.5050551 +0.7940252 0.5050551 0.5050551 +0.8123661 0.5050551 0.5050551 +0.8301795 0.5050551 0.5050551 +0.8475045 0.5050551 0.5050551 +0.8643761 0.5050551 0.5050551 +0.880825 0.5050551 0.5050551 +0.8968787 0.5050551 0.5050551 +0.9125621 0.5050551 0.5050551 +0.9278974 0.5050551 0.5050551 +0.9429048 0.5050551 0.5050551 +0.9576028 0.5050551 0.5050551 +0.9720079 0.5050551 0.5050551 +0.9861357 0.5050551 0.5050551 +1 0.5050551 0.5050551 +0 0.5370987 0.5050551 +0.1939468 0.5370987 0.5050551 +0.2773041 0.5370987 0.5050551 +0.3384659 0.5370987 0.5050551 +0.3885728 0.5370987 0.5050551 +0.4317928 0.5370987 0.5050551 +0.470214 0.5370987 0.5050551 +0.5050551 0.5370987 0.5050551 +0.5370987 0.5370987 0.5050551 +0.5668815 0.5370987 0.5050551 +0.5947903 0.5370987 0.5050551 +0.6211144 0.5370987 0.5050551 +0.6460766 0.5370987 0.5050551 +0.6698526 0.5370987 0.5050551 +0.6925839 0.5370987 0.5050551 +0.7143866 0.5370987 0.5050551 +0.7353569 0.5370987 0.5050551 +0.7555758 0.5370987 0.5050551 +0.7751122 0.5370987 0.5050551 +0.7940252 0.5370987 0.5050551 +0.8123661 0.5370987 0.5050551 +0.8301795 0.5370987 0.5050551 +0.8475045 0.5370987 0.5050551 +0.8643761 0.5370987 0.5050551 +0.880825 0.5370987 0.5050551 +0.8968787 0.5370987 0.5050551 +0.9125621 0.5370987 0.5050551 +0.9278974 0.5370987 0.5050551 +0.9429048 0.5370987 0.5050551 +0.9576028 0.5370987 0.5050551 +0.9720079 0.5370987 0.5050551 +0.9861357 0.5370987 0.5050551 +1 0.5370987 0.5050551 +0 0.5668815 0.5050551 +0.1939468 0.5668815 0.5050551 +0.2773041 0.5668815 0.5050551 +0.3384659 0.5668815 0.5050551 +0.3885728 0.5668815 0.5050551 +0.4317928 0.5668815 0.5050551 +0.470214 0.5668815 0.5050551 +0.5050551 0.5668815 0.5050551 +0.5370987 0.5668815 0.5050551 +0.5668815 0.5668815 0.5050551 +0.5947903 0.5668815 0.5050551 +0.6211144 0.5668815 0.5050551 +0.6460766 0.5668815 0.5050551 +0.6698526 0.5668815 0.5050551 +0.6925839 0.5668815 0.5050551 +0.7143866 0.5668815 0.5050551 +0.7353569 0.5668815 0.5050551 +0.7555758 0.5668815 0.5050551 +0.7751122 0.5668815 0.5050551 +0.7940252 0.5668815 0.5050551 +0.8123661 0.5668815 0.5050551 +0.8301795 0.5668815 0.5050551 +0.8475045 0.5668815 0.5050551 +0.8643761 0.5668815 0.5050551 +0.880825 0.5668815 0.5050551 +0.8968787 0.5668815 0.5050551 +0.9125621 0.5668815 0.5050551 +0.9278974 0.5668815 0.5050551 +0.9429048 0.5668815 0.5050551 +0.9576028 0.5668815 0.5050551 +0.9720079 0.5668815 0.5050551 +0.9861357 0.5668815 0.5050551 +1 0.5668815 0.5050551 +0 0.5947903 0.5050551 +0.1939468 0.5947903 0.5050551 +0.2773041 0.5947903 0.5050551 +0.3384659 0.5947903 0.5050551 +0.3885728 0.5947903 0.5050551 +0.4317928 0.5947903 0.5050551 +0.470214 0.5947903 0.5050551 +0.5050551 0.5947903 0.5050551 +0.5370987 0.5947903 0.5050551 +0.5668815 0.5947903 0.5050551 +0.5947903 0.5947903 0.5050551 +0.6211144 0.5947903 0.5050551 +0.6460766 0.5947903 0.5050551 +0.6698526 0.5947903 0.5050551 +0.6925839 0.5947903 0.5050551 +0.7143866 0.5947903 0.5050551 +0.7353569 0.5947903 0.5050551 +0.7555758 0.5947903 0.5050551 +0.7751122 0.5947903 0.5050551 +0.7940252 0.5947903 0.5050551 +0.8123661 0.5947903 0.5050551 +0.8301795 0.5947903 0.5050551 +0.8475045 0.5947903 0.5050551 +0.8643761 0.5947903 0.5050551 +0.880825 0.5947903 0.5050551 +0.8968787 0.5947903 0.5050551 +0.9125621 0.5947903 0.5050551 +0.9278974 0.5947903 0.5050551 +0.9429048 0.5947903 0.5050551 +0.9576028 0.5947903 0.5050551 +0.9720079 0.5947903 0.5050551 +0.9861357 0.5947903 0.5050551 +1 0.5947903 0.5050551 +0 0.6211144 0.5050551 +0.1939468 0.6211144 0.5050551 +0.2773041 0.6211144 0.5050551 +0.3384659 0.6211144 0.5050551 +0.3885728 0.6211144 0.5050551 +0.4317928 0.6211144 0.5050551 +0.470214 0.6211144 0.5050551 +0.5050551 0.6211144 0.5050551 +0.5370987 0.6211144 0.5050551 +0.5668815 0.6211144 0.5050551 +0.5947903 0.6211144 0.5050551 +0.6211144 0.6211144 0.5050551 +0.6460766 0.6211144 0.5050551 +0.6698526 0.6211144 0.5050551 +0.6925839 0.6211144 0.5050551 +0.7143866 0.6211144 0.5050551 +0.7353569 0.6211144 0.5050551 +0.7555758 0.6211144 0.5050551 +0.7751122 0.6211144 0.5050551 +0.7940252 0.6211144 0.5050551 +0.8123661 0.6211144 0.5050551 +0.8301795 0.6211144 0.5050551 +0.8475045 0.6211144 0.5050551 +0.8643761 0.6211144 0.5050551 +0.880825 0.6211144 0.5050551 +0.8968787 0.6211144 0.5050551 +0.9125621 0.6211144 0.5050551 +0.9278974 0.6211144 0.5050551 +0.9429048 0.6211144 0.5050551 +0.9576028 0.6211144 0.5050551 +0.9720079 0.6211144 0.5050551 +0.9861357 0.6211144 0.5050551 +1 0.6211144 0.5050551 +0 0.6460766 0.5050551 +0.1939468 0.6460766 0.5050551 +0.2773041 0.6460766 0.5050551 +0.3384659 0.6460766 0.5050551 +0.3885728 0.6460766 0.5050551 +0.4317928 0.6460766 0.5050551 +0.470214 0.6460766 0.5050551 +0.5050551 0.6460766 0.5050551 +0.5370987 0.6460766 0.5050551 +0.5668815 0.6460766 0.5050551 +0.5947903 0.6460766 0.5050551 +0.6211144 0.6460766 0.5050551 +0.6460766 0.6460766 0.5050551 +0.6698526 0.6460766 0.5050551 +0.6925839 0.6460766 0.5050551 +0.7143866 0.6460766 0.5050551 +0.7353569 0.6460766 0.5050551 +0.7555758 0.6460766 0.5050551 +0.7751122 0.6460766 0.5050551 +0.7940252 0.6460766 0.5050551 +0.8123661 0.6460766 0.5050551 +0.8301795 0.6460766 0.5050551 +0.8475045 0.6460766 0.5050551 +0.8643761 0.6460766 0.5050551 +0.880825 0.6460766 0.5050551 +0.8968787 0.6460766 0.5050551 +0.9125621 0.6460766 0.5050551 +0.9278974 0.6460766 0.5050551 +0.9429048 0.6460766 0.5050551 +0.9576028 0.6460766 0.5050551 +0.9720079 0.6460766 0.5050551 +0.9861357 0.6460766 0.5050551 +1 0.6460766 0.5050551 +0 0.6698526 0.5050551 +0.1939468 0.6698526 0.5050551 +0.2773041 0.6698526 0.5050551 +0.3384659 0.6698526 0.5050551 +0.3885728 0.6698526 0.5050551 +0.4317928 0.6698526 0.5050551 +0.470214 0.6698526 0.5050551 +0.5050551 0.6698526 0.5050551 +0.5370987 0.6698526 0.5050551 +0.5668815 0.6698526 0.5050551 +0.5947903 0.6698526 0.5050551 +0.6211144 0.6698526 0.5050551 +0.6460766 0.6698526 0.5050551 +0.6698526 0.6698526 0.5050551 +0.6925839 0.6698526 0.5050551 +0.7143866 0.6698526 0.5050551 +0.7353569 0.6698526 0.5050551 +0.7555758 0.6698526 0.5050551 +0.7751122 0.6698526 0.5050551 +0.7940252 0.6698526 0.5050551 +0.8123661 0.6698526 0.5050551 +0.8301795 0.6698526 0.5050551 +0.8475045 0.6698526 0.5050551 +0.8643761 0.6698526 0.5050551 +0.880825 0.6698526 0.5050551 +0.8968787 0.6698526 0.5050551 +0.9125621 0.6698526 0.5050551 +0.9278974 0.6698526 0.5050551 +0.9429048 0.6698526 0.5050551 +0.9576028 0.6698526 0.5050551 +0.9720079 0.6698526 0.5050551 +0.9861357 0.6698526 0.5050551 +1 0.6698526 0.5050551 +0 0.6925839 0.5050551 +0.1939468 0.6925839 0.5050551 +0.2773041 0.6925839 0.5050551 +0.3384659 0.6925839 0.5050551 +0.3885728 0.6925839 0.5050551 +0.4317928 0.6925839 0.5050551 +0.470214 0.6925839 0.5050551 +0.5050551 0.6925839 0.5050551 +0.5370987 0.6925839 0.5050551 +0.5668815 0.6925839 0.5050551 +0.5947903 0.6925839 0.5050551 +0.6211144 0.6925839 0.5050551 +0.6460766 0.6925839 0.5050551 +0.6698526 0.6925839 0.5050551 +0.6925839 0.6925839 0.5050551 +0.7143866 0.6925839 0.5050551 +0.7353569 0.6925839 0.5050551 +0.7555758 0.6925839 0.5050551 +0.7751122 0.6925839 0.5050551 +0.7940252 0.6925839 0.5050551 +0.8123661 0.6925839 0.5050551 +0.8301795 0.6925839 0.5050551 +0.8475045 0.6925839 0.5050551 +0.8643761 0.6925839 0.5050551 +0.880825 0.6925839 0.5050551 +0.8968787 0.6925839 0.5050551 +0.9125621 0.6925839 0.5050551 +0.9278974 0.6925839 0.5050551 +0.9429048 0.6925839 0.5050551 +0.9576028 0.6925839 0.5050551 +0.9720079 0.6925839 0.5050551 +0.9861357 0.6925839 0.5050551 +1 0.6925839 0.5050551 +0 0.7143866 0.5050551 +0.1939468 0.7143866 0.5050551 +0.2773041 0.7143866 0.5050551 +0.3384659 0.7143866 0.5050551 +0.3885728 0.7143866 0.5050551 +0.4317928 0.7143866 0.5050551 +0.470214 0.7143866 0.5050551 +0.5050551 0.7143866 0.5050551 +0.5370987 0.7143866 0.5050551 +0.5668815 0.7143866 0.5050551 +0.5947903 0.7143866 0.5050551 +0.6211144 0.7143866 0.5050551 +0.6460766 0.7143866 0.5050551 +0.6698526 0.7143866 0.5050551 +0.6925839 0.7143866 0.5050551 +0.7143866 0.7143866 0.5050551 +0.7353569 0.7143866 0.5050551 +0.7555758 0.7143866 0.5050551 +0.7751122 0.7143866 0.5050551 +0.7940252 0.7143866 0.5050551 +0.8123661 0.7143866 0.5050551 +0.8301795 0.7143866 0.5050551 +0.8475045 0.7143866 0.5050551 +0.8643761 0.7143866 0.5050551 +0.880825 0.7143866 0.5050551 +0.8968787 0.7143866 0.5050551 +0.9125621 0.7143866 0.5050551 +0.9278974 0.7143866 0.5050551 +0.9429048 0.7143866 0.5050551 +0.9576028 0.7143866 0.5050551 +0.9720079 0.7143866 0.5050551 +0.9861357 0.7143866 0.5050551 +1 0.7143866 0.5050551 +0 0.7353569 0.5050551 +0.1939468 0.7353569 0.5050551 +0.2773041 0.7353569 0.5050551 +0.3384659 0.7353569 0.5050551 +0.3885728 0.7353569 0.5050551 +0.4317928 0.7353569 0.5050551 +0.470214 0.7353569 0.5050551 +0.5050551 0.7353569 0.5050551 +0.5370987 0.7353569 0.5050551 +0.5668815 0.7353569 0.5050551 +0.5947903 0.7353569 0.5050551 +0.6211144 0.7353569 0.5050551 +0.6460766 0.7353569 0.5050551 +0.6698526 0.7353569 0.5050551 +0.6925839 0.7353569 0.5050551 +0.7143866 0.7353569 0.5050551 +0.7353569 0.7353569 0.5050551 +0.7555758 0.7353569 0.5050551 +0.7751122 0.7353569 0.5050551 +0.7940252 0.7353569 0.5050551 +0.8123661 0.7353569 0.5050551 +0.8301795 0.7353569 0.5050551 +0.8475045 0.7353569 0.5050551 +0.8643761 0.7353569 0.5050551 +0.880825 0.7353569 0.5050551 +0.8968787 0.7353569 0.5050551 +0.9125621 0.7353569 0.5050551 +0.9278974 0.7353569 0.5050551 +0.9429048 0.7353569 0.5050551 +0.9576028 0.7353569 0.5050551 +0.9720079 0.7353569 0.5050551 +0.9861357 0.7353569 0.5050551 +1 0.7353569 0.5050551 +0 0.7555758 0.5050551 +0.1939468 0.7555758 0.5050551 +0.2773041 0.7555758 0.5050551 +0.3384659 0.7555758 0.5050551 +0.3885728 0.7555758 0.5050551 +0.4317928 0.7555758 0.5050551 +0.470214 0.7555758 0.5050551 +0.5050551 0.7555758 0.5050551 +0.5370987 0.7555758 0.5050551 +0.5668815 0.7555758 0.5050551 +0.5947903 0.7555758 0.5050551 +0.6211144 0.7555758 0.5050551 +0.6460766 0.7555758 0.5050551 +0.6698526 0.7555758 0.5050551 +0.6925839 0.7555758 0.5050551 +0.7143866 0.7555758 0.5050551 +0.7353569 0.7555758 0.5050551 +0.7555758 0.7555758 0.5050551 +0.7751122 0.7555758 0.5050551 +0.7940252 0.7555758 0.5050551 +0.8123661 0.7555758 0.5050551 +0.8301795 0.7555758 0.5050551 +0.8475045 0.7555758 0.5050551 +0.8643761 0.7555758 0.5050551 +0.880825 0.7555758 0.5050551 +0.8968787 0.7555758 0.5050551 +0.9125621 0.7555758 0.5050551 +0.9278974 0.7555758 0.5050551 +0.9429048 0.7555758 0.5050551 +0.9576028 0.7555758 0.5050551 +0.9720079 0.7555758 0.5050551 +0.9861357 0.7555758 0.5050551 +1 0.7555758 0.5050551 +0 0.7751122 0.5050551 +0.1939468 0.7751122 0.5050551 +0.2773041 0.7751122 0.5050551 +0.3384659 0.7751122 0.5050551 +0.3885728 0.7751122 0.5050551 +0.4317928 0.7751122 0.5050551 +0.470214 0.7751122 0.5050551 +0.5050551 0.7751122 0.5050551 +0.5370987 0.7751122 0.5050551 +0.5668815 0.7751122 0.5050551 +0.5947903 0.7751122 0.5050551 +0.6211144 0.7751122 0.5050551 +0.6460766 0.7751122 0.5050551 +0.6698526 0.7751122 0.5050551 +0.6925839 0.7751122 0.5050551 +0.7143866 0.7751122 0.5050551 +0.7353569 0.7751122 0.5050551 +0.7555758 0.7751122 0.5050551 +0.7751122 0.7751122 0.5050551 +0.7940252 0.7751122 0.5050551 +0.8123661 0.7751122 0.5050551 +0.8301795 0.7751122 0.5050551 +0.8475045 0.7751122 0.5050551 +0.8643761 0.7751122 0.5050551 +0.880825 0.7751122 0.5050551 +0.8968787 0.7751122 0.5050551 +0.9125621 0.7751122 0.5050551 +0.9278974 0.7751122 0.5050551 +0.9429048 0.7751122 0.5050551 +0.9576028 0.7751122 0.5050551 +0.9720079 0.7751122 0.5050551 +0.9861357 0.7751122 0.5050551 +1 0.7751122 0.5050551 +0 0.7940252 0.5050551 +0.1939468 0.7940252 0.5050551 +0.2773041 0.7940252 0.5050551 +0.3384659 0.7940252 0.5050551 +0.3885728 0.7940252 0.5050551 +0.4317928 0.7940252 0.5050551 +0.470214 0.7940252 0.5050551 +0.5050551 0.7940252 0.5050551 +0.5370987 0.7940252 0.5050551 +0.5668815 0.7940252 0.5050551 +0.5947903 0.7940252 0.5050551 +0.6211144 0.7940252 0.5050551 +0.6460766 0.7940252 0.5050551 +0.6698526 0.7940252 0.5050551 +0.6925839 0.7940252 0.5050551 +0.7143866 0.7940252 0.5050551 +0.7353569 0.7940252 0.5050551 +0.7555758 0.7940252 0.5050551 +0.7751122 0.7940252 0.5050551 +0.7940252 0.7940252 0.5050551 +0.8123661 0.7940252 0.5050551 +0.8301795 0.7940252 0.5050551 +0.8475045 0.7940252 0.5050551 +0.8643761 0.7940252 0.5050551 +0.880825 0.7940252 0.5050551 +0.8968787 0.7940252 0.5050551 +0.9125621 0.7940252 0.5050551 +0.9278974 0.7940252 0.5050551 +0.9429048 0.7940252 0.5050551 +0.9576028 0.7940252 0.5050551 +0.9720079 0.7940252 0.5050551 +0.9861357 0.7940252 0.5050551 +1 0.7940252 0.5050551 +0 0.8123661 0.5050551 +0.1939468 0.8123661 0.5050551 +0.2773041 0.8123661 0.5050551 +0.3384659 0.8123661 0.5050551 +0.3885728 0.8123661 0.5050551 +0.4317928 0.8123661 0.5050551 +0.470214 0.8123661 0.5050551 +0.5050551 0.8123661 0.5050551 +0.5370987 0.8123661 0.5050551 +0.5668815 0.8123661 0.5050551 +0.5947903 0.8123661 0.5050551 +0.6211144 0.8123661 0.5050551 +0.6460766 0.8123661 0.5050551 +0.6698526 0.8123661 0.5050551 +0.6925839 0.8123661 0.5050551 +0.7143866 0.8123661 0.5050551 +0.7353569 0.8123661 0.5050551 +0.7555758 0.8123661 0.5050551 +0.7751122 0.8123661 0.5050551 +0.7940252 0.8123661 0.5050551 +0.8123661 0.8123661 0.5050551 +0.8301795 0.8123661 0.5050551 +0.8475045 0.8123661 0.5050551 +0.8643761 0.8123661 0.5050551 +0.880825 0.8123661 0.5050551 +0.8968787 0.8123661 0.5050551 +0.9125621 0.8123661 0.5050551 +0.9278974 0.8123661 0.5050551 +0.9429048 0.8123661 0.5050551 +0.9576028 0.8123661 0.5050551 +0.9720079 0.8123661 0.5050551 +0.9861357 0.8123661 0.5050551 +1 0.8123661 0.5050551 +0 0.8301795 0.5050551 +0.1939468 0.8301795 0.5050551 +0.2773041 0.8301795 0.5050551 +0.3384659 0.8301795 0.5050551 +0.3885728 0.8301795 0.5050551 +0.4317928 0.8301795 0.5050551 +0.470214 0.8301795 0.5050551 +0.5050551 0.8301795 0.5050551 +0.5370987 0.8301795 0.5050551 +0.5668815 0.8301795 0.5050551 +0.5947903 0.8301795 0.5050551 +0.6211144 0.8301795 0.5050551 +0.6460766 0.8301795 0.5050551 +0.6698526 0.8301795 0.5050551 +0.6925839 0.8301795 0.5050551 +0.7143866 0.8301795 0.5050551 +0.7353569 0.8301795 0.5050551 +0.7555758 0.8301795 0.5050551 +0.7751122 0.8301795 0.5050551 +0.7940252 0.8301795 0.5050551 +0.8123661 0.8301795 0.5050551 +0.8301795 0.8301795 0.5050551 +0.8475045 0.8301795 0.5050551 +0.8643761 0.8301795 0.5050551 +0.880825 0.8301795 0.5050551 +0.8968787 0.8301795 0.5050551 +0.9125621 0.8301795 0.5050551 +0.9278974 0.8301795 0.5050551 +0.9429048 0.8301795 0.5050551 +0.9576028 0.8301795 0.5050551 +0.9720079 0.8301795 0.5050551 +0.9861357 0.8301795 0.5050551 +1 0.8301795 0.5050551 +0 0.8475045 0.5050551 +0.1939468 0.8475045 0.5050551 +0.2773041 0.8475045 0.5050551 +0.3384659 0.8475045 0.5050551 +0.3885728 0.8475045 0.5050551 +0.4317928 0.8475045 0.5050551 +0.470214 0.8475045 0.5050551 +0.5050551 0.8475045 0.5050551 +0.5370987 0.8475045 0.5050551 +0.5668815 0.8475045 0.5050551 +0.5947903 0.8475045 0.5050551 +0.6211144 0.8475045 0.5050551 +0.6460766 0.8475045 0.5050551 +0.6698526 0.8475045 0.5050551 +0.6925839 0.8475045 0.5050551 +0.7143866 0.8475045 0.5050551 +0.7353569 0.8475045 0.5050551 +0.7555758 0.8475045 0.5050551 +0.7751122 0.8475045 0.5050551 +0.7940252 0.8475045 0.5050551 +0.8123661 0.8475045 0.5050551 +0.8301795 0.8475045 0.5050551 +0.8475045 0.8475045 0.5050551 +0.8643761 0.8475045 0.5050551 +0.880825 0.8475045 0.5050551 +0.8968787 0.8475045 0.5050551 +0.9125621 0.8475045 0.5050551 +0.9278974 0.8475045 0.5050551 +0.9429048 0.8475045 0.5050551 +0.9576028 0.8475045 0.5050551 +0.9720079 0.8475045 0.5050551 +0.9861357 0.8475045 0.5050551 +1 0.8475045 0.5050551 +0 0.8643761 0.5050551 +0.1939468 0.8643761 0.5050551 +0.2773041 0.8643761 0.5050551 +0.3384659 0.8643761 0.5050551 +0.3885728 0.8643761 0.5050551 +0.4317928 0.8643761 0.5050551 +0.470214 0.8643761 0.5050551 +0.5050551 0.8643761 0.5050551 +0.5370987 0.8643761 0.5050551 +0.5668815 0.8643761 0.5050551 +0.5947903 0.8643761 0.5050551 +0.6211144 0.8643761 0.5050551 +0.6460766 0.8643761 0.5050551 +0.6698526 0.8643761 0.5050551 +0.6925839 0.8643761 0.5050551 +0.7143866 0.8643761 0.5050551 +0.7353569 0.8643761 0.5050551 +0.7555758 0.8643761 0.5050551 +0.7751122 0.8643761 0.5050551 +0.7940252 0.8643761 0.5050551 +0.8123661 0.8643761 0.5050551 +0.8301795 0.8643761 0.5050551 +0.8475045 0.8643761 0.5050551 +0.8643761 0.8643761 0.5050551 +0.880825 0.8643761 0.5050551 +0.8968787 0.8643761 0.5050551 +0.9125621 0.8643761 0.5050551 +0.9278974 0.8643761 0.5050551 +0.9429048 0.8643761 0.5050551 +0.9576028 0.8643761 0.5050551 +0.9720079 0.8643761 0.5050551 +0.9861357 0.8643761 0.5050551 +1 0.8643761 0.5050551 +0 0.880825 0.5050551 +0.1939468 0.880825 0.5050551 +0.2773041 0.880825 0.5050551 +0.3384659 0.880825 0.5050551 +0.3885728 0.880825 0.5050551 +0.4317928 0.880825 0.5050551 +0.470214 0.880825 0.5050551 +0.5050551 0.880825 0.5050551 +0.5370987 0.880825 0.5050551 +0.5668815 0.880825 0.5050551 +0.5947903 0.880825 0.5050551 +0.6211144 0.880825 0.5050551 +0.6460766 0.880825 0.5050551 +0.6698526 0.880825 0.5050551 +0.6925839 0.880825 0.5050551 +0.7143866 0.880825 0.5050551 +0.7353569 0.880825 0.5050551 +0.7555758 0.880825 0.5050551 +0.7751122 0.880825 0.5050551 +0.7940252 0.880825 0.5050551 +0.8123661 0.880825 0.5050551 +0.8301795 0.880825 0.5050551 +0.8475045 0.880825 0.5050551 +0.8643761 0.880825 0.5050551 +0.880825 0.880825 0.5050551 +0.8968787 0.880825 0.5050551 +0.9125621 0.880825 0.5050551 +0.9278974 0.880825 0.5050551 +0.9429048 0.880825 0.5050551 +0.9576028 0.880825 0.5050551 +0.9720079 0.880825 0.5050551 +0.9861357 0.880825 0.5050551 +1 0.880825 0.5050551 +0 0.8968787 0.5050551 +0.1939468 0.8968787 0.5050551 +0.2773041 0.8968787 0.5050551 +0.3384659 0.8968787 0.5050551 +0.3885728 0.8968787 0.5050551 +0.4317928 0.8968787 0.5050551 +0.470214 0.8968787 0.5050551 +0.5050551 0.8968787 0.5050551 +0.5370987 0.8968787 0.5050551 +0.5668815 0.8968787 0.5050551 +0.5947903 0.8968787 0.5050551 +0.6211144 0.8968787 0.5050551 +0.6460766 0.8968787 0.5050551 +0.6698526 0.8968787 0.5050551 +0.6925839 0.8968787 0.5050551 +0.7143866 0.8968787 0.5050551 +0.7353569 0.8968787 0.5050551 +0.7555758 0.8968787 0.5050551 +0.7751122 0.8968787 0.5050551 +0.7940252 0.8968787 0.5050551 +0.8123661 0.8968787 0.5050551 +0.8301795 0.8968787 0.5050551 +0.8475045 0.8968787 0.5050551 +0.8643761 0.8968787 0.5050551 +0.880825 0.8968787 0.5050551 +0.8968787 0.8968787 0.5050551 +0.9125621 0.8968787 0.5050551 +0.9278974 0.8968787 0.5050551 +0.9429048 0.8968787 0.5050551 +0.9576028 0.8968787 0.5050551 +0.9720079 0.8968787 0.5050551 +0.9861357 0.8968787 0.5050551 +1 0.8968787 0.5050551 +0 0.9125621 0.5050551 +0.1939468 0.9125621 0.5050551 +0.2773041 0.9125621 0.5050551 +0.3384659 0.9125621 0.5050551 +0.3885728 0.9125621 0.5050551 +0.4317928 0.9125621 0.5050551 +0.470214 0.9125621 0.5050551 +0.5050551 0.9125621 0.5050551 +0.5370987 0.9125621 0.5050551 +0.5668815 0.9125621 0.5050551 +0.5947903 0.9125621 0.5050551 +0.6211144 0.9125621 0.5050551 +0.6460766 0.9125621 0.5050551 +0.6698526 0.9125621 0.5050551 +0.6925839 0.9125621 0.5050551 +0.7143866 0.9125621 0.5050551 +0.7353569 0.9125621 0.5050551 +0.7555758 0.9125621 0.5050551 +0.7751122 0.9125621 0.5050551 +0.7940252 0.9125621 0.5050551 +0.8123661 0.9125621 0.5050551 +0.8301795 0.9125621 0.5050551 +0.8475045 0.9125621 0.5050551 +0.8643761 0.9125621 0.5050551 +0.880825 0.9125621 0.5050551 +0.8968787 0.9125621 0.5050551 +0.9125621 0.9125621 0.5050551 +0.9278974 0.9125621 0.5050551 +0.9429048 0.9125621 0.5050551 +0.9576028 0.9125621 0.5050551 +0.9720079 0.9125621 0.5050551 +0.9861357 0.9125621 0.5050551 +1 0.9125621 0.5050551 +0 0.9278974 0.5050551 +0.1939468 0.9278974 0.5050551 +0.2773041 0.9278974 0.5050551 +0.3384659 0.9278974 0.5050551 +0.3885728 0.9278974 0.5050551 +0.4317928 0.9278974 0.5050551 +0.470214 0.9278974 0.5050551 +0.5050551 0.9278974 0.5050551 +0.5370987 0.9278974 0.5050551 +0.5668815 0.9278974 0.5050551 +0.5947903 0.9278974 0.5050551 +0.6211144 0.9278974 0.5050551 +0.6460766 0.9278974 0.5050551 +0.6698526 0.9278974 0.5050551 +0.6925839 0.9278974 0.5050551 +0.7143866 0.9278974 0.5050551 +0.7353569 0.9278974 0.5050551 +0.7555758 0.9278974 0.5050551 +0.7751122 0.9278974 0.5050551 +0.7940252 0.9278974 0.5050551 +0.8123661 0.9278974 0.5050551 +0.8301795 0.9278974 0.5050551 +0.8475045 0.9278974 0.5050551 +0.8643761 0.9278974 0.5050551 +0.880825 0.9278974 0.5050551 +0.8968787 0.9278974 0.5050551 +0.9125621 0.9278974 0.5050551 +0.9278974 0.9278974 0.5050551 +0.9429048 0.9278974 0.5050551 +0.9576028 0.9278974 0.5050551 +0.9720079 0.9278974 0.5050551 +0.9861357 0.9278974 0.5050551 +1 0.9278974 0.5050551 +0 0.9429048 0.5050551 +0.1939468 0.9429048 0.5050551 +0.2773041 0.9429048 0.5050551 +0.3384659 0.9429048 0.5050551 +0.3885728 0.9429048 0.5050551 +0.4317928 0.9429048 0.5050551 +0.470214 0.9429048 0.5050551 +0.5050551 0.9429048 0.5050551 +0.5370987 0.9429048 0.5050551 +0.5668815 0.9429048 0.5050551 +0.5947903 0.9429048 0.5050551 +0.6211144 0.9429048 0.5050551 +0.6460766 0.9429048 0.5050551 +0.6698526 0.9429048 0.5050551 +0.6925839 0.9429048 0.5050551 +0.7143866 0.9429048 0.5050551 +0.7353569 0.9429048 0.5050551 +0.7555758 0.9429048 0.5050551 +0.7751122 0.9429048 0.5050551 +0.7940252 0.9429048 0.5050551 +0.8123661 0.9429048 0.5050551 +0.8301795 0.9429048 0.5050551 +0.8475045 0.9429048 0.5050551 +0.8643761 0.9429048 0.5050551 +0.880825 0.9429048 0.5050551 +0.8968787 0.9429048 0.5050551 +0.9125621 0.9429048 0.5050551 +0.9278974 0.9429048 0.5050551 +0.9429048 0.9429048 0.5050551 +0.9576028 0.9429048 0.5050551 +0.9720079 0.9429048 0.5050551 +0.9861357 0.9429048 0.5050551 +1 0.9429048 0.5050551 +0 0.9576028 0.5050551 +0.1939468 0.9576028 0.5050551 +0.2773041 0.9576028 0.5050551 +0.3384659 0.9576028 0.5050551 +0.3885728 0.9576028 0.5050551 +0.4317928 0.9576028 0.5050551 +0.470214 0.9576028 0.5050551 +0.5050551 0.9576028 0.5050551 +0.5370987 0.9576028 0.5050551 +0.5668815 0.9576028 0.5050551 +0.5947903 0.9576028 0.5050551 +0.6211144 0.9576028 0.5050551 +0.6460766 0.9576028 0.5050551 +0.6698526 0.9576028 0.5050551 +0.6925839 0.9576028 0.5050551 +0.7143866 0.9576028 0.5050551 +0.7353569 0.9576028 0.5050551 +0.7555758 0.9576028 0.5050551 +0.7751122 0.9576028 0.5050551 +0.7940252 0.9576028 0.5050551 +0.8123661 0.9576028 0.5050551 +0.8301795 0.9576028 0.5050551 +0.8475045 0.9576028 0.5050551 +0.8643761 0.9576028 0.5050551 +0.880825 0.9576028 0.5050551 +0.8968787 0.9576028 0.5050551 +0.9125621 0.9576028 0.5050551 +0.9278974 0.9576028 0.5050551 +0.9429048 0.9576028 0.5050551 +0.9576028 0.9576028 0.5050551 +0.9720079 0.9576028 0.5050551 +0.9861357 0.9576028 0.5050551 +1 0.9576028 0.5050551 +0 0.9720079 0.5050551 +0.1939468 0.9720079 0.5050551 +0.2773041 0.9720079 0.5050551 +0.3384659 0.9720079 0.5050551 +0.3885728 0.9720079 0.5050551 +0.4317928 0.9720079 0.5050551 +0.470214 0.9720079 0.5050551 +0.5050551 0.9720079 0.5050551 +0.5370987 0.9720079 0.5050551 +0.5668815 0.9720079 0.5050551 +0.5947903 0.9720079 0.5050551 +0.6211144 0.9720079 0.5050551 +0.6460766 0.9720079 0.5050551 +0.6698526 0.9720079 0.5050551 +0.6925839 0.9720079 0.5050551 +0.7143866 0.9720079 0.5050551 +0.7353569 0.9720079 0.5050551 +0.7555758 0.9720079 0.5050551 +0.7751122 0.9720079 0.5050551 +0.7940252 0.9720079 0.5050551 +0.8123661 0.9720079 0.5050551 +0.8301795 0.9720079 0.5050551 +0.8475045 0.9720079 0.5050551 +0.8643761 0.9720079 0.5050551 +0.880825 0.9720079 0.5050551 +0.8968787 0.9720079 0.5050551 +0.9125621 0.9720079 0.5050551 +0.9278974 0.9720079 0.5050551 +0.9429048 0.9720079 0.5050551 +0.9576028 0.9720079 0.5050551 +0.9720079 0.9720079 0.5050551 +0.9861357 0.9720079 0.5050551 +1 0.9720079 0.5050551 +0 0.9861357 0.5050551 +0.1939468 0.9861357 0.5050551 +0.2773041 0.9861357 0.5050551 +0.3384659 0.9861357 0.5050551 +0.3885728 0.9861357 0.5050551 +0.4317928 0.9861357 0.5050551 +0.470214 0.9861357 0.5050551 +0.5050551 0.9861357 0.5050551 +0.5370987 0.9861357 0.5050551 +0.5668815 0.9861357 0.5050551 +0.5947903 0.9861357 0.5050551 +0.6211144 0.9861357 0.5050551 +0.6460766 0.9861357 0.5050551 +0.6698526 0.9861357 0.5050551 +0.6925839 0.9861357 0.5050551 +0.7143866 0.9861357 0.5050551 +0.7353569 0.9861357 0.5050551 +0.7555758 0.9861357 0.5050551 +0.7751122 0.9861357 0.5050551 +0.7940252 0.9861357 0.5050551 +0.8123661 0.9861357 0.5050551 +0.8301795 0.9861357 0.5050551 +0.8475045 0.9861357 0.5050551 +0.8643761 0.9861357 0.5050551 +0.880825 0.9861357 0.5050551 +0.8968787 0.9861357 0.5050551 +0.9125621 0.9861357 0.5050551 +0.9278974 0.9861357 0.5050551 +0.9429048 0.9861357 0.5050551 +0.9576028 0.9861357 0.5050551 +0.9720079 0.9861357 0.5050551 +0.9861357 0.9861357 0.5050551 +1 0.9861357 0.5050551 +0 1 0.5050551 +0.1939468 1 0.5050551 +0.2773041 1 0.5050551 +0.3384659 1 0.5050551 +0.3885728 1 0.5050551 +0.4317928 1 0.5050551 +0.470214 1 0.5050551 +0.5050551 1 0.5050551 +0.5370987 1 0.5050551 +0.5668815 1 0.5050551 +0.5947903 1 0.5050551 +0.6211144 1 0.5050551 +0.6460766 1 0.5050551 +0.6698526 1 0.5050551 +0.6925839 1 0.5050551 +0.7143866 1 0.5050551 +0.7353569 1 0.5050551 +0.7555758 1 0.5050551 +0.7751122 1 0.5050551 +0.7940252 1 0.5050551 +0.8123661 1 0.5050551 +0.8301795 1 0.5050551 +0.8475045 1 0.5050551 +0.8643761 1 0.5050551 +0.880825 1 0.5050551 +0.8968787 1 0.5050551 +0.9125621 1 0.5050551 +0.9278974 1 0.5050551 +0.9429048 1 0.5050551 +0.9576028 1 0.5050551 +0.9720079 1 0.5050551 +0.9861357 1 0.5050551 +1 1 0.5050551 +0 0 0.5370987 +0.1939468 0 0.5370987 +0.2773041 0 0.5370987 +0.3384659 0 0.5370987 +0.3885728 0 0.5370987 +0.4317928 0 0.5370987 +0.470214 0 0.5370987 +0.5050551 0 0.5370987 +0.5370987 0 0.5370987 +0.5668815 0 0.5370987 +0.5947903 0 0.5370987 +0.6211144 0 0.5370987 +0.6460766 0 0.5370987 +0.6698526 0 0.5370987 +0.6925839 0 0.5370987 +0.7143866 0 0.5370987 +0.7353569 0 0.5370987 +0.7555758 0 0.5370987 +0.7751122 0 0.5370987 +0.7940252 0 0.5370987 +0.8123661 0 0.5370987 +0.8301795 0 0.5370987 +0.8475045 0 0.5370987 +0.8643761 0 0.5370987 +0.880825 0 0.5370987 +0.8968787 0 0.5370987 +0.9125621 0 0.5370987 +0.9278974 0 0.5370987 +0.9429048 0 0.5370987 +0.9576028 0 0.5370987 +0.9720079 0 0.5370987 +0.9861357 0 0.5370987 +1 0 0.5370987 +0 0.1939468 0.5370987 +0.1939468 0.1939468 0.5370987 +0.2773041 0.1939468 0.5370987 +0.3384659 0.1939468 0.5370987 +0.3885728 0.1939468 0.5370987 +0.4317928 0.1939468 0.5370987 +0.470214 0.1939468 0.5370987 +0.5050551 0.1939468 0.5370987 +0.5370987 0.1939468 0.5370987 +0.5668815 0.1939468 0.5370987 +0.5947903 0.1939468 0.5370987 +0.6211144 0.1939468 0.5370987 +0.6460766 0.1939468 0.5370987 +0.6698526 0.1939468 0.5370987 +0.6925839 0.1939468 0.5370987 +0.7143866 0.1939468 0.5370987 +0.7353569 0.1939468 0.5370987 +0.7555758 0.1939468 0.5370987 +0.7751122 0.1939468 0.5370987 +0.7940252 0.1939468 0.5370987 +0.8123661 0.1939468 0.5370987 +0.8301795 0.1939468 0.5370987 +0.8475045 0.1939468 0.5370987 +0.8643761 0.1939468 0.5370987 +0.880825 0.1939468 0.5370987 +0.8968787 0.1939468 0.5370987 +0.9125621 0.1939468 0.5370987 +0.9278974 0.1939468 0.5370987 +0.9429048 0.1939468 0.5370987 +0.9576028 0.1939468 0.5370987 +0.9720079 0.1939468 0.5370987 +0.9861357 0.1939468 0.5370987 +1 0.1939468 0.5370987 +0 0.2773041 0.5370987 +0.1939468 0.2773041 0.5370987 +0.2773041 0.2773041 0.5370987 +0.3384659 0.2773041 0.5370987 +0.3885728 0.2773041 0.5370987 +0.4317928 0.2773041 0.5370987 +0.470214 0.2773041 0.5370987 +0.5050551 0.2773041 0.5370987 +0.5370987 0.2773041 0.5370987 +0.5668815 0.2773041 0.5370987 +0.5947903 0.2773041 0.5370987 +0.6211144 0.2773041 0.5370987 +0.6460766 0.2773041 0.5370987 +0.6698526 0.2773041 0.5370987 +0.6925839 0.2773041 0.5370987 +0.7143866 0.2773041 0.5370987 +0.7353569 0.2773041 0.5370987 +0.7555758 0.2773041 0.5370987 +0.7751122 0.2773041 0.5370987 +0.7940252 0.2773041 0.5370987 +0.8123661 0.2773041 0.5370987 +0.8301795 0.2773041 0.5370987 +0.8475045 0.2773041 0.5370987 +0.8643761 0.2773041 0.5370987 +0.880825 0.2773041 0.5370987 +0.8968787 0.2773041 0.5370987 +0.9125621 0.2773041 0.5370987 +0.9278974 0.2773041 0.5370987 +0.9429048 0.2773041 0.5370987 +0.9576028 0.2773041 0.5370987 +0.9720079 0.2773041 0.5370987 +0.9861357 0.2773041 0.5370987 +1 0.2773041 0.5370987 +0 0.3384659 0.5370987 +0.1939468 0.3384659 0.5370987 +0.2773041 0.3384659 0.5370987 +0.3384659 0.3384659 0.5370987 +0.3885728 0.3384659 0.5370987 +0.4317928 0.3384659 0.5370987 +0.470214 0.3384659 0.5370987 +0.5050551 0.3384659 0.5370987 +0.5370987 0.3384659 0.5370987 +0.5668815 0.3384659 0.5370987 +0.5947903 0.3384659 0.5370987 +0.6211144 0.3384659 0.5370987 +0.6460766 0.3384659 0.5370987 +0.6698526 0.3384659 0.5370987 +0.6925839 0.3384659 0.5370987 +0.7143866 0.3384659 0.5370987 +0.7353569 0.3384659 0.5370987 +0.7555758 0.3384659 0.5370987 +0.7751122 0.3384659 0.5370987 +0.7940252 0.3384659 0.5370987 +0.8123661 0.3384659 0.5370987 +0.8301795 0.3384659 0.5370987 +0.8475045 0.3384659 0.5370987 +0.8643761 0.3384659 0.5370987 +0.880825 0.3384659 0.5370987 +0.8968787 0.3384659 0.5370987 +0.9125621 0.3384659 0.5370987 +0.9278974 0.3384659 0.5370987 +0.9429048 0.3384659 0.5370987 +0.9576028 0.3384659 0.5370987 +0.9720079 0.3384659 0.5370987 +0.9861357 0.3384659 0.5370987 +1 0.3384659 0.5370987 +0 0.3885728 0.5370987 +0.1939468 0.3885728 0.5370987 +0.2773041 0.3885728 0.5370987 +0.3384659 0.3885728 0.5370987 +0.3885728 0.3885728 0.5370987 +0.4317928 0.3885728 0.5370987 +0.470214 0.3885728 0.5370987 +0.5050551 0.3885728 0.5370987 +0.5370987 0.3885728 0.5370987 +0.5668815 0.3885728 0.5370987 +0.5947903 0.3885728 0.5370987 +0.6211144 0.3885728 0.5370987 +0.6460766 0.3885728 0.5370987 +0.6698526 0.3885728 0.5370987 +0.6925839 0.3885728 0.5370987 +0.7143866 0.3885728 0.5370987 +0.7353569 0.3885728 0.5370987 +0.7555758 0.3885728 0.5370987 +0.7751122 0.3885728 0.5370987 +0.7940252 0.3885728 0.5370987 +0.8123661 0.3885728 0.5370987 +0.8301795 0.3885728 0.5370987 +0.8475045 0.3885728 0.5370987 +0.8643761 0.3885728 0.5370987 +0.880825 0.3885728 0.5370987 +0.8968787 0.3885728 0.5370987 +0.9125621 0.3885728 0.5370987 +0.9278974 0.3885728 0.5370987 +0.9429048 0.3885728 0.5370987 +0.9576028 0.3885728 0.5370987 +0.9720079 0.3885728 0.5370987 +0.9861357 0.3885728 0.5370987 +1 0.3885728 0.5370987 +0 0.4317928 0.5370987 +0.1939468 0.4317928 0.5370987 +0.2773041 0.4317928 0.5370987 +0.3384659 0.4317928 0.5370987 +0.3885728 0.4317928 0.5370987 +0.4317928 0.4317928 0.5370987 +0.470214 0.4317928 0.5370987 +0.5050551 0.4317928 0.5370987 +0.5370987 0.4317928 0.5370987 +0.5668815 0.4317928 0.5370987 +0.5947903 0.4317928 0.5370987 +0.6211144 0.4317928 0.5370987 +0.6460766 0.4317928 0.5370987 +0.6698526 0.4317928 0.5370987 +0.6925839 0.4317928 0.5370987 +0.7143866 0.4317928 0.5370987 +0.7353569 0.4317928 0.5370987 +0.7555758 0.4317928 0.5370987 +0.7751122 0.4317928 0.5370987 +0.7940252 0.4317928 0.5370987 +0.8123661 0.4317928 0.5370987 +0.8301795 0.4317928 0.5370987 +0.8475045 0.4317928 0.5370987 +0.8643761 0.4317928 0.5370987 +0.880825 0.4317928 0.5370987 +0.8968787 0.4317928 0.5370987 +0.9125621 0.4317928 0.5370987 +0.9278974 0.4317928 0.5370987 +0.9429048 0.4317928 0.5370987 +0.9576028 0.4317928 0.5370987 +0.9720079 0.4317928 0.5370987 +0.9861357 0.4317928 0.5370987 +1 0.4317928 0.5370987 +0 0.470214 0.5370987 +0.1939468 0.470214 0.5370987 +0.2773041 0.470214 0.5370987 +0.3384659 0.470214 0.5370987 +0.3885728 0.470214 0.5370987 +0.4317928 0.470214 0.5370987 +0.470214 0.470214 0.5370987 +0.5050551 0.470214 0.5370987 +0.5370987 0.470214 0.5370987 +0.5668815 0.470214 0.5370987 +0.5947903 0.470214 0.5370987 +0.6211144 0.470214 0.5370987 +0.6460766 0.470214 0.5370987 +0.6698526 0.470214 0.5370987 +0.6925839 0.470214 0.5370987 +0.7143866 0.470214 0.5370987 +0.7353569 0.470214 0.5370987 +0.7555758 0.470214 0.5370987 +0.7751122 0.470214 0.5370987 +0.7940252 0.470214 0.5370987 +0.8123661 0.470214 0.5370987 +0.8301795 0.470214 0.5370987 +0.8475045 0.470214 0.5370987 +0.8643761 0.470214 0.5370987 +0.880825 0.470214 0.5370987 +0.8968787 0.470214 0.5370987 +0.9125621 0.470214 0.5370987 +0.9278974 0.470214 0.5370987 +0.9429048 0.470214 0.5370987 +0.9576028 0.470214 0.5370987 +0.9720079 0.470214 0.5370987 +0.9861357 0.470214 0.5370987 +1 0.470214 0.5370987 +0 0.5050551 0.5370987 +0.1939468 0.5050551 0.5370987 +0.2773041 0.5050551 0.5370987 +0.3384659 0.5050551 0.5370987 +0.3885728 0.5050551 0.5370987 +0.4317928 0.5050551 0.5370987 +0.470214 0.5050551 0.5370987 +0.5050551 0.5050551 0.5370987 +0.5370987 0.5050551 0.5370987 +0.5668815 0.5050551 0.5370987 +0.5947903 0.5050551 0.5370987 +0.6211144 0.5050551 0.5370987 +0.6460766 0.5050551 0.5370987 +0.6698526 0.5050551 0.5370987 +0.6925839 0.5050551 0.5370987 +0.7143866 0.5050551 0.5370987 +0.7353569 0.5050551 0.5370987 +0.7555758 0.5050551 0.5370987 +0.7751122 0.5050551 0.5370987 +0.7940252 0.5050551 0.5370987 +0.8123661 0.5050551 0.5370987 +0.8301795 0.5050551 0.5370987 +0.8475045 0.5050551 0.5370987 +0.8643761 0.5050551 0.5370987 +0.880825 0.5050551 0.5370987 +0.8968787 0.5050551 0.5370987 +0.9125621 0.5050551 0.5370987 +0.9278974 0.5050551 0.5370987 +0.9429048 0.5050551 0.5370987 +0.9576028 0.5050551 0.5370987 +0.9720079 0.5050551 0.5370987 +0.9861357 0.5050551 0.5370987 +1 0.5050551 0.5370987 +0 0.5370987 0.5370987 +0.1939468 0.5370987 0.5370987 +0.2773041 0.5370987 0.5370987 +0.3384659 0.5370987 0.5370987 +0.3885728 0.5370987 0.5370987 +0.4317928 0.5370987 0.5370987 +0.470214 0.5370987 0.5370987 +0.5050551 0.5370987 0.5370987 +0.5370987 0.5370987 0.5370987 +0.5668815 0.5370987 0.5370987 +0.5947903 0.5370987 0.5370987 +0.6211144 0.5370987 0.5370987 +0.6460766 0.5370987 0.5370987 +0.6698526 0.5370987 0.5370987 +0.6925839 0.5370987 0.5370987 +0.7143866 0.5370987 0.5370987 +0.7353569 0.5370987 0.5370987 +0.7555758 0.5370987 0.5370987 +0.7751122 0.5370987 0.5370987 +0.7940252 0.5370987 0.5370987 +0.8123661 0.5370987 0.5370987 +0.8301795 0.5370987 0.5370987 +0.8475045 0.5370987 0.5370987 +0.8643761 0.5370987 0.5370987 +0.880825 0.5370987 0.5370987 +0.8968787 0.5370987 0.5370987 +0.9125621 0.5370987 0.5370987 +0.9278974 0.5370987 0.5370987 +0.9429048 0.5370987 0.5370987 +0.9576028 0.5370987 0.5370987 +0.9720079 0.5370987 0.5370987 +0.9861357 0.5370987 0.5370987 +1 0.5370987 0.5370987 +0 0.5668815 0.5370987 +0.1939468 0.5668815 0.5370987 +0.2773041 0.5668815 0.5370987 +0.3384659 0.5668815 0.5370987 +0.3885728 0.5668815 0.5370987 +0.4317928 0.5668815 0.5370987 +0.470214 0.5668815 0.5370987 +0.5050551 0.5668815 0.5370987 +0.5370987 0.5668815 0.5370987 +0.5668815 0.5668815 0.5370987 +0.5947903 0.5668815 0.5370987 +0.6211144 0.5668815 0.5370987 +0.6460766 0.5668815 0.5370987 +0.6698526 0.5668815 0.5370987 +0.6925839 0.5668815 0.5370987 +0.7143866 0.5668815 0.5370987 +0.7353569 0.5668815 0.5370987 +0.7555758 0.5668815 0.5370987 +0.7751122 0.5668815 0.5370987 +0.7940252 0.5668815 0.5370987 +0.8123661 0.5668815 0.5370987 +0.8301795 0.5668815 0.5370987 +0.8475045 0.5668815 0.5370987 +0.8643761 0.5668815 0.5370987 +0.880825 0.5668815 0.5370987 +0.8968787 0.5668815 0.5370987 +0.9125621 0.5668815 0.5370987 +0.9278974 0.5668815 0.5370987 +0.9429048 0.5668815 0.5370987 +0.9576028 0.5668815 0.5370987 +0.9720079 0.5668815 0.5370987 +0.9861357 0.5668815 0.5370987 +1 0.5668815 0.5370987 +0 0.5947903 0.5370987 +0.1939468 0.5947903 0.5370987 +0.2773041 0.5947903 0.5370987 +0.3384659 0.5947903 0.5370987 +0.3885728 0.5947903 0.5370987 +0.4317928 0.5947903 0.5370987 +0.470214 0.5947903 0.5370987 +0.5050551 0.5947903 0.5370987 +0.5370987 0.5947903 0.5370987 +0.5668815 0.5947903 0.5370987 +0.5947903 0.5947903 0.5370987 +0.6211144 0.5947903 0.5370987 +0.6460766 0.5947903 0.5370987 +0.6698526 0.5947903 0.5370987 +0.6925839 0.5947903 0.5370987 +0.7143866 0.5947903 0.5370987 +0.7353569 0.5947903 0.5370987 +0.7555758 0.5947903 0.5370987 +0.7751122 0.5947903 0.5370987 +0.7940252 0.5947903 0.5370987 +0.8123661 0.5947903 0.5370987 +0.8301795 0.5947903 0.5370987 +0.8475045 0.5947903 0.5370987 +0.8643761 0.5947903 0.5370987 +0.880825 0.5947903 0.5370987 +0.8968787 0.5947903 0.5370987 +0.9125621 0.5947903 0.5370987 +0.9278974 0.5947903 0.5370987 +0.9429048 0.5947903 0.5370987 +0.9576028 0.5947903 0.5370987 +0.9720079 0.5947903 0.5370987 +0.9861357 0.5947903 0.5370987 +1 0.5947903 0.5370987 +0 0.6211144 0.5370987 +0.1939468 0.6211144 0.5370987 +0.2773041 0.6211144 0.5370987 +0.3384659 0.6211144 0.5370987 +0.3885728 0.6211144 0.5370987 +0.4317928 0.6211144 0.5370987 +0.470214 0.6211144 0.5370987 +0.5050551 0.6211144 0.5370987 +0.5370987 0.6211144 0.5370987 +0.5668815 0.6211144 0.5370987 +0.5947903 0.6211144 0.5370987 +0.6211144 0.6211144 0.5370987 +0.6460766 0.6211144 0.5370987 +0.6698526 0.6211144 0.5370987 +0.6925839 0.6211144 0.5370987 +0.7143866 0.6211144 0.5370987 +0.7353569 0.6211144 0.5370987 +0.7555758 0.6211144 0.5370987 +0.7751122 0.6211144 0.5370987 +0.7940252 0.6211144 0.5370987 +0.8123661 0.6211144 0.5370987 +0.8301795 0.6211144 0.5370987 +0.8475045 0.6211144 0.5370987 +0.8643761 0.6211144 0.5370987 +0.880825 0.6211144 0.5370987 +0.8968787 0.6211144 0.5370987 +0.9125621 0.6211144 0.5370987 +0.9278974 0.6211144 0.5370987 +0.9429048 0.6211144 0.5370987 +0.9576028 0.6211144 0.5370987 +0.9720079 0.6211144 0.5370987 +0.9861357 0.6211144 0.5370987 +1 0.6211144 0.5370987 +0 0.6460766 0.5370987 +0.1939468 0.6460766 0.5370987 +0.2773041 0.6460766 0.5370987 +0.3384659 0.6460766 0.5370987 +0.3885728 0.6460766 0.5370987 +0.4317928 0.6460766 0.5370987 +0.470214 0.6460766 0.5370987 +0.5050551 0.6460766 0.5370987 +0.5370987 0.6460766 0.5370987 +0.5668815 0.6460766 0.5370987 +0.5947903 0.6460766 0.5370987 +0.6211144 0.6460766 0.5370987 +0.6460766 0.6460766 0.5370987 +0.6698526 0.6460766 0.5370987 +0.6925839 0.6460766 0.5370987 +0.7143866 0.6460766 0.5370987 +0.7353569 0.6460766 0.5370987 +0.7555758 0.6460766 0.5370987 +0.7751122 0.6460766 0.5370987 +0.7940252 0.6460766 0.5370987 +0.8123661 0.6460766 0.5370987 +0.8301795 0.6460766 0.5370987 +0.8475045 0.6460766 0.5370987 +0.8643761 0.6460766 0.5370987 +0.880825 0.6460766 0.5370987 +0.8968787 0.6460766 0.5370987 +0.9125621 0.6460766 0.5370987 +0.9278974 0.6460766 0.5370987 +0.9429048 0.6460766 0.5370987 +0.9576028 0.6460766 0.5370987 +0.9720079 0.6460766 0.5370987 +0.9861357 0.6460766 0.5370987 +1 0.6460766 0.5370987 +0 0.6698526 0.5370987 +0.1939468 0.6698526 0.5370987 +0.2773041 0.6698526 0.5370987 +0.3384659 0.6698526 0.5370987 +0.3885728 0.6698526 0.5370987 +0.4317928 0.6698526 0.5370987 +0.470214 0.6698526 0.5370987 +0.5050551 0.6698526 0.5370987 +0.5370987 0.6698526 0.5370987 +0.5668815 0.6698526 0.5370987 +0.5947903 0.6698526 0.5370987 +0.6211144 0.6698526 0.5370987 +0.6460766 0.6698526 0.5370987 +0.6698526 0.6698526 0.5370987 +0.6925839 0.6698526 0.5370987 +0.7143866 0.6698526 0.5370987 +0.7353569 0.6698526 0.5370987 +0.7555758 0.6698526 0.5370987 +0.7751122 0.6698526 0.5370987 +0.7940252 0.6698526 0.5370987 +0.8123661 0.6698526 0.5370987 +0.8301795 0.6698526 0.5370987 +0.8475045 0.6698526 0.5370987 +0.8643761 0.6698526 0.5370987 +0.880825 0.6698526 0.5370987 +0.8968787 0.6698526 0.5370987 +0.9125621 0.6698526 0.5370987 +0.9278974 0.6698526 0.5370987 +0.9429048 0.6698526 0.5370987 +0.9576028 0.6698526 0.5370987 +0.9720079 0.6698526 0.5370987 +0.9861357 0.6698526 0.5370987 +1 0.6698526 0.5370987 +0 0.6925839 0.5370987 +0.1939468 0.6925839 0.5370987 +0.2773041 0.6925839 0.5370987 +0.3384659 0.6925839 0.5370987 +0.3885728 0.6925839 0.5370987 +0.4317928 0.6925839 0.5370987 +0.470214 0.6925839 0.5370987 +0.5050551 0.6925839 0.5370987 +0.5370987 0.6925839 0.5370987 +0.5668815 0.6925839 0.5370987 +0.5947903 0.6925839 0.5370987 +0.6211144 0.6925839 0.5370987 +0.6460766 0.6925839 0.5370987 +0.6698526 0.6925839 0.5370987 +0.6925839 0.6925839 0.5370987 +0.7143866 0.6925839 0.5370987 +0.7353569 0.6925839 0.5370987 +0.7555758 0.6925839 0.5370987 +0.7751122 0.6925839 0.5370987 +0.7940252 0.6925839 0.5370987 +0.8123661 0.6925839 0.5370987 +0.8301795 0.6925839 0.5370987 +0.8475045 0.6925839 0.5370987 +0.8643761 0.6925839 0.5370987 +0.880825 0.6925839 0.5370987 +0.8968787 0.6925839 0.5370987 +0.9125621 0.6925839 0.5370987 +0.9278974 0.6925839 0.5370987 +0.9429048 0.6925839 0.5370987 +0.9576028 0.6925839 0.5370987 +0.9720079 0.6925839 0.5370987 +0.9861357 0.6925839 0.5370987 +1 0.6925839 0.5370987 +0 0.7143866 0.5370987 +0.1939468 0.7143866 0.5370987 +0.2773041 0.7143866 0.5370987 +0.3384659 0.7143866 0.5370987 +0.3885728 0.7143866 0.5370987 +0.4317928 0.7143866 0.5370987 +0.470214 0.7143866 0.5370987 +0.5050551 0.7143866 0.5370987 +0.5370987 0.7143866 0.5370987 +0.5668815 0.7143866 0.5370987 +0.5947903 0.7143866 0.5370987 +0.6211144 0.7143866 0.5370987 +0.6460766 0.7143866 0.5370987 +0.6698526 0.7143866 0.5370987 +0.6925839 0.7143866 0.5370987 +0.7143866 0.7143866 0.5370987 +0.7353569 0.7143866 0.5370987 +0.7555758 0.7143866 0.5370987 +0.7751122 0.7143866 0.5370987 +0.7940252 0.7143866 0.5370987 +0.8123661 0.7143866 0.5370987 +0.8301795 0.7143866 0.5370987 +0.8475045 0.7143866 0.5370987 +0.8643761 0.7143866 0.5370987 +0.880825 0.7143866 0.5370987 +0.8968787 0.7143866 0.5370987 +0.9125621 0.7143866 0.5370987 +0.9278974 0.7143866 0.5370987 +0.9429048 0.7143866 0.5370987 +0.9576028 0.7143866 0.5370987 +0.9720079 0.7143866 0.5370987 +0.9861357 0.7143866 0.5370987 +1 0.7143866 0.5370987 +0 0.7353569 0.5370987 +0.1939468 0.7353569 0.5370987 +0.2773041 0.7353569 0.5370987 +0.3384659 0.7353569 0.5370987 +0.3885728 0.7353569 0.5370987 +0.4317928 0.7353569 0.5370987 +0.470214 0.7353569 0.5370987 +0.5050551 0.7353569 0.5370987 +0.5370987 0.7353569 0.5370987 +0.5668815 0.7353569 0.5370987 +0.5947903 0.7353569 0.5370987 +0.6211144 0.7353569 0.5370987 +0.6460766 0.7353569 0.5370987 +0.6698526 0.7353569 0.5370987 +0.6925839 0.7353569 0.5370987 +0.7143866 0.7353569 0.5370987 +0.7353569 0.7353569 0.5370987 +0.7555758 0.7353569 0.5370987 +0.7751122 0.7353569 0.5370987 +0.7940252 0.7353569 0.5370987 +0.8123661 0.7353569 0.5370987 +0.8301795 0.7353569 0.5370987 +0.8475045 0.7353569 0.5370987 +0.8643761 0.7353569 0.5370987 +0.880825 0.7353569 0.5370987 +0.8968787 0.7353569 0.5370987 +0.9125621 0.7353569 0.5370987 +0.9278974 0.7353569 0.5370987 +0.9429048 0.7353569 0.5370987 +0.9576028 0.7353569 0.5370987 +0.9720079 0.7353569 0.5370987 +0.9861357 0.7353569 0.5370987 +1 0.7353569 0.5370987 +0 0.7555758 0.5370987 +0.1939468 0.7555758 0.5370987 +0.2773041 0.7555758 0.5370987 +0.3384659 0.7555758 0.5370987 +0.3885728 0.7555758 0.5370987 +0.4317928 0.7555758 0.5370987 +0.470214 0.7555758 0.5370987 +0.5050551 0.7555758 0.5370987 +0.5370987 0.7555758 0.5370987 +0.5668815 0.7555758 0.5370987 +0.5947903 0.7555758 0.5370987 +0.6211144 0.7555758 0.5370987 +0.6460766 0.7555758 0.5370987 +0.6698526 0.7555758 0.5370987 +0.6925839 0.7555758 0.5370987 +0.7143866 0.7555758 0.5370987 +0.7353569 0.7555758 0.5370987 +0.7555758 0.7555758 0.5370987 +0.7751122 0.7555758 0.5370987 +0.7940252 0.7555758 0.5370987 +0.8123661 0.7555758 0.5370987 +0.8301795 0.7555758 0.5370987 +0.8475045 0.7555758 0.5370987 +0.8643761 0.7555758 0.5370987 +0.880825 0.7555758 0.5370987 +0.8968787 0.7555758 0.5370987 +0.9125621 0.7555758 0.5370987 +0.9278974 0.7555758 0.5370987 +0.9429048 0.7555758 0.5370987 +0.9576028 0.7555758 0.5370987 +0.9720079 0.7555758 0.5370987 +0.9861357 0.7555758 0.5370987 +1 0.7555758 0.5370987 +0 0.7751122 0.5370987 +0.1939468 0.7751122 0.5370987 +0.2773041 0.7751122 0.5370987 +0.3384659 0.7751122 0.5370987 +0.3885728 0.7751122 0.5370987 +0.4317928 0.7751122 0.5370987 +0.470214 0.7751122 0.5370987 +0.5050551 0.7751122 0.5370987 +0.5370987 0.7751122 0.5370987 +0.5668815 0.7751122 0.5370987 +0.5947903 0.7751122 0.5370987 +0.6211144 0.7751122 0.5370987 +0.6460766 0.7751122 0.5370987 +0.6698526 0.7751122 0.5370987 +0.6925839 0.7751122 0.5370987 +0.7143866 0.7751122 0.5370987 +0.7353569 0.7751122 0.5370987 +0.7555758 0.7751122 0.5370987 +0.7751122 0.7751122 0.5370987 +0.7940252 0.7751122 0.5370987 +0.8123661 0.7751122 0.5370987 +0.8301795 0.7751122 0.5370987 +0.8475045 0.7751122 0.5370987 +0.8643761 0.7751122 0.5370987 +0.880825 0.7751122 0.5370987 +0.8968787 0.7751122 0.5370987 +0.9125621 0.7751122 0.5370987 +0.9278974 0.7751122 0.5370987 +0.9429048 0.7751122 0.5370987 +0.9576028 0.7751122 0.5370987 +0.9720079 0.7751122 0.5370987 +0.9861357 0.7751122 0.5370987 +1 0.7751122 0.5370987 +0 0.7940252 0.5370987 +0.1939468 0.7940252 0.5370987 +0.2773041 0.7940252 0.5370987 +0.3384659 0.7940252 0.5370987 +0.3885728 0.7940252 0.5370987 +0.4317928 0.7940252 0.5370987 +0.470214 0.7940252 0.5370987 +0.5050551 0.7940252 0.5370987 +0.5370987 0.7940252 0.5370987 +0.5668815 0.7940252 0.5370987 +0.5947903 0.7940252 0.5370987 +0.6211144 0.7940252 0.5370987 +0.6460766 0.7940252 0.5370987 +0.6698526 0.7940252 0.5370987 +0.6925839 0.7940252 0.5370987 +0.7143866 0.7940252 0.5370987 +0.7353569 0.7940252 0.5370987 +0.7555758 0.7940252 0.5370987 +0.7751122 0.7940252 0.5370987 +0.7940252 0.7940252 0.5370987 +0.8123661 0.7940252 0.5370987 +0.8301795 0.7940252 0.5370987 +0.8475045 0.7940252 0.5370987 +0.8643761 0.7940252 0.5370987 +0.880825 0.7940252 0.5370987 +0.8968787 0.7940252 0.5370987 +0.9125621 0.7940252 0.5370987 +0.9278974 0.7940252 0.5370987 +0.9429048 0.7940252 0.5370987 +0.9576028 0.7940252 0.5370987 +0.9720079 0.7940252 0.5370987 +0.9861357 0.7940252 0.5370987 +1 0.7940252 0.5370987 +0 0.8123661 0.5370987 +0.1939468 0.8123661 0.5370987 +0.2773041 0.8123661 0.5370987 +0.3384659 0.8123661 0.5370987 +0.3885728 0.8123661 0.5370987 +0.4317928 0.8123661 0.5370987 +0.470214 0.8123661 0.5370987 +0.5050551 0.8123661 0.5370987 +0.5370987 0.8123661 0.5370987 +0.5668815 0.8123661 0.5370987 +0.5947903 0.8123661 0.5370987 +0.6211144 0.8123661 0.5370987 +0.6460766 0.8123661 0.5370987 +0.6698526 0.8123661 0.5370987 +0.6925839 0.8123661 0.5370987 +0.7143866 0.8123661 0.5370987 +0.7353569 0.8123661 0.5370987 +0.7555758 0.8123661 0.5370987 +0.7751122 0.8123661 0.5370987 +0.7940252 0.8123661 0.5370987 +0.8123661 0.8123661 0.5370987 +0.8301795 0.8123661 0.5370987 +0.8475045 0.8123661 0.5370987 +0.8643761 0.8123661 0.5370987 +0.880825 0.8123661 0.5370987 +0.8968787 0.8123661 0.5370987 +0.9125621 0.8123661 0.5370987 +0.9278974 0.8123661 0.5370987 +0.9429048 0.8123661 0.5370987 +0.9576028 0.8123661 0.5370987 +0.9720079 0.8123661 0.5370987 +0.9861357 0.8123661 0.5370987 +1 0.8123661 0.5370987 +0 0.8301795 0.5370987 +0.1939468 0.8301795 0.5370987 +0.2773041 0.8301795 0.5370987 +0.3384659 0.8301795 0.5370987 +0.3885728 0.8301795 0.5370987 +0.4317928 0.8301795 0.5370987 +0.470214 0.8301795 0.5370987 +0.5050551 0.8301795 0.5370987 +0.5370987 0.8301795 0.5370987 +0.5668815 0.8301795 0.5370987 +0.5947903 0.8301795 0.5370987 +0.6211144 0.8301795 0.5370987 +0.6460766 0.8301795 0.5370987 +0.6698526 0.8301795 0.5370987 +0.6925839 0.8301795 0.5370987 +0.7143866 0.8301795 0.5370987 +0.7353569 0.8301795 0.5370987 +0.7555758 0.8301795 0.5370987 +0.7751122 0.8301795 0.5370987 +0.7940252 0.8301795 0.5370987 +0.8123661 0.8301795 0.5370987 +0.8301795 0.8301795 0.5370987 +0.8475045 0.8301795 0.5370987 +0.8643761 0.8301795 0.5370987 +0.880825 0.8301795 0.5370987 +0.8968787 0.8301795 0.5370987 +0.9125621 0.8301795 0.5370987 +0.9278974 0.8301795 0.5370987 +0.9429048 0.8301795 0.5370987 +0.9576028 0.8301795 0.5370987 +0.9720079 0.8301795 0.5370987 +0.9861357 0.8301795 0.5370987 +1 0.8301795 0.5370987 +0 0.8475045 0.5370987 +0.1939468 0.8475045 0.5370987 +0.2773041 0.8475045 0.5370987 +0.3384659 0.8475045 0.5370987 +0.3885728 0.8475045 0.5370987 +0.4317928 0.8475045 0.5370987 +0.470214 0.8475045 0.5370987 +0.5050551 0.8475045 0.5370987 +0.5370987 0.8475045 0.5370987 +0.5668815 0.8475045 0.5370987 +0.5947903 0.8475045 0.5370987 +0.6211144 0.8475045 0.5370987 +0.6460766 0.8475045 0.5370987 +0.6698526 0.8475045 0.5370987 +0.6925839 0.8475045 0.5370987 +0.7143866 0.8475045 0.5370987 +0.7353569 0.8475045 0.5370987 +0.7555758 0.8475045 0.5370987 +0.7751122 0.8475045 0.5370987 +0.7940252 0.8475045 0.5370987 +0.8123661 0.8475045 0.5370987 +0.8301795 0.8475045 0.5370987 +0.8475045 0.8475045 0.5370987 +0.8643761 0.8475045 0.5370987 +0.880825 0.8475045 0.5370987 +0.8968787 0.8475045 0.5370987 +0.9125621 0.8475045 0.5370987 +0.9278974 0.8475045 0.5370987 +0.9429048 0.8475045 0.5370987 +0.9576028 0.8475045 0.5370987 +0.9720079 0.8475045 0.5370987 +0.9861357 0.8475045 0.5370987 +1 0.8475045 0.5370987 +0 0.8643761 0.5370987 +0.1939468 0.8643761 0.5370987 +0.2773041 0.8643761 0.5370987 +0.3384659 0.8643761 0.5370987 +0.3885728 0.8643761 0.5370987 +0.4317928 0.8643761 0.5370987 +0.470214 0.8643761 0.5370987 +0.5050551 0.8643761 0.5370987 +0.5370987 0.8643761 0.5370987 +0.5668815 0.8643761 0.5370987 +0.5947903 0.8643761 0.5370987 +0.6211144 0.8643761 0.5370987 +0.6460766 0.8643761 0.5370987 +0.6698526 0.8643761 0.5370987 +0.6925839 0.8643761 0.5370987 +0.7143866 0.8643761 0.5370987 +0.7353569 0.8643761 0.5370987 +0.7555758 0.8643761 0.5370987 +0.7751122 0.8643761 0.5370987 +0.7940252 0.8643761 0.5370987 +0.8123661 0.8643761 0.5370987 +0.8301795 0.8643761 0.5370987 +0.8475045 0.8643761 0.5370987 +0.8643761 0.8643761 0.5370987 +0.880825 0.8643761 0.5370987 +0.8968787 0.8643761 0.5370987 +0.9125621 0.8643761 0.5370987 +0.9278974 0.8643761 0.5370987 +0.9429048 0.8643761 0.5370987 +0.9576028 0.8643761 0.5370987 +0.9720079 0.8643761 0.5370987 +0.9861357 0.8643761 0.5370987 +1 0.8643761 0.5370987 +0 0.880825 0.5370987 +0.1939468 0.880825 0.5370987 +0.2773041 0.880825 0.5370987 +0.3384659 0.880825 0.5370987 +0.3885728 0.880825 0.5370987 +0.4317928 0.880825 0.5370987 +0.470214 0.880825 0.5370987 +0.5050551 0.880825 0.5370987 +0.5370987 0.880825 0.5370987 +0.5668815 0.880825 0.5370987 +0.5947903 0.880825 0.5370987 +0.6211144 0.880825 0.5370987 +0.6460766 0.880825 0.5370987 +0.6698526 0.880825 0.5370987 +0.6925839 0.880825 0.5370987 +0.7143866 0.880825 0.5370987 +0.7353569 0.880825 0.5370987 +0.7555758 0.880825 0.5370987 +0.7751122 0.880825 0.5370987 +0.7940252 0.880825 0.5370987 +0.8123661 0.880825 0.5370987 +0.8301795 0.880825 0.5370987 +0.8475045 0.880825 0.5370987 +0.8643761 0.880825 0.5370987 +0.880825 0.880825 0.5370987 +0.8968787 0.880825 0.5370987 +0.9125621 0.880825 0.5370987 +0.9278974 0.880825 0.5370987 +0.9429048 0.880825 0.5370987 +0.9576028 0.880825 0.5370987 +0.9720079 0.880825 0.5370987 +0.9861357 0.880825 0.5370987 +1 0.880825 0.5370987 +0 0.8968787 0.5370987 +0.1939468 0.8968787 0.5370987 +0.2773041 0.8968787 0.5370987 +0.3384659 0.8968787 0.5370987 +0.3885728 0.8968787 0.5370987 +0.4317928 0.8968787 0.5370987 +0.470214 0.8968787 0.5370987 +0.5050551 0.8968787 0.5370987 +0.5370987 0.8968787 0.5370987 +0.5668815 0.8968787 0.5370987 +0.5947903 0.8968787 0.5370987 +0.6211144 0.8968787 0.5370987 +0.6460766 0.8968787 0.5370987 +0.6698526 0.8968787 0.5370987 +0.6925839 0.8968787 0.5370987 +0.7143866 0.8968787 0.5370987 +0.7353569 0.8968787 0.5370987 +0.7555758 0.8968787 0.5370987 +0.7751122 0.8968787 0.5370987 +0.7940252 0.8968787 0.5370987 +0.8123661 0.8968787 0.5370987 +0.8301795 0.8968787 0.5370987 +0.8475045 0.8968787 0.5370987 +0.8643761 0.8968787 0.5370987 +0.880825 0.8968787 0.5370987 +0.8968787 0.8968787 0.5370987 +0.9125621 0.8968787 0.5370987 +0.9278974 0.8968787 0.5370987 +0.9429048 0.8968787 0.5370987 +0.9576028 0.8968787 0.5370987 +0.9720079 0.8968787 0.5370987 +0.9861357 0.8968787 0.5370987 +1 0.8968787 0.5370987 +0 0.9125621 0.5370987 +0.1939468 0.9125621 0.5370987 +0.2773041 0.9125621 0.5370987 +0.3384659 0.9125621 0.5370987 +0.3885728 0.9125621 0.5370987 +0.4317928 0.9125621 0.5370987 +0.470214 0.9125621 0.5370987 +0.5050551 0.9125621 0.5370987 +0.5370987 0.9125621 0.5370987 +0.5668815 0.9125621 0.5370987 +0.5947903 0.9125621 0.5370987 +0.6211144 0.9125621 0.5370987 +0.6460766 0.9125621 0.5370987 +0.6698526 0.9125621 0.5370987 +0.6925839 0.9125621 0.5370987 +0.7143866 0.9125621 0.5370987 +0.7353569 0.9125621 0.5370987 +0.7555758 0.9125621 0.5370987 +0.7751122 0.9125621 0.5370987 +0.7940252 0.9125621 0.5370987 +0.8123661 0.9125621 0.5370987 +0.8301795 0.9125621 0.5370987 +0.8475045 0.9125621 0.5370987 +0.8643761 0.9125621 0.5370987 +0.880825 0.9125621 0.5370987 +0.8968787 0.9125621 0.5370987 +0.9125621 0.9125621 0.5370987 +0.9278974 0.9125621 0.5370987 +0.9429048 0.9125621 0.5370987 +0.9576028 0.9125621 0.5370987 +0.9720079 0.9125621 0.5370987 +0.9861357 0.9125621 0.5370987 +1 0.9125621 0.5370987 +0 0.9278974 0.5370987 +0.1939468 0.9278974 0.5370987 +0.2773041 0.9278974 0.5370987 +0.3384659 0.9278974 0.5370987 +0.3885728 0.9278974 0.5370987 +0.4317928 0.9278974 0.5370987 +0.470214 0.9278974 0.5370987 +0.5050551 0.9278974 0.5370987 +0.5370987 0.9278974 0.5370987 +0.5668815 0.9278974 0.5370987 +0.5947903 0.9278974 0.5370987 +0.6211144 0.9278974 0.5370987 +0.6460766 0.9278974 0.5370987 +0.6698526 0.9278974 0.5370987 +0.6925839 0.9278974 0.5370987 +0.7143866 0.9278974 0.5370987 +0.7353569 0.9278974 0.5370987 +0.7555758 0.9278974 0.5370987 +0.7751122 0.9278974 0.5370987 +0.7940252 0.9278974 0.5370987 +0.8123661 0.9278974 0.5370987 +0.8301795 0.9278974 0.5370987 +0.8475045 0.9278974 0.5370987 +0.8643761 0.9278974 0.5370987 +0.880825 0.9278974 0.5370987 +0.8968787 0.9278974 0.5370987 +0.9125621 0.9278974 0.5370987 +0.9278974 0.9278974 0.5370987 +0.9429048 0.9278974 0.5370987 +0.9576028 0.9278974 0.5370987 +0.9720079 0.9278974 0.5370987 +0.9861357 0.9278974 0.5370987 +1 0.9278974 0.5370987 +0 0.9429048 0.5370987 +0.1939468 0.9429048 0.5370987 +0.2773041 0.9429048 0.5370987 +0.3384659 0.9429048 0.5370987 +0.3885728 0.9429048 0.5370987 +0.4317928 0.9429048 0.5370987 +0.470214 0.9429048 0.5370987 +0.5050551 0.9429048 0.5370987 +0.5370987 0.9429048 0.5370987 +0.5668815 0.9429048 0.5370987 +0.5947903 0.9429048 0.5370987 +0.6211144 0.9429048 0.5370987 +0.6460766 0.9429048 0.5370987 +0.6698526 0.9429048 0.5370987 +0.6925839 0.9429048 0.5370987 +0.7143866 0.9429048 0.5370987 +0.7353569 0.9429048 0.5370987 +0.7555758 0.9429048 0.5370987 +0.7751122 0.9429048 0.5370987 +0.7940252 0.9429048 0.5370987 +0.8123661 0.9429048 0.5370987 +0.8301795 0.9429048 0.5370987 +0.8475045 0.9429048 0.5370987 +0.8643761 0.9429048 0.5370987 +0.880825 0.9429048 0.5370987 +0.8968787 0.9429048 0.5370987 +0.9125621 0.9429048 0.5370987 +0.9278974 0.9429048 0.5370987 +0.9429048 0.9429048 0.5370987 +0.9576028 0.9429048 0.5370987 +0.9720079 0.9429048 0.5370987 +0.9861357 0.9429048 0.5370987 +1 0.9429048 0.5370987 +0 0.9576028 0.5370987 +0.1939468 0.9576028 0.5370987 +0.2773041 0.9576028 0.5370987 +0.3384659 0.9576028 0.5370987 +0.3885728 0.9576028 0.5370987 +0.4317928 0.9576028 0.5370987 +0.470214 0.9576028 0.5370987 +0.5050551 0.9576028 0.5370987 +0.5370987 0.9576028 0.5370987 +0.5668815 0.9576028 0.5370987 +0.5947903 0.9576028 0.5370987 +0.6211144 0.9576028 0.5370987 +0.6460766 0.9576028 0.5370987 +0.6698526 0.9576028 0.5370987 +0.6925839 0.9576028 0.5370987 +0.7143866 0.9576028 0.5370987 +0.7353569 0.9576028 0.5370987 +0.7555758 0.9576028 0.5370987 +0.7751122 0.9576028 0.5370987 +0.7940252 0.9576028 0.5370987 +0.8123661 0.9576028 0.5370987 +0.8301795 0.9576028 0.5370987 +0.8475045 0.9576028 0.5370987 +0.8643761 0.9576028 0.5370987 +0.880825 0.9576028 0.5370987 +0.8968787 0.9576028 0.5370987 +0.9125621 0.9576028 0.5370987 +0.9278974 0.9576028 0.5370987 +0.9429048 0.9576028 0.5370987 +0.9576028 0.9576028 0.5370987 +0.9720079 0.9576028 0.5370987 +0.9861357 0.9576028 0.5370987 +1 0.9576028 0.5370987 +0 0.9720079 0.5370987 +0.1939468 0.9720079 0.5370987 +0.2773041 0.9720079 0.5370987 +0.3384659 0.9720079 0.5370987 +0.3885728 0.9720079 0.5370987 +0.4317928 0.9720079 0.5370987 +0.470214 0.9720079 0.5370987 +0.5050551 0.9720079 0.5370987 +0.5370987 0.9720079 0.5370987 +0.5668815 0.9720079 0.5370987 +0.5947903 0.9720079 0.5370987 +0.6211144 0.9720079 0.5370987 +0.6460766 0.9720079 0.5370987 +0.6698526 0.9720079 0.5370987 +0.6925839 0.9720079 0.5370987 +0.7143866 0.9720079 0.5370987 +0.7353569 0.9720079 0.5370987 +0.7555758 0.9720079 0.5370987 +0.7751122 0.9720079 0.5370987 +0.7940252 0.9720079 0.5370987 +0.8123661 0.9720079 0.5370987 +0.8301795 0.9720079 0.5370987 +0.8475045 0.9720079 0.5370987 +0.8643761 0.9720079 0.5370987 +0.880825 0.9720079 0.5370987 +0.8968787 0.9720079 0.5370987 +0.9125621 0.9720079 0.5370987 +0.9278974 0.9720079 0.5370987 +0.9429048 0.9720079 0.5370987 +0.9576028 0.9720079 0.5370987 +0.9720079 0.9720079 0.5370987 +0.9861357 0.9720079 0.5370987 +1 0.9720079 0.5370987 +0 0.9861357 0.5370987 +0.1939468 0.9861357 0.5370987 +0.2773041 0.9861357 0.5370987 +0.3384659 0.9861357 0.5370987 +0.3885728 0.9861357 0.5370987 +0.4317928 0.9861357 0.5370987 +0.470214 0.9861357 0.5370987 +0.5050551 0.9861357 0.5370987 +0.5370987 0.9861357 0.5370987 +0.5668815 0.9861357 0.5370987 +0.5947903 0.9861357 0.5370987 +0.6211144 0.9861357 0.5370987 +0.6460766 0.9861357 0.5370987 +0.6698526 0.9861357 0.5370987 +0.6925839 0.9861357 0.5370987 +0.7143866 0.9861357 0.5370987 +0.7353569 0.9861357 0.5370987 +0.7555758 0.9861357 0.5370987 +0.7751122 0.9861357 0.5370987 +0.7940252 0.9861357 0.5370987 +0.8123661 0.9861357 0.5370987 +0.8301795 0.9861357 0.5370987 +0.8475045 0.9861357 0.5370987 +0.8643761 0.9861357 0.5370987 +0.880825 0.9861357 0.5370987 +0.8968787 0.9861357 0.5370987 +0.9125621 0.9861357 0.5370987 +0.9278974 0.9861357 0.5370987 +0.9429048 0.9861357 0.5370987 +0.9576028 0.9861357 0.5370987 +0.9720079 0.9861357 0.5370987 +0.9861357 0.9861357 0.5370987 +1 0.9861357 0.5370987 +0 1 0.5370987 +0.1939468 1 0.5370987 +0.2773041 1 0.5370987 +0.3384659 1 0.5370987 +0.3885728 1 0.5370987 +0.4317928 1 0.5370987 +0.470214 1 0.5370987 +0.5050551 1 0.5370987 +0.5370987 1 0.5370987 +0.5668815 1 0.5370987 +0.5947903 1 0.5370987 +0.6211144 1 0.5370987 +0.6460766 1 0.5370987 +0.6698526 1 0.5370987 +0.6925839 1 0.5370987 +0.7143866 1 0.5370987 +0.7353569 1 0.5370987 +0.7555758 1 0.5370987 +0.7751122 1 0.5370987 +0.7940252 1 0.5370987 +0.8123661 1 0.5370987 +0.8301795 1 0.5370987 +0.8475045 1 0.5370987 +0.8643761 1 0.5370987 +0.880825 1 0.5370987 +0.8968787 1 0.5370987 +0.9125621 1 0.5370987 +0.9278974 1 0.5370987 +0.9429048 1 0.5370987 +0.9576028 1 0.5370987 +0.9720079 1 0.5370987 +0.9861357 1 0.5370987 +1 1 0.5370987 +0 0 0.5668815 +0.1939468 0 0.5668815 +0.2773041 0 0.5668815 +0.3384659 0 0.5668815 +0.3885728 0 0.5668815 +0.4317928 0 0.5668815 +0.470214 0 0.5668815 +0.5050551 0 0.5668815 +0.5370987 0 0.5668815 +0.5668815 0 0.5668815 +0.5947903 0 0.5668815 +0.6211144 0 0.5668815 +0.6460766 0 0.5668815 +0.6698526 0 0.5668815 +0.6925839 0 0.5668815 +0.7143866 0 0.5668815 +0.7353569 0 0.5668815 +0.7555758 0 0.5668815 +0.7751122 0 0.5668815 +0.7940252 0 0.5668815 +0.8123661 0 0.5668815 +0.8301795 0 0.5668815 +0.8475045 0 0.5668815 +0.8643761 0 0.5668815 +0.880825 0 0.5668815 +0.8968787 0 0.5668815 +0.9125621 0 0.5668815 +0.9278974 0 0.5668815 +0.9429048 0 0.5668815 +0.9576028 0 0.5668815 +0.9720079 0 0.5668815 +0.9861357 0 0.5668815 +1 0 0.5668815 +0 0.1939468 0.5668815 +0.1939468 0.1939468 0.5668815 +0.2773041 0.1939468 0.5668815 +0.3384659 0.1939468 0.5668815 +0.3885728 0.1939468 0.5668815 +0.4317928 0.1939468 0.5668815 +0.470214 0.1939468 0.5668815 +0.5050551 0.1939468 0.5668815 +0.5370987 0.1939468 0.5668815 +0.5668815 0.1939468 0.5668815 +0.5947903 0.1939468 0.5668815 +0.6211144 0.1939468 0.5668815 +0.6460766 0.1939468 0.5668815 +0.6698526 0.1939468 0.5668815 +0.6925839 0.1939468 0.5668815 +0.7143866 0.1939468 0.5668815 +0.7353569 0.1939468 0.5668815 +0.7555758 0.1939468 0.5668815 +0.7751122 0.1939468 0.5668815 +0.7940252 0.1939468 0.5668815 +0.8123661 0.1939468 0.5668815 +0.8301795 0.1939468 0.5668815 +0.8475045 0.1939468 0.5668815 +0.8643761 0.1939468 0.5668815 +0.880825 0.1939468 0.5668815 +0.8968787 0.1939468 0.5668815 +0.9125621 0.1939468 0.5668815 +0.9278974 0.1939468 0.5668815 +0.9429048 0.1939468 0.5668815 +0.9576028 0.1939468 0.5668815 +0.9720079 0.1939468 0.5668815 +0.9861357 0.1939468 0.5668815 +1 0.1939468 0.5668815 +0 0.2773041 0.5668815 +0.1939468 0.2773041 0.5668815 +0.2773041 0.2773041 0.5668815 +0.3384659 0.2773041 0.5668815 +0.3885728 0.2773041 0.5668815 +0.4317928 0.2773041 0.5668815 +0.470214 0.2773041 0.5668815 +0.5050551 0.2773041 0.5668815 +0.5370987 0.2773041 0.5668815 +0.5668815 0.2773041 0.5668815 +0.5947903 0.2773041 0.5668815 +0.6211144 0.2773041 0.5668815 +0.6460766 0.2773041 0.5668815 +0.6698526 0.2773041 0.5668815 +0.6925839 0.2773041 0.5668815 +0.7143866 0.2773041 0.5668815 +0.7353569 0.2773041 0.5668815 +0.7555758 0.2773041 0.5668815 +0.7751122 0.2773041 0.5668815 +0.7940252 0.2773041 0.5668815 +0.8123661 0.2773041 0.5668815 +0.8301795 0.2773041 0.5668815 +0.8475045 0.2773041 0.5668815 +0.8643761 0.2773041 0.5668815 +0.880825 0.2773041 0.5668815 +0.8968787 0.2773041 0.5668815 +0.9125621 0.2773041 0.5668815 +0.9278974 0.2773041 0.5668815 +0.9429048 0.2773041 0.5668815 +0.9576028 0.2773041 0.5668815 +0.9720079 0.2773041 0.5668815 +0.9861357 0.2773041 0.5668815 +1 0.2773041 0.5668815 +0 0.3384659 0.5668815 +0.1939468 0.3384659 0.5668815 +0.2773041 0.3384659 0.5668815 +0.3384659 0.3384659 0.5668815 +0.3885728 0.3384659 0.5668815 +0.4317928 0.3384659 0.5668815 +0.470214 0.3384659 0.5668815 +0.5050551 0.3384659 0.5668815 +0.5370987 0.3384659 0.5668815 +0.5668815 0.3384659 0.5668815 +0.5947903 0.3384659 0.5668815 +0.6211144 0.3384659 0.5668815 +0.6460766 0.3384659 0.5668815 +0.6698526 0.3384659 0.5668815 +0.6925839 0.3384659 0.5668815 +0.7143866 0.3384659 0.5668815 +0.7353569 0.3384659 0.5668815 +0.7555758 0.3384659 0.5668815 +0.7751122 0.3384659 0.5668815 +0.7940252 0.3384659 0.5668815 +0.8123661 0.3384659 0.5668815 +0.8301795 0.3384659 0.5668815 +0.8475045 0.3384659 0.5668815 +0.8643761 0.3384659 0.5668815 +0.880825 0.3384659 0.5668815 +0.8968787 0.3384659 0.5668815 +0.9125621 0.3384659 0.5668815 +0.9278974 0.3384659 0.5668815 +0.9429048 0.3384659 0.5668815 +0.9576028 0.3384659 0.5668815 +0.9720079 0.3384659 0.5668815 +0.9861357 0.3384659 0.5668815 +1 0.3384659 0.5668815 +0 0.3885728 0.5668815 +0.1939468 0.3885728 0.5668815 +0.2773041 0.3885728 0.5668815 +0.3384659 0.3885728 0.5668815 +0.3885728 0.3885728 0.5668815 +0.4317928 0.3885728 0.5668815 +0.470214 0.3885728 0.5668815 +0.5050551 0.3885728 0.5668815 +0.5370987 0.3885728 0.5668815 +0.5668815 0.3885728 0.5668815 +0.5947903 0.3885728 0.5668815 +0.6211144 0.3885728 0.5668815 +0.6460766 0.3885728 0.5668815 +0.6698526 0.3885728 0.5668815 +0.6925839 0.3885728 0.5668815 +0.7143866 0.3885728 0.5668815 +0.7353569 0.3885728 0.5668815 +0.7555758 0.3885728 0.5668815 +0.7751122 0.3885728 0.5668815 +0.7940252 0.3885728 0.5668815 +0.8123661 0.3885728 0.5668815 +0.8301795 0.3885728 0.5668815 +0.8475045 0.3885728 0.5668815 +0.8643761 0.3885728 0.5668815 +0.880825 0.3885728 0.5668815 +0.8968787 0.3885728 0.5668815 +0.9125621 0.3885728 0.5668815 +0.9278974 0.3885728 0.5668815 +0.9429048 0.3885728 0.5668815 +0.9576028 0.3885728 0.5668815 +0.9720079 0.3885728 0.5668815 +0.9861357 0.3885728 0.5668815 +1 0.3885728 0.5668815 +0 0.4317928 0.5668815 +0.1939468 0.4317928 0.5668815 +0.2773041 0.4317928 0.5668815 +0.3384659 0.4317928 0.5668815 +0.3885728 0.4317928 0.5668815 +0.4317928 0.4317928 0.5668815 +0.470214 0.4317928 0.5668815 +0.5050551 0.4317928 0.5668815 +0.5370987 0.4317928 0.5668815 +0.5668815 0.4317928 0.5668815 +0.5947903 0.4317928 0.5668815 +0.6211144 0.4317928 0.5668815 +0.6460766 0.4317928 0.5668815 +0.6698526 0.4317928 0.5668815 +0.6925839 0.4317928 0.5668815 +0.7143866 0.4317928 0.5668815 +0.7353569 0.4317928 0.5668815 +0.7555758 0.4317928 0.5668815 +0.7751122 0.4317928 0.5668815 +0.7940252 0.4317928 0.5668815 +0.8123661 0.4317928 0.5668815 +0.8301795 0.4317928 0.5668815 +0.8475045 0.4317928 0.5668815 +0.8643761 0.4317928 0.5668815 +0.880825 0.4317928 0.5668815 +0.8968787 0.4317928 0.5668815 +0.9125621 0.4317928 0.5668815 +0.9278974 0.4317928 0.5668815 +0.9429048 0.4317928 0.5668815 +0.9576028 0.4317928 0.5668815 +0.9720079 0.4317928 0.5668815 +0.9861357 0.4317928 0.5668815 +1 0.4317928 0.5668815 +0 0.470214 0.5668815 +0.1939468 0.470214 0.5668815 +0.2773041 0.470214 0.5668815 +0.3384659 0.470214 0.5668815 +0.3885728 0.470214 0.5668815 +0.4317928 0.470214 0.5668815 +0.470214 0.470214 0.5668815 +0.5050551 0.470214 0.5668815 +0.5370987 0.470214 0.5668815 +0.5668815 0.470214 0.5668815 +0.5947903 0.470214 0.5668815 +0.6211144 0.470214 0.5668815 +0.6460766 0.470214 0.5668815 +0.6698526 0.470214 0.5668815 +0.6925839 0.470214 0.5668815 +0.7143866 0.470214 0.5668815 +0.7353569 0.470214 0.5668815 +0.7555758 0.470214 0.5668815 +0.7751122 0.470214 0.5668815 +0.7940252 0.470214 0.5668815 +0.8123661 0.470214 0.5668815 +0.8301795 0.470214 0.5668815 +0.8475045 0.470214 0.5668815 +0.8643761 0.470214 0.5668815 +0.880825 0.470214 0.5668815 +0.8968787 0.470214 0.5668815 +0.9125621 0.470214 0.5668815 +0.9278974 0.470214 0.5668815 +0.9429048 0.470214 0.5668815 +0.9576028 0.470214 0.5668815 +0.9720079 0.470214 0.5668815 +0.9861357 0.470214 0.5668815 +1 0.470214 0.5668815 +0 0.5050551 0.5668815 +0.1939468 0.5050551 0.5668815 +0.2773041 0.5050551 0.5668815 +0.3384659 0.5050551 0.5668815 +0.3885728 0.5050551 0.5668815 +0.4317928 0.5050551 0.5668815 +0.470214 0.5050551 0.5668815 +0.5050551 0.5050551 0.5668815 +0.5370987 0.5050551 0.5668815 +0.5668815 0.5050551 0.5668815 +0.5947903 0.5050551 0.5668815 +0.6211144 0.5050551 0.5668815 +0.6460766 0.5050551 0.5668815 +0.6698526 0.5050551 0.5668815 +0.6925839 0.5050551 0.5668815 +0.7143866 0.5050551 0.5668815 +0.7353569 0.5050551 0.5668815 +0.7555758 0.5050551 0.5668815 +0.7751122 0.5050551 0.5668815 +0.7940252 0.5050551 0.5668815 +0.8123661 0.5050551 0.5668815 +0.8301795 0.5050551 0.5668815 +0.8475045 0.5050551 0.5668815 +0.8643761 0.5050551 0.5668815 +0.880825 0.5050551 0.5668815 +0.8968787 0.5050551 0.5668815 +0.9125621 0.5050551 0.5668815 +0.9278974 0.5050551 0.5668815 +0.9429048 0.5050551 0.5668815 +0.9576028 0.5050551 0.5668815 +0.9720079 0.5050551 0.5668815 +0.9861357 0.5050551 0.5668815 +1 0.5050551 0.5668815 +0 0.5370987 0.5668815 +0.1939468 0.5370987 0.5668815 +0.2773041 0.5370987 0.5668815 +0.3384659 0.5370987 0.5668815 +0.3885728 0.5370987 0.5668815 +0.4317928 0.5370987 0.5668815 +0.470214 0.5370987 0.5668815 +0.5050551 0.5370987 0.5668815 +0.5370987 0.5370987 0.5668815 +0.5668815 0.5370987 0.5668815 +0.5947903 0.5370987 0.5668815 +0.6211144 0.5370987 0.5668815 +0.6460766 0.5370987 0.5668815 +0.6698526 0.5370987 0.5668815 +0.6925839 0.5370987 0.5668815 +0.7143866 0.5370987 0.5668815 +0.7353569 0.5370987 0.5668815 +0.7555758 0.5370987 0.5668815 +0.7751122 0.5370987 0.5668815 +0.7940252 0.5370987 0.5668815 +0.8123661 0.5370987 0.5668815 +0.8301795 0.5370987 0.5668815 +0.8475045 0.5370987 0.5668815 +0.8643761 0.5370987 0.5668815 +0.880825 0.5370987 0.5668815 +0.8968787 0.5370987 0.5668815 +0.9125621 0.5370987 0.5668815 +0.9278974 0.5370987 0.5668815 +0.9429048 0.5370987 0.5668815 +0.9576028 0.5370987 0.5668815 +0.9720079 0.5370987 0.5668815 +0.9861357 0.5370987 0.5668815 +1 0.5370987 0.5668815 +0 0.5668815 0.5668815 +0.1939468 0.5668815 0.5668815 +0.2773041 0.5668815 0.5668815 +0.3384659 0.5668815 0.5668815 +0.3885728 0.5668815 0.5668815 +0.4317928 0.5668815 0.5668815 +0.470214 0.5668815 0.5668815 +0.5050551 0.5668815 0.5668815 +0.5370987 0.5668815 0.5668815 +0.5668815 0.5668815 0.5668815 +0.5947903 0.5668815 0.5668815 +0.6211144 0.5668815 0.5668815 +0.6460766 0.5668815 0.5668815 +0.6698526 0.5668815 0.5668815 +0.6925839 0.5668815 0.5668815 +0.7143866 0.5668815 0.5668815 +0.7353569 0.5668815 0.5668815 +0.7555758 0.5668815 0.5668815 +0.7751122 0.5668815 0.5668815 +0.7940252 0.5668815 0.5668815 +0.8123661 0.5668815 0.5668815 +0.8301795 0.5668815 0.5668815 +0.8475045 0.5668815 0.5668815 +0.8643761 0.5668815 0.5668815 +0.880825 0.5668815 0.5668815 +0.8968787 0.5668815 0.5668815 +0.9125621 0.5668815 0.5668815 +0.9278974 0.5668815 0.5668815 +0.9429048 0.5668815 0.5668815 +0.9576028 0.5668815 0.5668815 +0.9720079 0.5668815 0.5668815 +0.9861357 0.5668815 0.5668815 +1 0.5668815 0.5668815 +0 0.5947903 0.5668815 +0.1939468 0.5947903 0.5668815 +0.2773041 0.5947903 0.5668815 +0.3384659 0.5947903 0.5668815 +0.3885728 0.5947903 0.5668815 +0.4317928 0.5947903 0.5668815 +0.470214 0.5947903 0.5668815 +0.5050551 0.5947903 0.5668815 +0.5370987 0.5947903 0.5668815 +0.5668815 0.5947903 0.5668815 +0.5947903 0.5947903 0.5668815 +0.6211144 0.5947903 0.5668815 +0.6460766 0.5947903 0.5668815 +0.6698526 0.5947903 0.5668815 +0.6925839 0.5947903 0.5668815 +0.7143866 0.5947903 0.5668815 +0.7353569 0.5947903 0.5668815 +0.7555758 0.5947903 0.5668815 +0.7751122 0.5947903 0.5668815 +0.7940252 0.5947903 0.5668815 +0.8123661 0.5947903 0.5668815 +0.8301795 0.5947903 0.5668815 +0.8475045 0.5947903 0.5668815 +0.8643761 0.5947903 0.5668815 +0.880825 0.5947903 0.5668815 +0.8968787 0.5947903 0.5668815 +0.9125621 0.5947903 0.5668815 +0.9278974 0.5947903 0.5668815 +0.9429048 0.5947903 0.5668815 +0.9576028 0.5947903 0.5668815 +0.9720079 0.5947903 0.5668815 +0.9861357 0.5947903 0.5668815 +1 0.5947903 0.5668815 +0 0.6211144 0.5668815 +0.1939468 0.6211144 0.5668815 +0.2773041 0.6211144 0.5668815 +0.3384659 0.6211144 0.5668815 +0.3885728 0.6211144 0.5668815 +0.4317928 0.6211144 0.5668815 +0.470214 0.6211144 0.5668815 +0.5050551 0.6211144 0.5668815 +0.5370987 0.6211144 0.5668815 +0.5668815 0.6211144 0.5668815 +0.5947903 0.6211144 0.5668815 +0.6211144 0.6211144 0.5668815 +0.6460766 0.6211144 0.5668815 +0.6698526 0.6211144 0.5668815 +0.6925839 0.6211144 0.5668815 +0.7143866 0.6211144 0.5668815 +0.7353569 0.6211144 0.5668815 +0.7555758 0.6211144 0.5668815 +0.7751122 0.6211144 0.5668815 +0.7940252 0.6211144 0.5668815 +0.8123661 0.6211144 0.5668815 +0.8301795 0.6211144 0.5668815 +0.8475045 0.6211144 0.5668815 +0.8643761 0.6211144 0.5668815 +0.880825 0.6211144 0.5668815 +0.8968787 0.6211144 0.5668815 +0.9125621 0.6211144 0.5668815 +0.9278974 0.6211144 0.5668815 +0.9429048 0.6211144 0.5668815 +0.9576028 0.6211144 0.5668815 +0.9720079 0.6211144 0.5668815 +0.9861357 0.6211144 0.5668815 +1 0.6211144 0.5668815 +0 0.6460766 0.5668815 +0.1939468 0.6460766 0.5668815 +0.2773041 0.6460766 0.5668815 +0.3384659 0.6460766 0.5668815 +0.3885728 0.6460766 0.5668815 +0.4317928 0.6460766 0.5668815 +0.470214 0.6460766 0.5668815 +0.5050551 0.6460766 0.5668815 +0.5370987 0.6460766 0.5668815 +0.5668815 0.6460766 0.5668815 +0.5947903 0.6460766 0.5668815 +0.6211144 0.6460766 0.5668815 +0.6460766 0.6460766 0.5668815 +0.6698526 0.6460766 0.5668815 +0.6925839 0.6460766 0.5668815 +0.7143866 0.6460766 0.5668815 +0.7353569 0.6460766 0.5668815 +0.7555758 0.6460766 0.5668815 +0.7751122 0.6460766 0.5668815 +0.7940252 0.6460766 0.5668815 +0.8123661 0.6460766 0.5668815 +0.8301795 0.6460766 0.5668815 +0.8475045 0.6460766 0.5668815 +0.8643761 0.6460766 0.5668815 +0.880825 0.6460766 0.5668815 +0.8968787 0.6460766 0.5668815 +0.9125621 0.6460766 0.5668815 +0.9278974 0.6460766 0.5668815 +0.9429048 0.6460766 0.5668815 +0.9576028 0.6460766 0.5668815 +0.9720079 0.6460766 0.5668815 +0.9861357 0.6460766 0.5668815 +1 0.6460766 0.5668815 +0 0.6698526 0.5668815 +0.1939468 0.6698526 0.5668815 +0.2773041 0.6698526 0.5668815 +0.3384659 0.6698526 0.5668815 +0.3885728 0.6698526 0.5668815 +0.4317928 0.6698526 0.5668815 +0.470214 0.6698526 0.5668815 +0.5050551 0.6698526 0.5668815 +0.5370987 0.6698526 0.5668815 +0.5668815 0.6698526 0.5668815 +0.5947903 0.6698526 0.5668815 +0.6211144 0.6698526 0.5668815 +0.6460766 0.6698526 0.5668815 +0.6698526 0.6698526 0.5668815 +0.6925839 0.6698526 0.5668815 +0.7143866 0.6698526 0.5668815 +0.7353569 0.6698526 0.5668815 +0.7555758 0.6698526 0.5668815 +0.7751122 0.6698526 0.5668815 +0.7940252 0.6698526 0.5668815 +0.8123661 0.6698526 0.5668815 +0.8301795 0.6698526 0.5668815 +0.8475045 0.6698526 0.5668815 +0.8643761 0.6698526 0.5668815 +0.880825 0.6698526 0.5668815 +0.8968787 0.6698526 0.5668815 +0.9125621 0.6698526 0.5668815 +0.9278974 0.6698526 0.5668815 +0.9429048 0.6698526 0.5668815 +0.9576028 0.6698526 0.5668815 +0.9720079 0.6698526 0.5668815 +0.9861357 0.6698526 0.5668815 +1 0.6698526 0.5668815 +0 0.6925839 0.5668815 +0.1939468 0.6925839 0.5668815 +0.2773041 0.6925839 0.5668815 +0.3384659 0.6925839 0.5668815 +0.3885728 0.6925839 0.5668815 +0.4317928 0.6925839 0.5668815 +0.470214 0.6925839 0.5668815 +0.5050551 0.6925839 0.5668815 +0.5370987 0.6925839 0.5668815 +0.5668815 0.6925839 0.5668815 +0.5947903 0.6925839 0.5668815 +0.6211144 0.6925839 0.5668815 +0.6460766 0.6925839 0.5668815 +0.6698526 0.6925839 0.5668815 +0.6925839 0.6925839 0.5668815 +0.7143866 0.6925839 0.5668815 +0.7353569 0.6925839 0.5668815 +0.7555758 0.6925839 0.5668815 +0.7751122 0.6925839 0.5668815 +0.7940252 0.6925839 0.5668815 +0.8123661 0.6925839 0.5668815 +0.8301795 0.6925839 0.5668815 +0.8475045 0.6925839 0.5668815 +0.8643761 0.6925839 0.5668815 +0.880825 0.6925839 0.5668815 +0.8968787 0.6925839 0.5668815 +0.9125621 0.6925839 0.5668815 +0.9278974 0.6925839 0.5668815 +0.9429048 0.6925839 0.5668815 +0.9576028 0.6925839 0.5668815 +0.9720079 0.6925839 0.5668815 +0.9861357 0.6925839 0.5668815 +1 0.6925839 0.5668815 +0 0.7143866 0.5668815 +0.1939468 0.7143866 0.5668815 +0.2773041 0.7143866 0.5668815 +0.3384659 0.7143866 0.5668815 +0.3885728 0.7143866 0.5668815 +0.4317928 0.7143866 0.5668815 +0.470214 0.7143866 0.5668815 +0.5050551 0.7143866 0.5668815 +0.5370987 0.7143866 0.5668815 +0.5668815 0.7143866 0.5668815 +0.5947903 0.7143866 0.5668815 +0.6211144 0.7143866 0.5668815 +0.6460766 0.7143866 0.5668815 +0.6698526 0.7143866 0.5668815 +0.6925839 0.7143866 0.5668815 +0.7143866 0.7143866 0.5668815 +0.7353569 0.7143866 0.5668815 +0.7555758 0.7143866 0.5668815 +0.7751122 0.7143866 0.5668815 +0.7940252 0.7143866 0.5668815 +0.8123661 0.7143866 0.5668815 +0.8301795 0.7143866 0.5668815 +0.8475045 0.7143866 0.5668815 +0.8643761 0.7143866 0.5668815 +0.880825 0.7143866 0.5668815 +0.8968787 0.7143866 0.5668815 +0.9125621 0.7143866 0.5668815 +0.9278974 0.7143866 0.5668815 +0.9429048 0.7143866 0.5668815 +0.9576028 0.7143866 0.5668815 +0.9720079 0.7143866 0.5668815 +0.9861357 0.7143866 0.5668815 +1 0.7143866 0.5668815 +0 0.7353569 0.5668815 +0.1939468 0.7353569 0.5668815 +0.2773041 0.7353569 0.5668815 +0.3384659 0.7353569 0.5668815 +0.3885728 0.7353569 0.5668815 +0.4317928 0.7353569 0.5668815 +0.470214 0.7353569 0.5668815 +0.5050551 0.7353569 0.5668815 +0.5370987 0.7353569 0.5668815 +0.5668815 0.7353569 0.5668815 +0.5947903 0.7353569 0.5668815 +0.6211144 0.7353569 0.5668815 +0.6460766 0.7353569 0.5668815 +0.6698526 0.7353569 0.5668815 +0.6925839 0.7353569 0.5668815 +0.7143866 0.7353569 0.5668815 +0.7353569 0.7353569 0.5668815 +0.7555758 0.7353569 0.5668815 +0.7751122 0.7353569 0.5668815 +0.7940252 0.7353569 0.5668815 +0.8123661 0.7353569 0.5668815 +0.8301795 0.7353569 0.5668815 +0.8475045 0.7353569 0.5668815 +0.8643761 0.7353569 0.5668815 +0.880825 0.7353569 0.5668815 +0.8968787 0.7353569 0.5668815 +0.9125621 0.7353569 0.5668815 +0.9278974 0.7353569 0.5668815 +0.9429048 0.7353569 0.5668815 +0.9576028 0.7353569 0.5668815 +0.9720079 0.7353569 0.5668815 +0.9861357 0.7353569 0.5668815 +1 0.7353569 0.5668815 +0 0.7555758 0.5668815 +0.1939468 0.7555758 0.5668815 +0.2773041 0.7555758 0.5668815 +0.3384659 0.7555758 0.5668815 +0.3885728 0.7555758 0.5668815 +0.4317928 0.7555758 0.5668815 +0.470214 0.7555758 0.5668815 +0.5050551 0.7555758 0.5668815 +0.5370987 0.7555758 0.5668815 +0.5668815 0.7555758 0.5668815 +0.5947903 0.7555758 0.5668815 +0.6211144 0.7555758 0.5668815 +0.6460766 0.7555758 0.5668815 +0.6698526 0.7555758 0.5668815 +0.6925839 0.7555758 0.5668815 +0.7143866 0.7555758 0.5668815 +0.7353569 0.7555758 0.5668815 +0.7555758 0.7555758 0.5668815 +0.7751122 0.7555758 0.5668815 +0.7940252 0.7555758 0.5668815 +0.8123661 0.7555758 0.5668815 +0.8301795 0.7555758 0.5668815 +0.8475045 0.7555758 0.5668815 +0.8643761 0.7555758 0.5668815 +0.880825 0.7555758 0.5668815 +0.8968787 0.7555758 0.5668815 +0.9125621 0.7555758 0.5668815 +0.9278974 0.7555758 0.5668815 +0.9429048 0.7555758 0.5668815 +0.9576028 0.7555758 0.5668815 +0.9720079 0.7555758 0.5668815 +0.9861357 0.7555758 0.5668815 +1 0.7555758 0.5668815 +0 0.7751122 0.5668815 +0.1939468 0.7751122 0.5668815 +0.2773041 0.7751122 0.5668815 +0.3384659 0.7751122 0.5668815 +0.3885728 0.7751122 0.5668815 +0.4317928 0.7751122 0.5668815 +0.470214 0.7751122 0.5668815 +0.5050551 0.7751122 0.5668815 +0.5370987 0.7751122 0.5668815 +0.5668815 0.7751122 0.5668815 +0.5947903 0.7751122 0.5668815 +0.6211144 0.7751122 0.5668815 +0.6460766 0.7751122 0.5668815 +0.6698526 0.7751122 0.5668815 +0.6925839 0.7751122 0.5668815 +0.7143866 0.7751122 0.5668815 +0.7353569 0.7751122 0.5668815 +0.7555758 0.7751122 0.5668815 +0.7751122 0.7751122 0.5668815 +0.7940252 0.7751122 0.5668815 +0.8123661 0.7751122 0.5668815 +0.8301795 0.7751122 0.5668815 +0.8475045 0.7751122 0.5668815 +0.8643761 0.7751122 0.5668815 +0.880825 0.7751122 0.5668815 +0.8968787 0.7751122 0.5668815 +0.9125621 0.7751122 0.5668815 +0.9278974 0.7751122 0.5668815 +0.9429048 0.7751122 0.5668815 +0.9576028 0.7751122 0.5668815 +0.9720079 0.7751122 0.5668815 +0.9861357 0.7751122 0.5668815 +1 0.7751122 0.5668815 +0 0.7940252 0.5668815 +0.1939468 0.7940252 0.5668815 +0.2773041 0.7940252 0.5668815 +0.3384659 0.7940252 0.5668815 +0.3885728 0.7940252 0.5668815 +0.4317928 0.7940252 0.5668815 +0.470214 0.7940252 0.5668815 +0.5050551 0.7940252 0.5668815 +0.5370987 0.7940252 0.5668815 +0.5668815 0.7940252 0.5668815 +0.5947903 0.7940252 0.5668815 +0.6211144 0.7940252 0.5668815 +0.6460766 0.7940252 0.5668815 +0.6698526 0.7940252 0.5668815 +0.6925839 0.7940252 0.5668815 +0.7143866 0.7940252 0.5668815 +0.7353569 0.7940252 0.5668815 +0.7555758 0.7940252 0.5668815 +0.7751122 0.7940252 0.5668815 +0.7940252 0.7940252 0.5668815 +0.8123661 0.7940252 0.5668815 +0.8301795 0.7940252 0.5668815 +0.8475045 0.7940252 0.5668815 +0.8643761 0.7940252 0.5668815 +0.880825 0.7940252 0.5668815 +0.8968787 0.7940252 0.5668815 +0.9125621 0.7940252 0.5668815 +0.9278974 0.7940252 0.5668815 +0.9429048 0.7940252 0.5668815 +0.9576028 0.7940252 0.5668815 +0.9720079 0.7940252 0.5668815 +0.9861357 0.7940252 0.5668815 +1 0.7940252 0.5668815 +0 0.8123661 0.5668815 +0.1939468 0.8123661 0.5668815 +0.2773041 0.8123661 0.5668815 +0.3384659 0.8123661 0.5668815 +0.3885728 0.8123661 0.5668815 +0.4317928 0.8123661 0.5668815 +0.470214 0.8123661 0.5668815 +0.5050551 0.8123661 0.5668815 +0.5370987 0.8123661 0.5668815 +0.5668815 0.8123661 0.5668815 +0.5947903 0.8123661 0.5668815 +0.6211144 0.8123661 0.5668815 +0.6460766 0.8123661 0.5668815 +0.6698526 0.8123661 0.5668815 +0.6925839 0.8123661 0.5668815 +0.7143866 0.8123661 0.5668815 +0.7353569 0.8123661 0.5668815 +0.7555758 0.8123661 0.5668815 +0.7751122 0.8123661 0.5668815 +0.7940252 0.8123661 0.5668815 +0.8123661 0.8123661 0.5668815 +0.8301795 0.8123661 0.5668815 +0.8475045 0.8123661 0.5668815 +0.8643761 0.8123661 0.5668815 +0.880825 0.8123661 0.5668815 +0.8968787 0.8123661 0.5668815 +0.9125621 0.8123661 0.5668815 +0.9278974 0.8123661 0.5668815 +0.9429048 0.8123661 0.5668815 +0.9576028 0.8123661 0.5668815 +0.9720079 0.8123661 0.5668815 +0.9861357 0.8123661 0.5668815 +1 0.8123661 0.5668815 +0 0.8301795 0.5668815 +0.1939468 0.8301795 0.5668815 +0.2773041 0.8301795 0.5668815 +0.3384659 0.8301795 0.5668815 +0.3885728 0.8301795 0.5668815 +0.4317928 0.8301795 0.5668815 +0.470214 0.8301795 0.5668815 +0.5050551 0.8301795 0.5668815 +0.5370987 0.8301795 0.5668815 +0.5668815 0.8301795 0.5668815 +0.5947903 0.8301795 0.5668815 +0.6211144 0.8301795 0.5668815 +0.6460766 0.8301795 0.5668815 +0.6698526 0.8301795 0.5668815 +0.6925839 0.8301795 0.5668815 +0.7143866 0.8301795 0.5668815 +0.7353569 0.8301795 0.5668815 +0.7555758 0.8301795 0.5668815 +0.7751122 0.8301795 0.5668815 +0.7940252 0.8301795 0.5668815 +0.8123661 0.8301795 0.5668815 +0.8301795 0.8301795 0.5668815 +0.8475045 0.8301795 0.5668815 +0.8643761 0.8301795 0.5668815 +0.880825 0.8301795 0.5668815 +0.8968787 0.8301795 0.5668815 +0.9125621 0.8301795 0.5668815 +0.9278974 0.8301795 0.5668815 +0.9429048 0.8301795 0.5668815 +0.9576028 0.8301795 0.5668815 +0.9720079 0.8301795 0.5668815 +0.9861357 0.8301795 0.5668815 +1 0.8301795 0.5668815 +0 0.8475045 0.5668815 +0.1939468 0.8475045 0.5668815 +0.2773041 0.8475045 0.5668815 +0.3384659 0.8475045 0.5668815 +0.3885728 0.8475045 0.5668815 +0.4317928 0.8475045 0.5668815 +0.470214 0.8475045 0.5668815 +0.5050551 0.8475045 0.5668815 +0.5370987 0.8475045 0.5668815 +0.5668815 0.8475045 0.5668815 +0.5947903 0.8475045 0.5668815 +0.6211144 0.8475045 0.5668815 +0.6460766 0.8475045 0.5668815 +0.6698526 0.8475045 0.5668815 +0.6925839 0.8475045 0.5668815 +0.7143866 0.8475045 0.5668815 +0.7353569 0.8475045 0.5668815 +0.7555758 0.8475045 0.5668815 +0.7751122 0.8475045 0.5668815 +0.7940252 0.8475045 0.5668815 +0.8123661 0.8475045 0.5668815 +0.8301795 0.8475045 0.5668815 +0.8475045 0.8475045 0.5668815 +0.8643761 0.8475045 0.5668815 +0.880825 0.8475045 0.5668815 +0.8968787 0.8475045 0.5668815 +0.9125621 0.8475045 0.5668815 +0.9278974 0.8475045 0.5668815 +0.9429048 0.8475045 0.5668815 +0.9576028 0.8475045 0.5668815 +0.9720079 0.8475045 0.5668815 +0.9861357 0.8475045 0.5668815 +1 0.8475045 0.5668815 +0 0.8643761 0.5668815 +0.1939468 0.8643761 0.5668815 +0.2773041 0.8643761 0.5668815 +0.3384659 0.8643761 0.5668815 +0.3885728 0.8643761 0.5668815 +0.4317928 0.8643761 0.5668815 +0.470214 0.8643761 0.5668815 +0.5050551 0.8643761 0.5668815 +0.5370987 0.8643761 0.5668815 +0.5668815 0.8643761 0.5668815 +0.5947903 0.8643761 0.5668815 +0.6211144 0.8643761 0.5668815 +0.6460766 0.8643761 0.5668815 +0.6698526 0.8643761 0.5668815 +0.6925839 0.8643761 0.5668815 +0.7143866 0.8643761 0.5668815 +0.7353569 0.8643761 0.5668815 +0.7555758 0.8643761 0.5668815 +0.7751122 0.8643761 0.5668815 +0.7940252 0.8643761 0.5668815 +0.8123661 0.8643761 0.5668815 +0.8301795 0.8643761 0.5668815 +0.8475045 0.8643761 0.5668815 +0.8643761 0.8643761 0.5668815 +0.880825 0.8643761 0.5668815 +0.8968787 0.8643761 0.5668815 +0.9125621 0.8643761 0.5668815 +0.9278974 0.8643761 0.5668815 +0.9429048 0.8643761 0.5668815 +0.9576028 0.8643761 0.5668815 +0.9720079 0.8643761 0.5668815 +0.9861357 0.8643761 0.5668815 +1 0.8643761 0.5668815 +0 0.880825 0.5668815 +0.1939468 0.880825 0.5668815 +0.2773041 0.880825 0.5668815 +0.3384659 0.880825 0.5668815 +0.3885728 0.880825 0.5668815 +0.4317928 0.880825 0.5668815 +0.470214 0.880825 0.5668815 +0.5050551 0.880825 0.5668815 +0.5370987 0.880825 0.5668815 +0.5668815 0.880825 0.5668815 +0.5947903 0.880825 0.5668815 +0.6211144 0.880825 0.5668815 +0.6460766 0.880825 0.5668815 +0.6698526 0.880825 0.5668815 +0.6925839 0.880825 0.5668815 +0.7143866 0.880825 0.5668815 +0.7353569 0.880825 0.5668815 +0.7555758 0.880825 0.5668815 +0.7751122 0.880825 0.5668815 +0.7940252 0.880825 0.5668815 +0.8123661 0.880825 0.5668815 +0.8301795 0.880825 0.5668815 +0.8475045 0.880825 0.5668815 +0.8643761 0.880825 0.5668815 +0.880825 0.880825 0.5668815 +0.8968787 0.880825 0.5668815 +0.9125621 0.880825 0.5668815 +0.9278974 0.880825 0.5668815 +0.9429048 0.880825 0.5668815 +0.9576028 0.880825 0.5668815 +0.9720079 0.880825 0.5668815 +0.9861357 0.880825 0.5668815 +1 0.880825 0.5668815 +0 0.8968787 0.5668815 +0.1939468 0.8968787 0.5668815 +0.2773041 0.8968787 0.5668815 +0.3384659 0.8968787 0.5668815 +0.3885728 0.8968787 0.5668815 +0.4317928 0.8968787 0.5668815 +0.470214 0.8968787 0.5668815 +0.5050551 0.8968787 0.5668815 +0.5370987 0.8968787 0.5668815 +0.5668815 0.8968787 0.5668815 +0.5947903 0.8968787 0.5668815 +0.6211144 0.8968787 0.5668815 +0.6460766 0.8968787 0.5668815 +0.6698526 0.8968787 0.5668815 +0.6925839 0.8968787 0.5668815 +0.7143866 0.8968787 0.5668815 +0.7353569 0.8968787 0.5668815 +0.7555758 0.8968787 0.5668815 +0.7751122 0.8968787 0.5668815 +0.7940252 0.8968787 0.5668815 +0.8123661 0.8968787 0.5668815 +0.8301795 0.8968787 0.5668815 +0.8475045 0.8968787 0.5668815 +0.8643761 0.8968787 0.5668815 +0.880825 0.8968787 0.5668815 +0.8968787 0.8968787 0.5668815 +0.9125621 0.8968787 0.5668815 +0.9278974 0.8968787 0.5668815 +0.9429048 0.8968787 0.5668815 +0.9576028 0.8968787 0.5668815 +0.9720079 0.8968787 0.5668815 +0.9861357 0.8968787 0.5668815 +1 0.8968787 0.5668815 +0 0.9125621 0.5668815 +0.1939468 0.9125621 0.5668815 +0.2773041 0.9125621 0.5668815 +0.3384659 0.9125621 0.5668815 +0.3885728 0.9125621 0.5668815 +0.4317928 0.9125621 0.5668815 +0.470214 0.9125621 0.5668815 +0.5050551 0.9125621 0.5668815 +0.5370987 0.9125621 0.5668815 +0.5668815 0.9125621 0.5668815 +0.5947903 0.9125621 0.5668815 +0.6211144 0.9125621 0.5668815 +0.6460766 0.9125621 0.5668815 +0.6698526 0.9125621 0.5668815 +0.6925839 0.9125621 0.5668815 +0.7143866 0.9125621 0.5668815 +0.7353569 0.9125621 0.5668815 +0.7555758 0.9125621 0.5668815 +0.7751122 0.9125621 0.5668815 +0.7940252 0.9125621 0.5668815 +0.8123661 0.9125621 0.5668815 +0.8301795 0.9125621 0.5668815 +0.8475045 0.9125621 0.5668815 +0.8643761 0.9125621 0.5668815 +0.880825 0.9125621 0.5668815 +0.8968787 0.9125621 0.5668815 +0.9125621 0.9125621 0.5668815 +0.9278974 0.9125621 0.5668815 +0.9429048 0.9125621 0.5668815 +0.9576028 0.9125621 0.5668815 +0.9720079 0.9125621 0.5668815 +0.9861357 0.9125621 0.5668815 +1 0.9125621 0.5668815 +0 0.9278974 0.5668815 +0.1939468 0.9278974 0.5668815 +0.2773041 0.9278974 0.5668815 +0.3384659 0.9278974 0.5668815 +0.3885728 0.9278974 0.5668815 +0.4317928 0.9278974 0.5668815 +0.470214 0.9278974 0.5668815 +0.5050551 0.9278974 0.5668815 +0.5370987 0.9278974 0.5668815 +0.5668815 0.9278974 0.5668815 +0.5947903 0.9278974 0.5668815 +0.6211144 0.9278974 0.5668815 +0.6460766 0.9278974 0.5668815 +0.6698526 0.9278974 0.5668815 +0.6925839 0.9278974 0.5668815 +0.7143866 0.9278974 0.5668815 +0.7353569 0.9278974 0.5668815 +0.7555758 0.9278974 0.5668815 +0.7751122 0.9278974 0.5668815 +0.7940252 0.9278974 0.5668815 +0.8123661 0.9278974 0.5668815 +0.8301795 0.9278974 0.5668815 +0.8475045 0.9278974 0.5668815 +0.8643761 0.9278974 0.5668815 +0.880825 0.9278974 0.5668815 +0.8968787 0.9278974 0.5668815 +0.9125621 0.9278974 0.5668815 +0.9278974 0.9278974 0.5668815 +0.9429048 0.9278974 0.5668815 +0.9576028 0.9278974 0.5668815 +0.9720079 0.9278974 0.5668815 +0.9861357 0.9278974 0.5668815 +1 0.9278974 0.5668815 +0 0.9429048 0.5668815 +0.1939468 0.9429048 0.5668815 +0.2773041 0.9429048 0.5668815 +0.3384659 0.9429048 0.5668815 +0.3885728 0.9429048 0.5668815 +0.4317928 0.9429048 0.5668815 +0.470214 0.9429048 0.5668815 +0.5050551 0.9429048 0.5668815 +0.5370987 0.9429048 0.5668815 +0.5668815 0.9429048 0.5668815 +0.5947903 0.9429048 0.5668815 +0.6211144 0.9429048 0.5668815 +0.6460766 0.9429048 0.5668815 +0.6698526 0.9429048 0.5668815 +0.6925839 0.9429048 0.5668815 +0.7143866 0.9429048 0.5668815 +0.7353569 0.9429048 0.5668815 +0.7555758 0.9429048 0.5668815 +0.7751122 0.9429048 0.5668815 +0.7940252 0.9429048 0.5668815 +0.8123661 0.9429048 0.5668815 +0.8301795 0.9429048 0.5668815 +0.8475045 0.9429048 0.5668815 +0.8643761 0.9429048 0.5668815 +0.880825 0.9429048 0.5668815 +0.8968787 0.9429048 0.5668815 +0.9125621 0.9429048 0.5668815 +0.9278974 0.9429048 0.5668815 +0.9429048 0.9429048 0.5668815 +0.9576028 0.9429048 0.5668815 +0.9720079 0.9429048 0.5668815 +0.9861357 0.9429048 0.5668815 +1 0.9429048 0.5668815 +0 0.9576028 0.5668815 +0.1939468 0.9576028 0.5668815 +0.2773041 0.9576028 0.5668815 +0.3384659 0.9576028 0.5668815 +0.3885728 0.9576028 0.5668815 +0.4317928 0.9576028 0.5668815 +0.470214 0.9576028 0.5668815 +0.5050551 0.9576028 0.5668815 +0.5370987 0.9576028 0.5668815 +0.5668815 0.9576028 0.5668815 +0.5947903 0.9576028 0.5668815 +0.6211144 0.9576028 0.5668815 +0.6460766 0.9576028 0.5668815 +0.6698526 0.9576028 0.5668815 +0.6925839 0.9576028 0.5668815 +0.7143866 0.9576028 0.5668815 +0.7353569 0.9576028 0.5668815 +0.7555758 0.9576028 0.5668815 +0.7751122 0.9576028 0.5668815 +0.7940252 0.9576028 0.5668815 +0.8123661 0.9576028 0.5668815 +0.8301795 0.9576028 0.5668815 +0.8475045 0.9576028 0.5668815 +0.8643761 0.9576028 0.5668815 +0.880825 0.9576028 0.5668815 +0.8968787 0.9576028 0.5668815 +0.9125621 0.9576028 0.5668815 +0.9278974 0.9576028 0.5668815 +0.9429048 0.9576028 0.5668815 +0.9576028 0.9576028 0.5668815 +0.9720079 0.9576028 0.5668815 +0.9861357 0.9576028 0.5668815 +1 0.9576028 0.5668815 +0 0.9720079 0.5668815 +0.1939468 0.9720079 0.5668815 +0.2773041 0.9720079 0.5668815 +0.3384659 0.9720079 0.5668815 +0.3885728 0.9720079 0.5668815 +0.4317928 0.9720079 0.5668815 +0.470214 0.9720079 0.5668815 +0.5050551 0.9720079 0.5668815 +0.5370987 0.9720079 0.5668815 +0.5668815 0.9720079 0.5668815 +0.5947903 0.9720079 0.5668815 +0.6211144 0.9720079 0.5668815 +0.6460766 0.9720079 0.5668815 +0.6698526 0.9720079 0.5668815 +0.6925839 0.9720079 0.5668815 +0.7143866 0.9720079 0.5668815 +0.7353569 0.9720079 0.5668815 +0.7555758 0.9720079 0.5668815 +0.7751122 0.9720079 0.5668815 +0.7940252 0.9720079 0.5668815 +0.8123661 0.9720079 0.5668815 +0.8301795 0.9720079 0.5668815 +0.8475045 0.9720079 0.5668815 +0.8643761 0.9720079 0.5668815 +0.880825 0.9720079 0.5668815 +0.8968787 0.9720079 0.5668815 +0.9125621 0.9720079 0.5668815 +0.9278974 0.9720079 0.5668815 +0.9429048 0.9720079 0.5668815 +0.9576028 0.9720079 0.5668815 +0.9720079 0.9720079 0.5668815 +0.9861357 0.9720079 0.5668815 +1 0.9720079 0.5668815 +0 0.9861357 0.5668815 +0.1939468 0.9861357 0.5668815 +0.2773041 0.9861357 0.5668815 +0.3384659 0.9861357 0.5668815 +0.3885728 0.9861357 0.5668815 +0.4317928 0.9861357 0.5668815 +0.470214 0.9861357 0.5668815 +0.5050551 0.9861357 0.5668815 +0.5370987 0.9861357 0.5668815 +0.5668815 0.9861357 0.5668815 +0.5947903 0.9861357 0.5668815 +0.6211144 0.9861357 0.5668815 +0.6460766 0.9861357 0.5668815 +0.6698526 0.9861357 0.5668815 +0.6925839 0.9861357 0.5668815 +0.7143866 0.9861357 0.5668815 +0.7353569 0.9861357 0.5668815 +0.7555758 0.9861357 0.5668815 +0.7751122 0.9861357 0.5668815 +0.7940252 0.9861357 0.5668815 +0.8123661 0.9861357 0.5668815 +0.8301795 0.9861357 0.5668815 +0.8475045 0.9861357 0.5668815 +0.8643761 0.9861357 0.5668815 +0.880825 0.9861357 0.5668815 +0.8968787 0.9861357 0.5668815 +0.9125621 0.9861357 0.5668815 +0.9278974 0.9861357 0.5668815 +0.9429048 0.9861357 0.5668815 +0.9576028 0.9861357 0.5668815 +0.9720079 0.9861357 0.5668815 +0.9861357 0.9861357 0.5668815 +1 0.9861357 0.5668815 +0 1 0.5668815 +0.1939468 1 0.5668815 +0.2773041 1 0.5668815 +0.3384659 1 0.5668815 +0.3885728 1 0.5668815 +0.4317928 1 0.5668815 +0.470214 1 0.5668815 +0.5050551 1 0.5668815 +0.5370987 1 0.5668815 +0.5668815 1 0.5668815 +0.5947903 1 0.5668815 +0.6211144 1 0.5668815 +0.6460766 1 0.5668815 +0.6698526 1 0.5668815 +0.6925839 1 0.5668815 +0.7143866 1 0.5668815 +0.7353569 1 0.5668815 +0.7555758 1 0.5668815 +0.7751122 1 0.5668815 +0.7940252 1 0.5668815 +0.8123661 1 0.5668815 +0.8301795 1 0.5668815 +0.8475045 1 0.5668815 +0.8643761 1 0.5668815 +0.880825 1 0.5668815 +0.8968787 1 0.5668815 +0.9125621 1 0.5668815 +0.9278974 1 0.5668815 +0.9429048 1 0.5668815 +0.9576028 1 0.5668815 +0.9720079 1 0.5668815 +0.9861357 1 0.5668815 +1 1 0.5668815 +0 0 0.5947903 +0.1939468 0 0.5947903 +0.2773041 0 0.5947903 +0.3384659 0 0.5947903 +0.3885728 0 0.5947903 +0.4317928 0 0.5947903 +0.470214 0 0.5947903 +0.5050551 0 0.5947903 +0.5370987 0 0.5947903 +0.5668815 0 0.5947903 +0.5947903 0 0.5947903 +0.6211144 0 0.5947903 +0.6460766 0 0.5947903 +0.6698526 0 0.5947903 +0.6925839 0 0.5947903 +0.7143866 0 0.5947903 +0.7353569 0 0.5947903 +0.7555758 0 0.5947903 +0.7751122 0 0.5947903 +0.7940252 0 0.5947903 +0.8123661 0 0.5947903 +0.8301795 0 0.5947903 +0.8475045 0 0.5947903 +0.8643761 0 0.5947903 +0.880825 0 0.5947903 +0.8968787 0 0.5947903 +0.9125621 0 0.5947903 +0.9278974 0 0.5947903 +0.9429048 0 0.5947903 +0.9576028 0 0.5947903 +0.9720079 0 0.5947903 +0.9861357 0 0.5947903 +1 0 0.5947903 +0 0.1939468 0.5947903 +0.1939468 0.1939468 0.5947903 +0.2773041 0.1939468 0.5947903 +0.3384659 0.1939468 0.5947903 +0.3885728 0.1939468 0.5947903 +0.4317928 0.1939468 0.5947903 +0.470214 0.1939468 0.5947903 +0.5050551 0.1939468 0.5947903 +0.5370987 0.1939468 0.5947903 +0.5668815 0.1939468 0.5947903 +0.5947903 0.1939468 0.5947903 +0.6211144 0.1939468 0.5947903 +0.6460766 0.1939468 0.5947903 +0.6698526 0.1939468 0.5947903 +0.6925839 0.1939468 0.5947903 +0.7143866 0.1939468 0.5947903 +0.7353569 0.1939468 0.5947903 +0.7555758 0.1939468 0.5947903 +0.7751122 0.1939468 0.5947903 +0.7940252 0.1939468 0.5947903 +0.8123661 0.1939468 0.5947903 +0.8301795 0.1939468 0.5947903 +0.8475045 0.1939468 0.5947903 +0.8643761 0.1939468 0.5947903 +0.880825 0.1939468 0.5947903 +0.8968787 0.1939468 0.5947903 +0.9125621 0.1939468 0.5947903 +0.9278974 0.1939468 0.5947903 +0.9429048 0.1939468 0.5947903 +0.9576028 0.1939468 0.5947903 +0.9720079 0.1939468 0.5947903 +0.9861357 0.1939468 0.5947903 +1 0.1939468 0.5947903 +0 0.2773041 0.5947903 +0.1939468 0.2773041 0.5947903 +0.2773041 0.2773041 0.5947903 +0.3384659 0.2773041 0.5947903 +0.3885728 0.2773041 0.5947903 +0.4317928 0.2773041 0.5947903 +0.470214 0.2773041 0.5947903 +0.5050551 0.2773041 0.5947903 +0.5370987 0.2773041 0.5947903 +0.5668815 0.2773041 0.5947903 +0.5947903 0.2773041 0.5947903 +0.6211144 0.2773041 0.5947903 +0.6460766 0.2773041 0.5947903 +0.6698526 0.2773041 0.5947903 +0.6925839 0.2773041 0.5947903 +0.7143866 0.2773041 0.5947903 +0.7353569 0.2773041 0.5947903 +0.7555758 0.2773041 0.5947903 +0.7751122 0.2773041 0.5947903 +0.7940252 0.2773041 0.5947903 +0.8123661 0.2773041 0.5947903 +0.8301795 0.2773041 0.5947903 +0.8475045 0.2773041 0.5947903 +0.8643761 0.2773041 0.5947903 +0.880825 0.2773041 0.5947903 +0.8968787 0.2773041 0.5947903 +0.9125621 0.2773041 0.5947903 +0.9278974 0.2773041 0.5947903 +0.9429048 0.2773041 0.5947903 +0.9576028 0.2773041 0.5947903 +0.9720079 0.2773041 0.5947903 +0.9861357 0.2773041 0.5947903 +1 0.2773041 0.5947903 +0 0.3384659 0.5947903 +0.1939468 0.3384659 0.5947903 +0.2773041 0.3384659 0.5947903 +0.3384659 0.3384659 0.5947903 +0.3885728 0.3384659 0.5947903 +0.4317928 0.3384659 0.5947903 +0.470214 0.3384659 0.5947903 +0.5050551 0.3384659 0.5947903 +0.5370987 0.3384659 0.5947903 +0.5668815 0.3384659 0.5947903 +0.5947903 0.3384659 0.5947903 +0.6211144 0.3384659 0.5947903 +0.6460766 0.3384659 0.5947903 +0.6698526 0.3384659 0.5947903 +0.6925839 0.3384659 0.5947903 +0.7143866 0.3384659 0.5947903 +0.7353569 0.3384659 0.5947903 +0.7555758 0.3384659 0.5947903 +0.7751122 0.3384659 0.5947903 +0.7940252 0.3384659 0.5947903 +0.8123661 0.3384659 0.5947903 +0.8301795 0.3384659 0.5947903 +0.8475045 0.3384659 0.5947903 +0.8643761 0.3384659 0.5947903 +0.880825 0.3384659 0.5947903 +0.8968787 0.3384659 0.5947903 +0.9125621 0.3384659 0.5947903 +0.9278974 0.3384659 0.5947903 +0.9429048 0.3384659 0.5947903 +0.9576028 0.3384659 0.5947903 +0.9720079 0.3384659 0.5947903 +0.9861357 0.3384659 0.5947903 +1 0.3384659 0.5947903 +0 0.3885728 0.5947903 +0.1939468 0.3885728 0.5947903 +0.2773041 0.3885728 0.5947903 +0.3384659 0.3885728 0.5947903 +0.3885728 0.3885728 0.5947903 +0.4317928 0.3885728 0.5947903 +0.470214 0.3885728 0.5947903 +0.5050551 0.3885728 0.5947903 +0.5370987 0.3885728 0.5947903 +0.5668815 0.3885728 0.5947903 +0.5947903 0.3885728 0.5947903 +0.6211144 0.3885728 0.5947903 +0.6460766 0.3885728 0.5947903 +0.6698526 0.3885728 0.5947903 +0.6925839 0.3885728 0.5947903 +0.7143866 0.3885728 0.5947903 +0.7353569 0.3885728 0.5947903 +0.7555758 0.3885728 0.5947903 +0.7751122 0.3885728 0.5947903 +0.7940252 0.3885728 0.5947903 +0.8123661 0.3885728 0.5947903 +0.8301795 0.3885728 0.5947903 +0.8475045 0.3885728 0.5947903 +0.8643761 0.3885728 0.5947903 +0.880825 0.3885728 0.5947903 +0.8968787 0.3885728 0.5947903 +0.9125621 0.3885728 0.5947903 +0.9278974 0.3885728 0.5947903 +0.9429048 0.3885728 0.5947903 +0.9576028 0.3885728 0.5947903 +0.9720079 0.3885728 0.5947903 +0.9861357 0.3885728 0.5947903 +1 0.3885728 0.5947903 +0 0.4317928 0.5947903 +0.1939468 0.4317928 0.5947903 +0.2773041 0.4317928 0.5947903 +0.3384659 0.4317928 0.5947903 +0.3885728 0.4317928 0.5947903 +0.4317928 0.4317928 0.5947903 +0.470214 0.4317928 0.5947903 +0.5050551 0.4317928 0.5947903 +0.5370987 0.4317928 0.5947903 +0.5668815 0.4317928 0.5947903 +0.5947903 0.4317928 0.5947903 +0.6211144 0.4317928 0.5947903 +0.6460766 0.4317928 0.5947903 +0.6698526 0.4317928 0.5947903 +0.6925839 0.4317928 0.5947903 +0.7143866 0.4317928 0.5947903 +0.7353569 0.4317928 0.5947903 +0.7555758 0.4317928 0.5947903 +0.7751122 0.4317928 0.5947903 +0.7940252 0.4317928 0.5947903 +0.8123661 0.4317928 0.5947903 +0.8301795 0.4317928 0.5947903 +0.8475045 0.4317928 0.5947903 +0.8643761 0.4317928 0.5947903 +0.880825 0.4317928 0.5947903 +0.8968787 0.4317928 0.5947903 +0.9125621 0.4317928 0.5947903 +0.9278974 0.4317928 0.5947903 +0.9429048 0.4317928 0.5947903 +0.9576028 0.4317928 0.5947903 +0.9720079 0.4317928 0.5947903 +0.9861357 0.4317928 0.5947903 +1 0.4317928 0.5947903 +0 0.470214 0.5947903 +0.1939468 0.470214 0.5947903 +0.2773041 0.470214 0.5947903 +0.3384659 0.470214 0.5947903 +0.3885728 0.470214 0.5947903 +0.4317928 0.470214 0.5947903 +0.470214 0.470214 0.5947903 +0.5050551 0.470214 0.5947903 +0.5370987 0.470214 0.5947903 +0.5668815 0.470214 0.5947903 +0.5947903 0.470214 0.5947903 +0.6211144 0.470214 0.5947903 +0.6460766 0.470214 0.5947903 +0.6698526 0.470214 0.5947903 +0.6925839 0.470214 0.5947903 +0.7143866 0.470214 0.5947903 +0.7353569 0.470214 0.5947903 +0.7555758 0.470214 0.5947903 +0.7751122 0.470214 0.5947903 +0.7940252 0.470214 0.5947903 +0.8123661 0.470214 0.5947903 +0.8301795 0.470214 0.5947903 +0.8475045 0.470214 0.5947903 +0.8643761 0.470214 0.5947903 +0.880825 0.470214 0.5947903 +0.8968787 0.470214 0.5947903 +0.9125621 0.470214 0.5947903 +0.9278974 0.470214 0.5947903 +0.9429048 0.470214 0.5947903 +0.9576028 0.470214 0.5947903 +0.9720079 0.470214 0.5947903 +0.9861357 0.470214 0.5947903 +1 0.470214 0.5947903 +0 0.5050551 0.5947903 +0.1939468 0.5050551 0.5947903 +0.2773041 0.5050551 0.5947903 +0.3384659 0.5050551 0.5947903 +0.3885728 0.5050551 0.5947903 +0.4317928 0.5050551 0.5947903 +0.470214 0.5050551 0.5947903 +0.5050551 0.5050551 0.5947903 +0.5370987 0.5050551 0.5947903 +0.5668815 0.5050551 0.5947903 +0.5947903 0.5050551 0.5947903 +0.6211144 0.5050551 0.5947903 +0.6460766 0.5050551 0.5947903 +0.6698526 0.5050551 0.5947903 +0.6925839 0.5050551 0.5947903 +0.7143866 0.5050551 0.5947903 +0.7353569 0.5050551 0.5947903 +0.7555758 0.5050551 0.5947903 +0.7751122 0.5050551 0.5947903 +0.7940252 0.5050551 0.5947903 +0.8123661 0.5050551 0.5947903 +0.8301795 0.5050551 0.5947903 +0.8475045 0.5050551 0.5947903 +0.8643761 0.5050551 0.5947903 +0.880825 0.5050551 0.5947903 +0.8968787 0.5050551 0.5947903 +0.9125621 0.5050551 0.5947903 +0.9278974 0.5050551 0.5947903 +0.9429048 0.5050551 0.5947903 +0.9576028 0.5050551 0.5947903 +0.9720079 0.5050551 0.5947903 +0.9861357 0.5050551 0.5947903 +1 0.5050551 0.5947903 +0 0.5370987 0.5947903 +0.1939468 0.5370987 0.5947903 +0.2773041 0.5370987 0.5947903 +0.3384659 0.5370987 0.5947903 +0.3885728 0.5370987 0.5947903 +0.4317928 0.5370987 0.5947903 +0.470214 0.5370987 0.5947903 +0.5050551 0.5370987 0.5947903 +0.5370987 0.5370987 0.5947903 +0.5668815 0.5370987 0.5947903 +0.5947903 0.5370987 0.5947903 +0.6211144 0.5370987 0.5947903 +0.6460766 0.5370987 0.5947903 +0.6698526 0.5370987 0.5947903 +0.6925839 0.5370987 0.5947903 +0.7143866 0.5370987 0.5947903 +0.7353569 0.5370987 0.5947903 +0.7555758 0.5370987 0.5947903 +0.7751122 0.5370987 0.5947903 +0.7940252 0.5370987 0.5947903 +0.8123661 0.5370987 0.5947903 +0.8301795 0.5370987 0.5947903 +0.8475045 0.5370987 0.5947903 +0.8643761 0.5370987 0.5947903 +0.880825 0.5370987 0.5947903 +0.8968787 0.5370987 0.5947903 +0.9125621 0.5370987 0.5947903 +0.9278974 0.5370987 0.5947903 +0.9429048 0.5370987 0.5947903 +0.9576028 0.5370987 0.5947903 +0.9720079 0.5370987 0.5947903 +0.9861357 0.5370987 0.5947903 +1 0.5370987 0.5947903 +0 0.5668815 0.5947903 +0.1939468 0.5668815 0.5947903 +0.2773041 0.5668815 0.5947903 +0.3384659 0.5668815 0.5947903 +0.3885728 0.5668815 0.5947903 +0.4317928 0.5668815 0.5947903 +0.470214 0.5668815 0.5947903 +0.5050551 0.5668815 0.5947903 +0.5370987 0.5668815 0.5947903 +0.5668815 0.5668815 0.5947903 +0.5947903 0.5668815 0.5947903 +0.6211144 0.5668815 0.5947903 +0.6460766 0.5668815 0.5947903 +0.6698526 0.5668815 0.5947903 +0.6925839 0.5668815 0.5947903 +0.7143866 0.5668815 0.5947903 +0.7353569 0.5668815 0.5947903 +0.7555758 0.5668815 0.5947903 +0.7751122 0.5668815 0.5947903 +0.7940252 0.5668815 0.5947903 +0.8123661 0.5668815 0.5947903 +0.8301795 0.5668815 0.5947903 +0.8475045 0.5668815 0.5947903 +0.8643761 0.5668815 0.5947903 +0.880825 0.5668815 0.5947903 +0.8968787 0.5668815 0.5947903 +0.9125621 0.5668815 0.5947903 +0.9278974 0.5668815 0.5947903 +0.9429048 0.5668815 0.5947903 +0.9576028 0.5668815 0.5947903 +0.9720079 0.5668815 0.5947903 +0.9861357 0.5668815 0.5947903 +1 0.5668815 0.5947903 +0 0.5947903 0.5947903 +0.1939468 0.5947903 0.5947903 +0.2773041 0.5947903 0.5947903 +0.3384659 0.5947903 0.5947903 +0.3885728 0.5947903 0.5947903 +0.4317928 0.5947903 0.5947903 +0.470214 0.5947903 0.5947903 +0.5050551 0.5947903 0.5947903 +0.5370987 0.5947903 0.5947903 +0.5668815 0.5947903 0.5947903 +0.5947903 0.5947903 0.5947903 +0.6211144 0.5947903 0.5947903 +0.6460766 0.5947903 0.5947903 +0.6698526 0.5947903 0.5947903 +0.6925839 0.5947903 0.5947903 +0.7143866 0.5947903 0.5947903 +0.7353569 0.5947903 0.5947903 +0.7555758 0.5947903 0.5947903 +0.7751122 0.5947903 0.5947903 +0.7940252 0.5947903 0.5947903 +0.8123661 0.5947903 0.5947903 +0.8301795 0.5947903 0.5947903 +0.8475045 0.5947903 0.5947903 +0.8643761 0.5947903 0.5947903 +0.880825 0.5947903 0.5947903 +0.8968787 0.5947903 0.5947903 +0.9125621 0.5947903 0.5947903 +0.9278974 0.5947903 0.5947903 +0.9429048 0.5947903 0.5947903 +0.9576028 0.5947903 0.5947903 +0.9720079 0.5947903 0.5947903 +0.9861357 0.5947903 0.5947903 +1 0.5947903 0.5947903 +0 0.6211144 0.5947903 +0.1939468 0.6211144 0.5947903 +0.2773041 0.6211144 0.5947903 +0.3384659 0.6211144 0.5947903 +0.3885728 0.6211144 0.5947903 +0.4317928 0.6211144 0.5947903 +0.470214 0.6211144 0.5947903 +0.5050551 0.6211144 0.5947903 +0.5370987 0.6211144 0.5947903 +0.5668815 0.6211144 0.5947903 +0.5947903 0.6211144 0.5947903 +0.6211144 0.6211144 0.5947903 +0.6460766 0.6211144 0.5947903 +0.6698526 0.6211144 0.5947903 +0.6925839 0.6211144 0.5947903 +0.7143866 0.6211144 0.5947903 +0.7353569 0.6211144 0.5947903 +0.7555758 0.6211144 0.5947903 +0.7751122 0.6211144 0.5947903 +0.7940252 0.6211144 0.5947903 +0.8123661 0.6211144 0.5947903 +0.8301795 0.6211144 0.5947903 +0.8475045 0.6211144 0.5947903 +0.8643761 0.6211144 0.5947903 +0.880825 0.6211144 0.5947903 +0.8968787 0.6211144 0.5947903 +0.9125621 0.6211144 0.5947903 +0.9278974 0.6211144 0.5947903 +0.9429048 0.6211144 0.5947903 +0.9576028 0.6211144 0.5947903 +0.9720079 0.6211144 0.5947903 +0.9861357 0.6211144 0.5947903 +1 0.6211144 0.5947903 +0 0.6460766 0.5947903 +0.1939468 0.6460766 0.5947903 +0.2773041 0.6460766 0.5947903 +0.3384659 0.6460766 0.5947903 +0.3885728 0.6460766 0.5947903 +0.4317928 0.6460766 0.5947903 +0.470214 0.6460766 0.5947903 +0.5050551 0.6460766 0.5947903 +0.5370987 0.6460766 0.5947903 +0.5668815 0.6460766 0.5947903 +0.5947903 0.6460766 0.5947903 +0.6211144 0.6460766 0.5947903 +0.6460766 0.6460766 0.5947903 +0.6698526 0.6460766 0.5947903 +0.6925839 0.6460766 0.5947903 +0.7143866 0.6460766 0.5947903 +0.7353569 0.6460766 0.5947903 +0.7555758 0.6460766 0.5947903 +0.7751122 0.6460766 0.5947903 +0.7940252 0.6460766 0.5947903 +0.8123661 0.6460766 0.5947903 +0.8301795 0.6460766 0.5947903 +0.8475045 0.6460766 0.5947903 +0.8643761 0.6460766 0.5947903 +0.880825 0.6460766 0.5947903 +0.8968787 0.6460766 0.5947903 +0.9125621 0.6460766 0.5947903 +0.9278974 0.6460766 0.5947903 +0.9429048 0.6460766 0.5947903 +0.9576028 0.6460766 0.5947903 +0.9720079 0.6460766 0.5947903 +0.9861357 0.6460766 0.5947903 +1 0.6460766 0.5947903 +0 0.6698526 0.5947903 +0.1939468 0.6698526 0.5947903 +0.2773041 0.6698526 0.5947903 +0.3384659 0.6698526 0.5947903 +0.3885728 0.6698526 0.5947903 +0.4317928 0.6698526 0.5947903 +0.470214 0.6698526 0.5947903 +0.5050551 0.6698526 0.5947903 +0.5370987 0.6698526 0.5947903 +0.5668815 0.6698526 0.5947903 +0.5947903 0.6698526 0.5947903 +0.6211144 0.6698526 0.5947903 +0.6460766 0.6698526 0.5947903 +0.6698526 0.6698526 0.5947903 +0.6925839 0.6698526 0.5947903 +0.7143866 0.6698526 0.5947903 +0.7353569 0.6698526 0.5947903 +0.7555758 0.6698526 0.5947903 +0.7751122 0.6698526 0.5947903 +0.7940252 0.6698526 0.5947903 +0.8123661 0.6698526 0.5947903 +0.8301795 0.6698526 0.5947903 +0.8475045 0.6698526 0.5947903 +0.8643761 0.6698526 0.5947903 +0.880825 0.6698526 0.5947903 +0.8968787 0.6698526 0.5947903 +0.9125621 0.6698526 0.5947903 +0.9278974 0.6698526 0.5947903 +0.9429048 0.6698526 0.5947903 +0.9576028 0.6698526 0.5947903 +0.9720079 0.6698526 0.5947903 +0.9861357 0.6698526 0.5947903 +1 0.6698526 0.5947903 +0 0.6925839 0.5947903 +0.1939468 0.6925839 0.5947903 +0.2773041 0.6925839 0.5947903 +0.3384659 0.6925839 0.5947903 +0.3885728 0.6925839 0.5947903 +0.4317928 0.6925839 0.5947903 +0.470214 0.6925839 0.5947903 +0.5050551 0.6925839 0.5947903 +0.5370987 0.6925839 0.5947903 +0.5668815 0.6925839 0.5947903 +0.5947903 0.6925839 0.5947903 +0.6211144 0.6925839 0.5947903 +0.6460766 0.6925839 0.5947903 +0.6698526 0.6925839 0.5947903 +0.6925839 0.6925839 0.5947903 +0.7143866 0.6925839 0.5947903 +0.7353569 0.6925839 0.5947903 +0.7555758 0.6925839 0.5947903 +0.7751122 0.6925839 0.5947903 +0.7940252 0.6925839 0.5947903 +0.8123661 0.6925839 0.5947903 +0.8301795 0.6925839 0.5947903 +0.8475045 0.6925839 0.5947903 +0.8643761 0.6925839 0.5947903 +0.880825 0.6925839 0.5947903 +0.8968787 0.6925839 0.5947903 +0.9125621 0.6925839 0.5947903 +0.9278974 0.6925839 0.5947903 +0.9429048 0.6925839 0.5947903 +0.9576028 0.6925839 0.5947903 +0.9720079 0.6925839 0.5947903 +0.9861357 0.6925839 0.5947903 +1 0.6925839 0.5947903 +0 0.7143866 0.5947903 +0.1939468 0.7143866 0.5947903 +0.2773041 0.7143866 0.5947903 +0.3384659 0.7143866 0.5947903 +0.3885728 0.7143866 0.5947903 +0.4317928 0.7143866 0.5947903 +0.470214 0.7143866 0.5947903 +0.5050551 0.7143866 0.5947903 +0.5370987 0.7143866 0.5947903 +0.5668815 0.7143866 0.5947903 +0.5947903 0.7143866 0.5947903 +0.6211144 0.7143866 0.5947903 +0.6460766 0.7143866 0.5947903 +0.6698526 0.7143866 0.5947903 +0.6925839 0.7143866 0.5947903 +0.7143866 0.7143866 0.5947903 +0.7353569 0.7143866 0.5947903 +0.7555758 0.7143866 0.5947903 +0.7751122 0.7143866 0.5947903 +0.7940252 0.7143866 0.5947903 +0.8123661 0.7143866 0.5947903 +0.8301795 0.7143866 0.5947903 +0.8475045 0.7143866 0.5947903 +0.8643761 0.7143866 0.5947903 +0.880825 0.7143866 0.5947903 +0.8968787 0.7143866 0.5947903 +0.9125621 0.7143866 0.5947903 +0.9278974 0.7143866 0.5947903 +0.9429048 0.7143866 0.5947903 +0.9576028 0.7143866 0.5947903 +0.9720079 0.7143866 0.5947903 +0.9861357 0.7143866 0.5947903 +1 0.7143866 0.5947903 +0 0.7353569 0.5947903 +0.1939468 0.7353569 0.5947903 +0.2773041 0.7353569 0.5947903 +0.3384659 0.7353569 0.5947903 +0.3885728 0.7353569 0.5947903 +0.4317928 0.7353569 0.5947903 +0.470214 0.7353569 0.5947903 +0.5050551 0.7353569 0.5947903 +0.5370987 0.7353569 0.5947903 +0.5668815 0.7353569 0.5947903 +0.5947903 0.7353569 0.5947903 +0.6211144 0.7353569 0.5947903 +0.6460766 0.7353569 0.5947903 +0.6698526 0.7353569 0.5947903 +0.6925839 0.7353569 0.5947903 +0.7143866 0.7353569 0.5947903 +0.7353569 0.7353569 0.5947903 +0.7555758 0.7353569 0.5947903 +0.7751122 0.7353569 0.5947903 +0.7940252 0.7353569 0.5947903 +0.8123661 0.7353569 0.5947903 +0.8301795 0.7353569 0.5947903 +0.8475045 0.7353569 0.5947903 +0.8643761 0.7353569 0.5947903 +0.880825 0.7353569 0.5947903 +0.8968787 0.7353569 0.5947903 +0.9125621 0.7353569 0.5947903 +0.9278974 0.7353569 0.5947903 +0.9429048 0.7353569 0.5947903 +0.9576028 0.7353569 0.5947903 +0.9720079 0.7353569 0.5947903 +0.9861357 0.7353569 0.5947903 +1 0.7353569 0.5947903 +0 0.7555758 0.5947903 +0.1939468 0.7555758 0.5947903 +0.2773041 0.7555758 0.5947903 +0.3384659 0.7555758 0.5947903 +0.3885728 0.7555758 0.5947903 +0.4317928 0.7555758 0.5947903 +0.470214 0.7555758 0.5947903 +0.5050551 0.7555758 0.5947903 +0.5370987 0.7555758 0.5947903 +0.5668815 0.7555758 0.5947903 +0.5947903 0.7555758 0.5947903 +0.6211144 0.7555758 0.5947903 +0.6460766 0.7555758 0.5947903 +0.6698526 0.7555758 0.5947903 +0.6925839 0.7555758 0.5947903 +0.7143866 0.7555758 0.5947903 +0.7353569 0.7555758 0.5947903 +0.7555758 0.7555758 0.5947903 +0.7751122 0.7555758 0.5947903 +0.7940252 0.7555758 0.5947903 +0.8123661 0.7555758 0.5947903 +0.8301795 0.7555758 0.5947903 +0.8475045 0.7555758 0.5947903 +0.8643761 0.7555758 0.5947903 +0.880825 0.7555758 0.5947903 +0.8968787 0.7555758 0.5947903 +0.9125621 0.7555758 0.5947903 +0.9278974 0.7555758 0.5947903 +0.9429048 0.7555758 0.5947903 +0.9576028 0.7555758 0.5947903 +0.9720079 0.7555758 0.5947903 +0.9861357 0.7555758 0.5947903 +1 0.7555758 0.5947903 +0 0.7751122 0.5947903 +0.1939468 0.7751122 0.5947903 +0.2773041 0.7751122 0.5947903 +0.3384659 0.7751122 0.5947903 +0.3885728 0.7751122 0.5947903 +0.4317928 0.7751122 0.5947903 +0.470214 0.7751122 0.5947903 +0.5050551 0.7751122 0.5947903 +0.5370987 0.7751122 0.5947903 +0.5668815 0.7751122 0.5947903 +0.5947903 0.7751122 0.5947903 +0.6211144 0.7751122 0.5947903 +0.6460766 0.7751122 0.5947903 +0.6698526 0.7751122 0.5947903 +0.6925839 0.7751122 0.5947903 +0.7143866 0.7751122 0.5947903 +0.7353569 0.7751122 0.5947903 +0.7555758 0.7751122 0.5947903 +0.7751122 0.7751122 0.5947903 +0.7940252 0.7751122 0.5947903 +0.8123661 0.7751122 0.5947903 +0.8301795 0.7751122 0.5947903 +0.8475045 0.7751122 0.5947903 +0.8643761 0.7751122 0.5947903 +0.880825 0.7751122 0.5947903 +0.8968787 0.7751122 0.5947903 +0.9125621 0.7751122 0.5947903 +0.9278974 0.7751122 0.5947903 +0.9429048 0.7751122 0.5947903 +0.9576028 0.7751122 0.5947903 +0.9720079 0.7751122 0.5947903 +0.9861357 0.7751122 0.5947903 +1 0.7751122 0.5947903 +0 0.7940252 0.5947903 +0.1939468 0.7940252 0.5947903 +0.2773041 0.7940252 0.5947903 +0.3384659 0.7940252 0.5947903 +0.3885728 0.7940252 0.5947903 +0.4317928 0.7940252 0.5947903 +0.470214 0.7940252 0.5947903 +0.5050551 0.7940252 0.5947903 +0.5370987 0.7940252 0.5947903 +0.5668815 0.7940252 0.5947903 +0.5947903 0.7940252 0.5947903 +0.6211144 0.7940252 0.5947903 +0.6460766 0.7940252 0.5947903 +0.6698526 0.7940252 0.5947903 +0.6925839 0.7940252 0.5947903 +0.7143866 0.7940252 0.5947903 +0.7353569 0.7940252 0.5947903 +0.7555758 0.7940252 0.5947903 +0.7751122 0.7940252 0.5947903 +0.7940252 0.7940252 0.5947903 +0.8123661 0.7940252 0.5947903 +0.8301795 0.7940252 0.5947903 +0.8475045 0.7940252 0.5947903 +0.8643761 0.7940252 0.5947903 +0.880825 0.7940252 0.5947903 +0.8968787 0.7940252 0.5947903 +0.9125621 0.7940252 0.5947903 +0.9278974 0.7940252 0.5947903 +0.9429048 0.7940252 0.5947903 +0.9576028 0.7940252 0.5947903 +0.9720079 0.7940252 0.5947903 +0.9861357 0.7940252 0.5947903 +1 0.7940252 0.5947903 +0 0.8123661 0.5947903 +0.1939468 0.8123661 0.5947903 +0.2773041 0.8123661 0.5947903 +0.3384659 0.8123661 0.5947903 +0.3885728 0.8123661 0.5947903 +0.4317928 0.8123661 0.5947903 +0.470214 0.8123661 0.5947903 +0.5050551 0.8123661 0.5947903 +0.5370987 0.8123661 0.5947903 +0.5668815 0.8123661 0.5947903 +0.5947903 0.8123661 0.5947903 +0.6211144 0.8123661 0.5947903 +0.6460766 0.8123661 0.5947903 +0.6698526 0.8123661 0.5947903 +0.6925839 0.8123661 0.5947903 +0.7143866 0.8123661 0.5947903 +0.7353569 0.8123661 0.5947903 +0.7555758 0.8123661 0.5947903 +0.7751122 0.8123661 0.5947903 +0.7940252 0.8123661 0.5947903 +0.8123661 0.8123661 0.5947903 +0.8301795 0.8123661 0.5947903 +0.8475045 0.8123661 0.5947903 +0.8643761 0.8123661 0.5947903 +0.880825 0.8123661 0.5947903 +0.8968787 0.8123661 0.5947903 +0.9125621 0.8123661 0.5947903 +0.9278974 0.8123661 0.5947903 +0.9429048 0.8123661 0.5947903 +0.9576028 0.8123661 0.5947903 +0.9720079 0.8123661 0.5947903 +0.9861357 0.8123661 0.5947903 +1 0.8123661 0.5947903 +0 0.8301795 0.5947903 +0.1939468 0.8301795 0.5947903 +0.2773041 0.8301795 0.5947903 +0.3384659 0.8301795 0.5947903 +0.3885728 0.8301795 0.5947903 +0.4317928 0.8301795 0.5947903 +0.470214 0.8301795 0.5947903 +0.5050551 0.8301795 0.5947903 +0.5370987 0.8301795 0.5947903 +0.5668815 0.8301795 0.5947903 +0.5947903 0.8301795 0.5947903 +0.6211144 0.8301795 0.5947903 +0.6460766 0.8301795 0.5947903 +0.6698526 0.8301795 0.5947903 +0.6925839 0.8301795 0.5947903 +0.7143866 0.8301795 0.5947903 +0.7353569 0.8301795 0.5947903 +0.7555758 0.8301795 0.5947903 +0.7751122 0.8301795 0.5947903 +0.7940252 0.8301795 0.5947903 +0.8123661 0.8301795 0.5947903 +0.8301795 0.8301795 0.5947903 +0.8475045 0.8301795 0.5947903 +0.8643761 0.8301795 0.5947903 +0.880825 0.8301795 0.5947903 +0.8968787 0.8301795 0.5947903 +0.9125621 0.8301795 0.5947903 +0.9278974 0.8301795 0.5947903 +0.9429048 0.8301795 0.5947903 +0.9576028 0.8301795 0.5947903 +0.9720079 0.8301795 0.5947903 +0.9861357 0.8301795 0.5947903 +1 0.8301795 0.5947903 +0 0.8475045 0.5947903 +0.1939468 0.8475045 0.5947903 +0.2773041 0.8475045 0.5947903 +0.3384659 0.8475045 0.5947903 +0.3885728 0.8475045 0.5947903 +0.4317928 0.8475045 0.5947903 +0.470214 0.8475045 0.5947903 +0.5050551 0.8475045 0.5947903 +0.5370987 0.8475045 0.5947903 +0.5668815 0.8475045 0.5947903 +0.5947903 0.8475045 0.5947903 +0.6211144 0.8475045 0.5947903 +0.6460766 0.8475045 0.5947903 +0.6698526 0.8475045 0.5947903 +0.6925839 0.8475045 0.5947903 +0.7143866 0.8475045 0.5947903 +0.7353569 0.8475045 0.5947903 +0.7555758 0.8475045 0.5947903 +0.7751122 0.8475045 0.5947903 +0.7940252 0.8475045 0.5947903 +0.8123661 0.8475045 0.5947903 +0.8301795 0.8475045 0.5947903 +0.8475045 0.8475045 0.5947903 +0.8643761 0.8475045 0.5947903 +0.880825 0.8475045 0.5947903 +0.8968787 0.8475045 0.5947903 +0.9125621 0.8475045 0.5947903 +0.9278974 0.8475045 0.5947903 +0.9429048 0.8475045 0.5947903 +0.9576028 0.8475045 0.5947903 +0.9720079 0.8475045 0.5947903 +0.9861357 0.8475045 0.5947903 +1 0.8475045 0.5947903 +0 0.8643761 0.5947903 +0.1939468 0.8643761 0.5947903 +0.2773041 0.8643761 0.5947903 +0.3384659 0.8643761 0.5947903 +0.3885728 0.8643761 0.5947903 +0.4317928 0.8643761 0.5947903 +0.470214 0.8643761 0.5947903 +0.5050551 0.8643761 0.5947903 +0.5370987 0.8643761 0.5947903 +0.5668815 0.8643761 0.5947903 +0.5947903 0.8643761 0.5947903 +0.6211144 0.8643761 0.5947903 +0.6460766 0.8643761 0.5947903 +0.6698526 0.8643761 0.5947903 +0.6925839 0.8643761 0.5947903 +0.7143866 0.8643761 0.5947903 +0.7353569 0.8643761 0.5947903 +0.7555758 0.8643761 0.5947903 +0.7751122 0.8643761 0.5947903 +0.7940252 0.8643761 0.5947903 +0.8123661 0.8643761 0.5947903 +0.8301795 0.8643761 0.5947903 +0.8475045 0.8643761 0.5947903 +0.8643761 0.8643761 0.5947903 +0.880825 0.8643761 0.5947903 +0.8968787 0.8643761 0.5947903 +0.9125621 0.8643761 0.5947903 +0.9278974 0.8643761 0.5947903 +0.9429048 0.8643761 0.5947903 +0.9576028 0.8643761 0.5947903 +0.9720079 0.8643761 0.5947903 +0.9861357 0.8643761 0.5947903 +1 0.8643761 0.5947903 +0 0.880825 0.5947903 +0.1939468 0.880825 0.5947903 +0.2773041 0.880825 0.5947903 +0.3384659 0.880825 0.5947903 +0.3885728 0.880825 0.5947903 +0.4317928 0.880825 0.5947903 +0.470214 0.880825 0.5947903 +0.5050551 0.880825 0.5947903 +0.5370987 0.880825 0.5947903 +0.5668815 0.880825 0.5947903 +0.5947903 0.880825 0.5947903 +0.6211144 0.880825 0.5947903 +0.6460766 0.880825 0.5947903 +0.6698526 0.880825 0.5947903 +0.6925839 0.880825 0.5947903 +0.7143866 0.880825 0.5947903 +0.7353569 0.880825 0.5947903 +0.7555758 0.880825 0.5947903 +0.7751122 0.880825 0.5947903 +0.7940252 0.880825 0.5947903 +0.8123661 0.880825 0.5947903 +0.8301795 0.880825 0.5947903 +0.8475045 0.880825 0.5947903 +0.8643761 0.880825 0.5947903 +0.880825 0.880825 0.5947903 +0.8968787 0.880825 0.5947903 +0.9125621 0.880825 0.5947903 +0.9278974 0.880825 0.5947903 +0.9429048 0.880825 0.5947903 +0.9576028 0.880825 0.5947903 +0.9720079 0.880825 0.5947903 +0.9861357 0.880825 0.5947903 +1 0.880825 0.5947903 +0 0.8968787 0.5947903 +0.1939468 0.8968787 0.5947903 +0.2773041 0.8968787 0.5947903 +0.3384659 0.8968787 0.5947903 +0.3885728 0.8968787 0.5947903 +0.4317928 0.8968787 0.5947903 +0.470214 0.8968787 0.5947903 +0.5050551 0.8968787 0.5947903 +0.5370987 0.8968787 0.5947903 +0.5668815 0.8968787 0.5947903 +0.5947903 0.8968787 0.5947903 +0.6211144 0.8968787 0.5947903 +0.6460766 0.8968787 0.5947903 +0.6698526 0.8968787 0.5947903 +0.6925839 0.8968787 0.5947903 +0.7143866 0.8968787 0.5947903 +0.7353569 0.8968787 0.5947903 +0.7555758 0.8968787 0.5947903 +0.7751122 0.8968787 0.5947903 +0.7940252 0.8968787 0.5947903 +0.8123661 0.8968787 0.5947903 +0.8301795 0.8968787 0.5947903 +0.8475045 0.8968787 0.5947903 +0.8643761 0.8968787 0.5947903 +0.880825 0.8968787 0.5947903 +0.8968787 0.8968787 0.5947903 +0.9125621 0.8968787 0.5947903 +0.9278974 0.8968787 0.5947903 +0.9429048 0.8968787 0.5947903 +0.9576028 0.8968787 0.5947903 +0.9720079 0.8968787 0.5947903 +0.9861357 0.8968787 0.5947903 +1 0.8968787 0.5947903 +0 0.9125621 0.5947903 +0.1939468 0.9125621 0.5947903 +0.2773041 0.9125621 0.5947903 +0.3384659 0.9125621 0.5947903 +0.3885728 0.9125621 0.5947903 +0.4317928 0.9125621 0.5947903 +0.470214 0.9125621 0.5947903 +0.5050551 0.9125621 0.5947903 +0.5370987 0.9125621 0.5947903 +0.5668815 0.9125621 0.5947903 +0.5947903 0.9125621 0.5947903 +0.6211144 0.9125621 0.5947903 +0.6460766 0.9125621 0.5947903 +0.6698526 0.9125621 0.5947903 +0.6925839 0.9125621 0.5947903 +0.7143866 0.9125621 0.5947903 +0.7353569 0.9125621 0.5947903 +0.7555758 0.9125621 0.5947903 +0.7751122 0.9125621 0.5947903 +0.7940252 0.9125621 0.5947903 +0.8123661 0.9125621 0.5947903 +0.8301795 0.9125621 0.5947903 +0.8475045 0.9125621 0.5947903 +0.8643761 0.9125621 0.5947903 +0.880825 0.9125621 0.5947903 +0.8968787 0.9125621 0.5947903 +0.9125621 0.9125621 0.5947903 +0.9278974 0.9125621 0.5947903 +0.9429048 0.9125621 0.5947903 +0.9576028 0.9125621 0.5947903 +0.9720079 0.9125621 0.5947903 +0.9861357 0.9125621 0.5947903 +1 0.9125621 0.5947903 +0 0.9278974 0.5947903 +0.1939468 0.9278974 0.5947903 +0.2773041 0.9278974 0.5947903 +0.3384659 0.9278974 0.5947903 +0.3885728 0.9278974 0.5947903 +0.4317928 0.9278974 0.5947903 +0.470214 0.9278974 0.5947903 +0.5050551 0.9278974 0.5947903 +0.5370987 0.9278974 0.5947903 +0.5668815 0.9278974 0.5947903 +0.5947903 0.9278974 0.5947903 +0.6211144 0.9278974 0.5947903 +0.6460766 0.9278974 0.5947903 +0.6698526 0.9278974 0.5947903 +0.6925839 0.9278974 0.5947903 +0.7143866 0.9278974 0.5947903 +0.7353569 0.9278974 0.5947903 +0.7555758 0.9278974 0.5947903 +0.7751122 0.9278974 0.5947903 +0.7940252 0.9278974 0.5947903 +0.8123661 0.9278974 0.5947903 +0.8301795 0.9278974 0.5947903 +0.8475045 0.9278974 0.5947903 +0.8643761 0.9278974 0.5947903 +0.880825 0.9278974 0.5947903 +0.8968787 0.9278974 0.5947903 +0.9125621 0.9278974 0.5947903 +0.9278974 0.9278974 0.5947903 +0.9429048 0.9278974 0.5947903 +0.9576028 0.9278974 0.5947903 +0.9720079 0.9278974 0.5947903 +0.9861357 0.9278974 0.5947903 +1 0.9278974 0.5947903 +0 0.9429048 0.5947903 +0.1939468 0.9429048 0.5947903 +0.2773041 0.9429048 0.5947903 +0.3384659 0.9429048 0.5947903 +0.3885728 0.9429048 0.5947903 +0.4317928 0.9429048 0.5947903 +0.470214 0.9429048 0.5947903 +0.5050551 0.9429048 0.5947903 +0.5370987 0.9429048 0.5947903 +0.5668815 0.9429048 0.5947903 +0.5947903 0.9429048 0.5947903 +0.6211144 0.9429048 0.5947903 +0.6460766 0.9429048 0.5947903 +0.6698526 0.9429048 0.5947903 +0.6925839 0.9429048 0.5947903 +0.7143866 0.9429048 0.5947903 +0.7353569 0.9429048 0.5947903 +0.7555758 0.9429048 0.5947903 +0.7751122 0.9429048 0.5947903 +0.7940252 0.9429048 0.5947903 +0.8123661 0.9429048 0.5947903 +0.8301795 0.9429048 0.5947903 +0.8475045 0.9429048 0.5947903 +0.8643761 0.9429048 0.5947903 +0.880825 0.9429048 0.5947903 +0.8968787 0.9429048 0.5947903 +0.9125621 0.9429048 0.5947903 +0.9278974 0.9429048 0.5947903 +0.9429048 0.9429048 0.5947903 +0.9576028 0.9429048 0.5947903 +0.9720079 0.9429048 0.5947903 +0.9861357 0.9429048 0.5947903 +1 0.9429048 0.5947903 +0 0.9576028 0.5947903 +0.1939468 0.9576028 0.5947903 +0.2773041 0.9576028 0.5947903 +0.3384659 0.9576028 0.5947903 +0.3885728 0.9576028 0.5947903 +0.4317928 0.9576028 0.5947903 +0.470214 0.9576028 0.5947903 +0.5050551 0.9576028 0.5947903 +0.5370987 0.9576028 0.5947903 +0.5668815 0.9576028 0.5947903 +0.5947903 0.9576028 0.5947903 +0.6211144 0.9576028 0.5947903 +0.6460766 0.9576028 0.5947903 +0.6698526 0.9576028 0.5947903 +0.6925839 0.9576028 0.5947903 +0.7143866 0.9576028 0.5947903 +0.7353569 0.9576028 0.5947903 +0.7555758 0.9576028 0.5947903 +0.7751122 0.9576028 0.5947903 +0.7940252 0.9576028 0.5947903 +0.8123661 0.9576028 0.5947903 +0.8301795 0.9576028 0.5947903 +0.8475045 0.9576028 0.5947903 +0.8643761 0.9576028 0.5947903 +0.880825 0.9576028 0.5947903 +0.8968787 0.9576028 0.5947903 +0.9125621 0.9576028 0.5947903 +0.9278974 0.9576028 0.5947903 +0.9429048 0.9576028 0.5947903 +0.9576028 0.9576028 0.5947903 +0.9720079 0.9576028 0.5947903 +0.9861357 0.9576028 0.5947903 +1 0.9576028 0.5947903 +0 0.9720079 0.5947903 +0.1939468 0.9720079 0.5947903 +0.2773041 0.9720079 0.5947903 +0.3384659 0.9720079 0.5947903 +0.3885728 0.9720079 0.5947903 +0.4317928 0.9720079 0.5947903 +0.470214 0.9720079 0.5947903 +0.5050551 0.9720079 0.5947903 +0.5370987 0.9720079 0.5947903 +0.5668815 0.9720079 0.5947903 +0.5947903 0.9720079 0.5947903 +0.6211144 0.9720079 0.5947903 +0.6460766 0.9720079 0.5947903 +0.6698526 0.9720079 0.5947903 +0.6925839 0.9720079 0.5947903 +0.7143866 0.9720079 0.5947903 +0.7353569 0.9720079 0.5947903 +0.7555758 0.9720079 0.5947903 +0.7751122 0.9720079 0.5947903 +0.7940252 0.9720079 0.5947903 +0.8123661 0.9720079 0.5947903 +0.8301795 0.9720079 0.5947903 +0.8475045 0.9720079 0.5947903 +0.8643761 0.9720079 0.5947903 +0.880825 0.9720079 0.5947903 +0.8968787 0.9720079 0.5947903 +0.9125621 0.9720079 0.5947903 +0.9278974 0.9720079 0.5947903 +0.9429048 0.9720079 0.5947903 +0.9576028 0.9720079 0.5947903 +0.9720079 0.9720079 0.5947903 +0.9861357 0.9720079 0.5947903 +1 0.9720079 0.5947903 +0 0.9861357 0.5947903 +0.1939468 0.9861357 0.5947903 +0.2773041 0.9861357 0.5947903 +0.3384659 0.9861357 0.5947903 +0.3885728 0.9861357 0.5947903 +0.4317928 0.9861357 0.5947903 +0.470214 0.9861357 0.5947903 +0.5050551 0.9861357 0.5947903 +0.5370987 0.9861357 0.5947903 +0.5668815 0.9861357 0.5947903 +0.5947903 0.9861357 0.5947903 +0.6211144 0.9861357 0.5947903 +0.6460766 0.9861357 0.5947903 +0.6698526 0.9861357 0.5947903 +0.6925839 0.9861357 0.5947903 +0.7143866 0.9861357 0.5947903 +0.7353569 0.9861357 0.5947903 +0.7555758 0.9861357 0.5947903 +0.7751122 0.9861357 0.5947903 +0.7940252 0.9861357 0.5947903 +0.8123661 0.9861357 0.5947903 +0.8301795 0.9861357 0.5947903 +0.8475045 0.9861357 0.5947903 +0.8643761 0.9861357 0.5947903 +0.880825 0.9861357 0.5947903 +0.8968787 0.9861357 0.5947903 +0.9125621 0.9861357 0.5947903 +0.9278974 0.9861357 0.5947903 +0.9429048 0.9861357 0.5947903 +0.9576028 0.9861357 0.5947903 +0.9720079 0.9861357 0.5947903 +0.9861357 0.9861357 0.5947903 +1 0.9861357 0.5947903 +0 1 0.5947903 +0.1939468 1 0.5947903 +0.2773041 1 0.5947903 +0.3384659 1 0.5947903 +0.3885728 1 0.5947903 +0.4317928 1 0.5947903 +0.470214 1 0.5947903 +0.5050551 1 0.5947903 +0.5370987 1 0.5947903 +0.5668815 1 0.5947903 +0.5947903 1 0.5947903 +0.6211144 1 0.5947903 +0.6460766 1 0.5947903 +0.6698526 1 0.5947903 +0.6925839 1 0.5947903 +0.7143866 1 0.5947903 +0.7353569 1 0.5947903 +0.7555758 1 0.5947903 +0.7751122 1 0.5947903 +0.7940252 1 0.5947903 +0.8123661 1 0.5947903 +0.8301795 1 0.5947903 +0.8475045 1 0.5947903 +0.8643761 1 0.5947903 +0.880825 1 0.5947903 +0.8968787 1 0.5947903 +0.9125621 1 0.5947903 +0.9278974 1 0.5947903 +0.9429048 1 0.5947903 +0.9576028 1 0.5947903 +0.9720079 1 0.5947903 +0.9861357 1 0.5947903 +1 1 0.5947903 +0 0 0.6211144 +0.1939468 0 0.6211144 +0.2773041 0 0.6211144 +0.3384659 0 0.6211144 +0.3885728 0 0.6211144 +0.4317928 0 0.6211144 +0.470214 0 0.6211144 +0.5050551 0 0.6211144 +0.5370987 0 0.6211144 +0.5668815 0 0.6211144 +0.5947903 0 0.6211144 +0.6211144 0 0.6211144 +0.6460766 0 0.6211144 +0.6698526 0 0.6211144 +0.6925839 0 0.6211144 +0.7143866 0 0.6211144 +0.7353569 0 0.6211144 +0.7555758 0 0.6211144 +0.7751122 0 0.6211144 +0.7940252 0 0.6211144 +0.8123661 0 0.6211144 +0.8301795 0 0.6211144 +0.8475045 0 0.6211144 +0.8643761 0 0.6211144 +0.880825 0 0.6211144 +0.8968787 0 0.6211144 +0.9125621 0 0.6211144 +0.9278974 0 0.6211144 +0.9429048 0 0.6211144 +0.9576028 0 0.6211144 +0.9720079 0 0.6211144 +0.9861357 0 0.6211144 +1 0 0.6211144 +0 0.1939468 0.6211144 +0.1939468 0.1939468 0.6211144 +0.2773041 0.1939468 0.6211144 +0.3384659 0.1939468 0.6211144 +0.3885728 0.1939468 0.6211144 +0.4317928 0.1939468 0.6211144 +0.470214 0.1939468 0.6211144 +0.5050551 0.1939468 0.6211144 +0.5370987 0.1939468 0.6211144 +0.5668815 0.1939468 0.6211144 +0.5947903 0.1939468 0.6211144 +0.6211144 0.1939468 0.6211144 +0.6460766 0.1939468 0.6211144 +0.6698526 0.1939468 0.6211144 +0.6925839 0.1939468 0.6211144 +0.7143866 0.1939468 0.6211144 +0.7353569 0.1939468 0.6211144 +0.7555758 0.1939468 0.6211144 +0.7751122 0.1939468 0.6211144 +0.7940252 0.1939468 0.6211144 +0.8123661 0.1939468 0.6211144 +0.8301795 0.1939468 0.6211144 +0.8475045 0.1939468 0.6211144 +0.8643761 0.1939468 0.6211144 +0.880825 0.1939468 0.6211144 +0.8968787 0.1939468 0.6211144 +0.9125621 0.1939468 0.6211144 +0.9278974 0.1939468 0.6211144 +0.9429048 0.1939468 0.6211144 +0.9576028 0.1939468 0.6211144 +0.9720079 0.1939468 0.6211144 +0.9861357 0.1939468 0.6211144 +1 0.1939468 0.6211144 +0 0.2773041 0.6211144 +0.1939468 0.2773041 0.6211144 +0.2773041 0.2773041 0.6211144 +0.3384659 0.2773041 0.6211144 +0.3885728 0.2773041 0.6211144 +0.4317928 0.2773041 0.6211144 +0.470214 0.2773041 0.6211144 +0.5050551 0.2773041 0.6211144 +0.5370987 0.2773041 0.6211144 +0.5668815 0.2773041 0.6211144 +0.5947903 0.2773041 0.6211144 +0.6211144 0.2773041 0.6211144 +0.6460766 0.2773041 0.6211144 +0.6698526 0.2773041 0.6211144 +0.6925839 0.2773041 0.6211144 +0.7143866 0.2773041 0.6211144 +0.7353569 0.2773041 0.6211144 +0.7555758 0.2773041 0.6211144 +0.7751122 0.2773041 0.6211144 +0.7940252 0.2773041 0.6211144 +0.8123661 0.2773041 0.6211144 +0.8301795 0.2773041 0.6211144 +0.8475045 0.2773041 0.6211144 +0.8643761 0.2773041 0.6211144 +0.880825 0.2773041 0.6211144 +0.8968787 0.2773041 0.6211144 +0.9125621 0.2773041 0.6211144 +0.9278974 0.2773041 0.6211144 +0.9429048 0.2773041 0.6211144 +0.9576028 0.2773041 0.6211144 +0.9720079 0.2773041 0.6211144 +0.9861357 0.2773041 0.6211144 +1 0.2773041 0.6211144 +0 0.3384659 0.6211144 +0.1939468 0.3384659 0.6211144 +0.2773041 0.3384659 0.6211144 +0.3384659 0.3384659 0.6211144 +0.3885728 0.3384659 0.6211144 +0.4317928 0.3384659 0.6211144 +0.470214 0.3384659 0.6211144 +0.5050551 0.3384659 0.6211144 +0.5370987 0.3384659 0.6211144 +0.5668815 0.3384659 0.6211144 +0.5947903 0.3384659 0.6211144 +0.6211144 0.3384659 0.6211144 +0.6460766 0.3384659 0.6211144 +0.6698526 0.3384659 0.6211144 +0.6925839 0.3384659 0.6211144 +0.7143866 0.3384659 0.6211144 +0.7353569 0.3384659 0.6211144 +0.7555758 0.3384659 0.6211144 +0.7751122 0.3384659 0.6211144 +0.7940252 0.3384659 0.6211144 +0.8123661 0.3384659 0.6211144 +0.8301795 0.3384659 0.6211144 +0.8475045 0.3384659 0.6211144 +0.8643761 0.3384659 0.6211144 +0.880825 0.3384659 0.6211144 +0.8968787 0.3384659 0.6211144 +0.9125621 0.3384659 0.6211144 +0.9278974 0.3384659 0.6211144 +0.9429048 0.3384659 0.6211144 +0.9576028 0.3384659 0.6211144 +0.9720079 0.3384659 0.6211144 +0.9861357 0.3384659 0.6211144 +1 0.3384659 0.6211144 +0 0.3885728 0.6211144 +0.1939468 0.3885728 0.6211144 +0.2773041 0.3885728 0.6211144 +0.3384659 0.3885728 0.6211144 +0.3885728 0.3885728 0.6211144 +0.4317928 0.3885728 0.6211144 +0.470214 0.3885728 0.6211144 +0.5050551 0.3885728 0.6211144 +0.5370987 0.3885728 0.6211144 +0.5668815 0.3885728 0.6211144 +0.5947903 0.3885728 0.6211144 +0.6211144 0.3885728 0.6211144 +0.6460766 0.3885728 0.6211144 +0.6698526 0.3885728 0.6211144 +0.6925839 0.3885728 0.6211144 +0.7143866 0.3885728 0.6211144 +0.7353569 0.3885728 0.6211144 +0.7555758 0.3885728 0.6211144 +0.7751122 0.3885728 0.6211144 +0.7940252 0.3885728 0.6211144 +0.8123661 0.3885728 0.6211144 +0.8301795 0.3885728 0.6211144 +0.8475045 0.3885728 0.6211144 +0.8643761 0.3885728 0.6211144 +0.880825 0.3885728 0.6211144 +0.8968787 0.3885728 0.6211144 +0.9125621 0.3885728 0.6211144 +0.9278974 0.3885728 0.6211144 +0.9429048 0.3885728 0.6211144 +0.9576028 0.3885728 0.6211144 +0.9720079 0.3885728 0.6211144 +0.9861357 0.3885728 0.6211144 +1 0.3885728 0.6211144 +0 0.4317928 0.6211144 +0.1939468 0.4317928 0.6211144 +0.2773041 0.4317928 0.6211144 +0.3384659 0.4317928 0.6211144 +0.3885728 0.4317928 0.6211144 +0.4317928 0.4317928 0.6211144 +0.470214 0.4317928 0.6211144 +0.5050551 0.4317928 0.6211144 +0.5370987 0.4317928 0.6211144 +0.5668815 0.4317928 0.6211144 +0.5947903 0.4317928 0.6211144 +0.6211144 0.4317928 0.6211144 +0.6460766 0.4317928 0.6211144 +0.6698526 0.4317928 0.6211144 +0.6925839 0.4317928 0.6211144 +0.7143866 0.4317928 0.6211144 +0.7353569 0.4317928 0.6211144 +0.7555758 0.4317928 0.6211144 +0.7751122 0.4317928 0.6211144 +0.7940252 0.4317928 0.6211144 +0.8123661 0.4317928 0.6211144 +0.8301795 0.4317928 0.6211144 +0.8475045 0.4317928 0.6211144 +0.8643761 0.4317928 0.6211144 +0.880825 0.4317928 0.6211144 +0.8968787 0.4317928 0.6211144 +0.9125621 0.4317928 0.6211144 +0.9278974 0.4317928 0.6211144 +0.9429048 0.4317928 0.6211144 +0.9576028 0.4317928 0.6211144 +0.9720079 0.4317928 0.6211144 +0.9861357 0.4317928 0.6211144 +1 0.4317928 0.6211144 +0 0.470214 0.6211144 +0.1939468 0.470214 0.6211144 +0.2773041 0.470214 0.6211144 +0.3384659 0.470214 0.6211144 +0.3885728 0.470214 0.6211144 +0.4317928 0.470214 0.6211144 +0.470214 0.470214 0.6211144 +0.5050551 0.470214 0.6211144 +0.5370987 0.470214 0.6211144 +0.5668815 0.470214 0.6211144 +0.5947903 0.470214 0.6211144 +0.6211144 0.470214 0.6211144 +0.6460766 0.470214 0.6211144 +0.6698526 0.470214 0.6211144 +0.6925839 0.470214 0.6211144 +0.7143866 0.470214 0.6211144 +0.7353569 0.470214 0.6211144 +0.7555758 0.470214 0.6211144 +0.7751122 0.470214 0.6211144 +0.7940252 0.470214 0.6211144 +0.8123661 0.470214 0.6211144 +0.8301795 0.470214 0.6211144 +0.8475045 0.470214 0.6211144 +0.8643761 0.470214 0.6211144 +0.880825 0.470214 0.6211144 +0.8968787 0.470214 0.6211144 +0.9125621 0.470214 0.6211144 +0.9278974 0.470214 0.6211144 +0.9429048 0.470214 0.6211144 +0.9576028 0.470214 0.6211144 +0.9720079 0.470214 0.6211144 +0.9861357 0.470214 0.6211144 +1 0.470214 0.6211144 +0 0.5050551 0.6211144 +0.1939468 0.5050551 0.6211144 +0.2773041 0.5050551 0.6211144 +0.3384659 0.5050551 0.6211144 +0.3885728 0.5050551 0.6211144 +0.4317928 0.5050551 0.6211144 +0.470214 0.5050551 0.6211144 +0.5050551 0.5050551 0.6211144 +0.5370987 0.5050551 0.6211144 +0.5668815 0.5050551 0.6211144 +0.5947903 0.5050551 0.6211144 +0.6211144 0.5050551 0.6211144 +0.6460766 0.5050551 0.6211144 +0.6698526 0.5050551 0.6211144 +0.6925839 0.5050551 0.6211144 +0.7143866 0.5050551 0.6211144 +0.7353569 0.5050551 0.6211144 +0.7555758 0.5050551 0.6211144 +0.7751122 0.5050551 0.6211144 +0.7940252 0.5050551 0.6211144 +0.8123661 0.5050551 0.6211144 +0.8301795 0.5050551 0.6211144 +0.8475045 0.5050551 0.6211144 +0.8643761 0.5050551 0.6211144 +0.880825 0.5050551 0.6211144 +0.8968787 0.5050551 0.6211144 +0.9125621 0.5050551 0.6211144 +0.9278974 0.5050551 0.6211144 +0.9429048 0.5050551 0.6211144 +0.9576028 0.5050551 0.6211144 +0.9720079 0.5050551 0.6211144 +0.9861357 0.5050551 0.6211144 +1 0.5050551 0.6211144 +0 0.5370987 0.6211144 +0.1939468 0.5370987 0.6211144 +0.2773041 0.5370987 0.6211144 +0.3384659 0.5370987 0.6211144 +0.3885728 0.5370987 0.6211144 +0.4317928 0.5370987 0.6211144 +0.470214 0.5370987 0.6211144 +0.5050551 0.5370987 0.6211144 +0.5370987 0.5370987 0.6211144 +0.5668815 0.5370987 0.6211144 +0.5947903 0.5370987 0.6211144 +0.6211144 0.5370987 0.6211144 +0.6460766 0.5370987 0.6211144 +0.6698526 0.5370987 0.6211144 +0.6925839 0.5370987 0.6211144 +0.7143866 0.5370987 0.6211144 +0.7353569 0.5370987 0.6211144 +0.7555758 0.5370987 0.6211144 +0.7751122 0.5370987 0.6211144 +0.7940252 0.5370987 0.6211144 +0.8123661 0.5370987 0.6211144 +0.8301795 0.5370987 0.6211144 +0.8475045 0.5370987 0.6211144 +0.8643761 0.5370987 0.6211144 +0.880825 0.5370987 0.6211144 +0.8968787 0.5370987 0.6211144 +0.9125621 0.5370987 0.6211144 +0.9278974 0.5370987 0.6211144 +0.9429048 0.5370987 0.6211144 +0.9576028 0.5370987 0.6211144 +0.9720079 0.5370987 0.6211144 +0.9861357 0.5370987 0.6211144 +1 0.5370987 0.6211144 +0 0.5668815 0.6211144 +0.1939468 0.5668815 0.6211144 +0.2773041 0.5668815 0.6211144 +0.3384659 0.5668815 0.6211144 +0.3885728 0.5668815 0.6211144 +0.4317928 0.5668815 0.6211144 +0.470214 0.5668815 0.6211144 +0.5050551 0.5668815 0.6211144 +0.5370987 0.5668815 0.6211144 +0.5668815 0.5668815 0.6211144 +0.5947903 0.5668815 0.6211144 +0.6211144 0.5668815 0.6211144 +0.6460766 0.5668815 0.6211144 +0.6698526 0.5668815 0.6211144 +0.6925839 0.5668815 0.6211144 +0.7143866 0.5668815 0.6211144 +0.7353569 0.5668815 0.6211144 +0.7555758 0.5668815 0.6211144 +0.7751122 0.5668815 0.6211144 +0.7940252 0.5668815 0.6211144 +0.8123661 0.5668815 0.6211144 +0.8301795 0.5668815 0.6211144 +0.8475045 0.5668815 0.6211144 +0.8643761 0.5668815 0.6211144 +0.880825 0.5668815 0.6211144 +0.8968787 0.5668815 0.6211144 +0.9125621 0.5668815 0.6211144 +0.9278974 0.5668815 0.6211144 +0.9429048 0.5668815 0.6211144 +0.9576028 0.5668815 0.6211144 +0.9720079 0.5668815 0.6211144 +0.9861357 0.5668815 0.6211144 +1 0.5668815 0.6211144 +0 0.5947903 0.6211144 +0.1939468 0.5947903 0.6211144 +0.2773041 0.5947903 0.6211144 +0.3384659 0.5947903 0.6211144 +0.3885728 0.5947903 0.6211144 +0.4317928 0.5947903 0.6211144 +0.470214 0.5947903 0.6211144 +0.5050551 0.5947903 0.6211144 +0.5370987 0.5947903 0.6211144 +0.5668815 0.5947903 0.6211144 +0.5947903 0.5947903 0.6211144 +0.6211144 0.5947903 0.6211144 +0.6460766 0.5947903 0.6211144 +0.6698526 0.5947903 0.6211144 +0.6925839 0.5947903 0.6211144 +0.7143866 0.5947903 0.6211144 +0.7353569 0.5947903 0.6211144 +0.7555758 0.5947903 0.6211144 +0.7751122 0.5947903 0.6211144 +0.7940252 0.5947903 0.6211144 +0.8123661 0.5947903 0.6211144 +0.8301795 0.5947903 0.6211144 +0.8475045 0.5947903 0.6211144 +0.8643761 0.5947903 0.6211144 +0.880825 0.5947903 0.6211144 +0.8968787 0.5947903 0.6211144 +0.9125621 0.5947903 0.6211144 +0.9278974 0.5947903 0.6211144 +0.9429048 0.5947903 0.6211144 +0.9576028 0.5947903 0.6211144 +0.9720079 0.5947903 0.6211144 +0.9861357 0.5947903 0.6211144 +1 0.5947903 0.6211144 +0 0.6211144 0.6211144 +0.1939468 0.6211144 0.6211144 +0.2773041 0.6211144 0.6211144 +0.3384659 0.6211144 0.6211144 +0.3885728 0.6211144 0.6211144 +0.4317928 0.6211144 0.6211144 +0.470214 0.6211144 0.6211144 +0.5050551 0.6211144 0.6211144 +0.5370987 0.6211144 0.6211144 +0.5668815 0.6211144 0.6211144 +0.5947903 0.6211144 0.6211144 +0.6211144 0.6211144 0.6211144 +0.6460766 0.6211144 0.6211144 +0.6698526 0.6211144 0.6211144 +0.6925839 0.6211144 0.6211144 +0.7143866 0.6211144 0.6211144 +0.7353569 0.6211144 0.6211144 +0.7555758 0.6211144 0.6211144 +0.7751122 0.6211144 0.6211144 +0.7940252 0.6211144 0.6211144 +0.8123661 0.6211144 0.6211144 +0.8301795 0.6211144 0.6211144 +0.8475045 0.6211144 0.6211144 +0.8643761 0.6211144 0.6211144 +0.880825 0.6211144 0.6211144 +0.8968787 0.6211144 0.6211144 +0.9125621 0.6211144 0.6211144 +0.9278974 0.6211144 0.6211144 +0.9429048 0.6211144 0.6211144 +0.9576028 0.6211144 0.6211144 +0.9720079 0.6211144 0.6211144 +0.9861357 0.6211144 0.6211144 +1 0.6211144 0.6211144 +0 0.6460766 0.6211144 +0.1939468 0.6460766 0.6211144 +0.2773041 0.6460766 0.6211144 +0.3384659 0.6460766 0.6211144 +0.3885728 0.6460766 0.6211144 +0.4317928 0.6460766 0.6211144 +0.470214 0.6460766 0.6211144 +0.5050551 0.6460766 0.6211144 +0.5370987 0.6460766 0.6211144 +0.5668815 0.6460766 0.6211144 +0.5947903 0.6460766 0.6211144 +0.6211144 0.6460766 0.6211144 +0.6460766 0.6460766 0.6211144 +0.6698526 0.6460766 0.6211144 +0.6925839 0.6460766 0.6211144 +0.7143866 0.6460766 0.6211144 +0.7353569 0.6460766 0.6211144 +0.7555758 0.6460766 0.6211144 +0.7751122 0.6460766 0.6211144 +0.7940252 0.6460766 0.6211144 +0.8123661 0.6460766 0.6211144 +0.8301795 0.6460766 0.6211144 +0.8475045 0.6460766 0.6211144 +0.8643761 0.6460766 0.6211144 +0.880825 0.6460766 0.6211144 +0.8968787 0.6460766 0.6211144 +0.9125621 0.6460766 0.6211144 +0.9278974 0.6460766 0.6211144 +0.9429048 0.6460766 0.6211144 +0.9576028 0.6460766 0.6211144 +0.9720079 0.6460766 0.6211144 +0.9861357 0.6460766 0.6211144 +1 0.6460766 0.6211144 +0 0.6698526 0.6211144 +0.1939468 0.6698526 0.6211144 +0.2773041 0.6698526 0.6211144 +0.3384659 0.6698526 0.6211144 +0.3885728 0.6698526 0.6211144 +0.4317928 0.6698526 0.6211144 +0.470214 0.6698526 0.6211144 +0.5050551 0.6698526 0.6211144 +0.5370987 0.6698526 0.6211144 +0.5668815 0.6698526 0.6211144 +0.5947903 0.6698526 0.6211144 +0.6211144 0.6698526 0.6211144 +0.6460766 0.6698526 0.6211144 +0.6698526 0.6698526 0.6211144 +0.6925839 0.6698526 0.6211144 +0.7143866 0.6698526 0.6211144 +0.7353569 0.6698526 0.6211144 +0.7555758 0.6698526 0.6211144 +0.7751122 0.6698526 0.6211144 +0.7940252 0.6698526 0.6211144 +0.8123661 0.6698526 0.6211144 +0.8301795 0.6698526 0.6211144 +0.8475045 0.6698526 0.6211144 +0.8643761 0.6698526 0.6211144 +0.880825 0.6698526 0.6211144 +0.8968787 0.6698526 0.6211144 +0.9125621 0.6698526 0.6211144 +0.9278974 0.6698526 0.6211144 +0.9429048 0.6698526 0.6211144 +0.9576028 0.6698526 0.6211144 +0.9720079 0.6698526 0.6211144 +0.9861357 0.6698526 0.6211144 +1 0.6698526 0.6211144 +0 0.6925839 0.6211144 +0.1939468 0.6925839 0.6211144 +0.2773041 0.6925839 0.6211144 +0.3384659 0.6925839 0.6211144 +0.3885728 0.6925839 0.6211144 +0.4317928 0.6925839 0.6211144 +0.470214 0.6925839 0.6211144 +0.5050551 0.6925839 0.6211144 +0.5370987 0.6925839 0.6211144 +0.5668815 0.6925839 0.6211144 +0.5947903 0.6925839 0.6211144 +0.6211144 0.6925839 0.6211144 +0.6460766 0.6925839 0.6211144 +0.6698526 0.6925839 0.6211144 +0.6925839 0.6925839 0.6211144 +0.7143866 0.6925839 0.6211144 +0.7353569 0.6925839 0.6211144 +0.7555758 0.6925839 0.6211144 +0.7751122 0.6925839 0.6211144 +0.7940252 0.6925839 0.6211144 +0.8123661 0.6925839 0.6211144 +0.8301795 0.6925839 0.6211144 +0.8475045 0.6925839 0.6211144 +0.8643761 0.6925839 0.6211144 +0.880825 0.6925839 0.6211144 +0.8968787 0.6925839 0.6211144 +0.9125621 0.6925839 0.6211144 +0.9278974 0.6925839 0.6211144 +0.9429048 0.6925839 0.6211144 +0.9576028 0.6925839 0.6211144 +0.9720079 0.6925839 0.6211144 +0.9861357 0.6925839 0.6211144 +1 0.6925839 0.6211144 +0 0.7143866 0.6211144 +0.1939468 0.7143866 0.6211144 +0.2773041 0.7143866 0.6211144 +0.3384659 0.7143866 0.6211144 +0.3885728 0.7143866 0.6211144 +0.4317928 0.7143866 0.6211144 +0.470214 0.7143866 0.6211144 +0.5050551 0.7143866 0.6211144 +0.5370987 0.7143866 0.6211144 +0.5668815 0.7143866 0.6211144 +0.5947903 0.7143866 0.6211144 +0.6211144 0.7143866 0.6211144 +0.6460766 0.7143866 0.6211144 +0.6698526 0.7143866 0.6211144 +0.6925839 0.7143866 0.6211144 +0.7143866 0.7143866 0.6211144 +0.7353569 0.7143866 0.6211144 +0.7555758 0.7143866 0.6211144 +0.7751122 0.7143866 0.6211144 +0.7940252 0.7143866 0.6211144 +0.8123661 0.7143866 0.6211144 +0.8301795 0.7143866 0.6211144 +0.8475045 0.7143866 0.6211144 +0.8643761 0.7143866 0.6211144 +0.880825 0.7143866 0.6211144 +0.8968787 0.7143866 0.6211144 +0.9125621 0.7143866 0.6211144 +0.9278974 0.7143866 0.6211144 +0.9429048 0.7143866 0.6211144 +0.9576028 0.7143866 0.6211144 +0.9720079 0.7143866 0.6211144 +0.9861357 0.7143866 0.6211144 +1 0.7143866 0.6211144 +0 0.7353569 0.6211144 +0.1939468 0.7353569 0.6211144 +0.2773041 0.7353569 0.6211144 +0.3384659 0.7353569 0.6211144 +0.3885728 0.7353569 0.6211144 +0.4317928 0.7353569 0.6211144 +0.470214 0.7353569 0.6211144 +0.5050551 0.7353569 0.6211144 +0.5370987 0.7353569 0.6211144 +0.5668815 0.7353569 0.6211144 +0.5947903 0.7353569 0.6211144 +0.6211144 0.7353569 0.6211144 +0.6460766 0.7353569 0.6211144 +0.6698526 0.7353569 0.6211144 +0.6925839 0.7353569 0.6211144 +0.7143866 0.7353569 0.6211144 +0.7353569 0.7353569 0.6211144 +0.7555758 0.7353569 0.6211144 +0.7751122 0.7353569 0.6211144 +0.7940252 0.7353569 0.6211144 +0.8123661 0.7353569 0.6211144 +0.8301795 0.7353569 0.6211144 +0.8475045 0.7353569 0.6211144 +0.8643761 0.7353569 0.6211144 +0.880825 0.7353569 0.6211144 +0.8968787 0.7353569 0.6211144 +0.9125621 0.7353569 0.6211144 +0.9278974 0.7353569 0.6211144 +0.9429048 0.7353569 0.6211144 +0.9576028 0.7353569 0.6211144 +0.9720079 0.7353569 0.6211144 +0.9861357 0.7353569 0.6211144 +1 0.7353569 0.6211144 +0 0.7555758 0.6211144 +0.1939468 0.7555758 0.6211144 +0.2773041 0.7555758 0.6211144 +0.3384659 0.7555758 0.6211144 +0.3885728 0.7555758 0.6211144 +0.4317928 0.7555758 0.6211144 +0.470214 0.7555758 0.6211144 +0.5050551 0.7555758 0.6211144 +0.5370987 0.7555758 0.6211144 +0.5668815 0.7555758 0.6211144 +0.5947903 0.7555758 0.6211144 +0.6211144 0.7555758 0.6211144 +0.6460766 0.7555758 0.6211144 +0.6698526 0.7555758 0.6211144 +0.6925839 0.7555758 0.6211144 +0.7143866 0.7555758 0.6211144 +0.7353569 0.7555758 0.6211144 +0.7555758 0.7555758 0.6211144 +0.7751122 0.7555758 0.6211144 +0.7940252 0.7555758 0.6211144 +0.8123661 0.7555758 0.6211144 +0.8301795 0.7555758 0.6211144 +0.8475045 0.7555758 0.6211144 +0.8643761 0.7555758 0.6211144 +0.880825 0.7555758 0.6211144 +0.8968787 0.7555758 0.6211144 +0.9125621 0.7555758 0.6211144 +0.9278974 0.7555758 0.6211144 +0.9429048 0.7555758 0.6211144 +0.9576028 0.7555758 0.6211144 +0.9720079 0.7555758 0.6211144 +0.9861357 0.7555758 0.6211144 +1 0.7555758 0.6211144 +0 0.7751122 0.6211144 +0.1939468 0.7751122 0.6211144 +0.2773041 0.7751122 0.6211144 +0.3384659 0.7751122 0.6211144 +0.3885728 0.7751122 0.6211144 +0.4317928 0.7751122 0.6211144 +0.470214 0.7751122 0.6211144 +0.5050551 0.7751122 0.6211144 +0.5370987 0.7751122 0.6211144 +0.5668815 0.7751122 0.6211144 +0.5947903 0.7751122 0.6211144 +0.6211144 0.7751122 0.6211144 +0.6460766 0.7751122 0.6211144 +0.6698526 0.7751122 0.6211144 +0.6925839 0.7751122 0.6211144 +0.7143866 0.7751122 0.6211144 +0.7353569 0.7751122 0.6211144 +0.7555758 0.7751122 0.6211144 +0.7751122 0.7751122 0.6211144 +0.7940252 0.7751122 0.6211144 +0.8123661 0.7751122 0.6211144 +0.8301795 0.7751122 0.6211144 +0.8475045 0.7751122 0.6211144 +0.8643761 0.7751122 0.6211144 +0.880825 0.7751122 0.6211144 +0.8968787 0.7751122 0.6211144 +0.9125621 0.7751122 0.6211144 +0.9278974 0.7751122 0.6211144 +0.9429048 0.7751122 0.6211144 +0.9576028 0.7751122 0.6211144 +0.9720079 0.7751122 0.6211144 +0.9861357 0.7751122 0.6211144 +1 0.7751122 0.6211144 +0 0.7940252 0.6211144 +0.1939468 0.7940252 0.6211144 +0.2773041 0.7940252 0.6211144 +0.3384659 0.7940252 0.6211144 +0.3885728 0.7940252 0.6211144 +0.4317928 0.7940252 0.6211144 +0.470214 0.7940252 0.6211144 +0.5050551 0.7940252 0.6211144 +0.5370987 0.7940252 0.6211144 +0.5668815 0.7940252 0.6211144 +0.5947903 0.7940252 0.6211144 +0.6211144 0.7940252 0.6211144 +0.6460766 0.7940252 0.6211144 +0.6698526 0.7940252 0.6211144 +0.6925839 0.7940252 0.6211144 +0.7143866 0.7940252 0.6211144 +0.7353569 0.7940252 0.6211144 +0.7555758 0.7940252 0.6211144 +0.7751122 0.7940252 0.6211144 +0.7940252 0.7940252 0.6211144 +0.8123661 0.7940252 0.6211144 +0.8301795 0.7940252 0.6211144 +0.8475045 0.7940252 0.6211144 +0.8643761 0.7940252 0.6211144 +0.880825 0.7940252 0.6211144 +0.8968787 0.7940252 0.6211144 +0.9125621 0.7940252 0.6211144 +0.9278974 0.7940252 0.6211144 +0.9429048 0.7940252 0.6211144 +0.9576028 0.7940252 0.6211144 +0.9720079 0.7940252 0.6211144 +0.9861357 0.7940252 0.6211144 +1 0.7940252 0.6211144 +0 0.8123661 0.6211144 +0.1939468 0.8123661 0.6211144 +0.2773041 0.8123661 0.6211144 +0.3384659 0.8123661 0.6211144 +0.3885728 0.8123661 0.6211144 +0.4317928 0.8123661 0.6211144 +0.470214 0.8123661 0.6211144 +0.5050551 0.8123661 0.6211144 +0.5370987 0.8123661 0.6211144 +0.5668815 0.8123661 0.6211144 +0.5947903 0.8123661 0.6211144 +0.6211144 0.8123661 0.6211144 +0.6460766 0.8123661 0.6211144 +0.6698526 0.8123661 0.6211144 +0.6925839 0.8123661 0.6211144 +0.7143866 0.8123661 0.6211144 +0.7353569 0.8123661 0.6211144 +0.7555758 0.8123661 0.6211144 +0.7751122 0.8123661 0.6211144 +0.7940252 0.8123661 0.6211144 +0.8123661 0.8123661 0.6211144 +0.8301795 0.8123661 0.6211144 +0.8475045 0.8123661 0.6211144 +0.8643761 0.8123661 0.6211144 +0.880825 0.8123661 0.6211144 +0.8968787 0.8123661 0.6211144 +0.9125621 0.8123661 0.6211144 +0.9278974 0.8123661 0.6211144 +0.9429048 0.8123661 0.6211144 +0.9576028 0.8123661 0.6211144 +0.9720079 0.8123661 0.6211144 +0.9861357 0.8123661 0.6211144 +1 0.8123661 0.6211144 +0 0.8301795 0.6211144 +0.1939468 0.8301795 0.6211144 +0.2773041 0.8301795 0.6211144 +0.3384659 0.8301795 0.6211144 +0.3885728 0.8301795 0.6211144 +0.4317928 0.8301795 0.6211144 +0.470214 0.8301795 0.6211144 +0.5050551 0.8301795 0.6211144 +0.5370987 0.8301795 0.6211144 +0.5668815 0.8301795 0.6211144 +0.5947903 0.8301795 0.6211144 +0.6211144 0.8301795 0.6211144 +0.6460766 0.8301795 0.6211144 +0.6698526 0.8301795 0.6211144 +0.6925839 0.8301795 0.6211144 +0.7143866 0.8301795 0.6211144 +0.7353569 0.8301795 0.6211144 +0.7555758 0.8301795 0.6211144 +0.7751122 0.8301795 0.6211144 +0.7940252 0.8301795 0.6211144 +0.8123661 0.8301795 0.6211144 +0.8301795 0.8301795 0.6211144 +0.8475045 0.8301795 0.6211144 +0.8643761 0.8301795 0.6211144 +0.880825 0.8301795 0.6211144 +0.8968787 0.8301795 0.6211144 +0.9125621 0.8301795 0.6211144 +0.9278974 0.8301795 0.6211144 +0.9429048 0.8301795 0.6211144 +0.9576028 0.8301795 0.6211144 +0.9720079 0.8301795 0.6211144 +0.9861357 0.8301795 0.6211144 +1 0.8301795 0.6211144 +0 0.8475045 0.6211144 +0.1939468 0.8475045 0.6211144 +0.2773041 0.8475045 0.6211144 +0.3384659 0.8475045 0.6211144 +0.3885728 0.8475045 0.6211144 +0.4317928 0.8475045 0.6211144 +0.470214 0.8475045 0.6211144 +0.5050551 0.8475045 0.6211144 +0.5370987 0.8475045 0.6211144 +0.5668815 0.8475045 0.6211144 +0.5947903 0.8475045 0.6211144 +0.6211144 0.8475045 0.6211144 +0.6460766 0.8475045 0.6211144 +0.6698526 0.8475045 0.6211144 +0.6925839 0.8475045 0.6211144 +0.7143866 0.8475045 0.6211144 +0.7353569 0.8475045 0.6211144 +0.7555758 0.8475045 0.6211144 +0.7751122 0.8475045 0.6211144 +0.7940252 0.8475045 0.6211144 +0.8123661 0.8475045 0.6211144 +0.8301795 0.8475045 0.6211144 +0.8475045 0.8475045 0.6211144 +0.8643761 0.8475045 0.6211144 +0.880825 0.8475045 0.6211144 +0.8968787 0.8475045 0.6211144 +0.9125621 0.8475045 0.6211144 +0.9278974 0.8475045 0.6211144 +0.9429048 0.8475045 0.6211144 +0.9576028 0.8475045 0.6211144 +0.9720079 0.8475045 0.6211144 +0.9861357 0.8475045 0.6211144 +1 0.8475045 0.6211144 +0 0.8643761 0.6211144 +0.1939468 0.8643761 0.6211144 +0.2773041 0.8643761 0.6211144 +0.3384659 0.8643761 0.6211144 +0.3885728 0.8643761 0.6211144 +0.4317928 0.8643761 0.6211144 +0.470214 0.8643761 0.6211144 +0.5050551 0.8643761 0.6211144 +0.5370987 0.8643761 0.6211144 +0.5668815 0.8643761 0.6211144 +0.5947903 0.8643761 0.6211144 +0.6211144 0.8643761 0.6211144 +0.6460766 0.8643761 0.6211144 +0.6698526 0.8643761 0.6211144 +0.6925839 0.8643761 0.6211144 +0.7143866 0.8643761 0.6211144 +0.7353569 0.8643761 0.6211144 +0.7555758 0.8643761 0.6211144 +0.7751122 0.8643761 0.6211144 +0.7940252 0.8643761 0.6211144 +0.8123661 0.8643761 0.6211144 +0.8301795 0.8643761 0.6211144 +0.8475045 0.8643761 0.6211144 +0.8643761 0.8643761 0.6211144 +0.880825 0.8643761 0.6211144 +0.8968787 0.8643761 0.6211144 +0.9125621 0.8643761 0.6211144 +0.9278974 0.8643761 0.6211144 +0.9429048 0.8643761 0.6211144 +0.9576028 0.8643761 0.6211144 +0.9720079 0.8643761 0.6211144 +0.9861357 0.8643761 0.6211144 +1 0.8643761 0.6211144 +0 0.880825 0.6211144 +0.1939468 0.880825 0.6211144 +0.2773041 0.880825 0.6211144 +0.3384659 0.880825 0.6211144 +0.3885728 0.880825 0.6211144 +0.4317928 0.880825 0.6211144 +0.470214 0.880825 0.6211144 +0.5050551 0.880825 0.6211144 +0.5370987 0.880825 0.6211144 +0.5668815 0.880825 0.6211144 +0.5947903 0.880825 0.6211144 +0.6211144 0.880825 0.6211144 +0.6460766 0.880825 0.6211144 +0.6698526 0.880825 0.6211144 +0.6925839 0.880825 0.6211144 +0.7143866 0.880825 0.6211144 +0.7353569 0.880825 0.6211144 +0.7555758 0.880825 0.6211144 +0.7751122 0.880825 0.6211144 +0.7940252 0.880825 0.6211144 +0.8123661 0.880825 0.6211144 +0.8301795 0.880825 0.6211144 +0.8475045 0.880825 0.6211144 +0.8643761 0.880825 0.6211144 +0.880825 0.880825 0.6211144 +0.8968787 0.880825 0.6211144 +0.9125621 0.880825 0.6211144 +0.9278974 0.880825 0.6211144 +0.9429048 0.880825 0.6211144 +0.9576028 0.880825 0.6211144 +0.9720079 0.880825 0.6211144 +0.9861357 0.880825 0.6211144 +1 0.880825 0.6211144 +0 0.8968787 0.6211144 +0.1939468 0.8968787 0.6211144 +0.2773041 0.8968787 0.6211144 +0.3384659 0.8968787 0.6211144 +0.3885728 0.8968787 0.6211144 +0.4317928 0.8968787 0.6211144 +0.470214 0.8968787 0.6211144 +0.5050551 0.8968787 0.6211144 +0.5370987 0.8968787 0.6211144 +0.5668815 0.8968787 0.6211144 +0.5947903 0.8968787 0.6211144 +0.6211144 0.8968787 0.6211144 +0.6460766 0.8968787 0.6211144 +0.6698526 0.8968787 0.6211144 +0.6925839 0.8968787 0.6211144 +0.7143866 0.8968787 0.6211144 +0.7353569 0.8968787 0.6211144 +0.7555758 0.8968787 0.6211144 +0.7751122 0.8968787 0.6211144 +0.7940252 0.8968787 0.6211144 +0.8123661 0.8968787 0.6211144 +0.8301795 0.8968787 0.6211144 +0.8475045 0.8968787 0.6211144 +0.8643761 0.8968787 0.6211144 +0.880825 0.8968787 0.6211144 +0.8968787 0.8968787 0.6211144 +0.9125621 0.8968787 0.6211144 +0.9278974 0.8968787 0.6211144 +0.9429048 0.8968787 0.6211144 +0.9576028 0.8968787 0.6211144 +0.9720079 0.8968787 0.6211144 +0.9861357 0.8968787 0.6211144 +1 0.8968787 0.6211144 +0 0.9125621 0.6211144 +0.1939468 0.9125621 0.6211144 +0.2773041 0.9125621 0.6211144 +0.3384659 0.9125621 0.6211144 +0.3885728 0.9125621 0.6211144 +0.4317928 0.9125621 0.6211144 +0.470214 0.9125621 0.6211144 +0.5050551 0.9125621 0.6211144 +0.5370987 0.9125621 0.6211144 +0.5668815 0.9125621 0.6211144 +0.5947903 0.9125621 0.6211144 +0.6211144 0.9125621 0.6211144 +0.6460766 0.9125621 0.6211144 +0.6698526 0.9125621 0.6211144 +0.6925839 0.9125621 0.6211144 +0.7143866 0.9125621 0.6211144 +0.7353569 0.9125621 0.6211144 +0.7555758 0.9125621 0.6211144 +0.7751122 0.9125621 0.6211144 +0.7940252 0.9125621 0.6211144 +0.8123661 0.9125621 0.6211144 +0.8301795 0.9125621 0.6211144 +0.8475045 0.9125621 0.6211144 +0.8643761 0.9125621 0.6211144 +0.880825 0.9125621 0.6211144 +0.8968787 0.9125621 0.6211144 +0.9125621 0.9125621 0.6211144 +0.9278974 0.9125621 0.6211144 +0.9429048 0.9125621 0.6211144 +0.9576028 0.9125621 0.6211144 +0.9720079 0.9125621 0.6211144 +0.9861357 0.9125621 0.6211144 +1 0.9125621 0.6211144 +0 0.9278974 0.6211144 +0.1939468 0.9278974 0.6211144 +0.2773041 0.9278974 0.6211144 +0.3384659 0.9278974 0.6211144 +0.3885728 0.9278974 0.6211144 +0.4317928 0.9278974 0.6211144 +0.470214 0.9278974 0.6211144 +0.5050551 0.9278974 0.6211144 +0.5370987 0.9278974 0.6211144 +0.5668815 0.9278974 0.6211144 +0.5947903 0.9278974 0.6211144 +0.6211144 0.9278974 0.6211144 +0.6460766 0.9278974 0.6211144 +0.6698526 0.9278974 0.6211144 +0.6925839 0.9278974 0.6211144 +0.7143866 0.9278974 0.6211144 +0.7353569 0.9278974 0.6211144 +0.7555758 0.9278974 0.6211144 +0.7751122 0.9278974 0.6211144 +0.7940252 0.9278974 0.6211144 +0.8123661 0.9278974 0.6211144 +0.8301795 0.9278974 0.6211144 +0.8475045 0.9278974 0.6211144 +0.8643761 0.9278974 0.6211144 +0.880825 0.9278974 0.6211144 +0.8968787 0.9278974 0.6211144 +0.9125621 0.9278974 0.6211144 +0.9278974 0.9278974 0.6211144 +0.9429048 0.9278974 0.6211144 +0.9576028 0.9278974 0.6211144 +0.9720079 0.9278974 0.6211144 +0.9861357 0.9278974 0.6211144 +1 0.9278974 0.6211144 +0 0.9429048 0.6211144 +0.1939468 0.9429048 0.6211144 +0.2773041 0.9429048 0.6211144 +0.3384659 0.9429048 0.6211144 +0.3885728 0.9429048 0.6211144 +0.4317928 0.9429048 0.6211144 +0.470214 0.9429048 0.6211144 +0.5050551 0.9429048 0.6211144 +0.5370987 0.9429048 0.6211144 +0.5668815 0.9429048 0.6211144 +0.5947903 0.9429048 0.6211144 +0.6211144 0.9429048 0.6211144 +0.6460766 0.9429048 0.6211144 +0.6698526 0.9429048 0.6211144 +0.6925839 0.9429048 0.6211144 +0.7143866 0.9429048 0.6211144 +0.7353569 0.9429048 0.6211144 +0.7555758 0.9429048 0.6211144 +0.7751122 0.9429048 0.6211144 +0.7940252 0.9429048 0.6211144 +0.8123661 0.9429048 0.6211144 +0.8301795 0.9429048 0.6211144 +0.8475045 0.9429048 0.6211144 +0.8643761 0.9429048 0.6211144 +0.880825 0.9429048 0.6211144 +0.8968787 0.9429048 0.6211144 +0.9125621 0.9429048 0.6211144 +0.9278974 0.9429048 0.6211144 +0.9429048 0.9429048 0.6211144 +0.9576028 0.9429048 0.6211144 +0.9720079 0.9429048 0.6211144 +0.9861357 0.9429048 0.6211144 +1 0.9429048 0.6211144 +0 0.9576028 0.6211144 +0.1939468 0.9576028 0.6211144 +0.2773041 0.9576028 0.6211144 +0.3384659 0.9576028 0.6211144 +0.3885728 0.9576028 0.6211144 +0.4317928 0.9576028 0.6211144 +0.470214 0.9576028 0.6211144 +0.5050551 0.9576028 0.6211144 +0.5370987 0.9576028 0.6211144 +0.5668815 0.9576028 0.6211144 +0.5947903 0.9576028 0.6211144 +0.6211144 0.9576028 0.6211144 +0.6460766 0.9576028 0.6211144 +0.6698526 0.9576028 0.6211144 +0.6925839 0.9576028 0.6211144 +0.7143866 0.9576028 0.6211144 +0.7353569 0.9576028 0.6211144 +0.7555758 0.9576028 0.6211144 +0.7751122 0.9576028 0.6211144 +0.7940252 0.9576028 0.6211144 +0.8123661 0.9576028 0.6211144 +0.8301795 0.9576028 0.6211144 +0.8475045 0.9576028 0.6211144 +0.8643761 0.9576028 0.6211144 +0.880825 0.9576028 0.6211144 +0.8968787 0.9576028 0.6211144 +0.9125621 0.9576028 0.6211144 +0.9278974 0.9576028 0.6211144 +0.9429048 0.9576028 0.6211144 +0.9576028 0.9576028 0.6211144 +0.9720079 0.9576028 0.6211144 +0.9861357 0.9576028 0.6211144 +1 0.9576028 0.6211144 +0 0.9720079 0.6211144 +0.1939468 0.9720079 0.6211144 +0.2773041 0.9720079 0.6211144 +0.3384659 0.9720079 0.6211144 +0.3885728 0.9720079 0.6211144 +0.4317928 0.9720079 0.6211144 +0.470214 0.9720079 0.6211144 +0.5050551 0.9720079 0.6211144 +0.5370987 0.9720079 0.6211144 +0.5668815 0.9720079 0.6211144 +0.5947903 0.9720079 0.6211144 +0.6211144 0.9720079 0.6211144 +0.6460766 0.9720079 0.6211144 +0.6698526 0.9720079 0.6211144 +0.6925839 0.9720079 0.6211144 +0.7143866 0.9720079 0.6211144 +0.7353569 0.9720079 0.6211144 +0.7555758 0.9720079 0.6211144 +0.7751122 0.9720079 0.6211144 +0.7940252 0.9720079 0.6211144 +0.8123661 0.9720079 0.6211144 +0.8301795 0.9720079 0.6211144 +0.8475045 0.9720079 0.6211144 +0.8643761 0.9720079 0.6211144 +0.880825 0.9720079 0.6211144 +0.8968787 0.9720079 0.6211144 +0.9125621 0.9720079 0.6211144 +0.9278974 0.9720079 0.6211144 +0.9429048 0.9720079 0.6211144 +0.9576028 0.9720079 0.6211144 +0.9720079 0.9720079 0.6211144 +0.9861357 0.9720079 0.6211144 +1 0.9720079 0.6211144 +0 0.9861357 0.6211144 +0.1939468 0.9861357 0.6211144 +0.2773041 0.9861357 0.6211144 +0.3384659 0.9861357 0.6211144 +0.3885728 0.9861357 0.6211144 +0.4317928 0.9861357 0.6211144 +0.470214 0.9861357 0.6211144 +0.5050551 0.9861357 0.6211144 +0.5370987 0.9861357 0.6211144 +0.5668815 0.9861357 0.6211144 +0.5947903 0.9861357 0.6211144 +0.6211144 0.9861357 0.6211144 +0.6460766 0.9861357 0.6211144 +0.6698526 0.9861357 0.6211144 +0.6925839 0.9861357 0.6211144 +0.7143866 0.9861357 0.6211144 +0.7353569 0.9861357 0.6211144 +0.7555758 0.9861357 0.6211144 +0.7751122 0.9861357 0.6211144 +0.7940252 0.9861357 0.6211144 +0.8123661 0.9861357 0.6211144 +0.8301795 0.9861357 0.6211144 +0.8475045 0.9861357 0.6211144 +0.8643761 0.9861357 0.6211144 +0.880825 0.9861357 0.6211144 +0.8968787 0.9861357 0.6211144 +0.9125621 0.9861357 0.6211144 +0.9278974 0.9861357 0.6211144 +0.9429048 0.9861357 0.6211144 +0.9576028 0.9861357 0.6211144 +0.9720079 0.9861357 0.6211144 +0.9861357 0.9861357 0.6211144 +1 0.9861357 0.6211144 +0 1 0.6211144 +0.1939468 1 0.6211144 +0.2773041 1 0.6211144 +0.3384659 1 0.6211144 +0.3885728 1 0.6211144 +0.4317928 1 0.6211144 +0.470214 1 0.6211144 +0.5050551 1 0.6211144 +0.5370987 1 0.6211144 +0.5668815 1 0.6211144 +0.5947903 1 0.6211144 +0.6211144 1 0.6211144 +0.6460766 1 0.6211144 +0.6698526 1 0.6211144 +0.6925839 1 0.6211144 +0.7143866 1 0.6211144 +0.7353569 1 0.6211144 +0.7555758 1 0.6211144 +0.7751122 1 0.6211144 +0.7940252 1 0.6211144 +0.8123661 1 0.6211144 +0.8301795 1 0.6211144 +0.8475045 1 0.6211144 +0.8643761 1 0.6211144 +0.880825 1 0.6211144 +0.8968787 1 0.6211144 +0.9125621 1 0.6211144 +0.9278974 1 0.6211144 +0.9429048 1 0.6211144 +0.9576028 1 0.6211144 +0.9720079 1 0.6211144 +0.9861357 1 0.6211144 +1 1 0.6211144 +0 0 0.6460766 +0.1939468 0 0.6460766 +0.2773041 0 0.6460766 +0.3384659 0 0.6460766 +0.3885728 0 0.6460766 +0.4317928 0 0.6460766 +0.470214 0 0.6460766 +0.5050551 0 0.6460766 +0.5370987 0 0.6460766 +0.5668815 0 0.6460766 +0.5947903 0 0.6460766 +0.6211144 0 0.6460766 +0.6460766 0 0.6460766 +0.6698526 0 0.6460766 +0.6925839 0 0.6460766 +0.7143866 0 0.6460766 +0.7353569 0 0.6460766 +0.7555758 0 0.6460766 +0.7751122 0 0.6460766 +0.7940252 0 0.6460766 +0.8123661 0 0.6460766 +0.8301795 0 0.6460766 +0.8475045 0 0.6460766 +0.8643761 0 0.6460766 +0.880825 0 0.6460766 +0.8968787 0 0.6460766 +0.9125621 0 0.6460766 +0.9278974 0 0.6460766 +0.9429048 0 0.6460766 +0.9576028 0 0.6460766 +0.9720079 0 0.6460766 +0.9861357 0 0.6460766 +1 0 0.6460766 +0 0.1939468 0.6460766 +0.1939468 0.1939468 0.6460766 +0.2773041 0.1939468 0.6460766 +0.3384659 0.1939468 0.6460766 +0.3885728 0.1939468 0.6460766 +0.4317928 0.1939468 0.6460766 +0.470214 0.1939468 0.6460766 +0.5050551 0.1939468 0.6460766 +0.5370987 0.1939468 0.6460766 +0.5668815 0.1939468 0.6460766 +0.5947903 0.1939468 0.6460766 +0.6211144 0.1939468 0.6460766 +0.6460766 0.1939468 0.6460766 +0.6698526 0.1939468 0.6460766 +0.6925839 0.1939468 0.6460766 +0.7143866 0.1939468 0.6460766 +0.7353569 0.1939468 0.6460766 +0.7555758 0.1939468 0.6460766 +0.7751122 0.1939468 0.6460766 +0.7940252 0.1939468 0.6460766 +0.8123661 0.1939468 0.6460766 +0.8301795 0.1939468 0.6460766 +0.8475045 0.1939468 0.6460766 +0.8643761 0.1939468 0.6460766 +0.880825 0.1939468 0.6460766 +0.8968787 0.1939468 0.6460766 +0.9125621 0.1939468 0.6460766 +0.9278974 0.1939468 0.6460766 +0.9429048 0.1939468 0.6460766 +0.9576028 0.1939468 0.6460766 +0.9720079 0.1939468 0.6460766 +0.9861357 0.1939468 0.6460766 +1 0.1939468 0.6460766 +0 0.2773041 0.6460766 +0.1939468 0.2773041 0.6460766 +0.2773041 0.2773041 0.6460766 +0.3384659 0.2773041 0.6460766 +0.3885728 0.2773041 0.6460766 +0.4317928 0.2773041 0.6460766 +0.470214 0.2773041 0.6460766 +0.5050551 0.2773041 0.6460766 +0.5370987 0.2773041 0.6460766 +0.5668815 0.2773041 0.6460766 +0.5947903 0.2773041 0.6460766 +0.6211144 0.2773041 0.6460766 +0.6460766 0.2773041 0.6460766 +0.6698526 0.2773041 0.6460766 +0.6925839 0.2773041 0.6460766 +0.7143866 0.2773041 0.6460766 +0.7353569 0.2773041 0.6460766 +0.7555758 0.2773041 0.6460766 +0.7751122 0.2773041 0.6460766 +0.7940252 0.2773041 0.6460766 +0.8123661 0.2773041 0.6460766 +0.8301795 0.2773041 0.6460766 +0.8475045 0.2773041 0.6460766 +0.8643761 0.2773041 0.6460766 +0.880825 0.2773041 0.6460766 +0.8968787 0.2773041 0.6460766 +0.9125621 0.2773041 0.6460766 +0.9278974 0.2773041 0.6460766 +0.9429048 0.2773041 0.6460766 +0.9576028 0.2773041 0.6460766 +0.9720079 0.2773041 0.6460766 +0.9861357 0.2773041 0.6460766 +1 0.2773041 0.6460766 +0 0.3384659 0.6460766 +0.1939468 0.3384659 0.6460766 +0.2773041 0.3384659 0.6460766 +0.3384659 0.3384659 0.6460766 +0.3885728 0.3384659 0.6460766 +0.4317928 0.3384659 0.6460766 +0.470214 0.3384659 0.6460766 +0.5050551 0.3384659 0.6460766 +0.5370987 0.3384659 0.6460766 +0.5668815 0.3384659 0.6460766 +0.5947903 0.3384659 0.6460766 +0.6211144 0.3384659 0.6460766 +0.6460766 0.3384659 0.6460766 +0.6698526 0.3384659 0.6460766 +0.6925839 0.3384659 0.6460766 +0.7143866 0.3384659 0.6460766 +0.7353569 0.3384659 0.6460766 +0.7555758 0.3384659 0.6460766 +0.7751122 0.3384659 0.6460766 +0.7940252 0.3384659 0.6460766 +0.8123661 0.3384659 0.6460766 +0.8301795 0.3384659 0.6460766 +0.8475045 0.3384659 0.6460766 +0.8643761 0.3384659 0.6460766 +0.880825 0.3384659 0.6460766 +0.8968787 0.3384659 0.6460766 +0.9125621 0.3384659 0.6460766 +0.9278974 0.3384659 0.6460766 +0.9429048 0.3384659 0.6460766 +0.9576028 0.3384659 0.6460766 +0.9720079 0.3384659 0.6460766 +0.9861357 0.3384659 0.6460766 +1 0.3384659 0.6460766 +0 0.3885728 0.6460766 +0.1939468 0.3885728 0.6460766 +0.2773041 0.3885728 0.6460766 +0.3384659 0.3885728 0.6460766 +0.3885728 0.3885728 0.6460766 +0.4317928 0.3885728 0.6460766 +0.470214 0.3885728 0.6460766 +0.5050551 0.3885728 0.6460766 +0.5370987 0.3885728 0.6460766 +0.5668815 0.3885728 0.6460766 +0.5947903 0.3885728 0.6460766 +0.6211144 0.3885728 0.6460766 +0.6460766 0.3885728 0.6460766 +0.6698526 0.3885728 0.6460766 +0.6925839 0.3885728 0.6460766 +0.7143866 0.3885728 0.6460766 +0.7353569 0.3885728 0.6460766 +0.7555758 0.3885728 0.6460766 +0.7751122 0.3885728 0.6460766 +0.7940252 0.3885728 0.6460766 +0.8123661 0.3885728 0.6460766 +0.8301795 0.3885728 0.6460766 +0.8475045 0.3885728 0.6460766 +0.8643761 0.3885728 0.6460766 +0.880825 0.3885728 0.6460766 +0.8968787 0.3885728 0.6460766 +0.9125621 0.3885728 0.6460766 +0.9278974 0.3885728 0.6460766 +0.9429048 0.3885728 0.6460766 +0.9576028 0.3885728 0.6460766 +0.9720079 0.3885728 0.6460766 +0.9861357 0.3885728 0.6460766 +1 0.3885728 0.6460766 +0 0.4317928 0.6460766 +0.1939468 0.4317928 0.6460766 +0.2773041 0.4317928 0.6460766 +0.3384659 0.4317928 0.6460766 +0.3885728 0.4317928 0.6460766 +0.4317928 0.4317928 0.6460766 +0.470214 0.4317928 0.6460766 +0.5050551 0.4317928 0.6460766 +0.5370987 0.4317928 0.6460766 +0.5668815 0.4317928 0.6460766 +0.5947903 0.4317928 0.6460766 +0.6211144 0.4317928 0.6460766 +0.6460766 0.4317928 0.6460766 +0.6698526 0.4317928 0.6460766 +0.6925839 0.4317928 0.6460766 +0.7143866 0.4317928 0.6460766 +0.7353569 0.4317928 0.6460766 +0.7555758 0.4317928 0.6460766 +0.7751122 0.4317928 0.6460766 +0.7940252 0.4317928 0.6460766 +0.8123661 0.4317928 0.6460766 +0.8301795 0.4317928 0.6460766 +0.8475045 0.4317928 0.6460766 +0.8643761 0.4317928 0.6460766 +0.880825 0.4317928 0.6460766 +0.8968787 0.4317928 0.6460766 +0.9125621 0.4317928 0.6460766 +0.9278974 0.4317928 0.6460766 +0.9429048 0.4317928 0.6460766 +0.9576028 0.4317928 0.6460766 +0.9720079 0.4317928 0.6460766 +0.9861357 0.4317928 0.6460766 +1 0.4317928 0.6460766 +0 0.470214 0.6460766 +0.1939468 0.470214 0.6460766 +0.2773041 0.470214 0.6460766 +0.3384659 0.470214 0.6460766 +0.3885728 0.470214 0.6460766 +0.4317928 0.470214 0.6460766 +0.470214 0.470214 0.6460766 +0.5050551 0.470214 0.6460766 +0.5370987 0.470214 0.6460766 +0.5668815 0.470214 0.6460766 +0.5947903 0.470214 0.6460766 +0.6211144 0.470214 0.6460766 +0.6460766 0.470214 0.6460766 +0.6698526 0.470214 0.6460766 +0.6925839 0.470214 0.6460766 +0.7143866 0.470214 0.6460766 +0.7353569 0.470214 0.6460766 +0.7555758 0.470214 0.6460766 +0.7751122 0.470214 0.6460766 +0.7940252 0.470214 0.6460766 +0.8123661 0.470214 0.6460766 +0.8301795 0.470214 0.6460766 +0.8475045 0.470214 0.6460766 +0.8643761 0.470214 0.6460766 +0.880825 0.470214 0.6460766 +0.8968787 0.470214 0.6460766 +0.9125621 0.470214 0.6460766 +0.9278974 0.470214 0.6460766 +0.9429048 0.470214 0.6460766 +0.9576028 0.470214 0.6460766 +0.9720079 0.470214 0.6460766 +0.9861357 0.470214 0.6460766 +1 0.470214 0.6460766 +0 0.5050551 0.6460766 +0.1939468 0.5050551 0.6460766 +0.2773041 0.5050551 0.6460766 +0.3384659 0.5050551 0.6460766 +0.3885728 0.5050551 0.6460766 +0.4317928 0.5050551 0.6460766 +0.470214 0.5050551 0.6460766 +0.5050551 0.5050551 0.6460766 +0.5370987 0.5050551 0.6460766 +0.5668815 0.5050551 0.6460766 +0.5947903 0.5050551 0.6460766 +0.6211144 0.5050551 0.6460766 +0.6460766 0.5050551 0.6460766 +0.6698526 0.5050551 0.6460766 +0.6925839 0.5050551 0.6460766 +0.7143866 0.5050551 0.6460766 +0.7353569 0.5050551 0.6460766 +0.7555758 0.5050551 0.6460766 +0.7751122 0.5050551 0.6460766 +0.7940252 0.5050551 0.6460766 +0.8123661 0.5050551 0.6460766 +0.8301795 0.5050551 0.6460766 +0.8475045 0.5050551 0.6460766 +0.8643761 0.5050551 0.6460766 +0.880825 0.5050551 0.6460766 +0.8968787 0.5050551 0.6460766 +0.9125621 0.5050551 0.6460766 +0.9278974 0.5050551 0.6460766 +0.9429048 0.5050551 0.6460766 +0.9576028 0.5050551 0.6460766 +0.9720079 0.5050551 0.6460766 +0.9861357 0.5050551 0.6460766 +1 0.5050551 0.6460766 +0 0.5370987 0.6460766 +0.1939468 0.5370987 0.6460766 +0.2773041 0.5370987 0.6460766 +0.3384659 0.5370987 0.6460766 +0.3885728 0.5370987 0.6460766 +0.4317928 0.5370987 0.6460766 +0.470214 0.5370987 0.6460766 +0.5050551 0.5370987 0.6460766 +0.5370987 0.5370987 0.6460766 +0.5668815 0.5370987 0.6460766 +0.5947903 0.5370987 0.6460766 +0.6211144 0.5370987 0.6460766 +0.6460766 0.5370987 0.6460766 +0.6698526 0.5370987 0.6460766 +0.6925839 0.5370987 0.6460766 +0.7143866 0.5370987 0.6460766 +0.7353569 0.5370987 0.6460766 +0.7555758 0.5370987 0.6460766 +0.7751122 0.5370987 0.6460766 +0.7940252 0.5370987 0.6460766 +0.8123661 0.5370987 0.6460766 +0.8301795 0.5370987 0.6460766 +0.8475045 0.5370987 0.6460766 +0.8643761 0.5370987 0.6460766 +0.880825 0.5370987 0.6460766 +0.8968787 0.5370987 0.6460766 +0.9125621 0.5370987 0.6460766 +0.9278974 0.5370987 0.6460766 +0.9429048 0.5370987 0.6460766 +0.9576028 0.5370987 0.6460766 +0.9720079 0.5370987 0.6460766 +0.9861357 0.5370987 0.6460766 +1 0.5370987 0.6460766 +0 0.5668815 0.6460766 +0.1939468 0.5668815 0.6460766 +0.2773041 0.5668815 0.6460766 +0.3384659 0.5668815 0.6460766 +0.3885728 0.5668815 0.6460766 +0.4317928 0.5668815 0.6460766 +0.470214 0.5668815 0.6460766 +0.5050551 0.5668815 0.6460766 +0.5370987 0.5668815 0.6460766 +0.5668815 0.5668815 0.6460766 +0.5947903 0.5668815 0.6460766 +0.6211144 0.5668815 0.6460766 +0.6460766 0.5668815 0.6460766 +0.6698526 0.5668815 0.6460766 +0.6925839 0.5668815 0.6460766 +0.7143866 0.5668815 0.6460766 +0.7353569 0.5668815 0.6460766 +0.7555758 0.5668815 0.6460766 +0.7751122 0.5668815 0.6460766 +0.7940252 0.5668815 0.6460766 +0.8123661 0.5668815 0.6460766 +0.8301795 0.5668815 0.6460766 +0.8475045 0.5668815 0.6460766 +0.8643761 0.5668815 0.6460766 +0.880825 0.5668815 0.6460766 +0.8968787 0.5668815 0.6460766 +0.9125621 0.5668815 0.6460766 +0.9278974 0.5668815 0.6460766 +0.9429048 0.5668815 0.6460766 +0.9576028 0.5668815 0.6460766 +0.9720079 0.5668815 0.6460766 +0.9861357 0.5668815 0.6460766 +1 0.5668815 0.6460766 +0 0.5947903 0.6460766 +0.1939468 0.5947903 0.6460766 +0.2773041 0.5947903 0.6460766 +0.3384659 0.5947903 0.6460766 +0.3885728 0.5947903 0.6460766 +0.4317928 0.5947903 0.6460766 +0.470214 0.5947903 0.6460766 +0.5050551 0.5947903 0.6460766 +0.5370987 0.5947903 0.6460766 +0.5668815 0.5947903 0.6460766 +0.5947903 0.5947903 0.6460766 +0.6211144 0.5947903 0.6460766 +0.6460766 0.5947903 0.6460766 +0.6698526 0.5947903 0.6460766 +0.6925839 0.5947903 0.6460766 +0.7143866 0.5947903 0.6460766 +0.7353569 0.5947903 0.6460766 +0.7555758 0.5947903 0.6460766 +0.7751122 0.5947903 0.6460766 +0.7940252 0.5947903 0.6460766 +0.8123661 0.5947903 0.6460766 +0.8301795 0.5947903 0.6460766 +0.8475045 0.5947903 0.6460766 +0.8643761 0.5947903 0.6460766 +0.880825 0.5947903 0.6460766 +0.8968787 0.5947903 0.6460766 +0.9125621 0.5947903 0.6460766 +0.9278974 0.5947903 0.6460766 +0.9429048 0.5947903 0.6460766 +0.9576028 0.5947903 0.6460766 +0.9720079 0.5947903 0.6460766 +0.9861357 0.5947903 0.6460766 +1 0.5947903 0.6460766 +0 0.6211144 0.6460766 +0.1939468 0.6211144 0.6460766 +0.2773041 0.6211144 0.6460766 +0.3384659 0.6211144 0.6460766 +0.3885728 0.6211144 0.6460766 +0.4317928 0.6211144 0.6460766 +0.470214 0.6211144 0.6460766 +0.5050551 0.6211144 0.6460766 +0.5370987 0.6211144 0.6460766 +0.5668815 0.6211144 0.6460766 +0.5947903 0.6211144 0.6460766 +0.6211144 0.6211144 0.6460766 +0.6460766 0.6211144 0.6460766 +0.6698526 0.6211144 0.6460766 +0.6925839 0.6211144 0.6460766 +0.7143866 0.6211144 0.6460766 +0.7353569 0.6211144 0.6460766 +0.7555758 0.6211144 0.6460766 +0.7751122 0.6211144 0.6460766 +0.7940252 0.6211144 0.6460766 +0.8123661 0.6211144 0.6460766 +0.8301795 0.6211144 0.6460766 +0.8475045 0.6211144 0.6460766 +0.8643761 0.6211144 0.6460766 +0.880825 0.6211144 0.6460766 +0.8968787 0.6211144 0.6460766 +0.9125621 0.6211144 0.6460766 +0.9278974 0.6211144 0.6460766 +0.9429048 0.6211144 0.6460766 +0.9576028 0.6211144 0.6460766 +0.9720079 0.6211144 0.6460766 +0.9861357 0.6211144 0.6460766 +1 0.6211144 0.6460766 +0 0.6460766 0.6460766 +0.1939468 0.6460766 0.6460766 +0.2773041 0.6460766 0.6460766 +0.3384659 0.6460766 0.6460766 +0.3885728 0.6460766 0.6460766 +0.4317928 0.6460766 0.6460766 +0.470214 0.6460766 0.6460766 +0.5050551 0.6460766 0.6460766 +0.5370987 0.6460766 0.6460766 +0.5668815 0.6460766 0.6460766 +0.5947903 0.6460766 0.6460766 +0.6211144 0.6460766 0.6460766 +0.6460766 0.6460766 0.6460766 +0.6698526 0.6460766 0.6460766 +0.6925839 0.6460766 0.6460766 +0.7143866 0.6460766 0.6460766 +0.7353569 0.6460766 0.6460766 +0.7555758 0.6460766 0.6460766 +0.7751122 0.6460766 0.6460766 +0.7940252 0.6460766 0.6460766 +0.8123661 0.6460766 0.6460766 +0.8301795 0.6460766 0.6460766 +0.8475045 0.6460766 0.6460766 +0.8643761 0.6460766 0.6460766 +0.880825 0.6460766 0.6460766 +0.8968787 0.6460766 0.6460766 +0.9125621 0.6460766 0.6460766 +0.9278974 0.6460766 0.6460766 +0.9429048 0.6460766 0.6460766 +0.9576028 0.6460766 0.6460766 +0.9720079 0.6460766 0.6460766 +0.9861357 0.6460766 0.6460766 +1 0.6460766 0.6460766 +0 0.6698526 0.6460766 +0.1939468 0.6698526 0.6460766 +0.2773041 0.6698526 0.6460766 +0.3384659 0.6698526 0.6460766 +0.3885728 0.6698526 0.6460766 +0.4317928 0.6698526 0.6460766 +0.470214 0.6698526 0.6460766 +0.5050551 0.6698526 0.6460766 +0.5370987 0.6698526 0.6460766 +0.5668815 0.6698526 0.6460766 +0.5947903 0.6698526 0.6460766 +0.6211144 0.6698526 0.6460766 +0.6460766 0.6698526 0.6460766 +0.6698526 0.6698526 0.6460766 +0.6925839 0.6698526 0.6460766 +0.7143866 0.6698526 0.6460766 +0.7353569 0.6698526 0.6460766 +0.7555758 0.6698526 0.6460766 +0.7751122 0.6698526 0.6460766 +0.7940252 0.6698526 0.6460766 +0.8123661 0.6698526 0.6460766 +0.8301795 0.6698526 0.6460766 +0.8475045 0.6698526 0.6460766 +0.8643761 0.6698526 0.6460766 +0.880825 0.6698526 0.6460766 +0.8968787 0.6698526 0.6460766 +0.9125621 0.6698526 0.6460766 +0.9278974 0.6698526 0.6460766 +0.9429048 0.6698526 0.6460766 +0.9576028 0.6698526 0.6460766 +0.9720079 0.6698526 0.6460766 +0.9861357 0.6698526 0.6460766 +1 0.6698526 0.6460766 +0 0.6925839 0.6460766 +0.1939468 0.6925839 0.6460766 +0.2773041 0.6925839 0.6460766 +0.3384659 0.6925839 0.6460766 +0.3885728 0.6925839 0.6460766 +0.4317928 0.6925839 0.6460766 +0.470214 0.6925839 0.6460766 +0.5050551 0.6925839 0.6460766 +0.5370987 0.6925839 0.6460766 +0.5668815 0.6925839 0.6460766 +0.5947903 0.6925839 0.6460766 +0.6211144 0.6925839 0.6460766 +0.6460766 0.6925839 0.6460766 +0.6698526 0.6925839 0.6460766 +0.6925839 0.6925839 0.6460766 +0.7143866 0.6925839 0.6460766 +0.7353569 0.6925839 0.6460766 +0.7555758 0.6925839 0.6460766 +0.7751122 0.6925839 0.6460766 +0.7940252 0.6925839 0.6460766 +0.8123661 0.6925839 0.6460766 +0.8301795 0.6925839 0.6460766 +0.8475045 0.6925839 0.6460766 +0.8643761 0.6925839 0.6460766 +0.880825 0.6925839 0.6460766 +0.8968787 0.6925839 0.6460766 +0.9125621 0.6925839 0.6460766 +0.9278974 0.6925839 0.6460766 +0.9429048 0.6925839 0.6460766 +0.9576028 0.6925839 0.6460766 +0.9720079 0.6925839 0.6460766 +0.9861357 0.6925839 0.6460766 +1 0.6925839 0.6460766 +0 0.7143866 0.6460766 +0.1939468 0.7143866 0.6460766 +0.2773041 0.7143866 0.6460766 +0.3384659 0.7143866 0.6460766 +0.3885728 0.7143866 0.6460766 +0.4317928 0.7143866 0.6460766 +0.470214 0.7143866 0.6460766 +0.5050551 0.7143866 0.6460766 +0.5370987 0.7143866 0.6460766 +0.5668815 0.7143866 0.6460766 +0.5947903 0.7143866 0.6460766 +0.6211144 0.7143866 0.6460766 +0.6460766 0.7143866 0.6460766 +0.6698526 0.7143866 0.6460766 +0.6925839 0.7143866 0.6460766 +0.7143866 0.7143866 0.6460766 +0.7353569 0.7143866 0.6460766 +0.7555758 0.7143866 0.6460766 +0.7751122 0.7143866 0.6460766 +0.7940252 0.7143866 0.6460766 +0.8123661 0.7143866 0.6460766 +0.8301795 0.7143866 0.6460766 +0.8475045 0.7143866 0.6460766 +0.8643761 0.7143866 0.6460766 +0.880825 0.7143866 0.6460766 +0.8968787 0.7143866 0.6460766 +0.9125621 0.7143866 0.6460766 +0.9278974 0.7143866 0.6460766 +0.9429048 0.7143866 0.6460766 +0.9576028 0.7143866 0.6460766 +0.9720079 0.7143866 0.6460766 +0.9861357 0.7143866 0.6460766 +1 0.7143866 0.6460766 +0 0.7353569 0.6460766 +0.1939468 0.7353569 0.6460766 +0.2773041 0.7353569 0.6460766 +0.3384659 0.7353569 0.6460766 +0.3885728 0.7353569 0.6460766 +0.4317928 0.7353569 0.6460766 +0.470214 0.7353569 0.6460766 +0.5050551 0.7353569 0.6460766 +0.5370987 0.7353569 0.6460766 +0.5668815 0.7353569 0.6460766 +0.5947903 0.7353569 0.6460766 +0.6211144 0.7353569 0.6460766 +0.6460766 0.7353569 0.6460766 +0.6698526 0.7353569 0.6460766 +0.6925839 0.7353569 0.6460766 +0.7143866 0.7353569 0.6460766 +0.7353569 0.7353569 0.6460766 +0.7555758 0.7353569 0.6460766 +0.7751122 0.7353569 0.6460766 +0.7940252 0.7353569 0.6460766 +0.8123661 0.7353569 0.6460766 +0.8301795 0.7353569 0.6460766 +0.8475045 0.7353569 0.6460766 +0.8643761 0.7353569 0.6460766 +0.880825 0.7353569 0.6460766 +0.8968787 0.7353569 0.6460766 +0.9125621 0.7353569 0.6460766 +0.9278974 0.7353569 0.6460766 +0.9429048 0.7353569 0.6460766 +0.9576028 0.7353569 0.6460766 +0.9720079 0.7353569 0.6460766 +0.9861357 0.7353569 0.6460766 +1 0.7353569 0.6460766 +0 0.7555758 0.6460766 +0.1939468 0.7555758 0.6460766 +0.2773041 0.7555758 0.6460766 +0.3384659 0.7555758 0.6460766 +0.3885728 0.7555758 0.6460766 +0.4317928 0.7555758 0.6460766 +0.470214 0.7555758 0.6460766 +0.5050551 0.7555758 0.6460766 +0.5370987 0.7555758 0.6460766 +0.5668815 0.7555758 0.6460766 +0.5947903 0.7555758 0.6460766 +0.6211144 0.7555758 0.6460766 +0.6460766 0.7555758 0.6460766 +0.6698526 0.7555758 0.6460766 +0.6925839 0.7555758 0.6460766 +0.7143866 0.7555758 0.6460766 +0.7353569 0.7555758 0.6460766 +0.7555758 0.7555758 0.6460766 +0.7751122 0.7555758 0.6460766 +0.7940252 0.7555758 0.6460766 +0.8123661 0.7555758 0.6460766 +0.8301795 0.7555758 0.6460766 +0.8475045 0.7555758 0.6460766 +0.8643761 0.7555758 0.6460766 +0.880825 0.7555758 0.6460766 +0.8968787 0.7555758 0.6460766 +0.9125621 0.7555758 0.6460766 +0.9278974 0.7555758 0.6460766 +0.9429048 0.7555758 0.6460766 +0.9576028 0.7555758 0.6460766 +0.9720079 0.7555758 0.6460766 +0.9861357 0.7555758 0.6460766 +1 0.7555758 0.6460766 +0 0.7751122 0.6460766 +0.1939468 0.7751122 0.6460766 +0.2773041 0.7751122 0.6460766 +0.3384659 0.7751122 0.6460766 +0.3885728 0.7751122 0.6460766 +0.4317928 0.7751122 0.6460766 +0.470214 0.7751122 0.6460766 +0.5050551 0.7751122 0.6460766 +0.5370987 0.7751122 0.6460766 +0.5668815 0.7751122 0.6460766 +0.5947903 0.7751122 0.6460766 +0.6211144 0.7751122 0.6460766 +0.6460766 0.7751122 0.6460766 +0.6698526 0.7751122 0.6460766 +0.6925839 0.7751122 0.6460766 +0.7143866 0.7751122 0.6460766 +0.7353569 0.7751122 0.6460766 +0.7555758 0.7751122 0.6460766 +0.7751122 0.7751122 0.6460766 +0.7940252 0.7751122 0.6460766 +0.8123661 0.7751122 0.6460766 +0.8301795 0.7751122 0.6460766 +0.8475045 0.7751122 0.6460766 +0.8643761 0.7751122 0.6460766 +0.880825 0.7751122 0.6460766 +0.8968787 0.7751122 0.6460766 +0.9125621 0.7751122 0.6460766 +0.9278974 0.7751122 0.6460766 +0.9429048 0.7751122 0.6460766 +0.9576028 0.7751122 0.6460766 +0.9720079 0.7751122 0.6460766 +0.9861357 0.7751122 0.6460766 +1 0.7751122 0.6460766 +0 0.7940252 0.6460766 +0.1939468 0.7940252 0.6460766 +0.2773041 0.7940252 0.6460766 +0.3384659 0.7940252 0.6460766 +0.3885728 0.7940252 0.6460766 +0.4317928 0.7940252 0.6460766 +0.470214 0.7940252 0.6460766 +0.5050551 0.7940252 0.6460766 +0.5370987 0.7940252 0.6460766 +0.5668815 0.7940252 0.6460766 +0.5947903 0.7940252 0.6460766 +0.6211144 0.7940252 0.6460766 +0.6460766 0.7940252 0.6460766 +0.6698526 0.7940252 0.6460766 +0.6925839 0.7940252 0.6460766 +0.7143866 0.7940252 0.6460766 +0.7353569 0.7940252 0.6460766 +0.7555758 0.7940252 0.6460766 +0.7751122 0.7940252 0.6460766 +0.7940252 0.7940252 0.6460766 +0.8123661 0.7940252 0.6460766 +0.8301795 0.7940252 0.6460766 +0.8475045 0.7940252 0.6460766 +0.8643761 0.7940252 0.6460766 +0.880825 0.7940252 0.6460766 +0.8968787 0.7940252 0.6460766 +0.9125621 0.7940252 0.6460766 +0.9278974 0.7940252 0.6460766 +0.9429048 0.7940252 0.6460766 +0.9576028 0.7940252 0.6460766 +0.9720079 0.7940252 0.6460766 +0.9861357 0.7940252 0.6460766 +1 0.7940252 0.6460766 +0 0.8123661 0.6460766 +0.1939468 0.8123661 0.6460766 +0.2773041 0.8123661 0.6460766 +0.3384659 0.8123661 0.6460766 +0.3885728 0.8123661 0.6460766 +0.4317928 0.8123661 0.6460766 +0.470214 0.8123661 0.6460766 +0.5050551 0.8123661 0.6460766 +0.5370987 0.8123661 0.6460766 +0.5668815 0.8123661 0.6460766 +0.5947903 0.8123661 0.6460766 +0.6211144 0.8123661 0.6460766 +0.6460766 0.8123661 0.6460766 +0.6698526 0.8123661 0.6460766 +0.6925839 0.8123661 0.6460766 +0.7143866 0.8123661 0.6460766 +0.7353569 0.8123661 0.6460766 +0.7555758 0.8123661 0.6460766 +0.7751122 0.8123661 0.6460766 +0.7940252 0.8123661 0.6460766 +0.8123661 0.8123661 0.6460766 +0.8301795 0.8123661 0.6460766 +0.8475045 0.8123661 0.6460766 +0.8643761 0.8123661 0.6460766 +0.880825 0.8123661 0.6460766 +0.8968787 0.8123661 0.6460766 +0.9125621 0.8123661 0.6460766 +0.9278974 0.8123661 0.6460766 +0.9429048 0.8123661 0.6460766 +0.9576028 0.8123661 0.6460766 +0.9720079 0.8123661 0.6460766 +0.9861357 0.8123661 0.6460766 +1 0.8123661 0.6460766 +0 0.8301795 0.6460766 +0.1939468 0.8301795 0.6460766 +0.2773041 0.8301795 0.6460766 +0.3384659 0.8301795 0.6460766 +0.3885728 0.8301795 0.6460766 +0.4317928 0.8301795 0.6460766 +0.470214 0.8301795 0.6460766 +0.5050551 0.8301795 0.6460766 +0.5370987 0.8301795 0.6460766 +0.5668815 0.8301795 0.6460766 +0.5947903 0.8301795 0.6460766 +0.6211144 0.8301795 0.6460766 +0.6460766 0.8301795 0.6460766 +0.6698526 0.8301795 0.6460766 +0.6925839 0.8301795 0.6460766 +0.7143866 0.8301795 0.6460766 +0.7353569 0.8301795 0.6460766 +0.7555758 0.8301795 0.6460766 +0.7751122 0.8301795 0.6460766 +0.7940252 0.8301795 0.6460766 +0.8123661 0.8301795 0.6460766 +0.8301795 0.8301795 0.6460766 +0.8475045 0.8301795 0.6460766 +0.8643761 0.8301795 0.6460766 +0.880825 0.8301795 0.6460766 +0.8968787 0.8301795 0.6460766 +0.9125621 0.8301795 0.6460766 +0.9278974 0.8301795 0.6460766 +0.9429048 0.8301795 0.6460766 +0.9576028 0.8301795 0.6460766 +0.9720079 0.8301795 0.6460766 +0.9861357 0.8301795 0.6460766 +1 0.8301795 0.6460766 +0 0.8475045 0.6460766 +0.1939468 0.8475045 0.6460766 +0.2773041 0.8475045 0.6460766 +0.3384659 0.8475045 0.6460766 +0.3885728 0.8475045 0.6460766 +0.4317928 0.8475045 0.6460766 +0.470214 0.8475045 0.6460766 +0.5050551 0.8475045 0.6460766 +0.5370987 0.8475045 0.6460766 +0.5668815 0.8475045 0.6460766 +0.5947903 0.8475045 0.6460766 +0.6211144 0.8475045 0.6460766 +0.6460766 0.8475045 0.6460766 +0.6698526 0.8475045 0.6460766 +0.6925839 0.8475045 0.6460766 +0.7143866 0.8475045 0.6460766 +0.7353569 0.8475045 0.6460766 +0.7555758 0.8475045 0.6460766 +0.7751122 0.8475045 0.6460766 +0.7940252 0.8475045 0.6460766 +0.8123661 0.8475045 0.6460766 +0.8301795 0.8475045 0.6460766 +0.8475045 0.8475045 0.6460766 +0.8643761 0.8475045 0.6460766 +0.880825 0.8475045 0.6460766 +0.8968787 0.8475045 0.6460766 +0.9125621 0.8475045 0.6460766 +0.9278974 0.8475045 0.6460766 +0.9429048 0.8475045 0.6460766 +0.9576028 0.8475045 0.6460766 +0.9720079 0.8475045 0.6460766 +0.9861357 0.8475045 0.6460766 +1 0.8475045 0.6460766 +0 0.8643761 0.6460766 +0.1939468 0.8643761 0.6460766 +0.2773041 0.8643761 0.6460766 +0.3384659 0.8643761 0.6460766 +0.3885728 0.8643761 0.6460766 +0.4317928 0.8643761 0.6460766 +0.470214 0.8643761 0.6460766 +0.5050551 0.8643761 0.6460766 +0.5370987 0.8643761 0.6460766 +0.5668815 0.8643761 0.6460766 +0.5947903 0.8643761 0.6460766 +0.6211144 0.8643761 0.6460766 +0.6460766 0.8643761 0.6460766 +0.6698526 0.8643761 0.6460766 +0.6925839 0.8643761 0.6460766 +0.7143866 0.8643761 0.6460766 +0.7353569 0.8643761 0.6460766 +0.7555758 0.8643761 0.6460766 +0.7751122 0.8643761 0.6460766 +0.7940252 0.8643761 0.6460766 +0.8123661 0.8643761 0.6460766 +0.8301795 0.8643761 0.6460766 +0.8475045 0.8643761 0.6460766 +0.8643761 0.8643761 0.6460766 +0.880825 0.8643761 0.6460766 +0.8968787 0.8643761 0.6460766 +0.9125621 0.8643761 0.6460766 +0.9278974 0.8643761 0.6460766 +0.9429048 0.8643761 0.6460766 +0.9576028 0.8643761 0.6460766 +0.9720079 0.8643761 0.6460766 +0.9861357 0.8643761 0.6460766 +1 0.8643761 0.6460766 +0 0.880825 0.6460766 +0.1939468 0.880825 0.6460766 +0.2773041 0.880825 0.6460766 +0.3384659 0.880825 0.6460766 +0.3885728 0.880825 0.6460766 +0.4317928 0.880825 0.6460766 +0.470214 0.880825 0.6460766 +0.5050551 0.880825 0.6460766 +0.5370987 0.880825 0.6460766 +0.5668815 0.880825 0.6460766 +0.5947903 0.880825 0.6460766 +0.6211144 0.880825 0.6460766 +0.6460766 0.880825 0.6460766 +0.6698526 0.880825 0.6460766 +0.6925839 0.880825 0.6460766 +0.7143866 0.880825 0.6460766 +0.7353569 0.880825 0.6460766 +0.7555758 0.880825 0.6460766 +0.7751122 0.880825 0.6460766 +0.7940252 0.880825 0.6460766 +0.8123661 0.880825 0.6460766 +0.8301795 0.880825 0.6460766 +0.8475045 0.880825 0.6460766 +0.8643761 0.880825 0.6460766 +0.880825 0.880825 0.6460766 +0.8968787 0.880825 0.6460766 +0.9125621 0.880825 0.6460766 +0.9278974 0.880825 0.6460766 +0.9429048 0.880825 0.6460766 +0.9576028 0.880825 0.6460766 +0.9720079 0.880825 0.6460766 +0.9861357 0.880825 0.6460766 +1 0.880825 0.6460766 +0 0.8968787 0.6460766 +0.1939468 0.8968787 0.6460766 +0.2773041 0.8968787 0.6460766 +0.3384659 0.8968787 0.6460766 +0.3885728 0.8968787 0.6460766 +0.4317928 0.8968787 0.6460766 +0.470214 0.8968787 0.6460766 +0.5050551 0.8968787 0.6460766 +0.5370987 0.8968787 0.6460766 +0.5668815 0.8968787 0.6460766 +0.5947903 0.8968787 0.6460766 +0.6211144 0.8968787 0.6460766 +0.6460766 0.8968787 0.6460766 +0.6698526 0.8968787 0.6460766 +0.6925839 0.8968787 0.6460766 +0.7143866 0.8968787 0.6460766 +0.7353569 0.8968787 0.6460766 +0.7555758 0.8968787 0.6460766 +0.7751122 0.8968787 0.6460766 +0.7940252 0.8968787 0.6460766 +0.8123661 0.8968787 0.6460766 +0.8301795 0.8968787 0.6460766 +0.8475045 0.8968787 0.6460766 +0.8643761 0.8968787 0.6460766 +0.880825 0.8968787 0.6460766 +0.8968787 0.8968787 0.6460766 +0.9125621 0.8968787 0.6460766 +0.9278974 0.8968787 0.6460766 +0.9429048 0.8968787 0.6460766 +0.9576028 0.8968787 0.6460766 +0.9720079 0.8968787 0.6460766 +0.9861357 0.8968787 0.6460766 +1 0.8968787 0.6460766 +0 0.9125621 0.6460766 +0.1939468 0.9125621 0.6460766 +0.2773041 0.9125621 0.6460766 +0.3384659 0.9125621 0.6460766 +0.3885728 0.9125621 0.6460766 +0.4317928 0.9125621 0.6460766 +0.470214 0.9125621 0.6460766 +0.5050551 0.9125621 0.6460766 +0.5370987 0.9125621 0.6460766 +0.5668815 0.9125621 0.6460766 +0.5947903 0.9125621 0.6460766 +0.6211144 0.9125621 0.6460766 +0.6460766 0.9125621 0.6460766 +0.6698526 0.9125621 0.6460766 +0.6925839 0.9125621 0.6460766 +0.7143866 0.9125621 0.6460766 +0.7353569 0.9125621 0.6460766 +0.7555758 0.9125621 0.6460766 +0.7751122 0.9125621 0.6460766 +0.7940252 0.9125621 0.6460766 +0.8123661 0.9125621 0.6460766 +0.8301795 0.9125621 0.6460766 +0.8475045 0.9125621 0.6460766 +0.8643761 0.9125621 0.6460766 +0.880825 0.9125621 0.6460766 +0.8968787 0.9125621 0.6460766 +0.9125621 0.9125621 0.6460766 +0.9278974 0.9125621 0.6460766 +0.9429048 0.9125621 0.6460766 +0.9576028 0.9125621 0.6460766 +0.9720079 0.9125621 0.6460766 +0.9861357 0.9125621 0.6460766 +1 0.9125621 0.6460766 +0 0.9278974 0.6460766 +0.1939468 0.9278974 0.6460766 +0.2773041 0.9278974 0.6460766 +0.3384659 0.9278974 0.6460766 +0.3885728 0.9278974 0.6460766 +0.4317928 0.9278974 0.6460766 +0.470214 0.9278974 0.6460766 +0.5050551 0.9278974 0.6460766 +0.5370987 0.9278974 0.6460766 +0.5668815 0.9278974 0.6460766 +0.5947903 0.9278974 0.6460766 +0.6211144 0.9278974 0.6460766 +0.6460766 0.9278974 0.6460766 +0.6698526 0.9278974 0.6460766 +0.6925839 0.9278974 0.6460766 +0.7143866 0.9278974 0.6460766 +0.7353569 0.9278974 0.6460766 +0.7555758 0.9278974 0.6460766 +0.7751122 0.9278974 0.6460766 +0.7940252 0.9278974 0.6460766 +0.8123661 0.9278974 0.6460766 +0.8301795 0.9278974 0.6460766 +0.8475045 0.9278974 0.6460766 +0.8643761 0.9278974 0.6460766 +0.880825 0.9278974 0.6460766 +0.8968787 0.9278974 0.6460766 +0.9125621 0.9278974 0.6460766 +0.9278974 0.9278974 0.6460766 +0.9429048 0.9278974 0.6460766 +0.9576028 0.9278974 0.6460766 +0.9720079 0.9278974 0.6460766 +0.9861357 0.9278974 0.6460766 +1 0.9278974 0.6460766 +0 0.9429048 0.6460766 +0.1939468 0.9429048 0.6460766 +0.2773041 0.9429048 0.6460766 +0.3384659 0.9429048 0.6460766 +0.3885728 0.9429048 0.6460766 +0.4317928 0.9429048 0.6460766 +0.470214 0.9429048 0.6460766 +0.5050551 0.9429048 0.6460766 +0.5370987 0.9429048 0.6460766 +0.5668815 0.9429048 0.6460766 +0.5947903 0.9429048 0.6460766 +0.6211144 0.9429048 0.6460766 +0.6460766 0.9429048 0.6460766 +0.6698526 0.9429048 0.6460766 +0.6925839 0.9429048 0.6460766 +0.7143866 0.9429048 0.6460766 +0.7353569 0.9429048 0.6460766 +0.7555758 0.9429048 0.6460766 +0.7751122 0.9429048 0.6460766 +0.7940252 0.9429048 0.6460766 +0.8123661 0.9429048 0.6460766 +0.8301795 0.9429048 0.6460766 +0.8475045 0.9429048 0.6460766 +0.8643761 0.9429048 0.6460766 +0.880825 0.9429048 0.6460766 +0.8968787 0.9429048 0.6460766 +0.9125621 0.9429048 0.6460766 +0.9278974 0.9429048 0.6460766 +0.9429048 0.9429048 0.6460766 +0.9576028 0.9429048 0.6460766 +0.9720079 0.9429048 0.6460766 +0.9861357 0.9429048 0.6460766 +1 0.9429048 0.6460766 +0 0.9576028 0.6460766 +0.1939468 0.9576028 0.6460766 +0.2773041 0.9576028 0.6460766 +0.3384659 0.9576028 0.6460766 +0.3885728 0.9576028 0.6460766 +0.4317928 0.9576028 0.6460766 +0.470214 0.9576028 0.6460766 +0.5050551 0.9576028 0.6460766 +0.5370987 0.9576028 0.6460766 +0.5668815 0.9576028 0.6460766 +0.5947903 0.9576028 0.6460766 +0.6211144 0.9576028 0.6460766 +0.6460766 0.9576028 0.6460766 +0.6698526 0.9576028 0.6460766 +0.6925839 0.9576028 0.6460766 +0.7143866 0.9576028 0.6460766 +0.7353569 0.9576028 0.6460766 +0.7555758 0.9576028 0.6460766 +0.7751122 0.9576028 0.6460766 +0.7940252 0.9576028 0.6460766 +0.8123661 0.9576028 0.6460766 +0.8301795 0.9576028 0.6460766 +0.8475045 0.9576028 0.6460766 +0.8643761 0.9576028 0.6460766 +0.880825 0.9576028 0.6460766 +0.8968787 0.9576028 0.6460766 +0.9125621 0.9576028 0.6460766 +0.9278974 0.9576028 0.6460766 +0.9429048 0.9576028 0.6460766 +0.9576028 0.9576028 0.6460766 +0.9720079 0.9576028 0.6460766 +0.9861357 0.9576028 0.6460766 +1 0.9576028 0.6460766 +0 0.9720079 0.6460766 +0.1939468 0.9720079 0.6460766 +0.2773041 0.9720079 0.6460766 +0.3384659 0.9720079 0.6460766 +0.3885728 0.9720079 0.6460766 +0.4317928 0.9720079 0.6460766 +0.470214 0.9720079 0.6460766 +0.5050551 0.9720079 0.6460766 +0.5370987 0.9720079 0.6460766 +0.5668815 0.9720079 0.6460766 +0.5947903 0.9720079 0.6460766 +0.6211144 0.9720079 0.6460766 +0.6460766 0.9720079 0.6460766 +0.6698526 0.9720079 0.6460766 +0.6925839 0.9720079 0.6460766 +0.7143866 0.9720079 0.6460766 +0.7353569 0.9720079 0.6460766 +0.7555758 0.9720079 0.6460766 +0.7751122 0.9720079 0.6460766 +0.7940252 0.9720079 0.6460766 +0.8123661 0.9720079 0.6460766 +0.8301795 0.9720079 0.6460766 +0.8475045 0.9720079 0.6460766 +0.8643761 0.9720079 0.6460766 +0.880825 0.9720079 0.6460766 +0.8968787 0.9720079 0.6460766 +0.9125621 0.9720079 0.6460766 +0.9278974 0.9720079 0.6460766 +0.9429048 0.9720079 0.6460766 +0.9576028 0.9720079 0.6460766 +0.9720079 0.9720079 0.6460766 +0.9861357 0.9720079 0.6460766 +1 0.9720079 0.6460766 +0 0.9861357 0.6460766 +0.1939468 0.9861357 0.6460766 +0.2773041 0.9861357 0.6460766 +0.3384659 0.9861357 0.6460766 +0.3885728 0.9861357 0.6460766 +0.4317928 0.9861357 0.6460766 +0.470214 0.9861357 0.6460766 +0.5050551 0.9861357 0.6460766 +0.5370987 0.9861357 0.6460766 +0.5668815 0.9861357 0.6460766 +0.5947903 0.9861357 0.6460766 +0.6211144 0.9861357 0.6460766 +0.6460766 0.9861357 0.6460766 +0.6698526 0.9861357 0.6460766 +0.6925839 0.9861357 0.6460766 +0.7143866 0.9861357 0.6460766 +0.7353569 0.9861357 0.6460766 +0.7555758 0.9861357 0.6460766 +0.7751122 0.9861357 0.6460766 +0.7940252 0.9861357 0.6460766 +0.8123661 0.9861357 0.6460766 +0.8301795 0.9861357 0.6460766 +0.8475045 0.9861357 0.6460766 +0.8643761 0.9861357 0.6460766 +0.880825 0.9861357 0.6460766 +0.8968787 0.9861357 0.6460766 +0.9125621 0.9861357 0.6460766 +0.9278974 0.9861357 0.6460766 +0.9429048 0.9861357 0.6460766 +0.9576028 0.9861357 0.6460766 +0.9720079 0.9861357 0.6460766 +0.9861357 0.9861357 0.6460766 +1 0.9861357 0.6460766 +0 1 0.6460766 +0.1939468 1 0.6460766 +0.2773041 1 0.6460766 +0.3384659 1 0.6460766 +0.3885728 1 0.6460766 +0.4317928 1 0.6460766 +0.470214 1 0.6460766 +0.5050551 1 0.6460766 +0.5370987 1 0.6460766 +0.5668815 1 0.6460766 +0.5947903 1 0.6460766 +0.6211144 1 0.6460766 +0.6460766 1 0.6460766 +0.6698526 1 0.6460766 +0.6925839 1 0.6460766 +0.7143866 1 0.6460766 +0.7353569 1 0.6460766 +0.7555758 1 0.6460766 +0.7751122 1 0.6460766 +0.7940252 1 0.6460766 +0.8123661 1 0.6460766 +0.8301795 1 0.6460766 +0.8475045 1 0.6460766 +0.8643761 1 0.6460766 +0.880825 1 0.6460766 +0.8968787 1 0.6460766 +0.9125621 1 0.6460766 +0.9278974 1 0.6460766 +0.9429048 1 0.6460766 +0.9576028 1 0.6460766 +0.9720079 1 0.6460766 +0.9861357 1 0.6460766 +1 1 0.6460766 +0 0 0.6698526 +0.1939468 0 0.6698526 +0.2773041 0 0.6698526 +0.3384659 0 0.6698526 +0.3885728 0 0.6698526 +0.4317928 0 0.6698526 +0.470214 0 0.6698526 +0.5050551 0 0.6698526 +0.5370987 0 0.6698526 +0.5668815 0 0.6698526 +0.5947903 0 0.6698526 +0.6211144 0 0.6698526 +0.6460766 0 0.6698526 +0.6698526 0 0.6698526 +0.6925839 0 0.6698526 +0.7143866 0 0.6698526 +0.7353569 0 0.6698526 +0.7555758 0 0.6698526 +0.7751122 0 0.6698526 +0.7940252 0 0.6698526 +0.8123661 0 0.6698526 +0.8301795 0 0.6698526 +0.8475045 0 0.6698526 +0.8643761 0 0.6698526 +0.880825 0 0.6698526 +0.8968787 0 0.6698526 +0.9125621 0 0.6698526 +0.9278974 0 0.6698526 +0.9429048 0 0.6698526 +0.9576028 0 0.6698526 +0.9720079 0 0.6698526 +0.9861357 0 0.6698526 +1 0 0.6698526 +0 0.1939468 0.6698526 +0.1939468 0.1939468 0.6698526 +0.2773041 0.1939468 0.6698526 +0.3384659 0.1939468 0.6698526 +0.3885728 0.1939468 0.6698526 +0.4317928 0.1939468 0.6698526 +0.470214 0.1939468 0.6698526 +0.5050551 0.1939468 0.6698526 +0.5370987 0.1939468 0.6698526 +0.5668815 0.1939468 0.6698526 +0.5947903 0.1939468 0.6698526 +0.6211144 0.1939468 0.6698526 +0.6460766 0.1939468 0.6698526 +0.6698526 0.1939468 0.6698526 +0.6925839 0.1939468 0.6698526 +0.7143866 0.1939468 0.6698526 +0.7353569 0.1939468 0.6698526 +0.7555758 0.1939468 0.6698526 +0.7751122 0.1939468 0.6698526 +0.7940252 0.1939468 0.6698526 +0.8123661 0.1939468 0.6698526 +0.8301795 0.1939468 0.6698526 +0.8475045 0.1939468 0.6698526 +0.8643761 0.1939468 0.6698526 +0.880825 0.1939468 0.6698526 +0.8968787 0.1939468 0.6698526 +0.9125621 0.1939468 0.6698526 +0.9278974 0.1939468 0.6698526 +0.9429048 0.1939468 0.6698526 +0.9576028 0.1939468 0.6698526 +0.9720079 0.1939468 0.6698526 +0.9861357 0.1939468 0.6698526 +1 0.1939468 0.6698526 +0 0.2773041 0.6698526 +0.1939468 0.2773041 0.6698526 +0.2773041 0.2773041 0.6698526 +0.3384659 0.2773041 0.6698526 +0.3885728 0.2773041 0.6698526 +0.4317928 0.2773041 0.6698526 +0.470214 0.2773041 0.6698526 +0.5050551 0.2773041 0.6698526 +0.5370987 0.2773041 0.6698526 +0.5668815 0.2773041 0.6698526 +0.5947903 0.2773041 0.6698526 +0.6211144 0.2773041 0.6698526 +0.6460766 0.2773041 0.6698526 +0.6698526 0.2773041 0.6698526 +0.6925839 0.2773041 0.6698526 +0.7143866 0.2773041 0.6698526 +0.7353569 0.2773041 0.6698526 +0.7555758 0.2773041 0.6698526 +0.7751122 0.2773041 0.6698526 +0.7940252 0.2773041 0.6698526 +0.8123661 0.2773041 0.6698526 +0.8301795 0.2773041 0.6698526 +0.8475045 0.2773041 0.6698526 +0.8643761 0.2773041 0.6698526 +0.880825 0.2773041 0.6698526 +0.8968787 0.2773041 0.6698526 +0.9125621 0.2773041 0.6698526 +0.9278974 0.2773041 0.6698526 +0.9429048 0.2773041 0.6698526 +0.9576028 0.2773041 0.6698526 +0.9720079 0.2773041 0.6698526 +0.9861357 0.2773041 0.6698526 +1 0.2773041 0.6698526 +0 0.3384659 0.6698526 +0.1939468 0.3384659 0.6698526 +0.2773041 0.3384659 0.6698526 +0.3384659 0.3384659 0.6698526 +0.3885728 0.3384659 0.6698526 +0.4317928 0.3384659 0.6698526 +0.470214 0.3384659 0.6698526 +0.5050551 0.3384659 0.6698526 +0.5370987 0.3384659 0.6698526 +0.5668815 0.3384659 0.6698526 +0.5947903 0.3384659 0.6698526 +0.6211144 0.3384659 0.6698526 +0.6460766 0.3384659 0.6698526 +0.6698526 0.3384659 0.6698526 +0.6925839 0.3384659 0.6698526 +0.7143866 0.3384659 0.6698526 +0.7353569 0.3384659 0.6698526 +0.7555758 0.3384659 0.6698526 +0.7751122 0.3384659 0.6698526 +0.7940252 0.3384659 0.6698526 +0.8123661 0.3384659 0.6698526 +0.8301795 0.3384659 0.6698526 +0.8475045 0.3384659 0.6698526 +0.8643761 0.3384659 0.6698526 +0.880825 0.3384659 0.6698526 +0.8968787 0.3384659 0.6698526 +0.9125621 0.3384659 0.6698526 +0.9278974 0.3384659 0.6698526 +0.9429048 0.3384659 0.6698526 +0.9576028 0.3384659 0.6698526 +0.9720079 0.3384659 0.6698526 +0.9861357 0.3384659 0.6698526 +1 0.3384659 0.6698526 +0 0.3885728 0.6698526 +0.1939468 0.3885728 0.6698526 +0.2773041 0.3885728 0.6698526 +0.3384659 0.3885728 0.6698526 +0.3885728 0.3885728 0.6698526 +0.4317928 0.3885728 0.6698526 +0.470214 0.3885728 0.6698526 +0.5050551 0.3885728 0.6698526 +0.5370987 0.3885728 0.6698526 +0.5668815 0.3885728 0.6698526 +0.5947903 0.3885728 0.6698526 +0.6211144 0.3885728 0.6698526 +0.6460766 0.3885728 0.6698526 +0.6698526 0.3885728 0.6698526 +0.6925839 0.3885728 0.6698526 +0.7143866 0.3885728 0.6698526 +0.7353569 0.3885728 0.6698526 +0.7555758 0.3885728 0.6698526 +0.7751122 0.3885728 0.6698526 +0.7940252 0.3885728 0.6698526 +0.8123661 0.3885728 0.6698526 +0.8301795 0.3885728 0.6698526 +0.8475045 0.3885728 0.6698526 +0.8643761 0.3885728 0.6698526 +0.880825 0.3885728 0.6698526 +0.8968787 0.3885728 0.6698526 +0.9125621 0.3885728 0.6698526 +0.9278974 0.3885728 0.6698526 +0.9429048 0.3885728 0.6698526 +0.9576028 0.3885728 0.6698526 +0.9720079 0.3885728 0.6698526 +0.9861357 0.3885728 0.6698526 +1 0.3885728 0.6698526 +0 0.4317928 0.6698526 +0.1939468 0.4317928 0.6698526 +0.2773041 0.4317928 0.6698526 +0.3384659 0.4317928 0.6698526 +0.3885728 0.4317928 0.6698526 +0.4317928 0.4317928 0.6698526 +0.470214 0.4317928 0.6698526 +0.5050551 0.4317928 0.6698526 +0.5370987 0.4317928 0.6698526 +0.5668815 0.4317928 0.6698526 +0.5947903 0.4317928 0.6698526 +0.6211144 0.4317928 0.6698526 +0.6460766 0.4317928 0.6698526 +0.6698526 0.4317928 0.6698526 +0.6925839 0.4317928 0.6698526 +0.7143866 0.4317928 0.6698526 +0.7353569 0.4317928 0.6698526 +0.7555758 0.4317928 0.6698526 +0.7751122 0.4317928 0.6698526 +0.7940252 0.4317928 0.6698526 +0.8123661 0.4317928 0.6698526 +0.8301795 0.4317928 0.6698526 +0.8475045 0.4317928 0.6698526 +0.8643761 0.4317928 0.6698526 +0.880825 0.4317928 0.6698526 +0.8968787 0.4317928 0.6698526 +0.9125621 0.4317928 0.6698526 +0.9278974 0.4317928 0.6698526 +0.9429048 0.4317928 0.6698526 +0.9576028 0.4317928 0.6698526 +0.9720079 0.4317928 0.6698526 +0.9861357 0.4317928 0.6698526 +1 0.4317928 0.6698526 +0 0.470214 0.6698526 +0.1939468 0.470214 0.6698526 +0.2773041 0.470214 0.6698526 +0.3384659 0.470214 0.6698526 +0.3885728 0.470214 0.6698526 +0.4317928 0.470214 0.6698526 +0.470214 0.470214 0.6698526 +0.5050551 0.470214 0.6698526 +0.5370987 0.470214 0.6698526 +0.5668815 0.470214 0.6698526 +0.5947903 0.470214 0.6698526 +0.6211144 0.470214 0.6698526 +0.6460766 0.470214 0.6698526 +0.6698526 0.470214 0.6698526 +0.6925839 0.470214 0.6698526 +0.7143866 0.470214 0.6698526 +0.7353569 0.470214 0.6698526 +0.7555758 0.470214 0.6698526 +0.7751122 0.470214 0.6698526 +0.7940252 0.470214 0.6698526 +0.8123661 0.470214 0.6698526 +0.8301795 0.470214 0.6698526 +0.8475045 0.470214 0.6698526 +0.8643761 0.470214 0.6698526 +0.880825 0.470214 0.6698526 +0.8968787 0.470214 0.6698526 +0.9125621 0.470214 0.6698526 +0.9278974 0.470214 0.6698526 +0.9429048 0.470214 0.6698526 +0.9576028 0.470214 0.6698526 +0.9720079 0.470214 0.6698526 +0.9861357 0.470214 0.6698526 +1 0.470214 0.6698526 +0 0.5050551 0.6698526 +0.1939468 0.5050551 0.6698526 +0.2773041 0.5050551 0.6698526 +0.3384659 0.5050551 0.6698526 +0.3885728 0.5050551 0.6698526 +0.4317928 0.5050551 0.6698526 +0.470214 0.5050551 0.6698526 +0.5050551 0.5050551 0.6698526 +0.5370987 0.5050551 0.6698526 +0.5668815 0.5050551 0.6698526 +0.5947903 0.5050551 0.6698526 +0.6211144 0.5050551 0.6698526 +0.6460766 0.5050551 0.6698526 +0.6698526 0.5050551 0.6698526 +0.6925839 0.5050551 0.6698526 +0.7143866 0.5050551 0.6698526 +0.7353569 0.5050551 0.6698526 +0.7555758 0.5050551 0.6698526 +0.7751122 0.5050551 0.6698526 +0.7940252 0.5050551 0.6698526 +0.8123661 0.5050551 0.6698526 +0.8301795 0.5050551 0.6698526 +0.8475045 0.5050551 0.6698526 +0.8643761 0.5050551 0.6698526 +0.880825 0.5050551 0.6698526 +0.8968787 0.5050551 0.6698526 +0.9125621 0.5050551 0.6698526 +0.9278974 0.5050551 0.6698526 +0.9429048 0.5050551 0.6698526 +0.9576028 0.5050551 0.6698526 +0.9720079 0.5050551 0.6698526 +0.9861357 0.5050551 0.6698526 +1 0.5050551 0.6698526 +0 0.5370987 0.6698526 +0.1939468 0.5370987 0.6698526 +0.2773041 0.5370987 0.6698526 +0.3384659 0.5370987 0.6698526 +0.3885728 0.5370987 0.6698526 +0.4317928 0.5370987 0.6698526 +0.470214 0.5370987 0.6698526 +0.5050551 0.5370987 0.6698526 +0.5370987 0.5370987 0.6698526 +0.5668815 0.5370987 0.6698526 +0.5947903 0.5370987 0.6698526 +0.6211144 0.5370987 0.6698526 +0.6460766 0.5370987 0.6698526 +0.6698526 0.5370987 0.6698526 +0.6925839 0.5370987 0.6698526 +0.7143866 0.5370987 0.6698526 +0.7353569 0.5370987 0.6698526 +0.7555758 0.5370987 0.6698526 +0.7751122 0.5370987 0.6698526 +0.7940252 0.5370987 0.6698526 +0.8123661 0.5370987 0.6698526 +0.8301795 0.5370987 0.6698526 +0.8475045 0.5370987 0.6698526 +0.8643761 0.5370987 0.6698526 +0.880825 0.5370987 0.6698526 +0.8968787 0.5370987 0.6698526 +0.9125621 0.5370987 0.6698526 +0.9278974 0.5370987 0.6698526 +0.9429048 0.5370987 0.6698526 +0.9576028 0.5370987 0.6698526 +0.9720079 0.5370987 0.6698526 +0.9861357 0.5370987 0.6698526 +1 0.5370987 0.6698526 +0 0.5668815 0.6698526 +0.1939468 0.5668815 0.6698526 +0.2773041 0.5668815 0.6698526 +0.3384659 0.5668815 0.6698526 +0.3885728 0.5668815 0.6698526 +0.4317928 0.5668815 0.6698526 +0.470214 0.5668815 0.6698526 +0.5050551 0.5668815 0.6698526 +0.5370987 0.5668815 0.6698526 +0.5668815 0.5668815 0.6698526 +0.5947903 0.5668815 0.6698526 +0.6211144 0.5668815 0.6698526 +0.6460766 0.5668815 0.6698526 +0.6698526 0.5668815 0.6698526 +0.6925839 0.5668815 0.6698526 +0.7143866 0.5668815 0.6698526 +0.7353569 0.5668815 0.6698526 +0.7555758 0.5668815 0.6698526 +0.7751122 0.5668815 0.6698526 +0.7940252 0.5668815 0.6698526 +0.8123661 0.5668815 0.6698526 +0.8301795 0.5668815 0.6698526 +0.8475045 0.5668815 0.6698526 +0.8643761 0.5668815 0.6698526 +0.880825 0.5668815 0.6698526 +0.8968787 0.5668815 0.6698526 +0.9125621 0.5668815 0.6698526 +0.9278974 0.5668815 0.6698526 +0.9429048 0.5668815 0.6698526 +0.9576028 0.5668815 0.6698526 +0.9720079 0.5668815 0.6698526 +0.9861357 0.5668815 0.6698526 +1 0.5668815 0.6698526 +0 0.5947903 0.6698526 +0.1939468 0.5947903 0.6698526 +0.2773041 0.5947903 0.6698526 +0.3384659 0.5947903 0.6698526 +0.3885728 0.5947903 0.6698526 +0.4317928 0.5947903 0.6698526 +0.470214 0.5947903 0.6698526 +0.5050551 0.5947903 0.6698526 +0.5370987 0.5947903 0.6698526 +0.5668815 0.5947903 0.6698526 +0.5947903 0.5947903 0.6698526 +0.6211144 0.5947903 0.6698526 +0.6460766 0.5947903 0.6698526 +0.6698526 0.5947903 0.6698526 +0.6925839 0.5947903 0.6698526 +0.7143866 0.5947903 0.6698526 +0.7353569 0.5947903 0.6698526 +0.7555758 0.5947903 0.6698526 +0.7751122 0.5947903 0.6698526 +0.7940252 0.5947903 0.6698526 +0.8123661 0.5947903 0.6698526 +0.8301795 0.5947903 0.6698526 +0.8475045 0.5947903 0.6698526 +0.8643761 0.5947903 0.6698526 +0.880825 0.5947903 0.6698526 +0.8968787 0.5947903 0.6698526 +0.9125621 0.5947903 0.6698526 +0.9278974 0.5947903 0.6698526 +0.9429048 0.5947903 0.6698526 +0.9576028 0.5947903 0.6698526 +0.9720079 0.5947903 0.6698526 +0.9861357 0.5947903 0.6698526 +1 0.5947903 0.6698526 +0 0.6211144 0.6698526 +0.1939468 0.6211144 0.6698526 +0.2773041 0.6211144 0.6698526 +0.3384659 0.6211144 0.6698526 +0.3885728 0.6211144 0.6698526 +0.4317928 0.6211144 0.6698526 +0.470214 0.6211144 0.6698526 +0.5050551 0.6211144 0.6698526 +0.5370987 0.6211144 0.6698526 +0.5668815 0.6211144 0.6698526 +0.5947903 0.6211144 0.6698526 +0.6211144 0.6211144 0.6698526 +0.6460766 0.6211144 0.6698526 +0.6698526 0.6211144 0.6698526 +0.6925839 0.6211144 0.6698526 +0.7143866 0.6211144 0.6698526 +0.7353569 0.6211144 0.6698526 +0.7555758 0.6211144 0.6698526 +0.7751122 0.6211144 0.6698526 +0.7940252 0.6211144 0.6698526 +0.8123661 0.6211144 0.6698526 +0.8301795 0.6211144 0.6698526 +0.8475045 0.6211144 0.6698526 +0.8643761 0.6211144 0.6698526 +0.880825 0.6211144 0.6698526 +0.8968787 0.6211144 0.6698526 +0.9125621 0.6211144 0.6698526 +0.9278974 0.6211144 0.6698526 +0.9429048 0.6211144 0.6698526 +0.9576028 0.6211144 0.6698526 +0.9720079 0.6211144 0.6698526 +0.9861357 0.6211144 0.6698526 +1 0.6211144 0.6698526 +0 0.6460766 0.6698526 +0.1939468 0.6460766 0.6698526 +0.2773041 0.6460766 0.6698526 +0.3384659 0.6460766 0.6698526 +0.3885728 0.6460766 0.6698526 +0.4317928 0.6460766 0.6698526 +0.470214 0.6460766 0.6698526 +0.5050551 0.6460766 0.6698526 +0.5370987 0.6460766 0.6698526 +0.5668815 0.6460766 0.6698526 +0.5947903 0.6460766 0.6698526 +0.6211144 0.6460766 0.6698526 +0.6460766 0.6460766 0.6698526 +0.6698526 0.6460766 0.6698526 +0.6925839 0.6460766 0.6698526 +0.7143866 0.6460766 0.6698526 +0.7353569 0.6460766 0.6698526 +0.7555758 0.6460766 0.6698526 +0.7751122 0.6460766 0.6698526 +0.7940252 0.6460766 0.6698526 +0.8123661 0.6460766 0.6698526 +0.8301795 0.6460766 0.6698526 +0.8475045 0.6460766 0.6698526 +0.8643761 0.6460766 0.6698526 +0.880825 0.6460766 0.6698526 +0.8968787 0.6460766 0.6698526 +0.9125621 0.6460766 0.6698526 +0.9278974 0.6460766 0.6698526 +0.9429048 0.6460766 0.6698526 +0.9576028 0.6460766 0.6698526 +0.9720079 0.6460766 0.6698526 +0.9861357 0.6460766 0.6698526 +1 0.6460766 0.6698526 +0 0.6698526 0.6698526 +0.1939468 0.6698526 0.6698526 +0.2773041 0.6698526 0.6698526 +0.3384659 0.6698526 0.6698526 +0.3885728 0.6698526 0.6698526 +0.4317928 0.6698526 0.6698526 +0.470214 0.6698526 0.6698526 +0.5050551 0.6698526 0.6698526 +0.5370987 0.6698526 0.6698526 +0.5668815 0.6698526 0.6698526 +0.5947903 0.6698526 0.6698526 +0.6211144 0.6698526 0.6698526 +0.6460766 0.6698526 0.6698526 +0.6698526 0.6698526 0.6698526 +0.6925839 0.6698526 0.6698526 +0.7143866 0.6698526 0.6698526 +0.7353569 0.6698526 0.6698526 +0.7555758 0.6698526 0.6698526 +0.7751122 0.6698526 0.6698526 +0.7940252 0.6698526 0.6698526 +0.8123661 0.6698526 0.6698526 +0.8301795 0.6698526 0.6698526 +0.8475045 0.6698526 0.6698526 +0.8643761 0.6698526 0.6698526 +0.880825 0.6698526 0.6698526 +0.8968787 0.6698526 0.6698526 +0.9125621 0.6698526 0.6698526 +0.9278974 0.6698526 0.6698526 +0.9429048 0.6698526 0.6698526 +0.9576028 0.6698526 0.6698526 +0.9720079 0.6698526 0.6698526 +0.9861357 0.6698526 0.6698526 +1 0.6698526 0.6698526 +0 0.6925839 0.6698526 +0.1939468 0.6925839 0.6698526 +0.2773041 0.6925839 0.6698526 +0.3384659 0.6925839 0.6698526 +0.3885728 0.6925839 0.6698526 +0.4317928 0.6925839 0.6698526 +0.470214 0.6925839 0.6698526 +0.5050551 0.6925839 0.6698526 +0.5370987 0.6925839 0.6698526 +0.5668815 0.6925839 0.6698526 +0.5947903 0.6925839 0.6698526 +0.6211144 0.6925839 0.6698526 +0.6460766 0.6925839 0.6698526 +0.6698526 0.6925839 0.6698526 +0.6925839 0.6925839 0.6698526 +0.7143866 0.6925839 0.6698526 +0.7353569 0.6925839 0.6698526 +0.7555758 0.6925839 0.6698526 +0.7751122 0.6925839 0.6698526 +0.7940252 0.6925839 0.6698526 +0.8123661 0.6925839 0.6698526 +0.8301795 0.6925839 0.6698526 +0.8475045 0.6925839 0.6698526 +0.8643761 0.6925839 0.6698526 +0.880825 0.6925839 0.6698526 +0.8968787 0.6925839 0.6698526 +0.9125621 0.6925839 0.6698526 +0.9278974 0.6925839 0.6698526 +0.9429048 0.6925839 0.6698526 +0.9576028 0.6925839 0.6698526 +0.9720079 0.6925839 0.6698526 +0.9861357 0.6925839 0.6698526 +1 0.6925839 0.6698526 +0 0.7143866 0.6698526 +0.1939468 0.7143866 0.6698526 +0.2773041 0.7143866 0.6698526 +0.3384659 0.7143866 0.6698526 +0.3885728 0.7143866 0.6698526 +0.4317928 0.7143866 0.6698526 +0.470214 0.7143866 0.6698526 +0.5050551 0.7143866 0.6698526 +0.5370987 0.7143866 0.6698526 +0.5668815 0.7143866 0.6698526 +0.5947903 0.7143866 0.6698526 +0.6211144 0.7143866 0.6698526 +0.6460766 0.7143866 0.6698526 +0.6698526 0.7143866 0.6698526 +0.6925839 0.7143866 0.6698526 +0.7143866 0.7143866 0.6698526 +0.7353569 0.7143866 0.6698526 +0.7555758 0.7143866 0.6698526 +0.7751122 0.7143866 0.6698526 +0.7940252 0.7143866 0.6698526 +0.8123661 0.7143866 0.6698526 +0.8301795 0.7143866 0.6698526 +0.8475045 0.7143866 0.6698526 +0.8643761 0.7143866 0.6698526 +0.880825 0.7143866 0.6698526 +0.8968787 0.7143866 0.6698526 +0.9125621 0.7143866 0.6698526 +0.9278974 0.7143866 0.6698526 +0.9429048 0.7143866 0.6698526 +0.9576028 0.7143866 0.6698526 +0.9720079 0.7143866 0.6698526 +0.9861357 0.7143866 0.6698526 +1 0.7143866 0.6698526 +0 0.7353569 0.6698526 +0.1939468 0.7353569 0.6698526 +0.2773041 0.7353569 0.6698526 +0.3384659 0.7353569 0.6698526 +0.3885728 0.7353569 0.6698526 +0.4317928 0.7353569 0.6698526 +0.470214 0.7353569 0.6698526 +0.5050551 0.7353569 0.6698526 +0.5370987 0.7353569 0.6698526 +0.5668815 0.7353569 0.6698526 +0.5947903 0.7353569 0.6698526 +0.6211144 0.7353569 0.6698526 +0.6460766 0.7353569 0.6698526 +0.6698526 0.7353569 0.6698526 +0.6925839 0.7353569 0.6698526 +0.7143866 0.7353569 0.6698526 +0.7353569 0.7353569 0.6698526 +0.7555758 0.7353569 0.6698526 +0.7751122 0.7353569 0.6698526 +0.7940252 0.7353569 0.6698526 +0.8123661 0.7353569 0.6698526 +0.8301795 0.7353569 0.6698526 +0.8475045 0.7353569 0.6698526 +0.8643761 0.7353569 0.6698526 +0.880825 0.7353569 0.6698526 +0.8968787 0.7353569 0.6698526 +0.9125621 0.7353569 0.6698526 +0.9278974 0.7353569 0.6698526 +0.9429048 0.7353569 0.6698526 +0.9576028 0.7353569 0.6698526 +0.9720079 0.7353569 0.6698526 +0.9861357 0.7353569 0.6698526 +1 0.7353569 0.6698526 +0 0.7555758 0.6698526 +0.1939468 0.7555758 0.6698526 +0.2773041 0.7555758 0.6698526 +0.3384659 0.7555758 0.6698526 +0.3885728 0.7555758 0.6698526 +0.4317928 0.7555758 0.6698526 +0.470214 0.7555758 0.6698526 +0.5050551 0.7555758 0.6698526 +0.5370987 0.7555758 0.6698526 +0.5668815 0.7555758 0.6698526 +0.5947903 0.7555758 0.6698526 +0.6211144 0.7555758 0.6698526 +0.6460766 0.7555758 0.6698526 +0.6698526 0.7555758 0.6698526 +0.6925839 0.7555758 0.6698526 +0.7143866 0.7555758 0.6698526 +0.7353569 0.7555758 0.6698526 +0.7555758 0.7555758 0.6698526 +0.7751122 0.7555758 0.6698526 +0.7940252 0.7555758 0.6698526 +0.8123661 0.7555758 0.6698526 +0.8301795 0.7555758 0.6698526 +0.8475045 0.7555758 0.6698526 +0.8643761 0.7555758 0.6698526 +0.880825 0.7555758 0.6698526 +0.8968787 0.7555758 0.6698526 +0.9125621 0.7555758 0.6698526 +0.9278974 0.7555758 0.6698526 +0.9429048 0.7555758 0.6698526 +0.9576028 0.7555758 0.6698526 +0.9720079 0.7555758 0.6698526 +0.9861357 0.7555758 0.6698526 +1 0.7555758 0.6698526 +0 0.7751122 0.6698526 +0.1939468 0.7751122 0.6698526 +0.2773041 0.7751122 0.6698526 +0.3384659 0.7751122 0.6698526 +0.3885728 0.7751122 0.6698526 +0.4317928 0.7751122 0.6698526 +0.470214 0.7751122 0.6698526 +0.5050551 0.7751122 0.6698526 +0.5370987 0.7751122 0.6698526 +0.5668815 0.7751122 0.6698526 +0.5947903 0.7751122 0.6698526 +0.6211144 0.7751122 0.6698526 +0.6460766 0.7751122 0.6698526 +0.6698526 0.7751122 0.6698526 +0.6925839 0.7751122 0.6698526 +0.7143866 0.7751122 0.6698526 +0.7353569 0.7751122 0.6698526 +0.7555758 0.7751122 0.6698526 +0.7751122 0.7751122 0.6698526 +0.7940252 0.7751122 0.6698526 +0.8123661 0.7751122 0.6698526 +0.8301795 0.7751122 0.6698526 +0.8475045 0.7751122 0.6698526 +0.8643761 0.7751122 0.6698526 +0.880825 0.7751122 0.6698526 +0.8968787 0.7751122 0.6698526 +0.9125621 0.7751122 0.6698526 +0.9278974 0.7751122 0.6698526 +0.9429048 0.7751122 0.6698526 +0.9576028 0.7751122 0.6698526 +0.9720079 0.7751122 0.6698526 +0.9861357 0.7751122 0.6698526 +1 0.7751122 0.6698526 +0 0.7940252 0.6698526 +0.1939468 0.7940252 0.6698526 +0.2773041 0.7940252 0.6698526 +0.3384659 0.7940252 0.6698526 +0.3885728 0.7940252 0.6698526 +0.4317928 0.7940252 0.6698526 +0.470214 0.7940252 0.6698526 +0.5050551 0.7940252 0.6698526 +0.5370987 0.7940252 0.6698526 +0.5668815 0.7940252 0.6698526 +0.5947903 0.7940252 0.6698526 +0.6211144 0.7940252 0.6698526 +0.6460766 0.7940252 0.6698526 +0.6698526 0.7940252 0.6698526 +0.6925839 0.7940252 0.6698526 +0.7143866 0.7940252 0.6698526 +0.7353569 0.7940252 0.6698526 +0.7555758 0.7940252 0.6698526 +0.7751122 0.7940252 0.6698526 +0.7940252 0.7940252 0.6698526 +0.8123661 0.7940252 0.6698526 +0.8301795 0.7940252 0.6698526 +0.8475045 0.7940252 0.6698526 +0.8643761 0.7940252 0.6698526 +0.880825 0.7940252 0.6698526 +0.8968787 0.7940252 0.6698526 +0.9125621 0.7940252 0.6698526 +0.9278974 0.7940252 0.6698526 +0.9429048 0.7940252 0.6698526 +0.9576028 0.7940252 0.6698526 +0.9720079 0.7940252 0.6698526 +0.9861357 0.7940252 0.6698526 +1 0.7940252 0.6698526 +0 0.8123661 0.6698526 +0.1939468 0.8123661 0.6698526 +0.2773041 0.8123661 0.6698526 +0.3384659 0.8123661 0.6698526 +0.3885728 0.8123661 0.6698526 +0.4317928 0.8123661 0.6698526 +0.470214 0.8123661 0.6698526 +0.5050551 0.8123661 0.6698526 +0.5370987 0.8123661 0.6698526 +0.5668815 0.8123661 0.6698526 +0.5947903 0.8123661 0.6698526 +0.6211144 0.8123661 0.6698526 +0.6460766 0.8123661 0.6698526 +0.6698526 0.8123661 0.6698526 +0.6925839 0.8123661 0.6698526 +0.7143866 0.8123661 0.6698526 +0.7353569 0.8123661 0.6698526 +0.7555758 0.8123661 0.6698526 +0.7751122 0.8123661 0.6698526 +0.7940252 0.8123661 0.6698526 +0.8123661 0.8123661 0.6698526 +0.8301795 0.8123661 0.6698526 +0.8475045 0.8123661 0.6698526 +0.8643761 0.8123661 0.6698526 +0.880825 0.8123661 0.6698526 +0.8968787 0.8123661 0.6698526 +0.9125621 0.8123661 0.6698526 +0.9278974 0.8123661 0.6698526 +0.9429048 0.8123661 0.6698526 +0.9576028 0.8123661 0.6698526 +0.9720079 0.8123661 0.6698526 +0.9861357 0.8123661 0.6698526 +1 0.8123661 0.6698526 +0 0.8301795 0.6698526 +0.1939468 0.8301795 0.6698526 +0.2773041 0.8301795 0.6698526 +0.3384659 0.8301795 0.6698526 +0.3885728 0.8301795 0.6698526 +0.4317928 0.8301795 0.6698526 +0.470214 0.8301795 0.6698526 +0.5050551 0.8301795 0.6698526 +0.5370987 0.8301795 0.6698526 +0.5668815 0.8301795 0.6698526 +0.5947903 0.8301795 0.6698526 +0.6211144 0.8301795 0.6698526 +0.6460766 0.8301795 0.6698526 +0.6698526 0.8301795 0.6698526 +0.6925839 0.8301795 0.6698526 +0.7143866 0.8301795 0.6698526 +0.7353569 0.8301795 0.6698526 +0.7555758 0.8301795 0.6698526 +0.7751122 0.8301795 0.6698526 +0.7940252 0.8301795 0.6698526 +0.8123661 0.8301795 0.6698526 +0.8301795 0.8301795 0.6698526 +0.8475045 0.8301795 0.6698526 +0.8643761 0.8301795 0.6698526 +0.880825 0.8301795 0.6698526 +0.8968787 0.8301795 0.6698526 +0.9125621 0.8301795 0.6698526 +0.9278974 0.8301795 0.6698526 +0.9429048 0.8301795 0.6698526 +0.9576028 0.8301795 0.6698526 +0.9720079 0.8301795 0.6698526 +0.9861357 0.8301795 0.6698526 +1 0.8301795 0.6698526 +0 0.8475045 0.6698526 +0.1939468 0.8475045 0.6698526 +0.2773041 0.8475045 0.6698526 +0.3384659 0.8475045 0.6698526 +0.3885728 0.8475045 0.6698526 +0.4317928 0.8475045 0.6698526 +0.470214 0.8475045 0.6698526 +0.5050551 0.8475045 0.6698526 +0.5370987 0.8475045 0.6698526 +0.5668815 0.8475045 0.6698526 +0.5947903 0.8475045 0.6698526 +0.6211144 0.8475045 0.6698526 +0.6460766 0.8475045 0.6698526 +0.6698526 0.8475045 0.6698526 +0.6925839 0.8475045 0.6698526 +0.7143866 0.8475045 0.6698526 +0.7353569 0.8475045 0.6698526 +0.7555758 0.8475045 0.6698526 +0.7751122 0.8475045 0.6698526 +0.7940252 0.8475045 0.6698526 +0.8123661 0.8475045 0.6698526 +0.8301795 0.8475045 0.6698526 +0.8475045 0.8475045 0.6698526 +0.8643761 0.8475045 0.6698526 +0.880825 0.8475045 0.6698526 +0.8968787 0.8475045 0.6698526 +0.9125621 0.8475045 0.6698526 +0.9278974 0.8475045 0.6698526 +0.9429048 0.8475045 0.6698526 +0.9576028 0.8475045 0.6698526 +0.9720079 0.8475045 0.6698526 +0.9861357 0.8475045 0.6698526 +1 0.8475045 0.6698526 +0 0.8643761 0.6698526 +0.1939468 0.8643761 0.6698526 +0.2773041 0.8643761 0.6698526 +0.3384659 0.8643761 0.6698526 +0.3885728 0.8643761 0.6698526 +0.4317928 0.8643761 0.6698526 +0.470214 0.8643761 0.6698526 +0.5050551 0.8643761 0.6698526 +0.5370987 0.8643761 0.6698526 +0.5668815 0.8643761 0.6698526 +0.5947903 0.8643761 0.6698526 +0.6211144 0.8643761 0.6698526 +0.6460766 0.8643761 0.6698526 +0.6698526 0.8643761 0.6698526 +0.6925839 0.8643761 0.6698526 +0.7143866 0.8643761 0.6698526 +0.7353569 0.8643761 0.6698526 +0.7555758 0.8643761 0.6698526 +0.7751122 0.8643761 0.6698526 +0.7940252 0.8643761 0.6698526 +0.8123661 0.8643761 0.6698526 +0.8301795 0.8643761 0.6698526 +0.8475045 0.8643761 0.6698526 +0.8643761 0.8643761 0.6698526 +0.880825 0.8643761 0.6698526 +0.8968787 0.8643761 0.6698526 +0.9125621 0.8643761 0.6698526 +0.9278974 0.8643761 0.6698526 +0.9429048 0.8643761 0.6698526 +0.9576028 0.8643761 0.6698526 +0.9720079 0.8643761 0.6698526 +0.9861357 0.8643761 0.6698526 +1 0.8643761 0.6698526 +0 0.880825 0.6698526 +0.1939468 0.880825 0.6698526 +0.2773041 0.880825 0.6698526 +0.3384659 0.880825 0.6698526 +0.3885728 0.880825 0.6698526 +0.4317928 0.880825 0.6698526 +0.470214 0.880825 0.6698526 +0.5050551 0.880825 0.6698526 +0.5370987 0.880825 0.6698526 +0.5668815 0.880825 0.6698526 +0.5947903 0.880825 0.6698526 +0.6211144 0.880825 0.6698526 +0.6460766 0.880825 0.6698526 +0.6698526 0.880825 0.6698526 +0.6925839 0.880825 0.6698526 +0.7143866 0.880825 0.6698526 +0.7353569 0.880825 0.6698526 +0.7555758 0.880825 0.6698526 +0.7751122 0.880825 0.6698526 +0.7940252 0.880825 0.6698526 +0.8123661 0.880825 0.6698526 +0.8301795 0.880825 0.6698526 +0.8475045 0.880825 0.6698526 +0.8643761 0.880825 0.6698526 +0.880825 0.880825 0.6698526 +0.8968787 0.880825 0.6698526 +0.9125621 0.880825 0.6698526 +0.9278974 0.880825 0.6698526 +0.9429048 0.880825 0.6698526 +0.9576028 0.880825 0.6698526 +0.9720079 0.880825 0.6698526 +0.9861357 0.880825 0.6698526 +1 0.880825 0.6698526 +0 0.8968787 0.6698526 +0.1939468 0.8968787 0.6698526 +0.2773041 0.8968787 0.6698526 +0.3384659 0.8968787 0.6698526 +0.3885728 0.8968787 0.6698526 +0.4317928 0.8968787 0.6698526 +0.470214 0.8968787 0.6698526 +0.5050551 0.8968787 0.6698526 +0.5370987 0.8968787 0.6698526 +0.5668815 0.8968787 0.6698526 +0.5947903 0.8968787 0.6698526 +0.6211144 0.8968787 0.6698526 +0.6460766 0.8968787 0.6698526 +0.6698526 0.8968787 0.6698526 +0.6925839 0.8968787 0.6698526 +0.7143866 0.8968787 0.6698526 +0.7353569 0.8968787 0.6698526 +0.7555758 0.8968787 0.6698526 +0.7751122 0.8968787 0.6698526 +0.7940252 0.8968787 0.6698526 +0.8123661 0.8968787 0.6698526 +0.8301795 0.8968787 0.6698526 +0.8475045 0.8968787 0.6698526 +0.8643761 0.8968787 0.6698526 +0.880825 0.8968787 0.6698526 +0.8968787 0.8968787 0.6698526 +0.9125621 0.8968787 0.6698526 +0.9278974 0.8968787 0.6698526 +0.9429048 0.8968787 0.6698526 +0.9576028 0.8968787 0.6698526 +0.9720079 0.8968787 0.6698526 +0.9861357 0.8968787 0.6698526 +1 0.8968787 0.6698526 +0 0.9125621 0.6698526 +0.1939468 0.9125621 0.6698526 +0.2773041 0.9125621 0.6698526 +0.3384659 0.9125621 0.6698526 +0.3885728 0.9125621 0.6698526 +0.4317928 0.9125621 0.6698526 +0.470214 0.9125621 0.6698526 +0.5050551 0.9125621 0.6698526 +0.5370987 0.9125621 0.6698526 +0.5668815 0.9125621 0.6698526 +0.5947903 0.9125621 0.6698526 +0.6211144 0.9125621 0.6698526 +0.6460766 0.9125621 0.6698526 +0.6698526 0.9125621 0.6698526 +0.6925839 0.9125621 0.6698526 +0.7143866 0.9125621 0.6698526 +0.7353569 0.9125621 0.6698526 +0.7555758 0.9125621 0.6698526 +0.7751122 0.9125621 0.6698526 +0.7940252 0.9125621 0.6698526 +0.8123661 0.9125621 0.6698526 +0.8301795 0.9125621 0.6698526 +0.8475045 0.9125621 0.6698526 +0.8643761 0.9125621 0.6698526 +0.880825 0.9125621 0.6698526 +0.8968787 0.9125621 0.6698526 +0.9125621 0.9125621 0.6698526 +0.9278974 0.9125621 0.6698526 +0.9429048 0.9125621 0.6698526 +0.9576028 0.9125621 0.6698526 +0.9720079 0.9125621 0.6698526 +0.9861357 0.9125621 0.6698526 +1 0.9125621 0.6698526 +0 0.9278974 0.6698526 +0.1939468 0.9278974 0.6698526 +0.2773041 0.9278974 0.6698526 +0.3384659 0.9278974 0.6698526 +0.3885728 0.9278974 0.6698526 +0.4317928 0.9278974 0.6698526 +0.470214 0.9278974 0.6698526 +0.5050551 0.9278974 0.6698526 +0.5370987 0.9278974 0.6698526 +0.5668815 0.9278974 0.6698526 +0.5947903 0.9278974 0.6698526 +0.6211144 0.9278974 0.6698526 +0.6460766 0.9278974 0.6698526 +0.6698526 0.9278974 0.6698526 +0.6925839 0.9278974 0.6698526 +0.7143866 0.9278974 0.6698526 +0.7353569 0.9278974 0.6698526 +0.7555758 0.9278974 0.6698526 +0.7751122 0.9278974 0.6698526 +0.7940252 0.9278974 0.6698526 +0.8123661 0.9278974 0.6698526 +0.8301795 0.9278974 0.6698526 +0.8475045 0.9278974 0.6698526 +0.8643761 0.9278974 0.6698526 +0.880825 0.9278974 0.6698526 +0.8968787 0.9278974 0.6698526 +0.9125621 0.9278974 0.6698526 +0.9278974 0.9278974 0.6698526 +0.9429048 0.9278974 0.6698526 +0.9576028 0.9278974 0.6698526 +0.9720079 0.9278974 0.6698526 +0.9861357 0.9278974 0.6698526 +1 0.9278974 0.6698526 +0 0.9429048 0.6698526 +0.1939468 0.9429048 0.6698526 +0.2773041 0.9429048 0.6698526 +0.3384659 0.9429048 0.6698526 +0.3885728 0.9429048 0.6698526 +0.4317928 0.9429048 0.6698526 +0.470214 0.9429048 0.6698526 +0.5050551 0.9429048 0.6698526 +0.5370987 0.9429048 0.6698526 +0.5668815 0.9429048 0.6698526 +0.5947903 0.9429048 0.6698526 +0.6211144 0.9429048 0.6698526 +0.6460766 0.9429048 0.6698526 +0.6698526 0.9429048 0.6698526 +0.6925839 0.9429048 0.6698526 +0.7143866 0.9429048 0.6698526 +0.7353569 0.9429048 0.6698526 +0.7555758 0.9429048 0.6698526 +0.7751122 0.9429048 0.6698526 +0.7940252 0.9429048 0.6698526 +0.8123661 0.9429048 0.6698526 +0.8301795 0.9429048 0.6698526 +0.8475045 0.9429048 0.6698526 +0.8643761 0.9429048 0.6698526 +0.880825 0.9429048 0.6698526 +0.8968787 0.9429048 0.6698526 +0.9125621 0.9429048 0.6698526 +0.9278974 0.9429048 0.6698526 +0.9429048 0.9429048 0.6698526 +0.9576028 0.9429048 0.6698526 +0.9720079 0.9429048 0.6698526 +0.9861357 0.9429048 0.6698526 +1 0.9429048 0.6698526 +0 0.9576028 0.6698526 +0.1939468 0.9576028 0.6698526 +0.2773041 0.9576028 0.6698526 +0.3384659 0.9576028 0.6698526 +0.3885728 0.9576028 0.6698526 +0.4317928 0.9576028 0.6698526 +0.470214 0.9576028 0.6698526 +0.5050551 0.9576028 0.6698526 +0.5370987 0.9576028 0.6698526 +0.5668815 0.9576028 0.6698526 +0.5947903 0.9576028 0.6698526 +0.6211144 0.9576028 0.6698526 +0.6460766 0.9576028 0.6698526 +0.6698526 0.9576028 0.6698526 +0.6925839 0.9576028 0.6698526 +0.7143866 0.9576028 0.6698526 +0.7353569 0.9576028 0.6698526 +0.7555758 0.9576028 0.6698526 +0.7751122 0.9576028 0.6698526 +0.7940252 0.9576028 0.6698526 +0.8123661 0.9576028 0.6698526 +0.8301795 0.9576028 0.6698526 +0.8475045 0.9576028 0.6698526 +0.8643761 0.9576028 0.6698526 +0.880825 0.9576028 0.6698526 +0.8968787 0.9576028 0.6698526 +0.9125621 0.9576028 0.6698526 +0.9278974 0.9576028 0.6698526 +0.9429048 0.9576028 0.6698526 +0.9576028 0.9576028 0.6698526 +0.9720079 0.9576028 0.6698526 +0.9861357 0.9576028 0.6698526 +1 0.9576028 0.6698526 +0 0.9720079 0.6698526 +0.1939468 0.9720079 0.6698526 +0.2773041 0.9720079 0.6698526 +0.3384659 0.9720079 0.6698526 +0.3885728 0.9720079 0.6698526 +0.4317928 0.9720079 0.6698526 +0.470214 0.9720079 0.6698526 +0.5050551 0.9720079 0.6698526 +0.5370987 0.9720079 0.6698526 +0.5668815 0.9720079 0.6698526 +0.5947903 0.9720079 0.6698526 +0.6211144 0.9720079 0.6698526 +0.6460766 0.9720079 0.6698526 +0.6698526 0.9720079 0.6698526 +0.6925839 0.9720079 0.6698526 +0.7143866 0.9720079 0.6698526 +0.7353569 0.9720079 0.6698526 +0.7555758 0.9720079 0.6698526 +0.7751122 0.9720079 0.6698526 +0.7940252 0.9720079 0.6698526 +0.8123661 0.9720079 0.6698526 +0.8301795 0.9720079 0.6698526 +0.8475045 0.9720079 0.6698526 +0.8643761 0.9720079 0.6698526 +0.880825 0.9720079 0.6698526 +0.8968787 0.9720079 0.6698526 +0.9125621 0.9720079 0.6698526 +0.9278974 0.9720079 0.6698526 +0.9429048 0.9720079 0.6698526 +0.9576028 0.9720079 0.6698526 +0.9720079 0.9720079 0.6698526 +0.9861357 0.9720079 0.6698526 +1 0.9720079 0.6698526 +0 0.9861357 0.6698526 +0.1939468 0.9861357 0.6698526 +0.2773041 0.9861357 0.6698526 +0.3384659 0.9861357 0.6698526 +0.3885728 0.9861357 0.6698526 +0.4317928 0.9861357 0.6698526 +0.470214 0.9861357 0.6698526 +0.5050551 0.9861357 0.6698526 +0.5370987 0.9861357 0.6698526 +0.5668815 0.9861357 0.6698526 +0.5947903 0.9861357 0.6698526 +0.6211144 0.9861357 0.6698526 +0.6460766 0.9861357 0.6698526 +0.6698526 0.9861357 0.6698526 +0.6925839 0.9861357 0.6698526 +0.7143866 0.9861357 0.6698526 +0.7353569 0.9861357 0.6698526 +0.7555758 0.9861357 0.6698526 +0.7751122 0.9861357 0.6698526 +0.7940252 0.9861357 0.6698526 +0.8123661 0.9861357 0.6698526 +0.8301795 0.9861357 0.6698526 +0.8475045 0.9861357 0.6698526 +0.8643761 0.9861357 0.6698526 +0.880825 0.9861357 0.6698526 +0.8968787 0.9861357 0.6698526 +0.9125621 0.9861357 0.6698526 +0.9278974 0.9861357 0.6698526 +0.9429048 0.9861357 0.6698526 +0.9576028 0.9861357 0.6698526 +0.9720079 0.9861357 0.6698526 +0.9861357 0.9861357 0.6698526 +1 0.9861357 0.6698526 +0 1 0.6698526 +0.1939468 1 0.6698526 +0.2773041 1 0.6698526 +0.3384659 1 0.6698526 +0.3885728 1 0.6698526 +0.4317928 1 0.6698526 +0.470214 1 0.6698526 +0.5050551 1 0.6698526 +0.5370987 1 0.6698526 +0.5668815 1 0.6698526 +0.5947903 1 0.6698526 +0.6211144 1 0.6698526 +0.6460766 1 0.6698526 +0.6698526 1 0.6698526 +0.6925839 1 0.6698526 +0.7143866 1 0.6698526 +0.7353569 1 0.6698526 +0.7555758 1 0.6698526 +0.7751122 1 0.6698526 +0.7940252 1 0.6698526 +0.8123661 1 0.6698526 +0.8301795 1 0.6698526 +0.8475045 1 0.6698526 +0.8643761 1 0.6698526 +0.880825 1 0.6698526 +0.8968787 1 0.6698526 +0.9125621 1 0.6698526 +0.9278974 1 0.6698526 +0.9429048 1 0.6698526 +0.9576028 1 0.6698526 +0.9720079 1 0.6698526 +0.9861357 1 0.6698526 +1 1 0.6698526 +0 0 0.6925839 +0.1939468 0 0.6925839 +0.2773041 0 0.6925839 +0.3384659 0 0.6925839 +0.3885728 0 0.6925839 +0.4317928 0 0.6925839 +0.470214 0 0.6925839 +0.5050551 0 0.6925839 +0.5370987 0 0.6925839 +0.5668815 0 0.6925839 +0.5947903 0 0.6925839 +0.6211144 0 0.6925839 +0.6460766 0 0.6925839 +0.6698526 0 0.6925839 +0.6925839 0 0.6925839 +0.7143866 0 0.6925839 +0.7353569 0 0.6925839 +0.7555758 0 0.6925839 +0.7751122 0 0.6925839 +0.7940252 0 0.6925839 +0.8123661 0 0.6925839 +0.8301795 0 0.6925839 +0.8475045 0 0.6925839 +0.8643761 0 0.6925839 +0.880825 0 0.6925839 +0.8968787 0 0.6925839 +0.9125621 0 0.6925839 +0.9278974 0 0.6925839 +0.9429048 0 0.6925839 +0.9576028 0 0.6925839 +0.9720079 0 0.6925839 +0.9861357 0 0.6925839 +1 0 0.6925839 +0 0.1939468 0.6925839 +0.1939468 0.1939468 0.6925839 +0.2773041 0.1939468 0.6925839 +0.3384659 0.1939468 0.6925839 +0.3885728 0.1939468 0.6925839 +0.4317928 0.1939468 0.6925839 +0.470214 0.1939468 0.6925839 +0.5050551 0.1939468 0.6925839 +0.5370987 0.1939468 0.6925839 +0.5668815 0.1939468 0.6925839 +0.5947903 0.1939468 0.6925839 +0.6211144 0.1939468 0.6925839 +0.6460766 0.1939468 0.6925839 +0.6698526 0.1939468 0.6925839 +0.6925839 0.1939468 0.6925839 +0.7143866 0.1939468 0.6925839 +0.7353569 0.1939468 0.6925839 +0.7555758 0.1939468 0.6925839 +0.7751122 0.1939468 0.6925839 +0.7940252 0.1939468 0.6925839 +0.8123661 0.1939468 0.6925839 +0.8301795 0.1939468 0.6925839 +0.8475045 0.1939468 0.6925839 +0.8643761 0.1939468 0.6925839 +0.880825 0.1939468 0.6925839 +0.8968787 0.1939468 0.6925839 +0.9125621 0.1939468 0.6925839 +0.9278974 0.1939468 0.6925839 +0.9429048 0.1939468 0.6925839 +0.9576028 0.1939468 0.6925839 +0.9720079 0.1939468 0.6925839 +0.9861357 0.1939468 0.6925839 +1 0.1939468 0.6925839 +0 0.2773041 0.6925839 +0.1939468 0.2773041 0.6925839 +0.2773041 0.2773041 0.6925839 +0.3384659 0.2773041 0.6925839 +0.3885728 0.2773041 0.6925839 +0.4317928 0.2773041 0.6925839 +0.470214 0.2773041 0.6925839 +0.5050551 0.2773041 0.6925839 +0.5370987 0.2773041 0.6925839 +0.5668815 0.2773041 0.6925839 +0.5947903 0.2773041 0.6925839 +0.6211144 0.2773041 0.6925839 +0.6460766 0.2773041 0.6925839 +0.6698526 0.2773041 0.6925839 +0.6925839 0.2773041 0.6925839 +0.7143866 0.2773041 0.6925839 +0.7353569 0.2773041 0.6925839 +0.7555758 0.2773041 0.6925839 +0.7751122 0.2773041 0.6925839 +0.7940252 0.2773041 0.6925839 +0.8123661 0.2773041 0.6925839 +0.8301795 0.2773041 0.6925839 +0.8475045 0.2773041 0.6925839 +0.8643761 0.2773041 0.6925839 +0.880825 0.2773041 0.6925839 +0.8968787 0.2773041 0.6925839 +0.9125621 0.2773041 0.6925839 +0.9278974 0.2773041 0.6925839 +0.9429048 0.2773041 0.6925839 +0.9576028 0.2773041 0.6925839 +0.9720079 0.2773041 0.6925839 +0.9861357 0.2773041 0.6925839 +1 0.2773041 0.6925839 +0 0.3384659 0.6925839 +0.1939468 0.3384659 0.6925839 +0.2773041 0.3384659 0.6925839 +0.3384659 0.3384659 0.6925839 +0.3885728 0.3384659 0.6925839 +0.4317928 0.3384659 0.6925839 +0.470214 0.3384659 0.6925839 +0.5050551 0.3384659 0.6925839 +0.5370987 0.3384659 0.6925839 +0.5668815 0.3384659 0.6925839 +0.5947903 0.3384659 0.6925839 +0.6211144 0.3384659 0.6925839 +0.6460766 0.3384659 0.6925839 +0.6698526 0.3384659 0.6925839 +0.6925839 0.3384659 0.6925839 +0.7143866 0.3384659 0.6925839 +0.7353569 0.3384659 0.6925839 +0.7555758 0.3384659 0.6925839 +0.7751122 0.3384659 0.6925839 +0.7940252 0.3384659 0.6925839 +0.8123661 0.3384659 0.6925839 +0.8301795 0.3384659 0.6925839 +0.8475045 0.3384659 0.6925839 +0.8643761 0.3384659 0.6925839 +0.880825 0.3384659 0.6925839 +0.8968787 0.3384659 0.6925839 +0.9125621 0.3384659 0.6925839 +0.9278974 0.3384659 0.6925839 +0.9429048 0.3384659 0.6925839 +0.9576028 0.3384659 0.6925839 +0.9720079 0.3384659 0.6925839 +0.9861357 0.3384659 0.6925839 +1 0.3384659 0.6925839 +0 0.3885728 0.6925839 +0.1939468 0.3885728 0.6925839 +0.2773041 0.3885728 0.6925839 +0.3384659 0.3885728 0.6925839 +0.3885728 0.3885728 0.6925839 +0.4317928 0.3885728 0.6925839 +0.470214 0.3885728 0.6925839 +0.5050551 0.3885728 0.6925839 +0.5370987 0.3885728 0.6925839 +0.5668815 0.3885728 0.6925839 +0.5947903 0.3885728 0.6925839 +0.6211144 0.3885728 0.6925839 +0.6460766 0.3885728 0.6925839 +0.6698526 0.3885728 0.6925839 +0.6925839 0.3885728 0.6925839 +0.7143866 0.3885728 0.6925839 +0.7353569 0.3885728 0.6925839 +0.7555758 0.3885728 0.6925839 +0.7751122 0.3885728 0.6925839 +0.7940252 0.3885728 0.6925839 +0.8123661 0.3885728 0.6925839 +0.8301795 0.3885728 0.6925839 +0.8475045 0.3885728 0.6925839 +0.8643761 0.3885728 0.6925839 +0.880825 0.3885728 0.6925839 +0.8968787 0.3885728 0.6925839 +0.9125621 0.3885728 0.6925839 +0.9278974 0.3885728 0.6925839 +0.9429048 0.3885728 0.6925839 +0.9576028 0.3885728 0.6925839 +0.9720079 0.3885728 0.6925839 +0.9861357 0.3885728 0.6925839 +1 0.3885728 0.6925839 +0 0.4317928 0.6925839 +0.1939468 0.4317928 0.6925839 +0.2773041 0.4317928 0.6925839 +0.3384659 0.4317928 0.6925839 +0.3885728 0.4317928 0.6925839 +0.4317928 0.4317928 0.6925839 +0.470214 0.4317928 0.6925839 +0.5050551 0.4317928 0.6925839 +0.5370987 0.4317928 0.6925839 +0.5668815 0.4317928 0.6925839 +0.5947903 0.4317928 0.6925839 +0.6211144 0.4317928 0.6925839 +0.6460766 0.4317928 0.6925839 +0.6698526 0.4317928 0.6925839 +0.6925839 0.4317928 0.6925839 +0.7143866 0.4317928 0.6925839 +0.7353569 0.4317928 0.6925839 +0.7555758 0.4317928 0.6925839 +0.7751122 0.4317928 0.6925839 +0.7940252 0.4317928 0.6925839 +0.8123661 0.4317928 0.6925839 +0.8301795 0.4317928 0.6925839 +0.8475045 0.4317928 0.6925839 +0.8643761 0.4317928 0.6925839 +0.880825 0.4317928 0.6925839 +0.8968787 0.4317928 0.6925839 +0.9125621 0.4317928 0.6925839 +0.9278974 0.4317928 0.6925839 +0.9429048 0.4317928 0.6925839 +0.9576028 0.4317928 0.6925839 +0.9720079 0.4317928 0.6925839 +0.9861357 0.4317928 0.6925839 +1 0.4317928 0.6925839 +0 0.470214 0.6925839 +0.1939468 0.470214 0.6925839 +0.2773041 0.470214 0.6925839 +0.3384659 0.470214 0.6925839 +0.3885728 0.470214 0.6925839 +0.4317928 0.470214 0.6925839 +0.470214 0.470214 0.6925839 +0.5050551 0.470214 0.6925839 +0.5370987 0.470214 0.6925839 +0.5668815 0.470214 0.6925839 +0.5947903 0.470214 0.6925839 +0.6211144 0.470214 0.6925839 +0.6460766 0.470214 0.6925839 +0.6698526 0.470214 0.6925839 +0.6925839 0.470214 0.6925839 +0.7143866 0.470214 0.6925839 +0.7353569 0.470214 0.6925839 +0.7555758 0.470214 0.6925839 +0.7751122 0.470214 0.6925839 +0.7940252 0.470214 0.6925839 +0.8123661 0.470214 0.6925839 +0.8301795 0.470214 0.6925839 +0.8475045 0.470214 0.6925839 +0.8643761 0.470214 0.6925839 +0.880825 0.470214 0.6925839 +0.8968787 0.470214 0.6925839 +0.9125621 0.470214 0.6925839 +0.9278974 0.470214 0.6925839 +0.9429048 0.470214 0.6925839 +0.9576028 0.470214 0.6925839 +0.9720079 0.470214 0.6925839 +0.9861357 0.470214 0.6925839 +1 0.470214 0.6925839 +0 0.5050551 0.6925839 +0.1939468 0.5050551 0.6925839 +0.2773041 0.5050551 0.6925839 +0.3384659 0.5050551 0.6925839 +0.3885728 0.5050551 0.6925839 +0.4317928 0.5050551 0.6925839 +0.470214 0.5050551 0.6925839 +0.5050551 0.5050551 0.6925839 +0.5370987 0.5050551 0.6925839 +0.5668815 0.5050551 0.6925839 +0.5947903 0.5050551 0.6925839 +0.6211144 0.5050551 0.6925839 +0.6460766 0.5050551 0.6925839 +0.6698526 0.5050551 0.6925839 +0.6925839 0.5050551 0.6925839 +0.7143866 0.5050551 0.6925839 +0.7353569 0.5050551 0.6925839 +0.7555758 0.5050551 0.6925839 +0.7751122 0.5050551 0.6925839 +0.7940252 0.5050551 0.6925839 +0.8123661 0.5050551 0.6925839 +0.8301795 0.5050551 0.6925839 +0.8475045 0.5050551 0.6925839 +0.8643761 0.5050551 0.6925839 +0.880825 0.5050551 0.6925839 +0.8968787 0.5050551 0.6925839 +0.9125621 0.5050551 0.6925839 +0.9278974 0.5050551 0.6925839 +0.9429048 0.5050551 0.6925839 +0.9576028 0.5050551 0.6925839 +0.9720079 0.5050551 0.6925839 +0.9861357 0.5050551 0.6925839 +1 0.5050551 0.6925839 +0 0.5370987 0.6925839 +0.1939468 0.5370987 0.6925839 +0.2773041 0.5370987 0.6925839 +0.3384659 0.5370987 0.6925839 +0.3885728 0.5370987 0.6925839 +0.4317928 0.5370987 0.6925839 +0.470214 0.5370987 0.6925839 +0.5050551 0.5370987 0.6925839 +0.5370987 0.5370987 0.6925839 +0.5668815 0.5370987 0.6925839 +0.5947903 0.5370987 0.6925839 +0.6211144 0.5370987 0.6925839 +0.6460766 0.5370987 0.6925839 +0.6698526 0.5370987 0.6925839 +0.6925839 0.5370987 0.6925839 +0.7143866 0.5370987 0.6925839 +0.7353569 0.5370987 0.6925839 +0.7555758 0.5370987 0.6925839 +0.7751122 0.5370987 0.6925839 +0.7940252 0.5370987 0.6925839 +0.8123661 0.5370987 0.6925839 +0.8301795 0.5370987 0.6925839 +0.8475045 0.5370987 0.6925839 +0.8643761 0.5370987 0.6925839 +0.880825 0.5370987 0.6925839 +0.8968787 0.5370987 0.6925839 +0.9125621 0.5370987 0.6925839 +0.9278974 0.5370987 0.6925839 +0.9429048 0.5370987 0.6925839 +0.9576028 0.5370987 0.6925839 +0.9720079 0.5370987 0.6925839 +0.9861357 0.5370987 0.6925839 +1 0.5370987 0.6925839 +0 0.5668815 0.6925839 +0.1939468 0.5668815 0.6925839 +0.2773041 0.5668815 0.6925839 +0.3384659 0.5668815 0.6925839 +0.3885728 0.5668815 0.6925839 +0.4317928 0.5668815 0.6925839 +0.470214 0.5668815 0.6925839 +0.5050551 0.5668815 0.6925839 +0.5370987 0.5668815 0.6925839 +0.5668815 0.5668815 0.6925839 +0.5947903 0.5668815 0.6925839 +0.6211144 0.5668815 0.6925839 +0.6460766 0.5668815 0.6925839 +0.6698526 0.5668815 0.6925839 +0.6925839 0.5668815 0.6925839 +0.7143866 0.5668815 0.6925839 +0.7353569 0.5668815 0.6925839 +0.7555758 0.5668815 0.6925839 +0.7751122 0.5668815 0.6925839 +0.7940252 0.5668815 0.6925839 +0.8123661 0.5668815 0.6925839 +0.8301795 0.5668815 0.6925839 +0.8475045 0.5668815 0.6925839 +0.8643761 0.5668815 0.6925839 +0.880825 0.5668815 0.6925839 +0.8968787 0.5668815 0.6925839 +0.9125621 0.5668815 0.6925839 +0.9278974 0.5668815 0.6925839 +0.9429048 0.5668815 0.6925839 +0.9576028 0.5668815 0.6925839 +0.9720079 0.5668815 0.6925839 +0.9861357 0.5668815 0.6925839 +1 0.5668815 0.6925839 +0 0.5947903 0.6925839 +0.1939468 0.5947903 0.6925839 +0.2773041 0.5947903 0.6925839 +0.3384659 0.5947903 0.6925839 +0.3885728 0.5947903 0.6925839 +0.4317928 0.5947903 0.6925839 +0.470214 0.5947903 0.6925839 +0.5050551 0.5947903 0.6925839 +0.5370987 0.5947903 0.6925839 +0.5668815 0.5947903 0.6925839 +0.5947903 0.5947903 0.6925839 +0.6211144 0.5947903 0.6925839 +0.6460766 0.5947903 0.6925839 +0.6698526 0.5947903 0.6925839 +0.6925839 0.5947903 0.6925839 +0.7143866 0.5947903 0.6925839 +0.7353569 0.5947903 0.6925839 +0.7555758 0.5947903 0.6925839 +0.7751122 0.5947903 0.6925839 +0.7940252 0.5947903 0.6925839 +0.8123661 0.5947903 0.6925839 +0.8301795 0.5947903 0.6925839 +0.8475045 0.5947903 0.6925839 +0.8643761 0.5947903 0.6925839 +0.880825 0.5947903 0.6925839 +0.8968787 0.5947903 0.6925839 +0.9125621 0.5947903 0.6925839 +0.9278974 0.5947903 0.6925839 +0.9429048 0.5947903 0.6925839 +0.9576028 0.5947903 0.6925839 +0.9720079 0.5947903 0.6925839 +0.9861357 0.5947903 0.6925839 +1 0.5947903 0.6925839 +0 0.6211144 0.6925839 +0.1939468 0.6211144 0.6925839 +0.2773041 0.6211144 0.6925839 +0.3384659 0.6211144 0.6925839 +0.3885728 0.6211144 0.6925839 +0.4317928 0.6211144 0.6925839 +0.470214 0.6211144 0.6925839 +0.5050551 0.6211144 0.6925839 +0.5370987 0.6211144 0.6925839 +0.5668815 0.6211144 0.6925839 +0.5947903 0.6211144 0.6925839 +0.6211144 0.6211144 0.6925839 +0.6460766 0.6211144 0.6925839 +0.6698526 0.6211144 0.6925839 +0.6925839 0.6211144 0.6925839 +0.7143866 0.6211144 0.6925839 +0.7353569 0.6211144 0.6925839 +0.7555758 0.6211144 0.6925839 +0.7751122 0.6211144 0.6925839 +0.7940252 0.6211144 0.6925839 +0.8123661 0.6211144 0.6925839 +0.8301795 0.6211144 0.6925839 +0.8475045 0.6211144 0.6925839 +0.8643761 0.6211144 0.6925839 +0.880825 0.6211144 0.6925839 +0.8968787 0.6211144 0.6925839 +0.9125621 0.6211144 0.6925839 +0.9278974 0.6211144 0.6925839 +0.9429048 0.6211144 0.6925839 +0.9576028 0.6211144 0.6925839 +0.9720079 0.6211144 0.6925839 +0.9861357 0.6211144 0.6925839 +1 0.6211144 0.6925839 +0 0.6460766 0.6925839 +0.1939468 0.6460766 0.6925839 +0.2773041 0.6460766 0.6925839 +0.3384659 0.6460766 0.6925839 +0.3885728 0.6460766 0.6925839 +0.4317928 0.6460766 0.6925839 +0.470214 0.6460766 0.6925839 +0.5050551 0.6460766 0.6925839 +0.5370987 0.6460766 0.6925839 +0.5668815 0.6460766 0.6925839 +0.5947903 0.6460766 0.6925839 +0.6211144 0.6460766 0.6925839 +0.6460766 0.6460766 0.6925839 +0.6698526 0.6460766 0.6925839 +0.6925839 0.6460766 0.6925839 +0.7143866 0.6460766 0.6925839 +0.7353569 0.6460766 0.6925839 +0.7555758 0.6460766 0.6925839 +0.7751122 0.6460766 0.6925839 +0.7940252 0.6460766 0.6925839 +0.8123661 0.6460766 0.6925839 +0.8301795 0.6460766 0.6925839 +0.8475045 0.6460766 0.6925839 +0.8643761 0.6460766 0.6925839 +0.880825 0.6460766 0.6925839 +0.8968787 0.6460766 0.6925839 +0.9125621 0.6460766 0.6925839 +0.9278974 0.6460766 0.6925839 +0.9429048 0.6460766 0.6925839 +0.9576028 0.6460766 0.6925839 +0.9720079 0.6460766 0.6925839 +0.9861357 0.6460766 0.6925839 +1 0.6460766 0.6925839 +0 0.6698526 0.6925839 +0.1939468 0.6698526 0.6925839 +0.2773041 0.6698526 0.6925839 +0.3384659 0.6698526 0.6925839 +0.3885728 0.6698526 0.6925839 +0.4317928 0.6698526 0.6925839 +0.470214 0.6698526 0.6925839 +0.5050551 0.6698526 0.6925839 +0.5370987 0.6698526 0.6925839 +0.5668815 0.6698526 0.6925839 +0.5947903 0.6698526 0.6925839 +0.6211144 0.6698526 0.6925839 +0.6460766 0.6698526 0.6925839 +0.6698526 0.6698526 0.6925839 +0.6925839 0.6698526 0.6925839 +0.7143866 0.6698526 0.6925839 +0.7353569 0.6698526 0.6925839 +0.7555758 0.6698526 0.6925839 +0.7751122 0.6698526 0.6925839 +0.7940252 0.6698526 0.6925839 +0.8123661 0.6698526 0.6925839 +0.8301795 0.6698526 0.6925839 +0.8475045 0.6698526 0.6925839 +0.8643761 0.6698526 0.6925839 +0.880825 0.6698526 0.6925839 +0.8968787 0.6698526 0.6925839 +0.9125621 0.6698526 0.6925839 +0.9278974 0.6698526 0.6925839 +0.9429048 0.6698526 0.6925839 +0.9576028 0.6698526 0.6925839 +0.9720079 0.6698526 0.6925839 +0.9861357 0.6698526 0.6925839 +1 0.6698526 0.6925839 +0 0.6925839 0.6925839 +0.1939468 0.6925839 0.6925839 +0.2773041 0.6925839 0.6925839 +0.3384659 0.6925839 0.6925839 +0.3885728 0.6925839 0.6925839 +0.4317928 0.6925839 0.6925839 +0.470214 0.6925839 0.6925839 +0.5050551 0.6925839 0.6925839 +0.5370987 0.6925839 0.6925839 +0.5668815 0.6925839 0.6925839 +0.5947903 0.6925839 0.6925839 +0.6211144 0.6925839 0.6925839 +0.6460766 0.6925839 0.6925839 +0.6698526 0.6925839 0.6925839 +0.6925839 0.6925839 0.6925839 +0.7143866 0.6925839 0.6925839 +0.7353569 0.6925839 0.6925839 +0.7555758 0.6925839 0.6925839 +0.7751122 0.6925839 0.6925839 +0.7940252 0.6925839 0.6925839 +0.8123661 0.6925839 0.6925839 +0.8301795 0.6925839 0.6925839 +0.8475045 0.6925839 0.6925839 +0.8643761 0.6925839 0.6925839 +0.880825 0.6925839 0.6925839 +0.8968787 0.6925839 0.6925839 +0.9125621 0.6925839 0.6925839 +0.9278974 0.6925839 0.6925839 +0.9429048 0.6925839 0.6925839 +0.9576028 0.6925839 0.6925839 +0.9720079 0.6925839 0.6925839 +0.9861357 0.6925839 0.6925839 +1 0.6925839 0.6925839 +0 0.7143866 0.6925839 +0.1939468 0.7143866 0.6925839 +0.2773041 0.7143866 0.6925839 +0.3384659 0.7143866 0.6925839 +0.3885728 0.7143866 0.6925839 +0.4317928 0.7143866 0.6925839 +0.470214 0.7143866 0.6925839 +0.5050551 0.7143866 0.6925839 +0.5370987 0.7143866 0.6925839 +0.5668815 0.7143866 0.6925839 +0.5947903 0.7143866 0.6925839 +0.6211144 0.7143866 0.6925839 +0.6460766 0.7143866 0.6925839 +0.6698526 0.7143866 0.6925839 +0.6925839 0.7143866 0.6925839 +0.7143866 0.7143866 0.6925839 +0.7353569 0.7143866 0.6925839 +0.7555758 0.7143866 0.6925839 +0.7751122 0.7143866 0.6925839 +0.7940252 0.7143866 0.6925839 +0.8123661 0.7143866 0.6925839 +0.8301795 0.7143866 0.6925839 +0.8475045 0.7143866 0.6925839 +0.8643761 0.7143866 0.6925839 +0.880825 0.7143866 0.6925839 +0.8968787 0.7143866 0.6925839 +0.9125621 0.7143866 0.6925839 +0.9278974 0.7143866 0.6925839 +0.9429048 0.7143866 0.6925839 +0.9576028 0.7143866 0.6925839 +0.9720079 0.7143866 0.6925839 +0.9861357 0.7143866 0.6925839 +1 0.7143866 0.6925839 +0 0.7353569 0.6925839 +0.1939468 0.7353569 0.6925839 +0.2773041 0.7353569 0.6925839 +0.3384659 0.7353569 0.6925839 +0.3885728 0.7353569 0.6925839 +0.4317928 0.7353569 0.6925839 +0.470214 0.7353569 0.6925839 +0.5050551 0.7353569 0.6925839 +0.5370987 0.7353569 0.6925839 +0.5668815 0.7353569 0.6925839 +0.5947903 0.7353569 0.6925839 +0.6211144 0.7353569 0.6925839 +0.6460766 0.7353569 0.6925839 +0.6698526 0.7353569 0.6925839 +0.6925839 0.7353569 0.6925839 +0.7143866 0.7353569 0.6925839 +0.7353569 0.7353569 0.6925839 +0.7555758 0.7353569 0.6925839 +0.7751122 0.7353569 0.6925839 +0.7940252 0.7353569 0.6925839 +0.8123661 0.7353569 0.6925839 +0.8301795 0.7353569 0.6925839 +0.8475045 0.7353569 0.6925839 +0.8643761 0.7353569 0.6925839 +0.880825 0.7353569 0.6925839 +0.8968787 0.7353569 0.6925839 +0.9125621 0.7353569 0.6925839 +0.9278974 0.7353569 0.6925839 +0.9429048 0.7353569 0.6925839 +0.9576028 0.7353569 0.6925839 +0.9720079 0.7353569 0.6925839 +0.9861357 0.7353569 0.6925839 +1 0.7353569 0.6925839 +0 0.7555758 0.6925839 +0.1939468 0.7555758 0.6925839 +0.2773041 0.7555758 0.6925839 +0.3384659 0.7555758 0.6925839 +0.3885728 0.7555758 0.6925839 +0.4317928 0.7555758 0.6925839 +0.470214 0.7555758 0.6925839 +0.5050551 0.7555758 0.6925839 +0.5370987 0.7555758 0.6925839 +0.5668815 0.7555758 0.6925839 +0.5947903 0.7555758 0.6925839 +0.6211144 0.7555758 0.6925839 +0.6460766 0.7555758 0.6925839 +0.6698526 0.7555758 0.6925839 +0.6925839 0.7555758 0.6925839 +0.7143866 0.7555758 0.6925839 +0.7353569 0.7555758 0.6925839 +0.7555758 0.7555758 0.6925839 +0.7751122 0.7555758 0.6925839 +0.7940252 0.7555758 0.6925839 +0.8123661 0.7555758 0.6925839 +0.8301795 0.7555758 0.6925839 +0.8475045 0.7555758 0.6925839 +0.8643761 0.7555758 0.6925839 +0.880825 0.7555758 0.6925839 +0.8968787 0.7555758 0.6925839 +0.9125621 0.7555758 0.6925839 +0.9278974 0.7555758 0.6925839 +0.9429048 0.7555758 0.6925839 +0.9576028 0.7555758 0.6925839 +0.9720079 0.7555758 0.6925839 +0.9861357 0.7555758 0.6925839 +1 0.7555758 0.6925839 +0 0.7751122 0.6925839 +0.1939468 0.7751122 0.6925839 +0.2773041 0.7751122 0.6925839 +0.3384659 0.7751122 0.6925839 +0.3885728 0.7751122 0.6925839 +0.4317928 0.7751122 0.6925839 +0.470214 0.7751122 0.6925839 +0.5050551 0.7751122 0.6925839 +0.5370987 0.7751122 0.6925839 +0.5668815 0.7751122 0.6925839 +0.5947903 0.7751122 0.6925839 +0.6211144 0.7751122 0.6925839 +0.6460766 0.7751122 0.6925839 +0.6698526 0.7751122 0.6925839 +0.6925839 0.7751122 0.6925839 +0.7143866 0.7751122 0.6925839 +0.7353569 0.7751122 0.6925839 +0.7555758 0.7751122 0.6925839 +0.7751122 0.7751122 0.6925839 +0.7940252 0.7751122 0.6925839 +0.8123661 0.7751122 0.6925839 +0.8301795 0.7751122 0.6925839 +0.8475045 0.7751122 0.6925839 +0.8643761 0.7751122 0.6925839 +0.880825 0.7751122 0.6925839 +0.8968787 0.7751122 0.6925839 +0.9125621 0.7751122 0.6925839 +0.9278974 0.7751122 0.6925839 +0.9429048 0.7751122 0.6925839 +0.9576028 0.7751122 0.6925839 +0.9720079 0.7751122 0.6925839 +0.9861357 0.7751122 0.6925839 +1 0.7751122 0.6925839 +0 0.7940252 0.6925839 +0.1939468 0.7940252 0.6925839 +0.2773041 0.7940252 0.6925839 +0.3384659 0.7940252 0.6925839 +0.3885728 0.7940252 0.6925839 +0.4317928 0.7940252 0.6925839 +0.470214 0.7940252 0.6925839 +0.5050551 0.7940252 0.6925839 +0.5370987 0.7940252 0.6925839 +0.5668815 0.7940252 0.6925839 +0.5947903 0.7940252 0.6925839 +0.6211144 0.7940252 0.6925839 +0.6460766 0.7940252 0.6925839 +0.6698526 0.7940252 0.6925839 +0.6925839 0.7940252 0.6925839 +0.7143866 0.7940252 0.6925839 +0.7353569 0.7940252 0.6925839 +0.7555758 0.7940252 0.6925839 +0.7751122 0.7940252 0.6925839 +0.7940252 0.7940252 0.6925839 +0.8123661 0.7940252 0.6925839 +0.8301795 0.7940252 0.6925839 +0.8475045 0.7940252 0.6925839 +0.8643761 0.7940252 0.6925839 +0.880825 0.7940252 0.6925839 +0.8968787 0.7940252 0.6925839 +0.9125621 0.7940252 0.6925839 +0.9278974 0.7940252 0.6925839 +0.9429048 0.7940252 0.6925839 +0.9576028 0.7940252 0.6925839 +0.9720079 0.7940252 0.6925839 +0.9861357 0.7940252 0.6925839 +1 0.7940252 0.6925839 +0 0.8123661 0.6925839 +0.1939468 0.8123661 0.6925839 +0.2773041 0.8123661 0.6925839 +0.3384659 0.8123661 0.6925839 +0.3885728 0.8123661 0.6925839 +0.4317928 0.8123661 0.6925839 +0.470214 0.8123661 0.6925839 +0.5050551 0.8123661 0.6925839 +0.5370987 0.8123661 0.6925839 +0.5668815 0.8123661 0.6925839 +0.5947903 0.8123661 0.6925839 +0.6211144 0.8123661 0.6925839 +0.6460766 0.8123661 0.6925839 +0.6698526 0.8123661 0.6925839 +0.6925839 0.8123661 0.6925839 +0.7143866 0.8123661 0.6925839 +0.7353569 0.8123661 0.6925839 +0.7555758 0.8123661 0.6925839 +0.7751122 0.8123661 0.6925839 +0.7940252 0.8123661 0.6925839 +0.8123661 0.8123661 0.6925839 +0.8301795 0.8123661 0.6925839 +0.8475045 0.8123661 0.6925839 +0.8643761 0.8123661 0.6925839 +0.880825 0.8123661 0.6925839 +0.8968787 0.8123661 0.6925839 +0.9125621 0.8123661 0.6925839 +0.9278974 0.8123661 0.6925839 +0.9429048 0.8123661 0.6925839 +0.9576028 0.8123661 0.6925839 +0.9720079 0.8123661 0.6925839 +0.9861357 0.8123661 0.6925839 +1 0.8123661 0.6925839 +0 0.8301795 0.6925839 +0.1939468 0.8301795 0.6925839 +0.2773041 0.8301795 0.6925839 +0.3384659 0.8301795 0.6925839 +0.3885728 0.8301795 0.6925839 +0.4317928 0.8301795 0.6925839 +0.470214 0.8301795 0.6925839 +0.5050551 0.8301795 0.6925839 +0.5370987 0.8301795 0.6925839 +0.5668815 0.8301795 0.6925839 +0.5947903 0.8301795 0.6925839 +0.6211144 0.8301795 0.6925839 +0.6460766 0.8301795 0.6925839 +0.6698526 0.8301795 0.6925839 +0.6925839 0.8301795 0.6925839 +0.7143866 0.8301795 0.6925839 +0.7353569 0.8301795 0.6925839 +0.7555758 0.8301795 0.6925839 +0.7751122 0.8301795 0.6925839 +0.7940252 0.8301795 0.6925839 +0.8123661 0.8301795 0.6925839 +0.8301795 0.8301795 0.6925839 +0.8475045 0.8301795 0.6925839 +0.8643761 0.8301795 0.6925839 +0.880825 0.8301795 0.6925839 +0.8968787 0.8301795 0.6925839 +0.9125621 0.8301795 0.6925839 +0.9278974 0.8301795 0.6925839 +0.9429048 0.8301795 0.6925839 +0.9576028 0.8301795 0.6925839 +0.9720079 0.8301795 0.6925839 +0.9861357 0.8301795 0.6925839 +1 0.8301795 0.6925839 +0 0.8475045 0.6925839 +0.1939468 0.8475045 0.6925839 +0.2773041 0.8475045 0.6925839 +0.3384659 0.8475045 0.6925839 +0.3885728 0.8475045 0.6925839 +0.4317928 0.8475045 0.6925839 +0.470214 0.8475045 0.6925839 +0.5050551 0.8475045 0.6925839 +0.5370987 0.8475045 0.6925839 +0.5668815 0.8475045 0.6925839 +0.5947903 0.8475045 0.6925839 +0.6211144 0.8475045 0.6925839 +0.6460766 0.8475045 0.6925839 +0.6698526 0.8475045 0.6925839 +0.6925839 0.8475045 0.6925839 +0.7143866 0.8475045 0.6925839 +0.7353569 0.8475045 0.6925839 +0.7555758 0.8475045 0.6925839 +0.7751122 0.8475045 0.6925839 +0.7940252 0.8475045 0.6925839 +0.8123661 0.8475045 0.6925839 +0.8301795 0.8475045 0.6925839 +0.8475045 0.8475045 0.6925839 +0.8643761 0.8475045 0.6925839 +0.880825 0.8475045 0.6925839 +0.8968787 0.8475045 0.6925839 +0.9125621 0.8475045 0.6925839 +0.9278974 0.8475045 0.6925839 +0.9429048 0.8475045 0.6925839 +0.9576028 0.8475045 0.6925839 +0.9720079 0.8475045 0.6925839 +0.9861357 0.8475045 0.6925839 +1 0.8475045 0.6925839 +0 0.8643761 0.6925839 +0.1939468 0.8643761 0.6925839 +0.2773041 0.8643761 0.6925839 +0.3384659 0.8643761 0.6925839 +0.3885728 0.8643761 0.6925839 +0.4317928 0.8643761 0.6925839 +0.470214 0.8643761 0.6925839 +0.5050551 0.8643761 0.6925839 +0.5370987 0.8643761 0.6925839 +0.5668815 0.8643761 0.6925839 +0.5947903 0.8643761 0.6925839 +0.6211144 0.8643761 0.6925839 +0.6460766 0.8643761 0.6925839 +0.6698526 0.8643761 0.6925839 +0.6925839 0.8643761 0.6925839 +0.7143866 0.8643761 0.6925839 +0.7353569 0.8643761 0.6925839 +0.7555758 0.8643761 0.6925839 +0.7751122 0.8643761 0.6925839 +0.7940252 0.8643761 0.6925839 +0.8123661 0.8643761 0.6925839 +0.8301795 0.8643761 0.6925839 +0.8475045 0.8643761 0.6925839 +0.8643761 0.8643761 0.6925839 +0.880825 0.8643761 0.6925839 +0.8968787 0.8643761 0.6925839 +0.9125621 0.8643761 0.6925839 +0.9278974 0.8643761 0.6925839 +0.9429048 0.8643761 0.6925839 +0.9576028 0.8643761 0.6925839 +0.9720079 0.8643761 0.6925839 +0.9861357 0.8643761 0.6925839 +1 0.8643761 0.6925839 +0 0.880825 0.6925839 +0.1939468 0.880825 0.6925839 +0.2773041 0.880825 0.6925839 +0.3384659 0.880825 0.6925839 +0.3885728 0.880825 0.6925839 +0.4317928 0.880825 0.6925839 +0.470214 0.880825 0.6925839 +0.5050551 0.880825 0.6925839 +0.5370987 0.880825 0.6925839 +0.5668815 0.880825 0.6925839 +0.5947903 0.880825 0.6925839 +0.6211144 0.880825 0.6925839 +0.6460766 0.880825 0.6925839 +0.6698526 0.880825 0.6925839 +0.6925839 0.880825 0.6925839 +0.7143866 0.880825 0.6925839 +0.7353569 0.880825 0.6925839 +0.7555758 0.880825 0.6925839 +0.7751122 0.880825 0.6925839 +0.7940252 0.880825 0.6925839 +0.8123661 0.880825 0.6925839 +0.8301795 0.880825 0.6925839 +0.8475045 0.880825 0.6925839 +0.8643761 0.880825 0.6925839 +0.880825 0.880825 0.6925839 +0.8968787 0.880825 0.6925839 +0.9125621 0.880825 0.6925839 +0.9278974 0.880825 0.6925839 +0.9429048 0.880825 0.6925839 +0.9576028 0.880825 0.6925839 +0.9720079 0.880825 0.6925839 +0.9861357 0.880825 0.6925839 +1 0.880825 0.6925839 +0 0.8968787 0.6925839 +0.1939468 0.8968787 0.6925839 +0.2773041 0.8968787 0.6925839 +0.3384659 0.8968787 0.6925839 +0.3885728 0.8968787 0.6925839 +0.4317928 0.8968787 0.6925839 +0.470214 0.8968787 0.6925839 +0.5050551 0.8968787 0.6925839 +0.5370987 0.8968787 0.6925839 +0.5668815 0.8968787 0.6925839 +0.5947903 0.8968787 0.6925839 +0.6211144 0.8968787 0.6925839 +0.6460766 0.8968787 0.6925839 +0.6698526 0.8968787 0.6925839 +0.6925839 0.8968787 0.6925839 +0.7143866 0.8968787 0.6925839 +0.7353569 0.8968787 0.6925839 +0.7555758 0.8968787 0.6925839 +0.7751122 0.8968787 0.6925839 +0.7940252 0.8968787 0.6925839 +0.8123661 0.8968787 0.6925839 +0.8301795 0.8968787 0.6925839 +0.8475045 0.8968787 0.6925839 +0.8643761 0.8968787 0.6925839 +0.880825 0.8968787 0.6925839 +0.8968787 0.8968787 0.6925839 +0.9125621 0.8968787 0.6925839 +0.9278974 0.8968787 0.6925839 +0.9429048 0.8968787 0.6925839 +0.9576028 0.8968787 0.6925839 +0.9720079 0.8968787 0.6925839 +0.9861357 0.8968787 0.6925839 +1 0.8968787 0.6925839 +0 0.9125621 0.6925839 +0.1939468 0.9125621 0.6925839 +0.2773041 0.9125621 0.6925839 +0.3384659 0.9125621 0.6925839 +0.3885728 0.9125621 0.6925839 +0.4317928 0.9125621 0.6925839 +0.470214 0.9125621 0.6925839 +0.5050551 0.9125621 0.6925839 +0.5370987 0.9125621 0.6925839 +0.5668815 0.9125621 0.6925839 +0.5947903 0.9125621 0.6925839 +0.6211144 0.9125621 0.6925839 +0.6460766 0.9125621 0.6925839 +0.6698526 0.9125621 0.6925839 +0.6925839 0.9125621 0.6925839 +0.7143866 0.9125621 0.6925839 +0.7353569 0.9125621 0.6925839 +0.7555758 0.9125621 0.6925839 +0.7751122 0.9125621 0.6925839 +0.7940252 0.9125621 0.6925839 +0.8123661 0.9125621 0.6925839 +0.8301795 0.9125621 0.6925839 +0.8475045 0.9125621 0.6925839 +0.8643761 0.9125621 0.6925839 +0.880825 0.9125621 0.6925839 +0.8968787 0.9125621 0.6925839 +0.9125621 0.9125621 0.6925839 +0.9278974 0.9125621 0.6925839 +0.9429048 0.9125621 0.6925839 +0.9576028 0.9125621 0.6925839 +0.9720079 0.9125621 0.6925839 +0.9861357 0.9125621 0.6925839 +1 0.9125621 0.6925839 +0 0.9278974 0.6925839 +0.1939468 0.9278974 0.6925839 +0.2773041 0.9278974 0.6925839 +0.3384659 0.9278974 0.6925839 +0.3885728 0.9278974 0.6925839 +0.4317928 0.9278974 0.6925839 +0.470214 0.9278974 0.6925839 +0.5050551 0.9278974 0.6925839 +0.5370987 0.9278974 0.6925839 +0.5668815 0.9278974 0.6925839 +0.5947903 0.9278974 0.6925839 +0.6211144 0.9278974 0.6925839 +0.6460766 0.9278974 0.6925839 +0.6698526 0.9278974 0.6925839 +0.6925839 0.9278974 0.6925839 +0.7143866 0.9278974 0.6925839 +0.7353569 0.9278974 0.6925839 +0.7555758 0.9278974 0.6925839 +0.7751122 0.9278974 0.6925839 +0.7940252 0.9278974 0.6925839 +0.8123661 0.9278974 0.6925839 +0.8301795 0.9278974 0.6925839 +0.8475045 0.9278974 0.6925839 +0.8643761 0.9278974 0.6925839 +0.880825 0.9278974 0.6925839 +0.8968787 0.9278974 0.6925839 +0.9125621 0.9278974 0.6925839 +0.9278974 0.9278974 0.6925839 +0.9429048 0.9278974 0.6925839 +0.9576028 0.9278974 0.6925839 +0.9720079 0.9278974 0.6925839 +0.9861357 0.9278974 0.6925839 +1 0.9278974 0.6925839 +0 0.9429048 0.6925839 +0.1939468 0.9429048 0.6925839 +0.2773041 0.9429048 0.6925839 +0.3384659 0.9429048 0.6925839 +0.3885728 0.9429048 0.6925839 +0.4317928 0.9429048 0.6925839 +0.470214 0.9429048 0.6925839 +0.5050551 0.9429048 0.6925839 +0.5370987 0.9429048 0.6925839 +0.5668815 0.9429048 0.6925839 +0.5947903 0.9429048 0.6925839 +0.6211144 0.9429048 0.6925839 +0.6460766 0.9429048 0.6925839 +0.6698526 0.9429048 0.6925839 +0.6925839 0.9429048 0.6925839 +0.7143866 0.9429048 0.6925839 +0.7353569 0.9429048 0.6925839 +0.7555758 0.9429048 0.6925839 +0.7751122 0.9429048 0.6925839 +0.7940252 0.9429048 0.6925839 +0.8123661 0.9429048 0.6925839 +0.8301795 0.9429048 0.6925839 +0.8475045 0.9429048 0.6925839 +0.8643761 0.9429048 0.6925839 +0.880825 0.9429048 0.6925839 +0.8968787 0.9429048 0.6925839 +0.9125621 0.9429048 0.6925839 +0.9278974 0.9429048 0.6925839 +0.9429048 0.9429048 0.6925839 +0.9576028 0.9429048 0.6925839 +0.9720079 0.9429048 0.6925839 +0.9861357 0.9429048 0.6925839 +1 0.9429048 0.6925839 +0 0.9576028 0.6925839 +0.1939468 0.9576028 0.6925839 +0.2773041 0.9576028 0.6925839 +0.3384659 0.9576028 0.6925839 +0.3885728 0.9576028 0.6925839 +0.4317928 0.9576028 0.6925839 +0.470214 0.9576028 0.6925839 +0.5050551 0.9576028 0.6925839 +0.5370987 0.9576028 0.6925839 +0.5668815 0.9576028 0.6925839 +0.5947903 0.9576028 0.6925839 +0.6211144 0.9576028 0.6925839 +0.6460766 0.9576028 0.6925839 +0.6698526 0.9576028 0.6925839 +0.6925839 0.9576028 0.6925839 +0.7143866 0.9576028 0.6925839 +0.7353569 0.9576028 0.6925839 +0.7555758 0.9576028 0.6925839 +0.7751122 0.9576028 0.6925839 +0.7940252 0.9576028 0.6925839 +0.8123661 0.9576028 0.6925839 +0.8301795 0.9576028 0.6925839 +0.8475045 0.9576028 0.6925839 +0.8643761 0.9576028 0.6925839 +0.880825 0.9576028 0.6925839 +0.8968787 0.9576028 0.6925839 +0.9125621 0.9576028 0.6925839 +0.9278974 0.9576028 0.6925839 +0.9429048 0.9576028 0.6925839 +0.9576028 0.9576028 0.6925839 +0.9720079 0.9576028 0.6925839 +0.9861357 0.9576028 0.6925839 +1 0.9576028 0.6925839 +0 0.9720079 0.6925839 +0.1939468 0.9720079 0.6925839 +0.2773041 0.9720079 0.6925839 +0.3384659 0.9720079 0.6925839 +0.3885728 0.9720079 0.6925839 +0.4317928 0.9720079 0.6925839 +0.470214 0.9720079 0.6925839 +0.5050551 0.9720079 0.6925839 +0.5370987 0.9720079 0.6925839 +0.5668815 0.9720079 0.6925839 +0.5947903 0.9720079 0.6925839 +0.6211144 0.9720079 0.6925839 +0.6460766 0.9720079 0.6925839 +0.6698526 0.9720079 0.6925839 +0.6925839 0.9720079 0.6925839 +0.7143866 0.9720079 0.6925839 +0.7353569 0.9720079 0.6925839 +0.7555758 0.9720079 0.6925839 +0.7751122 0.9720079 0.6925839 +0.7940252 0.9720079 0.6925839 +0.8123661 0.9720079 0.6925839 +0.8301795 0.9720079 0.6925839 +0.8475045 0.9720079 0.6925839 +0.8643761 0.9720079 0.6925839 +0.880825 0.9720079 0.6925839 +0.8968787 0.9720079 0.6925839 +0.9125621 0.9720079 0.6925839 +0.9278974 0.9720079 0.6925839 +0.9429048 0.9720079 0.6925839 +0.9576028 0.9720079 0.6925839 +0.9720079 0.9720079 0.6925839 +0.9861357 0.9720079 0.6925839 +1 0.9720079 0.6925839 +0 0.9861357 0.6925839 +0.1939468 0.9861357 0.6925839 +0.2773041 0.9861357 0.6925839 +0.3384659 0.9861357 0.6925839 +0.3885728 0.9861357 0.6925839 +0.4317928 0.9861357 0.6925839 +0.470214 0.9861357 0.6925839 +0.5050551 0.9861357 0.6925839 +0.5370987 0.9861357 0.6925839 +0.5668815 0.9861357 0.6925839 +0.5947903 0.9861357 0.6925839 +0.6211144 0.9861357 0.6925839 +0.6460766 0.9861357 0.6925839 +0.6698526 0.9861357 0.6925839 +0.6925839 0.9861357 0.6925839 +0.7143866 0.9861357 0.6925839 +0.7353569 0.9861357 0.6925839 +0.7555758 0.9861357 0.6925839 +0.7751122 0.9861357 0.6925839 +0.7940252 0.9861357 0.6925839 +0.8123661 0.9861357 0.6925839 +0.8301795 0.9861357 0.6925839 +0.8475045 0.9861357 0.6925839 +0.8643761 0.9861357 0.6925839 +0.880825 0.9861357 0.6925839 +0.8968787 0.9861357 0.6925839 +0.9125621 0.9861357 0.6925839 +0.9278974 0.9861357 0.6925839 +0.9429048 0.9861357 0.6925839 +0.9576028 0.9861357 0.6925839 +0.9720079 0.9861357 0.6925839 +0.9861357 0.9861357 0.6925839 +1 0.9861357 0.6925839 +0 1 0.6925839 +0.1939468 1 0.6925839 +0.2773041 1 0.6925839 +0.3384659 1 0.6925839 +0.3885728 1 0.6925839 +0.4317928 1 0.6925839 +0.470214 1 0.6925839 +0.5050551 1 0.6925839 +0.5370987 1 0.6925839 +0.5668815 1 0.6925839 +0.5947903 1 0.6925839 +0.6211144 1 0.6925839 +0.6460766 1 0.6925839 +0.6698526 1 0.6925839 +0.6925839 1 0.6925839 +0.7143866 1 0.6925839 +0.7353569 1 0.6925839 +0.7555758 1 0.6925839 +0.7751122 1 0.6925839 +0.7940252 1 0.6925839 +0.8123661 1 0.6925839 +0.8301795 1 0.6925839 +0.8475045 1 0.6925839 +0.8643761 1 0.6925839 +0.880825 1 0.6925839 +0.8968787 1 0.6925839 +0.9125621 1 0.6925839 +0.9278974 1 0.6925839 +0.9429048 1 0.6925839 +0.9576028 1 0.6925839 +0.9720079 1 0.6925839 +0.9861357 1 0.6925839 +1 1 0.6925839 +0 0 0.7143866 +0.1939468 0 0.7143866 +0.2773041 0 0.7143866 +0.3384659 0 0.7143866 +0.3885728 0 0.7143866 +0.4317928 0 0.7143866 +0.470214 0 0.7143866 +0.5050551 0 0.7143866 +0.5370987 0 0.7143866 +0.5668815 0 0.7143866 +0.5947903 0 0.7143866 +0.6211144 0 0.7143866 +0.6460766 0 0.7143866 +0.6698526 0 0.7143866 +0.6925839 0 0.7143866 +0.7143866 0 0.7143866 +0.7353569 0 0.7143866 +0.7555758 0 0.7143866 +0.7751122 0 0.7143866 +0.7940252 0 0.7143866 +0.8123661 0 0.7143866 +0.8301795 0 0.7143866 +0.8475045 0 0.7143866 +0.8643761 0 0.7143866 +0.880825 0 0.7143866 +0.8968787 0 0.7143866 +0.9125621 0 0.7143866 +0.9278974 0 0.7143866 +0.9429048 0 0.7143866 +0.9576028 0 0.7143866 +0.9720079 0 0.7143866 +0.9861357 0 0.7143866 +1 0 0.7143866 +0 0.1939468 0.7143866 +0.1939468 0.1939468 0.7143866 +0.2773041 0.1939468 0.7143866 +0.3384659 0.1939468 0.7143866 +0.3885728 0.1939468 0.7143866 +0.4317928 0.1939468 0.7143866 +0.470214 0.1939468 0.7143866 +0.5050551 0.1939468 0.7143866 +0.5370987 0.1939468 0.7143866 +0.5668815 0.1939468 0.7143866 +0.5947903 0.1939468 0.7143866 +0.6211144 0.1939468 0.7143866 +0.6460766 0.1939468 0.7143866 +0.6698526 0.1939468 0.7143866 +0.6925839 0.1939468 0.7143866 +0.7143866 0.1939468 0.7143866 +0.7353569 0.1939468 0.7143866 +0.7555758 0.1939468 0.7143866 +0.7751122 0.1939468 0.7143866 +0.7940252 0.1939468 0.7143866 +0.8123661 0.1939468 0.7143866 +0.8301795 0.1939468 0.7143866 +0.8475045 0.1939468 0.7143866 +0.8643761 0.1939468 0.7143866 +0.880825 0.1939468 0.7143866 +0.8968787 0.1939468 0.7143866 +0.9125621 0.1939468 0.7143866 +0.9278974 0.1939468 0.7143866 +0.9429048 0.1939468 0.7143866 +0.9576028 0.1939468 0.7143866 +0.9720079 0.1939468 0.7143866 +0.9861357 0.1939468 0.7143866 +1 0.1939468 0.7143866 +0 0.2773041 0.7143866 +0.1939468 0.2773041 0.7143866 +0.2773041 0.2773041 0.7143866 +0.3384659 0.2773041 0.7143866 +0.3885728 0.2773041 0.7143866 +0.4317928 0.2773041 0.7143866 +0.470214 0.2773041 0.7143866 +0.5050551 0.2773041 0.7143866 +0.5370987 0.2773041 0.7143866 +0.5668815 0.2773041 0.7143866 +0.5947903 0.2773041 0.7143866 +0.6211144 0.2773041 0.7143866 +0.6460766 0.2773041 0.7143866 +0.6698526 0.2773041 0.7143866 +0.6925839 0.2773041 0.7143866 +0.7143866 0.2773041 0.7143866 +0.7353569 0.2773041 0.7143866 +0.7555758 0.2773041 0.7143866 +0.7751122 0.2773041 0.7143866 +0.7940252 0.2773041 0.7143866 +0.8123661 0.2773041 0.7143866 +0.8301795 0.2773041 0.7143866 +0.8475045 0.2773041 0.7143866 +0.8643761 0.2773041 0.7143866 +0.880825 0.2773041 0.7143866 +0.8968787 0.2773041 0.7143866 +0.9125621 0.2773041 0.7143866 +0.9278974 0.2773041 0.7143866 +0.9429048 0.2773041 0.7143866 +0.9576028 0.2773041 0.7143866 +0.9720079 0.2773041 0.7143866 +0.9861357 0.2773041 0.7143866 +1 0.2773041 0.7143866 +0 0.3384659 0.7143866 +0.1939468 0.3384659 0.7143866 +0.2773041 0.3384659 0.7143866 +0.3384659 0.3384659 0.7143866 +0.3885728 0.3384659 0.7143866 +0.4317928 0.3384659 0.7143866 +0.470214 0.3384659 0.7143866 +0.5050551 0.3384659 0.7143866 +0.5370987 0.3384659 0.7143866 +0.5668815 0.3384659 0.7143866 +0.5947903 0.3384659 0.7143866 +0.6211144 0.3384659 0.7143866 +0.6460766 0.3384659 0.7143866 +0.6698526 0.3384659 0.7143866 +0.6925839 0.3384659 0.7143866 +0.7143866 0.3384659 0.7143866 +0.7353569 0.3384659 0.7143866 +0.7555758 0.3384659 0.7143866 +0.7751122 0.3384659 0.7143866 +0.7940252 0.3384659 0.7143866 +0.8123661 0.3384659 0.7143866 +0.8301795 0.3384659 0.7143866 +0.8475045 0.3384659 0.7143866 +0.8643761 0.3384659 0.7143866 +0.880825 0.3384659 0.7143866 +0.8968787 0.3384659 0.7143866 +0.9125621 0.3384659 0.7143866 +0.9278974 0.3384659 0.7143866 +0.9429048 0.3384659 0.7143866 +0.9576028 0.3384659 0.7143866 +0.9720079 0.3384659 0.7143866 +0.9861357 0.3384659 0.7143866 +1 0.3384659 0.7143866 +0 0.3885728 0.7143866 +0.1939468 0.3885728 0.7143866 +0.2773041 0.3885728 0.7143866 +0.3384659 0.3885728 0.7143866 +0.3885728 0.3885728 0.7143866 +0.4317928 0.3885728 0.7143866 +0.470214 0.3885728 0.7143866 +0.5050551 0.3885728 0.7143866 +0.5370987 0.3885728 0.7143866 +0.5668815 0.3885728 0.7143866 +0.5947903 0.3885728 0.7143866 +0.6211144 0.3885728 0.7143866 +0.6460766 0.3885728 0.7143866 +0.6698526 0.3885728 0.7143866 +0.6925839 0.3885728 0.7143866 +0.7143866 0.3885728 0.7143866 +0.7353569 0.3885728 0.7143866 +0.7555758 0.3885728 0.7143866 +0.7751122 0.3885728 0.7143866 +0.7940252 0.3885728 0.7143866 +0.8123661 0.3885728 0.7143866 +0.8301795 0.3885728 0.7143866 +0.8475045 0.3885728 0.7143866 +0.8643761 0.3885728 0.7143866 +0.880825 0.3885728 0.7143866 +0.8968787 0.3885728 0.7143866 +0.9125621 0.3885728 0.7143866 +0.9278974 0.3885728 0.7143866 +0.9429048 0.3885728 0.7143866 +0.9576028 0.3885728 0.7143866 +0.9720079 0.3885728 0.7143866 +0.9861357 0.3885728 0.7143866 +1 0.3885728 0.7143866 +0 0.4317928 0.7143866 +0.1939468 0.4317928 0.7143866 +0.2773041 0.4317928 0.7143866 +0.3384659 0.4317928 0.7143866 +0.3885728 0.4317928 0.7143866 +0.4317928 0.4317928 0.7143866 +0.470214 0.4317928 0.7143866 +0.5050551 0.4317928 0.7143866 +0.5370987 0.4317928 0.7143866 +0.5668815 0.4317928 0.7143866 +0.5947903 0.4317928 0.7143866 +0.6211144 0.4317928 0.7143866 +0.6460766 0.4317928 0.7143866 +0.6698526 0.4317928 0.7143866 +0.6925839 0.4317928 0.7143866 +0.7143866 0.4317928 0.7143866 +0.7353569 0.4317928 0.7143866 +0.7555758 0.4317928 0.7143866 +0.7751122 0.4317928 0.7143866 +0.7940252 0.4317928 0.7143866 +0.8123661 0.4317928 0.7143866 +0.8301795 0.4317928 0.7143866 +0.8475045 0.4317928 0.7143866 +0.8643761 0.4317928 0.7143866 +0.880825 0.4317928 0.7143866 +0.8968787 0.4317928 0.7143866 +0.9125621 0.4317928 0.7143866 +0.9278974 0.4317928 0.7143866 +0.9429048 0.4317928 0.7143866 +0.9576028 0.4317928 0.7143866 +0.9720079 0.4317928 0.7143866 +0.9861357 0.4317928 0.7143866 +1 0.4317928 0.7143866 +0 0.470214 0.7143866 +0.1939468 0.470214 0.7143866 +0.2773041 0.470214 0.7143866 +0.3384659 0.470214 0.7143866 +0.3885728 0.470214 0.7143866 +0.4317928 0.470214 0.7143866 +0.470214 0.470214 0.7143866 +0.5050551 0.470214 0.7143866 +0.5370987 0.470214 0.7143866 +0.5668815 0.470214 0.7143866 +0.5947903 0.470214 0.7143866 +0.6211144 0.470214 0.7143866 +0.6460766 0.470214 0.7143866 +0.6698526 0.470214 0.7143866 +0.6925839 0.470214 0.7143866 +0.7143866 0.470214 0.7143866 +0.7353569 0.470214 0.7143866 +0.7555758 0.470214 0.7143866 +0.7751122 0.470214 0.7143866 +0.7940252 0.470214 0.7143866 +0.8123661 0.470214 0.7143866 +0.8301795 0.470214 0.7143866 +0.8475045 0.470214 0.7143866 +0.8643761 0.470214 0.7143866 +0.880825 0.470214 0.7143866 +0.8968787 0.470214 0.7143866 +0.9125621 0.470214 0.7143866 +0.9278974 0.470214 0.7143866 +0.9429048 0.470214 0.7143866 +0.9576028 0.470214 0.7143866 +0.9720079 0.470214 0.7143866 +0.9861357 0.470214 0.7143866 +1 0.470214 0.7143866 +0 0.5050551 0.7143866 +0.1939468 0.5050551 0.7143866 +0.2773041 0.5050551 0.7143866 +0.3384659 0.5050551 0.7143866 +0.3885728 0.5050551 0.7143866 +0.4317928 0.5050551 0.7143866 +0.470214 0.5050551 0.7143866 +0.5050551 0.5050551 0.7143866 +0.5370987 0.5050551 0.7143866 +0.5668815 0.5050551 0.7143866 +0.5947903 0.5050551 0.7143866 +0.6211144 0.5050551 0.7143866 +0.6460766 0.5050551 0.7143866 +0.6698526 0.5050551 0.7143866 +0.6925839 0.5050551 0.7143866 +0.7143866 0.5050551 0.7143866 +0.7353569 0.5050551 0.7143866 +0.7555758 0.5050551 0.7143866 +0.7751122 0.5050551 0.7143866 +0.7940252 0.5050551 0.7143866 +0.8123661 0.5050551 0.7143866 +0.8301795 0.5050551 0.7143866 +0.8475045 0.5050551 0.7143866 +0.8643761 0.5050551 0.7143866 +0.880825 0.5050551 0.7143866 +0.8968787 0.5050551 0.7143866 +0.9125621 0.5050551 0.7143866 +0.9278974 0.5050551 0.7143866 +0.9429048 0.5050551 0.7143866 +0.9576028 0.5050551 0.7143866 +0.9720079 0.5050551 0.7143866 +0.9861357 0.5050551 0.7143866 +1 0.5050551 0.7143866 +0 0.5370987 0.7143866 +0.1939468 0.5370987 0.7143866 +0.2773041 0.5370987 0.7143866 +0.3384659 0.5370987 0.7143866 +0.3885728 0.5370987 0.7143866 +0.4317928 0.5370987 0.7143866 +0.470214 0.5370987 0.7143866 +0.5050551 0.5370987 0.7143866 +0.5370987 0.5370987 0.7143866 +0.5668815 0.5370987 0.7143866 +0.5947903 0.5370987 0.7143866 +0.6211144 0.5370987 0.7143866 +0.6460766 0.5370987 0.7143866 +0.6698526 0.5370987 0.7143866 +0.6925839 0.5370987 0.7143866 +0.7143866 0.5370987 0.7143866 +0.7353569 0.5370987 0.7143866 +0.7555758 0.5370987 0.7143866 +0.7751122 0.5370987 0.7143866 +0.7940252 0.5370987 0.7143866 +0.8123661 0.5370987 0.7143866 +0.8301795 0.5370987 0.7143866 +0.8475045 0.5370987 0.7143866 +0.8643761 0.5370987 0.7143866 +0.880825 0.5370987 0.7143866 +0.8968787 0.5370987 0.7143866 +0.9125621 0.5370987 0.7143866 +0.9278974 0.5370987 0.7143866 +0.9429048 0.5370987 0.7143866 +0.9576028 0.5370987 0.7143866 +0.9720079 0.5370987 0.7143866 +0.9861357 0.5370987 0.7143866 +1 0.5370987 0.7143866 +0 0.5668815 0.7143866 +0.1939468 0.5668815 0.7143866 +0.2773041 0.5668815 0.7143866 +0.3384659 0.5668815 0.7143866 +0.3885728 0.5668815 0.7143866 +0.4317928 0.5668815 0.7143866 +0.470214 0.5668815 0.7143866 +0.5050551 0.5668815 0.7143866 +0.5370987 0.5668815 0.7143866 +0.5668815 0.5668815 0.7143866 +0.5947903 0.5668815 0.7143866 +0.6211144 0.5668815 0.7143866 +0.6460766 0.5668815 0.7143866 +0.6698526 0.5668815 0.7143866 +0.6925839 0.5668815 0.7143866 +0.7143866 0.5668815 0.7143866 +0.7353569 0.5668815 0.7143866 +0.7555758 0.5668815 0.7143866 +0.7751122 0.5668815 0.7143866 +0.7940252 0.5668815 0.7143866 +0.8123661 0.5668815 0.7143866 +0.8301795 0.5668815 0.7143866 +0.8475045 0.5668815 0.7143866 +0.8643761 0.5668815 0.7143866 +0.880825 0.5668815 0.7143866 +0.8968787 0.5668815 0.7143866 +0.9125621 0.5668815 0.7143866 +0.9278974 0.5668815 0.7143866 +0.9429048 0.5668815 0.7143866 +0.9576028 0.5668815 0.7143866 +0.9720079 0.5668815 0.7143866 +0.9861357 0.5668815 0.7143866 +1 0.5668815 0.7143866 +0 0.5947903 0.7143866 +0.1939468 0.5947903 0.7143866 +0.2773041 0.5947903 0.7143866 +0.3384659 0.5947903 0.7143866 +0.3885728 0.5947903 0.7143866 +0.4317928 0.5947903 0.7143866 +0.470214 0.5947903 0.7143866 +0.5050551 0.5947903 0.7143866 +0.5370987 0.5947903 0.7143866 +0.5668815 0.5947903 0.7143866 +0.5947903 0.5947903 0.7143866 +0.6211144 0.5947903 0.7143866 +0.6460766 0.5947903 0.7143866 +0.6698526 0.5947903 0.7143866 +0.6925839 0.5947903 0.7143866 +0.7143866 0.5947903 0.7143866 +0.7353569 0.5947903 0.7143866 +0.7555758 0.5947903 0.7143866 +0.7751122 0.5947903 0.7143866 +0.7940252 0.5947903 0.7143866 +0.8123661 0.5947903 0.7143866 +0.8301795 0.5947903 0.7143866 +0.8475045 0.5947903 0.7143866 +0.8643761 0.5947903 0.7143866 +0.880825 0.5947903 0.7143866 +0.8968787 0.5947903 0.7143866 +0.9125621 0.5947903 0.7143866 +0.9278974 0.5947903 0.7143866 +0.9429048 0.5947903 0.7143866 +0.9576028 0.5947903 0.7143866 +0.9720079 0.5947903 0.7143866 +0.9861357 0.5947903 0.7143866 +1 0.5947903 0.7143866 +0 0.6211144 0.7143866 +0.1939468 0.6211144 0.7143866 +0.2773041 0.6211144 0.7143866 +0.3384659 0.6211144 0.7143866 +0.3885728 0.6211144 0.7143866 +0.4317928 0.6211144 0.7143866 +0.470214 0.6211144 0.7143866 +0.5050551 0.6211144 0.7143866 +0.5370987 0.6211144 0.7143866 +0.5668815 0.6211144 0.7143866 +0.5947903 0.6211144 0.7143866 +0.6211144 0.6211144 0.7143866 +0.6460766 0.6211144 0.7143866 +0.6698526 0.6211144 0.7143866 +0.6925839 0.6211144 0.7143866 +0.7143866 0.6211144 0.7143866 +0.7353569 0.6211144 0.7143866 +0.7555758 0.6211144 0.7143866 +0.7751122 0.6211144 0.7143866 +0.7940252 0.6211144 0.7143866 +0.8123661 0.6211144 0.7143866 +0.8301795 0.6211144 0.7143866 +0.8475045 0.6211144 0.7143866 +0.8643761 0.6211144 0.7143866 +0.880825 0.6211144 0.7143866 +0.8968787 0.6211144 0.7143866 +0.9125621 0.6211144 0.7143866 +0.9278974 0.6211144 0.7143866 +0.9429048 0.6211144 0.7143866 +0.9576028 0.6211144 0.7143866 +0.9720079 0.6211144 0.7143866 +0.9861357 0.6211144 0.7143866 +1 0.6211144 0.7143866 +0 0.6460766 0.7143866 +0.1939468 0.6460766 0.7143866 +0.2773041 0.6460766 0.7143866 +0.3384659 0.6460766 0.7143866 +0.3885728 0.6460766 0.7143866 +0.4317928 0.6460766 0.7143866 +0.470214 0.6460766 0.7143866 +0.5050551 0.6460766 0.7143866 +0.5370987 0.6460766 0.7143866 +0.5668815 0.6460766 0.7143866 +0.5947903 0.6460766 0.7143866 +0.6211144 0.6460766 0.7143866 +0.6460766 0.6460766 0.7143866 +0.6698526 0.6460766 0.7143866 +0.6925839 0.6460766 0.7143866 +0.7143866 0.6460766 0.7143866 +0.7353569 0.6460766 0.7143866 +0.7555758 0.6460766 0.7143866 +0.7751122 0.6460766 0.7143866 +0.7940252 0.6460766 0.7143866 +0.8123661 0.6460766 0.7143866 +0.8301795 0.6460766 0.7143866 +0.8475045 0.6460766 0.7143866 +0.8643761 0.6460766 0.7143866 +0.880825 0.6460766 0.7143866 +0.8968787 0.6460766 0.7143866 +0.9125621 0.6460766 0.7143866 +0.9278974 0.6460766 0.7143866 +0.9429048 0.6460766 0.7143866 +0.9576028 0.6460766 0.7143866 +0.9720079 0.6460766 0.7143866 +0.9861357 0.6460766 0.7143866 +1 0.6460766 0.7143866 +0 0.6698526 0.7143866 +0.1939468 0.6698526 0.7143866 +0.2773041 0.6698526 0.7143866 +0.3384659 0.6698526 0.7143866 +0.3885728 0.6698526 0.7143866 +0.4317928 0.6698526 0.7143866 +0.470214 0.6698526 0.7143866 +0.5050551 0.6698526 0.7143866 +0.5370987 0.6698526 0.7143866 +0.5668815 0.6698526 0.7143866 +0.5947903 0.6698526 0.7143866 +0.6211144 0.6698526 0.7143866 +0.6460766 0.6698526 0.7143866 +0.6698526 0.6698526 0.7143866 +0.6925839 0.6698526 0.7143866 +0.7143866 0.6698526 0.7143866 +0.7353569 0.6698526 0.7143866 +0.7555758 0.6698526 0.7143866 +0.7751122 0.6698526 0.7143866 +0.7940252 0.6698526 0.7143866 +0.8123661 0.6698526 0.7143866 +0.8301795 0.6698526 0.7143866 +0.8475045 0.6698526 0.7143866 +0.8643761 0.6698526 0.7143866 +0.880825 0.6698526 0.7143866 +0.8968787 0.6698526 0.7143866 +0.9125621 0.6698526 0.7143866 +0.9278974 0.6698526 0.7143866 +0.9429048 0.6698526 0.7143866 +0.9576028 0.6698526 0.7143866 +0.9720079 0.6698526 0.7143866 +0.9861357 0.6698526 0.7143866 +1 0.6698526 0.7143866 +0 0.6925839 0.7143866 +0.1939468 0.6925839 0.7143866 +0.2773041 0.6925839 0.7143866 +0.3384659 0.6925839 0.7143866 +0.3885728 0.6925839 0.7143866 +0.4317928 0.6925839 0.7143866 +0.470214 0.6925839 0.7143866 +0.5050551 0.6925839 0.7143866 +0.5370987 0.6925839 0.7143866 +0.5668815 0.6925839 0.7143866 +0.5947903 0.6925839 0.7143866 +0.6211144 0.6925839 0.7143866 +0.6460766 0.6925839 0.7143866 +0.6698526 0.6925839 0.7143866 +0.6925839 0.6925839 0.7143866 +0.7143866 0.6925839 0.7143866 +0.7353569 0.6925839 0.7143866 +0.7555758 0.6925839 0.7143866 +0.7751122 0.6925839 0.7143866 +0.7940252 0.6925839 0.7143866 +0.8123661 0.6925839 0.7143866 +0.8301795 0.6925839 0.7143866 +0.8475045 0.6925839 0.7143866 +0.8643761 0.6925839 0.7143866 +0.880825 0.6925839 0.7143866 +0.8968787 0.6925839 0.7143866 +0.9125621 0.6925839 0.7143866 +0.9278974 0.6925839 0.7143866 +0.9429048 0.6925839 0.7143866 +0.9576028 0.6925839 0.7143866 +0.9720079 0.6925839 0.7143866 +0.9861357 0.6925839 0.7143866 +1 0.6925839 0.7143866 +0 0.7143866 0.7143866 +0.1939468 0.7143866 0.7143866 +0.2773041 0.7143866 0.7143866 +0.3384659 0.7143866 0.7143866 +0.3885728 0.7143866 0.7143866 +0.4317928 0.7143866 0.7143866 +0.470214 0.7143866 0.7143866 +0.5050551 0.7143866 0.7143866 +0.5370987 0.7143866 0.7143866 +0.5668815 0.7143866 0.7143866 +0.5947903 0.7143866 0.7143866 +0.6211144 0.7143866 0.7143866 +0.6460766 0.7143866 0.7143866 +0.6698526 0.7143866 0.7143866 +0.6925839 0.7143866 0.7143866 +0.7143866 0.7143866 0.7143866 +0.7353569 0.7143866 0.7143866 +0.7555758 0.7143866 0.7143866 +0.7751122 0.7143866 0.7143866 +0.7940252 0.7143866 0.7143866 +0.8123661 0.7143866 0.7143866 +0.8301795 0.7143866 0.7143866 +0.8475045 0.7143866 0.7143866 +0.8643761 0.7143866 0.7143866 +0.880825 0.7143866 0.7143866 +0.8968787 0.7143866 0.7143866 +0.9125621 0.7143866 0.7143866 +0.9278974 0.7143866 0.7143866 +0.9429048 0.7143866 0.7143866 +0.9576028 0.7143866 0.7143866 +0.9720079 0.7143866 0.7143866 +0.9861357 0.7143866 0.7143866 +1 0.7143866 0.7143866 +0 0.7353569 0.7143866 +0.1939468 0.7353569 0.7143866 +0.2773041 0.7353569 0.7143866 +0.3384659 0.7353569 0.7143866 +0.3885728 0.7353569 0.7143866 +0.4317928 0.7353569 0.7143866 +0.470214 0.7353569 0.7143866 +0.5050551 0.7353569 0.7143866 +0.5370987 0.7353569 0.7143866 +0.5668815 0.7353569 0.7143866 +0.5947903 0.7353569 0.7143866 +0.6211144 0.7353569 0.7143866 +0.6460766 0.7353569 0.7143866 +0.6698526 0.7353569 0.7143866 +0.6925839 0.7353569 0.7143866 +0.7143866 0.7353569 0.7143866 +0.7353569 0.7353569 0.7143866 +0.7555758 0.7353569 0.7143866 +0.7751122 0.7353569 0.7143866 +0.7940252 0.7353569 0.7143866 +0.8123661 0.7353569 0.7143866 +0.8301795 0.7353569 0.7143866 +0.8475045 0.7353569 0.7143866 +0.8643761 0.7353569 0.7143866 +0.880825 0.7353569 0.7143866 +0.8968787 0.7353569 0.7143866 +0.9125621 0.7353569 0.7143866 +0.9278974 0.7353569 0.7143866 +0.9429048 0.7353569 0.7143866 +0.9576028 0.7353569 0.7143866 +0.9720079 0.7353569 0.7143866 +0.9861357 0.7353569 0.7143866 +1 0.7353569 0.7143866 +0 0.7555758 0.7143866 +0.1939468 0.7555758 0.7143866 +0.2773041 0.7555758 0.7143866 +0.3384659 0.7555758 0.7143866 +0.3885728 0.7555758 0.7143866 +0.4317928 0.7555758 0.7143866 +0.470214 0.7555758 0.7143866 +0.5050551 0.7555758 0.7143866 +0.5370987 0.7555758 0.7143866 +0.5668815 0.7555758 0.7143866 +0.5947903 0.7555758 0.7143866 +0.6211144 0.7555758 0.7143866 +0.6460766 0.7555758 0.7143866 +0.6698526 0.7555758 0.7143866 +0.6925839 0.7555758 0.7143866 +0.7143866 0.7555758 0.7143866 +0.7353569 0.7555758 0.7143866 +0.7555758 0.7555758 0.7143866 +0.7751122 0.7555758 0.7143866 +0.7940252 0.7555758 0.7143866 +0.8123661 0.7555758 0.7143866 +0.8301795 0.7555758 0.7143866 +0.8475045 0.7555758 0.7143866 +0.8643761 0.7555758 0.7143866 +0.880825 0.7555758 0.7143866 +0.8968787 0.7555758 0.7143866 +0.9125621 0.7555758 0.7143866 +0.9278974 0.7555758 0.7143866 +0.9429048 0.7555758 0.7143866 +0.9576028 0.7555758 0.7143866 +0.9720079 0.7555758 0.7143866 +0.9861357 0.7555758 0.7143866 +1 0.7555758 0.7143866 +0 0.7751122 0.7143866 +0.1939468 0.7751122 0.7143866 +0.2773041 0.7751122 0.7143866 +0.3384659 0.7751122 0.7143866 +0.3885728 0.7751122 0.7143866 +0.4317928 0.7751122 0.7143866 +0.470214 0.7751122 0.7143866 +0.5050551 0.7751122 0.7143866 +0.5370987 0.7751122 0.7143866 +0.5668815 0.7751122 0.7143866 +0.5947903 0.7751122 0.7143866 +0.6211144 0.7751122 0.7143866 +0.6460766 0.7751122 0.7143866 +0.6698526 0.7751122 0.7143866 +0.6925839 0.7751122 0.7143866 +0.7143866 0.7751122 0.7143866 +0.7353569 0.7751122 0.7143866 +0.7555758 0.7751122 0.7143866 +0.7751122 0.7751122 0.7143866 +0.7940252 0.7751122 0.7143866 +0.8123661 0.7751122 0.7143866 +0.8301795 0.7751122 0.7143866 +0.8475045 0.7751122 0.7143866 +0.8643761 0.7751122 0.7143866 +0.880825 0.7751122 0.7143866 +0.8968787 0.7751122 0.7143866 +0.9125621 0.7751122 0.7143866 +0.9278974 0.7751122 0.7143866 +0.9429048 0.7751122 0.7143866 +0.9576028 0.7751122 0.7143866 +0.9720079 0.7751122 0.7143866 +0.9861357 0.7751122 0.7143866 +1 0.7751122 0.7143866 +0 0.7940252 0.7143866 +0.1939468 0.7940252 0.7143866 +0.2773041 0.7940252 0.7143866 +0.3384659 0.7940252 0.7143866 +0.3885728 0.7940252 0.7143866 +0.4317928 0.7940252 0.7143866 +0.470214 0.7940252 0.7143866 +0.5050551 0.7940252 0.7143866 +0.5370987 0.7940252 0.7143866 +0.5668815 0.7940252 0.7143866 +0.5947903 0.7940252 0.7143866 +0.6211144 0.7940252 0.7143866 +0.6460766 0.7940252 0.7143866 +0.6698526 0.7940252 0.7143866 +0.6925839 0.7940252 0.7143866 +0.7143866 0.7940252 0.7143866 +0.7353569 0.7940252 0.7143866 +0.7555758 0.7940252 0.7143866 +0.7751122 0.7940252 0.7143866 +0.7940252 0.7940252 0.7143866 +0.8123661 0.7940252 0.7143866 +0.8301795 0.7940252 0.7143866 +0.8475045 0.7940252 0.7143866 +0.8643761 0.7940252 0.7143866 +0.880825 0.7940252 0.7143866 +0.8968787 0.7940252 0.7143866 +0.9125621 0.7940252 0.7143866 +0.9278974 0.7940252 0.7143866 +0.9429048 0.7940252 0.7143866 +0.9576028 0.7940252 0.7143866 +0.9720079 0.7940252 0.7143866 +0.9861357 0.7940252 0.7143866 +1 0.7940252 0.7143866 +0 0.8123661 0.7143866 +0.1939468 0.8123661 0.7143866 +0.2773041 0.8123661 0.7143866 +0.3384659 0.8123661 0.7143866 +0.3885728 0.8123661 0.7143866 +0.4317928 0.8123661 0.7143866 +0.470214 0.8123661 0.7143866 +0.5050551 0.8123661 0.7143866 +0.5370987 0.8123661 0.7143866 +0.5668815 0.8123661 0.7143866 +0.5947903 0.8123661 0.7143866 +0.6211144 0.8123661 0.7143866 +0.6460766 0.8123661 0.7143866 +0.6698526 0.8123661 0.7143866 +0.6925839 0.8123661 0.7143866 +0.7143866 0.8123661 0.7143866 +0.7353569 0.8123661 0.7143866 +0.7555758 0.8123661 0.7143866 +0.7751122 0.8123661 0.7143866 +0.7940252 0.8123661 0.7143866 +0.8123661 0.8123661 0.7143866 +0.8301795 0.8123661 0.7143866 +0.8475045 0.8123661 0.7143866 +0.8643761 0.8123661 0.7143866 +0.880825 0.8123661 0.7143866 +0.8968787 0.8123661 0.7143866 +0.9125621 0.8123661 0.7143866 +0.9278974 0.8123661 0.7143866 +0.9429048 0.8123661 0.7143866 +0.9576028 0.8123661 0.7143866 +0.9720079 0.8123661 0.7143866 +0.9861357 0.8123661 0.7143866 +1 0.8123661 0.7143866 +0 0.8301795 0.7143866 +0.1939468 0.8301795 0.7143866 +0.2773041 0.8301795 0.7143866 +0.3384659 0.8301795 0.7143866 +0.3885728 0.8301795 0.7143866 +0.4317928 0.8301795 0.7143866 +0.470214 0.8301795 0.7143866 +0.5050551 0.8301795 0.7143866 +0.5370987 0.8301795 0.7143866 +0.5668815 0.8301795 0.7143866 +0.5947903 0.8301795 0.7143866 +0.6211144 0.8301795 0.7143866 +0.6460766 0.8301795 0.7143866 +0.6698526 0.8301795 0.7143866 +0.6925839 0.8301795 0.7143866 +0.7143866 0.8301795 0.7143866 +0.7353569 0.8301795 0.7143866 +0.7555758 0.8301795 0.7143866 +0.7751122 0.8301795 0.7143866 +0.7940252 0.8301795 0.7143866 +0.8123661 0.8301795 0.7143866 +0.8301795 0.8301795 0.7143866 +0.8475045 0.8301795 0.7143866 +0.8643761 0.8301795 0.7143866 +0.880825 0.8301795 0.7143866 +0.8968787 0.8301795 0.7143866 +0.9125621 0.8301795 0.7143866 +0.9278974 0.8301795 0.7143866 +0.9429048 0.8301795 0.7143866 +0.9576028 0.8301795 0.7143866 +0.9720079 0.8301795 0.7143866 +0.9861357 0.8301795 0.7143866 +1 0.8301795 0.7143866 +0 0.8475045 0.7143866 +0.1939468 0.8475045 0.7143866 +0.2773041 0.8475045 0.7143866 +0.3384659 0.8475045 0.7143866 +0.3885728 0.8475045 0.7143866 +0.4317928 0.8475045 0.7143866 +0.470214 0.8475045 0.7143866 +0.5050551 0.8475045 0.7143866 +0.5370987 0.8475045 0.7143866 +0.5668815 0.8475045 0.7143866 +0.5947903 0.8475045 0.7143866 +0.6211144 0.8475045 0.7143866 +0.6460766 0.8475045 0.7143866 +0.6698526 0.8475045 0.7143866 +0.6925839 0.8475045 0.7143866 +0.7143866 0.8475045 0.7143866 +0.7353569 0.8475045 0.7143866 +0.7555758 0.8475045 0.7143866 +0.7751122 0.8475045 0.7143866 +0.7940252 0.8475045 0.7143866 +0.8123661 0.8475045 0.7143866 +0.8301795 0.8475045 0.7143866 +0.8475045 0.8475045 0.7143866 +0.8643761 0.8475045 0.7143866 +0.880825 0.8475045 0.7143866 +0.8968787 0.8475045 0.7143866 +0.9125621 0.8475045 0.7143866 +0.9278974 0.8475045 0.7143866 +0.9429048 0.8475045 0.7143866 +0.9576028 0.8475045 0.7143866 +0.9720079 0.8475045 0.7143866 +0.9861357 0.8475045 0.7143866 +1 0.8475045 0.7143866 +0 0.8643761 0.7143866 +0.1939468 0.8643761 0.7143866 +0.2773041 0.8643761 0.7143866 +0.3384659 0.8643761 0.7143866 +0.3885728 0.8643761 0.7143866 +0.4317928 0.8643761 0.7143866 +0.470214 0.8643761 0.7143866 +0.5050551 0.8643761 0.7143866 +0.5370987 0.8643761 0.7143866 +0.5668815 0.8643761 0.7143866 +0.5947903 0.8643761 0.7143866 +0.6211144 0.8643761 0.7143866 +0.6460766 0.8643761 0.7143866 +0.6698526 0.8643761 0.7143866 +0.6925839 0.8643761 0.7143866 +0.7143866 0.8643761 0.7143866 +0.7353569 0.8643761 0.7143866 +0.7555758 0.8643761 0.7143866 +0.7751122 0.8643761 0.7143866 +0.7940252 0.8643761 0.7143866 +0.8123661 0.8643761 0.7143866 +0.8301795 0.8643761 0.7143866 +0.8475045 0.8643761 0.7143866 +0.8643761 0.8643761 0.7143866 +0.880825 0.8643761 0.7143866 +0.8968787 0.8643761 0.7143866 +0.9125621 0.8643761 0.7143866 +0.9278974 0.8643761 0.7143866 +0.9429048 0.8643761 0.7143866 +0.9576028 0.8643761 0.7143866 +0.9720079 0.8643761 0.7143866 +0.9861357 0.8643761 0.7143866 +1 0.8643761 0.7143866 +0 0.880825 0.7143866 +0.1939468 0.880825 0.7143866 +0.2773041 0.880825 0.7143866 +0.3384659 0.880825 0.7143866 +0.3885728 0.880825 0.7143866 +0.4317928 0.880825 0.7143866 +0.470214 0.880825 0.7143866 +0.5050551 0.880825 0.7143866 +0.5370987 0.880825 0.7143866 +0.5668815 0.880825 0.7143866 +0.5947903 0.880825 0.7143866 +0.6211144 0.880825 0.7143866 +0.6460766 0.880825 0.7143866 +0.6698526 0.880825 0.7143866 +0.6925839 0.880825 0.7143866 +0.7143866 0.880825 0.7143866 +0.7353569 0.880825 0.7143866 +0.7555758 0.880825 0.7143866 +0.7751122 0.880825 0.7143866 +0.7940252 0.880825 0.7143866 +0.8123661 0.880825 0.7143866 +0.8301795 0.880825 0.7143866 +0.8475045 0.880825 0.7143866 +0.8643761 0.880825 0.7143866 +0.880825 0.880825 0.7143866 +0.8968787 0.880825 0.7143866 +0.9125621 0.880825 0.7143866 +0.9278974 0.880825 0.7143866 +0.9429048 0.880825 0.7143866 +0.9576028 0.880825 0.7143866 +0.9720079 0.880825 0.7143866 +0.9861357 0.880825 0.7143866 +1 0.880825 0.7143866 +0 0.8968787 0.7143866 +0.1939468 0.8968787 0.7143866 +0.2773041 0.8968787 0.7143866 +0.3384659 0.8968787 0.7143866 +0.3885728 0.8968787 0.7143866 +0.4317928 0.8968787 0.7143866 +0.470214 0.8968787 0.7143866 +0.5050551 0.8968787 0.7143866 +0.5370987 0.8968787 0.7143866 +0.5668815 0.8968787 0.7143866 +0.5947903 0.8968787 0.7143866 +0.6211144 0.8968787 0.7143866 +0.6460766 0.8968787 0.7143866 +0.6698526 0.8968787 0.7143866 +0.6925839 0.8968787 0.7143866 +0.7143866 0.8968787 0.7143866 +0.7353569 0.8968787 0.7143866 +0.7555758 0.8968787 0.7143866 +0.7751122 0.8968787 0.7143866 +0.7940252 0.8968787 0.7143866 +0.8123661 0.8968787 0.7143866 +0.8301795 0.8968787 0.7143866 +0.8475045 0.8968787 0.7143866 +0.8643761 0.8968787 0.7143866 +0.880825 0.8968787 0.7143866 +0.8968787 0.8968787 0.7143866 +0.9125621 0.8968787 0.7143866 +0.9278974 0.8968787 0.7143866 +0.9429048 0.8968787 0.7143866 +0.9576028 0.8968787 0.7143866 +0.9720079 0.8968787 0.7143866 +0.9861357 0.8968787 0.7143866 +1 0.8968787 0.7143866 +0 0.9125621 0.7143866 +0.1939468 0.9125621 0.7143866 +0.2773041 0.9125621 0.7143866 +0.3384659 0.9125621 0.7143866 +0.3885728 0.9125621 0.7143866 +0.4317928 0.9125621 0.7143866 +0.470214 0.9125621 0.7143866 +0.5050551 0.9125621 0.7143866 +0.5370987 0.9125621 0.7143866 +0.5668815 0.9125621 0.7143866 +0.5947903 0.9125621 0.7143866 +0.6211144 0.9125621 0.7143866 +0.6460766 0.9125621 0.7143866 +0.6698526 0.9125621 0.7143866 +0.6925839 0.9125621 0.7143866 +0.7143866 0.9125621 0.7143866 +0.7353569 0.9125621 0.7143866 +0.7555758 0.9125621 0.7143866 +0.7751122 0.9125621 0.7143866 +0.7940252 0.9125621 0.7143866 +0.8123661 0.9125621 0.7143866 +0.8301795 0.9125621 0.7143866 +0.8475045 0.9125621 0.7143866 +0.8643761 0.9125621 0.7143866 +0.880825 0.9125621 0.7143866 +0.8968787 0.9125621 0.7143866 +0.9125621 0.9125621 0.7143866 +0.9278974 0.9125621 0.7143866 +0.9429048 0.9125621 0.7143866 +0.9576028 0.9125621 0.7143866 +0.9720079 0.9125621 0.7143866 +0.9861357 0.9125621 0.7143866 +1 0.9125621 0.7143866 +0 0.9278974 0.7143866 +0.1939468 0.9278974 0.7143866 +0.2773041 0.9278974 0.7143866 +0.3384659 0.9278974 0.7143866 +0.3885728 0.9278974 0.7143866 +0.4317928 0.9278974 0.7143866 +0.470214 0.9278974 0.7143866 +0.5050551 0.9278974 0.7143866 +0.5370987 0.9278974 0.7143866 +0.5668815 0.9278974 0.7143866 +0.5947903 0.9278974 0.7143866 +0.6211144 0.9278974 0.7143866 +0.6460766 0.9278974 0.7143866 +0.6698526 0.9278974 0.7143866 +0.6925839 0.9278974 0.7143866 +0.7143866 0.9278974 0.7143866 +0.7353569 0.9278974 0.7143866 +0.7555758 0.9278974 0.7143866 +0.7751122 0.9278974 0.7143866 +0.7940252 0.9278974 0.7143866 +0.8123661 0.9278974 0.7143866 +0.8301795 0.9278974 0.7143866 +0.8475045 0.9278974 0.7143866 +0.8643761 0.9278974 0.7143866 +0.880825 0.9278974 0.7143866 +0.8968787 0.9278974 0.7143866 +0.9125621 0.9278974 0.7143866 +0.9278974 0.9278974 0.7143866 +0.9429048 0.9278974 0.7143866 +0.9576028 0.9278974 0.7143866 +0.9720079 0.9278974 0.7143866 +0.9861357 0.9278974 0.7143866 +1 0.9278974 0.7143866 +0 0.9429048 0.7143866 +0.1939468 0.9429048 0.7143866 +0.2773041 0.9429048 0.7143866 +0.3384659 0.9429048 0.7143866 +0.3885728 0.9429048 0.7143866 +0.4317928 0.9429048 0.7143866 +0.470214 0.9429048 0.7143866 +0.5050551 0.9429048 0.7143866 +0.5370987 0.9429048 0.7143866 +0.5668815 0.9429048 0.7143866 +0.5947903 0.9429048 0.7143866 +0.6211144 0.9429048 0.7143866 +0.6460766 0.9429048 0.7143866 +0.6698526 0.9429048 0.7143866 +0.6925839 0.9429048 0.7143866 +0.7143866 0.9429048 0.7143866 +0.7353569 0.9429048 0.7143866 +0.7555758 0.9429048 0.7143866 +0.7751122 0.9429048 0.7143866 +0.7940252 0.9429048 0.7143866 +0.8123661 0.9429048 0.7143866 +0.8301795 0.9429048 0.7143866 +0.8475045 0.9429048 0.7143866 +0.8643761 0.9429048 0.7143866 +0.880825 0.9429048 0.7143866 +0.8968787 0.9429048 0.7143866 +0.9125621 0.9429048 0.7143866 +0.9278974 0.9429048 0.7143866 +0.9429048 0.9429048 0.7143866 +0.9576028 0.9429048 0.7143866 +0.9720079 0.9429048 0.7143866 +0.9861357 0.9429048 0.7143866 +1 0.9429048 0.7143866 +0 0.9576028 0.7143866 +0.1939468 0.9576028 0.7143866 +0.2773041 0.9576028 0.7143866 +0.3384659 0.9576028 0.7143866 +0.3885728 0.9576028 0.7143866 +0.4317928 0.9576028 0.7143866 +0.470214 0.9576028 0.7143866 +0.5050551 0.9576028 0.7143866 +0.5370987 0.9576028 0.7143866 +0.5668815 0.9576028 0.7143866 +0.5947903 0.9576028 0.7143866 +0.6211144 0.9576028 0.7143866 +0.6460766 0.9576028 0.7143866 +0.6698526 0.9576028 0.7143866 +0.6925839 0.9576028 0.7143866 +0.7143866 0.9576028 0.7143866 +0.7353569 0.9576028 0.7143866 +0.7555758 0.9576028 0.7143866 +0.7751122 0.9576028 0.7143866 +0.7940252 0.9576028 0.7143866 +0.8123661 0.9576028 0.7143866 +0.8301795 0.9576028 0.7143866 +0.8475045 0.9576028 0.7143866 +0.8643761 0.9576028 0.7143866 +0.880825 0.9576028 0.7143866 +0.8968787 0.9576028 0.7143866 +0.9125621 0.9576028 0.7143866 +0.9278974 0.9576028 0.7143866 +0.9429048 0.9576028 0.7143866 +0.9576028 0.9576028 0.7143866 +0.9720079 0.9576028 0.7143866 +0.9861357 0.9576028 0.7143866 +1 0.9576028 0.7143866 +0 0.9720079 0.7143866 +0.1939468 0.9720079 0.7143866 +0.2773041 0.9720079 0.7143866 +0.3384659 0.9720079 0.7143866 +0.3885728 0.9720079 0.7143866 +0.4317928 0.9720079 0.7143866 +0.470214 0.9720079 0.7143866 +0.5050551 0.9720079 0.7143866 +0.5370987 0.9720079 0.7143866 +0.5668815 0.9720079 0.7143866 +0.5947903 0.9720079 0.7143866 +0.6211144 0.9720079 0.7143866 +0.6460766 0.9720079 0.7143866 +0.6698526 0.9720079 0.7143866 +0.6925839 0.9720079 0.7143866 +0.7143866 0.9720079 0.7143866 +0.7353569 0.9720079 0.7143866 +0.7555758 0.9720079 0.7143866 +0.7751122 0.9720079 0.7143866 +0.7940252 0.9720079 0.7143866 +0.8123661 0.9720079 0.7143866 +0.8301795 0.9720079 0.7143866 +0.8475045 0.9720079 0.7143866 +0.8643761 0.9720079 0.7143866 +0.880825 0.9720079 0.7143866 +0.8968787 0.9720079 0.7143866 +0.9125621 0.9720079 0.7143866 +0.9278974 0.9720079 0.7143866 +0.9429048 0.9720079 0.7143866 +0.9576028 0.9720079 0.7143866 +0.9720079 0.9720079 0.7143866 +0.9861357 0.9720079 0.7143866 +1 0.9720079 0.7143866 +0 0.9861357 0.7143866 +0.1939468 0.9861357 0.7143866 +0.2773041 0.9861357 0.7143866 +0.3384659 0.9861357 0.7143866 +0.3885728 0.9861357 0.7143866 +0.4317928 0.9861357 0.7143866 +0.470214 0.9861357 0.7143866 +0.5050551 0.9861357 0.7143866 +0.5370987 0.9861357 0.7143866 +0.5668815 0.9861357 0.7143866 +0.5947903 0.9861357 0.7143866 +0.6211144 0.9861357 0.7143866 +0.6460766 0.9861357 0.7143866 +0.6698526 0.9861357 0.7143866 +0.6925839 0.9861357 0.7143866 +0.7143866 0.9861357 0.7143866 +0.7353569 0.9861357 0.7143866 +0.7555758 0.9861357 0.7143866 +0.7751122 0.9861357 0.7143866 +0.7940252 0.9861357 0.7143866 +0.8123661 0.9861357 0.7143866 +0.8301795 0.9861357 0.7143866 +0.8475045 0.9861357 0.7143866 +0.8643761 0.9861357 0.7143866 +0.880825 0.9861357 0.7143866 +0.8968787 0.9861357 0.7143866 +0.9125621 0.9861357 0.7143866 +0.9278974 0.9861357 0.7143866 +0.9429048 0.9861357 0.7143866 +0.9576028 0.9861357 0.7143866 +0.9720079 0.9861357 0.7143866 +0.9861357 0.9861357 0.7143866 +1 0.9861357 0.7143866 +0 1 0.7143866 +0.1939468 1 0.7143866 +0.2773041 1 0.7143866 +0.3384659 1 0.7143866 +0.3885728 1 0.7143866 +0.4317928 1 0.7143866 +0.470214 1 0.7143866 +0.5050551 1 0.7143866 +0.5370987 1 0.7143866 +0.5668815 1 0.7143866 +0.5947903 1 0.7143866 +0.6211144 1 0.7143866 +0.6460766 1 0.7143866 +0.6698526 1 0.7143866 +0.6925839 1 0.7143866 +0.7143866 1 0.7143866 +0.7353569 1 0.7143866 +0.7555758 1 0.7143866 +0.7751122 1 0.7143866 +0.7940252 1 0.7143866 +0.8123661 1 0.7143866 +0.8301795 1 0.7143866 +0.8475045 1 0.7143866 +0.8643761 1 0.7143866 +0.880825 1 0.7143866 +0.8968787 1 0.7143866 +0.9125621 1 0.7143866 +0.9278974 1 0.7143866 +0.9429048 1 0.7143866 +0.9576028 1 0.7143866 +0.9720079 1 0.7143866 +0.9861357 1 0.7143866 +1 1 0.7143866 +0 0 0.7353569 +0.1939468 0 0.7353569 +0.2773041 0 0.7353569 +0.3384659 0 0.7353569 +0.3885728 0 0.7353569 +0.4317928 0 0.7353569 +0.470214 0 0.7353569 +0.5050551 0 0.7353569 +0.5370987 0 0.7353569 +0.5668815 0 0.7353569 +0.5947903 0 0.7353569 +0.6211144 0 0.7353569 +0.6460766 0 0.7353569 +0.6698526 0 0.7353569 +0.6925839 0 0.7353569 +0.7143866 0 0.7353569 +0.7353569 0 0.7353569 +0.7555758 0 0.7353569 +0.7751122 0 0.7353569 +0.7940252 0 0.7353569 +0.8123661 0 0.7353569 +0.8301795 0 0.7353569 +0.8475045 0 0.7353569 +0.8643761 0 0.7353569 +0.880825 0 0.7353569 +0.8968787 0 0.7353569 +0.9125621 0 0.7353569 +0.9278974 0 0.7353569 +0.9429048 0 0.7353569 +0.9576028 0 0.7353569 +0.9720079 0 0.7353569 +0.9861357 0 0.7353569 +1 0 0.7353569 +0 0.1939468 0.7353569 +0.1939468 0.1939468 0.7353569 +0.2773041 0.1939468 0.7353569 +0.3384659 0.1939468 0.7353569 +0.3885728 0.1939468 0.7353569 +0.4317928 0.1939468 0.7353569 +0.470214 0.1939468 0.7353569 +0.5050551 0.1939468 0.7353569 +0.5370987 0.1939468 0.7353569 +0.5668815 0.1939468 0.7353569 +0.5947903 0.1939468 0.7353569 +0.6211144 0.1939468 0.7353569 +0.6460766 0.1939468 0.7353569 +0.6698526 0.1939468 0.7353569 +0.6925839 0.1939468 0.7353569 +0.7143866 0.1939468 0.7353569 +0.7353569 0.1939468 0.7353569 +0.7555758 0.1939468 0.7353569 +0.7751122 0.1939468 0.7353569 +0.7940252 0.1939468 0.7353569 +0.8123661 0.1939468 0.7353569 +0.8301795 0.1939468 0.7353569 +0.8475045 0.1939468 0.7353569 +0.8643761 0.1939468 0.7353569 +0.880825 0.1939468 0.7353569 +0.8968787 0.1939468 0.7353569 +0.9125621 0.1939468 0.7353569 +0.9278974 0.1939468 0.7353569 +0.9429048 0.1939468 0.7353569 +0.9576028 0.1939468 0.7353569 +0.9720079 0.1939468 0.7353569 +0.9861357 0.1939468 0.7353569 +1 0.1939468 0.7353569 +0 0.2773041 0.7353569 +0.1939468 0.2773041 0.7353569 +0.2773041 0.2773041 0.7353569 +0.3384659 0.2773041 0.7353569 +0.3885728 0.2773041 0.7353569 +0.4317928 0.2773041 0.7353569 +0.470214 0.2773041 0.7353569 +0.5050551 0.2773041 0.7353569 +0.5370987 0.2773041 0.7353569 +0.5668815 0.2773041 0.7353569 +0.5947903 0.2773041 0.7353569 +0.6211144 0.2773041 0.7353569 +0.6460766 0.2773041 0.7353569 +0.6698526 0.2773041 0.7353569 +0.6925839 0.2773041 0.7353569 +0.7143866 0.2773041 0.7353569 +0.7353569 0.2773041 0.7353569 +0.7555758 0.2773041 0.7353569 +0.7751122 0.2773041 0.7353569 +0.7940252 0.2773041 0.7353569 +0.8123661 0.2773041 0.7353569 +0.8301795 0.2773041 0.7353569 +0.8475045 0.2773041 0.7353569 +0.8643761 0.2773041 0.7353569 +0.880825 0.2773041 0.7353569 +0.8968787 0.2773041 0.7353569 +0.9125621 0.2773041 0.7353569 +0.9278974 0.2773041 0.7353569 +0.9429048 0.2773041 0.7353569 +0.9576028 0.2773041 0.7353569 +0.9720079 0.2773041 0.7353569 +0.9861357 0.2773041 0.7353569 +1 0.2773041 0.7353569 +0 0.3384659 0.7353569 +0.1939468 0.3384659 0.7353569 +0.2773041 0.3384659 0.7353569 +0.3384659 0.3384659 0.7353569 +0.3885728 0.3384659 0.7353569 +0.4317928 0.3384659 0.7353569 +0.470214 0.3384659 0.7353569 +0.5050551 0.3384659 0.7353569 +0.5370987 0.3384659 0.7353569 +0.5668815 0.3384659 0.7353569 +0.5947903 0.3384659 0.7353569 +0.6211144 0.3384659 0.7353569 +0.6460766 0.3384659 0.7353569 +0.6698526 0.3384659 0.7353569 +0.6925839 0.3384659 0.7353569 +0.7143866 0.3384659 0.7353569 +0.7353569 0.3384659 0.7353569 +0.7555758 0.3384659 0.7353569 +0.7751122 0.3384659 0.7353569 +0.7940252 0.3384659 0.7353569 +0.8123661 0.3384659 0.7353569 +0.8301795 0.3384659 0.7353569 +0.8475045 0.3384659 0.7353569 +0.8643761 0.3384659 0.7353569 +0.880825 0.3384659 0.7353569 +0.8968787 0.3384659 0.7353569 +0.9125621 0.3384659 0.7353569 +0.9278974 0.3384659 0.7353569 +0.9429048 0.3384659 0.7353569 +0.9576028 0.3384659 0.7353569 +0.9720079 0.3384659 0.7353569 +0.9861357 0.3384659 0.7353569 +1 0.3384659 0.7353569 +0 0.3885728 0.7353569 +0.1939468 0.3885728 0.7353569 +0.2773041 0.3885728 0.7353569 +0.3384659 0.3885728 0.7353569 +0.3885728 0.3885728 0.7353569 +0.4317928 0.3885728 0.7353569 +0.470214 0.3885728 0.7353569 +0.5050551 0.3885728 0.7353569 +0.5370987 0.3885728 0.7353569 +0.5668815 0.3885728 0.7353569 +0.5947903 0.3885728 0.7353569 +0.6211144 0.3885728 0.7353569 +0.6460766 0.3885728 0.7353569 +0.6698526 0.3885728 0.7353569 +0.6925839 0.3885728 0.7353569 +0.7143866 0.3885728 0.7353569 +0.7353569 0.3885728 0.7353569 +0.7555758 0.3885728 0.7353569 +0.7751122 0.3885728 0.7353569 +0.7940252 0.3885728 0.7353569 +0.8123661 0.3885728 0.7353569 +0.8301795 0.3885728 0.7353569 +0.8475045 0.3885728 0.7353569 +0.8643761 0.3885728 0.7353569 +0.880825 0.3885728 0.7353569 +0.8968787 0.3885728 0.7353569 +0.9125621 0.3885728 0.7353569 +0.9278974 0.3885728 0.7353569 +0.9429048 0.3885728 0.7353569 +0.9576028 0.3885728 0.7353569 +0.9720079 0.3885728 0.7353569 +0.9861357 0.3885728 0.7353569 +1 0.3885728 0.7353569 +0 0.4317928 0.7353569 +0.1939468 0.4317928 0.7353569 +0.2773041 0.4317928 0.7353569 +0.3384659 0.4317928 0.7353569 +0.3885728 0.4317928 0.7353569 +0.4317928 0.4317928 0.7353569 +0.470214 0.4317928 0.7353569 +0.5050551 0.4317928 0.7353569 +0.5370987 0.4317928 0.7353569 +0.5668815 0.4317928 0.7353569 +0.5947903 0.4317928 0.7353569 +0.6211144 0.4317928 0.7353569 +0.6460766 0.4317928 0.7353569 +0.6698526 0.4317928 0.7353569 +0.6925839 0.4317928 0.7353569 +0.7143866 0.4317928 0.7353569 +0.7353569 0.4317928 0.7353569 +0.7555758 0.4317928 0.7353569 +0.7751122 0.4317928 0.7353569 +0.7940252 0.4317928 0.7353569 +0.8123661 0.4317928 0.7353569 +0.8301795 0.4317928 0.7353569 +0.8475045 0.4317928 0.7353569 +0.8643761 0.4317928 0.7353569 +0.880825 0.4317928 0.7353569 +0.8968787 0.4317928 0.7353569 +0.9125621 0.4317928 0.7353569 +0.9278974 0.4317928 0.7353569 +0.9429048 0.4317928 0.7353569 +0.9576028 0.4317928 0.7353569 +0.9720079 0.4317928 0.7353569 +0.9861357 0.4317928 0.7353569 +1 0.4317928 0.7353569 +0 0.470214 0.7353569 +0.1939468 0.470214 0.7353569 +0.2773041 0.470214 0.7353569 +0.3384659 0.470214 0.7353569 +0.3885728 0.470214 0.7353569 +0.4317928 0.470214 0.7353569 +0.470214 0.470214 0.7353569 +0.5050551 0.470214 0.7353569 +0.5370987 0.470214 0.7353569 +0.5668815 0.470214 0.7353569 +0.5947903 0.470214 0.7353569 +0.6211144 0.470214 0.7353569 +0.6460766 0.470214 0.7353569 +0.6698526 0.470214 0.7353569 +0.6925839 0.470214 0.7353569 +0.7143866 0.470214 0.7353569 +0.7353569 0.470214 0.7353569 +0.7555758 0.470214 0.7353569 +0.7751122 0.470214 0.7353569 +0.7940252 0.470214 0.7353569 +0.8123661 0.470214 0.7353569 +0.8301795 0.470214 0.7353569 +0.8475045 0.470214 0.7353569 +0.8643761 0.470214 0.7353569 +0.880825 0.470214 0.7353569 +0.8968787 0.470214 0.7353569 +0.9125621 0.470214 0.7353569 +0.9278974 0.470214 0.7353569 +0.9429048 0.470214 0.7353569 +0.9576028 0.470214 0.7353569 +0.9720079 0.470214 0.7353569 +0.9861357 0.470214 0.7353569 +1 0.470214 0.7353569 +0 0.5050551 0.7353569 +0.1939468 0.5050551 0.7353569 +0.2773041 0.5050551 0.7353569 +0.3384659 0.5050551 0.7353569 +0.3885728 0.5050551 0.7353569 +0.4317928 0.5050551 0.7353569 +0.470214 0.5050551 0.7353569 +0.5050551 0.5050551 0.7353569 +0.5370987 0.5050551 0.7353569 +0.5668815 0.5050551 0.7353569 +0.5947903 0.5050551 0.7353569 +0.6211144 0.5050551 0.7353569 +0.6460766 0.5050551 0.7353569 +0.6698526 0.5050551 0.7353569 +0.6925839 0.5050551 0.7353569 +0.7143866 0.5050551 0.7353569 +0.7353569 0.5050551 0.7353569 +0.7555758 0.5050551 0.7353569 +0.7751122 0.5050551 0.7353569 +0.7940252 0.5050551 0.7353569 +0.8123661 0.5050551 0.7353569 +0.8301795 0.5050551 0.7353569 +0.8475045 0.5050551 0.7353569 +0.8643761 0.5050551 0.7353569 +0.880825 0.5050551 0.7353569 +0.8968787 0.5050551 0.7353569 +0.9125621 0.5050551 0.7353569 +0.9278974 0.5050551 0.7353569 +0.9429048 0.5050551 0.7353569 +0.9576028 0.5050551 0.7353569 +0.9720079 0.5050551 0.7353569 +0.9861357 0.5050551 0.7353569 +1 0.5050551 0.7353569 +0 0.5370987 0.7353569 +0.1939468 0.5370987 0.7353569 +0.2773041 0.5370987 0.7353569 +0.3384659 0.5370987 0.7353569 +0.3885728 0.5370987 0.7353569 +0.4317928 0.5370987 0.7353569 +0.470214 0.5370987 0.7353569 +0.5050551 0.5370987 0.7353569 +0.5370987 0.5370987 0.7353569 +0.5668815 0.5370987 0.7353569 +0.5947903 0.5370987 0.7353569 +0.6211144 0.5370987 0.7353569 +0.6460766 0.5370987 0.7353569 +0.6698526 0.5370987 0.7353569 +0.6925839 0.5370987 0.7353569 +0.7143866 0.5370987 0.7353569 +0.7353569 0.5370987 0.7353569 +0.7555758 0.5370987 0.7353569 +0.7751122 0.5370987 0.7353569 +0.7940252 0.5370987 0.7353569 +0.8123661 0.5370987 0.7353569 +0.8301795 0.5370987 0.7353569 +0.8475045 0.5370987 0.7353569 +0.8643761 0.5370987 0.7353569 +0.880825 0.5370987 0.7353569 +0.8968787 0.5370987 0.7353569 +0.9125621 0.5370987 0.7353569 +0.9278974 0.5370987 0.7353569 +0.9429048 0.5370987 0.7353569 +0.9576028 0.5370987 0.7353569 +0.9720079 0.5370987 0.7353569 +0.9861357 0.5370987 0.7353569 +1 0.5370987 0.7353569 +0 0.5668815 0.7353569 +0.1939468 0.5668815 0.7353569 +0.2773041 0.5668815 0.7353569 +0.3384659 0.5668815 0.7353569 +0.3885728 0.5668815 0.7353569 +0.4317928 0.5668815 0.7353569 +0.470214 0.5668815 0.7353569 +0.5050551 0.5668815 0.7353569 +0.5370987 0.5668815 0.7353569 +0.5668815 0.5668815 0.7353569 +0.5947903 0.5668815 0.7353569 +0.6211144 0.5668815 0.7353569 +0.6460766 0.5668815 0.7353569 +0.6698526 0.5668815 0.7353569 +0.6925839 0.5668815 0.7353569 +0.7143866 0.5668815 0.7353569 +0.7353569 0.5668815 0.7353569 +0.7555758 0.5668815 0.7353569 +0.7751122 0.5668815 0.7353569 +0.7940252 0.5668815 0.7353569 +0.8123661 0.5668815 0.7353569 +0.8301795 0.5668815 0.7353569 +0.8475045 0.5668815 0.7353569 +0.8643761 0.5668815 0.7353569 +0.880825 0.5668815 0.7353569 +0.8968787 0.5668815 0.7353569 +0.9125621 0.5668815 0.7353569 +0.9278974 0.5668815 0.7353569 +0.9429048 0.5668815 0.7353569 +0.9576028 0.5668815 0.7353569 +0.9720079 0.5668815 0.7353569 +0.9861357 0.5668815 0.7353569 +1 0.5668815 0.7353569 +0 0.5947903 0.7353569 +0.1939468 0.5947903 0.7353569 +0.2773041 0.5947903 0.7353569 +0.3384659 0.5947903 0.7353569 +0.3885728 0.5947903 0.7353569 +0.4317928 0.5947903 0.7353569 +0.470214 0.5947903 0.7353569 +0.5050551 0.5947903 0.7353569 +0.5370987 0.5947903 0.7353569 +0.5668815 0.5947903 0.7353569 +0.5947903 0.5947903 0.7353569 +0.6211144 0.5947903 0.7353569 +0.6460766 0.5947903 0.7353569 +0.6698526 0.5947903 0.7353569 +0.6925839 0.5947903 0.7353569 +0.7143866 0.5947903 0.7353569 +0.7353569 0.5947903 0.7353569 +0.7555758 0.5947903 0.7353569 +0.7751122 0.5947903 0.7353569 +0.7940252 0.5947903 0.7353569 +0.8123661 0.5947903 0.7353569 +0.8301795 0.5947903 0.7353569 +0.8475045 0.5947903 0.7353569 +0.8643761 0.5947903 0.7353569 +0.880825 0.5947903 0.7353569 +0.8968787 0.5947903 0.7353569 +0.9125621 0.5947903 0.7353569 +0.9278974 0.5947903 0.7353569 +0.9429048 0.5947903 0.7353569 +0.9576028 0.5947903 0.7353569 +0.9720079 0.5947903 0.7353569 +0.9861357 0.5947903 0.7353569 +1 0.5947903 0.7353569 +0 0.6211144 0.7353569 +0.1939468 0.6211144 0.7353569 +0.2773041 0.6211144 0.7353569 +0.3384659 0.6211144 0.7353569 +0.3885728 0.6211144 0.7353569 +0.4317928 0.6211144 0.7353569 +0.470214 0.6211144 0.7353569 +0.5050551 0.6211144 0.7353569 +0.5370987 0.6211144 0.7353569 +0.5668815 0.6211144 0.7353569 +0.5947903 0.6211144 0.7353569 +0.6211144 0.6211144 0.7353569 +0.6460766 0.6211144 0.7353569 +0.6698526 0.6211144 0.7353569 +0.6925839 0.6211144 0.7353569 +0.7143866 0.6211144 0.7353569 +0.7353569 0.6211144 0.7353569 +0.7555758 0.6211144 0.7353569 +0.7751122 0.6211144 0.7353569 +0.7940252 0.6211144 0.7353569 +0.8123661 0.6211144 0.7353569 +0.8301795 0.6211144 0.7353569 +0.8475045 0.6211144 0.7353569 +0.8643761 0.6211144 0.7353569 +0.880825 0.6211144 0.7353569 +0.8968787 0.6211144 0.7353569 +0.9125621 0.6211144 0.7353569 +0.9278974 0.6211144 0.7353569 +0.9429048 0.6211144 0.7353569 +0.9576028 0.6211144 0.7353569 +0.9720079 0.6211144 0.7353569 +0.9861357 0.6211144 0.7353569 +1 0.6211144 0.7353569 +0 0.6460766 0.7353569 +0.1939468 0.6460766 0.7353569 +0.2773041 0.6460766 0.7353569 +0.3384659 0.6460766 0.7353569 +0.3885728 0.6460766 0.7353569 +0.4317928 0.6460766 0.7353569 +0.470214 0.6460766 0.7353569 +0.5050551 0.6460766 0.7353569 +0.5370987 0.6460766 0.7353569 +0.5668815 0.6460766 0.7353569 +0.5947903 0.6460766 0.7353569 +0.6211144 0.6460766 0.7353569 +0.6460766 0.6460766 0.7353569 +0.6698526 0.6460766 0.7353569 +0.6925839 0.6460766 0.7353569 +0.7143866 0.6460766 0.7353569 +0.7353569 0.6460766 0.7353569 +0.7555758 0.6460766 0.7353569 +0.7751122 0.6460766 0.7353569 +0.7940252 0.6460766 0.7353569 +0.8123661 0.6460766 0.7353569 +0.8301795 0.6460766 0.7353569 +0.8475045 0.6460766 0.7353569 +0.8643761 0.6460766 0.7353569 +0.880825 0.6460766 0.7353569 +0.8968787 0.6460766 0.7353569 +0.9125621 0.6460766 0.7353569 +0.9278974 0.6460766 0.7353569 +0.9429048 0.6460766 0.7353569 +0.9576028 0.6460766 0.7353569 +0.9720079 0.6460766 0.7353569 +0.9861357 0.6460766 0.7353569 +1 0.6460766 0.7353569 +0 0.6698526 0.7353569 +0.1939468 0.6698526 0.7353569 +0.2773041 0.6698526 0.7353569 +0.3384659 0.6698526 0.7353569 +0.3885728 0.6698526 0.7353569 +0.4317928 0.6698526 0.7353569 +0.470214 0.6698526 0.7353569 +0.5050551 0.6698526 0.7353569 +0.5370987 0.6698526 0.7353569 +0.5668815 0.6698526 0.7353569 +0.5947903 0.6698526 0.7353569 +0.6211144 0.6698526 0.7353569 +0.6460766 0.6698526 0.7353569 +0.6698526 0.6698526 0.7353569 +0.6925839 0.6698526 0.7353569 +0.7143866 0.6698526 0.7353569 +0.7353569 0.6698526 0.7353569 +0.7555758 0.6698526 0.7353569 +0.7751122 0.6698526 0.7353569 +0.7940252 0.6698526 0.7353569 +0.8123661 0.6698526 0.7353569 +0.8301795 0.6698526 0.7353569 +0.8475045 0.6698526 0.7353569 +0.8643761 0.6698526 0.7353569 +0.880825 0.6698526 0.7353569 +0.8968787 0.6698526 0.7353569 +0.9125621 0.6698526 0.7353569 +0.9278974 0.6698526 0.7353569 +0.9429048 0.6698526 0.7353569 +0.9576028 0.6698526 0.7353569 +0.9720079 0.6698526 0.7353569 +0.9861357 0.6698526 0.7353569 +1 0.6698526 0.7353569 +0 0.6925839 0.7353569 +0.1939468 0.6925839 0.7353569 +0.2773041 0.6925839 0.7353569 +0.3384659 0.6925839 0.7353569 +0.3885728 0.6925839 0.7353569 +0.4317928 0.6925839 0.7353569 +0.470214 0.6925839 0.7353569 +0.5050551 0.6925839 0.7353569 +0.5370987 0.6925839 0.7353569 +0.5668815 0.6925839 0.7353569 +0.5947903 0.6925839 0.7353569 +0.6211144 0.6925839 0.7353569 +0.6460766 0.6925839 0.7353569 +0.6698526 0.6925839 0.7353569 +0.6925839 0.6925839 0.7353569 +0.7143866 0.6925839 0.7353569 +0.7353569 0.6925839 0.7353569 +0.7555758 0.6925839 0.7353569 +0.7751122 0.6925839 0.7353569 +0.7940252 0.6925839 0.7353569 +0.8123661 0.6925839 0.7353569 +0.8301795 0.6925839 0.7353569 +0.8475045 0.6925839 0.7353569 +0.8643761 0.6925839 0.7353569 +0.880825 0.6925839 0.7353569 +0.8968787 0.6925839 0.7353569 +0.9125621 0.6925839 0.7353569 +0.9278974 0.6925839 0.7353569 +0.9429048 0.6925839 0.7353569 +0.9576028 0.6925839 0.7353569 +0.9720079 0.6925839 0.7353569 +0.9861357 0.6925839 0.7353569 +1 0.6925839 0.7353569 +0 0.7143866 0.7353569 +0.1939468 0.7143866 0.7353569 +0.2773041 0.7143866 0.7353569 +0.3384659 0.7143866 0.7353569 +0.3885728 0.7143866 0.7353569 +0.4317928 0.7143866 0.7353569 +0.470214 0.7143866 0.7353569 +0.5050551 0.7143866 0.7353569 +0.5370987 0.7143866 0.7353569 +0.5668815 0.7143866 0.7353569 +0.5947903 0.7143866 0.7353569 +0.6211144 0.7143866 0.7353569 +0.6460766 0.7143866 0.7353569 +0.6698526 0.7143866 0.7353569 +0.6925839 0.7143866 0.7353569 +0.7143866 0.7143866 0.7353569 +0.7353569 0.7143866 0.7353569 +0.7555758 0.7143866 0.7353569 +0.7751122 0.7143866 0.7353569 +0.7940252 0.7143866 0.7353569 +0.8123661 0.7143866 0.7353569 +0.8301795 0.7143866 0.7353569 +0.8475045 0.7143866 0.7353569 +0.8643761 0.7143866 0.7353569 +0.880825 0.7143866 0.7353569 +0.8968787 0.7143866 0.7353569 +0.9125621 0.7143866 0.7353569 +0.9278974 0.7143866 0.7353569 +0.9429048 0.7143866 0.7353569 +0.9576028 0.7143866 0.7353569 +0.9720079 0.7143866 0.7353569 +0.9861357 0.7143866 0.7353569 +1 0.7143866 0.7353569 +0 0.7353569 0.7353569 +0.1939468 0.7353569 0.7353569 +0.2773041 0.7353569 0.7353569 +0.3384659 0.7353569 0.7353569 +0.3885728 0.7353569 0.7353569 +0.4317928 0.7353569 0.7353569 +0.470214 0.7353569 0.7353569 +0.5050551 0.7353569 0.7353569 +0.5370987 0.7353569 0.7353569 +0.5668815 0.7353569 0.7353569 +0.5947903 0.7353569 0.7353569 +0.6211144 0.7353569 0.7353569 +0.6460766 0.7353569 0.7353569 +0.6698526 0.7353569 0.7353569 +0.6925839 0.7353569 0.7353569 +0.7143866 0.7353569 0.7353569 +0.7353569 0.7353569 0.7353569 +0.7555758 0.7353569 0.7353569 +0.7751122 0.7353569 0.7353569 +0.7940252 0.7353569 0.7353569 +0.8123661 0.7353569 0.7353569 +0.8301795 0.7353569 0.7353569 +0.8475045 0.7353569 0.7353569 +0.8643761 0.7353569 0.7353569 +0.880825 0.7353569 0.7353569 +0.8968787 0.7353569 0.7353569 +0.9125621 0.7353569 0.7353569 +0.9278974 0.7353569 0.7353569 +0.9429048 0.7353569 0.7353569 +0.9576028 0.7353569 0.7353569 +0.9720079 0.7353569 0.7353569 +0.9861357 0.7353569 0.7353569 +1 0.7353569 0.7353569 +0 0.7555758 0.7353569 +0.1939468 0.7555758 0.7353569 +0.2773041 0.7555758 0.7353569 +0.3384659 0.7555758 0.7353569 +0.3885728 0.7555758 0.7353569 +0.4317928 0.7555758 0.7353569 +0.470214 0.7555758 0.7353569 +0.5050551 0.7555758 0.7353569 +0.5370987 0.7555758 0.7353569 +0.5668815 0.7555758 0.7353569 +0.5947903 0.7555758 0.7353569 +0.6211144 0.7555758 0.7353569 +0.6460766 0.7555758 0.7353569 +0.6698526 0.7555758 0.7353569 +0.6925839 0.7555758 0.7353569 +0.7143866 0.7555758 0.7353569 +0.7353569 0.7555758 0.7353569 +0.7555758 0.7555758 0.7353569 +0.7751122 0.7555758 0.7353569 +0.7940252 0.7555758 0.7353569 +0.8123661 0.7555758 0.7353569 +0.8301795 0.7555758 0.7353569 +0.8475045 0.7555758 0.7353569 +0.8643761 0.7555758 0.7353569 +0.880825 0.7555758 0.7353569 +0.8968787 0.7555758 0.7353569 +0.9125621 0.7555758 0.7353569 +0.9278974 0.7555758 0.7353569 +0.9429048 0.7555758 0.7353569 +0.9576028 0.7555758 0.7353569 +0.9720079 0.7555758 0.7353569 +0.9861357 0.7555758 0.7353569 +1 0.7555758 0.7353569 +0 0.7751122 0.7353569 +0.1939468 0.7751122 0.7353569 +0.2773041 0.7751122 0.7353569 +0.3384659 0.7751122 0.7353569 +0.3885728 0.7751122 0.7353569 +0.4317928 0.7751122 0.7353569 +0.470214 0.7751122 0.7353569 +0.5050551 0.7751122 0.7353569 +0.5370987 0.7751122 0.7353569 +0.5668815 0.7751122 0.7353569 +0.5947903 0.7751122 0.7353569 +0.6211144 0.7751122 0.7353569 +0.6460766 0.7751122 0.7353569 +0.6698526 0.7751122 0.7353569 +0.6925839 0.7751122 0.7353569 +0.7143866 0.7751122 0.7353569 +0.7353569 0.7751122 0.7353569 +0.7555758 0.7751122 0.7353569 +0.7751122 0.7751122 0.7353569 +0.7940252 0.7751122 0.7353569 +0.8123661 0.7751122 0.7353569 +0.8301795 0.7751122 0.7353569 +0.8475045 0.7751122 0.7353569 +0.8643761 0.7751122 0.7353569 +0.880825 0.7751122 0.7353569 +0.8968787 0.7751122 0.7353569 +0.9125621 0.7751122 0.7353569 +0.9278974 0.7751122 0.7353569 +0.9429048 0.7751122 0.7353569 +0.9576028 0.7751122 0.7353569 +0.9720079 0.7751122 0.7353569 +0.9861357 0.7751122 0.7353569 +1 0.7751122 0.7353569 +0 0.7940252 0.7353569 +0.1939468 0.7940252 0.7353569 +0.2773041 0.7940252 0.7353569 +0.3384659 0.7940252 0.7353569 +0.3885728 0.7940252 0.7353569 +0.4317928 0.7940252 0.7353569 +0.470214 0.7940252 0.7353569 +0.5050551 0.7940252 0.7353569 +0.5370987 0.7940252 0.7353569 +0.5668815 0.7940252 0.7353569 +0.5947903 0.7940252 0.7353569 +0.6211144 0.7940252 0.7353569 +0.6460766 0.7940252 0.7353569 +0.6698526 0.7940252 0.7353569 +0.6925839 0.7940252 0.7353569 +0.7143866 0.7940252 0.7353569 +0.7353569 0.7940252 0.7353569 +0.7555758 0.7940252 0.7353569 +0.7751122 0.7940252 0.7353569 +0.7940252 0.7940252 0.7353569 +0.8123661 0.7940252 0.7353569 +0.8301795 0.7940252 0.7353569 +0.8475045 0.7940252 0.7353569 +0.8643761 0.7940252 0.7353569 +0.880825 0.7940252 0.7353569 +0.8968787 0.7940252 0.7353569 +0.9125621 0.7940252 0.7353569 +0.9278974 0.7940252 0.7353569 +0.9429048 0.7940252 0.7353569 +0.9576028 0.7940252 0.7353569 +0.9720079 0.7940252 0.7353569 +0.9861357 0.7940252 0.7353569 +1 0.7940252 0.7353569 +0 0.8123661 0.7353569 +0.1939468 0.8123661 0.7353569 +0.2773041 0.8123661 0.7353569 +0.3384659 0.8123661 0.7353569 +0.3885728 0.8123661 0.7353569 +0.4317928 0.8123661 0.7353569 +0.470214 0.8123661 0.7353569 +0.5050551 0.8123661 0.7353569 +0.5370987 0.8123661 0.7353569 +0.5668815 0.8123661 0.7353569 +0.5947903 0.8123661 0.7353569 +0.6211144 0.8123661 0.7353569 +0.6460766 0.8123661 0.7353569 +0.6698526 0.8123661 0.7353569 +0.6925839 0.8123661 0.7353569 +0.7143866 0.8123661 0.7353569 +0.7353569 0.8123661 0.7353569 +0.7555758 0.8123661 0.7353569 +0.7751122 0.8123661 0.7353569 +0.7940252 0.8123661 0.7353569 +0.8123661 0.8123661 0.7353569 +0.8301795 0.8123661 0.7353569 +0.8475045 0.8123661 0.7353569 +0.8643761 0.8123661 0.7353569 +0.880825 0.8123661 0.7353569 +0.8968787 0.8123661 0.7353569 +0.9125621 0.8123661 0.7353569 +0.9278974 0.8123661 0.7353569 +0.9429048 0.8123661 0.7353569 +0.9576028 0.8123661 0.7353569 +0.9720079 0.8123661 0.7353569 +0.9861357 0.8123661 0.7353569 +1 0.8123661 0.7353569 +0 0.8301795 0.7353569 +0.1939468 0.8301795 0.7353569 +0.2773041 0.8301795 0.7353569 +0.3384659 0.8301795 0.7353569 +0.3885728 0.8301795 0.7353569 +0.4317928 0.8301795 0.7353569 +0.470214 0.8301795 0.7353569 +0.5050551 0.8301795 0.7353569 +0.5370987 0.8301795 0.7353569 +0.5668815 0.8301795 0.7353569 +0.5947903 0.8301795 0.7353569 +0.6211144 0.8301795 0.7353569 +0.6460766 0.8301795 0.7353569 +0.6698526 0.8301795 0.7353569 +0.6925839 0.8301795 0.7353569 +0.7143866 0.8301795 0.7353569 +0.7353569 0.8301795 0.7353569 +0.7555758 0.8301795 0.7353569 +0.7751122 0.8301795 0.7353569 +0.7940252 0.8301795 0.7353569 +0.8123661 0.8301795 0.7353569 +0.8301795 0.8301795 0.7353569 +0.8475045 0.8301795 0.7353569 +0.8643761 0.8301795 0.7353569 +0.880825 0.8301795 0.7353569 +0.8968787 0.8301795 0.7353569 +0.9125621 0.8301795 0.7353569 +0.9278974 0.8301795 0.7353569 +0.9429048 0.8301795 0.7353569 +0.9576028 0.8301795 0.7353569 +0.9720079 0.8301795 0.7353569 +0.9861357 0.8301795 0.7353569 +1 0.8301795 0.7353569 +0 0.8475045 0.7353569 +0.1939468 0.8475045 0.7353569 +0.2773041 0.8475045 0.7353569 +0.3384659 0.8475045 0.7353569 +0.3885728 0.8475045 0.7353569 +0.4317928 0.8475045 0.7353569 +0.470214 0.8475045 0.7353569 +0.5050551 0.8475045 0.7353569 +0.5370987 0.8475045 0.7353569 +0.5668815 0.8475045 0.7353569 +0.5947903 0.8475045 0.7353569 +0.6211144 0.8475045 0.7353569 +0.6460766 0.8475045 0.7353569 +0.6698526 0.8475045 0.7353569 +0.6925839 0.8475045 0.7353569 +0.7143866 0.8475045 0.7353569 +0.7353569 0.8475045 0.7353569 +0.7555758 0.8475045 0.7353569 +0.7751122 0.8475045 0.7353569 +0.7940252 0.8475045 0.7353569 +0.8123661 0.8475045 0.7353569 +0.8301795 0.8475045 0.7353569 +0.8475045 0.8475045 0.7353569 +0.8643761 0.8475045 0.7353569 +0.880825 0.8475045 0.7353569 +0.8968787 0.8475045 0.7353569 +0.9125621 0.8475045 0.7353569 +0.9278974 0.8475045 0.7353569 +0.9429048 0.8475045 0.7353569 +0.9576028 0.8475045 0.7353569 +0.9720079 0.8475045 0.7353569 +0.9861357 0.8475045 0.7353569 +1 0.8475045 0.7353569 +0 0.8643761 0.7353569 +0.1939468 0.8643761 0.7353569 +0.2773041 0.8643761 0.7353569 +0.3384659 0.8643761 0.7353569 +0.3885728 0.8643761 0.7353569 +0.4317928 0.8643761 0.7353569 +0.470214 0.8643761 0.7353569 +0.5050551 0.8643761 0.7353569 +0.5370987 0.8643761 0.7353569 +0.5668815 0.8643761 0.7353569 +0.5947903 0.8643761 0.7353569 +0.6211144 0.8643761 0.7353569 +0.6460766 0.8643761 0.7353569 +0.6698526 0.8643761 0.7353569 +0.6925839 0.8643761 0.7353569 +0.7143866 0.8643761 0.7353569 +0.7353569 0.8643761 0.7353569 +0.7555758 0.8643761 0.7353569 +0.7751122 0.8643761 0.7353569 +0.7940252 0.8643761 0.7353569 +0.8123661 0.8643761 0.7353569 +0.8301795 0.8643761 0.7353569 +0.8475045 0.8643761 0.7353569 +0.8643761 0.8643761 0.7353569 +0.880825 0.8643761 0.7353569 +0.8968787 0.8643761 0.7353569 +0.9125621 0.8643761 0.7353569 +0.9278974 0.8643761 0.7353569 +0.9429048 0.8643761 0.7353569 +0.9576028 0.8643761 0.7353569 +0.9720079 0.8643761 0.7353569 +0.9861357 0.8643761 0.7353569 +1 0.8643761 0.7353569 +0 0.880825 0.7353569 +0.1939468 0.880825 0.7353569 +0.2773041 0.880825 0.7353569 +0.3384659 0.880825 0.7353569 +0.3885728 0.880825 0.7353569 +0.4317928 0.880825 0.7353569 +0.470214 0.880825 0.7353569 +0.5050551 0.880825 0.7353569 +0.5370987 0.880825 0.7353569 +0.5668815 0.880825 0.7353569 +0.5947903 0.880825 0.7353569 +0.6211144 0.880825 0.7353569 +0.6460766 0.880825 0.7353569 +0.6698526 0.880825 0.7353569 +0.6925839 0.880825 0.7353569 +0.7143866 0.880825 0.7353569 +0.7353569 0.880825 0.7353569 +0.7555758 0.880825 0.7353569 +0.7751122 0.880825 0.7353569 +0.7940252 0.880825 0.7353569 +0.8123661 0.880825 0.7353569 +0.8301795 0.880825 0.7353569 +0.8475045 0.880825 0.7353569 +0.8643761 0.880825 0.7353569 +0.880825 0.880825 0.7353569 +0.8968787 0.880825 0.7353569 +0.9125621 0.880825 0.7353569 +0.9278974 0.880825 0.7353569 +0.9429048 0.880825 0.7353569 +0.9576028 0.880825 0.7353569 +0.9720079 0.880825 0.7353569 +0.9861357 0.880825 0.7353569 +1 0.880825 0.7353569 +0 0.8968787 0.7353569 +0.1939468 0.8968787 0.7353569 +0.2773041 0.8968787 0.7353569 +0.3384659 0.8968787 0.7353569 +0.3885728 0.8968787 0.7353569 +0.4317928 0.8968787 0.7353569 +0.470214 0.8968787 0.7353569 +0.5050551 0.8968787 0.7353569 +0.5370987 0.8968787 0.7353569 +0.5668815 0.8968787 0.7353569 +0.5947903 0.8968787 0.7353569 +0.6211144 0.8968787 0.7353569 +0.6460766 0.8968787 0.7353569 +0.6698526 0.8968787 0.7353569 +0.6925839 0.8968787 0.7353569 +0.7143866 0.8968787 0.7353569 +0.7353569 0.8968787 0.7353569 +0.7555758 0.8968787 0.7353569 +0.7751122 0.8968787 0.7353569 +0.7940252 0.8968787 0.7353569 +0.8123661 0.8968787 0.7353569 +0.8301795 0.8968787 0.7353569 +0.8475045 0.8968787 0.7353569 +0.8643761 0.8968787 0.7353569 +0.880825 0.8968787 0.7353569 +0.8968787 0.8968787 0.7353569 +0.9125621 0.8968787 0.7353569 +0.9278974 0.8968787 0.7353569 +0.9429048 0.8968787 0.7353569 +0.9576028 0.8968787 0.7353569 +0.9720079 0.8968787 0.7353569 +0.9861357 0.8968787 0.7353569 +1 0.8968787 0.7353569 +0 0.9125621 0.7353569 +0.1939468 0.9125621 0.7353569 +0.2773041 0.9125621 0.7353569 +0.3384659 0.9125621 0.7353569 +0.3885728 0.9125621 0.7353569 +0.4317928 0.9125621 0.7353569 +0.470214 0.9125621 0.7353569 +0.5050551 0.9125621 0.7353569 +0.5370987 0.9125621 0.7353569 +0.5668815 0.9125621 0.7353569 +0.5947903 0.9125621 0.7353569 +0.6211144 0.9125621 0.7353569 +0.6460766 0.9125621 0.7353569 +0.6698526 0.9125621 0.7353569 +0.6925839 0.9125621 0.7353569 +0.7143866 0.9125621 0.7353569 +0.7353569 0.9125621 0.7353569 +0.7555758 0.9125621 0.7353569 +0.7751122 0.9125621 0.7353569 +0.7940252 0.9125621 0.7353569 +0.8123661 0.9125621 0.7353569 +0.8301795 0.9125621 0.7353569 +0.8475045 0.9125621 0.7353569 +0.8643761 0.9125621 0.7353569 +0.880825 0.9125621 0.7353569 +0.8968787 0.9125621 0.7353569 +0.9125621 0.9125621 0.7353569 +0.9278974 0.9125621 0.7353569 +0.9429048 0.9125621 0.7353569 +0.9576028 0.9125621 0.7353569 +0.9720079 0.9125621 0.7353569 +0.9861357 0.9125621 0.7353569 +1 0.9125621 0.7353569 +0 0.9278974 0.7353569 +0.1939468 0.9278974 0.7353569 +0.2773041 0.9278974 0.7353569 +0.3384659 0.9278974 0.7353569 +0.3885728 0.9278974 0.7353569 +0.4317928 0.9278974 0.7353569 +0.470214 0.9278974 0.7353569 +0.5050551 0.9278974 0.7353569 +0.5370987 0.9278974 0.7353569 +0.5668815 0.9278974 0.7353569 +0.5947903 0.9278974 0.7353569 +0.6211144 0.9278974 0.7353569 +0.6460766 0.9278974 0.7353569 +0.6698526 0.9278974 0.7353569 +0.6925839 0.9278974 0.7353569 +0.7143866 0.9278974 0.7353569 +0.7353569 0.9278974 0.7353569 +0.7555758 0.9278974 0.7353569 +0.7751122 0.9278974 0.7353569 +0.7940252 0.9278974 0.7353569 +0.8123661 0.9278974 0.7353569 +0.8301795 0.9278974 0.7353569 +0.8475045 0.9278974 0.7353569 +0.8643761 0.9278974 0.7353569 +0.880825 0.9278974 0.7353569 +0.8968787 0.9278974 0.7353569 +0.9125621 0.9278974 0.7353569 +0.9278974 0.9278974 0.7353569 +0.9429048 0.9278974 0.7353569 +0.9576028 0.9278974 0.7353569 +0.9720079 0.9278974 0.7353569 +0.9861357 0.9278974 0.7353569 +1 0.9278974 0.7353569 +0 0.9429048 0.7353569 +0.1939468 0.9429048 0.7353569 +0.2773041 0.9429048 0.7353569 +0.3384659 0.9429048 0.7353569 +0.3885728 0.9429048 0.7353569 +0.4317928 0.9429048 0.7353569 +0.470214 0.9429048 0.7353569 +0.5050551 0.9429048 0.7353569 +0.5370987 0.9429048 0.7353569 +0.5668815 0.9429048 0.7353569 +0.5947903 0.9429048 0.7353569 +0.6211144 0.9429048 0.7353569 +0.6460766 0.9429048 0.7353569 +0.6698526 0.9429048 0.7353569 +0.6925839 0.9429048 0.7353569 +0.7143866 0.9429048 0.7353569 +0.7353569 0.9429048 0.7353569 +0.7555758 0.9429048 0.7353569 +0.7751122 0.9429048 0.7353569 +0.7940252 0.9429048 0.7353569 +0.8123661 0.9429048 0.7353569 +0.8301795 0.9429048 0.7353569 +0.8475045 0.9429048 0.7353569 +0.8643761 0.9429048 0.7353569 +0.880825 0.9429048 0.7353569 +0.8968787 0.9429048 0.7353569 +0.9125621 0.9429048 0.7353569 +0.9278974 0.9429048 0.7353569 +0.9429048 0.9429048 0.7353569 +0.9576028 0.9429048 0.7353569 +0.9720079 0.9429048 0.7353569 +0.9861357 0.9429048 0.7353569 +1 0.9429048 0.7353569 +0 0.9576028 0.7353569 +0.1939468 0.9576028 0.7353569 +0.2773041 0.9576028 0.7353569 +0.3384659 0.9576028 0.7353569 +0.3885728 0.9576028 0.7353569 +0.4317928 0.9576028 0.7353569 +0.470214 0.9576028 0.7353569 +0.5050551 0.9576028 0.7353569 +0.5370987 0.9576028 0.7353569 +0.5668815 0.9576028 0.7353569 +0.5947903 0.9576028 0.7353569 +0.6211144 0.9576028 0.7353569 +0.6460766 0.9576028 0.7353569 +0.6698526 0.9576028 0.7353569 +0.6925839 0.9576028 0.7353569 +0.7143866 0.9576028 0.7353569 +0.7353569 0.9576028 0.7353569 +0.7555758 0.9576028 0.7353569 +0.7751122 0.9576028 0.7353569 +0.7940252 0.9576028 0.7353569 +0.8123661 0.9576028 0.7353569 +0.8301795 0.9576028 0.7353569 +0.8475045 0.9576028 0.7353569 +0.8643761 0.9576028 0.7353569 +0.880825 0.9576028 0.7353569 +0.8968787 0.9576028 0.7353569 +0.9125621 0.9576028 0.7353569 +0.9278974 0.9576028 0.7353569 +0.9429048 0.9576028 0.7353569 +0.9576028 0.9576028 0.7353569 +0.9720079 0.9576028 0.7353569 +0.9861357 0.9576028 0.7353569 +1 0.9576028 0.7353569 +0 0.9720079 0.7353569 +0.1939468 0.9720079 0.7353569 +0.2773041 0.9720079 0.7353569 +0.3384659 0.9720079 0.7353569 +0.3885728 0.9720079 0.7353569 +0.4317928 0.9720079 0.7353569 +0.470214 0.9720079 0.7353569 +0.5050551 0.9720079 0.7353569 +0.5370987 0.9720079 0.7353569 +0.5668815 0.9720079 0.7353569 +0.5947903 0.9720079 0.7353569 +0.6211144 0.9720079 0.7353569 +0.6460766 0.9720079 0.7353569 +0.6698526 0.9720079 0.7353569 +0.6925839 0.9720079 0.7353569 +0.7143866 0.9720079 0.7353569 +0.7353569 0.9720079 0.7353569 +0.7555758 0.9720079 0.7353569 +0.7751122 0.9720079 0.7353569 +0.7940252 0.9720079 0.7353569 +0.8123661 0.9720079 0.7353569 +0.8301795 0.9720079 0.7353569 +0.8475045 0.9720079 0.7353569 +0.8643761 0.9720079 0.7353569 +0.880825 0.9720079 0.7353569 +0.8968787 0.9720079 0.7353569 +0.9125621 0.9720079 0.7353569 +0.9278974 0.9720079 0.7353569 +0.9429048 0.9720079 0.7353569 +0.9576028 0.9720079 0.7353569 +0.9720079 0.9720079 0.7353569 +0.9861357 0.9720079 0.7353569 +1 0.9720079 0.7353569 +0 0.9861357 0.7353569 +0.1939468 0.9861357 0.7353569 +0.2773041 0.9861357 0.7353569 +0.3384659 0.9861357 0.7353569 +0.3885728 0.9861357 0.7353569 +0.4317928 0.9861357 0.7353569 +0.470214 0.9861357 0.7353569 +0.5050551 0.9861357 0.7353569 +0.5370987 0.9861357 0.7353569 +0.5668815 0.9861357 0.7353569 +0.5947903 0.9861357 0.7353569 +0.6211144 0.9861357 0.7353569 +0.6460766 0.9861357 0.7353569 +0.6698526 0.9861357 0.7353569 +0.6925839 0.9861357 0.7353569 +0.7143866 0.9861357 0.7353569 +0.7353569 0.9861357 0.7353569 +0.7555758 0.9861357 0.7353569 +0.7751122 0.9861357 0.7353569 +0.7940252 0.9861357 0.7353569 +0.8123661 0.9861357 0.7353569 +0.8301795 0.9861357 0.7353569 +0.8475045 0.9861357 0.7353569 +0.8643761 0.9861357 0.7353569 +0.880825 0.9861357 0.7353569 +0.8968787 0.9861357 0.7353569 +0.9125621 0.9861357 0.7353569 +0.9278974 0.9861357 0.7353569 +0.9429048 0.9861357 0.7353569 +0.9576028 0.9861357 0.7353569 +0.9720079 0.9861357 0.7353569 +0.9861357 0.9861357 0.7353569 +1 0.9861357 0.7353569 +0 1 0.7353569 +0.1939468 1 0.7353569 +0.2773041 1 0.7353569 +0.3384659 1 0.7353569 +0.3885728 1 0.7353569 +0.4317928 1 0.7353569 +0.470214 1 0.7353569 +0.5050551 1 0.7353569 +0.5370987 1 0.7353569 +0.5668815 1 0.7353569 +0.5947903 1 0.7353569 +0.6211144 1 0.7353569 +0.6460766 1 0.7353569 +0.6698526 1 0.7353569 +0.6925839 1 0.7353569 +0.7143866 1 0.7353569 +0.7353569 1 0.7353569 +0.7555758 1 0.7353569 +0.7751122 1 0.7353569 +0.7940252 1 0.7353569 +0.8123661 1 0.7353569 +0.8301795 1 0.7353569 +0.8475045 1 0.7353569 +0.8643761 1 0.7353569 +0.880825 1 0.7353569 +0.8968787 1 0.7353569 +0.9125621 1 0.7353569 +0.9278974 1 0.7353569 +0.9429048 1 0.7353569 +0.9576028 1 0.7353569 +0.9720079 1 0.7353569 +0.9861357 1 0.7353569 +1 1 0.7353569 +0 0 0.7555758 +0.1939468 0 0.7555758 +0.2773041 0 0.7555758 +0.3384659 0 0.7555758 +0.3885728 0 0.7555758 +0.4317928 0 0.7555758 +0.470214 0 0.7555758 +0.5050551 0 0.7555758 +0.5370987 0 0.7555758 +0.5668815 0 0.7555758 +0.5947903 0 0.7555758 +0.6211144 0 0.7555758 +0.6460766 0 0.7555758 +0.6698526 0 0.7555758 +0.6925839 0 0.7555758 +0.7143866 0 0.7555758 +0.7353569 0 0.7555758 +0.7555758 0 0.7555758 +0.7751122 0 0.7555758 +0.7940252 0 0.7555758 +0.8123661 0 0.7555758 +0.8301795 0 0.7555758 +0.8475045 0 0.7555758 +0.8643761 0 0.7555758 +0.880825 0 0.7555758 +0.8968787 0 0.7555758 +0.9125621 0 0.7555758 +0.9278974 0 0.7555758 +0.9429048 0 0.7555758 +0.9576028 0 0.7555758 +0.9720079 0 0.7555758 +0.9861357 0 0.7555758 +1 0 0.7555758 +0 0.1939468 0.7555758 +0.1939468 0.1939468 0.7555758 +0.2773041 0.1939468 0.7555758 +0.3384659 0.1939468 0.7555758 +0.3885728 0.1939468 0.7555758 +0.4317928 0.1939468 0.7555758 +0.470214 0.1939468 0.7555758 +0.5050551 0.1939468 0.7555758 +0.5370987 0.1939468 0.7555758 +0.5668815 0.1939468 0.7555758 +0.5947903 0.1939468 0.7555758 +0.6211144 0.1939468 0.7555758 +0.6460766 0.1939468 0.7555758 +0.6698526 0.1939468 0.7555758 +0.6925839 0.1939468 0.7555758 +0.7143866 0.1939468 0.7555758 +0.7353569 0.1939468 0.7555758 +0.7555758 0.1939468 0.7555758 +0.7751122 0.1939468 0.7555758 +0.7940252 0.1939468 0.7555758 +0.8123661 0.1939468 0.7555758 +0.8301795 0.1939468 0.7555758 +0.8475045 0.1939468 0.7555758 +0.8643761 0.1939468 0.7555758 +0.880825 0.1939468 0.7555758 +0.8968787 0.1939468 0.7555758 +0.9125621 0.1939468 0.7555758 +0.9278974 0.1939468 0.7555758 +0.9429048 0.1939468 0.7555758 +0.9576028 0.1939468 0.7555758 +0.9720079 0.1939468 0.7555758 +0.9861357 0.1939468 0.7555758 +1 0.1939468 0.7555758 +0 0.2773041 0.7555758 +0.1939468 0.2773041 0.7555758 +0.2773041 0.2773041 0.7555758 +0.3384659 0.2773041 0.7555758 +0.3885728 0.2773041 0.7555758 +0.4317928 0.2773041 0.7555758 +0.470214 0.2773041 0.7555758 +0.5050551 0.2773041 0.7555758 +0.5370987 0.2773041 0.7555758 +0.5668815 0.2773041 0.7555758 +0.5947903 0.2773041 0.7555758 +0.6211144 0.2773041 0.7555758 +0.6460766 0.2773041 0.7555758 +0.6698526 0.2773041 0.7555758 +0.6925839 0.2773041 0.7555758 +0.7143866 0.2773041 0.7555758 +0.7353569 0.2773041 0.7555758 +0.7555758 0.2773041 0.7555758 +0.7751122 0.2773041 0.7555758 +0.7940252 0.2773041 0.7555758 +0.8123661 0.2773041 0.7555758 +0.8301795 0.2773041 0.7555758 +0.8475045 0.2773041 0.7555758 +0.8643761 0.2773041 0.7555758 +0.880825 0.2773041 0.7555758 +0.8968787 0.2773041 0.7555758 +0.9125621 0.2773041 0.7555758 +0.9278974 0.2773041 0.7555758 +0.9429048 0.2773041 0.7555758 +0.9576028 0.2773041 0.7555758 +0.9720079 0.2773041 0.7555758 +0.9861357 0.2773041 0.7555758 +1 0.2773041 0.7555758 +0 0.3384659 0.7555758 +0.1939468 0.3384659 0.7555758 +0.2773041 0.3384659 0.7555758 +0.3384659 0.3384659 0.7555758 +0.3885728 0.3384659 0.7555758 +0.4317928 0.3384659 0.7555758 +0.470214 0.3384659 0.7555758 +0.5050551 0.3384659 0.7555758 +0.5370987 0.3384659 0.7555758 +0.5668815 0.3384659 0.7555758 +0.5947903 0.3384659 0.7555758 +0.6211144 0.3384659 0.7555758 +0.6460766 0.3384659 0.7555758 +0.6698526 0.3384659 0.7555758 +0.6925839 0.3384659 0.7555758 +0.7143866 0.3384659 0.7555758 +0.7353569 0.3384659 0.7555758 +0.7555758 0.3384659 0.7555758 +0.7751122 0.3384659 0.7555758 +0.7940252 0.3384659 0.7555758 +0.8123661 0.3384659 0.7555758 +0.8301795 0.3384659 0.7555758 +0.8475045 0.3384659 0.7555758 +0.8643761 0.3384659 0.7555758 +0.880825 0.3384659 0.7555758 +0.8968787 0.3384659 0.7555758 +0.9125621 0.3384659 0.7555758 +0.9278974 0.3384659 0.7555758 +0.9429048 0.3384659 0.7555758 +0.9576028 0.3384659 0.7555758 +0.9720079 0.3384659 0.7555758 +0.9861357 0.3384659 0.7555758 +1 0.3384659 0.7555758 +0 0.3885728 0.7555758 +0.1939468 0.3885728 0.7555758 +0.2773041 0.3885728 0.7555758 +0.3384659 0.3885728 0.7555758 +0.3885728 0.3885728 0.7555758 +0.4317928 0.3885728 0.7555758 +0.470214 0.3885728 0.7555758 +0.5050551 0.3885728 0.7555758 +0.5370987 0.3885728 0.7555758 +0.5668815 0.3885728 0.7555758 +0.5947903 0.3885728 0.7555758 +0.6211144 0.3885728 0.7555758 +0.6460766 0.3885728 0.7555758 +0.6698526 0.3885728 0.7555758 +0.6925839 0.3885728 0.7555758 +0.7143866 0.3885728 0.7555758 +0.7353569 0.3885728 0.7555758 +0.7555758 0.3885728 0.7555758 +0.7751122 0.3885728 0.7555758 +0.7940252 0.3885728 0.7555758 +0.8123661 0.3885728 0.7555758 +0.8301795 0.3885728 0.7555758 +0.8475045 0.3885728 0.7555758 +0.8643761 0.3885728 0.7555758 +0.880825 0.3885728 0.7555758 +0.8968787 0.3885728 0.7555758 +0.9125621 0.3885728 0.7555758 +0.9278974 0.3885728 0.7555758 +0.9429048 0.3885728 0.7555758 +0.9576028 0.3885728 0.7555758 +0.9720079 0.3885728 0.7555758 +0.9861357 0.3885728 0.7555758 +1 0.3885728 0.7555758 +0 0.4317928 0.7555758 +0.1939468 0.4317928 0.7555758 +0.2773041 0.4317928 0.7555758 +0.3384659 0.4317928 0.7555758 +0.3885728 0.4317928 0.7555758 +0.4317928 0.4317928 0.7555758 +0.470214 0.4317928 0.7555758 +0.5050551 0.4317928 0.7555758 +0.5370987 0.4317928 0.7555758 +0.5668815 0.4317928 0.7555758 +0.5947903 0.4317928 0.7555758 +0.6211144 0.4317928 0.7555758 +0.6460766 0.4317928 0.7555758 +0.6698526 0.4317928 0.7555758 +0.6925839 0.4317928 0.7555758 +0.7143866 0.4317928 0.7555758 +0.7353569 0.4317928 0.7555758 +0.7555758 0.4317928 0.7555758 +0.7751122 0.4317928 0.7555758 +0.7940252 0.4317928 0.7555758 +0.8123661 0.4317928 0.7555758 +0.8301795 0.4317928 0.7555758 +0.8475045 0.4317928 0.7555758 +0.8643761 0.4317928 0.7555758 +0.880825 0.4317928 0.7555758 +0.8968787 0.4317928 0.7555758 +0.9125621 0.4317928 0.7555758 +0.9278974 0.4317928 0.7555758 +0.9429048 0.4317928 0.7555758 +0.9576028 0.4317928 0.7555758 +0.9720079 0.4317928 0.7555758 +0.9861357 0.4317928 0.7555758 +1 0.4317928 0.7555758 +0 0.470214 0.7555758 +0.1939468 0.470214 0.7555758 +0.2773041 0.470214 0.7555758 +0.3384659 0.470214 0.7555758 +0.3885728 0.470214 0.7555758 +0.4317928 0.470214 0.7555758 +0.470214 0.470214 0.7555758 +0.5050551 0.470214 0.7555758 +0.5370987 0.470214 0.7555758 +0.5668815 0.470214 0.7555758 +0.5947903 0.470214 0.7555758 +0.6211144 0.470214 0.7555758 +0.6460766 0.470214 0.7555758 +0.6698526 0.470214 0.7555758 +0.6925839 0.470214 0.7555758 +0.7143866 0.470214 0.7555758 +0.7353569 0.470214 0.7555758 +0.7555758 0.470214 0.7555758 +0.7751122 0.470214 0.7555758 +0.7940252 0.470214 0.7555758 +0.8123661 0.470214 0.7555758 +0.8301795 0.470214 0.7555758 +0.8475045 0.470214 0.7555758 +0.8643761 0.470214 0.7555758 +0.880825 0.470214 0.7555758 +0.8968787 0.470214 0.7555758 +0.9125621 0.470214 0.7555758 +0.9278974 0.470214 0.7555758 +0.9429048 0.470214 0.7555758 +0.9576028 0.470214 0.7555758 +0.9720079 0.470214 0.7555758 +0.9861357 0.470214 0.7555758 +1 0.470214 0.7555758 +0 0.5050551 0.7555758 +0.1939468 0.5050551 0.7555758 +0.2773041 0.5050551 0.7555758 +0.3384659 0.5050551 0.7555758 +0.3885728 0.5050551 0.7555758 +0.4317928 0.5050551 0.7555758 +0.470214 0.5050551 0.7555758 +0.5050551 0.5050551 0.7555758 +0.5370987 0.5050551 0.7555758 +0.5668815 0.5050551 0.7555758 +0.5947903 0.5050551 0.7555758 +0.6211144 0.5050551 0.7555758 +0.6460766 0.5050551 0.7555758 +0.6698526 0.5050551 0.7555758 +0.6925839 0.5050551 0.7555758 +0.7143866 0.5050551 0.7555758 +0.7353569 0.5050551 0.7555758 +0.7555758 0.5050551 0.7555758 +0.7751122 0.5050551 0.7555758 +0.7940252 0.5050551 0.7555758 +0.8123661 0.5050551 0.7555758 +0.8301795 0.5050551 0.7555758 +0.8475045 0.5050551 0.7555758 +0.8643761 0.5050551 0.7555758 +0.880825 0.5050551 0.7555758 +0.8968787 0.5050551 0.7555758 +0.9125621 0.5050551 0.7555758 +0.9278974 0.5050551 0.7555758 +0.9429048 0.5050551 0.7555758 +0.9576028 0.5050551 0.7555758 +0.9720079 0.5050551 0.7555758 +0.9861357 0.5050551 0.7555758 +1 0.5050551 0.7555758 +0 0.5370987 0.7555758 +0.1939468 0.5370987 0.7555758 +0.2773041 0.5370987 0.7555758 +0.3384659 0.5370987 0.7555758 +0.3885728 0.5370987 0.7555758 +0.4317928 0.5370987 0.7555758 +0.470214 0.5370987 0.7555758 +0.5050551 0.5370987 0.7555758 +0.5370987 0.5370987 0.7555758 +0.5668815 0.5370987 0.7555758 +0.5947903 0.5370987 0.7555758 +0.6211144 0.5370987 0.7555758 +0.6460766 0.5370987 0.7555758 +0.6698526 0.5370987 0.7555758 +0.6925839 0.5370987 0.7555758 +0.7143866 0.5370987 0.7555758 +0.7353569 0.5370987 0.7555758 +0.7555758 0.5370987 0.7555758 +0.7751122 0.5370987 0.7555758 +0.7940252 0.5370987 0.7555758 +0.8123661 0.5370987 0.7555758 +0.8301795 0.5370987 0.7555758 +0.8475045 0.5370987 0.7555758 +0.8643761 0.5370987 0.7555758 +0.880825 0.5370987 0.7555758 +0.8968787 0.5370987 0.7555758 +0.9125621 0.5370987 0.7555758 +0.9278974 0.5370987 0.7555758 +0.9429048 0.5370987 0.7555758 +0.9576028 0.5370987 0.7555758 +0.9720079 0.5370987 0.7555758 +0.9861357 0.5370987 0.7555758 +1 0.5370987 0.7555758 +0 0.5668815 0.7555758 +0.1939468 0.5668815 0.7555758 +0.2773041 0.5668815 0.7555758 +0.3384659 0.5668815 0.7555758 +0.3885728 0.5668815 0.7555758 +0.4317928 0.5668815 0.7555758 +0.470214 0.5668815 0.7555758 +0.5050551 0.5668815 0.7555758 +0.5370987 0.5668815 0.7555758 +0.5668815 0.5668815 0.7555758 +0.5947903 0.5668815 0.7555758 +0.6211144 0.5668815 0.7555758 +0.6460766 0.5668815 0.7555758 +0.6698526 0.5668815 0.7555758 +0.6925839 0.5668815 0.7555758 +0.7143866 0.5668815 0.7555758 +0.7353569 0.5668815 0.7555758 +0.7555758 0.5668815 0.7555758 +0.7751122 0.5668815 0.7555758 +0.7940252 0.5668815 0.7555758 +0.8123661 0.5668815 0.7555758 +0.8301795 0.5668815 0.7555758 +0.8475045 0.5668815 0.7555758 +0.8643761 0.5668815 0.7555758 +0.880825 0.5668815 0.7555758 +0.8968787 0.5668815 0.7555758 +0.9125621 0.5668815 0.7555758 +0.9278974 0.5668815 0.7555758 +0.9429048 0.5668815 0.7555758 +0.9576028 0.5668815 0.7555758 +0.9720079 0.5668815 0.7555758 +0.9861357 0.5668815 0.7555758 +1 0.5668815 0.7555758 +0 0.5947903 0.7555758 +0.1939468 0.5947903 0.7555758 +0.2773041 0.5947903 0.7555758 +0.3384659 0.5947903 0.7555758 +0.3885728 0.5947903 0.7555758 +0.4317928 0.5947903 0.7555758 +0.470214 0.5947903 0.7555758 +0.5050551 0.5947903 0.7555758 +0.5370987 0.5947903 0.7555758 +0.5668815 0.5947903 0.7555758 +0.5947903 0.5947903 0.7555758 +0.6211144 0.5947903 0.7555758 +0.6460766 0.5947903 0.7555758 +0.6698526 0.5947903 0.7555758 +0.6925839 0.5947903 0.7555758 +0.7143866 0.5947903 0.7555758 +0.7353569 0.5947903 0.7555758 +0.7555758 0.5947903 0.7555758 +0.7751122 0.5947903 0.7555758 +0.7940252 0.5947903 0.7555758 +0.8123661 0.5947903 0.7555758 +0.8301795 0.5947903 0.7555758 +0.8475045 0.5947903 0.7555758 +0.8643761 0.5947903 0.7555758 +0.880825 0.5947903 0.7555758 +0.8968787 0.5947903 0.7555758 +0.9125621 0.5947903 0.7555758 +0.9278974 0.5947903 0.7555758 +0.9429048 0.5947903 0.7555758 +0.9576028 0.5947903 0.7555758 +0.9720079 0.5947903 0.7555758 +0.9861357 0.5947903 0.7555758 +1 0.5947903 0.7555758 +0 0.6211144 0.7555758 +0.1939468 0.6211144 0.7555758 +0.2773041 0.6211144 0.7555758 +0.3384659 0.6211144 0.7555758 +0.3885728 0.6211144 0.7555758 +0.4317928 0.6211144 0.7555758 +0.470214 0.6211144 0.7555758 +0.5050551 0.6211144 0.7555758 +0.5370987 0.6211144 0.7555758 +0.5668815 0.6211144 0.7555758 +0.5947903 0.6211144 0.7555758 +0.6211144 0.6211144 0.7555758 +0.6460766 0.6211144 0.7555758 +0.6698526 0.6211144 0.7555758 +0.6925839 0.6211144 0.7555758 +0.7143866 0.6211144 0.7555758 +0.7353569 0.6211144 0.7555758 +0.7555758 0.6211144 0.7555758 +0.7751122 0.6211144 0.7555758 +0.7940252 0.6211144 0.7555758 +0.8123661 0.6211144 0.7555758 +0.8301795 0.6211144 0.7555758 +0.8475045 0.6211144 0.7555758 +0.8643761 0.6211144 0.7555758 +0.880825 0.6211144 0.7555758 +0.8968787 0.6211144 0.7555758 +0.9125621 0.6211144 0.7555758 +0.9278974 0.6211144 0.7555758 +0.9429048 0.6211144 0.7555758 +0.9576028 0.6211144 0.7555758 +0.9720079 0.6211144 0.7555758 +0.9861357 0.6211144 0.7555758 +1 0.6211144 0.7555758 +0 0.6460766 0.7555758 +0.1939468 0.6460766 0.7555758 +0.2773041 0.6460766 0.7555758 +0.3384659 0.6460766 0.7555758 +0.3885728 0.6460766 0.7555758 +0.4317928 0.6460766 0.7555758 +0.470214 0.6460766 0.7555758 +0.5050551 0.6460766 0.7555758 +0.5370987 0.6460766 0.7555758 +0.5668815 0.6460766 0.7555758 +0.5947903 0.6460766 0.7555758 +0.6211144 0.6460766 0.7555758 +0.6460766 0.6460766 0.7555758 +0.6698526 0.6460766 0.7555758 +0.6925839 0.6460766 0.7555758 +0.7143866 0.6460766 0.7555758 +0.7353569 0.6460766 0.7555758 +0.7555758 0.6460766 0.7555758 +0.7751122 0.6460766 0.7555758 +0.7940252 0.6460766 0.7555758 +0.8123661 0.6460766 0.7555758 +0.8301795 0.6460766 0.7555758 +0.8475045 0.6460766 0.7555758 +0.8643761 0.6460766 0.7555758 +0.880825 0.6460766 0.7555758 +0.8968787 0.6460766 0.7555758 +0.9125621 0.6460766 0.7555758 +0.9278974 0.6460766 0.7555758 +0.9429048 0.6460766 0.7555758 +0.9576028 0.6460766 0.7555758 +0.9720079 0.6460766 0.7555758 +0.9861357 0.6460766 0.7555758 +1 0.6460766 0.7555758 +0 0.6698526 0.7555758 +0.1939468 0.6698526 0.7555758 +0.2773041 0.6698526 0.7555758 +0.3384659 0.6698526 0.7555758 +0.3885728 0.6698526 0.7555758 +0.4317928 0.6698526 0.7555758 +0.470214 0.6698526 0.7555758 +0.5050551 0.6698526 0.7555758 +0.5370987 0.6698526 0.7555758 +0.5668815 0.6698526 0.7555758 +0.5947903 0.6698526 0.7555758 +0.6211144 0.6698526 0.7555758 +0.6460766 0.6698526 0.7555758 +0.6698526 0.6698526 0.7555758 +0.6925839 0.6698526 0.7555758 +0.7143866 0.6698526 0.7555758 +0.7353569 0.6698526 0.7555758 +0.7555758 0.6698526 0.7555758 +0.7751122 0.6698526 0.7555758 +0.7940252 0.6698526 0.7555758 +0.8123661 0.6698526 0.7555758 +0.8301795 0.6698526 0.7555758 +0.8475045 0.6698526 0.7555758 +0.8643761 0.6698526 0.7555758 +0.880825 0.6698526 0.7555758 +0.8968787 0.6698526 0.7555758 +0.9125621 0.6698526 0.7555758 +0.9278974 0.6698526 0.7555758 +0.9429048 0.6698526 0.7555758 +0.9576028 0.6698526 0.7555758 +0.9720079 0.6698526 0.7555758 +0.9861357 0.6698526 0.7555758 +1 0.6698526 0.7555758 +0 0.6925839 0.7555758 +0.1939468 0.6925839 0.7555758 +0.2773041 0.6925839 0.7555758 +0.3384659 0.6925839 0.7555758 +0.3885728 0.6925839 0.7555758 +0.4317928 0.6925839 0.7555758 +0.470214 0.6925839 0.7555758 +0.5050551 0.6925839 0.7555758 +0.5370987 0.6925839 0.7555758 +0.5668815 0.6925839 0.7555758 +0.5947903 0.6925839 0.7555758 +0.6211144 0.6925839 0.7555758 +0.6460766 0.6925839 0.7555758 +0.6698526 0.6925839 0.7555758 +0.6925839 0.6925839 0.7555758 +0.7143866 0.6925839 0.7555758 +0.7353569 0.6925839 0.7555758 +0.7555758 0.6925839 0.7555758 +0.7751122 0.6925839 0.7555758 +0.7940252 0.6925839 0.7555758 +0.8123661 0.6925839 0.7555758 +0.8301795 0.6925839 0.7555758 +0.8475045 0.6925839 0.7555758 +0.8643761 0.6925839 0.7555758 +0.880825 0.6925839 0.7555758 +0.8968787 0.6925839 0.7555758 +0.9125621 0.6925839 0.7555758 +0.9278974 0.6925839 0.7555758 +0.9429048 0.6925839 0.7555758 +0.9576028 0.6925839 0.7555758 +0.9720079 0.6925839 0.7555758 +0.9861357 0.6925839 0.7555758 +1 0.6925839 0.7555758 +0 0.7143866 0.7555758 +0.1939468 0.7143866 0.7555758 +0.2773041 0.7143866 0.7555758 +0.3384659 0.7143866 0.7555758 +0.3885728 0.7143866 0.7555758 +0.4317928 0.7143866 0.7555758 +0.470214 0.7143866 0.7555758 +0.5050551 0.7143866 0.7555758 +0.5370987 0.7143866 0.7555758 +0.5668815 0.7143866 0.7555758 +0.5947903 0.7143866 0.7555758 +0.6211144 0.7143866 0.7555758 +0.6460766 0.7143866 0.7555758 +0.6698526 0.7143866 0.7555758 +0.6925839 0.7143866 0.7555758 +0.7143866 0.7143866 0.7555758 +0.7353569 0.7143866 0.7555758 +0.7555758 0.7143866 0.7555758 +0.7751122 0.7143866 0.7555758 +0.7940252 0.7143866 0.7555758 +0.8123661 0.7143866 0.7555758 +0.8301795 0.7143866 0.7555758 +0.8475045 0.7143866 0.7555758 +0.8643761 0.7143866 0.7555758 +0.880825 0.7143866 0.7555758 +0.8968787 0.7143866 0.7555758 +0.9125621 0.7143866 0.7555758 +0.9278974 0.7143866 0.7555758 +0.9429048 0.7143866 0.7555758 +0.9576028 0.7143866 0.7555758 +0.9720079 0.7143866 0.7555758 +0.9861357 0.7143866 0.7555758 +1 0.7143866 0.7555758 +0 0.7353569 0.7555758 +0.1939468 0.7353569 0.7555758 +0.2773041 0.7353569 0.7555758 +0.3384659 0.7353569 0.7555758 +0.3885728 0.7353569 0.7555758 +0.4317928 0.7353569 0.7555758 +0.470214 0.7353569 0.7555758 +0.5050551 0.7353569 0.7555758 +0.5370987 0.7353569 0.7555758 +0.5668815 0.7353569 0.7555758 +0.5947903 0.7353569 0.7555758 +0.6211144 0.7353569 0.7555758 +0.6460766 0.7353569 0.7555758 +0.6698526 0.7353569 0.7555758 +0.6925839 0.7353569 0.7555758 +0.7143866 0.7353569 0.7555758 +0.7353569 0.7353569 0.7555758 +0.7555758 0.7353569 0.7555758 +0.7751122 0.7353569 0.7555758 +0.7940252 0.7353569 0.7555758 +0.8123661 0.7353569 0.7555758 +0.8301795 0.7353569 0.7555758 +0.8475045 0.7353569 0.7555758 +0.8643761 0.7353569 0.7555758 +0.880825 0.7353569 0.7555758 +0.8968787 0.7353569 0.7555758 +0.9125621 0.7353569 0.7555758 +0.9278974 0.7353569 0.7555758 +0.9429048 0.7353569 0.7555758 +0.9576028 0.7353569 0.7555758 +0.9720079 0.7353569 0.7555758 +0.9861357 0.7353569 0.7555758 +1 0.7353569 0.7555758 +0 0.7555758 0.7555758 +0.1939468 0.7555758 0.7555758 +0.2773041 0.7555758 0.7555758 +0.3384659 0.7555758 0.7555758 +0.3885728 0.7555758 0.7555758 +0.4317928 0.7555758 0.7555758 +0.470214 0.7555758 0.7555758 +0.5050551 0.7555758 0.7555758 +0.5370987 0.7555758 0.7555758 +0.5668815 0.7555758 0.7555758 +0.5947903 0.7555758 0.7555758 +0.6211144 0.7555758 0.7555758 +0.6460766 0.7555758 0.7555758 +0.6698526 0.7555758 0.7555758 +0.6925839 0.7555758 0.7555758 +0.7143866 0.7555758 0.7555758 +0.7353569 0.7555758 0.7555758 +0.7555758 0.7555758 0.7555758 +0.7751122 0.7555758 0.7555758 +0.7940252 0.7555758 0.7555758 +0.8123661 0.7555758 0.7555758 +0.8301795 0.7555758 0.7555758 +0.8475045 0.7555758 0.7555758 +0.8643761 0.7555758 0.7555758 +0.880825 0.7555758 0.7555758 +0.8968787 0.7555758 0.7555758 +0.9125621 0.7555758 0.7555758 +0.9278974 0.7555758 0.7555758 +0.9429048 0.7555758 0.7555758 +0.9576028 0.7555758 0.7555758 +0.9720079 0.7555758 0.7555758 +0.9861357 0.7555758 0.7555758 +1 0.7555758 0.7555758 +0 0.7751122 0.7555758 +0.1939468 0.7751122 0.7555758 +0.2773041 0.7751122 0.7555758 +0.3384659 0.7751122 0.7555758 +0.3885728 0.7751122 0.7555758 +0.4317928 0.7751122 0.7555758 +0.470214 0.7751122 0.7555758 +0.5050551 0.7751122 0.7555758 +0.5370987 0.7751122 0.7555758 +0.5668815 0.7751122 0.7555758 +0.5947903 0.7751122 0.7555758 +0.6211144 0.7751122 0.7555758 +0.6460766 0.7751122 0.7555758 +0.6698526 0.7751122 0.7555758 +0.6925839 0.7751122 0.7555758 +0.7143866 0.7751122 0.7555758 +0.7353569 0.7751122 0.7555758 +0.7555758 0.7751122 0.7555758 +0.7751122 0.7751122 0.7555758 +0.7940252 0.7751122 0.7555758 +0.8123661 0.7751122 0.7555758 +0.8301795 0.7751122 0.7555758 +0.8475045 0.7751122 0.7555758 +0.8643761 0.7751122 0.7555758 +0.880825 0.7751122 0.7555758 +0.8968787 0.7751122 0.7555758 +0.9125621 0.7751122 0.7555758 +0.9278974 0.7751122 0.7555758 +0.9429048 0.7751122 0.7555758 +0.9576028 0.7751122 0.7555758 +0.9720079 0.7751122 0.7555758 +0.9861357 0.7751122 0.7555758 +1 0.7751122 0.7555758 +0 0.7940252 0.7555758 +0.1939468 0.7940252 0.7555758 +0.2773041 0.7940252 0.7555758 +0.3384659 0.7940252 0.7555758 +0.3885728 0.7940252 0.7555758 +0.4317928 0.7940252 0.7555758 +0.470214 0.7940252 0.7555758 +0.5050551 0.7940252 0.7555758 +0.5370987 0.7940252 0.7555758 +0.5668815 0.7940252 0.7555758 +0.5947903 0.7940252 0.7555758 +0.6211144 0.7940252 0.7555758 +0.6460766 0.7940252 0.7555758 +0.6698526 0.7940252 0.7555758 +0.6925839 0.7940252 0.7555758 +0.7143866 0.7940252 0.7555758 +0.7353569 0.7940252 0.7555758 +0.7555758 0.7940252 0.7555758 +0.7751122 0.7940252 0.7555758 +0.7940252 0.7940252 0.7555758 +0.8123661 0.7940252 0.7555758 +0.8301795 0.7940252 0.7555758 +0.8475045 0.7940252 0.7555758 +0.8643761 0.7940252 0.7555758 +0.880825 0.7940252 0.7555758 +0.8968787 0.7940252 0.7555758 +0.9125621 0.7940252 0.7555758 +0.9278974 0.7940252 0.7555758 +0.9429048 0.7940252 0.7555758 +0.9576028 0.7940252 0.7555758 +0.9720079 0.7940252 0.7555758 +0.9861357 0.7940252 0.7555758 +1 0.7940252 0.7555758 +0 0.8123661 0.7555758 +0.1939468 0.8123661 0.7555758 +0.2773041 0.8123661 0.7555758 +0.3384659 0.8123661 0.7555758 +0.3885728 0.8123661 0.7555758 +0.4317928 0.8123661 0.7555758 +0.470214 0.8123661 0.7555758 +0.5050551 0.8123661 0.7555758 +0.5370987 0.8123661 0.7555758 +0.5668815 0.8123661 0.7555758 +0.5947903 0.8123661 0.7555758 +0.6211144 0.8123661 0.7555758 +0.6460766 0.8123661 0.7555758 +0.6698526 0.8123661 0.7555758 +0.6925839 0.8123661 0.7555758 +0.7143866 0.8123661 0.7555758 +0.7353569 0.8123661 0.7555758 +0.7555758 0.8123661 0.7555758 +0.7751122 0.8123661 0.7555758 +0.7940252 0.8123661 0.7555758 +0.8123661 0.8123661 0.7555758 +0.8301795 0.8123661 0.7555758 +0.8475045 0.8123661 0.7555758 +0.8643761 0.8123661 0.7555758 +0.880825 0.8123661 0.7555758 +0.8968787 0.8123661 0.7555758 +0.9125621 0.8123661 0.7555758 +0.9278974 0.8123661 0.7555758 +0.9429048 0.8123661 0.7555758 +0.9576028 0.8123661 0.7555758 +0.9720079 0.8123661 0.7555758 +0.9861357 0.8123661 0.7555758 +1 0.8123661 0.7555758 +0 0.8301795 0.7555758 +0.1939468 0.8301795 0.7555758 +0.2773041 0.8301795 0.7555758 +0.3384659 0.8301795 0.7555758 +0.3885728 0.8301795 0.7555758 +0.4317928 0.8301795 0.7555758 +0.470214 0.8301795 0.7555758 +0.5050551 0.8301795 0.7555758 +0.5370987 0.8301795 0.7555758 +0.5668815 0.8301795 0.7555758 +0.5947903 0.8301795 0.7555758 +0.6211144 0.8301795 0.7555758 +0.6460766 0.8301795 0.7555758 +0.6698526 0.8301795 0.7555758 +0.6925839 0.8301795 0.7555758 +0.7143866 0.8301795 0.7555758 +0.7353569 0.8301795 0.7555758 +0.7555758 0.8301795 0.7555758 +0.7751122 0.8301795 0.7555758 +0.7940252 0.8301795 0.7555758 +0.8123661 0.8301795 0.7555758 +0.8301795 0.8301795 0.7555758 +0.8475045 0.8301795 0.7555758 +0.8643761 0.8301795 0.7555758 +0.880825 0.8301795 0.7555758 +0.8968787 0.8301795 0.7555758 +0.9125621 0.8301795 0.7555758 +0.9278974 0.8301795 0.7555758 +0.9429048 0.8301795 0.7555758 +0.9576028 0.8301795 0.7555758 +0.9720079 0.8301795 0.7555758 +0.9861357 0.8301795 0.7555758 +1 0.8301795 0.7555758 +0 0.8475045 0.7555758 +0.1939468 0.8475045 0.7555758 +0.2773041 0.8475045 0.7555758 +0.3384659 0.8475045 0.7555758 +0.3885728 0.8475045 0.7555758 +0.4317928 0.8475045 0.7555758 +0.470214 0.8475045 0.7555758 +0.5050551 0.8475045 0.7555758 +0.5370987 0.8475045 0.7555758 +0.5668815 0.8475045 0.7555758 +0.5947903 0.8475045 0.7555758 +0.6211144 0.8475045 0.7555758 +0.6460766 0.8475045 0.7555758 +0.6698526 0.8475045 0.7555758 +0.6925839 0.8475045 0.7555758 +0.7143866 0.8475045 0.7555758 +0.7353569 0.8475045 0.7555758 +0.7555758 0.8475045 0.7555758 +0.7751122 0.8475045 0.7555758 +0.7940252 0.8475045 0.7555758 +0.8123661 0.8475045 0.7555758 +0.8301795 0.8475045 0.7555758 +0.8475045 0.8475045 0.7555758 +0.8643761 0.8475045 0.7555758 +0.880825 0.8475045 0.7555758 +0.8968787 0.8475045 0.7555758 +0.9125621 0.8475045 0.7555758 +0.9278974 0.8475045 0.7555758 +0.9429048 0.8475045 0.7555758 +0.9576028 0.8475045 0.7555758 +0.9720079 0.8475045 0.7555758 +0.9861357 0.8475045 0.7555758 +1 0.8475045 0.7555758 +0 0.8643761 0.7555758 +0.1939468 0.8643761 0.7555758 +0.2773041 0.8643761 0.7555758 +0.3384659 0.8643761 0.7555758 +0.3885728 0.8643761 0.7555758 +0.4317928 0.8643761 0.7555758 +0.470214 0.8643761 0.7555758 +0.5050551 0.8643761 0.7555758 +0.5370987 0.8643761 0.7555758 +0.5668815 0.8643761 0.7555758 +0.5947903 0.8643761 0.7555758 +0.6211144 0.8643761 0.7555758 +0.6460766 0.8643761 0.7555758 +0.6698526 0.8643761 0.7555758 +0.6925839 0.8643761 0.7555758 +0.7143866 0.8643761 0.7555758 +0.7353569 0.8643761 0.7555758 +0.7555758 0.8643761 0.7555758 +0.7751122 0.8643761 0.7555758 +0.7940252 0.8643761 0.7555758 +0.8123661 0.8643761 0.7555758 +0.8301795 0.8643761 0.7555758 +0.8475045 0.8643761 0.7555758 +0.8643761 0.8643761 0.7555758 +0.880825 0.8643761 0.7555758 +0.8968787 0.8643761 0.7555758 +0.9125621 0.8643761 0.7555758 +0.9278974 0.8643761 0.7555758 +0.9429048 0.8643761 0.7555758 +0.9576028 0.8643761 0.7555758 +0.9720079 0.8643761 0.7555758 +0.9861357 0.8643761 0.7555758 +1 0.8643761 0.7555758 +0 0.880825 0.7555758 +0.1939468 0.880825 0.7555758 +0.2773041 0.880825 0.7555758 +0.3384659 0.880825 0.7555758 +0.3885728 0.880825 0.7555758 +0.4317928 0.880825 0.7555758 +0.470214 0.880825 0.7555758 +0.5050551 0.880825 0.7555758 +0.5370987 0.880825 0.7555758 +0.5668815 0.880825 0.7555758 +0.5947903 0.880825 0.7555758 +0.6211144 0.880825 0.7555758 +0.6460766 0.880825 0.7555758 +0.6698526 0.880825 0.7555758 +0.6925839 0.880825 0.7555758 +0.7143866 0.880825 0.7555758 +0.7353569 0.880825 0.7555758 +0.7555758 0.880825 0.7555758 +0.7751122 0.880825 0.7555758 +0.7940252 0.880825 0.7555758 +0.8123661 0.880825 0.7555758 +0.8301795 0.880825 0.7555758 +0.8475045 0.880825 0.7555758 +0.8643761 0.880825 0.7555758 +0.880825 0.880825 0.7555758 +0.8968787 0.880825 0.7555758 +0.9125621 0.880825 0.7555758 +0.9278974 0.880825 0.7555758 +0.9429048 0.880825 0.7555758 +0.9576028 0.880825 0.7555758 +0.9720079 0.880825 0.7555758 +0.9861357 0.880825 0.7555758 +1 0.880825 0.7555758 +0 0.8968787 0.7555758 +0.1939468 0.8968787 0.7555758 +0.2773041 0.8968787 0.7555758 +0.3384659 0.8968787 0.7555758 +0.3885728 0.8968787 0.7555758 +0.4317928 0.8968787 0.7555758 +0.470214 0.8968787 0.7555758 +0.5050551 0.8968787 0.7555758 +0.5370987 0.8968787 0.7555758 +0.5668815 0.8968787 0.7555758 +0.5947903 0.8968787 0.7555758 +0.6211144 0.8968787 0.7555758 +0.6460766 0.8968787 0.7555758 +0.6698526 0.8968787 0.7555758 +0.6925839 0.8968787 0.7555758 +0.7143866 0.8968787 0.7555758 +0.7353569 0.8968787 0.7555758 +0.7555758 0.8968787 0.7555758 +0.7751122 0.8968787 0.7555758 +0.7940252 0.8968787 0.7555758 +0.8123661 0.8968787 0.7555758 +0.8301795 0.8968787 0.7555758 +0.8475045 0.8968787 0.7555758 +0.8643761 0.8968787 0.7555758 +0.880825 0.8968787 0.7555758 +0.8968787 0.8968787 0.7555758 +0.9125621 0.8968787 0.7555758 +0.9278974 0.8968787 0.7555758 +0.9429048 0.8968787 0.7555758 +0.9576028 0.8968787 0.7555758 +0.9720079 0.8968787 0.7555758 +0.9861357 0.8968787 0.7555758 +1 0.8968787 0.7555758 +0 0.9125621 0.7555758 +0.1939468 0.9125621 0.7555758 +0.2773041 0.9125621 0.7555758 +0.3384659 0.9125621 0.7555758 +0.3885728 0.9125621 0.7555758 +0.4317928 0.9125621 0.7555758 +0.470214 0.9125621 0.7555758 +0.5050551 0.9125621 0.7555758 +0.5370987 0.9125621 0.7555758 +0.5668815 0.9125621 0.7555758 +0.5947903 0.9125621 0.7555758 +0.6211144 0.9125621 0.7555758 +0.6460766 0.9125621 0.7555758 +0.6698526 0.9125621 0.7555758 +0.6925839 0.9125621 0.7555758 +0.7143866 0.9125621 0.7555758 +0.7353569 0.9125621 0.7555758 +0.7555758 0.9125621 0.7555758 +0.7751122 0.9125621 0.7555758 +0.7940252 0.9125621 0.7555758 +0.8123661 0.9125621 0.7555758 +0.8301795 0.9125621 0.7555758 +0.8475045 0.9125621 0.7555758 +0.8643761 0.9125621 0.7555758 +0.880825 0.9125621 0.7555758 +0.8968787 0.9125621 0.7555758 +0.9125621 0.9125621 0.7555758 +0.9278974 0.9125621 0.7555758 +0.9429048 0.9125621 0.7555758 +0.9576028 0.9125621 0.7555758 +0.9720079 0.9125621 0.7555758 +0.9861357 0.9125621 0.7555758 +1 0.9125621 0.7555758 +0 0.9278974 0.7555758 +0.1939468 0.9278974 0.7555758 +0.2773041 0.9278974 0.7555758 +0.3384659 0.9278974 0.7555758 +0.3885728 0.9278974 0.7555758 +0.4317928 0.9278974 0.7555758 +0.470214 0.9278974 0.7555758 +0.5050551 0.9278974 0.7555758 +0.5370987 0.9278974 0.7555758 +0.5668815 0.9278974 0.7555758 +0.5947903 0.9278974 0.7555758 +0.6211144 0.9278974 0.7555758 +0.6460766 0.9278974 0.7555758 +0.6698526 0.9278974 0.7555758 +0.6925839 0.9278974 0.7555758 +0.7143866 0.9278974 0.7555758 +0.7353569 0.9278974 0.7555758 +0.7555758 0.9278974 0.7555758 +0.7751122 0.9278974 0.7555758 +0.7940252 0.9278974 0.7555758 +0.8123661 0.9278974 0.7555758 +0.8301795 0.9278974 0.7555758 +0.8475045 0.9278974 0.7555758 +0.8643761 0.9278974 0.7555758 +0.880825 0.9278974 0.7555758 +0.8968787 0.9278974 0.7555758 +0.9125621 0.9278974 0.7555758 +0.9278974 0.9278974 0.7555758 +0.9429048 0.9278974 0.7555758 +0.9576028 0.9278974 0.7555758 +0.9720079 0.9278974 0.7555758 +0.9861357 0.9278974 0.7555758 +1 0.9278974 0.7555758 +0 0.9429048 0.7555758 +0.1939468 0.9429048 0.7555758 +0.2773041 0.9429048 0.7555758 +0.3384659 0.9429048 0.7555758 +0.3885728 0.9429048 0.7555758 +0.4317928 0.9429048 0.7555758 +0.470214 0.9429048 0.7555758 +0.5050551 0.9429048 0.7555758 +0.5370987 0.9429048 0.7555758 +0.5668815 0.9429048 0.7555758 +0.5947903 0.9429048 0.7555758 +0.6211144 0.9429048 0.7555758 +0.6460766 0.9429048 0.7555758 +0.6698526 0.9429048 0.7555758 +0.6925839 0.9429048 0.7555758 +0.7143866 0.9429048 0.7555758 +0.7353569 0.9429048 0.7555758 +0.7555758 0.9429048 0.7555758 +0.7751122 0.9429048 0.7555758 +0.7940252 0.9429048 0.7555758 +0.8123661 0.9429048 0.7555758 +0.8301795 0.9429048 0.7555758 +0.8475045 0.9429048 0.7555758 +0.8643761 0.9429048 0.7555758 +0.880825 0.9429048 0.7555758 +0.8968787 0.9429048 0.7555758 +0.9125621 0.9429048 0.7555758 +0.9278974 0.9429048 0.7555758 +0.9429048 0.9429048 0.7555758 +0.9576028 0.9429048 0.7555758 +0.9720079 0.9429048 0.7555758 +0.9861357 0.9429048 0.7555758 +1 0.9429048 0.7555758 +0 0.9576028 0.7555758 +0.1939468 0.9576028 0.7555758 +0.2773041 0.9576028 0.7555758 +0.3384659 0.9576028 0.7555758 +0.3885728 0.9576028 0.7555758 +0.4317928 0.9576028 0.7555758 +0.470214 0.9576028 0.7555758 +0.5050551 0.9576028 0.7555758 +0.5370987 0.9576028 0.7555758 +0.5668815 0.9576028 0.7555758 +0.5947903 0.9576028 0.7555758 +0.6211144 0.9576028 0.7555758 +0.6460766 0.9576028 0.7555758 +0.6698526 0.9576028 0.7555758 +0.6925839 0.9576028 0.7555758 +0.7143866 0.9576028 0.7555758 +0.7353569 0.9576028 0.7555758 +0.7555758 0.9576028 0.7555758 +0.7751122 0.9576028 0.7555758 +0.7940252 0.9576028 0.7555758 +0.8123661 0.9576028 0.7555758 +0.8301795 0.9576028 0.7555758 +0.8475045 0.9576028 0.7555758 +0.8643761 0.9576028 0.7555758 +0.880825 0.9576028 0.7555758 +0.8968787 0.9576028 0.7555758 +0.9125621 0.9576028 0.7555758 +0.9278974 0.9576028 0.7555758 +0.9429048 0.9576028 0.7555758 +0.9576028 0.9576028 0.7555758 +0.9720079 0.9576028 0.7555758 +0.9861357 0.9576028 0.7555758 +1 0.9576028 0.7555758 +0 0.9720079 0.7555758 +0.1939468 0.9720079 0.7555758 +0.2773041 0.9720079 0.7555758 +0.3384659 0.9720079 0.7555758 +0.3885728 0.9720079 0.7555758 +0.4317928 0.9720079 0.7555758 +0.470214 0.9720079 0.7555758 +0.5050551 0.9720079 0.7555758 +0.5370987 0.9720079 0.7555758 +0.5668815 0.9720079 0.7555758 +0.5947903 0.9720079 0.7555758 +0.6211144 0.9720079 0.7555758 +0.6460766 0.9720079 0.7555758 +0.6698526 0.9720079 0.7555758 +0.6925839 0.9720079 0.7555758 +0.7143866 0.9720079 0.7555758 +0.7353569 0.9720079 0.7555758 +0.7555758 0.9720079 0.7555758 +0.7751122 0.9720079 0.7555758 +0.7940252 0.9720079 0.7555758 +0.8123661 0.9720079 0.7555758 +0.8301795 0.9720079 0.7555758 +0.8475045 0.9720079 0.7555758 +0.8643761 0.9720079 0.7555758 +0.880825 0.9720079 0.7555758 +0.8968787 0.9720079 0.7555758 +0.9125621 0.9720079 0.7555758 +0.9278974 0.9720079 0.7555758 +0.9429048 0.9720079 0.7555758 +0.9576028 0.9720079 0.7555758 +0.9720079 0.9720079 0.7555758 +0.9861357 0.9720079 0.7555758 +1 0.9720079 0.7555758 +0 0.9861357 0.7555758 +0.1939468 0.9861357 0.7555758 +0.2773041 0.9861357 0.7555758 +0.3384659 0.9861357 0.7555758 +0.3885728 0.9861357 0.7555758 +0.4317928 0.9861357 0.7555758 +0.470214 0.9861357 0.7555758 +0.5050551 0.9861357 0.7555758 +0.5370987 0.9861357 0.7555758 +0.5668815 0.9861357 0.7555758 +0.5947903 0.9861357 0.7555758 +0.6211144 0.9861357 0.7555758 +0.6460766 0.9861357 0.7555758 +0.6698526 0.9861357 0.7555758 +0.6925839 0.9861357 0.7555758 +0.7143866 0.9861357 0.7555758 +0.7353569 0.9861357 0.7555758 +0.7555758 0.9861357 0.7555758 +0.7751122 0.9861357 0.7555758 +0.7940252 0.9861357 0.7555758 +0.8123661 0.9861357 0.7555758 +0.8301795 0.9861357 0.7555758 +0.8475045 0.9861357 0.7555758 +0.8643761 0.9861357 0.7555758 +0.880825 0.9861357 0.7555758 +0.8968787 0.9861357 0.7555758 +0.9125621 0.9861357 0.7555758 +0.9278974 0.9861357 0.7555758 +0.9429048 0.9861357 0.7555758 +0.9576028 0.9861357 0.7555758 +0.9720079 0.9861357 0.7555758 +0.9861357 0.9861357 0.7555758 +1 0.9861357 0.7555758 +0 1 0.7555758 +0.1939468 1 0.7555758 +0.2773041 1 0.7555758 +0.3384659 1 0.7555758 +0.3885728 1 0.7555758 +0.4317928 1 0.7555758 +0.470214 1 0.7555758 +0.5050551 1 0.7555758 +0.5370987 1 0.7555758 +0.5668815 1 0.7555758 +0.5947903 1 0.7555758 +0.6211144 1 0.7555758 +0.6460766 1 0.7555758 +0.6698526 1 0.7555758 +0.6925839 1 0.7555758 +0.7143866 1 0.7555758 +0.7353569 1 0.7555758 +0.7555758 1 0.7555758 +0.7751122 1 0.7555758 +0.7940252 1 0.7555758 +0.8123661 1 0.7555758 +0.8301795 1 0.7555758 +0.8475045 1 0.7555758 +0.8643761 1 0.7555758 +0.880825 1 0.7555758 +0.8968787 1 0.7555758 +0.9125621 1 0.7555758 +0.9278974 1 0.7555758 +0.9429048 1 0.7555758 +0.9576028 1 0.7555758 +0.9720079 1 0.7555758 +0.9861357 1 0.7555758 +1 1 0.7555758 +0 0 0.7751122 +0.1939468 0 0.7751122 +0.2773041 0 0.7751122 +0.3384659 0 0.7751122 +0.3885728 0 0.7751122 +0.4317928 0 0.7751122 +0.470214 0 0.7751122 +0.5050551 0 0.7751122 +0.5370987 0 0.7751122 +0.5668815 0 0.7751122 +0.5947903 0 0.7751122 +0.6211144 0 0.7751122 +0.6460766 0 0.7751122 +0.6698526 0 0.7751122 +0.6925839 0 0.7751122 +0.7143866 0 0.7751122 +0.7353569 0 0.7751122 +0.7555758 0 0.7751122 +0.7751122 0 0.7751122 +0.7940252 0 0.7751122 +0.8123661 0 0.7751122 +0.8301795 0 0.7751122 +0.8475045 0 0.7751122 +0.8643761 0 0.7751122 +0.880825 0 0.7751122 +0.8968787 0 0.7751122 +0.9125621 0 0.7751122 +0.9278974 0 0.7751122 +0.9429048 0 0.7751122 +0.9576028 0 0.7751122 +0.9720079 0 0.7751122 +0.9861357 0 0.7751122 +1 0 0.7751122 +0 0.1939468 0.7751122 +0.1939468 0.1939468 0.7751122 +0.2773041 0.1939468 0.7751122 +0.3384659 0.1939468 0.7751122 +0.3885728 0.1939468 0.7751122 +0.4317928 0.1939468 0.7751122 +0.470214 0.1939468 0.7751122 +0.5050551 0.1939468 0.7751122 +0.5370987 0.1939468 0.7751122 +0.5668815 0.1939468 0.7751122 +0.5947903 0.1939468 0.7751122 +0.6211144 0.1939468 0.7751122 +0.6460766 0.1939468 0.7751122 +0.6698526 0.1939468 0.7751122 +0.6925839 0.1939468 0.7751122 +0.7143866 0.1939468 0.7751122 +0.7353569 0.1939468 0.7751122 +0.7555758 0.1939468 0.7751122 +0.7751122 0.1939468 0.7751122 +0.7940252 0.1939468 0.7751122 +0.8123661 0.1939468 0.7751122 +0.8301795 0.1939468 0.7751122 +0.8475045 0.1939468 0.7751122 +0.8643761 0.1939468 0.7751122 +0.880825 0.1939468 0.7751122 +0.8968787 0.1939468 0.7751122 +0.9125621 0.1939468 0.7751122 +0.9278974 0.1939468 0.7751122 +0.9429048 0.1939468 0.7751122 +0.9576028 0.1939468 0.7751122 +0.9720079 0.1939468 0.7751122 +0.9861357 0.1939468 0.7751122 +1 0.1939468 0.7751122 +0 0.2773041 0.7751122 +0.1939468 0.2773041 0.7751122 +0.2773041 0.2773041 0.7751122 +0.3384659 0.2773041 0.7751122 +0.3885728 0.2773041 0.7751122 +0.4317928 0.2773041 0.7751122 +0.470214 0.2773041 0.7751122 +0.5050551 0.2773041 0.7751122 +0.5370987 0.2773041 0.7751122 +0.5668815 0.2773041 0.7751122 +0.5947903 0.2773041 0.7751122 +0.6211144 0.2773041 0.7751122 +0.6460766 0.2773041 0.7751122 +0.6698526 0.2773041 0.7751122 +0.6925839 0.2773041 0.7751122 +0.7143866 0.2773041 0.7751122 +0.7353569 0.2773041 0.7751122 +0.7555758 0.2773041 0.7751122 +0.7751122 0.2773041 0.7751122 +0.7940252 0.2773041 0.7751122 +0.8123661 0.2773041 0.7751122 +0.8301795 0.2773041 0.7751122 +0.8475045 0.2773041 0.7751122 +0.8643761 0.2773041 0.7751122 +0.880825 0.2773041 0.7751122 +0.8968787 0.2773041 0.7751122 +0.9125621 0.2773041 0.7751122 +0.9278974 0.2773041 0.7751122 +0.9429048 0.2773041 0.7751122 +0.9576028 0.2773041 0.7751122 +0.9720079 0.2773041 0.7751122 +0.9861357 0.2773041 0.7751122 +1 0.2773041 0.7751122 +0 0.3384659 0.7751122 +0.1939468 0.3384659 0.7751122 +0.2773041 0.3384659 0.7751122 +0.3384659 0.3384659 0.7751122 +0.3885728 0.3384659 0.7751122 +0.4317928 0.3384659 0.7751122 +0.470214 0.3384659 0.7751122 +0.5050551 0.3384659 0.7751122 +0.5370987 0.3384659 0.7751122 +0.5668815 0.3384659 0.7751122 +0.5947903 0.3384659 0.7751122 +0.6211144 0.3384659 0.7751122 +0.6460766 0.3384659 0.7751122 +0.6698526 0.3384659 0.7751122 +0.6925839 0.3384659 0.7751122 +0.7143866 0.3384659 0.7751122 +0.7353569 0.3384659 0.7751122 +0.7555758 0.3384659 0.7751122 +0.7751122 0.3384659 0.7751122 +0.7940252 0.3384659 0.7751122 +0.8123661 0.3384659 0.7751122 +0.8301795 0.3384659 0.7751122 +0.8475045 0.3384659 0.7751122 +0.8643761 0.3384659 0.7751122 +0.880825 0.3384659 0.7751122 +0.8968787 0.3384659 0.7751122 +0.9125621 0.3384659 0.7751122 +0.9278974 0.3384659 0.7751122 +0.9429048 0.3384659 0.7751122 +0.9576028 0.3384659 0.7751122 +0.9720079 0.3384659 0.7751122 +0.9861357 0.3384659 0.7751122 +1 0.3384659 0.7751122 +0 0.3885728 0.7751122 +0.1939468 0.3885728 0.7751122 +0.2773041 0.3885728 0.7751122 +0.3384659 0.3885728 0.7751122 +0.3885728 0.3885728 0.7751122 +0.4317928 0.3885728 0.7751122 +0.470214 0.3885728 0.7751122 +0.5050551 0.3885728 0.7751122 +0.5370987 0.3885728 0.7751122 +0.5668815 0.3885728 0.7751122 +0.5947903 0.3885728 0.7751122 +0.6211144 0.3885728 0.7751122 +0.6460766 0.3885728 0.7751122 +0.6698526 0.3885728 0.7751122 +0.6925839 0.3885728 0.7751122 +0.7143866 0.3885728 0.7751122 +0.7353569 0.3885728 0.7751122 +0.7555758 0.3885728 0.7751122 +0.7751122 0.3885728 0.7751122 +0.7940252 0.3885728 0.7751122 +0.8123661 0.3885728 0.7751122 +0.8301795 0.3885728 0.7751122 +0.8475045 0.3885728 0.7751122 +0.8643761 0.3885728 0.7751122 +0.880825 0.3885728 0.7751122 +0.8968787 0.3885728 0.7751122 +0.9125621 0.3885728 0.7751122 +0.9278974 0.3885728 0.7751122 +0.9429048 0.3885728 0.7751122 +0.9576028 0.3885728 0.7751122 +0.9720079 0.3885728 0.7751122 +0.9861357 0.3885728 0.7751122 +1 0.3885728 0.7751122 +0 0.4317928 0.7751122 +0.1939468 0.4317928 0.7751122 +0.2773041 0.4317928 0.7751122 +0.3384659 0.4317928 0.7751122 +0.3885728 0.4317928 0.7751122 +0.4317928 0.4317928 0.7751122 +0.470214 0.4317928 0.7751122 +0.5050551 0.4317928 0.7751122 +0.5370987 0.4317928 0.7751122 +0.5668815 0.4317928 0.7751122 +0.5947903 0.4317928 0.7751122 +0.6211144 0.4317928 0.7751122 +0.6460766 0.4317928 0.7751122 +0.6698526 0.4317928 0.7751122 +0.6925839 0.4317928 0.7751122 +0.7143866 0.4317928 0.7751122 +0.7353569 0.4317928 0.7751122 +0.7555758 0.4317928 0.7751122 +0.7751122 0.4317928 0.7751122 +0.7940252 0.4317928 0.7751122 +0.8123661 0.4317928 0.7751122 +0.8301795 0.4317928 0.7751122 +0.8475045 0.4317928 0.7751122 +0.8643761 0.4317928 0.7751122 +0.880825 0.4317928 0.7751122 +0.8968787 0.4317928 0.7751122 +0.9125621 0.4317928 0.7751122 +0.9278974 0.4317928 0.7751122 +0.9429048 0.4317928 0.7751122 +0.9576028 0.4317928 0.7751122 +0.9720079 0.4317928 0.7751122 +0.9861357 0.4317928 0.7751122 +1 0.4317928 0.7751122 +0 0.470214 0.7751122 +0.1939468 0.470214 0.7751122 +0.2773041 0.470214 0.7751122 +0.3384659 0.470214 0.7751122 +0.3885728 0.470214 0.7751122 +0.4317928 0.470214 0.7751122 +0.470214 0.470214 0.7751122 +0.5050551 0.470214 0.7751122 +0.5370987 0.470214 0.7751122 +0.5668815 0.470214 0.7751122 +0.5947903 0.470214 0.7751122 +0.6211144 0.470214 0.7751122 +0.6460766 0.470214 0.7751122 +0.6698526 0.470214 0.7751122 +0.6925839 0.470214 0.7751122 +0.7143866 0.470214 0.7751122 +0.7353569 0.470214 0.7751122 +0.7555758 0.470214 0.7751122 +0.7751122 0.470214 0.7751122 +0.7940252 0.470214 0.7751122 +0.8123661 0.470214 0.7751122 +0.8301795 0.470214 0.7751122 +0.8475045 0.470214 0.7751122 +0.8643761 0.470214 0.7751122 +0.880825 0.470214 0.7751122 +0.8968787 0.470214 0.7751122 +0.9125621 0.470214 0.7751122 +0.9278974 0.470214 0.7751122 +0.9429048 0.470214 0.7751122 +0.9576028 0.470214 0.7751122 +0.9720079 0.470214 0.7751122 +0.9861357 0.470214 0.7751122 +1 0.470214 0.7751122 +0 0.5050551 0.7751122 +0.1939468 0.5050551 0.7751122 +0.2773041 0.5050551 0.7751122 +0.3384659 0.5050551 0.7751122 +0.3885728 0.5050551 0.7751122 +0.4317928 0.5050551 0.7751122 +0.470214 0.5050551 0.7751122 +0.5050551 0.5050551 0.7751122 +0.5370987 0.5050551 0.7751122 +0.5668815 0.5050551 0.7751122 +0.5947903 0.5050551 0.7751122 +0.6211144 0.5050551 0.7751122 +0.6460766 0.5050551 0.7751122 +0.6698526 0.5050551 0.7751122 +0.6925839 0.5050551 0.7751122 +0.7143866 0.5050551 0.7751122 +0.7353569 0.5050551 0.7751122 +0.7555758 0.5050551 0.7751122 +0.7751122 0.5050551 0.7751122 +0.7940252 0.5050551 0.7751122 +0.8123661 0.5050551 0.7751122 +0.8301795 0.5050551 0.7751122 +0.8475045 0.5050551 0.7751122 +0.8643761 0.5050551 0.7751122 +0.880825 0.5050551 0.7751122 +0.8968787 0.5050551 0.7751122 +0.9125621 0.5050551 0.7751122 +0.9278974 0.5050551 0.7751122 +0.9429048 0.5050551 0.7751122 +0.9576028 0.5050551 0.7751122 +0.9720079 0.5050551 0.7751122 +0.9861357 0.5050551 0.7751122 +1 0.5050551 0.7751122 +0 0.5370987 0.7751122 +0.1939468 0.5370987 0.7751122 +0.2773041 0.5370987 0.7751122 +0.3384659 0.5370987 0.7751122 +0.3885728 0.5370987 0.7751122 +0.4317928 0.5370987 0.7751122 +0.470214 0.5370987 0.7751122 +0.5050551 0.5370987 0.7751122 +0.5370987 0.5370987 0.7751122 +0.5668815 0.5370987 0.7751122 +0.5947903 0.5370987 0.7751122 +0.6211144 0.5370987 0.7751122 +0.6460766 0.5370987 0.7751122 +0.6698526 0.5370987 0.7751122 +0.6925839 0.5370987 0.7751122 +0.7143866 0.5370987 0.7751122 +0.7353569 0.5370987 0.7751122 +0.7555758 0.5370987 0.7751122 +0.7751122 0.5370987 0.7751122 +0.7940252 0.5370987 0.7751122 +0.8123661 0.5370987 0.7751122 +0.8301795 0.5370987 0.7751122 +0.8475045 0.5370987 0.7751122 +0.8643761 0.5370987 0.7751122 +0.880825 0.5370987 0.7751122 +0.8968787 0.5370987 0.7751122 +0.9125621 0.5370987 0.7751122 +0.9278974 0.5370987 0.7751122 +0.9429048 0.5370987 0.7751122 +0.9576028 0.5370987 0.7751122 +0.9720079 0.5370987 0.7751122 +0.9861357 0.5370987 0.7751122 +1 0.5370987 0.7751122 +0 0.5668815 0.7751122 +0.1939468 0.5668815 0.7751122 +0.2773041 0.5668815 0.7751122 +0.3384659 0.5668815 0.7751122 +0.3885728 0.5668815 0.7751122 +0.4317928 0.5668815 0.7751122 +0.470214 0.5668815 0.7751122 +0.5050551 0.5668815 0.7751122 +0.5370987 0.5668815 0.7751122 +0.5668815 0.5668815 0.7751122 +0.5947903 0.5668815 0.7751122 +0.6211144 0.5668815 0.7751122 +0.6460766 0.5668815 0.7751122 +0.6698526 0.5668815 0.7751122 +0.6925839 0.5668815 0.7751122 +0.7143866 0.5668815 0.7751122 +0.7353569 0.5668815 0.7751122 +0.7555758 0.5668815 0.7751122 +0.7751122 0.5668815 0.7751122 +0.7940252 0.5668815 0.7751122 +0.8123661 0.5668815 0.7751122 +0.8301795 0.5668815 0.7751122 +0.8475045 0.5668815 0.7751122 +0.8643761 0.5668815 0.7751122 +0.880825 0.5668815 0.7751122 +0.8968787 0.5668815 0.7751122 +0.9125621 0.5668815 0.7751122 +0.9278974 0.5668815 0.7751122 +0.9429048 0.5668815 0.7751122 +0.9576028 0.5668815 0.7751122 +0.9720079 0.5668815 0.7751122 +0.9861357 0.5668815 0.7751122 +1 0.5668815 0.7751122 +0 0.5947903 0.7751122 +0.1939468 0.5947903 0.7751122 +0.2773041 0.5947903 0.7751122 +0.3384659 0.5947903 0.7751122 +0.3885728 0.5947903 0.7751122 +0.4317928 0.5947903 0.7751122 +0.470214 0.5947903 0.7751122 +0.5050551 0.5947903 0.7751122 +0.5370987 0.5947903 0.7751122 +0.5668815 0.5947903 0.7751122 +0.5947903 0.5947903 0.7751122 +0.6211144 0.5947903 0.7751122 +0.6460766 0.5947903 0.7751122 +0.6698526 0.5947903 0.7751122 +0.6925839 0.5947903 0.7751122 +0.7143866 0.5947903 0.7751122 +0.7353569 0.5947903 0.7751122 +0.7555758 0.5947903 0.7751122 +0.7751122 0.5947903 0.7751122 +0.7940252 0.5947903 0.7751122 +0.8123661 0.5947903 0.7751122 +0.8301795 0.5947903 0.7751122 +0.8475045 0.5947903 0.7751122 +0.8643761 0.5947903 0.7751122 +0.880825 0.5947903 0.7751122 +0.8968787 0.5947903 0.7751122 +0.9125621 0.5947903 0.7751122 +0.9278974 0.5947903 0.7751122 +0.9429048 0.5947903 0.7751122 +0.9576028 0.5947903 0.7751122 +0.9720079 0.5947903 0.7751122 +0.9861357 0.5947903 0.7751122 +1 0.5947903 0.7751122 +0 0.6211144 0.7751122 +0.1939468 0.6211144 0.7751122 +0.2773041 0.6211144 0.7751122 +0.3384659 0.6211144 0.7751122 +0.3885728 0.6211144 0.7751122 +0.4317928 0.6211144 0.7751122 +0.470214 0.6211144 0.7751122 +0.5050551 0.6211144 0.7751122 +0.5370987 0.6211144 0.7751122 +0.5668815 0.6211144 0.7751122 +0.5947903 0.6211144 0.7751122 +0.6211144 0.6211144 0.7751122 +0.6460766 0.6211144 0.7751122 +0.6698526 0.6211144 0.7751122 +0.6925839 0.6211144 0.7751122 +0.7143866 0.6211144 0.7751122 +0.7353569 0.6211144 0.7751122 +0.7555758 0.6211144 0.7751122 +0.7751122 0.6211144 0.7751122 +0.7940252 0.6211144 0.7751122 +0.8123661 0.6211144 0.7751122 +0.8301795 0.6211144 0.7751122 +0.8475045 0.6211144 0.7751122 +0.8643761 0.6211144 0.7751122 +0.880825 0.6211144 0.7751122 +0.8968787 0.6211144 0.7751122 +0.9125621 0.6211144 0.7751122 +0.9278974 0.6211144 0.7751122 +0.9429048 0.6211144 0.7751122 +0.9576028 0.6211144 0.7751122 +0.9720079 0.6211144 0.7751122 +0.9861357 0.6211144 0.7751122 +1 0.6211144 0.7751122 +0 0.6460766 0.7751122 +0.1939468 0.6460766 0.7751122 +0.2773041 0.6460766 0.7751122 +0.3384659 0.6460766 0.7751122 +0.3885728 0.6460766 0.7751122 +0.4317928 0.6460766 0.7751122 +0.470214 0.6460766 0.7751122 +0.5050551 0.6460766 0.7751122 +0.5370987 0.6460766 0.7751122 +0.5668815 0.6460766 0.7751122 +0.5947903 0.6460766 0.7751122 +0.6211144 0.6460766 0.7751122 +0.6460766 0.6460766 0.7751122 +0.6698526 0.6460766 0.7751122 +0.6925839 0.6460766 0.7751122 +0.7143866 0.6460766 0.7751122 +0.7353569 0.6460766 0.7751122 +0.7555758 0.6460766 0.7751122 +0.7751122 0.6460766 0.7751122 +0.7940252 0.6460766 0.7751122 +0.8123661 0.6460766 0.7751122 +0.8301795 0.6460766 0.7751122 +0.8475045 0.6460766 0.7751122 +0.8643761 0.6460766 0.7751122 +0.880825 0.6460766 0.7751122 +0.8968787 0.6460766 0.7751122 +0.9125621 0.6460766 0.7751122 +0.9278974 0.6460766 0.7751122 +0.9429048 0.6460766 0.7751122 +0.9576028 0.6460766 0.7751122 +0.9720079 0.6460766 0.7751122 +0.9861357 0.6460766 0.7751122 +1 0.6460766 0.7751122 +0 0.6698526 0.7751122 +0.1939468 0.6698526 0.7751122 +0.2773041 0.6698526 0.7751122 +0.3384659 0.6698526 0.7751122 +0.3885728 0.6698526 0.7751122 +0.4317928 0.6698526 0.7751122 +0.470214 0.6698526 0.7751122 +0.5050551 0.6698526 0.7751122 +0.5370987 0.6698526 0.7751122 +0.5668815 0.6698526 0.7751122 +0.5947903 0.6698526 0.7751122 +0.6211144 0.6698526 0.7751122 +0.6460766 0.6698526 0.7751122 +0.6698526 0.6698526 0.7751122 +0.6925839 0.6698526 0.7751122 +0.7143866 0.6698526 0.7751122 +0.7353569 0.6698526 0.7751122 +0.7555758 0.6698526 0.7751122 +0.7751122 0.6698526 0.7751122 +0.7940252 0.6698526 0.7751122 +0.8123661 0.6698526 0.7751122 +0.8301795 0.6698526 0.7751122 +0.8475045 0.6698526 0.7751122 +0.8643761 0.6698526 0.7751122 +0.880825 0.6698526 0.7751122 +0.8968787 0.6698526 0.7751122 +0.9125621 0.6698526 0.7751122 +0.9278974 0.6698526 0.7751122 +0.9429048 0.6698526 0.7751122 +0.9576028 0.6698526 0.7751122 +0.9720079 0.6698526 0.7751122 +0.9861357 0.6698526 0.7751122 +1 0.6698526 0.7751122 +0 0.6925839 0.7751122 +0.1939468 0.6925839 0.7751122 +0.2773041 0.6925839 0.7751122 +0.3384659 0.6925839 0.7751122 +0.3885728 0.6925839 0.7751122 +0.4317928 0.6925839 0.7751122 +0.470214 0.6925839 0.7751122 +0.5050551 0.6925839 0.7751122 +0.5370987 0.6925839 0.7751122 +0.5668815 0.6925839 0.7751122 +0.5947903 0.6925839 0.7751122 +0.6211144 0.6925839 0.7751122 +0.6460766 0.6925839 0.7751122 +0.6698526 0.6925839 0.7751122 +0.6925839 0.6925839 0.7751122 +0.7143866 0.6925839 0.7751122 +0.7353569 0.6925839 0.7751122 +0.7555758 0.6925839 0.7751122 +0.7751122 0.6925839 0.7751122 +0.7940252 0.6925839 0.7751122 +0.8123661 0.6925839 0.7751122 +0.8301795 0.6925839 0.7751122 +0.8475045 0.6925839 0.7751122 +0.8643761 0.6925839 0.7751122 +0.880825 0.6925839 0.7751122 +0.8968787 0.6925839 0.7751122 +0.9125621 0.6925839 0.7751122 +0.9278974 0.6925839 0.7751122 +0.9429048 0.6925839 0.7751122 +0.9576028 0.6925839 0.7751122 +0.9720079 0.6925839 0.7751122 +0.9861357 0.6925839 0.7751122 +1 0.6925839 0.7751122 +0 0.7143866 0.7751122 +0.1939468 0.7143866 0.7751122 +0.2773041 0.7143866 0.7751122 +0.3384659 0.7143866 0.7751122 +0.3885728 0.7143866 0.7751122 +0.4317928 0.7143866 0.7751122 +0.470214 0.7143866 0.7751122 +0.5050551 0.7143866 0.7751122 +0.5370987 0.7143866 0.7751122 +0.5668815 0.7143866 0.7751122 +0.5947903 0.7143866 0.7751122 +0.6211144 0.7143866 0.7751122 +0.6460766 0.7143866 0.7751122 +0.6698526 0.7143866 0.7751122 +0.6925839 0.7143866 0.7751122 +0.7143866 0.7143866 0.7751122 +0.7353569 0.7143866 0.7751122 +0.7555758 0.7143866 0.7751122 +0.7751122 0.7143866 0.7751122 +0.7940252 0.7143866 0.7751122 +0.8123661 0.7143866 0.7751122 +0.8301795 0.7143866 0.7751122 +0.8475045 0.7143866 0.7751122 +0.8643761 0.7143866 0.7751122 +0.880825 0.7143866 0.7751122 +0.8968787 0.7143866 0.7751122 +0.9125621 0.7143866 0.7751122 +0.9278974 0.7143866 0.7751122 +0.9429048 0.7143866 0.7751122 +0.9576028 0.7143866 0.7751122 +0.9720079 0.7143866 0.7751122 +0.9861357 0.7143866 0.7751122 +1 0.7143866 0.7751122 +0 0.7353569 0.7751122 +0.1939468 0.7353569 0.7751122 +0.2773041 0.7353569 0.7751122 +0.3384659 0.7353569 0.7751122 +0.3885728 0.7353569 0.7751122 +0.4317928 0.7353569 0.7751122 +0.470214 0.7353569 0.7751122 +0.5050551 0.7353569 0.7751122 +0.5370987 0.7353569 0.7751122 +0.5668815 0.7353569 0.7751122 +0.5947903 0.7353569 0.7751122 +0.6211144 0.7353569 0.7751122 +0.6460766 0.7353569 0.7751122 +0.6698526 0.7353569 0.7751122 +0.6925839 0.7353569 0.7751122 +0.7143866 0.7353569 0.7751122 +0.7353569 0.7353569 0.7751122 +0.7555758 0.7353569 0.7751122 +0.7751122 0.7353569 0.7751122 +0.7940252 0.7353569 0.7751122 +0.8123661 0.7353569 0.7751122 +0.8301795 0.7353569 0.7751122 +0.8475045 0.7353569 0.7751122 +0.8643761 0.7353569 0.7751122 +0.880825 0.7353569 0.7751122 +0.8968787 0.7353569 0.7751122 +0.9125621 0.7353569 0.7751122 +0.9278974 0.7353569 0.7751122 +0.9429048 0.7353569 0.7751122 +0.9576028 0.7353569 0.7751122 +0.9720079 0.7353569 0.7751122 +0.9861357 0.7353569 0.7751122 +1 0.7353569 0.7751122 +0 0.7555758 0.7751122 +0.1939468 0.7555758 0.7751122 +0.2773041 0.7555758 0.7751122 +0.3384659 0.7555758 0.7751122 +0.3885728 0.7555758 0.7751122 +0.4317928 0.7555758 0.7751122 +0.470214 0.7555758 0.7751122 +0.5050551 0.7555758 0.7751122 +0.5370987 0.7555758 0.7751122 +0.5668815 0.7555758 0.7751122 +0.5947903 0.7555758 0.7751122 +0.6211144 0.7555758 0.7751122 +0.6460766 0.7555758 0.7751122 +0.6698526 0.7555758 0.7751122 +0.6925839 0.7555758 0.7751122 +0.7143866 0.7555758 0.7751122 +0.7353569 0.7555758 0.7751122 +0.7555758 0.7555758 0.7751122 +0.7751122 0.7555758 0.7751122 +0.7940252 0.7555758 0.7751122 +0.8123661 0.7555758 0.7751122 +0.8301795 0.7555758 0.7751122 +0.8475045 0.7555758 0.7751122 +0.8643761 0.7555758 0.7751122 +0.880825 0.7555758 0.7751122 +0.8968787 0.7555758 0.7751122 +0.9125621 0.7555758 0.7751122 +0.9278974 0.7555758 0.7751122 +0.9429048 0.7555758 0.7751122 +0.9576028 0.7555758 0.7751122 +0.9720079 0.7555758 0.7751122 +0.9861357 0.7555758 0.7751122 +1 0.7555758 0.7751122 +0 0.7751122 0.7751122 +0.1939468 0.7751122 0.7751122 +0.2773041 0.7751122 0.7751122 +0.3384659 0.7751122 0.7751122 +0.3885728 0.7751122 0.7751122 +0.4317928 0.7751122 0.7751122 +0.470214 0.7751122 0.7751122 +0.5050551 0.7751122 0.7751122 +0.5370987 0.7751122 0.7751122 +0.5668815 0.7751122 0.7751122 +0.5947903 0.7751122 0.7751122 +0.6211144 0.7751122 0.7751122 +0.6460766 0.7751122 0.7751122 +0.6698526 0.7751122 0.7751122 +0.6925839 0.7751122 0.7751122 +0.7143866 0.7751122 0.7751122 +0.7353569 0.7751122 0.7751122 +0.7555758 0.7751122 0.7751122 +0.7751122 0.7751122 0.7751122 +0.7940252 0.7751122 0.7751122 +0.8123661 0.7751122 0.7751122 +0.8301795 0.7751122 0.7751122 +0.8475045 0.7751122 0.7751122 +0.8643761 0.7751122 0.7751122 +0.880825 0.7751122 0.7751122 +0.8968787 0.7751122 0.7751122 +0.9125621 0.7751122 0.7751122 +0.9278974 0.7751122 0.7751122 +0.9429048 0.7751122 0.7751122 +0.9576028 0.7751122 0.7751122 +0.9720079 0.7751122 0.7751122 +0.9861357 0.7751122 0.7751122 +1 0.7751122 0.7751122 +0 0.7940252 0.7751122 +0.1939468 0.7940252 0.7751122 +0.2773041 0.7940252 0.7751122 +0.3384659 0.7940252 0.7751122 +0.3885728 0.7940252 0.7751122 +0.4317928 0.7940252 0.7751122 +0.470214 0.7940252 0.7751122 +0.5050551 0.7940252 0.7751122 +0.5370987 0.7940252 0.7751122 +0.5668815 0.7940252 0.7751122 +0.5947903 0.7940252 0.7751122 +0.6211144 0.7940252 0.7751122 +0.6460766 0.7940252 0.7751122 +0.6698526 0.7940252 0.7751122 +0.6925839 0.7940252 0.7751122 +0.7143866 0.7940252 0.7751122 +0.7353569 0.7940252 0.7751122 +0.7555758 0.7940252 0.7751122 +0.7751122 0.7940252 0.7751122 +0.7940252 0.7940252 0.7751122 +0.8123661 0.7940252 0.7751122 +0.8301795 0.7940252 0.7751122 +0.8475045 0.7940252 0.7751122 +0.8643761 0.7940252 0.7751122 +0.880825 0.7940252 0.7751122 +0.8968787 0.7940252 0.7751122 +0.9125621 0.7940252 0.7751122 +0.9278974 0.7940252 0.7751122 +0.9429048 0.7940252 0.7751122 +0.9576028 0.7940252 0.7751122 +0.9720079 0.7940252 0.7751122 +0.9861357 0.7940252 0.7751122 +1 0.7940252 0.7751122 +0 0.8123661 0.7751122 +0.1939468 0.8123661 0.7751122 +0.2773041 0.8123661 0.7751122 +0.3384659 0.8123661 0.7751122 +0.3885728 0.8123661 0.7751122 +0.4317928 0.8123661 0.7751122 +0.470214 0.8123661 0.7751122 +0.5050551 0.8123661 0.7751122 +0.5370987 0.8123661 0.7751122 +0.5668815 0.8123661 0.7751122 +0.5947903 0.8123661 0.7751122 +0.6211144 0.8123661 0.7751122 +0.6460766 0.8123661 0.7751122 +0.6698526 0.8123661 0.7751122 +0.6925839 0.8123661 0.7751122 +0.7143866 0.8123661 0.7751122 +0.7353569 0.8123661 0.7751122 +0.7555758 0.8123661 0.7751122 +0.7751122 0.8123661 0.7751122 +0.7940252 0.8123661 0.7751122 +0.8123661 0.8123661 0.7751122 +0.8301795 0.8123661 0.7751122 +0.8475045 0.8123661 0.7751122 +0.8643761 0.8123661 0.7751122 +0.880825 0.8123661 0.7751122 +0.8968787 0.8123661 0.7751122 +0.9125621 0.8123661 0.7751122 +0.9278974 0.8123661 0.7751122 +0.9429048 0.8123661 0.7751122 +0.9576028 0.8123661 0.7751122 +0.9720079 0.8123661 0.7751122 +0.9861357 0.8123661 0.7751122 +1 0.8123661 0.7751122 +0 0.8301795 0.7751122 +0.1939468 0.8301795 0.7751122 +0.2773041 0.8301795 0.7751122 +0.3384659 0.8301795 0.7751122 +0.3885728 0.8301795 0.7751122 +0.4317928 0.8301795 0.7751122 +0.470214 0.8301795 0.7751122 +0.5050551 0.8301795 0.7751122 +0.5370987 0.8301795 0.7751122 +0.5668815 0.8301795 0.7751122 +0.5947903 0.8301795 0.7751122 +0.6211144 0.8301795 0.7751122 +0.6460766 0.8301795 0.7751122 +0.6698526 0.8301795 0.7751122 +0.6925839 0.8301795 0.7751122 +0.7143866 0.8301795 0.7751122 +0.7353569 0.8301795 0.7751122 +0.7555758 0.8301795 0.7751122 +0.7751122 0.8301795 0.7751122 +0.7940252 0.8301795 0.7751122 +0.8123661 0.8301795 0.7751122 +0.8301795 0.8301795 0.7751122 +0.8475045 0.8301795 0.7751122 +0.8643761 0.8301795 0.7751122 +0.880825 0.8301795 0.7751122 +0.8968787 0.8301795 0.7751122 +0.9125621 0.8301795 0.7751122 +0.9278974 0.8301795 0.7751122 +0.9429048 0.8301795 0.7751122 +0.9576028 0.8301795 0.7751122 +0.9720079 0.8301795 0.7751122 +0.9861357 0.8301795 0.7751122 +1 0.8301795 0.7751122 +0 0.8475045 0.7751122 +0.1939468 0.8475045 0.7751122 +0.2773041 0.8475045 0.7751122 +0.3384659 0.8475045 0.7751122 +0.3885728 0.8475045 0.7751122 +0.4317928 0.8475045 0.7751122 +0.470214 0.8475045 0.7751122 +0.5050551 0.8475045 0.7751122 +0.5370987 0.8475045 0.7751122 +0.5668815 0.8475045 0.7751122 +0.5947903 0.8475045 0.7751122 +0.6211144 0.8475045 0.7751122 +0.6460766 0.8475045 0.7751122 +0.6698526 0.8475045 0.7751122 +0.6925839 0.8475045 0.7751122 +0.7143866 0.8475045 0.7751122 +0.7353569 0.8475045 0.7751122 +0.7555758 0.8475045 0.7751122 +0.7751122 0.8475045 0.7751122 +0.7940252 0.8475045 0.7751122 +0.8123661 0.8475045 0.7751122 +0.8301795 0.8475045 0.7751122 +0.8475045 0.8475045 0.7751122 +0.8643761 0.8475045 0.7751122 +0.880825 0.8475045 0.7751122 +0.8968787 0.8475045 0.7751122 +0.9125621 0.8475045 0.7751122 +0.9278974 0.8475045 0.7751122 +0.9429048 0.8475045 0.7751122 +0.9576028 0.8475045 0.7751122 +0.9720079 0.8475045 0.7751122 +0.9861357 0.8475045 0.7751122 +1 0.8475045 0.7751122 +0 0.8643761 0.7751122 +0.1939468 0.8643761 0.7751122 +0.2773041 0.8643761 0.7751122 +0.3384659 0.8643761 0.7751122 +0.3885728 0.8643761 0.7751122 +0.4317928 0.8643761 0.7751122 +0.470214 0.8643761 0.7751122 +0.5050551 0.8643761 0.7751122 +0.5370987 0.8643761 0.7751122 +0.5668815 0.8643761 0.7751122 +0.5947903 0.8643761 0.7751122 +0.6211144 0.8643761 0.7751122 +0.6460766 0.8643761 0.7751122 +0.6698526 0.8643761 0.7751122 +0.6925839 0.8643761 0.7751122 +0.7143866 0.8643761 0.7751122 +0.7353569 0.8643761 0.7751122 +0.7555758 0.8643761 0.7751122 +0.7751122 0.8643761 0.7751122 +0.7940252 0.8643761 0.7751122 +0.8123661 0.8643761 0.7751122 +0.8301795 0.8643761 0.7751122 +0.8475045 0.8643761 0.7751122 +0.8643761 0.8643761 0.7751122 +0.880825 0.8643761 0.7751122 +0.8968787 0.8643761 0.7751122 +0.9125621 0.8643761 0.7751122 +0.9278974 0.8643761 0.7751122 +0.9429048 0.8643761 0.7751122 +0.9576028 0.8643761 0.7751122 +0.9720079 0.8643761 0.7751122 +0.9861357 0.8643761 0.7751122 +1 0.8643761 0.7751122 +0 0.880825 0.7751122 +0.1939468 0.880825 0.7751122 +0.2773041 0.880825 0.7751122 +0.3384659 0.880825 0.7751122 +0.3885728 0.880825 0.7751122 +0.4317928 0.880825 0.7751122 +0.470214 0.880825 0.7751122 +0.5050551 0.880825 0.7751122 +0.5370987 0.880825 0.7751122 +0.5668815 0.880825 0.7751122 +0.5947903 0.880825 0.7751122 +0.6211144 0.880825 0.7751122 +0.6460766 0.880825 0.7751122 +0.6698526 0.880825 0.7751122 +0.6925839 0.880825 0.7751122 +0.7143866 0.880825 0.7751122 +0.7353569 0.880825 0.7751122 +0.7555758 0.880825 0.7751122 +0.7751122 0.880825 0.7751122 +0.7940252 0.880825 0.7751122 +0.8123661 0.880825 0.7751122 +0.8301795 0.880825 0.7751122 +0.8475045 0.880825 0.7751122 +0.8643761 0.880825 0.7751122 +0.880825 0.880825 0.7751122 +0.8968787 0.880825 0.7751122 +0.9125621 0.880825 0.7751122 +0.9278974 0.880825 0.7751122 +0.9429048 0.880825 0.7751122 +0.9576028 0.880825 0.7751122 +0.9720079 0.880825 0.7751122 +0.9861357 0.880825 0.7751122 +1 0.880825 0.7751122 +0 0.8968787 0.7751122 +0.1939468 0.8968787 0.7751122 +0.2773041 0.8968787 0.7751122 +0.3384659 0.8968787 0.7751122 +0.3885728 0.8968787 0.7751122 +0.4317928 0.8968787 0.7751122 +0.470214 0.8968787 0.7751122 +0.5050551 0.8968787 0.7751122 +0.5370987 0.8968787 0.7751122 +0.5668815 0.8968787 0.7751122 +0.5947903 0.8968787 0.7751122 +0.6211144 0.8968787 0.7751122 +0.6460766 0.8968787 0.7751122 +0.6698526 0.8968787 0.7751122 +0.6925839 0.8968787 0.7751122 +0.7143866 0.8968787 0.7751122 +0.7353569 0.8968787 0.7751122 +0.7555758 0.8968787 0.7751122 +0.7751122 0.8968787 0.7751122 +0.7940252 0.8968787 0.7751122 +0.8123661 0.8968787 0.7751122 +0.8301795 0.8968787 0.7751122 +0.8475045 0.8968787 0.7751122 +0.8643761 0.8968787 0.7751122 +0.880825 0.8968787 0.7751122 +0.8968787 0.8968787 0.7751122 +0.9125621 0.8968787 0.7751122 +0.9278974 0.8968787 0.7751122 +0.9429048 0.8968787 0.7751122 +0.9576028 0.8968787 0.7751122 +0.9720079 0.8968787 0.7751122 +0.9861357 0.8968787 0.7751122 +1 0.8968787 0.7751122 +0 0.9125621 0.7751122 +0.1939468 0.9125621 0.7751122 +0.2773041 0.9125621 0.7751122 +0.3384659 0.9125621 0.7751122 +0.3885728 0.9125621 0.7751122 +0.4317928 0.9125621 0.7751122 +0.470214 0.9125621 0.7751122 +0.5050551 0.9125621 0.7751122 +0.5370987 0.9125621 0.7751122 +0.5668815 0.9125621 0.7751122 +0.5947903 0.9125621 0.7751122 +0.6211144 0.9125621 0.7751122 +0.6460766 0.9125621 0.7751122 +0.6698526 0.9125621 0.7751122 +0.6925839 0.9125621 0.7751122 +0.7143866 0.9125621 0.7751122 +0.7353569 0.9125621 0.7751122 +0.7555758 0.9125621 0.7751122 +0.7751122 0.9125621 0.7751122 +0.7940252 0.9125621 0.7751122 +0.8123661 0.9125621 0.7751122 +0.8301795 0.9125621 0.7751122 +0.8475045 0.9125621 0.7751122 +0.8643761 0.9125621 0.7751122 +0.880825 0.9125621 0.7751122 +0.8968787 0.9125621 0.7751122 +0.9125621 0.9125621 0.7751122 +0.9278974 0.9125621 0.7751122 +0.9429048 0.9125621 0.7751122 +0.9576028 0.9125621 0.7751122 +0.9720079 0.9125621 0.7751122 +0.9861357 0.9125621 0.7751122 +1 0.9125621 0.7751122 +0 0.9278974 0.7751122 +0.1939468 0.9278974 0.7751122 +0.2773041 0.9278974 0.7751122 +0.3384659 0.9278974 0.7751122 +0.3885728 0.9278974 0.7751122 +0.4317928 0.9278974 0.7751122 +0.470214 0.9278974 0.7751122 +0.5050551 0.9278974 0.7751122 +0.5370987 0.9278974 0.7751122 +0.5668815 0.9278974 0.7751122 +0.5947903 0.9278974 0.7751122 +0.6211144 0.9278974 0.7751122 +0.6460766 0.9278974 0.7751122 +0.6698526 0.9278974 0.7751122 +0.6925839 0.9278974 0.7751122 +0.7143866 0.9278974 0.7751122 +0.7353569 0.9278974 0.7751122 +0.7555758 0.9278974 0.7751122 +0.7751122 0.9278974 0.7751122 +0.7940252 0.9278974 0.7751122 +0.8123661 0.9278974 0.7751122 +0.8301795 0.9278974 0.7751122 +0.8475045 0.9278974 0.7751122 +0.8643761 0.9278974 0.7751122 +0.880825 0.9278974 0.7751122 +0.8968787 0.9278974 0.7751122 +0.9125621 0.9278974 0.7751122 +0.9278974 0.9278974 0.7751122 +0.9429048 0.9278974 0.7751122 +0.9576028 0.9278974 0.7751122 +0.9720079 0.9278974 0.7751122 +0.9861357 0.9278974 0.7751122 +1 0.9278974 0.7751122 +0 0.9429048 0.7751122 +0.1939468 0.9429048 0.7751122 +0.2773041 0.9429048 0.7751122 +0.3384659 0.9429048 0.7751122 +0.3885728 0.9429048 0.7751122 +0.4317928 0.9429048 0.7751122 +0.470214 0.9429048 0.7751122 +0.5050551 0.9429048 0.7751122 +0.5370987 0.9429048 0.7751122 +0.5668815 0.9429048 0.7751122 +0.5947903 0.9429048 0.7751122 +0.6211144 0.9429048 0.7751122 +0.6460766 0.9429048 0.7751122 +0.6698526 0.9429048 0.7751122 +0.6925839 0.9429048 0.7751122 +0.7143866 0.9429048 0.7751122 +0.7353569 0.9429048 0.7751122 +0.7555758 0.9429048 0.7751122 +0.7751122 0.9429048 0.7751122 +0.7940252 0.9429048 0.7751122 +0.8123661 0.9429048 0.7751122 +0.8301795 0.9429048 0.7751122 +0.8475045 0.9429048 0.7751122 +0.8643761 0.9429048 0.7751122 +0.880825 0.9429048 0.7751122 +0.8968787 0.9429048 0.7751122 +0.9125621 0.9429048 0.7751122 +0.9278974 0.9429048 0.7751122 +0.9429048 0.9429048 0.7751122 +0.9576028 0.9429048 0.7751122 +0.9720079 0.9429048 0.7751122 +0.9861357 0.9429048 0.7751122 +1 0.9429048 0.7751122 +0 0.9576028 0.7751122 +0.1939468 0.9576028 0.7751122 +0.2773041 0.9576028 0.7751122 +0.3384659 0.9576028 0.7751122 +0.3885728 0.9576028 0.7751122 +0.4317928 0.9576028 0.7751122 +0.470214 0.9576028 0.7751122 +0.5050551 0.9576028 0.7751122 +0.5370987 0.9576028 0.7751122 +0.5668815 0.9576028 0.7751122 +0.5947903 0.9576028 0.7751122 +0.6211144 0.9576028 0.7751122 +0.6460766 0.9576028 0.7751122 +0.6698526 0.9576028 0.7751122 +0.6925839 0.9576028 0.7751122 +0.7143866 0.9576028 0.7751122 +0.7353569 0.9576028 0.7751122 +0.7555758 0.9576028 0.7751122 +0.7751122 0.9576028 0.7751122 +0.7940252 0.9576028 0.7751122 +0.8123661 0.9576028 0.7751122 +0.8301795 0.9576028 0.7751122 +0.8475045 0.9576028 0.7751122 +0.8643761 0.9576028 0.7751122 +0.880825 0.9576028 0.7751122 +0.8968787 0.9576028 0.7751122 +0.9125621 0.9576028 0.7751122 +0.9278974 0.9576028 0.7751122 +0.9429048 0.9576028 0.7751122 +0.9576028 0.9576028 0.7751122 +0.9720079 0.9576028 0.7751122 +0.9861357 0.9576028 0.7751122 +1 0.9576028 0.7751122 +0 0.9720079 0.7751122 +0.1939468 0.9720079 0.7751122 +0.2773041 0.9720079 0.7751122 +0.3384659 0.9720079 0.7751122 +0.3885728 0.9720079 0.7751122 +0.4317928 0.9720079 0.7751122 +0.470214 0.9720079 0.7751122 +0.5050551 0.9720079 0.7751122 +0.5370987 0.9720079 0.7751122 +0.5668815 0.9720079 0.7751122 +0.5947903 0.9720079 0.7751122 +0.6211144 0.9720079 0.7751122 +0.6460766 0.9720079 0.7751122 +0.6698526 0.9720079 0.7751122 +0.6925839 0.9720079 0.7751122 +0.7143866 0.9720079 0.7751122 +0.7353569 0.9720079 0.7751122 +0.7555758 0.9720079 0.7751122 +0.7751122 0.9720079 0.7751122 +0.7940252 0.9720079 0.7751122 +0.8123661 0.9720079 0.7751122 +0.8301795 0.9720079 0.7751122 +0.8475045 0.9720079 0.7751122 +0.8643761 0.9720079 0.7751122 +0.880825 0.9720079 0.7751122 +0.8968787 0.9720079 0.7751122 +0.9125621 0.9720079 0.7751122 +0.9278974 0.9720079 0.7751122 +0.9429048 0.9720079 0.7751122 +0.9576028 0.9720079 0.7751122 +0.9720079 0.9720079 0.7751122 +0.9861357 0.9720079 0.7751122 +1 0.9720079 0.7751122 +0 0.9861357 0.7751122 +0.1939468 0.9861357 0.7751122 +0.2773041 0.9861357 0.7751122 +0.3384659 0.9861357 0.7751122 +0.3885728 0.9861357 0.7751122 +0.4317928 0.9861357 0.7751122 +0.470214 0.9861357 0.7751122 +0.5050551 0.9861357 0.7751122 +0.5370987 0.9861357 0.7751122 +0.5668815 0.9861357 0.7751122 +0.5947903 0.9861357 0.7751122 +0.6211144 0.9861357 0.7751122 +0.6460766 0.9861357 0.7751122 +0.6698526 0.9861357 0.7751122 +0.6925839 0.9861357 0.7751122 +0.7143866 0.9861357 0.7751122 +0.7353569 0.9861357 0.7751122 +0.7555758 0.9861357 0.7751122 +0.7751122 0.9861357 0.7751122 +0.7940252 0.9861357 0.7751122 +0.8123661 0.9861357 0.7751122 +0.8301795 0.9861357 0.7751122 +0.8475045 0.9861357 0.7751122 +0.8643761 0.9861357 0.7751122 +0.880825 0.9861357 0.7751122 +0.8968787 0.9861357 0.7751122 +0.9125621 0.9861357 0.7751122 +0.9278974 0.9861357 0.7751122 +0.9429048 0.9861357 0.7751122 +0.9576028 0.9861357 0.7751122 +0.9720079 0.9861357 0.7751122 +0.9861357 0.9861357 0.7751122 +1 0.9861357 0.7751122 +0 1 0.7751122 +0.1939468 1 0.7751122 +0.2773041 1 0.7751122 +0.3384659 1 0.7751122 +0.3885728 1 0.7751122 +0.4317928 1 0.7751122 +0.470214 1 0.7751122 +0.5050551 1 0.7751122 +0.5370987 1 0.7751122 +0.5668815 1 0.7751122 +0.5947903 1 0.7751122 +0.6211144 1 0.7751122 +0.6460766 1 0.7751122 +0.6698526 1 0.7751122 +0.6925839 1 0.7751122 +0.7143866 1 0.7751122 +0.7353569 1 0.7751122 +0.7555758 1 0.7751122 +0.7751122 1 0.7751122 +0.7940252 1 0.7751122 +0.8123661 1 0.7751122 +0.8301795 1 0.7751122 +0.8475045 1 0.7751122 +0.8643761 1 0.7751122 +0.880825 1 0.7751122 +0.8968787 1 0.7751122 +0.9125621 1 0.7751122 +0.9278974 1 0.7751122 +0.9429048 1 0.7751122 +0.9576028 1 0.7751122 +0.9720079 1 0.7751122 +0.9861357 1 0.7751122 +1 1 0.7751122 +0 0 0.7940252 +0.1939468 0 0.7940252 +0.2773041 0 0.7940252 +0.3384659 0 0.7940252 +0.3885728 0 0.7940252 +0.4317928 0 0.7940252 +0.470214 0 0.7940252 +0.5050551 0 0.7940252 +0.5370987 0 0.7940252 +0.5668815 0 0.7940252 +0.5947903 0 0.7940252 +0.6211144 0 0.7940252 +0.6460766 0 0.7940252 +0.6698526 0 0.7940252 +0.6925839 0 0.7940252 +0.7143866 0 0.7940252 +0.7353569 0 0.7940252 +0.7555758 0 0.7940252 +0.7751122 0 0.7940252 +0.7940252 0 0.7940252 +0.8123661 0 0.7940252 +0.8301795 0 0.7940252 +0.8475045 0 0.7940252 +0.8643761 0 0.7940252 +0.880825 0 0.7940252 +0.8968787 0 0.7940252 +0.9125621 0 0.7940252 +0.9278974 0 0.7940252 +0.9429048 0 0.7940252 +0.9576028 0 0.7940252 +0.9720079 0 0.7940252 +0.9861357 0 0.7940252 +1 0 0.7940252 +0 0.1939468 0.7940252 +0.1939468 0.1939468 0.7940252 +0.2773041 0.1939468 0.7940252 +0.3384659 0.1939468 0.7940252 +0.3885728 0.1939468 0.7940252 +0.4317928 0.1939468 0.7940252 +0.470214 0.1939468 0.7940252 +0.5050551 0.1939468 0.7940252 +0.5370987 0.1939468 0.7940252 +0.5668815 0.1939468 0.7940252 +0.5947903 0.1939468 0.7940252 +0.6211144 0.1939468 0.7940252 +0.6460766 0.1939468 0.7940252 +0.6698526 0.1939468 0.7940252 +0.6925839 0.1939468 0.7940252 +0.7143866 0.1939468 0.7940252 +0.7353569 0.1939468 0.7940252 +0.7555758 0.1939468 0.7940252 +0.7751122 0.1939468 0.7940252 +0.7940252 0.1939468 0.7940252 +0.8123661 0.1939468 0.7940252 +0.8301795 0.1939468 0.7940252 +0.8475045 0.1939468 0.7940252 +0.8643761 0.1939468 0.7940252 +0.880825 0.1939468 0.7940252 +0.8968787 0.1939468 0.7940252 +0.9125621 0.1939468 0.7940252 +0.9278974 0.1939468 0.7940252 +0.9429048 0.1939468 0.7940252 +0.9576028 0.1939468 0.7940252 +0.9720079 0.1939468 0.7940252 +0.9861357 0.1939468 0.7940252 +1 0.1939468 0.7940252 +0 0.2773041 0.7940252 +0.1939468 0.2773041 0.7940252 +0.2773041 0.2773041 0.7940252 +0.3384659 0.2773041 0.7940252 +0.3885728 0.2773041 0.7940252 +0.4317928 0.2773041 0.7940252 +0.470214 0.2773041 0.7940252 +0.5050551 0.2773041 0.7940252 +0.5370987 0.2773041 0.7940252 +0.5668815 0.2773041 0.7940252 +0.5947903 0.2773041 0.7940252 +0.6211144 0.2773041 0.7940252 +0.6460766 0.2773041 0.7940252 +0.6698526 0.2773041 0.7940252 +0.6925839 0.2773041 0.7940252 +0.7143866 0.2773041 0.7940252 +0.7353569 0.2773041 0.7940252 +0.7555758 0.2773041 0.7940252 +0.7751122 0.2773041 0.7940252 +0.7940252 0.2773041 0.7940252 +0.8123661 0.2773041 0.7940252 +0.8301795 0.2773041 0.7940252 +0.8475045 0.2773041 0.7940252 +0.8643761 0.2773041 0.7940252 +0.880825 0.2773041 0.7940252 +0.8968787 0.2773041 0.7940252 +0.9125621 0.2773041 0.7940252 +0.9278974 0.2773041 0.7940252 +0.9429048 0.2773041 0.7940252 +0.9576028 0.2773041 0.7940252 +0.9720079 0.2773041 0.7940252 +0.9861357 0.2773041 0.7940252 +1 0.2773041 0.7940252 +0 0.3384659 0.7940252 +0.1939468 0.3384659 0.7940252 +0.2773041 0.3384659 0.7940252 +0.3384659 0.3384659 0.7940252 +0.3885728 0.3384659 0.7940252 +0.4317928 0.3384659 0.7940252 +0.470214 0.3384659 0.7940252 +0.5050551 0.3384659 0.7940252 +0.5370987 0.3384659 0.7940252 +0.5668815 0.3384659 0.7940252 +0.5947903 0.3384659 0.7940252 +0.6211144 0.3384659 0.7940252 +0.6460766 0.3384659 0.7940252 +0.6698526 0.3384659 0.7940252 +0.6925839 0.3384659 0.7940252 +0.7143866 0.3384659 0.7940252 +0.7353569 0.3384659 0.7940252 +0.7555758 0.3384659 0.7940252 +0.7751122 0.3384659 0.7940252 +0.7940252 0.3384659 0.7940252 +0.8123661 0.3384659 0.7940252 +0.8301795 0.3384659 0.7940252 +0.8475045 0.3384659 0.7940252 +0.8643761 0.3384659 0.7940252 +0.880825 0.3384659 0.7940252 +0.8968787 0.3384659 0.7940252 +0.9125621 0.3384659 0.7940252 +0.9278974 0.3384659 0.7940252 +0.9429048 0.3384659 0.7940252 +0.9576028 0.3384659 0.7940252 +0.9720079 0.3384659 0.7940252 +0.9861357 0.3384659 0.7940252 +1 0.3384659 0.7940252 +0 0.3885728 0.7940252 +0.1939468 0.3885728 0.7940252 +0.2773041 0.3885728 0.7940252 +0.3384659 0.3885728 0.7940252 +0.3885728 0.3885728 0.7940252 +0.4317928 0.3885728 0.7940252 +0.470214 0.3885728 0.7940252 +0.5050551 0.3885728 0.7940252 +0.5370987 0.3885728 0.7940252 +0.5668815 0.3885728 0.7940252 +0.5947903 0.3885728 0.7940252 +0.6211144 0.3885728 0.7940252 +0.6460766 0.3885728 0.7940252 +0.6698526 0.3885728 0.7940252 +0.6925839 0.3885728 0.7940252 +0.7143866 0.3885728 0.7940252 +0.7353569 0.3885728 0.7940252 +0.7555758 0.3885728 0.7940252 +0.7751122 0.3885728 0.7940252 +0.7940252 0.3885728 0.7940252 +0.8123661 0.3885728 0.7940252 +0.8301795 0.3885728 0.7940252 +0.8475045 0.3885728 0.7940252 +0.8643761 0.3885728 0.7940252 +0.880825 0.3885728 0.7940252 +0.8968787 0.3885728 0.7940252 +0.9125621 0.3885728 0.7940252 +0.9278974 0.3885728 0.7940252 +0.9429048 0.3885728 0.7940252 +0.9576028 0.3885728 0.7940252 +0.9720079 0.3885728 0.7940252 +0.9861357 0.3885728 0.7940252 +1 0.3885728 0.7940252 +0 0.4317928 0.7940252 +0.1939468 0.4317928 0.7940252 +0.2773041 0.4317928 0.7940252 +0.3384659 0.4317928 0.7940252 +0.3885728 0.4317928 0.7940252 +0.4317928 0.4317928 0.7940252 +0.470214 0.4317928 0.7940252 +0.5050551 0.4317928 0.7940252 +0.5370987 0.4317928 0.7940252 +0.5668815 0.4317928 0.7940252 +0.5947903 0.4317928 0.7940252 +0.6211144 0.4317928 0.7940252 +0.6460766 0.4317928 0.7940252 +0.6698526 0.4317928 0.7940252 +0.6925839 0.4317928 0.7940252 +0.7143866 0.4317928 0.7940252 +0.7353569 0.4317928 0.7940252 +0.7555758 0.4317928 0.7940252 +0.7751122 0.4317928 0.7940252 +0.7940252 0.4317928 0.7940252 +0.8123661 0.4317928 0.7940252 +0.8301795 0.4317928 0.7940252 +0.8475045 0.4317928 0.7940252 +0.8643761 0.4317928 0.7940252 +0.880825 0.4317928 0.7940252 +0.8968787 0.4317928 0.7940252 +0.9125621 0.4317928 0.7940252 +0.9278974 0.4317928 0.7940252 +0.9429048 0.4317928 0.7940252 +0.9576028 0.4317928 0.7940252 +0.9720079 0.4317928 0.7940252 +0.9861357 0.4317928 0.7940252 +1 0.4317928 0.7940252 +0 0.470214 0.7940252 +0.1939468 0.470214 0.7940252 +0.2773041 0.470214 0.7940252 +0.3384659 0.470214 0.7940252 +0.3885728 0.470214 0.7940252 +0.4317928 0.470214 0.7940252 +0.470214 0.470214 0.7940252 +0.5050551 0.470214 0.7940252 +0.5370987 0.470214 0.7940252 +0.5668815 0.470214 0.7940252 +0.5947903 0.470214 0.7940252 +0.6211144 0.470214 0.7940252 +0.6460766 0.470214 0.7940252 +0.6698526 0.470214 0.7940252 +0.6925839 0.470214 0.7940252 +0.7143866 0.470214 0.7940252 +0.7353569 0.470214 0.7940252 +0.7555758 0.470214 0.7940252 +0.7751122 0.470214 0.7940252 +0.7940252 0.470214 0.7940252 +0.8123661 0.470214 0.7940252 +0.8301795 0.470214 0.7940252 +0.8475045 0.470214 0.7940252 +0.8643761 0.470214 0.7940252 +0.880825 0.470214 0.7940252 +0.8968787 0.470214 0.7940252 +0.9125621 0.470214 0.7940252 +0.9278974 0.470214 0.7940252 +0.9429048 0.470214 0.7940252 +0.9576028 0.470214 0.7940252 +0.9720079 0.470214 0.7940252 +0.9861357 0.470214 0.7940252 +1 0.470214 0.7940252 +0 0.5050551 0.7940252 +0.1939468 0.5050551 0.7940252 +0.2773041 0.5050551 0.7940252 +0.3384659 0.5050551 0.7940252 +0.3885728 0.5050551 0.7940252 +0.4317928 0.5050551 0.7940252 +0.470214 0.5050551 0.7940252 +0.5050551 0.5050551 0.7940252 +0.5370987 0.5050551 0.7940252 +0.5668815 0.5050551 0.7940252 +0.5947903 0.5050551 0.7940252 +0.6211144 0.5050551 0.7940252 +0.6460766 0.5050551 0.7940252 +0.6698526 0.5050551 0.7940252 +0.6925839 0.5050551 0.7940252 +0.7143866 0.5050551 0.7940252 +0.7353569 0.5050551 0.7940252 +0.7555758 0.5050551 0.7940252 +0.7751122 0.5050551 0.7940252 +0.7940252 0.5050551 0.7940252 +0.8123661 0.5050551 0.7940252 +0.8301795 0.5050551 0.7940252 +0.8475045 0.5050551 0.7940252 +0.8643761 0.5050551 0.7940252 +0.880825 0.5050551 0.7940252 +0.8968787 0.5050551 0.7940252 +0.9125621 0.5050551 0.7940252 +0.9278974 0.5050551 0.7940252 +0.9429048 0.5050551 0.7940252 +0.9576028 0.5050551 0.7940252 +0.9720079 0.5050551 0.7940252 +0.9861357 0.5050551 0.7940252 +1 0.5050551 0.7940252 +0 0.5370987 0.7940252 +0.1939468 0.5370987 0.7940252 +0.2773041 0.5370987 0.7940252 +0.3384659 0.5370987 0.7940252 +0.3885728 0.5370987 0.7940252 +0.4317928 0.5370987 0.7940252 +0.470214 0.5370987 0.7940252 +0.5050551 0.5370987 0.7940252 +0.5370987 0.5370987 0.7940252 +0.5668815 0.5370987 0.7940252 +0.5947903 0.5370987 0.7940252 +0.6211144 0.5370987 0.7940252 +0.6460766 0.5370987 0.7940252 +0.6698526 0.5370987 0.7940252 +0.6925839 0.5370987 0.7940252 +0.7143866 0.5370987 0.7940252 +0.7353569 0.5370987 0.7940252 +0.7555758 0.5370987 0.7940252 +0.7751122 0.5370987 0.7940252 +0.7940252 0.5370987 0.7940252 +0.8123661 0.5370987 0.7940252 +0.8301795 0.5370987 0.7940252 +0.8475045 0.5370987 0.7940252 +0.8643761 0.5370987 0.7940252 +0.880825 0.5370987 0.7940252 +0.8968787 0.5370987 0.7940252 +0.9125621 0.5370987 0.7940252 +0.9278974 0.5370987 0.7940252 +0.9429048 0.5370987 0.7940252 +0.9576028 0.5370987 0.7940252 +0.9720079 0.5370987 0.7940252 +0.9861357 0.5370987 0.7940252 +1 0.5370987 0.7940252 +0 0.5668815 0.7940252 +0.1939468 0.5668815 0.7940252 +0.2773041 0.5668815 0.7940252 +0.3384659 0.5668815 0.7940252 +0.3885728 0.5668815 0.7940252 +0.4317928 0.5668815 0.7940252 +0.470214 0.5668815 0.7940252 +0.5050551 0.5668815 0.7940252 +0.5370987 0.5668815 0.7940252 +0.5668815 0.5668815 0.7940252 +0.5947903 0.5668815 0.7940252 +0.6211144 0.5668815 0.7940252 +0.6460766 0.5668815 0.7940252 +0.6698526 0.5668815 0.7940252 +0.6925839 0.5668815 0.7940252 +0.7143866 0.5668815 0.7940252 +0.7353569 0.5668815 0.7940252 +0.7555758 0.5668815 0.7940252 +0.7751122 0.5668815 0.7940252 +0.7940252 0.5668815 0.7940252 +0.8123661 0.5668815 0.7940252 +0.8301795 0.5668815 0.7940252 +0.8475045 0.5668815 0.7940252 +0.8643761 0.5668815 0.7940252 +0.880825 0.5668815 0.7940252 +0.8968787 0.5668815 0.7940252 +0.9125621 0.5668815 0.7940252 +0.9278974 0.5668815 0.7940252 +0.9429048 0.5668815 0.7940252 +0.9576028 0.5668815 0.7940252 +0.9720079 0.5668815 0.7940252 +0.9861357 0.5668815 0.7940252 +1 0.5668815 0.7940252 +0 0.5947903 0.7940252 +0.1939468 0.5947903 0.7940252 +0.2773041 0.5947903 0.7940252 +0.3384659 0.5947903 0.7940252 +0.3885728 0.5947903 0.7940252 +0.4317928 0.5947903 0.7940252 +0.470214 0.5947903 0.7940252 +0.5050551 0.5947903 0.7940252 +0.5370987 0.5947903 0.7940252 +0.5668815 0.5947903 0.7940252 +0.5947903 0.5947903 0.7940252 +0.6211144 0.5947903 0.7940252 +0.6460766 0.5947903 0.7940252 +0.6698526 0.5947903 0.7940252 +0.6925839 0.5947903 0.7940252 +0.7143866 0.5947903 0.7940252 +0.7353569 0.5947903 0.7940252 +0.7555758 0.5947903 0.7940252 +0.7751122 0.5947903 0.7940252 +0.7940252 0.5947903 0.7940252 +0.8123661 0.5947903 0.7940252 +0.8301795 0.5947903 0.7940252 +0.8475045 0.5947903 0.7940252 +0.8643761 0.5947903 0.7940252 +0.880825 0.5947903 0.7940252 +0.8968787 0.5947903 0.7940252 +0.9125621 0.5947903 0.7940252 +0.9278974 0.5947903 0.7940252 +0.9429048 0.5947903 0.7940252 +0.9576028 0.5947903 0.7940252 +0.9720079 0.5947903 0.7940252 +0.9861357 0.5947903 0.7940252 +1 0.5947903 0.7940252 +0 0.6211144 0.7940252 +0.1939468 0.6211144 0.7940252 +0.2773041 0.6211144 0.7940252 +0.3384659 0.6211144 0.7940252 +0.3885728 0.6211144 0.7940252 +0.4317928 0.6211144 0.7940252 +0.470214 0.6211144 0.7940252 +0.5050551 0.6211144 0.7940252 +0.5370987 0.6211144 0.7940252 +0.5668815 0.6211144 0.7940252 +0.5947903 0.6211144 0.7940252 +0.6211144 0.6211144 0.7940252 +0.6460766 0.6211144 0.7940252 +0.6698526 0.6211144 0.7940252 +0.6925839 0.6211144 0.7940252 +0.7143866 0.6211144 0.7940252 +0.7353569 0.6211144 0.7940252 +0.7555758 0.6211144 0.7940252 +0.7751122 0.6211144 0.7940252 +0.7940252 0.6211144 0.7940252 +0.8123661 0.6211144 0.7940252 +0.8301795 0.6211144 0.7940252 +0.8475045 0.6211144 0.7940252 +0.8643761 0.6211144 0.7940252 +0.880825 0.6211144 0.7940252 +0.8968787 0.6211144 0.7940252 +0.9125621 0.6211144 0.7940252 +0.9278974 0.6211144 0.7940252 +0.9429048 0.6211144 0.7940252 +0.9576028 0.6211144 0.7940252 +0.9720079 0.6211144 0.7940252 +0.9861357 0.6211144 0.7940252 +1 0.6211144 0.7940252 +0 0.6460766 0.7940252 +0.1939468 0.6460766 0.7940252 +0.2773041 0.6460766 0.7940252 +0.3384659 0.6460766 0.7940252 +0.3885728 0.6460766 0.7940252 +0.4317928 0.6460766 0.7940252 +0.470214 0.6460766 0.7940252 +0.5050551 0.6460766 0.7940252 +0.5370987 0.6460766 0.7940252 +0.5668815 0.6460766 0.7940252 +0.5947903 0.6460766 0.7940252 +0.6211144 0.6460766 0.7940252 +0.6460766 0.6460766 0.7940252 +0.6698526 0.6460766 0.7940252 +0.6925839 0.6460766 0.7940252 +0.7143866 0.6460766 0.7940252 +0.7353569 0.6460766 0.7940252 +0.7555758 0.6460766 0.7940252 +0.7751122 0.6460766 0.7940252 +0.7940252 0.6460766 0.7940252 +0.8123661 0.6460766 0.7940252 +0.8301795 0.6460766 0.7940252 +0.8475045 0.6460766 0.7940252 +0.8643761 0.6460766 0.7940252 +0.880825 0.6460766 0.7940252 +0.8968787 0.6460766 0.7940252 +0.9125621 0.6460766 0.7940252 +0.9278974 0.6460766 0.7940252 +0.9429048 0.6460766 0.7940252 +0.9576028 0.6460766 0.7940252 +0.9720079 0.6460766 0.7940252 +0.9861357 0.6460766 0.7940252 +1 0.6460766 0.7940252 +0 0.6698526 0.7940252 +0.1939468 0.6698526 0.7940252 +0.2773041 0.6698526 0.7940252 +0.3384659 0.6698526 0.7940252 +0.3885728 0.6698526 0.7940252 +0.4317928 0.6698526 0.7940252 +0.470214 0.6698526 0.7940252 +0.5050551 0.6698526 0.7940252 +0.5370987 0.6698526 0.7940252 +0.5668815 0.6698526 0.7940252 +0.5947903 0.6698526 0.7940252 +0.6211144 0.6698526 0.7940252 +0.6460766 0.6698526 0.7940252 +0.6698526 0.6698526 0.7940252 +0.6925839 0.6698526 0.7940252 +0.7143866 0.6698526 0.7940252 +0.7353569 0.6698526 0.7940252 +0.7555758 0.6698526 0.7940252 +0.7751122 0.6698526 0.7940252 +0.7940252 0.6698526 0.7940252 +0.8123661 0.6698526 0.7940252 +0.8301795 0.6698526 0.7940252 +0.8475045 0.6698526 0.7940252 +0.8643761 0.6698526 0.7940252 +0.880825 0.6698526 0.7940252 +0.8968787 0.6698526 0.7940252 +0.9125621 0.6698526 0.7940252 +0.9278974 0.6698526 0.7940252 +0.9429048 0.6698526 0.7940252 +0.9576028 0.6698526 0.7940252 +0.9720079 0.6698526 0.7940252 +0.9861357 0.6698526 0.7940252 +1 0.6698526 0.7940252 +0 0.6925839 0.7940252 +0.1939468 0.6925839 0.7940252 +0.2773041 0.6925839 0.7940252 +0.3384659 0.6925839 0.7940252 +0.3885728 0.6925839 0.7940252 +0.4317928 0.6925839 0.7940252 +0.470214 0.6925839 0.7940252 +0.5050551 0.6925839 0.7940252 +0.5370987 0.6925839 0.7940252 +0.5668815 0.6925839 0.7940252 +0.5947903 0.6925839 0.7940252 +0.6211144 0.6925839 0.7940252 +0.6460766 0.6925839 0.7940252 +0.6698526 0.6925839 0.7940252 +0.6925839 0.6925839 0.7940252 +0.7143866 0.6925839 0.7940252 +0.7353569 0.6925839 0.7940252 +0.7555758 0.6925839 0.7940252 +0.7751122 0.6925839 0.7940252 +0.7940252 0.6925839 0.7940252 +0.8123661 0.6925839 0.7940252 +0.8301795 0.6925839 0.7940252 +0.8475045 0.6925839 0.7940252 +0.8643761 0.6925839 0.7940252 +0.880825 0.6925839 0.7940252 +0.8968787 0.6925839 0.7940252 +0.9125621 0.6925839 0.7940252 +0.9278974 0.6925839 0.7940252 +0.9429048 0.6925839 0.7940252 +0.9576028 0.6925839 0.7940252 +0.9720079 0.6925839 0.7940252 +0.9861357 0.6925839 0.7940252 +1 0.6925839 0.7940252 +0 0.7143866 0.7940252 +0.1939468 0.7143866 0.7940252 +0.2773041 0.7143866 0.7940252 +0.3384659 0.7143866 0.7940252 +0.3885728 0.7143866 0.7940252 +0.4317928 0.7143866 0.7940252 +0.470214 0.7143866 0.7940252 +0.5050551 0.7143866 0.7940252 +0.5370987 0.7143866 0.7940252 +0.5668815 0.7143866 0.7940252 +0.5947903 0.7143866 0.7940252 +0.6211144 0.7143866 0.7940252 +0.6460766 0.7143866 0.7940252 +0.6698526 0.7143866 0.7940252 +0.6925839 0.7143866 0.7940252 +0.7143866 0.7143866 0.7940252 +0.7353569 0.7143866 0.7940252 +0.7555758 0.7143866 0.7940252 +0.7751122 0.7143866 0.7940252 +0.7940252 0.7143866 0.7940252 +0.8123661 0.7143866 0.7940252 +0.8301795 0.7143866 0.7940252 +0.8475045 0.7143866 0.7940252 +0.8643761 0.7143866 0.7940252 +0.880825 0.7143866 0.7940252 +0.8968787 0.7143866 0.7940252 +0.9125621 0.7143866 0.7940252 +0.9278974 0.7143866 0.7940252 +0.9429048 0.7143866 0.7940252 +0.9576028 0.7143866 0.7940252 +0.9720079 0.7143866 0.7940252 +0.9861357 0.7143866 0.7940252 +1 0.7143866 0.7940252 +0 0.7353569 0.7940252 +0.1939468 0.7353569 0.7940252 +0.2773041 0.7353569 0.7940252 +0.3384659 0.7353569 0.7940252 +0.3885728 0.7353569 0.7940252 +0.4317928 0.7353569 0.7940252 +0.470214 0.7353569 0.7940252 +0.5050551 0.7353569 0.7940252 +0.5370987 0.7353569 0.7940252 +0.5668815 0.7353569 0.7940252 +0.5947903 0.7353569 0.7940252 +0.6211144 0.7353569 0.7940252 +0.6460766 0.7353569 0.7940252 +0.6698526 0.7353569 0.7940252 +0.6925839 0.7353569 0.7940252 +0.7143866 0.7353569 0.7940252 +0.7353569 0.7353569 0.7940252 +0.7555758 0.7353569 0.7940252 +0.7751122 0.7353569 0.7940252 +0.7940252 0.7353569 0.7940252 +0.8123661 0.7353569 0.7940252 +0.8301795 0.7353569 0.7940252 +0.8475045 0.7353569 0.7940252 +0.8643761 0.7353569 0.7940252 +0.880825 0.7353569 0.7940252 +0.8968787 0.7353569 0.7940252 +0.9125621 0.7353569 0.7940252 +0.9278974 0.7353569 0.7940252 +0.9429048 0.7353569 0.7940252 +0.9576028 0.7353569 0.7940252 +0.9720079 0.7353569 0.7940252 +0.9861357 0.7353569 0.7940252 +1 0.7353569 0.7940252 +0 0.7555758 0.7940252 +0.1939468 0.7555758 0.7940252 +0.2773041 0.7555758 0.7940252 +0.3384659 0.7555758 0.7940252 +0.3885728 0.7555758 0.7940252 +0.4317928 0.7555758 0.7940252 +0.470214 0.7555758 0.7940252 +0.5050551 0.7555758 0.7940252 +0.5370987 0.7555758 0.7940252 +0.5668815 0.7555758 0.7940252 +0.5947903 0.7555758 0.7940252 +0.6211144 0.7555758 0.7940252 +0.6460766 0.7555758 0.7940252 +0.6698526 0.7555758 0.7940252 +0.6925839 0.7555758 0.7940252 +0.7143866 0.7555758 0.7940252 +0.7353569 0.7555758 0.7940252 +0.7555758 0.7555758 0.7940252 +0.7751122 0.7555758 0.7940252 +0.7940252 0.7555758 0.7940252 +0.8123661 0.7555758 0.7940252 +0.8301795 0.7555758 0.7940252 +0.8475045 0.7555758 0.7940252 +0.8643761 0.7555758 0.7940252 +0.880825 0.7555758 0.7940252 +0.8968787 0.7555758 0.7940252 +0.9125621 0.7555758 0.7940252 +0.9278974 0.7555758 0.7940252 +0.9429048 0.7555758 0.7940252 +0.9576028 0.7555758 0.7940252 +0.9720079 0.7555758 0.7940252 +0.9861357 0.7555758 0.7940252 +1 0.7555758 0.7940252 +0 0.7751122 0.7940252 +0.1939468 0.7751122 0.7940252 +0.2773041 0.7751122 0.7940252 +0.3384659 0.7751122 0.7940252 +0.3885728 0.7751122 0.7940252 +0.4317928 0.7751122 0.7940252 +0.470214 0.7751122 0.7940252 +0.5050551 0.7751122 0.7940252 +0.5370987 0.7751122 0.7940252 +0.5668815 0.7751122 0.7940252 +0.5947903 0.7751122 0.7940252 +0.6211144 0.7751122 0.7940252 +0.6460766 0.7751122 0.7940252 +0.6698526 0.7751122 0.7940252 +0.6925839 0.7751122 0.7940252 +0.7143866 0.7751122 0.7940252 +0.7353569 0.7751122 0.7940252 +0.7555758 0.7751122 0.7940252 +0.7751122 0.7751122 0.7940252 +0.7940252 0.7751122 0.7940252 +0.8123661 0.7751122 0.7940252 +0.8301795 0.7751122 0.7940252 +0.8475045 0.7751122 0.7940252 +0.8643761 0.7751122 0.7940252 +0.880825 0.7751122 0.7940252 +0.8968787 0.7751122 0.7940252 +0.9125621 0.7751122 0.7940252 +0.9278974 0.7751122 0.7940252 +0.9429048 0.7751122 0.7940252 +0.9576028 0.7751122 0.7940252 +0.9720079 0.7751122 0.7940252 +0.9861357 0.7751122 0.7940252 +1 0.7751122 0.7940252 +0 0.7940252 0.7940252 +0.1939468 0.7940252 0.7940252 +0.2773041 0.7940252 0.7940252 +0.3384659 0.7940252 0.7940252 +0.3885728 0.7940252 0.7940252 +0.4317928 0.7940252 0.7940252 +0.470214 0.7940252 0.7940252 +0.5050551 0.7940252 0.7940252 +0.5370987 0.7940252 0.7940252 +0.5668815 0.7940252 0.7940252 +0.5947903 0.7940252 0.7940252 +0.6211144 0.7940252 0.7940252 +0.6460766 0.7940252 0.7940252 +0.6698526 0.7940252 0.7940252 +0.6925839 0.7940252 0.7940252 +0.7143866 0.7940252 0.7940252 +0.7353569 0.7940252 0.7940252 +0.7555758 0.7940252 0.7940252 +0.7751122 0.7940252 0.7940252 +0.7940252 0.7940252 0.7940252 +0.8123661 0.7940252 0.7940252 +0.8301795 0.7940252 0.7940252 +0.8475045 0.7940252 0.7940252 +0.8643761 0.7940252 0.7940252 +0.880825 0.7940252 0.7940252 +0.8968787 0.7940252 0.7940252 +0.9125621 0.7940252 0.7940252 +0.9278974 0.7940252 0.7940252 +0.9429048 0.7940252 0.7940252 +0.9576028 0.7940252 0.7940252 +0.9720079 0.7940252 0.7940252 +0.9861357 0.7940252 0.7940252 +1 0.7940252 0.7940252 +0 0.8123661 0.7940252 +0.1939468 0.8123661 0.7940252 +0.2773041 0.8123661 0.7940252 +0.3384659 0.8123661 0.7940252 +0.3885728 0.8123661 0.7940252 +0.4317928 0.8123661 0.7940252 +0.470214 0.8123661 0.7940252 +0.5050551 0.8123661 0.7940252 +0.5370987 0.8123661 0.7940252 +0.5668815 0.8123661 0.7940252 +0.5947903 0.8123661 0.7940252 +0.6211144 0.8123661 0.7940252 +0.6460766 0.8123661 0.7940252 +0.6698526 0.8123661 0.7940252 +0.6925839 0.8123661 0.7940252 +0.7143866 0.8123661 0.7940252 +0.7353569 0.8123661 0.7940252 +0.7555758 0.8123661 0.7940252 +0.7751122 0.8123661 0.7940252 +0.7940252 0.8123661 0.7940252 +0.8123661 0.8123661 0.7940252 +0.8301795 0.8123661 0.7940252 +0.8475045 0.8123661 0.7940252 +0.8643761 0.8123661 0.7940252 +0.880825 0.8123661 0.7940252 +0.8968787 0.8123661 0.7940252 +0.9125621 0.8123661 0.7940252 +0.9278974 0.8123661 0.7940252 +0.9429048 0.8123661 0.7940252 +0.9576028 0.8123661 0.7940252 +0.9720079 0.8123661 0.7940252 +0.9861357 0.8123661 0.7940252 +1 0.8123661 0.7940252 +0 0.8301795 0.7940252 +0.1939468 0.8301795 0.7940252 +0.2773041 0.8301795 0.7940252 +0.3384659 0.8301795 0.7940252 +0.3885728 0.8301795 0.7940252 +0.4317928 0.8301795 0.7940252 +0.470214 0.8301795 0.7940252 +0.5050551 0.8301795 0.7940252 +0.5370987 0.8301795 0.7940252 +0.5668815 0.8301795 0.7940252 +0.5947903 0.8301795 0.7940252 +0.6211144 0.8301795 0.7940252 +0.6460766 0.8301795 0.7940252 +0.6698526 0.8301795 0.7940252 +0.6925839 0.8301795 0.7940252 +0.7143866 0.8301795 0.7940252 +0.7353569 0.8301795 0.7940252 +0.7555758 0.8301795 0.7940252 +0.7751122 0.8301795 0.7940252 +0.7940252 0.8301795 0.7940252 +0.8123661 0.8301795 0.7940252 +0.8301795 0.8301795 0.7940252 +0.8475045 0.8301795 0.7940252 +0.8643761 0.8301795 0.7940252 +0.880825 0.8301795 0.7940252 +0.8968787 0.8301795 0.7940252 +0.9125621 0.8301795 0.7940252 +0.9278974 0.8301795 0.7940252 +0.9429048 0.8301795 0.7940252 +0.9576028 0.8301795 0.7940252 +0.9720079 0.8301795 0.7940252 +0.9861357 0.8301795 0.7940252 +1 0.8301795 0.7940252 +0 0.8475045 0.7940252 +0.1939468 0.8475045 0.7940252 +0.2773041 0.8475045 0.7940252 +0.3384659 0.8475045 0.7940252 +0.3885728 0.8475045 0.7940252 +0.4317928 0.8475045 0.7940252 +0.470214 0.8475045 0.7940252 +0.5050551 0.8475045 0.7940252 +0.5370987 0.8475045 0.7940252 +0.5668815 0.8475045 0.7940252 +0.5947903 0.8475045 0.7940252 +0.6211144 0.8475045 0.7940252 +0.6460766 0.8475045 0.7940252 +0.6698526 0.8475045 0.7940252 +0.6925839 0.8475045 0.7940252 +0.7143866 0.8475045 0.7940252 +0.7353569 0.8475045 0.7940252 +0.7555758 0.8475045 0.7940252 +0.7751122 0.8475045 0.7940252 +0.7940252 0.8475045 0.7940252 +0.8123661 0.8475045 0.7940252 +0.8301795 0.8475045 0.7940252 +0.8475045 0.8475045 0.7940252 +0.8643761 0.8475045 0.7940252 +0.880825 0.8475045 0.7940252 +0.8968787 0.8475045 0.7940252 +0.9125621 0.8475045 0.7940252 +0.9278974 0.8475045 0.7940252 +0.9429048 0.8475045 0.7940252 +0.9576028 0.8475045 0.7940252 +0.9720079 0.8475045 0.7940252 +0.9861357 0.8475045 0.7940252 +1 0.8475045 0.7940252 +0 0.8643761 0.7940252 +0.1939468 0.8643761 0.7940252 +0.2773041 0.8643761 0.7940252 +0.3384659 0.8643761 0.7940252 +0.3885728 0.8643761 0.7940252 +0.4317928 0.8643761 0.7940252 +0.470214 0.8643761 0.7940252 +0.5050551 0.8643761 0.7940252 +0.5370987 0.8643761 0.7940252 +0.5668815 0.8643761 0.7940252 +0.5947903 0.8643761 0.7940252 +0.6211144 0.8643761 0.7940252 +0.6460766 0.8643761 0.7940252 +0.6698526 0.8643761 0.7940252 +0.6925839 0.8643761 0.7940252 +0.7143866 0.8643761 0.7940252 +0.7353569 0.8643761 0.7940252 +0.7555758 0.8643761 0.7940252 +0.7751122 0.8643761 0.7940252 +0.7940252 0.8643761 0.7940252 +0.8123661 0.8643761 0.7940252 +0.8301795 0.8643761 0.7940252 +0.8475045 0.8643761 0.7940252 +0.8643761 0.8643761 0.7940252 +0.880825 0.8643761 0.7940252 +0.8968787 0.8643761 0.7940252 +0.9125621 0.8643761 0.7940252 +0.9278974 0.8643761 0.7940252 +0.9429048 0.8643761 0.7940252 +0.9576028 0.8643761 0.7940252 +0.9720079 0.8643761 0.7940252 +0.9861357 0.8643761 0.7940252 +1 0.8643761 0.7940252 +0 0.880825 0.7940252 +0.1939468 0.880825 0.7940252 +0.2773041 0.880825 0.7940252 +0.3384659 0.880825 0.7940252 +0.3885728 0.880825 0.7940252 +0.4317928 0.880825 0.7940252 +0.470214 0.880825 0.7940252 +0.5050551 0.880825 0.7940252 +0.5370987 0.880825 0.7940252 +0.5668815 0.880825 0.7940252 +0.5947903 0.880825 0.7940252 +0.6211144 0.880825 0.7940252 +0.6460766 0.880825 0.7940252 +0.6698526 0.880825 0.7940252 +0.6925839 0.880825 0.7940252 +0.7143866 0.880825 0.7940252 +0.7353569 0.880825 0.7940252 +0.7555758 0.880825 0.7940252 +0.7751122 0.880825 0.7940252 +0.7940252 0.880825 0.7940252 +0.8123661 0.880825 0.7940252 +0.8301795 0.880825 0.7940252 +0.8475045 0.880825 0.7940252 +0.8643761 0.880825 0.7940252 +0.880825 0.880825 0.7940252 +0.8968787 0.880825 0.7940252 +0.9125621 0.880825 0.7940252 +0.9278974 0.880825 0.7940252 +0.9429048 0.880825 0.7940252 +0.9576028 0.880825 0.7940252 +0.9720079 0.880825 0.7940252 +0.9861357 0.880825 0.7940252 +1 0.880825 0.7940252 +0 0.8968787 0.7940252 +0.1939468 0.8968787 0.7940252 +0.2773041 0.8968787 0.7940252 +0.3384659 0.8968787 0.7940252 +0.3885728 0.8968787 0.7940252 +0.4317928 0.8968787 0.7940252 +0.470214 0.8968787 0.7940252 +0.5050551 0.8968787 0.7940252 +0.5370987 0.8968787 0.7940252 +0.5668815 0.8968787 0.7940252 +0.5947903 0.8968787 0.7940252 +0.6211144 0.8968787 0.7940252 +0.6460766 0.8968787 0.7940252 +0.6698526 0.8968787 0.7940252 +0.6925839 0.8968787 0.7940252 +0.7143866 0.8968787 0.7940252 +0.7353569 0.8968787 0.7940252 +0.7555758 0.8968787 0.7940252 +0.7751122 0.8968787 0.7940252 +0.7940252 0.8968787 0.7940252 +0.8123661 0.8968787 0.7940252 +0.8301795 0.8968787 0.7940252 +0.8475045 0.8968787 0.7940252 +0.8643761 0.8968787 0.7940252 +0.880825 0.8968787 0.7940252 +0.8968787 0.8968787 0.7940252 +0.9125621 0.8968787 0.7940252 +0.9278974 0.8968787 0.7940252 +0.9429048 0.8968787 0.7940252 +0.9576028 0.8968787 0.7940252 +0.9720079 0.8968787 0.7940252 +0.9861357 0.8968787 0.7940252 +1 0.8968787 0.7940252 +0 0.9125621 0.7940252 +0.1939468 0.9125621 0.7940252 +0.2773041 0.9125621 0.7940252 +0.3384659 0.9125621 0.7940252 +0.3885728 0.9125621 0.7940252 +0.4317928 0.9125621 0.7940252 +0.470214 0.9125621 0.7940252 +0.5050551 0.9125621 0.7940252 +0.5370987 0.9125621 0.7940252 +0.5668815 0.9125621 0.7940252 +0.5947903 0.9125621 0.7940252 +0.6211144 0.9125621 0.7940252 +0.6460766 0.9125621 0.7940252 +0.6698526 0.9125621 0.7940252 +0.6925839 0.9125621 0.7940252 +0.7143866 0.9125621 0.7940252 +0.7353569 0.9125621 0.7940252 +0.7555758 0.9125621 0.7940252 +0.7751122 0.9125621 0.7940252 +0.7940252 0.9125621 0.7940252 +0.8123661 0.9125621 0.7940252 +0.8301795 0.9125621 0.7940252 +0.8475045 0.9125621 0.7940252 +0.8643761 0.9125621 0.7940252 +0.880825 0.9125621 0.7940252 +0.8968787 0.9125621 0.7940252 +0.9125621 0.9125621 0.7940252 +0.9278974 0.9125621 0.7940252 +0.9429048 0.9125621 0.7940252 +0.9576028 0.9125621 0.7940252 +0.9720079 0.9125621 0.7940252 +0.9861357 0.9125621 0.7940252 +1 0.9125621 0.7940252 +0 0.9278974 0.7940252 +0.1939468 0.9278974 0.7940252 +0.2773041 0.9278974 0.7940252 +0.3384659 0.9278974 0.7940252 +0.3885728 0.9278974 0.7940252 +0.4317928 0.9278974 0.7940252 +0.470214 0.9278974 0.7940252 +0.5050551 0.9278974 0.7940252 +0.5370987 0.9278974 0.7940252 +0.5668815 0.9278974 0.7940252 +0.5947903 0.9278974 0.7940252 +0.6211144 0.9278974 0.7940252 +0.6460766 0.9278974 0.7940252 +0.6698526 0.9278974 0.7940252 +0.6925839 0.9278974 0.7940252 +0.7143866 0.9278974 0.7940252 +0.7353569 0.9278974 0.7940252 +0.7555758 0.9278974 0.7940252 +0.7751122 0.9278974 0.7940252 +0.7940252 0.9278974 0.7940252 +0.8123661 0.9278974 0.7940252 +0.8301795 0.9278974 0.7940252 +0.8475045 0.9278974 0.7940252 +0.8643761 0.9278974 0.7940252 +0.880825 0.9278974 0.7940252 +0.8968787 0.9278974 0.7940252 +0.9125621 0.9278974 0.7940252 +0.9278974 0.9278974 0.7940252 +0.9429048 0.9278974 0.7940252 +0.9576028 0.9278974 0.7940252 +0.9720079 0.9278974 0.7940252 +0.9861357 0.9278974 0.7940252 +1 0.9278974 0.7940252 +0 0.9429048 0.7940252 +0.1939468 0.9429048 0.7940252 +0.2773041 0.9429048 0.7940252 +0.3384659 0.9429048 0.7940252 +0.3885728 0.9429048 0.7940252 +0.4317928 0.9429048 0.7940252 +0.470214 0.9429048 0.7940252 +0.5050551 0.9429048 0.7940252 +0.5370987 0.9429048 0.7940252 +0.5668815 0.9429048 0.7940252 +0.5947903 0.9429048 0.7940252 +0.6211144 0.9429048 0.7940252 +0.6460766 0.9429048 0.7940252 +0.6698526 0.9429048 0.7940252 +0.6925839 0.9429048 0.7940252 +0.7143866 0.9429048 0.7940252 +0.7353569 0.9429048 0.7940252 +0.7555758 0.9429048 0.7940252 +0.7751122 0.9429048 0.7940252 +0.7940252 0.9429048 0.7940252 +0.8123661 0.9429048 0.7940252 +0.8301795 0.9429048 0.7940252 +0.8475045 0.9429048 0.7940252 +0.8643761 0.9429048 0.7940252 +0.880825 0.9429048 0.7940252 +0.8968787 0.9429048 0.7940252 +0.9125621 0.9429048 0.7940252 +0.9278974 0.9429048 0.7940252 +0.9429048 0.9429048 0.7940252 +0.9576028 0.9429048 0.7940252 +0.9720079 0.9429048 0.7940252 +0.9861357 0.9429048 0.7940252 +1 0.9429048 0.7940252 +0 0.9576028 0.7940252 +0.1939468 0.9576028 0.7940252 +0.2773041 0.9576028 0.7940252 +0.3384659 0.9576028 0.7940252 +0.3885728 0.9576028 0.7940252 +0.4317928 0.9576028 0.7940252 +0.470214 0.9576028 0.7940252 +0.5050551 0.9576028 0.7940252 +0.5370987 0.9576028 0.7940252 +0.5668815 0.9576028 0.7940252 +0.5947903 0.9576028 0.7940252 +0.6211144 0.9576028 0.7940252 +0.6460766 0.9576028 0.7940252 +0.6698526 0.9576028 0.7940252 +0.6925839 0.9576028 0.7940252 +0.7143866 0.9576028 0.7940252 +0.7353569 0.9576028 0.7940252 +0.7555758 0.9576028 0.7940252 +0.7751122 0.9576028 0.7940252 +0.7940252 0.9576028 0.7940252 +0.8123661 0.9576028 0.7940252 +0.8301795 0.9576028 0.7940252 +0.8475045 0.9576028 0.7940252 +0.8643761 0.9576028 0.7940252 +0.880825 0.9576028 0.7940252 +0.8968787 0.9576028 0.7940252 +0.9125621 0.9576028 0.7940252 +0.9278974 0.9576028 0.7940252 +0.9429048 0.9576028 0.7940252 +0.9576028 0.9576028 0.7940252 +0.9720079 0.9576028 0.7940252 +0.9861357 0.9576028 0.7940252 +1 0.9576028 0.7940252 +0 0.9720079 0.7940252 +0.1939468 0.9720079 0.7940252 +0.2773041 0.9720079 0.7940252 +0.3384659 0.9720079 0.7940252 +0.3885728 0.9720079 0.7940252 +0.4317928 0.9720079 0.7940252 +0.470214 0.9720079 0.7940252 +0.5050551 0.9720079 0.7940252 +0.5370987 0.9720079 0.7940252 +0.5668815 0.9720079 0.7940252 +0.5947903 0.9720079 0.7940252 +0.6211144 0.9720079 0.7940252 +0.6460766 0.9720079 0.7940252 +0.6698526 0.9720079 0.7940252 +0.6925839 0.9720079 0.7940252 +0.7143866 0.9720079 0.7940252 +0.7353569 0.9720079 0.7940252 +0.7555758 0.9720079 0.7940252 +0.7751122 0.9720079 0.7940252 +0.7940252 0.9720079 0.7940252 +0.8123661 0.9720079 0.7940252 +0.8301795 0.9720079 0.7940252 +0.8475045 0.9720079 0.7940252 +0.8643761 0.9720079 0.7940252 +0.880825 0.9720079 0.7940252 +0.8968787 0.9720079 0.7940252 +0.9125621 0.9720079 0.7940252 +0.9278974 0.9720079 0.7940252 +0.9429048 0.9720079 0.7940252 +0.9576028 0.9720079 0.7940252 +0.9720079 0.9720079 0.7940252 +0.9861357 0.9720079 0.7940252 +1 0.9720079 0.7940252 +0 0.9861357 0.7940252 +0.1939468 0.9861357 0.7940252 +0.2773041 0.9861357 0.7940252 +0.3384659 0.9861357 0.7940252 +0.3885728 0.9861357 0.7940252 +0.4317928 0.9861357 0.7940252 +0.470214 0.9861357 0.7940252 +0.5050551 0.9861357 0.7940252 +0.5370987 0.9861357 0.7940252 +0.5668815 0.9861357 0.7940252 +0.5947903 0.9861357 0.7940252 +0.6211144 0.9861357 0.7940252 +0.6460766 0.9861357 0.7940252 +0.6698526 0.9861357 0.7940252 +0.6925839 0.9861357 0.7940252 +0.7143866 0.9861357 0.7940252 +0.7353569 0.9861357 0.7940252 +0.7555758 0.9861357 0.7940252 +0.7751122 0.9861357 0.7940252 +0.7940252 0.9861357 0.7940252 +0.8123661 0.9861357 0.7940252 +0.8301795 0.9861357 0.7940252 +0.8475045 0.9861357 0.7940252 +0.8643761 0.9861357 0.7940252 +0.880825 0.9861357 0.7940252 +0.8968787 0.9861357 0.7940252 +0.9125621 0.9861357 0.7940252 +0.9278974 0.9861357 0.7940252 +0.9429048 0.9861357 0.7940252 +0.9576028 0.9861357 0.7940252 +0.9720079 0.9861357 0.7940252 +0.9861357 0.9861357 0.7940252 +1 0.9861357 0.7940252 +0 1 0.7940252 +0.1939468 1 0.7940252 +0.2773041 1 0.7940252 +0.3384659 1 0.7940252 +0.3885728 1 0.7940252 +0.4317928 1 0.7940252 +0.470214 1 0.7940252 +0.5050551 1 0.7940252 +0.5370987 1 0.7940252 +0.5668815 1 0.7940252 +0.5947903 1 0.7940252 +0.6211144 1 0.7940252 +0.6460766 1 0.7940252 +0.6698526 1 0.7940252 +0.6925839 1 0.7940252 +0.7143866 1 0.7940252 +0.7353569 1 0.7940252 +0.7555758 1 0.7940252 +0.7751122 1 0.7940252 +0.7940252 1 0.7940252 +0.8123661 1 0.7940252 +0.8301795 1 0.7940252 +0.8475045 1 0.7940252 +0.8643761 1 0.7940252 +0.880825 1 0.7940252 +0.8968787 1 0.7940252 +0.9125621 1 0.7940252 +0.9278974 1 0.7940252 +0.9429048 1 0.7940252 +0.9576028 1 0.7940252 +0.9720079 1 0.7940252 +0.9861357 1 0.7940252 +1 1 0.7940252 +0 0 0.8123661 +0.1939468 0 0.8123661 +0.2773041 0 0.8123661 +0.3384659 0 0.8123661 +0.3885728 0 0.8123661 +0.4317928 0 0.8123661 +0.470214 0 0.8123661 +0.5050551 0 0.8123661 +0.5370987 0 0.8123661 +0.5668815 0 0.8123661 +0.5947903 0 0.8123661 +0.6211144 0 0.8123661 +0.6460766 0 0.8123661 +0.6698526 0 0.8123661 +0.6925839 0 0.8123661 +0.7143866 0 0.8123661 +0.7353569 0 0.8123661 +0.7555758 0 0.8123661 +0.7751122 0 0.8123661 +0.7940252 0 0.8123661 +0.8123661 0 0.8123661 +0.8301795 0 0.8123661 +0.8475045 0 0.8123661 +0.8643761 0 0.8123661 +0.880825 0 0.8123661 +0.8968787 0 0.8123661 +0.9125621 0 0.8123661 +0.9278974 0 0.8123661 +0.9429048 0 0.8123661 +0.9576028 0 0.8123661 +0.9720079 0 0.8123661 +0.9861357 0 0.8123661 +1 0 0.8123661 +0 0.1939468 0.8123661 +0.1939468 0.1939468 0.8123661 +0.2773041 0.1939468 0.8123661 +0.3384659 0.1939468 0.8123661 +0.3885728 0.1939468 0.8123661 +0.4317928 0.1939468 0.8123661 +0.470214 0.1939468 0.8123661 +0.5050551 0.1939468 0.8123661 +0.5370987 0.1939468 0.8123661 +0.5668815 0.1939468 0.8123661 +0.5947903 0.1939468 0.8123661 +0.6211144 0.1939468 0.8123661 +0.6460766 0.1939468 0.8123661 +0.6698526 0.1939468 0.8123661 +0.6925839 0.1939468 0.8123661 +0.7143866 0.1939468 0.8123661 +0.7353569 0.1939468 0.8123661 +0.7555758 0.1939468 0.8123661 +0.7751122 0.1939468 0.8123661 +0.7940252 0.1939468 0.8123661 +0.8123661 0.1939468 0.8123661 +0.8301795 0.1939468 0.8123661 +0.8475045 0.1939468 0.8123661 +0.8643761 0.1939468 0.8123661 +0.880825 0.1939468 0.8123661 +0.8968787 0.1939468 0.8123661 +0.9125621 0.1939468 0.8123661 +0.9278974 0.1939468 0.8123661 +0.9429048 0.1939468 0.8123661 +0.9576028 0.1939468 0.8123661 +0.9720079 0.1939468 0.8123661 +0.9861357 0.1939468 0.8123661 +1 0.1939468 0.8123661 +0 0.2773041 0.8123661 +0.1939468 0.2773041 0.8123661 +0.2773041 0.2773041 0.8123661 +0.3384659 0.2773041 0.8123661 +0.3885728 0.2773041 0.8123661 +0.4317928 0.2773041 0.8123661 +0.470214 0.2773041 0.8123661 +0.5050551 0.2773041 0.8123661 +0.5370987 0.2773041 0.8123661 +0.5668815 0.2773041 0.8123661 +0.5947903 0.2773041 0.8123661 +0.6211144 0.2773041 0.8123661 +0.6460766 0.2773041 0.8123661 +0.6698526 0.2773041 0.8123661 +0.6925839 0.2773041 0.8123661 +0.7143866 0.2773041 0.8123661 +0.7353569 0.2773041 0.8123661 +0.7555758 0.2773041 0.8123661 +0.7751122 0.2773041 0.8123661 +0.7940252 0.2773041 0.8123661 +0.8123661 0.2773041 0.8123661 +0.8301795 0.2773041 0.8123661 +0.8475045 0.2773041 0.8123661 +0.8643761 0.2773041 0.8123661 +0.880825 0.2773041 0.8123661 +0.8968787 0.2773041 0.8123661 +0.9125621 0.2773041 0.8123661 +0.9278974 0.2773041 0.8123661 +0.9429048 0.2773041 0.8123661 +0.9576028 0.2773041 0.8123661 +0.9720079 0.2773041 0.8123661 +0.9861357 0.2773041 0.8123661 +1 0.2773041 0.8123661 +0 0.3384659 0.8123661 +0.1939468 0.3384659 0.8123661 +0.2773041 0.3384659 0.8123661 +0.3384659 0.3384659 0.8123661 +0.3885728 0.3384659 0.8123661 +0.4317928 0.3384659 0.8123661 +0.470214 0.3384659 0.8123661 +0.5050551 0.3384659 0.8123661 +0.5370987 0.3384659 0.8123661 +0.5668815 0.3384659 0.8123661 +0.5947903 0.3384659 0.8123661 +0.6211144 0.3384659 0.8123661 +0.6460766 0.3384659 0.8123661 +0.6698526 0.3384659 0.8123661 +0.6925839 0.3384659 0.8123661 +0.7143866 0.3384659 0.8123661 +0.7353569 0.3384659 0.8123661 +0.7555758 0.3384659 0.8123661 +0.7751122 0.3384659 0.8123661 +0.7940252 0.3384659 0.8123661 +0.8123661 0.3384659 0.8123661 +0.8301795 0.3384659 0.8123661 +0.8475045 0.3384659 0.8123661 +0.8643761 0.3384659 0.8123661 +0.880825 0.3384659 0.8123661 +0.8968787 0.3384659 0.8123661 +0.9125621 0.3384659 0.8123661 +0.9278974 0.3384659 0.8123661 +0.9429048 0.3384659 0.8123661 +0.9576028 0.3384659 0.8123661 +0.9720079 0.3384659 0.8123661 +0.9861357 0.3384659 0.8123661 +1 0.3384659 0.8123661 +0 0.3885728 0.8123661 +0.1939468 0.3885728 0.8123661 +0.2773041 0.3885728 0.8123661 +0.3384659 0.3885728 0.8123661 +0.3885728 0.3885728 0.8123661 +0.4317928 0.3885728 0.8123661 +0.470214 0.3885728 0.8123661 +0.5050551 0.3885728 0.8123661 +0.5370987 0.3885728 0.8123661 +0.5668815 0.3885728 0.8123661 +0.5947903 0.3885728 0.8123661 +0.6211144 0.3885728 0.8123661 +0.6460766 0.3885728 0.8123661 +0.6698526 0.3885728 0.8123661 +0.6925839 0.3885728 0.8123661 +0.7143866 0.3885728 0.8123661 +0.7353569 0.3885728 0.8123661 +0.7555758 0.3885728 0.8123661 +0.7751122 0.3885728 0.8123661 +0.7940252 0.3885728 0.8123661 +0.8123661 0.3885728 0.8123661 +0.8301795 0.3885728 0.8123661 +0.8475045 0.3885728 0.8123661 +0.8643761 0.3885728 0.8123661 +0.880825 0.3885728 0.8123661 +0.8968787 0.3885728 0.8123661 +0.9125621 0.3885728 0.8123661 +0.9278974 0.3885728 0.8123661 +0.9429048 0.3885728 0.8123661 +0.9576028 0.3885728 0.8123661 +0.9720079 0.3885728 0.8123661 +0.9861357 0.3885728 0.8123661 +1 0.3885728 0.8123661 +0 0.4317928 0.8123661 +0.1939468 0.4317928 0.8123661 +0.2773041 0.4317928 0.8123661 +0.3384659 0.4317928 0.8123661 +0.3885728 0.4317928 0.8123661 +0.4317928 0.4317928 0.8123661 +0.470214 0.4317928 0.8123661 +0.5050551 0.4317928 0.8123661 +0.5370987 0.4317928 0.8123661 +0.5668815 0.4317928 0.8123661 +0.5947903 0.4317928 0.8123661 +0.6211144 0.4317928 0.8123661 +0.6460766 0.4317928 0.8123661 +0.6698526 0.4317928 0.8123661 +0.6925839 0.4317928 0.8123661 +0.7143866 0.4317928 0.8123661 +0.7353569 0.4317928 0.8123661 +0.7555758 0.4317928 0.8123661 +0.7751122 0.4317928 0.8123661 +0.7940252 0.4317928 0.8123661 +0.8123661 0.4317928 0.8123661 +0.8301795 0.4317928 0.8123661 +0.8475045 0.4317928 0.8123661 +0.8643761 0.4317928 0.8123661 +0.880825 0.4317928 0.8123661 +0.8968787 0.4317928 0.8123661 +0.9125621 0.4317928 0.8123661 +0.9278974 0.4317928 0.8123661 +0.9429048 0.4317928 0.8123661 +0.9576028 0.4317928 0.8123661 +0.9720079 0.4317928 0.8123661 +0.9861357 0.4317928 0.8123661 +1 0.4317928 0.8123661 +0 0.470214 0.8123661 +0.1939468 0.470214 0.8123661 +0.2773041 0.470214 0.8123661 +0.3384659 0.470214 0.8123661 +0.3885728 0.470214 0.8123661 +0.4317928 0.470214 0.8123661 +0.470214 0.470214 0.8123661 +0.5050551 0.470214 0.8123661 +0.5370987 0.470214 0.8123661 +0.5668815 0.470214 0.8123661 +0.5947903 0.470214 0.8123661 +0.6211144 0.470214 0.8123661 +0.6460766 0.470214 0.8123661 +0.6698526 0.470214 0.8123661 +0.6925839 0.470214 0.8123661 +0.7143866 0.470214 0.8123661 +0.7353569 0.470214 0.8123661 +0.7555758 0.470214 0.8123661 +0.7751122 0.470214 0.8123661 +0.7940252 0.470214 0.8123661 +0.8123661 0.470214 0.8123661 +0.8301795 0.470214 0.8123661 +0.8475045 0.470214 0.8123661 +0.8643761 0.470214 0.8123661 +0.880825 0.470214 0.8123661 +0.8968787 0.470214 0.8123661 +0.9125621 0.470214 0.8123661 +0.9278974 0.470214 0.8123661 +0.9429048 0.470214 0.8123661 +0.9576028 0.470214 0.8123661 +0.9720079 0.470214 0.8123661 +0.9861357 0.470214 0.8123661 +1 0.470214 0.8123661 +0 0.5050551 0.8123661 +0.1939468 0.5050551 0.8123661 +0.2773041 0.5050551 0.8123661 +0.3384659 0.5050551 0.8123661 +0.3885728 0.5050551 0.8123661 +0.4317928 0.5050551 0.8123661 +0.470214 0.5050551 0.8123661 +0.5050551 0.5050551 0.8123661 +0.5370987 0.5050551 0.8123661 +0.5668815 0.5050551 0.8123661 +0.5947903 0.5050551 0.8123661 +0.6211144 0.5050551 0.8123661 +0.6460766 0.5050551 0.8123661 +0.6698526 0.5050551 0.8123661 +0.6925839 0.5050551 0.8123661 +0.7143866 0.5050551 0.8123661 +0.7353569 0.5050551 0.8123661 +0.7555758 0.5050551 0.8123661 +0.7751122 0.5050551 0.8123661 +0.7940252 0.5050551 0.8123661 +0.8123661 0.5050551 0.8123661 +0.8301795 0.5050551 0.8123661 +0.8475045 0.5050551 0.8123661 +0.8643761 0.5050551 0.8123661 +0.880825 0.5050551 0.8123661 +0.8968787 0.5050551 0.8123661 +0.9125621 0.5050551 0.8123661 +0.9278974 0.5050551 0.8123661 +0.9429048 0.5050551 0.8123661 +0.9576028 0.5050551 0.8123661 +0.9720079 0.5050551 0.8123661 +0.9861357 0.5050551 0.8123661 +1 0.5050551 0.8123661 +0 0.5370987 0.8123661 +0.1939468 0.5370987 0.8123661 +0.2773041 0.5370987 0.8123661 +0.3384659 0.5370987 0.8123661 +0.3885728 0.5370987 0.8123661 +0.4317928 0.5370987 0.8123661 +0.470214 0.5370987 0.8123661 +0.5050551 0.5370987 0.8123661 +0.5370987 0.5370987 0.8123661 +0.5668815 0.5370987 0.8123661 +0.5947903 0.5370987 0.8123661 +0.6211144 0.5370987 0.8123661 +0.6460766 0.5370987 0.8123661 +0.6698526 0.5370987 0.8123661 +0.6925839 0.5370987 0.8123661 +0.7143866 0.5370987 0.8123661 +0.7353569 0.5370987 0.8123661 +0.7555758 0.5370987 0.8123661 +0.7751122 0.5370987 0.8123661 +0.7940252 0.5370987 0.8123661 +0.8123661 0.5370987 0.8123661 +0.8301795 0.5370987 0.8123661 +0.8475045 0.5370987 0.8123661 +0.8643761 0.5370987 0.8123661 +0.880825 0.5370987 0.8123661 +0.8968787 0.5370987 0.8123661 +0.9125621 0.5370987 0.8123661 +0.9278974 0.5370987 0.8123661 +0.9429048 0.5370987 0.8123661 +0.9576028 0.5370987 0.8123661 +0.9720079 0.5370987 0.8123661 +0.9861357 0.5370987 0.8123661 +1 0.5370987 0.8123661 +0 0.5668815 0.8123661 +0.1939468 0.5668815 0.8123661 +0.2773041 0.5668815 0.8123661 +0.3384659 0.5668815 0.8123661 +0.3885728 0.5668815 0.8123661 +0.4317928 0.5668815 0.8123661 +0.470214 0.5668815 0.8123661 +0.5050551 0.5668815 0.8123661 +0.5370987 0.5668815 0.8123661 +0.5668815 0.5668815 0.8123661 +0.5947903 0.5668815 0.8123661 +0.6211144 0.5668815 0.8123661 +0.6460766 0.5668815 0.8123661 +0.6698526 0.5668815 0.8123661 +0.6925839 0.5668815 0.8123661 +0.7143866 0.5668815 0.8123661 +0.7353569 0.5668815 0.8123661 +0.7555758 0.5668815 0.8123661 +0.7751122 0.5668815 0.8123661 +0.7940252 0.5668815 0.8123661 +0.8123661 0.5668815 0.8123661 +0.8301795 0.5668815 0.8123661 +0.8475045 0.5668815 0.8123661 +0.8643761 0.5668815 0.8123661 +0.880825 0.5668815 0.8123661 +0.8968787 0.5668815 0.8123661 +0.9125621 0.5668815 0.8123661 +0.9278974 0.5668815 0.8123661 +0.9429048 0.5668815 0.8123661 +0.9576028 0.5668815 0.8123661 +0.9720079 0.5668815 0.8123661 +0.9861357 0.5668815 0.8123661 +1 0.5668815 0.8123661 +0 0.5947903 0.8123661 +0.1939468 0.5947903 0.8123661 +0.2773041 0.5947903 0.8123661 +0.3384659 0.5947903 0.8123661 +0.3885728 0.5947903 0.8123661 +0.4317928 0.5947903 0.8123661 +0.470214 0.5947903 0.8123661 +0.5050551 0.5947903 0.8123661 +0.5370987 0.5947903 0.8123661 +0.5668815 0.5947903 0.8123661 +0.5947903 0.5947903 0.8123661 +0.6211144 0.5947903 0.8123661 +0.6460766 0.5947903 0.8123661 +0.6698526 0.5947903 0.8123661 +0.6925839 0.5947903 0.8123661 +0.7143866 0.5947903 0.8123661 +0.7353569 0.5947903 0.8123661 +0.7555758 0.5947903 0.8123661 +0.7751122 0.5947903 0.8123661 +0.7940252 0.5947903 0.8123661 +0.8123661 0.5947903 0.8123661 +0.8301795 0.5947903 0.8123661 +0.8475045 0.5947903 0.8123661 +0.8643761 0.5947903 0.8123661 +0.880825 0.5947903 0.8123661 +0.8968787 0.5947903 0.8123661 +0.9125621 0.5947903 0.8123661 +0.9278974 0.5947903 0.8123661 +0.9429048 0.5947903 0.8123661 +0.9576028 0.5947903 0.8123661 +0.9720079 0.5947903 0.8123661 +0.9861357 0.5947903 0.8123661 +1 0.5947903 0.8123661 +0 0.6211144 0.8123661 +0.1939468 0.6211144 0.8123661 +0.2773041 0.6211144 0.8123661 +0.3384659 0.6211144 0.8123661 +0.3885728 0.6211144 0.8123661 +0.4317928 0.6211144 0.8123661 +0.470214 0.6211144 0.8123661 +0.5050551 0.6211144 0.8123661 +0.5370987 0.6211144 0.8123661 +0.5668815 0.6211144 0.8123661 +0.5947903 0.6211144 0.8123661 +0.6211144 0.6211144 0.8123661 +0.6460766 0.6211144 0.8123661 +0.6698526 0.6211144 0.8123661 +0.6925839 0.6211144 0.8123661 +0.7143866 0.6211144 0.8123661 +0.7353569 0.6211144 0.8123661 +0.7555758 0.6211144 0.8123661 +0.7751122 0.6211144 0.8123661 +0.7940252 0.6211144 0.8123661 +0.8123661 0.6211144 0.8123661 +0.8301795 0.6211144 0.8123661 +0.8475045 0.6211144 0.8123661 +0.8643761 0.6211144 0.8123661 +0.880825 0.6211144 0.8123661 +0.8968787 0.6211144 0.8123661 +0.9125621 0.6211144 0.8123661 +0.9278974 0.6211144 0.8123661 +0.9429048 0.6211144 0.8123661 +0.9576028 0.6211144 0.8123661 +0.9720079 0.6211144 0.8123661 +0.9861357 0.6211144 0.8123661 +1 0.6211144 0.8123661 +0 0.6460766 0.8123661 +0.1939468 0.6460766 0.8123661 +0.2773041 0.6460766 0.8123661 +0.3384659 0.6460766 0.8123661 +0.3885728 0.6460766 0.8123661 +0.4317928 0.6460766 0.8123661 +0.470214 0.6460766 0.8123661 +0.5050551 0.6460766 0.8123661 +0.5370987 0.6460766 0.8123661 +0.5668815 0.6460766 0.8123661 +0.5947903 0.6460766 0.8123661 +0.6211144 0.6460766 0.8123661 +0.6460766 0.6460766 0.8123661 +0.6698526 0.6460766 0.8123661 +0.6925839 0.6460766 0.8123661 +0.7143866 0.6460766 0.8123661 +0.7353569 0.6460766 0.8123661 +0.7555758 0.6460766 0.8123661 +0.7751122 0.6460766 0.8123661 +0.7940252 0.6460766 0.8123661 +0.8123661 0.6460766 0.8123661 +0.8301795 0.6460766 0.8123661 +0.8475045 0.6460766 0.8123661 +0.8643761 0.6460766 0.8123661 +0.880825 0.6460766 0.8123661 +0.8968787 0.6460766 0.8123661 +0.9125621 0.6460766 0.8123661 +0.9278974 0.6460766 0.8123661 +0.9429048 0.6460766 0.8123661 +0.9576028 0.6460766 0.8123661 +0.9720079 0.6460766 0.8123661 +0.9861357 0.6460766 0.8123661 +1 0.6460766 0.8123661 +0 0.6698526 0.8123661 +0.1939468 0.6698526 0.8123661 +0.2773041 0.6698526 0.8123661 +0.3384659 0.6698526 0.8123661 +0.3885728 0.6698526 0.8123661 +0.4317928 0.6698526 0.8123661 +0.470214 0.6698526 0.8123661 +0.5050551 0.6698526 0.8123661 +0.5370987 0.6698526 0.8123661 +0.5668815 0.6698526 0.8123661 +0.5947903 0.6698526 0.8123661 +0.6211144 0.6698526 0.8123661 +0.6460766 0.6698526 0.8123661 +0.6698526 0.6698526 0.8123661 +0.6925839 0.6698526 0.8123661 +0.7143866 0.6698526 0.8123661 +0.7353569 0.6698526 0.8123661 +0.7555758 0.6698526 0.8123661 +0.7751122 0.6698526 0.8123661 +0.7940252 0.6698526 0.8123661 +0.8123661 0.6698526 0.8123661 +0.8301795 0.6698526 0.8123661 +0.8475045 0.6698526 0.8123661 +0.8643761 0.6698526 0.8123661 +0.880825 0.6698526 0.8123661 +0.8968787 0.6698526 0.8123661 +0.9125621 0.6698526 0.8123661 +0.9278974 0.6698526 0.8123661 +0.9429048 0.6698526 0.8123661 +0.9576028 0.6698526 0.8123661 +0.9720079 0.6698526 0.8123661 +0.9861357 0.6698526 0.8123661 +1 0.6698526 0.8123661 +0 0.6925839 0.8123661 +0.1939468 0.6925839 0.8123661 +0.2773041 0.6925839 0.8123661 +0.3384659 0.6925839 0.8123661 +0.3885728 0.6925839 0.8123661 +0.4317928 0.6925839 0.8123661 +0.470214 0.6925839 0.8123661 +0.5050551 0.6925839 0.8123661 +0.5370987 0.6925839 0.8123661 +0.5668815 0.6925839 0.8123661 +0.5947903 0.6925839 0.8123661 +0.6211144 0.6925839 0.8123661 +0.6460766 0.6925839 0.8123661 +0.6698526 0.6925839 0.8123661 +0.6925839 0.6925839 0.8123661 +0.7143866 0.6925839 0.8123661 +0.7353569 0.6925839 0.8123661 +0.7555758 0.6925839 0.8123661 +0.7751122 0.6925839 0.8123661 +0.7940252 0.6925839 0.8123661 +0.8123661 0.6925839 0.8123661 +0.8301795 0.6925839 0.8123661 +0.8475045 0.6925839 0.8123661 +0.8643761 0.6925839 0.8123661 +0.880825 0.6925839 0.8123661 +0.8968787 0.6925839 0.8123661 +0.9125621 0.6925839 0.8123661 +0.9278974 0.6925839 0.8123661 +0.9429048 0.6925839 0.8123661 +0.9576028 0.6925839 0.8123661 +0.9720079 0.6925839 0.8123661 +0.9861357 0.6925839 0.8123661 +1 0.6925839 0.8123661 +0 0.7143866 0.8123661 +0.1939468 0.7143866 0.8123661 +0.2773041 0.7143866 0.8123661 +0.3384659 0.7143866 0.8123661 +0.3885728 0.7143866 0.8123661 +0.4317928 0.7143866 0.8123661 +0.470214 0.7143866 0.8123661 +0.5050551 0.7143866 0.8123661 +0.5370987 0.7143866 0.8123661 +0.5668815 0.7143866 0.8123661 +0.5947903 0.7143866 0.8123661 +0.6211144 0.7143866 0.8123661 +0.6460766 0.7143866 0.8123661 +0.6698526 0.7143866 0.8123661 +0.6925839 0.7143866 0.8123661 +0.7143866 0.7143866 0.8123661 +0.7353569 0.7143866 0.8123661 +0.7555758 0.7143866 0.8123661 +0.7751122 0.7143866 0.8123661 +0.7940252 0.7143866 0.8123661 +0.8123661 0.7143866 0.8123661 +0.8301795 0.7143866 0.8123661 +0.8475045 0.7143866 0.8123661 +0.8643761 0.7143866 0.8123661 +0.880825 0.7143866 0.8123661 +0.8968787 0.7143866 0.8123661 +0.9125621 0.7143866 0.8123661 +0.9278974 0.7143866 0.8123661 +0.9429048 0.7143866 0.8123661 +0.9576028 0.7143866 0.8123661 +0.9720079 0.7143866 0.8123661 +0.9861357 0.7143866 0.8123661 +1 0.7143866 0.8123661 +0 0.7353569 0.8123661 +0.1939468 0.7353569 0.8123661 +0.2773041 0.7353569 0.8123661 +0.3384659 0.7353569 0.8123661 +0.3885728 0.7353569 0.8123661 +0.4317928 0.7353569 0.8123661 +0.470214 0.7353569 0.8123661 +0.5050551 0.7353569 0.8123661 +0.5370987 0.7353569 0.8123661 +0.5668815 0.7353569 0.8123661 +0.5947903 0.7353569 0.8123661 +0.6211144 0.7353569 0.8123661 +0.6460766 0.7353569 0.8123661 +0.6698526 0.7353569 0.8123661 +0.6925839 0.7353569 0.8123661 +0.7143866 0.7353569 0.8123661 +0.7353569 0.7353569 0.8123661 +0.7555758 0.7353569 0.8123661 +0.7751122 0.7353569 0.8123661 +0.7940252 0.7353569 0.8123661 +0.8123661 0.7353569 0.8123661 +0.8301795 0.7353569 0.8123661 +0.8475045 0.7353569 0.8123661 +0.8643761 0.7353569 0.8123661 +0.880825 0.7353569 0.8123661 +0.8968787 0.7353569 0.8123661 +0.9125621 0.7353569 0.8123661 +0.9278974 0.7353569 0.8123661 +0.9429048 0.7353569 0.8123661 +0.9576028 0.7353569 0.8123661 +0.9720079 0.7353569 0.8123661 +0.9861357 0.7353569 0.8123661 +1 0.7353569 0.8123661 +0 0.7555758 0.8123661 +0.1939468 0.7555758 0.8123661 +0.2773041 0.7555758 0.8123661 +0.3384659 0.7555758 0.8123661 +0.3885728 0.7555758 0.8123661 +0.4317928 0.7555758 0.8123661 +0.470214 0.7555758 0.8123661 +0.5050551 0.7555758 0.8123661 +0.5370987 0.7555758 0.8123661 +0.5668815 0.7555758 0.8123661 +0.5947903 0.7555758 0.8123661 +0.6211144 0.7555758 0.8123661 +0.6460766 0.7555758 0.8123661 +0.6698526 0.7555758 0.8123661 +0.6925839 0.7555758 0.8123661 +0.7143866 0.7555758 0.8123661 +0.7353569 0.7555758 0.8123661 +0.7555758 0.7555758 0.8123661 +0.7751122 0.7555758 0.8123661 +0.7940252 0.7555758 0.8123661 +0.8123661 0.7555758 0.8123661 +0.8301795 0.7555758 0.8123661 +0.8475045 0.7555758 0.8123661 +0.8643761 0.7555758 0.8123661 +0.880825 0.7555758 0.8123661 +0.8968787 0.7555758 0.8123661 +0.9125621 0.7555758 0.8123661 +0.9278974 0.7555758 0.8123661 +0.9429048 0.7555758 0.8123661 +0.9576028 0.7555758 0.8123661 +0.9720079 0.7555758 0.8123661 +0.9861357 0.7555758 0.8123661 +1 0.7555758 0.8123661 +0 0.7751122 0.8123661 +0.1939468 0.7751122 0.8123661 +0.2773041 0.7751122 0.8123661 +0.3384659 0.7751122 0.8123661 +0.3885728 0.7751122 0.8123661 +0.4317928 0.7751122 0.8123661 +0.470214 0.7751122 0.8123661 +0.5050551 0.7751122 0.8123661 +0.5370987 0.7751122 0.8123661 +0.5668815 0.7751122 0.8123661 +0.5947903 0.7751122 0.8123661 +0.6211144 0.7751122 0.8123661 +0.6460766 0.7751122 0.8123661 +0.6698526 0.7751122 0.8123661 +0.6925839 0.7751122 0.8123661 +0.7143866 0.7751122 0.8123661 +0.7353569 0.7751122 0.8123661 +0.7555758 0.7751122 0.8123661 +0.7751122 0.7751122 0.8123661 +0.7940252 0.7751122 0.8123661 +0.8123661 0.7751122 0.8123661 +0.8301795 0.7751122 0.8123661 +0.8475045 0.7751122 0.8123661 +0.8643761 0.7751122 0.8123661 +0.880825 0.7751122 0.8123661 +0.8968787 0.7751122 0.8123661 +0.9125621 0.7751122 0.8123661 +0.9278974 0.7751122 0.8123661 +0.9429048 0.7751122 0.8123661 +0.9576028 0.7751122 0.8123661 +0.9720079 0.7751122 0.8123661 +0.9861357 0.7751122 0.8123661 +1 0.7751122 0.8123661 +0 0.7940252 0.8123661 +0.1939468 0.7940252 0.8123661 +0.2773041 0.7940252 0.8123661 +0.3384659 0.7940252 0.8123661 +0.3885728 0.7940252 0.8123661 +0.4317928 0.7940252 0.8123661 +0.470214 0.7940252 0.8123661 +0.5050551 0.7940252 0.8123661 +0.5370987 0.7940252 0.8123661 +0.5668815 0.7940252 0.8123661 +0.5947903 0.7940252 0.8123661 +0.6211144 0.7940252 0.8123661 +0.6460766 0.7940252 0.8123661 +0.6698526 0.7940252 0.8123661 +0.6925839 0.7940252 0.8123661 +0.7143866 0.7940252 0.8123661 +0.7353569 0.7940252 0.8123661 +0.7555758 0.7940252 0.8123661 +0.7751122 0.7940252 0.8123661 +0.7940252 0.7940252 0.8123661 +0.8123661 0.7940252 0.8123661 +0.8301795 0.7940252 0.8123661 +0.8475045 0.7940252 0.8123661 +0.8643761 0.7940252 0.8123661 +0.880825 0.7940252 0.8123661 +0.8968787 0.7940252 0.8123661 +0.9125621 0.7940252 0.8123661 +0.9278974 0.7940252 0.8123661 +0.9429048 0.7940252 0.8123661 +0.9576028 0.7940252 0.8123661 +0.9720079 0.7940252 0.8123661 +0.9861357 0.7940252 0.8123661 +1 0.7940252 0.8123661 +0 0.8123661 0.8123661 +0.1939468 0.8123661 0.8123661 +0.2773041 0.8123661 0.8123661 +0.3384659 0.8123661 0.8123661 +0.3885728 0.8123661 0.8123661 +0.4317928 0.8123661 0.8123661 +0.470214 0.8123661 0.8123661 +0.5050551 0.8123661 0.8123661 +0.5370987 0.8123661 0.8123661 +0.5668815 0.8123661 0.8123661 +0.5947903 0.8123661 0.8123661 +0.6211144 0.8123661 0.8123661 +0.6460766 0.8123661 0.8123661 +0.6698526 0.8123661 0.8123661 +0.6925839 0.8123661 0.8123661 +0.7143866 0.8123661 0.8123661 +0.7353569 0.8123661 0.8123661 +0.7555758 0.8123661 0.8123661 +0.7751122 0.8123661 0.8123661 +0.7940252 0.8123661 0.8123661 +0.8123661 0.8123661 0.8123661 +0.8301795 0.8123661 0.8123661 +0.8475045 0.8123661 0.8123661 +0.8643761 0.8123661 0.8123661 +0.880825 0.8123661 0.8123661 +0.8968787 0.8123661 0.8123661 +0.9125621 0.8123661 0.8123661 +0.9278974 0.8123661 0.8123661 +0.9429048 0.8123661 0.8123661 +0.9576028 0.8123661 0.8123661 +0.9720079 0.8123661 0.8123661 +0.9861357 0.8123661 0.8123661 +1 0.8123661 0.8123661 +0 0.8301795 0.8123661 +0.1939468 0.8301795 0.8123661 +0.2773041 0.8301795 0.8123661 +0.3384659 0.8301795 0.8123661 +0.3885728 0.8301795 0.8123661 +0.4317928 0.8301795 0.8123661 +0.470214 0.8301795 0.8123661 +0.5050551 0.8301795 0.8123661 +0.5370987 0.8301795 0.8123661 +0.5668815 0.8301795 0.8123661 +0.5947903 0.8301795 0.8123661 +0.6211144 0.8301795 0.8123661 +0.6460766 0.8301795 0.8123661 +0.6698526 0.8301795 0.8123661 +0.6925839 0.8301795 0.8123661 +0.7143866 0.8301795 0.8123661 +0.7353569 0.8301795 0.8123661 +0.7555758 0.8301795 0.8123661 +0.7751122 0.8301795 0.8123661 +0.7940252 0.8301795 0.8123661 +0.8123661 0.8301795 0.8123661 +0.8301795 0.8301795 0.8123661 +0.8475045 0.8301795 0.8123661 +0.8643761 0.8301795 0.8123661 +0.880825 0.8301795 0.8123661 +0.8968787 0.8301795 0.8123661 +0.9125621 0.8301795 0.8123661 +0.9278974 0.8301795 0.8123661 +0.9429048 0.8301795 0.8123661 +0.9576028 0.8301795 0.8123661 +0.9720079 0.8301795 0.8123661 +0.9861357 0.8301795 0.8123661 +1 0.8301795 0.8123661 +0 0.8475045 0.8123661 +0.1939468 0.8475045 0.8123661 +0.2773041 0.8475045 0.8123661 +0.3384659 0.8475045 0.8123661 +0.3885728 0.8475045 0.8123661 +0.4317928 0.8475045 0.8123661 +0.470214 0.8475045 0.8123661 +0.5050551 0.8475045 0.8123661 +0.5370987 0.8475045 0.8123661 +0.5668815 0.8475045 0.8123661 +0.5947903 0.8475045 0.8123661 +0.6211144 0.8475045 0.8123661 +0.6460766 0.8475045 0.8123661 +0.6698526 0.8475045 0.8123661 +0.6925839 0.8475045 0.8123661 +0.7143866 0.8475045 0.8123661 +0.7353569 0.8475045 0.8123661 +0.7555758 0.8475045 0.8123661 +0.7751122 0.8475045 0.8123661 +0.7940252 0.8475045 0.8123661 +0.8123661 0.8475045 0.8123661 +0.8301795 0.8475045 0.8123661 +0.8475045 0.8475045 0.8123661 +0.8643761 0.8475045 0.8123661 +0.880825 0.8475045 0.8123661 +0.8968787 0.8475045 0.8123661 +0.9125621 0.8475045 0.8123661 +0.9278974 0.8475045 0.8123661 +0.9429048 0.8475045 0.8123661 +0.9576028 0.8475045 0.8123661 +0.9720079 0.8475045 0.8123661 +0.9861357 0.8475045 0.8123661 +1 0.8475045 0.8123661 +0 0.8643761 0.8123661 +0.1939468 0.8643761 0.8123661 +0.2773041 0.8643761 0.8123661 +0.3384659 0.8643761 0.8123661 +0.3885728 0.8643761 0.8123661 +0.4317928 0.8643761 0.8123661 +0.470214 0.8643761 0.8123661 +0.5050551 0.8643761 0.8123661 +0.5370987 0.8643761 0.8123661 +0.5668815 0.8643761 0.8123661 +0.5947903 0.8643761 0.8123661 +0.6211144 0.8643761 0.8123661 +0.6460766 0.8643761 0.8123661 +0.6698526 0.8643761 0.8123661 +0.6925839 0.8643761 0.8123661 +0.7143866 0.8643761 0.8123661 +0.7353569 0.8643761 0.8123661 +0.7555758 0.8643761 0.8123661 +0.7751122 0.8643761 0.8123661 +0.7940252 0.8643761 0.8123661 +0.8123661 0.8643761 0.8123661 +0.8301795 0.8643761 0.8123661 +0.8475045 0.8643761 0.8123661 +0.8643761 0.8643761 0.8123661 +0.880825 0.8643761 0.8123661 +0.8968787 0.8643761 0.8123661 +0.9125621 0.8643761 0.8123661 +0.9278974 0.8643761 0.8123661 +0.9429048 0.8643761 0.8123661 +0.9576028 0.8643761 0.8123661 +0.9720079 0.8643761 0.8123661 +0.9861357 0.8643761 0.8123661 +1 0.8643761 0.8123661 +0 0.880825 0.8123661 +0.1939468 0.880825 0.8123661 +0.2773041 0.880825 0.8123661 +0.3384659 0.880825 0.8123661 +0.3885728 0.880825 0.8123661 +0.4317928 0.880825 0.8123661 +0.470214 0.880825 0.8123661 +0.5050551 0.880825 0.8123661 +0.5370987 0.880825 0.8123661 +0.5668815 0.880825 0.8123661 +0.5947903 0.880825 0.8123661 +0.6211144 0.880825 0.8123661 +0.6460766 0.880825 0.8123661 +0.6698526 0.880825 0.8123661 +0.6925839 0.880825 0.8123661 +0.7143866 0.880825 0.8123661 +0.7353569 0.880825 0.8123661 +0.7555758 0.880825 0.8123661 +0.7751122 0.880825 0.8123661 +0.7940252 0.880825 0.8123661 +0.8123661 0.880825 0.8123661 +0.8301795 0.880825 0.8123661 +0.8475045 0.880825 0.8123661 +0.8643761 0.880825 0.8123661 +0.880825 0.880825 0.8123661 +0.8968787 0.880825 0.8123661 +0.9125621 0.880825 0.8123661 +0.9278974 0.880825 0.8123661 +0.9429048 0.880825 0.8123661 +0.9576028 0.880825 0.8123661 +0.9720079 0.880825 0.8123661 +0.9861357 0.880825 0.8123661 +1 0.880825 0.8123661 +0 0.8968787 0.8123661 +0.1939468 0.8968787 0.8123661 +0.2773041 0.8968787 0.8123661 +0.3384659 0.8968787 0.8123661 +0.3885728 0.8968787 0.8123661 +0.4317928 0.8968787 0.8123661 +0.470214 0.8968787 0.8123661 +0.5050551 0.8968787 0.8123661 +0.5370987 0.8968787 0.8123661 +0.5668815 0.8968787 0.8123661 +0.5947903 0.8968787 0.8123661 +0.6211144 0.8968787 0.8123661 +0.6460766 0.8968787 0.8123661 +0.6698526 0.8968787 0.8123661 +0.6925839 0.8968787 0.8123661 +0.7143866 0.8968787 0.8123661 +0.7353569 0.8968787 0.8123661 +0.7555758 0.8968787 0.8123661 +0.7751122 0.8968787 0.8123661 +0.7940252 0.8968787 0.8123661 +0.8123661 0.8968787 0.8123661 +0.8301795 0.8968787 0.8123661 +0.8475045 0.8968787 0.8123661 +0.8643761 0.8968787 0.8123661 +0.880825 0.8968787 0.8123661 +0.8968787 0.8968787 0.8123661 +0.9125621 0.8968787 0.8123661 +0.9278974 0.8968787 0.8123661 +0.9429048 0.8968787 0.8123661 +0.9576028 0.8968787 0.8123661 +0.9720079 0.8968787 0.8123661 +0.9861357 0.8968787 0.8123661 +1 0.8968787 0.8123661 +0 0.9125621 0.8123661 +0.1939468 0.9125621 0.8123661 +0.2773041 0.9125621 0.8123661 +0.3384659 0.9125621 0.8123661 +0.3885728 0.9125621 0.8123661 +0.4317928 0.9125621 0.8123661 +0.470214 0.9125621 0.8123661 +0.5050551 0.9125621 0.8123661 +0.5370987 0.9125621 0.8123661 +0.5668815 0.9125621 0.8123661 +0.5947903 0.9125621 0.8123661 +0.6211144 0.9125621 0.8123661 +0.6460766 0.9125621 0.8123661 +0.6698526 0.9125621 0.8123661 +0.6925839 0.9125621 0.8123661 +0.7143866 0.9125621 0.8123661 +0.7353569 0.9125621 0.8123661 +0.7555758 0.9125621 0.8123661 +0.7751122 0.9125621 0.8123661 +0.7940252 0.9125621 0.8123661 +0.8123661 0.9125621 0.8123661 +0.8301795 0.9125621 0.8123661 +0.8475045 0.9125621 0.8123661 +0.8643761 0.9125621 0.8123661 +0.880825 0.9125621 0.8123661 +0.8968787 0.9125621 0.8123661 +0.9125621 0.9125621 0.8123661 +0.9278974 0.9125621 0.8123661 +0.9429048 0.9125621 0.8123661 +0.9576028 0.9125621 0.8123661 +0.9720079 0.9125621 0.8123661 +0.9861357 0.9125621 0.8123661 +1 0.9125621 0.8123661 +0 0.9278974 0.8123661 +0.1939468 0.9278974 0.8123661 +0.2773041 0.9278974 0.8123661 +0.3384659 0.9278974 0.8123661 +0.3885728 0.9278974 0.8123661 +0.4317928 0.9278974 0.8123661 +0.470214 0.9278974 0.8123661 +0.5050551 0.9278974 0.8123661 +0.5370987 0.9278974 0.8123661 +0.5668815 0.9278974 0.8123661 +0.5947903 0.9278974 0.8123661 +0.6211144 0.9278974 0.8123661 +0.6460766 0.9278974 0.8123661 +0.6698526 0.9278974 0.8123661 +0.6925839 0.9278974 0.8123661 +0.7143866 0.9278974 0.8123661 +0.7353569 0.9278974 0.8123661 +0.7555758 0.9278974 0.8123661 +0.7751122 0.9278974 0.8123661 +0.7940252 0.9278974 0.8123661 +0.8123661 0.9278974 0.8123661 +0.8301795 0.9278974 0.8123661 +0.8475045 0.9278974 0.8123661 +0.8643761 0.9278974 0.8123661 +0.880825 0.9278974 0.8123661 +0.8968787 0.9278974 0.8123661 +0.9125621 0.9278974 0.8123661 +0.9278974 0.9278974 0.8123661 +0.9429048 0.9278974 0.8123661 +0.9576028 0.9278974 0.8123661 +0.9720079 0.9278974 0.8123661 +0.9861357 0.9278974 0.8123661 +1 0.9278974 0.8123661 +0 0.9429048 0.8123661 +0.1939468 0.9429048 0.8123661 +0.2773041 0.9429048 0.8123661 +0.3384659 0.9429048 0.8123661 +0.3885728 0.9429048 0.8123661 +0.4317928 0.9429048 0.8123661 +0.470214 0.9429048 0.8123661 +0.5050551 0.9429048 0.8123661 +0.5370987 0.9429048 0.8123661 +0.5668815 0.9429048 0.8123661 +0.5947903 0.9429048 0.8123661 +0.6211144 0.9429048 0.8123661 +0.6460766 0.9429048 0.8123661 +0.6698526 0.9429048 0.8123661 +0.6925839 0.9429048 0.8123661 +0.7143866 0.9429048 0.8123661 +0.7353569 0.9429048 0.8123661 +0.7555758 0.9429048 0.8123661 +0.7751122 0.9429048 0.8123661 +0.7940252 0.9429048 0.8123661 +0.8123661 0.9429048 0.8123661 +0.8301795 0.9429048 0.8123661 +0.8475045 0.9429048 0.8123661 +0.8643761 0.9429048 0.8123661 +0.880825 0.9429048 0.8123661 +0.8968787 0.9429048 0.8123661 +0.9125621 0.9429048 0.8123661 +0.9278974 0.9429048 0.8123661 +0.9429048 0.9429048 0.8123661 +0.9576028 0.9429048 0.8123661 +0.9720079 0.9429048 0.8123661 +0.9861357 0.9429048 0.8123661 +1 0.9429048 0.8123661 +0 0.9576028 0.8123661 +0.1939468 0.9576028 0.8123661 +0.2773041 0.9576028 0.8123661 +0.3384659 0.9576028 0.8123661 +0.3885728 0.9576028 0.8123661 +0.4317928 0.9576028 0.8123661 +0.470214 0.9576028 0.8123661 +0.5050551 0.9576028 0.8123661 +0.5370987 0.9576028 0.8123661 +0.5668815 0.9576028 0.8123661 +0.5947903 0.9576028 0.8123661 +0.6211144 0.9576028 0.8123661 +0.6460766 0.9576028 0.8123661 +0.6698526 0.9576028 0.8123661 +0.6925839 0.9576028 0.8123661 +0.7143866 0.9576028 0.8123661 +0.7353569 0.9576028 0.8123661 +0.7555758 0.9576028 0.8123661 +0.7751122 0.9576028 0.8123661 +0.7940252 0.9576028 0.8123661 +0.8123661 0.9576028 0.8123661 +0.8301795 0.9576028 0.8123661 +0.8475045 0.9576028 0.8123661 +0.8643761 0.9576028 0.8123661 +0.880825 0.9576028 0.8123661 +0.8968787 0.9576028 0.8123661 +0.9125621 0.9576028 0.8123661 +0.9278974 0.9576028 0.8123661 +0.9429048 0.9576028 0.8123661 +0.9576028 0.9576028 0.8123661 +0.9720079 0.9576028 0.8123661 +0.9861357 0.9576028 0.8123661 +1 0.9576028 0.8123661 +0 0.9720079 0.8123661 +0.1939468 0.9720079 0.8123661 +0.2773041 0.9720079 0.8123661 +0.3384659 0.9720079 0.8123661 +0.3885728 0.9720079 0.8123661 +0.4317928 0.9720079 0.8123661 +0.470214 0.9720079 0.8123661 +0.5050551 0.9720079 0.8123661 +0.5370987 0.9720079 0.8123661 +0.5668815 0.9720079 0.8123661 +0.5947903 0.9720079 0.8123661 +0.6211144 0.9720079 0.8123661 +0.6460766 0.9720079 0.8123661 +0.6698526 0.9720079 0.8123661 +0.6925839 0.9720079 0.8123661 +0.7143866 0.9720079 0.8123661 +0.7353569 0.9720079 0.8123661 +0.7555758 0.9720079 0.8123661 +0.7751122 0.9720079 0.8123661 +0.7940252 0.9720079 0.8123661 +0.8123661 0.9720079 0.8123661 +0.8301795 0.9720079 0.8123661 +0.8475045 0.9720079 0.8123661 +0.8643761 0.9720079 0.8123661 +0.880825 0.9720079 0.8123661 +0.8968787 0.9720079 0.8123661 +0.9125621 0.9720079 0.8123661 +0.9278974 0.9720079 0.8123661 +0.9429048 0.9720079 0.8123661 +0.9576028 0.9720079 0.8123661 +0.9720079 0.9720079 0.8123661 +0.9861357 0.9720079 0.8123661 +1 0.9720079 0.8123661 +0 0.9861357 0.8123661 +0.1939468 0.9861357 0.8123661 +0.2773041 0.9861357 0.8123661 +0.3384659 0.9861357 0.8123661 +0.3885728 0.9861357 0.8123661 +0.4317928 0.9861357 0.8123661 +0.470214 0.9861357 0.8123661 +0.5050551 0.9861357 0.8123661 +0.5370987 0.9861357 0.8123661 +0.5668815 0.9861357 0.8123661 +0.5947903 0.9861357 0.8123661 +0.6211144 0.9861357 0.8123661 +0.6460766 0.9861357 0.8123661 +0.6698526 0.9861357 0.8123661 +0.6925839 0.9861357 0.8123661 +0.7143866 0.9861357 0.8123661 +0.7353569 0.9861357 0.8123661 +0.7555758 0.9861357 0.8123661 +0.7751122 0.9861357 0.8123661 +0.7940252 0.9861357 0.8123661 +0.8123661 0.9861357 0.8123661 +0.8301795 0.9861357 0.8123661 +0.8475045 0.9861357 0.8123661 +0.8643761 0.9861357 0.8123661 +0.880825 0.9861357 0.8123661 +0.8968787 0.9861357 0.8123661 +0.9125621 0.9861357 0.8123661 +0.9278974 0.9861357 0.8123661 +0.9429048 0.9861357 0.8123661 +0.9576028 0.9861357 0.8123661 +0.9720079 0.9861357 0.8123661 +0.9861357 0.9861357 0.8123661 +1 0.9861357 0.8123661 +0 1 0.8123661 +0.1939468 1 0.8123661 +0.2773041 1 0.8123661 +0.3384659 1 0.8123661 +0.3885728 1 0.8123661 +0.4317928 1 0.8123661 +0.470214 1 0.8123661 +0.5050551 1 0.8123661 +0.5370987 1 0.8123661 +0.5668815 1 0.8123661 +0.5947903 1 0.8123661 +0.6211144 1 0.8123661 +0.6460766 1 0.8123661 +0.6698526 1 0.8123661 +0.6925839 1 0.8123661 +0.7143866 1 0.8123661 +0.7353569 1 0.8123661 +0.7555758 1 0.8123661 +0.7751122 1 0.8123661 +0.7940252 1 0.8123661 +0.8123661 1 0.8123661 +0.8301795 1 0.8123661 +0.8475045 1 0.8123661 +0.8643761 1 0.8123661 +0.880825 1 0.8123661 +0.8968787 1 0.8123661 +0.9125621 1 0.8123661 +0.9278974 1 0.8123661 +0.9429048 1 0.8123661 +0.9576028 1 0.8123661 +0.9720079 1 0.8123661 +0.9861357 1 0.8123661 +1 1 0.8123661 +0 0 0.8301795 +0.1939468 0 0.8301795 +0.2773041 0 0.8301795 +0.3384659 0 0.8301795 +0.3885728 0 0.8301795 +0.4317928 0 0.8301795 +0.470214 0 0.8301795 +0.5050551 0 0.8301795 +0.5370987 0 0.8301795 +0.5668815 0 0.8301795 +0.5947903 0 0.8301795 +0.6211144 0 0.8301795 +0.6460766 0 0.8301795 +0.6698526 0 0.8301795 +0.6925839 0 0.8301795 +0.7143866 0 0.8301795 +0.7353569 0 0.8301795 +0.7555758 0 0.8301795 +0.7751122 0 0.8301795 +0.7940252 0 0.8301795 +0.8123661 0 0.8301795 +0.8301795 0 0.8301795 +0.8475045 0 0.8301795 +0.8643761 0 0.8301795 +0.880825 0 0.8301795 +0.8968787 0 0.8301795 +0.9125621 0 0.8301795 +0.9278974 0 0.8301795 +0.9429048 0 0.8301795 +0.9576028 0 0.8301795 +0.9720079 0 0.8301795 +0.9861357 0 0.8301795 +1 0 0.8301795 +0 0.1939468 0.8301795 +0.1939468 0.1939468 0.8301795 +0.2773041 0.1939468 0.8301795 +0.3384659 0.1939468 0.8301795 +0.3885728 0.1939468 0.8301795 +0.4317928 0.1939468 0.8301795 +0.470214 0.1939468 0.8301795 +0.5050551 0.1939468 0.8301795 +0.5370987 0.1939468 0.8301795 +0.5668815 0.1939468 0.8301795 +0.5947903 0.1939468 0.8301795 +0.6211144 0.1939468 0.8301795 +0.6460766 0.1939468 0.8301795 +0.6698526 0.1939468 0.8301795 +0.6925839 0.1939468 0.8301795 +0.7143866 0.1939468 0.8301795 +0.7353569 0.1939468 0.8301795 +0.7555758 0.1939468 0.8301795 +0.7751122 0.1939468 0.8301795 +0.7940252 0.1939468 0.8301795 +0.8123661 0.1939468 0.8301795 +0.8301795 0.1939468 0.8301795 +0.8475045 0.1939468 0.8301795 +0.8643761 0.1939468 0.8301795 +0.880825 0.1939468 0.8301795 +0.8968787 0.1939468 0.8301795 +0.9125621 0.1939468 0.8301795 +0.9278974 0.1939468 0.8301795 +0.9429048 0.1939468 0.8301795 +0.9576028 0.1939468 0.8301795 +0.9720079 0.1939468 0.8301795 +0.9861357 0.1939468 0.8301795 +1 0.1939468 0.8301795 +0 0.2773041 0.8301795 +0.1939468 0.2773041 0.8301795 +0.2773041 0.2773041 0.8301795 +0.3384659 0.2773041 0.8301795 +0.3885728 0.2773041 0.8301795 +0.4317928 0.2773041 0.8301795 +0.470214 0.2773041 0.8301795 +0.5050551 0.2773041 0.8301795 +0.5370987 0.2773041 0.8301795 +0.5668815 0.2773041 0.8301795 +0.5947903 0.2773041 0.8301795 +0.6211144 0.2773041 0.8301795 +0.6460766 0.2773041 0.8301795 +0.6698526 0.2773041 0.8301795 +0.6925839 0.2773041 0.8301795 +0.7143866 0.2773041 0.8301795 +0.7353569 0.2773041 0.8301795 +0.7555758 0.2773041 0.8301795 +0.7751122 0.2773041 0.8301795 +0.7940252 0.2773041 0.8301795 +0.8123661 0.2773041 0.8301795 +0.8301795 0.2773041 0.8301795 +0.8475045 0.2773041 0.8301795 +0.8643761 0.2773041 0.8301795 +0.880825 0.2773041 0.8301795 +0.8968787 0.2773041 0.8301795 +0.9125621 0.2773041 0.8301795 +0.9278974 0.2773041 0.8301795 +0.9429048 0.2773041 0.8301795 +0.9576028 0.2773041 0.8301795 +0.9720079 0.2773041 0.8301795 +0.9861357 0.2773041 0.8301795 +1 0.2773041 0.8301795 +0 0.3384659 0.8301795 +0.1939468 0.3384659 0.8301795 +0.2773041 0.3384659 0.8301795 +0.3384659 0.3384659 0.8301795 +0.3885728 0.3384659 0.8301795 +0.4317928 0.3384659 0.8301795 +0.470214 0.3384659 0.8301795 +0.5050551 0.3384659 0.8301795 +0.5370987 0.3384659 0.8301795 +0.5668815 0.3384659 0.8301795 +0.5947903 0.3384659 0.8301795 +0.6211144 0.3384659 0.8301795 +0.6460766 0.3384659 0.8301795 +0.6698526 0.3384659 0.8301795 +0.6925839 0.3384659 0.8301795 +0.7143866 0.3384659 0.8301795 +0.7353569 0.3384659 0.8301795 +0.7555758 0.3384659 0.8301795 +0.7751122 0.3384659 0.8301795 +0.7940252 0.3384659 0.8301795 +0.8123661 0.3384659 0.8301795 +0.8301795 0.3384659 0.8301795 +0.8475045 0.3384659 0.8301795 +0.8643761 0.3384659 0.8301795 +0.880825 0.3384659 0.8301795 +0.8968787 0.3384659 0.8301795 +0.9125621 0.3384659 0.8301795 +0.9278974 0.3384659 0.8301795 +0.9429048 0.3384659 0.8301795 +0.9576028 0.3384659 0.8301795 +0.9720079 0.3384659 0.8301795 +0.9861357 0.3384659 0.8301795 +1 0.3384659 0.8301795 +0 0.3885728 0.8301795 +0.1939468 0.3885728 0.8301795 +0.2773041 0.3885728 0.8301795 +0.3384659 0.3885728 0.8301795 +0.3885728 0.3885728 0.8301795 +0.4317928 0.3885728 0.8301795 +0.470214 0.3885728 0.8301795 +0.5050551 0.3885728 0.8301795 +0.5370987 0.3885728 0.8301795 +0.5668815 0.3885728 0.8301795 +0.5947903 0.3885728 0.8301795 +0.6211144 0.3885728 0.8301795 +0.6460766 0.3885728 0.8301795 +0.6698526 0.3885728 0.8301795 +0.6925839 0.3885728 0.8301795 +0.7143866 0.3885728 0.8301795 +0.7353569 0.3885728 0.8301795 +0.7555758 0.3885728 0.8301795 +0.7751122 0.3885728 0.8301795 +0.7940252 0.3885728 0.8301795 +0.8123661 0.3885728 0.8301795 +0.8301795 0.3885728 0.8301795 +0.8475045 0.3885728 0.8301795 +0.8643761 0.3885728 0.8301795 +0.880825 0.3885728 0.8301795 +0.8968787 0.3885728 0.8301795 +0.9125621 0.3885728 0.8301795 +0.9278974 0.3885728 0.8301795 +0.9429048 0.3885728 0.8301795 +0.9576028 0.3885728 0.8301795 +0.9720079 0.3885728 0.8301795 +0.9861357 0.3885728 0.8301795 +1 0.3885728 0.8301795 +0 0.4317928 0.8301795 +0.1939468 0.4317928 0.8301795 +0.2773041 0.4317928 0.8301795 +0.3384659 0.4317928 0.8301795 +0.3885728 0.4317928 0.8301795 +0.4317928 0.4317928 0.8301795 +0.470214 0.4317928 0.8301795 +0.5050551 0.4317928 0.8301795 +0.5370987 0.4317928 0.8301795 +0.5668815 0.4317928 0.8301795 +0.5947903 0.4317928 0.8301795 +0.6211144 0.4317928 0.8301795 +0.6460766 0.4317928 0.8301795 +0.6698526 0.4317928 0.8301795 +0.6925839 0.4317928 0.8301795 +0.7143866 0.4317928 0.8301795 +0.7353569 0.4317928 0.8301795 +0.7555758 0.4317928 0.8301795 +0.7751122 0.4317928 0.8301795 +0.7940252 0.4317928 0.8301795 +0.8123661 0.4317928 0.8301795 +0.8301795 0.4317928 0.8301795 +0.8475045 0.4317928 0.8301795 +0.8643761 0.4317928 0.8301795 +0.880825 0.4317928 0.8301795 +0.8968787 0.4317928 0.8301795 +0.9125621 0.4317928 0.8301795 +0.9278974 0.4317928 0.8301795 +0.9429048 0.4317928 0.8301795 +0.9576028 0.4317928 0.8301795 +0.9720079 0.4317928 0.8301795 +0.9861357 0.4317928 0.8301795 +1 0.4317928 0.8301795 +0 0.470214 0.8301795 +0.1939468 0.470214 0.8301795 +0.2773041 0.470214 0.8301795 +0.3384659 0.470214 0.8301795 +0.3885728 0.470214 0.8301795 +0.4317928 0.470214 0.8301795 +0.470214 0.470214 0.8301795 +0.5050551 0.470214 0.8301795 +0.5370987 0.470214 0.8301795 +0.5668815 0.470214 0.8301795 +0.5947903 0.470214 0.8301795 +0.6211144 0.470214 0.8301795 +0.6460766 0.470214 0.8301795 +0.6698526 0.470214 0.8301795 +0.6925839 0.470214 0.8301795 +0.7143866 0.470214 0.8301795 +0.7353569 0.470214 0.8301795 +0.7555758 0.470214 0.8301795 +0.7751122 0.470214 0.8301795 +0.7940252 0.470214 0.8301795 +0.8123661 0.470214 0.8301795 +0.8301795 0.470214 0.8301795 +0.8475045 0.470214 0.8301795 +0.8643761 0.470214 0.8301795 +0.880825 0.470214 0.8301795 +0.8968787 0.470214 0.8301795 +0.9125621 0.470214 0.8301795 +0.9278974 0.470214 0.8301795 +0.9429048 0.470214 0.8301795 +0.9576028 0.470214 0.8301795 +0.9720079 0.470214 0.8301795 +0.9861357 0.470214 0.8301795 +1 0.470214 0.8301795 +0 0.5050551 0.8301795 +0.1939468 0.5050551 0.8301795 +0.2773041 0.5050551 0.8301795 +0.3384659 0.5050551 0.8301795 +0.3885728 0.5050551 0.8301795 +0.4317928 0.5050551 0.8301795 +0.470214 0.5050551 0.8301795 +0.5050551 0.5050551 0.8301795 +0.5370987 0.5050551 0.8301795 +0.5668815 0.5050551 0.8301795 +0.5947903 0.5050551 0.8301795 +0.6211144 0.5050551 0.8301795 +0.6460766 0.5050551 0.8301795 +0.6698526 0.5050551 0.8301795 +0.6925839 0.5050551 0.8301795 +0.7143866 0.5050551 0.8301795 +0.7353569 0.5050551 0.8301795 +0.7555758 0.5050551 0.8301795 +0.7751122 0.5050551 0.8301795 +0.7940252 0.5050551 0.8301795 +0.8123661 0.5050551 0.8301795 +0.8301795 0.5050551 0.8301795 +0.8475045 0.5050551 0.8301795 +0.8643761 0.5050551 0.8301795 +0.880825 0.5050551 0.8301795 +0.8968787 0.5050551 0.8301795 +0.9125621 0.5050551 0.8301795 +0.9278974 0.5050551 0.8301795 +0.9429048 0.5050551 0.8301795 +0.9576028 0.5050551 0.8301795 +0.9720079 0.5050551 0.8301795 +0.9861357 0.5050551 0.8301795 +1 0.5050551 0.8301795 +0 0.5370987 0.8301795 +0.1939468 0.5370987 0.8301795 +0.2773041 0.5370987 0.8301795 +0.3384659 0.5370987 0.8301795 +0.3885728 0.5370987 0.8301795 +0.4317928 0.5370987 0.8301795 +0.470214 0.5370987 0.8301795 +0.5050551 0.5370987 0.8301795 +0.5370987 0.5370987 0.8301795 +0.5668815 0.5370987 0.8301795 +0.5947903 0.5370987 0.8301795 +0.6211144 0.5370987 0.8301795 +0.6460766 0.5370987 0.8301795 +0.6698526 0.5370987 0.8301795 +0.6925839 0.5370987 0.8301795 +0.7143866 0.5370987 0.8301795 +0.7353569 0.5370987 0.8301795 +0.7555758 0.5370987 0.8301795 +0.7751122 0.5370987 0.8301795 +0.7940252 0.5370987 0.8301795 +0.8123661 0.5370987 0.8301795 +0.8301795 0.5370987 0.8301795 +0.8475045 0.5370987 0.8301795 +0.8643761 0.5370987 0.8301795 +0.880825 0.5370987 0.8301795 +0.8968787 0.5370987 0.8301795 +0.9125621 0.5370987 0.8301795 +0.9278974 0.5370987 0.8301795 +0.9429048 0.5370987 0.8301795 +0.9576028 0.5370987 0.8301795 +0.9720079 0.5370987 0.8301795 +0.9861357 0.5370987 0.8301795 +1 0.5370987 0.8301795 +0 0.5668815 0.8301795 +0.1939468 0.5668815 0.8301795 +0.2773041 0.5668815 0.8301795 +0.3384659 0.5668815 0.8301795 +0.3885728 0.5668815 0.8301795 +0.4317928 0.5668815 0.8301795 +0.470214 0.5668815 0.8301795 +0.5050551 0.5668815 0.8301795 +0.5370987 0.5668815 0.8301795 +0.5668815 0.5668815 0.8301795 +0.5947903 0.5668815 0.8301795 +0.6211144 0.5668815 0.8301795 +0.6460766 0.5668815 0.8301795 +0.6698526 0.5668815 0.8301795 +0.6925839 0.5668815 0.8301795 +0.7143866 0.5668815 0.8301795 +0.7353569 0.5668815 0.8301795 +0.7555758 0.5668815 0.8301795 +0.7751122 0.5668815 0.8301795 +0.7940252 0.5668815 0.8301795 +0.8123661 0.5668815 0.8301795 +0.8301795 0.5668815 0.8301795 +0.8475045 0.5668815 0.8301795 +0.8643761 0.5668815 0.8301795 +0.880825 0.5668815 0.8301795 +0.8968787 0.5668815 0.8301795 +0.9125621 0.5668815 0.8301795 +0.9278974 0.5668815 0.8301795 +0.9429048 0.5668815 0.8301795 +0.9576028 0.5668815 0.8301795 +0.9720079 0.5668815 0.8301795 +0.9861357 0.5668815 0.8301795 +1 0.5668815 0.8301795 +0 0.5947903 0.8301795 +0.1939468 0.5947903 0.8301795 +0.2773041 0.5947903 0.8301795 +0.3384659 0.5947903 0.8301795 +0.3885728 0.5947903 0.8301795 +0.4317928 0.5947903 0.8301795 +0.470214 0.5947903 0.8301795 +0.5050551 0.5947903 0.8301795 +0.5370987 0.5947903 0.8301795 +0.5668815 0.5947903 0.8301795 +0.5947903 0.5947903 0.8301795 +0.6211144 0.5947903 0.8301795 +0.6460766 0.5947903 0.8301795 +0.6698526 0.5947903 0.8301795 +0.6925839 0.5947903 0.8301795 +0.7143866 0.5947903 0.8301795 +0.7353569 0.5947903 0.8301795 +0.7555758 0.5947903 0.8301795 +0.7751122 0.5947903 0.8301795 +0.7940252 0.5947903 0.8301795 +0.8123661 0.5947903 0.8301795 +0.8301795 0.5947903 0.8301795 +0.8475045 0.5947903 0.8301795 +0.8643761 0.5947903 0.8301795 +0.880825 0.5947903 0.8301795 +0.8968787 0.5947903 0.8301795 +0.9125621 0.5947903 0.8301795 +0.9278974 0.5947903 0.8301795 +0.9429048 0.5947903 0.8301795 +0.9576028 0.5947903 0.8301795 +0.9720079 0.5947903 0.8301795 +0.9861357 0.5947903 0.8301795 +1 0.5947903 0.8301795 +0 0.6211144 0.8301795 +0.1939468 0.6211144 0.8301795 +0.2773041 0.6211144 0.8301795 +0.3384659 0.6211144 0.8301795 +0.3885728 0.6211144 0.8301795 +0.4317928 0.6211144 0.8301795 +0.470214 0.6211144 0.8301795 +0.5050551 0.6211144 0.8301795 +0.5370987 0.6211144 0.8301795 +0.5668815 0.6211144 0.8301795 +0.5947903 0.6211144 0.8301795 +0.6211144 0.6211144 0.8301795 +0.6460766 0.6211144 0.8301795 +0.6698526 0.6211144 0.8301795 +0.6925839 0.6211144 0.8301795 +0.7143866 0.6211144 0.8301795 +0.7353569 0.6211144 0.8301795 +0.7555758 0.6211144 0.8301795 +0.7751122 0.6211144 0.8301795 +0.7940252 0.6211144 0.8301795 +0.8123661 0.6211144 0.8301795 +0.8301795 0.6211144 0.8301795 +0.8475045 0.6211144 0.8301795 +0.8643761 0.6211144 0.8301795 +0.880825 0.6211144 0.8301795 +0.8968787 0.6211144 0.8301795 +0.9125621 0.6211144 0.8301795 +0.9278974 0.6211144 0.8301795 +0.9429048 0.6211144 0.8301795 +0.9576028 0.6211144 0.8301795 +0.9720079 0.6211144 0.8301795 +0.9861357 0.6211144 0.8301795 +1 0.6211144 0.8301795 +0 0.6460766 0.8301795 +0.1939468 0.6460766 0.8301795 +0.2773041 0.6460766 0.8301795 +0.3384659 0.6460766 0.8301795 +0.3885728 0.6460766 0.8301795 +0.4317928 0.6460766 0.8301795 +0.470214 0.6460766 0.8301795 +0.5050551 0.6460766 0.8301795 +0.5370987 0.6460766 0.8301795 +0.5668815 0.6460766 0.8301795 +0.5947903 0.6460766 0.8301795 +0.6211144 0.6460766 0.8301795 +0.6460766 0.6460766 0.8301795 +0.6698526 0.6460766 0.8301795 +0.6925839 0.6460766 0.8301795 +0.7143866 0.6460766 0.8301795 +0.7353569 0.6460766 0.8301795 +0.7555758 0.6460766 0.8301795 +0.7751122 0.6460766 0.8301795 +0.7940252 0.6460766 0.8301795 +0.8123661 0.6460766 0.8301795 +0.8301795 0.6460766 0.8301795 +0.8475045 0.6460766 0.8301795 +0.8643761 0.6460766 0.8301795 +0.880825 0.6460766 0.8301795 +0.8968787 0.6460766 0.8301795 +0.9125621 0.6460766 0.8301795 +0.9278974 0.6460766 0.8301795 +0.9429048 0.6460766 0.8301795 +0.9576028 0.6460766 0.8301795 +0.9720079 0.6460766 0.8301795 +0.9861357 0.6460766 0.8301795 +1 0.6460766 0.8301795 +0 0.6698526 0.8301795 +0.1939468 0.6698526 0.8301795 +0.2773041 0.6698526 0.8301795 +0.3384659 0.6698526 0.8301795 +0.3885728 0.6698526 0.8301795 +0.4317928 0.6698526 0.8301795 +0.470214 0.6698526 0.8301795 +0.5050551 0.6698526 0.8301795 +0.5370987 0.6698526 0.8301795 +0.5668815 0.6698526 0.8301795 +0.5947903 0.6698526 0.8301795 +0.6211144 0.6698526 0.8301795 +0.6460766 0.6698526 0.8301795 +0.6698526 0.6698526 0.8301795 +0.6925839 0.6698526 0.8301795 +0.7143866 0.6698526 0.8301795 +0.7353569 0.6698526 0.8301795 +0.7555758 0.6698526 0.8301795 +0.7751122 0.6698526 0.8301795 +0.7940252 0.6698526 0.8301795 +0.8123661 0.6698526 0.8301795 +0.8301795 0.6698526 0.8301795 +0.8475045 0.6698526 0.8301795 +0.8643761 0.6698526 0.8301795 +0.880825 0.6698526 0.8301795 +0.8968787 0.6698526 0.8301795 +0.9125621 0.6698526 0.8301795 +0.9278974 0.6698526 0.8301795 +0.9429048 0.6698526 0.8301795 +0.9576028 0.6698526 0.8301795 +0.9720079 0.6698526 0.8301795 +0.9861357 0.6698526 0.8301795 +1 0.6698526 0.8301795 +0 0.6925839 0.8301795 +0.1939468 0.6925839 0.8301795 +0.2773041 0.6925839 0.8301795 +0.3384659 0.6925839 0.8301795 +0.3885728 0.6925839 0.8301795 +0.4317928 0.6925839 0.8301795 +0.470214 0.6925839 0.8301795 +0.5050551 0.6925839 0.8301795 +0.5370987 0.6925839 0.8301795 +0.5668815 0.6925839 0.8301795 +0.5947903 0.6925839 0.8301795 +0.6211144 0.6925839 0.8301795 +0.6460766 0.6925839 0.8301795 +0.6698526 0.6925839 0.8301795 +0.6925839 0.6925839 0.8301795 +0.7143866 0.6925839 0.8301795 +0.7353569 0.6925839 0.8301795 +0.7555758 0.6925839 0.8301795 +0.7751122 0.6925839 0.8301795 +0.7940252 0.6925839 0.8301795 +0.8123661 0.6925839 0.8301795 +0.8301795 0.6925839 0.8301795 +0.8475045 0.6925839 0.8301795 +0.8643761 0.6925839 0.8301795 +0.880825 0.6925839 0.8301795 +0.8968787 0.6925839 0.8301795 +0.9125621 0.6925839 0.8301795 +0.9278974 0.6925839 0.8301795 +0.9429048 0.6925839 0.8301795 +0.9576028 0.6925839 0.8301795 +0.9720079 0.6925839 0.8301795 +0.9861357 0.6925839 0.8301795 +1 0.6925839 0.8301795 +0 0.7143866 0.8301795 +0.1939468 0.7143866 0.8301795 +0.2773041 0.7143866 0.8301795 +0.3384659 0.7143866 0.8301795 +0.3885728 0.7143866 0.8301795 +0.4317928 0.7143866 0.8301795 +0.470214 0.7143866 0.8301795 +0.5050551 0.7143866 0.8301795 +0.5370987 0.7143866 0.8301795 +0.5668815 0.7143866 0.8301795 +0.5947903 0.7143866 0.8301795 +0.6211144 0.7143866 0.8301795 +0.6460766 0.7143866 0.8301795 +0.6698526 0.7143866 0.8301795 +0.6925839 0.7143866 0.8301795 +0.7143866 0.7143866 0.8301795 +0.7353569 0.7143866 0.8301795 +0.7555758 0.7143866 0.8301795 +0.7751122 0.7143866 0.8301795 +0.7940252 0.7143866 0.8301795 +0.8123661 0.7143866 0.8301795 +0.8301795 0.7143866 0.8301795 +0.8475045 0.7143866 0.8301795 +0.8643761 0.7143866 0.8301795 +0.880825 0.7143866 0.8301795 +0.8968787 0.7143866 0.8301795 +0.9125621 0.7143866 0.8301795 +0.9278974 0.7143866 0.8301795 +0.9429048 0.7143866 0.8301795 +0.9576028 0.7143866 0.8301795 +0.9720079 0.7143866 0.8301795 +0.9861357 0.7143866 0.8301795 +1 0.7143866 0.8301795 +0 0.7353569 0.8301795 +0.1939468 0.7353569 0.8301795 +0.2773041 0.7353569 0.8301795 +0.3384659 0.7353569 0.8301795 +0.3885728 0.7353569 0.8301795 +0.4317928 0.7353569 0.8301795 +0.470214 0.7353569 0.8301795 +0.5050551 0.7353569 0.8301795 +0.5370987 0.7353569 0.8301795 +0.5668815 0.7353569 0.8301795 +0.5947903 0.7353569 0.8301795 +0.6211144 0.7353569 0.8301795 +0.6460766 0.7353569 0.8301795 +0.6698526 0.7353569 0.8301795 +0.6925839 0.7353569 0.8301795 +0.7143866 0.7353569 0.8301795 +0.7353569 0.7353569 0.8301795 +0.7555758 0.7353569 0.8301795 +0.7751122 0.7353569 0.8301795 +0.7940252 0.7353569 0.8301795 +0.8123661 0.7353569 0.8301795 +0.8301795 0.7353569 0.8301795 +0.8475045 0.7353569 0.8301795 +0.8643761 0.7353569 0.8301795 +0.880825 0.7353569 0.8301795 +0.8968787 0.7353569 0.8301795 +0.9125621 0.7353569 0.8301795 +0.9278974 0.7353569 0.8301795 +0.9429048 0.7353569 0.8301795 +0.9576028 0.7353569 0.8301795 +0.9720079 0.7353569 0.8301795 +0.9861357 0.7353569 0.8301795 +1 0.7353569 0.8301795 +0 0.7555758 0.8301795 +0.1939468 0.7555758 0.8301795 +0.2773041 0.7555758 0.8301795 +0.3384659 0.7555758 0.8301795 +0.3885728 0.7555758 0.8301795 +0.4317928 0.7555758 0.8301795 +0.470214 0.7555758 0.8301795 +0.5050551 0.7555758 0.8301795 +0.5370987 0.7555758 0.8301795 +0.5668815 0.7555758 0.8301795 +0.5947903 0.7555758 0.8301795 +0.6211144 0.7555758 0.8301795 +0.6460766 0.7555758 0.8301795 +0.6698526 0.7555758 0.8301795 +0.6925839 0.7555758 0.8301795 +0.7143866 0.7555758 0.8301795 +0.7353569 0.7555758 0.8301795 +0.7555758 0.7555758 0.8301795 +0.7751122 0.7555758 0.8301795 +0.7940252 0.7555758 0.8301795 +0.8123661 0.7555758 0.8301795 +0.8301795 0.7555758 0.8301795 +0.8475045 0.7555758 0.8301795 +0.8643761 0.7555758 0.8301795 +0.880825 0.7555758 0.8301795 +0.8968787 0.7555758 0.8301795 +0.9125621 0.7555758 0.8301795 +0.9278974 0.7555758 0.8301795 +0.9429048 0.7555758 0.8301795 +0.9576028 0.7555758 0.8301795 +0.9720079 0.7555758 0.8301795 +0.9861357 0.7555758 0.8301795 +1 0.7555758 0.8301795 +0 0.7751122 0.8301795 +0.1939468 0.7751122 0.8301795 +0.2773041 0.7751122 0.8301795 +0.3384659 0.7751122 0.8301795 +0.3885728 0.7751122 0.8301795 +0.4317928 0.7751122 0.8301795 +0.470214 0.7751122 0.8301795 +0.5050551 0.7751122 0.8301795 +0.5370987 0.7751122 0.8301795 +0.5668815 0.7751122 0.8301795 +0.5947903 0.7751122 0.8301795 +0.6211144 0.7751122 0.8301795 +0.6460766 0.7751122 0.8301795 +0.6698526 0.7751122 0.8301795 +0.6925839 0.7751122 0.8301795 +0.7143866 0.7751122 0.8301795 +0.7353569 0.7751122 0.8301795 +0.7555758 0.7751122 0.8301795 +0.7751122 0.7751122 0.8301795 +0.7940252 0.7751122 0.8301795 +0.8123661 0.7751122 0.8301795 +0.8301795 0.7751122 0.8301795 +0.8475045 0.7751122 0.8301795 +0.8643761 0.7751122 0.8301795 +0.880825 0.7751122 0.8301795 +0.8968787 0.7751122 0.8301795 +0.9125621 0.7751122 0.8301795 +0.9278974 0.7751122 0.8301795 +0.9429048 0.7751122 0.8301795 +0.9576028 0.7751122 0.8301795 +0.9720079 0.7751122 0.8301795 +0.9861357 0.7751122 0.8301795 +1 0.7751122 0.8301795 +0 0.7940252 0.8301795 +0.1939468 0.7940252 0.8301795 +0.2773041 0.7940252 0.8301795 +0.3384659 0.7940252 0.8301795 +0.3885728 0.7940252 0.8301795 +0.4317928 0.7940252 0.8301795 +0.470214 0.7940252 0.8301795 +0.5050551 0.7940252 0.8301795 +0.5370987 0.7940252 0.8301795 +0.5668815 0.7940252 0.8301795 +0.5947903 0.7940252 0.8301795 +0.6211144 0.7940252 0.8301795 +0.6460766 0.7940252 0.8301795 +0.6698526 0.7940252 0.8301795 +0.6925839 0.7940252 0.8301795 +0.7143866 0.7940252 0.8301795 +0.7353569 0.7940252 0.8301795 +0.7555758 0.7940252 0.8301795 +0.7751122 0.7940252 0.8301795 +0.7940252 0.7940252 0.8301795 +0.8123661 0.7940252 0.8301795 +0.8301795 0.7940252 0.8301795 +0.8475045 0.7940252 0.8301795 +0.8643761 0.7940252 0.8301795 +0.880825 0.7940252 0.8301795 +0.8968787 0.7940252 0.8301795 +0.9125621 0.7940252 0.8301795 +0.9278974 0.7940252 0.8301795 +0.9429048 0.7940252 0.8301795 +0.9576028 0.7940252 0.8301795 +0.9720079 0.7940252 0.8301795 +0.9861357 0.7940252 0.8301795 +1 0.7940252 0.8301795 +0 0.8123661 0.8301795 +0.1939468 0.8123661 0.8301795 +0.2773041 0.8123661 0.8301795 +0.3384659 0.8123661 0.8301795 +0.3885728 0.8123661 0.8301795 +0.4317928 0.8123661 0.8301795 +0.470214 0.8123661 0.8301795 +0.5050551 0.8123661 0.8301795 +0.5370987 0.8123661 0.8301795 +0.5668815 0.8123661 0.8301795 +0.5947903 0.8123661 0.8301795 +0.6211144 0.8123661 0.8301795 +0.6460766 0.8123661 0.8301795 +0.6698526 0.8123661 0.8301795 +0.6925839 0.8123661 0.8301795 +0.7143866 0.8123661 0.8301795 +0.7353569 0.8123661 0.8301795 +0.7555758 0.8123661 0.8301795 +0.7751122 0.8123661 0.8301795 +0.7940252 0.8123661 0.8301795 +0.8123661 0.8123661 0.8301795 +0.8301795 0.8123661 0.8301795 +0.8475045 0.8123661 0.8301795 +0.8643761 0.8123661 0.8301795 +0.880825 0.8123661 0.8301795 +0.8968787 0.8123661 0.8301795 +0.9125621 0.8123661 0.8301795 +0.9278974 0.8123661 0.8301795 +0.9429048 0.8123661 0.8301795 +0.9576028 0.8123661 0.8301795 +0.9720079 0.8123661 0.8301795 +0.9861357 0.8123661 0.8301795 +1 0.8123661 0.8301795 +0 0.8301795 0.8301795 +0.1939468 0.8301795 0.8301795 +0.2773041 0.8301795 0.8301795 +0.3384659 0.8301795 0.8301795 +0.3885728 0.8301795 0.8301795 +0.4317928 0.8301795 0.8301795 +0.470214 0.8301795 0.8301795 +0.5050551 0.8301795 0.8301795 +0.5370987 0.8301795 0.8301795 +0.5668815 0.8301795 0.8301795 +0.5947903 0.8301795 0.8301795 +0.6211144 0.8301795 0.8301795 +0.6460766 0.8301795 0.8301795 +0.6698526 0.8301795 0.8301795 +0.6925839 0.8301795 0.8301795 +0.7143866 0.8301795 0.8301795 +0.7353569 0.8301795 0.8301795 +0.7555758 0.8301795 0.8301795 +0.7751122 0.8301795 0.8301795 +0.7940252 0.8301795 0.8301795 +0.8123661 0.8301795 0.8301795 +0.8301795 0.8301795 0.8301795 +0.8475045 0.8301795 0.8301795 +0.8643761 0.8301795 0.8301795 +0.880825 0.8301795 0.8301795 +0.8968787 0.8301795 0.8301795 +0.9125621 0.8301795 0.8301795 +0.9278974 0.8301795 0.8301795 +0.9429048 0.8301795 0.8301795 +0.9576028 0.8301795 0.8301795 +0.9720079 0.8301795 0.8301795 +0.9861357 0.8301795 0.8301795 +1 0.8301795 0.8301795 +0 0.8475045 0.8301795 +0.1939468 0.8475045 0.8301795 +0.2773041 0.8475045 0.8301795 +0.3384659 0.8475045 0.8301795 +0.3885728 0.8475045 0.8301795 +0.4317928 0.8475045 0.8301795 +0.470214 0.8475045 0.8301795 +0.5050551 0.8475045 0.8301795 +0.5370987 0.8475045 0.8301795 +0.5668815 0.8475045 0.8301795 +0.5947903 0.8475045 0.8301795 +0.6211144 0.8475045 0.8301795 +0.6460766 0.8475045 0.8301795 +0.6698526 0.8475045 0.8301795 +0.6925839 0.8475045 0.8301795 +0.7143866 0.8475045 0.8301795 +0.7353569 0.8475045 0.8301795 +0.7555758 0.8475045 0.8301795 +0.7751122 0.8475045 0.8301795 +0.7940252 0.8475045 0.8301795 +0.8123661 0.8475045 0.8301795 +0.8301795 0.8475045 0.8301795 +0.8475045 0.8475045 0.8301795 +0.8643761 0.8475045 0.8301795 +0.880825 0.8475045 0.8301795 +0.8968787 0.8475045 0.8301795 +0.9125621 0.8475045 0.8301795 +0.9278974 0.8475045 0.8301795 +0.9429048 0.8475045 0.8301795 +0.9576028 0.8475045 0.8301795 +0.9720079 0.8475045 0.8301795 +0.9861357 0.8475045 0.8301795 +1 0.8475045 0.8301795 +0 0.8643761 0.8301795 +0.1939468 0.8643761 0.8301795 +0.2773041 0.8643761 0.8301795 +0.3384659 0.8643761 0.8301795 +0.3885728 0.8643761 0.8301795 +0.4317928 0.8643761 0.8301795 +0.470214 0.8643761 0.8301795 +0.5050551 0.8643761 0.8301795 +0.5370987 0.8643761 0.8301795 +0.5668815 0.8643761 0.8301795 +0.5947903 0.8643761 0.8301795 +0.6211144 0.8643761 0.8301795 +0.6460766 0.8643761 0.8301795 +0.6698526 0.8643761 0.8301795 +0.6925839 0.8643761 0.8301795 +0.7143866 0.8643761 0.8301795 +0.7353569 0.8643761 0.8301795 +0.7555758 0.8643761 0.8301795 +0.7751122 0.8643761 0.8301795 +0.7940252 0.8643761 0.8301795 +0.8123661 0.8643761 0.8301795 +0.8301795 0.8643761 0.8301795 +0.8475045 0.8643761 0.8301795 +0.8643761 0.8643761 0.8301795 +0.880825 0.8643761 0.8301795 +0.8968787 0.8643761 0.8301795 +0.9125621 0.8643761 0.8301795 +0.9278974 0.8643761 0.8301795 +0.9429048 0.8643761 0.8301795 +0.9576028 0.8643761 0.8301795 +0.9720079 0.8643761 0.8301795 +0.9861357 0.8643761 0.8301795 +1 0.8643761 0.8301795 +0 0.880825 0.8301795 +0.1939468 0.880825 0.8301795 +0.2773041 0.880825 0.8301795 +0.3384659 0.880825 0.8301795 +0.3885728 0.880825 0.8301795 +0.4317928 0.880825 0.8301795 +0.470214 0.880825 0.8301795 +0.5050551 0.880825 0.8301795 +0.5370987 0.880825 0.8301795 +0.5668815 0.880825 0.8301795 +0.5947903 0.880825 0.8301795 +0.6211144 0.880825 0.8301795 +0.6460766 0.880825 0.8301795 +0.6698526 0.880825 0.8301795 +0.6925839 0.880825 0.8301795 +0.7143866 0.880825 0.8301795 +0.7353569 0.880825 0.8301795 +0.7555758 0.880825 0.8301795 +0.7751122 0.880825 0.8301795 +0.7940252 0.880825 0.8301795 +0.8123661 0.880825 0.8301795 +0.8301795 0.880825 0.8301795 +0.8475045 0.880825 0.8301795 +0.8643761 0.880825 0.8301795 +0.880825 0.880825 0.8301795 +0.8968787 0.880825 0.8301795 +0.9125621 0.880825 0.8301795 +0.9278974 0.880825 0.8301795 +0.9429048 0.880825 0.8301795 +0.9576028 0.880825 0.8301795 +0.9720079 0.880825 0.8301795 +0.9861357 0.880825 0.8301795 +1 0.880825 0.8301795 +0 0.8968787 0.8301795 +0.1939468 0.8968787 0.8301795 +0.2773041 0.8968787 0.8301795 +0.3384659 0.8968787 0.8301795 +0.3885728 0.8968787 0.8301795 +0.4317928 0.8968787 0.8301795 +0.470214 0.8968787 0.8301795 +0.5050551 0.8968787 0.8301795 +0.5370987 0.8968787 0.8301795 +0.5668815 0.8968787 0.8301795 +0.5947903 0.8968787 0.8301795 +0.6211144 0.8968787 0.8301795 +0.6460766 0.8968787 0.8301795 +0.6698526 0.8968787 0.8301795 +0.6925839 0.8968787 0.8301795 +0.7143866 0.8968787 0.8301795 +0.7353569 0.8968787 0.8301795 +0.7555758 0.8968787 0.8301795 +0.7751122 0.8968787 0.8301795 +0.7940252 0.8968787 0.8301795 +0.8123661 0.8968787 0.8301795 +0.8301795 0.8968787 0.8301795 +0.8475045 0.8968787 0.8301795 +0.8643761 0.8968787 0.8301795 +0.880825 0.8968787 0.8301795 +0.8968787 0.8968787 0.8301795 +0.9125621 0.8968787 0.8301795 +0.9278974 0.8968787 0.8301795 +0.9429048 0.8968787 0.8301795 +0.9576028 0.8968787 0.8301795 +0.9720079 0.8968787 0.8301795 +0.9861357 0.8968787 0.8301795 +1 0.8968787 0.8301795 +0 0.9125621 0.8301795 +0.1939468 0.9125621 0.8301795 +0.2773041 0.9125621 0.8301795 +0.3384659 0.9125621 0.8301795 +0.3885728 0.9125621 0.8301795 +0.4317928 0.9125621 0.8301795 +0.470214 0.9125621 0.8301795 +0.5050551 0.9125621 0.8301795 +0.5370987 0.9125621 0.8301795 +0.5668815 0.9125621 0.8301795 +0.5947903 0.9125621 0.8301795 +0.6211144 0.9125621 0.8301795 +0.6460766 0.9125621 0.8301795 +0.6698526 0.9125621 0.8301795 +0.6925839 0.9125621 0.8301795 +0.7143866 0.9125621 0.8301795 +0.7353569 0.9125621 0.8301795 +0.7555758 0.9125621 0.8301795 +0.7751122 0.9125621 0.8301795 +0.7940252 0.9125621 0.8301795 +0.8123661 0.9125621 0.8301795 +0.8301795 0.9125621 0.8301795 +0.8475045 0.9125621 0.8301795 +0.8643761 0.9125621 0.8301795 +0.880825 0.9125621 0.8301795 +0.8968787 0.9125621 0.8301795 +0.9125621 0.9125621 0.8301795 +0.9278974 0.9125621 0.8301795 +0.9429048 0.9125621 0.8301795 +0.9576028 0.9125621 0.8301795 +0.9720079 0.9125621 0.8301795 +0.9861357 0.9125621 0.8301795 +1 0.9125621 0.8301795 +0 0.9278974 0.8301795 +0.1939468 0.9278974 0.8301795 +0.2773041 0.9278974 0.8301795 +0.3384659 0.9278974 0.8301795 +0.3885728 0.9278974 0.8301795 +0.4317928 0.9278974 0.8301795 +0.470214 0.9278974 0.8301795 +0.5050551 0.9278974 0.8301795 +0.5370987 0.9278974 0.8301795 +0.5668815 0.9278974 0.8301795 +0.5947903 0.9278974 0.8301795 +0.6211144 0.9278974 0.8301795 +0.6460766 0.9278974 0.8301795 +0.6698526 0.9278974 0.8301795 +0.6925839 0.9278974 0.8301795 +0.7143866 0.9278974 0.8301795 +0.7353569 0.9278974 0.8301795 +0.7555758 0.9278974 0.8301795 +0.7751122 0.9278974 0.8301795 +0.7940252 0.9278974 0.8301795 +0.8123661 0.9278974 0.8301795 +0.8301795 0.9278974 0.8301795 +0.8475045 0.9278974 0.8301795 +0.8643761 0.9278974 0.8301795 +0.880825 0.9278974 0.8301795 +0.8968787 0.9278974 0.8301795 +0.9125621 0.9278974 0.8301795 +0.9278974 0.9278974 0.8301795 +0.9429048 0.9278974 0.8301795 +0.9576028 0.9278974 0.8301795 +0.9720079 0.9278974 0.8301795 +0.9861357 0.9278974 0.8301795 +1 0.9278974 0.8301795 +0 0.9429048 0.8301795 +0.1939468 0.9429048 0.8301795 +0.2773041 0.9429048 0.8301795 +0.3384659 0.9429048 0.8301795 +0.3885728 0.9429048 0.8301795 +0.4317928 0.9429048 0.8301795 +0.470214 0.9429048 0.8301795 +0.5050551 0.9429048 0.8301795 +0.5370987 0.9429048 0.8301795 +0.5668815 0.9429048 0.8301795 +0.5947903 0.9429048 0.8301795 +0.6211144 0.9429048 0.8301795 +0.6460766 0.9429048 0.8301795 +0.6698526 0.9429048 0.8301795 +0.6925839 0.9429048 0.8301795 +0.7143866 0.9429048 0.8301795 +0.7353569 0.9429048 0.8301795 +0.7555758 0.9429048 0.8301795 +0.7751122 0.9429048 0.8301795 +0.7940252 0.9429048 0.8301795 +0.8123661 0.9429048 0.8301795 +0.8301795 0.9429048 0.8301795 +0.8475045 0.9429048 0.8301795 +0.8643761 0.9429048 0.8301795 +0.880825 0.9429048 0.8301795 +0.8968787 0.9429048 0.8301795 +0.9125621 0.9429048 0.8301795 +0.9278974 0.9429048 0.8301795 +0.9429048 0.9429048 0.8301795 +0.9576028 0.9429048 0.8301795 +0.9720079 0.9429048 0.8301795 +0.9861357 0.9429048 0.8301795 +1 0.9429048 0.8301795 +0 0.9576028 0.8301795 +0.1939468 0.9576028 0.8301795 +0.2773041 0.9576028 0.8301795 +0.3384659 0.9576028 0.8301795 +0.3885728 0.9576028 0.8301795 +0.4317928 0.9576028 0.8301795 +0.470214 0.9576028 0.8301795 +0.5050551 0.9576028 0.8301795 +0.5370987 0.9576028 0.8301795 +0.5668815 0.9576028 0.8301795 +0.5947903 0.9576028 0.8301795 +0.6211144 0.9576028 0.8301795 +0.6460766 0.9576028 0.8301795 +0.6698526 0.9576028 0.8301795 +0.6925839 0.9576028 0.8301795 +0.7143866 0.9576028 0.8301795 +0.7353569 0.9576028 0.8301795 +0.7555758 0.9576028 0.8301795 +0.7751122 0.9576028 0.8301795 +0.7940252 0.9576028 0.8301795 +0.8123661 0.9576028 0.8301795 +0.8301795 0.9576028 0.8301795 +0.8475045 0.9576028 0.8301795 +0.8643761 0.9576028 0.8301795 +0.880825 0.9576028 0.8301795 +0.8968787 0.9576028 0.8301795 +0.9125621 0.9576028 0.8301795 +0.9278974 0.9576028 0.8301795 +0.9429048 0.9576028 0.8301795 +0.9576028 0.9576028 0.8301795 +0.9720079 0.9576028 0.8301795 +0.9861357 0.9576028 0.8301795 +1 0.9576028 0.8301795 +0 0.9720079 0.8301795 +0.1939468 0.9720079 0.8301795 +0.2773041 0.9720079 0.8301795 +0.3384659 0.9720079 0.8301795 +0.3885728 0.9720079 0.8301795 +0.4317928 0.9720079 0.8301795 +0.470214 0.9720079 0.8301795 +0.5050551 0.9720079 0.8301795 +0.5370987 0.9720079 0.8301795 +0.5668815 0.9720079 0.8301795 +0.5947903 0.9720079 0.8301795 +0.6211144 0.9720079 0.8301795 +0.6460766 0.9720079 0.8301795 +0.6698526 0.9720079 0.8301795 +0.6925839 0.9720079 0.8301795 +0.7143866 0.9720079 0.8301795 +0.7353569 0.9720079 0.8301795 +0.7555758 0.9720079 0.8301795 +0.7751122 0.9720079 0.8301795 +0.7940252 0.9720079 0.8301795 +0.8123661 0.9720079 0.8301795 +0.8301795 0.9720079 0.8301795 +0.8475045 0.9720079 0.8301795 +0.8643761 0.9720079 0.8301795 +0.880825 0.9720079 0.8301795 +0.8968787 0.9720079 0.8301795 +0.9125621 0.9720079 0.8301795 +0.9278974 0.9720079 0.8301795 +0.9429048 0.9720079 0.8301795 +0.9576028 0.9720079 0.8301795 +0.9720079 0.9720079 0.8301795 +0.9861357 0.9720079 0.8301795 +1 0.9720079 0.8301795 +0 0.9861357 0.8301795 +0.1939468 0.9861357 0.8301795 +0.2773041 0.9861357 0.8301795 +0.3384659 0.9861357 0.8301795 +0.3885728 0.9861357 0.8301795 +0.4317928 0.9861357 0.8301795 +0.470214 0.9861357 0.8301795 +0.5050551 0.9861357 0.8301795 +0.5370987 0.9861357 0.8301795 +0.5668815 0.9861357 0.8301795 +0.5947903 0.9861357 0.8301795 +0.6211144 0.9861357 0.8301795 +0.6460766 0.9861357 0.8301795 +0.6698526 0.9861357 0.8301795 +0.6925839 0.9861357 0.8301795 +0.7143866 0.9861357 0.8301795 +0.7353569 0.9861357 0.8301795 +0.7555758 0.9861357 0.8301795 +0.7751122 0.9861357 0.8301795 +0.7940252 0.9861357 0.8301795 +0.8123661 0.9861357 0.8301795 +0.8301795 0.9861357 0.8301795 +0.8475045 0.9861357 0.8301795 +0.8643761 0.9861357 0.8301795 +0.880825 0.9861357 0.8301795 +0.8968787 0.9861357 0.8301795 +0.9125621 0.9861357 0.8301795 +0.9278974 0.9861357 0.8301795 +0.9429048 0.9861357 0.8301795 +0.9576028 0.9861357 0.8301795 +0.9720079 0.9861357 0.8301795 +0.9861357 0.9861357 0.8301795 +1 0.9861357 0.8301795 +0 1 0.8301795 +0.1939468 1 0.8301795 +0.2773041 1 0.8301795 +0.3384659 1 0.8301795 +0.3885728 1 0.8301795 +0.4317928 1 0.8301795 +0.470214 1 0.8301795 +0.5050551 1 0.8301795 +0.5370987 1 0.8301795 +0.5668815 1 0.8301795 +0.5947903 1 0.8301795 +0.6211144 1 0.8301795 +0.6460766 1 0.8301795 +0.6698526 1 0.8301795 +0.6925839 1 0.8301795 +0.7143866 1 0.8301795 +0.7353569 1 0.8301795 +0.7555758 1 0.8301795 +0.7751122 1 0.8301795 +0.7940252 1 0.8301795 +0.8123661 1 0.8301795 +0.8301795 1 0.8301795 +0.8475045 1 0.8301795 +0.8643761 1 0.8301795 +0.880825 1 0.8301795 +0.8968787 1 0.8301795 +0.9125621 1 0.8301795 +0.9278974 1 0.8301795 +0.9429048 1 0.8301795 +0.9576028 1 0.8301795 +0.9720079 1 0.8301795 +0.9861357 1 0.8301795 +1 1 0.8301795 +0 0 0.8475045 +0.1939468 0 0.8475045 +0.2773041 0 0.8475045 +0.3384659 0 0.8475045 +0.3885728 0 0.8475045 +0.4317928 0 0.8475045 +0.470214 0 0.8475045 +0.5050551 0 0.8475045 +0.5370987 0 0.8475045 +0.5668815 0 0.8475045 +0.5947903 0 0.8475045 +0.6211144 0 0.8475045 +0.6460766 0 0.8475045 +0.6698526 0 0.8475045 +0.6925839 0 0.8475045 +0.7143866 0 0.8475045 +0.7353569 0 0.8475045 +0.7555758 0 0.8475045 +0.7751122 0 0.8475045 +0.7940252 0 0.8475045 +0.8123661 0 0.8475045 +0.8301795 0 0.8475045 +0.8475045 0 0.8475045 +0.8643761 0 0.8475045 +0.880825 0 0.8475045 +0.8968787 0 0.8475045 +0.9125621 0 0.8475045 +0.9278974 0 0.8475045 +0.9429048 0 0.8475045 +0.9576028 0 0.8475045 +0.9720079 0 0.8475045 +0.9861357 0 0.8475045 +1 0 0.8475045 +0 0.1939468 0.8475045 +0.1939468 0.1939468 0.8475045 +0.2773041 0.1939468 0.8475045 +0.3384659 0.1939468 0.8475045 +0.3885728 0.1939468 0.8475045 +0.4317928 0.1939468 0.8475045 +0.470214 0.1939468 0.8475045 +0.5050551 0.1939468 0.8475045 +0.5370987 0.1939468 0.8475045 +0.5668815 0.1939468 0.8475045 +0.5947903 0.1939468 0.8475045 +0.6211144 0.1939468 0.8475045 +0.6460766 0.1939468 0.8475045 +0.6698526 0.1939468 0.8475045 +0.6925839 0.1939468 0.8475045 +0.7143866 0.1939468 0.8475045 +0.7353569 0.1939468 0.8475045 +0.7555758 0.1939468 0.8475045 +0.7751122 0.1939468 0.8475045 +0.7940252 0.1939468 0.8475045 +0.8123661 0.1939468 0.8475045 +0.8301795 0.1939468 0.8475045 +0.8475045 0.1939468 0.8475045 +0.8643761 0.1939468 0.8475045 +0.880825 0.1939468 0.8475045 +0.8968787 0.1939468 0.8475045 +0.9125621 0.1939468 0.8475045 +0.9278974 0.1939468 0.8475045 +0.9429048 0.1939468 0.8475045 +0.9576028 0.1939468 0.8475045 +0.9720079 0.1939468 0.8475045 +0.9861357 0.1939468 0.8475045 +1 0.1939468 0.8475045 +0 0.2773041 0.8475045 +0.1939468 0.2773041 0.8475045 +0.2773041 0.2773041 0.8475045 +0.3384659 0.2773041 0.8475045 +0.3885728 0.2773041 0.8475045 +0.4317928 0.2773041 0.8475045 +0.470214 0.2773041 0.8475045 +0.5050551 0.2773041 0.8475045 +0.5370987 0.2773041 0.8475045 +0.5668815 0.2773041 0.8475045 +0.5947903 0.2773041 0.8475045 +0.6211144 0.2773041 0.8475045 +0.6460766 0.2773041 0.8475045 +0.6698526 0.2773041 0.8475045 +0.6925839 0.2773041 0.8475045 +0.7143866 0.2773041 0.8475045 +0.7353569 0.2773041 0.8475045 +0.7555758 0.2773041 0.8475045 +0.7751122 0.2773041 0.8475045 +0.7940252 0.2773041 0.8475045 +0.8123661 0.2773041 0.8475045 +0.8301795 0.2773041 0.8475045 +0.8475045 0.2773041 0.8475045 +0.8643761 0.2773041 0.8475045 +0.880825 0.2773041 0.8475045 +0.8968787 0.2773041 0.8475045 +0.9125621 0.2773041 0.8475045 +0.9278974 0.2773041 0.8475045 +0.9429048 0.2773041 0.8475045 +0.9576028 0.2773041 0.8475045 +0.9720079 0.2773041 0.8475045 +0.9861357 0.2773041 0.8475045 +1 0.2773041 0.8475045 +0 0.3384659 0.8475045 +0.1939468 0.3384659 0.8475045 +0.2773041 0.3384659 0.8475045 +0.3384659 0.3384659 0.8475045 +0.3885728 0.3384659 0.8475045 +0.4317928 0.3384659 0.8475045 +0.470214 0.3384659 0.8475045 +0.5050551 0.3384659 0.8475045 +0.5370987 0.3384659 0.8475045 +0.5668815 0.3384659 0.8475045 +0.5947903 0.3384659 0.8475045 +0.6211144 0.3384659 0.8475045 +0.6460766 0.3384659 0.8475045 +0.6698526 0.3384659 0.8475045 +0.6925839 0.3384659 0.8475045 +0.7143866 0.3384659 0.8475045 +0.7353569 0.3384659 0.8475045 +0.7555758 0.3384659 0.8475045 +0.7751122 0.3384659 0.8475045 +0.7940252 0.3384659 0.8475045 +0.8123661 0.3384659 0.8475045 +0.8301795 0.3384659 0.8475045 +0.8475045 0.3384659 0.8475045 +0.8643761 0.3384659 0.8475045 +0.880825 0.3384659 0.8475045 +0.8968787 0.3384659 0.8475045 +0.9125621 0.3384659 0.8475045 +0.9278974 0.3384659 0.8475045 +0.9429048 0.3384659 0.8475045 +0.9576028 0.3384659 0.8475045 +0.9720079 0.3384659 0.8475045 +0.9861357 0.3384659 0.8475045 +1 0.3384659 0.8475045 +0 0.3885728 0.8475045 +0.1939468 0.3885728 0.8475045 +0.2773041 0.3885728 0.8475045 +0.3384659 0.3885728 0.8475045 +0.3885728 0.3885728 0.8475045 +0.4317928 0.3885728 0.8475045 +0.470214 0.3885728 0.8475045 +0.5050551 0.3885728 0.8475045 +0.5370987 0.3885728 0.8475045 +0.5668815 0.3885728 0.8475045 +0.5947903 0.3885728 0.8475045 +0.6211144 0.3885728 0.8475045 +0.6460766 0.3885728 0.8475045 +0.6698526 0.3885728 0.8475045 +0.6925839 0.3885728 0.8475045 +0.7143866 0.3885728 0.8475045 +0.7353569 0.3885728 0.8475045 +0.7555758 0.3885728 0.8475045 +0.7751122 0.3885728 0.8475045 +0.7940252 0.3885728 0.8475045 +0.8123661 0.3885728 0.8475045 +0.8301795 0.3885728 0.8475045 +0.8475045 0.3885728 0.8475045 +0.8643761 0.3885728 0.8475045 +0.880825 0.3885728 0.8475045 +0.8968787 0.3885728 0.8475045 +0.9125621 0.3885728 0.8475045 +0.9278974 0.3885728 0.8475045 +0.9429048 0.3885728 0.8475045 +0.9576028 0.3885728 0.8475045 +0.9720079 0.3885728 0.8475045 +0.9861357 0.3885728 0.8475045 +1 0.3885728 0.8475045 +0 0.4317928 0.8475045 +0.1939468 0.4317928 0.8475045 +0.2773041 0.4317928 0.8475045 +0.3384659 0.4317928 0.8475045 +0.3885728 0.4317928 0.8475045 +0.4317928 0.4317928 0.8475045 +0.470214 0.4317928 0.8475045 +0.5050551 0.4317928 0.8475045 +0.5370987 0.4317928 0.8475045 +0.5668815 0.4317928 0.8475045 +0.5947903 0.4317928 0.8475045 +0.6211144 0.4317928 0.8475045 +0.6460766 0.4317928 0.8475045 +0.6698526 0.4317928 0.8475045 +0.6925839 0.4317928 0.8475045 +0.7143866 0.4317928 0.8475045 +0.7353569 0.4317928 0.8475045 +0.7555758 0.4317928 0.8475045 +0.7751122 0.4317928 0.8475045 +0.7940252 0.4317928 0.8475045 +0.8123661 0.4317928 0.8475045 +0.8301795 0.4317928 0.8475045 +0.8475045 0.4317928 0.8475045 +0.8643761 0.4317928 0.8475045 +0.880825 0.4317928 0.8475045 +0.8968787 0.4317928 0.8475045 +0.9125621 0.4317928 0.8475045 +0.9278974 0.4317928 0.8475045 +0.9429048 0.4317928 0.8475045 +0.9576028 0.4317928 0.8475045 +0.9720079 0.4317928 0.8475045 +0.9861357 0.4317928 0.8475045 +1 0.4317928 0.8475045 +0 0.470214 0.8475045 +0.1939468 0.470214 0.8475045 +0.2773041 0.470214 0.8475045 +0.3384659 0.470214 0.8475045 +0.3885728 0.470214 0.8475045 +0.4317928 0.470214 0.8475045 +0.470214 0.470214 0.8475045 +0.5050551 0.470214 0.8475045 +0.5370987 0.470214 0.8475045 +0.5668815 0.470214 0.8475045 +0.5947903 0.470214 0.8475045 +0.6211144 0.470214 0.8475045 +0.6460766 0.470214 0.8475045 +0.6698526 0.470214 0.8475045 +0.6925839 0.470214 0.8475045 +0.7143866 0.470214 0.8475045 +0.7353569 0.470214 0.8475045 +0.7555758 0.470214 0.8475045 +0.7751122 0.470214 0.8475045 +0.7940252 0.470214 0.8475045 +0.8123661 0.470214 0.8475045 +0.8301795 0.470214 0.8475045 +0.8475045 0.470214 0.8475045 +0.8643761 0.470214 0.8475045 +0.880825 0.470214 0.8475045 +0.8968787 0.470214 0.8475045 +0.9125621 0.470214 0.8475045 +0.9278974 0.470214 0.8475045 +0.9429048 0.470214 0.8475045 +0.9576028 0.470214 0.8475045 +0.9720079 0.470214 0.8475045 +0.9861357 0.470214 0.8475045 +1 0.470214 0.8475045 +0 0.5050551 0.8475045 +0.1939468 0.5050551 0.8475045 +0.2773041 0.5050551 0.8475045 +0.3384659 0.5050551 0.8475045 +0.3885728 0.5050551 0.8475045 +0.4317928 0.5050551 0.8475045 +0.470214 0.5050551 0.8475045 +0.5050551 0.5050551 0.8475045 +0.5370987 0.5050551 0.8475045 +0.5668815 0.5050551 0.8475045 +0.5947903 0.5050551 0.8475045 +0.6211144 0.5050551 0.8475045 +0.6460766 0.5050551 0.8475045 +0.6698526 0.5050551 0.8475045 +0.6925839 0.5050551 0.8475045 +0.7143866 0.5050551 0.8475045 +0.7353569 0.5050551 0.8475045 +0.7555758 0.5050551 0.8475045 +0.7751122 0.5050551 0.8475045 +0.7940252 0.5050551 0.8475045 +0.8123661 0.5050551 0.8475045 +0.8301795 0.5050551 0.8475045 +0.8475045 0.5050551 0.8475045 +0.8643761 0.5050551 0.8475045 +0.880825 0.5050551 0.8475045 +0.8968787 0.5050551 0.8475045 +0.9125621 0.5050551 0.8475045 +0.9278974 0.5050551 0.8475045 +0.9429048 0.5050551 0.8475045 +0.9576028 0.5050551 0.8475045 +0.9720079 0.5050551 0.8475045 +0.9861357 0.5050551 0.8475045 +1 0.5050551 0.8475045 +0 0.5370987 0.8475045 +0.1939468 0.5370987 0.8475045 +0.2773041 0.5370987 0.8475045 +0.3384659 0.5370987 0.8475045 +0.3885728 0.5370987 0.8475045 +0.4317928 0.5370987 0.8475045 +0.470214 0.5370987 0.8475045 +0.5050551 0.5370987 0.8475045 +0.5370987 0.5370987 0.8475045 +0.5668815 0.5370987 0.8475045 +0.5947903 0.5370987 0.8475045 +0.6211144 0.5370987 0.8475045 +0.6460766 0.5370987 0.8475045 +0.6698526 0.5370987 0.8475045 +0.6925839 0.5370987 0.8475045 +0.7143866 0.5370987 0.8475045 +0.7353569 0.5370987 0.8475045 +0.7555758 0.5370987 0.8475045 +0.7751122 0.5370987 0.8475045 +0.7940252 0.5370987 0.8475045 +0.8123661 0.5370987 0.8475045 +0.8301795 0.5370987 0.8475045 +0.8475045 0.5370987 0.8475045 +0.8643761 0.5370987 0.8475045 +0.880825 0.5370987 0.8475045 +0.8968787 0.5370987 0.8475045 +0.9125621 0.5370987 0.8475045 +0.9278974 0.5370987 0.8475045 +0.9429048 0.5370987 0.8475045 +0.9576028 0.5370987 0.8475045 +0.9720079 0.5370987 0.8475045 +0.9861357 0.5370987 0.8475045 +1 0.5370987 0.8475045 +0 0.5668815 0.8475045 +0.1939468 0.5668815 0.8475045 +0.2773041 0.5668815 0.8475045 +0.3384659 0.5668815 0.8475045 +0.3885728 0.5668815 0.8475045 +0.4317928 0.5668815 0.8475045 +0.470214 0.5668815 0.8475045 +0.5050551 0.5668815 0.8475045 +0.5370987 0.5668815 0.8475045 +0.5668815 0.5668815 0.8475045 +0.5947903 0.5668815 0.8475045 +0.6211144 0.5668815 0.8475045 +0.6460766 0.5668815 0.8475045 +0.6698526 0.5668815 0.8475045 +0.6925839 0.5668815 0.8475045 +0.7143866 0.5668815 0.8475045 +0.7353569 0.5668815 0.8475045 +0.7555758 0.5668815 0.8475045 +0.7751122 0.5668815 0.8475045 +0.7940252 0.5668815 0.8475045 +0.8123661 0.5668815 0.8475045 +0.8301795 0.5668815 0.8475045 +0.8475045 0.5668815 0.8475045 +0.8643761 0.5668815 0.8475045 +0.880825 0.5668815 0.8475045 +0.8968787 0.5668815 0.8475045 +0.9125621 0.5668815 0.8475045 +0.9278974 0.5668815 0.8475045 +0.9429048 0.5668815 0.8475045 +0.9576028 0.5668815 0.8475045 +0.9720079 0.5668815 0.8475045 +0.9861357 0.5668815 0.8475045 +1 0.5668815 0.8475045 +0 0.5947903 0.8475045 +0.1939468 0.5947903 0.8475045 +0.2773041 0.5947903 0.8475045 +0.3384659 0.5947903 0.8475045 +0.3885728 0.5947903 0.8475045 +0.4317928 0.5947903 0.8475045 +0.470214 0.5947903 0.8475045 +0.5050551 0.5947903 0.8475045 +0.5370987 0.5947903 0.8475045 +0.5668815 0.5947903 0.8475045 +0.5947903 0.5947903 0.8475045 +0.6211144 0.5947903 0.8475045 +0.6460766 0.5947903 0.8475045 +0.6698526 0.5947903 0.8475045 +0.6925839 0.5947903 0.8475045 +0.7143866 0.5947903 0.8475045 +0.7353569 0.5947903 0.8475045 +0.7555758 0.5947903 0.8475045 +0.7751122 0.5947903 0.8475045 +0.7940252 0.5947903 0.8475045 +0.8123661 0.5947903 0.8475045 +0.8301795 0.5947903 0.8475045 +0.8475045 0.5947903 0.8475045 +0.8643761 0.5947903 0.8475045 +0.880825 0.5947903 0.8475045 +0.8968787 0.5947903 0.8475045 +0.9125621 0.5947903 0.8475045 +0.9278974 0.5947903 0.8475045 +0.9429048 0.5947903 0.8475045 +0.9576028 0.5947903 0.8475045 +0.9720079 0.5947903 0.8475045 +0.9861357 0.5947903 0.8475045 +1 0.5947903 0.8475045 +0 0.6211144 0.8475045 +0.1939468 0.6211144 0.8475045 +0.2773041 0.6211144 0.8475045 +0.3384659 0.6211144 0.8475045 +0.3885728 0.6211144 0.8475045 +0.4317928 0.6211144 0.8475045 +0.470214 0.6211144 0.8475045 +0.5050551 0.6211144 0.8475045 +0.5370987 0.6211144 0.8475045 +0.5668815 0.6211144 0.8475045 +0.5947903 0.6211144 0.8475045 +0.6211144 0.6211144 0.8475045 +0.6460766 0.6211144 0.8475045 +0.6698526 0.6211144 0.8475045 +0.6925839 0.6211144 0.8475045 +0.7143866 0.6211144 0.8475045 +0.7353569 0.6211144 0.8475045 +0.7555758 0.6211144 0.8475045 +0.7751122 0.6211144 0.8475045 +0.7940252 0.6211144 0.8475045 +0.8123661 0.6211144 0.8475045 +0.8301795 0.6211144 0.8475045 +0.8475045 0.6211144 0.8475045 +0.8643761 0.6211144 0.8475045 +0.880825 0.6211144 0.8475045 +0.8968787 0.6211144 0.8475045 +0.9125621 0.6211144 0.8475045 +0.9278974 0.6211144 0.8475045 +0.9429048 0.6211144 0.8475045 +0.9576028 0.6211144 0.8475045 +0.9720079 0.6211144 0.8475045 +0.9861357 0.6211144 0.8475045 +1 0.6211144 0.8475045 +0 0.6460766 0.8475045 +0.1939468 0.6460766 0.8475045 +0.2773041 0.6460766 0.8475045 +0.3384659 0.6460766 0.8475045 +0.3885728 0.6460766 0.8475045 +0.4317928 0.6460766 0.8475045 +0.470214 0.6460766 0.8475045 +0.5050551 0.6460766 0.8475045 +0.5370987 0.6460766 0.8475045 +0.5668815 0.6460766 0.8475045 +0.5947903 0.6460766 0.8475045 +0.6211144 0.6460766 0.8475045 +0.6460766 0.6460766 0.8475045 +0.6698526 0.6460766 0.8475045 +0.6925839 0.6460766 0.8475045 +0.7143866 0.6460766 0.8475045 +0.7353569 0.6460766 0.8475045 +0.7555758 0.6460766 0.8475045 +0.7751122 0.6460766 0.8475045 +0.7940252 0.6460766 0.8475045 +0.8123661 0.6460766 0.8475045 +0.8301795 0.6460766 0.8475045 +0.8475045 0.6460766 0.8475045 +0.8643761 0.6460766 0.8475045 +0.880825 0.6460766 0.8475045 +0.8968787 0.6460766 0.8475045 +0.9125621 0.6460766 0.8475045 +0.9278974 0.6460766 0.8475045 +0.9429048 0.6460766 0.8475045 +0.9576028 0.6460766 0.8475045 +0.9720079 0.6460766 0.8475045 +0.9861357 0.6460766 0.8475045 +1 0.6460766 0.8475045 +0 0.6698526 0.8475045 +0.1939468 0.6698526 0.8475045 +0.2773041 0.6698526 0.8475045 +0.3384659 0.6698526 0.8475045 +0.3885728 0.6698526 0.8475045 +0.4317928 0.6698526 0.8475045 +0.470214 0.6698526 0.8475045 +0.5050551 0.6698526 0.8475045 +0.5370987 0.6698526 0.8475045 +0.5668815 0.6698526 0.8475045 +0.5947903 0.6698526 0.8475045 +0.6211144 0.6698526 0.8475045 +0.6460766 0.6698526 0.8475045 +0.6698526 0.6698526 0.8475045 +0.6925839 0.6698526 0.8475045 +0.7143866 0.6698526 0.8475045 +0.7353569 0.6698526 0.8475045 +0.7555758 0.6698526 0.8475045 +0.7751122 0.6698526 0.8475045 +0.7940252 0.6698526 0.8475045 +0.8123661 0.6698526 0.8475045 +0.8301795 0.6698526 0.8475045 +0.8475045 0.6698526 0.8475045 +0.8643761 0.6698526 0.8475045 +0.880825 0.6698526 0.8475045 +0.8968787 0.6698526 0.8475045 +0.9125621 0.6698526 0.8475045 +0.9278974 0.6698526 0.8475045 +0.9429048 0.6698526 0.8475045 +0.9576028 0.6698526 0.8475045 +0.9720079 0.6698526 0.8475045 +0.9861357 0.6698526 0.8475045 +1 0.6698526 0.8475045 +0 0.6925839 0.8475045 +0.1939468 0.6925839 0.8475045 +0.2773041 0.6925839 0.8475045 +0.3384659 0.6925839 0.8475045 +0.3885728 0.6925839 0.8475045 +0.4317928 0.6925839 0.8475045 +0.470214 0.6925839 0.8475045 +0.5050551 0.6925839 0.8475045 +0.5370987 0.6925839 0.8475045 +0.5668815 0.6925839 0.8475045 +0.5947903 0.6925839 0.8475045 +0.6211144 0.6925839 0.8475045 +0.6460766 0.6925839 0.8475045 +0.6698526 0.6925839 0.8475045 +0.6925839 0.6925839 0.8475045 +0.7143866 0.6925839 0.8475045 +0.7353569 0.6925839 0.8475045 +0.7555758 0.6925839 0.8475045 +0.7751122 0.6925839 0.8475045 +0.7940252 0.6925839 0.8475045 +0.8123661 0.6925839 0.8475045 +0.8301795 0.6925839 0.8475045 +0.8475045 0.6925839 0.8475045 +0.8643761 0.6925839 0.8475045 +0.880825 0.6925839 0.8475045 +0.8968787 0.6925839 0.8475045 +0.9125621 0.6925839 0.8475045 +0.9278974 0.6925839 0.8475045 +0.9429048 0.6925839 0.8475045 +0.9576028 0.6925839 0.8475045 +0.9720079 0.6925839 0.8475045 +0.9861357 0.6925839 0.8475045 +1 0.6925839 0.8475045 +0 0.7143866 0.8475045 +0.1939468 0.7143866 0.8475045 +0.2773041 0.7143866 0.8475045 +0.3384659 0.7143866 0.8475045 +0.3885728 0.7143866 0.8475045 +0.4317928 0.7143866 0.8475045 +0.470214 0.7143866 0.8475045 +0.5050551 0.7143866 0.8475045 +0.5370987 0.7143866 0.8475045 +0.5668815 0.7143866 0.8475045 +0.5947903 0.7143866 0.8475045 +0.6211144 0.7143866 0.8475045 +0.6460766 0.7143866 0.8475045 +0.6698526 0.7143866 0.8475045 +0.6925839 0.7143866 0.8475045 +0.7143866 0.7143866 0.8475045 +0.7353569 0.7143866 0.8475045 +0.7555758 0.7143866 0.8475045 +0.7751122 0.7143866 0.8475045 +0.7940252 0.7143866 0.8475045 +0.8123661 0.7143866 0.8475045 +0.8301795 0.7143866 0.8475045 +0.8475045 0.7143866 0.8475045 +0.8643761 0.7143866 0.8475045 +0.880825 0.7143866 0.8475045 +0.8968787 0.7143866 0.8475045 +0.9125621 0.7143866 0.8475045 +0.9278974 0.7143866 0.8475045 +0.9429048 0.7143866 0.8475045 +0.9576028 0.7143866 0.8475045 +0.9720079 0.7143866 0.8475045 +0.9861357 0.7143866 0.8475045 +1 0.7143866 0.8475045 +0 0.7353569 0.8475045 +0.1939468 0.7353569 0.8475045 +0.2773041 0.7353569 0.8475045 +0.3384659 0.7353569 0.8475045 +0.3885728 0.7353569 0.8475045 +0.4317928 0.7353569 0.8475045 +0.470214 0.7353569 0.8475045 +0.5050551 0.7353569 0.8475045 +0.5370987 0.7353569 0.8475045 +0.5668815 0.7353569 0.8475045 +0.5947903 0.7353569 0.8475045 +0.6211144 0.7353569 0.8475045 +0.6460766 0.7353569 0.8475045 +0.6698526 0.7353569 0.8475045 +0.6925839 0.7353569 0.8475045 +0.7143866 0.7353569 0.8475045 +0.7353569 0.7353569 0.8475045 +0.7555758 0.7353569 0.8475045 +0.7751122 0.7353569 0.8475045 +0.7940252 0.7353569 0.8475045 +0.8123661 0.7353569 0.8475045 +0.8301795 0.7353569 0.8475045 +0.8475045 0.7353569 0.8475045 +0.8643761 0.7353569 0.8475045 +0.880825 0.7353569 0.8475045 +0.8968787 0.7353569 0.8475045 +0.9125621 0.7353569 0.8475045 +0.9278974 0.7353569 0.8475045 +0.9429048 0.7353569 0.8475045 +0.9576028 0.7353569 0.8475045 +0.9720079 0.7353569 0.8475045 +0.9861357 0.7353569 0.8475045 +1 0.7353569 0.8475045 +0 0.7555758 0.8475045 +0.1939468 0.7555758 0.8475045 +0.2773041 0.7555758 0.8475045 +0.3384659 0.7555758 0.8475045 +0.3885728 0.7555758 0.8475045 +0.4317928 0.7555758 0.8475045 +0.470214 0.7555758 0.8475045 +0.5050551 0.7555758 0.8475045 +0.5370987 0.7555758 0.8475045 +0.5668815 0.7555758 0.8475045 +0.5947903 0.7555758 0.8475045 +0.6211144 0.7555758 0.8475045 +0.6460766 0.7555758 0.8475045 +0.6698526 0.7555758 0.8475045 +0.6925839 0.7555758 0.8475045 +0.7143866 0.7555758 0.8475045 +0.7353569 0.7555758 0.8475045 +0.7555758 0.7555758 0.8475045 +0.7751122 0.7555758 0.8475045 +0.7940252 0.7555758 0.8475045 +0.8123661 0.7555758 0.8475045 +0.8301795 0.7555758 0.8475045 +0.8475045 0.7555758 0.8475045 +0.8643761 0.7555758 0.8475045 +0.880825 0.7555758 0.8475045 +0.8968787 0.7555758 0.8475045 +0.9125621 0.7555758 0.8475045 +0.9278974 0.7555758 0.8475045 +0.9429048 0.7555758 0.8475045 +0.9576028 0.7555758 0.8475045 +0.9720079 0.7555758 0.8475045 +0.9861357 0.7555758 0.8475045 +1 0.7555758 0.8475045 +0 0.7751122 0.8475045 +0.1939468 0.7751122 0.8475045 +0.2773041 0.7751122 0.8475045 +0.3384659 0.7751122 0.8475045 +0.3885728 0.7751122 0.8475045 +0.4317928 0.7751122 0.8475045 +0.470214 0.7751122 0.8475045 +0.5050551 0.7751122 0.8475045 +0.5370987 0.7751122 0.8475045 +0.5668815 0.7751122 0.8475045 +0.5947903 0.7751122 0.8475045 +0.6211144 0.7751122 0.8475045 +0.6460766 0.7751122 0.8475045 +0.6698526 0.7751122 0.8475045 +0.6925839 0.7751122 0.8475045 +0.7143866 0.7751122 0.8475045 +0.7353569 0.7751122 0.8475045 +0.7555758 0.7751122 0.8475045 +0.7751122 0.7751122 0.8475045 +0.7940252 0.7751122 0.8475045 +0.8123661 0.7751122 0.8475045 +0.8301795 0.7751122 0.8475045 +0.8475045 0.7751122 0.8475045 +0.8643761 0.7751122 0.8475045 +0.880825 0.7751122 0.8475045 +0.8968787 0.7751122 0.8475045 +0.9125621 0.7751122 0.8475045 +0.9278974 0.7751122 0.8475045 +0.9429048 0.7751122 0.8475045 +0.9576028 0.7751122 0.8475045 +0.9720079 0.7751122 0.8475045 +0.9861357 0.7751122 0.8475045 +1 0.7751122 0.8475045 +0 0.7940252 0.8475045 +0.1939468 0.7940252 0.8475045 +0.2773041 0.7940252 0.8475045 +0.3384659 0.7940252 0.8475045 +0.3885728 0.7940252 0.8475045 +0.4317928 0.7940252 0.8475045 +0.470214 0.7940252 0.8475045 +0.5050551 0.7940252 0.8475045 +0.5370987 0.7940252 0.8475045 +0.5668815 0.7940252 0.8475045 +0.5947903 0.7940252 0.8475045 +0.6211144 0.7940252 0.8475045 +0.6460766 0.7940252 0.8475045 +0.6698526 0.7940252 0.8475045 +0.6925839 0.7940252 0.8475045 +0.7143866 0.7940252 0.8475045 +0.7353569 0.7940252 0.8475045 +0.7555758 0.7940252 0.8475045 +0.7751122 0.7940252 0.8475045 +0.7940252 0.7940252 0.8475045 +0.8123661 0.7940252 0.8475045 +0.8301795 0.7940252 0.8475045 +0.8475045 0.7940252 0.8475045 +0.8643761 0.7940252 0.8475045 +0.880825 0.7940252 0.8475045 +0.8968787 0.7940252 0.8475045 +0.9125621 0.7940252 0.8475045 +0.9278974 0.7940252 0.8475045 +0.9429048 0.7940252 0.8475045 +0.9576028 0.7940252 0.8475045 +0.9720079 0.7940252 0.8475045 +0.9861357 0.7940252 0.8475045 +1 0.7940252 0.8475045 +0 0.8123661 0.8475045 +0.1939468 0.8123661 0.8475045 +0.2773041 0.8123661 0.8475045 +0.3384659 0.8123661 0.8475045 +0.3885728 0.8123661 0.8475045 +0.4317928 0.8123661 0.8475045 +0.470214 0.8123661 0.8475045 +0.5050551 0.8123661 0.8475045 +0.5370987 0.8123661 0.8475045 +0.5668815 0.8123661 0.8475045 +0.5947903 0.8123661 0.8475045 +0.6211144 0.8123661 0.8475045 +0.6460766 0.8123661 0.8475045 +0.6698526 0.8123661 0.8475045 +0.6925839 0.8123661 0.8475045 +0.7143866 0.8123661 0.8475045 +0.7353569 0.8123661 0.8475045 +0.7555758 0.8123661 0.8475045 +0.7751122 0.8123661 0.8475045 +0.7940252 0.8123661 0.8475045 +0.8123661 0.8123661 0.8475045 +0.8301795 0.8123661 0.8475045 +0.8475045 0.8123661 0.8475045 +0.8643761 0.8123661 0.8475045 +0.880825 0.8123661 0.8475045 +0.8968787 0.8123661 0.8475045 +0.9125621 0.8123661 0.8475045 +0.9278974 0.8123661 0.8475045 +0.9429048 0.8123661 0.8475045 +0.9576028 0.8123661 0.8475045 +0.9720079 0.8123661 0.8475045 +0.9861357 0.8123661 0.8475045 +1 0.8123661 0.8475045 +0 0.8301795 0.8475045 +0.1939468 0.8301795 0.8475045 +0.2773041 0.8301795 0.8475045 +0.3384659 0.8301795 0.8475045 +0.3885728 0.8301795 0.8475045 +0.4317928 0.8301795 0.8475045 +0.470214 0.8301795 0.8475045 +0.5050551 0.8301795 0.8475045 +0.5370987 0.8301795 0.8475045 +0.5668815 0.8301795 0.8475045 +0.5947903 0.8301795 0.8475045 +0.6211144 0.8301795 0.8475045 +0.6460766 0.8301795 0.8475045 +0.6698526 0.8301795 0.8475045 +0.6925839 0.8301795 0.8475045 +0.7143866 0.8301795 0.8475045 +0.7353569 0.8301795 0.8475045 +0.7555758 0.8301795 0.8475045 +0.7751122 0.8301795 0.8475045 +0.7940252 0.8301795 0.8475045 +0.8123661 0.8301795 0.8475045 +0.8301795 0.8301795 0.8475045 +0.8475045 0.8301795 0.8475045 +0.8643761 0.8301795 0.8475045 +0.880825 0.8301795 0.8475045 +0.8968787 0.8301795 0.8475045 +0.9125621 0.8301795 0.8475045 +0.9278974 0.8301795 0.8475045 +0.9429048 0.8301795 0.8475045 +0.9576028 0.8301795 0.8475045 +0.9720079 0.8301795 0.8475045 +0.9861357 0.8301795 0.8475045 +1 0.8301795 0.8475045 +0 0.8475045 0.8475045 +0.1939468 0.8475045 0.8475045 +0.2773041 0.8475045 0.8475045 +0.3384659 0.8475045 0.8475045 +0.3885728 0.8475045 0.8475045 +0.4317928 0.8475045 0.8475045 +0.470214 0.8475045 0.8475045 +0.5050551 0.8475045 0.8475045 +0.5370987 0.8475045 0.8475045 +0.5668815 0.8475045 0.8475045 +0.5947903 0.8475045 0.8475045 +0.6211144 0.8475045 0.8475045 +0.6460766 0.8475045 0.8475045 +0.6698526 0.8475045 0.8475045 +0.6925839 0.8475045 0.8475045 +0.7143866 0.8475045 0.8475045 +0.7353569 0.8475045 0.8475045 +0.7555758 0.8475045 0.8475045 +0.7751122 0.8475045 0.8475045 +0.7940252 0.8475045 0.8475045 +0.8123661 0.8475045 0.8475045 +0.8301795 0.8475045 0.8475045 +0.8475045 0.8475045 0.8475045 +0.8643761 0.8475045 0.8475045 +0.880825 0.8475045 0.8475045 +0.8968787 0.8475045 0.8475045 +0.9125621 0.8475045 0.8475045 +0.9278974 0.8475045 0.8475045 +0.9429048 0.8475045 0.8475045 +0.9576028 0.8475045 0.8475045 +0.9720079 0.8475045 0.8475045 +0.9861357 0.8475045 0.8475045 +1 0.8475045 0.8475045 +0 0.8643761 0.8475045 +0.1939468 0.8643761 0.8475045 +0.2773041 0.8643761 0.8475045 +0.3384659 0.8643761 0.8475045 +0.3885728 0.8643761 0.8475045 +0.4317928 0.8643761 0.8475045 +0.470214 0.8643761 0.8475045 +0.5050551 0.8643761 0.8475045 +0.5370987 0.8643761 0.8475045 +0.5668815 0.8643761 0.8475045 +0.5947903 0.8643761 0.8475045 +0.6211144 0.8643761 0.8475045 +0.6460766 0.8643761 0.8475045 +0.6698526 0.8643761 0.8475045 +0.6925839 0.8643761 0.8475045 +0.7143866 0.8643761 0.8475045 +0.7353569 0.8643761 0.8475045 +0.7555758 0.8643761 0.8475045 +0.7751122 0.8643761 0.8475045 +0.7940252 0.8643761 0.8475045 +0.8123661 0.8643761 0.8475045 +0.8301795 0.8643761 0.8475045 +0.8475045 0.8643761 0.8475045 +0.8643761 0.8643761 0.8475045 +0.880825 0.8643761 0.8475045 +0.8968787 0.8643761 0.8475045 +0.9125621 0.8643761 0.8475045 +0.9278974 0.8643761 0.8475045 +0.9429048 0.8643761 0.8475045 +0.9576028 0.8643761 0.8475045 +0.9720079 0.8643761 0.8475045 +0.9861357 0.8643761 0.8475045 +1 0.8643761 0.8475045 +0 0.880825 0.8475045 +0.1939468 0.880825 0.8475045 +0.2773041 0.880825 0.8475045 +0.3384659 0.880825 0.8475045 +0.3885728 0.880825 0.8475045 +0.4317928 0.880825 0.8475045 +0.470214 0.880825 0.8475045 +0.5050551 0.880825 0.8475045 +0.5370987 0.880825 0.8475045 +0.5668815 0.880825 0.8475045 +0.5947903 0.880825 0.8475045 +0.6211144 0.880825 0.8475045 +0.6460766 0.880825 0.8475045 +0.6698526 0.880825 0.8475045 +0.6925839 0.880825 0.8475045 +0.7143866 0.880825 0.8475045 +0.7353569 0.880825 0.8475045 +0.7555758 0.880825 0.8475045 +0.7751122 0.880825 0.8475045 +0.7940252 0.880825 0.8475045 +0.8123661 0.880825 0.8475045 +0.8301795 0.880825 0.8475045 +0.8475045 0.880825 0.8475045 +0.8643761 0.880825 0.8475045 +0.880825 0.880825 0.8475045 +0.8968787 0.880825 0.8475045 +0.9125621 0.880825 0.8475045 +0.9278974 0.880825 0.8475045 +0.9429048 0.880825 0.8475045 +0.9576028 0.880825 0.8475045 +0.9720079 0.880825 0.8475045 +0.9861357 0.880825 0.8475045 +1 0.880825 0.8475045 +0 0.8968787 0.8475045 +0.1939468 0.8968787 0.8475045 +0.2773041 0.8968787 0.8475045 +0.3384659 0.8968787 0.8475045 +0.3885728 0.8968787 0.8475045 +0.4317928 0.8968787 0.8475045 +0.470214 0.8968787 0.8475045 +0.5050551 0.8968787 0.8475045 +0.5370987 0.8968787 0.8475045 +0.5668815 0.8968787 0.8475045 +0.5947903 0.8968787 0.8475045 +0.6211144 0.8968787 0.8475045 +0.6460766 0.8968787 0.8475045 +0.6698526 0.8968787 0.8475045 +0.6925839 0.8968787 0.8475045 +0.7143866 0.8968787 0.8475045 +0.7353569 0.8968787 0.8475045 +0.7555758 0.8968787 0.8475045 +0.7751122 0.8968787 0.8475045 +0.7940252 0.8968787 0.8475045 +0.8123661 0.8968787 0.8475045 +0.8301795 0.8968787 0.8475045 +0.8475045 0.8968787 0.8475045 +0.8643761 0.8968787 0.8475045 +0.880825 0.8968787 0.8475045 +0.8968787 0.8968787 0.8475045 +0.9125621 0.8968787 0.8475045 +0.9278974 0.8968787 0.8475045 +0.9429048 0.8968787 0.8475045 +0.9576028 0.8968787 0.8475045 +0.9720079 0.8968787 0.8475045 +0.9861357 0.8968787 0.8475045 +1 0.8968787 0.8475045 +0 0.9125621 0.8475045 +0.1939468 0.9125621 0.8475045 +0.2773041 0.9125621 0.8475045 +0.3384659 0.9125621 0.8475045 +0.3885728 0.9125621 0.8475045 +0.4317928 0.9125621 0.8475045 +0.470214 0.9125621 0.8475045 +0.5050551 0.9125621 0.8475045 +0.5370987 0.9125621 0.8475045 +0.5668815 0.9125621 0.8475045 +0.5947903 0.9125621 0.8475045 +0.6211144 0.9125621 0.8475045 +0.6460766 0.9125621 0.8475045 +0.6698526 0.9125621 0.8475045 +0.6925839 0.9125621 0.8475045 +0.7143866 0.9125621 0.8475045 +0.7353569 0.9125621 0.8475045 +0.7555758 0.9125621 0.8475045 +0.7751122 0.9125621 0.8475045 +0.7940252 0.9125621 0.8475045 +0.8123661 0.9125621 0.8475045 +0.8301795 0.9125621 0.8475045 +0.8475045 0.9125621 0.8475045 +0.8643761 0.9125621 0.8475045 +0.880825 0.9125621 0.8475045 +0.8968787 0.9125621 0.8475045 +0.9125621 0.9125621 0.8475045 +0.9278974 0.9125621 0.8475045 +0.9429048 0.9125621 0.8475045 +0.9576028 0.9125621 0.8475045 +0.9720079 0.9125621 0.8475045 +0.9861357 0.9125621 0.8475045 +1 0.9125621 0.8475045 +0 0.9278974 0.8475045 +0.1939468 0.9278974 0.8475045 +0.2773041 0.9278974 0.8475045 +0.3384659 0.9278974 0.8475045 +0.3885728 0.9278974 0.8475045 +0.4317928 0.9278974 0.8475045 +0.470214 0.9278974 0.8475045 +0.5050551 0.9278974 0.8475045 +0.5370987 0.9278974 0.8475045 +0.5668815 0.9278974 0.8475045 +0.5947903 0.9278974 0.8475045 +0.6211144 0.9278974 0.8475045 +0.6460766 0.9278974 0.8475045 +0.6698526 0.9278974 0.8475045 +0.6925839 0.9278974 0.8475045 +0.7143866 0.9278974 0.8475045 +0.7353569 0.9278974 0.8475045 +0.7555758 0.9278974 0.8475045 +0.7751122 0.9278974 0.8475045 +0.7940252 0.9278974 0.8475045 +0.8123661 0.9278974 0.8475045 +0.8301795 0.9278974 0.8475045 +0.8475045 0.9278974 0.8475045 +0.8643761 0.9278974 0.8475045 +0.880825 0.9278974 0.8475045 +0.8968787 0.9278974 0.8475045 +0.9125621 0.9278974 0.8475045 +0.9278974 0.9278974 0.8475045 +0.9429048 0.9278974 0.8475045 +0.9576028 0.9278974 0.8475045 +0.9720079 0.9278974 0.8475045 +0.9861357 0.9278974 0.8475045 +1 0.9278974 0.8475045 +0 0.9429048 0.8475045 +0.1939468 0.9429048 0.8475045 +0.2773041 0.9429048 0.8475045 +0.3384659 0.9429048 0.8475045 +0.3885728 0.9429048 0.8475045 +0.4317928 0.9429048 0.8475045 +0.470214 0.9429048 0.8475045 +0.5050551 0.9429048 0.8475045 +0.5370987 0.9429048 0.8475045 +0.5668815 0.9429048 0.8475045 +0.5947903 0.9429048 0.8475045 +0.6211144 0.9429048 0.8475045 +0.6460766 0.9429048 0.8475045 +0.6698526 0.9429048 0.8475045 +0.6925839 0.9429048 0.8475045 +0.7143866 0.9429048 0.8475045 +0.7353569 0.9429048 0.8475045 +0.7555758 0.9429048 0.8475045 +0.7751122 0.9429048 0.8475045 +0.7940252 0.9429048 0.8475045 +0.8123661 0.9429048 0.8475045 +0.8301795 0.9429048 0.8475045 +0.8475045 0.9429048 0.8475045 +0.8643761 0.9429048 0.8475045 +0.880825 0.9429048 0.8475045 +0.8968787 0.9429048 0.8475045 +0.9125621 0.9429048 0.8475045 +0.9278974 0.9429048 0.8475045 +0.9429048 0.9429048 0.8475045 +0.9576028 0.9429048 0.8475045 +0.9720079 0.9429048 0.8475045 +0.9861357 0.9429048 0.8475045 +1 0.9429048 0.8475045 +0 0.9576028 0.8475045 +0.1939468 0.9576028 0.8475045 +0.2773041 0.9576028 0.8475045 +0.3384659 0.9576028 0.8475045 +0.3885728 0.9576028 0.8475045 +0.4317928 0.9576028 0.8475045 +0.470214 0.9576028 0.8475045 +0.5050551 0.9576028 0.8475045 +0.5370987 0.9576028 0.8475045 +0.5668815 0.9576028 0.8475045 +0.5947903 0.9576028 0.8475045 +0.6211144 0.9576028 0.8475045 +0.6460766 0.9576028 0.8475045 +0.6698526 0.9576028 0.8475045 +0.6925839 0.9576028 0.8475045 +0.7143866 0.9576028 0.8475045 +0.7353569 0.9576028 0.8475045 +0.7555758 0.9576028 0.8475045 +0.7751122 0.9576028 0.8475045 +0.7940252 0.9576028 0.8475045 +0.8123661 0.9576028 0.8475045 +0.8301795 0.9576028 0.8475045 +0.8475045 0.9576028 0.8475045 +0.8643761 0.9576028 0.8475045 +0.880825 0.9576028 0.8475045 +0.8968787 0.9576028 0.8475045 +0.9125621 0.9576028 0.8475045 +0.9278974 0.9576028 0.8475045 +0.9429048 0.9576028 0.8475045 +0.9576028 0.9576028 0.8475045 +0.9720079 0.9576028 0.8475045 +0.9861357 0.9576028 0.8475045 +1 0.9576028 0.8475045 +0 0.9720079 0.8475045 +0.1939468 0.9720079 0.8475045 +0.2773041 0.9720079 0.8475045 +0.3384659 0.9720079 0.8475045 +0.3885728 0.9720079 0.8475045 +0.4317928 0.9720079 0.8475045 +0.470214 0.9720079 0.8475045 +0.5050551 0.9720079 0.8475045 +0.5370987 0.9720079 0.8475045 +0.5668815 0.9720079 0.8475045 +0.5947903 0.9720079 0.8475045 +0.6211144 0.9720079 0.8475045 +0.6460766 0.9720079 0.8475045 +0.6698526 0.9720079 0.8475045 +0.6925839 0.9720079 0.8475045 +0.7143866 0.9720079 0.8475045 +0.7353569 0.9720079 0.8475045 +0.7555758 0.9720079 0.8475045 +0.7751122 0.9720079 0.8475045 +0.7940252 0.9720079 0.8475045 +0.8123661 0.9720079 0.8475045 +0.8301795 0.9720079 0.8475045 +0.8475045 0.9720079 0.8475045 +0.8643761 0.9720079 0.8475045 +0.880825 0.9720079 0.8475045 +0.8968787 0.9720079 0.8475045 +0.9125621 0.9720079 0.8475045 +0.9278974 0.9720079 0.8475045 +0.9429048 0.9720079 0.8475045 +0.9576028 0.9720079 0.8475045 +0.9720079 0.9720079 0.8475045 +0.9861357 0.9720079 0.8475045 +1 0.9720079 0.8475045 +0 0.9861357 0.8475045 +0.1939468 0.9861357 0.8475045 +0.2773041 0.9861357 0.8475045 +0.3384659 0.9861357 0.8475045 +0.3885728 0.9861357 0.8475045 +0.4317928 0.9861357 0.8475045 +0.470214 0.9861357 0.8475045 +0.5050551 0.9861357 0.8475045 +0.5370987 0.9861357 0.8475045 +0.5668815 0.9861357 0.8475045 +0.5947903 0.9861357 0.8475045 +0.6211144 0.9861357 0.8475045 +0.6460766 0.9861357 0.8475045 +0.6698526 0.9861357 0.8475045 +0.6925839 0.9861357 0.8475045 +0.7143866 0.9861357 0.8475045 +0.7353569 0.9861357 0.8475045 +0.7555758 0.9861357 0.8475045 +0.7751122 0.9861357 0.8475045 +0.7940252 0.9861357 0.8475045 +0.8123661 0.9861357 0.8475045 +0.8301795 0.9861357 0.8475045 +0.8475045 0.9861357 0.8475045 +0.8643761 0.9861357 0.8475045 +0.880825 0.9861357 0.8475045 +0.8968787 0.9861357 0.8475045 +0.9125621 0.9861357 0.8475045 +0.9278974 0.9861357 0.8475045 +0.9429048 0.9861357 0.8475045 +0.9576028 0.9861357 0.8475045 +0.9720079 0.9861357 0.8475045 +0.9861357 0.9861357 0.8475045 +1 0.9861357 0.8475045 +0 1 0.8475045 +0.1939468 1 0.8475045 +0.2773041 1 0.8475045 +0.3384659 1 0.8475045 +0.3885728 1 0.8475045 +0.4317928 1 0.8475045 +0.470214 1 0.8475045 +0.5050551 1 0.8475045 +0.5370987 1 0.8475045 +0.5668815 1 0.8475045 +0.5947903 1 0.8475045 +0.6211144 1 0.8475045 +0.6460766 1 0.8475045 +0.6698526 1 0.8475045 +0.6925839 1 0.8475045 +0.7143866 1 0.8475045 +0.7353569 1 0.8475045 +0.7555758 1 0.8475045 +0.7751122 1 0.8475045 +0.7940252 1 0.8475045 +0.8123661 1 0.8475045 +0.8301795 1 0.8475045 +0.8475045 1 0.8475045 +0.8643761 1 0.8475045 +0.880825 1 0.8475045 +0.8968787 1 0.8475045 +0.9125621 1 0.8475045 +0.9278974 1 0.8475045 +0.9429048 1 0.8475045 +0.9576028 1 0.8475045 +0.9720079 1 0.8475045 +0.9861357 1 0.8475045 +1 1 0.8475045 +0 0 0.8643761 +0.1939468 0 0.8643761 +0.2773041 0 0.8643761 +0.3384659 0 0.8643761 +0.3885728 0 0.8643761 +0.4317928 0 0.8643761 +0.470214 0 0.8643761 +0.5050551 0 0.8643761 +0.5370987 0 0.8643761 +0.5668815 0 0.8643761 +0.5947903 0 0.8643761 +0.6211144 0 0.8643761 +0.6460766 0 0.8643761 +0.6698526 0 0.8643761 +0.6925839 0 0.8643761 +0.7143866 0 0.8643761 +0.7353569 0 0.8643761 +0.7555758 0 0.8643761 +0.7751122 0 0.8643761 +0.7940252 0 0.8643761 +0.8123661 0 0.8643761 +0.8301795 0 0.8643761 +0.8475045 0 0.8643761 +0.8643761 0 0.8643761 +0.880825 0 0.8643761 +0.8968787 0 0.8643761 +0.9125621 0 0.8643761 +0.9278974 0 0.8643761 +0.9429048 0 0.8643761 +0.9576028 0 0.8643761 +0.9720079 0 0.8643761 +0.9861357 0 0.8643761 +1 0 0.8643761 +0 0.1939468 0.8643761 +0.1939468 0.1939468 0.8643761 +0.2773041 0.1939468 0.8643761 +0.3384659 0.1939468 0.8643761 +0.3885728 0.1939468 0.8643761 +0.4317928 0.1939468 0.8643761 +0.470214 0.1939468 0.8643761 +0.5050551 0.1939468 0.8643761 +0.5370987 0.1939468 0.8643761 +0.5668815 0.1939468 0.8643761 +0.5947903 0.1939468 0.8643761 +0.6211144 0.1939468 0.8643761 +0.6460766 0.1939468 0.8643761 +0.6698526 0.1939468 0.8643761 +0.6925839 0.1939468 0.8643761 +0.7143866 0.1939468 0.8643761 +0.7353569 0.1939468 0.8643761 +0.7555758 0.1939468 0.8643761 +0.7751122 0.1939468 0.8643761 +0.7940252 0.1939468 0.8643761 +0.8123661 0.1939468 0.8643761 +0.8301795 0.1939468 0.8643761 +0.8475045 0.1939468 0.8643761 +0.8643761 0.1939468 0.8643761 +0.880825 0.1939468 0.8643761 +0.8968787 0.1939468 0.8643761 +0.9125621 0.1939468 0.8643761 +0.9278974 0.1939468 0.8643761 +0.9429048 0.1939468 0.8643761 +0.9576028 0.1939468 0.8643761 +0.9720079 0.1939468 0.8643761 +0.9861357 0.1939468 0.8643761 +1 0.1939468 0.8643761 +0 0.2773041 0.8643761 +0.1939468 0.2773041 0.8643761 +0.2773041 0.2773041 0.8643761 +0.3384659 0.2773041 0.8643761 +0.3885728 0.2773041 0.8643761 +0.4317928 0.2773041 0.8643761 +0.470214 0.2773041 0.8643761 +0.5050551 0.2773041 0.8643761 +0.5370987 0.2773041 0.8643761 +0.5668815 0.2773041 0.8643761 +0.5947903 0.2773041 0.8643761 +0.6211144 0.2773041 0.8643761 +0.6460766 0.2773041 0.8643761 +0.6698526 0.2773041 0.8643761 +0.6925839 0.2773041 0.8643761 +0.7143866 0.2773041 0.8643761 +0.7353569 0.2773041 0.8643761 +0.7555758 0.2773041 0.8643761 +0.7751122 0.2773041 0.8643761 +0.7940252 0.2773041 0.8643761 +0.8123661 0.2773041 0.8643761 +0.8301795 0.2773041 0.8643761 +0.8475045 0.2773041 0.8643761 +0.8643761 0.2773041 0.8643761 +0.880825 0.2773041 0.8643761 +0.8968787 0.2773041 0.8643761 +0.9125621 0.2773041 0.8643761 +0.9278974 0.2773041 0.8643761 +0.9429048 0.2773041 0.8643761 +0.9576028 0.2773041 0.8643761 +0.9720079 0.2773041 0.8643761 +0.9861357 0.2773041 0.8643761 +1 0.2773041 0.8643761 +0 0.3384659 0.8643761 +0.1939468 0.3384659 0.8643761 +0.2773041 0.3384659 0.8643761 +0.3384659 0.3384659 0.8643761 +0.3885728 0.3384659 0.8643761 +0.4317928 0.3384659 0.8643761 +0.470214 0.3384659 0.8643761 +0.5050551 0.3384659 0.8643761 +0.5370987 0.3384659 0.8643761 +0.5668815 0.3384659 0.8643761 +0.5947903 0.3384659 0.8643761 +0.6211144 0.3384659 0.8643761 +0.6460766 0.3384659 0.8643761 +0.6698526 0.3384659 0.8643761 +0.6925839 0.3384659 0.8643761 +0.7143866 0.3384659 0.8643761 +0.7353569 0.3384659 0.8643761 +0.7555758 0.3384659 0.8643761 +0.7751122 0.3384659 0.8643761 +0.7940252 0.3384659 0.8643761 +0.8123661 0.3384659 0.8643761 +0.8301795 0.3384659 0.8643761 +0.8475045 0.3384659 0.8643761 +0.8643761 0.3384659 0.8643761 +0.880825 0.3384659 0.8643761 +0.8968787 0.3384659 0.8643761 +0.9125621 0.3384659 0.8643761 +0.9278974 0.3384659 0.8643761 +0.9429048 0.3384659 0.8643761 +0.9576028 0.3384659 0.8643761 +0.9720079 0.3384659 0.8643761 +0.9861357 0.3384659 0.8643761 +1 0.3384659 0.8643761 +0 0.3885728 0.8643761 +0.1939468 0.3885728 0.8643761 +0.2773041 0.3885728 0.8643761 +0.3384659 0.3885728 0.8643761 +0.3885728 0.3885728 0.8643761 +0.4317928 0.3885728 0.8643761 +0.470214 0.3885728 0.8643761 +0.5050551 0.3885728 0.8643761 +0.5370987 0.3885728 0.8643761 +0.5668815 0.3885728 0.8643761 +0.5947903 0.3885728 0.8643761 +0.6211144 0.3885728 0.8643761 +0.6460766 0.3885728 0.8643761 +0.6698526 0.3885728 0.8643761 +0.6925839 0.3885728 0.8643761 +0.7143866 0.3885728 0.8643761 +0.7353569 0.3885728 0.8643761 +0.7555758 0.3885728 0.8643761 +0.7751122 0.3885728 0.8643761 +0.7940252 0.3885728 0.8643761 +0.8123661 0.3885728 0.8643761 +0.8301795 0.3885728 0.8643761 +0.8475045 0.3885728 0.8643761 +0.8643761 0.3885728 0.8643761 +0.880825 0.3885728 0.8643761 +0.8968787 0.3885728 0.8643761 +0.9125621 0.3885728 0.8643761 +0.9278974 0.3885728 0.8643761 +0.9429048 0.3885728 0.8643761 +0.9576028 0.3885728 0.8643761 +0.9720079 0.3885728 0.8643761 +0.9861357 0.3885728 0.8643761 +1 0.3885728 0.8643761 +0 0.4317928 0.8643761 +0.1939468 0.4317928 0.8643761 +0.2773041 0.4317928 0.8643761 +0.3384659 0.4317928 0.8643761 +0.3885728 0.4317928 0.8643761 +0.4317928 0.4317928 0.8643761 +0.470214 0.4317928 0.8643761 +0.5050551 0.4317928 0.8643761 +0.5370987 0.4317928 0.8643761 +0.5668815 0.4317928 0.8643761 +0.5947903 0.4317928 0.8643761 +0.6211144 0.4317928 0.8643761 +0.6460766 0.4317928 0.8643761 +0.6698526 0.4317928 0.8643761 +0.6925839 0.4317928 0.8643761 +0.7143866 0.4317928 0.8643761 +0.7353569 0.4317928 0.8643761 +0.7555758 0.4317928 0.8643761 +0.7751122 0.4317928 0.8643761 +0.7940252 0.4317928 0.8643761 +0.8123661 0.4317928 0.8643761 +0.8301795 0.4317928 0.8643761 +0.8475045 0.4317928 0.8643761 +0.8643761 0.4317928 0.8643761 +0.880825 0.4317928 0.8643761 +0.8968787 0.4317928 0.8643761 +0.9125621 0.4317928 0.8643761 +0.9278974 0.4317928 0.8643761 +0.9429048 0.4317928 0.8643761 +0.9576028 0.4317928 0.8643761 +0.9720079 0.4317928 0.8643761 +0.9861357 0.4317928 0.8643761 +1 0.4317928 0.8643761 +0 0.470214 0.8643761 +0.1939468 0.470214 0.8643761 +0.2773041 0.470214 0.8643761 +0.3384659 0.470214 0.8643761 +0.3885728 0.470214 0.8643761 +0.4317928 0.470214 0.8643761 +0.470214 0.470214 0.8643761 +0.5050551 0.470214 0.8643761 +0.5370987 0.470214 0.8643761 +0.5668815 0.470214 0.8643761 +0.5947903 0.470214 0.8643761 +0.6211144 0.470214 0.8643761 +0.6460766 0.470214 0.8643761 +0.6698526 0.470214 0.8643761 +0.6925839 0.470214 0.8643761 +0.7143866 0.470214 0.8643761 +0.7353569 0.470214 0.8643761 +0.7555758 0.470214 0.8643761 +0.7751122 0.470214 0.8643761 +0.7940252 0.470214 0.8643761 +0.8123661 0.470214 0.8643761 +0.8301795 0.470214 0.8643761 +0.8475045 0.470214 0.8643761 +0.8643761 0.470214 0.8643761 +0.880825 0.470214 0.8643761 +0.8968787 0.470214 0.8643761 +0.9125621 0.470214 0.8643761 +0.9278974 0.470214 0.8643761 +0.9429048 0.470214 0.8643761 +0.9576028 0.470214 0.8643761 +0.9720079 0.470214 0.8643761 +0.9861357 0.470214 0.8643761 +1 0.470214 0.8643761 +0 0.5050551 0.8643761 +0.1939468 0.5050551 0.8643761 +0.2773041 0.5050551 0.8643761 +0.3384659 0.5050551 0.8643761 +0.3885728 0.5050551 0.8643761 +0.4317928 0.5050551 0.8643761 +0.470214 0.5050551 0.8643761 +0.5050551 0.5050551 0.8643761 +0.5370987 0.5050551 0.8643761 +0.5668815 0.5050551 0.8643761 +0.5947903 0.5050551 0.8643761 +0.6211144 0.5050551 0.8643761 +0.6460766 0.5050551 0.8643761 +0.6698526 0.5050551 0.8643761 +0.6925839 0.5050551 0.8643761 +0.7143866 0.5050551 0.8643761 +0.7353569 0.5050551 0.8643761 +0.7555758 0.5050551 0.8643761 +0.7751122 0.5050551 0.8643761 +0.7940252 0.5050551 0.8643761 +0.8123661 0.5050551 0.8643761 +0.8301795 0.5050551 0.8643761 +0.8475045 0.5050551 0.8643761 +0.8643761 0.5050551 0.8643761 +0.880825 0.5050551 0.8643761 +0.8968787 0.5050551 0.8643761 +0.9125621 0.5050551 0.8643761 +0.9278974 0.5050551 0.8643761 +0.9429048 0.5050551 0.8643761 +0.9576028 0.5050551 0.8643761 +0.9720079 0.5050551 0.8643761 +0.9861357 0.5050551 0.8643761 +1 0.5050551 0.8643761 +0 0.5370987 0.8643761 +0.1939468 0.5370987 0.8643761 +0.2773041 0.5370987 0.8643761 +0.3384659 0.5370987 0.8643761 +0.3885728 0.5370987 0.8643761 +0.4317928 0.5370987 0.8643761 +0.470214 0.5370987 0.8643761 +0.5050551 0.5370987 0.8643761 +0.5370987 0.5370987 0.8643761 +0.5668815 0.5370987 0.8643761 +0.5947903 0.5370987 0.8643761 +0.6211144 0.5370987 0.8643761 +0.6460766 0.5370987 0.8643761 +0.6698526 0.5370987 0.8643761 +0.6925839 0.5370987 0.8643761 +0.7143866 0.5370987 0.8643761 +0.7353569 0.5370987 0.8643761 +0.7555758 0.5370987 0.8643761 +0.7751122 0.5370987 0.8643761 +0.7940252 0.5370987 0.8643761 +0.8123661 0.5370987 0.8643761 +0.8301795 0.5370987 0.8643761 +0.8475045 0.5370987 0.8643761 +0.8643761 0.5370987 0.8643761 +0.880825 0.5370987 0.8643761 +0.8968787 0.5370987 0.8643761 +0.9125621 0.5370987 0.8643761 +0.9278974 0.5370987 0.8643761 +0.9429048 0.5370987 0.8643761 +0.9576028 0.5370987 0.8643761 +0.9720079 0.5370987 0.8643761 +0.9861357 0.5370987 0.8643761 +1 0.5370987 0.8643761 +0 0.5668815 0.8643761 +0.1939468 0.5668815 0.8643761 +0.2773041 0.5668815 0.8643761 +0.3384659 0.5668815 0.8643761 +0.3885728 0.5668815 0.8643761 +0.4317928 0.5668815 0.8643761 +0.470214 0.5668815 0.8643761 +0.5050551 0.5668815 0.8643761 +0.5370987 0.5668815 0.8643761 +0.5668815 0.5668815 0.8643761 +0.5947903 0.5668815 0.8643761 +0.6211144 0.5668815 0.8643761 +0.6460766 0.5668815 0.8643761 +0.6698526 0.5668815 0.8643761 +0.6925839 0.5668815 0.8643761 +0.7143866 0.5668815 0.8643761 +0.7353569 0.5668815 0.8643761 +0.7555758 0.5668815 0.8643761 +0.7751122 0.5668815 0.8643761 +0.7940252 0.5668815 0.8643761 +0.8123661 0.5668815 0.8643761 +0.8301795 0.5668815 0.8643761 +0.8475045 0.5668815 0.8643761 +0.8643761 0.5668815 0.8643761 +0.880825 0.5668815 0.8643761 +0.8968787 0.5668815 0.8643761 +0.9125621 0.5668815 0.8643761 +0.9278974 0.5668815 0.8643761 +0.9429048 0.5668815 0.8643761 +0.9576028 0.5668815 0.8643761 +0.9720079 0.5668815 0.8643761 +0.9861357 0.5668815 0.8643761 +1 0.5668815 0.8643761 +0 0.5947903 0.8643761 +0.1939468 0.5947903 0.8643761 +0.2773041 0.5947903 0.8643761 +0.3384659 0.5947903 0.8643761 +0.3885728 0.5947903 0.8643761 +0.4317928 0.5947903 0.8643761 +0.470214 0.5947903 0.8643761 +0.5050551 0.5947903 0.8643761 +0.5370987 0.5947903 0.8643761 +0.5668815 0.5947903 0.8643761 +0.5947903 0.5947903 0.8643761 +0.6211144 0.5947903 0.8643761 +0.6460766 0.5947903 0.8643761 +0.6698526 0.5947903 0.8643761 +0.6925839 0.5947903 0.8643761 +0.7143866 0.5947903 0.8643761 +0.7353569 0.5947903 0.8643761 +0.7555758 0.5947903 0.8643761 +0.7751122 0.5947903 0.8643761 +0.7940252 0.5947903 0.8643761 +0.8123661 0.5947903 0.8643761 +0.8301795 0.5947903 0.8643761 +0.8475045 0.5947903 0.8643761 +0.8643761 0.5947903 0.8643761 +0.880825 0.5947903 0.8643761 +0.8968787 0.5947903 0.8643761 +0.9125621 0.5947903 0.8643761 +0.9278974 0.5947903 0.8643761 +0.9429048 0.5947903 0.8643761 +0.9576028 0.5947903 0.8643761 +0.9720079 0.5947903 0.8643761 +0.9861357 0.5947903 0.8643761 +1 0.5947903 0.8643761 +0 0.6211144 0.8643761 +0.1939468 0.6211144 0.8643761 +0.2773041 0.6211144 0.8643761 +0.3384659 0.6211144 0.8643761 +0.3885728 0.6211144 0.8643761 +0.4317928 0.6211144 0.8643761 +0.470214 0.6211144 0.8643761 +0.5050551 0.6211144 0.8643761 +0.5370987 0.6211144 0.8643761 +0.5668815 0.6211144 0.8643761 +0.5947903 0.6211144 0.8643761 +0.6211144 0.6211144 0.8643761 +0.6460766 0.6211144 0.8643761 +0.6698526 0.6211144 0.8643761 +0.6925839 0.6211144 0.8643761 +0.7143866 0.6211144 0.8643761 +0.7353569 0.6211144 0.8643761 +0.7555758 0.6211144 0.8643761 +0.7751122 0.6211144 0.8643761 +0.7940252 0.6211144 0.8643761 +0.8123661 0.6211144 0.8643761 +0.8301795 0.6211144 0.8643761 +0.8475045 0.6211144 0.8643761 +0.8643761 0.6211144 0.8643761 +0.880825 0.6211144 0.8643761 +0.8968787 0.6211144 0.8643761 +0.9125621 0.6211144 0.8643761 +0.9278974 0.6211144 0.8643761 +0.9429048 0.6211144 0.8643761 +0.9576028 0.6211144 0.8643761 +0.9720079 0.6211144 0.8643761 +0.9861357 0.6211144 0.8643761 +1 0.6211144 0.8643761 +0 0.6460766 0.8643761 +0.1939468 0.6460766 0.8643761 +0.2773041 0.6460766 0.8643761 +0.3384659 0.6460766 0.8643761 +0.3885728 0.6460766 0.8643761 +0.4317928 0.6460766 0.8643761 +0.470214 0.6460766 0.8643761 +0.5050551 0.6460766 0.8643761 +0.5370987 0.6460766 0.8643761 +0.5668815 0.6460766 0.8643761 +0.5947903 0.6460766 0.8643761 +0.6211144 0.6460766 0.8643761 +0.6460766 0.6460766 0.8643761 +0.6698526 0.6460766 0.8643761 +0.6925839 0.6460766 0.8643761 +0.7143866 0.6460766 0.8643761 +0.7353569 0.6460766 0.8643761 +0.7555758 0.6460766 0.8643761 +0.7751122 0.6460766 0.8643761 +0.7940252 0.6460766 0.8643761 +0.8123661 0.6460766 0.8643761 +0.8301795 0.6460766 0.8643761 +0.8475045 0.6460766 0.8643761 +0.8643761 0.6460766 0.8643761 +0.880825 0.6460766 0.8643761 +0.8968787 0.6460766 0.8643761 +0.9125621 0.6460766 0.8643761 +0.9278974 0.6460766 0.8643761 +0.9429048 0.6460766 0.8643761 +0.9576028 0.6460766 0.8643761 +0.9720079 0.6460766 0.8643761 +0.9861357 0.6460766 0.8643761 +1 0.6460766 0.8643761 +0 0.6698526 0.8643761 +0.1939468 0.6698526 0.8643761 +0.2773041 0.6698526 0.8643761 +0.3384659 0.6698526 0.8643761 +0.3885728 0.6698526 0.8643761 +0.4317928 0.6698526 0.8643761 +0.470214 0.6698526 0.8643761 +0.5050551 0.6698526 0.8643761 +0.5370987 0.6698526 0.8643761 +0.5668815 0.6698526 0.8643761 +0.5947903 0.6698526 0.8643761 +0.6211144 0.6698526 0.8643761 +0.6460766 0.6698526 0.8643761 +0.6698526 0.6698526 0.8643761 +0.6925839 0.6698526 0.8643761 +0.7143866 0.6698526 0.8643761 +0.7353569 0.6698526 0.8643761 +0.7555758 0.6698526 0.8643761 +0.7751122 0.6698526 0.8643761 +0.7940252 0.6698526 0.8643761 +0.8123661 0.6698526 0.8643761 +0.8301795 0.6698526 0.8643761 +0.8475045 0.6698526 0.8643761 +0.8643761 0.6698526 0.8643761 +0.880825 0.6698526 0.8643761 +0.8968787 0.6698526 0.8643761 +0.9125621 0.6698526 0.8643761 +0.9278974 0.6698526 0.8643761 +0.9429048 0.6698526 0.8643761 +0.9576028 0.6698526 0.8643761 +0.9720079 0.6698526 0.8643761 +0.9861357 0.6698526 0.8643761 +1 0.6698526 0.8643761 +0 0.6925839 0.8643761 +0.1939468 0.6925839 0.8643761 +0.2773041 0.6925839 0.8643761 +0.3384659 0.6925839 0.8643761 +0.3885728 0.6925839 0.8643761 +0.4317928 0.6925839 0.8643761 +0.470214 0.6925839 0.8643761 +0.5050551 0.6925839 0.8643761 +0.5370987 0.6925839 0.8643761 +0.5668815 0.6925839 0.8643761 +0.5947903 0.6925839 0.8643761 +0.6211144 0.6925839 0.8643761 +0.6460766 0.6925839 0.8643761 +0.6698526 0.6925839 0.8643761 +0.6925839 0.6925839 0.8643761 +0.7143866 0.6925839 0.8643761 +0.7353569 0.6925839 0.8643761 +0.7555758 0.6925839 0.8643761 +0.7751122 0.6925839 0.8643761 +0.7940252 0.6925839 0.8643761 +0.8123661 0.6925839 0.8643761 +0.8301795 0.6925839 0.8643761 +0.8475045 0.6925839 0.8643761 +0.8643761 0.6925839 0.8643761 +0.880825 0.6925839 0.8643761 +0.8968787 0.6925839 0.8643761 +0.9125621 0.6925839 0.8643761 +0.9278974 0.6925839 0.8643761 +0.9429048 0.6925839 0.8643761 +0.9576028 0.6925839 0.8643761 +0.9720079 0.6925839 0.8643761 +0.9861357 0.6925839 0.8643761 +1 0.6925839 0.8643761 +0 0.7143866 0.8643761 +0.1939468 0.7143866 0.8643761 +0.2773041 0.7143866 0.8643761 +0.3384659 0.7143866 0.8643761 +0.3885728 0.7143866 0.8643761 +0.4317928 0.7143866 0.8643761 +0.470214 0.7143866 0.8643761 +0.5050551 0.7143866 0.8643761 +0.5370987 0.7143866 0.8643761 +0.5668815 0.7143866 0.8643761 +0.5947903 0.7143866 0.8643761 +0.6211144 0.7143866 0.8643761 +0.6460766 0.7143866 0.8643761 +0.6698526 0.7143866 0.8643761 +0.6925839 0.7143866 0.8643761 +0.7143866 0.7143866 0.8643761 +0.7353569 0.7143866 0.8643761 +0.7555758 0.7143866 0.8643761 +0.7751122 0.7143866 0.8643761 +0.7940252 0.7143866 0.8643761 +0.8123661 0.7143866 0.8643761 +0.8301795 0.7143866 0.8643761 +0.8475045 0.7143866 0.8643761 +0.8643761 0.7143866 0.8643761 +0.880825 0.7143866 0.8643761 +0.8968787 0.7143866 0.8643761 +0.9125621 0.7143866 0.8643761 +0.9278974 0.7143866 0.8643761 +0.9429048 0.7143866 0.8643761 +0.9576028 0.7143866 0.8643761 +0.9720079 0.7143866 0.8643761 +0.9861357 0.7143866 0.8643761 +1 0.7143866 0.8643761 +0 0.7353569 0.8643761 +0.1939468 0.7353569 0.8643761 +0.2773041 0.7353569 0.8643761 +0.3384659 0.7353569 0.8643761 +0.3885728 0.7353569 0.8643761 +0.4317928 0.7353569 0.8643761 +0.470214 0.7353569 0.8643761 +0.5050551 0.7353569 0.8643761 +0.5370987 0.7353569 0.8643761 +0.5668815 0.7353569 0.8643761 +0.5947903 0.7353569 0.8643761 +0.6211144 0.7353569 0.8643761 +0.6460766 0.7353569 0.8643761 +0.6698526 0.7353569 0.8643761 +0.6925839 0.7353569 0.8643761 +0.7143866 0.7353569 0.8643761 +0.7353569 0.7353569 0.8643761 +0.7555758 0.7353569 0.8643761 +0.7751122 0.7353569 0.8643761 +0.7940252 0.7353569 0.8643761 +0.8123661 0.7353569 0.8643761 +0.8301795 0.7353569 0.8643761 +0.8475045 0.7353569 0.8643761 +0.8643761 0.7353569 0.8643761 +0.880825 0.7353569 0.8643761 +0.8968787 0.7353569 0.8643761 +0.9125621 0.7353569 0.8643761 +0.9278974 0.7353569 0.8643761 +0.9429048 0.7353569 0.8643761 +0.9576028 0.7353569 0.8643761 +0.9720079 0.7353569 0.8643761 +0.9861357 0.7353569 0.8643761 +1 0.7353569 0.8643761 +0 0.7555758 0.8643761 +0.1939468 0.7555758 0.8643761 +0.2773041 0.7555758 0.8643761 +0.3384659 0.7555758 0.8643761 +0.3885728 0.7555758 0.8643761 +0.4317928 0.7555758 0.8643761 +0.470214 0.7555758 0.8643761 +0.5050551 0.7555758 0.8643761 +0.5370987 0.7555758 0.8643761 +0.5668815 0.7555758 0.8643761 +0.5947903 0.7555758 0.8643761 +0.6211144 0.7555758 0.8643761 +0.6460766 0.7555758 0.8643761 +0.6698526 0.7555758 0.8643761 +0.6925839 0.7555758 0.8643761 +0.7143866 0.7555758 0.8643761 +0.7353569 0.7555758 0.8643761 +0.7555758 0.7555758 0.8643761 +0.7751122 0.7555758 0.8643761 +0.7940252 0.7555758 0.8643761 +0.8123661 0.7555758 0.8643761 +0.8301795 0.7555758 0.8643761 +0.8475045 0.7555758 0.8643761 +0.8643761 0.7555758 0.8643761 +0.880825 0.7555758 0.8643761 +0.8968787 0.7555758 0.8643761 +0.9125621 0.7555758 0.8643761 +0.9278974 0.7555758 0.8643761 +0.9429048 0.7555758 0.8643761 +0.9576028 0.7555758 0.8643761 +0.9720079 0.7555758 0.8643761 +0.9861357 0.7555758 0.8643761 +1 0.7555758 0.8643761 +0 0.7751122 0.8643761 +0.1939468 0.7751122 0.8643761 +0.2773041 0.7751122 0.8643761 +0.3384659 0.7751122 0.8643761 +0.3885728 0.7751122 0.8643761 +0.4317928 0.7751122 0.8643761 +0.470214 0.7751122 0.8643761 +0.5050551 0.7751122 0.8643761 +0.5370987 0.7751122 0.8643761 +0.5668815 0.7751122 0.8643761 +0.5947903 0.7751122 0.8643761 +0.6211144 0.7751122 0.8643761 +0.6460766 0.7751122 0.8643761 +0.6698526 0.7751122 0.8643761 +0.6925839 0.7751122 0.8643761 +0.7143866 0.7751122 0.8643761 +0.7353569 0.7751122 0.8643761 +0.7555758 0.7751122 0.8643761 +0.7751122 0.7751122 0.8643761 +0.7940252 0.7751122 0.8643761 +0.8123661 0.7751122 0.8643761 +0.8301795 0.7751122 0.8643761 +0.8475045 0.7751122 0.8643761 +0.8643761 0.7751122 0.8643761 +0.880825 0.7751122 0.8643761 +0.8968787 0.7751122 0.8643761 +0.9125621 0.7751122 0.8643761 +0.9278974 0.7751122 0.8643761 +0.9429048 0.7751122 0.8643761 +0.9576028 0.7751122 0.8643761 +0.9720079 0.7751122 0.8643761 +0.9861357 0.7751122 0.8643761 +1 0.7751122 0.8643761 +0 0.7940252 0.8643761 +0.1939468 0.7940252 0.8643761 +0.2773041 0.7940252 0.8643761 +0.3384659 0.7940252 0.8643761 +0.3885728 0.7940252 0.8643761 +0.4317928 0.7940252 0.8643761 +0.470214 0.7940252 0.8643761 +0.5050551 0.7940252 0.8643761 +0.5370987 0.7940252 0.8643761 +0.5668815 0.7940252 0.8643761 +0.5947903 0.7940252 0.8643761 +0.6211144 0.7940252 0.8643761 +0.6460766 0.7940252 0.8643761 +0.6698526 0.7940252 0.8643761 +0.6925839 0.7940252 0.8643761 +0.7143866 0.7940252 0.8643761 +0.7353569 0.7940252 0.8643761 +0.7555758 0.7940252 0.8643761 +0.7751122 0.7940252 0.8643761 +0.7940252 0.7940252 0.8643761 +0.8123661 0.7940252 0.8643761 +0.8301795 0.7940252 0.8643761 +0.8475045 0.7940252 0.8643761 +0.8643761 0.7940252 0.8643761 +0.880825 0.7940252 0.8643761 +0.8968787 0.7940252 0.8643761 +0.9125621 0.7940252 0.8643761 +0.9278974 0.7940252 0.8643761 +0.9429048 0.7940252 0.8643761 +0.9576028 0.7940252 0.8643761 +0.9720079 0.7940252 0.8643761 +0.9861357 0.7940252 0.8643761 +1 0.7940252 0.8643761 +0 0.8123661 0.8643761 +0.1939468 0.8123661 0.8643761 +0.2773041 0.8123661 0.8643761 +0.3384659 0.8123661 0.8643761 +0.3885728 0.8123661 0.8643761 +0.4317928 0.8123661 0.8643761 +0.470214 0.8123661 0.8643761 +0.5050551 0.8123661 0.8643761 +0.5370987 0.8123661 0.8643761 +0.5668815 0.8123661 0.8643761 +0.5947903 0.8123661 0.8643761 +0.6211144 0.8123661 0.8643761 +0.6460766 0.8123661 0.8643761 +0.6698526 0.8123661 0.8643761 +0.6925839 0.8123661 0.8643761 +0.7143866 0.8123661 0.8643761 +0.7353569 0.8123661 0.8643761 +0.7555758 0.8123661 0.8643761 +0.7751122 0.8123661 0.8643761 +0.7940252 0.8123661 0.8643761 +0.8123661 0.8123661 0.8643761 +0.8301795 0.8123661 0.8643761 +0.8475045 0.8123661 0.8643761 +0.8643761 0.8123661 0.8643761 +0.880825 0.8123661 0.8643761 +0.8968787 0.8123661 0.8643761 +0.9125621 0.8123661 0.8643761 +0.9278974 0.8123661 0.8643761 +0.9429048 0.8123661 0.8643761 +0.9576028 0.8123661 0.8643761 +0.9720079 0.8123661 0.8643761 +0.9861357 0.8123661 0.8643761 +1 0.8123661 0.8643761 +0 0.8301795 0.8643761 +0.1939468 0.8301795 0.8643761 +0.2773041 0.8301795 0.8643761 +0.3384659 0.8301795 0.8643761 +0.3885728 0.8301795 0.8643761 +0.4317928 0.8301795 0.8643761 +0.470214 0.8301795 0.8643761 +0.5050551 0.8301795 0.8643761 +0.5370987 0.8301795 0.8643761 +0.5668815 0.8301795 0.8643761 +0.5947903 0.8301795 0.8643761 +0.6211144 0.8301795 0.8643761 +0.6460766 0.8301795 0.8643761 +0.6698526 0.8301795 0.8643761 +0.6925839 0.8301795 0.8643761 +0.7143866 0.8301795 0.8643761 +0.7353569 0.8301795 0.8643761 +0.7555758 0.8301795 0.8643761 +0.7751122 0.8301795 0.8643761 +0.7940252 0.8301795 0.8643761 +0.8123661 0.8301795 0.8643761 +0.8301795 0.8301795 0.8643761 +0.8475045 0.8301795 0.8643761 +0.8643761 0.8301795 0.8643761 +0.880825 0.8301795 0.8643761 +0.8968787 0.8301795 0.8643761 +0.9125621 0.8301795 0.8643761 +0.9278974 0.8301795 0.8643761 +0.9429048 0.8301795 0.8643761 +0.9576028 0.8301795 0.8643761 +0.9720079 0.8301795 0.8643761 +0.9861357 0.8301795 0.8643761 +1 0.8301795 0.8643761 +0 0.8475045 0.8643761 +0.1939468 0.8475045 0.8643761 +0.2773041 0.8475045 0.8643761 +0.3384659 0.8475045 0.8643761 +0.3885728 0.8475045 0.8643761 +0.4317928 0.8475045 0.8643761 +0.470214 0.8475045 0.8643761 +0.5050551 0.8475045 0.8643761 +0.5370987 0.8475045 0.8643761 +0.5668815 0.8475045 0.8643761 +0.5947903 0.8475045 0.8643761 +0.6211144 0.8475045 0.8643761 +0.6460766 0.8475045 0.8643761 +0.6698526 0.8475045 0.8643761 +0.6925839 0.8475045 0.8643761 +0.7143866 0.8475045 0.8643761 +0.7353569 0.8475045 0.8643761 +0.7555758 0.8475045 0.8643761 +0.7751122 0.8475045 0.8643761 +0.7940252 0.8475045 0.8643761 +0.8123661 0.8475045 0.8643761 +0.8301795 0.8475045 0.8643761 +0.8475045 0.8475045 0.8643761 +0.8643761 0.8475045 0.8643761 +0.880825 0.8475045 0.8643761 +0.8968787 0.8475045 0.8643761 +0.9125621 0.8475045 0.8643761 +0.9278974 0.8475045 0.8643761 +0.9429048 0.8475045 0.8643761 +0.9576028 0.8475045 0.8643761 +0.9720079 0.8475045 0.8643761 +0.9861357 0.8475045 0.8643761 +1 0.8475045 0.8643761 +0 0.8643761 0.8643761 +0.1939468 0.8643761 0.8643761 +0.2773041 0.8643761 0.8643761 +0.3384659 0.8643761 0.8643761 +0.3885728 0.8643761 0.8643761 +0.4317928 0.8643761 0.8643761 +0.470214 0.8643761 0.8643761 +0.5050551 0.8643761 0.8643761 +0.5370987 0.8643761 0.8643761 +0.5668815 0.8643761 0.8643761 +0.5947903 0.8643761 0.8643761 +0.6211144 0.8643761 0.8643761 +0.6460766 0.8643761 0.8643761 +0.6698526 0.8643761 0.8643761 +0.6925839 0.8643761 0.8643761 +0.7143866 0.8643761 0.8643761 +0.7353569 0.8643761 0.8643761 +0.7555758 0.8643761 0.8643761 +0.7751122 0.8643761 0.8643761 +0.7940252 0.8643761 0.8643761 +0.8123661 0.8643761 0.8643761 +0.8301795 0.8643761 0.8643761 +0.8475045 0.8643761 0.8643761 +0.8643761 0.8643761 0.8643761 +0.880825 0.8643761 0.8643761 +0.8968787 0.8643761 0.8643761 +0.9125621 0.8643761 0.8643761 +0.9278974 0.8643761 0.8643761 +0.9429048 0.8643761 0.8643761 +0.9576028 0.8643761 0.8643761 +0.9720079 0.8643761 0.8643761 +0.9861357 0.8643761 0.8643761 +1 0.8643761 0.8643761 +0 0.880825 0.8643761 +0.1939468 0.880825 0.8643761 +0.2773041 0.880825 0.8643761 +0.3384659 0.880825 0.8643761 +0.3885728 0.880825 0.8643761 +0.4317928 0.880825 0.8643761 +0.470214 0.880825 0.8643761 +0.5050551 0.880825 0.8643761 +0.5370987 0.880825 0.8643761 +0.5668815 0.880825 0.8643761 +0.5947903 0.880825 0.8643761 +0.6211144 0.880825 0.8643761 +0.6460766 0.880825 0.8643761 +0.6698526 0.880825 0.8643761 +0.6925839 0.880825 0.8643761 +0.7143866 0.880825 0.8643761 +0.7353569 0.880825 0.8643761 +0.7555758 0.880825 0.8643761 +0.7751122 0.880825 0.8643761 +0.7940252 0.880825 0.8643761 +0.8123661 0.880825 0.8643761 +0.8301795 0.880825 0.8643761 +0.8475045 0.880825 0.8643761 +0.8643761 0.880825 0.8643761 +0.880825 0.880825 0.8643761 +0.8968787 0.880825 0.8643761 +0.9125621 0.880825 0.8643761 +0.9278974 0.880825 0.8643761 +0.9429048 0.880825 0.8643761 +0.9576028 0.880825 0.8643761 +0.9720079 0.880825 0.8643761 +0.9861357 0.880825 0.8643761 +1 0.880825 0.8643761 +0 0.8968787 0.8643761 +0.1939468 0.8968787 0.8643761 +0.2773041 0.8968787 0.8643761 +0.3384659 0.8968787 0.8643761 +0.3885728 0.8968787 0.8643761 +0.4317928 0.8968787 0.8643761 +0.470214 0.8968787 0.8643761 +0.5050551 0.8968787 0.8643761 +0.5370987 0.8968787 0.8643761 +0.5668815 0.8968787 0.8643761 +0.5947903 0.8968787 0.8643761 +0.6211144 0.8968787 0.8643761 +0.6460766 0.8968787 0.8643761 +0.6698526 0.8968787 0.8643761 +0.6925839 0.8968787 0.8643761 +0.7143866 0.8968787 0.8643761 +0.7353569 0.8968787 0.8643761 +0.7555758 0.8968787 0.8643761 +0.7751122 0.8968787 0.8643761 +0.7940252 0.8968787 0.8643761 +0.8123661 0.8968787 0.8643761 +0.8301795 0.8968787 0.8643761 +0.8475045 0.8968787 0.8643761 +0.8643761 0.8968787 0.8643761 +0.880825 0.8968787 0.8643761 +0.8968787 0.8968787 0.8643761 +0.9125621 0.8968787 0.8643761 +0.9278974 0.8968787 0.8643761 +0.9429048 0.8968787 0.8643761 +0.9576028 0.8968787 0.8643761 +0.9720079 0.8968787 0.8643761 +0.9861357 0.8968787 0.8643761 +1 0.8968787 0.8643761 +0 0.9125621 0.8643761 +0.1939468 0.9125621 0.8643761 +0.2773041 0.9125621 0.8643761 +0.3384659 0.9125621 0.8643761 +0.3885728 0.9125621 0.8643761 +0.4317928 0.9125621 0.8643761 +0.470214 0.9125621 0.8643761 +0.5050551 0.9125621 0.8643761 +0.5370987 0.9125621 0.8643761 +0.5668815 0.9125621 0.8643761 +0.5947903 0.9125621 0.8643761 +0.6211144 0.9125621 0.8643761 +0.6460766 0.9125621 0.8643761 +0.6698526 0.9125621 0.8643761 +0.6925839 0.9125621 0.8643761 +0.7143866 0.9125621 0.8643761 +0.7353569 0.9125621 0.8643761 +0.7555758 0.9125621 0.8643761 +0.7751122 0.9125621 0.8643761 +0.7940252 0.9125621 0.8643761 +0.8123661 0.9125621 0.8643761 +0.8301795 0.9125621 0.8643761 +0.8475045 0.9125621 0.8643761 +0.8643761 0.9125621 0.8643761 +0.880825 0.9125621 0.8643761 +0.8968787 0.9125621 0.8643761 +0.9125621 0.9125621 0.8643761 +0.9278974 0.9125621 0.8643761 +0.9429048 0.9125621 0.8643761 +0.9576028 0.9125621 0.8643761 +0.9720079 0.9125621 0.8643761 +0.9861357 0.9125621 0.8643761 +1 0.9125621 0.8643761 +0 0.9278974 0.8643761 +0.1939468 0.9278974 0.8643761 +0.2773041 0.9278974 0.8643761 +0.3384659 0.9278974 0.8643761 +0.3885728 0.9278974 0.8643761 +0.4317928 0.9278974 0.8643761 +0.470214 0.9278974 0.8643761 +0.5050551 0.9278974 0.8643761 +0.5370987 0.9278974 0.8643761 +0.5668815 0.9278974 0.8643761 +0.5947903 0.9278974 0.8643761 +0.6211144 0.9278974 0.8643761 +0.6460766 0.9278974 0.8643761 +0.6698526 0.9278974 0.8643761 +0.6925839 0.9278974 0.8643761 +0.7143866 0.9278974 0.8643761 +0.7353569 0.9278974 0.8643761 +0.7555758 0.9278974 0.8643761 +0.7751122 0.9278974 0.8643761 +0.7940252 0.9278974 0.8643761 +0.8123661 0.9278974 0.8643761 +0.8301795 0.9278974 0.8643761 +0.8475045 0.9278974 0.8643761 +0.8643761 0.9278974 0.8643761 +0.880825 0.9278974 0.8643761 +0.8968787 0.9278974 0.8643761 +0.9125621 0.9278974 0.8643761 +0.9278974 0.9278974 0.8643761 +0.9429048 0.9278974 0.8643761 +0.9576028 0.9278974 0.8643761 +0.9720079 0.9278974 0.8643761 +0.9861357 0.9278974 0.8643761 +1 0.9278974 0.8643761 +0 0.9429048 0.8643761 +0.1939468 0.9429048 0.8643761 +0.2773041 0.9429048 0.8643761 +0.3384659 0.9429048 0.8643761 +0.3885728 0.9429048 0.8643761 +0.4317928 0.9429048 0.8643761 +0.470214 0.9429048 0.8643761 +0.5050551 0.9429048 0.8643761 +0.5370987 0.9429048 0.8643761 +0.5668815 0.9429048 0.8643761 +0.5947903 0.9429048 0.8643761 +0.6211144 0.9429048 0.8643761 +0.6460766 0.9429048 0.8643761 +0.6698526 0.9429048 0.8643761 +0.6925839 0.9429048 0.8643761 +0.7143866 0.9429048 0.8643761 +0.7353569 0.9429048 0.8643761 +0.7555758 0.9429048 0.8643761 +0.7751122 0.9429048 0.8643761 +0.7940252 0.9429048 0.8643761 +0.8123661 0.9429048 0.8643761 +0.8301795 0.9429048 0.8643761 +0.8475045 0.9429048 0.8643761 +0.8643761 0.9429048 0.8643761 +0.880825 0.9429048 0.8643761 +0.8968787 0.9429048 0.8643761 +0.9125621 0.9429048 0.8643761 +0.9278974 0.9429048 0.8643761 +0.9429048 0.9429048 0.8643761 +0.9576028 0.9429048 0.8643761 +0.9720079 0.9429048 0.8643761 +0.9861357 0.9429048 0.8643761 +1 0.9429048 0.8643761 +0 0.9576028 0.8643761 +0.1939468 0.9576028 0.8643761 +0.2773041 0.9576028 0.8643761 +0.3384659 0.9576028 0.8643761 +0.3885728 0.9576028 0.8643761 +0.4317928 0.9576028 0.8643761 +0.470214 0.9576028 0.8643761 +0.5050551 0.9576028 0.8643761 +0.5370987 0.9576028 0.8643761 +0.5668815 0.9576028 0.8643761 +0.5947903 0.9576028 0.8643761 +0.6211144 0.9576028 0.8643761 +0.6460766 0.9576028 0.8643761 +0.6698526 0.9576028 0.8643761 +0.6925839 0.9576028 0.8643761 +0.7143866 0.9576028 0.8643761 +0.7353569 0.9576028 0.8643761 +0.7555758 0.9576028 0.8643761 +0.7751122 0.9576028 0.8643761 +0.7940252 0.9576028 0.8643761 +0.8123661 0.9576028 0.8643761 +0.8301795 0.9576028 0.8643761 +0.8475045 0.9576028 0.8643761 +0.8643761 0.9576028 0.8643761 +0.880825 0.9576028 0.8643761 +0.8968787 0.9576028 0.8643761 +0.9125621 0.9576028 0.8643761 +0.9278974 0.9576028 0.8643761 +0.9429048 0.9576028 0.8643761 +0.9576028 0.9576028 0.8643761 +0.9720079 0.9576028 0.8643761 +0.9861357 0.9576028 0.8643761 +1 0.9576028 0.8643761 +0 0.9720079 0.8643761 +0.1939468 0.9720079 0.8643761 +0.2773041 0.9720079 0.8643761 +0.3384659 0.9720079 0.8643761 +0.3885728 0.9720079 0.8643761 +0.4317928 0.9720079 0.8643761 +0.470214 0.9720079 0.8643761 +0.5050551 0.9720079 0.8643761 +0.5370987 0.9720079 0.8643761 +0.5668815 0.9720079 0.8643761 +0.5947903 0.9720079 0.8643761 +0.6211144 0.9720079 0.8643761 +0.6460766 0.9720079 0.8643761 +0.6698526 0.9720079 0.8643761 +0.6925839 0.9720079 0.8643761 +0.7143866 0.9720079 0.8643761 +0.7353569 0.9720079 0.8643761 +0.7555758 0.9720079 0.8643761 +0.7751122 0.9720079 0.8643761 +0.7940252 0.9720079 0.8643761 +0.8123661 0.9720079 0.8643761 +0.8301795 0.9720079 0.8643761 +0.8475045 0.9720079 0.8643761 +0.8643761 0.9720079 0.8643761 +0.880825 0.9720079 0.8643761 +0.8968787 0.9720079 0.8643761 +0.9125621 0.9720079 0.8643761 +0.9278974 0.9720079 0.8643761 +0.9429048 0.9720079 0.8643761 +0.9576028 0.9720079 0.8643761 +0.9720079 0.9720079 0.8643761 +0.9861357 0.9720079 0.8643761 +1 0.9720079 0.8643761 +0 0.9861357 0.8643761 +0.1939468 0.9861357 0.8643761 +0.2773041 0.9861357 0.8643761 +0.3384659 0.9861357 0.8643761 +0.3885728 0.9861357 0.8643761 +0.4317928 0.9861357 0.8643761 +0.470214 0.9861357 0.8643761 +0.5050551 0.9861357 0.8643761 +0.5370987 0.9861357 0.8643761 +0.5668815 0.9861357 0.8643761 +0.5947903 0.9861357 0.8643761 +0.6211144 0.9861357 0.8643761 +0.6460766 0.9861357 0.8643761 +0.6698526 0.9861357 0.8643761 +0.6925839 0.9861357 0.8643761 +0.7143866 0.9861357 0.8643761 +0.7353569 0.9861357 0.8643761 +0.7555758 0.9861357 0.8643761 +0.7751122 0.9861357 0.8643761 +0.7940252 0.9861357 0.8643761 +0.8123661 0.9861357 0.8643761 +0.8301795 0.9861357 0.8643761 +0.8475045 0.9861357 0.8643761 +0.8643761 0.9861357 0.8643761 +0.880825 0.9861357 0.8643761 +0.8968787 0.9861357 0.8643761 +0.9125621 0.9861357 0.8643761 +0.9278974 0.9861357 0.8643761 +0.9429048 0.9861357 0.8643761 +0.9576028 0.9861357 0.8643761 +0.9720079 0.9861357 0.8643761 +0.9861357 0.9861357 0.8643761 +1 0.9861357 0.8643761 +0 1 0.8643761 +0.1939468 1 0.8643761 +0.2773041 1 0.8643761 +0.3384659 1 0.8643761 +0.3885728 1 0.8643761 +0.4317928 1 0.8643761 +0.470214 1 0.8643761 +0.5050551 1 0.8643761 +0.5370987 1 0.8643761 +0.5668815 1 0.8643761 +0.5947903 1 0.8643761 +0.6211144 1 0.8643761 +0.6460766 1 0.8643761 +0.6698526 1 0.8643761 +0.6925839 1 0.8643761 +0.7143866 1 0.8643761 +0.7353569 1 0.8643761 +0.7555758 1 0.8643761 +0.7751122 1 0.8643761 +0.7940252 1 0.8643761 +0.8123661 1 0.8643761 +0.8301795 1 0.8643761 +0.8475045 1 0.8643761 +0.8643761 1 0.8643761 +0.880825 1 0.8643761 +0.8968787 1 0.8643761 +0.9125621 1 0.8643761 +0.9278974 1 0.8643761 +0.9429048 1 0.8643761 +0.9576028 1 0.8643761 +0.9720079 1 0.8643761 +0.9861357 1 0.8643761 +1 1 0.8643761 +0 0 0.880825 +0.1939468 0 0.880825 +0.2773041 0 0.880825 +0.3384659 0 0.880825 +0.3885728 0 0.880825 +0.4317928 0 0.880825 +0.470214 0 0.880825 +0.5050551 0 0.880825 +0.5370987 0 0.880825 +0.5668815 0 0.880825 +0.5947903 0 0.880825 +0.6211144 0 0.880825 +0.6460766 0 0.880825 +0.6698526 0 0.880825 +0.6925839 0 0.880825 +0.7143866 0 0.880825 +0.7353569 0 0.880825 +0.7555758 0 0.880825 +0.7751122 0 0.880825 +0.7940252 0 0.880825 +0.8123661 0 0.880825 +0.8301795 0 0.880825 +0.8475045 0 0.880825 +0.8643761 0 0.880825 +0.880825 0 0.880825 +0.8968787 0 0.880825 +0.9125621 0 0.880825 +0.9278974 0 0.880825 +0.9429048 0 0.880825 +0.9576028 0 0.880825 +0.9720079 0 0.880825 +0.9861357 0 0.880825 +1 0 0.880825 +0 0.1939468 0.880825 +0.1939468 0.1939468 0.880825 +0.2773041 0.1939468 0.880825 +0.3384659 0.1939468 0.880825 +0.3885728 0.1939468 0.880825 +0.4317928 0.1939468 0.880825 +0.470214 0.1939468 0.880825 +0.5050551 0.1939468 0.880825 +0.5370987 0.1939468 0.880825 +0.5668815 0.1939468 0.880825 +0.5947903 0.1939468 0.880825 +0.6211144 0.1939468 0.880825 +0.6460766 0.1939468 0.880825 +0.6698526 0.1939468 0.880825 +0.6925839 0.1939468 0.880825 +0.7143866 0.1939468 0.880825 +0.7353569 0.1939468 0.880825 +0.7555758 0.1939468 0.880825 +0.7751122 0.1939468 0.880825 +0.7940252 0.1939468 0.880825 +0.8123661 0.1939468 0.880825 +0.8301795 0.1939468 0.880825 +0.8475045 0.1939468 0.880825 +0.8643761 0.1939468 0.880825 +0.880825 0.1939468 0.880825 +0.8968787 0.1939468 0.880825 +0.9125621 0.1939468 0.880825 +0.9278974 0.1939468 0.880825 +0.9429048 0.1939468 0.880825 +0.9576028 0.1939468 0.880825 +0.9720079 0.1939468 0.880825 +0.9861357 0.1939468 0.880825 +1 0.1939468 0.880825 +0 0.2773041 0.880825 +0.1939468 0.2773041 0.880825 +0.2773041 0.2773041 0.880825 +0.3384659 0.2773041 0.880825 +0.3885728 0.2773041 0.880825 +0.4317928 0.2773041 0.880825 +0.470214 0.2773041 0.880825 +0.5050551 0.2773041 0.880825 +0.5370987 0.2773041 0.880825 +0.5668815 0.2773041 0.880825 +0.5947903 0.2773041 0.880825 +0.6211144 0.2773041 0.880825 +0.6460766 0.2773041 0.880825 +0.6698526 0.2773041 0.880825 +0.6925839 0.2773041 0.880825 +0.7143866 0.2773041 0.880825 +0.7353569 0.2773041 0.880825 +0.7555758 0.2773041 0.880825 +0.7751122 0.2773041 0.880825 +0.7940252 0.2773041 0.880825 +0.8123661 0.2773041 0.880825 +0.8301795 0.2773041 0.880825 +0.8475045 0.2773041 0.880825 +0.8643761 0.2773041 0.880825 +0.880825 0.2773041 0.880825 +0.8968787 0.2773041 0.880825 +0.9125621 0.2773041 0.880825 +0.9278974 0.2773041 0.880825 +0.9429048 0.2773041 0.880825 +0.9576028 0.2773041 0.880825 +0.9720079 0.2773041 0.880825 +0.9861357 0.2773041 0.880825 +1 0.2773041 0.880825 +0 0.3384659 0.880825 +0.1939468 0.3384659 0.880825 +0.2773041 0.3384659 0.880825 +0.3384659 0.3384659 0.880825 +0.3885728 0.3384659 0.880825 +0.4317928 0.3384659 0.880825 +0.470214 0.3384659 0.880825 +0.5050551 0.3384659 0.880825 +0.5370987 0.3384659 0.880825 +0.5668815 0.3384659 0.880825 +0.5947903 0.3384659 0.880825 +0.6211144 0.3384659 0.880825 +0.6460766 0.3384659 0.880825 +0.6698526 0.3384659 0.880825 +0.6925839 0.3384659 0.880825 +0.7143866 0.3384659 0.880825 +0.7353569 0.3384659 0.880825 +0.7555758 0.3384659 0.880825 +0.7751122 0.3384659 0.880825 +0.7940252 0.3384659 0.880825 +0.8123661 0.3384659 0.880825 +0.8301795 0.3384659 0.880825 +0.8475045 0.3384659 0.880825 +0.8643761 0.3384659 0.880825 +0.880825 0.3384659 0.880825 +0.8968787 0.3384659 0.880825 +0.9125621 0.3384659 0.880825 +0.9278974 0.3384659 0.880825 +0.9429048 0.3384659 0.880825 +0.9576028 0.3384659 0.880825 +0.9720079 0.3384659 0.880825 +0.9861357 0.3384659 0.880825 +1 0.3384659 0.880825 +0 0.3885728 0.880825 +0.1939468 0.3885728 0.880825 +0.2773041 0.3885728 0.880825 +0.3384659 0.3885728 0.880825 +0.3885728 0.3885728 0.880825 +0.4317928 0.3885728 0.880825 +0.470214 0.3885728 0.880825 +0.5050551 0.3885728 0.880825 +0.5370987 0.3885728 0.880825 +0.5668815 0.3885728 0.880825 +0.5947903 0.3885728 0.880825 +0.6211144 0.3885728 0.880825 +0.6460766 0.3885728 0.880825 +0.6698526 0.3885728 0.880825 +0.6925839 0.3885728 0.880825 +0.7143866 0.3885728 0.880825 +0.7353569 0.3885728 0.880825 +0.7555758 0.3885728 0.880825 +0.7751122 0.3885728 0.880825 +0.7940252 0.3885728 0.880825 +0.8123661 0.3885728 0.880825 +0.8301795 0.3885728 0.880825 +0.8475045 0.3885728 0.880825 +0.8643761 0.3885728 0.880825 +0.880825 0.3885728 0.880825 +0.8968787 0.3885728 0.880825 +0.9125621 0.3885728 0.880825 +0.9278974 0.3885728 0.880825 +0.9429048 0.3885728 0.880825 +0.9576028 0.3885728 0.880825 +0.9720079 0.3885728 0.880825 +0.9861357 0.3885728 0.880825 +1 0.3885728 0.880825 +0 0.4317928 0.880825 +0.1939468 0.4317928 0.880825 +0.2773041 0.4317928 0.880825 +0.3384659 0.4317928 0.880825 +0.3885728 0.4317928 0.880825 +0.4317928 0.4317928 0.880825 +0.470214 0.4317928 0.880825 +0.5050551 0.4317928 0.880825 +0.5370987 0.4317928 0.880825 +0.5668815 0.4317928 0.880825 +0.5947903 0.4317928 0.880825 +0.6211144 0.4317928 0.880825 +0.6460766 0.4317928 0.880825 +0.6698526 0.4317928 0.880825 +0.6925839 0.4317928 0.880825 +0.7143866 0.4317928 0.880825 +0.7353569 0.4317928 0.880825 +0.7555758 0.4317928 0.880825 +0.7751122 0.4317928 0.880825 +0.7940252 0.4317928 0.880825 +0.8123661 0.4317928 0.880825 +0.8301795 0.4317928 0.880825 +0.8475045 0.4317928 0.880825 +0.8643761 0.4317928 0.880825 +0.880825 0.4317928 0.880825 +0.8968787 0.4317928 0.880825 +0.9125621 0.4317928 0.880825 +0.9278974 0.4317928 0.880825 +0.9429048 0.4317928 0.880825 +0.9576028 0.4317928 0.880825 +0.9720079 0.4317928 0.880825 +0.9861357 0.4317928 0.880825 +1 0.4317928 0.880825 +0 0.470214 0.880825 +0.1939468 0.470214 0.880825 +0.2773041 0.470214 0.880825 +0.3384659 0.470214 0.880825 +0.3885728 0.470214 0.880825 +0.4317928 0.470214 0.880825 +0.470214 0.470214 0.880825 +0.5050551 0.470214 0.880825 +0.5370987 0.470214 0.880825 +0.5668815 0.470214 0.880825 +0.5947903 0.470214 0.880825 +0.6211144 0.470214 0.880825 +0.6460766 0.470214 0.880825 +0.6698526 0.470214 0.880825 +0.6925839 0.470214 0.880825 +0.7143866 0.470214 0.880825 +0.7353569 0.470214 0.880825 +0.7555758 0.470214 0.880825 +0.7751122 0.470214 0.880825 +0.7940252 0.470214 0.880825 +0.8123661 0.470214 0.880825 +0.8301795 0.470214 0.880825 +0.8475045 0.470214 0.880825 +0.8643761 0.470214 0.880825 +0.880825 0.470214 0.880825 +0.8968787 0.470214 0.880825 +0.9125621 0.470214 0.880825 +0.9278974 0.470214 0.880825 +0.9429048 0.470214 0.880825 +0.9576028 0.470214 0.880825 +0.9720079 0.470214 0.880825 +0.9861357 0.470214 0.880825 +1 0.470214 0.880825 +0 0.5050551 0.880825 +0.1939468 0.5050551 0.880825 +0.2773041 0.5050551 0.880825 +0.3384659 0.5050551 0.880825 +0.3885728 0.5050551 0.880825 +0.4317928 0.5050551 0.880825 +0.470214 0.5050551 0.880825 +0.5050551 0.5050551 0.880825 +0.5370987 0.5050551 0.880825 +0.5668815 0.5050551 0.880825 +0.5947903 0.5050551 0.880825 +0.6211144 0.5050551 0.880825 +0.6460766 0.5050551 0.880825 +0.6698526 0.5050551 0.880825 +0.6925839 0.5050551 0.880825 +0.7143866 0.5050551 0.880825 +0.7353569 0.5050551 0.880825 +0.7555758 0.5050551 0.880825 +0.7751122 0.5050551 0.880825 +0.7940252 0.5050551 0.880825 +0.8123661 0.5050551 0.880825 +0.8301795 0.5050551 0.880825 +0.8475045 0.5050551 0.880825 +0.8643761 0.5050551 0.880825 +0.880825 0.5050551 0.880825 +0.8968787 0.5050551 0.880825 +0.9125621 0.5050551 0.880825 +0.9278974 0.5050551 0.880825 +0.9429048 0.5050551 0.880825 +0.9576028 0.5050551 0.880825 +0.9720079 0.5050551 0.880825 +0.9861357 0.5050551 0.880825 +1 0.5050551 0.880825 +0 0.5370987 0.880825 +0.1939468 0.5370987 0.880825 +0.2773041 0.5370987 0.880825 +0.3384659 0.5370987 0.880825 +0.3885728 0.5370987 0.880825 +0.4317928 0.5370987 0.880825 +0.470214 0.5370987 0.880825 +0.5050551 0.5370987 0.880825 +0.5370987 0.5370987 0.880825 +0.5668815 0.5370987 0.880825 +0.5947903 0.5370987 0.880825 +0.6211144 0.5370987 0.880825 +0.6460766 0.5370987 0.880825 +0.6698526 0.5370987 0.880825 +0.6925839 0.5370987 0.880825 +0.7143866 0.5370987 0.880825 +0.7353569 0.5370987 0.880825 +0.7555758 0.5370987 0.880825 +0.7751122 0.5370987 0.880825 +0.7940252 0.5370987 0.880825 +0.8123661 0.5370987 0.880825 +0.8301795 0.5370987 0.880825 +0.8475045 0.5370987 0.880825 +0.8643761 0.5370987 0.880825 +0.880825 0.5370987 0.880825 +0.8968787 0.5370987 0.880825 +0.9125621 0.5370987 0.880825 +0.9278974 0.5370987 0.880825 +0.9429048 0.5370987 0.880825 +0.9576028 0.5370987 0.880825 +0.9720079 0.5370987 0.880825 +0.9861357 0.5370987 0.880825 +1 0.5370987 0.880825 +0 0.5668815 0.880825 +0.1939468 0.5668815 0.880825 +0.2773041 0.5668815 0.880825 +0.3384659 0.5668815 0.880825 +0.3885728 0.5668815 0.880825 +0.4317928 0.5668815 0.880825 +0.470214 0.5668815 0.880825 +0.5050551 0.5668815 0.880825 +0.5370987 0.5668815 0.880825 +0.5668815 0.5668815 0.880825 +0.5947903 0.5668815 0.880825 +0.6211144 0.5668815 0.880825 +0.6460766 0.5668815 0.880825 +0.6698526 0.5668815 0.880825 +0.6925839 0.5668815 0.880825 +0.7143866 0.5668815 0.880825 +0.7353569 0.5668815 0.880825 +0.7555758 0.5668815 0.880825 +0.7751122 0.5668815 0.880825 +0.7940252 0.5668815 0.880825 +0.8123661 0.5668815 0.880825 +0.8301795 0.5668815 0.880825 +0.8475045 0.5668815 0.880825 +0.8643761 0.5668815 0.880825 +0.880825 0.5668815 0.880825 +0.8968787 0.5668815 0.880825 +0.9125621 0.5668815 0.880825 +0.9278974 0.5668815 0.880825 +0.9429048 0.5668815 0.880825 +0.9576028 0.5668815 0.880825 +0.9720079 0.5668815 0.880825 +0.9861357 0.5668815 0.880825 +1 0.5668815 0.880825 +0 0.5947903 0.880825 +0.1939468 0.5947903 0.880825 +0.2773041 0.5947903 0.880825 +0.3384659 0.5947903 0.880825 +0.3885728 0.5947903 0.880825 +0.4317928 0.5947903 0.880825 +0.470214 0.5947903 0.880825 +0.5050551 0.5947903 0.880825 +0.5370987 0.5947903 0.880825 +0.5668815 0.5947903 0.880825 +0.5947903 0.5947903 0.880825 +0.6211144 0.5947903 0.880825 +0.6460766 0.5947903 0.880825 +0.6698526 0.5947903 0.880825 +0.6925839 0.5947903 0.880825 +0.7143866 0.5947903 0.880825 +0.7353569 0.5947903 0.880825 +0.7555758 0.5947903 0.880825 +0.7751122 0.5947903 0.880825 +0.7940252 0.5947903 0.880825 +0.8123661 0.5947903 0.880825 +0.8301795 0.5947903 0.880825 +0.8475045 0.5947903 0.880825 +0.8643761 0.5947903 0.880825 +0.880825 0.5947903 0.880825 +0.8968787 0.5947903 0.880825 +0.9125621 0.5947903 0.880825 +0.9278974 0.5947903 0.880825 +0.9429048 0.5947903 0.880825 +0.9576028 0.5947903 0.880825 +0.9720079 0.5947903 0.880825 +0.9861357 0.5947903 0.880825 +1 0.5947903 0.880825 +0 0.6211144 0.880825 +0.1939468 0.6211144 0.880825 +0.2773041 0.6211144 0.880825 +0.3384659 0.6211144 0.880825 +0.3885728 0.6211144 0.880825 +0.4317928 0.6211144 0.880825 +0.470214 0.6211144 0.880825 +0.5050551 0.6211144 0.880825 +0.5370987 0.6211144 0.880825 +0.5668815 0.6211144 0.880825 +0.5947903 0.6211144 0.880825 +0.6211144 0.6211144 0.880825 +0.6460766 0.6211144 0.880825 +0.6698526 0.6211144 0.880825 +0.6925839 0.6211144 0.880825 +0.7143866 0.6211144 0.880825 +0.7353569 0.6211144 0.880825 +0.7555758 0.6211144 0.880825 +0.7751122 0.6211144 0.880825 +0.7940252 0.6211144 0.880825 +0.8123661 0.6211144 0.880825 +0.8301795 0.6211144 0.880825 +0.8475045 0.6211144 0.880825 +0.8643761 0.6211144 0.880825 +0.880825 0.6211144 0.880825 +0.8968787 0.6211144 0.880825 +0.9125621 0.6211144 0.880825 +0.9278974 0.6211144 0.880825 +0.9429048 0.6211144 0.880825 +0.9576028 0.6211144 0.880825 +0.9720079 0.6211144 0.880825 +0.9861357 0.6211144 0.880825 +1 0.6211144 0.880825 +0 0.6460766 0.880825 +0.1939468 0.6460766 0.880825 +0.2773041 0.6460766 0.880825 +0.3384659 0.6460766 0.880825 +0.3885728 0.6460766 0.880825 +0.4317928 0.6460766 0.880825 +0.470214 0.6460766 0.880825 +0.5050551 0.6460766 0.880825 +0.5370987 0.6460766 0.880825 +0.5668815 0.6460766 0.880825 +0.5947903 0.6460766 0.880825 +0.6211144 0.6460766 0.880825 +0.6460766 0.6460766 0.880825 +0.6698526 0.6460766 0.880825 +0.6925839 0.6460766 0.880825 +0.7143866 0.6460766 0.880825 +0.7353569 0.6460766 0.880825 +0.7555758 0.6460766 0.880825 +0.7751122 0.6460766 0.880825 +0.7940252 0.6460766 0.880825 +0.8123661 0.6460766 0.880825 +0.8301795 0.6460766 0.880825 +0.8475045 0.6460766 0.880825 +0.8643761 0.6460766 0.880825 +0.880825 0.6460766 0.880825 +0.8968787 0.6460766 0.880825 +0.9125621 0.6460766 0.880825 +0.9278974 0.6460766 0.880825 +0.9429048 0.6460766 0.880825 +0.9576028 0.6460766 0.880825 +0.9720079 0.6460766 0.880825 +0.9861357 0.6460766 0.880825 +1 0.6460766 0.880825 +0 0.6698526 0.880825 +0.1939468 0.6698526 0.880825 +0.2773041 0.6698526 0.880825 +0.3384659 0.6698526 0.880825 +0.3885728 0.6698526 0.880825 +0.4317928 0.6698526 0.880825 +0.470214 0.6698526 0.880825 +0.5050551 0.6698526 0.880825 +0.5370987 0.6698526 0.880825 +0.5668815 0.6698526 0.880825 +0.5947903 0.6698526 0.880825 +0.6211144 0.6698526 0.880825 +0.6460766 0.6698526 0.880825 +0.6698526 0.6698526 0.880825 +0.6925839 0.6698526 0.880825 +0.7143866 0.6698526 0.880825 +0.7353569 0.6698526 0.880825 +0.7555758 0.6698526 0.880825 +0.7751122 0.6698526 0.880825 +0.7940252 0.6698526 0.880825 +0.8123661 0.6698526 0.880825 +0.8301795 0.6698526 0.880825 +0.8475045 0.6698526 0.880825 +0.8643761 0.6698526 0.880825 +0.880825 0.6698526 0.880825 +0.8968787 0.6698526 0.880825 +0.9125621 0.6698526 0.880825 +0.9278974 0.6698526 0.880825 +0.9429048 0.6698526 0.880825 +0.9576028 0.6698526 0.880825 +0.9720079 0.6698526 0.880825 +0.9861357 0.6698526 0.880825 +1 0.6698526 0.880825 +0 0.6925839 0.880825 +0.1939468 0.6925839 0.880825 +0.2773041 0.6925839 0.880825 +0.3384659 0.6925839 0.880825 +0.3885728 0.6925839 0.880825 +0.4317928 0.6925839 0.880825 +0.470214 0.6925839 0.880825 +0.5050551 0.6925839 0.880825 +0.5370987 0.6925839 0.880825 +0.5668815 0.6925839 0.880825 +0.5947903 0.6925839 0.880825 +0.6211144 0.6925839 0.880825 +0.6460766 0.6925839 0.880825 +0.6698526 0.6925839 0.880825 +0.6925839 0.6925839 0.880825 +0.7143866 0.6925839 0.880825 +0.7353569 0.6925839 0.880825 +0.7555758 0.6925839 0.880825 +0.7751122 0.6925839 0.880825 +0.7940252 0.6925839 0.880825 +0.8123661 0.6925839 0.880825 +0.8301795 0.6925839 0.880825 +0.8475045 0.6925839 0.880825 +0.8643761 0.6925839 0.880825 +0.880825 0.6925839 0.880825 +0.8968787 0.6925839 0.880825 +0.9125621 0.6925839 0.880825 +0.9278974 0.6925839 0.880825 +0.9429048 0.6925839 0.880825 +0.9576028 0.6925839 0.880825 +0.9720079 0.6925839 0.880825 +0.9861357 0.6925839 0.880825 +1 0.6925839 0.880825 +0 0.7143866 0.880825 +0.1939468 0.7143866 0.880825 +0.2773041 0.7143866 0.880825 +0.3384659 0.7143866 0.880825 +0.3885728 0.7143866 0.880825 +0.4317928 0.7143866 0.880825 +0.470214 0.7143866 0.880825 +0.5050551 0.7143866 0.880825 +0.5370987 0.7143866 0.880825 +0.5668815 0.7143866 0.880825 +0.5947903 0.7143866 0.880825 +0.6211144 0.7143866 0.880825 +0.6460766 0.7143866 0.880825 +0.6698526 0.7143866 0.880825 +0.6925839 0.7143866 0.880825 +0.7143866 0.7143866 0.880825 +0.7353569 0.7143866 0.880825 +0.7555758 0.7143866 0.880825 +0.7751122 0.7143866 0.880825 +0.7940252 0.7143866 0.880825 +0.8123661 0.7143866 0.880825 +0.8301795 0.7143866 0.880825 +0.8475045 0.7143866 0.880825 +0.8643761 0.7143866 0.880825 +0.880825 0.7143866 0.880825 +0.8968787 0.7143866 0.880825 +0.9125621 0.7143866 0.880825 +0.9278974 0.7143866 0.880825 +0.9429048 0.7143866 0.880825 +0.9576028 0.7143866 0.880825 +0.9720079 0.7143866 0.880825 +0.9861357 0.7143866 0.880825 +1 0.7143866 0.880825 +0 0.7353569 0.880825 +0.1939468 0.7353569 0.880825 +0.2773041 0.7353569 0.880825 +0.3384659 0.7353569 0.880825 +0.3885728 0.7353569 0.880825 +0.4317928 0.7353569 0.880825 +0.470214 0.7353569 0.880825 +0.5050551 0.7353569 0.880825 +0.5370987 0.7353569 0.880825 +0.5668815 0.7353569 0.880825 +0.5947903 0.7353569 0.880825 +0.6211144 0.7353569 0.880825 +0.6460766 0.7353569 0.880825 +0.6698526 0.7353569 0.880825 +0.6925839 0.7353569 0.880825 +0.7143866 0.7353569 0.880825 +0.7353569 0.7353569 0.880825 +0.7555758 0.7353569 0.880825 +0.7751122 0.7353569 0.880825 +0.7940252 0.7353569 0.880825 +0.8123661 0.7353569 0.880825 +0.8301795 0.7353569 0.880825 +0.8475045 0.7353569 0.880825 +0.8643761 0.7353569 0.880825 +0.880825 0.7353569 0.880825 +0.8968787 0.7353569 0.880825 +0.9125621 0.7353569 0.880825 +0.9278974 0.7353569 0.880825 +0.9429048 0.7353569 0.880825 +0.9576028 0.7353569 0.880825 +0.9720079 0.7353569 0.880825 +0.9861357 0.7353569 0.880825 +1 0.7353569 0.880825 +0 0.7555758 0.880825 +0.1939468 0.7555758 0.880825 +0.2773041 0.7555758 0.880825 +0.3384659 0.7555758 0.880825 +0.3885728 0.7555758 0.880825 +0.4317928 0.7555758 0.880825 +0.470214 0.7555758 0.880825 +0.5050551 0.7555758 0.880825 +0.5370987 0.7555758 0.880825 +0.5668815 0.7555758 0.880825 +0.5947903 0.7555758 0.880825 +0.6211144 0.7555758 0.880825 +0.6460766 0.7555758 0.880825 +0.6698526 0.7555758 0.880825 +0.6925839 0.7555758 0.880825 +0.7143866 0.7555758 0.880825 +0.7353569 0.7555758 0.880825 +0.7555758 0.7555758 0.880825 +0.7751122 0.7555758 0.880825 +0.7940252 0.7555758 0.880825 +0.8123661 0.7555758 0.880825 +0.8301795 0.7555758 0.880825 +0.8475045 0.7555758 0.880825 +0.8643761 0.7555758 0.880825 +0.880825 0.7555758 0.880825 +0.8968787 0.7555758 0.880825 +0.9125621 0.7555758 0.880825 +0.9278974 0.7555758 0.880825 +0.9429048 0.7555758 0.880825 +0.9576028 0.7555758 0.880825 +0.9720079 0.7555758 0.880825 +0.9861357 0.7555758 0.880825 +1 0.7555758 0.880825 +0 0.7751122 0.880825 +0.1939468 0.7751122 0.880825 +0.2773041 0.7751122 0.880825 +0.3384659 0.7751122 0.880825 +0.3885728 0.7751122 0.880825 +0.4317928 0.7751122 0.880825 +0.470214 0.7751122 0.880825 +0.5050551 0.7751122 0.880825 +0.5370987 0.7751122 0.880825 +0.5668815 0.7751122 0.880825 +0.5947903 0.7751122 0.880825 +0.6211144 0.7751122 0.880825 +0.6460766 0.7751122 0.880825 +0.6698526 0.7751122 0.880825 +0.6925839 0.7751122 0.880825 +0.7143866 0.7751122 0.880825 +0.7353569 0.7751122 0.880825 +0.7555758 0.7751122 0.880825 +0.7751122 0.7751122 0.880825 +0.7940252 0.7751122 0.880825 +0.8123661 0.7751122 0.880825 +0.8301795 0.7751122 0.880825 +0.8475045 0.7751122 0.880825 +0.8643761 0.7751122 0.880825 +0.880825 0.7751122 0.880825 +0.8968787 0.7751122 0.880825 +0.9125621 0.7751122 0.880825 +0.9278974 0.7751122 0.880825 +0.9429048 0.7751122 0.880825 +0.9576028 0.7751122 0.880825 +0.9720079 0.7751122 0.880825 +0.9861357 0.7751122 0.880825 +1 0.7751122 0.880825 +0 0.7940252 0.880825 +0.1939468 0.7940252 0.880825 +0.2773041 0.7940252 0.880825 +0.3384659 0.7940252 0.880825 +0.3885728 0.7940252 0.880825 +0.4317928 0.7940252 0.880825 +0.470214 0.7940252 0.880825 +0.5050551 0.7940252 0.880825 +0.5370987 0.7940252 0.880825 +0.5668815 0.7940252 0.880825 +0.5947903 0.7940252 0.880825 +0.6211144 0.7940252 0.880825 +0.6460766 0.7940252 0.880825 +0.6698526 0.7940252 0.880825 +0.6925839 0.7940252 0.880825 +0.7143866 0.7940252 0.880825 +0.7353569 0.7940252 0.880825 +0.7555758 0.7940252 0.880825 +0.7751122 0.7940252 0.880825 +0.7940252 0.7940252 0.880825 +0.8123661 0.7940252 0.880825 +0.8301795 0.7940252 0.880825 +0.8475045 0.7940252 0.880825 +0.8643761 0.7940252 0.880825 +0.880825 0.7940252 0.880825 +0.8968787 0.7940252 0.880825 +0.9125621 0.7940252 0.880825 +0.9278974 0.7940252 0.880825 +0.9429048 0.7940252 0.880825 +0.9576028 0.7940252 0.880825 +0.9720079 0.7940252 0.880825 +0.9861357 0.7940252 0.880825 +1 0.7940252 0.880825 +0 0.8123661 0.880825 +0.1939468 0.8123661 0.880825 +0.2773041 0.8123661 0.880825 +0.3384659 0.8123661 0.880825 +0.3885728 0.8123661 0.880825 +0.4317928 0.8123661 0.880825 +0.470214 0.8123661 0.880825 +0.5050551 0.8123661 0.880825 +0.5370987 0.8123661 0.880825 +0.5668815 0.8123661 0.880825 +0.5947903 0.8123661 0.880825 +0.6211144 0.8123661 0.880825 +0.6460766 0.8123661 0.880825 +0.6698526 0.8123661 0.880825 +0.6925839 0.8123661 0.880825 +0.7143866 0.8123661 0.880825 +0.7353569 0.8123661 0.880825 +0.7555758 0.8123661 0.880825 +0.7751122 0.8123661 0.880825 +0.7940252 0.8123661 0.880825 +0.8123661 0.8123661 0.880825 +0.8301795 0.8123661 0.880825 +0.8475045 0.8123661 0.880825 +0.8643761 0.8123661 0.880825 +0.880825 0.8123661 0.880825 +0.8968787 0.8123661 0.880825 +0.9125621 0.8123661 0.880825 +0.9278974 0.8123661 0.880825 +0.9429048 0.8123661 0.880825 +0.9576028 0.8123661 0.880825 +0.9720079 0.8123661 0.880825 +0.9861357 0.8123661 0.880825 +1 0.8123661 0.880825 +0 0.8301795 0.880825 +0.1939468 0.8301795 0.880825 +0.2773041 0.8301795 0.880825 +0.3384659 0.8301795 0.880825 +0.3885728 0.8301795 0.880825 +0.4317928 0.8301795 0.880825 +0.470214 0.8301795 0.880825 +0.5050551 0.8301795 0.880825 +0.5370987 0.8301795 0.880825 +0.5668815 0.8301795 0.880825 +0.5947903 0.8301795 0.880825 +0.6211144 0.8301795 0.880825 +0.6460766 0.8301795 0.880825 +0.6698526 0.8301795 0.880825 +0.6925839 0.8301795 0.880825 +0.7143866 0.8301795 0.880825 +0.7353569 0.8301795 0.880825 +0.7555758 0.8301795 0.880825 +0.7751122 0.8301795 0.880825 +0.7940252 0.8301795 0.880825 +0.8123661 0.8301795 0.880825 +0.8301795 0.8301795 0.880825 +0.8475045 0.8301795 0.880825 +0.8643761 0.8301795 0.880825 +0.880825 0.8301795 0.880825 +0.8968787 0.8301795 0.880825 +0.9125621 0.8301795 0.880825 +0.9278974 0.8301795 0.880825 +0.9429048 0.8301795 0.880825 +0.9576028 0.8301795 0.880825 +0.9720079 0.8301795 0.880825 +0.9861357 0.8301795 0.880825 +1 0.8301795 0.880825 +0 0.8475045 0.880825 +0.1939468 0.8475045 0.880825 +0.2773041 0.8475045 0.880825 +0.3384659 0.8475045 0.880825 +0.3885728 0.8475045 0.880825 +0.4317928 0.8475045 0.880825 +0.470214 0.8475045 0.880825 +0.5050551 0.8475045 0.880825 +0.5370987 0.8475045 0.880825 +0.5668815 0.8475045 0.880825 +0.5947903 0.8475045 0.880825 +0.6211144 0.8475045 0.880825 +0.6460766 0.8475045 0.880825 +0.6698526 0.8475045 0.880825 +0.6925839 0.8475045 0.880825 +0.7143866 0.8475045 0.880825 +0.7353569 0.8475045 0.880825 +0.7555758 0.8475045 0.880825 +0.7751122 0.8475045 0.880825 +0.7940252 0.8475045 0.880825 +0.8123661 0.8475045 0.880825 +0.8301795 0.8475045 0.880825 +0.8475045 0.8475045 0.880825 +0.8643761 0.8475045 0.880825 +0.880825 0.8475045 0.880825 +0.8968787 0.8475045 0.880825 +0.9125621 0.8475045 0.880825 +0.9278974 0.8475045 0.880825 +0.9429048 0.8475045 0.880825 +0.9576028 0.8475045 0.880825 +0.9720079 0.8475045 0.880825 +0.9861357 0.8475045 0.880825 +1 0.8475045 0.880825 +0 0.8643761 0.880825 +0.1939468 0.8643761 0.880825 +0.2773041 0.8643761 0.880825 +0.3384659 0.8643761 0.880825 +0.3885728 0.8643761 0.880825 +0.4317928 0.8643761 0.880825 +0.470214 0.8643761 0.880825 +0.5050551 0.8643761 0.880825 +0.5370987 0.8643761 0.880825 +0.5668815 0.8643761 0.880825 +0.5947903 0.8643761 0.880825 +0.6211144 0.8643761 0.880825 +0.6460766 0.8643761 0.880825 +0.6698526 0.8643761 0.880825 +0.6925839 0.8643761 0.880825 +0.7143866 0.8643761 0.880825 +0.7353569 0.8643761 0.880825 +0.7555758 0.8643761 0.880825 +0.7751122 0.8643761 0.880825 +0.7940252 0.8643761 0.880825 +0.8123661 0.8643761 0.880825 +0.8301795 0.8643761 0.880825 +0.8475045 0.8643761 0.880825 +0.8643761 0.8643761 0.880825 +0.880825 0.8643761 0.880825 +0.8968787 0.8643761 0.880825 +0.9125621 0.8643761 0.880825 +0.9278974 0.8643761 0.880825 +0.9429048 0.8643761 0.880825 +0.9576028 0.8643761 0.880825 +0.9720079 0.8643761 0.880825 +0.9861357 0.8643761 0.880825 +1 0.8643761 0.880825 +0 0.880825 0.880825 +0.1939468 0.880825 0.880825 +0.2773041 0.880825 0.880825 +0.3384659 0.880825 0.880825 +0.3885728 0.880825 0.880825 +0.4317928 0.880825 0.880825 +0.470214 0.880825 0.880825 +0.5050551 0.880825 0.880825 +0.5370987 0.880825 0.880825 +0.5668815 0.880825 0.880825 +0.5947903 0.880825 0.880825 +0.6211144 0.880825 0.880825 +0.6460766 0.880825 0.880825 +0.6698526 0.880825 0.880825 +0.6925839 0.880825 0.880825 +0.7143866 0.880825 0.880825 +0.7353569 0.880825 0.880825 +0.7555758 0.880825 0.880825 +0.7751122 0.880825 0.880825 +0.7940252 0.880825 0.880825 +0.8123661 0.880825 0.880825 +0.8301795 0.880825 0.880825 +0.8475045 0.880825 0.880825 +0.8643761 0.880825 0.880825 +0.880825 0.880825 0.880825 +0.8968787 0.880825 0.880825 +0.9125621 0.880825 0.880825 +0.9278974 0.880825 0.880825 +0.9429048 0.880825 0.880825 +0.9576028 0.880825 0.880825 +0.9720079 0.880825 0.880825 +0.9861357 0.880825 0.880825 +1 0.880825 0.880825 +0 0.8968787 0.880825 +0.1939468 0.8968787 0.880825 +0.2773041 0.8968787 0.880825 +0.3384659 0.8968787 0.880825 +0.3885728 0.8968787 0.880825 +0.4317928 0.8968787 0.880825 +0.470214 0.8968787 0.880825 +0.5050551 0.8968787 0.880825 +0.5370987 0.8968787 0.880825 +0.5668815 0.8968787 0.880825 +0.5947903 0.8968787 0.880825 +0.6211144 0.8968787 0.880825 +0.6460766 0.8968787 0.880825 +0.6698526 0.8968787 0.880825 +0.6925839 0.8968787 0.880825 +0.7143866 0.8968787 0.880825 +0.7353569 0.8968787 0.880825 +0.7555758 0.8968787 0.880825 +0.7751122 0.8968787 0.880825 +0.7940252 0.8968787 0.880825 +0.8123661 0.8968787 0.880825 +0.8301795 0.8968787 0.880825 +0.8475045 0.8968787 0.880825 +0.8643761 0.8968787 0.880825 +0.880825 0.8968787 0.880825 +0.8968787 0.8968787 0.880825 +0.9125621 0.8968787 0.880825 +0.9278974 0.8968787 0.880825 +0.9429048 0.8968787 0.880825 +0.9576028 0.8968787 0.880825 +0.9720079 0.8968787 0.880825 +0.9861357 0.8968787 0.880825 +1 0.8968787 0.880825 +0 0.9125621 0.880825 +0.1939468 0.9125621 0.880825 +0.2773041 0.9125621 0.880825 +0.3384659 0.9125621 0.880825 +0.3885728 0.9125621 0.880825 +0.4317928 0.9125621 0.880825 +0.470214 0.9125621 0.880825 +0.5050551 0.9125621 0.880825 +0.5370987 0.9125621 0.880825 +0.5668815 0.9125621 0.880825 +0.5947903 0.9125621 0.880825 +0.6211144 0.9125621 0.880825 +0.6460766 0.9125621 0.880825 +0.6698526 0.9125621 0.880825 +0.6925839 0.9125621 0.880825 +0.7143866 0.9125621 0.880825 +0.7353569 0.9125621 0.880825 +0.7555758 0.9125621 0.880825 +0.7751122 0.9125621 0.880825 +0.7940252 0.9125621 0.880825 +0.8123661 0.9125621 0.880825 +0.8301795 0.9125621 0.880825 +0.8475045 0.9125621 0.880825 +0.8643761 0.9125621 0.880825 +0.880825 0.9125621 0.880825 +0.8968787 0.9125621 0.880825 +0.9125621 0.9125621 0.880825 +0.9278974 0.9125621 0.880825 +0.9429048 0.9125621 0.880825 +0.9576028 0.9125621 0.880825 +0.9720079 0.9125621 0.880825 +0.9861357 0.9125621 0.880825 +1 0.9125621 0.880825 +0 0.9278974 0.880825 +0.1939468 0.9278974 0.880825 +0.2773041 0.9278974 0.880825 +0.3384659 0.9278974 0.880825 +0.3885728 0.9278974 0.880825 +0.4317928 0.9278974 0.880825 +0.470214 0.9278974 0.880825 +0.5050551 0.9278974 0.880825 +0.5370987 0.9278974 0.880825 +0.5668815 0.9278974 0.880825 +0.5947903 0.9278974 0.880825 +0.6211144 0.9278974 0.880825 +0.6460766 0.9278974 0.880825 +0.6698526 0.9278974 0.880825 +0.6925839 0.9278974 0.880825 +0.7143866 0.9278974 0.880825 +0.7353569 0.9278974 0.880825 +0.7555758 0.9278974 0.880825 +0.7751122 0.9278974 0.880825 +0.7940252 0.9278974 0.880825 +0.8123661 0.9278974 0.880825 +0.8301795 0.9278974 0.880825 +0.8475045 0.9278974 0.880825 +0.8643761 0.9278974 0.880825 +0.880825 0.9278974 0.880825 +0.8968787 0.9278974 0.880825 +0.9125621 0.9278974 0.880825 +0.9278974 0.9278974 0.880825 +0.9429048 0.9278974 0.880825 +0.9576028 0.9278974 0.880825 +0.9720079 0.9278974 0.880825 +0.9861357 0.9278974 0.880825 +1 0.9278974 0.880825 +0 0.9429048 0.880825 +0.1939468 0.9429048 0.880825 +0.2773041 0.9429048 0.880825 +0.3384659 0.9429048 0.880825 +0.3885728 0.9429048 0.880825 +0.4317928 0.9429048 0.880825 +0.470214 0.9429048 0.880825 +0.5050551 0.9429048 0.880825 +0.5370987 0.9429048 0.880825 +0.5668815 0.9429048 0.880825 +0.5947903 0.9429048 0.880825 +0.6211144 0.9429048 0.880825 +0.6460766 0.9429048 0.880825 +0.6698526 0.9429048 0.880825 +0.6925839 0.9429048 0.880825 +0.7143866 0.9429048 0.880825 +0.7353569 0.9429048 0.880825 +0.7555758 0.9429048 0.880825 +0.7751122 0.9429048 0.880825 +0.7940252 0.9429048 0.880825 +0.8123661 0.9429048 0.880825 +0.8301795 0.9429048 0.880825 +0.8475045 0.9429048 0.880825 +0.8643761 0.9429048 0.880825 +0.880825 0.9429048 0.880825 +0.8968787 0.9429048 0.880825 +0.9125621 0.9429048 0.880825 +0.9278974 0.9429048 0.880825 +0.9429048 0.9429048 0.880825 +0.9576028 0.9429048 0.880825 +0.9720079 0.9429048 0.880825 +0.9861357 0.9429048 0.880825 +1 0.9429048 0.880825 +0 0.9576028 0.880825 +0.1939468 0.9576028 0.880825 +0.2773041 0.9576028 0.880825 +0.3384659 0.9576028 0.880825 +0.3885728 0.9576028 0.880825 +0.4317928 0.9576028 0.880825 +0.470214 0.9576028 0.880825 +0.5050551 0.9576028 0.880825 +0.5370987 0.9576028 0.880825 +0.5668815 0.9576028 0.880825 +0.5947903 0.9576028 0.880825 +0.6211144 0.9576028 0.880825 +0.6460766 0.9576028 0.880825 +0.6698526 0.9576028 0.880825 +0.6925839 0.9576028 0.880825 +0.7143866 0.9576028 0.880825 +0.7353569 0.9576028 0.880825 +0.7555758 0.9576028 0.880825 +0.7751122 0.9576028 0.880825 +0.7940252 0.9576028 0.880825 +0.8123661 0.9576028 0.880825 +0.8301795 0.9576028 0.880825 +0.8475045 0.9576028 0.880825 +0.8643761 0.9576028 0.880825 +0.880825 0.9576028 0.880825 +0.8968787 0.9576028 0.880825 +0.9125621 0.9576028 0.880825 +0.9278974 0.9576028 0.880825 +0.9429048 0.9576028 0.880825 +0.9576028 0.9576028 0.880825 +0.9720079 0.9576028 0.880825 +0.9861357 0.9576028 0.880825 +1 0.9576028 0.880825 +0 0.9720079 0.880825 +0.1939468 0.9720079 0.880825 +0.2773041 0.9720079 0.880825 +0.3384659 0.9720079 0.880825 +0.3885728 0.9720079 0.880825 +0.4317928 0.9720079 0.880825 +0.470214 0.9720079 0.880825 +0.5050551 0.9720079 0.880825 +0.5370987 0.9720079 0.880825 +0.5668815 0.9720079 0.880825 +0.5947903 0.9720079 0.880825 +0.6211144 0.9720079 0.880825 +0.6460766 0.9720079 0.880825 +0.6698526 0.9720079 0.880825 +0.6925839 0.9720079 0.880825 +0.7143866 0.9720079 0.880825 +0.7353569 0.9720079 0.880825 +0.7555758 0.9720079 0.880825 +0.7751122 0.9720079 0.880825 +0.7940252 0.9720079 0.880825 +0.8123661 0.9720079 0.880825 +0.8301795 0.9720079 0.880825 +0.8475045 0.9720079 0.880825 +0.8643761 0.9720079 0.880825 +0.880825 0.9720079 0.880825 +0.8968787 0.9720079 0.880825 +0.9125621 0.9720079 0.880825 +0.9278974 0.9720079 0.880825 +0.9429048 0.9720079 0.880825 +0.9576028 0.9720079 0.880825 +0.9720079 0.9720079 0.880825 +0.9861357 0.9720079 0.880825 +1 0.9720079 0.880825 +0 0.9861357 0.880825 +0.1939468 0.9861357 0.880825 +0.2773041 0.9861357 0.880825 +0.3384659 0.9861357 0.880825 +0.3885728 0.9861357 0.880825 +0.4317928 0.9861357 0.880825 +0.470214 0.9861357 0.880825 +0.5050551 0.9861357 0.880825 +0.5370987 0.9861357 0.880825 +0.5668815 0.9861357 0.880825 +0.5947903 0.9861357 0.880825 +0.6211144 0.9861357 0.880825 +0.6460766 0.9861357 0.880825 +0.6698526 0.9861357 0.880825 +0.6925839 0.9861357 0.880825 +0.7143866 0.9861357 0.880825 +0.7353569 0.9861357 0.880825 +0.7555758 0.9861357 0.880825 +0.7751122 0.9861357 0.880825 +0.7940252 0.9861357 0.880825 +0.8123661 0.9861357 0.880825 +0.8301795 0.9861357 0.880825 +0.8475045 0.9861357 0.880825 +0.8643761 0.9861357 0.880825 +0.880825 0.9861357 0.880825 +0.8968787 0.9861357 0.880825 +0.9125621 0.9861357 0.880825 +0.9278974 0.9861357 0.880825 +0.9429048 0.9861357 0.880825 +0.9576028 0.9861357 0.880825 +0.9720079 0.9861357 0.880825 +0.9861357 0.9861357 0.880825 +1 0.9861357 0.880825 +0 1 0.880825 +0.1939468 1 0.880825 +0.2773041 1 0.880825 +0.3384659 1 0.880825 +0.3885728 1 0.880825 +0.4317928 1 0.880825 +0.470214 1 0.880825 +0.5050551 1 0.880825 +0.5370987 1 0.880825 +0.5668815 1 0.880825 +0.5947903 1 0.880825 +0.6211144 1 0.880825 +0.6460766 1 0.880825 +0.6698526 1 0.880825 +0.6925839 1 0.880825 +0.7143866 1 0.880825 +0.7353569 1 0.880825 +0.7555758 1 0.880825 +0.7751122 1 0.880825 +0.7940252 1 0.880825 +0.8123661 1 0.880825 +0.8301795 1 0.880825 +0.8475045 1 0.880825 +0.8643761 1 0.880825 +0.880825 1 0.880825 +0.8968787 1 0.880825 +0.9125621 1 0.880825 +0.9278974 1 0.880825 +0.9429048 1 0.880825 +0.9576028 1 0.880825 +0.9720079 1 0.880825 +0.9861357 1 0.880825 +1 1 0.880825 +0 0 0.8968787 +0.1939468 0 0.8968787 +0.2773041 0 0.8968787 +0.3384659 0 0.8968787 +0.3885728 0 0.8968787 +0.4317928 0 0.8968787 +0.470214 0 0.8968787 +0.5050551 0 0.8968787 +0.5370987 0 0.8968787 +0.5668815 0 0.8968787 +0.5947903 0 0.8968787 +0.6211144 0 0.8968787 +0.6460766 0 0.8968787 +0.6698526 0 0.8968787 +0.6925839 0 0.8968787 +0.7143866 0 0.8968787 +0.7353569 0 0.8968787 +0.7555758 0 0.8968787 +0.7751122 0 0.8968787 +0.7940252 0 0.8968787 +0.8123661 0 0.8968787 +0.8301795 0 0.8968787 +0.8475045 0 0.8968787 +0.8643761 0 0.8968787 +0.880825 0 0.8968787 +0.8968787 0 0.8968787 +0.9125621 0 0.8968787 +0.9278974 0 0.8968787 +0.9429048 0 0.8968787 +0.9576028 0 0.8968787 +0.9720079 0 0.8968787 +0.9861357 0 0.8968787 +1 0 0.8968787 +0 0.1939468 0.8968787 +0.1939468 0.1939468 0.8968787 +0.2773041 0.1939468 0.8968787 +0.3384659 0.1939468 0.8968787 +0.3885728 0.1939468 0.8968787 +0.4317928 0.1939468 0.8968787 +0.470214 0.1939468 0.8968787 +0.5050551 0.1939468 0.8968787 +0.5370987 0.1939468 0.8968787 +0.5668815 0.1939468 0.8968787 +0.5947903 0.1939468 0.8968787 +0.6211144 0.1939468 0.8968787 +0.6460766 0.1939468 0.8968787 +0.6698526 0.1939468 0.8968787 +0.6925839 0.1939468 0.8968787 +0.7143866 0.1939468 0.8968787 +0.7353569 0.1939468 0.8968787 +0.7555758 0.1939468 0.8968787 +0.7751122 0.1939468 0.8968787 +0.7940252 0.1939468 0.8968787 +0.8123661 0.1939468 0.8968787 +0.8301795 0.1939468 0.8968787 +0.8475045 0.1939468 0.8968787 +0.8643761 0.1939468 0.8968787 +0.880825 0.1939468 0.8968787 +0.8968787 0.1939468 0.8968787 +0.9125621 0.1939468 0.8968787 +0.9278974 0.1939468 0.8968787 +0.9429048 0.1939468 0.8968787 +0.9576028 0.1939468 0.8968787 +0.9720079 0.1939468 0.8968787 +0.9861357 0.1939468 0.8968787 +1 0.1939468 0.8968787 +0 0.2773041 0.8968787 +0.1939468 0.2773041 0.8968787 +0.2773041 0.2773041 0.8968787 +0.3384659 0.2773041 0.8968787 +0.3885728 0.2773041 0.8968787 +0.4317928 0.2773041 0.8968787 +0.470214 0.2773041 0.8968787 +0.5050551 0.2773041 0.8968787 +0.5370987 0.2773041 0.8968787 +0.5668815 0.2773041 0.8968787 +0.5947903 0.2773041 0.8968787 +0.6211144 0.2773041 0.8968787 +0.6460766 0.2773041 0.8968787 +0.6698526 0.2773041 0.8968787 +0.6925839 0.2773041 0.8968787 +0.7143866 0.2773041 0.8968787 +0.7353569 0.2773041 0.8968787 +0.7555758 0.2773041 0.8968787 +0.7751122 0.2773041 0.8968787 +0.7940252 0.2773041 0.8968787 +0.8123661 0.2773041 0.8968787 +0.8301795 0.2773041 0.8968787 +0.8475045 0.2773041 0.8968787 +0.8643761 0.2773041 0.8968787 +0.880825 0.2773041 0.8968787 +0.8968787 0.2773041 0.8968787 +0.9125621 0.2773041 0.8968787 +0.9278974 0.2773041 0.8968787 +0.9429048 0.2773041 0.8968787 +0.9576028 0.2773041 0.8968787 +0.9720079 0.2773041 0.8968787 +0.9861357 0.2773041 0.8968787 +1 0.2773041 0.8968787 +0 0.3384659 0.8968787 +0.1939468 0.3384659 0.8968787 +0.2773041 0.3384659 0.8968787 +0.3384659 0.3384659 0.8968787 +0.3885728 0.3384659 0.8968787 +0.4317928 0.3384659 0.8968787 +0.470214 0.3384659 0.8968787 +0.5050551 0.3384659 0.8968787 +0.5370987 0.3384659 0.8968787 +0.5668815 0.3384659 0.8968787 +0.5947903 0.3384659 0.8968787 +0.6211144 0.3384659 0.8968787 +0.6460766 0.3384659 0.8968787 +0.6698526 0.3384659 0.8968787 +0.6925839 0.3384659 0.8968787 +0.7143866 0.3384659 0.8968787 +0.7353569 0.3384659 0.8968787 +0.7555758 0.3384659 0.8968787 +0.7751122 0.3384659 0.8968787 +0.7940252 0.3384659 0.8968787 +0.8123661 0.3384659 0.8968787 +0.8301795 0.3384659 0.8968787 +0.8475045 0.3384659 0.8968787 +0.8643761 0.3384659 0.8968787 +0.880825 0.3384659 0.8968787 +0.8968787 0.3384659 0.8968787 +0.9125621 0.3384659 0.8968787 +0.9278974 0.3384659 0.8968787 +0.9429048 0.3384659 0.8968787 +0.9576028 0.3384659 0.8968787 +0.9720079 0.3384659 0.8968787 +0.9861357 0.3384659 0.8968787 +1 0.3384659 0.8968787 +0 0.3885728 0.8968787 +0.1939468 0.3885728 0.8968787 +0.2773041 0.3885728 0.8968787 +0.3384659 0.3885728 0.8968787 +0.3885728 0.3885728 0.8968787 +0.4317928 0.3885728 0.8968787 +0.470214 0.3885728 0.8968787 +0.5050551 0.3885728 0.8968787 +0.5370987 0.3885728 0.8968787 +0.5668815 0.3885728 0.8968787 +0.5947903 0.3885728 0.8968787 +0.6211144 0.3885728 0.8968787 +0.6460766 0.3885728 0.8968787 +0.6698526 0.3885728 0.8968787 +0.6925839 0.3885728 0.8968787 +0.7143866 0.3885728 0.8968787 +0.7353569 0.3885728 0.8968787 +0.7555758 0.3885728 0.8968787 +0.7751122 0.3885728 0.8968787 +0.7940252 0.3885728 0.8968787 +0.8123661 0.3885728 0.8968787 +0.8301795 0.3885728 0.8968787 +0.8475045 0.3885728 0.8968787 +0.8643761 0.3885728 0.8968787 +0.880825 0.3885728 0.8968787 +0.8968787 0.3885728 0.8968787 +0.9125621 0.3885728 0.8968787 +0.9278974 0.3885728 0.8968787 +0.9429048 0.3885728 0.8968787 +0.9576028 0.3885728 0.8968787 +0.9720079 0.3885728 0.8968787 +0.9861357 0.3885728 0.8968787 +1 0.3885728 0.8968787 +0 0.4317928 0.8968787 +0.1939468 0.4317928 0.8968787 +0.2773041 0.4317928 0.8968787 +0.3384659 0.4317928 0.8968787 +0.3885728 0.4317928 0.8968787 +0.4317928 0.4317928 0.8968787 +0.470214 0.4317928 0.8968787 +0.5050551 0.4317928 0.8968787 +0.5370987 0.4317928 0.8968787 +0.5668815 0.4317928 0.8968787 +0.5947903 0.4317928 0.8968787 +0.6211144 0.4317928 0.8968787 +0.6460766 0.4317928 0.8968787 +0.6698526 0.4317928 0.8968787 +0.6925839 0.4317928 0.8968787 +0.7143866 0.4317928 0.8968787 +0.7353569 0.4317928 0.8968787 +0.7555758 0.4317928 0.8968787 +0.7751122 0.4317928 0.8968787 +0.7940252 0.4317928 0.8968787 +0.8123661 0.4317928 0.8968787 +0.8301795 0.4317928 0.8968787 +0.8475045 0.4317928 0.8968787 +0.8643761 0.4317928 0.8968787 +0.880825 0.4317928 0.8968787 +0.8968787 0.4317928 0.8968787 +0.9125621 0.4317928 0.8968787 +0.9278974 0.4317928 0.8968787 +0.9429048 0.4317928 0.8968787 +0.9576028 0.4317928 0.8968787 +0.9720079 0.4317928 0.8968787 +0.9861357 0.4317928 0.8968787 +1 0.4317928 0.8968787 +0 0.470214 0.8968787 +0.1939468 0.470214 0.8968787 +0.2773041 0.470214 0.8968787 +0.3384659 0.470214 0.8968787 +0.3885728 0.470214 0.8968787 +0.4317928 0.470214 0.8968787 +0.470214 0.470214 0.8968787 +0.5050551 0.470214 0.8968787 +0.5370987 0.470214 0.8968787 +0.5668815 0.470214 0.8968787 +0.5947903 0.470214 0.8968787 +0.6211144 0.470214 0.8968787 +0.6460766 0.470214 0.8968787 +0.6698526 0.470214 0.8968787 +0.6925839 0.470214 0.8968787 +0.7143866 0.470214 0.8968787 +0.7353569 0.470214 0.8968787 +0.7555758 0.470214 0.8968787 +0.7751122 0.470214 0.8968787 +0.7940252 0.470214 0.8968787 +0.8123661 0.470214 0.8968787 +0.8301795 0.470214 0.8968787 +0.8475045 0.470214 0.8968787 +0.8643761 0.470214 0.8968787 +0.880825 0.470214 0.8968787 +0.8968787 0.470214 0.8968787 +0.9125621 0.470214 0.8968787 +0.9278974 0.470214 0.8968787 +0.9429048 0.470214 0.8968787 +0.9576028 0.470214 0.8968787 +0.9720079 0.470214 0.8968787 +0.9861357 0.470214 0.8968787 +1 0.470214 0.8968787 +0 0.5050551 0.8968787 +0.1939468 0.5050551 0.8968787 +0.2773041 0.5050551 0.8968787 +0.3384659 0.5050551 0.8968787 +0.3885728 0.5050551 0.8968787 +0.4317928 0.5050551 0.8968787 +0.470214 0.5050551 0.8968787 +0.5050551 0.5050551 0.8968787 +0.5370987 0.5050551 0.8968787 +0.5668815 0.5050551 0.8968787 +0.5947903 0.5050551 0.8968787 +0.6211144 0.5050551 0.8968787 +0.6460766 0.5050551 0.8968787 +0.6698526 0.5050551 0.8968787 +0.6925839 0.5050551 0.8968787 +0.7143866 0.5050551 0.8968787 +0.7353569 0.5050551 0.8968787 +0.7555758 0.5050551 0.8968787 +0.7751122 0.5050551 0.8968787 +0.7940252 0.5050551 0.8968787 +0.8123661 0.5050551 0.8968787 +0.8301795 0.5050551 0.8968787 +0.8475045 0.5050551 0.8968787 +0.8643761 0.5050551 0.8968787 +0.880825 0.5050551 0.8968787 +0.8968787 0.5050551 0.8968787 +0.9125621 0.5050551 0.8968787 +0.9278974 0.5050551 0.8968787 +0.9429048 0.5050551 0.8968787 +0.9576028 0.5050551 0.8968787 +0.9720079 0.5050551 0.8968787 +0.9861357 0.5050551 0.8968787 +1 0.5050551 0.8968787 +0 0.5370987 0.8968787 +0.1939468 0.5370987 0.8968787 +0.2773041 0.5370987 0.8968787 +0.3384659 0.5370987 0.8968787 +0.3885728 0.5370987 0.8968787 +0.4317928 0.5370987 0.8968787 +0.470214 0.5370987 0.8968787 +0.5050551 0.5370987 0.8968787 +0.5370987 0.5370987 0.8968787 +0.5668815 0.5370987 0.8968787 +0.5947903 0.5370987 0.8968787 +0.6211144 0.5370987 0.8968787 +0.6460766 0.5370987 0.8968787 +0.6698526 0.5370987 0.8968787 +0.6925839 0.5370987 0.8968787 +0.7143866 0.5370987 0.8968787 +0.7353569 0.5370987 0.8968787 +0.7555758 0.5370987 0.8968787 +0.7751122 0.5370987 0.8968787 +0.7940252 0.5370987 0.8968787 +0.8123661 0.5370987 0.8968787 +0.8301795 0.5370987 0.8968787 +0.8475045 0.5370987 0.8968787 +0.8643761 0.5370987 0.8968787 +0.880825 0.5370987 0.8968787 +0.8968787 0.5370987 0.8968787 +0.9125621 0.5370987 0.8968787 +0.9278974 0.5370987 0.8968787 +0.9429048 0.5370987 0.8968787 +0.9576028 0.5370987 0.8968787 +0.9720079 0.5370987 0.8968787 +0.9861357 0.5370987 0.8968787 +1 0.5370987 0.8968787 +0 0.5668815 0.8968787 +0.1939468 0.5668815 0.8968787 +0.2773041 0.5668815 0.8968787 +0.3384659 0.5668815 0.8968787 +0.3885728 0.5668815 0.8968787 +0.4317928 0.5668815 0.8968787 +0.470214 0.5668815 0.8968787 +0.5050551 0.5668815 0.8968787 +0.5370987 0.5668815 0.8968787 +0.5668815 0.5668815 0.8968787 +0.5947903 0.5668815 0.8968787 +0.6211144 0.5668815 0.8968787 +0.6460766 0.5668815 0.8968787 +0.6698526 0.5668815 0.8968787 +0.6925839 0.5668815 0.8968787 +0.7143866 0.5668815 0.8968787 +0.7353569 0.5668815 0.8968787 +0.7555758 0.5668815 0.8968787 +0.7751122 0.5668815 0.8968787 +0.7940252 0.5668815 0.8968787 +0.8123661 0.5668815 0.8968787 +0.8301795 0.5668815 0.8968787 +0.8475045 0.5668815 0.8968787 +0.8643761 0.5668815 0.8968787 +0.880825 0.5668815 0.8968787 +0.8968787 0.5668815 0.8968787 +0.9125621 0.5668815 0.8968787 +0.9278974 0.5668815 0.8968787 +0.9429048 0.5668815 0.8968787 +0.9576028 0.5668815 0.8968787 +0.9720079 0.5668815 0.8968787 +0.9861357 0.5668815 0.8968787 +1 0.5668815 0.8968787 +0 0.5947903 0.8968787 +0.1939468 0.5947903 0.8968787 +0.2773041 0.5947903 0.8968787 +0.3384659 0.5947903 0.8968787 +0.3885728 0.5947903 0.8968787 +0.4317928 0.5947903 0.8968787 +0.470214 0.5947903 0.8968787 +0.5050551 0.5947903 0.8968787 +0.5370987 0.5947903 0.8968787 +0.5668815 0.5947903 0.8968787 +0.5947903 0.5947903 0.8968787 +0.6211144 0.5947903 0.8968787 +0.6460766 0.5947903 0.8968787 +0.6698526 0.5947903 0.8968787 +0.6925839 0.5947903 0.8968787 +0.7143866 0.5947903 0.8968787 +0.7353569 0.5947903 0.8968787 +0.7555758 0.5947903 0.8968787 +0.7751122 0.5947903 0.8968787 +0.7940252 0.5947903 0.8968787 +0.8123661 0.5947903 0.8968787 +0.8301795 0.5947903 0.8968787 +0.8475045 0.5947903 0.8968787 +0.8643761 0.5947903 0.8968787 +0.880825 0.5947903 0.8968787 +0.8968787 0.5947903 0.8968787 +0.9125621 0.5947903 0.8968787 +0.9278974 0.5947903 0.8968787 +0.9429048 0.5947903 0.8968787 +0.9576028 0.5947903 0.8968787 +0.9720079 0.5947903 0.8968787 +0.9861357 0.5947903 0.8968787 +1 0.5947903 0.8968787 +0 0.6211144 0.8968787 +0.1939468 0.6211144 0.8968787 +0.2773041 0.6211144 0.8968787 +0.3384659 0.6211144 0.8968787 +0.3885728 0.6211144 0.8968787 +0.4317928 0.6211144 0.8968787 +0.470214 0.6211144 0.8968787 +0.5050551 0.6211144 0.8968787 +0.5370987 0.6211144 0.8968787 +0.5668815 0.6211144 0.8968787 +0.5947903 0.6211144 0.8968787 +0.6211144 0.6211144 0.8968787 +0.6460766 0.6211144 0.8968787 +0.6698526 0.6211144 0.8968787 +0.6925839 0.6211144 0.8968787 +0.7143866 0.6211144 0.8968787 +0.7353569 0.6211144 0.8968787 +0.7555758 0.6211144 0.8968787 +0.7751122 0.6211144 0.8968787 +0.7940252 0.6211144 0.8968787 +0.8123661 0.6211144 0.8968787 +0.8301795 0.6211144 0.8968787 +0.8475045 0.6211144 0.8968787 +0.8643761 0.6211144 0.8968787 +0.880825 0.6211144 0.8968787 +0.8968787 0.6211144 0.8968787 +0.9125621 0.6211144 0.8968787 +0.9278974 0.6211144 0.8968787 +0.9429048 0.6211144 0.8968787 +0.9576028 0.6211144 0.8968787 +0.9720079 0.6211144 0.8968787 +0.9861357 0.6211144 0.8968787 +1 0.6211144 0.8968787 +0 0.6460766 0.8968787 +0.1939468 0.6460766 0.8968787 +0.2773041 0.6460766 0.8968787 +0.3384659 0.6460766 0.8968787 +0.3885728 0.6460766 0.8968787 +0.4317928 0.6460766 0.8968787 +0.470214 0.6460766 0.8968787 +0.5050551 0.6460766 0.8968787 +0.5370987 0.6460766 0.8968787 +0.5668815 0.6460766 0.8968787 +0.5947903 0.6460766 0.8968787 +0.6211144 0.6460766 0.8968787 +0.6460766 0.6460766 0.8968787 +0.6698526 0.6460766 0.8968787 +0.6925839 0.6460766 0.8968787 +0.7143866 0.6460766 0.8968787 +0.7353569 0.6460766 0.8968787 +0.7555758 0.6460766 0.8968787 +0.7751122 0.6460766 0.8968787 +0.7940252 0.6460766 0.8968787 +0.8123661 0.6460766 0.8968787 +0.8301795 0.6460766 0.8968787 +0.8475045 0.6460766 0.8968787 +0.8643761 0.6460766 0.8968787 +0.880825 0.6460766 0.8968787 +0.8968787 0.6460766 0.8968787 +0.9125621 0.6460766 0.8968787 +0.9278974 0.6460766 0.8968787 +0.9429048 0.6460766 0.8968787 +0.9576028 0.6460766 0.8968787 +0.9720079 0.6460766 0.8968787 +0.9861357 0.6460766 0.8968787 +1 0.6460766 0.8968787 +0 0.6698526 0.8968787 +0.1939468 0.6698526 0.8968787 +0.2773041 0.6698526 0.8968787 +0.3384659 0.6698526 0.8968787 +0.3885728 0.6698526 0.8968787 +0.4317928 0.6698526 0.8968787 +0.470214 0.6698526 0.8968787 +0.5050551 0.6698526 0.8968787 +0.5370987 0.6698526 0.8968787 +0.5668815 0.6698526 0.8968787 +0.5947903 0.6698526 0.8968787 +0.6211144 0.6698526 0.8968787 +0.6460766 0.6698526 0.8968787 +0.6698526 0.6698526 0.8968787 +0.6925839 0.6698526 0.8968787 +0.7143866 0.6698526 0.8968787 +0.7353569 0.6698526 0.8968787 +0.7555758 0.6698526 0.8968787 +0.7751122 0.6698526 0.8968787 +0.7940252 0.6698526 0.8968787 +0.8123661 0.6698526 0.8968787 +0.8301795 0.6698526 0.8968787 +0.8475045 0.6698526 0.8968787 +0.8643761 0.6698526 0.8968787 +0.880825 0.6698526 0.8968787 +0.8968787 0.6698526 0.8968787 +0.9125621 0.6698526 0.8968787 +0.9278974 0.6698526 0.8968787 +0.9429048 0.6698526 0.8968787 +0.9576028 0.6698526 0.8968787 +0.9720079 0.6698526 0.8968787 +0.9861357 0.6698526 0.8968787 +1 0.6698526 0.8968787 +0 0.6925839 0.8968787 +0.1939468 0.6925839 0.8968787 +0.2773041 0.6925839 0.8968787 +0.3384659 0.6925839 0.8968787 +0.3885728 0.6925839 0.8968787 +0.4317928 0.6925839 0.8968787 +0.470214 0.6925839 0.8968787 +0.5050551 0.6925839 0.8968787 +0.5370987 0.6925839 0.8968787 +0.5668815 0.6925839 0.8968787 +0.5947903 0.6925839 0.8968787 +0.6211144 0.6925839 0.8968787 +0.6460766 0.6925839 0.8968787 +0.6698526 0.6925839 0.8968787 +0.6925839 0.6925839 0.8968787 +0.7143866 0.6925839 0.8968787 +0.7353569 0.6925839 0.8968787 +0.7555758 0.6925839 0.8968787 +0.7751122 0.6925839 0.8968787 +0.7940252 0.6925839 0.8968787 +0.8123661 0.6925839 0.8968787 +0.8301795 0.6925839 0.8968787 +0.8475045 0.6925839 0.8968787 +0.8643761 0.6925839 0.8968787 +0.880825 0.6925839 0.8968787 +0.8968787 0.6925839 0.8968787 +0.9125621 0.6925839 0.8968787 +0.9278974 0.6925839 0.8968787 +0.9429048 0.6925839 0.8968787 +0.9576028 0.6925839 0.8968787 +0.9720079 0.6925839 0.8968787 +0.9861357 0.6925839 0.8968787 +1 0.6925839 0.8968787 +0 0.7143866 0.8968787 +0.1939468 0.7143866 0.8968787 +0.2773041 0.7143866 0.8968787 +0.3384659 0.7143866 0.8968787 +0.3885728 0.7143866 0.8968787 +0.4317928 0.7143866 0.8968787 +0.470214 0.7143866 0.8968787 +0.5050551 0.7143866 0.8968787 +0.5370987 0.7143866 0.8968787 +0.5668815 0.7143866 0.8968787 +0.5947903 0.7143866 0.8968787 +0.6211144 0.7143866 0.8968787 +0.6460766 0.7143866 0.8968787 +0.6698526 0.7143866 0.8968787 +0.6925839 0.7143866 0.8968787 +0.7143866 0.7143866 0.8968787 +0.7353569 0.7143866 0.8968787 +0.7555758 0.7143866 0.8968787 +0.7751122 0.7143866 0.8968787 +0.7940252 0.7143866 0.8968787 +0.8123661 0.7143866 0.8968787 +0.8301795 0.7143866 0.8968787 +0.8475045 0.7143866 0.8968787 +0.8643761 0.7143866 0.8968787 +0.880825 0.7143866 0.8968787 +0.8968787 0.7143866 0.8968787 +0.9125621 0.7143866 0.8968787 +0.9278974 0.7143866 0.8968787 +0.9429048 0.7143866 0.8968787 +0.9576028 0.7143866 0.8968787 +0.9720079 0.7143866 0.8968787 +0.9861357 0.7143866 0.8968787 +1 0.7143866 0.8968787 +0 0.7353569 0.8968787 +0.1939468 0.7353569 0.8968787 +0.2773041 0.7353569 0.8968787 +0.3384659 0.7353569 0.8968787 +0.3885728 0.7353569 0.8968787 +0.4317928 0.7353569 0.8968787 +0.470214 0.7353569 0.8968787 +0.5050551 0.7353569 0.8968787 +0.5370987 0.7353569 0.8968787 +0.5668815 0.7353569 0.8968787 +0.5947903 0.7353569 0.8968787 +0.6211144 0.7353569 0.8968787 +0.6460766 0.7353569 0.8968787 +0.6698526 0.7353569 0.8968787 +0.6925839 0.7353569 0.8968787 +0.7143866 0.7353569 0.8968787 +0.7353569 0.7353569 0.8968787 +0.7555758 0.7353569 0.8968787 +0.7751122 0.7353569 0.8968787 +0.7940252 0.7353569 0.8968787 +0.8123661 0.7353569 0.8968787 +0.8301795 0.7353569 0.8968787 +0.8475045 0.7353569 0.8968787 +0.8643761 0.7353569 0.8968787 +0.880825 0.7353569 0.8968787 +0.8968787 0.7353569 0.8968787 +0.9125621 0.7353569 0.8968787 +0.9278974 0.7353569 0.8968787 +0.9429048 0.7353569 0.8968787 +0.9576028 0.7353569 0.8968787 +0.9720079 0.7353569 0.8968787 +0.9861357 0.7353569 0.8968787 +1 0.7353569 0.8968787 +0 0.7555758 0.8968787 +0.1939468 0.7555758 0.8968787 +0.2773041 0.7555758 0.8968787 +0.3384659 0.7555758 0.8968787 +0.3885728 0.7555758 0.8968787 +0.4317928 0.7555758 0.8968787 +0.470214 0.7555758 0.8968787 +0.5050551 0.7555758 0.8968787 +0.5370987 0.7555758 0.8968787 +0.5668815 0.7555758 0.8968787 +0.5947903 0.7555758 0.8968787 +0.6211144 0.7555758 0.8968787 +0.6460766 0.7555758 0.8968787 +0.6698526 0.7555758 0.8968787 +0.6925839 0.7555758 0.8968787 +0.7143866 0.7555758 0.8968787 +0.7353569 0.7555758 0.8968787 +0.7555758 0.7555758 0.8968787 +0.7751122 0.7555758 0.8968787 +0.7940252 0.7555758 0.8968787 +0.8123661 0.7555758 0.8968787 +0.8301795 0.7555758 0.8968787 +0.8475045 0.7555758 0.8968787 +0.8643761 0.7555758 0.8968787 +0.880825 0.7555758 0.8968787 +0.8968787 0.7555758 0.8968787 +0.9125621 0.7555758 0.8968787 +0.9278974 0.7555758 0.8968787 +0.9429048 0.7555758 0.8968787 +0.9576028 0.7555758 0.8968787 +0.9720079 0.7555758 0.8968787 +0.9861357 0.7555758 0.8968787 +1 0.7555758 0.8968787 +0 0.7751122 0.8968787 +0.1939468 0.7751122 0.8968787 +0.2773041 0.7751122 0.8968787 +0.3384659 0.7751122 0.8968787 +0.3885728 0.7751122 0.8968787 +0.4317928 0.7751122 0.8968787 +0.470214 0.7751122 0.8968787 +0.5050551 0.7751122 0.8968787 +0.5370987 0.7751122 0.8968787 +0.5668815 0.7751122 0.8968787 +0.5947903 0.7751122 0.8968787 +0.6211144 0.7751122 0.8968787 +0.6460766 0.7751122 0.8968787 +0.6698526 0.7751122 0.8968787 +0.6925839 0.7751122 0.8968787 +0.7143866 0.7751122 0.8968787 +0.7353569 0.7751122 0.8968787 +0.7555758 0.7751122 0.8968787 +0.7751122 0.7751122 0.8968787 +0.7940252 0.7751122 0.8968787 +0.8123661 0.7751122 0.8968787 +0.8301795 0.7751122 0.8968787 +0.8475045 0.7751122 0.8968787 +0.8643761 0.7751122 0.8968787 +0.880825 0.7751122 0.8968787 +0.8968787 0.7751122 0.8968787 +0.9125621 0.7751122 0.8968787 +0.9278974 0.7751122 0.8968787 +0.9429048 0.7751122 0.8968787 +0.9576028 0.7751122 0.8968787 +0.9720079 0.7751122 0.8968787 +0.9861357 0.7751122 0.8968787 +1 0.7751122 0.8968787 +0 0.7940252 0.8968787 +0.1939468 0.7940252 0.8968787 +0.2773041 0.7940252 0.8968787 +0.3384659 0.7940252 0.8968787 +0.3885728 0.7940252 0.8968787 +0.4317928 0.7940252 0.8968787 +0.470214 0.7940252 0.8968787 +0.5050551 0.7940252 0.8968787 +0.5370987 0.7940252 0.8968787 +0.5668815 0.7940252 0.8968787 +0.5947903 0.7940252 0.8968787 +0.6211144 0.7940252 0.8968787 +0.6460766 0.7940252 0.8968787 +0.6698526 0.7940252 0.8968787 +0.6925839 0.7940252 0.8968787 +0.7143866 0.7940252 0.8968787 +0.7353569 0.7940252 0.8968787 +0.7555758 0.7940252 0.8968787 +0.7751122 0.7940252 0.8968787 +0.7940252 0.7940252 0.8968787 +0.8123661 0.7940252 0.8968787 +0.8301795 0.7940252 0.8968787 +0.8475045 0.7940252 0.8968787 +0.8643761 0.7940252 0.8968787 +0.880825 0.7940252 0.8968787 +0.8968787 0.7940252 0.8968787 +0.9125621 0.7940252 0.8968787 +0.9278974 0.7940252 0.8968787 +0.9429048 0.7940252 0.8968787 +0.9576028 0.7940252 0.8968787 +0.9720079 0.7940252 0.8968787 +0.9861357 0.7940252 0.8968787 +1 0.7940252 0.8968787 +0 0.8123661 0.8968787 +0.1939468 0.8123661 0.8968787 +0.2773041 0.8123661 0.8968787 +0.3384659 0.8123661 0.8968787 +0.3885728 0.8123661 0.8968787 +0.4317928 0.8123661 0.8968787 +0.470214 0.8123661 0.8968787 +0.5050551 0.8123661 0.8968787 +0.5370987 0.8123661 0.8968787 +0.5668815 0.8123661 0.8968787 +0.5947903 0.8123661 0.8968787 +0.6211144 0.8123661 0.8968787 +0.6460766 0.8123661 0.8968787 +0.6698526 0.8123661 0.8968787 +0.6925839 0.8123661 0.8968787 +0.7143866 0.8123661 0.8968787 +0.7353569 0.8123661 0.8968787 +0.7555758 0.8123661 0.8968787 +0.7751122 0.8123661 0.8968787 +0.7940252 0.8123661 0.8968787 +0.8123661 0.8123661 0.8968787 +0.8301795 0.8123661 0.8968787 +0.8475045 0.8123661 0.8968787 +0.8643761 0.8123661 0.8968787 +0.880825 0.8123661 0.8968787 +0.8968787 0.8123661 0.8968787 +0.9125621 0.8123661 0.8968787 +0.9278974 0.8123661 0.8968787 +0.9429048 0.8123661 0.8968787 +0.9576028 0.8123661 0.8968787 +0.9720079 0.8123661 0.8968787 +0.9861357 0.8123661 0.8968787 +1 0.8123661 0.8968787 +0 0.8301795 0.8968787 +0.1939468 0.8301795 0.8968787 +0.2773041 0.8301795 0.8968787 +0.3384659 0.8301795 0.8968787 +0.3885728 0.8301795 0.8968787 +0.4317928 0.8301795 0.8968787 +0.470214 0.8301795 0.8968787 +0.5050551 0.8301795 0.8968787 +0.5370987 0.8301795 0.8968787 +0.5668815 0.8301795 0.8968787 +0.5947903 0.8301795 0.8968787 +0.6211144 0.8301795 0.8968787 +0.6460766 0.8301795 0.8968787 +0.6698526 0.8301795 0.8968787 +0.6925839 0.8301795 0.8968787 +0.7143866 0.8301795 0.8968787 +0.7353569 0.8301795 0.8968787 +0.7555758 0.8301795 0.8968787 +0.7751122 0.8301795 0.8968787 +0.7940252 0.8301795 0.8968787 +0.8123661 0.8301795 0.8968787 +0.8301795 0.8301795 0.8968787 +0.8475045 0.8301795 0.8968787 +0.8643761 0.8301795 0.8968787 +0.880825 0.8301795 0.8968787 +0.8968787 0.8301795 0.8968787 +0.9125621 0.8301795 0.8968787 +0.9278974 0.8301795 0.8968787 +0.9429048 0.8301795 0.8968787 +0.9576028 0.8301795 0.8968787 +0.9720079 0.8301795 0.8968787 +0.9861357 0.8301795 0.8968787 +1 0.8301795 0.8968787 +0 0.8475045 0.8968787 +0.1939468 0.8475045 0.8968787 +0.2773041 0.8475045 0.8968787 +0.3384659 0.8475045 0.8968787 +0.3885728 0.8475045 0.8968787 +0.4317928 0.8475045 0.8968787 +0.470214 0.8475045 0.8968787 +0.5050551 0.8475045 0.8968787 +0.5370987 0.8475045 0.8968787 +0.5668815 0.8475045 0.8968787 +0.5947903 0.8475045 0.8968787 +0.6211144 0.8475045 0.8968787 +0.6460766 0.8475045 0.8968787 +0.6698526 0.8475045 0.8968787 +0.6925839 0.8475045 0.8968787 +0.7143866 0.8475045 0.8968787 +0.7353569 0.8475045 0.8968787 +0.7555758 0.8475045 0.8968787 +0.7751122 0.8475045 0.8968787 +0.7940252 0.8475045 0.8968787 +0.8123661 0.8475045 0.8968787 +0.8301795 0.8475045 0.8968787 +0.8475045 0.8475045 0.8968787 +0.8643761 0.8475045 0.8968787 +0.880825 0.8475045 0.8968787 +0.8968787 0.8475045 0.8968787 +0.9125621 0.8475045 0.8968787 +0.9278974 0.8475045 0.8968787 +0.9429048 0.8475045 0.8968787 +0.9576028 0.8475045 0.8968787 +0.9720079 0.8475045 0.8968787 +0.9861357 0.8475045 0.8968787 +1 0.8475045 0.8968787 +0 0.8643761 0.8968787 +0.1939468 0.8643761 0.8968787 +0.2773041 0.8643761 0.8968787 +0.3384659 0.8643761 0.8968787 +0.3885728 0.8643761 0.8968787 +0.4317928 0.8643761 0.8968787 +0.470214 0.8643761 0.8968787 +0.5050551 0.8643761 0.8968787 +0.5370987 0.8643761 0.8968787 +0.5668815 0.8643761 0.8968787 +0.5947903 0.8643761 0.8968787 +0.6211144 0.8643761 0.8968787 +0.6460766 0.8643761 0.8968787 +0.6698526 0.8643761 0.8968787 +0.6925839 0.8643761 0.8968787 +0.7143866 0.8643761 0.8968787 +0.7353569 0.8643761 0.8968787 +0.7555758 0.8643761 0.8968787 +0.7751122 0.8643761 0.8968787 +0.7940252 0.8643761 0.8968787 +0.8123661 0.8643761 0.8968787 +0.8301795 0.8643761 0.8968787 +0.8475045 0.8643761 0.8968787 +0.8643761 0.8643761 0.8968787 +0.880825 0.8643761 0.8968787 +0.8968787 0.8643761 0.8968787 +0.9125621 0.8643761 0.8968787 +0.9278974 0.8643761 0.8968787 +0.9429048 0.8643761 0.8968787 +0.9576028 0.8643761 0.8968787 +0.9720079 0.8643761 0.8968787 +0.9861357 0.8643761 0.8968787 +1 0.8643761 0.8968787 +0 0.880825 0.8968787 +0.1939468 0.880825 0.8968787 +0.2773041 0.880825 0.8968787 +0.3384659 0.880825 0.8968787 +0.3885728 0.880825 0.8968787 +0.4317928 0.880825 0.8968787 +0.470214 0.880825 0.8968787 +0.5050551 0.880825 0.8968787 +0.5370987 0.880825 0.8968787 +0.5668815 0.880825 0.8968787 +0.5947903 0.880825 0.8968787 +0.6211144 0.880825 0.8968787 +0.6460766 0.880825 0.8968787 +0.6698526 0.880825 0.8968787 +0.6925839 0.880825 0.8968787 +0.7143866 0.880825 0.8968787 +0.7353569 0.880825 0.8968787 +0.7555758 0.880825 0.8968787 +0.7751122 0.880825 0.8968787 +0.7940252 0.880825 0.8968787 +0.8123661 0.880825 0.8968787 +0.8301795 0.880825 0.8968787 +0.8475045 0.880825 0.8968787 +0.8643761 0.880825 0.8968787 +0.880825 0.880825 0.8968787 +0.8968787 0.880825 0.8968787 +0.9125621 0.880825 0.8968787 +0.9278974 0.880825 0.8968787 +0.9429048 0.880825 0.8968787 +0.9576028 0.880825 0.8968787 +0.9720079 0.880825 0.8968787 +0.9861357 0.880825 0.8968787 +1 0.880825 0.8968787 +0 0.8968787 0.8968787 +0.1939468 0.8968787 0.8968787 +0.2773041 0.8968787 0.8968787 +0.3384659 0.8968787 0.8968787 +0.3885728 0.8968787 0.8968787 +0.4317928 0.8968787 0.8968787 +0.470214 0.8968787 0.8968787 +0.5050551 0.8968787 0.8968787 +0.5370987 0.8968787 0.8968787 +0.5668815 0.8968787 0.8968787 +0.5947903 0.8968787 0.8968787 +0.6211144 0.8968787 0.8968787 +0.6460766 0.8968787 0.8968787 +0.6698526 0.8968787 0.8968787 +0.6925839 0.8968787 0.8968787 +0.7143866 0.8968787 0.8968787 +0.7353569 0.8968787 0.8968787 +0.7555758 0.8968787 0.8968787 +0.7751122 0.8968787 0.8968787 +0.7940252 0.8968787 0.8968787 +0.8123661 0.8968787 0.8968787 +0.8301795 0.8968787 0.8968787 +0.8475045 0.8968787 0.8968787 +0.8643761 0.8968787 0.8968787 +0.880825 0.8968787 0.8968787 +0.8968787 0.8968787 0.8968787 +0.9125621 0.8968787 0.8968787 +0.9278974 0.8968787 0.8968787 +0.9429048 0.8968787 0.8968787 +0.9576028 0.8968787 0.8968787 +0.9720079 0.8968787 0.8968787 +0.9861357 0.8968787 0.8968787 +1 0.8968787 0.8968787 +0 0.9125621 0.8968787 +0.1939468 0.9125621 0.8968787 +0.2773041 0.9125621 0.8968787 +0.3384659 0.9125621 0.8968787 +0.3885728 0.9125621 0.8968787 +0.4317928 0.9125621 0.8968787 +0.470214 0.9125621 0.8968787 +0.5050551 0.9125621 0.8968787 +0.5370987 0.9125621 0.8968787 +0.5668815 0.9125621 0.8968787 +0.5947903 0.9125621 0.8968787 +0.6211144 0.9125621 0.8968787 +0.6460766 0.9125621 0.8968787 +0.6698526 0.9125621 0.8968787 +0.6925839 0.9125621 0.8968787 +0.7143866 0.9125621 0.8968787 +0.7353569 0.9125621 0.8968787 +0.7555758 0.9125621 0.8968787 +0.7751122 0.9125621 0.8968787 +0.7940252 0.9125621 0.8968787 +0.8123661 0.9125621 0.8968787 +0.8301795 0.9125621 0.8968787 +0.8475045 0.9125621 0.8968787 +0.8643761 0.9125621 0.8968787 +0.880825 0.9125621 0.8968787 +0.8968787 0.9125621 0.8968787 +0.9125621 0.9125621 0.8968787 +0.9278974 0.9125621 0.8968787 +0.9429048 0.9125621 0.8968787 +0.9576028 0.9125621 0.8968787 +0.9720079 0.9125621 0.8968787 +0.9861357 0.9125621 0.8968787 +1 0.9125621 0.8968787 +0 0.9278974 0.8968787 +0.1939468 0.9278974 0.8968787 +0.2773041 0.9278974 0.8968787 +0.3384659 0.9278974 0.8968787 +0.3885728 0.9278974 0.8968787 +0.4317928 0.9278974 0.8968787 +0.470214 0.9278974 0.8968787 +0.5050551 0.9278974 0.8968787 +0.5370987 0.9278974 0.8968787 +0.5668815 0.9278974 0.8968787 +0.5947903 0.9278974 0.8968787 +0.6211144 0.9278974 0.8968787 +0.6460766 0.9278974 0.8968787 +0.6698526 0.9278974 0.8968787 +0.6925839 0.9278974 0.8968787 +0.7143866 0.9278974 0.8968787 +0.7353569 0.9278974 0.8968787 +0.7555758 0.9278974 0.8968787 +0.7751122 0.9278974 0.8968787 +0.7940252 0.9278974 0.8968787 +0.8123661 0.9278974 0.8968787 +0.8301795 0.9278974 0.8968787 +0.8475045 0.9278974 0.8968787 +0.8643761 0.9278974 0.8968787 +0.880825 0.9278974 0.8968787 +0.8968787 0.9278974 0.8968787 +0.9125621 0.9278974 0.8968787 +0.9278974 0.9278974 0.8968787 +0.9429048 0.9278974 0.8968787 +0.9576028 0.9278974 0.8968787 +0.9720079 0.9278974 0.8968787 +0.9861357 0.9278974 0.8968787 +1 0.9278974 0.8968787 +0 0.9429048 0.8968787 +0.1939468 0.9429048 0.8968787 +0.2773041 0.9429048 0.8968787 +0.3384659 0.9429048 0.8968787 +0.3885728 0.9429048 0.8968787 +0.4317928 0.9429048 0.8968787 +0.470214 0.9429048 0.8968787 +0.5050551 0.9429048 0.8968787 +0.5370987 0.9429048 0.8968787 +0.5668815 0.9429048 0.8968787 +0.5947903 0.9429048 0.8968787 +0.6211144 0.9429048 0.8968787 +0.6460766 0.9429048 0.8968787 +0.6698526 0.9429048 0.8968787 +0.6925839 0.9429048 0.8968787 +0.7143866 0.9429048 0.8968787 +0.7353569 0.9429048 0.8968787 +0.7555758 0.9429048 0.8968787 +0.7751122 0.9429048 0.8968787 +0.7940252 0.9429048 0.8968787 +0.8123661 0.9429048 0.8968787 +0.8301795 0.9429048 0.8968787 +0.8475045 0.9429048 0.8968787 +0.8643761 0.9429048 0.8968787 +0.880825 0.9429048 0.8968787 +0.8968787 0.9429048 0.8968787 +0.9125621 0.9429048 0.8968787 +0.9278974 0.9429048 0.8968787 +0.9429048 0.9429048 0.8968787 +0.9576028 0.9429048 0.8968787 +0.9720079 0.9429048 0.8968787 +0.9861357 0.9429048 0.8968787 +1 0.9429048 0.8968787 +0 0.9576028 0.8968787 +0.1939468 0.9576028 0.8968787 +0.2773041 0.9576028 0.8968787 +0.3384659 0.9576028 0.8968787 +0.3885728 0.9576028 0.8968787 +0.4317928 0.9576028 0.8968787 +0.470214 0.9576028 0.8968787 +0.5050551 0.9576028 0.8968787 +0.5370987 0.9576028 0.8968787 +0.5668815 0.9576028 0.8968787 +0.5947903 0.9576028 0.8968787 +0.6211144 0.9576028 0.8968787 +0.6460766 0.9576028 0.8968787 +0.6698526 0.9576028 0.8968787 +0.6925839 0.9576028 0.8968787 +0.7143866 0.9576028 0.8968787 +0.7353569 0.9576028 0.8968787 +0.7555758 0.9576028 0.8968787 +0.7751122 0.9576028 0.8968787 +0.7940252 0.9576028 0.8968787 +0.8123661 0.9576028 0.8968787 +0.8301795 0.9576028 0.8968787 +0.8475045 0.9576028 0.8968787 +0.8643761 0.9576028 0.8968787 +0.880825 0.9576028 0.8968787 +0.8968787 0.9576028 0.8968787 +0.9125621 0.9576028 0.8968787 +0.9278974 0.9576028 0.8968787 +0.9429048 0.9576028 0.8968787 +0.9576028 0.9576028 0.8968787 +0.9720079 0.9576028 0.8968787 +0.9861357 0.9576028 0.8968787 +1 0.9576028 0.8968787 +0 0.9720079 0.8968787 +0.1939468 0.9720079 0.8968787 +0.2773041 0.9720079 0.8968787 +0.3384659 0.9720079 0.8968787 +0.3885728 0.9720079 0.8968787 +0.4317928 0.9720079 0.8968787 +0.470214 0.9720079 0.8968787 +0.5050551 0.9720079 0.8968787 +0.5370987 0.9720079 0.8968787 +0.5668815 0.9720079 0.8968787 +0.5947903 0.9720079 0.8968787 +0.6211144 0.9720079 0.8968787 +0.6460766 0.9720079 0.8968787 +0.6698526 0.9720079 0.8968787 +0.6925839 0.9720079 0.8968787 +0.7143866 0.9720079 0.8968787 +0.7353569 0.9720079 0.8968787 +0.7555758 0.9720079 0.8968787 +0.7751122 0.9720079 0.8968787 +0.7940252 0.9720079 0.8968787 +0.8123661 0.9720079 0.8968787 +0.8301795 0.9720079 0.8968787 +0.8475045 0.9720079 0.8968787 +0.8643761 0.9720079 0.8968787 +0.880825 0.9720079 0.8968787 +0.8968787 0.9720079 0.8968787 +0.9125621 0.9720079 0.8968787 +0.9278974 0.9720079 0.8968787 +0.9429048 0.9720079 0.8968787 +0.9576028 0.9720079 0.8968787 +0.9720079 0.9720079 0.8968787 +0.9861357 0.9720079 0.8968787 +1 0.9720079 0.8968787 +0 0.9861357 0.8968787 +0.1939468 0.9861357 0.8968787 +0.2773041 0.9861357 0.8968787 +0.3384659 0.9861357 0.8968787 +0.3885728 0.9861357 0.8968787 +0.4317928 0.9861357 0.8968787 +0.470214 0.9861357 0.8968787 +0.5050551 0.9861357 0.8968787 +0.5370987 0.9861357 0.8968787 +0.5668815 0.9861357 0.8968787 +0.5947903 0.9861357 0.8968787 +0.6211144 0.9861357 0.8968787 +0.6460766 0.9861357 0.8968787 +0.6698526 0.9861357 0.8968787 +0.6925839 0.9861357 0.8968787 +0.7143866 0.9861357 0.8968787 +0.7353569 0.9861357 0.8968787 +0.7555758 0.9861357 0.8968787 +0.7751122 0.9861357 0.8968787 +0.7940252 0.9861357 0.8968787 +0.8123661 0.9861357 0.8968787 +0.8301795 0.9861357 0.8968787 +0.8475045 0.9861357 0.8968787 +0.8643761 0.9861357 0.8968787 +0.880825 0.9861357 0.8968787 +0.8968787 0.9861357 0.8968787 +0.9125621 0.9861357 0.8968787 +0.9278974 0.9861357 0.8968787 +0.9429048 0.9861357 0.8968787 +0.9576028 0.9861357 0.8968787 +0.9720079 0.9861357 0.8968787 +0.9861357 0.9861357 0.8968787 +1 0.9861357 0.8968787 +0 1 0.8968787 +0.1939468 1 0.8968787 +0.2773041 1 0.8968787 +0.3384659 1 0.8968787 +0.3885728 1 0.8968787 +0.4317928 1 0.8968787 +0.470214 1 0.8968787 +0.5050551 1 0.8968787 +0.5370987 1 0.8968787 +0.5668815 1 0.8968787 +0.5947903 1 0.8968787 +0.6211144 1 0.8968787 +0.6460766 1 0.8968787 +0.6698526 1 0.8968787 +0.6925839 1 0.8968787 +0.7143866 1 0.8968787 +0.7353569 1 0.8968787 +0.7555758 1 0.8968787 +0.7751122 1 0.8968787 +0.7940252 1 0.8968787 +0.8123661 1 0.8968787 +0.8301795 1 0.8968787 +0.8475045 1 0.8968787 +0.8643761 1 0.8968787 +0.880825 1 0.8968787 +0.8968787 1 0.8968787 +0.9125621 1 0.8968787 +0.9278974 1 0.8968787 +0.9429048 1 0.8968787 +0.9576028 1 0.8968787 +0.9720079 1 0.8968787 +0.9861357 1 0.8968787 +1 1 0.8968787 +0 0 0.9125621 +0.1939468 0 0.9125621 +0.2773041 0 0.9125621 +0.3384659 0 0.9125621 +0.3885728 0 0.9125621 +0.4317928 0 0.9125621 +0.470214 0 0.9125621 +0.5050551 0 0.9125621 +0.5370987 0 0.9125621 +0.5668815 0 0.9125621 +0.5947903 0 0.9125621 +0.6211144 0 0.9125621 +0.6460766 0 0.9125621 +0.6698526 0 0.9125621 +0.6925839 0 0.9125621 +0.7143866 0 0.9125621 +0.7353569 0 0.9125621 +0.7555758 0 0.9125621 +0.7751122 0 0.9125621 +0.7940252 0 0.9125621 +0.8123661 0 0.9125621 +0.8301795 0 0.9125621 +0.8475045 0 0.9125621 +0.8643761 0 0.9125621 +0.880825 0 0.9125621 +0.8968787 0 0.9125621 +0.9125621 0 0.9125621 +0.9278974 0 0.9125621 +0.9429048 0 0.9125621 +0.9576028 0 0.9125621 +0.9720079 0 0.9125621 +0.9861357 0 0.9125621 +1 0 0.9125621 +0 0.1939468 0.9125621 +0.1939468 0.1939468 0.9125621 +0.2773041 0.1939468 0.9125621 +0.3384659 0.1939468 0.9125621 +0.3885728 0.1939468 0.9125621 +0.4317928 0.1939468 0.9125621 +0.470214 0.1939468 0.9125621 +0.5050551 0.1939468 0.9125621 +0.5370987 0.1939468 0.9125621 +0.5668815 0.1939468 0.9125621 +0.5947903 0.1939468 0.9125621 +0.6211144 0.1939468 0.9125621 +0.6460766 0.1939468 0.9125621 +0.6698526 0.1939468 0.9125621 +0.6925839 0.1939468 0.9125621 +0.7143866 0.1939468 0.9125621 +0.7353569 0.1939468 0.9125621 +0.7555758 0.1939468 0.9125621 +0.7751122 0.1939468 0.9125621 +0.7940252 0.1939468 0.9125621 +0.8123661 0.1939468 0.9125621 +0.8301795 0.1939468 0.9125621 +0.8475045 0.1939468 0.9125621 +0.8643761 0.1939468 0.9125621 +0.880825 0.1939468 0.9125621 +0.8968787 0.1939468 0.9125621 +0.9125621 0.1939468 0.9125621 +0.9278974 0.1939468 0.9125621 +0.9429048 0.1939468 0.9125621 +0.9576028 0.1939468 0.9125621 +0.9720079 0.1939468 0.9125621 +0.9861357 0.1939468 0.9125621 +1 0.1939468 0.9125621 +0 0.2773041 0.9125621 +0.1939468 0.2773041 0.9125621 +0.2773041 0.2773041 0.9125621 +0.3384659 0.2773041 0.9125621 +0.3885728 0.2773041 0.9125621 +0.4317928 0.2773041 0.9125621 +0.470214 0.2773041 0.9125621 +0.5050551 0.2773041 0.9125621 +0.5370987 0.2773041 0.9125621 +0.5668815 0.2773041 0.9125621 +0.5947903 0.2773041 0.9125621 +0.6211144 0.2773041 0.9125621 +0.6460766 0.2773041 0.9125621 +0.6698526 0.2773041 0.9125621 +0.6925839 0.2773041 0.9125621 +0.7143866 0.2773041 0.9125621 +0.7353569 0.2773041 0.9125621 +0.7555758 0.2773041 0.9125621 +0.7751122 0.2773041 0.9125621 +0.7940252 0.2773041 0.9125621 +0.8123661 0.2773041 0.9125621 +0.8301795 0.2773041 0.9125621 +0.8475045 0.2773041 0.9125621 +0.8643761 0.2773041 0.9125621 +0.880825 0.2773041 0.9125621 +0.8968787 0.2773041 0.9125621 +0.9125621 0.2773041 0.9125621 +0.9278974 0.2773041 0.9125621 +0.9429048 0.2773041 0.9125621 +0.9576028 0.2773041 0.9125621 +0.9720079 0.2773041 0.9125621 +0.9861357 0.2773041 0.9125621 +1 0.2773041 0.9125621 +0 0.3384659 0.9125621 +0.1939468 0.3384659 0.9125621 +0.2773041 0.3384659 0.9125621 +0.3384659 0.3384659 0.9125621 +0.3885728 0.3384659 0.9125621 +0.4317928 0.3384659 0.9125621 +0.470214 0.3384659 0.9125621 +0.5050551 0.3384659 0.9125621 +0.5370987 0.3384659 0.9125621 +0.5668815 0.3384659 0.9125621 +0.5947903 0.3384659 0.9125621 +0.6211144 0.3384659 0.9125621 +0.6460766 0.3384659 0.9125621 +0.6698526 0.3384659 0.9125621 +0.6925839 0.3384659 0.9125621 +0.7143866 0.3384659 0.9125621 +0.7353569 0.3384659 0.9125621 +0.7555758 0.3384659 0.9125621 +0.7751122 0.3384659 0.9125621 +0.7940252 0.3384659 0.9125621 +0.8123661 0.3384659 0.9125621 +0.8301795 0.3384659 0.9125621 +0.8475045 0.3384659 0.9125621 +0.8643761 0.3384659 0.9125621 +0.880825 0.3384659 0.9125621 +0.8968787 0.3384659 0.9125621 +0.9125621 0.3384659 0.9125621 +0.9278974 0.3384659 0.9125621 +0.9429048 0.3384659 0.9125621 +0.9576028 0.3384659 0.9125621 +0.9720079 0.3384659 0.9125621 +0.9861357 0.3384659 0.9125621 +1 0.3384659 0.9125621 +0 0.3885728 0.9125621 +0.1939468 0.3885728 0.9125621 +0.2773041 0.3885728 0.9125621 +0.3384659 0.3885728 0.9125621 +0.3885728 0.3885728 0.9125621 +0.4317928 0.3885728 0.9125621 +0.470214 0.3885728 0.9125621 +0.5050551 0.3885728 0.9125621 +0.5370987 0.3885728 0.9125621 +0.5668815 0.3885728 0.9125621 +0.5947903 0.3885728 0.9125621 +0.6211144 0.3885728 0.9125621 +0.6460766 0.3885728 0.9125621 +0.6698526 0.3885728 0.9125621 +0.6925839 0.3885728 0.9125621 +0.7143866 0.3885728 0.9125621 +0.7353569 0.3885728 0.9125621 +0.7555758 0.3885728 0.9125621 +0.7751122 0.3885728 0.9125621 +0.7940252 0.3885728 0.9125621 +0.8123661 0.3885728 0.9125621 +0.8301795 0.3885728 0.9125621 +0.8475045 0.3885728 0.9125621 +0.8643761 0.3885728 0.9125621 +0.880825 0.3885728 0.9125621 +0.8968787 0.3885728 0.9125621 +0.9125621 0.3885728 0.9125621 +0.9278974 0.3885728 0.9125621 +0.9429048 0.3885728 0.9125621 +0.9576028 0.3885728 0.9125621 +0.9720079 0.3885728 0.9125621 +0.9861357 0.3885728 0.9125621 +1 0.3885728 0.9125621 +0 0.4317928 0.9125621 +0.1939468 0.4317928 0.9125621 +0.2773041 0.4317928 0.9125621 +0.3384659 0.4317928 0.9125621 +0.3885728 0.4317928 0.9125621 +0.4317928 0.4317928 0.9125621 +0.470214 0.4317928 0.9125621 +0.5050551 0.4317928 0.9125621 +0.5370987 0.4317928 0.9125621 +0.5668815 0.4317928 0.9125621 +0.5947903 0.4317928 0.9125621 +0.6211144 0.4317928 0.9125621 +0.6460766 0.4317928 0.9125621 +0.6698526 0.4317928 0.9125621 +0.6925839 0.4317928 0.9125621 +0.7143866 0.4317928 0.9125621 +0.7353569 0.4317928 0.9125621 +0.7555758 0.4317928 0.9125621 +0.7751122 0.4317928 0.9125621 +0.7940252 0.4317928 0.9125621 +0.8123661 0.4317928 0.9125621 +0.8301795 0.4317928 0.9125621 +0.8475045 0.4317928 0.9125621 +0.8643761 0.4317928 0.9125621 +0.880825 0.4317928 0.9125621 +0.8968787 0.4317928 0.9125621 +0.9125621 0.4317928 0.9125621 +0.9278974 0.4317928 0.9125621 +0.9429048 0.4317928 0.9125621 +0.9576028 0.4317928 0.9125621 +0.9720079 0.4317928 0.9125621 +0.9861357 0.4317928 0.9125621 +1 0.4317928 0.9125621 +0 0.470214 0.9125621 +0.1939468 0.470214 0.9125621 +0.2773041 0.470214 0.9125621 +0.3384659 0.470214 0.9125621 +0.3885728 0.470214 0.9125621 +0.4317928 0.470214 0.9125621 +0.470214 0.470214 0.9125621 +0.5050551 0.470214 0.9125621 +0.5370987 0.470214 0.9125621 +0.5668815 0.470214 0.9125621 +0.5947903 0.470214 0.9125621 +0.6211144 0.470214 0.9125621 +0.6460766 0.470214 0.9125621 +0.6698526 0.470214 0.9125621 +0.6925839 0.470214 0.9125621 +0.7143866 0.470214 0.9125621 +0.7353569 0.470214 0.9125621 +0.7555758 0.470214 0.9125621 +0.7751122 0.470214 0.9125621 +0.7940252 0.470214 0.9125621 +0.8123661 0.470214 0.9125621 +0.8301795 0.470214 0.9125621 +0.8475045 0.470214 0.9125621 +0.8643761 0.470214 0.9125621 +0.880825 0.470214 0.9125621 +0.8968787 0.470214 0.9125621 +0.9125621 0.470214 0.9125621 +0.9278974 0.470214 0.9125621 +0.9429048 0.470214 0.9125621 +0.9576028 0.470214 0.9125621 +0.9720079 0.470214 0.9125621 +0.9861357 0.470214 0.9125621 +1 0.470214 0.9125621 +0 0.5050551 0.9125621 +0.1939468 0.5050551 0.9125621 +0.2773041 0.5050551 0.9125621 +0.3384659 0.5050551 0.9125621 +0.3885728 0.5050551 0.9125621 +0.4317928 0.5050551 0.9125621 +0.470214 0.5050551 0.9125621 +0.5050551 0.5050551 0.9125621 +0.5370987 0.5050551 0.9125621 +0.5668815 0.5050551 0.9125621 +0.5947903 0.5050551 0.9125621 +0.6211144 0.5050551 0.9125621 +0.6460766 0.5050551 0.9125621 +0.6698526 0.5050551 0.9125621 +0.6925839 0.5050551 0.9125621 +0.7143866 0.5050551 0.9125621 +0.7353569 0.5050551 0.9125621 +0.7555758 0.5050551 0.9125621 +0.7751122 0.5050551 0.9125621 +0.7940252 0.5050551 0.9125621 +0.8123661 0.5050551 0.9125621 +0.8301795 0.5050551 0.9125621 +0.8475045 0.5050551 0.9125621 +0.8643761 0.5050551 0.9125621 +0.880825 0.5050551 0.9125621 +0.8968787 0.5050551 0.9125621 +0.9125621 0.5050551 0.9125621 +0.9278974 0.5050551 0.9125621 +0.9429048 0.5050551 0.9125621 +0.9576028 0.5050551 0.9125621 +0.9720079 0.5050551 0.9125621 +0.9861357 0.5050551 0.9125621 +1 0.5050551 0.9125621 +0 0.5370987 0.9125621 +0.1939468 0.5370987 0.9125621 +0.2773041 0.5370987 0.9125621 +0.3384659 0.5370987 0.9125621 +0.3885728 0.5370987 0.9125621 +0.4317928 0.5370987 0.9125621 +0.470214 0.5370987 0.9125621 +0.5050551 0.5370987 0.9125621 +0.5370987 0.5370987 0.9125621 +0.5668815 0.5370987 0.9125621 +0.5947903 0.5370987 0.9125621 +0.6211144 0.5370987 0.9125621 +0.6460766 0.5370987 0.9125621 +0.6698526 0.5370987 0.9125621 +0.6925839 0.5370987 0.9125621 +0.7143866 0.5370987 0.9125621 +0.7353569 0.5370987 0.9125621 +0.7555758 0.5370987 0.9125621 +0.7751122 0.5370987 0.9125621 +0.7940252 0.5370987 0.9125621 +0.8123661 0.5370987 0.9125621 +0.8301795 0.5370987 0.9125621 +0.8475045 0.5370987 0.9125621 +0.8643761 0.5370987 0.9125621 +0.880825 0.5370987 0.9125621 +0.8968787 0.5370987 0.9125621 +0.9125621 0.5370987 0.9125621 +0.9278974 0.5370987 0.9125621 +0.9429048 0.5370987 0.9125621 +0.9576028 0.5370987 0.9125621 +0.9720079 0.5370987 0.9125621 +0.9861357 0.5370987 0.9125621 +1 0.5370987 0.9125621 +0 0.5668815 0.9125621 +0.1939468 0.5668815 0.9125621 +0.2773041 0.5668815 0.9125621 +0.3384659 0.5668815 0.9125621 +0.3885728 0.5668815 0.9125621 +0.4317928 0.5668815 0.9125621 +0.470214 0.5668815 0.9125621 +0.5050551 0.5668815 0.9125621 +0.5370987 0.5668815 0.9125621 +0.5668815 0.5668815 0.9125621 +0.5947903 0.5668815 0.9125621 +0.6211144 0.5668815 0.9125621 +0.6460766 0.5668815 0.9125621 +0.6698526 0.5668815 0.9125621 +0.6925839 0.5668815 0.9125621 +0.7143866 0.5668815 0.9125621 +0.7353569 0.5668815 0.9125621 +0.7555758 0.5668815 0.9125621 +0.7751122 0.5668815 0.9125621 +0.7940252 0.5668815 0.9125621 +0.8123661 0.5668815 0.9125621 +0.8301795 0.5668815 0.9125621 +0.8475045 0.5668815 0.9125621 +0.8643761 0.5668815 0.9125621 +0.880825 0.5668815 0.9125621 +0.8968787 0.5668815 0.9125621 +0.9125621 0.5668815 0.9125621 +0.9278974 0.5668815 0.9125621 +0.9429048 0.5668815 0.9125621 +0.9576028 0.5668815 0.9125621 +0.9720079 0.5668815 0.9125621 +0.9861357 0.5668815 0.9125621 +1 0.5668815 0.9125621 +0 0.5947903 0.9125621 +0.1939468 0.5947903 0.9125621 +0.2773041 0.5947903 0.9125621 +0.3384659 0.5947903 0.9125621 +0.3885728 0.5947903 0.9125621 +0.4317928 0.5947903 0.9125621 +0.470214 0.5947903 0.9125621 +0.5050551 0.5947903 0.9125621 +0.5370987 0.5947903 0.9125621 +0.5668815 0.5947903 0.9125621 +0.5947903 0.5947903 0.9125621 +0.6211144 0.5947903 0.9125621 +0.6460766 0.5947903 0.9125621 +0.6698526 0.5947903 0.9125621 +0.6925839 0.5947903 0.9125621 +0.7143866 0.5947903 0.9125621 +0.7353569 0.5947903 0.9125621 +0.7555758 0.5947903 0.9125621 +0.7751122 0.5947903 0.9125621 +0.7940252 0.5947903 0.9125621 +0.8123661 0.5947903 0.9125621 +0.8301795 0.5947903 0.9125621 +0.8475045 0.5947903 0.9125621 +0.8643761 0.5947903 0.9125621 +0.880825 0.5947903 0.9125621 +0.8968787 0.5947903 0.9125621 +0.9125621 0.5947903 0.9125621 +0.9278974 0.5947903 0.9125621 +0.9429048 0.5947903 0.9125621 +0.9576028 0.5947903 0.9125621 +0.9720079 0.5947903 0.9125621 +0.9861357 0.5947903 0.9125621 +1 0.5947903 0.9125621 +0 0.6211144 0.9125621 +0.1939468 0.6211144 0.9125621 +0.2773041 0.6211144 0.9125621 +0.3384659 0.6211144 0.9125621 +0.3885728 0.6211144 0.9125621 +0.4317928 0.6211144 0.9125621 +0.470214 0.6211144 0.9125621 +0.5050551 0.6211144 0.9125621 +0.5370987 0.6211144 0.9125621 +0.5668815 0.6211144 0.9125621 +0.5947903 0.6211144 0.9125621 +0.6211144 0.6211144 0.9125621 +0.6460766 0.6211144 0.9125621 +0.6698526 0.6211144 0.9125621 +0.6925839 0.6211144 0.9125621 +0.7143866 0.6211144 0.9125621 +0.7353569 0.6211144 0.9125621 +0.7555758 0.6211144 0.9125621 +0.7751122 0.6211144 0.9125621 +0.7940252 0.6211144 0.9125621 +0.8123661 0.6211144 0.9125621 +0.8301795 0.6211144 0.9125621 +0.8475045 0.6211144 0.9125621 +0.8643761 0.6211144 0.9125621 +0.880825 0.6211144 0.9125621 +0.8968787 0.6211144 0.9125621 +0.9125621 0.6211144 0.9125621 +0.9278974 0.6211144 0.9125621 +0.9429048 0.6211144 0.9125621 +0.9576028 0.6211144 0.9125621 +0.9720079 0.6211144 0.9125621 +0.9861357 0.6211144 0.9125621 +1 0.6211144 0.9125621 +0 0.6460766 0.9125621 +0.1939468 0.6460766 0.9125621 +0.2773041 0.6460766 0.9125621 +0.3384659 0.6460766 0.9125621 +0.3885728 0.6460766 0.9125621 +0.4317928 0.6460766 0.9125621 +0.470214 0.6460766 0.9125621 +0.5050551 0.6460766 0.9125621 +0.5370987 0.6460766 0.9125621 +0.5668815 0.6460766 0.9125621 +0.5947903 0.6460766 0.9125621 +0.6211144 0.6460766 0.9125621 +0.6460766 0.6460766 0.9125621 +0.6698526 0.6460766 0.9125621 +0.6925839 0.6460766 0.9125621 +0.7143866 0.6460766 0.9125621 +0.7353569 0.6460766 0.9125621 +0.7555758 0.6460766 0.9125621 +0.7751122 0.6460766 0.9125621 +0.7940252 0.6460766 0.9125621 +0.8123661 0.6460766 0.9125621 +0.8301795 0.6460766 0.9125621 +0.8475045 0.6460766 0.9125621 +0.8643761 0.6460766 0.9125621 +0.880825 0.6460766 0.9125621 +0.8968787 0.6460766 0.9125621 +0.9125621 0.6460766 0.9125621 +0.9278974 0.6460766 0.9125621 +0.9429048 0.6460766 0.9125621 +0.9576028 0.6460766 0.9125621 +0.9720079 0.6460766 0.9125621 +0.9861357 0.6460766 0.9125621 +1 0.6460766 0.9125621 +0 0.6698526 0.9125621 +0.1939468 0.6698526 0.9125621 +0.2773041 0.6698526 0.9125621 +0.3384659 0.6698526 0.9125621 +0.3885728 0.6698526 0.9125621 +0.4317928 0.6698526 0.9125621 +0.470214 0.6698526 0.9125621 +0.5050551 0.6698526 0.9125621 +0.5370987 0.6698526 0.9125621 +0.5668815 0.6698526 0.9125621 +0.5947903 0.6698526 0.9125621 +0.6211144 0.6698526 0.9125621 +0.6460766 0.6698526 0.9125621 +0.6698526 0.6698526 0.9125621 +0.6925839 0.6698526 0.9125621 +0.7143866 0.6698526 0.9125621 +0.7353569 0.6698526 0.9125621 +0.7555758 0.6698526 0.9125621 +0.7751122 0.6698526 0.9125621 +0.7940252 0.6698526 0.9125621 +0.8123661 0.6698526 0.9125621 +0.8301795 0.6698526 0.9125621 +0.8475045 0.6698526 0.9125621 +0.8643761 0.6698526 0.9125621 +0.880825 0.6698526 0.9125621 +0.8968787 0.6698526 0.9125621 +0.9125621 0.6698526 0.9125621 +0.9278974 0.6698526 0.9125621 +0.9429048 0.6698526 0.9125621 +0.9576028 0.6698526 0.9125621 +0.9720079 0.6698526 0.9125621 +0.9861357 0.6698526 0.9125621 +1 0.6698526 0.9125621 +0 0.6925839 0.9125621 +0.1939468 0.6925839 0.9125621 +0.2773041 0.6925839 0.9125621 +0.3384659 0.6925839 0.9125621 +0.3885728 0.6925839 0.9125621 +0.4317928 0.6925839 0.9125621 +0.470214 0.6925839 0.9125621 +0.5050551 0.6925839 0.9125621 +0.5370987 0.6925839 0.9125621 +0.5668815 0.6925839 0.9125621 +0.5947903 0.6925839 0.9125621 +0.6211144 0.6925839 0.9125621 +0.6460766 0.6925839 0.9125621 +0.6698526 0.6925839 0.9125621 +0.6925839 0.6925839 0.9125621 +0.7143866 0.6925839 0.9125621 +0.7353569 0.6925839 0.9125621 +0.7555758 0.6925839 0.9125621 +0.7751122 0.6925839 0.9125621 +0.7940252 0.6925839 0.9125621 +0.8123661 0.6925839 0.9125621 +0.8301795 0.6925839 0.9125621 +0.8475045 0.6925839 0.9125621 +0.8643761 0.6925839 0.9125621 +0.880825 0.6925839 0.9125621 +0.8968787 0.6925839 0.9125621 +0.9125621 0.6925839 0.9125621 +0.9278974 0.6925839 0.9125621 +0.9429048 0.6925839 0.9125621 +0.9576028 0.6925839 0.9125621 +0.9720079 0.6925839 0.9125621 +0.9861357 0.6925839 0.9125621 +1 0.6925839 0.9125621 +0 0.7143866 0.9125621 +0.1939468 0.7143866 0.9125621 +0.2773041 0.7143866 0.9125621 +0.3384659 0.7143866 0.9125621 +0.3885728 0.7143866 0.9125621 +0.4317928 0.7143866 0.9125621 +0.470214 0.7143866 0.9125621 +0.5050551 0.7143866 0.9125621 +0.5370987 0.7143866 0.9125621 +0.5668815 0.7143866 0.9125621 +0.5947903 0.7143866 0.9125621 +0.6211144 0.7143866 0.9125621 +0.6460766 0.7143866 0.9125621 +0.6698526 0.7143866 0.9125621 +0.6925839 0.7143866 0.9125621 +0.7143866 0.7143866 0.9125621 +0.7353569 0.7143866 0.9125621 +0.7555758 0.7143866 0.9125621 +0.7751122 0.7143866 0.9125621 +0.7940252 0.7143866 0.9125621 +0.8123661 0.7143866 0.9125621 +0.8301795 0.7143866 0.9125621 +0.8475045 0.7143866 0.9125621 +0.8643761 0.7143866 0.9125621 +0.880825 0.7143866 0.9125621 +0.8968787 0.7143866 0.9125621 +0.9125621 0.7143866 0.9125621 +0.9278974 0.7143866 0.9125621 +0.9429048 0.7143866 0.9125621 +0.9576028 0.7143866 0.9125621 +0.9720079 0.7143866 0.9125621 +0.9861357 0.7143866 0.9125621 +1 0.7143866 0.9125621 +0 0.7353569 0.9125621 +0.1939468 0.7353569 0.9125621 +0.2773041 0.7353569 0.9125621 +0.3384659 0.7353569 0.9125621 +0.3885728 0.7353569 0.9125621 +0.4317928 0.7353569 0.9125621 +0.470214 0.7353569 0.9125621 +0.5050551 0.7353569 0.9125621 +0.5370987 0.7353569 0.9125621 +0.5668815 0.7353569 0.9125621 +0.5947903 0.7353569 0.9125621 +0.6211144 0.7353569 0.9125621 +0.6460766 0.7353569 0.9125621 +0.6698526 0.7353569 0.9125621 +0.6925839 0.7353569 0.9125621 +0.7143866 0.7353569 0.9125621 +0.7353569 0.7353569 0.9125621 +0.7555758 0.7353569 0.9125621 +0.7751122 0.7353569 0.9125621 +0.7940252 0.7353569 0.9125621 +0.8123661 0.7353569 0.9125621 +0.8301795 0.7353569 0.9125621 +0.8475045 0.7353569 0.9125621 +0.8643761 0.7353569 0.9125621 +0.880825 0.7353569 0.9125621 +0.8968787 0.7353569 0.9125621 +0.9125621 0.7353569 0.9125621 +0.9278974 0.7353569 0.9125621 +0.9429048 0.7353569 0.9125621 +0.9576028 0.7353569 0.9125621 +0.9720079 0.7353569 0.9125621 +0.9861357 0.7353569 0.9125621 +1 0.7353569 0.9125621 +0 0.7555758 0.9125621 +0.1939468 0.7555758 0.9125621 +0.2773041 0.7555758 0.9125621 +0.3384659 0.7555758 0.9125621 +0.3885728 0.7555758 0.9125621 +0.4317928 0.7555758 0.9125621 +0.470214 0.7555758 0.9125621 +0.5050551 0.7555758 0.9125621 +0.5370987 0.7555758 0.9125621 +0.5668815 0.7555758 0.9125621 +0.5947903 0.7555758 0.9125621 +0.6211144 0.7555758 0.9125621 +0.6460766 0.7555758 0.9125621 +0.6698526 0.7555758 0.9125621 +0.6925839 0.7555758 0.9125621 +0.7143866 0.7555758 0.9125621 +0.7353569 0.7555758 0.9125621 +0.7555758 0.7555758 0.9125621 +0.7751122 0.7555758 0.9125621 +0.7940252 0.7555758 0.9125621 +0.8123661 0.7555758 0.9125621 +0.8301795 0.7555758 0.9125621 +0.8475045 0.7555758 0.9125621 +0.8643761 0.7555758 0.9125621 +0.880825 0.7555758 0.9125621 +0.8968787 0.7555758 0.9125621 +0.9125621 0.7555758 0.9125621 +0.9278974 0.7555758 0.9125621 +0.9429048 0.7555758 0.9125621 +0.9576028 0.7555758 0.9125621 +0.9720079 0.7555758 0.9125621 +0.9861357 0.7555758 0.9125621 +1 0.7555758 0.9125621 +0 0.7751122 0.9125621 +0.1939468 0.7751122 0.9125621 +0.2773041 0.7751122 0.9125621 +0.3384659 0.7751122 0.9125621 +0.3885728 0.7751122 0.9125621 +0.4317928 0.7751122 0.9125621 +0.470214 0.7751122 0.9125621 +0.5050551 0.7751122 0.9125621 +0.5370987 0.7751122 0.9125621 +0.5668815 0.7751122 0.9125621 +0.5947903 0.7751122 0.9125621 +0.6211144 0.7751122 0.9125621 +0.6460766 0.7751122 0.9125621 +0.6698526 0.7751122 0.9125621 +0.6925839 0.7751122 0.9125621 +0.7143866 0.7751122 0.9125621 +0.7353569 0.7751122 0.9125621 +0.7555758 0.7751122 0.9125621 +0.7751122 0.7751122 0.9125621 +0.7940252 0.7751122 0.9125621 +0.8123661 0.7751122 0.9125621 +0.8301795 0.7751122 0.9125621 +0.8475045 0.7751122 0.9125621 +0.8643761 0.7751122 0.9125621 +0.880825 0.7751122 0.9125621 +0.8968787 0.7751122 0.9125621 +0.9125621 0.7751122 0.9125621 +0.9278974 0.7751122 0.9125621 +0.9429048 0.7751122 0.9125621 +0.9576028 0.7751122 0.9125621 +0.9720079 0.7751122 0.9125621 +0.9861357 0.7751122 0.9125621 +1 0.7751122 0.9125621 +0 0.7940252 0.9125621 +0.1939468 0.7940252 0.9125621 +0.2773041 0.7940252 0.9125621 +0.3384659 0.7940252 0.9125621 +0.3885728 0.7940252 0.9125621 +0.4317928 0.7940252 0.9125621 +0.470214 0.7940252 0.9125621 +0.5050551 0.7940252 0.9125621 +0.5370987 0.7940252 0.9125621 +0.5668815 0.7940252 0.9125621 +0.5947903 0.7940252 0.9125621 +0.6211144 0.7940252 0.9125621 +0.6460766 0.7940252 0.9125621 +0.6698526 0.7940252 0.9125621 +0.6925839 0.7940252 0.9125621 +0.7143866 0.7940252 0.9125621 +0.7353569 0.7940252 0.9125621 +0.7555758 0.7940252 0.9125621 +0.7751122 0.7940252 0.9125621 +0.7940252 0.7940252 0.9125621 +0.8123661 0.7940252 0.9125621 +0.8301795 0.7940252 0.9125621 +0.8475045 0.7940252 0.9125621 +0.8643761 0.7940252 0.9125621 +0.880825 0.7940252 0.9125621 +0.8968787 0.7940252 0.9125621 +0.9125621 0.7940252 0.9125621 +0.9278974 0.7940252 0.9125621 +0.9429048 0.7940252 0.9125621 +0.9576028 0.7940252 0.9125621 +0.9720079 0.7940252 0.9125621 +0.9861357 0.7940252 0.9125621 +1 0.7940252 0.9125621 +0 0.8123661 0.9125621 +0.1939468 0.8123661 0.9125621 +0.2773041 0.8123661 0.9125621 +0.3384659 0.8123661 0.9125621 +0.3885728 0.8123661 0.9125621 +0.4317928 0.8123661 0.9125621 +0.470214 0.8123661 0.9125621 +0.5050551 0.8123661 0.9125621 +0.5370987 0.8123661 0.9125621 +0.5668815 0.8123661 0.9125621 +0.5947903 0.8123661 0.9125621 +0.6211144 0.8123661 0.9125621 +0.6460766 0.8123661 0.9125621 +0.6698526 0.8123661 0.9125621 +0.6925839 0.8123661 0.9125621 +0.7143866 0.8123661 0.9125621 +0.7353569 0.8123661 0.9125621 +0.7555758 0.8123661 0.9125621 +0.7751122 0.8123661 0.9125621 +0.7940252 0.8123661 0.9125621 +0.8123661 0.8123661 0.9125621 +0.8301795 0.8123661 0.9125621 +0.8475045 0.8123661 0.9125621 +0.8643761 0.8123661 0.9125621 +0.880825 0.8123661 0.9125621 +0.8968787 0.8123661 0.9125621 +0.9125621 0.8123661 0.9125621 +0.9278974 0.8123661 0.9125621 +0.9429048 0.8123661 0.9125621 +0.9576028 0.8123661 0.9125621 +0.9720079 0.8123661 0.9125621 +0.9861357 0.8123661 0.9125621 +1 0.8123661 0.9125621 +0 0.8301795 0.9125621 +0.1939468 0.8301795 0.9125621 +0.2773041 0.8301795 0.9125621 +0.3384659 0.8301795 0.9125621 +0.3885728 0.8301795 0.9125621 +0.4317928 0.8301795 0.9125621 +0.470214 0.8301795 0.9125621 +0.5050551 0.8301795 0.9125621 +0.5370987 0.8301795 0.9125621 +0.5668815 0.8301795 0.9125621 +0.5947903 0.8301795 0.9125621 +0.6211144 0.8301795 0.9125621 +0.6460766 0.8301795 0.9125621 +0.6698526 0.8301795 0.9125621 +0.6925839 0.8301795 0.9125621 +0.7143866 0.8301795 0.9125621 +0.7353569 0.8301795 0.9125621 +0.7555758 0.8301795 0.9125621 +0.7751122 0.8301795 0.9125621 +0.7940252 0.8301795 0.9125621 +0.8123661 0.8301795 0.9125621 +0.8301795 0.8301795 0.9125621 +0.8475045 0.8301795 0.9125621 +0.8643761 0.8301795 0.9125621 +0.880825 0.8301795 0.9125621 +0.8968787 0.8301795 0.9125621 +0.9125621 0.8301795 0.9125621 +0.9278974 0.8301795 0.9125621 +0.9429048 0.8301795 0.9125621 +0.9576028 0.8301795 0.9125621 +0.9720079 0.8301795 0.9125621 +0.9861357 0.8301795 0.9125621 +1 0.8301795 0.9125621 +0 0.8475045 0.9125621 +0.1939468 0.8475045 0.9125621 +0.2773041 0.8475045 0.9125621 +0.3384659 0.8475045 0.9125621 +0.3885728 0.8475045 0.9125621 +0.4317928 0.8475045 0.9125621 +0.470214 0.8475045 0.9125621 +0.5050551 0.8475045 0.9125621 +0.5370987 0.8475045 0.9125621 +0.5668815 0.8475045 0.9125621 +0.5947903 0.8475045 0.9125621 +0.6211144 0.8475045 0.9125621 +0.6460766 0.8475045 0.9125621 +0.6698526 0.8475045 0.9125621 +0.6925839 0.8475045 0.9125621 +0.7143866 0.8475045 0.9125621 +0.7353569 0.8475045 0.9125621 +0.7555758 0.8475045 0.9125621 +0.7751122 0.8475045 0.9125621 +0.7940252 0.8475045 0.9125621 +0.8123661 0.8475045 0.9125621 +0.8301795 0.8475045 0.9125621 +0.8475045 0.8475045 0.9125621 +0.8643761 0.8475045 0.9125621 +0.880825 0.8475045 0.9125621 +0.8968787 0.8475045 0.9125621 +0.9125621 0.8475045 0.9125621 +0.9278974 0.8475045 0.9125621 +0.9429048 0.8475045 0.9125621 +0.9576028 0.8475045 0.9125621 +0.9720079 0.8475045 0.9125621 +0.9861357 0.8475045 0.9125621 +1 0.8475045 0.9125621 +0 0.8643761 0.9125621 +0.1939468 0.8643761 0.9125621 +0.2773041 0.8643761 0.9125621 +0.3384659 0.8643761 0.9125621 +0.3885728 0.8643761 0.9125621 +0.4317928 0.8643761 0.9125621 +0.470214 0.8643761 0.9125621 +0.5050551 0.8643761 0.9125621 +0.5370987 0.8643761 0.9125621 +0.5668815 0.8643761 0.9125621 +0.5947903 0.8643761 0.9125621 +0.6211144 0.8643761 0.9125621 +0.6460766 0.8643761 0.9125621 +0.6698526 0.8643761 0.9125621 +0.6925839 0.8643761 0.9125621 +0.7143866 0.8643761 0.9125621 +0.7353569 0.8643761 0.9125621 +0.7555758 0.8643761 0.9125621 +0.7751122 0.8643761 0.9125621 +0.7940252 0.8643761 0.9125621 +0.8123661 0.8643761 0.9125621 +0.8301795 0.8643761 0.9125621 +0.8475045 0.8643761 0.9125621 +0.8643761 0.8643761 0.9125621 +0.880825 0.8643761 0.9125621 +0.8968787 0.8643761 0.9125621 +0.9125621 0.8643761 0.9125621 +0.9278974 0.8643761 0.9125621 +0.9429048 0.8643761 0.9125621 +0.9576028 0.8643761 0.9125621 +0.9720079 0.8643761 0.9125621 +0.9861357 0.8643761 0.9125621 +1 0.8643761 0.9125621 +0 0.880825 0.9125621 +0.1939468 0.880825 0.9125621 +0.2773041 0.880825 0.9125621 +0.3384659 0.880825 0.9125621 +0.3885728 0.880825 0.9125621 +0.4317928 0.880825 0.9125621 +0.470214 0.880825 0.9125621 +0.5050551 0.880825 0.9125621 +0.5370987 0.880825 0.9125621 +0.5668815 0.880825 0.9125621 +0.5947903 0.880825 0.9125621 +0.6211144 0.880825 0.9125621 +0.6460766 0.880825 0.9125621 +0.6698526 0.880825 0.9125621 +0.6925839 0.880825 0.9125621 +0.7143866 0.880825 0.9125621 +0.7353569 0.880825 0.9125621 +0.7555758 0.880825 0.9125621 +0.7751122 0.880825 0.9125621 +0.7940252 0.880825 0.9125621 +0.8123661 0.880825 0.9125621 +0.8301795 0.880825 0.9125621 +0.8475045 0.880825 0.9125621 +0.8643761 0.880825 0.9125621 +0.880825 0.880825 0.9125621 +0.8968787 0.880825 0.9125621 +0.9125621 0.880825 0.9125621 +0.9278974 0.880825 0.9125621 +0.9429048 0.880825 0.9125621 +0.9576028 0.880825 0.9125621 +0.9720079 0.880825 0.9125621 +0.9861357 0.880825 0.9125621 +1 0.880825 0.9125621 +0 0.8968787 0.9125621 +0.1939468 0.8968787 0.9125621 +0.2773041 0.8968787 0.9125621 +0.3384659 0.8968787 0.9125621 +0.3885728 0.8968787 0.9125621 +0.4317928 0.8968787 0.9125621 +0.470214 0.8968787 0.9125621 +0.5050551 0.8968787 0.9125621 +0.5370987 0.8968787 0.9125621 +0.5668815 0.8968787 0.9125621 +0.5947903 0.8968787 0.9125621 +0.6211144 0.8968787 0.9125621 +0.6460766 0.8968787 0.9125621 +0.6698526 0.8968787 0.9125621 +0.6925839 0.8968787 0.9125621 +0.7143866 0.8968787 0.9125621 +0.7353569 0.8968787 0.9125621 +0.7555758 0.8968787 0.9125621 +0.7751122 0.8968787 0.9125621 +0.7940252 0.8968787 0.9125621 +0.8123661 0.8968787 0.9125621 +0.8301795 0.8968787 0.9125621 +0.8475045 0.8968787 0.9125621 +0.8643761 0.8968787 0.9125621 +0.880825 0.8968787 0.9125621 +0.8968787 0.8968787 0.9125621 +0.9125621 0.8968787 0.9125621 +0.9278974 0.8968787 0.9125621 +0.9429048 0.8968787 0.9125621 +0.9576028 0.8968787 0.9125621 +0.9720079 0.8968787 0.9125621 +0.9861357 0.8968787 0.9125621 +1 0.8968787 0.9125621 +0 0.9125621 0.9125621 +0.1939468 0.9125621 0.9125621 +0.2773041 0.9125621 0.9125621 +0.3384659 0.9125621 0.9125621 +0.3885728 0.9125621 0.9125621 +0.4317928 0.9125621 0.9125621 +0.470214 0.9125621 0.9125621 +0.5050551 0.9125621 0.9125621 +0.5370987 0.9125621 0.9125621 +0.5668815 0.9125621 0.9125621 +0.5947903 0.9125621 0.9125621 +0.6211144 0.9125621 0.9125621 +0.6460766 0.9125621 0.9125621 +0.6698526 0.9125621 0.9125621 +0.6925839 0.9125621 0.9125621 +0.7143866 0.9125621 0.9125621 +0.7353569 0.9125621 0.9125621 +0.7555758 0.9125621 0.9125621 +0.7751122 0.9125621 0.9125621 +0.7940252 0.9125621 0.9125621 +0.8123661 0.9125621 0.9125621 +0.8301795 0.9125621 0.9125621 +0.8475045 0.9125621 0.9125621 +0.8643761 0.9125621 0.9125621 +0.880825 0.9125621 0.9125621 +0.8968787 0.9125621 0.9125621 +0.9125621 0.9125621 0.9125621 +0.9278974 0.9125621 0.9125621 +0.9429048 0.9125621 0.9125621 +0.9576028 0.9125621 0.9125621 +0.9720079 0.9125621 0.9125621 +0.9861357 0.9125621 0.9125621 +1 0.9125621 0.9125621 +0 0.9278974 0.9125621 +0.1939468 0.9278974 0.9125621 +0.2773041 0.9278974 0.9125621 +0.3384659 0.9278974 0.9125621 +0.3885728 0.9278974 0.9125621 +0.4317928 0.9278974 0.9125621 +0.470214 0.9278974 0.9125621 +0.5050551 0.9278974 0.9125621 +0.5370987 0.9278974 0.9125621 +0.5668815 0.9278974 0.9125621 +0.5947903 0.9278974 0.9125621 +0.6211144 0.9278974 0.9125621 +0.6460766 0.9278974 0.9125621 +0.6698526 0.9278974 0.9125621 +0.6925839 0.9278974 0.9125621 +0.7143866 0.9278974 0.9125621 +0.7353569 0.9278974 0.9125621 +0.7555758 0.9278974 0.9125621 +0.7751122 0.9278974 0.9125621 +0.7940252 0.9278974 0.9125621 +0.8123661 0.9278974 0.9125621 +0.8301795 0.9278974 0.9125621 +0.8475045 0.9278974 0.9125621 +0.8643761 0.9278974 0.9125621 +0.880825 0.9278974 0.9125621 +0.8968787 0.9278974 0.9125621 +0.9125621 0.9278974 0.9125621 +0.9278974 0.9278974 0.9125621 +0.9429048 0.9278974 0.9125621 +0.9576028 0.9278974 0.9125621 +0.9720079 0.9278974 0.9125621 +0.9861357 0.9278974 0.9125621 +1 0.9278974 0.9125621 +0 0.9429048 0.9125621 +0.1939468 0.9429048 0.9125621 +0.2773041 0.9429048 0.9125621 +0.3384659 0.9429048 0.9125621 +0.3885728 0.9429048 0.9125621 +0.4317928 0.9429048 0.9125621 +0.470214 0.9429048 0.9125621 +0.5050551 0.9429048 0.9125621 +0.5370987 0.9429048 0.9125621 +0.5668815 0.9429048 0.9125621 +0.5947903 0.9429048 0.9125621 +0.6211144 0.9429048 0.9125621 +0.6460766 0.9429048 0.9125621 +0.6698526 0.9429048 0.9125621 +0.6925839 0.9429048 0.9125621 +0.7143866 0.9429048 0.9125621 +0.7353569 0.9429048 0.9125621 +0.7555758 0.9429048 0.9125621 +0.7751122 0.9429048 0.9125621 +0.7940252 0.9429048 0.9125621 +0.8123661 0.9429048 0.9125621 +0.8301795 0.9429048 0.9125621 +0.8475045 0.9429048 0.9125621 +0.8643761 0.9429048 0.9125621 +0.880825 0.9429048 0.9125621 +0.8968787 0.9429048 0.9125621 +0.9125621 0.9429048 0.9125621 +0.9278974 0.9429048 0.9125621 +0.9429048 0.9429048 0.9125621 +0.9576028 0.9429048 0.9125621 +0.9720079 0.9429048 0.9125621 +0.9861357 0.9429048 0.9125621 +1 0.9429048 0.9125621 +0 0.9576028 0.9125621 +0.1939468 0.9576028 0.9125621 +0.2773041 0.9576028 0.9125621 +0.3384659 0.9576028 0.9125621 +0.3885728 0.9576028 0.9125621 +0.4317928 0.9576028 0.9125621 +0.470214 0.9576028 0.9125621 +0.5050551 0.9576028 0.9125621 +0.5370987 0.9576028 0.9125621 +0.5668815 0.9576028 0.9125621 +0.5947903 0.9576028 0.9125621 +0.6211144 0.9576028 0.9125621 +0.6460766 0.9576028 0.9125621 +0.6698526 0.9576028 0.9125621 +0.6925839 0.9576028 0.9125621 +0.7143866 0.9576028 0.9125621 +0.7353569 0.9576028 0.9125621 +0.7555758 0.9576028 0.9125621 +0.7751122 0.9576028 0.9125621 +0.7940252 0.9576028 0.9125621 +0.8123661 0.9576028 0.9125621 +0.8301795 0.9576028 0.9125621 +0.8475045 0.9576028 0.9125621 +0.8643761 0.9576028 0.9125621 +0.880825 0.9576028 0.9125621 +0.8968787 0.9576028 0.9125621 +0.9125621 0.9576028 0.9125621 +0.9278974 0.9576028 0.9125621 +0.9429048 0.9576028 0.9125621 +0.9576028 0.9576028 0.9125621 +0.9720079 0.9576028 0.9125621 +0.9861357 0.9576028 0.9125621 +1 0.9576028 0.9125621 +0 0.9720079 0.9125621 +0.1939468 0.9720079 0.9125621 +0.2773041 0.9720079 0.9125621 +0.3384659 0.9720079 0.9125621 +0.3885728 0.9720079 0.9125621 +0.4317928 0.9720079 0.9125621 +0.470214 0.9720079 0.9125621 +0.5050551 0.9720079 0.9125621 +0.5370987 0.9720079 0.9125621 +0.5668815 0.9720079 0.9125621 +0.5947903 0.9720079 0.9125621 +0.6211144 0.9720079 0.9125621 +0.6460766 0.9720079 0.9125621 +0.6698526 0.9720079 0.9125621 +0.6925839 0.9720079 0.9125621 +0.7143866 0.9720079 0.9125621 +0.7353569 0.9720079 0.9125621 +0.7555758 0.9720079 0.9125621 +0.7751122 0.9720079 0.9125621 +0.7940252 0.9720079 0.9125621 +0.8123661 0.9720079 0.9125621 +0.8301795 0.9720079 0.9125621 +0.8475045 0.9720079 0.9125621 +0.8643761 0.9720079 0.9125621 +0.880825 0.9720079 0.9125621 +0.8968787 0.9720079 0.9125621 +0.9125621 0.9720079 0.9125621 +0.9278974 0.9720079 0.9125621 +0.9429048 0.9720079 0.9125621 +0.9576028 0.9720079 0.9125621 +0.9720079 0.9720079 0.9125621 +0.9861357 0.9720079 0.9125621 +1 0.9720079 0.9125621 +0 0.9861357 0.9125621 +0.1939468 0.9861357 0.9125621 +0.2773041 0.9861357 0.9125621 +0.3384659 0.9861357 0.9125621 +0.3885728 0.9861357 0.9125621 +0.4317928 0.9861357 0.9125621 +0.470214 0.9861357 0.9125621 +0.5050551 0.9861357 0.9125621 +0.5370987 0.9861357 0.9125621 +0.5668815 0.9861357 0.9125621 +0.5947903 0.9861357 0.9125621 +0.6211144 0.9861357 0.9125621 +0.6460766 0.9861357 0.9125621 +0.6698526 0.9861357 0.9125621 +0.6925839 0.9861357 0.9125621 +0.7143866 0.9861357 0.9125621 +0.7353569 0.9861357 0.9125621 +0.7555758 0.9861357 0.9125621 +0.7751122 0.9861357 0.9125621 +0.7940252 0.9861357 0.9125621 +0.8123661 0.9861357 0.9125621 +0.8301795 0.9861357 0.9125621 +0.8475045 0.9861357 0.9125621 +0.8643761 0.9861357 0.9125621 +0.880825 0.9861357 0.9125621 +0.8968787 0.9861357 0.9125621 +0.9125621 0.9861357 0.9125621 +0.9278974 0.9861357 0.9125621 +0.9429048 0.9861357 0.9125621 +0.9576028 0.9861357 0.9125621 +0.9720079 0.9861357 0.9125621 +0.9861357 0.9861357 0.9125621 +1 0.9861357 0.9125621 +0 1 0.9125621 +0.1939468 1 0.9125621 +0.2773041 1 0.9125621 +0.3384659 1 0.9125621 +0.3885728 1 0.9125621 +0.4317928 1 0.9125621 +0.470214 1 0.9125621 +0.5050551 1 0.9125621 +0.5370987 1 0.9125621 +0.5668815 1 0.9125621 +0.5947903 1 0.9125621 +0.6211144 1 0.9125621 +0.6460766 1 0.9125621 +0.6698526 1 0.9125621 +0.6925839 1 0.9125621 +0.7143866 1 0.9125621 +0.7353569 1 0.9125621 +0.7555758 1 0.9125621 +0.7751122 1 0.9125621 +0.7940252 1 0.9125621 +0.8123661 1 0.9125621 +0.8301795 1 0.9125621 +0.8475045 1 0.9125621 +0.8643761 1 0.9125621 +0.880825 1 0.9125621 +0.8968787 1 0.9125621 +0.9125621 1 0.9125621 +0.9278974 1 0.9125621 +0.9429048 1 0.9125621 +0.9576028 1 0.9125621 +0.9720079 1 0.9125621 +0.9861357 1 0.9125621 +1 1 0.9125621 +0 0 0.9278974 +0.1939468 0 0.9278974 +0.2773041 0 0.9278974 +0.3384659 0 0.9278974 +0.3885728 0 0.9278974 +0.4317928 0 0.9278974 +0.470214 0 0.9278974 +0.5050551 0 0.9278974 +0.5370987 0 0.9278974 +0.5668815 0 0.9278974 +0.5947903 0 0.9278974 +0.6211144 0 0.9278974 +0.6460766 0 0.9278974 +0.6698526 0 0.9278974 +0.6925839 0 0.9278974 +0.7143866 0 0.9278974 +0.7353569 0 0.9278974 +0.7555758 0 0.9278974 +0.7751122 0 0.9278974 +0.7940252 0 0.9278974 +0.8123661 0 0.9278974 +0.8301795 0 0.9278974 +0.8475045 0 0.9278974 +0.8643761 0 0.9278974 +0.880825 0 0.9278974 +0.8968787 0 0.9278974 +0.9125621 0 0.9278974 +0.9278974 0 0.9278974 +0.9429048 0 0.9278974 +0.9576028 0 0.9278974 +0.9720079 0 0.9278974 +0.9861357 0 0.9278974 +1 0 0.9278974 +0 0.1939468 0.9278974 +0.1939468 0.1939468 0.9278974 +0.2773041 0.1939468 0.9278974 +0.3384659 0.1939468 0.9278974 +0.3885728 0.1939468 0.9278974 +0.4317928 0.1939468 0.9278974 +0.470214 0.1939468 0.9278974 +0.5050551 0.1939468 0.9278974 +0.5370987 0.1939468 0.9278974 +0.5668815 0.1939468 0.9278974 +0.5947903 0.1939468 0.9278974 +0.6211144 0.1939468 0.9278974 +0.6460766 0.1939468 0.9278974 +0.6698526 0.1939468 0.9278974 +0.6925839 0.1939468 0.9278974 +0.7143866 0.1939468 0.9278974 +0.7353569 0.1939468 0.9278974 +0.7555758 0.1939468 0.9278974 +0.7751122 0.1939468 0.9278974 +0.7940252 0.1939468 0.9278974 +0.8123661 0.1939468 0.9278974 +0.8301795 0.1939468 0.9278974 +0.8475045 0.1939468 0.9278974 +0.8643761 0.1939468 0.9278974 +0.880825 0.1939468 0.9278974 +0.8968787 0.1939468 0.9278974 +0.9125621 0.1939468 0.9278974 +0.9278974 0.1939468 0.9278974 +0.9429048 0.1939468 0.9278974 +0.9576028 0.1939468 0.9278974 +0.9720079 0.1939468 0.9278974 +0.9861357 0.1939468 0.9278974 +1 0.1939468 0.9278974 +0 0.2773041 0.9278974 +0.1939468 0.2773041 0.9278974 +0.2773041 0.2773041 0.9278974 +0.3384659 0.2773041 0.9278974 +0.3885728 0.2773041 0.9278974 +0.4317928 0.2773041 0.9278974 +0.470214 0.2773041 0.9278974 +0.5050551 0.2773041 0.9278974 +0.5370987 0.2773041 0.9278974 +0.5668815 0.2773041 0.9278974 +0.5947903 0.2773041 0.9278974 +0.6211144 0.2773041 0.9278974 +0.6460766 0.2773041 0.9278974 +0.6698526 0.2773041 0.9278974 +0.6925839 0.2773041 0.9278974 +0.7143866 0.2773041 0.9278974 +0.7353569 0.2773041 0.9278974 +0.7555758 0.2773041 0.9278974 +0.7751122 0.2773041 0.9278974 +0.7940252 0.2773041 0.9278974 +0.8123661 0.2773041 0.9278974 +0.8301795 0.2773041 0.9278974 +0.8475045 0.2773041 0.9278974 +0.8643761 0.2773041 0.9278974 +0.880825 0.2773041 0.9278974 +0.8968787 0.2773041 0.9278974 +0.9125621 0.2773041 0.9278974 +0.9278974 0.2773041 0.9278974 +0.9429048 0.2773041 0.9278974 +0.9576028 0.2773041 0.9278974 +0.9720079 0.2773041 0.9278974 +0.9861357 0.2773041 0.9278974 +1 0.2773041 0.9278974 +0 0.3384659 0.9278974 +0.1939468 0.3384659 0.9278974 +0.2773041 0.3384659 0.9278974 +0.3384659 0.3384659 0.9278974 +0.3885728 0.3384659 0.9278974 +0.4317928 0.3384659 0.9278974 +0.470214 0.3384659 0.9278974 +0.5050551 0.3384659 0.9278974 +0.5370987 0.3384659 0.9278974 +0.5668815 0.3384659 0.9278974 +0.5947903 0.3384659 0.9278974 +0.6211144 0.3384659 0.9278974 +0.6460766 0.3384659 0.9278974 +0.6698526 0.3384659 0.9278974 +0.6925839 0.3384659 0.9278974 +0.7143866 0.3384659 0.9278974 +0.7353569 0.3384659 0.9278974 +0.7555758 0.3384659 0.9278974 +0.7751122 0.3384659 0.9278974 +0.7940252 0.3384659 0.9278974 +0.8123661 0.3384659 0.9278974 +0.8301795 0.3384659 0.9278974 +0.8475045 0.3384659 0.9278974 +0.8643761 0.3384659 0.9278974 +0.880825 0.3384659 0.9278974 +0.8968787 0.3384659 0.9278974 +0.9125621 0.3384659 0.9278974 +0.9278974 0.3384659 0.9278974 +0.9429048 0.3384659 0.9278974 +0.9576028 0.3384659 0.9278974 +0.9720079 0.3384659 0.9278974 +0.9861357 0.3384659 0.9278974 +1 0.3384659 0.9278974 +0 0.3885728 0.9278974 +0.1939468 0.3885728 0.9278974 +0.2773041 0.3885728 0.9278974 +0.3384659 0.3885728 0.9278974 +0.3885728 0.3885728 0.9278974 +0.4317928 0.3885728 0.9278974 +0.470214 0.3885728 0.9278974 +0.5050551 0.3885728 0.9278974 +0.5370987 0.3885728 0.9278974 +0.5668815 0.3885728 0.9278974 +0.5947903 0.3885728 0.9278974 +0.6211144 0.3885728 0.9278974 +0.6460766 0.3885728 0.9278974 +0.6698526 0.3885728 0.9278974 +0.6925839 0.3885728 0.9278974 +0.7143866 0.3885728 0.9278974 +0.7353569 0.3885728 0.9278974 +0.7555758 0.3885728 0.9278974 +0.7751122 0.3885728 0.9278974 +0.7940252 0.3885728 0.9278974 +0.8123661 0.3885728 0.9278974 +0.8301795 0.3885728 0.9278974 +0.8475045 0.3885728 0.9278974 +0.8643761 0.3885728 0.9278974 +0.880825 0.3885728 0.9278974 +0.8968787 0.3885728 0.9278974 +0.9125621 0.3885728 0.9278974 +0.9278974 0.3885728 0.9278974 +0.9429048 0.3885728 0.9278974 +0.9576028 0.3885728 0.9278974 +0.9720079 0.3885728 0.9278974 +0.9861357 0.3885728 0.9278974 +1 0.3885728 0.9278974 +0 0.4317928 0.9278974 +0.1939468 0.4317928 0.9278974 +0.2773041 0.4317928 0.9278974 +0.3384659 0.4317928 0.9278974 +0.3885728 0.4317928 0.9278974 +0.4317928 0.4317928 0.9278974 +0.470214 0.4317928 0.9278974 +0.5050551 0.4317928 0.9278974 +0.5370987 0.4317928 0.9278974 +0.5668815 0.4317928 0.9278974 +0.5947903 0.4317928 0.9278974 +0.6211144 0.4317928 0.9278974 +0.6460766 0.4317928 0.9278974 +0.6698526 0.4317928 0.9278974 +0.6925839 0.4317928 0.9278974 +0.7143866 0.4317928 0.9278974 +0.7353569 0.4317928 0.9278974 +0.7555758 0.4317928 0.9278974 +0.7751122 0.4317928 0.9278974 +0.7940252 0.4317928 0.9278974 +0.8123661 0.4317928 0.9278974 +0.8301795 0.4317928 0.9278974 +0.8475045 0.4317928 0.9278974 +0.8643761 0.4317928 0.9278974 +0.880825 0.4317928 0.9278974 +0.8968787 0.4317928 0.9278974 +0.9125621 0.4317928 0.9278974 +0.9278974 0.4317928 0.9278974 +0.9429048 0.4317928 0.9278974 +0.9576028 0.4317928 0.9278974 +0.9720079 0.4317928 0.9278974 +0.9861357 0.4317928 0.9278974 +1 0.4317928 0.9278974 +0 0.470214 0.9278974 +0.1939468 0.470214 0.9278974 +0.2773041 0.470214 0.9278974 +0.3384659 0.470214 0.9278974 +0.3885728 0.470214 0.9278974 +0.4317928 0.470214 0.9278974 +0.470214 0.470214 0.9278974 +0.5050551 0.470214 0.9278974 +0.5370987 0.470214 0.9278974 +0.5668815 0.470214 0.9278974 +0.5947903 0.470214 0.9278974 +0.6211144 0.470214 0.9278974 +0.6460766 0.470214 0.9278974 +0.6698526 0.470214 0.9278974 +0.6925839 0.470214 0.9278974 +0.7143866 0.470214 0.9278974 +0.7353569 0.470214 0.9278974 +0.7555758 0.470214 0.9278974 +0.7751122 0.470214 0.9278974 +0.7940252 0.470214 0.9278974 +0.8123661 0.470214 0.9278974 +0.8301795 0.470214 0.9278974 +0.8475045 0.470214 0.9278974 +0.8643761 0.470214 0.9278974 +0.880825 0.470214 0.9278974 +0.8968787 0.470214 0.9278974 +0.9125621 0.470214 0.9278974 +0.9278974 0.470214 0.9278974 +0.9429048 0.470214 0.9278974 +0.9576028 0.470214 0.9278974 +0.9720079 0.470214 0.9278974 +0.9861357 0.470214 0.9278974 +1 0.470214 0.9278974 +0 0.5050551 0.9278974 +0.1939468 0.5050551 0.9278974 +0.2773041 0.5050551 0.9278974 +0.3384659 0.5050551 0.9278974 +0.3885728 0.5050551 0.9278974 +0.4317928 0.5050551 0.9278974 +0.470214 0.5050551 0.9278974 +0.5050551 0.5050551 0.9278974 +0.5370987 0.5050551 0.9278974 +0.5668815 0.5050551 0.9278974 +0.5947903 0.5050551 0.9278974 +0.6211144 0.5050551 0.9278974 +0.6460766 0.5050551 0.9278974 +0.6698526 0.5050551 0.9278974 +0.6925839 0.5050551 0.9278974 +0.7143866 0.5050551 0.9278974 +0.7353569 0.5050551 0.9278974 +0.7555758 0.5050551 0.9278974 +0.7751122 0.5050551 0.9278974 +0.7940252 0.5050551 0.9278974 +0.8123661 0.5050551 0.9278974 +0.8301795 0.5050551 0.9278974 +0.8475045 0.5050551 0.9278974 +0.8643761 0.5050551 0.9278974 +0.880825 0.5050551 0.9278974 +0.8968787 0.5050551 0.9278974 +0.9125621 0.5050551 0.9278974 +0.9278974 0.5050551 0.9278974 +0.9429048 0.5050551 0.9278974 +0.9576028 0.5050551 0.9278974 +0.9720079 0.5050551 0.9278974 +0.9861357 0.5050551 0.9278974 +1 0.5050551 0.9278974 +0 0.5370987 0.9278974 +0.1939468 0.5370987 0.9278974 +0.2773041 0.5370987 0.9278974 +0.3384659 0.5370987 0.9278974 +0.3885728 0.5370987 0.9278974 +0.4317928 0.5370987 0.9278974 +0.470214 0.5370987 0.9278974 +0.5050551 0.5370987 0.9278974 +0.5370987 0.5370987 0.9278974 +0.5668815 0.5370987 0.9278974 +0.5947903 0.5370987 0.9278974 +0.6211144 0.5370987 0.9278974 +0.6460766 0.5370987 0.9278974 +0.6698526 0.5370987 0.9278974 +0.6925839 0.5370987 0.9278974 +0.7143866 0.5370987 0.9278974 +0.7353569 0.5370987 0.9278974 +0.7555758 0.5370987 0.9278974 +0.7751122 0.5370987 0.9278974 +0.7940252 0.5370987 0.9278974 +0.8123661 0.5370987 0.9278974 +0.8301795 0.5370987 0.9278974 +0.8475045 0.5370987 0.9278974 +0.8643761 0.5370987 0.9278974 +0.880825 0.5370987 0.9278974 +0.8968787 0.5370987 0.9278974 +0.9125621 0.5370987 0.9278974 +0.9278974 0.5370987 0.9278974 +0.9429048 0.5370987 0.9278974 +0.9576028 0.5370987 0.9278974 +0.9720079 0.5370987 0.9278974 +0.9861357 0.5370987 0.9278974 +1 0.5370987 0.9278974 +0 0.5668815 0.9278974 +0.1939468 0.5668815 0.9278974 +0.2773041 0.5668815 0.9278974 +0.3384659 0.5668815 0.9278974 +0.3885728 0.5668815 0.9278974 +0.4317928 0.5668815 0.9278974 +0.470214 0.5668815 0.9278974 +0.5050551 0.5668815 0.9278974 +0.5370987 0.5668815 0.9278974 +0.5668815 0.5668815 0.9278974 +0.5947903 0.5668815 0.9278974 +0.6211144 0.5668815 0.9278974 +0.6460766 0.5668815 0.9278974 +0.6698526 0.5668815 0.9278974 +0.6925839 0.5668815 0.9278974 +0.7143866 0.5668815 0.9278974 +0.7353569 0.5668815 0.9278974 +0.7555758 0.5668815 0.9278974 +0.7751122 0.5668815 0.9278974 +0.7940252 0.5668815 0.9278974 +0.8123661 0.5668815 0.9278974 +0.8301795 0.5668815 0.9278974 +0.8475045 0.5668815 0.9278974 +0.8643761 0.5668815 0.9278974 +0.880825 0.5668815 0.9278974 +0.8968787 0.5668815 0.9278974 +0.9125621 0.5668815 0.9278974 +0.9278974 0.5668815 0.9278974 +0.9429048 0.5668815 0.9278974 +0.9576028 0.5668815 0.9278974 +0.9720079 0.5668815 0.9278974 +0.9861357 0.5668815 0.9278974 +1 0.5668815 0.9278974 +0 0.5947903 0.9278974 +0.1939468 0.5947903 0.9278974 +0.2773041 0.5947903 0.9278974 +0.3384659 0.5947903 0.9278974 +0.3885728 0.5947903 0.9278974 +0.4317928 0.5947903 0.9278974 +0.470214 0.5947903 0.9278974 +0.5050551 0.5947903 0.9278974 +0.5370987 0.5947903 0.9278974 +0.5668815 0.5947903 0.9278974 +0.5947903 0.5947903 0.9278974 +0.6211144 0.5947903 0.9278974 +0.6460766 0.5947903 0.9278974 +0.6698526 0.5947903 0.9278974 +0.6925839 0.5947903 0.9278974 +0.7143866 0.5947903 0.9278974 +0.7353569 0.5947903 0.9278974 +0.7555758 0.5947903 0.9278974 +0.7751122 0.5947903 0.9278974 +0.7940252 0.5947903 0.9278974 +0.8123661 0.5947903 0.9278974 +0.8301795 0.5947903 0.9278974 +0.8475045 0.5947903 0.9278974 +0.8643761 0.5947903 0.9278974 +0.880825 0.5947903 0.9278974 +0.8968787 0.5947903 0.9278974 +0.9125621 0.5947903 0.9278974 +0.9278974 0.5947903 0.9278974 +0.9429048 0.5947903 0.9278974 +0.9576028 0.5947903 0.9278974 +0.9720079 0.5947903 0.9278974 +0.9861357 0.5947903 0.9278974 +1 0.5947903 0.9278974 +0 0.6211144 0.9278974 +0.1939468 0.6211144 0.9278974 +0.2773041 0.6211144 0.9278974 +0.3384659 0.6211144 0.9278974 +0.3885728 0.6211144 0.9278974 +0.4317928 0.6211144 0.9278974 +0.470214 0.6211144 0.9278974 +0.5050551 0.6211144 0.9278974 +0.5370987 0.6211144 0.9278974 +0.5668815 0.6211144 0.9278974 +0.5947903 0.6211144 0.9278974 +0.6211144 0.6211144 0.9278974 +0.6460766 0.6211144 0.9278974 +0.6698526 0.6211144 0.9278974 +0.6925839 0.6211144 0.9278974 +0.7143866 0.6211144 0.9278974 +0.7353569 0.6211144 0.9278974 +0.7555758 0.6211144 0.9278974 +0.7751122 0.6211144 0.9278974 +0.7940252 0.6211144 0.9278974 +0.8123661 0.6211144 0.9278974 +0.8301795 0.6211144 0.9278974 +0.8475045 0.6211144 0.9278974 +0.8643761 0.6211144 0.9278974 +0.880825 0.6211144 0.9278974 +0.8968787 0.6211144 0.9278974 +0.9125621 0.6211144 0.9278974 +0.9278974 0.6211144 0.9278974 +0.9429048 0.6211144 0.9278974 +0.9576028 0.6211144 0.9278974 +0.9720079 0.6211144 0.9278974 +0.9861357 0.6211144 0.9278974 +1 0.6211144 0.9278974 +0 0.6460766 0.9278974 +0.1939468 0.6460766 0.9278974 +0.2773041 0.6460766 0.9278974 +0.3384659 0.6460766 0.9278974 +0.3885728 0.6460766 0.9278974 +0.4317928 0.6460766 0.9278974 +0.470214 0.6460766 0.9278974 +0.5050551 0.6460766 0.9278974 +0.5370987 0.6460766 0.9278974 +0.5668815 0.6460766 0.9278974 +0.5947903 0.6460766 0.9278974 +0.6211144 0.6460766 0.9278974 +0.6460766 0.6460766 0.9278974 +0.6698526 0.6460766 0.9278974 +0.6925839 0.6460766 0.9278974 +0.7143866 0.6460766 0.9278974 +0.7353569 0.6460766 0.9278974 +0.7555758 0.6460766 0.9278974 +0.7751122 0.6460766 0.9278974 +0.7940252 0.6460766 0.9278974 +0.8123661 0.6460766 0.9278974 +0.8301795 0.6460766 0.9278974 +0.8475045 0.6460766 0.9278974 +0.8643761 0.6460766 0.9278974 +0.880825 0.6460766 0.9278974 +0.8968787 0.6460766 0.9278974 +0.9125621 0.6460766 0.9278974 +0.9278974 0.6460766 0.9278974 +0.9429048 0.6460766 0.9278974 +0.9576028 0.6460766 0.9278974 +0.9720079 0.6460766 0.9278974 +0.9861357 0.6460766 0.9278974 +1 0.6460766 0.9278974 +0 0.6698526 0.9278974 +0.1939468 0.6698526 0.9278974 +0.2773041 0.6698526 0.9278974 +0.3384659 0.6698526 0.9278974 +0.3885728 0.6698526 0.9278974 +0.4317928 0.6698526 0.9278974 +0.470214 0.6698526 0.9278974 +0.5050551 0.6698526 0.9278974 +0.5370987 0.6698526 0.9278974 +0.5668815 0.6698526 0.9278974 +0.5947903 0.6698526 0.9278974 +0.6211144 0.6698526 0.9278974 +0.6460766 0.6698526 0.9278974 +0.6698526 0.6698526 0.9278974 +0.6925839 0.6698526 0.9278974 +0.7143866 0.6698526 0.9278974 +0.7353569 0.6698526 0.9278974 +0.7555758 0.6698526 0.9278974 +0.7751122 0.6698526 0.9278974 +0.7940252 0.6698526 0.9278974 +0.8123661 0.6698526 0.9278974 +0.8301795 0.6698526 0.9278974 +0.8475045 0.6698526 0.9278974 +0.8643761 0.6698526 0.9278974 +0.880825 0.6698526 0.9278974 +0.8968787 0.6698526 0.9278974 +0.9125621 0.6698526 0.9278974 +0.9278974 0.6698526 0.9278974 +0.9429048 0.6698526 0.9278974 +0.9576028 0.6698526 0.9278974 +0.9720079 0.6698526 0.9278974 +0.9861357 0.6698526 0.9278974 +1 0.6698526 0.9278974 +0 0.6925839 0.9278974 +0.1939468 0.6925839 0.9278974 +0.2773041 0.6925839 0.9278974 +0.3384659 0.6925839 0.9278974 +0.3885728 0.6925839 0.9278974 +0.4317928 0.6925839 0.9278974 +0.470214 0.6925839 0.9278974 +0.5050551 0.6925839 0.9278974 +0.5370987 0.6925839 0.9278974 +0.5668815 0.6925839 0.9278974 +0.5947903 0.6925839 0.9278974 +0.6211144 0.6925839 0.9278974 +0.6460766 0.6925839 0.9278974 +0.6698526 0.6925839 0.9278974 +0.6925839 0.6925839 0.9278974 +0.7143866 0.6925839 0.9278974 +0.7353569 0.6925839 0.9278974 +0.7555758 0.6925839 0.9278974 +0.7751122 0.6925839 0.9278974 +0.7940252 0.6925839 0.9278974 +0.8123661 0.6925839 0.9278974 +0.8301795 0.6925839 0.9278974 +0.8475045 0.6925839 0.9278974 +0.8643761 0.6925839 0.9278974 +0.880825 0.6925839 0.9278974 +0.8968787 0.6925839 0.9278974 +0.9125621 0.6925839 0.9278974 +0.9278974 0.6925839 0.9278974 +0.9429048 0.6925839 0.9278974 +0.9576028 0.6925839 0.9278974 +0.9720079 0.6925839 0.9278974 +0.9861357 0.6925839 0.9278974 +1 0.6925839 0.9278974 +0 0.7143866 0.9278974 +0.1939468 0.7143866 0.9278974 +0.2773041 0.7143866 0.9278974 +0.3384659 0.7143866 0.9278974 +0.3885728 0.7143866 0.9278974 +0.4317928 0.7143866 0.9278974 +0.470214 0.7143866 0.9278974 +0.5050551 0.7143866 0.9278974 +0.5370987 0.7143866 0.9278974 +0.5668815 0.7143866 0.9278974 +0.5947903 0.7143866 0.9278974 +0.6211144 0.7143866 0.9278974 +0.6460766 0.7143866 0.9278974 +0.6698526 0.7143866 0.9278974 +0.6925839 0.7143866 0.9278974 +0.7143866 0.7143866 0.9278974 +0.7353569 0.7143866 0.9278974 +0.7555758 0.7143866 0.9278974 +0.7751122 0.7143866 0.9278974 +0.7940252 0.7143866 0.9278974 +0.8123661 0.7143866 0.9278974 +0.8301795 0.7143866 0.9278974 +0.8475045 0.7143866 0.9278974 +0.8643761 0.7143866 0.9278974 +0.880825 0.7143866 0.9278974 +0.8968787 0.7143866 0.9278974 +0.9125621 0.7143866 0.9278974 +0.9278974 0.7143866 0.9278974 +0.9429048 0.7143866 0.9278974 +0.9576028 0.7143866 0.9278974 +0.9720079 0.7143866 0.9278974 +0.9861357 0.7143866 0.9278974 +1 0.7143866 0.9278974 +0 0.7353569 0.9278974 +0.1939468 0.7353569 0.9278974 +0.2773041 0.7353569 0.9278974 +0.3384659 0.7353569 0.9278974 +0.3885728 0.7353569 0.9278974 +0.4317928 0.7353569 0.9278974 +0.470214 0.7353569 0.9278974 +0.5050551 0.7353569 0.9278974 +0.5370987 0.7353569 0.9278974 +0.5668815 0.7353569 0.9278974 +0.5947903 0.7353569 0.9278974 +0.6211144 0.7353569 0.9278974 +0.6460766 0.7353569 0.9278974 +0.6698526 0.7353569 0.9278974 +0.6925839 0.7353569 0.9278974 +0.7143866 0.7353569 0.9278974 +0.7353569 0.7353569 0.9278974 +0.7555758 0.7353569 0.9278974 +0.7751122 0.7353569 0.9278974 +0.7940252 0.7353569 0.9278974 +0.8123661 0.7353569 0.9278974 +0.8301795 0.7353569 0.9278974 +0.8475045 0.7353569 0.9278974 +0.8643761 0.7353569 0.9278974 +0.880825 0.7353569 0.9278974 +0.8968787 0.7353569 0.9278974 +0.9125621 0.7353569 0.9278974 +0.9278974 0.7353569 0.9278974 +0.9429048 0.7353569 0.9278974 +0.9576028 0.7353569 0.9278974 +0.9720079 0.7353569 0.9278974 +0.9861357 0.7353569 0.9278974 +1 0.7353569 0.9278974 +0 0.7555758 0.9278974 +0.1939468 0.7555758 0.9278974 +0.2773041 0.7555758 0.9278974 +0.3384659 0.7555758 0.9278974 +0.3885728 0.7555758 0.9278974 +0.4317928 0.7555758 0.9278974 +0.470214 0.7555758 0.9278974 +0.5050551 0.7555758 0.9278974 +0.5370987 0.7555758 0.9278974 +0.5668815 0.7555758 0.9278974 +0.5947903 0.7555758 0.9278974 +0.6211144 0.7555758 0.9278974 +0.6460766 0.7555758 0.9278974 +0.6698526 0.7555758 0.9278974 +0.6925839 0.7555758 0.9278974 +0.7143866 0.7555758 0.9278974 +0.7353569 0.7555758 0.9278974 +0.7555758 0.7555758 0.9278974 +0.7751122 0.7555758 0.9278974 +0.7940252 0.7555758 0.9278974 +0.8123661 0.7555758 0.9278974 +0.8301795 0.7555758 0.9278974 +0.8475045 0.7555758 0.9278974 +0.8643761 0.7555758 0.9278974 +0.880825 0.7555758 0.9278974 +0.8968787 0.7555758 0.9278974 +0.9125621 0.7555758 0.9278974 +0.9278974 0.7555758 0.9278974 +0.9429048 0.7555758 0.9278974 +0.9576028 0.7555758 0.9278974 +0.9720079 0.7555758 0.9278974 +0.9861357 0.7555758 0.9278974 +1 0.7555758 0.9278974 +0 0.7751122 0.9278974 +0.1939468 0.7751122 0.9278974 +0.2773041 0.7751122 0.9278974 +0.3384659 0.7751122 0.9278974 +0.3885728 0.7751122 0.9278974 +0.4317928 0.7751122 0.9278974 +0.470214 0.7751122 0.9278974 +0.5050551 0.7751122 0.9278974 +0.5370987 0.7751122 0.9278974 +0.5668815 0.7751122 0.9278974 +0.5947903 0.7751122 0.9278974 +0.6211144 0.7751122 0.9278974 +0.6460766 0.7751122 0.9278974 +0.6698526 0.7751122 0.9278974 +0.6925839 0.7751122 0.9278974 +0.7143866 0.7751122 0.9278974 +0.7353569 0.7751122 0.9278974 +0.7555758 0.7751122 0.9278974 +0.7751122 0.7751122 0.9278974 +0.7940252 0.7751122 0.9278974 +0.8123661 0.7751122 0.9278974 +0.8301795 0.7751122 0.9278974 +0.8475045 0.7751122 0.9278974 +0.8643761 0.7751122 0.9278974 +0.880825 0.7751122 0.9278974 +0.8968787 0.7751122 0.9278974 +0.9125621 0.7751122 0.9278974 +0.9278974 0.7751122 0.9278974 +0.9429048 0.7751122 0.9278974 +0.9576028 0.7751122 0.9278974 +0.9720079 0.7751122 0.9278974 +0.9861357 0.7751122 0.9278974 +1 0.7751122 0.9278974 +0 0.7940252 0.9278974 +0.1939468 0.7940252 0.9278974 +0.2773041 0.7940252 0.9278974 +0.3384659 0.7940252 0.9278974 +0.3885728 0.7940252 0.9278974 +0.4317928 0.7940252 0.9278974 +0.470214 0.7940252 0.9278974 +0.5050551 0.7940252 0.9278974 +0.5370987 0.7940252 0.9278974 +0.5668815 0.7940252 0.9278974 +0.5947903 0.7940252 0.9278974 +0.6211144 0.7940252 0.9278974 +0.6460766 0.7940252 0.9278974 +0.6698526 0.7940252 0.9278974 +0.6925839 0.7940252 0.9278974 +0.7143866 0.7940252 0.9278974 +0.7353569 0.7940252 0.9278974 +0.7555758 0.7940252 0.9278974 +0.7751122 0.7940252 0.9278974 +0.7940252 0.7940252 0.9278974 +0.8123661 0.7940252 0.9278974 +0.8301795 0.7940252 0.9278974 +0.8475045 0.7940252 0.9278974 +0.8643761 0.7940252 0.9278974 +0.880825 0.7940252 0.9278974 +0.8968787 0.7940252 0.9278974 +0.9125621 0.7940252 0.9278974 +0.9278974 0.7940252 0.9278974 +0.9429048 0.7940252 0.9278974 +0.9576028 0.7940252 0.9278974 +0.9720079 0.7940252 0.9278974 +0.9861357 0.7940252 0.9278974 +1 0.7940252 0.9278974 +0 0.8123661 0.9278974 +0.1939468 0.8123661 0.9278974 +0.2773041 0.8123661 0.9278974 +0.3384659 0.8123661 0.9278974 +0.3885728 0.8123661 0.9278974 +0.4317928 0.8123661 0.9278974 +0.470214 0.8123661 0.9278974 +0.5050551 0.8123661 0.9278974 +0.5370987 0.8123661 0.9278974 +0.5668815 0.8123661 0.9278974 +0.5947903 0.8123661 0.9278974 +0.6211144 0.8123661 0.9278974 +0.6460766 0.8123661 0.9278974 +0.6698526 0.8123661 0.9278974 +0.6925839 0.8123661 0.9278974 +0.7143866 0.8123661 0.9278974 +0.7353569 0.8123661 0.9278974 +0.7555758 0.8123661 0.9278974 +0.7751122 0.8123661 0.9278974 +0.7940252 0.8123661 0.9278974 +0.8123661 0.8123661 0.9278974 +0.8301795 0.8123661 0.9278974 +0.8475045 0.8123661 0.9278974 +0.8643761 0.8123661 0.9278974 +0.880825 0.8123661 0.9278974 +0.8968787 0.8123661 0.9278974 +0.9125621 0.8123661 0.9278974 +0.9278974 0.8123661 0.9278974 +0.9429048 0.8123661 0.9278974 +0.9576028 0.8123661 0.9278974 +0.9720079 0.8123661 0.9278974 +0.9861357 0.8123661 0.9278974 +1 0.8123661 0.9278974 +0 0.8301795 0.9278974 +0.1939468 0.8301795 0.9278974 +0.2773041 0.8301795 0.9278974 +0.3384659 0.8301795 0.9278974 +0.3885728 0.8301795 0.9278974 +0.4317928 0.8301795 0.9278974 +0.470214 0.8301795 0.9278974 +0.5050551 0.8301795 0.9278974 +0.5370987 0.8301795 0.9278974 +0.5668815 0.8301795 0.9278974 +0.5947903 0.8301795 0.9278974 +0.6211144 0.8301795 0.9278974 +0.6460766 0.8301795 0.9278974 +0.6698526 0.8301795 0.9278974 +0.6925839 0.8301795 0.9278974 +0.7143866 0.8301795 0.9278974 +0.7353569 0.8301795 0.9278974 +0.7555758 0.8301795 0.9278974 +0.7751122 0.8301795 0.9278974 +0.7940252 0.8301795 0.9278974 +0.8123661 0.8301795 0.9278974 +0.8301795 0.8301795 0.9278974 +0.8475045 0.8301795 0.9278974 +0.8643761 0.8301795 0.9278974 +0.880825 0.8301795 0.9278974 +0.8968787 0.8301795 0.9278974 +0.9125621 0.8301795 0.9278974 +0.9278974 0.8301795 0.9278974 +0.9429048 0.8301795 0.9278974 +0.9576028 0.8301795 0.9278974 +0.9720079 0.8301795 0.9278974 +0.9861357 0.8301795 0.9278974 +1 0.8301795 0.9278974 +0 0.8475045 0.9278974 +0.1939468 0.8475045 0.9278974 +0.2773041 0.8475045 0.9278974 +0.3384659 0.8475045 0.9278974 +0.3885728 0.8475045 0.9278974 +0.4317928 0.8475045 0.9278974 +0.470214 0.8475045 0.9278974 +0.5050551 0.8475045 0.9278974 +0.5370987 0.8475045 0.9278974 +0.5668815 0.8475045 0.9278974 +0.5947903 0.8475045 0.9278974 +0.6211144 0.8475045 0.9278974 +0.6460766 0.8475045 0.9278974 +0.6698526 0.8475045 0.9278974 +0.6925839 0.8475045 0.9278974 +0.7143866 0.8475045 0.9278974 +0.7353569 0.8475045 0.9278974 +0.7555758 0.8475045 0.9278974 +0.7751122 0.8475045 0.9278974 +0.7940252 0.8475045 0.9278974 +0.8123661 0.8475045 0.9278974 +0.8301795 0.8475045 0.9278974 +0.8475045 0.8475045 0.9278974 +0.8643761 0.8475045 0.9278974 +0.880825 0.8475045 0.9278974 +0.8968787 0.8475045 0.9278974 +0.9125621 0.8475045 0.9278974 +0.9278974 0.8475045 0.9278974 +0.9429048 0.8475045 0.9278974 +0.9576028 0.8475045 0.9278974 +0.9720079 0.8475045 0.9278974 +0.9861357 0.8475045 0.9278974 +1 0.8475045 0.9278974 +0 0.8643761 0.9278974 +0.1939468 0.8643761 0.9278974 +0.2773041 0.8643761 0.9278974 +0.3384659 0.8643761 0.9278974 +0.3885728 0.8643761 0.9278974 +0.4317928 0.8643761 0.9278974 +0.470214 0.8643761 0.9278974 +0.5050551 0.8643761 0.9278974 +0.5370987 0.8643761 0.9278974 +0.5668815 0.8643761 0.9278974 +0.5947903 0.8643761 0.9278974 +0.6211144 0.8643761 0.9278974 +0.6460766 0.8643761 0.9278974 +0.6698526 0.8643761 0.9278974 +0.6925839 0.8643761 0.9278974 +0.7143866 0.8643761 0.9278974 +0.7353569 0.8643761 0.9278974 +0.7555758 0.8643761 0.9278974 +0.7751122 0.8643761 0.9278974 +0.7940252 0.8643761 0.9278974 +0.8123661 0.8643761 0.9278974 +0.8301795 0.8643761 0.9278974 +0.8475045 0.8643761 0.9278974 +0.8643761 0.8643761 0.9278974 +0.880825 0.8643761 0.9278974 +0.8968787 0.8643761 0.9278974 +0.9125621 0.8643761 0.9278974 +0.9278974 0.8643761 0.9278974 +0.9429048 0.8643761 0.9278974 +0.9576028 0.8643761 0.9278974 +0.9720079 0.8643761 0.9278974 +0.9861357 0.8643761 0.9278974 +1 0.8643761 0.9278974 +0 0.880825 0.9278974 +0.1939468 0.880825 0.9278974 +0.2773041 0.880825 0.9278974 +0.3384659 0.880825 0.9278974 +0.3885728 0.880825 0.9278974 +0.4317928 0.880825 0.9278974 +0.470214 0.880825 0.9278974 +0.5050551 0.880825 0.9278974 +0.5370987 0.880825 0.9278974 +0.5668815 0.880825 0.9278974 +0.5947903 0.880825 0.9278974 +0.6211144 0.880825 0.9278974 +0.6460766 0.880825 0.9278974 +0.6698526 0.880825 0.9278974 +0.6925839 0.880825 0.9278974 +0.7143866 0.880825 0.9278974 +0.7353569 0.880825 0.9278974 +0.7555758 0.880825 0.9278974 +0.7751122 0.880825 0.9278974 +0.7940252 0.880825 0.9278974 +0.8123661 0.880825 0.9278974 +0.8301795 0.880825 0.9278974 +0.8475045 0.880825 0.9278974 +0.8643761 0.880825 0.9278974 +0.880825 0.880825 0.9278974 +0.8968787 0.880825 0.9278974 +0.9125621 0.880825 0.9278974 +0.9278974 0.880825 0.9278974 +0.9429048 0.880825 0.9278974 +0.9576028 0.880825 0.9278974 +0.9720079 0.880825 0.9278974 +0.9861357 0.880825 0.9278974 +1 0.880825 0.9278974 +0 0.8968787 0.9278974 +0.1939468 0.8968787 0.9278974 +0.2773041 0.8968787 0.9278974 +0.3384659 0.8968787 0.9278974 +0.3885728 0.8968787 0.9278974 +0.4317928 0.8968787 0.9278974 +0.470214 0.8968787 0.9278974 +0.5050551 0.8968787 0.9278974 +0.5370987 0.8968787 0.9278974 +0.5668815 0.8968787 0.9278974 +0.5947903 0.8968787 0.9278974 +0.6211144 0.8968787 0.9278974 +0.6460766 0.8968787 0.9278974 +0.6698526 0.8968787 0.9278974 +0.6925839 0.8968787 0.9278974 +0.7143866 0.8968787 0.9278974 +0.7353569 0.8968787 0.9278974 +0.7555758 0.8968787 0.9278974 +0.7751122 0.8968787 0.9278974 +0.7940252 0.8968787 0.9278974 +0.8123661 0.8968787 0.9278974 +0.8301795 0.8968787 0.9278974 +0.8475045 0.8968787 0.9278974 +0.8643761 0.8968787 0.9278974 +0.880825 0.8968787 0.9278974 +0.8968787 0.8968787 0.9278974 +0.9125621 0.8968787 0.9278974 +0.9278974 0.8968787 0.9278974 +0.9429048 0.8968787 0.9278974 +0.9576028 0.8968787 0.9278974 +0.9720079 0.8968787 0.9278974 +0.9861357 0.8968787 0.9278974 +1 0.8968787 0.9278974 +0 0.9125621 0.9278974 +0.1939468 0.9125621 0.9278974 +0.2773041 0.9125621 0.9278974 +0.3384659 0.9125621 0.9278974 +0.3885728 0.9125621 0.9278974 +0.4317928 0.9125621 0.9278974 +0.470214 0.9125621 0.9278974 +0.5050551 0.9125621 0.9278974 +0.5370987 0.9125621 0.9278974 +0.5668815 0.9125621 0.9278974 +0.5947903 0.9125621 0.9278974 +0.6211144 0.9125621 0.9278974 +0.6460766 0.9125621 0.9278974 +0.6698526 0.9125621 0.9278974 +0.6925839 0.9125621 0.9278974 +0.7143866 0.9125621 0.9278974 +0.7353569 0.9125621 0.9278974 +0.7555758 0.9125621 0.9278974 +0.7751122 0.9125621 0.9278974 +0.7940252 0.9125621 0.9278974 +0.8123661 0.9125621 0.9278974 +0.8301795 0.9125621 0.9278974 +0.8475045 0.9125621 0.9278974 +0.8643761 0.9125621 0.9278974 +0.880825 0.9125621 0.9278974 +0.8968787 0.9125621 0.9278974 +0.9125621 0.9125621 0.9278974 +0.9278974 0.9125621 0.9278974 +0.9429048 0.9125621 0.9278974 +0.9576028 0.9125621 0.9278974 +0.9720079 0.9125621 0.9278974 +0.9861357 0.9125621 0.9278974 +1 0.9125621 0.9278974 +0 0.9278974 0.9278974 +0.1939468 0.9278974 0.9278974 +0.2773041 0.9278974 0.9278974 +0.3384659 0.9278974 0.9278974 +0.3885728 0.9278974 0.9278974 +0.4317928 0.9278974 0.9278974 +0.470214 0.9278974 0.9278974 +0.5050551 0.9278974 0.9278974 +0.5370987 0.9278974 0.9278974 +0.5668815 0.9278974 0.9278974 +0.5947903 0.9278974 0.9278974 +0.6211144 0.9278974 0.9278974 +0.6460766 0.9278974 0.9278974 +0.6698526 0.9278974 0.9278974 +0.6925839 0.9278974 0.9278974 +0.7143866 0.9278974 0.9278974 +0.7353569 0.9278974 0.9278974 +0.7555758 0.9278974 0.9278974 +0.7751122 0.9278974 0.9278974 +0.7940252 0.9278974 0.9278974 +0.8123661 0.9278974 0.9278974 +0.8301795 0.9278974 0.9278974 +0.8475045 0.9278974 0.9278974 +0.8643761 0.9278974 0.9278974 +0.880825 0.9278974 0.9278974 +0.8968787 0.9278974 0.9278974 +0.9125621 0.9278974 0.9278974 +0.9278974 0.9278974 0.9278974 +0.9429048 0.9278974 0.9278974 +0.9576028 0.9278974 0.9278974 +0.9720079 0.9278974 0.9278974 +0.9861357 0.9278974 0.9278974 +1 0.9278974 0.9278974 +0 0.9429048 0.9278974 +0.1939468 0.9429048 0.9278974 +0.2773041 0.9429048 0.9278974 +0.3384659 0.9429048 0.9278974 +0.3885728 0.9429048 0.9278974 +0.4317928 0.9429048 0.9278974 +0.470214 0.9429048 0.9278974 +0.5050551 0.9429048 0.9278974 +0.5370987 0.9429048 0.9278974 +0.5668815 0.9429048 0.9278974 +0.5947903 0.9429048 0.9278974 +0.6211144 0.9429048 0.9278974 +0.6460766 0.9429048 0.9278974 +0.6698526 0.9429048 0.9278974 +0.6925839 0.9429048 0.9278974 +0.7143866 0.9429048 0.9278974 +0.7353569 0.9429048 0.9278974 +0.7555758 0.9429048 0.9278974 +0.7751122 0.9429048 0.9278974 +0.7940252 0.9429048 0.9278974 +0.8123661 0.9429048 0.9278974 +0.8301795 0.9429048 0.9278974 +0.8475045 0.9429048 0.9278974 +0.8643761 0.9429048 0.9278974 +0.880825 0.9429048 0.9278974 +0.8968787 0.9429048 0.9278974 +0.9125621 0.9429048 0.9278974 +0.9278974 0.9429048 0.9278974 +0.9429048 0.9429048 0.9278974 +0.9576028 0.9429048 0.9278974 +0.9720079 0.9429048 0.9278974 +0.9861357 0.9429048 0.9278974 +1 0.9429048 0.9278974 +0 0.9576028 0.9278974 +0.1939468 0.9576028 0.9278974 +0.2773041 0.9576028 0.9278974 +0.3384659 0.9576028 0.9278974 +0.3885728 0.9576028 0.9278974 +0.4317928 0.9576028 0.9278974 +0.470214 0.9576028 0.9278974 +0.5050551 0.9576028 0.9278974 +0.5370987 0.9576028 0.9278974 +0.5668815 0.9576028 0.9278974 +0.5947903 0.9576028 0.9278974 +0.6211144 0.9576028 0.9278974 +0.6460766 0.9576028 0.9278974 +0.6698526 0.9576028 0.9278974 +0.6925839 0.9576028 0.9278974 +0.7143866 0.9576028 0.9278974 +0.7353569 0.9576028 0.9278974 +0.7555758 0.9576028 0.9278974 +0.7751122 0.9576028 0.9278974 +0.7940252 0.9576028 0.9278974 +0.8123661 0.9576028 0.9278974 +0.8301795 0.9576028 0.9278974 +0.8475045 0.9576028 0.9278974 +0.8643761 0.9576028 0.9278974 +0.880825 0.9576028 0.9278974 +0.8968787 0.9576028 0.9278974 +0.9125621 0.9576028 0.9278974 +0.9278974 0.9576028 0.9278974 +0.9429048 0.9576028 0.9278974 +0.9576028 0.9576028 0.9278974 +0.9720079 0.9576028 0.9278974 +0.9861357 0.9576028 0.9278974 +1 0.9576028 0.9278974 +0 0.9720079 0.9278974 +0.1939468 0.9720079 0.9278974 +0.2773041 0.9720079 0.9278974 +0.3384659 0.9720079 0.9278974 +0.3885728 0.9720079 0.9278974 +0.4317928 0.9720079 0.9278974 +0.470214 0.9720079 0.9278974 +0.5050551 0.9720079 0.9278974 +0.5370987 0.9720079 0.9278974 +0.5668815 0.9720079 0.9278974 +0.5947903 0.9720079 0.9278974 +0.6211144 0.9720079 0.9278974 +0.6460766 0.9720079 0.9278974 +0.6698526 0.9720079 0.9278974 +0.6925839 0.9720079 0.9278974 +0.7143866 0.9720079 0.9278974 +0.7353569 0.9720079 0.9278974 +0.7555758 0.9720079 0.9278974 +0.7751122 0.9720079 0.9278974 +0.7940252 0.9720079 0.9278974 +0.8123661 0.9720079 0.9278974 +0.8301795 0.9720079 0.9278974 +0.8475045 0.9720079 0.9278974 +0.8643761 0.9720079 0.9278974 +0.880825 0.9720079 0.9278974 +0.8968787 0.9720079 0.9278974 +0.9125621 0.9720079 0.9278974 +0.9278974 0.9720079 0.9278974 +0.9429048 0.9720079 0.9278974 +0.9576028 0.9720079 0.9278974 +0.9720079 0.9720079 0.9278974 +0.9861357 0.9720079 0.9278974 +1 0.9720079 0.9278974 +0 0.9861357 0.9278974 +0.1939468 0.9861357 0.9278974 +0.2773041 0.9861357 0.9278974 +0.3384659 0.9861357 0.9278974 +0.3885728 0.9861357 0.9278974 +0.4317928 0.9861357 0.9278974 +0.470214 0.9861357 0.9278974 +0.5050551 0.9861357 0.9278974 +0.5370987 0.9861357 0.9278974 +0.5668815 0.9861357 0.9278974 +0.5947903 0.9861357 0.9278974 +0.6211144 0.9861357 0.9278974 +0.6460766 0.9861357 0.9278974 +0.6698526 0.9861357 0.9278974 +0.6925839 0.9861357 0.9278974 +0.7143866 0.9861357 0.9278974 +0.7353569 0.9861357 0.9278974 +0.7555758 0.9861357 0.9278974 +0.7751122 0.9861357 0.9278974 +0.7940252 0.9861357 0.9278974 +0.8123661 0.9861357 0.9278974 +0.8301795 0.9861357 0.9278974 +0.8475045 0.9861357 0.9278974 +0.8643761 0.9861357 0.9278974 +0.880825 0.9861357 0.9278974 +0.8968787 0.9861357 0.9278974 +0.9125621 0.9861357 0.9278974 +0.9278974 0.9861357 0.9278974 +0.9429048 0.9861357 0.9278974 +0.9576028 0.9861357 0.9278974 +0.9720079 0.9861357 0.9278974 +0.9861357 0.9861357 0.9278974 +1 0.9861357 0.9278974 +0 1 0.9278974 +0.1939468 1 0.9278974 +0.2773041 1 0.9278974 +0.3384659 1 0.9278974 +0.3885728 1 0.9278974 +0.4317928 1 0.9278974 +0.470214 1 0.9278974 +0.5050551 1 0.9278974 +0.5370987 1 0.9278974 +0.5668815 1 0.9278974 +0.5947903 1 0.9278974 +0.6211144 1 0.9278974 +0.6460766 1 0.9278974 +0.6698526 1 0.9278974 +0.6925839 1 0.9278974 +0.7143866 1 0.9278974 +0.7353569 1 0.9278974 +0.7555758 1 0.9278974 +0.7751122 1 0.9278974 +0.7940252 1 0.9278974 +0.8123661 1 0.9278974 +0.8301795 1 0.9278974 +0.8475045 1 0.9278974 +0.8643761 1 0.9278974 +0.880825 1 0.9278974 +0.8968787 1 0.9278974 +0.9125621 1 0.9278974 +0.9278974 1 0.9278974 +0.9429048 1 0.9278974 +0.9576028 1 0.9278974 +0.9720079 1 0.9278974 +0.9861357 1 0.9278974 +1 1 0.9278974 +0 0 0.9429048 +0.1939468 0 0.9429048 +0.2773041 0 0.9429048 +0.3384659 0 0.9429048 +0.3885728 0 0.9429048 +0.4317928 0 0.9429048 +0.470214 0 0.9429048 +0.5050551 0 0.9429048 +0.5370987 0 0.9429048 +0.5668815 0 0.9429048 +0.5947903 0 0.9429048 +0.6211144 0 0.9429048 +0.6460766 0 0.9429048 +0.6698526 0 0.9429048 +0.6925839 0 0.9429048 +0.7143866 0 0.9429048 +0.7353569 0 0.9429048 +0.7555758 0 0.9429048 +0.7751122 0 0.9429048 +0.7940252 0 0.9429048 +0.8123661 0 0.9429048 +0.8301795 0 0.9429048 +0.8475045 0 0.9429048 +0.8643761 0 0.9429048 +0.880825 0 0.9429048 +0.8968787 0 0.9429048 +0.9125621 0 0.9429048 +0.9278974 0 0.9429048 +0.9429048 0 0.9429048 +0.9576028 0 0.9429048 +0.9720079 0 0.9429048 +0.9861357 0 0.9429048 +1 0 0.9429048 +0 0.1939468 0.9429048 +0.1939468 0.1939468 0.9429048 +0.2773041 0.1939468 0.9429048 +0.3384659 0.1939468 0.9429048 +0.3885728 0.1939468 0.9429048 +0.4317928 0.1939468 0.9429048 +0.470214 0.1939468 0.9429048 +0.5050551 0.1939468 0.9429048 +0.5370987 0.1939468 0.9429048 +0.5668815 0.1939468 0.9429048 +0.5947903 0.1939468 0.9429048 +0.6211144 0.1939468 0.9429048 +0.6460766 0.1939468 0.9429048 +0.6698526 0.1939468 0.9429048 +0.6925839 0.1939468 0.9429048 +0.7143866 0.1939468 0.9429048 +0.7353569 0.1939468 0.9429048 +0.7555758 0.1939468 0.9429048 +0.7751122 0.1939468 0.9429048 +0.7940252 0.1939468 0.9429048 +0.8123661 0.1939468 0.9429048 +0.8301795 0.1939468 0.9429048 +0.8475045 0.1939468 0.9429048 +0.8643761 0.1939468 0.9429048 +0.880825 0.1939468 0.9429048 +0.8968787 0.1939468 0.9429048 +0.9125621 0.1939468 0.9429048 +0.9278974 0.1939468 0.9429048 +0.9429048 0.1939468 0.9429048 +0.9576028 0.1939468 0.9429048 +0.9720079 0.1939468 0.9429048 +0.9861357 0.1939468 0.9429048 +1 0.1939468 0.9429048 +0 0.2773041 0.9429048 +0.1939468 0.2773041 0.9429048 +0.2773041 0.2773041 0.9429048 +0.3384659 0.2773041 0.9429048 +0.3885728 0.2773041 0.9429048 +0.4317928 0.2773041 0.9429048 +0.470214 0.2773041 0.9429048 +0.5050551 0.2773041 0.9429048 +0.5370987 0.2773041 0.9429048 +0.5668815 0.2773041 0.9429048 +0.5947903 0.2773041 0.9429048 +0.6211144 0.2773041 0.9429048 +0.6460766 0.2773041 0.9429048 +0.6698526 0.2773041 0.9429048 +0.6925839 0.2773041 0.9429048 +0.7143866 0.2773041 0.9429048 +0.7353569 0.2773041 0.9429048 +0.7555758 0.2773041 0.9429048 +0.7751122 0.2773041 0.9429048 +0.7940252 0.2773041 0.9429048 +0.8123661 0.2773041 0.9429048 +0.8301795 0.2773041 0.9429048 +0.8475045 0.2773041 0.9429048 +0.8643761 0.2773041 0.9429048 +0.880825 0.2773041 0.9429048 +0.8968787 0.2773041 0.9429048 +0.9125621 0.2773041 0.9429048 +0.9278974 0.2773041 0.9429048 +0.9429048 0.2773041 0.9429048 +0.9576028 0.2773041 0.9429048 +0.9720079 0.2773041 0.9429048 +0.9861357 0.2773041 0.9429048 +1 0.2773041 0.9429048 +0 0.3384659 0.9429048 +0.1939468 0.3384659 0.9429048 +0.2773041 0.3384659 0.9429048 +0.3384659 0.3384659 0.9429048 +0.3885728 0.3384659 0.9429048 +0.4317928 0.3384659 0.9429048 +0.470214 0.3384659 0.9429048 +0.5050551 0.3384659 0.9429048 +0.5370987 0.3384659 0.9429048 +0.5668815 0.3384659 0.9429048 +0.5947903 0.3384659 0.9429048 +0.6211144 0.3384659 0.9429048 +0.6460766 0.3384659 0.9429048 +0.6698526 0.3384659 0.9429048 +0.6925839 0.3384659 0.9429048 +0.7143866 0.3384659 0.9429048 +0.7353569 0.3384659 0.9429048 +0.7555758 0.3384659 0.9429048 +0.7751122 0.3384659 0.9429048 +0.7940252 0.3384659 0.9429048 +0.8123661 0.3384659 0.9429048 +0.8301795 0.3384659 0.9429048 +0.8475045 0.3384659 0.9429048 +0.8643761 0.3384659 0.9429048 +0.880825 0.3384659 0.9429048 +0.8968787 0.3384659 0.9429048 +0.9125621 0.3384659 0.9429048 +0.9278974 0.3384659 0.9429048 +0.9429048 0.3384659 0.9429048 +0.9576028 0.3384659 0.9429048 +0.9720079 0.3384659 0.9429048 +0.9861357 0.3384659 0.9429048 +1 0.3384659 0.9429048 +0 0.3885728 0.9429048 +0.1939468 0.3885728 0.9429048 +0.2773041 0.3885728 0.9429048 +0.3384659 0.3885728 0.9429048 +0.3885728 0.3885728 0.9429048 +0.4317928 0.3885728 0.9429048 +0.470214 0.3885728 0.9429048 +0.5050551 0.3885728 0.9429048 +0.5370987 0.3885728 0.9429048 +0.5668815 0.3885728 0.9429048 +0.5947903 0.3885728 0.9429048 +0.6211144 0.3885728 0.9429048 +0.6460766 0.3885728 0.9429048 +0.6698526 0.3885728 0.9429048 +0.6925839 0.3885728 0.9429048 +0.7143866 0.3885728 0.9429048 +0.7353569 0.3885728 0.9429048 +0.7555758 0.3885728 0.9429048 +0.7751122 0.3885728 0.9429048 +0.7940252 0.3885728 0.9429048 +0.8123661 0.3885728 0.9429048 +0.8301795 0.3885728 0.9429048 +0.8475045 0.3885728 0.9429048 +0.8643761 0.3885728 0.9429048 +0.880825 0.3885728 0.9429048 +0.8968787 0.3885728 0.9429048 +0.9125621 0.3885728 0.9429048 +0.9278974 0.3885728 0.9429048 +0.9429048 0.3885728 0.9429048 +0.9576028 0.3885728 0.9429048 +0.9720079 0.3885728 0.9429048 +0.9861357 0.3885728 0.9429048 +1 0.3885728 0.9429048 +0 0.4317928 0.9429048 +0.1939468 0.4317928 0.9429048 +0.2773041 0.4317928 0.9429048 +0.3384659 0.4317928 0.9429048 +0.3885728 0.4317928 0.9429048 +0.4317928 0.4317928 0.9429048 +0.470214 0.4317928 0.9429048 +0.5050551 0.4317928 0.9429048 +0.5370987 0.4317928 0.9429048 +0.5668815 0.4317928 0.9429048 +0.5947903 0.4317928 0.9429048 +0.6211144 0.4317928 0.9429048 +0.6460766 0.4317928 0.9429048 +0.6698526 0.4317928 0.9429048 +0.6925839 0.4317928 0.9429048 +0.7143866 0.4317928 0.9429048 +0.7353569 0.4317928 0.9429048 +0.7555758 0.4317928 0.9429048 +0.7751122 0.4317928 0.9429048 +0.7940252 0.4317928 0.9429048 +0.8123661 0.4317928 0.9429048 +0.8301795 0.4317928 0.9429048 +0.8475045 0.4317928 0.9429048 +0.8643761 0.4317928 0.9429048 +0.880825 0.4317928 0.9429048 +0.8968787 0.4317928 0.9429048 +0.9125621 0.4317928 0.9429048 +0.9278974 0.4317928 0.9429048 +0.9429048 0.4317928 0.9429048 +0.9576028 0.4317928 0.9429048 +0.9720079 0.4317928 0.9429048 +0.9861357 0.4317928 0.9429048 +1 0.4317928 0.9429048 +0 0.470214 0.9429048 +0.1939468 0.470214 0.9429048 +0.2773041 0.470214 0.9429048 +0.3384659 0.470214 0.9429048 +0.3885728 0.470214 0.9429048 +0.4317928 0.470214 0.9429048 +0.470214 0.470214 0.9429048 +0.5050551 0.470214 0.9429048 +0.5370987 0.470214 0.9429048 +0.5668815 0.470214 0.9429048 +0.5947903 0.470214 0.9429048 +0.6211144 0.470214 0.9429048 +0.6460766 0.470214 0.9429048 +0.6698526 0.470214 0.9429048 +0.6925839 0.470214 0.9429048 +0.7143866 0.470214 0.9429048 +0.7353569 0.470214 0.9429048 +0.7555758 0.470214 0.9429048 +0.7751122 0.470214 0.9429048 +0.7940252 0.470214 0.9429048 +0.8123661 0.470214 0.9429048 +0.8301795 0.470214 0.9429048 +0.8475045 0.470214 0.9429048 +0.8643761 0.470214 0.9429048 +0.880825 0.470214 0.9429048 +0.8968787 0.470214 0.9429048 +0.9125621 0.470214 0.9429048 +0.9278974 0.470214 0.9429048 +0.9429048 0.470214 0.9429048 +0.9576028 0.470214 0.9429048 +0.9720079 0.470214 0.9429048 +0.9861357 0.470214 0.9429048 +1 0.470214 0.9429048 +0 0.5050551 0.9429048 +0.1939468 0.5050551 0.9429048 +0.2773041 0.5050551 0.9429048 +0.3384659 0.5050551 0.9429048 +0.3885728 0.5050551 0.9429048 +0.4317928 0.5050551 0.9429048 +0.470214 0.5050551 0.9429048 +0.5050551 0.5050551 0.9429048 +0.5370987 0.5050551 0.9429048 +0.5668815 0.5050551 0.9429048 +0.5947903 0.5050551 0.9429048 +0.6211144 0.5050551 0.9429048 +0.6460766 0.5050551 0.9429048 +0.6698526 0.5050551 0.9429048 +0.6925839 0.5050551 0.9429048 +0.7143866 0.5050551 0.9429048 +0.7353569 0.5050551 0.9429048 +0.7555758 0.5050551 0.9429048 +0.7751122 0.5050551 0.9429048 +0.7940252 0.5050551 0.9429048 +0.8123661 0.5050551 0.9429048 +0.8301795 0.5050551 0.9429048 +0.8475045 0.5050551 0.9429048 +0.8643761 0.5050551 0.9429048 +0.880825 0.5050551 0.9429048 +0.8968787 0.5050551 0.9429048 +0.9125621 0.5050551 0.9429048 +0.9278974 0.5050551 0.9429048 +0.9429048 0.5050551 0.9429048 +0.9576028 0.5050551 0.9429048 +0.9720079 0.5050551 0.9429048 +0.9861357 0.5050551 0.9429048 +1 0.5050551 0.9429048 +0 0.5370987 0.9429048 +0.1939468 0.5370987 0.9429048 +0.2773041 0.5370987 0.9429048 +0.3384659 0.5370987 0.9429048 +0.3885728 0.5370987 0.9429048 +0.4317928 0.5370987 0.9429048 +0.470214 0.5370987 0.9429048 +0.5050551 0.5370987 0.9429048 +0.5370987 0.5370987 0.9429048 +0.5668815 0.5370987 0.9429048 +0.5947903 0.5370987 0.9429048 +0.6211144 0.5370987 0.9429048 +0.6460766 0.5370987 0.9429048 +0.6698526 0.5370987 0.9429048 +0.6925839 0.5370987 0.9429048 +0.7143866 0.5370987 0.9429048 +0.7353569 0.5370987 0.9429048 +0.7555758 0.5370987 0.9429048 +0.7751122 0.5370987 0.9429048 +0.7940252 0.5370987 0.9429048 +0.8123661 0.5370987 0.9429048 +0.8301795 0.5370987 0.9429048 +0.8475045 0.5370987 0.9429048 +0.8643761 0.5370987 0.9429048 +0.880825 0.5370987 0.9429048 +0.8968787 0.5370987 0.9429048 +0.9125621 0.5370987 0.9429048 +0.9278974 0.5370987 0.9429048 +0.9429048 0.5370987 0.9429048 +0.9576028 0.5370987 0.9429048 +0.9720079 0.5370987 0.9429048 +0.9861357 0.5370987 0.9429048 +1 0.5370987 0.9429048 +0 0.5668815 0.9429048 +0.1939468 0.5668815 0.9429048 +0.2773041 0.5668815 0.9429048 +0.3384659 0.5668815 0.9429048 +0.3885728 0.5668815 0.9429048 +0.4317928 0.5668815 0.9429048 +0.470214 0.5668815 0.9429048 +0.5050551 0.5668815 0.9429048 +0.5370987 0.5668815 0.9429048 +0.5668815 0.5668815 0.9429048 +0.5947903 0.5668815 0.9429048 +0.6211144 0.5668815 0.9429048 +0.6460766 0.5668815 0.9429048 +0.6698526 0.5668815 0.9429048 +0.6925839 0.5668815 0.9429048 +0.7143866 0.5668815 0.9429048 +0.7353569 0.5668815 0.9429048 +0.7555758 0.5668815 0.9429048 +0.7751122 0.5668815 0.9429048 +0.7940252 0.5668815 0.9429048 +0.8123661 0.5668815 0.9429048 +0.8301795 0.5668815 0.9429048 +0.8475045 0.5668815 0.9429048 +0.8643761 0.5668815 0.9429048 +0.880825 0.5668815 0.9429048 +0.8968787 0.5668815 0.9429048 +0.9125621 0.5668815 0.9429048 +0.9278974 0.5668815 0.9429048 +0.9429048 0.5668815 0.9429048 +0.9576028 0.5668815 0.9429048 +0.9720079 0.5668815 0.9429048 +0.9861357 0.5668815 0.9429048 +1 0.5668815 0.9429048 +0 0.5947903 0.9429048 +0.1939468 0.5947903 0.9429048 +0.2773041 0.5947903 0.9429048 +0.3384659 0.5947903 0.9429048 +0.3885728 0.5947903 0.9429048 +0.4317928 0.5947903 0.9429048 +0.470214 0.5947903 0.9429048 +0.5050551 0.5947903 0.9429048 +0.5370987 0.5947903 0.9429048 +0.5668815 0.5947903 0.9429048 +0.5947903 0.5947903 0.9429048 +0.6211144 0.5947903 0.9429048 +0.6460766 0.5947903 0.9429048 +0.6698526 0.5947903 0.9429048 +0.6925839 0.5947903 0.9429048 +0.7143866 0.5947903 0.9429048 +0.7353569 0.5947903 0.9429048 +0.7555758 0.5947903 0.9429048 +0.7751122 0.5947903 0.9429048 +0.7940252 0.5947903 0.9429048 +0.8123661 0.5947903 0.9429048 +0.8301795 0.5947903 0.9429048 +0.8475045 0.5947903 0.9429048 +0.8643761 0.5947903 0.9429048 +0.880825 0.5947903 0.9429048 +0.8968787 0.5947903 0.9429048 +0.9125621 0.5947903 0.9429048 +0.9278974 0.5947903 0.9429048 +0.9429048 0.5947903 0.9429048 +0.9576028 0.5947903 0.9429048 +0.9720079 0.5947903 0.9429048 +0.9861357 0.5947903 0.9429048 +1 0.5947903 0.9429048 +0 0.6211144 0.9429048 +0.1939468 0.6211144 0.9429048 +0.2773041 0.6211144 0.9429048 +0.3384659 0.6211144 0.9429048 +0.3885728 0.6211144 0.9429048 +0.4317928 0.6211144 0.9429048 +0.470214 0.6211144 0.9429048 +0.5050551 0.6211144 0.9429048 +0.5370987 0.6211144 0.9429048 +0.5668815 0.6211144 0.9429048 +0.5947903 0.6211144 0.9429048 +0.6211144 0.6211144 0.9429048 +0.6460766 0.6211144 0.9429048 +0.6698526 0.6211144 0.9429048 +0.6925839 0.6211144 0.9429048 +0.7143866 0.6211144 0.9429048 +0.7353569 0.6211144 0.9429048 +0.7555758 0.6211144 0.9429048 +0.7751122 0.6211144 0.9429048 +0.7940252 0.6211144 0.9429048 +0.8123661 0.6211144 0.9429048 +0.8301795 0.6211144 0.9429048 +0.8475045 0.6211144 0.9429048 +0.8643761 0.6211144 0.9429048 +0.880825 0.6211144 0.9429048 +0.8968787 0.6211144 0.9429048 +0.9125621 0.6211144 0.9429048 +0.9278974 0.6211144 0.9429048 +0.9429048 0.6211144 0.9429048 +0.9576028 0.6211144 0.9429048 +0.9720079 0.6211144 0.9429048 +0.9861357 0.6211144 0.9429048 +1 0.6211144 0.9429048 +0 0.6460766 0.9429048 +0.1939468 0.6460766 0.9429048 +0.2773041 0.6460766 0.9429048 +0.3384659 0.6460766 0.9429048 +0.3885728 0.6460766 0.9429048 +0.4317928 0.6460766 0.9429048 +0.470214 0.6460766 0.9429048 +0.5050551 0.6460766 0.9429048 +0.5370987 0.6460766 0.9429048 +0.5668815 0.6460766 0.9429048 +0.5947903 0.6460766 0.9429048 +0.6211144 0.6460766 0.9429048 +0.6460766 0.6460766 0.9429048 +0.6698526 0.6460766 0.9429048 +0.6925839 0.6460766 0.9429048 +0.7143866 0.6460766 0.9429048 +0.7353569 0.6460766 0.9429048 +0.7555758 0.6460766 0.9429048 +0.7751122 0.6460766 0.9429048 +0.7940252 0.6460766 0.9429048 +0.8123661 0.6460766 0.9429048 +0.8301795 0.6460766 0.9429048 +0.8475045 0.6460766 0.9429048 +0.8643761 0.6460766 0.9429048 +0.880825 0.6460766 0.9429048 +0.8968787 0.6460766 0.9429048 +0.9125621 0.6460766 0.9429048 +0.9278974 0.6460766 0.9429048 +0.9429048 0.6460766 0.9429048 +0.9576028 0.6460766 0.9429048 +0.9720079 0.6460766 0.9429048 +0.9861357 0.6460766 0.9429048 +1 0.6460766 0.9429048 +0 0.6698526 0.9429048 +0.1939468 0.6698526 0.9429048 +0.2773041 0.6698526 0.9429048 +0.3384659 0.6698526 0.9429048 +0.3885728 0.6698526 0.9429048 +0.4317928 0.6698526 0.9429048 +0.470214 0.6698526 0.9429048 +0.5050551 0.6698526 0.9429048 +0.5370987 0.6698526 0.9429048 +0.5668815 0.6698526 0.9429048 +0.5947903 0.6698526 0.9429048 +0.6211144 0.6698526 0.9429048 +0.6460766 0.6698526 0.9429048 +0.6698526 0.6698526 0.9429048 +0.6925839 0.6698526 0.9429048 +0.7143866 0.6698526 0.9429048 +0.7353569 0.6698526 0.9429048 +0.7555758 0.6698526 0.9429048 +0.7751122 0.6698526 0.9429048 +0.7940252 0.6698526 0.9429048 +0.8123661 0.6698526 0.9429048 +0.8301795 0.6698526 0.9429048 +0.8475045 0.6698526 0.9429048 +0.8643761 0.6698526 0.9429048 +0.880825 0.6698526 0.9429048 +0.8968787 0.6698526 0.9429048 +0.9125621 0.6698526 0.9429048 +0.9278974 0.6698526 0.9429048 +0.9429048 0.6698526 0.9429048 +0.9576028 0.6698526 0.9429048 +0.9720079 0.6698526 0.9429048 +0.9861357 0.6698526 0.9429048 +1 0.6698526 0.9429048 +0 0.6925839 0.9429048 +0.1939468 0.6925839 0.9429048 +0.2773041 0.6925839 0.9429048 +0.3384659 0.6925839 0.9429048 +0.3885728 0.6925839 0.9429048 +0.4317928 0.6925839 0.9429048 +0.470214 0.6925839 0.9429048 +0.5050551 0.6925839 0.9429048 +0.5370987 0.6925839 0.9429048 +0.5668815 0.6925839 0.9429048 +0.5947903 0.6925839 0.9429048 +0.6211144 0.6925839 0.9429048 +0.6460766 0.6925839 0.9429048 +0.6698526 0.6925839 0.9429048 +0.6925839 0.6925839 0.9429048 +0.7143866 0.6925839 0.9429048 +0.7353569 0.6925839 0.9429048 +0.7555758 0.6925839 0.9429048 +0.7751122 0.6925839 0.9429048 +0.7940252 0.6925839 0.9429048 +0.8123661 0.6925839 0.9429048 +0.8301795 0.6925839 0.9429048 +0.8475045 0.6925839 0.9429048 +0.8643761 0.6925839 0.9429048 +0.880825 0.6925839 0.9429048 +0.8968787 0.6925839 0.9429048 +0.9125621 0.6925839 0.9429048 +0.9278974 0.6925839 0.9429048 +0.9429048 0.6925839 0.9429048 +0.9576028 0.6925839 0.9429048 +0.9720079 0.6925839 0.9429048 +0.9861357 0.6925839 0.9429048 +1 0.6925839 0.9429048 +0 0.7143866 0.9429048 +0.1939468 0.7143866 0.9429048 +0.2773041 0.7143866 0.9429048 +0.3384659 0.7143866 0.9429048 +0.3885728 0.7143866 0.9429048 +0.4317928 0.7143866 0.9429048 +0.470214 0.7143866 0.9429048 +0.5050551 0.7143866 0.9429048 +0.5370987 0.7143866 0.9429048 +0.5668815 0.7143866 0.9429048 +0.5947903 0.7143866 0.9429048 +0.6211144 0.7143866 0.9429048 +0.6460766 0.7143866 0.9429048 +0.6698526 0.7143866 0.9429048 +0.6925839 0.7143866 0.9429048 +0.7143866 0.7143866 0.9429048 +0.7353569 0.7143866 0.9429048 +0.7555758 0.7143866 0.9429048 +0.7751122 0.7143866 0.9429048 +0.7940252 0.7143866 0.9429048 +0.8123661 0.7143866 0.9429048 +0.8301795 0.7143866 0.9429048 +0.8475045 0.7143866 0.9429048 +0.8643761 0.7143866 0.9429048 +0.880825 0.7143866 0.9429048 +0.8968787 0.7143866 0.9429048 +0.9125621 0.7143866 0.9429048 +0.9278974 0.7143866 0.9429048 +0.9429048 0.7143866 0.9429048 +0.9576028 0.7143866 0.9429048 +0.9720079 0.7143866 0.9429048 +0.9861357 0.7143866 0.9429048 +1 0.7143866 0.9429048 +0 0.7353569 0.9429048 +0.1939468 0.7353569 0.9429048 +0.2773041 0.7353569 0.9429048 +0.3384659 0.7353569 0.9429048 +0.3885728 0.7353569 0.9429048 +0.4317928 0.7353569 0.9429048 +0.470214 0.7353569 0.9429048 +0.5050551 0.7353569 0.9429048 +0.5370987 0.7353569 0.9429048 +0.5668815 0.7353569 0.9429048 +0.5947903 0.7353569 0.9429048 +0.6211144 0.7353569 0.9429048 +0.6460766 0.7353569 0.9429048 +0.6698526 0.7353569 0.9429048 +0.6925839 0.7353569 0.9429048 +0.7143866 0.7353569 0.9429048 +0.7353569 0.7353569 0.9429048 +0.7555758 0.7353569 0.9429048 +0.7751122 0.7353569 0.9429048 +0.7940252 0.7353569 0.9429048 +0.8123661 0.7353569 0.9429048 +0.8301795 0.7353569 0.9429048 +0.8475045 0.7353569 0.9429048 +0.8643761 0.7353569 0.9429048 +0.880825 0.7353569 0.9429048 +0.8968787 0.7353569 0.9429048 +0.9125621 0.7353569 0.9429048 +0.9278974 0.7353569 0.9429048 +0.9429048 0.7353569 0.9429048 +0.9576028 0.7353569 0.9429048 +0.9720079 0.7353569 0.9429048 +0.9861357 0.7353569 0.9429048 +1 0.7353569 0.9429048 +0 0.7555758 0.9429048 +0.1939468 0.7555758 0.9429048 +0.2773041 0.7555758 0.9429048 +0.3384659 0.7555758 0.9429048 +0.3885728 0.7555758 0.9429048 +0.4317928 0.7555758 0.9429048 +0.470214 0.7555758 0.9429048 +0.5050551 0.7555758 0.9429048 +0.5370987 0.7555758 0.9429048 +0.5668815 0.7555758 0.9429048 +0.5947903 0.7555758 0.9429048 +0.6211144 0.7555758 0.9429048 +0.6460766 0.7555758 0.9429048 +0.6698526 0.7555758 0.9429048 +0.6925839 0.7555758 0.9429048 +0.7143866 0.7555758 0.9429048 +0.7353569 0.7555758 0.9429048 +0.7555758 0.7555758 0.9429048 +0.7751122 0.7555758 0.9429048 +0.7940252 0.7555758 0.9429048 +0.8123661 0.7555758 0.9429048 +0.8301795 0.7555758 0.9429048 +0.8475045 0.7555758 0.9429048 +0.8643761 0.7555758 0.9429048 +0.880825 0.7555758 0.9429048 +0.8968787 0.7555758 0.9429048 +0.9125621 0.7555758 0.9429048 +0.9278974 0.7555758 0.9429048 +0.9429048 0.7555758 0.9429048 +0.9576028 0.7555758 0.9429048 +0.9720079 0.7555758 0.9429048 +0.9861357 0.7555758 0.9429048 +1 0.7555758 0.9429048 +0 0.7751122 0.9429048 +0.1939468 0.7751122 0.9429048 +0.2773041 0.7751122 0.9429048 +0.3384659 0.7751122 0.9429048 +0.3885728 0.7751122 0.9429048 +0.4317928 0.7751122 0.9429048 +0.470214 0.7751122 0.9429048 +0.5050551 0.7751122 0.9429048 +0.5370987 0.7751122 0.9429048 +0.5668815 0.7751122 0.9429048 +0.5947903 0.7751122 0.9429048 +0.6211144 0.7751122 0.9429048 +0.6460766 0.7751122 0.9429048 +0.6698526 0.7751122 0.9429048 +0.6925839 0.7751122 0.9429048 +0.7143866 0.7751122 0.9429048 +0.7353569 0.7751122 0.9429048 +0.7555758 0.7751122 0.9429048 +0.7751122 0.7751122 0.9429048 +0.7940252 0.7751122 0.9429048 +0.8123661 0.7751122 0.9429048 +0.8301795 0.7751122 0.9429048 +0.8475045 0.7751122 0.9429048 +0.8643761 0.7751122 0.9429048 +0.880825 0.7751122 0.9429048 +0.8968787 0.7751122 0.9429048 +0.9125621 0.7751122 0.9429048 +0.9278974 0.7751122 0.9429048 +0.9429048 0.7751122 0.9429048 +0.9576028 0.7751122 0.9429048 +0.9720079 0.7751122 0.9429048 +0.9861357 0.7751122 0.9429048 +1 0.7751122 0.9429048 +0 0.7940252 0.9429048 +0.1939468 0.7940252 0.9429048 +0.2773041 0.7940252 0.9429048 +0.3384659 0.7940252 0.9429048 +0.3885728 0.7940252 0.9429048 +0.4317928 0.7940252 0.9429048 +0.470214 0.7940252 0.9429048 +0.5050551 0.7940252 0.9429048 +0.5370987 0.7940252 0.9429048 +0.5668815 0.7940252 0.9429048 +0.5947903 0.7940252 0.9429048 +0.6211144 0.7940252 0.9429048 +0.6460766 0.7940252 0.9429048 +0.6698526 0.7940252 0.9429048 +0.6925839 0.7940252 0.9429048 +0.7143866 0.7940252 0.9429048 +0.7353569 0.7940252 0.9429048 +0.7555758 0.7940252 0.9429048 +0.7751122 0.7940252 0.9429048 +0.7940252 0.7940252 0.9429048 +0.8123661 0.7940252 0.9429048 +0.8301795 0.7940252 0.9429048 +0.8475045 0.7940252 0.9429048 +0.8643761 0.7940252 0.9429048 +0.880825 0.7940252 0.9429048 +0.8968787 0.7940252 0.9429048 +0.9125621 0.7940252 0.9429048 +0.9278974 0.7940252 0.9429048 +0.9429048 0.7940252 0.9429048 +0.9576028 0.7940252 0.9429048 +0.9720079 0.7940252 0.9429048 +0.9861357 0.7940252 0.9429048 +1 0.7940252 0.9429048 +0 0.8123661 0.9429048 +0.1939468 0.8123661 0.9429048 +0.2773041 0.8123661 0.9429048 +0.3384659 0.8123661 0.9429048 +0.3885728 0.8123661 0.9429048 +0.4317928 0.8123661 0.9429048 +0.470214 0.8123661 0.9429048 +0.5050551 0.8123661 0.9429048 +0.5370987 0.8123661 0.9429048 +0.5668815 0.8123661 0.9429048 +0.5947903 0.8123661 0.9429048 +0.6211144 0.8123661 0.9429048 +0.6460766 0.8123661 0.9429048 +0.6698526 0.8123661 0.9429048 +0.6925839 0.8123661 0.9429048 +0.7143866 0.8123661 0.9429048 +0.7353569 0.8123661 0.9429048 +0.7555758 0.8123661 0.9429048 +0.7751122 0.8123661 0.9429048 +0.7940252 0.8123661 0.9429048 +0.8123661 0.8123661 0.9429048 +0.8301795 0.8123661 0.9429048 +0.8475045 0.8123661 0.9429048 +0.8643761 0.8123661 0.9429048 +0.880825 0.8123661 0.9429048 +0.8968787 0.8123661 0.9429048 +0.9125621 0.8123661 0.9429048 +0.9278974 0.8123661 0.9429048 +0.9429048 0.8123661 0.9429048 +0.9576028 0.8123661 0.9429048 +0.9720079 0.8123661 0.9429048 +0.9861357 0.8123661 0.9429048 +1 0.8123661 0.9429048 +0 0.8301795 0.9429048 +0.1939468 0.8301795 0.9429048 +0.2773041 0.8301795 0.9429048 +0.3384659 0.8301795 0.9429048 +0.3885728 0.8301795 0.9429048 +0.4317928 0.8301795 0.9429048 +0.470214 0.8301795 0.9429048 +0.5050551 0.8301795 0.9429048 +0.5370987 0.8301795 0.9429048 +0.5668815 0.8301795 0.9429048 +0.5947903 0.8301795 0.9429048 +0.6211144 0.8301795 0.9429048 +0.6460766 0.8301795 0.9429048 +0.6698526 0.8301795 0.9429048 +0.6925839 0.8301795 0.9429048 +0.7143866 0.8301795 0.9429048 +0.7353569 0.8301795 0.9429048 +0.7555758 0.8301795 0.9429048 +0.7751122 0.8301795 0.9429048 +0.7940252 0.8301795 0.9429048 +0.8123661 0.8301795 0.9429048 +0.8301795 0.8301795 0.9429048 +0.8475045 0.8301795 0.9429048 +0.8643761 0.8301795 0.9429048 +0.880825 0.8301795 0.9429048 +0.8968787 0.8301795 0.9429048 +0.9125621 0.8301795 0.9429048 +0.9278974 0.8301795 0.9429048 +0.9429048 0.8301795 0.9429048 +0.9576028 0.8301795 0.9429048 +0.9720079 0.8301795 0.9429048 +0.9861357 0.8301795 0.9429048 +1 0.8301795 0.9429048 +0 0.8475045 0.9429048 +0.1939468 0.8475045 0.9429048 +0.2773041 0.8475045 0.9429048 +0.3384659 0.8475045 0.9429048 +0.3885728 0.8475045 0.9429048 +0.4317928 0.8475045 0.9429048 +0.470214 0.8475045 0.9429048 +0.5050551 0.8475045 0.9429048 +0.5370987 0.8475045 0.9429048 +0.5668815 0.8475045 0.9429048 +0.5947903 0.8475045 0.9429048 +0.6211144 0.8475045 0.9429048 +0.6460766 0.8475045 0.9429048 +0.6698526 0.8475045 0.9429048 +0.6925839 0.8475045 0.9429048 +0.7143866 0.8475045 0.9429048 +0.7353569 0.8475045 0.9429048 +0.7555758 0.8475045 0.9429048 +0.7751122 0.8475045 0.9429048 +0.7940252 0.8475045 0.9429048 +0.8123661 0.8475045 0.9429048 +0.8301795 0.8475045 0.9429048 +0.8475045 0.8475045 0.9429048 +0.8643761 0.8475045 0.9429048 +0.880825 0.8475045 0.9429048 +0.8968787 0.8475045 0.9429048 +0.9125621 0.8475045 0.9429048 +0.9278974 0.8475045 0.9429048 +0.9429048 0.8475045 0.9429048 +0.9576028 0.8475045 0.9429048 +0.9720079 0.8475045 0.9429048 +0.9861357 0.8475045 0.9429048 +1 0.8475045 0.9429048 +0 0.8643761 0.9429048 +0.1939468 0.8643761 0.9429048 +0.2773041 0.8643761 0.9429048 +0.3384659 0.8643761 0.9429048 +0.3885728 0.8643761 0.9429048 +0.4317928 0.8643761 0.9429048 +0.470214 0.8643761 0.9429048 +0.5050551 0.8643761 0.9429048 +0.5370987 0.8643761 0.9429048 +0.5668815 0.8643761 0.9429048 +0.5947903 0.8643761 0.9429048 +0.6211144 0.8643761 0.9429048 +0.6460766 0.8643761 0.9429048 +0.6698526 0.8643761 0.9429048 +0.6925839 0.8643761 0.9429048 +0.7143866 0.8643761 0.9429048 +0.7353569 0.8643761 0.9429048 +0.7555758 0.8643761 0.9429048 +0.7751122 0.8643761 0.9429048 +0.7940252 0.8643761 0.9429048 +0.8123661 0.8643761 0.9429048 +0.8301795 0.8643761 0.9429048 +0.8475045 0.8643761 0.9429048 +0.8643761 0.8643761 0.9429048 +0.880825 0.8643761 0.9429048 +0.8968787 0.8643761 0.9429048 +0.9125621 0.8643761 0.9429048 +0.9278974 0.8643761 0.9429048 +0.9429048 0.8643761 0.9429048 +0.9576028 0.8643761 0.9429048 +0.9720079 0.8643761 0.9429048 +0.9861357 0.8643761 0.9429048 +1 0.8643761 0.9429048 +0 0.880825 0.9429048 +0.1939468 0.880825 0.9429048 +0.2773041 0.880825 0.9429048 +0.3384659 0.880825 0.9429048 +0.3885728 0.880825 0.9429048 +0.4317928 0.880825 0.9429048 +0.470214 0.880825 0.9429048 +0.5050551 0.880825 0.9429048 +0.5370987 0.880825 0.9429048 +0.5668815 0.880825 0.9429048 +0.5947903 0.880825 0.9429048 +0.6211144 0.880825 0.9429048 +0.6460766 0.880825 0.9429048 +0.6698526 0.880825 0.9429048 +0.6925839 0.880825 0.9429048 +0.7143866 0.880825 0.9429048 +0.7353569 0.880825 0.9429048 +0.7555758 0.880825 0.9429048 +0.7751122 0.880825 0.9429048 +0.7940252 0.880825 0.9429048 +0.8123661 0.880825 0.9429048 +0.8301795 0.880825 0.9429048 +0.8475045 0.880825 0.9429048 +0.8643761 0.880825 0.9429048 +0.880825 0.880825 0.9429048 +0.8968787 0.880825 0.9429048 +0.9125621 0.880825 0.9429048 +0.9278974 0.880825 0.9429048 +0.9429048 0.880825 0.9429048 +0.9576028 0.880825 0.9429048 +0.9720079 0.880825 0.9429048 +0.9861357 0.880825 0.9429048 +1 0.880825 0.9429048 +0 0.8968787 0.9429048 +0.1939468 0.8968787 0.9429048 +0.2773041 0.8968787 0.9429048 +0.3384659 0.8968787 0.9429048 +0.3885728 0.8968787 0.9429048 +0.4317928 0.8968787 0.9429048 +0.470214 0.8968787 0.9429048 +0.5050551 0.8968787 0.9429048 +0.5370987 0.8968787 0.9429048 +0.5668815 0.8968787 0.9429048 +0.5947903 0.8968787 0.9429048 +0.6211144 0.8968787 0.9429048 +0.6460766 0.8968787 0.9429048 +0.6698526 0.8968787 0.9429048 +0.6925839 0.8968787 0.9429048 +0.7143866 0.8968787 0.9429048 +0.7353569 0.8968787 0.9429048 +0.7555758 0.8968787 0.9429048 +0.7751122 0.8968787 0.9429048 +0.7940252 0.8968787 0.9429048 +0.8123661 0.8968787 0.9429048 +0.8301795 0.8968787 0.9429048 +0.8475045 0.8968787 0.9429048 +0.8643761 0.8968787 0.9429048 +0.880825 0.8968787 0.9429048 +0.8968787 0.8968787 0.9429048 +0.9125621 0.8968787 0.9429048 +0.9278974 0.8968787 0.9429048 +0.9429048 0.8968787 0.9429048 +0.9576028 0.8968787 0.9429048 +0.9720079 0.8968787 0.9429048 +0.9861357 0.8968787 0.9429048 +1 0.8968787 0.9429048 +0 0.9125621 0.9429048 +0.1939468 0.9125621 0.9429048 +0.2773041 0.9125621 0.9429048 +0.3384659 0.9125621 0.9429048 +0.3885728 0.9125621 0.9429048 +0.4317928 0.9125621 0.9429048 +0.470214 0.9125621 0.9429048 +0.5050551 0.9125621 0.9429048 +0.5370987 0.9125621 0.9429048 +0.5668815 0.9125621 0.9429048 +0.5947903 0.9125621 0.9429048 +0.6211144 0.9125621 0.9429048 +0.6460766 0.9125621 0.9429048 +0.6698526 0.9125621 0.9429048 +0.6925839 0.9125621 0.9429048 +0.7143866 0.9125621 0.9429048 +0.7353569 0.9125621 0.9429048 +0.7555758 0.9125621 0.9429048 +0.7751122 0.9125621 0.9429048 +0.7940252 0.9125621 0.9429048 +0.8123661 0.9125621 0.9429048 +0.8301795 0.9125621 0.9429048 +0.8475045 0.9125621 0.9429048 +0.8643761 0.9125621 0.9429048 +0.880825 0.9125621 0.9429048 +0.8968787 0.9125621 0.9429048 +0.9125621 0.9125621 0.9429048 +0.9278974 0.9125621 0.9429048 +0.9429048 0.9125621 0.9429048 +0.9576028 0.9125621 0.9429048 +0.9720079 0.9125621 0.9429048 +0.9861357 0.9125621 0.9429048 +1 0.9125621 0.9429048 +0 0.9278974 0.9429048 +0.1939468 0.9278974 0.9429048 +0.2773041 0.9278974 0.9429048 +0.3384659 0.9278974 0.9429048 +0.3885728 0.9278974 0.9429048 +0.4317928 0.9278974 0.9429048 +0.470214 0.9278974 0.9429048 +0.5050551 0.9278974 0.9429048 +0.5370987 0.9278974 0.9429048 +0.5668815 0.9278974 0.9429048 +0.5947903 0.9278974 0.9429048 +0.6211144 0.9278974 0.9429048 +0.6460766 0.9278974 0.9429048 +0.6698526 0.9278974 0.9429048 +0.6925839 0.9278974 0.9429048 +0.7143866 0.9278974 0.9429048 +0.7353569 0.9278974 0.9429048 +0.7555758 0.9278974 0.9429048 +0.7751122 0.9278974 0.9429048 +0.7940252 0.9278974 0.9429048 +0.8123661 0.9278974 0.9429048 +0.8301795 0.9278974 0.9429048 +0.8475045 0.9278974 0.9429048 +0.8643761 0.9278974 0.9429048 +0.880825 0.9278974 0.9429048 +0.8968787 0.9278974 0.9429048 +0.9125621 0.9278974 0.9429048 +0.9278974 0.9278974 0.9429048 +0.9429048 0.9278974 0.9429048 +0.9576028 0.9278974 0.9429048 +0.9720079 0.9278974 0.9429048 +0.9861357 0.9278974 0.9429048 +1 0.9278974 0.9429048 +0 0.9429048 0.9429048 +0.1939468 0.9429048 0.9429048 +0.2773041 0.9429048 0.9429048 +0.3384659 0.9429048 0.9429048 +0.3885728 0.9429048 0.9429048 +0.4317928 0.9429048 0.9429048 +0.470214 0.9429048 0.9429048 +0.5050551 0.9429048 0.9429048 +0.5370987 0.9429048 0.9429048 +0.5668815 0.9429048 0.9429048 +0.5947903 0.9429048 0.9429048 +0.6211144 0.9429048 0.9429048 +0.6460766 0.9429048 0.9429048 +0.6698526 0.9429048 0.9429048 +0.6925839 0.9429048 0.9429048 +0.7143866 0.9429048 0.9429048 +0.7353569 0.9429048 0.9429048 +0.7555758 0.9429048 0.9429048 +0.7751122 0.9429048 0.9429048 +0.7940252 0.9429048 0.9429048 +0.8123661 0.9429048 0.9429048 +0.8301795 0.9429048 0.9429048 +0.8475045 0.9429048 0.9429048 +0.8643761 0.9429048 0.9429048 +0.880825 0.9429048 0.9429048 +0.8968787 0.9429048 0.9429048 +0.9125621 0.9429048 0.9429048 +0.9278974 0.9429048 0.9429048 +0.9429048 0.9429048 0.9429048 +0.9576028 0.9429048 0.9429048 +0.9720079 0.9429048 0.9429048 +0.9861357 0.9429048 0.9429048 +1 0.9429048 0.9429048 +0 0.9576028 0.9429048 +0.1939468 0.9576028 0.9429048 +0.2773041 0.9576028 0.9429048 +0.3384659 0.9576028 0.9429048 +0.3885728 0.9576028 0.9429048 +0.4317928 0.9576028 0.9429048 +0.470214 0.9576028 0.9429048 +0.5050551 0.9576028 0.9429048 +0.5370987 0.9576028 0.9429048 +0.5668815 0.9576028 0.9429048 +0.5947903 0.9576028 0.9429048 +0.6211144 0.9576028 0.9429048 +0.6460766 0.9576028 0.9429048 +0.6698526 0.9576028 0.9429048 +0.6925839 0.9576028 0.9429048 +0.7143866 0.9576028 0.9429048 +0.7353569 0.9576028 0.9429048 +0.7555758 0.9576028 0.9429048 +0.7751122 0.9576028 0.9429048 +0.7940252 0.9576028 0.9429048 +0.8123661 0.9576028 0.9429048 +0.8301795 0.9576028 0.9429048 +0.8475045 0.9576028 0.9429048 +0.8643761 0.9576028 0.9429048 +0.880825 0.9576028 0.9429048 +0.8968787 0.9576028 0.9429048 +0.9125621 0.9576028 0.9429048 +0.9278974 0.9576028 0.9429048 +0.9429048 0.9576028 0.9429048 +0.9576028 0.9576028 0.9429048 +0.9720079 0.9576028 0.9429048 +0.9861357 0.9576028 0.9429048 +1 0.9576028 0.9429048 +0 0.9720079 0.9429048 +0.1939468 0.9720079 0.9429048 +0.2773041 0.9720079 0.9429048 +0.3384659 0.9720079 0.9429048 +0.3885728 0.9720079 0.9429048 +0.4317928 0.9720079 0.9429048 +0.470214 0.9720079 0.9429048 +0.5050551 0.9720079 0.9429048 +0.5370987 0.9720079 0.9429048 +0.5668815 0.9720079 0.9429048 +0.5947903 0.9720079 0.9429048 +0.6211144 0.9720079 0.9429048 +0.6460766 0.9720079 0.9429048 +0.6698526 0.9720079 0.9429048 +0.6925839 0.9720079 0.9429048 +0.7143866 0.9720079 0.9429048 +0.7353569 0.9720079 0.9429048 +0.7555758 0.9720079 0.9429048 +0.7751122 0.9720079 0.9429048 +0.7940252 0.9720079 0.9429048 +0.8123661 0.9720079 0.9429048 +0.8301795 0.9720079 0.9429048 +0.8475045 0.9720079 0.9429048 +0.8643761 0.9720079 0.9429048 +0.880825 0.9720079 0.9429048 +0.8968787 0.9720079 0.9429048 +0.9125621 0.9720079 0.9429048 +0.9278974 0.9720079 0.9429048 +0.9429048 0.9720079 0.9429048 +0.9576028 0.9720079 0.9429048 +0.9720079 0.9720079 0.9429048 +0.9861357 0.9720079 0.9429048 +1 0.9720079 0.9429048 +0 0.9861357 0.9429048 +0.1939468 0.9861357 0.9429048 +0.2773041 0.9861357 0.9429048 +0.3384659 0.9861357 0.9429048 +0.3885728 0.9861357 0.9429048 +0.4317928 0.9861357 0.9429048 +0.470214 0.9861357 0.9429048 +0.5050551 0.9861357 0.9429048 +0.5370987 0.9861357 0.9429048 +0.5668815 0.9861357 0.9429048 +0.5947903 0.9861357 0.9429048 +0.6211144 0.9861357 0.9429048 +0.6460766 0.9861357 0.9429048 +0.6698526 0.9861357 0.9429048 +0.6925839 0.9861357 0.9429048 +0.7143866 0.9861357 0.9429048 +0.7353569 0.9861357 0.9429048 +0.7555758 0.9861357 0.9429048 +0.7751122 0.9861357 0.9429048 +0.7940252 0.9861357 0.9429048 +0.8123661 0.9861357 0.9429048 +0.8301795 0.9861357 0.9429048 +0.8475045 0.9861357 0.9429048 +0.8643761 0.9861357 0.9429048 +0.880825 0.9861357 0.9429048 +0.8968787 0.9861357 0.9429048 +0.9125621 0.9861357 0.9429048 +0.9278974 0.9861357 0.9429048 +0.9429048 0.9861357 0.9429048 +0.9576028 0.9861357 0.9429048 +0.9720079 0.9861357 0.9429048 +0.9861357 0.9861357 0.9429048 +1 0.9861357 0.9429048 +0 1 0.9429048 +0.1939468 1 0.9429048 +0.2773041 1 0.9429048 +0.3384659 1 0.9429048 +0.3885728 1 0.9429048 +0.4317928 1 0.9429048 +0.470214 1 0.9429048 +0.5050551 1 0.9429048 +0.5370987 1 0.9429048 +0.5668815 1 0.9429048 +0.5947903 1 0.9429048 +0.6211144 1 0.9429048 +0.6460766 1 0.9429048 +0.6698526 1 0.9429048 +0.6925839 1 0.9429048 +0.7143866 1 0.9429048 +0.7353569 1 0.9429048 +0.7555758 1 0.9429048 +0.7751122 1 0.9429048 +0.7940252 1 0.9429048 +0.8123661 1 0.9429048 +0.8301795 1 0.9429048 +0.8475045 1 0.9429048 +0.8643761 1 0.9429048 +0.880825 1 0.9429048 +0.8968787 1 0.9429048 +0.9125621 1 0.9429048 +0.9278974 1 0.9429048 +0.9429048 1 0.9429048 +0.9576028 1 0.9429048 +0.9720079 1 0.9429048 +0.9861357 1 0.9429048 +1 1 0.9429048 +0 0 0.9576028 +0.1939468 0 0.9576028 +0.2773041 0 0.9576028 +0.3384659 0 0.9576028 +0.3885728 0 0.9576028 +0.4317928 0 0.9576028 +0.470214 0 0.9576028 +0.5050551 0 0.9576028 +0.5370987 0 0.9576028 +0.5668815 0 0.9576028 +0.5947903 0 0.9576028 +0.6211144 0 0.9576028 +0.6460766 0 0.9576028 +0.6698526 0 0.9576028 +0.6925839 0 0.9576028 +0.7143866 0 0.9576028 +0.7353569 0 0.9576028 +0.7555758 0 0.9576028 +0.7751122 0 0.9576028 +0.7940252 0 0.9576028 +0.8123661 0 0.9576028 +0.8301795 0 0.9576028 +0.8475045 0 0.9576028 +0.8643761 0 0.9576028 +0.880825 0 0.9576028 +0.8968787 0 0.9576028 +0.9125621 0 0.9576028 +0.9278974 0 0.9576028 +0.9429048 0 0.9576028 +0.9576028 0 0.9576028 +0.9720079 0 0.9576028 +0.9861357 0 0.9576028 +1 0 0.9576028 +0 0.1939468 0.9576028 +0.1939468 0.1939468 0.9576028 +0.2773041 0.1939468 0.9576028 +0.3384659 0.1939468 0.9576028 +0.3885728 0.1939468 0.9576028 +0.4317928 0.1939468 0.9576028 +0.470214 0.1939468 0.9576028 +0.5050551 0.1939468 0.9576028 +0.5370987 0.1939468 0.9576028 +0.5668815 0.1939468 0.9576028 +0.5947903 0.1939468 0.9576028 +0.6211144 0.1939468 0.9576028 +0.6460766 0.1939468 0.9576028 +0.6698526 0.1939468 0.9576028 +0.6925839 0.1939468 0.9576028 +0.7143866 0.1939468 0.9576028 +0.7353569 0.1939468 0.9576028 +0.7555758 0.1939468 0.9576028 +0.7751122 0.1939468 0.9576028 +0.7940252 0.1939468 0.9576028 +0.8123661 0.1939468 0.9576028 +0.8301795 0.1939468 0.9576028 +0.8475045 0.1939468 0.9576028 +0.8643761 0.1939468 0.9576028 +0.880825 0.1939468 0.9576028 +0.8968787 0.1939468 0.9576028 +0.9125621 0.1939468 0.9576028 +0.9278974 0.1939468 0.9576028 +0.9429048 0.1939468 0.9576028 +0.9576028 0.1939468 0.9576028 +0.9720079 0.1939468 0.9576028 +0.9861357 0.1939468 0.9576028 +1 0.1939468 0.9576028 +0 0.2773041 0.9576028 +0.1939468 0.2773041 0.9576028 +0.2773041 0.2773041 0.9576028 +0.3384659 0.2773041 0.9576028 +0.3885728 0.2773041 0.9576028 +0.4317928 0.2773041 0.9576028 +0.470214 0.2773041 0.9576028 +0.5050551 0.2773041 0.9576028 +0.5370987 0.2773041 0.9576028 +0.5668815 0.2773041 0.9576028 +0.5947903 0.2773041 0.9576028 +0.6211144 0.2773041 0.9576028 +0.6460766 0.2773041 0.9576028 +0.6698526 0.2773041 0.9576028 +0.6925839 0.2773041 0.9576028 +0.7143866 0.2773041 0.9576028 +0.7353569 0.2773041 0.9576028 +0.7555758 0.2773041 0.9576028 +0.7751122 0.2773041 0.9576028 +0.7940252 0.2773041 0.9576028 +0.8123661 0.2773041 0.9576028 +0.8301795 0.2773041 0.9576028 +0.8475045 0.2773041 0.9576028 +0.8643761 0.2773041 0.9576028 +0.880825 0.2773041 0.9576028 +0.8968787 0.2773041 0.9576028 +0.9125621 0.2773041 0.9576028 +0.9278974 0.2773041 0.9576028 +0.9429048 0.2773041 0.9576028 +0.9576028 0.2773041 0.9576028 +0.9720079 0.2773041 0.9576028 +0.9861357 0.2773041 0.9576028 +1 0.2773041 0.9576028 +0 0.3384659 0.9576028 +0.1939468 0.3384659 0.9576028 +0.2773041 0.3384659 0.9576028 +0.3384659 0.3384659 0.9576028 +0.3885728 0.3384659 0.9576028 +0.4317928 0.3384659 0.9576028 +0.470214 0.3384659 0.9576028 +0.5050551 0.3384659 0.9576028 +0.5370987 0.3384659 0.9576028 +0.5668815 0.3384659 0.9576028 +0.5947903 0.3384659 0.9576028 +0.6211144 0.3384659 0.9576028 +0.6460766 0.3384659 0.9576028 +0.6698526 0.3384659 0.9576028 +0.6925839 0.3384659 0.9576028 +0.7143866 0.3384659 0.9576028 +0.7353569 0.3384659 0.9576028 +0.7555758 0.3384659 0.9576028 +0.7751122 0.3384659 0.9576028 +0.7940252 0.3384659 0.9576028 +0.8123661 0.3384659 0.9576028 +0.8301795 0.3384659 0.9576028 +0.8475045 0.3384659 0.9576028 +0.8643761 0.3384659 0.9576028 +0.880825 0.3384659 0.9576028 +0.8968787 0.3384659 0.9576028 +0.9125621 0.3384659 0.9576028 +0.9278974 0.3384659 0.9576028 +0.9429048 0.3384659 0.9576028 +0.9576028 0.3384659 0.9576028 +0.9720079 0.3384659 0.9576028 +0.9861357 0.3384659 0.9576028 +1 0.3384659 0.9576028 +0 0.3885728 0.9576028 +0.1939468 0.3885728 0.9576028 +0.2773041 0.3885728 0.9576028 +0.3384659 0.3885728 0.9576028 +0.3885728 0.3885728 0.9576028 +0.4317928 0.3885728 0.9576028 +0.470214 0.3885728 0.9576028 +0.5050551 0.3885728 0.9576028 +0.5370987 0.3885728 0.9576028 +0.5668815 0.3885728 0.9576028 +0.5947903 0.3885728 0.9576028 +0.6211144 0.3885728 0.9576028 +0.6460766 0.3885728 0.9576028 +0.6698526 0.3885728 0.9576028 +0.6925839 0.3885728 0.9576028 +0.7143866 0.3885728 0.9576028 +0.7353569 0.3885728 0.9576028 +0.7555758 0.3885728 0.9576028 +0.7751122 0.3885728 0.9576028 +0.7940252 0.3885728 0.9576028 +0.8123661 0.3885728 0.9576028 +0.8301795 0.3885728 0.9576028 +0.8475045 0.3885728 0.9576028 +0.8643761 0.3885728 0.9576028 +0.880825 0.3885728 0.9576028 +0.8968787 0.3885728 0.9576028 +0.9125621 0.3885728 0.9576028 +0.9278974 0.3885728 0.9576028 +0.9429048 0.3885728 0.9576028 +0.9576028 0.3885728 0.9576028 +0.9720079 0.3885728 0.9576028 +0.9861357 0.3885728 0.9576028 +1 0.3885728 0.9576028 +0 0.4317928 0.9576028 +0.1939468 0.4317928 0.9576028 +0.2773041 0.4317928 0.9576028 +0.3384659 0.4317928 0.9576028 +0.3885728 0.4317928 0.9576028 +0.4317928 0.4317928 0.9576028 +0.470214 0.4317928 0.9576028 +0.5050551 0.4317928 0.9576028 +0.5370987 0.4317928 0.9576028 +0.5668815 0.4317928 0.9576028 +0.5947903 0.4317928 0.9576028 +0.6211144 0.4317928 0.9576028 +0.6460766 0.4317928 0.9576028 +0.6698526 0.4317928 0.9576028 +0.6925839 0.4317928 0.9576028 +0.7143866 0.4317928 0.9576028 +0.7353569 0.4317928 0.9576028 +0.7555758 0.4317928 0.9576028 +0.7751122 0.4317928 0.9576028 +0.7940252 0.4317928 0.9576028 +0.8123661 0.4317928 0.9576028 +0.8301795 0.4317928 0.9576028 +0.8475045 0.4317928 0.9576028 +0.8643761 0.4317928 0.9576028 +0.880825 0.4317928 0.9576028 +0.8968787 0.4317928 0.9576028 +0.9125621 0.4317928 0.9576028 +0.9278974 0.4317928 0.9576028 +0.9429048 0.4317928 0.9576028 +0.9576028 0.4317928 0.9576028 +0.9720079 0.4317928 0.9576028 +0.9861357 0.4317928 0.9576028 +1 0.4317928 0.9576028 +0 0.470214 0.9576028 +0.1939468 0.470214 0.9576028 +0.2773041 0.470214 0.9576028 +0.3384659 0.470214 0.9576028 +0.3885728 0.470214 0.9576028 +0.4317928 0.470214 0.9576028 +0.470214 0.470214 0.9576028 +0.5050551 0.470214 0.9576028 +0.5370987 0.470214 0.9576028 +0.5668815 0.470214 0.9576028 +0.5947903 0.470214 0.9576028 +0.6211144 0.470214 0.9576028 +0.6460766 0.470214 0.9576028 +0.6698526 0.470214 0.9576028 +0.6925839 0.470214 0.9576028 +0.7143866 0.470214 0.9576028 +0.7353569 0.470214 0.9576028 +0.7555758 0.470214 0.9576028 +0.7751122 0.470214 0.9576028 +0.7940252 0.470214 0.9576028 +0.8123661 0.470214 0.9576028 +0.8301795 0.470214 0.9576028 +0.8475045 0.470214 0.9576028 +0.8643761 0.470214 0.9576028 +0.880825 0.470214 0.9576028 +0.8968787 0.470214 0.9576028 +0.9125621 0.470214 0.9576028 +0.9278974 0.470214 0.9576028 +0.9429048 0.470214 0.9576028 +0.9576028 0.470214 0.9576028 +0.9720079 0.470214 0.9576028 +0.9861357 0.470214 0.9576028 +1 0.470214 0.9576028 +0 0.5050551 0.9576028 +0.1939468 0.5050551 0.9576028 +0.2773041 0.5050551 0.9576028 +0.3384659 0.5050551 0.9576028 +0.3885728 0.5050551 0.9576028 +0.4317928 0.5050551 0.9576028 +0.470214 0.5050551 0.9576028 +0.5050551 0.5050551 0.9576028 +0.5370987 0.5050551 0.9576028 +0.5668815 0.5050551 0.9576028 +0.5947903 0.5050551 0.9576028 +0.6211144 0.5050551 0.9576028 +0.6460766 0.5050551 0.9576028 +0.6698526 0.5050551 0.9576028 +0.6925839 0.5050551 0.9576028 +0.7143866 0.5050551 0.9576028 +0.7353569 0.5050551 0.9576028 +0.7555758 0.5050551 0.9576028 +0.7751122 0.5050551 0.9576028 +0.7940252 0.5050551 0.9576028 +0.8123661 0.5050551 0.9576028 +0.8301795 0.5050551 0.9576028 +0.8475045 0.5050551 0.9576028 +0.8643761 0.5050551 0.9576028 +0.880825 0.5050551 0.9576028 +0.8968787 0.5050551 0.9576028 +0.9125621 0.5050551 0.9576028 +0.9278974 0.5050551 0.9576028 +0.9429048 0.5050551 0.9576028 +0.9576028 0.5050551 0.9576028 +0.9720079 0.5050551 0.9576028 +0.9861357 0.5050551 0.9576028 +1 0.5050551 0.9576028 +0 0.5370987 0.9576028 +0.1939468 0.5370987 0.9576028 +0.2773041 0.5370987 0.9576028 +0.3384659 0.5370987 0.9576028 +0.3885728 0.5370987 0.9576028 +0.4317928 0.5370987 0.9576028 +0.470214 0.5370987 0.9576028 +0.5050551 0.5370987 0.9576028 +0.5370987 0.5370987 0.9576028 +0.5668815 0.5370987 0.9576028 +0.5947903 0.5370987 0.9576028 +0.6211144 0.5370987 0.9576028 +0.6460766 0.5370987 0.9576028 +0.6698526 0.5370987 0.9576028 +0.6925839 0.5370987 0.9576028 +0.7143866 0.5370987 0.9576028 +0.7353569 0.5370987 0.9576028 +0.7555758 0.5370987 0.9576028 +0.7751122 0.5370987 0.9576028 +0.7940252 0.5370987 0.9576028 +0.8123661 0.5370987 0.9576028 +0.8301795 0.5370987 0.9576028 +0.8475045 0.5370987 0.9576028 +0.8643761 0.5370987 0.9576028 +0.880825 0.5370987 0.9576028 +0.8968787 0.5370987 0.9576028 +0.9125621 0.5370987 0.9576028 +0.9278974 0.5370987 0.9576028 +0.9429048 0.5370987 0.9576028 +0.9576028 0.5370987 0.9576028 +0.9720079 0.5370987 0.9576028 +0.9861357 0.5370987 0.9576028 +1 0.5370987 0.9576028 +0 0.5668815 0.9576028 +0.1939468 0.5668815 0.9576028 +0.2773041 0.5668815 0.9576028 +0.3384659 0.5668815 0.9576028 +0.3885728 0.5668815 0.9576028 +0.4317928 0.5668815 0.9576028 +0.470214 0.5668815 0.9576028 +0.5050551 0.5668815 0.9576028 +0.5370987 0.5668815 0.9576028 +0.5668815 0.5668815 0.9576028 +0.5947903 0.5668815 0.9576028 +0.6211144 0.5668815 0.9576028 +0.6460766 0.5668815 0.9576028 +0.6698526 0.5668815 0.9576028 +0.6925839 0.5668815 0.9576028 +0.7143866 0.5668815 0.9576028 +0.7353569 0.5668815 0.9576028 +0.7555758 0.5668815 0.9576028 +0.7751122 0.5668815 0.9576028 +0.7940252 0.5668815 0.9576028 +0.8123661 0.5668815 0.9576028 +0.8301795 0.5668815 0.9576028 +0.8475045 0.5668815 0.9576028 +0.8643761 0.5668815 0.9576028 +0.880825 0.5668815 0.9576028 +0.8968787 0.5668815 0.9576028 +0.9125621 0.5668815 0.9576028 +0.9278974 0.5668815 0.9576028 +0.9429048 0.5668815 0.9576028 +0.9576028 0.5668815 0.9576028 +0.9720079 0.5668815 0.9576028 +0.9861357 0.5668815 0.9576028 +1 0.5668815 0.9576028 +0 0.5947903 0.9576028 +0.1939468 0.5947903 0.9576028 +0.2773041 0.5947903 0.9576028 +0.3384659 0.5947903 0.9576028 +0.3885728 0.5947903 0.9576028 +0.4317928 0.5947903 0.9576028 +0.470214 0.5947903 0.9576028 +0.5050551 0.5947903 0.9576028 +0.5370987 0.5947903 0.9576028 +0.5668815 0.5947903 0.9576028 +0.5947903 0.5947903 0.9576028 +0.6211144 0.5947903 0.9576028 +0.6460766 0.5947903 0.9576028 +0.6698526 0.5947903 0.9576028 +0.6925839 0.5947903 0.9576028 +0.7143866 0.5947903 0.9576028 +0.7353569 0.5947903 0.9576028 +0.7555758 0.5947903 0.9576028 +0.7751122 0.5947903 0.9576028 +0.7940252 0.5947903 0.9576028 +0.8123661 0.5947903 0.9576028 +0.8301795 0.5947903 0.9576028 +0.8475045 0.5947903 0.9576028 +0.8643761 0.5947903 0.9576028 +0.880825 0.5947903 0.9576028 +0.8968787 0.5947903 0.9576028 +0.9125621 0.5947903 0.9576028 +0.9278974 0.5947903 0.9576028 +0.9429048 0.5947903 0.9576028 +0.9576028 0.5947903 0.9576028 +0.9720079 0.5947903 0.9576028 +0.9861357 0.5947903 0.9576028 +1 0.5947903 0.9576028 +0 0.6211144 0.9576028 +0.1939468 0.6211144 0.9576028 +0.2773041 0.6211144 0.9576028 +0.3384659 0.6211144 0.9576028 +0.3885728 0.6211144 0.9576028 +0.4317928 0.6211144 0.9576028 +0.470214 0.6211144 0.9576028 +0.5050551 0.6211144 0.9576028 +0.5370987 0.6211144 0.9576028 +0.5668815 0.6211144 0.9576028 +0.5947903 0.6211144 0.9576028 +0.6211144 0.6211144 0.9576028 +0.6460766 0.6211144 0.9576028 +0.6698526 0.6211144 0.9576028 +0.6925839 0.6211144 0.9576028 +0.7143866 0.6211144 0.9576028 +0.7353569 0.6211144 0.9576028 +0.7555758 0.6211144 0.9576028 +0.7751122 0.6211144 0.9576028 +0.7940252 0.6211144 0.9576028 +0.8123661 0.6211144 0.9576028 +0.8301795 0.6211144 0.9576028 +0.8475045 0.6211144 0.9576028 +0.8643761 0.6211144 0.9576028 +0.880825 0.6211144 0.9576028 +0.8968787 0.6211144 0.9576028 +0.9125621 0.6211144 0.9576028 +0.9278974 0.6211144 0.9576028 +0.9429048 0.6211144 0.9576028 +0.9576028 0.6211144 0.9576028 +0.9720079 0.6211144 0.9576028 +0.9861357 0.6211144 0.9576028 +1 0.6211144 0.9576028 +0 0.6460766 0.9576028 +0.1939468 0.6460766 0.9576028 +0.2773041 0.6460766 0.9576028 +0.3384659 0.6460766 0.9576028 +0.3885728 0.6460766 0.9576028 +0.4317928 0.6460766 0.9576028 +0.470214 0.6460766 0.9576028 +0.5050551 0.6460766 0.9576028 +0.5370987 0.6460766 0.9576028 +0.5668815 0.6460766 0.9576028 +0.5947903 0.6460766 0.9576028 +0.6211144 0.6460766 0.9576028 +0.6460766 0.6460766 0.9576028 +0.6698526 0.6460766 0.9576028 +0.6925839 0.6460766 0.9576028 +0.7143866 0.6460766 0.9576028 +0.7353569 0.6460766 0.9576028 +0.7555758 0.6460766 0.9576028 +0.7751122 0.6460766 0.9576028 +0.7940252 0.6460766 0.9576028 +0.8123661 0.6460766 0.9576028 +0.8301795 0.6460766 0.9576028 +0.8475045 0.6460766 0.9576028 +0.8643761 0.6460766 0.9576028 +0.880825 0.6460766 0.9576028 +0.8968787 0.6460766 0.9576028 +0.9125621 0.6460766 0.9576028 +0.9278974 0.6460766 0.9576028 +0.9429048 0.6460766 0.9576028 +0.9576028 0.6460766 0.9576028 +0.9720079 0.6460766 0.9576028 +0.9861357 0.6460766 0.9576028 +1 0.6460766 0.9576028 +0 0.6698526 0.9576028 +0.1939468 0.6698526 0.9576028 +0.2773041 0.6698526 0.9576028 +0.3384659 0.6698526 0.9576028 +0.3885728 0.6698526 0.9576028 +0.4317928 0.6698526 0.9576028 +0.470214 0.6698526 0.9576028 +0.5050551 0.6698526 0.9576028 +0.5370987 0.6698526 0.9576028 +0.5668815 0.6698526 0.9576028 +0.5947903 0.6698526 0.9576028 +0.6211144 0.6698526 0.9576028 +0.6460766 0.6698526 0.9576028 +0.6698526 0.6698526 0.9576028 +0.6925839 0.6698526 0.9576028 +0.7143866 0.6698526 0.9576028 +0.7353569 0.6698526 0.9576028 +0.7555758 0.6698526 0.9576028 +0.7751122 0.6698526 0.9576028 +0.7940252 0.6698526 0.9576028 +0.8123661 0.6698526 0.9576028 +0.8301795 0.6698526 0.9576028 +0.8475045 0.6698526 0.9576028 +0.8643761 0.6698526 0.9576028 +0.880825 0.6698526 0.9576028 +0.8968787 0.6698526 0.9576028 +0.9125621 0.6698526 0.9576028 +0.9278974 0.6698526 0.9576028 +0.9429048 0.6698526 0.9576028 +0.9576028 0.6698526 0.9576028 +0.9720079 0.6698526 0.9576028 +0.9861357 0.6698526 0.9576028 +1 0.6698526 0.9576028 +0 0.6925839 0.9576028 +0.1939468 0.6925839 0.9576028 +0.2773041 0.6925839 0.9576028 +0.3384659 0.6925839 0.9576028 +0.3885728 0.6925839 0.9576028 +0.4317928 0.6925839 0.9576028 +0.470214 0.6925839 0.9576028 +0.5050551 0.6925839 0.9576028 +0.5370987 0.6925839 0.9576028 +0.5668815 0.6925839 0.9576028 +0.5947903 0.6925839 0.9576028 +0.6211144 0.6925839 0.9576028 +0.6460766 0.6925839 0.9576028 +0.6698526 0.6925839 0.9576028 +0.6925839 0.6925839 0.9576028 +0.7143866 0.6925839 0.9576028 +0.7353569 0.6925839 0.9576028 +0.7555758 0.6925839 0.9576028 +0.7751122 0.6925839 0.9576028 +0.7940252 0.6925839 0.9576028 +0.8123661 0.6925839 0.9576028 +0.8301795 0.6925839 0.9576028 +0.8475045 0.6925839 0.9576028 +0.8643761 0.6925839 0.9576028 +0.880825 0.6925839 0.9576028 +0.8968787 0.6925839 0.9576028 +0.9125621 0.6925839 0.9576028 +0.9278974 0.6925839 0.9576028 +0.9429048 0.6925839 0.9576028 +0.9576028 0.6925839 0.9576028 +0.9720079 0.6925839 0.9576028 +0.9861357 0.6925839 0.9576028 +1 0.6925839 0.9576028 +0 0.7143866 0.9576028 +0.1939468 0.7143866 0.9576028 +0.2773041 0.7143866 0.9576028 +0.3384659 0.7143866 0.9576028 +0.3885728 0.7143866 0.9576028 +0.4317928 0.7143866 0.9576028 +0.470214 0.7143866 0.9576028 +0.5050551 0.7143866 0.9576028 +0.5370987 0.7143866 0.9576028 +0.5668815 0.7143866 0.9576028 +0.5947903 0.7143866 0.9576028 +0.6211144 0.7143866 0.9576028 +0.6460766 0.7143866 0.9576028 +0.6698526 0.7143866 0.9576028 +0.6925839 0.7143866 0.9576028 +0.7143866 0.7143866 0.9576028 +0.7353569 0.7143866 0.9576028 +0.7555758 0.7143866 0.9576028 +0.7751122 0.7143866 0.9576028 +0.7940252 0.7143866 0.9576028 +0.8123661 0.7143866 0.9576028 +0.8301795 0.7143866 0.9576028 +0.8475045 0.7143866 0.9576028 +0.8643761 0.7143866 0.9576028 +0.880825 0.7143866 0.9576028 +0.8968787 0.7143866 0.9576028 +0.9125621 0.7143866 0.9576028 +0.9278974 0.7143866 0.9576028 +0.9429048 0.7143866 0.9576028 +0.9576028 0.7143866 0.9576028 +0.9720079 0.7143866 0.9576028 +0.9861357 0.7143866 0.9576028 +1 0.7143866 0.9576028 +0 0.7353569 0.9576028 +0.1939468 0.7353569 0.9576028 +0.2773041 0.7353569 0.9576028 +0.3384659 0.7353569 0.9576028 +0.3885728 0.7353569 0.9576028 +0.4317928 0.7353569 0.9576028 +0.470214 0.7353569 0.9576028 +0.5050551 0.7353569 0.9576028 +0.5370987 0.7353569 0.9576028 +0.5668815 0.7353569 0.9576028 +0.5947903 0.7353569 0.9576028 +0.6211144 0.7353569 0.9576028 +0.6460766 0.7353569 0.9576028 +0.6698526 0.7353569 0.9576028 +0.6925839 0.7353569 0.9576028 +0.7143866 0.7353569 0.9576028 +0.7353569 0.7353569 0.9576028 +0.7555758 0.7353569 0.9576028 +0.7751122 0.7353569 0.9576028 +0.7940252 0.7353569 0.9576028 +0.8123661 0.7353569 0.9576028 +0.8301795 0.7353569 0.9576028 +0.8475045 0.7353569 0.9576028 +0.8643761 0.7353569 0.9576028 +0.880825 0.7353569 0.9576028 +0.8968787 0.7353569 0.9576028 +0.9125621 0.7353569 0.9576028 +0.9278974 0.7353569 0.9576028 +0.9429048 0.7353569 0.9576028 +0.9576028 0.7353569 0.9576028 +0.9720079 0.7353569 0.9576028 +0.9861357 0.7353569 0.9576028 +1 0.7353569 0.9576028 +0 0.7555758 0.9576028 +0.1939468 0.7555758 0.9576028 +0.2773041 0.7555758 0.9576028 +0.3384659 0.7555758 0.9576028 +0.3885728 0.7555758 0.9576028 +0.4317928 0.7555758 0.9576028 +0.470214 0.7555758 0.9576028 +0.5050551 0.7555758 0.9576028 +0.5370987 0.7555758 0.9576028 +0.5668815 0.7555758 0.9576028 +0.5947903 0.7555758 0.9576028 +0.6211144 0.7555758 0.9576028 +0.6460766 0.7555758 0.9576028 +0.6698526 0.7555758 0.9576028 +0.6925839 0.7555758 0.9576028 +0.7143866 0.7555758 0.9576028 +0.7353569 0.7555758 0.9576028 +0.7555758 0.7555758 0.9576028 +0.7751122 0.7555758 0.9576028 +0.7940252 0.7555758 0.9576028 +0.8123661 0.7555758 0.9576028 +0.8301795 0.7555758 0.9576028 +0.8475045 0.7555758 0.9576028 +0.8643761 0.7555758 0.9576028 +0.880825 0.7555758 0.9576028 +0.8968787 0.7555758 0.9576028 +0.9125621 0.7555758 0.9576028 +0.9278974 0.7555758 0.9576028 +0.9429048 0.7555758 0.9576028 +0.9576028 0.7555758 0.9576028 +0.9720079 0.7555758 0.9576028 +0.9861357 0.7555758 0.9576028 +1 0.7555758 0.9576028 +0 0.7751122 0.9576028 +0.1939468 0.7751122 0.9576028 +0.2773041 0.7751122 0.9576028 +0.3384659 0.7751122 0.9576028 +0.3885728 0.7751122 0.9576028 +0.4317928 0.7751122 0.9576028 +0.470214 0.7751122 0.9576028 +0.5050551 0.7751122 0.9576028 +0.5370987 0.7751122 0.9576028 +0.5668815 0.7751122 0.9576028 +0.5947903 0.7751122 0.9576028 +0.6211144 0.7751122 0.9576028 +0.6460766 0.7751122 0.9576028 +0.6698526 0.7751122 0.9576028 +0.6925839 0.7751122 0.9576028 +0.7143866 0.7751122 0.9576028 +0.7353569 0.7751122 0.9576028 +0.7555758 0.7751122 0.9576028 +0.7751122 0.7751122 0.9576028 +0.7940252 0.7751122 0.9576028 +0.8123661 0.7751122 0.9576028 +0.8301795 0.7751122 0.9576028 +0.8475045 0.7751122 0.9576028 +0.8643761 0.7751122 0.9576028 +0.880825 0.7751122 0.9576028 +0.8968787 0.7751122 0.9576028 +0.9125621 0.7751122 0.9576028 +0.9278974 0.7751122 0.9576028 +0.9429048 0.7751122 0.9576028 +0.9576028 0.7751122 0.9576028 +0.9720079 0.7751122 0.9576028 +0.9861357 0.7751122 0.9576028 +1 0.7751122 0.9576028 +0 0.7940252 0.9576028 +0.1939468 0.7940252 0.9576028 +0.2773041 0.7940252 0.9576028 +0.3384659 0.7940252 0.9576028 +0.3885728 0.7940252 0.9576028 +0.4317928 0.7940252 0.9576028 +0.470214 0.7940252 0.9576028 +0.5050551 0.7940252 0.9576028 +0.5370987 0.7940252 0.9576028 +0.5668815 0.7940252 0.9576028 +0.5947903 0.7940252 0.9576028 +0.6211144 0.7940252 0.9576028 +0.6460766 0.7940252 0.9576028 +0.6698526 0.7940252 0.9576028 +0.6925839 0.7940252 0.9576028 +0.7143866 0.7940252 0.9576028 +0.7353569 0.7940252 0.9576028 +0.7555758 0.7940252 0.9576028 +0.7751122 0.7940252 0.9576028 +0.7940252 0.7940252 0.9576028 +0.8123661 0.7940252 0.9576028 +0.8301795 0.7940252 0.9576028 +0.8475045 0.7940252 0.9576028 +0.8643761 0.7940252 0.9576028 +0.880825 0.7940252 0.9576028 +0.8968787 0.7940252 0.9576028 +0.9125621 0.7940252 0.9576028 +0.9278974 0.7940252 0.9576028 +0.9429048 0.7940252 0.9576028 +0.9576028 0.7940252 0.9576028 +0.9720079 0.7940252 0.9576028 +0.9861357 0.7940252 0.9576028 +1 0.7940252 0.9576028 +0 0.8123661 0.9576028 +0.1939468 0.8123661 0.9576028 +0.2773041 0.8123661 0.9576028 +0.3384659 0.8123661 0.9576028 +0.3885728 0.8123661 0.9576028 +0.4317928 0.8123661 0.9576028 +0.470214 0.8123661 0.9576028 +0.5050551 0.8123661 0.9576028 +0.5370987 0.8123661 0.9576028 +0.5668815 0.8123661 0.9576028 +0.5947903 0.8123661 0.9576028 +0.6211144 0.8123661 0.9576028 +0.6460766 0.8123661 0.9576028 +0.6698526 0.8123661 0.9576028 +0.6925839 0.8123661 0.9576028 +0.7143866 0.8123661 0.9576028 +0.7353569 0.8123661 0.9576028 +0.7555758 0.8123661 0.9576028 +0.7751122 0.8123661 0.9576028 +0.7940252 0.8123661 0.9576028 +0.8123661 0.8123661 0.9576028 +0.8301795 0.8123661 0.9576028 +0.8475045 0.8123661 0.9576028 +0.8643761 0.8123661 0.9576028 +0.880825 0.8123661 0.9576028 +0.8968787 0.8123661 0.9576028 +0.9125621 0.8123661 0.9576028 +0.9278974 0.8123661 0.9576028 +0.9429048 0.8123661 0.9576028 +0.9576028 0.8123661 0.9576028 +0.9720079 0.8123661 0.9576028 +0.9861357 0.8123661 0.9576028 +1 0.8123661 0.9576028 +0 0.8301795 0.9576028 +0.1939468 0.8301795 0.9576028 +0.2773041 0.8301795 0.9576028 +0.3384659 0.8301795 0.9576028 +0.3885728 0.8301795 0.9576028 +0.4317928 0.8301795 0.9576028 +0.470214 0.8301795 0.9576028 +0.5050551 0.8301795 0.9576028 +0.5370987 0.8301795 0.9576028 +0.5668815 0.8301795 0.9576028 +0.5947903 0.8301795 0.9576028 +0.6211144 0.8301795 0.9576028 +0.6460766 0.8301795 0.9576028 +0.6698526 0.8301795 0.9576028 +0.6925839 0.8301795 0.9576028 +0.7143866 0.8301795 0.9576028 +0.7353569 0.8301795 0.9576028 +0.7555758 0.8301795 0.9576028 +0.7751122 0.8301795 0.9576028 +0.7940252 0.8301795 0.9576028 +0.8123661 0.8301795 0.9576028 +0.8301795 0.8301795 0.9576028 +0.8475045 0.8301795 0.9576028 +0.8643761 0.8301795 0.9576028 +0.880825 0.8301795 0.9576028 +0.8968787 0.8301795 0.9576028 +0.9125621 0.8301795 0.9576028 +0.9278974 0.8301795 0.9576028 +0.9429048 0.8301795 0.9576028 +0.9576028 0.8301795 0.9576028 +0.9720079 0.8301795 0.9576028 +0.9861357 0.8301795 0.9576028 +1 0.8301795 0.9576028 +0 0.8475045 0.9576028 +0.1939468 0.8475045 0.9576028 +0.2773041 0.8475045 0.9576028 +0.3384659 0.8475045 0.9576028 +0.3885728 0.8475045 0.9576028 +0.4317928 0.8475045 0.9576028 +0.470214 0.8475045 0.9576028 +0.5050551 0.8475045 0.9576028 +0.5370987 0.8475045 0.9576028 +0.5668815 0.8475045 0.9576028 +0.5947903 0.8475045 0.9576028 +0.6211144 0.8475045 0.9576028 +0.6460766 0.8475045 0.9576028 +0.6698526 0.8475045 0.9576028 +0.6925839 0.8475045 0.9576028 +0.7143866 0.8475045 0.9576028 +0.7353569 0.8475045 0.9576028 +0.7555758 0.8475045 0.9576028 +0.7751122 0.8475045 0.9576028 +0.7940252 0.8475045 0.9576028 +0.8123661 0.8475045 0.9576028 +0.8301795 0.8475045 0.9576028 +0.8475045 0.8475045 0.9576028 +0.8643761 0.8475045 0.9576028 +0.880825 0.8475045 0.9576028 +0.8968787 0.8475045 0.9576028 +0.9125621 0.8475045 0.9576028 +0.9278974 0.8475045 0.9576028 +0.9429048 0.8475045 0.9576028 +0.9576028 0.8475045 0.9576028 +0.9720079 0.8475045 0.9576028 +0.9861357 0.8475045 0.9576028 +1 0.8475045 0.9576028 +0 0.8643761 0.9576028 +0.1939468 0.8643761 0.9576028 +0.2773041 0.8643761 0.9576028 +0.3384659 0.8643761 0.9576028 +0.3885728 0.8643761 0.9576028 +0.4317928 0.8643761 0.9576028 +0.470214 0.8643761 0.9576028 +0.5050551 0.8643761 0.9576028 +0.5370987 0.8643761 0.9576028 +0.5668815 0.8643761 0.9576028 +0.5947903 0.8643761 0.9576028 +0.6211144 0.8643761 0.9576028 +0.6460766 0.8643761 0.9576028 +0.6698526 0.8643761 0.9576028 +0.6925839 0.8643761 0.9576028 +0.7143866 0.8643761 0.9576028 +0.7353569 0.8643761 0.9576028 +0.7555758 0.8643761 0.9576028 +0.7751122 0.8643761 0.9576028 +0.7940252 0.8643761 0.9576028 +0.8123661 0.8643761 0.9576028 +0.8301795 0.8643761 0.9576028 +0.8475045 0.8643761 0.9576028 +0.8643761 0.8643761 0.9576028 +0.880825 0.8643761 0.9576028 +0.8968787 0.8643761 0.9576028 +0.9125621 0.8643761 0.9576028 +0.9278974 0.8643761 0.9576028 +0.9429048 0.8643761 0.9576028 +0.9576028 0.8643761 0.9576028 +0.9720079 0.8643761 0.9576028 +0.9861357 0.8643761 0.9576028 +1 0.8643761 0.9576028 +0 0.880825 0.9576028 +0.1939468 0.880825 0.9576028 +0.2773041 0.880825 0.9576028 +0.3384659 0.880825 0.9576028 +0.3885728 0.880825 0.9576028 +0.4317928 0.880825 0.9576028 +0.470214 0.880825 0.9576028 +0.5050551 0.880825 0.9576028 +0.5370987 0.880825 0.9576028 +0.5668815 0.880825 0.9576028 +0.5947903 0.880825 0.9576028 +0.6211144 0.880825 0.9576028 +0.6460766 0.880825 0.9576028 +0.6698526 0.880825 0.9576028 +0.6925839 0.880825 0.9576028 +0.7143866 0.880825 0.9576028 +0.7353569 0.880825 0.9576028 +0.7555758 0.880825 0.9576028 +0.7751122 0.880825 0.9576028 +0.7940252 0.880825 0.9576028 +0.8123661 0.880825 0.9576028 +0.8301795 0.880825 0.9576028 +0.8475045 0.880825 0.9576028 +0.8643761 0.880825 0.9576028 +0.880825 0.880825 0.9576028 +0.8968787 0.880825 0.9576028 +0.9125621 0.880825 0.9576028 +0.9278974 0.880825 0.9576028 +0.9429048 0.880825 0.9576028 +0.9576028 0.880825 0.9576028 +0.9720079 0.880825 0.9576028 +0.9861357 0.880825 0.9576028 +1 0.880825 0.9576028 +0 0.8968787 0.9576028 +0.1939468 0.8968787 0.9576028 +0.2773041 0.8968787 0.9576028 +0.3384659 0.8968787 0.9576028 +0.3885728 0.8968787 0.9576028 +0.4317928 0.8968787 0.9576028 +0.470214 0.8968787 0.9576028 +0.5050551 0.8968787 0.9576028 +0.5370987 0.8968787 0.9576028 +0.5668815 0.8968787 0.9576028 +0.5947903 0.8968787 0.9576028 +0.6211144 0.8968787 0.9576028 +0.6460766 0.8968787 0.9576028 +0.6698526 0.8968787 0.9576028 +0.6925839 0.8968787 0.9576028 +0.7143866 0.8968787 0.9576028 +0.7353569 0.8968787 0.9576028 +0.7555758 0.8968787 0.9576028 +0.7751122 0.8968787 0.9576028 +0.7940252 0.8968787 0.9576028 +0.8123661 0.8968787 0.9576028 +0.8301795 0.8968787 0.9576028 +0.8475045 0.8968787 0.9576028 +0.8643761 0.8968787 0.9576028 +0.880825 0.8968787 0.9576028 +0.8968787 0.8968787 0.9576028 +0.9125621 0.8968787 0.9576028 +0.9278974 0.8968787 0.9576028 +0.9429048 0.8968787 0.9576028 +0.9576028 0.8968787 0.9576028 +0.9720079 0.8968787 0.9576028 +0.9861357 0.8968787 0.9576028 +1 0.8968787 0.9576028 +0 0.9125621 0.9576028 +0.1939468 0.9125621 0.9576028 +0.2773041 0.9125621 0.9576028 +0.3384659 0.9125621 0.9576028 +0.3885728 0.9125621 0.9576028 +0.4317928 0.9125621 0.9576028 +0.470214 0.9125621 0.9576028 +0.5050551 0.9125621 0.9576028 +0.5370987 0.9125621 0.9576028 +0.5668815 0.9125621 0.9576028 +0.5947903 0.9125621 0.9576028 +0.6211144 0.9125621 0.9576028 +0.6460766 0.9125621 0.9576028 +0.6698526 0.9125621 0.9576028 +0.6925839 0.9125621 0.9576028 +0.7143866 0.9125621 0.9576028 +0.7353569 0.9125621 0.9576028 +0.7555758 0.9125621 0.9576028 +0.7751122 0.9125621 0.9576028 +0.7940252 0.9125621 0.9576028 +0.8123661 0.9125621 0.9576028 +0.8301795 0.9125621 0.9576028 +0.8475045 0.9125621 0.9576028 +0.8643761 0.9125621 0.9576028 +0.880825 0.9125621 0.9576028 +0.8968787 0.9125621 0.9576028 +0.9125621 0.9125621 0.9576028 +0.9278974 0.9125621 0.9576028 +0.9429048 0.9125621 0.9576028 +0.9576028 0.9125621 0.9576028 +0.9720079 0.9125621 0.9576028 +0.9861357 0.9125621 0.9576028 +1 0.9125621 0.9576028 +0 0.9278974 0.9576028 +0.1939468 0.9278974 0.9576028 +0.2773041 0.9278974 0.9576028 +0.3384659 0.9278974 0.9576028 +0.3885728 0.9278974 0.9576028 +0.4317928 0.9278974 0.9576028 +0.470214 0.9278974 0.9576028 +0.5050551 0.9278974 0.9576028 +0.5370987 0.9278974 0.9576028 +0.5668815 0.9278974 0.9576028 +0.5947903 0.9278974 0.9576028 +0.6211144 0.9278974 0.9576028 +0.6460766 0.9278974 0.9576028 +0.6698526 0.9278974 0.9576028 +0.6925839 0.9278974 0.9576028 +0.7143866 0.9278974 0.9576028 +0.7353569 0.9278974 0.9576028 +0.7555758 0.9278974 0.9576028 +0.7751122 0.9278974 0.9576028 +0.7940252 0.9278974 0.9576028 +0.8123661 0.9278974 0.9576028 +0.8301795 0.9278974 0.9576028 +0.8475045 0.9278974 0.9576028 +0.8643761 0.9278974 0.9576028 +0.880825 0.9278974 0.9576028 +0.8968787 0.9278974 0.9576028 +0.9125621 0.9278974 0.9576028 +0.9278974 0.9278974 0.9576028 +0.9429048 0.9278974 0.9576028 +0.9576028 0.9278974 0.9576028 +0.9720079 0.9278974 0.9576028 +0.9861357 0.9278974 0.9576028 +1 0.9278974 0.9576028 +0 0.9429048 0.9576028 +0.1939468 0.9429048 0.9576028 +0.2773041 0.9429048 0.9576028 +0.3384659 0.9429048 0.9576028 +0.3885728 0.9429048 0.9576028 +0.4317928 0.9429048 0.9576028 +0.470214 0.9429048 0.9576028 +0.5050551 0.9429048 0.9576028 +0.5370987 0.9429048 0.9576028 +0.5668815 0.9429048 0.9576028 +0.5947903 0.9429048 0.9576028 +0.6211144 0.9429048 0.9576028 +0.6460766 0.9429048 0.9576028 +0.6698526 0.9429048 0.9576028 +0.6925839 0.9429048 0.9576028 +0.7143866 0.9429048 0.9576028 +0.7353569 0.9429048 0.9576028 +0.7555758 0.9429048 0.9576028 +0.7751122 0.9429048 0.9576028 +0.7940252 0.9429048 0.9576028 +0.8123661 0.9429048 0.9576028 +0.8301795 0.9429048 0.9576028 +0.8475045 0.9429048 0.9576028 +0.8643761 0.9429048 0.9576028 +0.880825 0.9429048 0.9576028 +0.8968787 0.9429048 0.9576028 +0.9125621 0.9429048 0.9576028 +0.9278974 0.9429048 0.9576028 +0.9429048 0.9429048 0.9576028 +0.9576028 0.9429048 0.9576028 +0.9720079 0.9429048 0.9576028 +0.9861357 0.9429048 0.9576028 +1 0.9429048 0.9576028 +0 0.9576028 0.9576028 +0.1939468 0.9576028 0.9576028 +0.2773041 0.9576028 0.9576028 +0.3384659 0.9576028 0.9576028 +0.3885728 0.9576028 0.9576028 +0.4317928 0.9576028 0.9576028 +0.470214 0.9576028 0.9576028 +0.5050551 0.9576028 0.9576028 +0.5370987 0.9576028 0.9576028 +0.5668815 0.9576028 0.9576028 +0.5947903 0.9576028 0.9576028 +0.6211144 0.9576028 0.9576028 +0.6460766 0.9576028 0.9576028 +0.6698526 0.9576028 0.9576028 +0.6925839 0.9576028 0.9576028 +0.7143866 0.9576028 0.9576028 +0.7353569 0.9576028 0.9576028 +0.7555758 0.9576028 0.9576028 +0.7751122 0.9576028 0.9576028 +0.7940252 0.9576028 0.9576028 +0.8123661 0.9576028 0.9576028 +0.8301795 0.9576028 0.9576028 +0.8475045 0.9576028 0.9576028 +0.8643761 0.9576028 0.9576028 +0.880825 0.9576028 0.9576028 +0.8968787 0.9576028 0.9576028 +0.9125621 0.9576028 0.9576028 +0.9278974 0.9576028 0.9576028 +0.9429048 0.9576028 0.9576028 +0.9576028 0.9576028 0.9576028 +0.9720079 0.9576028 0.9576028 +0.9861357 0.9576028 0.9576028 +1 0.9576028 0.9576028 +0 0.9720079 0.9576028 +0.1939468 0.9720079 0.9576028 +0.2773041 0.9720079 0.9576028 +0.3384659 0.9720079 0.9576028 +0.3885728 0.9720079 0.9576028 +0.4317928 0.9720079 0.9576028 +0.470214 0.9720079 0.9576028 +0.5050551 0.9720079 0.9576028 +0.5370987 0.9720079 0.9576028 +0.5668815 0.9720079 0.9576028 +0.5947903 0.9720079 0.9576028 +0.6211144 0.9720079 0.9576028 +0.6460766 0.9720079 0.9576028 +0.6698526 0.9720079 0.9576028 +0.6925839 0.9720079 0.9576028 +0.7143866 0.9720079 0.9576028 +0.7353569 0.9720079 0.9576028 +0.7555758 0.9720079 0.9576028 +0.7751122 0.9720079 0.9576028 +0.7940252 0.9720079 0.9576028 +0.8123661 0.9720079 0.9576028 +0.8301795 0.9720079 0.9576028 +0.8475045 0.9720079 0.9576028 +0.8643761 0.9720079 0.9576028 +0.880825 0.9720079 0.9576028 +0.8968787 0.9720079 0.9576028 +0.9125621 0.9720079 0.9576028 +0.9278974 0.9720079 0.9576028 +0.9429048 0.9720079 0.9576028 +0.9576028 0.9720079 0.9576028 +0.9720079 0.9720079 0.9576028 +0.9861357 0.9720079 0.9576028 +1 0.9720079 0.9576028 +0 0.9861357 0.9576028 +0.1939468 0.9861357 0.9576028 +0.2773041 0.9861357 0.9576028 +0.3384659 0.9861357 0.9576028 +0.3885728 0.9861357 0.9576028 +0.4317928 0.9861357 0.9576028 +0.470214 0.9861357 0.9576028 +0.5050551 0.9861357 0.9576028 +0.5370987 0.9861357 0.9576028 +0.5668815 0.9861357 0.9576028 +0.5947903 0.9861357 0.9576028 +0.6211144 0.9861357 0.9576028 +0.6460766 0.9861357 0.9576028 +0.6698526 0.9861357 0.9576028 +0.6925839 0.9861357 0.9576028 +0.7143866 0.9861357 0.9576028 +0.7353569 0.9861357 0.9576028 +0.7555758 0.9861357 0.9576028 +0.7751122 0.9861357 0.9576028 +0.7940252 0.9861357 0.9576028 +0.8123661 0.9861357 0.9576028 +0.8301795 0.9861357 0.9576028 +0.8475045 0.9861357 0.9576028 +0.8643761 0.9861357 0.9576028 +0.880825 0.9861357 0.9576028 +0.8968787 0.9861357 0.9576028 +0.9125621 0.9861357 0.9576028 +0.9278974 0.9861357 0.9576028 +0.9429048 0.9861357 0.9576028 +0.9576028 0.9861357 0.9576028 +0.9720079 0.9861357 0.9576028 +0.9861357 0.9861357 0.9576028 +1 0.9861357 0.9576028 +0 1 0.9576028 +0.1939468 1 0.9576028 +0.2773041 1 0.9576028 +0.3384659 1 0.9576028 +0.3885728 1 0.9576028 +0.4317928 1 0.9576028 +0.470214 1 0.9576028 +0.5050551 1 0.9576028 +0.5370987 1 0.9576028 +0.5668815 1 0.9576028 +0.5947903 1 0.9576028 +0.6211144 1 0.9576028 +0.6460766 1 0.9576028 +0.6698526 1 0.9576028 +0.6925839 1 0.9576028 +0.7143866 1 0.9576028 +0.7353569 1 0.9576028 +0.7555758 1 0.9576028 +0.7751122 1 0.9576028 +0.7940252 1 0.9576028 +0.8123661 1 0.9576028 +0.8301795 1 0.9576028 +0.8475045 1 0.9576028 +0.8643761 1 0.9576028 +0.880825 1 0.9576028 +0.8968787 1 0.9576028 +0.9125621 1 0.9576028 +0.9278974 1 0.9576028 +0.9429048 1 0.9576028 +0.9576028 1 0.9576028 +0.9720079 1 0.9576028 +0.9861357 1 0.9576028 +1 1 0.9576028 +0 0 0.9720079 +0.1939468 0 0.9720079 +0.2773041 0 0.9720079 +0.3384659 0 0.9720079 +0.3885728 0 0.9720079 +0.4317928 0 0.9720079 +0.470214 0 0.9720079 +0.5050551 0 0.9720079 +0.5370987 0 0.9720079 +0.5668815 0 0.9720079 +0.5947903 0 0.9720079 +0.6211144 0 0.9720079 +0.6460766 0 0.9720079 +0.6698526 0 0.9720079 +0.6925839 0 0.9720079 +0.7143866 0 0.9720079 +0.7353569 0 0.9720079 +0.7555758 0 0.9720079 +0.7751122 0 0.9720079 +0.7940252 0 0.9720079 +0.8123661 0 0.9720079 +0.8301795 0 0.9720079 +0.8475045 0 0.9720079 +0.8643761 0 0.9720079 +0.880825 0 0.9720079 +0.8968787 0 0.9720079 +0.9125621 0 0.9720079 +0.9278974 0 0.9720079 +0.9429048 0 0.9720079 +0.9576028 0 0.9720079 +0.9720079 0 0.9720079 +0.9861357 0 0.9720079 +1 0 0.9720079 +0 0.1939468 0.9720079 +0.1939468 0.1939468 0.9720079 +0.2773041 0.1939468 0.9720079 +0.3384659 0.1939468 0.9720079 +0.3885728 0.1939468 0.9720079 +0.4317928 0.1939468 0.9720079 +0.470214 0.1939468 0.9720079 +0.5050551 0.1939468 0.9720079 +0.5370987 0.1939468 0.9720079 +0.5668815 0.1939468 0.9720079 +0.5947903 0.1939468 0.9720079 +0.6211144 0.1939468 0.9720079 +0.6460766 0.1939468 0.9720079 +0.6698526 0.1939468 0.9720079 +0.6925839 0.1939468 0.9720079 +0.7143866 0.1939468 0.9720079 +0.7353569 0.1939468 0.9720079 +0.7555758 0.1939468 0.9720079 +0.7751122 0.1939468 0.9720079 +0.7940252 0.1939468 0.9720079 +0.8123661 0.1939468 0.9720079 +0.8301795 0.1939468 0.9720079 +0.8475045 0.1939468 0.9720079 +0.8643761 0.1939468 0.9720079 +0.880825 0.1939468 0.9720079 +0.8968787 0.1939468 0.9720079 +0.9125621 0.1939468 0.9720079 +0.9278974 0.1939468 0.9720079 +0.9429048 0.1939468 0.9720079 +0.9576028 0.1939468 0.9720079 +0.9720079 0.1939468 0.9720079 +0.9861357 0.1939468 0.9720079 +1 0.1939468 0.9720079 +0 0.2773041 0.9720079 +0.1939468 0.2773041 0.9720079 +0.2773041 0.2773041 0.9720079 +0.3384659 0.2773041 0.9720079 +0.3885728 0.2773041 0.9720079 +0.4317928 0.2773041 0.9720079 +0.470214 0.2773041 0.9720079 +0.5050551 0.2773041 0.9720079 +0.5370987 0.2773041 0.9720079 +0.5668815 0.2773041 0.9720079 +0.5947903 0.2773041 0.9720079 +0.6211144 0.2773041 0.9720079 +0.6460766 0.2773041 0.9720079 +0.6698526 0.2773041 0.9720079 +0.6925839 0.2773041 0.9720079 +0.7143866 0.2773041 0.9720079 +0.7353569 0.2773041 0.9720079 +0.7555758 0.2773041 0.9720079 +0.7751122 0.2773041 0.9720079 +0.7940252 0.2773041 0.9720079 +0.8123661 0.2773041 0.9720079 +0.8301795 0.2773041 0.9720079 +0.8475045 0.2773041 0.9720079 +0.8643761 0.2773041 0.9720079 +0.880825 0.2773041 0.9720079 +0.8968787 0.2773041 0.9720079 +0.9125621 0.2773041 0.9720079 +0.9278974 0.2773041 0.9720079 +0.9429048 0.2773041 0.9720079 +0.9576028 0.2773041 0.9720079 +0.9720079 0.2773041 0.9720079 +0.9861357 0.2773041 0.9720079 +1 0.2773041 0.9720079 +0 0.3384659 0.9720079 +0.1939468 0.3384659 0.9720079 +0.2773041 0.3384659 0.9720079 +0.3384659 0.3384659 0.9720079 +0.3885728 0.3384659 0.9720079 +0.4317928 0.3384659 0.9720079 +0.470214 0.3384659 0.9720079 +0.5050551 0.3384659 0.9720079 +0.5370987 0.3384659 0.9720079 +0.5668815 0.3384659 0.9720079 +0.5947903 0.3384659 0.9720079 +0.6211144 0.3384659 0.9720079 +0.6460766 0.3384659 0.9720079 +0.6698526 0.3384659 0.9720079 +0.6925839 0.3384659 0.9720079 +0.7143866 0.3384659 0.9720079 +0.7353569 0.3384659 0.9720079 +0.7555758 0.3384659 0.9720079 +0.7751122 0.3384659 0.9720079 +0.7940252 0.3384659 0.9720079 +0.8123661 0.3384659 0.9720079 +0.8301795 0.3384659 0.9720079 +0.8475045 0.3384659 0.9720079 +0.8643761 0.3384659 0.9720079 +0.880825 0.3384659 0.9720079 +0.8968787 0.3384659 0.9720079 +0.9125621 0.3384659 0.9720079 +0.9278974 0.3384659 0.9720079 +0.9429048 0.3384659 0.9720079 +0.9576028 0.3384659 0.9720079 +0.9720079 0.3384659 0.9720079 +0.9861357 0.3384659 0.9720079 +1 0.3384659 0.9720079 +0 0.3885728 0.9720079 +0.1939468 0.3885728 0.9720079 +0.2773041 0.3885728 0.9720079 +0.3384659 0.3885728 0.9720079 +0.3885728 0.3885728 0.9720079 +0.4317928 0.3885728 0.9720079 +0.470214 0.3885728 0.9720079 +0.5050551 0.3885728 0.9720079 +0.5370987 0.3885728 0.9720079 +0.5668815 0.3885728 0.9720079 +0.5947903 0.3885728 0.9720079 +0.6211144 0.3885728 0.9720079 +0.6460766 0.3885728 0.9720079 +0.6698526 0.3885728 0.9720079 +0.6925839 0.3885728 0.9720079 +0.7143866 0.3885728 0.9720079 +0.7353569 0.3885728 0.9720079 +0.7555758 0.3885728 0.9720079 +0.7751122 0.3885728 0.9720079 +0.7940252 0.3885728 0.9720079 +0.8123661 0.3885728 0.9720079 +0.8301795 0.3885728 0.9720079 +0.8475045 0.3885728 0.9720079 +0.8643761 0.3885728 0.9720079 +0.880825 0.3885728 0.9720079 +0.8968787 0.3885728 0.9720079 +0.9125621 0.3885728 0.9720079 +0.9278974 0.3885728 0.9720079 +0.9429048 0.3885728 0.9720079 +0.9576028 0.3885728 0.9720079 +0.9720079 0.3885728 0.9720079 +0.9861357 0.3885728 0.9720079 +1 0.3885728 0.9720079 +0 0.4317928 0.9720079 +0.1939468 0.4317928 0.9720079 +0.2773041 0.4317928 0.9720079 +0.3384659 0.4317928 0.9720079 +0.3885728 0.4317928 0.9720079 +0.4317928 0.4317928 0.9720079 +0.470214 0.4317928 0.9720079 +0.5050551 0.4317928 0.9720079 +0.5370987 0.4317928 0.9720079 +0.5668815 0.4317928 0.9720079 +0.5947903 0.4317928 0.9720079 +0.6211144 0.4317928 0.9720079 +0.6460766 0.4317928 0.9720079 +0.6698526 0.4317928 0.9720079 +0.6925839 0.4317928 0.9720079 +0.7143866 0.4317928 0.9720079 +0.7353569 0.4317928 0.9720079 +0.7555758 0.4317928 0.9720079 +0.7751122 0.4317928 0.9720079 +0.7940252 0.4317928 0.9720079 +0.8123661 0.4317928 0.9720079 +0.8301795 0.4317928 0.9720079 +0.8475045 0.4317928 0.9720079 +0.8643761 0.4317928 0.9720079 +0.880825 0.4317928 0.9720079 +0.8968787 0.4317928 0.9720079 +0.9125621 0.4317928 0.9720079 +0.9278974 0.4317928 0.9720079 +0.9429048 0.4317928 0.9720079 +0.9576028 0.4317928 0.9720079 +0.9720079 0.4317928 0.9720079 +0.9861357 0.4317928 0.9720079 +1 0.4317928 0.9720079 +0 0.470214 0.9720079 +0.1939468 0.470214 0.9720079 +0.2773041 0.470214 0.9720079 +0.3384659 0.470214 0.9720079 +0.3885728 0.470214 0.9720079 +0.4317928 0.470214 0.9720079 +0.470214 0.470214 0.9720079 +0.5050551 0.470214 0.9720079 +0.5370987 0.470214 0.9720079 +0.5668815 0.470214 0.9720079 +0.5947903 0.470214 0.9720079 +0.6211144 0.470214 0.9720079 +0.6460766 0.470214 0.9720079 +0.6698526 0.470214 0.9720079 +0.6925839 0.470214 0.9720079 +0.7143866 0.470214 0.9720079 +0.7353569 0.470214 0.9720079 +0.7555758 0.470214 0.9720079 +0.7751122 0.470214 0.9720079 +0.7940252 0.470214 0.9720079 +0.8123661 0.470214 0.9720079 +0.8301795 0.470214 0.9720079 +0.8475045 0.470214 0.9720079 +0.8643761 0.470214 0.9720079 +0.880825 0.470214 0.9720079 +0.8968787 0.470214 0.9720079 +0.9125621 0.470214 0.9720079 +0.9278974 0.470214 0.9720079 +0.9429048 0.470214 0.9720079 +0.9576028 0.470214 0.9720079 +0.9720079 0.470214 0.9720079 +0.9861357 0.470214 0.9720079 +1 0.470214 0.9720079 +0 0.5050551 0.9720079 +0.1939468 0.5050551 0.9720079 +0.2773041 0.5050551 0.9720079 +0.3384659 0.5050551 0.9720079 +0.3885728 0.5050551 0.9720079 +0.4317928 0.5050551 0.9720079 +0.470214 0.5050551 0.9720079 +0.5050551 0.5050551 0.9720079 +0.5370987 0.5050551 0.9720079 +0.5668815 0.5050551 0.9720079 +0.5947903 0.5050551 0.9720079 +0.6211144 0.5050551 0.9720079 +0.6460766 0.5050551 0.9720079 +0.6698526 0.5050551 0.9720079 +0.6925839 0.5050551 0.9720079 +0.7143866 0.5050551 0.9720079 +0.7353569 0.5050551 0.9720079 +0.7555758 0.5050551 0.9720079 +0.7751122 0.5050551 0.9720079 +0.7940252 0.5050551 0.9720079 +0.8123661 0.5050551 0.9720079 +0.8301795 0.5050551 0.9720079 +0.8475045 0.5050551 0.9720079 +0.8643761 0.5050551 0.9720079 +0.880825 0.5050551 0.9720079 +0.8968787 0.5050551 0.9720079 +0.9125621 0.5050551 0.9720079 +0.9278974 0.5050551 0.9720079 +0.9429048 0.5050551 0.9720079 +0.9576028 0.5050551 0.9720079 +0.9720079 0.5050551 0.9720079 +0.9861357 0.5050551 0.9720079 +1 0.5050551 0.9720079 +0 0.5370987 0.9720079 +0.1939468 0.5370987 0.9720079 +0.2773041 0.5370987 0.9720079 +0.3384659 0.5370987 0.9720079 +0.3885728 0.5370987 0.9720079 +0.4317928 0.5370987 0.9720079 +0.470214 0.5370987 0.9720079 +0.5050551 0.5370987 0.9720079 +0.5370987 0.5370987 0.9720079 +0.5668815 0.5370987 0.9720079 +0.5947903 0.5370987 0.9720079 +0.6211144 0.5370987 0.9720079 +0.6460766 0.5370987 0.9720079 +0.6698526 0.5370987 0.9720079 +0.6925839 0.5370987 0.9720079 +0.7143866 0.5370987 0.9720079 +0.7353569 0.5370987 0.9720079 +0.7555758 0.5370987 0.9720079 +0.7751122 0.5370987 0.9720079 +0.7940252 0.5370987 0.9720079 +0.8123661 0.5370987 0.9720079 +0.8301795 0.5370987 0.9720079 +0.8475045 0.5370987 0.9720079 +0.8643761 0.5370987 0.9720079 +0.880825 0.5370987 0.9720079 +0.8968787 0.5370987 0.9720079 +0.9125621 0.5370987 0.9720079 +0.9278974 0.5370987 0.9720079 +0.9429048 0.5370987 0.9720079 +0.9576028 0.5370987 0.9720079 +0.9720079 0.5370987 0.9720079 +0.9861357 0.5370987 0.9720079 +1 0.5370987 0.9720079 +0 0.5668815 0.9720079 +0.1939468 0.5668815 0.9720079 +0.2773041 0.5668815 0.9720079 +0.3384659 0.5668815 0.9720079 +0.3885728 0.5668815 0.9720079 +0.4317928 0.5668815 0.9720079 +0.470214 0.5668815 0.9720079 +0.5050551 0.5668815 0.9720079 +0.5370987 0.5668815 0.9720079 +0.5668815 0.5668815 0.9720079 +0.5947903 0.5668815 0.9720079 +0.6211144 0.5668815 0.9720079 +0.6460766 0.5668815 0.9720079 +0.6698526 0.5668815 0.9720079 +0.6925839 0.5668815 0.9720079 +0.7143866 0.5668815 0.9720079 +0.7353569 0.5668815 0.9720079 +0.7555758 0.5668815 0.9720079 +0.7751122 0.5668815 0.9720079 +0.7940252 0.5668815 0.9720079 +0.8123661 0.5668815 0.9720079 +0.8301795 0.5668815 0.9720079 +0.8475045 0.5668815 0.9720079 +0.8643761 0.5668815 0.9720079 +0.880825 0.5668815 0.9720079 +0.8968787 0.5668815 0.9720079 +0.9125621 0.5668815 0.9720079 +0.9278974 0.5668815 0.9720079 +0.9429048 0.5668815 0.9720079 +0.9576028 0.5668815 0.9720079 +0.9720079 0.5668815 0.9720079 +0.9861357 0.5668815 0.9720079 +1 0.5668815 0.9720079 +0 0.5947903 0.9720079 +0.1939468 0.5947903 0.9720079 +0.2773041 0.5947903 0.9720079 +0.3384659 0.5947903 0.9720079 +0.3885728 0.5947903 0.9720079 +0.4317928 0.5947903 0.9720079 +0.470214 0.5947903 0.9720079 +0.5050551 0.5947903 0.9720079 +0.5370987 0.5947903 0.9720079 +0.5668815 0.5947903 0.9720079 +0.5947903 0.5947903 0.9720079 +0.6211144 0.5947903 0.9720079 +0.6460766 0.5947903 0.9720079 +0.6698526 0.5947903 0.9720079 +0.6925839 0.5947903 0.9720079 +0.7143866 0.5947903 0.9720079 +0.7353569 0.5947903 0.9720079 +0.7555758 0.5947903 0.9720079 +0.7751122 0.5947903 0.9720079 +0.7940252 0.5947903 0.9720079 +0.8123661 0.5947903 0.9720079 +0.8301795 0.5947903 0.9720079 +0.8475045 0.5947903 0.9720079 +0.8643761 0.5947903 0.9720079 +0.880825 0.5947903 0.9720079 +0.8968787 0.5947903 0.9720079 +0.9125621 0.5947903 0.9720079 +0.9278974 0.5947903 0.9720079 +0.9429048 0.5947903 0.9720079 +0.9576028 0.5947903 0.9720079 +0.9720079 0.5947903 0.9720079 +0.9861357 0.5947903 0.9720079 +1 0.5947903 0.9720079 +0 0.6211144 0.9720079 +0.1939468 0.6211144 0.9720079 +0.2773041 0.6211144 0.9720079 +0.3384659 0.6211144 0.9720079 +0.3885728 0.6211144 0.9720079 +0.4317928 0.6211144 0.9720079 +0.470214 0.6211144 0.9720079 +0.5050551 0.6211144 0.9720079 +0.5370987 0.6211144 0.9720079 +0.5668815 0.6211144 0.9720079 +0.5947903 0.6211144 0.9720079 +0.6211144 0.6211144 0.9720079 +0.6460766 0.6211144 0.9720079 +0.6698526 0.6211144 0.9720079 +0.6925839 0.6211144 0.9720079 +0.7143866 0.6211144 0.9720079 +0.7353569 0.6211144 0.9720079 +0.7555758 0.6211144 0.9720079 +0.7751122 0.6211144 0.9720079 +0.7940252 0.6211144 0.9720079 +0.8123661 0.6211144 0.9720079 +0.8301795 0.6211144 0.9720079 +0.8475045 0.6211144 0.9720079 +0.8643761 0.6211144 0.9720079 +0.880825 0.6211144 0.9720079 +0.8968787 0.6211144 0.9720079 +0.9125621 0.6211144 0.9720079 +0.9278974 0.6211144 0.9720079 +0.9429048 0.6211144 0.9720079 +0.9576028 0.6211144 0.9720079 +0.9720079 0.6211144 0.9720079 +0.9861357 0.6211144 0.9720079 +1 0.6211144 0.9720079 +0 0.6460766 0.9720079 +0.1939468 0.6460766 0.9720079 +0.2773041 0.6460766 0.9720079 +0.3384659 0.6460766 0.9720079 +0.3885728 0.6460766 0.9720079 +0.4317928 0.6460766 0.9720079 +0.470214 0.6460766 0.9720079 +0.5050551 0.6460766 0.9720079 +0.5370987 0.6460766 0.9720079 +0.5668815 0.6460766 0.9720079 +0.5947903 0.6460766 0.9720079 +0.6211144 0.6460766 0.9720079 +0.6460766 0.6460766 0.9720079 +0.6698526 0.6460766 0.9720079 +0.6925839 0.6460766 0.9720079 +0.7143866 0.6460766 0.9720079 +0.7353569 0.6460766 0.9720079 +0.7555758 0.6460766 0.9720079 +0.7751122 0.6460766 0.9720079 +0.7940252 0.6460766 0.9720079 +0.8123661 0.6460766 0.9720079 +0.8301795 0.6460766 0.9720079 +0.8475045 0.6460766 0.9720079 +0.8643761 0.6460766 0.9720079 +0.880825 0.6460766 0.9720079 +0.8968787 0.6460766 0.9720079 +0.9125621 0.6460766 0.9720079 +0.9278974 0.6460766 0.9720079 +0.9429048 0.6460766 0.9720079 +0.9576028 0.6460766 0.9720079 +0.9720079 0.6460766 0.9720079 +0.9861357 0.6460766 0.9720079 +1 0.6460766 0.9720079 +0 0.6698526 0.9720079 +0.1939468 0.6698526 0.9720079 +0.2773041 0.6698526 0.9720079 +0.3384659 0.6698526 0.9720079 +0.3885728 0.6698526 0.9720079 +0.4317928 0.6698526 0.9720079 +0.470214 0.6698526 0.9720079 +0.5050551 0.6698526 0.9720079 +0.5370987 0.6698526 0.9720079 +0.5668815 0.6698526 0.9720079 +0.5947903 0.6698526 0.9720079 +0.6211144 0.6698526 0.9720079 +0.6460766 0.6698526 0.9720079 +0.6698526 0.6698526 0.9720079 +0.6925839 0.6698526 0.9720079 +0.7143866 0.6698526 0.9720079 +0.7353569 0.6698526 0.9720079 +0.7555758 0.6698526 0.9720079 +0.7751122 0.6698526 0.9720079 +0.7940252 0.6698526 0.9720079 +0.8123661 0.6698526 0.9720079 +0.8301795 0.6698526 0.9720079 +0.8475045 0.6698526 0.9720079 +0.8643761 0.6698526 0.9720079 +0.880825 0.6698526 0.9720079 +0.8968787 0.6698526 0.9720079 +0.9125621 0.6698526 0.9720079 +0.9278974 0.6698526 0.9720079 +0.9429048 0.6698526 0.9720079 +0.9576028 0.6698526 0.9720079 +0.9720079 0.6698526 0.9720079 +0.9861357 0.6698526 0.9720079 +1 0.6698526 0.9720079 +0 0.6925839 0.9720079 +0.1939468 0.6925839 0.9720079 +0.2773041 0.6925839 0.9720079 +0.3384659 0.6925839 0.9720079 +0.3885728 0.6925839 0.9720079 +0.4317928 0.6925839 0.9720079 +0.470214 0.6925839 0.9720079 +0.5050551 0.6925839 0.9720079 +0.5370987 0.6925839 0.9720079 +0.5668815 0.6925839 0.9720079 +0.5947903 0.6925839 0.9720079 +0.6211144 0.6925839 0.9720079 +0.6460766 0.6925839 0.9720079 +0.6698526 0.6925839 0.9720079 +0.6925839 0.6925839 0.9720079 +0.7143866 0.6925839 0.9720079 +0.7353569 0.6925839 0.9720079 +0.7555758 0.6925839 0.9720079 +0.7751122 0.6925839 0.9720079 +0.7940252 0.6925839 0.9720079 +0.8123661 0.6925839 0.9720079 +0.8301795 0.6925839 0.9720079 +0.8475045 0.6925839 0.9720079 +0.8643761 0.6925839 0.9720079 +0.880825 0.6925839 0.9720079 +0.8968787 0.6925839 0.9720079 +0.9125621 0.6925839 0.9720079 +0.9278974 0.6925839 0.9720079 +0.9429048 0.6925839 0.9720079 +0.9576028 0.6925839 0.9720079 +0.9720079 0.6925839 0.9720079 +0.9861357 0.6925839 0.9720079 +1 0.6925839 0.9720079 +0 0.7143866 0.9720079 +0.1939468 0.7143866 0.9720079 +0.2773041 0.7143866 0.9720079 +0.3384659 0.7143866 0.9720079 +0.3885728 0.7143866 0.9720079 +0.4317928 0.7143866 0.9720079 +0.470214 0.7143866 0.9720079 +0.5050551 0.7143866 0.9720079 +0.5370987 0.7143866 0.9720079 +0.5668815 0.7143866 0.9720079 +0.5947903 0.7143866 0.9720079 +0.6211144 0.7143866 0.9720079 +0.6460766 0.7143866 0.9720079 +0.6698526 0.7143866 0.9720079 +0.6925839 0.7143866 0.9720079 +0.7143866 0.7143866 0.9720079 +0.7353569 0.7143866 0.9720079 +0.7555758 0.7143866 0.9720079 +0.7751122 0.7143866 0.9720079 +0.7940252 0.7143866 0.9720079 +0.8123661 0.7143866 0.9720079 +0.8301795 0.7143866 0.9720079 +0.8475045 0.7143866 0.9720079 +0.8643761 0.7143866 0.9720079 +0.880825 0.7143866 0.9720079 +0.8968787 0.7143866 0.9720079 +0.9125621 0.7143866 0.9720079 +0.9278974 0.7143866 0.9720079 +0.9429048 0.7143866 0.9720079 +0.9576028 0.7143866 0.9720079 +0.9720079 0.7143866 0.9720079 +0.9861357 0.7143866 0.9720079 +1 0.7143866 0.9720079 +0 0.7353569 0.9720079 +0.1939468 0.7353569 0.9720079 +0.2773041 0.7353569 0.9720079 +0.3384659 0.7353569 0.9720079 +0.3885728 0.7353569 0.9720079 +0.4317928 0.7353569 0.9720079 +0.470214 0.7353569 0.9720079 +0.5050551 0.7353569 0.9720079 +0.5370987 0.7353569 0.9720079 +0.5668815 0.7353569 0.9720079 +0.5947903 0.7353569 0.9720079 +0.6211144 0.7353569 0.9720079 +0.6460766 0.7353569 0.9720079 +0.6698526 0.7353569 0.9720079 +0.6925839 0.7353569 0.9720079 +0.7143866 0.7353569 0.9720079 +0.7353569 0.7353569 0.9720079 +0.7555758 0.7353569 0.9720079 +0.7751122 0.7353569 0.9720079 +0.7940252 0.7353569 0.9720079 +0.8123661 0.7353569 0.9720079 +0.8301795 0.7353569 0.9720079 +0.8475045 0.7353569 0.9720079 +0.8643761 0.7353569 0.9720079 +0.880825 0.7353569 0.9720079 +0.8968787 0.7353569 0.9720079 +0.9125621 0.7353569 0.9720079 +0.9278974 0.7353569 0.9720079 +0.9429048 0.7353569 0.9720079 +0.9576028 0.7353569 0.9720079 +0.9720079 0.7353569 0.9720079 +0.9861357 0.7353569 0.9720079 +1 0.7353569 0.9720079 +0 0.7555758 0.9720079 +0.1939468 0.7555758 0.9720079 +0.2773041 0.7555758 0.9720079 +0.3384659 0.7555758 0.9720079 +0.3885728 0.7555758 0.9720079 +0.4317928 0.7555758 0.9720079 +0.470214 0.7555758 0.9720079 +0.5050551 0.7555758 0.9720079 +0.5370987 0.7555758 0.9720079 +0.5668815 0.7555758 0.9720079 +0.5947903 0.7555758 0.9720079 +0.6211144 0.7555758 0.9720079 +0.6460766 0.7555758 0.9720079 +0.6698526 0.7555758 0.9720079 +0.6925839 0.7555758 0.9720079 +0.7143866 0.7555758 0.9720079 +0.7353569 0.7555758 0.9720079 +0.7555758 0.7555758 0.9720079 +0.7751122 0.7555758 0.9720079 +0.7940252 0.7555758 0.9720079 +0.8123661 0.7555758 0.9720079 +0.8301795 0.7555758 0.9720079 +0.8475045 0.7555758 0.9720079 +0.8643761 0.7555758 0.9720079 +0.880825 0.7555758 0.9720079 +0.8968787 0.7555758 0.9720079 +0.9125621 0.7555758 0.9720079 +0.9278974 0.7555758 0.9720079 +0.9429048 0.7555758 0.9720079 +0.9576028 0.7555758 0.9720079 +0.9720079 0.7555758 0.9720079 +0.9861357 0.7555758 0.9720079 +1 0.7555758 0.9720079 +0 0.7751122 0.9720079 +0.1939468 0.7751122 0.9720079 +0.2773041 0.7751122 0.9720079 +0.3384659 0.7751122 0.9720079 +0.3885728 0.7751122 0.9720079 +0.4317928 0.7751122 0.9720079 +0.470214 0.7751122 0.9720079 +0.5050551 0.7751122 0.9720079 +0.5370987 0.7751122 0.9720079 +0.5668815 0.7751122 0.9720079 +0.5947903 0.7751122 0.9720079 +0.6211144 0.7751122 0.9720079 +0.6460766 0.7751122 0.9720079 +0.6698526 0.7751122 0.9720079 +0.6925839 0.7751122 0.9720079 +0.7143866 0.7751122 0.9720079 +0.7353569 0.7751122 0.9720079 +0.7555758 0.7751122 0.9720079 +0.7751122 0.7751122 0.9720079 +0.7940252 0.7751122 0.9720079 +0.8123661 0.7751122 0.9720079 +0.8301795 0.7751122 0.9720079 +0.8475045 0.7751122 0.9720079 +0.8643761 0.7751122 0.9720079 +0.880825 0.7751122 0.9720079 +0.8968787 0.7751122 0.9720079 +0.9125621 0.7751122 0.9720079 +0.9278974 0.7751122 0.9720079 +0.9429048 0.7751122 0.9720079 +0.9576028 0.7751122 0.9720079 +0.9720079 0.7751122 0.9720079 +0.9861357 0.7751122 0.9720079 +1 0.7751122 0.9720079 +0 0.7940252 0.9720079 +0.1939468 0.7940252 0.9720079 +0.2773041 0.7940252 0.9720079 +0.3384659 0.7940252 0.9720079 +0.3885728 0.7940252 0.9720079 +0.4317928 0.7940252 0.9720079 +0.470214 0.7940252 0.9720079 +0.5050551 0.7940252 0.9720079 +0.5370987 0.7940252 0.9720079 +0.5668815 0.7940252 0.9720079 +0.5947903 0.7940252 0.9720079 +0.6211144 0.7940252 0.9720079 +0.6460766 0.7940252 0.9720079 +0.6698526 0.7940252 0.9720079 +0.6925839 0.7940252 0.9720079 +0.7143866 0.7940252 0.9720079 +0.7353569 0.7940252 0.9720079 +0.7555758 0.7940252 0.9720079 +0.7751122 0.7940252 0.9720079 +0.7940252 0.7940252 0.9720079 +0.8123661 0.7940252 0.9720079 +0.8301795 0.7940252 0.9720079 +0.8475045 0.7940252 0.9720079 +0.8643761 0.7940252 0.9720079 +0.880825 0.7940252 0.9720079 +0.8968787 0.7940252 0.9720079 +0.9125621 0.7940252 0.9720079 +0.9278974 0.7940252 0.9720079 +0.9429048 0.7940252 0.9720079 +0.9576028 0.7940252 0.9720079 +0.9720079 0.7940252 0.9720079 +0.9861357 0.7940252 0.9720079 +1 0.7940252 0.9720079 +0 0.8123661 0.9720079 +0.1939468 0.8123661 0.9720079 +0.2773041 0.8123661 0.9720079 +0.3384659 0.8123661 0.9720079 +0.3885728 0.8123661 0.9720079 +0.4317928 0.8123661 0.9720079 +0.470214 0.8123661 0.9720079 +0.5050551 0.8123661 0.9720079 +0.5370987 0.8123661 0.9720079 +0.5668815 0.8123661 0.9720079 +0.5947903 0.8123661 0.9720079 +0.6211144 0.8123661 0.9720079 +0.6460766 0.8123661 0.9720079 +0.6698526 0.8123661 0.9720079 +0.6925839 0.8123661 0.9720079 +0.7143866 0.8123661 0.9720079 +0.7353569 0.8123661 0.9720079 +0.7555758 0.8123661 0.9720079 +0.7751122 0.8123661 0.9720079 +0.7940252 0.8123661 0.9720079 +0.8123661 0.8123661 0.9720079 +0.8301795 0.8123661 0.9720079 +0.8475045 0.8123661 0.9720079 +0.8643761 0.8123661 0.9720079 +0.880825 0.8123661 0.9720079 +0.8968787 0.8123661 0.9720079 +0.9125621 0.8123661 0.9720079 +0.9278974 0.8123661 0.9720079 +0.9429048 0.8123661 0.9720079 +0.9576028 0.8123661 0.9720079 +0.9720079 0.8123661 0.9720079 +0.9861357 0.8123661 0.9720079 +1 0.8123661 0.9720079 +0 0.8301795 0.9720079 +0.1939468 0.8301795 0.9720079 +0.2773041 0.8301795 0.9720079 +0.3384659 0.8301795 0.9720079 +0.3885728 0.8301795 0.9720079 +0.4317928 0.8301795 0.9720079 +0.470214 0.8301795 0.9720079 +0.5050551 0.8301795 0.9720079 +0.5370987 0.8301795 0.9720079 +0.5668815 0.8301795 0.9720079 +0.5947903 0.8301795 0.9720079 +0.6211144 0.8301795 0.9720079 +0.6460766 0.8301795 0.9720079 +0.6698526 0.8301795 0.9720079 +0.6925839 0.8301795 0.9720079 +0.7143866 0.8301795 0.9720079 +0.7353569 0.8301795 0.9720079 +0.7555758 0.8301795 0.9720079 +0.7751122 0.8301795 0.9720079 +0.7940252 0.8301795 0.9720079 +0.8123661 0.8301795 0.9720079 +0.8301795 0.8301795 0.9720079 +0.8475045 0.8301795 0.9720079 +0.8643761 0.8301795 0.9720079 +0.880825 0.8301795 0.9720079 +0.8968787 0.8301795 0.9720079 +0.9125621 0.8301795 0.9720079 +0.9278974 0.8301795 0.9720079 +0.9429048 0.8301795 0.9720079 +0.9576028 0.8301795 0.9720079 +0.9720079 0.8301795 0.9720079 +0.9861357 0.8301795 0.9720079 +1 0.8301795 0.9720079 +0 0.8475045 0.9720079 +0.1939468 0.8475045 0.9720079 +0.2773041 0.8475045 0.9720079 +0.3384659 0.8475045 0.9720079 +0.3885728 0.8475045 0.9720079 +0.4317928 0.8475045 0.9720079 +0.470214 0.8475045 0.9720079 +0.5050551 0.8475045 0.9720079 +0.5370987 0.8475045 0.9720079 +0.5668815 0.8475045 0.9720079 +0.5947903 0.8475045 0.9720079 +0.6211144 0.8475045 0.9720079 +0.6460766 0.8475045 0.9720079 +0.6698526 0.8475045 0.9720079 +0.6925839 0.8475045 0.9720079 +0.7143866 0.8475045 0.9720079 +0.7353569 0.8475045 0.9720079 +0.7555758 0.8475045 0.9720079 +0.7751122 0.8475045 0.9720079 +0.7940252 0.8475045 0.9720079 +0.8123661 0.8475045 0.9720079 +0.8301795 0.8475045 0.9720079 +0.8475045 0.8475045 0.9720079 +0.8643761 0.8475045 0.9720079 +0.880825 0.8475045 0.9720079 +0.8968787 0.8475045 0.9720079 +0.9125621 0.8475045 0.9720079 +0.9278974 0.8475045 0.9720079 +0.9429048 0.8475045 0.9720079 +0.9576028 0.8475045 0.9720079 +0.9720079 0.8475045 0.9720079 +0.9861357 0.8475045 0.9720079 +1 0.8475045 0.9720079 +0 0.8643761 0.9720079 +0.1939468 0.8643761 0.9720079 +0.2773041 0.8643761 0.9720079 +0.3384659 0.8643761 0.9720079 +0.3885728 0.8643761 0.9720079 +0.4317928 0.8643761 0.9720079 +0.470214 0.8643761 0.9720079 +0.5050551 0.8643761 0.9720079 +0.5370987 0.8643761 0.9720079 +0.5668815 0.8643761 0.9720079 +0.5947903 0.8643761 0.9720079 +0.6211144 0.8643761 0.9720079 +0.6460766 0.8643761 0.9720079 +0.6698526 0.8643761 0.9720079 +0.6925839 0.8643761 0.9720079 +0.7143866 0.8643761 0.9720079 +0.7353569 0.8643761 0.9720079 +0.7555758 0.8643761 0.9720079 +0.7751122 0.8643761 0.9720079 +0.7940252 0.8643761 0.9720079 +0.8123661 0.8643761 0.9720079 +0.8301795 0.8643761 0.9720079 +0.8475045 0.8643761 0.9720079 +0.8643761 0.8643761 0.9720079 +0.880825 0.8643761 0.9720079 +0.8968787 0.8643761 0.9720079 +0.9125621 0.8643761 0.9720079 +0.9278974 0.8643761 0.9720079 +0.9429048 0.8643761 0.9720079 +0.9576028 0.8643761 0.9720079 +0.9720079 0.8643761 0.9720079 +0.9861357 0.8643761 0.9720079 +1 0.8643761 0.9720079 +0 0.880825 0.9720079 +0.1939468 0.880825 0.9720079 +0.2773041 0.880825 0.9720079 +0.3384659 0.880825 0.9720079 +0.3885728 0.880825 0.9720079 +0.4317928 0.880825 0.9720079 +0.470214 0.880825 0.9720079 +0.5050551 0.880825 0.9720079 +0.5370987 0.880825 0.9720079 +0.5668815 0.880825 0.9720079 +0.5947903 0.880825 0.9720079 +0.6211144 0.880825 0.9720079 +0.6460766 0.880825 0.9720079 +0.6698526 0.880825 0.9720079 +0.6925839 0.880825 0.9720079 +0.7143866 0.880825 0.9720079 +0.7353569 0.880825 0.9720079 +0.7555758 0.880825 0.9720079 +0.7751122 0.880825 0.9720079 +0.7940252 0.880825 0.9720079 +0.8123661 0.880825 0.9720079 +0.8301795 0.880825 0.9720079 +0.8475045 0.880825 0.9720079 +0.8643761 0.880825 0.9720079 +0.880825 0.880825 0.9720079 +0.8968787 0.880825 0.9720079 +0.9125621 0.880825 0.9720079 +0.9278974 0.880825 0.9720079 +0.9429048 0.880825 0.9720079 +0.9576028 0.880825 0.9720079 +0.9720079 0.880825 0.9720079 +0.9861357 0.880825 0.9720079 +1 0.880825 0.9720079 +0 0.8968787 0.9720079 +0.1939468 0.8968787 0.9720079 +0.2773041 0.8968787 0.9720079 +0.3384659 0.8968787 0.9720079 +0.3885728 0.8968787 0.9720079 +0.4317928 0.8968787 0.9720079 +0.470214 0.8968787 0.9720079 +0.5050551 0.8968787 0.9720079 +0.5370987 0.8968787 0.9720079 +0.5668815 0.8968787 0.9720079 +0.5947903 0.8968787 0.9720079 +0.6211144 0.8968787 0.9720079 +0.6460766 0.8968787 0.9720079 +0.6698526 0.8968787 0.9720079 +0.6925839 0.8968787 0.9720079 +0.7143866 0.8968787 0.9720079 +0.7353569 0.8968787 0.9720079 +0.7555758 0.8968787 0.9720079 +0.7751122 0.8968787 0.9720079 +0.7940252 0.8968787 0.9720079 +0.8123661 0.8968787 0.9720079 +0.8301795 0.8968787 0.9720079 +0.8475045 0.8968787 0.9720079 +0.8643761 0.8968787 0.9720079 +0.880825 0.8968787 0.9720079 +0.8968787 0.8968787 0.9720079 +0.9125621 0.8968787 0.9720079 +0.9278974 0.8968787 0.9720079 +0.9429048 0.8968787 0.9720079 +0.9576028 0.8968787 0.9720079 +0.9720079 0.8968787 0.9720079 +0.9861357 0.8968787 0.9720079 +1 0.8968787 0.9720079 +0 0.9125621 0.9720079 +0.1939468 0.9125621 0.9720079 +0.2773041 0.9125621 0.9720079 +0.3384659 0.9125621 0.9720079 +0.3885728 0.9125621 0.9720079 +0.4317928 0.9125621 0.9720079 +0.470214 0.9125621 0.9720079 +0.5050551 0.9125621 0.9720079 +0.5370987 0.9125621 0.9720079 +0.5668815 0.9125621 0.9720079 +0.5947903 0.9125621 0.9720079 +0.6211144 0.9125621 0.9720079 +0.6460766 0.9125621 0.9720079 +0.6698526 0.9125621 0.9720079 +0.6925839 0.9125621 0.9720079 +0.7143866 0.9125621 0.9720079 +0.7353569 0.9125621 0.9720079 +0.7555758 0.9125621 0.9720079 +0.7751122 0.9125621 0.9720079 +0.7940252 0.9125621 0.9720079 +0.8123661 0.9125621 0.9720079 +0.8301795 0.9125621 0.9720079 +0.8475045 0.9125621 0.9720079 +0.8643761 0.9125621 0.9720079 +0.880825 0.9125621 0.9720079 +0.8968787 0.9125621 0.9720079 +0.9125621 0.9125621 0.9720079 +0.9278974 0.9125621 0.9720079 +0.9429048 0.9125621 0.9720079 +0.9576028 0.9125621 0.9720079 +0.9720079 0.9125621 0.9720079 +0.9861357 0.9125621 0.9720079 +1 0.9125621 0.9720079 +0 0.9278974 0.9720079 +0.1939468 0.9278974 0.9720079 +0.2773041 0.9278974 0.9720079 +0.3384659 0.9278974 0.9720079 +0.3885728 0.9278974 0.9720079 +0.4317928 0.9278974 0.9720079 +0.470214 0.9278974 0.9720079 +0.5050551 0.9278974 0.9720079 +0.5370987 0.9278974 0.9720079 +0.5668815 0.9278974 0.9720079 +0.5947903 0.9278974 0.9720079 +0.6211144 0.9278974 0.9720079 +0.6460766 0.9278974 0.9720079 +0.6698526 0.9278974 0.9720079 +0.6925839 0.9278974 0.9720079 +0.7143866 0.9278974 0.9720079 +0.7353569 0.9278974 0.9720079 +0.7555758 0.9278974 0.9720079 +0.7751122 0.9278974 0.9720079 +0.7940252 0.9278974 0.9720079 +0.8123661 0.9278974 0.9720079 +0.8301795 0.9278974 0.9720079 +0.8475045 0.9278974 0.9720079 +0.8643761 0.9278974 0.9720079 +0.880825 0.9278974 0.9720079 +0.8968787 0.9278974 0.9720079 +0.9125621 0.9278974 0.9720079 +0.9278974 0.9278974 0.9720079 +0.9429048 0.9278974 0.9720079 +0.9576028 0.9278974 0.9720079 +0.9720079 0.9278974 0.9720079 +0.9861357 0.9278974 0.9720079 +1 0.9278974 0.9720079 +0 0.9429048 0.9720079 +0.1939468 0.9429048 0.9720079 +0.2773041 0.9429048 0.9720079 +0.3384659 0.9429048 0.9720079 +0.3885728 0.9429048 0.9720079 +0.4317928 0.9429048 0.9720079 +0.470214 0.9429048 0.9720079 +0.5050551 0.9429048 0.9720079 +0.5370987 0.9429048 0.9720079 +0.5668815 0.9429048 0.9720079 +0.5947903 0.9429048 0.9720079 +0.6211144 0.9429048 0.9720079 +0.6460766 0.9429048 0.9720079 +0.6698526 0.9429048 0.9720079 +0.6925839 0.9429048 0.9720079 +0.7143866 0.9429048 0.9720079 +0.7353569 0.9429048 0.9720079 +0.7555758 0.9429048 0.9720079 +0.7751122 0.9429048 0.9720079 +0.7940252 0.9429048 0.9720079 +0.8123661 0.9429048 0.9720079 +0.8301795 0.9429048 0.9720079 +0.8475045 0.9429048 0.9720079 +0.8643761 0.9429048 0.9720079 +0.880825 0.9429048 0.9720079 +0.8968787 0.9429048 0.9720079 +0.9125621 0.9429048 0.9720079 +0.9278974 0.9429048 0.9720079 +0.9429048 0.9429048 0.9720079 +0.9576028 0.9429048 0.9720079 +0.9720079 0.9429048 0.9720079 +0.9861357 0.9429048 0.9720079 +1 0.9429048 0.9720079 +0 0.9576028 0.9720079 +0.1939468 0.9576028 0.9720079 +0.2773041 0.9576028 0.9720079 +0.3384659 0.9576028 0.9720079 +0.3885728 0.9576028 0.9720079 +0.4317928 0.9576028 0.9720079 +0.470214 0.9576028 0.9720079 +0.5050551 0.9576028 0.9720079 +0.5370987 0.9576028 0.9720079 +0.5668815 0.9576028 0.9720079 +0.5947903 0.9576028 0.9720079 +0.6211144 0.9576028 0.9720079 +0.6460766 0.9576028 0.9720079 +0.6698526 0.9576028 0.9720079 +0.6925839 0.9576028 0.9720079 +0.7143866 0.9576028 0.9720079 +0.7353569 0.9576028 0.9720079 +0.7555758 0.9576028 0.9720079 +0.7751122 0.9576028 0.9720079 +0.7940252 0.9576028 0.9720079 +0.8123661 0.9576028 0.9720079 +0.8301795 0.9576028 0.9720079 +0.8475045 0.9576028 0.9720079 +0.8643761 0.9576028 0.9720079 +0.880825 0.9576028 0.9720079 +0.8968787 0.9576028 0.9720079 +0.9125621 0.9576028 0.9720079 +0.9278974 0.9576028 0.9720079 +0.9429048 0.9576028 0.9720079 +0.9576028 0.9576028 0.9720079 +0.9720079 0.9576028 0.9720079 +0.9861357 0.9576028 0.9720079 +1 0.9576028 0.9720079 +0 0.9720079 0.9720079 +0.1939468 0.9720079 0.9720079 +0.2773041 0.9720079 0.9720079 +0.3384659 0.9720079 0.9720079 +0.3885728 0.9720079 0.9720079 +0.4317928 0.9720079 0.9720079 +0.470214 0.9720079 0.9720079 +0.5050551 0.9720079 0.9720079 +0.5370987 0.9720079 0.9720079 +0.5668815 0.9720079 0.9720079 +0.5947903 0.9720079 0.9720079 +0.6211144 0.9720079 0.9720079 +0.6460766 0.9720079 0.9720079 +0.6698526 0.9720079 0.9720079 +0.6925839 0.9720079 0.9720079 +0.7143866 0.9720079 0.9720079 +0.7353569 0.9720079 0.9720079 +0.7555758 0.9720079 0.9720079 +0.7751122 0.9720079 0.9720079 +0.7940252 0.9720079 0.9720079 +0.8123661 0.9720079 0.9720079 +0.8301795 0.9720079 0.9720079 +0.8475045 0.9720079 0.9720079 +0.8643761 0.9720079 0.9720079 +0.880825 0.9720079 0.9720079 +0.8968787 0.9720079 0.9720079 +0.9125621 0.9720079 0.9720079 +0.9278974 0.9720079 0.9720079 +0.9429048 0.9720079 0.9720079 +0.9576028 0.9720079 0.9720079 +0.9720079 0.9720079 0.9720079 +0.9861357 0.9720079 0.9720079 +1 0.9720079 0.9720079 +0 0.9861357 0.9720079 +0.1939468 0.9861357 0.9720079 +0.2773041 0.9861357 0.9720079 +0.3384659 0.9861357 0.9720079 +0.3885728 0.9861357 0.9720079 +0.4317928 0.9861357 0.9720079 +0.470214 0.9861357 0.9720079 +0.5050551 0.9861357 0.9720079 +0.5370987 0.9861357 0.9720079 +0.5668815 0.9861357 0.9720079 +0.5947903 0.9861357 0.9720079 +0.6211144 0.9861357 0.9720079 +0.6460766 0.9861357 0.9720079 +0.6698526 0.9861357 0.9720079 +0.6925839 0.9861357 0.9720079 +0.7143866 0.9861357 0.9720079 +0.7353569 0.9861357 0.9720079 +0.7555758 0.9861357 0.9720079 +0.7751122 0.9861357 0.9720079 +0.7940252 0.9861357 0.9720079 +0.8123661 0.9861357 0.9720079 +0.8301795 0.9861357 0.9720079 +0.8475045 0.9861357 0.9720079 +0.8643761 0.9861357 0.9720079 +0.880825 0.9861357 0.9720079 +0.8968787 0.9861357 0.9720079 +0.9125621 0.9861357 0.9720079 +0.9278974 0.9861357 0.9720079 +0.9429048 0.9861357 0.9720079 +0.9576028 0.9861357 0.9720079 +0.9720079 0.9861357 0.9720079 +0.9861357 0.9861357 0.9720079 +1 0.9861357 0.9720079 +0 1 0.9720079 +0.1939468 1 0.9720079 +0.2773041 1 0.9720079 +0.3384659 1 0.9720079 +0.3885728 1 0.9720079 +0.4317928 1 0.9720079 +0.470214 1 0.9720079 +0.5050551 1 0.9720079 +0.5370987 1 0.9720079 +0.5668815 1 0.9720079 +0.5947903 1 0.9720079 +0.6211144 1 0.9720079 +0.6460766 1 0.9720079 +0.6698526 1 0.9720079 +0.6925839 1 0.9720079 +0.7143866 1 0.9720079 +0.7353569 1 0.9720079 +0.7555758 1 0.9720079 +0.7751122 1 0.9720079 +0.7940252 1 0.9720079 +0.8123661 1 0.9720079 +0.8301795 1 0.9720079 +0.8475045 1 0.9720079 +0.8643761 1 0.9720079 +0.880825 1 0.9720079 +0.8968787 1 0.9720079 +0.9125621 1 0.9720079 +0.9278974 1 0.9720079 +0.9429048 1 0.9720079 +0.9576028 1 0.9720079 +0.9720079 1 0.9720079 +0.9861357 1 0.9720079 +1 1 0.9720079 +0 0 0.9861357 +0.1939468 0 0.9861357 +0.2773041 0 0.9861357 +0.3384659 0 0.9861357 +0.3885728 0 0.9861357 +0.4317928 0 0.9861357 +0.470214 0 0.9861357 +0.5050551 0 0.9861357 +0.5370987 0 0.9861357 +0.5668815 0 0.9861357 +0.5947903 0 0.9861357 +0.6211144 0 0.9861357 +0.6460766 0 0.9861357 +0.6698526 0 0.9861357 +0.6925839 0 0.9861357 +0.7143866 0 0.9861357 +0.7353569 0 0.9861357 +0.7555758 0 0.9861357 +0.7751122 0 0.9861357 +0.7940252 0 0.9861357 +0.8123661 0 0.9861357 +0.8301795 0 0.9861357 +0.8475045 0 0.9861357 +0.8643761 0 0.9861357 +0.880825 0 0.9861357 +0.8968787 0 0.9861357 +0.9125621 0 0.9861357 +0.9278974 0 0.9861357 +0.9429048 0 0.9861357 +0.9576028 0 0.9861357 +0.9720079 0 0.9861357 +0.9861357 0 0.9861357 +1 0 0.9861357 +0 0.1939468 0.9861357 +0.1939468 0.1939468 0.9861357 +0.2773041 0.1939468 0.9861357 +0.3384659 0.1939468 0.9861357 +0.3885728 0.1939468 0.9861357 +0.4317928 0.1939468 0.9861357 +0.470214 0.1939468 0.9861357 +0.5050551 0.1939468 0.9861357 +0.5370987 0.1939468 0.9861357 +0.5668815 0.1939468 0.9861357 +0.5947903 0.1939468 0.9861357 +0.6211144 0.1939468 0.9861357 +0.6460766 0.1939468 0.9861357 +0.6698526 0.1939468 0.9861357 +0.6925839 0.1939468 0.9861357 +0.7143866 0.1939468 0.9861357 +0.7353569 0.1939468 0.9861357 +0.7555758 0.1939468 0.9861357 +0.7751122 0.1939468 0.9861357 +0.7940252 0.1939468 0.9861357 +0.8123661 0.1939468 0.9861357 +0.8301795 0.1939468 0.9861357 +0.8475045 0.1939468 0.9861357 +0.8643761 0.1939468 0.9861357 +0.880825 0.1939468 0.9861357 +0.8968787 0.1939468 0.9861357 +0.9125621 0.1939468 0.9861357 +0.9278974 0.1939468 0.9861357 +0.9429048 0.1939468 0.9861357 +0.9576028 0.1939468 0.9861357 +0.9720079 0.1939468 0.9861357 +0.9861357 0.1939468 0.9861357 +1 0.1939468 0.9861357 +0 0.2773041 0.9861357 +0.1939468 0.2773041 0.9861357 +0.2773041 0.2773041 0.9861357 +0.3384659 0.2773041 0.9861357 +0.3885728 0.2773041 0.9861357 +0.4317928 0.2773041 0.9861357 +0.470214 0.2773041 0.9861357 +0.5050551 0.2773041 0.9861357 +0.5370987 0.2773041 0.9861357 +0.5668815 0.2773041 0.9861357 +0.5947903 0.2773041 0.9861357 +0.6211144 0.2773041 0.9861357 +0.6460766 0.2773041 0.9861357 +0.6698526 0.2773041 0.9861357 +0.6925839 0.2773041 0.9861357 +0.7143866 0.2773041 0.9861357 +0.7353569 0.2773041 0.9861357 +0.7555758 0.2773041 0.9861357 +0.7751122 0.2773041 0.9861357 +0.7940252 0.2773041 0.9861357 +0.8123661 0.2773041 0.9861357 +0.8301795 0.2773041 0.9861357 +0.8475045 0.2773041 0.9861357 +0.8643761 0.2773041 0.9861357 +0.880825 0.2773041 0.9861357 +0.8968787 0.2773041 0.9861357 +0.9125621 0.2773041 0.9861357 +0.9278974 0.2773041 0.9861357 +0.9429048 0.2773041 0.9861357 +0.9576028 0.2773041 0.9861357 +0.9720079 0.2773041 0.9861357 +0.9861357 0.2773041 0.9861357 +1 0.2773041 0.9861357 +0 0.3384659 0.9861357 +0.1939468 0.3384659 0.9861357 +0.2773041 0.3384659 0.9861357 +0.3384659 0.3384659 0.9861357 +0.3885728 0.3384659 0.9861357 +0.4317928 0.3384659 0.9861357 +0.470214 0.3384659 0.9861357 +0.5050551 0.3384659 0.9861357 +0.5370987 0.3384659 0.9861357 +0.5668815 0.3384659 0.9861357 +0.5947903 0.3384659 0.9861357 +0.6211144 0.3384659 0.9861357 +0.6460766 0.3384659 0.9861357 +0.6698526 0.3384659 0.9861357 +0.6925839 0.3384659 0.9861357 +0.7143866 0.3384659 0.9861357 +0.7353569 0.3384659 0.9861357 +0.7555758 0.3384659 0.9861357 +0.7751122 0.3384659 0.9861357 +0.7940252 0.3384659 0.9861357 +0.8123661 0.3384659 0.9861357 +0.8301795 0.3384659 0.9861357 +0.8475045 0.3384659 0.9861357 +0.8643761 0.3384659 0.9861357 +0.880825 0.3384659 0.9861357 +0.8968787 0.3384659 0.9861357 +0.9125621 0.3384659 0.9861357 +0.9278974 0.3384659 0.9861357 +0.9429048 0.3384659 0.9861357 +0.9576028 0.3384659 0.9861357 +0.9720079 0.3384659 0.9861357 +0.9861357 0.3384659 0.9861357 +1 0.3384659 0.9861357 +0 0.3885728 0.9861357 +0.1939468 0.3885728 0.9861357 +0.2773041 0.3885728 0.9861357 +0.3384659 0.3885728 0.9861357 +0.3885728 0.3885728 0.9861357 +0.4317928 0.3885728 0.9861357 +0.470214 0.3885728 0.9861357 +0.5050551 0.3885728 0.9861357 +0.5370987 0.3885728 0.9861357 +0.5668815 0.3885728 0.9861357 +0.5947903 0.3885728 0.9861357 +0.6211144 0.3885728 0.9861357 +0.6460766 0.3885728 0.9861357 +0.6698526 0.3885728 0.9861357 +0.6925839 0.3885728 0.9861357 +0.7143866 0.3885728 0.9861357 +0.7353569 0.3885728 0.9861357 +0.7555758 0.3885728 0.9861357 +0.7751122 0.3885728 0.9861357 +0.7940252 0.3885728 0.9861357 +0.8123661 0.3885728 0.9861357 +0.8301795 0.3885728 0.9861357 +0.8475045 0.3885728 0.9861357 +0.8643761 0.3885728 0.9861357 +0.880825 0.3885728 0.9861357 +0.8968787 0.3885728 0.9861357 +0.9125621 0.3885728 0.9861357 +0.9278974 0.3885728 0.9861357 +0.9429048 0.3885728 0.9861357 +0.9576028 0.3885728 0.9861357 +0.9720079 0.3885728 0.9861357 +0.9861357 0.3885728 0.9861357 +1 0.3885728 0.9861357 +0 0.4317928 0.9861357 +0.1939468 0.4317928 0.9861357 +0.2773041 0.4317928 0.9861357 +0.3384659 0.4317928 0.9861357 +0.3885728 0.4317928 0.9861357 +0.4317928 0.4317928 0.9861357 +0.470214 0.4317928 0.9861357 +0.5050551 0.4317928 0.9861357 +0.5370987 0.4317928 0.9861357 +0.5668815 0.4317928 0.9861357 +0.5947903 0.4317928 0.9861357 +0.6211144 0.4317928 0.9861357 +0.6460766 0.4317928 0.9861357 +0.6698526 0.4317928 0.9861357 +0.6925839 0.4317928 0.9861357 +0.7143866 0.4317928 0.9861357 +0.7353569 0.4317928 0.9861357 +0.7555758 0.4317928 0.9861357 +0.7751122 0.4317928 0.9861357 +0.7940252 0.4317928 0.9861357 +0.8123661 0.4317928 0.9861357 +0.8301795 0.4317928 0.9861357 +0.8475045 0.4317928 0.9861357 +0.8643761 0.4317928 0.9861357 +0.880825 0.4317928 0.9861357 +0.8968787 0.4317928 0.9861357 +0.9125621 0.4317928 0.9861357 +0.9278974 0.4317928 0.9861357 +0.9429048 0.4317928 0.9861357 +0.9576028 0.4317928 0.9861357 +0.9720079 0.4317928 0.9861357 +0.9861357 0.4317928 0.9861357 +1 0.4317928 0.9861357 +0 0.470214 0.9861357 +0.1939468 0.470214 0.9861357 +0.2773041 0.470214 0.9861357 +0.3384659 0.470214 0.9861357 +0.3885728 0.470214 0.9861357 +0.4317928 0.470214 0.9861357 +0.470214 0.470214 0.9861357 +0.5050551 0.470214 0.9861357 +0.5370987 0.470214 0.9861357 +0.5668815 0.470214 0.9861357 +0.5947903 0.470214 0.9861357 +0.6211144 0.470214 0.9861357 +0.6460766 0.470214 0.9861357 +0.6698526 0.470214 0.9861357 +0.6925839 0.470214 0.9861357 +0.7143866 0.470214 0.9861357 +0.7353569 0.470214 0.9861357 +0.7555758 0.470214 0.9861357 +0.7751122 0.470214 0.9861357 +0.7940252 0.470214 0.9861357 +0.8123661 0.470214 0.9861357 +0.8301795 0.470214 0.9861357 +0.8475045 0.470214 0.9861357 +0.8643761 0.470214 0.9861357 +0.880825 0.470214 0.9861357 +0.8968787 0.470214 0.9861357 +0.9125621 0.470214 0.9861357 +0.9278974 0.470214 0.9861357 +0.9429048 0.470214 0.9861357 +0.9576028 0.470214 0.9861357 +0.9720079 0.470214 0.9861357 +0.9861357 0.470214 0.9861357 +1 0.470214 0.9861357 +0 0.5050551 0.9861357 +0.1939468 0.5050551 0.9861357 +0.2773041 0.5050551 0.9861357 +0.3384659 0.5050551 0.9861357 +0.3885728 0.5050551 0.9861357 +0.4317928 0.5050551 0.9861357 +0.470214 0.5050551 0.9861357 +0.5050551 0.5050551 0.9861357 +0.5370987 0.5050551 0.9861357 +0.5668815 0.5050551 0.9861357 +0.5947903 0.5050551 0.9861357 +0.6211144 0.5050551 0.9861357 +0.6460766 0.5050551 0.9861357 +0.6698526 0.5050551 0.9861357 +0.6925839 0.5050551 0.9861357 +0.7143866 0.5050551 0.9861357 +0.7353569 0.5050551 0.9861357 +0.7555758 0.5050551 0.9861357 +0.7751122 0.5050551 0.9861357 +0.7940252 0.5050551 0.9861357 +0.8123661 0.5050551 0.9861357 +0.8301795 0.5050551 0.9861357 +0.8475045 0.5050551 0.9861357 +0.8643761 0.5050551 0.9861357 +0.880825 0.5050551 0.9861357 +0.8968787 0.5050551 0.9861357 +0.9125621 0.5050551 0.9861357 +0.9278974 0.5050551 0.9861357 +0.9429048 0.5050551 0.9861357 +0.9576028 0.5050551 0.9861357 +0.9720079 0.5050551 0.9861357 +0.9861357 0.5050551 0.9861357 +1 0.5050551 0.9861357 +0 0.5370987 0.9861357 +0.1939468 0.5370987 0.9861357 +0.2773041 0.5370987 0.9861357 +0.3384659 0.5370987 0.9861357 +0.3885728 0.5370987 0.9861357 +0.4317928 0.5370987 0.9861357 +0.470214 0.5370987 0.9861357 +0.5050551 0.5370987 0.9861357 +0.5370987 0.5370987 0.9861357 +0.5668815 0.5370987 0.9861357 +0.5947903 0.5370987 0.9861357 +0.6211144 0.5370987 0.9861357 +0.6460766 0.5370987 0.9861357 +0.6698526 0.5370987 0.9861357 +0.6925839 0.5370987 0.9861357 +0.7143866 0.5370987 0.9861357 +0.7353569 0.5370987 0.9861357 +0.7555758 0.5370987 0.9861357 +0.7751122 0.5370987 0.9861357 +0.7940252 0.5370987 0.9861357 +0.8123661 0.5370987 0.9861357 +0.8301795 0.5370987 0.9861357 +0.8475045 0.5370987 0.9861357 +0.8643761 0.5370987 0.9861357 +0.880825 0.5370987 0.9861357 +0.8968787 0.5370987 0.9861357 +0.9125621 0.5370987 0.9861357 +0.9278974 0.5370987 0.9861357 +0.9429048 0.5370987 0.9861357 +0.9576028 0.5370987 0.9861357 +0.9720079 0.5370987 0.9861357 +0.9861357 0.5370987 0.9861357 +1 0.5370987 0.9861357 +0 0.5668815 0.9861357 +0.1939468 0.5668815 0.9861357 +0.2773041 0.5668815 0.9861357 +0.3384659 0.5668815 0.9861357 +0.3885728 0.5668815 0.9861357 +0.4317928 0.5668815 0.9861357 +0.470214 0.5668815 0.9861357 +0.5050551 0.5668815 0.9861357 +0.5370987 0.5668815 0.9861357 +0.5668815 0.5668815 0.9861357 +0.5947903 0.5668815 0.9861357 +0.6211144 0.5668815 0.9861357 +0.6460766 0.5668815 0.9861357 +0.6698526 0.5668815 0.9861357 +0.6925839 0.5668815 0.9861357 +0.7143866 0.5668815 0.9861357 +0.7353569 0.5668815 0.9861357 +0.7555758 0.5668815 0.9861357 +0.7751122 0.5668815 0.9861357 +0.7940252 0.5668815 0.9861357 +0.8123661 0.5668815 0.9861357 +0.8301795 0.5668815 0.9861357 +0.8475045 0.5668815 0.9861357 +0.8643761 0.5668815 0.9861357 +0.880825 0.5668815 0.9861357 +0.8968787 0.5668815 0.9861357 +0.9125621 0.5668815 0.9861357 +0.9278974 0.5668815 0.9861357 +0.9429048 0.5668815 0.9861357 +0.9576028 0.5668815 0.9861357 +0.9720079 0.5668815 0.9861357 +0.9861357 0.5668815 0.9861357 +1 0.5668815 0.9861357 +0 0.5947903 0.9861357 +0.1939468 0.5947903 0.9861357 +0.2773041 0.5947903 0.9861357 +0.3384659 0.5947903 0.9861357 +0.3885728 0.5947903 0.9861357 +0.4317928 0.5947903 0.9861357 +0.470214 0.5947903 0.9861357 +0.5050551 0.5947903 0.9861357 +0.5370987 0.5947903 0.9861357 +0.5668815 0.5947903 0.9861357 +0.5947903 0.5947903 0.9861357 +0.6211144 0.5947903 0.9861357 +0.6460766 0.5947903 0.9861357 +0.6698526 0.5947903 0.9861357 +0.6925839 0.5947903 0.9861357 +0.7143866 0.5947903 0.9861357 +0.7353569 0.5947903 0.9861357 +0.7555758 0.5947903 0.9861357 +0.7751122 0.5947903 0.9861357 +0.7940252 0.5947903 0.9861357 +0.8123661 0.5947903 0.9861357 +0.8301795 0.5947903 0.9861357 +0.8475045 0.5947903 0.9861357 +0.8643761 0.5947903 0.9861357 +0.880825 0.5947903 0.9861357 +0.8968787 0.5947903 0.9861357 +0.9125621 0.5947903 0.9861357 +0.9278974 0.5947903 0.9861357 +0.9429048 0.5947903 0.9861357 +0.9576028 0.5947903 0.9861357 +0.9720079 0.5947903 0.9861357 +0.9861357 0.5947903 0.9861357 +1 0.5947903 0.9861357 +0 0.6211144 0.9861357 +0.1939468 0.6211144 0.9861357 +0.2773041 0.6211144 0.9861357 +0.3384659 0.6211144 0.9861357 +0.3885728 0.6211144 0.9861357 +0.4317928 0.6211144 0.9861357 +0.470214 0.6211144 0.9861357 +0.5050551 0.6211144 0.9861357 +0.5370987 0.6211144 0.9861357 +0.5668815 0.6211144 0.9861357 +0.5947903 0.6211144 0.9861357 +0.6211144 0.6211144 0.9861357 +0.6460766 0.6211144 0.9861357 +0.6698526 0.6211144 0.9861357 +0.6925839 0.6211144 0.9861357 +0.7143866 0.6211144 0.9861357 +0.7353569 0.6211144 0.9861357 +0.7555758 0.6211144 0.9861357 +0.7751122 0.6211144 0.9861357 +0.7940252 0.6211144 0.9861357 +0.8123661 0.6211144 0.9861357 +0.8301795 0.6211144 0.9861357 +0.8475045 0.6211144 0.9861357 +0.8643761 0.6211144 0.9861357 +0.880825 0.6211144 0.9861357 +0.8968787 0.6211144 0.9861357 +0.9125621 0.6211144 0.9861357 +0.9278974 0.6211144 0.9861357 +0.9429048 0.6211144 0.9861357 +0.9576028 0.6211144 0.9861357 +0.9720079 0.6211144 0.9861357 +0.9861357 0.6211144 0.9861357 +1 0.6211144 0.9861357 +0 0.6460766 0.9861357 +0.1939468 0.6460766 0.9861357 +0.2773041 0.6460766 0.9861357 +0.3384659 0.6460766 0.9861357 +0.3885728 0.6460766 0.9861357 +0.4317928 0.6460766 0.9861357 +0.470214 0.6460766 0.9861357 +0.5050551 0.6460766 0.9861357 +0.5370987 0.6460766 0.9861357 +0.5668815 0.6460766 0.9861357 +0.5947903 0.6460766 0.9861357 +0.6211144 0.6460766 0.9861357 +0.6460766 0.6460766 0.9861357 +0.6698526 0.6460766 0.9861357 +0.6925839 0.6460766 0.9861357 +0.7143866 0.6460766 0.9861357 +0.7353569 0.6460766 0.9861357 +0.7555758 0.6460766 0.9861357 +0.7751122 0.6460766 0.9861357 +0.7940252 0.6460766 0.9861357 +0.8123661 0.6460766 0.9861357 +0.8301795 0.6460766 0.9861357 +0.8475045 0.6460766 0.9861357 +0.8643761 0.6460766 0.9861357 +0.880825 0.6460766 0.9861357 +0.8968787 0.6460766 0.9861357 +0.9125621 0.6460766 0.9861357 +0.9278974 0.6460766 0.9861357 +0.9429048 0.6460766 0.9861357 +0.9576028 0.6460766 0.9861357 +0.9720079 0.6460766 0.9861357 +0.9861357 0.6460766 0.9861357 +1 0.6460766 0.9861357 +0 0.6698526 0.9861357 +0.1939468 0.6698526 0.9861357 +0.2773041 0.6698526 0.9861357 +0.3384659 0.6698526 0.9861357 +0.3885728 0.6698526 0.9861357 +0.4317928 0.6698526 0.9861357 +0.470214 0.6698526 0.9861357 +0.5050551 0.6698526 0.9861357 +0.5370987 0.6698526 0.9861357 +0.5668815 0.6698526 0.9861357 +0.5947903 0.6698526 0.9861357 +0.6211144 0.6698526 0.9861357 +0.6460766 0.6698526 0.9861357 +0.6698526 0.6698526 0.9861357 +0.6925839 0.6698526 0.9861357 +0.7143866 0.6698526 0.9861357 +0.7353569 0.6698526 0.9861357 +0.7555758 0.6698526 0.9861357 +0.7751122 0.6698526 0.9861357 +0.7940252 0.6698526 0.9861357 +0.8123661 0.6698526 0.9861357 +0.8301795 0.6698526 0.9861357 +0.8475045 0.6698526 0.9861357 +0.8643761 0.6698526 0.9861357 +0.880825 0.6698526 0.9861357 +0.8968787 0.6698526 0.9861357 +0.9125621 0.6698526 0.9861357 +0.9278974 0.6698526 0.9861357 +0.9429048 0.6698526 0.9861357 +0.9576028 0.6698526 0.9861357 +0.9720079 0.6698526 0.9861357 +0.9861357 0.6698526 0.9861357 +1 0.6698526 0.9861357 +0 0.6925839 0.9861357 +0.1939468 0.6925839 0.9861357 +0.2773041 0.6925839 0.9861357 +0.3384659 0.6925839 0.9861357 +0.3885728 0.6925839 0.9861357 +0.4317928 0.6925839 0.9861357 +0.470214 0.6925839 0.9861357 +0.5050551 0.6925839 0.9861357 +0.5370987 0.6925839 0.9861357 +0.5668815 0.6925839 0.9861357 +0.5947903 0.6925839 0.9861357 +0.6211144 0.6925839 0.9861357 +0.6460766 0.6925839 0.9861357 +0.6698526 0.6925839 0.9861357 +0.6925839 0.6925839 0.9861357 +0.7143866 0.6925839 0.9861357 +0.7353569 0.6925839 0.9861357 +0.7555758 0.6925839 0.9861357 +0.7751122 0.6925839 0.9861357 +0.7940252 0.6925839 0.9861357 +0.8123661 0.6925839 0.9861357 +0.8301795 0.6925839 0.9861357 +0.8475045 0.6925839 0.9861357 +0.8643761 0.6925839 0.9861357 +0.880825 0.6925839 0.9861357 +0.8968787 0.6925839 0.9861357 +0.9125621 0.6925839 0.9861357 +0.9278974 0.6925839 0.9861357 +0.9429048 0.6925839 0.9861357 +0.9576028 0.6925839 0.9861357 +0.9720079 0.6925839 0.9861357 +0.9861357 0.6925839 0.9861357 +1 0.6925839 0.9861357 +0 0.7143866 0.9861357 +0.1939468 0.7143866 0.9861357 +0.2773041 0.7143866 0.9861357 +0.3384659 0.7143866 0.9861357 +0.3885728 0.7143866 0.9861357 +0.4317928 0.7143866 0.9861357 +0.470214 0.7143866 0.9861357 +0.5050551 0.7143866 0.9861357 +0.5370987 0.7143866 0.9861357 +0.5668815 0.7143866 0.9861357 +0.5947903 0.7143866 0.9861357 +0.6211144 0.7143866 0.9861357 +0.6460766 0.7143866 0.9861357 +0.6698526 0.7143866 0.9861357 +0.6925839 0.7143866 0.9861357 +0.7143866 0.7143866 0.9861357 +0.7353569 0.7143866 0.9861357 +0.7555758 0.7143866 0.9861357 +0.7751122 0.7143866 0.9861357 +0.7940252 0.7143866 0.9861357 +0.8123661 0.7143866 0.9861357 +0.8301795 0.7143866 0.9861357 +0.8475045 0.7143866 0.9861357 +0.8643761 0.7143866 0.9861357 +0.880825 0.7143866 0.9861357 +0.8968787 0.7143866 0.9861357 +0.9125621 0.7143866 0.9861357 +0.9278974 0.7143866 0.9861357 +0.9429048 0.7143866 0.9861357 +0.9576028 0.7143866 0.9861357 +0.9720079 0.7143866 0.9861357 +0.9861357 0.7143866 0.9861357 +1 0.7143866 0.9861357 +0 0.7353569 0.9861357 +0.1939468 0.7353569 0.9861357 +0.2773041 0.7353569 0.9861357 +0.3384659 0.7353569 0.9861357 +0.3885728 0.7353569 0.9861357 +0.4317928 0.7353569 0.9861357 +0.470214 0.7353569 0.9861357 +0.5050551 0.7353569 0.9861357 +0.5370987 0.7353569 0.9861357 +0.5668815 0.7353569 0.9861357 +0.5947903 0.7353569 0.9861357 +0.6211144 0.7353569 0.9861357 +0.6460766 0.7353569 0.9861357 +0.6698526 0.7353569 0.9861357 +0.6925839 0.7353569 0.9861357 +0.7143866 0.7353569 0.9861357 +0.7353569 0.7353569 0.9861357 +0.7555758 0.7353569 0.9861357 +0.7751122 0.7353569 0.9861357 +0.7940252 0.7353569 0.9861357 +0.8123661 0.7353569 0.9861357 +0.8301795 0.7353569 0.9861357 +0.8475045 0.7353569 0.9861357 +0.8643761 0.7353569 0.9861357 +0.880825 0.7353569 0.9861357 +0.8968787 0.7353569 0.9861357 +0.9125621 0.7353569 0.9861357 +0.9278974 0.7353569 0.9861357 +0.9429048 0.7353569 0.9861357 +0.9576028 0.7353569 0.9861357 +0.9720079 0.7353569 0.9861357 +0.9861357 0.7353569 0.9861357 +1 0.7353569 0.9861357 +0 0.7555758 0.9861357 +0.1939468 0.7555758 0.9861357 +0.2773041 0.7555758 0.9861357 +0.3384659 0.7555758 0.9861357 +0.3885728 0.7555758 0.9861357 +0.4317928 0.7555758 0.9861357 +0.470214 0.7555758 0.9861357 +0.5050551 0.7555758 0.9861357 +0.5370987 0.7555758 0.9861357 +0.5668815 0.7555758 0.9861357 +0.5947903 0.7555758 0.9861357 +0.6211144 0.7555758 0.9861357 +0.6460766 0.7555758 0.9861357 +0.6698526 0.7555758 0.9861357 +0.6925839 0.7555758 0.9861357 +0.7143866 0.7555758 0.9861357 +0.7353569 0.7555758 0.9861357 +0.7555758 0.7555758 0.9861357 +0.7751122 0.7555758 0.9861357 +0.7940252 0.7555758 0.9861357 +0.8123661 0.7555758 0.9861357 +0.8301795 0.7555758 0.9861357 +0.8475045 0.7555758 0.9861357 +0.8643761 0.7555758 0.9861357 +0.880825 0.7555758 0.9861357 +0.8968787 0.7555758 0.9861357 +0.9125621 0.7555758 0.9861357 +0.9278974 0.7555758 0.9861357 +0.9429048 0.7555758 0.9861357 +0.9576028 0.7555758 0.9861357 +0.9720079 0.7555758 0.9861357 +0.9861357 0.7555758 0.9861357 +1 0.7555758 0.9861357 +0 0.7751122 0.9861357 +0.1939468 0.7751122 0.9861357 +0.2773041 0.7751122 0.9861357 +0.3384659 0.7751122 0.9861357 +0.3885728 0.7751122 0.9861357 +0.4317928 0.7751122 0.9861357 +0.470214 0.7751122 0.9861357 +0.5050551 0.7751122 0.9861357 +0.5370987 0.7751122 0.9861357 +0.5668815 0.7751122 0.9861357 +0.5947903 0.7751122 0.9861357 +0.6211144 0.7751122 0.9861357 +0.6460766 0.7751122 0.9861357 +0.6698526 0.7751122 0.9861357 +0.6925839 0.7751122 0.9861357 +0.7143866 0.7751122 0.9861357 +0.7353569 0.7751122 0.9861357 +0.7555758 0.7751122 0.9861357 +0.7751122 0.7751122 0.9861357 +0.7940252 0.7751122 0.9861357 +0.8123661 0.7751122 0.9861357 +0.8301795 0.7751122 0.9861357 +0.8475045 0.7751122 0.9861357 +0.8643761 0.7751122 0.9861357 +0.880825 0.7751122 0.9861357 +0.8968787 0.7751122 0.9861357 +0.9125621 0.7751122 0.9861357 +0.9278974 0.7751122 0.9861357 +0.9429048 0.7751122 0.9861357 +0.9576028 0.7751122 0.9861357 +0.9720079 0.7751122 0.9861357 +0.9861357 0.7751122 0.9861357 +1 0.7751122 0.9861357 +0 0.7940252 0.9861357 +0.1939468 0.7940252 0.9861357 +0.2773041 0.7940252 0.9861357 +0.3384659 0.7940252 0.9861357 +0.3885728 0.7940252 0.9861357 +0.4317928 0.7940252 0.9861357 +0.470214 0.7940252 0.9861357 +0.5050551 0.7940252 0.9861357 +0.5370987 0.7940252 0.9861357 +0.5668815 0.7940252 0.9861357 +0.5947903 0.7940252 0.9861357 +0.6211144 0.7940252 0.9861357 +0.6460766 0.7940252 0.9861357 +0.6698526 0.7940252 0.9861357 +0.6925839 0.7940252 0.9861357 +0.7143866 0.7940252 0.9861357 +0.7353569 0.7940252 0.9861357 +0.7555758 0.7940252 0.9861357 +0.7751122 0.7940252 0.9861357 +0.7940252 0.7940252 0.9861357 +0.8123661 0.7940252 0.9861357 +0.8301795 0.7940252 0.9861357 +0.8475045 0.7940252 0.9861357 +0.8643761 0.7940252 0.9861357 +0.880825 0.7940252 0.9861357 +0.8968787 0.7940252 0.9861357 +0.9125621 0.7940252 0.9861357 +0.9278974 0.7940252 0.9861357 +0.9429048 0.7940252 0.9861357 +0.9576028 0.7940252 0.9861357 +0.9720079 0.7940252 0.9861357 +0.9861357 0.7940252 0.9861357 +1 0.7940252 0.9861357 +0 0.8123661 0.9861357 +0.1939468 0.8123661 0.9861357 +0.2773041 0.8123661 0.9861357 +0.3384659 0.8123661 0.9861357 +0.3885728 0.8123661 0.9861357 +0.4317928 0.8123661 0.9861357 +0.470214 0.8123661 0.9861357 +0.5050551 0.8123661 0.9861357 +0.5370987 0.8123661 0.9861357 +0.5668815 0.8123661 0.9861357 +0.5947903 0.8123661 0.9861357 +0.6211144 0.8123661 0.9861357 +0.6460766 0.8123661 0.9861357 +0.6698526 0.8123661 0.9861357 +0.6925839 0.8123661 0.9861357 +0.7143866 0.8123661 0.9861357 +0.7353569 0.8123661 0.9861357 +0.7555758 0.8123661 0.9861357 +0.7751122 0.8123661 0.9861357 +0.7940252 0.8123661 0.9861357 +0.8123661 0.8123661 0.9861357 +0.8301795 0.8123661 0.9861357 +0.8475045 0.8123661 0.9861357 +0.8643761 0.8123661 0.9861357 +0.880825 0.8123661 0.9861357 +0.8968787 0.8123661 0.9861357 +0.9125621 0.8123661 0.9861357 +0.9278974 0.8123661 0.9861357 +0.9429048 0.8123661 0.9861357 +0.9576028 0.8123661 0.9861357 +0.9720079 0.8123661 0.9861357 +0.9861357 0.8123661 0.9861357 +1 0.8123661 0.9861357 +0 0.8301795 0.9861357 +0.1939468 0.8301795 0.9861357 +0.2773041 0.8301795 0.9861357 +0.3384659 0.8301795 0.9861357 +0.3885728 0.8301795 0.9861357 +0.4317928 0.8301795 0.9861357 +0.470214 0.8301795 0.9861357 +0.5050551 0.8301795 0.9861357 +0.5370987 0.8301795 0.9861357 +0.5668815 0.8301795 0.9861357 +0.5947903 0.8301795 0.9861357 +0.6211144 0.8301795 0.9861357 +0.6460766 0.8301795 0.9861357 +0.6698526 0.8301795 0.9861357 +0.6925839 0.8301795 0.9861357 +0.7143866 0.8301795 0.9861357 +0.7353569 0.8301795 0.9861357 +0.7555758 0.8301795 0.9861357 +0.7751122 0.8301795 0.9861357 +0.7940252 0.8301795 0.9861357 +0.8123661 0.8301795 0.9861357 +0.8301795 0.8301795 0.9861357 +0.8475045 0.8301795 0.9861357 +0.8643761 0.8301795 0.9861357 +0.880825 0.8301795 0.9861357 +0.8968787 0.8301795 0.9861357 +0.9125621 0.8301795 0.9861357 +0.9278974 0.8301795 0.9861357 +0.9429048 0.8301795 0.9861357 +0.9576028 0.8301795 0.9861357 +0.9720079 0.8301795 0.9861357 +0.9861357 0.8301795 0.9861357 +1 0.8301795 0.9861357 +0 0.8475045 0.9861357 +0.1939468 0.8475045 0.9861357 +0.2773041 0.8475045 0.9861357 +0.3384659 0.8475045 0.9861357 +0.3885728 0.8475045 0.9861357 +0.4317928 0.8475045 0.9861357 +0.470214 0.8475045 0.9861357 +0.5050551 0.8475045 0.9861357 +0.5370987 0.8475045 0.9861357 +0.5668815 0.8475045 0.9861357 +0.5947903 0.8475045 0.9861357 +0.6211144 0.8475045 0.9861357 +0.6460766 0.8475045 0.9861357 +0.6698526 0.8475045 0.9861357 +0.6925839 0.8475045 0.9861357 +0.7143866 0.8475045 0.9861357 +0.7353569 0.8475045 0.9861357 +0.7555758 0.8475045 0.9861357 +0.7751122 0.8475045 0.9861357 +0.7940252 0.8475045 0.9861357 +0.8123661 0.8475045 0.9861357 +0.8301795 0.8475045 0.9861357 +0.8475045 0.8475045 0.9861357 +0.8643761 0.8475045 0.9861357 +0.880825 0.8475045 0.9861357 +0.8968787 0.8475045 0.9861357 +0.9125621 0.8475045 0.9861357 +0.9278974 0.8475045 0.9861357 +0.9429048 0.8475045 0.9861357 +0.9576028 0.8475045 0.9861357 +0.9720079 0.8475045 0.9861357 +0.9861357 0.8475045 0.9861357 +1 0.8475045 0.9861357 +0 0.8643761 0.9861357 +0.1939468 0.8643761 0.9861357 +0.2773041 0.8643761 0.9861357 +0.3384659 0.8643761 0.9861357 +0.3885728 0.8643761 0.9861357 +0.4317928 0.8643761 0.9861357 +0.470214 0.8643761 0.9861357 +0.5050551 0.8643761 0.9861357 +0.5370987 0.8643761 0.9861357 +0.5668815 0.8643761 0.9861357 +0.5947903 0.8643761 0.9861357 +0.6211144 0.8643761 0.9861357 +0.6460766 0.8643761 0.9861357 +0.6698526 0.8643761 0.9861357 +0.6925839 0.8643761 0.9861357 +0.7143866 0.8643761 0.9861357 +0.7353569 0.8643761 0.9861357 +0.7555758 0.8643761 0.9861357 +0.7751122 0.8643761 0.9861357 +0.7940252 0.8643761 0.9861357 +0.8123661 0.8643761 0.9861357 +0.8301795 0.8643761 0.9861357 +0.8475045 0.8643761 0.9861357 +0.8643761 0.8643761 0.9861357 +0.880825 0.8643761 0.9861357 +0.8968787 0.8643761 0.9861357 +0.9125621 0.8643761 0.9861357 +0.9278974 0.8643761 0.9861357 +0.9429048 0.8643761 0.9861357 +0.9576028 0.8643761 0.9861357 +0.9720079 0.8643761 0.9861357 +0.9861357 0.8643761 0.9861357 +1 0.8643761 0.9861357 +0 0.880825 0.9861357 +0.1939468 0.880825 0.9861357 +0.2773041 0.880825 0.9861357 +0.3384659 0.880825 0.9861357 +0.3885728 0.880825 0.9861357 +0.4317928 0.880825 0.9861357 +0.470214 0.880825 0.9861357 +0.5050551 0.880825 0.9861357 +0.5370987 0.880825 0.9861357 +0.5668815 0.880825 0.9861357 +0.5947903 0.880825 0.9861357 +0.6211144 0.880825 0.9861357 +0.6460766 0.880825 0.9861357 +0.6698526 0.880825 0.9861357 +0.6925839 0.880825 0.9861357 +0.7143866 0.880825 0.9861357 +0.7353569 0.880825 0.9861357 +0.7555758 0.880825 0.9861357 +0.7751122 0.880825 0.9861357 +0.7940252 0.880825 0.9861357 +0.8123661 0.880825 0.9861357 +0.8301795 0.880825 0.9861357 +0.8475045 0.880825 0.9861357 +0.8643761 0.880825 0.9861357 +0.880825 0.880825 0.9861357 +0.8968787 0.880825 0.9861357 +0.9125621 0.880825 0.9861357 +0.9278974 0.880825 0.9861357 +0.9429048 0.880825 0.9861357 +0.9576028 0.880825 0.9861357 +0.9720079 0.880825 0.9861357 +0.9861357 0.880825 0.9861357 +1 0.880825 0.9861357 +0 0.8968787 0.9861357 +0.1939468 0.8968787 0.9861357 +0.2773041 0.8968787 0.9861357 +0.3384659 0.8968787 0.9861357 +0.3885728 0.8968787 0.9861357 +0.4317928 0.8968787 0.9861357 +0.470214 0.8968787 0.9861357 +0.5050551 0.8968787 0.9861357 +0.5370987 0.8968787 0.9861357 +0.5668815 0.8968787 0.9861357 +0.5947903 0.8968787 0.9861357 +0.6211144 0.8968787 0.9861357 +0.6460766 0.8968787 0.9861357 +0.6698526 0.8968787 0.9861357 +0.6925839 0.8968787 0.9861357 +0.7143866 0.8968787 0.9861357 +0.7353569 0.8968787 0.9861357 +0.7555758 0.8968787 0.9861357 +0.7751122 0.8968787 0.9861357 +0.7940252 0.8968787 0.9861357 +0.8123661 0.8968787 0.9861357 +0.8301795 0.8968787 0.9861357 +0.8475045 0.8968787 0.9861357 +0.8643761 0.8968787 0.9861357 +0.880825 0.8968787 0.9861357 +0.8968787 0.8968787 0.9861357 +0.9125621 0.8968787 0.9861357 +0.9278974 0.8968787 0.9861357 +0.9429048 0.8968787 0.9861357 +0.9576028 0.8968787 0.9861357 +0.9720079 0.8968787 0.9861357 +0.9861357 0.8968787 0.9861357 +1 0.8968787 0.9861357 +0 0.9125621 0.9861357 +0.1939468 0.9125621 0.9861357 +0.2773041 0.9125621 0.9861357 +0.3384659 0.9125621 0.9861357 +0.3885728 0.9125621 0.9861357 +0.4317928 0.9125621 0.9861357 +0.470214 0.9125621 0.9861357 +0.5050551 0.9125621 0.9861357 +0.5370987 0.9125621 0.9861357 +0.5668815 0.9125621 0.9861357 +0.5947903 0.9125621 0.9861357 +0.6211144 0.9125621 0.9861357 +0.6460766 0.9125621 0.9861357 +0.6698526 0.9125621 0.9861357 +0.6925839 0.9125621 0.9861357 +0.7143866 0.9125621 0.9861357 +0.7353569 0.9125621 0.9861357 +0.7555758 0.9125621 0.9861357 +0.7751122 0.9125621 0.9861357 +0.7940252 0.9125621 0.9861357 +0.8123661 0.9125621 0.9861357 +0.8301795 0.9125621 0.9861357 +0.8475045 0.9125621 0.9861357 +0.8643761 0.9125621 0.9861357 +0.880825 0.9125621 0.9861357 +0.8968787 0.9125621 0.9861357 +0.9125621 0.9125621 0.9861357 +0.9278974 0.9125621 0.9861357 +0.9429048 0.9125621 0.9861357 +0.9576028 0.9125621 0.9861357 +0.9720079 0.9125621 0.9861357 +0.9861357 0.9125621 0.9861357 +1 0.9125621 0.9861357 +0 0.9278974 0.9861357 +0.1939468 0.9278974 0.9861357 +0.2773041 0.9278974 0.9861357 +0.3384659 0.9278974 0.9861357 +0.3885728 0.9278974 0.9861357 +0.4317928 0.9278974 0.9861357 +0.470214 0.9278974 0.9861357 +0.5050551 0.9278974 0.9861357 +0.5370987 0.9278974 0.9861357 +0.5668815 0.9278974 0.9861357 +0.5947903 0.9278974 0.9861357 +0.6211144 0.9278974 0.9861357 +0.6460766 0.9278974 0.9861357 +0.6698526 0.9278974 0.9861357 +0.6925839 0.9278974 0.9861357 +0.7143866 0.9278974 0.9861357 +0.7353569 0.9278974 0.9861357 +0.7555758 0.9278974 0.9861357 +0.7751122 0.9278974 0.9861357 +0.7940252 0.9278974 0.9861357 +0.8123661 0.9278974 0.9861357 +0.8301795 0.9278974 0.9861357 +0.8475045 0.9278974 0.9861357 +0.8643761 0.9278974 0.9861357 +0.880825 0.9278974 0.9861357 +0.8968787 0.9278974 0.9861357 +0.9125621 0.9278974 0.9861357 +0.9278974 0.9278974 0.9861357 +0.9429048 0.9278974 0.9861357 +0.9576028 0.9278974 0.9861357 +0.9720079 0.9278974 0.9861357 +0.9861357 0.9278974 0.9861357 +1 0.9278974 0.9861357 +0 0.9429048 0.9861357 +0.1939468 0.9429048 0.9861357 +0.2773041 0.9429048 0.9861357 +0.3384659 0.9429048 0.9861357 +0.3885728 0.9429048 0.9861357 +0.4317928 0.9429048 0.9861357 +0.470214 0.9429048 0.9861357 +0.5050551 0.9429048 0.9861357 +0.5370987 0.9429048 0.9861357 +0.5668815 0.9429048 0.9861357 +0.5947903 0.9429048 0.9861357 +0.6211144 0.9429048 0.9861357 +0.6460766 0.9429048 0.9861357 +0.6698526 0.9429048 0.9861357 +0.6925839 0.9429048 0.9861357 +0.7143866 0.9429048 0.9861357 +0.7353569 0.9429048 0.9861357 +0.7555758 0.9429048 0.9861357 +0.7751122 0.9429048 0.9861357 +0.7940252 0.9429048 0.9861357 +0.8123661 0.9429048 0.9861357 +0.8301795 0.9429048 0.9861357 +0.8475045 0.9429048 0.9861357 +0.8643761 0.9429048 0.9861357 +0.880825 0.9429048 0.9861357 +0.8968787 0.9429048 0.9861357 +0.9125621 0.9429048 0.9861357 +0.9278974 0.9429048 0.9861357 +0.9429048 0.9429048 0.9861357 +0.9576028 0.9429048 0.9861357 +0.9720079 0.9429048 0.9861357 +0.9861357 0.9429048 0.9861357 +1 0.9429048 0.9861357 +0 0.9576028 0.9861357 +0.1939468 0.9576028 0.9861357 +0.2773041 0.9576028 0.9861357 +0.3384659 0.9576028 0.9861357 +0.3885728 0.9576028 0.9861357 +0.4317928 0.9576028 0.9861357 +0.470214 0.9576028 0.9861357 +0.5050551 0.9576028 0.9861357 +0.5370987 0.9576028 0.9861357 +0.5668815 0.9576028 0.9861357 +0.5947903 0.9576028 0.9861357 +0.6211144 0.9576028 0.9861357 +0.6460766 0.9576028 0.9861357 +0.6698526 0.9576028 0.9861357 +0.6925839 0.9576028 0.9861357 +0.7143866 0.9576028 0.9861357 +0.7353569 0.9576028 0.9861357 +0.7555758 0.9576028 0.9861357 +0.7751122 0.9576028 0.9861357 +0.7940252 0.9576028 0.9861357 +0.8123661 0.9576028 0.9861357 +0.8301795 0.9576028 0.9861357 +0.8475045 0.9576028 0.9861357 +0.8643761 0.9576028 0.9861357 +0.880825 0.9576028 0.9861357 +0.8968787 0.9576028 0.9861357 +0.9125621 0.9576028 0.9861357 +0.9278974 0.9576028 0.9861357 +0.9429048 0.9576028 0.9861357 +0.9576028 0.9576028 0.9861357 +0.9720079 0.9576028 0.9861357 +0.9861357 0.9576028 0.9861357 +1 0.9576028 0.9861357 +0 0.9720079 0.9861357 +0.1939468 0.9720079 0.9861357 +0.2773041 0.9720079 0.9861357 +0.3384659 0.9720079 0.9861357 +0.3885728 0.9720079 0.9861357 +0.4317928 0.9720079 0.9861357 +0.470214 0.9720079 0.9861357 +0.5050551 0.9720079 0.9861357 +0.5370987 0.9720079 0.9861357 +0.5668815 0.9720079 0.9861357 +0.5947903 0.9720079 0.9861357 +0.6211144 0.9720079 0.9861357 +0.6460766 0.9720079 0.9861357 +0.6698526 0.9720079 0.9861357 +0.6925839 0.9720079 0.9861357 +0.7143866 0.9720079 0.9861357 +0.7353569 0.9720079 0.9861357 +0.7555758 0.9720079 0.9861357 +0.7751122 0.9720079 0.9861357 +0.7940252 0.9720079 0.9861357 +0.8123661 0.9720079 0.9861357 +0.8301795 0.9720079 0.9861357 +0.8475045 0.9720079 0.9861357 +0.8643761 0.9720079 0.9861357 +0.880825 0.9720079 0.9861357 +0.8968787 0.9720079 0.9861357 +0.9125621 0.9720079 0.9861357 +0.9278974 0.9720079 0.9861357 +0.9429048 0.9720079 0.9861357 +0.9576028 0.9720079 0.9861357 +0.9720079 0.9720079 0.9861357 +0.9861357 0.9720079 0.9861357 +1 0.9720079 0.9861357 +0 0.9861357 0.9861357 +0.1939468 0.9861357 0.9861357 +0.2773041 0.9861357 0.9861357 +0.3384659 0.9861357 0.9861357 +0.3885728 0.9861357 0.9861357 +0.4317928 0.9861357 0.9861357 +0.470214 0.9861357 0.9861357 +0.5050551 0.9861357 0.9861357 +0.5370987 0.9861357 0.9861357 +0.5668815 0.9861357 0.9861357 +0.5947903 0.9861357 0.9861357 +0.6211144 0.9861357 0.9861357 +0.6460766 0.9861357 0.9861357 +0.6698526 0.9861357 0.9861357 +0.6925839 0.9861357 0.9861357 +0.7143866 0.9861357 0.9861357 +0.7353569 0.9861357 0.9861357 +0.7555758 0.9861357 0.9861357 +0.7751122 0.9861357 0.9861357 +0.7940252 0.9861357 0.9861357 +0.8123661 0.9861357 0.9861357 +0.8301795 0.9861357 0.9861357 +0.8475045 0.9861357 0.9861357 +0.8643761 0.9861357 0.9861357 +0.880825 0.9861357 0.9861357 +0.8968787 0.9861357 0.9861357 +0.9125621 0.9861357 0.9861357 +0.9278974 0.9861357 0.9861357 +0.9429048 0.9861357 0.9861357 +0.9576028 0.9861357 0.9861357 +0.9720079 0.9861357 0.9861357 +0.9861357 0.9861357 0.9861357 +1 0.9861357 0.9861357 +0 1 0.9861357 +0.1939468 1 0.9861357 +0.2773041 1 0.9861357 +0.3384659 1 0.9861357 +0.3885728 1 0.9861357 +0.4317928 1 0.9861357 +0.470214 1 0.9861357 +0.5050551 1 0.9861357 +0.5370987 1 0.9861357 +0.5668815 1 0.9861357 +0.5947903 1 0.9861357 +0.6211144 1 0.9861357 +0.6460766 1 0.9861357 +0.6698526 1 0.9861357 +0.6925839 1 0.9861357 +0.7143866 1 0.9861357 +0.7353569 1 0.9861357 +0.7555758 1 0.9861357 +0.7751122 1 0.9861357 +0.7940252 1 0.9861357 +0.8123661 1 0.9861357 +0.8301795 1 0.9861357 +0.8475045 1 0.9861357 +0.8643761 1 0.9861357 +0.880825 1 0.9861357 +0.8968787 1 0.9861357 +0.9125621 1 0.9861357 +0.9278974 1 0.9861357 +0.9429048 1 0.9861357 +0.9576028 1 0.9861357 +0.9720079 1 0.9861357 +0.9861357 1 0.9861357 +1 1 0.9861357 +0 0 1 +0.1939468 0 1 +0.2773041 0 1 +0.3384659 0 1 +0.3885728 0 1 +0.4317928 0 1 +0.470214 0 1 +0.5050551 0 1 +0.5370987 0 1 +0.5668815 0 1 +0.5947903 0 1 +0.6211144 0 1 +0.6460766 0 1 +0.6698526 0 1 +0.6925839 0 1 +0.7143866 0 1 +0.7353569 0 1 +0.7555758 0 1 +0.7751122 0 1 +0.7940252 0 1 +0.8123661 0 1 +0.8301795 0 1 +0.8475045 0 1 +0.8643761 0 1 +0.880825 0 1 +0.8968787 0 1 +0.9125621 0 1 +0.9278974 0 1 +0.9429048 0 1 +0.9576028 0 1 +0.9720079 0 1 +0.9861357 0 1 +1 0 1 +0 0.1939468 1 +0.1939468 0.1939468 1 +0.2773041 0.1939468 1 +0.3384659 0.1939468 1 +0.3885728 0.1939468 1 +0.4317928 0.1939468 1 +0.470214 0.1939468 1 +0.5050551 0.1939468 1 +0.5370987 0.1939468 1 +0.5668815 0.1939468 1 +0.5947903 0.1939468 1 +0.6211144 0.1939468 1 +0.6460766 0.1939468 1 +0.6698526 0.1939468 1 +0.6925839 0.1939468 1 +0.7143866 0.1939468 1 +0.7353569 0.1939468 1 +0.7555758 0.1939468 1 +0.7751122 0.1939468 1 +0.7940252 0.1939468 1 +0.8123661 0.1939468 1 +0.8301795 0.1939468 1 +0.8475045 0.1939468 1 +0.8643761 0.1939468 1 +0.880825 0.1939468 1 +0.8968787 0.1939468 1 +0.9125621 0.1939468 1 +0.9278974 0.1939468 1 +0.9429048 0.1939468 1 +0.9576028 0.1939468 1 +0.9720079 0.1939468 1 +0.9861357 0.1939468 1 +1 0.1939468 1 +0 0.2773041 1 +0.1939468 0.2773041 1 +0.2773041 0.2773041 1 +0.3384659 0.2773041 1 +0.3885728 0.2773041 1 +0.4317928 0.2773041 1 +0.470214 0.2773041 1 +0.5050551 0.2773041 1 +0.5370987 0.2773041 1 +0.5668815 0.2773041 1 +0.5947903 0.2773041 1 +0.6211144 0.2773041 1 +0.6460766 0.2773041 1 +0.6698526 0.2773041 1 +0.6925839 0.2773041 1 +0.7143866 0.2773041 1 +0.7353569 0.2773041 1 +0.7555758 0.2773041 1 +0.7751122 0.2773041 1 +0.7940252 0.2773041 1 +0.8123661 0.2773041 1 +0.8301795 0.2773041 1 +0.8475045 0.2773041 1 +0.8643761 0.2773041 1 +0.880825 0.2773041 1 +0.8968787 0.2773041 1 +0.9125621 0.2773041 1 +0.9278974 0.2773041 1 +0.9429048 0.2773041 1 +0.9576028 0.2773041 1 +0.9720079 0.2773041 1 +0.9861357 0.2773041 1 +1 0.2773041 1 +0 0.3384659 1 +0.1939468 0.3384659 1 +0.2773041 0.3384659 1 +0.3384659 0.3384659 1 +0.3885728 0.3384659 1 +0.4317928 0.3384659 1 +0.470214 0.3384659 1 +0.5050551 0.3384659 1 +0.5370987 0.3384659 1 +0.5668815 0.3384659 1 +0.5947903 0.3384659 1 +0.6211144 0.3384659 1 +0.6460766 0.3384659 1 +0.6698526 0.3384659 1 +0.6925839 0.3384659 1 +0.7143866 0.3384659 1 +0.7353569 0.3384659 1 +0.7555758 0.3384659 1 +0.7751122 0.3384659 1 +0.7940252 0.3384659 1 +0.8123661 0.3384659 1 +0.8301795 0.3384659 1 +0.8475045 0.3384659 1 +0.8643761 0.3384659 1 +0.880825 0.3384659 1 +0.8968787 0.3384659 1 +0.9125621 0.3384659 1 +0.9278974 0.3384659 1 +0.9429048 0.3384659 1 +0.9576028 0.3384659 1 +0.9720079 0.3384659 1 +0.9861357 0.3384659 1 +1 0.3384659 1 +0 0.3885728 1 +0.1939468 0.3885728 1 +0.2773041 0.3885728 1 +0.3384659 0.3885728 1 +0.3885728 0.3885728 1 +0.4317928 0.3885728 1 +0.470214 0.3885728 1 +0.5050551 0.3885728 1 +0.5370987 0.3885728 1 +0.5668815 0.3885728 1 +0.5947903 0.3885728 1 +0.6211144 0.3885728 1 +0.6460766 0.3885728 1 +0.6698526 0.3885728 1 +0.6925839 0.3885728 1 +0.7143866 0.3885728 1 +0.7353569 0.3885728 1 +0.7555758 0.3885728 1 +0.7751122 0.3885728 1 +0.7940252 0.3885728 1 +0.8123661 0.3885728 1 +0.8301795 0.3885728 1 +0.8475045 0.3885728 1 +0.8643761 0.3885728 1 +0.880825 0.3885728 1 +0.8968787 0.3885728 1 +0.9125621 0.3885728 1 +0.9278974 0.3885728 1 +0.9429048 0.3885728 1 +0.9576028 0.3885728 1 +0.9720079 0.3885728 1 +0.9861357 0.3885728 1 +1 0.3885728 1 +0 0.4317928 1 +0.1939468 0.4317928 1 +0.2773041 0.4317928 1 +0.3384659 0.4317928 1 +0.3885728 0.4317928 1 +0.4317928 0.4317928 1 +0.470214 0.4317928 1 +0.5050551 0.4317928 1 +0.5370987 0.4317928 1 +0.5668815 0.4317928 1 +0.5947903 0.4317928 1 +0.6211144 0.4317928 1 +0.6460766 0.4317928 1 +0.6698526 0.4317928 1 +0.6925839 0.4317928 1 +0.7143866 0.4317928 1 +0.7353569 0.4317928 1 +0.7555758 0.4317928 1 +0.7751122 0.4317928 1 +0.7940252 0.4317928 1 +0.8123661 0.4317928 1 +0.8301795 0.4317928 1 +0.8475045 0.4317928 1 +0.8643761 0.4317928 1 +0.880825 0.4317928 1 +0.8968787 0.4317928 1 +0.9125621 0.4317928 1 +0.9278974 0.4317928 1 +0.9429048 0.4317928 1 +0.9576028 0.4317928 1 +0.9720079 0.4317928 1 +0.9861357 0.4317928 1 +1 0.4317928 1 +0 0.470214 1 +0.1939468 0.470214 1 +0.2773041 0.470214 1 +0.3384659 0.470214 1 +0.3885728 0.470214 1 +0.4317928 0.470214 1 +0.470214 0.470214 1 +0.5050551 0.470214 1 +0.5370987 0.470214 1 +0.5668815 0.470214 1 +0.5947903 0.470214 1 +0.6211144 0.470214 1 +0.6460766 0.470214 1 +0.6698526 0.470214 1 +0.6925839 0.470214 1 +0.7143866 0.470214 1 +0.7353569 0.470214 1 +0.7555758 0.470214 1 +0.7751122 0.470214 1 +0.7940252 0.470214 1 +0.8123661 0.470214 1 +0.8301795 0.470214 1 +0.8475045 0.470214 1 +0.8643761 0.470214 1 +0.880825 0.470214 1 +0.8968787 0.470214 1 +0.9125621 0.470214 1 +0.9278974 0.470214 1 +0.9429048 0.470214 1 +0.9576028 0.470214 1 +0.9720079 0.470214 1 +0.9861357 0.470214 1 +1 0.470214 1 +0 0.5050551 1 +0.1939468 0.5050551 1 +0.2773041 0.5050551 1 +0.3384659 0.5050551 1 +0.3885728 0.5050551 1 +0.4317928 0.5050551 1 +0.470214 0.5050551 1 +0.5050551 0.5050551 1 +0.5370987 0.5050551 1 +0.5668815 0.5050551 1 +0.5947903 0.5050551 1 +0.6211144 0.5050551 1 +0.6460766 0.5050551 1 +0.6698526 0.5050551 1 +0.6925839 0.5050551 1 +0.7143866 0.5050551 1 +0.7353569 0.5050551 1 +0.7555758 0.5050551 1 +0.7751122 0.5050551 1 +0.7940252 0.5050551 1 +0.8123661 0.5050551 1 +0.8301795 0.5050551 1 +0.8475045 0.5050551 1 +0.8643761 0.5050551 1 +0.880825 0.5050551 1 +0.8968787 0.5050551 1 +0.9125621 0.5050551 1 +0.9278974 0.5050551 1 +0.9429048 0.5050551 1 +0.9576028 0.5050551 1 +0.9720079 0.5050551 1 +0.9861357 0.5050551 1 +1 0.5050551 1 +0 0.5370987 1 +0.1939468 0.5370987 1 +0.2773041 0.5370987 1 +0.3384659 0.5370987 1 +0.3885728 0.5370987 1 +0.4317928 0.5370987 1 +0.470214 0.5370987 1 +0.5050551 0.5370987 1 +0.5370987 0.5370987 1 +0.5668815 0.5370987 1 +0.5947903 0.5370987 1 +0.6211144 0.5370987 1 +0.6460766 0.5370987 1 +0.6698526 0.5370987 1 +0.6925839 0.5370987 1 +0.7143866 0.5370987 1 +0.7353569 0.5370987 1 +0.7555758 0.5370987 1 +0.7751122 0.5370987 1 +0.7940252 0.5370987 1 +0.8123661 0.5370987 1 +0.8301795 0.5370987 1 +0.8475045 0.5370987 1 +0.8643761 0.5370987 1 +0.880825 0.5370987 1 +0.8968787 0.5370987 1 +0.9125621 0.5370987 1 +0.9278974 0.5370987 1 +0.9429048 0.5370987 1 +0.9576028 0.5370987 1 +0.9720079 0.5370987 1 +0.9861357 0.5370987 1 +1 0.5370987 1 +0 0.5668815 1 +0.1939468 0.5668815 1 +0.2773041 0.5668815 1 +0.3384659 0.5668815 1 +0.3885728 0.5668815 1 +0.4317928 0.5668815 1 +0.470214 0.5668815 1 +0.5050551 0.5668815 1 +0.5370987 0.5668815 1 +0.5668815 0.5668815 1 +0.5947903 0.5668815 1 +0.6211144 0.5668815 1 +0.6460766 0.5668815 1 +0.6698526 0.5668815 1 +0.6925839 0.5668815 1 +0.7143866 0.5668815 1 +0.7353569 0.5668815 1 +0.7555758 0.5668815 1 +0.7751122 0.5668815 1 +0.7940252 0.5668815 1 +0.8123661 0.5668815 1 +0.8301795 0.5668815 1 +0.8475045 0.5668815 1 +0.8643761 0.5668815 1 +0.880825 0.5668815 1 +0.8968787 0.5668815 1 +0.9125621 0.5668815 1 +0.9278974 0.5668815 1 +0.9429048 0.5668815 1 +0.9576028 0.5668815 1 +0.9720079 0.5668815 1 +0.9861357 0.5668815 1 +1 0.5668815 1 +0 0.5947903 1 +0.1939468 0.5947903 1 +0.2773041 0.5947903 1 +0.3384659 0.5947903 1 +0.3885728 0.5947903 1 +0.4317928 0.5947903 1 +0.470214 0.5947903 1 +0.5050551 0.5947903 1 +0.5370987 0.5947903 1 +0.5668815 0.5947903 1 +0.5947903 0.5947903 1 +0.6211144 0.5947903 1 +0.6460766 0.5947903 1 +0.6698526 0.5947903 1 +0.6925839 0.5947903 1 +0.7143866 0.5947903 1 +0.7353569 0.5947903 1 +0.7555758 0.5947903 1 +0.7751122 0.5947903 1 +0.7940252 0.5947903 1 +0.8123661 0.5947903 1 +0.8301795 0.5947903 1 +0.8475045 0.5947903 1 +0.8643761 0.5947903 1 +0.880825 0.5947903 1 +0.8968787 0.5947903 1 +0.9125621 0.5947903 1 +0.9278974 0.5947903 1 +0.9429048 0.5947903 1 +0.9576028 0.5947903 1 +0.9720079 0.5947903 1 +0.9861357 0.5947903 1 +1 0.5947903 1 +0 0.6211144 1 +0.1939468 0.6211144 1 +0.2773041 0.6211144 1 +0.3384659 0.6211144 1 +0.3885728 0.6211144 1 +0.4317928 0.6211144 1 +0.470214 0.6211144 1 +0.5050551 0.6211144 1 +0.5370987 0.6211144 1 +0.5668815 0.6211144 1 +0.5947903 0.6211144 1 +0.6211144 0.6211144 1 +0.6460766 0.6211144 1 +0.6698526 0.6211144 1 +0.6925839 0.6211144 1 +0.7143866 0.6211144 1 +0.7353569 0.6211144 1 +0.7555758 0.6211144 1 +0.7751122 0.6211144 1 +0.7940252 0.6211144 1 +0.8123661 0.6211144 1 +0.8301795 0.6211144 1 +0.8475045 0.6211144 1 +0.8643761 0.6211144 1 +0.880825 0.6211144 1 +0.8968787 0.6211144 1 +0.9125621 0.6211144 1 +0.9278974 0.6211144 1 +0.9429048 0.6211144 1 +0.9576028 0.6211144 1 +0.9720079 0.6211144 1 +0.9861357 0.6211144 1 +1 0.6211144 1 +0 0.6460766 1 +0.1939468 0.6460766 1 +0.2773041 0.6460766 1 +0.3384659 0.6460766 1 +0.3885728 0.6460766 1 +0.4317928 0.6460766 1 +0.470214 0.6460766 1 +0.5050551 0.6460766 1 +0.5370987 0.6460766 1 +0.5668815 0.6460766 1 +0.5947903 0.6460766 1 +0.6211144 0.6460766 1 +0.6460766 0.6460766 1 +0.6698526 0.6460766 1 +0.6925839 0.6460766 1 +0.7143866 0.6460766 1 +0.7353569 0.6460766 1 +0.7555758 0.6460766 1 +0.7751122 0.6460766 1 +0.7940252 0.6460766 1 +0.8123661 0.6460766 1 +0.8301795 0.6460766 1 +0.8475045 0.6460766 1 +0.8643761 0.6460766 1 +0.880825 0.6460766 1 +0.8968787 0.6460766 1 +0.9125621 0.6460766 1 +0.9278974 0.6460766 1 +0.9429048 0.6460766 1 +0.9576028 0.6460766 1 +0.9720079 0.6460766 1 +0.9861357 0.6460766 1 +1 0.6460766 1 +0 0.6698526 1 +0.1939468 0.6698526 1 +0.2773041 0.6698526 1 +0.3384659 0.6698526 1 +0.3885728 0.6698526 1 +0.4317928 0.6698526 1 +0.470214 0.6698526 1 +0.5050551 0.6698526 1 +0.5370987 0.6698526 1 +0.5668815 0.6698526 1 +0.5947903 0.6698526 1 +0.6211144 0.6698526 1 +0.6460766 0.6698526 1 +0.6698526 0.6698526 1 +0.6925839 0.6698526 1 +0.7143866 0.6698526 1 +0.7353569 0.6698526 1 +0.7555758 0.6698526 1 +0.7751122 0.6698526 1 +0.7940252 0.6698526 1 +0.8123661 0.6698526 1 +0.8301795 0.6698526 1 +0.8475045 0.6698526 1 +0.8643761 0.6698526 1 +0.880825 0.6698526 1 +0.8968787 0.6698526 1 +0.9125621 0.6698526 1 +0.9278974 0.6698526 1 +0.9429048 0.6698526 1 +0.9576028 0.6698526 1 +0.9720079 0.6698526 1 +0.9861357 0.6698526 1 +1 0.6698526 1 +0 0.6925839 1 +0.1939468 0.6925839 1 +0.2773041 0.6925839 1 +0.3384659 0.6925839 1 +0.3885728 0.6925839 1 +0.4317928 0.6925839 1 +0.470214 0.6925839 1 +0.5050551 0.6925839 1 +0.5370987 0.6925839 1 +0.5668815 0.6925839 1 +0.5947903 0.6925839 1 +0.6211144 0.6925839 1 +0.6460766 0.6925839 1 +0.6698526 0.6925839 1 +0.6925839 0.6925839 1 +0.7143866 0.6925839 1 +0.7353569 0.6925839 1 +0.7555758 0.6925839 1 +0.7751122 0.6925839 1 +0.7940252 0.6925839 1 +0.8123661 0.6925839 1 +0.8301795 0.6925839 1 +0.8475045 0.6925839 1 +0.8643761 0.6925839 1 +0.880825 0.6925839 1 +0.8968787 0.6925839 1 +0.9125621 0.6925839 1 +0.9278974 0.6925839 1 +0.9429048 0.6925839 1 +0.9576028 0.6925839 1 +0.9720079 0.6925839 1 +0.9861357 0.6925839 1 +1 0.6925839 1 +0 0.7143866 1 +0.1939468 0.7143866 1 +0.2773041 0.7143866 1 +0.3384659 0.7143866 1 +0.3885728 0.7143866 1 +0.4317928 0.7143866 1 +0.470214 0.7143866 1 +0.5050551 0.7143866 1 +0.5370987 0.7143866 1 +0.5668815 0.7143866 1 +0.5947903 0.7143866 1 +0.6211144 0.7143866 1 +0.6460766 0.7143866 1 +0.6698526 0.7143866 1 +0.6925839 0.7143866 1 +0.7143866 0.7143866 1 +0.7353569 0.7143866 1 +0.7555758 0.7143866 1 +0.7751122 0.7143866 1 +0.7940252 0.7143866 1 +0.8123661 0.7143866 1 +0.8301795 0.7143866 1 +0.8475045 0.7143866 1 +0.8643761 0.7143866 1 +0.880825 0.7143866 1 +0.8968787 0.7143866 1 +0.9125621 0.7143866 1 +0.9278974 0.7143866 1 +0.9429048 0.7143866 1 +0.9576028 0.7143866 1 +0.9720079 0.7143866 1 +0.9861357 0.7143866 1 +1 0.7143866 1 +0 0.7353569 1 +0.1939468 0.7353569 1 +0.2773041 0.7353569 1 +0.3384659 0.7353569 1 +0.3885728 0.7353569 1 +0.4317928 0.7353569 1 +0.470214 0.7353569 1 +0.5050551 0.7353569 1 +0.5370987 0.7353569 1 +0.5668815 0.7353569 1 +0.5947903 0.7353569 1 +0.6211144 0.7353569 1 +0.6460766 0.7353569 1 +0.6698526 0.7353569 1 +0.6925839 0.7353569 1 +0.7143866 0.7353569 1 +0.7353569 0.7353569 1 +0.7555758 0.7353569 1 +0.7751122 0.7353569 1 +0.7940252 0.7353569 1 +0.8123661 0.7353569 1 +0.8301795 0.7353569 1 +0.8475045 0.7353569 1 +0.8643761 0.7353569 1 +0.880825 0.7353569 1 +0.8968787 0.7353569 1 +0.9125621 0.7353569 1 +0.9278974 0.7353569 1 +0.9429048 0.7353569 1 +0.9576028 0.7353569 1 +0.9720079 0.7353569 1 +0.9861357 0.7353569 1 +1 0.7353569 1 +0 0.7555758 1 +0.1939468 0.7555758 1 +0.2773041 0.7555758 1 +0.3384659 0.7555758 1 +0.3885728 0.7555758 1 +0.4317928 0.7555758 1 +0.470214 0.7555758 1 +0.5050551 0.7555758 1 +0.5370987 0.7555758 1 +0.5668815 0.7555758 1 +0.5947903 0.7555758 1 +0.6211144 0.7555758 1 +0.6460766 0.7555758 1 +0.6698526 0.7555758 1 +0.6925839 0.7555758 1 +0.7143866 0.7555758 1 +0.7353569 0.7555758 1 +0.7555758 0.7555758 1 +0.7751122 0.7555758 1 +0.7940252 0.7555758 1 +0.8123661 0.7555758 1 +0.8301795 0.7555758 1 +0.8475045 0.7555758 1 +0.8643761 0.7555758 1 +0.880825 0.7555758 1 +0.8968787 0.7555758 1 +0.9125621 0.7555758 1 +0.9278974 0.7555758 1 +0.9429048 0.7555758 1 +0.9576028 0.7555758 1 +0.9720079 0.7555758 1 +0.9861357 0.7555758 1 +1 0.7555758 1 +0 0.7751122 1 +0.1939468 0.7751122 1 +0.2773041 0.7751122 1 +0.3384659 0.7751122 1 +0.3885728 0.7751122 1 +0.4317928 0.7751122 1 +0.470214 0.7751122 1 +0.5050551 0.7751122 1 +0.5370987 0.7751122 1 +0.5668815 0.7751122 1 +0.5947903 0.7751122 1 +0.6211144 0.7751122 1 +0.6460766 0.7751122 1 +0.6698526 0.7751122 1 +0.6925839 0.7751122 1 +0.7143866 0.7751122 1 +0.7353569 0.7751122 1 +0.7555758 0.7751122 1 +0.7751122 0.7751122 1 +0.7940252 0.7751122 1 +0.8123661 0.7751122 1 +0.8301795 0.7751122 1 +0.8475045 0.7751122 1 +0.8643761 0.7751122 1 +0.880825 0.7751122 1 +0.8968787 0.7751122 1 +0.9125621 0.7751122 1 +0.9278974 0.7751122 1 +0.9429048 0.7751122 1 +0.9576028 0.7751122 1 +0.9720079 0.7751122 1 +0.9861357 0.7751122 1 +1 0.7751122 1 +0 0.7940252 1 +0.1939468 0.7940252 1 +0.2773041 0.7940252 1 +0.3384659 0.7940252 1 +0.3885728 0.7940252 1 +0.4317928 0.7940252 1 +0.470214 0.7940252 1 +0.5050551 0.7940252 1 +0.5370987 0.7940252 1 +0.5668815 0.7940252 1 +0.5947903 0.7940252 1 +0.6211144 0.7940252 1 +0.6460766 0.7940252 1 +0.6698526 0.7940252 1 +0.6925839 0.7940252 1 +0.7143866 0.7940252 1 +0.7353569 0.7940252 1 +0.7555758 0.7940252 1 +0.7751122 0.7940252 1 +0.7940252 0.7940252 1 +0.8123661 0.7940252 1 +0.8301795 0.7940252 1 +0.8475045 0.7940252 1 +0.8643761 0.7940252 1 +0.880825 0.7940252 1 +0.8968787 0.7940252 1 +0.9125621 0.7940252 1 +0.9278974 0.7940252 1 +0.9429048 0.7940252 1 +0.9576028 0.7940252 1 +0.9720079 0.7940252 1 +0.9861357 0.7940252 1 +1 0.7940252 1 +0 0.8123661 1 +0.1939468 0.8123661 1 +0.2773041 0.8123661 1 +0.3384659 0.8123661 1 +0.3885728 0.8123661 1 +0.4317928 0.8123661 1 +0.470214 0.8123661 1 +0.5050551 0.8123661 1 +0.5370987 0.8123661 1 +0.5668815 0.8123661 1 +0.5947903 0.8123661 1 +0.6211144 0.8123661 1 +0.6460766 0.8123661 1 +0.6698526 0.8123661 1 +0.6925839 0.8123661 1 +0.7143866 0.8123661 1 +0.7353569 0.8123661 1 +0.7555758 0.8123661 1 +0.7751122 0.8123661 1 +0.7940252 0.8123661 1 +0.8123661 0.8123661 1 +0.8301795 0.8123661 1 +0.8475045 0.8123661 1 +0.8643761 0.8123661 1 +0.880825 0.8123661 1 +0.8968787 0.8123661 1 +0.9125621 0.8123661 1 +0.9278974 0.8123661 1 +0.9429048 0.8123661 1 +0.9576028 0.8123661 1 +0.9720079 0.8123661 1 +0.9861357 0.8123661 1 +1 0.8123661 1 +0 0.8301795 1 +0.1939468 0.8301795 1 +0.2773041 0.8301795 1 +0.3384659 0.8301795 1 +0.3885728 0.8301795 1 +0.4317928 0.8301795 1 +0.470214 0.8301795 1 +0.5050551 0.8301795 1 +0.5370987 0.8301795 1 +0.5668815 0.8301795 1 +0.5947903 0.8301795 1 +0.6211144 0.8301795 1 +0.6460766 0.8301795 1 +0.6698526 0.8301795 1 +0.6925839 0.8301795 1 +0.7143866 0.8301795 1 +0.7353569 0.8301795 1 +0.7555758 0.8301795 1 +0.7751122 0.8301795 1 +0.7940252 0.8301795 1 +0.8123661 0.8301795 1 +0.8301795 0.8301795 1 +0.8475045 0.8301795 1 +0.8643761 0.8301795 1 +0.880825 0.8301795 1 +0.8968787 0.8301795 1 +0.9125621 0.8301795 1 +0.9278974 0.8301795 1 +0.9429048 0.8301795 1 +0.9576028 0.8301795 1 +0.9720079 0.8301795 1 +0.9861357 0.8301795 1 +1 0.8301795 1 +0 0.8475045 1 +0.1939468 0.8475045 1 +0.2773041 0.8475045 1 +0.3384659 0.8475045 1 +0.3885728 0.8475045 1 +0.4317928 0.8475045 1 +0.470214 0.8475045 1 +0.5050551 0.8475045 1 +0.5370987 0.8475045 1 +0.5668815 0.8475045 1 +0.5947903 0.8475045 1 +0.6211144 0.8475045 1 +0.6460766 0.8475045 1 +0.6698526 0.8475045 1 +0.6925839 0.8475045 1 +0.7143866 0.8475045 1 +0.7353569 0.8475045 1 +0.7555758 0.8475045 1 +0.7751122 0.8475045 1 +0.7940252 0.8475045 1 +0.8123661 0.8475045 1 +0.8301795 0.8475045 1 +0.8475045 0.8475045 1 +0.8643761 0.8475045 1 +0.880825 0.8475045 1 +0.8968787 0.8475045 1 +0.9125621 0.8475045 1 +0.9278974 0.8475045 1 +0.9429048 0.8475045 1 +0.9576028 0.8475045 1 +0.9720079 0.8475045 1 +0.9861357 0.8475045 1 +1 0.8475045 1 +0 0.8643761 1 +0.1939468 0.8643761 1 +0.2773041 0.8643761 1 +0.3384659 0.8643761 1 +0.3885728 0.8643761 1 +0.4317928 0.8643761 1 +0.470214 0.8643761 1 +0.5050551 0.8643761 1 +0.5370987 0.8643761 1 +0.5668815 0.8643761 1 +0.5947903 0.8643761 1 +0.6211144 0.8643761 1 +0.6460766 0.8643761 1 +0.6698526 0.8643761 1 +0.6925839 0.8643761 1 +0.7143866 0.8643761 1 +0.7353569 0.8643761 1 +0.7555758 0.8643761 1 +0.7751122 0.8643761 1 +0.7940252 0.8643761 1 +0.8123661 0.8643761 1 +0.8301795 0.8643761 1 +0.8475045 0.8643761 1 +0.8643761 0.8643761 1 +0.880825 0.8643761 1 +0.8968787 0.8643761 1 +0.9125621 0.8643761 1 +0.9278974 0.8643761 1 +0.9429048 0.8643761 1 +0.9576028 0.8643761 1 +0.9720079 0.8643761 1 +0.9861357 0.8643761 1 +1 0.8643761 1 +0 0.880825 1 +0.1939468 0.880825 1 +0.2773041 0.880825 1 +0.3384659 0.880825 1 +0.3885728 0.880825 1 +0.4317928 0.880825 1 +0.470214 0.880825 1 +0.5050551 0.880825 1 +0.5370987 0.880825 1 +0.5668815 0.880825 1 +0.5947903 0.880825 1 +0.6211144 0.880825 1 +0.6460766 0.880825 1 +0.6698526 0.880825 1 +0.6925839 0.880825 1 +0.7143866 0.880825 1 +0.7353569 0.880825 1 +0.7555758 0.880825 1 +0.7751122 0.880825 1 +0.7940252 0.880825 1 +0.8123661 0.880825 1 +0.8301795 0.880825 1 +0.8475045 0.880825 1 +0.8643761 0.880825 1 +0.880825 0.880825 1 +0.8968787 0.880825 1 +0.9125621 0.880825 1 +0.9278974 0.880825 1 +0.9429048 0.880825 1 +0.9576028 0.880825 1 +0.9720079 0.880825 1 +0.9861357 0.880825 1 +1 0.880825 1 +0 0.8968787 1 +0.1939468 0.8968787 1 +0.2773041 0.8968787 1 +0.3384659 0.8968787 1 +0.3885728 0.8968787 1 +0.4317928 0.8968787 1 +0.470214 0.8968787 1 +0.5050551 0.8968787 1 +0.5370987 0.8968787 1 +0.5668815 0.8968787 1 +0.5947903 0.8968787 1 +0.6211144 0.8968787 1 +0.6460766 0.8968787 1 +0.6698526 0.8968787 1 +0.6925839 0.8968787 1 +0.7143866 0.8968787 1 +0.7353569 0.8968787 1 +0.7555758 0.8968787 1 +0.7751122 0.8968787 1 +0.7940252 0.8968787 1 +0.8123661 0.8968787 1 +0.8301795 0.8968787 1 +0.8475045 0.8968787 1 +0.8643761 0.8968787 1 +0.880825 0.8968787 1 +0.8968787 0.8968787 1 +0.9125621 0.8968787 1 +0.9278974 0.8968787 1 +0.9429048 0.8968787 1 +0.9576028 0.8968787 1 +0.9720079 0.8968787 1 +0.9861357 0.8968787 1 +1 0.8968787 1 +0 0.9125621 1 +0.1939468 0.9125621 1 +0.2773041 0.9125621 1 +0.3384659 0.9125621 1 +0.3885728 0.9125621 1 +0.4317928 0.9125621 1 +0.470214 0.9125621 1 +0.5050551 0.9125621 1 +0.5370987 0.9125621 1 +0.5668815 0.9125621 1 +0.5947903 0.9125621 1 +0.6211144 0.9125621 1 +0.6460766 0.9125621 1 +0.6698526 0.9125621 1 +0.6925839 0.9125621 1 +0.7143866 0.9125621 1 +0.7353569 0.9125621 1 +0.7555758 0.9125621 1 +0.7751122 0.9125621 1 +0.7940252 0.9125621 1 +0.8123661 0.9125621 1 +0.8301795 0.9125621 1 +0.8475045 0.9125621 1 +0.8643761 0.9125621 1 +0.880825 0.9125621 1 +0.8968787 0.9125621 1 +0.9125621 0.9125621 1 +0.9278974 0.9125621 1 +0.9429048 0.9125621 1 +0.9576028 0.9125621 1 +0.9720079 0.9125621 1 +0.9861357 0.9125621 1 +1 0.9125621 1 +0 0.9278974 1 +0.1939468 0.9278974 1 +0.2773041 0.9278974 1 +0.3384659 0.9278974 1 +0.3885728 0.9278974 1 +0.4317928 0.9278974 1 +0.470214 0.9278974 1 +0.5050551 0.9278974 1 +0.5370987 0.9278974 1 +0.5668815 0.9278974 1 +0.5947903 0.9278974 1 +0.6211144 0.9278974 1 +0.6460766 0.9278974 1 +0.6698526 0.9278974 1 +0.6925839 0.9278974 1 +0.7143866 0.9278974 1 +0.7353569 0.9278974 1 +0.7555758 0.9278974 1 +0.7751122 0.9278974 1 +0.7940252 0.9278974 1 +0.8123661 0.9278974 1 +0.8301795 0.9278974 1 +0.8475045 0.9278974 1 +0.8643761 0.9278974 1 +0.880825 0.9278974 1 +0.8968787 0.9278974 1 +0.9125621 0.9278974 1 +0.9278974 0.9278974 1 +0.9429048 0.9278974 1 +0.9576028 0.9278974 1 +0.9720079 0.9278974 1 +0.9861357 0.9278974 1 +1 0.9278974 1 +0 0.9429048 1 +0.1939468 0.9429048 1 +0.2773041 0.9429048 1 +0.3384659 0.9429048 1 +0.3885728 0.9429048 1 +0.4317928 0.9429048 1 +0.470214 0.9429048 1 +0.5050551 0.9429048 1 +0.5370987 0.9429048 1 +0.5668815 0.9429048 1 +0.5947903 0.9429048 1 +0.6211144 0.9429048 1 +0.6460766 0.9429048 1 +0.6698526 0.9429048 1 +0.6925839 0.9429048 1 +0.7143866 0.9429048 1 +0.7353569 0.9429048 1 +0.7555758 0.9429048 1 +0.7751122 0.9429048 1 +0.7940252 0.9429048 1 +0.8123661 0.9429048 1 +0.8301795 0.9429048 1 +0.8475045 0.9429048 1 +0.8643761 0.9429048 1 +0.880825 0.9429048 1 +0.8968787 0.9429048 1 +0.9125621 0.9429048 1 +0.9278974 0.9429048 1 +0.9429048 0.9429048 1 +0.9576028 0.9429048 1 +0.9720079 0.9429048 1 +0.9861357 0.9429048 1 +1 0.9429048 1 +0 0.9576028 1 +0.1939468 0.9576028 1 +0.2773041 0.9576028 1 +0.3384659 0.9576028 1 +0.3885728 0.9576028 1 +0.4317928 0.9576028 1 +0.470214 0.9576028 1 +0.5050551 0.9576028 1 +0.5370987 0.9576028 1 +0.5668815 0.9576028 1 +0.5947903 0.9576028 1 +0.6211144 0.9576028 1 +0.6460766 0.9576028 1 +0.6698526 0.9576028 1 +0.6925839 0.9576028 1 +0.7143866 0.9576028 1 +0.7353569 0.9576028 1 +0.7555758 0.9576028 1 +0.7751122 0.9576028 1 +0.7940252 0.9576028 1 +0.8123661 0.9576028 1 +0.8301795 0.9576028 1 +0.8475045 0.9576028 1 +0.8643761 0.9576028 1 +0.880825 0.9576028 1 +0.8968787 0.9576028 1 +0.9125621 0.9576028 1 +0.9278974 0.9576028 1 +0.9429048 0.9576028 1 +0.9576028 0.9576028 1 +0.9720079 0.9576028 1 +0.9861357 0.9576028 1 +1 0.9576028 1 +0 0.9720079 1 +0.1939468 0.9720079 1 +0.2773041 0.9720079 1 +0.3384659 0.9720079 1 +0.3885728 0.9720079 1 +0.4317928 0.9720079 1 +0.470214 0.9720079 1 +0.5050551 0.9720079 1 +0.5370987 0.9720079 1 +0.5668815 0.9720079 1 +0.5947903 0.9720079 1 +0.6211144 0.9720079 1 +0.6460766 0.9720079 1 +0.6698526 0.9720079 1 +0.6925839 0.9720079 1 +0.7143866 0.9720079 1 +0.7353569 0.9720079 1 +0.7555758 0.9720079 1 +0.7751122 0.9720079 1 +0.7940252 0.9720079 1 +0.8123661 0.9720079 1 +0.8301795 0.9720079 1 +0.8475045 0.9720079 1 +0.8643761 0.9720079 1 +0.880825 0.9720079 1 +0.8968787 0.9720079 1 +0.9125621 0.9720079 1 +0.9278974 0.9720079 1 +0.9429048 0.9720079 1 +0.9576028 0.9720079 1 +0.9720079 0.9720079 1 +0.9861357 0.9720079 1 +1 0.9720079 1 +0 0.9861357 1 +0.1939468 0.9861357 1 +0.2773041 0.9861357 1 +0.3384659 0.9861357 1 +0.3885728 0.9861357 1 +0.4317928 0.9861357 1 +0.470214 0.9861357 1 +0.5050551 0.9861357 1 +0.5370987 0.9861357 1 +0.5668815 0.9861357 1 +0.5947903 0.9861357 1 +0.6211144 0.9861357 1 +0.6460766 0.9861357 1 +0.6698526 0.9861357 1 +0.6925839 0.9861357 1 +0.7143866 0.9861357 1 +0.7353569 0.9861357 1 +0.7555758 0.9861357 1 +0.7751122 0.9861357 1 +0.7940252 0.9861357 1 +0.8123661 0.9861357 1 +0.8301795 0.9861357 1 +0.8475045 0.9861357 1 +0.8643761 0.9861357 1 +0.880825 0.9861357 1 +0.8968787 0.9861357 1 +0.9125621 0.9861357 1 +0.9278974 0.9861357 1 +0.9429048 0.9861357 1 +0.9576028 0.9861357 1 +0.9720079 0.9861357 1 +0.9861357 0.9861357 1 +1 0.9861357 1 +0 1 1 +0.1939468 1 1 +0.2773041 1 1 +0.3384659 1 1 +0.3885728 1 1 +0.4317928 1 1 +0.470214 1 1 +0.5050551 1 1 +0.5370987 1 1 +0.5668815 1 1 +0.5947903 1 1 +0.6211144 1 1 +0.6460766 1 1 +0.6698526 1 1 +0.6925839 1 1 +0.7143866 1 1 +0.7353569 1 1 +0.7555758 1 1 +0.7751122 1 1 +0.7940252 1 1 +0.8123661 1 1 +0.8301795 1 1 +0.8475045 1 1 +0.8643761 1 1 +0.880825 1 1 +0.8968787 1 1 +0.9125621 1 1 +0.9278974 1 1 +0.9429048 1 1 +0.9576028 1 1 +0.9720079 1 1 +0.9861357 1 1 +1 1 1 diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Linear to sRGB r1.cube.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Linear to sRGB r1.cube.meta new file mode 100644 index 0000000..b9b2d5a --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Linear to sRGB r1.cube.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb10e8cb1eab7904bb028a123f717ac7 +timeCreated: 1496826837 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Unity Log to Linear r1.cube b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Unity Log to Linear r1.cube new file mode 100644 index 0000000..e4cf57e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Unity Log to Linear r1.cube @@ -0,0 +1,35941 @@ +TITLE "Unity Log to Linear r1" +LUT_3D_SIZE 33 +DOMAIN_MIN 0 0 0 +DOMAIN_MAX 1 1 1 +-0.0175068 -0.0175068 -0.0175068 +-0.01161267 -0.0175068 -0.0175068 +-0.005718534 -0.0175068 -0.0175068 +0.0001755984 -0.0175068 -0.0175068 +0.006069731 -0.0175068 -0.0175068 +0.01197402 -0.0175068 -0.0175068 +0.01903886 -0.0175068 -0.0175068 +0.02852504 -0.0175068 -0.0175068 +0.04126244 -0.0175068 -0.0175068 +0.05836535 -0.0175068 -0.0175068 +0.08132997 -0.0175068 -0.0175068 +0.1121653 -0.0175068 -0.0175068 +0.1535689 -0.0175068 -0.0175068 +0.2091628 -0.0175068 -0.0175068 +0.2838106 -0.0175068 -0.0175068 +0.3840425 -0.0175068 -0.0175068 +0.518627 -0.0175068 -0.0175068 +0.6993381 -0.0175068 -0.0175068 +0.9419845 -0.0175068 -0.0175068 +1.267794 -0.0175068 -0.0175068 +1.705268 -0.0175068 -0.0175068 +2.292679 -0.0175068 -0.0175068 +3.081414 -0.0175068 -0.0175068 +4.140474 -0.0175068 -0.0175068 +5.562508 -0.0175068 -0.0175068 +7.471917 -0.0175068 -0.0175068 +10.03574 -0.0175068 -0.0175068 +13.47828 -0.0175068 -0.0175068 +18.10068 -0.0175068 -0.0175068 +24.30731 -0.0175068 -0.0175068 +32.64117 -0.0175068 -0.0175068 +43.83129 -0.0175068 -0.0175068 +58.85664 -0.0175068 -0.0175068 +-0.0175068 -0.01161267 -0.0175068 +-0.01161267 -0.01161267 -0.0175068 +-0.005718534 -0.01161267 -0.0175068 +0.0001755984 -0.01161267 -0.0175068 +0.006069731 -0.01161267 -0.0175068 +0.01197402 -0.01161267 -0.0175068 +0.01903886 -0.01161267 -0.0175068 +0.02852504 -0.01161267 -0.0175068 +0.04126244 -0.01161267 -0.0175068 +0.05836535 -0.01161267 -0.0175068 +0.08132997 -0.01161267 -0.0175068 +0.1121653 -0.01161267 -0.0175068 +0.1535689 -0.01161267 -0.0175068 +0.2091628 -0.01161267 -0.0175068 +0.2838106 -0.01161267 -0.0175068 +0.3840425 -0.01161267 -0.0175068 +0.518627 -0.01161267 -0.0175068 +0.6993381 -0.01161267 -0.0175068 +0.9419845 -0.01161267 -0.0175068 +1.267794 -0.01161267 -0.0175068 +1.705268 -0.01161267 -0.0175068 +2.292679 -0.01161267 -0.0175068 +3.081414 -0.01161267 -0.0175068 +4.140474 -0.01161267 -0.0175068 +5.562508 -0.01161267 -0.0175068 +7.471917 -0.01161267 -0.0175068 +10.03574 -0.01161267 -0.0175068 +13.47828 -0.01161267 -0.0175068 +18.10068 -0.01161267 -0.0175068 +24.30731 -0.01161267 -0.0175068 +32.64117 -0.01161267 -0.0175068 +43.83129 -0.01161267 -0.0175068 +58.85664 -0.01161267 -0.0175068 +-0.0175068 -0.005718534 -0.0175068 +-0.01161267 -0.005718534 -0.0175068 +-0.005718534 -0.005718534 -0.0175068 +0.0001755984 -0.005718534 -0.0175068 +0.006069731 -0.005718534 -0.0175068 +0.01197402 -0.005718534 -0.0175068 +0.01903886 -0.005718534 -0.0175068 +0.02852504 -0.005718534 -0.0175068 +0.04126244 -0.005718534 -0.0175068 +0.05836535 -0.005718534 -0.0175068 +0.08132997 -0.005718534 -0.0175068 +0.1121653 -0.005718534 -0.0175068 +0.1535689 -0.005718534 -0.0175068 +0.2091628 -0.005718534 -0.0175068 +0.2838106 -0.005718534 -0.0175068 +0.3840425 -0.005718534 -0.0175068 +0.518627 -0.005718534 -0.0175068 +0.6993381 -0.005718534 -0.0175068 +0.9419845 -0.005718534 -0.0175068 +1.267794 -0.005718534 -0.0175068 +1.705268 -0.005718534 -0.0175068 +2.292679 -0.005718534 -0.0175068 +3.081414 -0.005718534 -0.0175068 +4.140474 -0.005718534 -0.0175068 +5.562508 -0.005718534 -0.0175068 +7.471917 -0.005718534 -0.0175068 +10.03574 -0.005718534 -0.0175068 +13.47828 -0.005718534 -0.0175068 +18.10068 -0.005718534 -0.0175068 +24.30731 -0.005718534 -0.0175068 +32.64117 -0.005718534 -0.0175068 +43.83129 -0.005718534 -0.0175068 +58.85664 -0.005718534 -0.0175068 +-0.0175068 0.0001755984 -0.0175068 +-0.01161267 0.0001755984 -0.0175068 +-0.005718534 0.0001755984 -0.0175068 +0.0001755984 0.0001755984 -0.0175068 +0.006069731 0.0001755984 -0.0175068 +0.01197402 0.0001755984 -0.0175068 +0.01903886 0.0001755984 -0.0175068 +0.02852504 0.0001755984 -0.0175068 +0.04126244 0.0001755984 -0.0175068 +0.05836535 0.0001755984 -0.0175068 +0.08132997 0.0001755984 -0.0175068 +0.1121653 0.0001755984 -0.0175068 +0.1535689 0.0001755984 -0.0175068 +0.2091628 0.0001755984 -0.0175068 +0.2838106 0.0001755984 -0.0175068 +0.3840425 0.0001755984 -0.0175068 +0.518627 0.0001755984 -0.0175068 +0.6993381 0.0001755984 -0.0175068 +0.9419845 0.0001755984 -0.0175068 +1.267794 0.0001755984 -0.0175068 +1.705268 0.0001755984 -0.0175068 +2.292679 0.0001755984 -0.0175068 +3.081414 0.0001755984 -0.0175068 +4.140474 0.0001755984 -0.0175068 +5.562508 0.0001755984 -0.0175068 +7.471917 0.0001755984 -0.0175068 +10.03574 0.0001755984 -0.0175068 +13.47828 0.0001755984 -0.0175068 +18.10068 0.0001755984 -0.0175068 +24.30731 0.0001755984 -0.0175068 +32.64117 0.0001755984 -0.0175068 +43.83129 0.0001755984 -0.0175068 +58.85664 0.0001755984 -0.0175068 +-0.0175068 0.006069731 -0.0175068 +-0.01161267 0.006069731 -0.0175068 +-0.005718534 0.006069731 -0.0175068 +0.0001755984 0.006069731 -0.0175068 +0.006069731 0.006069731 -0.0175068 +0.01197402 0.006069731 -0.0175068 +0.01903886 0.006069731 -0.0175068 +0.02852504 0.006069731 -0.0175068 +0.04126244 0.006069731 -0.0175068 +0.05836535 0.006069731 -0.0175068 +0.08132997 0.006069731 -0.0175068 +0.1121653 0.006069731 -0.0175068 +0.1535689 0.006069731 -0.0175068 +0.2091628 0.006069731 -0.0175068 +0.2838106 0.006069731 -0.0175068 +0.3840425 0.006069731 -0.0175068 +0.518627 0.006069731 -0.0175068 +0.6993381 0.006069731 -0.0175068 +0.9419845 0.006069731 -0.0175068 +1.267794 0.006069731 -0.0175068 +1.705268 0.006069731 -0.0175068 +2.292679 0.006069731 -0.0175068 +3.081414 0.006069731 -0.0175068 +4.140474 0.006069731 -0.0175068 +5.562508 0.006069731 -0.0175068 +7.471917 0.006069731 -0.0175068 +10.03574 0.006069731 -0.0175068 +13.47828 0.006069731 -0.0175068 +18.10068 0.006069731 -0.0175068 +24.30731 0.006069731 -0.0175068 +32.64117 0.006069731 -0.0175068 +43.83129 0.006069731 -0.0175068 +58.85664 0.006069731 -0.0175068 +-0.0175068 0.01197402 -0.0175068 +-0.01161267 0.01197402 -0.0175068 +-0.005718534 0.01197402 -0.0175068 +0.0001755984 0.01197402 -0.0175068 +0.006069731 0.01197402 -0.0175068 +0.01197402 0.01197402 -0.0175068 +0.01903886 0.01197402 -0.0175068 +0.02852504 0.01197402 -0.0175068 +0.04126244 0.01197402 -0.0175068 +0.05836535 0.01197402 -0.0175068 +0.08132997 0.01197402 -0.0175068 +0.1121653 0.01197402 -0.0175068 +0.1535689 0.01197402 -0.0175068 +0.2091628 0.01197402 -0.0175068 +0.2838106 0.01197402 -0.0175068 +0.3840425 0.01197402 -0.0175068 +0.518627 0.01197402 -0.0175068 +0.6993381 0.01197402 -0.0175068 +0.9419845 0.01197402 -0.0175068 +1.267794 0.01197402 -0.0175068 +1.705268 0.01197402 -0.0175068 +2.292679 0.01197402 -0.0175068 +3.081414 0.01197402 -0.0175068 +4.140474 0.01197402 -0.0175068 +5.562508 0.01197402 -0.0175068 +7.471917 0.01197402 -0.0175068 +10.03574 0.01197402 -0.0175068 +13.47828 0.01197402 -0.0175068 +18.10068 0.01197402 -0.0175068 +24.30731 0.01197402 -0.0175068 +32.64117 0.01197402 -0.0175068 +43.83129 0.01197402 -0.0175068 +58.85664 0.01197402 -0.0175068 +-0.0175068 0.01903886 -0.0175068 +-0.01161267 0.01903886 -0.0175068 +-0.005718534 0.01903886 -0.0175068 +0.0001755984 0.01903886 -0.0175068 +0.006069731 0.01903886 -0.0175068 +0.01197402 0.01903886 -0.0175068 +0.01903886 0.01903886 -0.0175068 +0.02852504 0.01903886 -0.0175068 +0.04126244 0.01903886 -0.0175068 +0.05836535 0.01903886 -0.0175068 +0.08132997 0.01903886 -0.0175068 +0.1121653 0.01903886 -0.0175068 +0.1535689 0.01903886 -0.0175068 +0.2091628 0.01903886 -0.0175068 +0.2838106 0.01903886 -0.0175068 +0.3840425 0.01903886 -0.0175068 +0.518627 0.01903886 -0.0175068 +0.6993381 0.01903886 -0.0175068 +0.9419845 0.01903886 -0.0175068 +1.267794 0.01903886 -0.0175068 +1.705268 0.01903886 -0.0175068 +2.292679 0.01903886 -0.0175068 +3.081414 0.01903886 -0.0175068 +4.140474 0.01903886 -0.0175068 +5.562508 0.01903886 -0.0175068 +7.471917 0.01903886 -0.0175068 +10.03574 0.01903886 -0.0175068 +13.47828 0.01903886 -0.0175068 +18.10068 0.01903886 -0.0175068 +24.30731 0.01903886 -0.0175068 +32.64117 0.01903886 -0.0175068 +43.83129 0.01903886 -0.0175068 +58.85664 0.01903886 -0.0175068 +-0.0175068 0.02852504 -0.0175068 +-0.01161267 0.02852504 -0.0175068 +-0.005718534 0.02852504 -0.0175068 +0.0001755984 0.02852504 -0.0175068 +0.006069731 0.02852504 -0.0175068 +0.01197402 0.02852504 -0.0175068 +0.01903886 0.02852504 -0.0175068 +0.02852504 0.02852504 -0.0175068 +0.04126244 0.02852504 -0.0175068 +0.05836535 0.02852504 -0.0175068 +0.08132997 0.02852504 -0.0175068 +0.1121653 0.02852504 -0.0175068 +0.1535689 0.02852504 -0.0175068 +0.2091628 0.02852504 -0.0175068 +0.2838106 0.02852504 -0.0175068 +0.3840425 0.02852504 -0.0175068 +0.518627 0.02852504 -0.0175068 +0.6993381 0.02852504 -0.0175068 +0.9419845 0.02852504 -0.0175068 +1.267794 0.02852504 -0.0175068 +1.705268 0.02852504 -0.0175068 +2.292679 0.02852504 -0.0175068 +3.081414 0.02852504 -0.0175068 +4.140474 0.02852504 -0.0175068 +5.562508 0.02852504 -0.0175068 +7.471917 0.02852504 -0.0175068 +10.03574 0.02852504 -0.0175068 +13.47828 0.02852504 -0.0175068 +18.10068 0.02852504 -0.0175068 +24.30731 0.02852504 -0.0175068 +32.64117 0.02852504 -0.0175068 +43.83129 0.02852504 -0.0175068 +58.85664 0.02852504 -0.0175068 +-0.0175068 0.04126244 -0.0175068 +-0.01161267 0.04126244 -0.0175068 +-0.005718534 0.04126244 -0.0175068 +0.0001755984 0.04126244 -0.0175068 +0.006069731 0.04126244 -0.0175068 +0.01197402 0.04126244 -0.0175068 +0.01903886 0.04126244 -0.0175068 +0.02852504 0.04126244 -0.0175068 +0.04126244 0.04126244 -0.0175068 +0.05836535 0.04126244 -0.0175068 +0.08132997 0.04126244 -0.0175068 +0.1121653 0.04126244 -0.0175068 +0.1535689 0.04126244 -0.0175068 +0.2091628 0.04126244 -0.0175068 +0.2838106 0.04126244 -0.0175068 +0.3840425 0.04126244 -0.0175068 +0.518627 0.04126244 -0.0175068 +0.6993381 0.04126244 -0.0175068 +0.9419845 0.04126244 -0.0175068 +1.267794 0.04126244 -0.0175068 +1.705268 0.04126244 -0.0175068 +2.292679 0.04126244 -0.0175068 +3.081414 0.04126244 -0.0175068 +4.140474 0.04126244 -0.0175068 +5.562508 0.04126244 -0.0175068 +7.471917 0.04126244 -0.0175068 +10.03574 0.04126244 -0.0175068 +13.47828 0.04126244 -0.0175068 +18.10068 0.04126244 -0.0175068 +24.30731 0.04126244 -0.0175068 +32.64117 0.04126244 -0.0175068 +43.83129 0.04126244 -0.0175068 +58.85664 0.04126244 -0.0175068 +-0.0175068 0.05836535 -0.0175068 +-0.01161267 0.05836535 -0.0175068 +-0.005718534 0.05836535 -0.0175068 +0.0001755984 0.05836535 -0.0175068 +0.006069731 0.05836535 -0.0175068 +0.01197402 0.05836535 -0.0175068 +0.01903886 0.05836535 -0.0175068 +0.02852504 0.05836535 -0.0175068 +0.04126244 0.05836535 -0.0175068 +0.05836535 0.05836535 -0.0175068 +0.08132997 0.05836535 -0.0175068 +0.1121653 0.05836535 -0.0175068 +0.1535689 0.05836535 -0.0175068 +0.2091628 0.05836535 -0.0175068 +0.2838106 0.05836535 -0.0175068 +0.3840425 0.05836535 -0.0175068 +0.518627 0.05836535 -0.0175068 +0.6993381 0.05836535 -0.0175068 +0.9419845 0.05836535 -0.0175068 +1.267794 0.05836535 -0.0175068 +1.705268 0.05836535 -0.0175068 +2.292679 0.05836535 -0.0175068 +3.081414 0.05836535 -0.0175068 +4.140474 0.05836535 -0.0175068 +5.562508 0.05836535 -0.0175068 +7.471917 0.05836535 -0.0175068 +10.03574 0.05836535 -0.0175068 +13.47828 0.05836535 -0.0175068 +18.10068 0.05836535 -0.0175068 +24.30731 0.05836535 -0.0175068 +32.64117 0.05836535 -0.0175068 +43.83129 0.05836535 -0.0175068 +58.85664 0.05836535 -0.0175068 +-0.0175068 0.08132997 -0.0175068 +-0.01161267 0.08132997 -0.0175068 +-0.005718534 0.08132997 -0.0175068 +0.0001755984 0.08132997 -0.0175068 +0.006069731 0.08132997 -0.0175068 +0.01197402 0.08132997 -0.0175068 +0.01903886 0.08132997 -0.0175068 +0.02852504 0.08132997 -0.0175068 +0.04126244 0.08132997 -0.0175068 +0.05836535 0.08132997 -0.0175068 +0.08132997 0.08132997 -0.0175068 +0.1121653 0.08132997 -0.0175068 +0.1535689 0.08132997 -0.0175068 +0.2091628 0.08132997 -0.0175068 +0.2838106 0.08132997 -0.0175068 +0.3840425 0.08132997 -0.0175068 +0.518627 0.08132997 -0.0175068 +0.6993381 0.08132997 -0.0175068 +0.9419845 0.08132997 -0.0175068 +1.267794 0.08132997 -0.0175068 +1.705268 0.08132997 -0.0175068 +2.292679 0.08132997 -0.0175068 +3.081414 0.08132997 -0.0175068 +4.140474 0.08132997 -0.0175068 +5.562508 0.08132997 -0.0175068 +7.471917 0.08132997 -0.0175068 +10.03574 0.08132997 -0.0175068 +13.47828 0.08132997 -0.0175068 +18.10068 0.08132997 -0.0175068 +24.30731 0.08132997 -0.0175068 +32.64117 0.08132997 -0.0175068 +43.83129 0.08132997 -0.0175068 +58.85664 0.08132997 -0.0175068 +-0.0175068 0.1121653 -0.0175068 +-0.01161267 0.1121653 -0.0175068 +-0.005718534 0.1121653 -0.0175068 +0.0001755984 0.1121653 -0.0175068 +0.006069731 0.1121653 -0.0175068 +0.01197402 0.1121653 -0.0175068 +0.01903886 0.1121653 -0.0175068 +0.02852504 0.1121653 -0.0175068 +0.04126244 0.1121653 -0.0175068 +0.05836535 0.1121653 -0.0175068 +0.08132997 0.1121653 -0.0175068 +0.1121653 0.1121653 -0.0175068 +0.1535689 0.1121653 -0.0175068 +0.2091628 0.1121653 -0.0175068 +0.2838106 0.1121653 -0.0175068 +0.3840425 0.1121653 -0.0175068 +0.518627 0.1121653 -0.0175068 +0.6993381 0.1121653 -0.0175068 +0.9419845 0.1121653 -0.0175068 +1.267794 0.1121653 -0.0175068 +1.705268 0.1121653 -0.0175068 +2.292679 0.1121653 -0.0175068 +3.081414 0.1121653 -0.0175068 +4.140474 0.1121653 -0.0175068 +5.562508 0.1121653 -0.0175068 +7.471917 0.1121653 -0.0175068 +10.03574 0.1121653 -0.0175068 +13.47828 0.1121653 -0.0175068 +18.10068 0.1121653 -0.0175068 +24.30731 0.1121653 -0.0175068 +32.64117 0.1121653 -0.0175068 +43.83129 0.1121653 -0.0175068 +58.85664 0.1121653 -0.0175068 +-0.0175068 0.1535689 -0.0175068 +-0.01161267 0.1535689 -0.0175068 +-0.005718534 0.1535689 -0.0175068 +0.0001755984 0.1535689 -0.0175068 +0.006069731 0.1535689 -0.0175068 +0.01197402 0.1535689 -0.0175068 +0.01903886 0.1535689 -0.0175068 +0.02852504 0.1535689 -0.0175068 +0.04126244 0.1535689 -0.0175068 +0.05836535 0.1535689 -0.0175068 +0.08132997 0.1535689 -0.0175068 +0.1121653 0.1535689 -0.0175068 +0.1535689 0.1535689 -0.0175068 +0.2091628 0.1535689 -0.0175068 +0.2838106 0.1535689 -0.0175068 +0.3840425 0.1535689 -0.0175068 +0.518627 0.1535689 -0.0175068 +0.6993381 0.1535689 -0.0175068 +0.9419845 0.1535689 -0.0175068 +1.267794 0.1535689 -0.0175068 +1.705268 0.1535689 -0.0175068 +2.292679 0.1535689 -0.0175068 +3.081414 0.1535689 -0.0175068 +4.140474 0.1535689 -0.0175068 +5.562508 0.1535689 -0.0175068 +7.471917 0.1535689 -0.0175068 +10.03574 0.1535689 -0.0175068 +13.47828 0.1535689 -0.0175068 +18.10068 0.1535689 -0.0175068 +24.30731 0.1535689 -0.0175068 +32.64117 0.1535689 -0.0175068 +43.83129 0.1535689 -0.0175068 +58.85664 0.1535689 -0.0175068 +-0.0175068 0.2091628 -0.0175068 +-0.01161267 0.2091628 -0.0175068 +-0.005718534 0.2091628 -0.0175068 +0.0001755984 0.2091628 -0.0175068 +0.006069731 0.2091628 -0.0175068 +0.01197402 0.2091628 -0.0175068 +0.01903886 0.2091628 -0.0175068 +0.02852504 0.2091628 -0.0175068 +0.04126244 0.2091628 -0.0175068 +0.05836535 0.2091628 -0.0175068 +0.08132997 0.2091628 -0.0175068 +0.1121653 0.2091628 -0.0175068 +0.1535689 0.2091628 -0.0175068 +0.2091628 0.2091628 -0.0175068 +0.2838106 0.2091628 -0.0175068 +0.3840425 0.2091628 -0.0175068 +0.518627 0.2091628 -0.0175068 +0.6993381 0.2091628 -0.0175068 +0.9419845 0.2091628 -0.0175068 +1.267794 0.2091628 -0.0175068 +1.705268 0.2091628 -0.0175068 +2.292679 0.2091628 -0.0175068 +3.081414 0.2091628 -0.0175068 +4.140474 0.2091628 -0.0175068 +5.562508 0.2091628 -0.0175068 +7.471917 0.2091628 -0.0175068 +10.03574 0.2091628 -0.0175068 +13.47828 0.2091628 -0.0175068 +18.10068 0.2091628 -0.0175068 +24.30731 0.2091628 -0.0175068 +32.64117 0.2091628 -0.0175068 +43.83129 0.2091628 -0.0175068 +58.85664 0.2091628 -0.0175068 +-0.0175068 0.2838106 -0.0175068 +-0.01161267 0.2838106 -0.0175068 +-0.005718534 0.2838106 -0.0175068 +0.0001755984 0.2838106 -0.0175068 +0.006069731 0.2838106 -0.0175068 +0.01197402 0.2838106 -0.0175068 +0.01903886 0.2838106 -0.0175068 +0.02852504 0.2838106 -0.0175068 +0.04126244 0.2838106 -0.0175068 +0.05836535 0.2838106 -0.0175068 +0.08132997 0.2838106 -0.0175068 +0.1121653 0.2838106 -0.0175068 +0.1535689 0.2838106 -0.0175068 +0.2091628 0.2838106 -0.0175068 +0.2838106 0.2838106 -0.0175068 +0.3840425 0.2838106 -0.0175068 +0.518627 0.2838106 -0.0175068 +0.6993381 0.2838106 -0.0175068 +0.9419845 0.2838106 -0.0175068 +1.267794 0.2838106 -0.0175068 +1.705268 0.2838106 -0.0175068 +2.292679 0.2838106 -0.0175068 +3.081414 0.2838106 -0.0175068 +4.140474 0.2838106 -0.0175068 +5.562508 0.2838106 -0.0175068 +7.471917 0.2838106 -0.0175068 +10.03574 0.2838106 -0.0175068 +13.47828 0.2838106 -0.0175068 +18.10068 0.2838106 -0.0175068 +24.30731 0.2838106 -0.0175068 +32.64117 0.2838106 -0.0175068 +43.83129 0.2838106 -0.0175068 +58.85664 0.2838106 -0.0175068 +-0.0175068 0.3840425 -0.0175068 +-0.01161267 0.3840425 -0.0175068 +-0.005718534 0.3840425 -0.0175068 +0.0001755984 0.3840425 -0.0175068 +0.006069731 0.3840425 -0.0175068 +0.01197402 0.3840425 -0.0175068 +0.01903886 0.3840425 -0.0175068 +0.02852504 0.3840425 -0.0175068 +0.04126244 0.3840425 -0.0175068 +0.05836535 0.3840425 -0.0175068 +0.08132997 0.3840425 -0.0175068 +0.1121653 0.3840425 -0.0175068 +0.1535689 0.3840425 -0.0175068 +0.2091628 0.3840425 -0.0175068 +0.2838106 0.3840425 -0.0175068 +0.3840425 0.3840425 -0.0175068 +0.518627 0.3840425 -0.0175068 +0.6993381 0.3840425 -0.0175068 +0.9419845 0.3840425 -0.0175068 +1.267794 0.3840425 -0.0175068 +1.705268 0.3840425 -0.0175068 +2.292679 0.3840425 -0.0175068 +3.081414 0.3840425 -0.0175068 +4.140474 0.3840425 -0.0175068 +5.562508 0.3840425 -0.0175068 +7.471917 0.3840425 -0.0175068 +10.03574 0.3840425 -0.0175068 +13.47828 0.3840425 -0.0175068 +18.10068 0.3840425 -0.0175068 +24.30731 0.3840425 -0.0175068 +32.64117 0.3840425 -0.0175068 +43.83129 0.3840425 -0.0175068 +58.85664 0.3840425 -0.0175068 +-0.0175068 0.518627 -0.0175068 +-0.01161267 0.518627 -0.0175068 +-0.005718534 0.518627 -0.0175068 +0.0001755984 0.518627 -0.0175068 +0.006069731 0.518627 -0.0175068 +0.01197402 0.518627 -0.0175068 +0.01903886 0.518627 -0.0175068 +0.02852504 0.518627 -0.0175068 +0.04126244 0.518627 -0.0175068 +0.05836535 0.518627 -0.0175068 +0.08132997 0.518627 -0.0175068 +0.1121653 0.518627 -0.0175068 +0.1535689 0.518627 -0.0175068 +0.2091628 0.518627 -0.0175068 +0.2838106 0.518627 -0.0175068 +0.3840425 0.518627 -0.0175068 +0.518627 0.518627 -0.0175068 +0.6993381 0.518627 -0.0175068 +0.9419845 0.518627 -0.0175068 +1.267794 0.518627 -0.0175068 +1.705268 0.518627 -0.0175068 +2.292679 0.518627 -0.0175068 +3.081414 0.518627 -0.0175068 +4.140474 0.518627 -0.0175068 +5.562508 0.518627 -0.0175068 +7.471917 0.518627 -0.0175068 +10.03574 0.518627 -0.0175068 +13.47828 0.518627 -0.0175068 +18.10068 0.518627 -0.0175068 +24.30731 0.518627 -0.0175068 +32.64117 0.518627 -0.0175068 +43.83129 0.518627 -0.0175068 +58.85664 0.518627 -0.0175068 +-0.0175068 0.6993381 -0.0175068 +-0.01161267 0.6993381 -0.0175068 +-0.005718534 0.6993381 -0.0175068 +0.0001755984 0.6993381 -0.0175068 +0.006069731 0.6993381 -0.0175068 +0.01197402 0.6993381 -0.0175068 +0.01903886 0.6993381 -0.0175068 +0.02852504 0.6993381 -0.0175068 +0.04126244 0.6993381 -0.0175068 +0.05836535 0.6993381 -0.0175068 +0.08132997 0.6993381 -0.0175068 +0.1121653 0.6993381 -0.0175068 +0.1535689 0.6993381 -0.0175068 +0.2091628 0.6993381 -0.0175068 +0.2838106 0.6993381 -0.0175068 +0.3840425 0.6993381 -0.0175068 +0.518627 0.6993381 -0.0175068 +0.6993381 0.6993381 -0.0175068 +0.9419845 0.6993381 -0.0175068 +1.267794 0.6993381 -0.0175068 +1.705268 0.6993381 -0.0175068 +2.292679 0.6993381 -0.0175068 +3.081414 0.6993381 -0.0175068 +4.140474 0.6993381 -0.0175068 +5.562508 0.6993381 -0.0175068 +7.471917 0.6993381 -0.0175068 +10.03574 0.6993381 -0.0175068 +13.47828 0.6993381 -0.0175068 +18.10068 0.6993381 -0.0175068 +24.30731 0.6993381 -0.0175068 +32.64117 0.6993381 -0.0175068 +43.83129 0.6993381 -0.0175068 +58.85664 0.6993381 -0.0175068 +-0.0175068 0.9419845 -0.0175068 +-0.01161267 0.9419845 -0.0175068 +-0.005718534 0.9419845 -0.0175068 +0.0001755984 0.9419845 -0.0175068 +0.006069731 0.9419845 -0.0175068 +0.01197402 0.9419845 -0.0175068 +0.01903886 0.9419845 -0.0175068 +0.02852504 0.9419845 -0.0175068 +0.04126244 0.9419845 -0.0175068 +0.05836535 0.9419845 -0.0175068 +0.08132997 0.9419845 -0.0175068 +0.1121653 0.9419845 -0.0175068 +0.1535689 0.9419845 -0.0175068 +0.2091628 0.9419845 -0.0175068 +0.2838106 0.9419845 -0.0175068 +0.3840425 0.9419845 -0.0175068 +0.518627 0.9419845 -0.0175068 +0.6993381 0.9419845 -0.0175068 +0.9419845 0.9419845 -0.0175068 +1.267794 0.9419845 -0.0175068 +1.705268 0.9419845 -0.0175068 +2.292679 0.9419845 -0.0175068 +3.081414 0.9419845 -0.0175068 +4.140474 0.9419845 -0.0175068 +5.562508 0.9419845 -0.0175068 +7.471917 0.9419845 -0.0175068 +10.03574 0.9419845 -0.0175068 +13.47828 0.9419845 -0.0175068 +18.10068 0.9419845 -0.0175068 +24.30731 0.9419845 -0.0175068 +32.64117 0.9419845 -0.0175068 +43.83129 0.9419845 -0.0175068 +58.85664 0.9419845 -0.0175068 +-0.0175068 1.267794 -0.0175068 +-0.01161267 1.267794 -0.0175068 +-0.005718534 1.267794 -0.0175068 +0.0001755984 1.267794 -0.0175068 +0.006069731 1.267794 -0.0175068 +0.01197402 1.267794 -0.0175068 +0.01903886 1.267794 -0.0175068 +0.02852504 1.267794 -0.0175068 +0.04126244 1.267794 -0.0175068 +0.05836535 1.267794 -0.0175068 +0.08132997 1.267794 -0.0175068 +0.1121653 1.267794 -0.0175068 +0.1535689 1.267794 -0.0175068 +0.2091628 1.267794 -0.0175068 +0.2838106 1.267794 -0.0175068 +0.3840425 1.267794 -0.0175068 +0.518627 1.267794 -0.0175068 +0.6993381 1.267794 -0.0175068 +0.9419845 1.267794 -0.0175068 +1.267794 1.267794 -0.0175068 +1.705268 1.267794 -0.0175068 +2.292679 1.267794 -0.0175068 +3.081414 1.267794 -0.0175068 +4.140474 1.267794 -0.0175068 +5.562508 1.267794 -0.0175068 +7.471917 1.267794 -0.0175068 +10.03574 1.267794 -0.0175068 +13.47828 1.267794 -0.0175068 +18.10068 1.267794 -0.0175068 +24.30731 1.267794 -0.0175068 +32.64117 1.267794 -0.0175068 +43.83129 1.267794 -0.0175068 +58.85664 1.267794 -0.0175068 +-0.0175068 1.705268 -0.0175068 +-0.01161267 1.705268 -0.0175068 +-0.005718534 1.705268 -0.0175068 +0.0001755984 1.705268 -0.0175068 +0.006069731 1.705268 -0.0175068 +0.01197402 1.705268 -0.0175068 +0.01903886 1.705268 -0.0175068 +0.02852504 1.705268 -0.0175068 +0.04126244 1.705268 -0.0175068 +0.05836535 1.705268 -0.0175068 +0.08132997 1.705268 -0.0175068 +0.1121653 1.705268 -0.0175068 +0.1535689 1.705268 -0.0175068 +0.2091628 1.705268 -0.0175068 +0.2838106 1.705268 -0.0175068 +0.3840425 1.705268 -0.0175068 +0.518627 1.705268 -0.0175068 +0.6993381 1.705268 -0.0175068 +0.9419845 1.705268 -0.0175068 +1.267794 1.705268 -0.0175068 +1.705268 1.705268 -0.0175068 +2.292679 1.705268 -0.0175068 +3.081414 1.705268 -0.0175068 +4.140474 1.705268 -0.0175068 +5.562508 1.705268 -0.0175068 +7.471917 1.705268 -0.0175068 +10.03574 1.705268 -0.0175068 +13.47828 1.705268 -0.0175068 +18.10068 1.705268 -0.0175068 +24.30731 1.705268 -0.0175068 +32.64117 1.705268 -0.0175068 +43.83129 1.705268 -0.0175068 +58.85664 1.705268 -0.0175068 +-0.0175068 2.292679 -0.0175068 +-0.01161267 2.292679 -0.0175068 +-0.005718534 2.292679 -0.0175068 +0.0001755984 2.292679 -0.0175068 +0.006069731 2.292679 -0.0175068 +0.01197402 2.292679 -0.0175068 +0.01903886 2.292679 -0.0175068 +0.02852504 2.292679 -0.0175068 +0.04126244 2.292679 -0.0175068 +0.05836535 2.292679 -0.0175068 +0.08132997 2.292679 -0.0175068 +0.1121653 2.292679 -0.0175068 +0.1535689 2.292679 -0.0175068 +0.2091628 2.292679 -0.0175068 +0.2838106 2.292679 -0.0175068 +0.3840425 2.292679 -0.0175068 +0.518627 2.292679 -0.0175068 +0.6993381 2.292679 -0.0175068 +0.9419845 2.292679 -0.0175068 +1.267794 2.292679 -0.0175068 +1.705268 2.292679 -0.0175068 +2.292679 2.292679 -0.0175068 +3.081414 2.292679 -0.0175068 +4.140474 2.292679 -0.0175068 +5.562508 2.292679 -0.0175068 +7.471917 2.292679 -0.0175068 +10.03574 2.292679 -0.0175068 +13.47828 2.292679 -0.0175068 +18.10068 2.292679 -0.0175068 +24.30731 2.292679 -0.0175068 +32.64117 2.292679 -0.0175068 +43.83129 2.292679 -0.0175068 +58.85664 2.292679 -0.0175068 +-0.0175068 3.081414 -0.0175068 +-0.01161267 3.081414 -0.0175068 +-0.005718534 3.081414 -0.0175068 +0.0001755984 3.081414 -0.0175068 +0.006069731 3.081414 -0.0175068 +0.01197402 3.081414 -0.0175068 +0.01903886 3.081414 -0.0175068 +0.02852504 3.081414 -0.0175068 +0.04126244 3.081414 -0.0175068 +0.05836535 3.081414 -0.0175068 +0.08132997 3.081414 -0.0175068 +0.1121653 3.081414 -0.0175068 +0.1535689 3.081414 -0.0175068 +0.2091628 3.081414 -0.0175068 +0.2838106 3.081414 -0.0175068 +0.3840425 3.081414 -0.0175068 +0.518627 3.081414 -0.0175068 +0.6993381 3.081414 -0.0175068 +0.9419845 3.081414 -0.0175068 +1.267794 3.081414 -0.0175068 +1.705268 3.081414 -0.0175068 +2.292679 3.081414 -0.0175068 +3.081414 3.081414 -0.0175068 +4.140474 3.081414 -0.0175068 +5.562508 3.081414 -0.0175068 +7.471917 3.081414 -0.0175068 +10.03574 3.081414 -0.0175068 +13.47828 3.081414 -0.0175068 +18.10068 3.081414 -0.0175068 +24.30731 3.081414 -0.0175068 +32.64117 3.081414 -0.0175068 +43.83129 3.081414 -0.0175068 +58.85664 3.081414 -0.0175068 +-0.0175068 4.140474 -0.0175068 +-0.01161267 4.140474 -0.0175068 +-0.005718534 4.140474 -0.0175068 +0.0001755984 4.140474 -0.0175068 +0.006069731 4.140474 -0.0175068 +0.01197402 4.140474 -0.0175068 +0.01903886 4.140474 -0.0175068 +0.02852504 4.140474 -0.0175068 +0.04126244 4.140474 -0.0175068 +0.05836535 4.140474 -0.0175068 +0.08132997 4.140474 -0.0175068 +0.1121653 4.140474 -0.0175068 +0.1535689 4.140474 -0.0175068 +0.2091628 4.140474 -0.0175068 +0.2838106 4.140474 -0.0175068 +0.3840425 4.140474 -0.0175068 +0.518627 4.140474 -0.0175068 +0.6993381 4.140474 -0.0175068 +0.9419845 4.140474 -0.0175068 +1.267794 4.140474 -0.0175068 +1.705268 4.140474 -0.0175068 +2.292679 4.140474 -0.0175068 +3.081414 4.140474 -0.0175068 +4.140474 4.140474 -0.0175068 +5.562508 4.140474 -0.0175068 +7.471917 4.140474 -0.0175068 +10.03574 4.140474 -0.0175068 +13.47828 4.140474 -0.0175068 +18.10068 4.140474 -0.0175068 +24.30731 4.140474 -0.0175068 +32.64117 4.140474 -0.0175068 +43.83129 4.140474 -0.0175068 +58.85664 4.140474 -0.0175068 +-0.0175068 5.562508 -0.0175068 +-0.01161267 5.562508 -0.0175068 +-0.005718534 5.562508 -0.0175068 +0.0001755984 5.562508 -0.0175068 +0.006069731 5.562508 -0.0175068 +0.01197402 5.562508 -0.0175068 +0.01903886 5.562508 -0.0175068 +0.02852504 5.562508 -0.0175068 +0.04126244 5.562508 -0.0175068 +0.05836535 5.562508 -0.0175068 +0.08132997 5.562508 -0.0175068 +0.1121653 5.562508 -0.0175068 +0.1535689 5.562508 -0.0175068 +0.2091628 5.562508 -0.0175068 +0.2838106 5.562508 -0.0175068 +0.3840425 5.562508 -0.0175068 +0.518627 5.562508 -0.0175068 +0.6993381 5.562508 -0.0175068 +0.9419845 5.562508 -0.0175068 +1.267794 5.562508 -0.0175068 +1.705268 5.562508 -0.0175068 +2.292679 5.562508 -0.0175068 +3.081414 5.562508 -0.0175068 +4.140474 5.562508 -0.0175068 +5.562508 5.562508 -0.0175068 +7.471917 5.562508 -0.0175068 +10.03574 5.562508 -0.0175068 +13.47828 5.562508 -0.0175068 +18.10068 5.562508 -0.0175068 +24.30731 5.562508 -0.0175068 +32.64117 5.562508 -0.0175068 +43.83129 5.562508 -0.0175068 +58.85664 5.562508 -0.0175068 +-0.0175068 7.471917 -0.0175068 +-0.01161267 7.471917 -0.0175068 +-0.005718534 7.471917 -0.0175068 +0.0001755984 7.471917 -0.0175068 +0.006069731 7.471917 -0.0175068 +0.01197402 7.471917 -0.0175068 +0.01903886 7.471917 -0.0175068 +0.02852504 7.471917 -0.0175068 +0.04126244 7.471917 -0.0175068 +0.05836535 7.471917 -0.0175068 +0.08132997 7.471917 -0.0175068 +0.1121653 7.471917 -0.0175068 +0.1535689 7.471917 -0.0175068 +0.2091628 7.471917 -0.0175068 +0.2838106 7.471917 -0.0175068 +0.3840425 7.471917 -0.0175068 +0.518627 7.471917 -0.0175068 +0.6993381 7.471917 -0.0175068 +0.9419845 7.471917 -0.0175068 +1.267794 7.471917 -0.0175068 +1.705268 7.471917 -0.0175068 +2.292679 7.471917 -0.0175068 +3.081414 7.471917 -0.0175068 +4.140474 7.471917 -0.0175068 +5.562508 7.471917 -0.0175068 +7.471917 7.471917 -0.0175068 +10.03574 7.471917 -0.0175068 +13.47828 7.471917 -0.0175068 +18.10068 7.471917 -0.0175068 +24.30731 7.471917 -0.0175068 +32.64117 7.471917 -0.0175068 +43.83129 7.471917 -0.0175068 +58.85664 7.471917 -0.0175068 +-0.0175068 10.03574 -0.0175068 +-0.01161267 10.03574 -0.0175068 +-0.005718534 10.03574 -0.0175068 +0.0001755984 10.03574 -0.0175068 +0.006069731 10.03574 -0.0175068 +0.01197402 10.03574 -0.0175068 +0.01903886 10.03574 -0.0175068 +0.02852504 10.03574 -0.0175068 +0.04126244 10.03574 -0.0175068 +0.05836535 10.03574 -0.0175068 +0.08132997 10.03574 -0.0175068 +0.1121653 10.03574 -0.0175068 +0.1535689 10.03574 -0.0175068 +0.2091628 10.03574 -0.0175068 +0.2838106 10.03574 -0.0175068 +0.3840425 10.03574 -0.0175068 +0.518627 10.03574 -0.0175068 +0.6993381 10.03574 -0.0175068 +0.9419845 10.03574 -0.0175068 +1.267794 10.03574 -0.0175068 +1.705268 10.03574 -0.0175068 +2.292679 10.03574 -0.0175068 +3.081414 10.03574 -0.0175068 +4.140474 10.03574 -0.0175068 +5.562508 10.03574 -0.0175068 +7.471917 10.03574 -0.0175068 +10.03574 10.03574 -0.0175068 +13.47828 10.03574 -0.0175068 +18.10068 10.03574 -0.0175068 +24.30731 10.03574 -0.0175068 +32.64117 10.03574 -0.0175068 +43.83129 10.03574 -0.0175068 +58.85664 10.03574 -0.0175068 +-0.0175068 13.47828 -0.0175068 +-0.01161267 13.47828 -0.0175068 +-0.005718534 13.47828 -0.0175068 +0.0001755984 13.47828 -0.0175068 +0.006069731 13.47828 -0.0175068 +0.01197402 13.47828 -0.0175068 +0.01903886 13.47828 -0.0175068 +0.02852504 13.47828 -0.0175068 +0.04126244 13.47828 -0.0175068 +0.05836535 13.47828 -0.0175068 +0.08132997 13.47828 -0.0175068 +0.1121653 13.47828 -0.0175068 +0.1535689 13.47828 -0.0175068 +0.2091628 13.47828 -0.0175068 +0.2838106 13.47828 -0.0175068 +0.3840425 13.47828 -0.0175068 +0.518627 13.47828 -0.0175068 +0.6993381 13.47828 -0.0175068 +0.9419845 13.47828 -0.0175068 +1.267794 13.47828 -0.0175068 +1.705268 13.47828 -0.0175068 +2.292679 13.47828 -0.0175068 +3.081414 13.47828 -0.0175068 +4.140474 13.47828 -0.0175068 +5.562508 13.47828 -0.0175068 +7.471917 13.47828 -0.0175068 +10.03574 13.47828 -0.0175068 +13.47828 13.47828 -0.0175068 +18.10068 13.47828 -0.0175068 +24.30731 13.47828 -0.0175068 +32.64117 13.47828 -0.0175068 +43.83129 13.47828 -0.0175068 +58.85664 13.47828 -0.0175068 +-0.0175068 18.10068 -0.0175068 +-0.01161267 18.10068 -0.0175068 +-0.005718534 18.10068 -0.0175068 +0.0001755984 18.10068 -0.0175068 +0.006069731 18.10068 -0.0175068 +0.01197402 18.10068 -0.0175068 +0.01903886 18.10068 -0.0175068 +0.02852504 18.10068 -0.0175068 +0.04126244 18.10068 -0.0175068 +0.05836535 18.10068 -0.0175068 +0.08132997 18.10068 -0.0175068 +0.1121653 18.10068 -0.0175068 +0.1535689 18.10068 -0.0175068 +0.2091628 18.10068 -0.0175068 +0.2838106 18.10068 -0.0175068 +0.3840425 18.10068 -0.0175068 +0.518627 18.10068 -0.0175068 +0.6993381 18.10068 -0.0175068 +0.9419845 18.10068 -0.0175068 +1.267794 18.10068 -0.0175068 +1.705268 18.10068 -0.0175068 +2.292679 18.10068 -0.0175068 +3.081414 18.10068 -0.0175068 +4.140474 18.10068 -0.0175068 +5.562508 18.10068 -0.0175068 +7.471917 18.10068 -0.0175068 +10.03574 18.10068 -0.0175068 +13.47828 18.10068 -0.0175068 +18.10068 18.10068 -0.0175068 +24.30731 18.10068 -0.0175068 +32.64117 18.10068 -0.0175068 +43.83129 18.10068 -0.0175068 +58.85664 18.10068 -0.0175068 +-0.0175068 24.30731 -0.0175068 +-0.01161267 24.30731 -0.0175068 +-0.005718534 24.30731 -0.0175068 +0.0001755984 24.30731 -0.0175068 +0.006069731 24.30731 -0.0175068 +0.01197402 24.30731 -0.0175068 +0.01903886 24.30731 -0.0175068 +0.02852504 24.30731 -0.0175068 +0.04126244 24.30731 -0.0175068 +0.05836535 24.30731 -0.0175068 +0.08132997 24.30731 -0.0175068 +0.1121653 24.30731 -0.0175068 +0.1535689 24.30731 -0.0175068 +0.2091628 24.30731 -0.0175068 +0.2838106 24.30731 -0.0175068 +0.3840425 24.30731 -0.0175068 +0.518627 24.30731 -0.0175068 +0.6993381 24.30731 -0.0175068 +0.9419845 24.30731 -0.0175068 +1.267794 24.30731 -0.0175068 +1.705268 24.30731 -0.0175068 +2.292679 24.30731 -0.0175068 +3.081414 24.30731 -0.0175068 +4.140474 24.30731 -0.0175068 +5.562508 24.30731 -0.0175068 +7.471917 24.30731 -0.0175068 +10.03574 24.30731 -0.0175068 +13.47828 24.30731 -0.0175068 +18.10068 24.30731 -0.0175068 +24.30731 24.30731 -0.0175068 +32.64117 24.30731 -0.0175068 +43.83129 24.30731 -0.0175068 +58.85664 24.30731 -0.0175068 +-0.0175068 32.64117 -0.0175068 +-0.01161267 32.64117 -0.0175068 +-0.005718534 32.64117 -0.0175068 +0.0001755984 32.64117 -0.0175068 +0.006069731 32.64117 -0.0175068 +0.01197402 32.64117 -0.0175068 +0.01903886 32.64117 -0.0175068 +0.02852504 32.64117 -0.0175068 +0.04126244 32.64117 -0.0175068 +0.05836535 32.64117 -0.0175068 +0.08132997 32.64117 -0.0175068 +0.1121653 32.64117 -0.0175068 +0.1535689 32.64117 -0.0175068 +0.2091628 32.64117 -0.0175068 +0.2838106 32.64117 -0.0175068 +0.3840425 32.64117 -0.0175068 +0.518627 32.64117 -0.0175068 +0.6993381 32.64117 -0.0175068 +0.9419845 32.64117 -0.0175068 +1.267794 32.64117 -0.0175068 +1.705268 32.64117 -0.0175068 +2.292679 32.64117 -0.0175068 +3.081414 32.64117 -0.0175068 +4.140474 32.64117 -0.0175068 +5.562508 32.64117 -0.0175068 +7.471917 32.64117 -0.0175068 +10.03574 32.64117 -0.0175068 +13.47828 32.64117 -0.0175068 +18.10068 32.64117 -0.0175068 +24.30731 32.64117 -0.0175068 +32.64117 32.64117 -0.0175068 +43.83129 32.64117 -0.0175068 +58.85664 32.64117 -0.0175068 +-0.0175068 43.83129 -0.0175068 +-0.01161267 43.83129 -0.0175068 +-0.005718534 43.83129 -0.0175068 +0.0001755984 43.83129 -0.0175068 +0.006069731 43.83129 -0.0175068 +0.01197402 43.83129 -0.0175068 +0.01903886 43.83129 -0.0175068 +0.02852504 43.83129 -0.0175068 +0.04126244 43.83129 -0.0175068 +0.05836535 43.83129 -0.0175068 +0.08132997 43.83129 -0.0175068 +0.1121653 43.83129 -0.0175068 +0.1535689 43.83129 -0.0175068 +0.2091628 43.83129 -0.0175068 +0.2838106 43.83129 -0.0175068 +0.3840425 43.83129 -0.0175068 +0.518627 43.83129 -0.0175068 +0.6993381 43.83129 -0.0175068 +0.9419845 43.83129 -0.0175068 +1.267794 43.83129 -0.0175068 +1.705268 43.83129 -0.0175068 +2.292679 43.83129 -0.0175068 +3.081414 43.83129 -0.0175068 +4.140474 43.83129 -0.0175068 +5.562508 43.83129 -0.0175068 +7.471917 43.83129 -0.0175068 +10.03574 43.83129 -0.0175068 +13.47828 43.83129 -0.0175068 +18.10068 43.83129 -0.0175068 +24.30731 43.83129 -0.0175068 +32.64117 43.83129 -0.0175068 +43.83129 43.83129 -0.0175068 +58.85664 43.83129 -0.0175068 +-0.0175068 58.85664 -0.0175068 +-0.01161267 58.85664 -0.0175068 +-0.005718534 58.85664 -0.0175068 +0.0001755984 58.85664 -0.0175068 +0.006069731 58.85664 -0.0175068 +0.01197402 58.85664 -0.0175068 +0.01903886 58.85664 -0.0175068 +0.02852504 58.85664 -0.0175068 +0.04126244 58.85664 -0.0175068 +0.05836535 58.85664 -0.0175068 +0.08132997 58.85664 -0.0175068 +0.1121653 58.85664 -0.0175068 +0.1535689 58.85664 -0.0175068 +0.2091628 58.85664 -0.0175068 +0.2838106 58.85664 -0.0175068 +0.3840425 58.85664 -0.0175068 +0.518627 58.85664 -0.0175068 +0.6993381 58.85664 -0.0175068 +0.9419845 58.85664 -0.0175068 +1.267794 58.85664 -0.0175068 +1.705268 58.85664 -0.0175068 +2.292679 58.85664 -0.0175068 +3.081414 58.85664 -0.0175068 +4.140474 58.85664 -0.0175068 +5.562508 58.85664 -0.0175068 +7.471917 58.85664 -0.0175068 +10.03574 58.85664 -0.0175068 +13.47828 58.85664 -0.0175068 +18.10068 58.85664 -0.0175068 +24.30731 58.85664 -0.0175068 +32.64117 58.85664 -0.0175068 +43.83129 58.85664 -0.0175068 +58.85664 58.85664 -0.0175068 +-0.0175068 -0.0175068 -0.01161267 +-0.01161267 -0.0175068 -0.01161267 +-0.005718534 -0.0175068 -0.01161267 +0.0001755984 -0.0175068 -0.01161267 +0.006069731 -0.0175068 -0.01161267 +0.01197402 -0.0175068 -0.01161267 +0.01903886 -0.0175068 -0.01161267 +0.02852504 -0.0175068 -0.01161267 +0.04126244 -0.0175068 -0.01161267 +0.05836535 -0.0175068 -0.01161267 +0.08132997 -0.0175068 -0.01161267 +0.1121653 -0.0175068 -0.01161267 +0.1535689 -0.0175068 -0.01161267 +0.2091628 -0.0175068 -0.01161267 +0.2838106 -0.0175068 -0.01161267 +0.3840425 -0.0175068 -0.01161267 +0.518627 -0.0175068 -0.01161267 +0.6993381 -0.0175068 -0.01161267 +0.9419845 -0.0175068 -0.01161267 +1.267794 -0.0175068 -0.01161267 +1.705268 -0.0175068 -0.01161267 +2.292679 -0.0175068 -0.01161267 +3.081414 -0.0175068 -0.01161267 +4.140474 -0.0175068 -0.01161267 +5.562508 -0.0175068 -0.01161267 +7.471917 -0.0175068 -0.01161267 +10.03574 -0.0175068 -0.01161267 +13.47828 -0.0175068 -0.01161267 +18.10068 -0.0175068 -0.01161267 +24.30731 -0.0175068 -0.01161267 +32.64117 -0.0175068 -0.01161267 +43.83129 -0.0175068 -0.01161267 +58.85664 -0.0175068 -0.01161267 +-0.0175068 -0.01161267 -0.01161267 +-0.01161267 -0.01161267 -0.01161267 +-0.005718534 -0.01161267 -0.01161267 +0.0001755984 -0.01161267 -0.01161267 +0.006069731 -0.01161267 -0.01161267 +0.01197402 -0.01161267 -0.01161267 +0.01903886 -0.01161267 -0.01161267 +0.02852504 -0.01161267 -0.01161267 +0.04126244 -0.01161267 -0.01161267 +0.05836535 -0.01161267 -0.01161267 +0.08132997 -0.01161267 -0.01161267 +0.1121653 -0.01161267 -0.01161267 +0.1535689 -0.01161267 -0.01161267 +0.2091628 -0.01161267 -0.01161267 +0.2838106 -0.01161267 -0.01161267 +0.3840425 -0.01161267 -0.01161267 +0.518627 -0.01161267 -0.01161267 +0.6993381 -0.01161267 -0.01161267 +0.9419845 -0.01161267 -0.01161267 +1.267794 -0.01161267 -0.01161267 +1.705268 -0.01161267 -0.01161267 +2.292679 -0.01161267 -0.01161267 +3.081414 -0.01161267 -0.01161267 +4.140474 -0.01161267 -0.01161267 +5.562508 -0.01161267 -0.01161267 +7.471917 -0.01161267 -0.01161267 +10.03574 -0.01161267 -0.01161267 +13.47828 -0.01161267 -0.01161267 +18.10068 -0.01161267 -0.01161267 +24.30731 -0.01161267 -0.01161267 +32.64117 -0.01161267 -0.01161267 +43.83129 -0.01161267 -0.01161267 +58.85664 -0.01161267 -0.01161267 +-0.0175068 -0.005718534 -0.01161267 +-0.01161267 -0.005718534 -0.01161267 +-0.005718534 -0.005718534 -0.01161267 +0.0001755984 -0.005718534 -0.01161267 +0.006069731 -0.005718534 -0.01161267 +0.01197402 -0.005718534 -0.01161267 +0.01903886 -0.005718534 -0.01161267 +0.02852504 -0.005718534 -0.01161267 +0.04126244 -0.005718534 -0.01161267 +0.05836535 -0.005718534 -0.01161267 +0.08132997 -0.005718534 -0.01161267 +0.1121653 -0.005718534 -0.01161267 +0.1535689 -0.005718534 -0.01161267 +0.2091628 -0.005718534 -0.01161267 +0.2838106 -0.005718534 -0.01161267 +0.3840425 -0.005718534 -0.01161267 +0.518627 -0.005718534 -0.01161267 +0.6993381 -0.005718534 -0.01161267 +0.9419845 -0.005718534 -0.01161267 +1.267794 -0.005718534 -0.01161267 +1.705268 -0.005718534 -0.01161267 +2.292679 -0.005718534 -0.01161267 +3.081414 -0.005718534 -0.01161267 +4.140474 -0.005718534 -0.01161267 +5.562508 -0.005718534 -0.01161267 +7.471917 -0.005718534 -0.01161267 +10.03574 -0.005718534 -0.01161267 +13.47828 -0.005718534 -0.01161267 +18.10068 -0.005718534 -0.01161267 +24.30731 -0.005718534 -0.01161267 +32.64117 -0.005718534 -0.01161267 +43.83129 -0.005718534 -0.01161267 +58.85664 -0.005718534 -0.01161267 +-0.0175068 0.0001755984 -0.01161267 +-0.01161267 0.0001755984 -0.01161267 +-0.005718534 0.0001755984 -0.01161267 +0.0001755984 0.0001755984 -0.01161267 +0.006069731 0.0001755984 -0.01161267 +0.01197402 0.0001755984 -0.01161267 +0.01903886 0.0001755984 -0.01161267 +0.02852504 0.0001755984 -0.01161267 +0.04126244 0.0001755984 -0.01161267 +0.05836535 0.0001755984 -0.01161267 +0.08132997 0.0001755984 -0.01161267 +0.1121653 0.0001755984 -0.01161267 +0.1535689 0.0001755984 -0.01161267 +0.2091628 0.0001755984 -0.01161267 +0.2838106 0.0001755984 -0.01161267 +0.3840425 0.0001755984 -0.01161267 +0.518627 0.0001755984 -0.01161267 +0.6993381 0.0001755984 -0.01161267 +0.9419845 0.0001755984 -0.01161267 +1.267794 0.0001755984 -0.01161267 +1.705268 0.0001755984 -0.01161267 +2.292679 0.0001755984 -0.01161267 +3.081414 0.0001755984 -0.01161267 +4.140474 0.0001755984 -0.01161267 +5.562508 0.0001755984 -0.01161267 +7.471917 0.0001755984 -0.01161267 +10.03574 0.0001755984 -0.01161267 +13.47828 0.0001755984 -0.01161267 +18.10068 0.0001755984 -0.01161267 +24.30731 0.0001755984 -0.01161267 +32.64117 0.0001755984 -0.01161267 +43.83129 0.0001755984 -0.01161267 +58.85664 0.0001755984 -0.01161267 +-0.0175068 0.006069731 -0.01161267 +-0.01161267 0.006069731 -0.01161267 +-0.005718534 0.006069731 -0.01161267 +0.0001755984 0.006069731 -0.01161267 +0.006069731 0.006069731 -0.01161267 +0.01197402 0.006069731 -0.01161267 +0.01903886 0.006069731 -0.01161267 +0.02852504 0.006069731 -0.01161267 +0.04126244 0.006069731 -0.01161267 +0.05836535 0.006069731 -0.01161267 +0.08132997 0.006069731 -0.01161267 +0.1121653 0.006069731 -0.01161267 +0.1535689 0.006069731 -0.01161267 +0.2091628 0.006069731 -0.01161267 +0.2838106 0.006069731 -0.01161267 +0.3840425 0.006069731 -0.01161267 +0.518627 0.006069731 -0.01161267 +0.6993381 0.006069731 -0.01161267 +0.9419845 0.006069731 -0.01161267 +1.267794 0.006069731 -0.01161267 +1.705268 0.006069731 -0.01161267 +2.292679 0.006069731 -0.01161267 +3.081414 0.006069731 -0.01161267 +4.140474 0.006069731 -0.01161267 +5.562508 0.006069731 -0.01161267 +7.471917 0.006069731 -0.01161267 +10.03574 0.006069731 -0.01161267 +13.47828 0.006069731 -0.01161267 +18.10068 0.006069731 -0.01161267 +24.30731 0.006069731 -0.01161267 +32.64117 0.006069731 -0.01161267 +43.83129 0.006069731 -0.01161267 +58.85664 0.006069731 -0.01161267 +-0.0175068 0.01197402 -0.01161267 +-0.01161267 0.01197402 -0.01161267 +-0.005718534 0.01197402 -0.01161267 +0.0001755984 0.01197402 -0.01161267 +0.006069731 0.01197402 -0.01161267 +0.01197402 0.01197402 -0.01161267 +0.01903886 0.01197402 -0.01161267 +0.02852504 0.01197402 -0.01161267 +0.04126244 0.01197402 -0.01161267 +0.05836535 0.01197402 -0.01161267 +0.08132997 0.01197402 -0.01161267 +0.1121653 0.01197402 -0.01161267 +0.1535689 0.01197402 -0.01161267 +0.2091628 0.01197402 -0.01161267 +0.2838106 0.01197402 -0.01161267 +0.3840425 0.01197402 -0.01161267 +0.518627 0.01197402 -0.01161267 +0.6993381 0.01197402 -0.01161267 +0.9419845 0.01197402 -0.01161267 +1.267794 0.01197402 -0.01161267 +1.705268 0.01197402 -0.01161267 +2.292679 0.01197402 -0.01161267 +3.081414 0.01197402 -0.01161267 +4.140474 0.01197402 -0.01161267 +5.562508 0.01197402 -0.01161267 +7.471917 0.01197402 -0.01161267 +10.03574 0.01197402 -0.01161267 +13.47828 0.01197402 -0.01161267 +18.10068 0.01197402 -0.01161267 +24.30731 0.01197402 -0.01161267 +32.64117 0.01197402 -0.01161267 +43.83129 0.01197402 -0.01161267 +58.85664 0.01197402 -0.01161267 +-0.0175068 0.01903886 -0.01161267 +-0.01161267 0.01903886 -0.01161267 +-0.005718534 0.01903886 -0.01161267 +0.0001755984 0.01903886 -0.01161267 +0.006069731 0.01903886 -0.01161267 +0.01197402 0.01903886 -0.01161267 +0.01903886 0.01903886 -0.01161267 +0.02852504 0.01903886 -0.01161267 +0.04126244 0.01903886 -0.01161267 +0.05836535 0.01903886 -0.01161267 +0.08132997 0.01903886 -0.01161267 +0.1121653 0.01903886 -0.01161267 +0.1535689 0.01903886 -0.01161267 +0.2091628 0.01903886 -0.01161267 +0.2838106 0.01903886 -0.01161267 +0.3840425 0.01903886 -0.01161267 +0.518627 0.01903886 -0.01161267 +0.6993381 0.01903886 -0.01161267 +0.9419845 0.01903886 -0.01161267 +1.267794 0.01903886 -0.01161267 +1.705268 0.01903886 -0.01161267 +2.292679 0.01903886 -0.01161267 +3.081414 0.01903886 -0.01161267 +4.140474 0.01903886 -0.01161267 +5.562508 0.01903886 -0.01161267 +7.471917 0.01903886 -0.01161267 +10.03574 0.01903886 -0.01161267 +13.47828 0.01903886 -0.01161267 +18.10068 0.01903886 -0.01161267 +24.30731 0.01903886 -0.01161267 +32.64117 0.01903886 -0.01161267 +43.83129 0.01903886 -0.01161267 +58.85664 0.01903886 -0.01161267 +-0.0175068 0.02852504 -0.01161267 +-0.01161267 0.02852504 -0.01161267 +-0.005718534 0.02852504 -0.01161267 +0.0001755984 0.02852504 -0.01161267 +0.006069731 0.02852504 -0.01161267 +0.01197402 0.02852504 -0.01161267 +0.01903886 0.02852504 -0.01161267 +0.02852504 0.02852504 -0.01161267 +0.04126244 0.02852504 -0.01161267 +0.05836535 0.02852504 -0.01161267 +0.08132997 0.02852504 -0.01161267 +0.1121653 0.02852504 -0.01161267 +0.1535689 0.02852504 -0.01161267 +0.2091628 0.02852504 -0.01161267 +0.2838106 0.02852504 -0.01161267 +0.3840425 0.02852504 -0.01161267 +0.518627 0.02852504 -0.01161267 +0.6993381 0.02852504 -0.01161267 +0.9419845 0.02852504 -0.01161267 +1.267794 0.02852504 -0.01161267 +1.705268 0.02852504 -0.01161267 +2.292679 0.02852504 -0.01161267 +3.081414 0.02852504 -0.01161267 +4.140474 0.02852504 -0.01161267 +5.562508 0.02852504 -0.01161267 +7.471917 0.02852504 -0.01161267 +10.03574 0.02852504 -0.01161267 +13.47828 0.02852504 -0.01161267 +18.10068 0.02852504 -0.01161267 +24.30731 0.02852504 -0.01161267 +32.64117 0.02852504 -0.01161267 +43.83129 0.02852504 -0.01161267 +58.85664 0.02852504 -0.01161267 +-0.0175068 0.04126244 -0.01161267 +-0.01161267 0.04126244 -0.01161267 +-0.005718534 0.04126244 -0.01161267 +0.0001755984 0.04126244 -0.01161267 +0.006069731 0.04126244 -0.01161267 +0.01197402 0.04126244 -0.01161267 +0.01903886 0.04126244 -0.01161267 +0.02852504 0.04126244 -0.01161267 +0.04126244 0.04126244 -0.01161267 +0.05836535 0.04126244 -0.01161267 +0.08132997 0.04126244 -0.01161267 +0.1121653 0.04126244 -0.01161267 +0.1535689 0.04126244 -0.01161267 +0.2091628 0.04126244 -0.01161267 +0.2838106 0.04126244 -0.01161267 +0.3840425 0.04126244 -0.01161267 +0.518627 0.04126244 -0.01161267 +0.6993381 0.04126244 -0.01161267 +0.9419845 0.04126244 -0.01161267 +1.267794 0.04126244 -0.01161267 +1.705268 0.04126244 -0.01161267 +2.292679 0.04126244 -0.01161267 +3.081414 0.04126244 -0.01161267 +4.140474 0.04126244 -0.01161267 +5.562508 0.04126244 -0.01161267 +7.471917 0.04126244 -0.01161267 +10.03574 0.04126244 -0.01161267 +13.47828 0.04126244 -0.01161267 +18.10068 0.04126244 -0.01161267 +24.30731 0.04126244 -0.01161267 +32.64117 0.04126244 -0.01161267 +43.83129 0.04126244 -0.01161267 +58.85664 0.04126244 -0.01161267 +-0.0175068 0.05836535 -0.01161267 +-0.01161267 0.05836535 -0.01161267 +-0.005718534 0.05836535 -0.01161267 +0.0001755984 0.05836535 -0.01161267 +0.006069731 0.05836535 -0.01161267 +0.01197402 0.05836535 -0.01161267 +0.01903886 0.05836535 -0.01161267 +0.02852504 0.05836535 -0.01161267 +0.04126244 0.05836535 -0.01161267 +0.05836535 0.05836535 -0.01161267 +0.08132997 0.05836535 -0.01161267 +0.1121653 0.05836535 -0.01161267 +0.1535689 0.05836535 -0.01161267 +0.2091628 0.05836535 -0.01161267 +0.2838106 0.05836535 -0.01161267 +0.3840425 0.05836535 -0.01161267 +0.518627 0.05836535 -0.01161267 +0.6993381 0.05836535 -0.01161267 +0.9419845 0.05836535 -0.01161267 +1.267794 0.05836535 -0.01161267 +1.705268 0.05836535 -0.01161267 +2.292679 0.05836535 -0.01161267 +3.081414 0.05836535 -0.01161267 +4.140474 0.05836535 -0.01161267 +5.562508 0.05836535 -0.01161267 +7.471917 0.05836535 -0.01161267 +10.03574 0.05836535 -0.01161267 +13.47828 0.05836535 -0.01161267 +18.10068 0.05836535 -0.01161267 +24.30731 0.05836535 -0.01161267 +32.64117 0.05836535 -0.01161267 +43.83129 0.05836535 -0.01161267 +58.85664 0.05836535 -0.01161267 +-0.0175068 0.08132997 -0.01161267 +-0.01161267 0.08132997 -0.01161267 +-0.005718534 0.08132997 -0.01161267 +0.0001755984 0.08132997 -0.01161267 +0.006069731 0.08132997 -0.01161267 +0.01197402 0.08132997 -0.01161267 +0.01903886 0.08132997 -0.01161267 +0.02852504 0.08132997 -0.01161267 +0.04126244 0.08132997 -0.01161267 +0.05836535 0.08132997 -0.01161267 +0.08132997 0.08132997 -0.01161267 +0.1121653 0.08132997 -0.01161267 +0.1535689 0.08132997 -0.01161267 +0.2091628 0.08132997 -0.01161267 +0.2838106 0.08132997 -0.01161267 +0.3840425 0.08132997 -0.01161267 +0.518627 0.08132997 -0.01161267 +0.6993381 0.08132997 -0.01161267 +0.9419845 0.08132997 -0.01161267 +1.267794 0.08132997 -0.01161267 +1.705268 0.08132997 -0.01161267 +2.292679 0.08132997 -0.01161267 +3.081414 0.08132997 -0.01161267 +4.140474 0.08132997 -0.01161267 +5.562508 0.08132997 -0.01161267 +7.471917 0.08132997 -0.01161267 +10.03574 0.08132997 -0.01161267 +13.47828 0.08132997 -0.01161267 +18.10068 0.08132997 -0.01161267 +24.30731 0.08132997 -0.01161267 +32.64117 0.08132997 -0.01161267 +43.83129 0.08132997 -0.01161267 +58.85664 0.08132997 -0.01161267 +-0.0175068 0.1121653 -0.01161267 +-0.01161267 0.1121653 -0.01161267 +-0.005718534 0.1121653 -0.01161267 +0.0001755984 0.1121653 -0.01161267 +0.006069731 0.1121653 -0.01161267 +0.01197402 0.1121653 -0.01161267 +0.01903886 0.1121653 -0.01161267 +0.02852504 0.1121653 -0.01161267 +0.04126244 0.1121653 -0.01161267 +0.05836535 0.1121653 -0.01161267 +0.08132997 0.1121653 -0.01161267 +0.1121653 0.1121653 -0.01161267 +0.1535689 0.1121653 -0.01161267 +0.2091628 0.1121653 -0.01161267 +0.2838106 0.1121653 -0.01161267 +0.3840425 0.1121653 -0.01161267 +0.518627 0.1121653 -0.01161267 +0.6993381 0.1121653 -0.01161267 +0.9419845 0.1121653 -0.01161267 +1.267794 0.1121653 -0.01161267 +1.705268 0.1121653 -0.01161267 +2.292679 0.1121653 -0.01161267 +3.081414 0.1121653 -0.01161267 +4.140474 0.1121653 -0.01161267 +5.562508 0.1121653 -0.01161267 +7.471917 0.1121653 -0.01161267 +10.03574 0.1121653 -0.01161267 +13.47828 0.1121653 -0.01161267 +18.10068 0.1121653 -0.01161267 +24.30731 0.1121653 -0.01161267 +32.64117 0.1121653 -0.01161267 +43.83129 0.1121653 -0.01161267 +58.85664 0.1121653 -0.01161267 +-0.0175068 0.1535689 -0.01161267 +-0.01161267 0.1535689 -0.01161267 +-0.005718534 0.1535689 -0.01161267 +0.0001755984 0.1535689 -0.01161267 +0.006069731 0.1535689 -0.01161267 +0.01197402 0.1535689 -0.01161267 +0.01903886 0.1535689 -0.01161267 +0.02852504 0.1535689 -0.01161267 +0.04126244 0.1535689 -0.01161267 +0.05836535 0.1535689 -0.01161267 +0.08132997 0.1535689 -0.01161267 +0.1121653 0.1535689 -0.01161267 +0.1535689 0.1535689 -0.01161267 +0.2091628 0.1535689 -0.01161267 +0.2838106 0.1535689 -0.01161267 +0.3840425 0.1535689 -0.01161267 +0.518627 0.1535689 -0.01161267 +0.6993381 0.1535689 -0.01161267 +0.9419845 0.1535689 -0.01161267 +1.267794 0.1535689 -0.01161267 +1.705268 0.1535689 -0.01161267 +2.292679 0.1535689 -0.01161267 +3.081414 0.1535689 -0.01161267 +4.140474 0.1535689 -0.01161267 +5.562508 0.1535689 -0.01161267 +7.471917 0.1535689 -0.01161267 +10.03574 0.1535689 -0.01161267 +13.47828 0.1535689 -0.01161267 +18.10068 0.1535689 -0.01161267 +24.30731 0.1535689 -0.01161267 +32.64117 0.1535689 -0.01161267 +43.83129 0.1535689 -0.01161267 +58.85664 0.1535689 -0.01161267 +-0.0175068 0.2091628 -0.01161267 +-0.01161267 0.2091628 -0.01161267 +-0.005718534 0.2091628 -0.01161267 +0.0001755984 0.2091628 -0.01161267 +0.006069731 0.2091628 -0.01161267 +0.01197402 0.2091628 -0.01161267 +0.01903886 0.2091628 -0.01161267 +0.02852504 0.2091628 -0.01161267 +0.04126244 0.2091628 -0.01161267 +0.05836535 0.2091628 -0.01161267 +0.08132997 0.2091628 -0.01161267 +0.1121653 0.2091628 -0.01161267 +0.1535689 0.2091628 -0.01161267 +0.2091628 0.2091628 -0.01161267 +0.2838106 0.2091628 -0.01161267 +0.3840425 0.2091628 -0.01161267 +0.518627 0.2091628 -0.01161267 +0.6993381 0.2091628 -0.01161267 +0.9419845 0.2091628 -0.01161267 +1.267794 0.2091628 -0.01161267 +1.705268 0.2091628 -0.01161267 +2.292679 0.2091628 -0.01161267 +3.081414 0.2091628 -0.01161267 +4.140474 0.2091628 -0.01161267 +5.562508 0.2091628 -0.01161267 +7.471917 0.2091628 -0.01161267 +10.03574 0.2091628 -0.01161267 +13.47828 0.2091628 -0.01161267 +18.10068 0.2091628 -0.01161267 +24.30731 0.2091628 -0.01161267 +32.64117 0.2091628 -0.01161267 +43.83129 0.2091628 -0.01161267 +58.85664 0.2091628 -0.01161267 +-0.0175068 0.2838106 -0.01161267 +-0.01161267 0.2838106 -0.01161267 +-0.005718534 0.2838106 -0.01161267 +0.0001755984 0.2838106 -0.01161267 +0.006069731 0.2838106 -0.01161267 +0.01197402 0.2838106 -0.01161267 +0.01903886 0.2838106 -0.01161267 +0.02852504 0.2838106 -0.01161267 +0.04126244 0.2838106 -0.01161267 +0.05836535 0.2838106 -0.01161267 +0.08132997 0.2838106 -0.01161267 +0.1121653 0.2838106 -0.01161267 +0.1535689 0.2838106 -0.01161267 +0.2091628 0.2838106 -0.01161267 +0.2838106 0.2838106 -0.01161267 +0.3840425 0.2838106 -0.01161267 +0.518627 0.2838106 -0.01161267 +0.6993381 0.2838106 -0.01161267 +0.9419845 0.2838106 -0.01161267 +1.267794 0.2838106 -0.01161267 +1.705268 0.2838106 -0.01161267 +2.292679 0.2838106 -0.01161267 +3.081414 0.2838106 -0.01161267 +4.140474 0.2838106 -0.01161267 +5.562508 0.2838106 -0.01161267 +7.471917 0.2838106 -0.01161267 +10.03574 0.2838106 -0.01161267 +13.47828 0.2838106 -0.01161267 +18.10068 0.2838106 -0.01161267 +24.30731 0.2838106 -0.01161267 +32.64117 0.2838106 -0.01161267 +43.83129 0.2838106 -0.01161267 +58.85664 0.2838106 -0.01161267 +-0.0175068 0.3840425 -0.01161267 +-0.01161267 0.3840425 -0.01161267 +-0.005718534 0.3840425 -0.01161267 +0.0001755984 0.3840425 -0.01161267 +0.006069731 0.3840425 -0.01161267 +0.01197402 0.3840425 -0.01161267 +0.01903886 0.3840425 -0.01161267 +0.02852504 0.3840425 -0.01161267 +0.04126244 0.3840425 -0.01161267 +0.05836535 0.3840425 -0.01161267 +0.08132997 0.3840425 -0.01161267 +0.1121653 0.3840425 -0.01161267 +0.1535689 0.3840425 -0.01161267 +0.2091628 0.3840425 -0.01161267 +0.2838106 0.3840425 -0.01161267 +0.3840425 0.3840425 -0.01161267 +0.518627 0.3840425 -0.01161267 +0.6993381 0.3840425 -0.01161267 +0.9419845 0.3840425 -0.01161267 +1.267794 0.3840425 -0.01161267 +1.705268 0.3840425 -0.01161267 +2.292679 0.3840425 -0.01161267 +3.081414 0.3840425 -0.01161267 +4.140474 0.3840425 -0.01161267 +5.562508 0.3840425 -0.01161267 +7.471917 0.3840425 -0.01161267 +10.03574 0.3840425 -0.01161267 +13.47828 0.3840425 -0.01161267 +18.10068 0.3840425 -0.01161267 +24.30731 0.3840425 -0.01161267 +32.64117 0.3840425 -0.01161267 +43.83129 0.3840425 -0.01161267 +58.85664 0.3840425 -0.01161267 +-0.0175068 0.518627 -0.01161267 +-0.01161267 0.518627 -0.01161267 +-0.005718534 0.518627 -0.01161267 +0.0001755984 0.518627 -0.01161267 +0.006069731 0.518627 -0.01161267 +0.01197402 0.518627 -0.01161267 +0.01903886 0.518627 -0.01161267 +0.02852504 0.518627 -0.01161267 +0.04126244 0.518627 -0.01161267 +0.05836535 0.518627 -0.01161267 +0.08132997 0.518627 -0.01161267 +0.1121653 0.518627 -0.01161267 +0.1535689 0.518627 -0.01161267 +0.2091628 0.518627 -0.01161267 +0.2838106 0.518627 -0.01161267 +0.3840425 0.518627 -0.01161267 +0.518627 0.518627 -0.01161267 +0.6993381 0.518627 -0.01161267 +0.9419845 0.518627 -0.01161267 +1.267794 0.518627 -0.01161267 +1.705268 0.518627 -0.01161267 +2.292679 0.518627 -0.01161267 +3.081414 0.518627 -0.01161267 +4.140474 0.518627 -0.01161267 +5.562508 0.518627 -0.01161267 +7.471917 0.518627 -0.01161267 +10.03574 0.518627 -0.01161267 +13.47828 0.518627 -0.01161267 +18.10068 0.518627 -0.01161267 +24.30731 0.518627 -0.01161267 +32.64117 0.518627 -0.01161267 +43.83129 0.518627 -0.01161267 +58.85664 0.518627 -0.01161267 +-0.0175068 0.6993381 -0.01161267 +-0.01161267 0.6993381 -0.01161267 +-0.005718534 0.6993381 -0.01161267 +0.0001755984 0.6993381 -0.01161267 +0.006069731 0.6993381 -0.01161267 +0.01197402 0.6993381 -0.01161267 +0.01903886 0.6993381 -0.01161267 +0.02852504 0.6993381 -0.01161267 +0.04126244 0.6993381 -0.01161267 +0.05836535 0.6993381 -0.01161267 +0.08132997 0.6993381 -0.01161267 +0.1121653 0.6993381 -0.01161267 +0.1535689 0.6993381 -0.01161267 +0.2091628 0.6993381 -0.01161267 +0.2838106 0.6993381 -0.01161267 +0.3840425 0.6993381 -0.01161267 +0.518627 0.6993381 -0.01161267 +0.6993381 0.6993381 -0.01161267 +0.9419845 0.6993381 -0.01161267 +1.267794 0.6993381 -0.01161267 +1.705268 0.6993381 -0.01161267 +2.292679 0.6993381 -0.01161267 +3.081414 0.6993381 -0.01161267 +4.140474 0.6993381 -0.01161267 +5.562508 0.6993381 -0.01161267 +7.471917 0.6993381 -0.01161267 +10.03574 0.6993381 -0.01161267 +13.47828 0.6993381 -0.01161267 +18.10068 0.6993381 -0.01161267 +24.30731 0.6993381 -0.01161267 +32.64117 0.6993381 -0.01161267 +43.83129 0.6993381 -0.01161267 +58.85664 0.6993381 -0.01161267 +-0.0175068 0.9419845 -0.01161267 +-0.01161267 0.9419845 -0.01161267 +-0.005718534 0.9419845 -0.01161267 +0.0001755984 0.9419845 -0.01161267 +0.006069731 0.9419845 -0.01161267 +0.01197402 0.9419845 -0.01161267 +0.01903886 0.9419845 -0.01161267 +0.02852504 0.9419845 -0.01161267 +0.04126244 0.9419845 -0.01161267 +0.05836535 0.9419845 -0.01161267 +0.08132997 0.9419845 -0.01161267 +0.1121653 0.9419845 -0.01161267 +0.1535689 0.9419845 -0.01161267 +0.2091628 0.9419845 -0.01161267 +0.2838106 0.9419845 -0.01161267 +0.3840425 0.9419845 -0.01161267 +0.518627 0.9419845 -0.01161267 +0.6993381 0.9419845 -0.01161267 +0.9419845 0.9419845 -0.01161267 +1.267794 0.9419845 -0.01161267 +1.705268 0.9419845 -0.01161267 +2.292679 0.9419845 -0.01161267 +3.081414 0.9419845 -0.01161267 +4.140474 0.9419845 -0.01161267 +5.562508 0.9419845 -0.01161267 +7.471917 0.9419845 -0.01161267 +10.03574 0.9419845 -0.01161267 +13.47828 0.9419845 -0.01161267 +18.10068 0.9419845 -0.01161267 +24.30731 0.9419845 -0.01161267 +32.64117 0.9419845 -0.01161267 +43.83129 0.9419845 -0.01161267 +58.85664 0.9419845 -0.01161267 +-0.0175068 1.267794 -0.01161267 +-0.01161267 1.267794 -0.01161267 +-0.005718534 1.267794 -0.01161267 +0.0001755984 1.267794 -0.01161267 +0.006069731 1.267794 -0.01161267 +0.01197402 1.267794 -0.01161267 +0.01903886 1.267794 -0.01161267 +0.02852504 1.267794 -0.01161267 +0.04126244 1.267794 -0.01161267 +0.05836535 1.267794 -0.01161267 +0.08132997 1.267794 -0.01161267 +0.1121653 1.267794 -0.01161267 +0.1535689 1.267794 -0.01161267 +0.2091628 1.267794 -0.01161267 +0.2838106 1.267794 -0.01161267 +0.3840425 1.267794 -0.01161267 +0.518627 1.267794 -0.01161267 +0.6993381 1.267794 -0.01161267 +0.9419845 1.267794 -0.01161267 +1.267794 1.267794 -0.01161267 +1.705268 1.267794 -0.01161267 +2.292679 1.267794 -0.01161267 +3.081414 1.267794 -0.01161267 +4.140474 1.267794 -0.01161267 +5.562508 1.267794 -0.01161267 +7.471917 1.267794 -0.01161267 +10.03574 1.267794 -0.01161267 +13.47828 1.267794 -0.01161267 +18.10068 1.267794 -0.01161267 +24.30731 1.267794 -0.01161267 +32.64117 1.267794 -0.01161267 +43.83129 1.267794 -0.01161267 +58.85664 1.267794 -0.01161267 +-0.0175068 1.705268 -0.01161267 +-0.01161267 1.705268 -0.01161267 +-0.005718534 1.705268 -0.01161267 +0.0001755984 1.705268 -0.01161267 +0.006069731 1.705268 -0.01161267 +0.01197402 1.705268 -0.01161267 +0.01903886 1.705268 -0.01161267 +0.02852504 1.705268 -0.01161267 +0.04126244 1.705268 -0.01161267 +0.05836535 1.705268 -0.01161267 +0.08132997 1.705268 -0.01161267 +0.1121653 1.705268 -0.01161267 +0.1535689 1.705268 -0.01161267 +0.2091628 1.705268 -0.01161267 +0.2838106 1.705268 -0.01161267 +0.3840425 1.705268 -0.01161267 +0.518627 1.705268 -0.01161267 +0.6993381 1.705268 -0.01161267 +0.9419845 1.705268 -0.01161267 +1.267794 1.705268 -0.01161267 +1.705268 1.705268 -0.01161267 +2.292679 1.705268 -0.01161267 +3.081414 1.705268 -0.01161267 +4.140474 1.705268 -0.01161267 +5.562508 1.705268 -0.01161267 +7.471917 1.705268 -0.01161267 +10.03574 1.705268 -0.01161267 +13.47828 1.705268 -0.01161267 +18.10068 1.705268 -0.01161267 +24.30731 1.705268 -0.01161267 +32.64117 1.705268 -0.01161267 +43.83129 1.705268 -0.01161267 +58.85664 1.705268 -0.01161267 +-0.0175068 2.292679 -0.01161267 +-0.01161267 2.292679 -0.01161267 +-0.005718534 2.292679 -0.01161267 +0.0001755984 2.292679 -0.01161267 +0.006069731 2.292679 -0.01161267 +0.01197402 2.292679 -0.01161267 +0.01903886 2.292679 -0.01161267 +0.02852504 2.292679 -0.01161267 +0.04126244 2.292679 -0.01161267 +0.05836535 2.292679 -0.01161267 +0.08132997 2.292679 -0.01161267 +0.1121653 2.292679 -0.01161267 +0.1535689 2.292679 -0.01161267 +0.2091628 2.292679 -0.01161267 +0.2838106 2.292679 -0.01161267 +0.3840425 2.292679 -0.01161267 +0.518627 2.292679 -0.01161267 +0.6993381 2.292679 -0.01161267 +0.9419845 2.292679 -0.01161267 +1.267794 2.292679 -0.01161267 +1.705268 2.292679 -0.01161267 +2.292679 2.292679 -0.01161267 +3.081414 2.292679 -0.01161267 +4.140474 2.292679 -0.01161267 +5.562508 2.292679 -0.01161267 +7.471917 2.292679 -0.01161267 +10.03574 2.292679 -0.01161267 +13.47828 2.292679 -0.01161267 +18.10068 2.292679 -0.01161267 +24.30731 2.292679 -0.01161267 +32.64117 2.292679 -0.01161267 +43.83129 2.292679 -0.01161267 +58.85664 2.292679 -0.01161267 +-0.0175068 3.081414 -0.01161267 +-0.01161267 3.081414 -0.01161267 +-0.005718534 3.081414 -0.01161267 +0.0001755984 3.081414 -0.01161267 +0.006069731 3.081414 -0.01161267 +0.01197402 3.081414 -0.01161267 +0.01903886 3.081414 -0.01161267 +0.02852504 3.081414 -0.01161267 +0.04126244 3.081414 -0.01161267 +0.05836535 3.081414 -0.01161267 +0.08132997 3.081414 -0.01161267 +0.1121653 3.081414 -0.01161267 +0.1535689 3.081414 -0.01161267 +0.2091628 3.081414 -0.01161267 +0.2838106 3.081414 -0.01161267 +0.3840425 3.081414 -0.01161267 +0.518627 3.081414 -0.01161267 +0.6993381 3.081414 -0.01161267 +0.9419845 3.081414 -0.01161267 +1.267794 3.081414 -0.01161267 +1.705268 3.081414 -0.01161267 +2.292679 3.081414 -0.01161267 +3.081414 3.081414 -0.01161267 +4.140474 3.081414 -0.01161267 +5.562508 3.081414 -0.01161267 +7.471917 3.081414 -0.01161267 +10.03574 3.081414 -0.01161267 +13.47828 3.081414 -0.01161267 +18.10068 3.081414 -0.01161267 +24.30731 3.081414 -0.01161267 +32.64117 3.081414 -0.01161267 +43.83129 3.081414 -0.01161267 +58.85664 3.081414 -0.01161267 +-0.0175068 4.140474 -0.01161267 +-0.01161267 4.140474 -0.01161267 +-0.005718534 4.140474 -0.01161267 +0.0001755984 4.140474 -0.01161267 +0.006069731 4.140474 -0.01161267 +0.01197402 4.140474 -0.01161267 +0.01903886 4.140474 -0.01161267 +0.02852504 4.140474 -0.01161267 +0.04126244 4.140474 -0.01161267 +0.05836535 4.140474 -0.01161267 +0.08132997 4.140474 -0.01161267 +0.1121653 4.140474 -0.01161267 +0.1535689 4.140474 -0.01161267 +0.2091628 4.140474 -0.01161267 +0.2838106 4.140474 -0.01161267 +0.3840425 4.140474 -0.01161267 +0.518627 4.140474 -0.01161267 +0.6993381 4.140474 -0.01161267 +0.9419845 4.140474 -0.01161267 +1.267794 4.140474 -0.01161267 +1.705268 4.140474 -0.01161267 +2.292679 4.140474 -0.01161267 +3.081414 4.140474 -0.01161267 +4.140474 4.140474 -0.01161267 +5.562508 4.140474 -0.01161267 +7.471917 4.140474 -0.01161267 +10.03574 4.140474 -0.01161267 +13.47828 4.140474 -0.01161267 +18.10068 4.140474 -0.01161267 +24.30731 4.140474 -0.01161267 +32.64117 4.140474 -0.01161267 +43.83129 4.140474 -0.01161267 +58.85664 4.140474 -0.01161267 +-0.0175068 5.562508 -0.01161267 +-0.01161267 5.562508 -0.01161267 +-0.005718534 5.562508 -0.01161267 +0.0001755984 5.562508 -0.01161267 +0.006069731 5.562508 -0.01161267 +0.01197402 5.562508 -0.01161267 +0.01903886 5.562508 -0.01161267 +0.02852504 5.562508 -0.01161267 +0.04126244 5.562508 -0.01161267 +0.05836535 5.562508 -0.01161267 +0.08132997 5.562508 -0.01161267 +0.1121653 5.562508 -0.01161267 +0.1535689 5.562508 -0.01161267 +0.2091628 5.562508 -0.01161267 +0.2838106 5.562508 -0.01161267 +0.3840425 5.562508 -0.01161267 +0.518627 5.562508 -0.01161267 +0.6993381 5.562508 -0.01161267 +0.9419845 5.562508 -0.01161267 +1.267794 5.562508 -0.01161267 +1.705268 5.562508 -0.01161267 +2.292679 5.562508 -0.01161267 +3.081414 5.562508 -0.01161267 +4.140474 5.562508 -0.01161267 +5.562508 5.562508 -0.01161267 +7.471917 5.562508 -0.01161267 +10.03574 5.562508 -0.01161267 +13.47828 5.562508 -0.01161267 +18.10068 5.562508 -0.01161267 +24.30731 5.562508 -0.01161267 +32.64117 5.562508 -0.01161267 +43.83129 5.562508 -0.01161267 +58.85664 5.562508 -0.01161267 +-0.0175068 7.471917 -0.01161267 +-0.01161267 7.471917 -0.01161267 +-0.005718534 7.471917 -0.01161267 +0.0001755984 7.471917 -0.01161267 +0.006069731 7.471917 -0.01161267 +0.01197402 7.471917 -0.01161267 +0.01903886 7.471917 -0.01161267 +0.02852504 7.471917 -0.01161267 +0.04126244 7.471917 -0.01161267 +0.05836535 7.471917 -0.01161267 +0.08132997 7.471917 -0.01161267 +0.1121653 7.471917 -0.01161267 +0.1535689 7.471917 -0.01161267 +0.2091628 7.471917 -0.01161267 +0.2838106 7.471917 -0.01161267 +0.3840425 7.471917 -0.01161267 +0.518627 7.471917 -0.01161267 +0.6993381 7.471917 -0.01161267 +0.9419845 7.471917 -0.01161267 +1.267794 7.471917 -0.01161267 +1.705268 7.471917 -0.01161267 +2.292679 7.471917 -0.01161267 +3.081414 7.471917 -0.01161267 +4.140474 7.471917 -0.01161267 +5.562508 7.471917 -0.01161267 +7.471917 7.471917 -0.01161267 +10.03574 7.471917 -0.01161267 +13.47828 7.471917 -0.01161267 +18.10068 7.471917 -0.01161267 +24.30731 7.471917 -0.01161267 +32.64117 7.471917 -0.01161267 +43.83129 7.471917 -0.01161267 +58.85664 7.471917 -0.01161267 +-0.0175068 10.03574 -0.01161267 +-0.01161267 10.03574 -0.01161267 +-0.005718534 10.03574 -0.01161267 +0.0001755984 10.03574 -0.01161267 +0.006069731 10.03574 -0.01161267 +0.01197402 10.03574 -0.01161267 +0.01903886 10.03574 -0.01161267 +0.02852504 10.03574 -0.01161267 +0.04126244 10.03574 -0.01161267 +0.05836535 10.03574 -0.01161267 +0.08132997 10.03574 -0.01161267 +0.1121653 10.03574 -0.01161267 +0.1535689 10.03574 -0.01161267 +0.2091628 10.03574 -0.01161267 +0.2838106 10.03574 -0.01161267 +0.3840425 10.03574 -0.01161267 +0.518627 10.03574 -0.01161267 +0.6993381 10.03574 -0.01161267 +0.9419845 10.03574 -0.01161267 +1.267794 10.03574 -0.01161267 +1.705268 10.03574 -0.01161267 +2.292679 10.03574 -0.01161267 +3.081414 10.03574 -0.01161267 +4.140474 10.03574 -0.01161267 +5.562508 10.03574 -0.01161267 +7.471917 10.03574 -0.01161267 +10.03574 10.03574 -0.01161267 +13.47828 10.03574 -0.01161267 +18.10068 10.03574 -0.01161267 +24.30731 10.03574 -0.01161267 +32.64117 10.03574 -0.01161267 +43.83129 10.03574 -0.01161267 +58.85664 10.03574 -0.01161267 +-0.0175068 13.47828 -0.01161267 +-0.01161267 13.47828 -0.01161267 +-0.005718534 13.47828 -0.01161267 +0.0001755984 13.47828 -0.01161267 +0.006069731 13.47828 -0.01161267 +0.01197402 13.47828 -0.01161267 +0.01903886 13.47828 -0.01161267 +0.02852504 13.47828 -0.01161267 +0.04126244 13.47828 -0.01161267 +0.05836535 13.47828 -0.01161267 +0.08132997 13.47828 -0.01161267 +0.1121653 13.47828 -0.01161267 +0.1535689 13.47828 -0.01161267 +0.2091628 13.47828 -0.01161267 +0.2838106 13.47828 -0.01161267 +0.3840425 13.47828 -0.01161267 +0.518627 13.47828 -0.01161267 +0.6993381 13.47828 -0.01161267 +0.9419845 13.47828 -0.01161267 +1.267794 13.47828 -0.01161267 +1.705268 13.47828 -0.01161267 +2.292679 13.47828 -0.01161267 +3.081414 13.47828 -0.01161267 +4.140474 13.47828 -0.01161267 +5.562508 13.47828 -0.01161267 +7.471917 13.47828 -0.01161267 +10.03574 13.47828 -0.01161267 +13.47828 13.47828 -0.01161267 +18.10068 13.47828 -0.01161267 +24.30731 13.47828 -0.01161267 +32.64117 13.47828 -0.01161267 +43.83129 13.47828 -0.01161267 +58.85664 13.47828 -0.01161267 +-0.0175068 18.10068 -0.01161267 +-0.01161267 18.10068 -0.01161267 +-0.005718534 18.10068 -0.01161267 +0.0001755984 18.10068 -0.01161267 +0.006069731 18.10068 -0.01161267 +0.01197402 18.10068 -0.01161267 +0.01903886 18.10068 -0.01161267 +0.02852504 18.10068 -0.01161267 +0.04126244 18.10068 -0.01161267 +0.05836535 18.10068 -0.01161267 +0.08132997 18.10068 -0.01161267 +0.1121653 18.10068 -0.01161267 +0.1535689 18.10068 -0.01161267 +0.2091628 18.10068 -0.01161267 +0.2838106 18.10068 -0.01161267 +0.3840425 18.10068 -0.01161267 +0.518627 18.10068 -0.01161267 +0.6993381 18.10068 -0.01161267 +0.9419845 18.10068 -0.01161267 +1.267794 18.10068 -0.01161267 +1.705268 18.10068 -0.01161267 +2.292679 18.10068 -0.01161267 +3.081414 18.10068 -0.01161267 +4.140474 18.10068 -0.01161267 +5.562508 18.10068 -0.01161267 +7.471917 18.10068 -0.01161267 +10.03574 18.10068 -0.01161267 +13.47828 18.10068 -0.01161267 +18.10068 18.10068 -0.01161267 +24.30731 18.10068 -0.01161267 +32.64117 18.10068 -0.01161267 +43.83129 18.10068 -0.01161267 +58.85664 18.10068 -0.01161267 +-0.0175068 24.30731 -0.01161267 +-0.01161267 24.30731 -0.01161267 +-0.005718534 24.30731 -0.01161267 +0.0001755984 24.30731 -0.01161267 +0.006069731 24.30731 -0.01161267 +0.01197402 24.30731 -0.01161267 +0.01903886 24.30731 -0.01161267 +0.02852504 24.30731 -0.01161267 +0.04126244 24.30731 -0.01161267 +0.05836535 24.30731 -0.01161267 +0.08132997 24.30731 -0.01161267 +0.1121653 24.30731 -0.01161267 +0.1535689 24.30731 -0.01161267 +0.2091628 24.30731 -0.01161267 +0.2838106 24.30731 -0.01161267 +0.3840425 24.30731 -0.01161267 +0.518627 24.30731 -0.01161267 +0.6993381 24.30731 -0.01161267 +0.9419845 24.30731 -0.01161267 +1.267794 24.30731 -0.01161267 +1.705268 24.30731 -0.01161267 +2.292679 24.30731 -0.01161267 +3.081414 24.30731 -0.01161267 +4.140474 24.30731 -0.01161267 +5.562508 24.30731 -0.01161267 +7.471917 24.30731 -0.01161267 +10.03574 24.30731 -0.01161267 +13.47828 24.30731 -0.01161267 +18.10068 24.30731 -0.01161267 +24.30731 24.30731 -0.01161267 +32.64117 24.30731 -0.01161267 +43.83129 24.30731 -0.01161267 +58.85664 24.30731 -0.01161267 +-0.0175068 32.64117 -0.01161267 +-0.01161267 32.64117 -0.01161267 +-0.005718534 32.64117 -0.01161267 +0.0001755984 32.64117 -0.01161267 +0.006069731 32.64117 -0.01161267 +0.01197402 32.64117 -0.01161267 +0.01903886 32.64117 -0.01161267 +0.02852504 32.64117 -0.01161267 +0.04126244 32.64117 -0.01161267 +0.05836535 32.64117 -0.01161267 +0.08132997 32.64117 -0.01161267 +0.1121653 32.64117 -0.01161267 +0.1535689 32.64117 -0.01161267 +0.2091628 32.64117 -0.01161267 +0.2838106 32.64117 -0.01161267 +0.3840425 32.64117 -0.01161267 +0.518627 32.64117 -0.01161267 +0.6993381 32.64117 -0.01161267 +0.9419845 32.64117 -0.01161267 +1.267794 32.64117 -0.01161267 +1.705268 32.64117 -0.01161267 +2.292679 32.64117 -0.01161267 +3.081414 32.64117 -0.01161267 +4.140474 32.64117 -0.01161267 +5.562508 32.64117 -0.01161267 +7.471917 32.64117 -0.01161267 +10.03574 32.64117 -0.01161267 +13.47828 32.64117 -0.01161267 +18.10068 32.64117 -0.01161267 +24.30731 32.64117 -0.01161267 +32.64117 32.64117 -0.01161267 +43.83129 32.64117 -0.01161267 +58.85664 32.64117 -0.01161267 +-0.0175068 43.83129 -0.01161267 +-0.01161267 43.83129 -0.01161267 +-0.005718534 43.83129 -0.01161267 +0.0001755984 43.83129 -0.01161267 +0.006069731 43.83129 -0.01161267 +0.01197402 43.83129 -0.01161267 +0.01903886 43.83129 -0.01161267 +0.02852504 43.83129 -0.01161267 +0.04126244 43.83129 -0.01161267 +0.05836535 43.83129 -0.01161267 +0.08132997 43.83129 -0.01161267 +0.1121653 43.83129 -0.01161267 +0.1535689 43.83129 -0.01161267 +0.2091628 43.83129 -0.01161267 +0.2838106 43.83129 -0.01161267 +0.3840425 43.83129 -0.01161267 +0.518627 43.83129 -0.01161267 +0.6993381 43.83129 -0.01161267 +0.9419845 43.83129 -0.01161267 +1.267794 43.83129 -0.01161267 +1.705268 43.83129 -0.01161267 +2.292679 43.83129 -0.01161267 +3.081414 43.83129 -0.01161267 +4.140474 43.83129 -0.01161267 +5.562508 43.83129 -0.01161267 +7.471917 43.83129 -0.01161267 +10.03574 43.83129 -0.01161267 +13.47828 43.83129 -0.01161267 +18.10068 43.83129 -0.01161267 +24.30731 43.83129 -0.01161267 +32.64117 43.83129 -0.01161267 +43.83129 43.83129 -0.01161267 +58.85664 43.83129 -0.01161267 +-0.0175068 58.85664 -0.01161267 +-0.01161267 58.85664 -0.01161267 +-0.005718534 58.85664 -0.01161267 +0.0001755984 58.85664 -0.01161267 +0.006069731 58.85664 -0.01161267 +0.01197402 58.85664 -0.01161267 +0.01903886 58.85664 -0.01161267 +0.02852504 58.85664 -0.01161267 +0.04126244 58.85664 -0.01161267 +0.05836535 58.85664 -0.01161267 +0.08132997 58.85664 -0.01161267 +0.1121653 58.85664 -0.01161267 +0.1535689 58.85664 -0.01161267 +0.2091628 58.85664 -0.01161267 +0.2838106 58.85664 -0.01161267 +0.3840425 58.85664 -0.01161267 +0.518627 58.85664 -0.01161267 +0.6993381 58.85664 -0.01161267 +0.9419845 58.85664 -0.01161267 +1.267794 58.85664 -0.01161267 +1.705268 58.85664 -0.01161267 +2.292679 58.85664 -0.01161267 +3.081414 58.85664 -0.01161267 +4.140474 58.85664 -0.01161267 +5.562508 58.85664 -0.01161267 +7.471917 58.85664 -0.01161267 +10.03574 58.85664 -0.01161267 +13.47828 58.85664 -0.01161267 +18.10068 58.85664 -0.01161267 +24.30731 58.85664 -0.01161267 +32.64117 58.85664 -0.01161267 +43.83129 58.85664 -0.01161267 +58.85664 58.85664 -0.01161267 +-0.0175068 -0.0175068 -0.005718534 +-0.01161267 -0.0175068 -0.005718534 +-0.005718534 -0.0175068 -0.005718534 +0.0001755984 -0.0175068 -0.005718534 +0.006069731 -0.0175068 -0.005718534 +0.01197402 -0.0175068 -0.005718534 +0.01903886 -0.0175068 -0.005718534 +0.02852504 -0.0175068 -0.005718534 +0.04126244 -0.0175068 -0.005718534 +0.05836535 -0.0175068 -0.005718534 +0.08132997 -0.0175068 -0.005718534 +0.1121653 -0.0175068 -0.005718534 +0.1535689 -0.0175068 -0.005718534 +0.2091628 -0.0175068 -0.005718534 +0.2838106 -0.0175068 -0.005718534 +0.3840425 -0.0175068 -0.005718534 +0.518627 -0.0175068 -0.005718534 +0.6993381 -0.0175068 -0.005718534 +0.9419845 -0.0175068 -0.005718534 +1.267794 -0.0175068 -0.005718534 +1.705268 -0.0175068 -0.005718534 +2.292679 -0.0175068 -0.005718534 +3.081414 -0.0175068 -0.005718534 +4.140474 -0.0175068 -0.005718534 +5.562508 -0.0175068 -0.005718534 +7.471917 -0.0175068 -0.005718534 +10.03574 -0.0175068 -0.005718534 +13.47828 -0.0175068 -0.005718534 +18.10068 -0.0175068 -0.005718534 +24.30731 -0.0175068 -0.005718534 +32.64117 -0.0175068 -0.005718534 +43.83129 -0.0175068 -0.005718534 +58.85664 -0.0175068 -0.005718534 +-0.0175068 -0.01161267 -0.005718534 +-0.01161267 -0.01161267 -0.005718534 +-0.005718534 -0.01161267 -0.005718534 +0.0001755984 -0.01161267 -0.005718534 +0.006069731 -0.01161267 -0.005718534 +0.01197402 -0.01161267 -0.005718534 +0.01903886 -0.01161267 -0.005718534 +0.02852504 -0.01161267 -0.005718534 +0.04126244 -0.01161267 -0.005718534 +0.05836535 -0.01161267 -0.005718534 +0.08132997 -0.01161267 -0.005718534 +0.1121653 -0.01161267 -0.005718534 +0.1535689 -0.01161267 -0.005718534 +0.2091628 -0.01161267 -0.005718534 +0.2838106 -0.01161267 -0.005718534 +0.3840425 -0.01161267 -0.005718534 +0.518627 -0.01161267 -0.005718534 +0.6993381 -0.01161267 -0.005718534 +0.9419845 -0.01161267 -0.005718534 +1.267794 -0.01161267 -0.005718534 +1.705268 -0.01161267 -0.005718534 +2.292679 -0.01161267 -0.005718534 +3.081414 -0.01161267 -0.005718534 +4.140474 -0.01161267 -0.005718534 +5.562508 -0.01161267 -0.005718534 +7.471917 -0.01161267 -0.005718534 +10.03574 -0.01161267 -0.005718534 +13.47828 -0.01161267 -0.005718534 +18.10068 -0.01161267 -0.005718534 +24.30731 -0.01161267 -0.005718534 +32.64117 -0.01161267 -0.005718534 +43.83129 -0.01161267 -0.005718534 +58.85664 -0.01161267 -0.005718534 +-0.0175068 -0.005718534 -0.005718534 +-0.01161267 -0.005718534 -0.005718534 +-0.005718534 -0.005718534 -0.005718534 +0.0001755984 -0.005718534 -0.005718534 +0.006069731 -0.005718534 -0.005718534 +0.01197402 -0.005718534 -0.005718534 +0.01903886 -0.005718534 -0.005718534 +0.02852504 -0.005718534 -0.005718534 +0.04126244 -0.005718534 -0.005718534 +0.05836535 -0.005718534 -0.005718534 +0.08132997 -0.005718534 -0.005718534 +0.1121653 -0.005718534 -0.005718534 +0.1535689 -0.005718534 -0.005718534 +0.2091628 -0.005718534 -0.005718534 +0.2838106 -0.005718534 -0.005718534 +0.3840425 -0.005718534 -0.005718534 +0.518627 -0.005718534 -0.005718534 +0.6993381 -0.005718534 -0.005718534 +0.9419845 -0.005718534 -0.005718534 +1.267794 -0.005718534 -0.005718534 +1.705268 -0.005718534 -0.005718534 +2.292679 -0.005718534 -0.005718534 +3.081414 -0.005718534 -0.005718534 +4.140474 -0.005718534 -0.005718534 +5.562508 -0.005718534 -0.005718534 +7.471917 -0.005718534 -0.005718534 +10.03574 -0.005718534 -0.005718534 +13.47828 -0.005718534 -0.005718534 +18.10068 -0.005718534 -0.005718534 +24.30731 -0.005718534 -0.005718534 +32.64117 -0.005718534 -0.005718534 +43.83129 -0.005718534 -0.005718534 +58.85664 -0.005718534 -0.005718534 +-0.0175068 0.0001755984 -0.005718534 +-0.01161267 0.0001755984 -0.005718534 +-0.005718534 0.0001755984 -0.005718534 +0.0001755984 0.0001755984 -0.005718534 +0.006069731 0.0001755984 -0.005718534 +0.01197402 0.0001755984 -0.005718534 +0.01903886 0.0001755984 -0.005718534 +0.02852504 0.0001755984 -0.005718534 +0.04126244 0.0001755984 -0.005718534 +0.05836535 0.0001755984 -0.005718534 +0.08132997 0.0001755984 -0.005718534 +0.1121653 0.0001755984 -0.005718534 +0.1535689 0.0001755984 -0.005718534 +0.2091628 0.0001755984 -0.005718534 +0.2838106 0.0001755984 -0.005718534 +0.3840425 0.0001755984 -0.005718534 +0.518627 0.0001755984 -0.005718534 +0.6993381 0.0001755984 -0.005718534 +0.9419845 0.0001755984 -0.005718534 +1.267794 0.0001755984 -0.005718534 +1.705268 0.0001755984 -0.005718534 +2.292679 0.0001755984 -0.005718534 +3.081414 0.0001755984 -0.005718534 +4.140474 0.0001755984 -0.005718534 +5.562508 0.0001755984 -0.005718534 +7.471917 0.0001755984 -0.005718534 +10.03574 0.0001755984 -0.005718534 +13.47828 0.0001755984 -0.005718534 +18.10068 0.0001755984 -0.005718534 +24.30731 0.0001755984 -0.005718534 +32.64117 0.0001755984 -0.005718534 +43.83129 0.0001755984 -0.005718534 +58.85664 0.0001755984 -0.005718534 +-0.0175068 0.006069731 -0.005718534 +-0.01161267 0.006069731 -0.005718534 +-0.005718534 0.006069731 -0.005718534 +0.0001755984 0.006069731 -0.005718534 +0.006069731 0.006069731 -0.005718534 +0.01197402 0.006069731 -0.005718534 +0.01903886 0.006069731 -0.005718534 +0.02852504 0.006069731 -0.005718534 +0.04126244 0.006069731 -0.005718534 +0.05836535 0.006069731 -0.005718534 +0.08132997 0.006069731 -0.005718534 +0.1121653 0.006069731 -0.005718534 +0.1535689 0.006069731 -0.005718534 +0.2091628 0.006069731 -0.005718534 +0.2838106 0.006069731 -0.005718534 +0.3840425 0.006069731 -0.005718534 +0.518627 0.006069731 -0.005718534 +0.6993381 0.006069731 -0.005718534 +0.9419845 0.006069731 -0.005718534 +1.267794 0.006069731 -0.005718534 +1.705268 0.006069731 -0.005718534 +2.292679 0.006069731 -0.005718534 +3.081414 0.006069731 -0.005718534 +4.140474 0.006069731 -0.005718534 +5.562508 0.006069731 -0.005718534 +7.471917 0.006069731 -0.005718534 +10.03574 0.006069731 -0.005718534 +13.47828 0.006069731 -0.005718534 +18.10068 0.006069731 -0.005718534 +24.30731 0.006069731 -0.005718534 +32.64117 0.006069731 -0.005718534 +43.83129 0.006069731 -0.005718534 +58.85664 0.006069731 -0.005718534 +-0.0175068 0.01197402 -0.005718534 +-0.01161267 0.01197402 -0.005718534 +-0.005718534 0.01197402 -0.005718534 +0.0001755984 0.01197402 -0.005718534 +0.006069731 0.01197402 -0.005718534 +0.01197402 0.01197402 -0.005718534 +0.01903886 0.01197402 -0.005718534 +0.02852504 0.01197402 -0.005718534 +0.04126244 0.01197402 -0.005718534 +0.05836535 0.01197402 -0.005718534 +0.08132997 0.01197402 -0.005718534 +0.1121653 0.01197402 -0.005718534 +0.1535689 0.01197402 -0.005718534 +0.2091628 0.01197402 -0.005718534 +0.2838106 0.01197402 -0.005718534 +0.3840425 0.01197402 -0.005718534 +0.518627 0.01197402 -0.005718534 +0.6993381 0.01197402 -0.005718534 +0.9419845 0.01197402 -0.005718534 +1.267794 0.01197402 -0.005718534 +1.705268 0.01197402 -0.005718534 +2.292679 0.01197402 -0.005718534 +3.081414 0.01197402 -0.005718534 +4.140474 0.01197402 -0.005718534 +5.562508 0.01197402 -0.005718534 +7.471917 0.01197402 -0.005718534 +10.03574 0.01197402 -0.005718534 +13.47828 0.01197402 -0.005718534 +18.10068 0.01197402 -0.005718534 +24.30731 0.01197402 -0.005718534 +32.64117 0.01197402 -0.005718534 +43.83129 0.01197402 -0.005718534 +58.85664 0.01197402 -0.005718534 +-0.0175068 0.01903886 -0.005718534 +-0.01161267 0.01903886 -0.005718534 +-0.005718534 0.01903886 -0.005718534 +0.0001755984 0.01903886 -0.005718534 +0.006069731 0.01903886 -0.005718534 +0.01197402 0.01903886 -0.005718534 +0.01903886 0.01903886 -0.005718534 +0.02852504 0.01903886 -0.005718534 +0.04126244 0.01903886 -0.005718534 +0.05836535 0.01903886 -0.005718534 +0.08132997 0.01903886 -0.005718534 +0.1121653 0.01903886 -0.005718534 +0.1535689 0.01903886 -0.005718534 +0.2091628 0.01903886 -0.005718534 +0.2838106 0.01903886 -0.005718534 +0.3840425 0.01903886 -0.005718534 +0.518627 0.01903886 -0.005718534 +0.6993381 0.01903886 -0.005718534 +0.9419845 0.01903886 -0.005718534 +1.267794 0.01903886 -0.005718534 +1.705268 0.01903886 -0.005718534 +2.292679 0.01903886 -0.005718534 +3.081414 0.01903886 -0.005718534 +4.140474 0.01903886 -0.005718534 +5.562508 0.01903886 -0.005718534 +7.471917 0.01903886 -0.005718534 +10.03574 0.01903886 -0.005718534 +13.47828 0.01903886 -0.005718534 +18.10068 0.01903886 -0.005718534 +24.30731 0.01903886 -0.005718534 +32.64117 0.01903886 -0.005718534 +43.83129 0.01903886 -0.005718534 +58.85664 0.01903886 -0.005718534 +-0.0175068 0.02852504 -0.005718534 +-0.01161267 0.02852504 -0.005718534 +-0.005718534 0.02852504 -0.005718534 +0.0001755984 0.02852504 -0.005718534 +0.006069731 0.02852504 -0.005718534 +0.01197402 0.02852504 -0.005718534 +0.01903886 0.02852504 -0.005718534 +0.02852504 0.02852504 -0.005718534 +0.04126244 0.02852504 -0.005718534 +0.05836535 0.02852504 -0.005718534 +0.08132997 0.02852504 -0.005718534 +0.1121653 0.02852504 -0.005718534 +0.1535689 0.02852504 -0.005718534 +0.2091628 0.02852504 -0.005718534 +0.2838106 0.02852504 -0.005718534 +0.3840425 0.02852504 -0.005718534 +0.518627 0.02852504 -0.005718534 +0.6993381 0.02852504 -0.005718534 +0.9419845 0.02852504 -0.005718534 +1.267794 0.02852504 -0.005718534 +1.705268 0.02852504 -0.005718534 +2.292679 0.02852504 -0.005718534 +3.081414 0.02852504 -0.005718534 +4.140474 0.02852504 -0.005718534 +5.562508 0.02852504 -0.005718534 +7.471917 0.02852504 -0.005718534 +10.03574 0.02852504 -0.005718534 +13.47828 0.02852504 -0.005718534 +18.10068 0.02852504 -0.005718534 +24.30731 0.02852504 -0.005718534 +32.64117 0.02852504 -0.005718534 +43.83129 0.02852504 -0.005718534 +58.85664 0.02852504 -0.005718534 +-0.0175068 0.04126244 -0.005718534 +-0.01161267 0.04126244 -0.005718534 +-0.005718534 0.04126244 -0.005718534 +0.0001755984 0.04126244 -0.005718534 +0.006069731 0.04126244 -0.005718534 +0.01197402 0.04126244 -0.005718534 +0.01903886 0.04126244 -0.005718534 +0.02852504 0.04126244 -0.005718534 +0.04126244 0.04126244 -0.005718534 +0.05836535 0.04126244 -0.005718534 +0.08132997 0.04126244 -0.005718534 +0.1121653 0.04126244 -0.005718534 +0.1535689 0.04126244 -0.005718534 +0.2091628 0.04126244 -0.005718534 +0.2838106 0.04126244 -0.005718534 +0.3840425 0.04126244 -0.005718534 +0.518627 0.04126244 -0.005718534 +0.6993381 0.04126244 -0.005718534 +0.9419845 0.04126244 -0.005718534 +1.267794 0.04126244 -0.005718534 +1.705268 0.04126244 -0.005718534 +2.292679 0.04126244 -0.005718534 +3.081414 0.04126244 -0.005718534 +4.140474 0.04126244 -0.005718534 +5.562508 0.04126244 -0.005718534 +7.471917 0.04126244 -0.005718534 +10.03574 0.04126244 -0.005718534 +13.47828 0.04126244 -0.005718534 +18.10068 0.04126244 -0.005718534 +24.30731 0.04126244 -0.005718534 +32.64117 0.04126244 -0.005718534 +43.83129 0.04126244 -0.005718534 +58.85664 0.04126244 -0.005718534 +-0.0175068 0.05836535 -0.005718534 +-0.01161267 0.05836535 -0.005718534 +-0.005718534 0.05836535 -0.005718534 +0.0001755984 0.05836535 -0.005718534 +0.006069731 0.05836535 -0.005718534 +0.01197402 0.05836535 -0.005718534 +0.01903886 0.05836535 -0.005718534 +0.02852504 0.05836535 -0.005718534 +0.04126244 0.05836535 -0.005718534 +0.05836535 0.05836535 -0.005718534 +0.08132997 0.05836535 -0.005718534 +0.1121653 0.05836535 -0.005718534 +0.1535689 0.05836535 -0.005718534 +0.2091628 0.05836535 -0.005718534 +0.2838106 0.05836535 -0.005718534 +0.3840425 0.05836535 -0.005718534 +0.518627 0.05836535 -0.005718534 +0.6993381 0.05836535 -0.005718534 +0.9419845 0.05836535 -0.005718534 +1.267794 0.05836535 -0.005718534 +1.705268 0.05836535 -0.005718534 +2.292679 0.05836535 -0.005718534 +3.081414 0.05836535 -0.005718534 +4.140474 0.05836535 -0.005718534 +5.562508 0.05836535 -0.005718534 +7.471917 0.05836535 -0.005718534 +10.03574 0.05836535 -0.005718534 +13.47828 0.05836535 -0.005718534 +18.10068 0.05836535 -0.005718534 +24.30731 0.05836535 -0.005718534 +32.64117 0.05836535 -0.005718534 +43.83129 0.05836535 -0.005718534 +58.85664 0.05836535 -0.005718534 +-0.0175068 0.08132997 -0.005718534 +-0.01161267 0.08132997 -0.005718534 +-0.005718534 0.08132997 -0.005718534 +0.0001755984 0.08132997 -0.005718534 +0.006069731 0.08132997 -0.005718534 +0.01197402 0.08132997 -0.005718534 +0.01903886 0.08132997 -0.005718534 +0.02852504 0.08132997 -0.005718534 +0.04126244 0.08132997 -0.005718534 +0.05836535 0.08132997 -0.005718534 +0.08132997 0.08132997 -0.005718534 +0.1121653 0.08132997 -0.005718534 +0.1535689 0.08132997 -0.005718534 +0.2091628 0.08132997 -0.005718534 +0.2838106 0.08132997 -0.005718534 +0.3840425 0.08132997 -0.005718534 +0.518627 0.08132997 -0.005718534 +0.6993381 0.08132997 -0.005718534 +0.9419845 0.08132997 -0.005718534 +1.267794 0.08132997 -0.005718534 +1.705268 0.08132997 -0.005718534 +2.292679 0.08132997 -0.005718534 +3.081414 0.08132997 -0.005718534 +4.140474 0.08132997 -0.005718534 +5.562508 0.08132997 -0.005718534 +7.471917 0.08132997 -0.005718534 +10.03574 0.08132997 -0.005718534 +13.47828 0.08132997 -0.005718534 +18.10068 0.08132997 -0.005718534 +24.30731 0.08132997 -0.005718534 +32.64117 0.08132997 -0.005718534 +43.83129 0.08132997 -0.005718534 +58.85664 0.08132997 -0.005718534 +-0.0175068 0.1121653 -0.005718534 +-0.01161267 0.1121653 -0.005718534 +-0.005718534 0.1121653 -0.005718534 +0.0001755984 0.1121653 -0.005718534 +0.006069731 0.1121653 -0.005718534 +0.01197402 0.1121653 -0.005718534 +0.01903886 0.1121653 -0.005718534 +0.02852504 0.1121653 -0.005718534 +0.04126244 0.1121653 -0.005718534 +0.05836535 0.1121653 -0.005718534 +0.08132997 0.1121653 -0.005718534 +0.1121653 0.1121653 -0.005718534 +0.1535689 0.1121653 -0.005718534 +0.2091628 0.1121653 -0.005718534 +0.2838106 0.1121653 -0.005718534 +0.3840425 0.1121653 -0.005718534 +0.518627 0.1121653 -0.005718534 +0.6993381 0.1121653 -0.005718534 +0.9419845 0.1121653 -0.005718534 +1.267794 0.1121653 -0.005718534 +1.705268 0.1121653 -0.005718534 +2.292679 0.1121653 -0.005718534 +3.081414 0.1121653 -0.005718534 +4.140474 0.1121653 -0.005718534 +5.562508 0.1121653 -0.005718534 +7.471917 0.1121653 -0.005718534 +10.03574 0.1121653 -0.005718534 +13.47828 0.1121653 -0.005718534 +18.10068 0.1121653 -0.005718534 +24.30731 0.1121653 -0.005718534 +32.64117 0.1121653 -0.005718534 +43.83129 0.1121653 -0.005718534 +58.85664 0.1121653 -0.005718534 +-0.0175068 0.1535689 -0.005718534 +-0.01161267 0.1535689 -0.005718534 +-0.005718534 0.1535689 -0.005718534 +0.0001755984 0.1535689 -0.005718534 +0.006069731 0.1535689 -0.005718534 +0.01197402 0.1535689 -0.005718534 +0.01903886 0.1535689 -0.005718534 +0.02852504 0.1535689 -0.005718534 +0.04126244 0.1535689 -0.005718534 +0.05836535 0.1535689 -0.005718534 +0.08132997 0.1535689 -0.005718534 +0.1121653 0.1535689 -0.005718534 +0.1535689 0.1535689 -0.005718534 +0.2091628 0.1535689 -0.005718534 +0.2838106 0.1535689 -0.005718534 +0.3840425 0.1535689 -0.005718534 +0.518627 0.1535689 -0.005718534 +0.6993381 0.1535689 -0.005718534 +0.9419845 0.1535689 -0.005718534 +1.267794 0.1535689 -0.005718534 +1.705268 0.1535689 -0.005718534 +2.292679 0.1535689 -0.005718534 +3.081414 0.1535689 -0.005718534 +4.140474 0.1535689 -0.005718534 +5.562508 0.1535689 -0.005718534 +7.471917 0.1535689 -0.005718534 +10.03574 0.1535689 -0.005718534 +13.47828 0.1535689 -0.005718534 +18.10068 0.1535689 -0.005718534 +24.30731 0.1535689 -0.005718534 +32.64117 0.1535689 -0.005718534 +43.83129 0.1535689 -0.005718534 +58.85664 0.1535689 -0.005718534 +-0.0175068 0.2091628 -0.005718534 +-0.01161267 0.2091628 -0.005718534 +-0.005718534 0.2091628 -0.005718534 +0.0001755984 0.2091628 -0.005718534 +0.006069731 0.2091628 -0.005718534 +0.01197402 0.2091628 -0.005718534 +0.01903886 0.2091628 -0.005718534 +0.02852504 0.2091628 -0.005718534 +0.04126244 0.2091628 -0.005718534 +0.05836535 0.2091628 -0.005718534 +0.08132997 0.2091628 -0.005718534 +0.1121653 0.2091628 -0.005718534 +0.1535689 0.2091628 -0.005718534 +0.2091628 0.2091628 -0.005718534 +0.2838106 0.2091628 -0.005718534 +0.3840425 0.2091628 -0.005718534 +0.518627 0.2091628 -0.005718534 +0.6993381 0.2091628 -0.005718534 +0.9419845 0.2091628 -0.005718534 +1.267794 0.2091628 -0.005718534 +1.705268 0.2091628 -0.005718534 +2.292679 0.2091628 -0.005718534 +3.081414 0.2091628 -0.005718534 +4.140474 0.2091628 -0.005718534 +5.562508 0.2091628 -0.005718534 +7.471917 0.2091628 -0.005718534 +10.03574 0.2091628 -0.005718534 +13.47828 0.2091628 -0.005718534 +18.10068 0.2091628 -0.005718534 +24.30731 0.2091628 -0.005718534 +32.64117 0.2091628 -0.005718534 +43.83129 0.2091628 -0.005718534 +58.85664 0.2091628 -0.005718534 +-0.0175068 0.2838106 -0.005718534 +-0.01161267 0.2838106 -0.005718534 +-0.005718534 0.2838106 -0.005718534 +0.0001755984 0.2838106 -0.005718534 +0.006069731 0.2838106 -0.005718534 +0.01197402 0.2838106 -0.005718534 +0.01903886 0.2838106 -0.005718534 +0.02852504 0.2838106 -0.005718534 +0.04126244 0.2838106 -0.005718534 +0.05836535 0.2838106 -0.005718534 +0.08132997 0.2838106 -0.005718534 +0.1121653 0.2838106 -0.005718534 +0.1535689 0.2838106 -0.005718534 +0.2091628 0.2838106 -0.005718534 +0.2838106 0.2838106 -0.005718534 +0.3840425 0.2838106 -0.005718534 +0.518627 0.2838106 -0.005718534 +0.6993381 0.2838106 -0.005718534 +0.9419845 0.2838106 -0.005718534 +1.267794 0.2838106 -0.005718534 +1.705268 0.2838106 -0.005718534 +2.292679 0.2838106 -0.005718534 +3.081414 0.2838106 -0.005718534 +4.140474 0.2838106 -0.005718534 +5.562508 0.2838106 -0.005718534 +7.471917 0.2838106 -0.005718534 +10.03574 0.2838106 -0.005718534 +13.47828 0.2838106 -0.005718534 +18.10068 0.2838106 -0.005718534 +24.30731 0.2838106 -0.005718534 +32.64117 0.2838106 -0.005718534 +43.83129 0.2838106 -0.005718534 +58.85664 0.2838106 -0.005718534 +-0.0175068 0.3840425 -0.005718534 +-0.01161267 0.3840425 -0.005718534 +-0.005718534 0.3840425 -0.005718534 +0.0001755984 0.3840425 -0.005718534 +0.006069731 0.3840425 -0.005718534 +0.01197402 0.3840425 -0.005718534 +0.01903886 0.3840425 -0.005718534 +0.02852504 0.3840425 -0.005718534 +0.04126244 0.3840425 -0.005718534 +0.05836535 0.3840425 -0.005718534 +0.08132997 0.3840425 -0.005718534 +0.1121653 0.3840425 -0.005718534 +0.1535689 0.3840425 -0.005718534 +0.2091628 0.3840425 -0.005718534 +0.2838106 0.3840425 -0.005718534 +0.3840425 0.3840425 -0.005718534 +0.518627 0.3840425 -0.005718534 +0.6993381 0.3840425 -0.005718534 +0.9419845 0.3840425 -0.005718534 +1.267794 0.3840425 -0.005718534 +1.705268 0.3840425 -0.005718534 +2.292679 0.3840425 -0.005718534 +3.081414 0.3840425 -0.005718534 +4.140474 0.3840425 -0.005718534 +5.562508 0.3840425 -0.005718534 +7.471917 0.3840425 -0.005718534 +10.03574 0.3840425 -0.005718534 +13.47828 0.3840425 -0.005718534 +18.10068 0.3840425 -0.005718534 +24.30731 0.3840425 -0.005718534 +32.64117 0.3840425 -0.005718534 +43.83129 0.3840425 -0.005718534 +58.85664 0.3840425 -0.005718534 +-0.0175068 0.518627 -0.005718534 +-0.01161267 0.518627 -0.005718534 +-0.005718534 0.518627 -0.005718534 +0.0001755984 0.518627 -0.005718534 +0.006069731 0.518627 -0.005718534 +0.01197402 0.518627 -0.005718534 +0.01903886 0.518627 -0.005718534 +0.02852504 0.518627 -0.005718534 +0.04126244 0.518627 -0.005718534 +0.05836535 0.518627 -0.005718534 +0.08132997 0.518627 -0.005718534 +0.1121653 0.518627 -0.005718534 +0.1535689 0.518627 -0.005718534 +0.2091628 0.518627 -0.005718534 +0.2838106 0.518627 -0.005718534 +0.3840425 0.518627 -0.005718534 +0.518627 0.518627 -0.005718534 +0.6993381 0.518627 -0.005718534 +0.9419845 0.518627 -0.005718534 +1.267794 0.518627 -0.005718534 +1.705268 0.518627 -0.005718534 +2.292679 0.518627 -0.005718534 +3.081414 0.518627 -0.005718534 +4.140474 0.518627 -0.005718534 +5.562508 0.518627 -0.005718534 +7.471917 0.518627 -0.005718534 +10.03574 0.518627 -0.005718534 +13.47828 0.518627 -0.005718534 +18.10068 0.518627 -0.005718534 +24.30731 0.518627 -0.005718534 +32.64117 0.518627 -0.005718534 +43.83129 0.518627 -0.005718534 +58.85664 0.518627 -0.005718534 +-0.0175068 0.6993381 -0.005718534 +-0.01161267 0.6993381 -0.005718534 +-0.005718534 0.6993381 -0.005718534 +0.0001755984 0.6993381 -0.005718534 +0.006069731 0.6993381 -0.005718534 +0.01197402 0.6993381 -0.005718534 +0.01903886 0.6993381 -0.005718534 +0.02852504 0.6993381 -0.005718534 +0.04126244 0.6993381 -0.005718534 +0.05836535 0.6993381 -0.005718534 +0.08132997 0.6993381 -0.005718534 +0.1121653 0.6993381 -0.005718534 +0.1535689 0.6993381 -0.005718534 +0.2091628 0.6993381 -0.005718534 +0.2838106 0.6993381 -0.005718534 +0.3840425 0.6993381 -0.005718534 +0.518627 0.6993381 -0.005718534 +0.6993381 0.6993381 -0.005718534 +0.9419845 0.6993381 -0.005718534 +1.267794 0.6993381 -0.005718534 +1.705268 0.6993381 -0.005718534 +2.292679 0.6993381 -0.005718534 +3.081414 0.6993381 -0.005718534 +4.140474 0.6993381 -0.005718534 +5.562508 0.6993381 -0.005718534 +7.471917 0.6993381 -0.005718534 +10.03574 0.6993381 -0.005718534 +13.47828 0.6993381 -0.005718534 +18.10068 0.6993381 -0.005718534 +24.30731 0.6993381 -0.005718534 +32.64117 0.6993381 -0.005718534 +43.83129 0.6993381 -0.005718534 +58.85664 0.6993381 -0.005718534 +-0.0175068 0.9419845 -0.005718534 +-0.01161267 0.9419845 -0.005718534 +-0.005718534 0.9419845 -0.005718534 +0.0001755984 0.9419845 -0.005718534 +0.006069731 0.9419845 -0.005718534 +0.01197402 0.9419845 -0.005718534 +0.01903886 0.9419845 -0.005718534 +0.02852504 0.9419845 -0.005718534 +0.04126244 0.9419845 -0.005718534 +0.05836535 0.9419845 -0.005718534 +0.08132997 0.9419845 -0.005718534 +0.1121653 0.9419845 -0.005718534 +0.1535689 0.9419845 -0.005718534 +0.2091628 0.9419845 -0.005718534 +0.2838106 0.9419845 -0.005718534 +0.3840425 0.9419845 -0.005718534 +0.518627 0.9419845 -0.005718534 +0.6993381 0.9419845 -0.005718534 +0.9419845 0.9419845 -0.005718534 +1.267794 0.9419845 -0.005718534 +1.705268 0.9419845 -0.005718534 +2.292679 0.9419845 -0.005718534 +3.081414 0.9419845 -0.005718534 +4.140474 0.9419845 -0.005718534 +5.562508 0.9419845 -0.005718534 +7.471917 0.9419845 -0.005718534 +10.03574 0.9419845 -0.005718534 +13.47828 0.9419845 -0.005718534 +18.10068 0.9419845 -0.005718534 +24.30731 0.9419845 -0.005718534 +32.64117 0.9419845 -0.005718534 +43.83129 0.9419845 -0.005718534 +58.85664 0.9419845 -0.005718534 +-0.0175068 1.267794 -0.005718534 +-0.01161267 1.267794 -0.005718534 +-0.005718534 1.267794 -0.005718534 +0.0001755984 1.267794 -0.005718534 +0.006069731 1.267794 -0.005718534 +0.01197402 1.267794 -0.005718534 +0.01903886 1.267794 -0.005718534 +0.02852504 1.267794 -0.005718534 +0.04126244 1.267794 -0.005718534 +0.05836535 1.267794 -0.005718534 +0.08132997 1.267794 -0.005718534 +0.1121653 1.267794 -0.005718534 +0.1535689 1.267794 -0.005718534 +0.2091628 1.267794 -0.005718534 +0.2838106 1.267794 -0.005718534 +0.3840425 1.267794 -0.005718534 +0.518627 1.267794 -0.005718534 +0.6993381 1.267794 -0.005718534 +0.9419845 1.267794 -0.005718534 +1.267794 1.267794 -0.005718534 +1.705268 1.267794 -0.005718534 +2.292679 1.267794 -0.005718534 +3.081414 1.267794 -0.005718534 +4.140474 1.267794 -0.005718534 +5.562508 1.267794 -0.005718534 +7.471917 1.267794 -0.005718534 +10.03574 1.267794 -0.005718534 +13.47828 1.267794 -0.005718534 +18.10068 1.267794 -0.005718534 +24.30731 1.267794 -0.005718534 +32.64117 1.267794 -0.005718534 +43.83129 1.267794 -0.005718534 +58.85664 1.267794 -0.005718534 +-0.0175068 1.705268 -0.005718534 +-0.01161267 1.705268 -0.005718534 +-0.005718534 1.705268 -0.005718534 +0.0001755984 1.705268 -0.005718534 +0.006069731 1.705268 -0.005718534 +0.01197402 1.705268 -0.005718534 +0.01903886 1.705268 -0.005718534 +0.02852504 1.705268 -0.005718534 +0.04126244 1.705268 -0.005718534 +0.05836535 1.705268 -0.005718534 +0.08132997 1.705268 -0.005718534 +0.1121653 1.705268 -0.005718534 +0.1535689 1.705268 -0.005718534 +0.2091628 1.705268 -0.005718534 +0.2838106 1.705268 -0.005718534 +0.3840425 1.705268 -0.005718534 +0.518627 1.705268 -0.005718534 +0.6993381 1.705268 -0.005718534 +0.9419845 1.705268 -0.005718534 +1.267794 1.705268 -0.005718534 +1.705268 1.705268 -0.005718534 +2.292679 1.705268 -0.005718534 +3.081414 1.705268 -0.005718534 +4.140474 1.705268 -0.005718534 +5.562508 1.705268 -0.005718534 +7.471917 1.705268 -0.005718534 +10.03574 1.705268 -0.005718534 +13.47828 1.705268 -0.005718534 +18.10068 1.705268 -0.005718534 +24.30731 1.705268 -0.005718534 +32.64117 1.705268 -0.005718534 +43.83129 1.705268 -0.005718534 +58.85664 1.705268 -0.005718534 +-0.0175068 2.292679 -0.005718534 +-0.01161267 2.292679 -0.005718534 +-0.005718534 2.292679 -0.005718534 +0.0001755984 2.292679 -0.005718534 +0.006069731 2.292679 -0.005718534 +0.01197402 2.292679 -0.005718534 +0.01903886 2.292679 -0.005718534 +0.02852504 2.292679 -0.005718534 +0.04126244 2.292679 -0.005718534 +0.05836535 2.292679 -0.005718534 +0.08132997 2.292679 -0.005718534 +0.1121653 2.292679 -0.005718534 +0.1535689 2.292679 -0.005718534 +0.2091628 2.292679 -0.005718534 +0.2838106 2.292679 -0.005718534 +0.3840425 2.292679 -0.005718534 +0.518627 2.292679 -0.005718534 +0.6993381 2.292679 -0.005718534 +0.9419845 2.292679 -0.005718534 +1.267794 2.292679 -0.005718534 +1.705268 2.292679 -0.005718534 +2.292679 2.292679 -0.005718534 +3.081414 2.292679 -0.005718534 +4.140474 2.292679 -0.005718534 +5.562508 2.292679 -0.005718534 +7.471917 2.292679 -0.005718534 +10.03574 2.292679 -0.005718534 +13.47828 2.292679 -0.005718534 +18.10068 2.292679 -0.005718534 +24.30731 2.292679 -0.005718534 +32.64117 2.292679 -0.005718534 +43.83129 2.292679 -0.005718534 +58.85664 2.292679 -0.005718534 +-0.0175068 3.081414 -0.005718534 +-0.01161267 3.081414 -0.005718534 +-0.005718534 3.081414 -0.005718534 +0.0001755984 3.081414 -0.005718534 +0.006069731 3.081414 -0.005718534 +0.01197402 3.081414 -0.005718534 +0.01903886 3.081414 -0.005718534 +0.02852504 3.081414 -0.005718534 +0.04126244 3.081414 -0.005718534 +0.05836535 3.081414 -0.005718534 +0.08132997 3.081414 -0.005718534 +0.1121653 3.081414 -0.005718534 +0.1535689 3.081414 -0.005718534 +0.2091628 3.081414 -0.005718534 +0.2838106 3.081414 -0.005718534 +0.3840425 3.081414 -0.005718534 +0.518627 3.081414 -0.005718534 +0.6993381 3.081414 -0.005718534 +0.9419845 3.081414 -0.005718534 +1.267794 3.081414 -0.005718534 +1.705268 3.081414 -0.005718534 +2.292679 3.081414 -0.005718534 +3.081414 3.081414 -0.005718534 +4.140474 3.081414 -0.005718534 +5.562508 3.081414 -0.005718534 +7.471917 3.081414 -0.005718534 +10.03574 3.081414 -0.005718534 +13.47828 3.081414 -0.005718534 +18.10068 3.081414 -0.005718534 +24.30731 3.081414 -0.005718534 +32.64117 3.081414 -0.005718534 +43.83129 3.081414 -0.005718534 +58.85664 3.081414 -0.005718534 +-0.0175068 4.140474 -0.005718534 +-0.01161267 4.140474 -0.005718534 +-0.005718534 4.140474 -0.005718534 +0.0001755984 4.140474 -0.005718534 +0.006069731 4.140474 -0.005718534 +0.01197402 4.140474 -0.005718534 +0.01903886 4.140474 -0.005718534 +0.02852504 4.140474 -0.005718534 +0.04126244 4.140474 -0.005718534 +0.05836535 4.140474 -0.005718534 +0.08132997 4.140474 -0.005718534 +0.1121653 4.140474 -0.005718534 +0.1535689 4.140474 -0.005718534 +0.2091628 4.140474 -0.005718534 +0.2838106 4.140474 -0.005718534 +0.3840425 4.140474 -0.005718534 +0.518627 4.140474 -0.005718534 +0.6993381 4.140474 -0.005718534 +0.9419845 4.140474 -0.005718534 +1.267794 4.140474 -0.005718534 +1.705268 4.140474 -0.005718534 +2.292679 4.140474 -0.005718534 +3.081414 4.140474 -0.005718534 +4.140474 4.140474 -0.005718534 +5.562508 4.140474 -0.005718534 +7.471917 4.140474 -0.005718534 +10.03574 4.140474 -0.005718534 +13.47828 4.140474 -0.005718534 +18.10068 4.140474 -0.005718534 +24.30731 4.140474 -0.005718534 +32.64117 4.140474 -0.005718534 +43.83129 4.140474 -0.005718534 +58.85664 4.140474 -0.005718534 +-0.0175068 5.562508 -0.005718534 +-0.01161267 5.562508 -0.005718534 +-0.005718534 5.562508 -0.005718534 +0.0001755984 5.562508 -0.005718534 +0.006069731 5.562508 -0.005718534 +0.01197402 5.562508 -0.005718534 +0.01903886 5.562508 -0.005718534 +0.02852504 5.562508 -0.005718534 +0.04126244 5.562508 -0.005718534 +0.05836535 5.562508 -0.005718534 +0.08132997 5.562508 -0.005718534 +0.1121653 5.562508 -0.005718534 +0.1535689 5.562508 -0.005718534 +0.2091628 5.562508 -0.005718534 +0.2838106 5.562508 -0.005718534 +0.3840425 5.562508 -0.005718534 +0.518627 5.562508 -0.005718534 +0.6993381 5.562508 -0.005718534 +0.9419845 5.562508 -0.005718534 +1.267794 5.562508 -0.005718534 +1.705268 5.562508 -0.005718534 +2.292679 5.562508 -0.005718534 +3.081414 5.562508 -0.005718534 +4.140474 5.562508 -0.005718534 +5.562508 5.562508 -0.005718534 +7.471917 5.562508 -0.005718534 +10.03574 5.562508 -0.005718534 +13.47828 5.562508 -0.005718534 +18.10068 5.562508 -0.005718534 +24.30731 5.562508 -0.005718534 +32.64117 5.562508 -0.005718534 +43.83129 5.562508 -0.005718534 +58.85664 5.562508 -0.005718534 +-0.0175068 7.471917 -0.005718534 +-0.01161267 7.471917 -0.005718534 +-0.005718534 7.471917 -0.005718534 +0.0001755984 7.471917 -0.005718534 +0.006069731 7.471917 -0.005718534 +0.01197402 7.471917 -0.005718534 +0.01903886 7.471917 -0.005718534 +0.02852504 7.471917 -0.005718534 +0.04126244 7.471917 -0.005718534 +0.05836535 7.471917 -0.005718534 +0.08132997 7.471917 -0.005718534 +0.1121653 7.471917 -0.005718534 +0.1535689 7.471917 -0.005718534 +0.2091628 7.471917 -0.005718534 +0.2838106 7.471917 -0.005718534 +0.3840425 7.471917 -0.005718534 +0.518627 7.471917 -0.005718534 +0.6993381 7.471917 -0.005718534 +0.9419845 7.471917 -0.005718534 +1.267794 7.471917 -0.005718534 +1.705268 7.471917 -0.005718534 +2.292679 7.471917 -0.005718534 +3.081414 7.471917 -0.005718534 +4.140474 7.471917 -0.005718534 +5.562508 7.471917 -0.005718534 +7.471917 7.471917 -0.005718534 +10.03574 7.471917 -0.005718534 +13.47828 7.471917 -0.005718534 +18.10068 7.471917 -0.005718534 +24.30731 7.471917 -0.005718534 +32.64117 7.471917 -0.005718534 +43.83129 7.471917 -0.005718534 +58.85664 7.471917 -0.005718534 +-0.0175068 10.03574 -0.005718534 +-0.01161267 10.03574 -0.005718534 +-0.005718534 10.03574 -0.005718534 +0.0001755984 10.03574 -0.005718534 +0.006069731 10.03574 -0.005718534 +0.01197402 10.03574 -0.005718534 +0.01903886 10.03574 -0.005718534 +0.02852504 10.03574 -0.005718534 +0.04126244 10.03574 -0.005718534 +0.05836535 10.03574 -0.005718534 +0.08132997 10.03574 -0.005718534 +0.1121653 10.03574 -0.005718534 +0.1535689 10.03574 -0.005718534 +0.2091628 10.03574 -0.005718534 +0.2838106 10.03574 -0.005718534 +0.3840425 10.03574 -0.005718534 +0.518627 10.03574 -0.005718534 +0.6993381 10.03574 -0.005718534 +0.9419845 10.03574 -0.005718534 +1.267794 10.03574 -0.005718534 +1.705268 10.03574 -0.005718534 +2.292679 10.03574 -0.005718534 +3.081414 10.03574 -0.005718534 +4.140474 10.03574 -0.005718534 +5.562508 10.03574 -0.005718534 +7.471917 10.03574 -0.005718534 +10.03574 10.03574 -0.005718534 +13.47828 10.03574 -0.005718534 +18.10068 10.03574 -0.005718534 +24.30731 10.03574 -0.005718534 +32.64117 10.03574 -0.005718534 +43.83129 10.03574 -0.005718534 +58.85664 10.03574 -0.005718534 +-0.0175068 13.47828 -0.005718534 +-0.01161267 13.47828 -0.005718534 +-0.005718534 13.47828 -0.005718534 +0.0001755984 13.47828 -0.005718534 +0.006069731 13.47828 -0.005718534 +0.01197402 13.47828 -0.005718534 +0.01903886 13.47828 -0.005718534 +0.02852504 13.47828 -0.005718534 +0.04126244 13.47828 -0.005718534 +0.05836535 13.47828 -0.005718534 +0.08132997 13.47828 -0.005718534 +0.1121653 13.47828 -0.005718534 +0.1535689 13.47828 -0.005718534 +0.2091628 13.47828 -0.005718534 +0.2838106 13.47828 -0.005718534 +0.3840425 13.47828 -0.005718534 +0.518627 13.47828 -0.005718534 +0.6993381 13.47828 -0.005718534 +0.9419845 13.47828 -0.005718534 +1.267794 13.47828 -0.005718534 +1.705268 13.47828 -0.005718534 +2.292679 13.47828 -0.005718534 +3.081414 13.47828 -0.005718534 +4.140474 13.47828 -0.005718534 +5.562508 13.47828 -0.005718534 +7.471917 13.47828 -0.005718534 +10.03574 13.47828 -0.005718534 +13.47828 13.47828 -0.005718534 +18.10068 13.47828 -0.005718534 +24.30731 13.47828 -0.005718534 +32.64117 13.47828 -0.005718534 +43.83129 13.47828 -0.005718534 +58.85664 13.47828 -0.005718534 +-0.0175068 18.10068 -0.005718534 +-0.01161267 18.10068 -0.005718534 +-0.005718534 18.10068 -0.005718534 +0.0001755984 18.10068 -0.005718534 +0.006069731 18.10068 -0.005718534 +0.01197402 18.10068 -0.005718534 +0.01903886 18.10068 -0.005718534 +0.02852504 18.10068 -0.005718534 +0.04126244 18.10068 -0.005718534 +0.05836535 18.10068 -0.005718534 +0.08132997 18.10068 -0.005718534 +0.1121653 18.10068 -0.005718534 +0.1535689 18.10068 -0.005718534 +0.2091628 18.10068 -0.005718534 +0.2838106 18.10068 -0.005718534 +0.3840425 18.10068 -0.005718534 +0.518627 18.10068 -0.005718534 +0.6993381 18.10068 -0.005718534 +0.9419845 18.10068 -0.005718534 +1.267794 18.10068 -0.005718534 +1.705268 18.10068 -0.005718534 +2.292679 18.10068 -0.005718534 +3.081414 18.10068 -0.005718534 +4.140474 18.10068 -0.005718534 +5.562508 18.10068 -0.005718534 +7.471917 18.10068 -0.005718534 +10.03574 18.10068 -0.005718534 +13.47828 18.10068 -0.005718534 +18.10068 18.10068 -0.005718534 +24.30731 18.10068 -0.005718534 +32.64117 18.10068 -0.005718534 +43.83129 18.10068 -0.005718534 +58.85664 18.10068 -0.005718534 +-0.0175068 24.30731 -0.005718534 +-0.01161267 24.30731 -0.005718534 +-0.005718534 24.30731 -0.005718534 +0.0001755984 24.30731 -0.005718534 +0.006069731 24.30731 -0.005718534 +0.01197402 24.30731 -0.005718534 +0.01903886 24.30731 -0.005718534 +0.02852504 24.30731 -0.005718534 +0.04126244 24.30731 -0.005718534 +0.05836535 24.30731 -0.005718534 +0.08132997 24.30731 -0.005718534 +0.1121653 24.30731 -0.005718534 +0.1535689 24.30731 -0.005718534 +0.2091628 24.30731 -0.005718534 +0.2838106 24.30731 -0.005718534 +0.3840425 24.30731 -0.005718534 +0.518627 24.30731 -0.005718534 +0.6993381 24.30731 -0.005718534 +0.9419845 24.30731 -0.005718534 +1.267794 24.30731 -0.005718534 +1.705268 24.30731 -0.005718534 +2.292679 24.30731 -0.005718534 +3.081414 24.30731 -0.005718534 +4.140474 24.30731 -0.005718534 +5.562508 24.30731 -0.005718534 +7.471917 24.30731 -0.005718534 +10.03574 24.30731 -0.005718534 +13.47828 24.30731 -0.005718534 +18.10068 24.30731 -0.005718534 +24.30731 24.30731 -0.005718534 +32.64117 24.30731 -0.005718534 +43.83129 24.30731 -0.005718534 +58.85664 24.30731 -0.005718534 +-0.0175068 32.64117 -0.005718534 +-0.01161267 32.64117 -0.005718534 +-0.005718534 32.64117 -0.005718534 +0.0001755984 32.64117 -0.005718534 +0.006069731 32.64117 -0.005718534 +0.01197402 32.64117 -0.005718534 +0.01903886 32.64117 -0.005718534 +0.02852504 32.64117 -0.005718534 +0.04126244 32.64117 -0.005718534 +0.05836535 32.64117 -0.005718534 +0.08132997 32.64117 -0.005718534 +0.1121653 32.64117 -0.005718534 +0.1535689 32.64117 -0.005718534 +0.2091628 32.64117 -0.005718534 +0.2838106 32.64117 -0.005718534 +0.3840425 32.64117 -0.005718534 +0.518627 32.64117 -0.005718534 +0.6993381 32.64117 -0.005718534 +0.9419845 32.64117 -0.005718534 +1.267794 32.64117 -0.005718534 +1.705268 32.64117 -0.005718534 +2.292679 32.64117 -0.005718534 +3.081414 32.64117 -0.005718534 +4.140474 32.64117 -0.005718534 +5.562508 32.64117 -0.005718534 +7.471917 32.64117 -0.005718534 +10.03574 32.64117 -0.005718534 +13.47828 32.64117 -0.005718534 +18.10068 32.64117 -0.005718534 +24.30731 32.64117 -0.005718534 +32.64117 32.64117 -0.005718534 +43.83129 32.64117 -0.005718534 +58.85664 32.64117 -0.005718534 +-0.0175068 43.83129 -0.005718534 +-0.01161267 43.83129 -0.005718534 +-0.005718534 43.83129 -0.005718534 +0.0001755984 43.83129 -0.005718534 +0.006069731 43.83129 -0.005718534 +0.01197402 43.83129 -0.005718534 +0.01903886 43.83129 -0.005718534 +0.02852504 43.83129 -0.005718534 +0.04126244 43.83129 -0.005718534 +0.05836535 43.83129 -0.005718534 +0.08132997 43.83129 -0.005718534 +0.1121653 43.83129 -0.005718534 +0.1535689 43.83129 -0.005718534 +0.2091628 43.83129 -0.005718534 +0.2838106 43.83129 -0.005718534 +0.3840425 43.83129 -0.005718534 +0.518627 43.83129 -0.005718534 +0.6993381 43.83129 -0.005718534 +0.9419845 43.83129 -0.005718534 +1.267794 43.83129 -0.005718534 +1.705268 43.83129 -0.005718534 +2.292679 43.83129 -0.005718534 +3.081414 43.83129 -0.005718534 +4.140474 43.83129 -0.005718534 +5.562508 43.83129 -0.005718534 +7.471917 43.83129 -0.005718534 +10.03574 43.83129 -0.005718534 +13.47828 43.83129 -0.005718534 +18.10068 43.83129 -0.005718534 +24.30731 43.83129 -0.005718534 +32.64117 43.83129 -0.005718534 +43.83129 43.83129 -0.005718534 +58.85664 43.83129 -0.005718534 +-0.0175068 58.85664 -0.005718534 +-0.01161267 58.85664 -0.005718534 +-0.005718534 58.85664 -0.005718534 +0.0001755984 58.85664 -0.005718534 +0.006069731 58.85664 -0.005718534 +0.01197402 58.85664 -0.005718534 +0.01903886 58.85664 -0.005718534 +0.02852504 58.85664 -0.005718534 +0.04126244 58.85664 -0.005718534 +0.05836535 58.85664 -0.005718534 +0.08132997 58.85664 -0.005718534 +0.1121653 58.85664 -0.005718534 +0.1535689 58.85664 -0.005718534 +0.2091628 58.85664 -0.005718534 +0.2838106 58.85664 -0.005718534 +0.3840425 58.85664 -0.005718534 +0.518627 58.85664 -0.005718534 +0.6993381 58.85664 -0.005718534 +0.9419845 58.85664 -0.005718534 +1.267794 58.85664 -0.005718534 +1.705268 58.85664 -0.005718534 +2.292679 58.85664 -0.005718534 +3.081414 58.85664 -0.005718534 +4.140474 58.85664 -0.005718534 +5.562508 58.85664 -0.005718534 +7.471917 58.85664 -0.005718534 +10.03574 58.85664 -0.005718534 +13.47828 58.85664 -0.005718534 +18.10068 58.85664 -0.005718534 +24.30731 58.85664 -0.005718534 +32.64117 58.85664 -0.005718534 +43.83129 58.85664 -0.005718534 +58.85664 58.85664 -0.005718534 +-0.0175068 -0.0175068 0.0001755984 +-0.01161267 -0.0175068 0.0001755984 +-0.005718534 -0.0175068 0.0001755984 +0.0001755984 -0.0175068 0.0001755984 +0.006069731 -0.0175068 0.0001755984 +0.01197402 -0.0175068 0.0001755984 +0.01903886 -0.0175068 0.0001755984 +0.02852504 -0.0175068 0.0001755984 +0.04126244 -0.0175068 0.0001755984 +0.05836535 -0.0175068 0.0001755984 +0.08132997 -0.0175068 0.0001755984 +0.1121653 -0.0175068 0.0001755984 +0.1535689 -0.0175068 0.0001755984 +0.2091628 -0.0175068 0.0001755984 +0.2838106 -0.0175068 0.0001755984 +0.3840425 -0.0175068 0.0001755984 +0.518627 -0.0175068 0.0001755984 +0.6993381 -0.0175068 0.0001755984 +0.9419845 -0.0175068 0.0001755984 +1.267794 -0.0175068 0.0001755984 +1.705268 -0.0175068 0.0001755984 +2.292679 -0.0175068 0.0001755984 +3.081414 -0.0175068 0.0001755984 +4.140474 -0.0175068 0.0001755984 +5.562508 -0.0175068 0.0001755984 +7.471917 -0.0175068 0.0001755984 +10.03574 -0.0175068 0.0001755984 +13.47828 -0.0175068 0.0001755984 +18.10068 -0.0175068 0.0001755984 +24.30731 -0.0175068 0.0001755984 +32.64117 -0.0175068 0.0001755984 +43.83129 -0.0175068 0.0001755984 +58.85664 -0.0175068 0.0001755984 +-0.0175068 -0.01161267 0.0001755984 +-0.01161267 -0.01161267 0.0001755984 +-0.005718534 -0.01161267 0.0001755984 +0.0001755984 -0.01161267 0.0001755984 +0.006069731 -0.01161267 0.0001755984 +0.01197402 -0.01161267 0.0001755984 +0.01903886 -0.01161267 0.0001755984 +0.02852504 -0.01161267 0.0001755984 +0.04126244 -0.01161267 0.0001755984 +0.05836535 -0.01161267 0.0001755984 +0.08132997 -0.01161267 0.0001755984 +0.1121653 -0.01161267 0.0001755984 +0.1535689 -0.01161267 0.0001755984 +0.2091628 -0.01161267 0.0001755984 +0.2838106 -0.01161267 0.0001755984 +0.3840425 -0.01161267 0.0001755984 +0.518627 -0.01161267 0.0001755984 +0.6993381 -0.01161267 0.0001755984 +0.9419845 -0.01161267 0.0001755984 +1.267794 -0.01161267 0.0001755984 +1.705268 -0.01161267 0.0001755984 +2.292679 -0.01161267 0.0001755984 +3.081414 -0.01161267 0.0001755984 +4.140474 -0.01161267 0.0001755984 +5.562508 -0.01161267 0.0001755984 +7.471917 -0.01161267 0.0001755984 +10.03574 -0.01161267 0.0001755984 +13.47828 -0.01161267 0.0001755984 +18.10068 -0.01161267 0.0001755984 +24.30731 -0.01161267 0.0001755984 +32.64117 -0.01161267 0.0001755984 +43.83129 -0.01161267 0.0001755984 +58.85664 -0.01161267 0.0001755984 +-0.0175068 -0.005718534 0.0001755984 +-0.01161267 -0.005718534 0.0001755984 +-0.005718534 -0.005718534 0.0001755984 +0.0001755984 -0.005718534 0.0001755984 +0.006069731 -0.005718534 0.0001755984 +0.01197402 -0.005718534 0.0001755984 +0.01903886 -0.005718534 0.0001755984 +0.02852504 -0.005718534 0.0001755984 +0.04126244 -0.005718534 0.0001755984 +0.05836535 -0.005718534 0.0001755984 +0.08132997 -0.005718534 0.0001755984 +0.1121653 -0.005718534 0.0001755984 +0.1535689 -0.005718534 0.0001755984 +0.2091628 -0.005718534 0.0001755984 +0.2838106 -0.005718534 0.0001755984 +0.3840425 -0.005718534 0.0001755984 +0.518627 -0.005718534 0.0001755984 +0.6993381 -0.005718534 0.0001755984 +0.9419845 -0.005718534 0.0001755984 +1.267794 -0.005718534 0.0001755984 +1.705268 -0.005718534 0.0001755984 +2.292679 -0.005718534 0.0001755984 +3.081414 -0.005718534 0.0001755984 +4.140474 -0.005718534 0.0001755984 +5.562508 -0.005718534 0.0001755984 +7.471917 -0.005718534 0.0001755984 +10.03574 -0.005718534 0.0001755984 +13.47828 -0.005718534 0.0001755984 +18.10068 -0.005718534 0.0001755984 +24.30731 -0.005718534 0.0001755984 +32.64117 -0.005718534 0.0001755984 +43.83129 -0.005718534 0.0001755984 +58.85664 -0.005718534 0.0001755984 +-0.0175068 0.0001755984 0.0001755984 +-0.01161267 0.0001755984 0.0001755984 +-0.005718534 0.0001755984 0.0001755984 +0.0001755984 0.0001755984 0.0001755984 +0.006069731 0.0001755984 0.0001755984 +0.01197402 0.0001755984 0.0001755984 +0.01903886 0.0001755984 0.0001755984 +0.02852504 0.0001755984 0.0001755984 +0.04126244 0.0001755984 0.0001755984 +0.05836535 0.0001755984 0.0001755984 +0.08132997 0.0001755984 0.0001755984 +0.1121653 0.0001755984 0.0001755984 +0.1535689 0.0001755984 0.0001755984 +0.2091628 0.0001755984 0.0001755984 +0.2838106 0.0001755984 0.0001755984 +0.3840425 0.0001755984 0.0001755984 +0.518627 0.0001755984 0.0001755984 +0.6993381 0.0001755984 0.0001755984 +0.9419845 0.0001755984 0.0001755984 +1.267794 0.0001755984 0.0001755984 +1.705268 0.0001755984 0.0001755984 +2.292679 0.0001755984 0.0001755984 +3.081414 0.0001755984 0.0001755984 +4.140474 0.0001755984 0.0001755984 +5.562508 0.0001755984 0.0001755984 +7.471917 0.0001755984 0.0001755984 +10.03574 0.0001755984 0.0001755984 +13.47828 0.0001755984 0.0001755984 +18.10068 0.0001755984 0.0001755984 +24.30731 0.0001755984 0.0001755984 +32.64117 0.0001755984 0.0001755984 +43.83129 0.0001755984 0.0001755984 +58.85664 0.0001755984 0.0001755984 +-0.0175068 0.006069731 0.0001755984 +-0.01161267 0.006069731 0.0001755984 +-0.005718534 0.006069731 0.0001755984 +0.0001755984 0.006069731 0.0001755984 +0.006069731 0.006069731 0.0001755984 +0.01197402 0.006069731 0.0001755984 +0.01903886 0.006069731 0.0001755984 +0.02852504 0.006069731 0.0001755984 +0.04126244 0.006069731 0.0001755984 +0.05836535 0.006069731 0.0001755984 +0.08132997 0.006069731 0.0001755984 +0.1121653 0.006069731 0.0001755984 +0.1535689 0.006069731 0.0001755984 +0.2091628 0.006069731 0.0001755984 +0.2838106 0.006069731 0.0001755984 +0.3840425 0.006069731 0.0001755984 +0.518627 0.006069731 0.0001755984 +0.6993381 0.006069731 0.0001755984 +0.9419845 0.006069731 0.0001755984 +1.267794 0.006069731 0.0001755984 +1.705268 0.006069731 0.0001755984 +2.292679 0.006069731 0.0001755984 +3.081414 0.006069731 0.0001755984 +4.140474 0.006069731 0.0001755984 +5.562508 0.006069731 0.0001755984 +7.471917 0.006069731 0.0001755984 +10.03574 0.006069731 0.0001755984 +13.47828 0.006069731 0.0001755984 +18.10068 0.006069731 0.0001755984 +24.30731 0.006069731 0.0001755984 +32.64117 0.006069731 0.0001755984 +43.83129 0.006069731 0.0001755984 +58.85664 0.006069731 0.0001755984 +-0.0175068 0.01197402 0.0001755984 +-0.01161267 0.01197402 0.0001755984 +-0.005718534 0.01197402 0.0001755984 +0.0001755984 0.01197402 0.0001755984 +0.006069731 0.01197402 0.0001755984 +0.01197402 0.01197402 0.0001755984 +0.01903886 0.01197402 0.0001755984 +0.02852504 0.01197402 0.0001755984 +0.04126244 0.01197402 0.0001755984 +0.05836535 0.01197402 0.0001755984 +0.08132997 0.01197402 0.0001755984 +0.1121653 0.01197402 0.0001755984 +0.1535689 0.01197402 0.0001755984 +0.2091628 0.01197402 0.0001755984 +0.2838106 0.01197402 0.0001755984 +0.3840425 0.01197402 0.0001755984 +0.518627 0.01197402 0.0001755984 +0.6993381 0.01197402 0.0001755984 +0.9419845 0.01197402 0.0001755984 +1.267794 0.01197402 0.0001755984 +1.705268 0.01197402 0.0001755984 +2.292679 0.01197402 0.0001755984 +3.081414 0.01197402 0.0001755984 +4.140474 0.01197402 0.0001755984 +5.562508 0.01197402 0.0001755984 +7.471917 0.01197402 0.0001755984 +10.03574 0.01197402 0.0001755984 +13.47828 0.01197402 0.0001755984 +18.10068 0.01197402 0.0001755984 +24.30731 0.01197402 0.0001755984 +32.64117 0.01197402 0.0001755984 +43.83129 0.01197402 0.0001755984 +58.85664 0.01197402 0.0001755984 +-0.0175068 0.01903886 0.0001755984 +-0.01161267 0.01903886 0.0001755984 +-0.005718534 0.01903886 0.0001755984 +0.0001755984 0.01903886 0.0001755984 +0.006069731 0.01903886 0.0001755984 +0.01197402 0.01903886 0.0001755984 +0.01903886 0.01903886 0.0001755984 +0.02852504 0.01903886 0.0001755984 +0.04126244 0.01903886 0.0001755984 +0.05836535 0.01903886 0.0001755984 +0.08132997 0.01903886 0.0001755984 +0.1121653 0.01903886 0.0001755984 +0.1535689 0.01903886 0.0001755984 +0.2091628 0.01903886 0.0001755984 +0.2838106 0.01903886 0.0001755984 +0.3840425 0.01903886 0.0001755984 +0.518627 0.01903886 0.0001755984 +0.6993381 0.01903886 0.0001755984 +0.9419845 0.01903886 0.0001755984 +1.267794 0.01903886 0.0001755984 +1.705268 0.01903886 0.0001755984 +2.292679 0.01903886 0.0001755984 +3.081414 0.01903886 0.0001755984 +4.140474 0.01903886 0.0001755984 +5.562508 0.01903886 0.0001755984 +7.471917 0.01903886 0.0001755984 +10.03574 0.01903886 0.0001755984 +13.47828 0.01903886 0.0001755984 +18.10068 0.01903886 0.0001755984 +24.30731 0.01903886 0.0001755984 +32.64117 0.01903886 0.0001755984 +43.83129 0.01903886 0.0001755984 +58.85664 0.01903886 0.0001755984 +-0.0175068 0.02852504 0.0001755984 +-0.01161267 0.02852504 0.0001755984 +-0.005718534 0.02852504 0.0001755984 +0.0001755984 0.02852504 0.0001755984 +0.006069731 0.02852504 0.0001755984 +0.01197402 0.02852504 0.0001755984 +0.01903886 0.02852504 0.0001755984 +0.02852504 0.02852504 0.0001755984 +0.04126244 0.02852504 0.0001755984 +0.05836535 0.02852504 0.0001755984 +0.08132997 0.02852504 0.0001755984 +0.1121653 0.02852504 0.0001755984 +0.1535689 0.02852504 0.0001755984 +0.2091628 0.02852504 0.0001755984 +0.2838106 0.02852504 0.0001755984 +0.3840425 0.02852504 0.0001755984 +0.518627 0.02852504 0.0001755984 +0.6993381 0.02852504 0.0001755984 +0.9419845 0.02852504 0.0001755984 +1.267794 0.02852504 0.0001755984 +1.705268 0.02852504 0.0001755984 +2.292679 0.02852504 0.0001755984 +3.081414 0.02852504 0.0001755984 +4.140474 0.02852504 0.0001755984 +5.562508 0.02852504 0.0001755984 +7.471917 0.02852504 0.0001755984 +10.03574 0.02852504 0.0001755984 +13.47828 0.02852504 0.0001755984 +18.10068 0.02852504 0.0001755984 +24.30731 0.02852504 0.0001755984 +32.64117 0.02852504 0.0001755984 +43.83129 0.02852504 0.0001755984 +58.85664 0.02852504 0.0001755984 +-0.0175068 0.04126244 0.0001755984 +-0.01161267 0.04126244 0.0001755984 +-0.005718534 0.04126244 0.0001755984 +0.0001755984 0.04126244 0.0001755984 +0.006069731 0.04126244 0.0001755984 +0.01197402 0.04126244 0.0001755984 +0.01903886 0.04126244 0.0001755984 +0.02852504 0.04126244 0.0001755984 +0.04126244 0.04126244 0.0001755984 +0.05836535 0.04126244 0.0001755984 +0.08132997 0.04126244 0.0001755984 +0.1121653 0.04126244 0.0001755984 +0.1535689 0.04126244 0.0001755984 +0.2091628 0.04126244 0.0001755984 +0.2838106 0.04126244 0.0001755984 +0.3840425 0.04126244 0.0001755984 +0.518627 0.04126244 0.0001755984 +0.6993381 0.04126244 0.0001755984 +0.9419845 0.04126244 0.0001755984 +1.267794 0.04126244 0.0001755984 +1.705268 0.04126244 0.0001755984 +2.292679 0.04126244 0.0001755984 +3.081414 0.04126244 0.0001755984 +4.140474 0.04126244 0.0001755984 +5.562508 0.04126244 0.0001755984 +7.471917 0.04126244 0.0001755984 +10.03574 0.04126244 0.0001755984 +13.47828 0.04126244 0.0001755984 +18.10068 0.04126244 0.0001755984 +24.30731 0.04126244 0.0001755984 +32.64117 0.04126244 0.0001755984 +43.83129 0.04126244 0.0001755984 +58.85664 0.04126244 0.0001755984 +-0.0175068 0.05836535 0.0001755984 +-0.01161267 0.05836535 0.0001755984 +-0.005718534 0.05836535 0.0001755984 +0.0001755984 0.05836535 0.0001755984 +0.006069731 0.05836535 0.0001755984 +0.01197402 0.05836535 0.0001755984 +0.01903886 0.05836535 0.0001755984 +0.02852504 0.05836535 0.0001755984 +0.04126244 0.05836535 0.0001755984 +0.05836535 0.05836535 0.0001755984 +0.08132997 0.05836535 0.0001755984 +0.1121653 0.05836535 0.0001755984 +0.1535689 0.05836535 0.0001755984 +0.2091628 0.05836535 0.0001755984 +0.2838106 0.05836535 0.0001755984 +0.3840425 0.05836535 0.0001755984 +0.518627 0.05836535 0.0001755984 +0.6993381 0.05836535 0.0001755984 +0.9419845 0.05836535 0.0001755984 +1.267794 0.05836535 0.0001755984 +1.705268 0.05836535 0.0001755984 +2.292679 0.05836535 0.0001755984 +3.081414 0.05836535 0.0001755984 +4.140474 0.05836535 0.0001755984 +5.562508 0.05836535 0.0001755984 +7.471917 0.05836535 0.0001755984 +10.03574 0.05836535 0.0001755984 +13.47828 0.05836535 0.0001755984 +18.10068 0.05836535 0.0001755984 +24.30731 0.05836535 0.0001755984 +32.64117 0.05836535 0.0001755984 +43.83129 0.05836535 0.0001755984 +58.85664 0.05836535 0.0001755984 +-0.0175068 0.08132997 0.0001755984 +-0.01161267 0.08132997 0.0001755984 +-0.005718534 0.08132997 0.0001755984 +0.0001755984 0.08132997 0.0001755984 +0.006069731 0.08132997 0.0001755984 +0.01197402 0.08132997 0.0001755984 +0.01903886 0.08132997 0.0001755984 +0.02852504 0.08132997 0.0001755984 +0.04126244 0.08132997 0.0001755984 +0.05836535 0.08132997 0.0001755984 +0.08132997 0.08132997 0.0001755984 +0.1121653 0.08132997 0.0001755984 +0.1535689 0.08132997 0.0001755984 +0.2091628 0.08132997 0.0001755984 +0.2838106 0.08132997 0.0001755984 +0.3840425 0.08132997 0.0001755984 +0.518627 0.08132997 0.0001755984 +0.6993381 0.08132997 0.0001755984 +0.9419845 0.08132997 0.0001755984 +1.267794 0.08132997 0.0001755984 +1.705268 0.08132997 0.0001755984 +2.292679 0.08132997 0.0001755984 +3.081414 0.08132997 0.0001755984 +4.140474 0.08132997 0.0001755984 +5.562508 0.08132997 0.0001755984 +7.471917 0.08132997 0.0001755984 +10.03574 0.08132997 0.0001755984 +13.47828 0.08132997 0.0001755984 +18.10068 0.08132997 0.0001755984 +24.30731 0.08132997 0.0001755984 +32.64117 0.08132997 0.0001755984 +43.83129 0.08132997 0.0001755984 +58.85664 0.08132997 0.0001755984 +-0.0175068 0.1121653 0.0001755984 +-0.01161267 0.1121653 0.0001755984 +-0.005718534 0.1121653 0.0001755984 +0.0001755984 0.1121653 0.0001755984 +0.006069731 0.1121653 0.0001755984 +0.01197402 0.1121653 0.0001755984 +0.01903886 0.1121653 0.0001755984 +0.02852504 0.1121653 0.0001755984 +0.04126244 0.1121653 0.0001755984 +0.05836535 0.1121653 0.0001755984 +0.08132997 0.1121653 0.0001755984 +0.1121653 0.1121653 0.0001755984 +0.1535689 0.1121653 0.0001755984 +0.2091628 0.1121653 0.0001755984 +0.2838106 0.1121653 0.0001755984 +0.3840425 0.1121653 0.0001755984 +0.518627 0.1121653 0.0001755984 +0.6993381 0.1121653 0.0001755984 +0.9419845 0.1121653 0.0001755984 +1.267794 0.1121653 0.0001755984 +1.705268 0.1121653 0.0001755984 +2.292679 0.1121653 0.0001755984 +3.081414 0.1121653 0.0001755984 +4.140474 0.1121653 0.0001755984 +5.562508 0.1121653 0.0001755984 +7.471917 0.1121653 0.0001755984 +10.03574 0.1121653 0.0001755984 +13.47828 0.1121653 0.0001755984 +18.10068 0.1121653 0.0001755984 +24.30731 0.1121653 0.0001755984 +32.64117 0.1121653 0.0001755984 +43.83129 0.1121653 0.0001755984 +58.85664 0.1121653 0.0001755984 +-0.0175068 0.1535689 0.0001755984 +-0.01161267 0.1535689 0.0001755984 +-0.005718534 0.1535689 0.0001755984 +0.0001755984 0.1535689 0.0001755984 +0.006069731 0.1535689 0.0001755984 +0.01197402 0.1535689 0.0001755984 +0.01903886 0.1535689 0.0001755984 +0.02852504 0.1535689 0.0001755984 +0.04126244 0.1535689 0.0001755984 +0.05836535 0.1535689 0.0001755984 +0.08132997 0.1535689 0.0001755984 +0.1121653 0.1535689 0.0001755984 +0.1535689 0.1535689 0.0001755984 +0.2091628 0.1535689 0.0001755984 +0.2838106 0.1535689 0.0001755984 +0.3840425 0.1535689 0.0001755984 +0.518627 0.1535689 0.0001755984 +0.6993381 0.1535689 0.0001755984 +0.9419845 0.1535689 0.0001755984 +1.267794 0.1535689 0.0001755984 +1.705268 0.1535689 0.0001755984 +2.292679 0.1535689 0.0001755984 +3.081414 0.1535689 0.0001755984 +4.140474 0.1535689 0.0001755984 +5.562508 0.1535689 0.0001755984 +7.471917 0.1535689 0.0001755984 +10.03574 0.1535689 0.0001755984 +13.47828 0.1535689 0.0001755984 +18.10068 0.1535689 0.0001755984 +24.30731 0.1535689 0.0001755984 +32.64117 0.1535689 0.0001755984 +43.83129 0.1535689 0.0001755984 +58.85664 0.1535689 0.0001755984 +-0.0175068 0.2091628 0.0001755984 +-0.01161267 0.2091628 0.0001755984 +-0.005718534 0.2091628 0.0001755984 +0.0001755984 0.2091628 0.0001755984 +0.006069731 0.2091628 0.0001755984 +0.01197402 0.2091628 0.0001755984 +0.01903886 0.2091628 0.0001755984 +0.02852504 0.2091628 0.0001755984 +0.04126244 0.2091628 0.0001755984 +0.05836535 0.2091628 0.0001755984 +0.08132997 0.2091628 0.0001755984 +0.1121653 0.2091628 0.0001755984 +0.1535689 0.2091628 0.0001755984 +0.2091628 0.2091628 0.0001755984 +0.2838106 0.2091628 0.0001755984 +0.3840425 0.2091628 0.0001755984 +0.518627 0.2091628 0.0001755984 +0.6993381 0.2091628 0.0001755984 +0.9419845 0.2091628 0.0001755984 +1.267794 0.2091628 0.0001755984 +1.705268 0.2091628 0.0001755984 +2.292679 0.2091628 0.0001755984 +3.081414 0.2091628 0.0001755984 +4.140474 0.2091628 0.0001755984 +5.562508 0.2091628 0.0001755984 +7.471917 0.2091628 0.0001755984 +10.03574 0.2091628 0.0001755984 +13.47828 0.2091628 0.0001755984 +18.10068 0.2091628 0.0001755984 +24.30731 0.2091628 0.0001755984 +32.64117 0.2091628 0.0001755984 +43.83129 0.2091628 0.0001755984 +58.85664 0.2091628 0.0001755984 +-0.0175068 0.2838106 0.0001755984 +-0.01161267 0.2838106 0.0001755984 +-0.005718534 0.2838106 0.0001755984 +0.0001755984 0.2838106 0.0001755984 +0.006069731 0.2838106 0.0001755984 +0.01197402 0.2838106 0.0001755984 +0.01903886 0.2838106 0.0001755984 +0.02852504 0.2838106 0.0001755984 +0.04126244 0.2838106 0.0001755984 +0.05836535 0.2838106 0.0001755984 +0.08132997 0.2838106 0.0001755984 +0.1121653 0.2838106 0.0001755984 +0.1535689 0.2838106 0.0001755984 +0.2091628 0.2838106 0.0001755984 +0.2838106 0.2838106 0.0001755984 +0.3840425 0.2838106 0.0001755984 +0.518627 0.2838106 0.0001755984 +0.6993381 0.2838106 0.0001755984 +0.9419845 0.2838106 0.0001755984 +1.267794 0.2838106 0.0001755984 +1.705268 0.2838106 0.0001755984 +2.292679 0.2838106 0.0001755984 +3.081414 0.2838106 0.0001755984 +4.140474 0.2838106 0.0001755984 +5.562508 0.2838106 0.0001755984 +7.471917 0.2838106 0.0001755984 +10.03574 0.2838106 0.0001755984 +13.47828 0.2838106 0.0001755984 +18.10068 0.2838106 0.0001755984 +24.30731 0.2838106 0.0001755984 +32.64117 0.2838106 0.0001755984 +43.83129 0.2838106 0.0001755984 +58.85664 0.2838106 0.0001755984 +-0.0175068 0.3840425 0.0001755984 +-0.01161267 0.3840425 0.0001755984 +-0.005718534 0.3840425 0.0001755984 +0.0001755984 0.3840425 0.0001755984 +0.006069731 0.3840425 0.0001755984 +0.01197402 0.3840425 0.0001755984 +0.01903886 0.3840425 0.0001755984 +0.02852504 0.3840425 0.0001755984 +0.04126244 0.3840425 0.0001755984 +0.05836535 0.3840425 0.0001755984 +0.08132997 0.3840425 0.0001755984 +0.1121653 0.3840425 0.0001755984 +0.1535689 0.3840425 0.0001755984 +0.2091628 0.3840425 0.0001755984 +0.2838106 0.3840425 0.0001755984 +0.3840425 0.3840425 0.0001755984 +0.518627 0.3840425 0.0001755984 +0.6993381 0.3840425 0.0001755984 +0.9419845 0.3840425 0.0001755984 +1.267794 0.3840425 0.0001755984 +1.705268 0.3840425 0.0001755984 +2.292679 0.3840425 0.0001755984 +3.081414 0.3840425 0.0001755984 +4.140474 0.3840425 0.0001755984 +5.562508 0.3840425 0.0001755984 +7.471917 0.3840425 0.0001755984 +10.03574 0.3840425 0.0001755984 +13.47828 0.3840425 0.0001755984 +18.10068 0.3840425 0.0001755984 +24.30731 0.3840425 0.0001755984 +32.64117 0.3840425 0.0001755984 +43.83129 0.3840425 0.0001755984 +58.85664 0.3840425 0.0001755984 +-0.0175068 0.518627 0.0001755984 +-0.01161267 0.518627 0.0001755984 +-0.005718534 0.518627 0.0001755984 +0.0001755984 0.518627 0.0001755984 +0.006069731 0.518627 0.0001755984 +0.01197402 0.518627 0.0001755984 +0.01903886 0.518627 0.0001755984 +0.02852504 0.518627 0.0001755984 +0.04126244 0.518627 0.0001755984 +0.05836535 0.518627 0.0001755984 +0.08132997 0.518627 0.0001755984 +0.1121653 0.518627 0.0001755984 +0.1535689 0.518627 0.0001755984 +0.2091628 0.518627 0.0001755984 +0.2838106 0.518627 0.0001755984 +0.3840425 0.518627 0.0001755984 +0.518627 0.518627 0.0001755984 +0.6993381 0.518627 0.0001755984 +0.9419845 0.518627 0.0001755984 +1.267794 0.518627 0.0001755984 +1.705268 0.518627 0.0001755984 +2.292679 0.518627 0.0001755984 +3.081414 0.518627 0.0001755984 +4.140474 0.518627 0.0001755984 +5.562508 0.518627 0.0001755984 +7.471917 0.518627 0.0001755984 +10.03574 0.518627 0.0001755984 +13.47828 0.518627 0.0001755984 +18.10068 0.518627 0.0001755984 +24.30731 0.518627 0.0001755984 +32.64117 0.518627 0.0001755984 +43.83129 0.518627 0.0001755984 +58.85664 0.518627 0.0001755984 +-0.0175068 0.6993381 0.0001755984 +-0.01161267 0.6993381 0.0001755984 +-0.005718534 0.6993381 0.0001755984 +0.0001755984 0.6993381 0.0001755984 +0.006069731 0.6993381 0.0001755984 +0.01197402 0.6993381 0.0001755984 +0.01903886 0.6993381 0.0001755984 +0.02852504 0.6993381 0.0001755984 +0.04126244 0.6993381 0.0001755984 +0.05836535 0.6993381 0.0001755984 +0.08132997 0.6993381 0.0001755984 +0.1121653 0.6993381 0.0001755984 +0.1535689 0.6993381 0.0001755984 +0.2091628 0.6993381 0.0001755984 +0.2838106 0.6993381 0.0001755984 +0.3840425 0.6993381 0.0001755984 +0.518627 0.6993381 0.0001755984 +0.6993381 0.6993381 0.0001755984 +0.9419845 0.6993381 0.0001755984 +1.267794 0.6993381 0.0001755984 +1.705268 0.6993381 0.0001755984 +2.292679 0.6993381 0.0001755984 +3.081414 0.6993381 0.0001755984 +4.140474 0.6993381 0.0001755984 +5.562508 0.6993381 0.0001755984 +7.471917 0.6993381 0.0001755984 +10.03574 0.6993381 0.0001755984 +13.47828 0.6993381 0.0001755984 +18.10068 0.6993381 0.0001755984 +24.30731 0.6993381 0.0001755984 +32.64117 0.6993381 0.0001755984 +43.83129 0.6993381 0.0001755984 +58.85664 0.6993381 0.0001755984 +-0.0175068 0.9419845 0.0001755984 +-0.01161267 0.9419845 0.0001755984 +-0.005718534 0.9419845 0.0001755984 +0.0001755984 0.9419845 0.0001755984 +0.006069731 0.9419845 0.0001755984 +0.01197402 0.9419845 0.0001755984 +0.01903886 0.9419845 0.0001755984 +0.02852504 0.9419845 0.0001755984 +0.04126244 0.9419845 0.0001755984 +0.05836535 0.9419845 0.0001755984 +0.08132997 0.9419845 0.0001755984 +0.1121653 0.9419845 0.0001755984 +0.1535689 0.9419845 0.0001755984 +0.2091628 0.9419845 0.0001755984 +0.2838106 0.9419845 0.0001755984 +0.3840425 0.9419845 0.0001755984 +0.518627 0.9419845 0.0001755984 +0.6993381 0.9419845 0.0001755984 +0.9419845 0.9419845 0.0001755984 +1.267794 0.9419845 0.0001755984 +1.705268 0.9419845 0.0001755984 +2.292679 0.9419845 0.0001755984 +3.081414 0.9419845 0.0001755984 +4.140474 0.9419845 0.0001755984 +5.562508 0.9419845 0.0001755984 +7.471917 0.9419845 0.0001755984 +10.03574 0.9419845 0.0001755984 +13.47828 0.9419845 0.0001755984 +18.10068 0.9419845 0.0001755984 +24.30731 0.9419845 0.0001755984 +32.64117 0.9419845 0.0001755984 +43.83129 0.9419845 0.0001755984 +58.85664 0.9419845 0.0001755984 +-0.0175068 1.267794 0.0001755984 +-0.01161267 1.267794 0.0001755984 +-0.005718534 1.267794 0.0001755984 +0.0001755984 1.267794 0.0001755984 +0.006069731 1.267794 0.0001755984 +0.01197402 1.267794 0.0001755984 +0.01903886 1.267794 0.0001755984 +0.02852504 1.267794 0.0001755984 +0.04126244 1.267794 0.0001755984 +0.05836535 1.267794 0.0001755984 +0.08132997 1.267794 0.0001755984 +0.1121653 1.267794 0.0001755984 +0.1535689 1.267794 0.0001755984 +0.2091628 1.267794 0.0001755984 +0.2838106 1.267794 0.0001755984 +0.3840425 1.267794 0.0001755984 +0.518627 1.267794 0.0001755984 +0.6993381 1.267794 0.0001755984 +0.9419845 1.267794 0.0001755984 +1.267794 1.267794 0.0001755984 +1.705268 1.267794 0.0001755984 +2.292679 1.267794 0.0001755984 +3.081414 1.267794 0.0001755984 +4.140474 1.267794 0.0001755984 +5.562508 1.267794 0.0001755984 +7.471917 1.267794 0.0001755984 +10.03574 1.267794 0.0001755984 +13.47828 1.267794 0.0001755984 +18.10068 1.267794 0.0001755984 +24.30731 1.267794 0.0001755984 +32.64117 1.267794 0.0001755984 +43.83129 1.267794 0.0001755984 +58.85664 1.267794 0.0001755984 +-0.0175068 1.705268 0.0001755984 +-0.01161267 1.705268 0.0001755984 +-0.005718534 1.705268 0.0001755984 +0.0001755984 1.705268 0.0001755984 +0.006069731 1.705268 0.0001755984 +0.01197402 1.705268 0.0001755984 +0.01903886 1.705268 0.0001755984 +0.02852504 1.705268 0.0001755984 +0.04126244 1.705268 0.0001755984 +0.05836535 1.705268 0.0001755984 +0.08132997 1.705268 0.0001755984 +0.1121653 1.705268 0.0001755984 +0.1535689 1.705268 0.0001755984 +0.2091628 1.705268 0.0001755984 +0.2838106 1.705268 0.0001755984 +0.3840425 1.705268 0.0001755984 +0.518627 1.705268 0.0001755984 +0.6993381 1.705268 0.0001755984 +0.9419845 1.705268 0.0001755984 +1.267794 1.705268 0.0001755984 +1.705268 1.705268 0.0001755984 +2.292679 1.705268 0.0001755984 +3.081414 1.705268 0.0001755984 +4.140474 1.705268 0.0001755984 +5.562508 1.705268 0.0001755984 +7.471917 1.705268 0.0001755984 +10.03574 1.705268 0.0001755984 +13.47828 1.705268 0.0001755984 +18.10068 1.705268 0.0001755984 +24.30731 1.705268 0.0001755984 +32.64117 1.705268 0.0001755984 +43.83129 1.705268 0.0001755984 +58.85664 1.705268 0.0001755984 +-0.0175068 2.292679 0.0001755984 +-0.01161267 2.292679 0.0001755984 +-0.005718534 2.292679 0.0001755984 +0.0001755984 2.292679 0.0001755984 +0.006069731 2.292679 0.0001755984 +0.01197402 2.292679 0.0001755984 +0.01903886 2.292679 0.0001755984 +0.02852504 2.292679 0.0001755984 +0.04126244 2.292679 0.0001755984 +0.05836535 2.292679 0.0001755984 +0.08132997 2.292679 0.0001755984 +0.1121653 2.292679 0.0001755984 +0.1535689 2.292679 0.0001755984 +0.2091628 2.292679 0.0001755984 +0.2838106 2.292679 0.0001755984 +0.3840425 2.292679 0.0001755984 +0.518627 2.292679 0.0001755984 +0.6993381 2.292679 0.0001755984 +0.9419845 2.292679 0.0001755984 +1.267794 2.292679 0.0001755984 +1.705268 2.292679 0.0001755984 +2.292679 2.292679 0.0001755984 +3.081414 2.292679 0.0001755984 +4.140474 2.292679 0.0001755984 +5.562508 2.292679 0.0001755984 +7.471917 2.292679 0.0001755984 +10.03574 2.292679 0.0001755984 +13.47828 2.292679 0.0001755984 +18.10068 2.292679 0.0001755984 +24.30731 2.292679 0.0001755984 +32.64117 2.292679 0.0001755984 +43.83129 2.292679 0.0001755984 +58.85664 2.292679 0.0001755984 +-0.0175068 3.081414 0.0001755984 +-0.01161267 3.081414 0.0001755984 +-0.005718534 3.081414 0.0001755984 +0.0001755984 3.081414 0.0001755984 +0.006069731 3.081414 0.0001755984 +0.01197402 3.081414 0.0001755984 +0.01903886 3.081414 0.0001755984 +0.02852504 3.081414 0.0001755984 +0.04126244 3.081414 0.0001755984 +0.05836535 3.081414 0.0001755984 +0.08132997 3.081414 0.0001755984 +0.1121653 3.081414 0.0001755984 +0.1535689 3.081414 0.0001755984 +0.2091628 3.081414 0.0001755984 +0.2838106 3.081414 0.0001755984 +0.3840425 3.081414 0.0001755984 +0.518627 3.081414 0.0001755984 +0.6993381 3.081414 0.0001755984 +0.9419845 3.081414 0.0001755984 +1.267794 3.081414 0.0001755984 +1.705268 3.081414 0.0001755984 +2.292679 3.081414 0.0001755984 +3.081414 3.081414 0.0001755984 +4.140474 3.081414 0.0001755984 +5.562508 3.081414 0.0001755984 +7.471917 3.081414 0.0001755984 +10.03574 3.081414 0.0001755984 +13.47828 3.081414 0.0001755984 +18.10068 3.081414 0.0001755984 +24.30731 3.081414 0.0001755984 +32.64117 3.081414 0.0001755984 +43.83129 3.081414 0.0001755984 +58.85664 3.081414 0.0001755984 +-0.0175068 4.140474 0.0001755984 +-0.01161267 4.140474 0.0001755984 +-0.005718534 4.140474 0.0001755984 +0.0001755984 4.140474 0.0001755984 +0.006069731 4.140474 0.0001755984 +0.01197402 4.140474 0.0001755984 +0.01903886 4.140474 0.0001755984 +0.02852504 4.140474 0.0001755984 +0.04126244 4.140474 0.0001755984 +0.05836535 4.140474 0.0001755984 +0.08132997 4.140474 0.0001755984 +0.1121653 4.140474 0.0001755984 +0.1535689 4.140474 0.0001755984 +0.2091628 4.140474 0.0001755984 +0.2838106 4.140474 0.0001755984 +0.3840425 4.140474 0.0001755984 +0.518627 4.140474 0.0001755984 +0.6993381 4.140474 0.0001755984 +0.9419845 4.140474 0.0001755984 +1.267794 4.140474 0.0001755984 +1.705268 4.140474 0.0001755984 +2.292679 4.140474 0.0001755984 +3.081414 4.140474 0.0001755984 +4.140474 4.140474 0.0001755984 +5.562508 4.140474 0.0001755984 +7.471917 4.140474 0.0001755984 +10.03574 4.140474 0.0001755984 +13.47828 4.140474 0.0001755984 +18.10068 4.140474 0.0001755984 +24.30731 4.140474 0.0001755984 +32.64117 4.140474 0.0001755984 +43.83129 4.140474 0.0001755984 +58.85664 4.140474 0.0001755984 +-0.0175068 5.562508 0.0001755984 +-0.01161267 5.562508 0.0001755984 +-0.005718534 5.562508 0.0001755984 +0.0001755984 5.562508 0.0001755984 +0.006069731 5.562508 0.0001755984 +0.01197402 5.562508 0.0001755984 +0.01903886 5.562508 0.0001755984 +0.02852504 5.562508 0.0001755984 +0.04126244 5.562508 0.0001755984 +0.05836535 5.562508 0.0001755984 +0.08132997 5.562508 0.0001755984 +0.1121653 5.562508 0.0001755984 +0.1535689 5.562508 0.0001755984 +0.2091628 5.562508 0.0001755984 +0.2838106 5.562508 0.0001755984 +0.3840425 5.562508 0.0001755984 +0.518627 5.562508 0.0001755984 +0.6993381 5.562508 0.0001755984 +0.9419845 5.562508 0.0001755984 +1.267794 5.562508 0.0001755984 +1.705268 5.562508 0.0001755984 +2.292679 5.562508 0.0001755984 +3.081414 5.562508 0.0001755984 +4.140474 5.562508 0.0001755984 +5.562508 5.562508 0.0001755984 +7.471917 5.562508 0.0001755984 +10.03574 5.562508 0.0001755984 +13.47828 5.562508 0.0001755984 +18.10068 5.562508 0.0001755984 +24.30731 5.562508 0.0001755984 +32.64117 5.562508 0.0001755984 +43.83129 5.562508 0.0001755984 +58.85664 5.562508 0.0001755984 +-0.0175068 7.471917 0.0001755984 +-0.01161267 7.471917 0.0001755984 +-0.005718534 7.471917 0.0001755984 +0.0001755984 7.471917 0.0001755984 +0.006069731 7.471917 0.0001755984 +0.01197402 7.471917 0.0001755984 +0.01903886 7.471917 0.0001755984 +0.02852504 7.471917 0.0001755984 +0.04126244 7.471917 0.0001755984 +0.05836535 7.471917 0.0001755984 +0.08132997 7.471917 0.0001755984 +0.1121653 7.471917 0.0001755984 +0.1535689 7.471917 0.0001755984 +0.2091628 7.471917 0.0001755984 +0.2838106 7.471917 0.0001755984 +0.3840425 7.471917 0.0001755984 +0.518627 7.471917 0.0001755984 +0.6993381 7.471917 0.0001755984 +0.9419845 7.471917 0.0001755984 +1.267794 7.471917 0.0001755984 +1.705268 7.471917 0.0001755984 +2.292679 7.471917 0.0001755984 +3.081414 7.471917 0.0001755984 +4.140474 7.471917 0.0001755984 +5.562508 7.471917 0.0001755984 +7.471917 7.471917 0.0001755984 +10.03574 7.471917 0.0001755984 +13.47828 7.471917 0.0001755984 +18.10068 7.471917 0.0001755984 +24.30731 7.471917 0.0001755984 +32.64117 7.471917 0.0001755984 +43.83129 7.471917 0.0001755984 +58.85664 7.471917 0.0001755984 +-0.0175068 10.03574 0.0001755984 +-0.01161267 10.03574 0.0001755984 +-0.005718534 10.03574 0.0001755984 +0.0001755984 10.03574 0.0001755984 +0.006069731 10.03574 0.0001755984 +0.01197402 10.03574 0.0001755984 +0.01903886 10.03574 0.0001755984 +0.02852504 10.03574 0.0001755984 +0.04126244 10.03574 0.0001755984 +0.05836535 10.03574 0.0001755984 +0.08132997 10.03574 0.0001755984 +0.1121653 10.03574 0.0001755984 +0.1535689 10.03574 0.0001755984 +0.2091628 10.03574 0.0001755984 +0.2838106 10.03574 0.0001755984 +0.3840425 10.03574 0.0001755984 +0.518627 10.03574 0.0001755984 +0.6993381 10.03574 0.0001755984 +0.9419845 10.03574 0.0001755984 +1.267794 10.03574 0.0001755984 +1.705268 10.03574 0.0001755984 +2.292679 10.03574 0.0001755984 +3.081414 10.03574 0.0001755984 +4.140474 10.03574 0.0001755984 +5.562508 10.03574 0.0001755984 +7.471917 10.03574 0.0001755984 +10.03574 10.03574 0.0001755984 +13.47828 10.03574 0.0001755984 +18.10068 10.03574 0.0001755984 +24.30731 10.03574 0.0001755984 +32.64117 10.03574 0.0001755984 +43.83129 10.03574 0.0001755984 +58.85664 10.03574 0.0001755984 +-0.0175068 13.47828 0.0001755984 +-0.01161267 13.47828 0.0001755984 +-0.005718534 13.47828 0.0001755984 +0.0001755984 13.47828 0.0001755984 +0.006069731 13.47828 0.0001755984 +0.01197402 13.47828 0.0001755984 +0.01903886 13.47828 0.0001755984 +0.02852504 13.47828 0.0001755984 +0.04126244 13.47828 0.0001755984 +0.05836535 13.47828 0.0001755984 +0.08132997 13.47828 0.0001755984 +0.1121653 13.47828 0.0001755984 +0.1535689 13.47828 0.0001755984 +0.2091628 13.47828 0.0001755984 +0.2838106 13.47828 0.0001755984 +0.3840425 13.47828 0.0001755984 +0.518627 13.47828 0.0001755984 +0.6993381 13.47828 0.0001755984 +0.9419845 13.47828 0.0001755984 +1.267794 13.47828 0.0001755984 +1.705268 13.47828 0.0001755984 +2.292679 13.47828 0.0001755984 +3.081414 13.47828 0.0001755984 +4.140474 13.47828 0.0001755984 +5.562508 13.47828 0.0001755984 +7.471917 13.47828 0.0001755984 +10.03574 13.47828 0.0001755984 +13.47828 13.47828 0.0001755984 +18.10068 13.47828 0.0001755984 +24.30731 13.47828 0.0001755984 +32.64117 13.47828 0.0001755984 +43.83129 13.47828 0.0001755984 +58.85664 13.47828 0.0001755984 +-0.0175068 18.10068 0.0001755984 +-0.01161267 18.10068 0.0001755984 +-0.005718534 18.10068 0.0001755984 +0.0001755984 18.10068 0.0001755984 +0.006069731 18.10068 0.0001755984 +0.01197402 18.10068 0.0001755984 +0.01903886 18.10068 0.0001755984 +0.02852504 18.10068 0.0001755984 +0.04126244 18.10068 0.0001755984 +0.05836535 18.10068 0.0001755984 +0.08132997 18.10068 0.0001755984 +0.1121653 18.10068 0.0001755984 +0.1535689 18.10068 0.0001755984 +0.2091628 18.10068 0.0001755984 +0.2838106 18.10068 0.0001755984 +0.3840425 18.10068 0.0001755984 +0.518627 18.10068 0.0001755984 +0.6993381 18.10068 0.0001755984 +0.9419845 18.10068 0.0001755984 +1.267794 18.10068 0.0001755984 +1.705268 18.10068 0.0001755984 +2.292679 18.10068 0.0001755984 +3.081414 18.10068 0.0001755984 +4.140474 18.10068 0.0001755984 +5.562508 18.10068 0.0001755984 +7.471917 18.10068 0.0001755984 +10.03574 18.10068 0.0001755984 +13.47828 18.10068 0.0001755984 +18.10068 18.10068 0.0001755984 +24.30731 18.10068 0.0001755984 +32.64117 18.10068 0.0001755984 +43.83129 18.10068 0.0001755984 +58.85664 18.10068 0.0001755984 +-0.0175068 24.30731 0.0001755984 +-0.01161267 24.30731 0.0001755984 +-0.005718534 24.30731 0.0001755984 +0.0001755984 24.30731 0.0001755984 +0.006069731 24.30731 0.0001755984 +0.01197402 24.30731 0.0001755984 +0.01903886 24.30731 0.0001755984 +0.02852504 24.30731 0.0001755984 +0.04126244 24.30731 0.0001755984 +0.05836535 24.30731 0.0001755984 +0.08132997 24.30731 0.0001755984 +0.1121653 24.30731 0.0001755984 +0.1535689 24.30731 0.0001755984 +0.2091628 24.30731 0.0001755984 +0.2838106 24.30731 0.0001755984 +0.3840425 24.30731 0.0001755984 +0.518627 24.30731 0.0001755984 +0.6993381 24.30731 0.0001755984 +0.9419845 24.30731 0.0001755984 +1.267794 24.30731 0.0001755984 +1.705268 24.30731 0.0001755984 +2.292679 24.30731 0.0001755984 +3.081414 24.30731 0.0001755984 +4.140474 24.30731 0.0001755984 +5.562508 24.30731 0.0001755984 +7.471917 24.30731 0.0001755984 +10.03574 24.30731 0.0001755984 +13.47828 24.30731 0.0001755984 +18.10068 24.30731 0.0001755984 +24.30731 24.30731 0.0001755984 +32.64117 24.30731 0.0001755984 +43.83129 24.30731 0.0001755984 +58.85664 24.30731 0.0001755984 +-0.0175068 32.64117 0.0001755984 +-0.01161267 32.64117 0.0001755984 +-0.005718534 32.64117 0.0001755984 +0.0001755984 32.64117 0.0001755984 +0.006069731 32.64117 0.0001755984 +0.01197402 32.64117 0.0001755984 +0.01903886 32.64117 0.0001755984 +0.02852504 32.64117 0.0001755984 +0.04126244 32.64117 0.0001755984 +0.05836535 32.64117 0.0001755984 +0.08132997 32.64117 0.0001755984 +0.1121653 32.64117 0.0001755984 +0.1535689 32.64117 0.0001755984 +0.2091628 32.64117 0.0001755984 +0.2838106 32.64117 0.0001755984 +0.3840425 32.64117 0.0001755984 +0.518627 32.64117 0.0001755984 +0.6993381 32.64117 0.0001755984 +0.9419845 32.64117 0.0001755984 +1.267794 32.64117 0.0001755984 +1.705268 32.64117 0.0001755984 +2.292679 32.64117 0.0001755984 +3.081414 32.64117 0.0001755984 +4.140474 32.64117 0.0001755984 +5.562508 32.64117 0.0001755984 +7.471917 32.64117 0.0001755984 +10.03574 32.64117 0.0001755984 +13.47828 32.64117 0.0001755984 +18.10068 32.64117 0.0001755984 +24.30731 32.64117 0.0001755984 +32.64117 32.64117 0.0001755984 +43.83129 32.64117 0.0001755984 +58.85664 32.64117 0.0001755984 +-0.0175068 43.83129 0.0001755984 +-0.01161267 43.83129 0.0001755984 +-0.005718534 43.83129 0.0001755984 +0.0001755984 43.83129 0.0001755984 +0.006069731 43.83129 0.0001755984 +0.01197402 43.83129 0.0001755984 +0.01903886 43.83129 0.0001755984 +0.02852504 43.83129 0.0001755984 +0.04126244 43.83129 0.0001755984 +0.05836535 43.83129 0.0001755984 +0.08132997 43.83129 0.0001755984 +0.1121653 43.83129 0.0001755984 +0.1535689 43.83129 0.0001755984 +0.2091628 43.83129 0.0001755984 +0.2838106 43.83129 0.0001755984 +0.3840425 43.83129 0.0001755984 +0.518627 43.83129 0.0001755984 +0.6993381 43.83129 0.0001755984 +0.9419845 43.83129 0.0001755984 +1.267794 43.83129 0.0001755984 +1.705268 43.83129 0.0001755984 +2.292679 43.83129 0.0001755984 +3.081414 43.83129 0.0001755984 +4.140474 43.83129 0.0001755984 +5.562508 43.83129 0.0001755984 +7.471917 43.83129 0.0001755984 +10.03574 43.83129 0.0001755984 +13.47828 43.83129 0.0001755984 +18.10068 43.83129 0.0001755984 +24.30731 43.83129 0.0001755984 +32.64117 43.83129 0.0001755984 +43.83129 43.83129 0.0001755984 +58.85664 43.83129 0.0001755984 +-0.0175068 58.85664 0.0001755984 +-0.01161267 58.85664 0.0001755984 +-0.005718534 58.85664 0.0001755984 +0.0001755984 58.85664 0.0001755984 +0.006069731 58.85664 0.0001755984 +0.01197402 58.85664 0.0001755984 +0.01903886 58.85664 0.0001755984 +0.02852504 58.85664 0.0001755984 +0.04126244 58.85664 0.0001755984 +0.05836535 58.85664 0.0001755984 +0.08132997 58.85664 0.0001755984 +0.1121653 58.85664 0.0001755984 +0.1535689 58.85664 0.0001755984 +0.2091628 58.85664 0.0001755984 +0.2838106 58.85664 0.0001755984 +0.3840425 58.85664 0.0001755984 +0.518627 58.85664 0.0001755984 +0.6993381 58.85664 0.0001755984 +0.9419845 58.85664 0.0001755984 +1.267794 58.85664 0.0001755984 +1.705268 58.85664 0.0001755984 +2.292679 58.85664 0.0001755984 +3.081414 58.85664 0.0001755984 +4.140474 58.85664 0.0001755984 +5.562508 58.85664 0.0001755984 +7.471917 58.85664 0.0001755984 +10.03574 58.85664 0.0001755984 +13.47828 58.85664 0.0001755984 +18.10068 58.85664 0.0001755984 +24.30731 58.85664 0.0001755984 +32.64117 58.85664 0.0001755984 +43.83129 58.85664 0.0001755984 +58.85664 58.85664 0.0001755984 +-0.0175068 -0.0175068 0.006069731 +-0.01161267 -0.0175068 0.006069731 +-0.005718534 -0.0175068 0.006069731 +0.0001755984 -0.0175068 0.006069731 +0.006069731 -0.0175068 0.006069731 +0.01197402 -0.0175068 0.006069731 +0.01903886 -0.0175068 0.006069731 +0.02852504 -0.0175068 0.006069731 +0.04126244 -0.0175068 0.006069731 +0.05836535 -0.0175068 0.006069731 +0.08132997 -0.0175068 0.006069731 +0.1121653 -0.0175068 0.006069731 +0.1535689 -0.0175068 0.006069731 +0.2091628 -0.0175068 0.006069731 +0.2838106 -0.0175068 0.006069731 +0.3840425 -0.0175068 0.006069731 +0.518627 -0.0175068 0.006069731 +0.6993381 -0.0175068 0.006069731 +0.9419845 -0.0175068 0.006069731 +1.267794 -0.0175068 0.006069731 +1.705268 -0.0175068 0.006069731 +2.292679 -0.0175068 0.006069731 +3.081414 -0.0175068 0.006069731 +4.140474 -0.0175068 0.006069731 +5.562508 -0.0175068 0.006069731 +7.471917 -0.0175068 0.006069731 +10.03574 -0.0175068 0.006069731 +13.47828 -0.0175068 0.006069731 +18.10068 -0.0175068 0.006069731 +24.30731 -0.0175068 0.006069731 +32.64117 -0.0175068 0.006069731 +43.83129 -0.0175068 0.006069731 +58.85664 -0.0175068 0.006069731 +-0.0175068 -0.01161267 0.006069731 +-0.01161267 -0.01161267 0.006069731 +-0.005718534 -0.01161267 0.006069731 +0.0001755984 -0.01161267 0.006069731 +0.006069731 -0.01161267 0.006069731 +0.01197402 -0.01161267 0.006069731 +0.01903886 -0.01161267 0.006069731 +0.02852504 -0.01161267 0.006069731 +0.04126244 -0.01161267 0.006069731 +0.05836535 -0.01161267 0.006069731 +0.08132997 -0.01161267 0.006069731 +0.1121653 -0.01161267 0.006069731 +0.1535689 -0.01161267 0.006069731 +0.2091628 -0.01161267 0.006069731 +0.2838106 -0.01161267 0.006069731 +0.3840425 -0.01161267 0.006069731 +0.518627 -0.01161267 0.006069731 +0.6993381 -0.01161267 0.006069731 +0.9419845 -0.01161267 0.006069731 +1.267794 -0.01161267 0.006069731 +1.705268 -0.01161267 0.006069731 +2.292679 -0.01161267 0.006069731 +3.081414 -0.01161267 0.006069731 +4.140474 -0.01161267 0.006069731 +5.562508 -0.01161267 0.006069731 +7.471917 -0.01161267 0.006069731 +10.03574 -0.01161267 0.006069731 +13.47828 -0.01161267 0.006069731 +18.10068 -0.01161267 0.006069731 +24.30731 -0.01161267 0.006069731 +32.64117 -0.01161267 0.006069731 +43.83129 -0.01161267 0.006069731 +58.85664 -0.01161267 0.006069731 +-0.0175068 -0.005718534 0.006069731 +-0.01161267 -0.005718534 0.006069731 +-0.005718534 -0.005718534 0.006069731 +0.0001755984 -0.005718534 0.006069731 +0.006069731 -0.005718534 0.006069731 +0.01197402 -0.005718534 0.006069731 +0.01903886 -0.005718534 0.006069731 +0.02852504 -0.005718534 0.006069731 +0.04126244 -0.005718534 0.006069731 +0.05836535 -0.005718534 0.006069731 +0.08132997 -0.005718534 0.006069731 +0.1121653 -0.005718534 0.006069731 +0.1535689 -0.005718534 0.006069731 +0.2091628 -0.005718534 0.006069731 +0.2838106 -0.005718534 0.006069731 +0.3840425 -0.005718534 0.006069731 +0.518627 -0.005718534 0.006069731 +0.6993381 -0.005718534 0.006069731 +0.9419845 -0.005718534 0.006069731 +1.267794 -0.005718534 0.006069731 +1.705268 -0.005718534 0.006069731 +2.292679 -0.005718534 0.006069731 +3.081414 -0.005718534 0.006069731 +4.140474 -0.005718534 0.006069731 +5.562508 -0.005718534 0.006069731 +7.471917 -0.005718534 0.006069731 +10.03574 -0.005718534 0.006069731 +13.47828 -0.005718534 0.006069731 +18.10068 -0.005718534 0.006069731 +24.30731 -0.005718534 0.006069731 +32.64117 -0.005718534 0.006069731 +43.83129 -0.005718534 0.006069731 +58.85664 -0.005718534 0.006069731 +-0.0175068 0.0001755984 0.006069731 +-0.01161267 0.0001755984 0.006069731 +-0.005718534 0.0001755984 0.006069731 +0.0001755984 0.0001755984 0.006069731 +0.006069731 0.0001755984 0.006069731 +0.01197402 0.0001755984 0.006069731 +0.01903886 0.0001755984 0.006069731 +0.02852504 0.0001755984 0.006069731 +0.04126244 0.0001755984 0.006069731 +0.05836535 0.0001755984 0.006069731 +0.08132997 0.0001755984 0.006069731 +0.1121653 0.0001755984 0.006069731 +0.1535689 0.0001755984 0.006069731 +0.2091628 0.0001755984 0.006069731 +0.2838106 0.0001755984 0.006069731 +0.3840425 0.0001755984 0.006069731 +0.518627 0.0001755984 0.006069731 +0.6993381 0.0001755984 0.006069731 +0.9419845 0.0001755984 0.006069731 +1.267794 0.0001755984 0.006069731 +1.705268 0.0001755984 0.006069731 +2.292679 0.0001755984 0.006069731 +3.081414 0.0001755984 0.006069731 +4.140474 0.0001755984 0.006069731 +5.562508 0.0001755984 0.006069731 +7.471917 0.0001755984 0.006069731 +10.03574 0.0001755984 0.006069731 +13.47828 0.0001755984 0.006069731 +18.10068 0.0001755984 0.006069731 +24.30731 0.0001755984 0.006069731 +32.64117 0.0001755984 0.006069731 +43.83129 0.0001755984 0.006069731 +58.85664 0.0001755984 0.006069731 +-0.0175068 0.006069731 0.006069731 +-0.01161267 0.006069731 0.006069731 +-0.005718534 0.006069731 0.006069731 +0.0001755984 0.006069731 0.006069731 +0.006069731 0.006069731 0.006069731 +0.01197402 0.006069731 0.006069731 +0.01903886 0.006069731 0.006069731 +0.02852504 0.006069731 0.006069731 +0.04126244 0.006069731 0.006069731 +0.05836535 0.006069731 0.006069731 +0.08132997 0.006069731 0.006069731 +0.1121653 0.006069731 0.006069731 +0.1535689 0.006069731 0.006069731 +0.2091628 0.006069731 0.006069731 +0.2838106 0.006069731 0.006069731 +0.3840425 0.006069731 0.006069731 +0.518627 0.006069731 0.006069731 +0.6993381 0.006069731 0.006069731 +0.9419845 0.006069731 0.006069731 +1.267794 0.006069731 0.006069731 +1.705268 0.006069731 0.006069731 +2.292679 0.006069731 0.006069731 +3.081414 0.006069731 0.006069731 +4.140474 0.006069731 0.006069731 +5.562508 0.006069731 0.006069731 +7.471917 0.006069731 0.006069731 +10.03574 0.006069731 0.006069731 +13.47828 0.006069731 0.006069731 +18.10068 0.006069731 0.006069731 +24.30731 0.006069731 0.006069731 +32.64117 0.006069731 0.006069731 +43.83129 0.006069731 0.006069731 +58.85664 0.006069731 0.006069731 +-0.0175068 0.01197402 0.006069731 +-0.01161267 0.01197402 0.006069731 +-0.005718534 0.01197402 0.006069731 +0.0001755984 0.01197402 0.006069731 +0.006069731 0.01197402 0.006069731 +0.01197402 0.01197402 0.006069731 +0.01903886 0.01197402 0.006069731 +0.02852504 0.01197402 0.006069731 +0.04126244 0.01197402 0.006069731 +0.05836535 0.01197402 0.006069731 +0.08132997 0.01197402 0.006069731 +0.1121653 0.01197402 0.006069731 +0.1535689 0.01197402 0.006069731 +0.2091628 0.01197402 0.006069731 +0.2838106 0.01197402 0.006069731 +0.3840425 0.01197402 0.006069731 +0.518627 0.01197402 0.006069731 +0.6993381 0.01197402 0.006069731 +0.9419845 0.01197402 0.006069731 +1.267794 0.01197402 0.006069731 +1.705268 0.01197402 0.006069731 +2.292679 0.01197402 0.006069731 +3.081414 0.01197402 0.006069731 +4.140474 0.01197402 0.006069731 +5.562508 0.01197402 0.006069731 +7.471917 0.01197402 0.006069731 +10.03574 0.01197402 0.006069731 +13.47828 0.01197402 0.006069731 +18.10068 0.01197402 0.006069731 +24.30731 0.01197402 0.006069731 +32.64117 0.01197402 0.006069731 +43.83129 0.01197402 0.006069731 +58.85664 0.01197402 0.006069731 +-0.0175068 0.01903886 0.006069731 +-0.01161267 0.01903886 0.006069731 +-0.005718534 0.01903886 0.006069731 +0.0001755984 0.01903886 0.006069731 +0.006069731 0.01903886 0.006069731 +0.01197402 0.01903886 0.006069731 +0.01903886 0.01903886 0.006069731 +0.02852504 0.01903886 0.006069731 +0.04126244 0.01903886 0.006069731 +0.05836535 0.01903886 0.006069731 +0.08132997 0.01903886 0.006069731 +0.1121653 0.01903886 0.006069731 +0.1535689 0.01903886 0.006069731 +0.2091628 0.01903886 0.006069731 +0.2838106 0.01903886 0.006069731 +0.3840425 0.01903886 0.006069731 +0.518627 0.01903886 0.006069731 +0.6993381 0.01903886 0.006069731 +0.9419845 0.01903886 0.006069731 +1.267794 0.01903886 0.006069731 +1.705268 0.01903886 0.006069731 +2.292679 0.01903886 0.006069731 +3.081414 0.01903886 0.006069731 +4.140474 0.01903886 0.006069731 +5.562508 0.01903886 0.006069731 +7.471917 0.01903886 0.006069731 +10.03574 0.01903886 0.006069731 +13.47828 0.01903886 0.006069731 +18.10068 0.01903886 0.006069731 +24.30731 0.01903886 0.006069731 +32.64117 0.01903886 0.006069731 +43.83129 0.01903886 0.006069731 +58.85664 0.01903886 0.006069731 +-0.0175068 0.02852504 0.006069731 +-0.01161267 0.02852504 0.006069731 +-0.005718534 0.02852504 0.006069731 +0.0001755984 0.02852504 0.006069731 +0.006069731 0.02852504 0.006069731 +0.01197402 0.02852504 0.006069731 +0.01903886 0.02852504 0.006069731 +0.02852504 0.02852504 0.006069731 +0.04126244 0.02852504 0.006069731 +0.05836535 0.02852504 0.006069731 +0.08132997 0.02852504 0.006069731 +0.1121653 0.02852504 0.006069731 +0.1535689 0.02852504 0.006069731 +0.2091628 0.02852504 0.006069731 +0.2838106 0.02852504 0.006069731 +0.3840425 0.02852504 0.006069731 +0.518627 0.02852504 0.006069731 +0.6993381 0.02852504 0.006069731 +0.9419845 0.02852504 0.006069731 +1.267794 0.02852504 0.006069731 +1.705268 0.02852504 0.006069731 +2.292679 0.02852504 0.006069731 +3.081414 0.02852504 0.006069731 +4.140474 0.02852504 0.006069731 +5.562508 0.02852504 0.006069731 +7.471917 0.02852504 0.006069731 +10.03574 0.02852504 0.006069731 +13.47828 0.02852504 0.006069731 +18.10068 0.02852504 0.006069731 +24.30731 0.02852504 0.006069731 +32.64117 0.02852504 0.006069731 +43.83129 0.02852504 0.006069731 +58.85664 0.02852504 0.006069731 +-0.0175068 0.04126244 0.006069731 +-0.01161267 0.04126244 0.006069731 +-0.005718534 0.04126244 0.006069731 +0.0001755984 0.04126244 0.006069731 +0.006069731 0.04126244 0.006069731 +0.01197402 0.04126244 0.006069731 +0.01903886 0.04126244 0.006069731 +0.02852504 0.04126244 0.006069731 +0.04126244 0.04126244 0.006069731 +0.05836535 0.04126244 0.006069731 +0.08132997 0.04126244 0.006069731 +0.1121653 0.04126244 0.006069731 +0.1535689 0.04126244 0.006069731 +0.2091628 0.04126244 0.006069731 +0.2838106 0.04126244 0.006069731 +0.3840425 0.04126244 0.006069731 +0.518627 0.04126244 0.006069731 +0.6993381 0.04126244 0.006069731 +0.9419845 0.04126244 0.006069731 +1.267794 0.04126244 0.006069731 +1.705268 0.04126244 0.006069731 +2.292679 0.04126244 0.006069731 +3.081414 0.04126244 0.006069731 +4.140474 0.04126244 0.006069731 +5.562508 0.04126244 0.006069731 +7.471917 0.04126244 0.006069731 +10.03574 0.04126244 0.006069731 +13.47828 0.04126244 0.006069731 +18.10068 0.04126244 0.006069731 +24.30731 0.04126244 0.006069731 +32.64117 0.04126244 0.006069731 +43.83129 0.04126244 0.006069731 +58.85664 0.04126244 0.006069731 +-0.0175068 0.05836535 0.006069731 +-0.01161267 0.05836535 0.006069731 +-0.005718534 0.05836535 0.006069731 +0.0001755984 0.05836535 0.006069731 +0.006069731 0.05836535 0.006069731 +0.01197402 0.05836535 0.006069731 +0.01903886 0.05836535 0.006069731 +0.02852504 0.05836535 0.006069731 +0.04126244 0.05836535 0.006069731 +0.05836535 0.05836535 0.006069731 +0.08132997 0.05836535 0.006069731 +0.1121653 0.05836535 0.006069731 +0.1535689 0.05836535 0.006069731 +0.2091628 0.05836535 0.006069731 +0.2838106 0.05836535 0.006069731 +0.3840425 0.05836535 0.006069731 +0.518627 0.05836535 0.006069731 +0.6993381 0.05836535 0.006069731 +0.9419845 0.05836535 0.006069731 +1.267794 0.05836535 0.006069731 +1.705268 0.05836535 0.006069731 +2.292679 0.05836535 0.006069731 +3.081414 0.05836535 0.006069731 +4.140474 0.05836535 0.006069731 +5.562508 0.05836535 0.006069731 +7.471917 0.05836535 0.006069731 +10.03574 0.05836535 0.006069731 +13.47828 0.05836535 0.006069731 +18.10068 0.05836535 0.006069731 +24.30731 0.05836535 0.006069731 +32.64117 0.05836535 0.006069731 +43.83129 0.05836535 0.006069731 +58.85664 0.05836535 0.006069731 +-0.0175068 0.08132997 0.006069731 +-0.01161267 0.08132997 0.006069731 +-0.005718534 0.08132997 0.006069731 +0.0001755984 0.08132997 0.006069731 +0.006069731 0.08132997 0.006069731 +0.01197402 0.08132997 0.006069731 +0.01903886 0.08132997 0.006069731 +0.02852504 0.08132997 0.006069731 +0.04126244 0.08132997 0.006069731 +0.05836535 0.08132997 0.006069731 +0.08132997 0.08132997 0.006069731 +0.1121653 0.08132997 0.006069731 +0.1535689 0.08132997 0.006069731 +0.2091628 0.08132997 0.006069731 +0.2838106 0.08132997 0.006069731 +0.3840425 0.08132997 0.006069731 +0.518627 0.08132997 0.006069731 +0.6993381 0.08132997 0.006069731 +0.9419845 0.08132997 0.006069731 +1.267794 0.08132997 0.006069731 +1.705268 0.08132997 0.006069731 +2.292679 0.08132997 0.006069731 +3.081414 0.08132997 0.006069731 +4.140474 0.08132997 0.006069731 +5.562508 0.08132997 0.006069731 +7.471917 0.08132997 0.006069731 +10.03574 0.08132997 0.006069731 +13.47828 0.08132997 0.006069731 +18.10068 0.08132997 0.006069731 +24.30731 0.08132997 0.006069731 +32.64117 0.08132997 0.006069731 +43.83129 0.08132997 0.006069731 +58.85664 0.08132997 0.006069731 +-0.0175068 0.1121653 0.006069731 +-0.01161267 0.1121653 0.006069731 +-0.005718534 0.1121653 0.006069731 +0.0001755984 0.1121653 0.006069731 +0.006069731 0.1121653 0.006069731 +0.01197402 0.1121653 0.006069731 +0.01903886 0.1121653 0.006069731 +0.02852504 0.1121653 0.006069731 +0.04126244 0.1121653 0.006069731 +0.05836535 0.1121653 0.006069731 +0.08132997 0.1121653 0.006069731 +0.1121653 0.1121653 0.006069731 +0.1535689 0.1121653 0.006069731 +0.2091628 0.1121653 0.006069731 +0.2838106 0.1121653 0.006069731 +0.3840425 0.1121653 0.006069731 +0.518627 0.1121653 0.006069731 +0.6993381 0.1121653 0.006069731 +0.9419845 0.1121653 0.006069731 +1.267794 0.1121653 0.006069731 +1.705268 0.1121653 0.006069731 +2.292679 0.1121653 0.006069731 +3.081414 0.1121653 0.006069731 +4.140474 0.1121653 0.006069731 +5.562508 0.1121653 0.006069731 +7.471917 0.1121653 0.006069731 +10.03574 0.1121653 0.006069731 +13.47828 0.1121653 0.006069731 +18.10068 0.1121653 0.006069731 +24.30731 0.1121653 0.006069731 +32.64117 0.1121653 0.006069731 +43.83129 0.1121653 0.006069731 +58.85664 0.1121653 0.006069731 +-0.0175068 0.1535689 0.006069731 +-0.01161267 0.1535689 0.006069731 +-0.005718534 0.1535689 0.006069731 +0.0001755984 0.1535689 0.006069731 +0.006069731 0.1535689 0.006069731 +0.01197402 0.1535689 0.006069731 +0.01903886 0.1535689 0.006069731 +0.02852504 0.1535689 0.006069731 +0.04126244 0.1535689 0.006069731 +0.05836535 0.1535689 0.006069731 +0.08132997 0.1535689 0.006069731 +0.1121653 0.1535689 0.006069731 +0.1535689 0.1535689 0.006069731 +0.2091628 0.1535689 0.006069731 +0.2838106 0.1535689 0.006069731 +0.3840425 0.1535689 0.006069731 +0.518627 0.1535689 0.006069731 +0.6993381 0.1535689 0.006069731 +0.9419845 0.1535689 0.006069731 +1.267794 0.1535689 0.006069731 +1.705268 0.1535689 0.006069731 +2.292679 0.1535689 0.006069731 +3.081414 0.1535689 0.006069731 +4.140474 0.1535689 0.006069731 +5.562508 0.1535689 0.006069731 +7.471917 0.1535689 0.006069731 +10.03574 0.1535689 0.006069731 +13.47828 0.1535689 0.006069731 +18.10068 0.1535689 0.006069731 +24.30731 0.1535689 0.006069731 +32.64117 0.1535689 0.006069731 +43.83129 0.1535689 0.006069731 +58.85664 0.1535689 0.006069731 +-0.0175068 0.2091628 0.006069731 +-0.01161267 0.2091628 0.006069731 +-0.005718534 0.2091628 0.006069731 +0.0001755984 0.2091628 0.006069731 +0.006069731 0.2091628 0.006069731 +0.01197402 0.2091628 0.006069731 +0.01903886 0.2091628 0.006069731 +0.02852504 0.2091628 0.006069731 +0.04126244 0.2091628 0.006069731 +0.05836535 0.2091628 0.006069731 +0.08132997 0.2091628 0.006069731 +0.1121653 0.2091628 0.006069731 +0.1535689 0.2091628 0.006069731 +0.2091628 0.2091628 0.006069731 +0.2838106 0.2091628 0.006069731 +0.3840425 0.2091628 0.006069731 +0.518627 0.2091628 0.006069731 +0.6993381 0.2091628 0.006069731 +0.9419845 0.2091628 0.006069731 +1.267794 0.2091628 0.006069731 +1.705268 0.2091628 0.006069731 +2.292679 0.2091628 0.006069731 +3.081414 0.2091628 0.006069731 +4.140474 0.2091628 0.006069731 +5.562508 0.2091628 0.006069731 +7.471917 0.2091628 0.006069731 +10.03574 0.2091628 0.006069731 +13.47828 0.2091628 0.006069731 +18.10068 0.2091628 0.006069731 +24.30731 0.2091628 0.006069731 +32.64117 0.2091628 0.006069731 +43.83129 0.2091628 0.006069731 +58.85664 0.2091628 0.006069731 +-0.0175068 0.2838106 0.006069731 +-0.01161267 0.2838106 0.006069731 +-0.005718534 0.2838106 0.006069731 +0.0001755984 0.2838106 0.006069731 +0.006069731 0.2838106 0.006069731 +0.01197402 0.2838106 0.006069731 +0.01903886 0.2838106 0.006069731 +0.02852504 0.2838106 0.006069731 +0.04126244 0.2838106 0.006069731 +0.05836535 0.2838106 0.006069731 +0.08132997 0.2838106 0.006069731 +0.1121653 0.2838106 0.006069731 +0.1535689 0.2838106 0.006069731 +0.2091628 0.2838106 0.006069731 +0.2838106 0.2838106 0.006069731 +0.3840425 0.2838106 0.006069731 +0.518627 0.2838106 0.006069731 +0.6993381 0.2838106 0.006069731 +0.9419845 0.2838106 0.006069731 +1.267794 0.2838106 0.006069731 +1.705268 0.2838106 0.006069731 +2.292679 0.2838106 0.006069731 +3.081414 0.2838106 0.006069731 +4.140474 0.2838106 0.006069731 +5.562508 0.2838106 0.006069731 +7.471917 0.2838106 0.006069731 +10.03574 0.2838106 0.006069731 +13.47828 0.2838106 0.006069731 +18.10068 0.2838106 0.006069731 +24.30731 0.2838106 0.006069731 +32.64117 0.2838106 0.006069731 +43.83129 0.2838106 0.006069731 +58.85664 0.2838106 0.006069731 +-0.0175068 0.3840425 0.006069731 +-0.01161267 0.3840425 0.006069731 +-0.005718534 0.3840425 0.006069731 +0.0001755984 0.3840425 0.006069731 +0.006069731 0.3840425 0.006069731 +0.01197402 0.3840425 0.006069731 +0.01903886 0.3840425 0.006069731 +0.02852504 0.3840425 0.006069731 +0.04126244 0.3840425 0.006069731 +0.05836535 0.3840425 0.006069731 +0.08132997 0.3840425 0.006069731 +0.1121653 0.3840425 0.006069731 +0.1535689 0.3840425 0.006069731 +0.2091628 0.3840425 0.006069731 +0.2838106 0.3840425 0.006069731 +0.3840425 0.3840425 0.006069731 +0.518627 0.3840425 0.006069731 +0.6993381 0.3840425 0.006069731 +0.9419845 0.3840425 0.006069731 +1.267794 0.3840425 0.006069731 +1.705268 0.3840425 0.006069731 +2.292679 0.3840425 0.006069731 +3.081414 0.3840425 0.006069731 +4.140474 0.3840425 0.006069731 +5.562508 0.3840425 0.006069731 +7.471917 0.3840425 0.006069731 +10.03574 0.3840425 0.006069731 +13.47828 0.3840425 0.006069731 +18.10068 0.3840425 0.006069731 +24.30731 0.3840425 0.006069731 +32.64117 0.3840425 0.006069731 +43.83129 0.3840425 0.006069731 +58.85664 0.3840425 0.006069731 +-0.0175068 0.518627 0.006069731 +-0.01161267 0.518627 0.006069731 +-0.005718534 0.518627 0.006069731 +0.0001755984 0.518627 0.006069731 +0.006069731 0.518627 0.006069731 +0.01197402 0.518627 0.006069731 +0.01903886 0.518627 0.006069731 +0.02852504 0.518627 0.006069731 +0.04126244 0.518627 0.006069731 +0.05836535 0.518627 0.006069731 +0.08132997 0.518627 0.006069731 +0.1121653 0.518627 0.006069731 +0.1535689 0.518627 0.006069731 +0.2091628 0.518627 0.006069731 +0.2838106 0.518627 0.006069731 +0.3840425 0.518627 0.006069731 +0.518627 0.518627 0.006069731 +0.6993381 0.518627 0.006069731 +0.9419845 0.518627 0.006069731 +1.267794 0.518627 0.006069731 +1.705268 0.518627 0.006069731 +2.292679 0.518627 0.006069731 +3.081414 0.518627 0.006069731 +4.140474 0.518627 0.006069731 +5.562508 0.518627 0.006069731 +7.471917 0.518627 0.006069731 +10.03574 0.518627 0.006069731 +13.47828 0.518627 0.006069731 +18.10068 0.518627 0.006069731 +24.30731 0.518627 0.006069731 +32.64117 0.518627 0.006069731 +43.83129 0.518627 0.006069731 +58.85664 0.518627 0.006069731 +-0.0175068 0.6993381 0.006069731 +-0.01161267 0.6993381 0.006069731 +-0.005718534 0.6993381 0.006069731 +0.0001755984 0.6993381 0.006069731 +0.006069731 0.6993381 0.006069731 +0.01197402 0.6993381 0.006069731 +0.01903886 0.6993381 0.006069731 +0.02852504 0.6993381 0.006069731 +0.04126244 0.6993381 0.006069731 +0.05836535 0.6993381 0.006069731 +0.08132997 0.6993381 0.006069731 +0.1121653 0.6993381 0.006069731 +0.1535689 0.6993381 0.006069731 +0.2091628 0.6993381 0.006069731 +0.2838106 0.6993381 0.006069731 +0.3840425 0.6993381 0.006069731 +0.518627 0.6993381 0.006069731 +0.6993381 0.6993381 0.006069731 +0.9419845 0.6993381 0.006069731 +1.267794 0.6993381 0.006069731 +1.705268 0.6993381 0.006069731 +2.292679 0.6993381 0.006069731 +3.081414 0.6993381 0.006069731 +4.140474 0.6993381 0.006069731 +5.562508 0.6993381 0.006069731 +7.471917 0.6993381 0.006069731 +10.03574 0.6993381 0.006069731 +13.47828 0.6993381 0.006069731 +18.10068 0.6993381 0.006069731 +24.30731 0.6993381 0.006069731 +32.64117 0.6993381 0.006069731 +43.83129 0.6993381 0.006069731 +58.85664 0.6993381 0.006069731 +-0.0175068 0.9419845 0.006069731 +-0.01161267 0.9419845 0.006069731 +-0.005718534 0.9419845 0.006069731 +0.0001755984 0.9419845 0.006069731 +0.006069731 0.9419845 0.006069731 +0.01197402 0.9419845 0.006069731 +0.01903886 0.9419845 0.006069731 +0.02852504 0.9419845 0.006069731 +0.04126244 0.9419845 0.006069731 +0.05836535 0.9419845 0.006069731 +0.08132997 0.9419845 0.006069731 +0.1121653 0.9419845 0.006069731 +0.1535689 0.9419845 0.006069731 +0.2091628 0.9419845 0.006069731 +0.2838106 0.9419845 0.006069731 +0.3840425 0.9419845 0.006069731 +0.518627 0.9419845 0.006069731 +0.6993381 0.9419845 0.006069731 +0.9419845 0.9419845 0.006069731 +1.267794 0.9419845 0.006069731 +1.705268 0.9419845 0.006069731 +2.292679 0.9419845 0.006069731 +3.081414 0.9419845 0.006069731 +4.140474 0.9419845 0.006069731 +5.562508 0.9419845 0.006069731 +7.471917 0.9419845 0.006069731 +10.03574 0.9419845 0.006069731 +13.47828 0.9419845 0.006069731 +18.10068 0.9419845 0.006069731 +24.30731 0.9419845 0.006069731 +32.64117 0.9419845 0.006069731 +43.83129 0.9419845 0.006069731 +58.85664 0.9419845 0.006069731 +-0.0175068 1.267794 0.006069731 +-0.01161267 1.267794 0.006069731 +-0.005718534 1.267794 0.006069731 +0.0001755984 1.267794 0.006069731 +0.006069731 1.267794 0.006069731 +0.01197402 1.267794 0.006069731 +0.01903886 1.267794 0.006069731 +0.02852504 1.267794 0.006069731 +0.04126244 1.267794 0.006069731 +0.05836535 1.267794 0.006069731 +0.08132997 1.267794 0.006069731 +0.1121653 1.267794 0.006069731 +0.1535689 1.267794 0.006069731 +0.2091628 1.267794 0.006069731 +0.2838106 1.267794 0.006069731 +0.3840425 1.267794 0.006069731 +0.518627 1.267794 0.006069731 +0.6993381 1.267794 0.006069731 +0.9419845 1.267794 0.006069731 +1.267794 1.267794 0.006069731 +1.705268 1.267794 0.006069731 +2.292679 1.267794 0.006069731 +3.081414 1.267794 0.006069731 +4.140474 1.267794 0.006069731 +5.562508 1.267794 0.006069731 +7.471917 1.267794 0.006069731 +10.03574 1.267794 0.006069731 +13.47828 1.267794 0.006069731 +18.10068 1.267794 0.006069731 +24.30731 1.267794 0.006069731 +32.64117 1.267794 0.006069731 +43.83129 1.267794 0.006069731 +58.85664 1.267794 0.006069731 +-0.0175068 1.705268 0.006069731 +-0.01161267 1.705268 0.006069731 +-0.005718534 1.705268 0.006069731 +0.0001755984 1.705268 0.006069731 +0.006069731 1.705268 0.006069731 +0.01197402 1.705268 0.006069731 +0.01903886 1.705268 0.006069731 +0.02852504 1.705268 0.006069731 +0.04126244 1.705268 0.006069731 +0.05836535 1.705268 0.006069731 +0.08132997 1.705268 0.006069731 +0.1121653 1.705268 0.006069731 +0.1535689 1.705268 0.006069731 +0.2091628 1.705268 0.006069731 +0.2838106 1.705268 0.006069731 +0.3840425 1.705268 0.006069731 +0.518627 1.705268 0.006069731 +0.6993381 1.705268 0.006069731 +0.9419845 1.705268 0.006069731 +1.267794 1.705268 0.006069731 +1.705268 1.705268 0.006069731 +2.292679 1.705268 0.006069731 +3.081414 1.705268 0.006069731 +4.140474 1.705268 0.006069731 +5.562508 1.705268 0.006069731 +7.471917 1.705268 0.006069731 +10.03574 1.705268 0.006069731 +13.47828 1.705268 0.006069731 +18.10068 1.705268 0.006069731 +24.30731 1.705268 0.006069731 +32.64117 1.705268 0.006069731 +43.83129 1.705268 0.006069731 +58.85664 1.705268 0.006069731 +-0.0175068 2.292679 0.006069731 +-0.01161267 2.292679 0.006069731 +-0.005718534 2.292679 0.006069731 +0.0001755984 2.292679 0.006069731 +0.006069731 2.292679 0.006069731 +0.01197402 2.292679 0.006069731 +0.01903886 2.292679 0.006069731 +0.02852504 2.292679 0.006069731 +0.04126244 2.292679 0.006069731 +0.05836535 2.292679 0.006069731 +0.08132997 2.292679 0.006069731 +0.1121653 2.292679 0.006069731 +0.1535689 2.292679 0.006069731 +0.2091628 2.292679 0.006069731 +0.2838106 2.292679 0.006069731 +0.3840425 2.292679 0.006069731 +0.518627 2.292679 0.006069731 +0.6993381 2.292679 0.006069731 +0.9419845 2.292679 0.006069731 +1.267794 2.292679 0.006069731 +1.705268 2.292679 0.006069731 +2.292679 2.292679 0.006069731 +3.081414 2.292679 0.006069731 +4.140474 2.292679 0.006069731 +5.562508 2.292679 0.006069731 +7.471917 2.292679 0.006069731 +10.03574 2.292679 0.006069731 +13.47828 2.292679 0.006069731 +18.10068 2.292679 0.006069731 +24.30731 2.292679 0.006069731 +32.64117 2.292679 0.006069731 +43.83129 2.292679 0.006069731 +58.85664 2.292679 0.006069731 +-0.0175068 3.081414 0.006069731 +-0.01161267 3.081414 0.006069731 +-0.005718534 3.081414 0.006069731 +0.0001755984 3.081414 0.006069731 +0.006069731 3.081414 0.006069731 +0.01197402 3.081414 0.006069731 +0.01903886 3.081414 0.006069731 +0.02852504 3.081414 0.006069731 +0.04126244 3.081414 0.006069731 +0.05836535 3.081414 0.006069731 +0.08132997 3.081414 0.006069731 +0.1121653 3.081414 0.006069731 +0.1535689 3.081414 0.006069731 +0.2091628 3.081414 0.006069731 +0.2838106 3.081414 0.006069731 +0.3840425 3.081414 0.006069731 +0.518627 3.081414 0.006069731 +0.6993381 3.081414 0.006069731 +0.9419845 3.081414 0.006069731 +1.267794 3.081414 0.006069731 +1.705268 3.081414 0.006069731 +2.292679 3.081414 0.006069731 +3.081414 3.081414 0.006069731 +4.140474 3.081414 0.006069731 +5.562508 3.081414 0.006069731 +7.471917 3.081414 0.006069731 +10.03574 3.081414 0.006069731 +13.47828 3.081414 0.006069731 +18.10068 3.081414 0.006069731 +24.30731 3.081414 0.006069731 +32.64117 3.081414 0.006069731 +43.83129 3.081414 0.006069731 +58.85664 3.081414 0.006069731 +-0.0175068 4.140474 0.006069731 +-0.01161267 4.140474 0.006069731 +-0.005718534 4.140474 0.006069731 +0.0001755984 4.140474 0.006069731 +0.006069731 4.140474 0.006069731 +0.01197402 4.140474 0.006069731 +0.01903886 4.140474 0.006069731 +0.02852504 4.140474 0.006069731 +0.04126244 4.140474 0.006069731 +0.05836535 4.140474 0.006069731 +0.08132997 4.140474 0.006069731 +0.1121653 4.140474 0.006069731 +0.1535689 4.140474 0.006069731 +0.2091628 4.140474 0.006069731 +0.2838106 4.140474 0.006069731 +0.3840425 4.140474 0.006069731 +0.518627 4.140474 0.006069731 +0.6993381 4.140474 0.006069731 +0.9419845 4.140474 0.006069731 +1.267794 4.140474 0.006069731 +1.705268 4.140474 0.006069731 +2.292679 4.140474 0.006069731 +3.081414 4.140474 0.006069731 +4.140474 4.140474 0.006069731 +5.562508 4.140474 0.006069731 +7.471917 4.140474 0.006069731 +10.03574 4.140474 0.006069731 +13.47828 4.140474 0.006069731 +18.10068 4.140474 0.006069731 +24.30731 4.140474 0.006069731 +32.64117 4.140474 0.006069731 +43.83129 4.140474 0.006069731 +58.85664 4.140474 0.006069731 +-0.0175068 5.562508 0.006069731 +-0.01161267 5.562508 0.006069731 +-0.005718534 5.562508 0.006069731 +0.0001755984 5.562508 0.006069731 +0.006069731 5.562508 0.006069731 +0.01197402 5.562508 0.006069731 +0.01903886 5.562508 0.006069731 +0.02852504 5.562508 0.006069731 +0.04126244 5.562508 0.006069731 +0.05836535 5.562508 0.006069731 +0.08132997 5.562508 0.006069731 +0.1121653 5.562508 0.006069731 +0.1535689 5.562508 0.006069731 +0.2091628 5.562508 0.006069731 +0.2838106 5.562508 0.006069731 +0.3840425 5.562508 0.006069731 +0.518627 5.562508 0.006069731 +0.6993381 5.562508 0.006069731 +0.9419845 5.562508 0.006069731 +1.267794 5.562508 0.006069731 +1.705268 5.562508 0.006069731 +2.292679 5.562508 0.006069731 +3.081414 5.562508 0.006069731 +4.140474 5.562508 0.006069731 +5.562508 5.562508 0.006069731 +7.471917 5.562508 0.006069731 +10.03574 5.562508 0.006069731 +13.47828 5.562508 0.006069731 +18.10068 5.562508 0.006069731 +24.30731 5.562508 0.006069731 +32.64117 5.562508 0.006069731 +43.83129 5.562508 0.006069731 +58.85664 5.562508 0.006069731 +-0.0175068 7.471917 0.006069731 +-0.01161267 7.471917 0.006069731 +-0.005718534 7.471917 0.006069731 +0.0001755984 7.471917 0.006069731 +0.006069731 7.471917 0.006069731 +0.01197402 7.471917 0.006069731 +0.01903886 7.471917 0.006069731 +0.02852504 7.471917 0.006069731 +0.04126244 7.471917 0.006069731 +0.05836535 7.471917 0.006069731 +0.08132997 7.471917 0.006069731 +0.1121653 7.471917 0.006069731 +0.1535689 7.471917 0.006069731 +0.2091628 7.471917 0.006069731 +0.2838106 7.471917 0.006069731 +0.3840425 7.471917 0.006069731 +0.518627 7.471917 0.006069731 +0.6993381 7.471917 0.006069731 +0.9419845 7.471917 0.006069731 +1.267794 7.471917 0.006069731 +1.705268 7.471917 0.006069731 +2.292679 7.471917 0.006069731 +3.081414 7.471917 0.006069731 +4.140474 7.471917 0.006069731 +5.562508 7.471917 0.006069731 +7.471917 7.471917 0.006069731 +10.03574 7.471917 0.006069731 +13.47828 7.471917 0.006069731 +18.10068 7.471917 0.006069731 +24.30731 7.471917 0.006069731 +32.64117 7.471917 0.006069731 +43.83129 7.471917 0.006069731 +58.85664 7.471917 0.006069731 +-0.0175068 10.03574 0.006069731 +-0.01161267 10.03574 0.006069731 +-0.005718534 10.03574 0.006069731 +0.0001755984 10.03574 0.006069731 +0.006069731 10.03574 0.006069731 +0.01197402 10.03574 0.006069731 +0.01903886 10.03574 0.006069731 +0.02852504 10.03574 0.006069731 +0.04126244 10.03574 0.006069731 +0.05836535 10.03574 0.006069731 +0.08132997 10.03574 0.006069731 +0.1121653 10.03574 0.006069731 +0.1535689 10.03574 0.006069731 +0.2091628 10.03574 0.006069731 +0.2838106 10.03574 0.006069731 +0.3840425 10.03574 0.006069731 +0.518627 10.03574 0.006069731 +0.6993381 10.03574 0.006069731 +0.9419845 10.03574 0.006069731 +1.267794 10.03574 0.006069731 +1.705268 10.03574 0.006069731 +2.292679 10.03574 0.006069731 +3.081414 10.03574 0.006069731 +4.140474 10.03574 0.006069731 +5.562508 10.03574 0.006069731 +7.471917 10.03574 0.006069731 +10.03574 10.03574 0.006069731 +13.47828 10.03574 0.006069731 +18.10068 10.03574 0.006069731 +24.30731 10.03574 0.006069731 +32.64117 10.03574 0.006069731 +43.83129 10.03574 0.006069731 +58.85664 10.03574 0.006069731 +-0.0175068 13.47828 0.006069731 +-0.01161267 13.47828 0.006069731 +-0.005718534 13.47828 0.006069731 +0.0001755984 13.47828 0.006069731 +0.006069731 13.47828 0.006069731 +0.01197402 13.47828 0.006069731 +0.01903886 13.47828 0.006069731 +0.02852504 13.47828 0.006069731 +0.04126244 13.47828 0.006069731 +0.05836535 13.47828 0.006069731 +0.08132997 13.47828 0.006069731 +0.1121653 13.47828 0.006069731 +0.1535689 13.47828 0.006069731 +0.2091628 13.47828 0.006069731 +0.2838106 13.47828 0.006069731 +0.3840425 13.47828 0.006069731 +0.518627 13.47828 0.006069731 +0.6993381 13.47828 0.006069731 +0.9419845 13.47828 0.006069731 +1.267794 13.47828 0.006069731 +1.705268 13.47828 0.006069731 +2.292679 13.47828 0.006069731 +3.081414 13.47828 0.006069731 +4.140474 13.47828 0.006069731 +5.562508 13.47828 0.006069731 +7.471917 13.47828 0.006069731 +10.03574 13.47828 0.006069731 +13.47828 13.47828 0.006069731 +18.10068 13.47828 0.006069731 +24.30731 13.47828 0.006069731 +32.64117 13.47828 0.006069731 +43.83129 13.47828 0.006069731 +58.85664 13.47828 0.006069731 +-0.0175068 18.10068 0.006069731 +-0.01161267 18.10068 0.006069731 +-0.005718534 18.10068 0.006069731 +0.0001755984 18.10068 0.006069731 +0.006069731 18.10068 0.006069731 +0.01197402 18.10068 0.006069731 +0.01903886 18.10068 0.006069731 +0.02852504 18.10068 0.006069731 +0.04126244 18.10068 0.006069731 +0.05836535 18.10068 0.006069731 +0.08132997 18.10068 0.006069731 +0.1121653 18.10068 0.006069731 +0.1535689 18.10068 0.006069731 +0.2091628 18.10068 0.006069731 +0.2838106 18.10068 0.006069731 +0.3840425 18.10068 0.006069731 +0.518627 18.10068 0.006069731 +0.6993381 18.10068 0.006069731 +0.9419845 18.10068 0.006069731 +1.267794 18.10068 0.006069731 +1.705268 18.10068 0.006069731 +2.292679 18.10068 0.006069731 +3.081414 18.10068 0.006069731 +4.140474 18.10068 0.006069731 +5.562508 18.10068 0.006069731 +7.471917 18.10068 0.006069731 +10.03574 18.10068 0.006069731 +13.47828 18.10068 0.006069731 +18.10068 18.10068 0.006069731 +24.30731 18.10068 0.006069731 +32.64117 18.10068 0.006069731 +43.83129 18.10068 0.006069731 +58.85664 18.10068 0.006069731 +-0.0175068 24.30731 0.006069731 +-0.01161267 24.30731 0.006069731 +-0.005718534 24.30731 0.006069731 +0.0001755984 24.30731 0.006069731 +0.006069731 24.30731 0.006069731 +0.01197402 24.30731 0.006069731 +0.01903886 24.30731 0.006069731 +0.02852504 24.30731 0.006069731 +0.04126244 24.30731 0.006069731 +0.05836535 24.30731 0.006069731 +0.08132997 24.30731 0.006069731 +0.1121653 24.30731 0.006069731 +0.1535689 24.30731 0.006069731 +0.2091628 24.30731 0.006069731 +0.2838106 24.30731 0.006069731 +0.3840425 24.30731 0.006069731 +0.518627 24.30731 0.006069731 +0.6993381 24.30731 0.006069731 +0.9419845 24.30731 0.006069731 +1.267794 24.30731 0.006069731 +1.705268 24.30731 0.006069731 +2.292679 24.30731 0.006069731 +3.081414 24.30731 0.006069731 +4.140474 24.30731 0.006069731 +5.562508 24.30731 0.006069731 +7.471917 24.30731 0.006069731 +10.03574 24.30731 0.006069731 +13.47828 24.30731 0.006069731 +18.10068 24.30731 0.006069731 +24.30731 24.30731 0.006069731 +32.64117 24.30731 0.006069731 +43.83129 24.30731 0.006069731 +58.85664 24.30731 0.006069731 +-0.0175068 32.64117 0.006069731 +-0.01161267 32.64117 0.006069731 +-0.005718534 32.64117 0.006069731 +0.0001755984 32.64117 0.006069731 +0.006069731 32.64117 0.006069731 +0.01197402 32.64117 0.006069731 +0.01903886 32.64117 0.006069731 +0.02852504 32.64117 0.006069731 +0.04126244 32.64117 0.006069731 +0.05836535 32.64117 0.006069731 +0.08132997 32.64117 0.006069731 +0.1121653 32.64117 0.006069731 +0.1535689 32.64117 0.006069731 +0.2091628 32.64117 0.006069731 +0.2838106 32.64117 0.006069731 +0.3840425 32.64117 0.006069731 +0.518627 32.64117 0.006069731 +0.6993381 32.64117 0.006069731 +0.9419845 32.64117 0.006069731 +1.267794 32.64117 0.006069731 +1.705268 32.64117 0.006069731 +2.292679 32.64117 0.006069731 +3.081414 32.64117 0.006069731 +4.140474 32.64117 0.006069731 +5.562508 32.64117 0.006069731 +7.471917 32.64117 0.006069731 +10.03574 32.64117 0.006069731 +13.47828 32.64117 0.006069731 +18.10068 32.64117 0.006069731 +24.30731 32.64117 0.006069731 +32.64117 32.64117 0.006069731 +43.83129 32.64117 0.006069731 +58.85664 32.64117 0.006069731 +-0.0175068 43.83129 0.006069731 +-0.01161267 43.83129 0.006069731 +-0.005718534 43.83129 0.006069731 +0.0001755984 43.83129 0.006069731 +0.006069731 43.83129 0.006069731 +0.01197402 43.83129 0.006069731 +0.01903886 43.83129 0.006069731 +0.02852504 43.83129 0.006069731 +0.04126244 43.83129 0.006069731 +0.05836535 43.83129 0.006069731 +0.08132997 43.83129 0.006069731 +0.1121653 43.83129 0.006069731 +0.1535689 43.83129 0.006069731 +0.2091628 43.83129 0.006069731 +0.2838106 43.83129 0.006069731 +0.3840425 43.83129 0.006069731 +0.518627 43.83129 0.006069731 +0.6993381 43.83129 0.006069731 +0.9419845 43.83129 0.006069731 +1.267794 43.83129 0.006069731 +1.705268 43.83129 0.006069731 +2.292679 43.83129 0.006069731 +3.081414 43.83129 0.006069731 +4.140474 43.83129 0.006069731 +5.562508 43.83129 0.006069731 +7.471917 43.83129 0.006069731 +10.03574 43.83129 0.006069731 +13.47828 43.83129 0.006069731 +18.10068 43.83129 0.006069731 +24.30731 43.83129 0.006069731 +32.64117 43.83129 0.006069731 +43.83129 43.83129 0.006069731 +58.85664 43.83129 0.006069731 +-0.0175068 58.85664 0.006069731 +-0.01161267 58.85664 0.006069731 +-0.005718534 58.85664 0.006069731 +0.0001755984 58.85664 0.006069731 +0.006069731 58.85664 0.006069731 +0.01197402 58.85664 0.006069731 +0.01903886 58.85664 0.006069731 +0.02852504 58.85664 0.006069731 +0.04126244 58.85664 0.006069731 +0.05836535 58.85664 0.006069731 +0.08132997 58.85664 0.006069731 +0.1121653 58.85664 0.006069731 +0.1535689 58.85664 0.006069731 +0.2091628 58.85664 0.006069731 +0.2838106 58.85664 0.006069731 +0.3840425 58.85664 0.006069731 +0.518627 58.85664 0.006069731 +0.6993381 58.85664 0.006069731 +0.9419845 58.85664 0.006069731 +1.267794 58.85664 0.006069731 +1.705268 58.85664 0.006069731 +2.292679 58.85664 0.006069731 +3.081414 58.85664 0.006069731 +4.140474 58.85664 0.006069731 +5.562508 58.85664 0.006069731 +7.471917 58.85664 0.006069731 +10.03574 58.85664 0.006069731 +13.47828 58.85664 0.006069731 +18.10068 58.85664 0.006069731 +24.30731 58.85664 0.006069731 +32.64117 58.85664 0.006069731 +43.83129 58.85664 0.006069731 +58.85664 58.85664 0.006069731 +-0.0175068 -0.0175068 0.01197402 +-0.01161267 -0.0175068 0.01197402 +-0.005718534 -0.0175068 0.01197402 +0.0001755984 -0.0175068 0.01197402 +0.006069731 -0.0175068 0.01197402 +0.01197402 -0.0175068 0.01197402 +0.01903886 -0.0175068 0.01197402 +0.02852504 -0.0175068 0.01197402 +0.04126244 -0.0175068 0.01197402 +0.05836535 -0.0175068 0.01197402 +0.08132997 -0.0175068 0.01197402 +0.1121653 -0.0175068 0.01197402 +0.1535689 -0.0175068 0.01197402 +0.2091628 -0.0175068 0.01197402 +0.2838106 -0.0175068 0.01197402 +0.3840425 -0.0175068 0.01197402 +0.518627 -0.0175068 0.01197402 +0.6993381 -0.0175068 0.01197402 +0.9419845 -0.0175068 0.01197402 +1.267794 -0.0175068 0.01197402 +1.705268 -0.0175068 0.01197402 +2.292679 -0.0175068 0.01197402 +3.081414 -0.0175068 0.01197402 +4.140474 -0.0175068 0.01197402 +5.562508 -0.0175068 0.01197402 +7.471917 -0.0175068 0.01197402 +10.03574 -0.0175068 0.01197402 +13.47828 -0.0175068 0.01197402 +18.10068 -0.0175068 0.01197402 +24.30731 -0.0175068 0.01197402 +32.64117 -0.0175068 0.01197402 +43.83129 -0.0175068 0.01197402 +58.85664 -0.0175068 0.01197402 +-0.0175068 -0.01161267 0.01197402 +-0.01161267 -0.01161267 0.01197402 +-0.005718534 -0.01161267 0.01197402 +0.0001755984 -0.01161267 0.01197402 +0.006069731 -0.01161267 0.01197402 +0.01197402 -0.01161267 0.01197402 +0.01903886 -0.01161267 0.01197402 +0.02852504 -0.01161267 0.01197402 +0.04126244 -0.01161267 0.01197402 +0.05836535 -0.01161267 0.01197402 +0.08132997 -0.01161267 0.01197402 +0.1121653 -0.01161267 0.01197402 +0.1535689 -0.01161267 0.01197402 +0.2091628 -0.01161267 0.01197402 +0.2838106 -0.01161267 0.01197402 +0.3840425 -0.01161267 0.01197402 +0.518627 -0.01161267 0.01197402 +0.6993381 -0.01161267 0.01197402 +0.9419845 -0.01161267 0.01197402 +1.267794 -0.01161267 0.01197402 +1.705268 -0.01161267 0.01197402 +2.292679 -0.01161267 0.01197402 +3.081414 -0.01161267 0.01197402 +4.140474 -0.01161267 0.01197402 +5.562508 -0.01161267 0.01197402 +7.471917 -0.01161267 0.01197402 +10.03574 -0.01161267 0.01197402 +13.47828 -0.01161267 0.01197402 +18.10068 -0.01161267 0.01197402 +24.30731 -0.01161267 0.01197402 +32.64117 -0.01161267 0.01197402 +43.83129 -0.01161267 0.01197402 +58.85664 -0.01161267 0.01197402 +-0.0175068 -0.005718534 0.01197402 +-0.01161267 -0.005718534 0.01197402 +-0.005718534 -0.005718534 0.01197402 +0.0001755984 -0.005718534 0.01197402 +0.006069731 -0.005718534 0.01197402 +0.01197402 -0.005718534 0.01197402 +0.01903886 -0.005718534 0.01197402 +0.02852504 -0.005718534 0.01197402 +0.04126244 -0.005718534 0.01197402 +0.05836535 -0.005718534 0.01197402 +0.08132997 -0.005718534 0.01197402 +0.1121653 -0.005718534 0.01197402 +0.1535689 -0.005718534 0.01197402 +0.2091628 -0.005718534 0.01197402 +0.2838106 -0.005718534 0.01197402 +0.3840425 -0.005718534 0.01197402 +0.518627 -0.005718534 0.01197402 +0.6993381 -0.005718534 0.01197402 +0.9419845 -0.005718534 0.01197402 +1.267794 -0.005718534 0.01197402 +1.705268 -0.005718534 0.01197402 +2.292679 -0.005718534 0.01197402 +3.081414 -0.005718534 0.01197402 +4.140474 -0.005718534 0.01197402 +5.562508 -0.005718534 0.01197402 +7.471917 -0.005718534 0.01197402 +10.03574 -0.005718534 0.01197402 +13.47828 -0.005718534 0.01197402 +18.10068 -0.005718534 0.01197402 +24.30731 -0.005718534 0.01197402 +32.64117 -0.005718534 0.01197402 +43.83129 -0.005718534 0.01197402 +58.85664 -0.005718534 0.01197402 +-0.0175068 0.0001755984 0.01197402 +-0.01161267 0.0001755984 0.01197402 +-0.005718534 0.0001755984 0.01197402 +0.0001755984 0.0001755984 0.01197402 +0.006069731 0.0001755984 0.01197402 +0.01197402 0.0001755984 0.01197402 +0.01903886 0.0001755984 0.01197402 +0.02852504 0.0001755984 0.01197402 +0.04126244 0.0001755984 0.01197402 +0.05836535 0.0001755984 0.01197402 +0.08132997 0.0001755984 0.01197402 +0.1121653 0.0001755984 0.01197402 +0.1535689 0.0001755984 0.01197402 +0.2091628 0.0001755984 0.01197402 +0.2838106 0.0001755984 0.01197402 +0.3840425 0.0001755984 0.01197402 +0.518627 0.0001755984 0.01197402 +0.6993381 0.0001755984 0.01197402 +0.9419845 0.0001755984 0.01197402 +1.267794 0.0001755984 0.01197402 +1.705268 0.0001755984 0.01197402 +2.292679 0.0001755984 0.01197402 +3.081414 0.0001755984 0.01197402 +4.140474 0.0001755984 0.01197402 +5.562508 0.0001755984 0.01197402 +7.471917 0.0001755984 0.01197402 +10.03574 0.0001755984 0.01197402 +13.47828 0.0001755984 0.01197402 +18.10068 0.0001755984 0.01197402 +24.30731 0.0001755984 0.01197402 +32.64117 0.0001755984 0.01197402 +43.83129 0.0001755984 0.01197402 +58.85664 0.0001755984 0.01197402 +-0.0175068 0.006069731 0.01197402 +-0.01161267 0.006069731 0.01197402 +-0.005718534 0.006069731 0.01197402 +0.0001755984 0.006069731 0.01197402 +0.006069731 0.006069731 0.01197402 +0.01197402 0.006069731 0.01197402 +0.01903886 0.006069731 0.01197402 +0.02852504 0.006069731 0.01197402 +0.04126244 0.006069731 0.01197402 +0.05836535 0.006069731 0.01197402 +0.08132997 0.006069731 0.01197402 +0.1121653 0.006069731 0.01197402 +0.1535689 0.006069731 0.01197402 +0.2091628 0.006069731 0.01197402 +0.2838106 0.006069731 0.01197402 +0.3840425 0.006069731 0.01197402 +0.518627 0.006069731 0.01197402 +0.6993381 0.006069731 0.01197402 +0.9419845 0.006069731 0.01197402 +1.267794 0.006069731 0.01197402 +1.705268 0.006069731 0.01197402 +2.292679 0.006069731 0.01197402 +3.081414 0.006069731 0.01197402 +4.140474 0.006069731 0.01197402 +5.562508 0.006069731 0.01197402 +7.471917 0.006069731 0.01197402 +10.03574 0.006069731 0.01197402 +13.47828 0.006069731 0.01197402 +18.10068 0.006069731 0.01197402 +24.30731 0.006069731 0.01197402 +32.64117 0.006069731 0.01197402 +43.83129 0.006069731 0.01197402 +58.85664 0.006069731 0.01197402 +-0.0175068 0.01197402 0.01197402 +-0.01161267 0.01197402 0.01197402 +-0.005718534 0.01197402 0.01197402 +0.0001755984 0.01197402 0.01197402 +0.006069731 0.01197402 0.01197402 +0.01197402 0.01197402 0.01197402 +0.01903886 0.01197402 0.01197402 +0.02852504 0.01197402 0.01197402 +0.04126244 0.01197402 0.01197402 +0.05836535 0.01197402 0.01197402 +0.08132997 0.01197402 0.01197402 +0.1121653 0.01197402 0.01197402 +0.1535689 0.01197402 0.01197402 +0.2091628 0.01197402 0.01197402 +0.2838106 0.01197402 0.01197402 +0.3840425 0.01197402 0.01197402 +0.518627 0.01197402 0.01197402 +0.6993381 0.01197402 0.01197402 +0.9419845 0.01197402 0.01197402 +1.267794 0.01197402 0.01197402 +1.705268 0.01197402 0.01197402 +2.292679 0.01197402 0.01197402 +3.081414 0.01197402 0.01197402 +4.140474 0.01197402 0.01197402 +5.562508 0.01197402 0.01197402 +7.471917 0.01197402 0.01197402 +10.03574 0.01197402 0.01197402 +13.47828 0.01197402 0.01197402 +18.10068 0.01197402 0.01197402 +24.30731 0.01197402 0.01197402 +32.64117 0.01197402 0.01197402 +43.83129 0.01197402 0.01197402 +58.85664 0.01197402 0.01197402 +-0.0175068 0.01903886 0.01197402 +-0.01161267 0.01903886 0.01197402 +-0.005718534 0.01903886 0.01197402 +0.0001755984 0.01903886 0.01197402 +0.006069731 0.01903886 0.01197402 +0.01197402 0.01903886 0.01197402 +0.01903886 0.01903886 0.01197402 +0.02852504 0.01903886 0.01197402 +0.04126244 0.01903886 0.01197402 +0.05836535 0.01903886 0.01197402 +0.08132997 0.01903886 0.01197402 +0.1121653 0.01903886 0.01197402 +0.1535689 0.01903886 0.01197402 +0.2091628 0.01903886 0.01197402 +0.2838106 0.01903886 0.01197402 +0.3840425 0.01903886 0.01197402 +0.518627 0.01903886 0.01197402 +0.6993381 0.01903886 0.01197402 +0.9419845 0.01903886 0.01197402 +1.267794 0.01903886 0.01197402 +1.705268 0.01903886 0.01197402 +2.292679 0.01903886 0.01197402 +3.081414 0.01903886 0.01197402 +4.140474 0.01903886 0.01197402 +5.562508 0.01903886 0.01197402 +7.471917 0.01903886 0.01197402 +10.03574 0.01903886 0.01197402 +13.47828 0.01903886 0.01197402 +18.10068 0.01903886 0.01197402 +24.30731 0.01903886 0.01197402 +32.64117 0.01903886 0.01197402 +43.83129 0.01903886 0.01197402 +58.85664 0.01903886 0.01197402 +-0.0175068 0.02852504 0.01197402 +-0.01161267 0.02852504 0.01197402 +-0.005718534 0.02852504 0.01197402 +0.0001755984 0.02852504 0.01197402 +0.006069731 0.02852504 0.01197402 +0.01197402 0.02852504 0.01197402 +0.01903886 0.02852504 0.01197402 +0.02852504 0.02852504 0.01197402 +0.04126244 0.02852504 0.01197402 +0.05836535 0.02852504 0.01197402 +0.08132997 0.02852504 0.01197402 +0.1121653 0.02852504 0.01197402 +0.1535689 0.02852504 0.01197402 +0.2091628 0.02852504 0.01197402 +0.2838106 0.02852504 0.01197402 +0.3840425 0.02852504 0.01197402 +0.518627 0.02852504 0.01197402 +0.6993381 0.02852504 0.01197402 +0.9419845 0.02852504 0.01197402 +1.267794 0.02852504 0.01197402 +1.705268 0.02852504 0.01197402 +2.292679 0.02852504 0.01197402 +3.081414 0.02852504 0.01197402 +4.140474 0.02852504 0.01197402 +5.562508 0.02852504 0.01197402 +7.471917 0.02852504 0.01197402 +10.03574 0.02852504 0.01197402 +13.47828 0.02852504 0.01197402 +18.10068 0.02852504 0.01197402 +24.30731 0.02852504 0.01197402 +32.64117 0.02852504 0.01197402 +43.83129 0.02852504 0.01197402 +58.85664 0.02852504 0.01197402 +-0.0175068 0.04126244 0.01197402 +-0.01161267 0.04126244 0.01197402 +-0.005718534 0.04126244 0.01197402 +0.0001755984 0.04126244 0.01197402 +0.006069731 0.04126244 0.01197402 +0.01197402 0.04126244 0.01197402 +0.01903886 0.04126244 0.01197402 +0.02852504 0.04126244 0.01197402 +0.04126244 0.04126244 0.01197402 +0.05836535 0.04126244 0.01197402 +0.08132997 0.04126244 0.01197402 +0.1121653 0.04126244 0.01197402 +0.1535689 0.04126244 0.01197402 +0.2091628 0.04126244 0.01197402 +0.2838106 0.04126244 0.01197402 +0.3840425 0.04126244 0.01197402 +0.518627 0.04126244 0.01197402 +0.6993381 0.04126244 0.01197402 +0.9419845 0.04126244 0.01197402 +1.267794 0.04126244 0.01197402 +1.705268 0.04126244 0.01197402 +2.292679 0.04126244 0.01197402 +3.081414 0.04126244 0.01197402 +4.140474 0.04126244 0.01197402 +5.562508 0.04126244 0.01197402 +7.471917 0.04126244 0.01197402 +10.03574 0.04126244 0.01197402 +13.47828 0.04126244 0.01197402 +18.10068 0.04126244 0.01197402 +24.30731 0.04126244 0.01197402 +32.64117 0.04126244 0.01197402 +43.83129 0.04126244 0.01197402 +58.85664 0.04126244 0.01197402 +-0.0175068 0.05836535 0.01197402 +-0.01161267 0.05836535 0.01197402 +-0.005718534 0.05836535 0.01197402 +0.0001755984 0.05836535 0.01197402 +0.006069731 0.05836535 0.01197402 +0.01197402 0.05836535 0.01197402 +0.01903886 0.05836535 0.01197402 +0.02852504 0.05836535 0.01197402 +0.04126244 0.05836535 0.01197402 +0.05836535 0.05836535 0.01197402 +0.08132997 0.05836535 0.01197402 +0.1121653 0.05836535 0.01197402 +0.1535689 0.05836535 0.01197402 +0.2091628 0.05836535 0.01197402 +0.2838106 0.05836535 0.01197402 +0.3840425 0.05836535 0.01197402 +0.518627 0.05836535 0.01197402 +0.6993381 0.05836535 0.01197402 +0.9419845 0.05836535 0.01197402 +1.267794 0.05836535 0.01197402 +1.705268 0.05836535 0.01197402 +2.292679 0.05836535 0.01197402 +3.081414 0.05836535 0.01197402 +4.140474 0.05836535 0.01197402 +5.562508 0.05836535 0.01197402 +7.471917 0.05836535 0.01197402 +10.03574 0.05836535 0.01197402 +13.47828 0.05836535 0.01197402 +18.10068 0.05836535 0.01197402 +24.30731 0.05836535 0.01197402 +32.64117 0.05836535 0.01197402 +43.83129 0.05836535 0.01197402 +58.85664 0.05836535 0.01197402 +-0.0175068 0.08132997 0.01197402 +-0.01161267 0.08132997 0.01197402 +-0.005718534 0.08132997 0.01197402 +0.0001755984 0.08132997 0.01197402 +0.006069731 0.08132997 0.01197402 +0.01197402 0.08132997 0.01197402 +0.01903886 0.08132997 0.01197402 +0.02852504 0.08132997 0.01197402 +0.04126244 0.08132997 0.01197402 +0.05836535 0.08132997 0.01197402 +0.08132997 0.08132997 0.01197402 +0.1121653 0.08132997 0.01197402 +0.1535689 0.08132997 0.01197402 +0.2091628 0.08132997 0.01197402 +0.2838106 0.08132997 0.01197402 +0.3840425 0.08132997 0.01197402 +0.518627 0.08132997 0.01197402 +0.6993381 0.08132997 0.01197402 +0.9419845 0.08132997 0.01197402 +1.267794 0.08132997 0.01197402 +1.705268 0.08132997 0.01197402 +2.292679 0.08132997 0.01197402 +3.081414 0.08132997 0.01197402 +4.140474 0.08132997 0.01197402 +5.562508 0.08132997 0.01197402 +7.471917 0.08132997 0.01197402 +10.03574 0.08132997 0.01197402 +13.47828 0.08132997 0.01197402 +18.10068 0.08132997 0.01197402 +24.30731 0.08132997 0.01197402 +32.64117 0.08132997 0.01197402 +43.83129 0.08132997 0.01197402 +58.85664 0.08132997 0.01197402 +-0.0175068 0.1121653 0.01197402 +-0.01161267 0.1121653 0.01197402 +-0.005718534 0.1121653 0.01197402 +0.0001755984 0.1121653 0.01197402 +0.006069731 0.1121653 0.01197402 +0.01197402 0.1121653 0.01197402 +0.01903886 0.1121653 0.01197402 +0.02852504 0.1121653 0.01197402 +0.04126244 0.1121653 0.01197402 +0.05836535 0.1121653 0.01197402 +0.08132997 0.1121653 0.01197402 +0.1121653 0.1121653 0.01197402 +0.1535689 0.1121653 0.01197402 +0.2091628 0.1121653 0.01197402 +0.2838106 0.1121653 0.01197402 +0.3840425 0.1121653 0.01197402 +0.518627 0.1121653 0.01197402 +0.6993381 0.1121653 0.01197402 +0.9419845 0.1121653 0.01197402 +1.267794 0.1121653 0.01197402 +1.705268 0.1121653 0.01197402 +2.292679 0.1121653 0.01197402 +3.081414 0.1121653 0.01197402 +4.140474 0.1121653 0.01197402 +5.562508 0.1121653 0.01197402 +7.471917 0.1121653 0.01197402 +10.03574 0.1121653 0.01197402 +13.47828 0.1121653 0.01197402 +18.10068 0.1121653 0.01197402 +24.30731 0.1121653 0.01197402 +32.64117 0.1121653 0.01197402 +43.83129 0.1121653 0.01197402 +58.85664 0.1121653 0.01197402 +-0.0175068 0.1535689 0.01197402 +-0.01161267 0.1535689 0.01197402 +-0.005718534 0.1535689 0.01197402 +0.0001755984 0.1535689 0.01197402 +0.006069731 0.1535689 0.01197402 +0.01197402 0.1535689 0.01197402 +0.01903886 0.1535689 0.01197402 +0.02852504 0.1535689 0.01197402 +0.04126244 0.1535689 0.01197402 +0.05836535 0.1535689 0.01197402 +0.08132997 0.1535689 0.01197402 +0.1121653 0.1535689 0.01197402 +0.1535689 0.1535689 0.01197402 +0.2091628 0.1535689 0.01197402 +0.2838106 0.1535689 0.01197402 +0.3840425 0.1535689 0.01197402 +0.518627 0.1535689 0.01197402 +0.6993381 0.1535689 0.01197402 +0.9419845 0.1535689 0.01197402 +1.267794 0.1535689 0.01197402 +1.705268 0.1535689 0.01197402 +2.292679 0.1535689 0.01197402 +3.081414 0.1535689 0.01197402 +4.140474 0.1535689 0.01197402 +5.562508 0.1535689 0.01197402 +7.471917 0.1535689 0.01197402 +10.03574 0.1535689 0.01197402 +13.47828 0.1535689 0.01197402 +18.10068 0.1535689 0.01197402 +24.30731 0.1535689 0.01197402 +32.64117 0.1535689 0.01197402 +43.83129 0.1535689 0.01197402 +58.85664 0.1535689 0.01197402 +-0.0175068 0.2091628 0.01197402 +-0.01161267 0.2091628 0.01197402 +-0.005718534 0.2091628 0.01197402 +0.0001755984 0.2091628 0.01197402 +0.006069731 0.2091628 0.01197402 +0.01197402 0.2091628 0.01197402 +0.01903886 0.2091628 0.01197402 +0.02852504 0.2091628 0.01197402 +0.04126244 0.2091628 0.01197402 +0.05836535 0.2091628 0.01197402 +0.08132997 0.2091628 0.01197402 +0.1121653 0.2091628 0.01197402 +0.1535689 0.2091628 0.01197402 +0.2091628 0.2091628 0.01197402 +0.2838106 0.2091628 0.01197402 +0.3840425 0.2091628 0.01197402 +0.518627 0.2091628 0.01197402 +0.6993381 0.2091628 0.01197402 +0.9419845 0.2091628 0.01197402 +1.267794 0.2091628 0.01197402 +1.705268 0.2091628 0.01197402 +2.292679 0.2091628 0.01197402 +3.081414 0.2091628 0.01197402 +4.140474 0.2091628 0.01197402 +5.562508 0.2091628 0.01197402 +7.471917 0.2091628 0.01197402 +10.03574 0.2091628 0.01197402 +13.47828 0.2091628 0.01197402 +18.10068 0.2091628 0.01197402 +24.30731 0.2091628 0.01197402 +32.64117 0.2091628 0.01197402 +43.83129 0.2091628 0.01197402 +58.85664 0.2091628 0.01197402 +-0.0175068 0.2838106 0.01197402 +-0.01161267 0.2838106 0.01197402 +-0.005718534 0.2838106 0.01197402 +0.0001755984 0.2838106 0.01197402 +0.006069731 0.2838106 0.01197402 +0.01197402 0.2838106 0.01197402 +0.01903886 0.2838106 0.01197402 +0.02852504 0.2838106 0.01197402 +0.04126244 0.2838106 0.01197402 +0.05836535 0.2838106 0.01197402 +0.08132997 0.2838106 0.01197402 +0.1121653 0.2838106 0.01197402 +0.1535689 0.2838106 0.01197402 +0.2091628 0.2838106 0.01197402 +0.2838106 0.2838106 0.01197402 +0.3840425 0.2838106 0.01197402 +0.518627 0.2838106 0.01197402 +0.6993381 0.2838106 0.01197402 +0.9419845 0.2838106 0.01197402 +1.267794 0.2838106 0.01197402 +1.705268 0.2838106 0.01197402 +2.292679 0.2838106 0.01197402 +3.081414 0.2838106 0.01197402 +4.140474 0.2838106 0.01197402 +5.562508 0.2838106 0.01197402 +7.471917 0.2838106 0.01197402 +10.03574 0.2838106 0.01197402 +13.47828 0.2838106 0.01197402 +18.10068 0.2838106 0.01197402 +24.30731 0.2838106 0.01197402 +32.64117 0.2838106 0.01197402 +43.83129 0.2838106 0.01197402 +58.85664 0.2838106 0.01197402 +-0.0175068 0.3840425 0.01197402 +-0.01161267 0.3840425 0.01197402 +-0.005718534 0.3840425 0.01197402 +0.0001755984 0.3840425 0.01197402 +0.006069731 0.3840425 0.01197402 +0.01197402 0.3840425 0.01197402 +0.01903886 0.3840425 0.01197402 +0.02852504 0.3840425 0.01197402 +0.04126244 0.3840425 0.01197402 +0.05836535 0.3840425 0.01197402 +0.08132997 0.3840425 0.01197402 +0.1121653 0.3840425 0.01197402 +0.1535689 0.3840425 0.01197402 +0.2091628 0.3840425 0.01197402 +0.2838106 0.3840425 0.01197402 +0.3840425 0.3840425 0.01197402 +0.518627 0.3840425 0.01197402 +0.6993381 0.3840425 0.01197402 +0.9419845 0.3840425 0.01197402 +1.267794 0.3840425 0.01197402 +1.705268 0.3840425 0.01197402 +2.292679 0.3840425 0.01197402 +3.081414 0.3840425 0.01197402 +4.140474 0.3840425 0.01197402 +5.562508 0.3840425 0.01197402 +7.471917 0.3840425 0.01197402 +10.03574 0.3840425 0.01197402 +13.47828 0.3840425 0.01197402 +18.10068 0.3840425 0.01197402 +24.30731 0.3840425 0.01197402 +32.64117 0.3840425 0.01197402 +43.83129 0.3840425 0.01197402 +58.85664 0.3840425 0.01197402 +-0.0175068 0.518627 0.01197402 +-0.01161267 0.518627 0.01197402 +-0.005718534 0.518627 0.01197402 +0.0001755984 0.518627 0.01197402 +0.006069731 0.518627 0.01197402 +0.01197402 0.518627 0.01197402 +0.01903886 0.518627 0.01197402 +0.02852504 0.518627 0.01197402 +0.04126244 0.518627 0.01197402 +0.05836535 0.518627 0.01197402 +0.08132997 0.518627 0.01197402 +0.1121653 0.518627 0.01197402 +0.1535689 0.518627 0.01197402 +0.2091628 0.518627 0.01197402 +0.2838106 0.518627 0.01197402 +0.3840425 0.518627 0.01197402 +0.518627 0.518627 0.01197402 +0.6993381 0.518627 0.01197402 +0.9419845 0.518627 0.01197402 +1.267794 0.518627 0.01197402 +1.705268 0.518627 0.01197402 +2.292679 0.518627 0.01197402 +3.081414 0.518627 0.01197402 +4.140474 0.518627 0.01197402 +5.562508 0.518627 0.01197402 +7.471917 0.518627 0.01197402 +10.03574 0.518627 0.01197402 +13.47828 0.518627 0.01197402 +18.10068 0.518627 0.01197402 +24.30731 0.518627 0.01197402 +32.64117 0.518627 0.01197402 +43.83129 0.518627 0.01197402 +58.85664 0.518627 0.01197402 +-0.0175068 0.6993381 0.01197402 +-0.01161267 0.6993381 0.01197402 +-0.005718534 0.6993381 0.01197402 +0.0001755984 0.6993381 0.01197402 +0.006069731 0.6993381 0.01197402 +0.01197402 0.6993381 0.01197402 +0.01903886 0.6993381 0.01197402 +0.02852504 0.6993381 0.01197402 +0.04126244 0.6993381 0.01197402 +0.05836535 0.6993381 0.01197402 +0.08132997 0.6993381 0.01197402 +0.1121653 0.6993381 0.01197402 +0.1535689 0.6993381 0.01197402 +0.2091628 0.6993381 0.01197402 +0.2838106 0.6993381 0.01197402 +0.3840425 0.6993381 0.01197402 +0.518627 0.6993381 0.01197402 +0.6993381 0.6993381 0.01197402 +0.9419845 0.6993381 0.01197402 +1.267794 0.6993381 0.01197402 +1.705268 0.6993381 0.01197402 +2.292679 0.6993381 0.01197402 +3.081414 0.6993381 0.01197402 +4.140474 0.6993381 0.01197402 +5.562508 0.6993381 0.01197402 +7.471917 0.6993381 0.01197402 +10.03574 0.6993381 0.01197402 +13.47828 0.6993381 0.01197402 +18.10068 0.6993381 0.01197402 +24.30731 0.6993381 0.01197402 +32.64117 0.6993381 0.01197402 +43.83129 0.6993381 0.01197402 +58.85664 0.6993381 0.01197402 +-0.0175068 0.9419845 0.01197402 +-0.01161267 0.9419845 0.01197402 +-0.005718534 0.9419845 0.01197402 +0.0001755984 0.9419845 0.01197402 +0.006069731 0.9419845 0.01197402 +0.01197402 0.9419845 0.01197402 +0.01903886 0.9419845 0.01197402 +0.02852504 0.9419845 0.01197402 +0.04126244 0.9419845 0.01197402 +0.05836535 0.9419845 0.01197402 +0.08132997 0.9419845 0.01197402 +0.1121653 0.9419845 0.01197402 +0.1535689 0.9419845 0.01197402 +0.2091628 0.9419845 0.01197402 +0.2838106 0.9419845 0.01197402 +0.3840425 0.9419845 0.01197402 +0.518627 0.9419845 0.01197402 +0.6993381 0.9419845 0.01197402 +0.9419845 0.9419845 0.01197402 +1.267794 0.9419845 0.01197402 +1.705268 0.9419845 0.01197402 +2.292679 0.9419845 0.01197402 +3.081414 0.9419845 0.01197402 +4.140474 0.9419845 0.01197402 +5.562508 0.9419845 0.01197402 +7.471917 0.9419845 0.01197402 +10.03574 0.9419845 0.01197402 +13.47828 0.9419845 0.01197402 +18.10068 0.9419845 0.01197402 +24.30731 0.9419845 0.01197402 +32.64117 0.9419845 0.01197402 +43.83129 0.9419845 0.01197402 +58.85664 0.9419845 0.01197402 +-0.0175068 1.267794 0.01197402 +-0.01161267 1.267794 0.01197402 +-0.005718534 1.267794 0.01197402 +0.0001755984 1.267794 0.01197402 +0.006069731 1.267794 0.01197402 +0.01197402 1.267794 0.01197402 +0.01903886 1.267794 0.01197402 +0.02852504 1.267794 0.01197402 +0.04126244 1.267794 0.01197402 +0.05836535 1.267794 0.01197402 +0.08132997 1.267794 0.01197402 +0.1121653 1.267794 0.01197402 +0.1535689 1.267794 0.01197402 +0.2091628 1.267794 0.01197402 +0.2838106 1.267794 0.01197402 +0.3840425 1.267794 0.01197402 +0.518627 1.267794 0.01197402 +0.6993381 1.267794 0.01197402 +0.9419845 1.267794 0.01197402 +1.267794 1.267794 0.01197402 +1.705268 1.267794 0.01197402 +2.292679 1.267794 0.01197402 +3.081414 1.267794 0.01197402 +4.140474 1.267794 0.01197402 +5.562508 1.267794 0.01197402 +7.471917 1.267794 0.01197402 +10.03574 1.267794 0.01197402 +13.47828 1.267794 0.01197402 +18.10068 1.267794 0.01197402 +24.30731 1.267794 0.01197402 +32.64117 1.267794 0.01197402 +43.83129 1.267794 0.01197402 +58.85664 1.267794 0.01197402 +-0.0175068 1.705268 0.01197402 +-0.01161267 1.705268 0.01197402 +-0.005718534 1.705268 0.01197402 +0.0001755984 1.705268 0.01197402 +0.006069731 1.705268 0.01197402 +0.01197402 1.705268 0.01197402 +0.01903886 1.705268 0.01197402 +0.02852504 1.705268 0.01197402 +0.04126244 1.705268 0.01197402 +0.05836535 1.705268 0.01197402 +0.08132997 1.705268 0.01197402 +0.1121653 1.705268 0.01197402 +0.1535689 1.705268 0.01197402 +0.2091628 1.705268 0.01197402 +0.2838106 1.705268 0.01197402 +0.3840425 1.705268 0.01197402 +0.518627 1.705268 0.01197402 +0.6993381 1.705268 0.01197402 +0.9419845 1.705268 0.01197402 +1.267794 1.705268 0.01197402 +1.705268 1.705268 0.01197402 +2.292679 1.705268 0.01197402 +3.081414 1.705268 0.01197402 +4.140474 1.705268 0.01197402 +5.562508 1.705268 0.01197402 +7.471917 1.705268 0.01197402 +10.03574 1.705268 0.01197402 +13.47828 1.705268 0.01197402 +18.10068 1.705268 0.01197402 +24.30731 1.705268 0.01197402 +32.64117 1.705268 0.01197402 +43.83129 1.705268 0.01197402 +58.85664 1.705268 0.01197402 +-0.0175068 2.292679 0.01197402 +-0.01161267 2.292679 0.01197402 +-0.005718534 2.292679 0.01197402 +0.0001755984 2.292679 0.01197402 +0.006069731 2.292679 0.01197402 +0.01197402 2.292679 0.01197402 +0.01903886 2.292679 0.01197402 +0.02852504 2.292679 0.01197402 +0.04126244 2.292679 0.01197402 +0.05836535 2.292679 0.01197402 +0.08132997 2.292679 0.01197402 +0.1121653 2.292679 0.01197402 +0.1535689 2.292679 0.01197402 +0.2091628 2.292679 0.01197402 +0.2838106 2.292679 0.01197402 +0.3840425 2.292679 0.01197402 +0.518627 2.292679 0.01197402 +0.6993381 2.292679 0.01197402 +0.9419845 2.292679 0.01197402 +1.267794 2.292679 0.01197402 +1.705268 2.292679 0.01197402 +2.292679 2.292679 0.01197402 +3.081414 2.292679 0.01197402 +4.140474 2.292679 0.01197402 +5.562508 2.292679 0.01197402 +7.471917 2.292679 0.01197402 +10.03574 2.292679 0.01197402 +13.47828 2.292679 0.01197402 +18.10068 2.292679 0.01197402 +24.30731 2.292679 0.01197402 +32.64117 2.292679 0.01197402 +43.83129 2.292679 0.01197402 +58.85664 2.292679 0.01197402 +-0.0175068 3.081414 0.01197402 +-0.01161267 3.081414 0.01197402 +-0.005718534 3.081414 0.01197402 +0.0001755984 3.081414 0.01197402 +0.006069731 3.081414 0.01197402 +0.01197402 3.081414 0.01197402 +0.01903886 3.081414 0.01197402 +0.02852504 3.081414 0.01197402 +0.04126244 3.081414 0.01197402 +0.05836535 3.081414 0.01197402 +0.08132997 3.081414 0.01197402 +0.1121653 3.081414 0.01197402 +0.1535689 3.081414 0.01197402 +0.2091628 3.081414 0.01197402 +0.2838106 3.081414 0.01197402 +0.3840425 3.081414 0.01197402 +0.518627 3.081414 0.01197402 +0.6993381 3.081414 0.01197402 +0.9419845 3.081414 0.01197402 +1.267794 3.081414 0.01197402 +1.705268 3.081414 0.01197402 +2.292679 3.081414 0.01197402 +3.081414 3.081414 0.01197402 +4.140474 3.081414 0.01197402 +5.562508 3.081414 0.01197402 +7.471917 3.081414 0.01197402 +10.03574 3.081414 0.01197402 +13.47828 3.081414 0.01197402 +18.10068 3.081414 0.01197402 +24.30731 3.081414 0.01197402 +32.64117 3.081414 0.01197402 +43.83129 3.081414 0.01197402 +58.85664 3.081414 0.01197402 +-0.0175068 4.140474 0.01197402 +-0.01161267 4.140474 0.01197402 +-0.005718534 4.140474 0.01197402 +0.0001755984 4.140474 0.01197402 +0.006069731 4.140474 0.01197402 +0.01197402 4.140474 0.01197402 +0.01903886 4.140474 0.01197402 +0.02852504 4.140474 0.01197402 +0.04126244 4.140474 0.01197402 +0.05836535 4.140474 0.01197402 +0.08132997 4.140474 0.01197402 +0.1121653 4.140474 0.01197402 +0.1535689 4.140474 0.01197402 +0.2091628 4.140474 0.01197402 +0.2838106 4.140474 0.01197402 +0.3840425 4.140474 0.01197402 +0.518627 4.140474 0.01197402 +0.6993381 4.140474 0.01197402 +0.9419845 4.140474 0.01197402 +1.267794 4.140474 0.01197402 +1.705268 4.140474 0.01197402 +2.292679 4.140474 0.01197402 +3.081414 4.140474 0.01197402 +4.140474 4.140474 0.01197402 +5.562508 4.140474 0.01197402 +7.471917 4.140474 0.01197402 +10.03574 4.140474 0.01197402 +13.47828 4.140474 0.01197402 +18.10068 4.140474 0.01197402 +24.30731 4.140474 0.01197402 +32.64117 4.140474 0.01197402 +43.83129 4.140474 0.01197402 +58.85664 4.140474 0.01197402 +-0.0175068 5.562508 0.01197402 +-0.01161267 5.562508 0.01197402 +-0.005718534 5.562508 0.01197402 +0.0001755984 5.562508 0.01197402 +0.006069731 5.562508 0.01197402 +0.01197402 5.562508 0.01197402 +0.01903886 5.562508 0.01197402 +0.02852504 5.562508 0.01197402 +0.04126244 5.562508 0.01197402 +0.05836535 5.562508 0.01197402 +0.08132997 5.562508 0.01197402 +0.1121653 5.562508 0.01197402 +0.1535689 5.562508 0.01197402 +0.2091628 5.562508 0.01197402 +0.2838106 5.562508 0.01197402 +0.3840425 5.562508 0.01197402 +0.518627 5.562508 0.01197402 +0.6993381 5.562508 0.01197402 +0.9419845 5.562508 0.01197402 +1.267794 5.562508 0.01197402 +1.705268 5.562508 0.01197402 +2.292679 5.562508 0.01197402 +3.081414 5.562508 0.01197402 +4.140474 5.562508 0.01197402 +5.562508 5.562508 0.01197402 +7.471917 5.562508 0.01197402 +10.03574 5.562508 0.01197402 +13.47828 5.562508 0.01197402 +18.10068 5.562508 0.01197402 +24.30731 5.562508 0.01197402 +32.64117 5.562508 0.01197402 +43.83129 5.562508 0.01197402 +58.85664 5.562508 0.01197402 +-0.0175068 7.471917 0.01197402 +-0.01161267 7.471917 0.01197402 +-0.005718534 7.471917 0.01197402 +0.0001755984 7.471917 0.01197402 +0.006069731 7.471917 0.01197402 +0.01197402 7.471917 0.01197402 +0.01903886 7.471917 0.01197402 +0.02852504 7.471917 0.01197402 +0.04126244 7.471917 0.01197402 +0.05836535 7.471917 0.01197402 +0.08132997 7.471917 0.01197402 +0.1121653 7.471917 0.01197402 +0.1535689 7.471917 0.01197402 +0.2091628 7.471917 0.01197402 +0.2838106 7.471917 0.01197402 +0.3840425 7.471917 0.01197402 +0.518627 7.471917 0.01197402 +0.6993381 7.471917 0.01197402 +0.9419845 7.471917 0.01197402 +1.267794 7.471917 0.01197402 +1.705268 7.471917 0.01197402 +2.292679 7.471917 0.01197402 +3.081414 7.471917 0.01197402 +4.140474 7.471917 0.01197402 +5.562508 7.471917 0.01197402 +7.471917 7.471917 0.01197402 +10.03574 7.471917 0.01197402 +13.47828 7.471917 0.01197402 +18.10068 7.471917 0.01197402 +24.30731 7.471917 0.01197402 +32.64117 7.471917 0.01197402 +43.83129 7.471917 0.01197402 +58.85664 7.471917 0.01197402 +-0.0175068 10.03574 0.01197402 +-0.01161267 10.03574 0.01197402 +-0.005718534 10.03574 0.01197402 +0.0001755984 10.03574 0.01197402 +0.006069731 10.03574 0.01197402 +0.01197402 10.03574 0.01197402 +0.01903886 10.03574 0.01197402 +0.02852504 10.03574 0.01197402 +0.04126244 10.03574 0.01197402 +0.05836535 10.03574 0.01197402 +0.08132997 10.03574 0.01197402 +0.1121653 10.03574 0.01197402 +0.1535689 10.03574 0.01197402 +0.2091628 10.03574 0.01197402 +0.2838106 10.03574 0.01197402 +0.3840425 10.03574 0.01197402 +0.518627 10.03574 0.01197402 +0.6993381 10.03574 0.01197402 +0.9419845 10.03574 0.01197402 +1.267794 10.03574 0.01197402 +1.705268 10.03574 0.01197402 +2.292679 10.03574 0.01197402 +3.081414 10.03574 0.01197402 +4.140474 10.03574 0.01197402 +5.562508 10.03574 0.01197402 +7.471917 10.03574 0.01197402 +10.03574 10.03574 0.01197402 +13.47828 10.03574 0.01197402 +18.10068 10.03574 0.01197402 +24.30731 10.03574 0.01197402 +32.64117 10.03574 0.01197402 +43.83129 10.03574 0.01197402 +58.85664 10.03574 0.01197402 +-0.0175068 13.47828 0.01197402 +-0.01161267 13.47828 0.01197402 +-0.005718534 13.47828 0.01197402 +0.0001755984 13.47828 0.01197402 +0.006069731 13.47828 0.01197402 +0.01197402 13.47828 0.01197402 +0.01903886 13.47828 0.01197402 +0.02852504 13.47828 0.01197402 +0.04126244 13.47828 0.01197402 +0.05836535 13.47828 0.01197402 +0.08132997 13.47828 0.01197402 +0.1121653 13.47828 0.01197402 +0.1535689 13.47828 0.01197402 +0.2091628 13.47828 0.01197402 +0.2838106 13.47828 0.01197402 +0.3840425 13.47828 0.01197402 +0.518627 13.47828 0.01197402 +0.6993381 13.47828 0.01197402 +0.9419845 13.47828 0.01197402 +1.267794 13.47828 0.01197402 +1.705268 13.47828 0.01197402 +2.292679 13.47828 0.01197402 +3.081414 13.47828 0.01197402 +4.140474 13.47828 0.01197402 +5.562508 13.47828 0.01197402 +7.471917 13.47828 0.01197402 +10.03574 13.47828 0.01197402 +13.47828 13.47828 0.01197402 +18.10068 13.47828 0.01197402 +24.30731 13.47828 0.01197402 +32.64117 13.47828 0.01197402 +43.83129 13.47828 0.01197402 +58.85664 13.47828 0.01197402 +-0.0175068 18.10068 0.01197402 +-0.01161267 18.10068 0.01197402 +-0.005718534 18.10068 0.01197402 +0.0001755984 18.10068 0.01197402 +0.006069731 18.10068 0.01197402 +0.01197402 18.10068 0.01197402 +0.01903886 18.10068 0.01197402 +0.02852504 18.10068 0.01197402 +0.04126244 18.10068 0.01197402 +0.05836535 18.10068 0.01197402 +0.08132997 18.10068 0.01197402 +0.1121653 18.10068 0.01197402 +0.1535689 18.10068 0.01197402 +0.2091628 18.10068 0.01197402 +0.2838106 18.10068 0.01197402 +0.3840425 18.10068 0.01197402 +0.518627 18.10068 0.01197402 +0.6993381 18.10068 0.01197402 +0.9419845 18.10068 0.01197402 +1.267794 18.10068 0.01197402 +1.705268 18.10068 0.01197402 +2.292679 18.10068 0.01197402 +3.081414 18.10068 0.01197402 +4.140474 18.10068 0.01197402 +5.562508 18.10068 0.01197402 +7.471917 18.10068 0.01197402 +10.03574 18.10068 0.01197402 +13.47828 18.10068 0.01197402 +18.10068 18.10068 0.01197402 +24.30731 18.10068 0.01197402 +32.64117 18.10068 0.01197402 +43.83129 18.10068 0.01197402 +58.85664 18.10068 0.01197402 +-0.0175068 24.30731 0.01197402 +-0.01161267 24.30731 0.01197402 +-0.005718534 24.30731 0.01197402 +0.0001755984 24.30731 0.01197402 +0.006069731 24.30731 0.01197402 +0.01197402 24.30731 0.01197402 +0.01903886 24.30731 0.01197402 +0.02852504 24.30731 0.01197402 +0.04126244 24.30731 0.01197402 +0.05836535 24.30731 0.01197402 +0.08132997 24.30731 0.01197402 +0.1121653 24.30731 0.01197402 +0.1535689 24.30731 0.01197402 +0.2091628 24.30731 0.01197402 +0.2838106 24.30731 0.01197402 +0.3840425 24.30731 0.01197402 +0.518627 24.30731 0.01197402 +0.6993381 24.30731 0.01197402 +0.9419845 24.30731 0.01197402 +1.267794 24.30731 0.01197402 +1.705268 24.30731 0.01197402 +2.292679 24.30731 0.01197402 +3.081414 24.30731 0.01197402 +4.140474 24.30731 0.01197402 +5.562508 24.30731 0.01197402 +7.471917 24.30731 0.01197402 +10.03574 24.30731 0.01197402 +13.47828 24.30731 0.01197402 +18.10068 24.30731 0.01197402 +24.30731 24.30731 0.01197402 +32.64117 24.30731 0.01197402 +43.83129 24.30731 0.01197402 +58.85664 24.30731 0.01197402 +-0.0175068 32.64117 0.01197402 +-0.01161267 32.64117 0.01197402 +-0.005718534 32.64117 0.01197402 +0.0001755984 32.64117 0.01197402 +0.006069731 32.64117 0.01197402 +0.01197402 32.64117 0.01197402 +0.01903886 32.64117 0.01197402 +0.02852504 32.64117 0.01197402 +0.04126244 32.64117 0.01197402 +0.05836535 32.64117 0.01197402 +0.08132997 32.64117 0.01197402 +0.1121653 32.64117 0.01197402 +0.1535689 32.64117 0.01197402 +0.2091628 32.64117 0.01197402 +0.2838106 32.64117 0.01197402 +0.3840425 32.64117 0.01197402 +0.518627 32.64117 0.01197402 +0.6993381 32.64117 0.01197402 +0.9419845 32.64117 0.01197402 +1.267794 32.64117 0.01197402 +1.705268 32.64117 0.01197402 +2.292679 32.64117 0.01197402 +3.081414 32.64117 0.01197402 +4.140474 32.64117 0.01197402 +5.562508 32.64117 0.01197402 +7.471917 32.64117 0.01197402 +10.03574 32.64117 0.01197402 +13.47828 32.64117 0.01197402 +18.10068 32.64117 0.01197402 +24.30731 32.64117 0.01197402 +32.64117 32.64117 0.01197402 +43.83129 32.64117 0.01197402 +58.85664 32.64117 0.01197402 +-0.0175068 43.83129 0.01197402 +-0.01161267 43.83129 0.01197402 +-0.005718534 43.83129 0.01197402 +0.0001755984 43.83129 0.01197402 +0.006069731 43.83129 0.01197402 +0.01197402 43.83129 0.01197402 +0.01903886 43.83129 0.01197402 +0.02852504 43.83129 0.01197402 +0.04126244 43.83129 0.01197402 +0.05836535 43.83129 0.01197402 +0.08132997 43.83129 0.01197402 +0.1121653 43.83129 0.01197402 +0.1535689 43.83129 0.01197402 +0.2091628 43.83129 0.01197402 +0.2838106 43.83129 0.01197402 +0.3840425 43.83129 0.01197402 +0.518627 43.83129 0.01197402 +0.6993381 43.83129 0.01197402 +0.9419845 43.83129 0.01197402 +1.267794 43.83129 0.01197402 +1.705268 43.83129 0.01197402 +2.292679 43.83129 0.01197402 +3.081414 43.83129 0.01197402 +4.140474 43.83129 0.01197402 +5.562508 43.83129 0.01197402 +7.471917 43.83129 0.01197402 +10.03574 43.83129 0.01197402 +13.47828 43.83129 0.01197402 +18.10068 43.83129 0.01197402 +24.30731 43.83129 0.01197402 +32.64117 43.83129 0.01197402 +43.83129 43.83129 0.01197402 +58.85664 43.83129 0.01197402 +-0.0175068 58.85664 0.01197402 +-0.01161267 58.85664 0.01197402 +-0.005718534 58.85664 0.01197402 +0.0001755984 58.85664 0.01197402 +0.006069731 58.85664 0.01197402 +0.01197402 58.85664 0.01197402 +0.01903886 58.85664 0.01197402 +0.02852504 58.85664 0.01197402 +0.04126244 58.85664 0.01197402 +0.05836535 58.85664 0.01197402 +0.08132997 58.85664 0.01197402 +0.1121653 58.85664 0.01197402 +0.1535689 58.85664 0.01197402 +0.2091628 58.85664 0.01197402 +0.2838106 58.85664 0.01197402 +0.3840425 58.85664 0.01197402 +0.518627 58.85664 0.01197402 +0.6993381 58.85664 0.01197402 +0.9419845 58.85664 0.01197402 +1.267794 58.85664 0.01197402 +1.705268 58.85664 0.01197402 +2.292679 58.85664 0.01197402 +3.081414 58.85664 0.01197402 +4.140474 58.85664 0.01197402 +5.562508 58.85664 0.01197402 +7.471917 58.85664 0.01197402 +10.03574 58.85664 0.01197402 +13.47828 58.85664 0.01197402 +18.10068 58.85664 0.01197402 +24.30731 58.85664 0.01197402 +32.64117 58.85664 0.01197402 +43.83129 58.85664 0.01197402 +58.85664 58.85664 0.01197402 +-0.0175068 -0.0175068 0.01903886 +-0.01161267 -0.0175068 0.01903886 +-0.005718534 -0.0175068 0.01903886 +0.0001755984 -0.0175068 0.01903886 +0.006069731 -0.0175068 0.01903886 +0.01197402 -0.0175068 0.01903886 +0.01903886 -0.0175068 0.01903886 +0.02852504 -0.0175068 0.01903886 +0.04126244 -0.0175068 0.01903886 +0.05836535 -0.0175068 0.01903886 +0.08132997 -0.0175068 0.01903886 +0.1121653 -0.0175068 0.01903886 +0.1535689 -0.0175068 0.01903886 +0.2091628 -0.0175068 0.01903886 +0.2838106 -0.0175068 0.01903886 +0.3840425 -0.0175068 0.01903886 +0.518627 -0.0175068 0.01903886 +0.6993381 -0.0175068 0.01903886 +0.9419845 -0.0175068 0.01903886 +1.267794 -0.0175068 0.01903886 +1.705268 -0.0175068 0.01903886 +2.292679 -0.0175068 0.01903886 +3.081414 -0.0175068 0.01903886 +4.140474 -0.0175068 0.01903886 +5.562508 -0.0175068 0.01903886 +7.471917 -0.0175068 0.01903886 +10.03574 -0.0175068 0.01903886 +13.47828 -0.0175068 0.01903886 +18.10068 -0.0175068 0.01903886 +24.30731 -0.0175068 0.01903886 +32.64117 -0.0175068 0.01903886 +43.83129 -0.0175068 0.01903886 +58.85664 -0.0175068 0.01903886 +-0.0175068 -0.01161267 0.01903886 +-0.01161267 -0.01161267 0.01903886 +-0.005718534 -0.01161267 0.01903886 +0.0001755984 -0.01161267 0.01903886 +0.006069731 -0.01161267 0.01903886 +0.01197402 -0.01161267 0.01903886 +0.01903886 -0.01161267 0.01903886 +0.02852504 -0.01161267 0.01903886 +0.04126244 -0.01161267 0.01903886 +0.05836535 -0.01161267 0.01903886 +0.08132997 -0.01161267 0.01903886 +0.1121653 -0.01161267 0.01903886 +0.1535689 -0.01161267 0.01903886 +0.2091628 -0.01161267 0.01903886 +0.2838106 -0.01161267 0.01903886 +0.3840425 -0.01161267 0.01903886 +0.518627 -0.01161267 0.01903886 +0.6993381 -0.01161267 0.01903886 +0.9419845 -0.01161267 0.01903886 +1.267794 -0.01161267 0.01903886 +1.705268 -0.01161267 0.01903886 +2.292679 -0.01161267 0.01903886 +3.081414 -0.01161267 0.01903886 +4.140474 -0.01161267 0.01903886 +5.562508 -0.01161267 0.01903886 +7.471917 -0.01161267 0.01903886 +10.03574 -0.01161267 0.01903886 +13.47828 -0.01161267 0.01903886 +18.10068 -0.01161267 0.01903886 +24.30731 -0.01161267 0.01903886 +32.64117 -0.01161267 0.01903886 +43.83129 -0.01161267 0.01903886 +58.85664 -0.01161267 0.01903886 +-0.0175068 -0.005718534 0.01903886 +-0.01161267 -0.005718534 0.01903886 +-0.005718534 -0.005718534 0.01903886 +0.0001755984 -0.005718534 0.01903886 +0.006069731 -0.005718534 0.01903886 +0.01197402 -0.005718534 0.01903886 +0.01903886 -0.005718534 0.01903886 +0.02852504 -0.005718534 0.01903886 +0.04126244 -0.005718534 0.01903886 +0.05836535 -0.005718534 0.01903886 +0.08132997 -0.005718534 0.01903886 +0.1121653 -0.005718534 0.01903886 +0.1535689 -0.005718534 0.01903886 +0.2091628 -0.005718534 0.01903886 +0.2838106 -0.005718534 0.01903886 +0.3840425 -0.005718534 0.01903886 +0.518627 -0.005718534 0.01903886 +0.6993381 -0.005718534 0.01903886 +0.9419845 -0.005718534 0.01903886 +1.267794 -0.005718534 0.01903886 +1.705268 -0.005718534 0.01903886 +2.292679 -0.005718534 0.01903886 +3.081414 -0.005718534 0.01903886 +4.140474 -0.005718534 0.01903886 +5.562508 -0.005718534 0.01903886 +7.471917 -0.005718534 0.01903886 +10.03574 -0.005718534 0.01903886 +13.47828 -0.005718534 0.01903886 +18.10068 -0.005718534 0.01903886 +24.30731 -0.005718534 0.01903886 +32.64117 -0.005718534 0.01903886 +43.83129 -0.005718534 0.01903886 +58.85664 -0.005718534 0.01903886 +-0.0175068 0.0001755984 0.01903886 +-0.01161267 0.0001755984 0.01903886 +-0.005718534 0.0001755984 0.01903886 +0.0001755984 0.0001755984 0.01903886 +0.006069731 0.0001755984 0.01903886 +0.01197402 0.0001755984 0.01903886 +0.01903886 0.0001755984 0.01903886 +0.02852504 0.0001755984 0.01903886 +0.04126244 0.0001755984 0.01903886 +0.05836535 0.0001755984 0.01903886 +0.08132997 0.0001755984 0.01903886 +0.1121653 0.0001755984 0.01903886 +0.1535689 0.0001755984 0.01903886 +0.2091628 0.0001755984 0.01903886 +0.2838106 0.0001755984 0.01903886 +0.3840425 0.0001755984 0.01903886 +0.518627 0.0001755984 0.01903886 +0.6993381 0.0001755984 0.01903886 +0.9419845 0.0001755984 0.01903886 +1.267794 0.0001755984 0.01903886 +1.705268 0.0001755984 0.01903886 +2.292679 0.0001755984 0.01903886 +3.081414 0.0001755984 0.01903886 +4.140474 0.0001755984 0.01903886 +5.562508 0.0001755984 0.01903886 +7.471917 0.0001755984 0.01903886 +10.03574 0.0001755984 0.01903886 +13.47828 0.0001755984 0.01903886 +18.10068 0.0001755984 0.01903886 +24.30731 0.0001755984 0.01903886 +32.64117 0.0001755984 0.01903886 +43.83129 0.0001755984 0.01903886 +58.85664 0.0001755984 0.01903886 +-0.0175068 0.006069731 0.01903886 +-0.01161267 0.006069731 0.01903886 +-0.005718534 0.006069731 0.01903886 +0.0001755984 0.006069731 0.01903886 +0.006069731 0.006069731 0.01903886 +0.01197402 0.006069731 0.01903886 +0.01903886 0.006069731 0.01903886 +0.02852504 0.006069731 0.01903886 +0.04126244 0.006069731 0.01903886 +0.05836535 0.006069731 0.01903886 +0.08132997 0.006069731 0.01903886 +0.1121653 0.006069731 0.01903886 +0.1535689 0.006069731 0.01903886 +0.2091628 0.006069731 0.01903886 +0.2838106 0.006069731 0.01903886 +0.3840425 0.006069731 0.01903886 +0.518627 0.006069731 0.01903886 +0.6993381 0.006069731 0.01903886 +0.9419845 0.006069731 0.01903886 +1.267794 0.006069731 0.01903886 +1.705268 0.006069731 0.01903886 +2.292679 0.006069731 0.01903886 +3.081414 0.006069731 0.01903886 +4.140474 0.006069731 0.01903886 +5.562508 0.006069731 0.01903886 +7.471917 0.006069731 0.01903886 +10.03574 0.006069731 0.01903886 +13.47828 0.006069731 0.01903886 +18.10068 0.006069731 0.01903886 +24.30731 0.006069731 0.01903886 +32.64117 0.006069731 0.01903886 +43.83129 0.006069731 0.01903886 +58.85664 0.006069731 0.01903886 +-0.0175068 0.01197402 0.01903886 +-0.01161267 0.01197402 0.01903886 +-0.005718534 0.01197402 0.01903886 +0.0001755984 0.01197402 0.01903886 +0.006069731 0.01197402 0.01903886 +0.01197402 0.01197402 0.01903886 +0.01903886 0.01197402 0.01903886 +0.02852504 0.01197402 0.01903886 +0.04126244 0.01197402 0.01903886 +0.05836535 0.01197402 0.01903886 +0.08132997 0.01197402 0.01903886 +0.1121653 0.01197402 0.01903886 +0.1535689 0.01197402 0.01903886 +0.2091628 0.01197402 0.01903886 +0.2838106 0.01197402 0.01903886 +0.3840425 0.01197402 0.01903886 +0.518627 0.01197402 0.01903886 +0.6993381 0.01197402 0.01903886 +0.9419845 0.01197402 0.01903886 +1.267794 0.01197402 0.01903886 +1.705268 0.01197402 0.01903886 +2.292679 0.01197402 0.01903886 +3.081414 0.01197402 0.01903886 +4.140474 0.01197402 0.01903886 +5.562508 0.01197402 0.01903886 +7.471917 0.01197402 0.01903886 +10.03574 0.01197402 0.01903886 +13.47828 0.01197402 0.01903886 +18.10068 0.01197402 0.01903886 +24.30731 0.01197402 0.01903886 +32.64117 0.01197402 0.01903886 +43.83129 0.01197402 0.01903886 +58.85664 0.01197402 0.01903886 +-0.0175068 0.01903886 0.01903886 +-0.01161267 0.01903886 0.01903886 +-0.005718534 0.01903886 0.01903886 +0.0001755984 0.01903886 0.01903886 +0.006069731 0.01903886 0.01903886 +0.01197402 0.01903886 0.01903886 +0.01903886 0.01903886 0.01903886 +0.02852504 0.01903886 0.01903886 +0.04126244 0.01903886 0.01903886 +0.05836535 0.01903886 0.01903886 +0.08132997 0.01903886 0.01903886 +0.1121653 0.01903886 0.01903886 +0.1535689 0.01903886 0.01903886 +0.2091628 0.01903886 0.01903886 +0.2838106 0.01903886 0.01903886 +0.3840425 0.01903886 0.01903886 +0.518627 0.01903886 0.01903886 +0.6993381 0.01903886 0.01903886 +0.9419845 0.01903886 0.01903886 +1.267794 0.01903886 0.01903886 +1.705268 0.01903886 0.01903886 +2.292679 0.01903886 0.01903886 +3.081414 0.01903886 0.01903886 +4.140474 0.01903886 0.01903886 +5.562508 0.01903886 0.01903886 +7.471917 0.01903886 0.01903886 +10.03574 0.01903886 0.01903886 +13.47828 0.01903886 0.01903886 +18.10068 0.01903886 0.01903886 +24.30731 0.01903886 0.01903886 +32.64117 0.01903886 0.01903886 +43.83129 0.01903886 0.01903886 +58.85664 0.01903886 0.01903886 +-0.0175068 0.02852504 0.01903886 +-0.01161267 0.02852504 0.01903886 +-0.005718534 0.02852504 0.01903886 +0.0001755984 0.02852504 0.01903886 +0.006069731 0.02852504 0.01903886 +0.01197402 0.02852504 0.01903886 +0.01903886 0.02852504 0.01903886 +0.02852504 0.02852504 0.01903886 +0.04126244 0.02852504 0.01903886 +0.05836535 0.02852504 0.01903886 +0.08132997 0.02852504 0.01903886 +0.1121653 0.02852504 0.01903886 +0.1535689 0.02852504 0.01903886 +0.2091628 0.02852504 0.01903886 +0.2838106 0.02852504 0.01903886 +0.3840425 0.02852504 0.01903886 +0.518627 0.02852504 0.01903886 +0.6993381 0.02852504 0.01903886 +0.9419845 0.02852504 0.01903886 +1.267794 0.02852504 0.01903886 +1.705268 0.02852504 0.01903886 +2.292679 0.02852504 0.01903886 +3.081414 0.02852504 0.01903886 +4.140474 0.02852504 0.01903886 +5.562508 0.02852504 0.01903886 +7.471917 0.02852504 0.01903886 +10.03574 0.02852504 0.01903886 +13.47828 0.02852504 0.01903886 +18.10068 0.02852504 0.01903886 +24.30731 0.02852504 0.01903886 +32.64117 0.02852504 0.01903886 +43.83129 0.02852504 0.01903886 +58.85664 0.02852504 0.01903886 +-0.0175068 0.04126244 0.01903886 +-0.01161267 0.04126244 0.01903886 +-0.005718534 0.04126244 0.01903886 +0.0001755984 0.04126244 0.01903886 +0.006069731 0.04126244 0.01903886 +0.01197402 0.04126244 0.01903886 +0.01903886 0.04126244 0.01903886 +0.02852504 0.04126244 0.01903886 +0.04126244 0.04126244 0.01903886 +0.05836535 0.04126244 0.01903886 +0.08132997 0.04126244 0.01903886 +0.1121653 0.04126244 0.01903886 +0.1535689 0.04126244 0.01903886 +0.2091628 0.04126244 0.01903886 +0.2838106 0.04126244 0.01903886 +0.3840425 0.04126244 0.01903886 +0.518627 0.04126244 0.01903886 +0.6993381 0.04126244 0.01903886 +0.9419845 0.04126244 0.01903886 +1.267794 0.04126244 0.01903886 +1.705268 0.04126244 0.01903886 +2.292679 0.04126244 0.01903886 +3.081414 0.04126244 0.01903886 +4.140474 0.04126244 0.01903886 +5.562508 0.04126244 0.01903886 +7.471917 0.04126244 0.01903886 +10.03574 0.04126244 0.01903886 +13.47828 0.04126244 0.01903886 +18.10068 0.04126244 0.01903886 +24.30731 0.04126244 0.01903886 +32.64117 0.04126244 0.01903886 +43.83129 0.04126244 0.01903886 +58.85664 0.04126244 0.01903886 +-0.0175068 0.05836535 0.01903886 +-0.01161267 0.05836535 0.01903886 +-0.005718534 0.05836535 0.01903886 +0.0001755984 0.05836535 0.01903886 +0.006069731 0.05836535 0.01903886 +0.01197402 0.05836535 0.01903886 +0.01903886 0.05836535 0.01903886 +0.02852504 0.05836535 0.01903886 +0.04126244 0.05836535 0.01903886 +0.05836535 0.05836535 0.01903886 +0.08132997 0.05836535 0.01903886 +0.1121653 0.05836535 0.01903886 +0.1535689 0.05836535 0.01903886 +0.2091628 0.05836535 0.01903886 +0.2838106 0.05836535 0.01903886 +0.3840425 0.05836535 0.01903886 +0.518627 0.05836535 0.01903886 +0.6993381 0.05836535 0.01903886 +0.9419845 0.05836535 0.01903886 +1.267794 0.05836535 0.01903886 +1.705268 0.05836535 0.01903886 +2.292679 0.05836535 0.01903886 +3.081414 0.05836535 0.01903886 +4.140474 0.05836535 0.01903886 +5.562508 0.05836535 0.01903886 +7.471917 0.05836535 0.01903886 +10.03574 0.05836535 0.01903886 +13.47828 0.05836535 0.01903886 +18.10068 0.05836535 0.01903886 +24.30731 0.05836535 0.01903886 +32.64117 0.05836535 0.01903886 +43.83129 0.05836535 0.01903886 +58.85664 0.05836535 0.01903886 +-0.0175068 0.08132997 0.01903886 +-0.01161267 0.08132997 0.01903886 +-0.005718534 0.08132997 0.01903886 +0.0001755984 0.08132997 0.01903886 +0.006069731 0.08132997 0.01903886 +0.01197402 0.08132997 0.01903886 +0.01903886 0.08132997 0.01903886 +0.02852504 0.08132997 0.01903886 +0.04126244 0.08132997 0.01903886 +0.05836535 0.08132997 0.01903886 +0.08132997 0.08132997 0.01903886 +0.1121653 0.08132997 0.01903886 +0.1535689 0.08132997 0.01903886 +0.2091628 0.08132997 0.01903886 +0.2838106 0.08132997 0.01903886 +0.3840425 0.08132997 0.01903886 +0.518627 0.08132997 0.01903886 +0.6993381 0.08132997 0.01903886 +0.9419845 0.08132997 0.01903886 +1.267794 0.08132997 0.01903886 +1.705268 0.08132997 0.01903886 +2.292679 0.08132997 0.01903886 +3.081414 0.08132997 0.01903886 +4.140474 0.08132997 0.01903886 +5.562508 0.08132997 0.01903886 +7.471917 0.08132997 0.01903886 +10.03574 0.08132997 0.01903886 +13.47828 0.08132997 0.01903886 +18.10068 0.08132997 0.01903886 +24.30731 0.08132997 0.01903886 +32.64117 0.08132997 0.01903886 +43.83129 0.08132997 0.01903886 +58.85664 0.08132997 0.01903886 +-0.0175068 0.1121653 0.01903886 +-0.01161267 0.1121653 0.01903886 +-0.005718534 0.1121653 0.01903886 +0.0001755984 0.1121653 0.01903886 +0.006069731 0.1121653 0.01903886 +0.01197402 0.1121653 0.01903886 +0.01903886 0.1121653 0.01903886 +0.02852504 0.1121653 0.01903886 +0.04126244 0.1121653 0.01903886 +0.05836535 0.1121653 0.01903886 +0.08132997 0.1121653 0.01903886 +0.1121653 0.1121653 0.01903886 +0.1535689 0.1121653 0.01903886 +0.2091628 0.1121653 0.01903886 +0.2838106 0.1121653 0.01903886 +0.3840425 0.1121653 0.01903886 +0.518627 0.1121653 0.01903886 +0.6993381 0.1121653 0.01903886 +0.9419845 0.1121653 0.01903886 +1.267794 0.1121653 0.01903886 +1.705268 0.1121653 0.01903886 +2.292679 0.1121653 0.01903886 +3.081414 0.1121653 0.01903886 +4.140474 0.1121653 0.01903886 +5.562508 0.1121653 0.01903886 +7.471917 0.1121653 0.01903886 +10.03574 0.1121653 0.01903886 +13.47828 0.1121653 0.01903886 +18.10068 0.1121653 0.01903886 +24.30731 0.1121653 0.01903886 +32.64117 0.1121653 0.01903886 +43.83129 0.1121653 0.01903886 +58.85664 0.1121653 0.01903886 +-0.0175068 0.1535689 0.01903886 +-0.01161267 0.1535689 0.01903886 +-0.005718534 0.1535689 0.01903886 +0.0001755984 0.1535689 0.01903886 +0.006069731 0.1535689 0.01903886 +0.01197402 0.1535689 0.01903886 +0.01903886 0.1535689 0.01903886 +0.02852504 0.1535689 0.01903886 +0.04126244 0.1535689 0.01903886 +0.05836535 0.1535689 0.01903886 +0.08132997 0.1535689 0.01903886 +0.1121653 0.1535689 0.01903886 +0.1535689 0.1535689 0.01903886 +0.2091628 0.1535689 0.01903886 +0.2838106 0.1535689 0.01903886 +0.3840425 0.1535689 0.01903886 +0.518627 0.1535689 0.01903886 +0.6993381 0.1535689 0.01903886 +0.9419845 0.1535689 0.01903886 +1.267794 0.1535689 0.01903886 +1.705268 0.1535689 0.01903886 +2.292679 0.1535689 0.01903886 +3.081414 0.1535689 0.01903886 +4.140474 0.1535689 0.01903886 +5.562508 0.1535689 0.01903886 +7.471917 0.1535689 0.01903886 +10.03574 0.1535689 0.01903886 +13.47828 0.1535689 0.01903886 +18.10068 0.1535689 0.01903886 +24.30731 0.1535689 0.01903886 +32.64117 0.1535689 0.01903886 +43.83129 0.1535689 0.01903886 +58.85664 0.1535689 0.01903886 +-0.0175068 0.2091628 0.01903886 +-0.01161267 0.2091628 0.01903886 +-0.005718534 0.2091628 0.01903886 +0.0001755984 0.2091628 0.01903886 +0.006069731 0.2091628 0.01903886 +0.01197402 0.2091628 0.01903886 +0.01903886 0.2091628 0.01903886 +0.02852504 0.2091628 0.01903886 +0.04126244 0.2091628 0.01903886 +0.05836535 0.2091628 0.01903886 +0.08132997 0.2091628 0.01903886 +0.1121653 0.2091628 0.01903886 +0.1535689 0.2091628 0.01903886 +0.2091628 0.2091628 0.01903886 +0.2838106 0.2091628 0.01903886 +0.3840425 0.2091628 0.01903886 +0.518627 0.2091628 0.01903886 +0.6993381 0.2091628 0.01903886 +0.9419845 0.2091628 0.01903886 +1.267794 0.2091628 0.01903886 +1.705268 0.2091628 0.01903886 +2.292679 0.2091628 0.01903886 +3.081414 0.2091628 0.01903886 +4.140474 0.2091628 0.01903886 +5.562508 0.2091628 0.01903886 +7.471917 0.2091628 0.01903886 +10.03574 0.2091628 0.01903886 +13.47828 0.2091628 0.01903886 +18.10068 0.2091628 0.01903886 +24.30731 0.2091628 0.01903886 +32.64117 0.2091628 0.01903886 +43.83129 0.2091628 0.01903886 +58.85664 0.2091628 0.01903886 +-0.0175068 0.2838106 0.01903886 +-0.01161267 0.2838106 0.01903886 +-0.005718534 0.2838106 0.01903886 +0.0001755984 0.2838106 0.01903886 +0.006069731 0.2838106 0.01903886 +0.01197402 0.2838106 0.01903886 +0.01903886 0.2838106 0.01903886 +0.02852504 0.2838106 0.01903886 +0.04126244 0.2838106 0.01903886 +0.05836535 0.2838106 0.01903886 +0.08132997 0.2838106 0.01903886 +0.1121653 0.2838106 0.01903886 +0.1535689 0.2838106 0.01903886 +0.2091628 0.2838106 0.01903886 +0.2838106 0.2838106 0.01903886 +0.3840425 0.2838106 0.01903886 +0.518627 0.2838106 0.01903886 +0.6993381 0.2838106 0.01903886 +0.9419845 0.2838106 0.01903886 +1.267794 0.2838106 0.01903886 +1.705268 0.2838106 0.01903886 +2.292679 0.2838106 0.01903886 +3.081414 0.2838106 0.01903886 +4.140474 0.2838106 0.01903886 +5.562508 0.2838106 0.01903886 +7.471917 0.2838106 0.01903886 +10.03574 0.2838106 0.01903886 +13.47828 0.2838106 0.01903886 +18.10068 0.2838106 0.01903886 +24.30731 0.2838106 0.01903886 +32.64117 0.2838106 0.01903886 +43.83129 0.2838106 0.01903886 +58.85664 0.2838106 0.01903886 +-0.0175068 0.3840425 0.01903886 +-0.01161267 0.3840425 0.01903886 +-0.005718534 0.3840425 0.01903886 +0.0001755984 0.3840425 0.01903886 +0.006069731 0.3840425 0.01903886 +0.01197402 0.3840425 0.01903886 +0.01903886 0.3840425 0.01903886 +0.02852504 0.3840425 0.01903886 +0.04126244 0.3840425 0.01903886 +0.05836535 0.3840425 0.01903886 +0.08132997 0.3840425 0.01903886 +0.1121653 0.3840425 0.01903886 +0.1535689 0.3840425 0.01903886 +0.2091628 0.3840425 0.01903886 +0.2838106 0.3840425 0.01903886 +0.3840425 0.3840425 0.01903886 +0.518627 0.3840425 0.01903886 +0.6993381 0.3840425 0.01903886 +0.9419845 0.3840425 0.01903886 +1.267794 0.3840425 0.01903886 +1.705268 0.3840425 0.01903886 +2.292679 0.3840425 0.01903886 +3.081414 0.3840425 0.01903886 +4.140474 0.3840425 0.01903886 +5.562508 0.3840425 0.01903886 +7.471917 0.3840425 0.01903886 +10.03574 0.3840425 0.01903886 +13.47828 0.3840425 0.01903886 +18.10068 0.3840425 0.01903886 +24.30731 0.3840425 0.01903886 +32.64117 0.3840425 0.01903886 +43.83129 0.3840425 0.01903886 +58.85664 0.3840425 0.01903886 +-0.0175068 0.518627 0.01903886 +-0.01161267 0.518627 0.01903886 +-0.005718534 0.518627 0.01903886 +0.0001755984 0.518627 0.01903886 +0.006069731 0.518627 0.01903886 +0.01197402 0.518627 0.01903886 +0.01903886 0.518627 0.01903886 +0.02852504 0.518627 0.01903886 +0.04126244 0.518627 0.01903886 +0.05836535 0.518627 0.01903886 +0.08132997 0.518627 0.01903886 +0.1121653 0.518627 0.01903886 +0.1535689 0.518627 0.01903886 +0.2091628 0.518627 0.01903886 +0.2838106 0.518627 0.01903886 +0.3840425 0.518627 0.01903886 +0.518627 0.518627 0.01903886 +0.6993381 0.518627 0.01903886 +0.9419845 0.518627 0.01903886 +1.267794 0.518627 0.01903886 +1.705268 0.518627 0.01903886 +2.292679 0.518627 0.01903886 +3.081414 0.518627 0.01903886 +4.140474 0.518627 0.01903886 +5.562508 0.518627 0.01903886 +7.471917 0.518627 0.01903886 +10.03574 0.518627 0.01903886 +13.47828 0.518627 0.01903886 +18.10068 0.518627 0.01903886 +24.30731 0.518627 0.01903886 +32.64117 0.518627 0.01903886 +43.83129 0.518627 0.01903886 +58.85664 0.518627 0.01903886 +-0.0175068 0.6993381 0.01903886 +-0.01161267 0.6993381 0.01903886 +-0.005718534 0.6993381 0.01903886 +0.0001755984 0.6993381 0.01903886 +0.006069731 0.6993381 0.01903886 +0.01197402 0.6993381 0.01903886 +0.01903886 0.6993381 0.01903886 +0.02852504 0.6993381 0.01903886 +0.04126244 0.6993381 0.01903886 +0.05836535 0.6993381 0.01903886 +0.08132997 0.6993381 0.01903886 +0.1121653 0.6993381 0.01903886 +0.1535689 0.6993381 0.01903886 +0.2091628 0.6993381 0.01903886 +0.2838106 0.6993381 0.01903886 +0.3840425 0.6993381 0.01903886 +0.518627 0.6993381 0.01903886 +0.6993381 0.6993381 0.01903886 +0.9419845 0.6993381 0.01903886 +1.267794 0.6993381 0.01903886 +1.705268 0.6993381 0.01903886 +2.292679 0.6993381 0.01903886 +3.081414 0.6993381 0.01903886 +4.140474 0.6993381 0.01903886 +5.562508 0.6993381 0.01903886 +7.471917 0.6993381 0.01903886 +10.03574 0.6993381 0.01903886 +13.47828 0.6993381 0.01903886 +18.10068 0.6993381 0.01903886 +24.30731 0.6993381 0.01903886 +32.64117 0.6993381 0.01903886 +43.83129 0.6993381 0.01903886 +58.85664 0.6993381 0.01903886 +-0.0175068 0.9419845 0.01903886 +-0.01161267 0.9419845 0.01903886 +-0.005718534 0.9419845 0.01903886 +0.0001755984 0.9419845 0.01903886 +0.006069731 0.9419845 0.01903886 +0.01197402 0.9419845 0.01903886 +0.01903886 0.9419845 0.01903886 +0.02852504 0.9419845 0.01903886 +0.04126244 0.9419845 0.01903886 +0.05836535 0.9419845 0.01903886 +0.08132997 0.9419845 0.01903886 +0.1121653 0.9419845 0.01903886 +0.1535689 0.9419845 0.01903886 +0.2091628 0.9419845 0.01903886 +0.2838106 0.9419845 0.01903886 +0.3840425 0.9419845 0.01903886 +0.518627 0.9419845 0.01903886 +0.6993381 0.9419845 0.01903886 +0.9419845 0.9419845 0.01903886 +1.267794 0.9419845 0.01903886 +1.705268 0.9419845 0.01903886 +2.292679 0.9419845 0.01903886 +3.081414 0.9419845 0.01903886 +4.140474 0.9419845 0.01903886 +5.562508 0.9419845 0.01903886 +7.471917 0.9419845 0.01903886 +10.03574 0.9419845 0.01903886 +13.47828 0.9419845 0.01903886 +18.10068 0.9419845 0.01903886 +24.30731 0.9419845 0.01903886 +32.64117 0.9419845 0.01903886 +43.83129 0.9419845 0.01903886 +58.85664 0.9419845 0.01903886 +-0.0175068 1.267794 0.01903886 +-0.01161267 1.267794 0.01903886 +-0.005718534 1.267794 0.01903886 +0.0001755984 1.267794 0.01903886 +0.006069731 1.267794 0.01903886 +0.01197402 1.267794 0.01903886 +0.01903886 1.267794 0.01903886 +0.02852504 1.267794 0.01903886 +0.04126244 1.267794 0.01903886 +0.05836535 1.267794 0.01903886 +0.08132997 1.267794 0.01903886 +0.1121653 1.267794 0.01903886 +0.1535689 1.267794 0.01903886 +0.2091628 1.267794 0.01903886 +0.2838106 1.267794 0.01903886 +0.3840425 1.267794 0.01903886 +0.518627 1.267794 0.01903886 +0.6993381 1.267794 0.01903886 +0.9419845 1.267794 0.01903886 +1.267794 1.267794 0.01903886 +1.705268 1.267794 0.01903886 +2.292679 1.267794 0.01903886 +3.081414 1.267794 0.01903886 +4.140474 1.267794 0.01903886 +5.562508 1.267794 0.01903886 +7.471917 1.267794 0.01903886 +10.03574 1.267794 0.01903886 +13.47828 1.267794 0.01903886 +18.10068 1.267794 0.01903886 +24.30731 1.267794 0.01903886 +32.64117 1.267794 0.01903886 +43.83129 1.267794 0.01903886 +58.85664 1.267794 0.01903886 +-0.0175068 1.705268 0.01903886 +-0.01161267 1.705268 0.01903886 +-0.005718534 1.705268 0.01903886 +0.0001755984 1.705268 0.01903886 +0.006069731 1.705268 0.01903886 +0.01197402 1.705268 0.01903886 +0.01903886 1.705268 0.01903886 +0.02852504 1.705268 0.01903886 +0.04126244 1.705268 0.01903886 +0.05836535 1.705268 0.01903886 +0.08132997 1.705268 0.01903886 +0.1121653 1.705268 0.01903886 +0.1535689 1.705268 0.01903886 +0.2091628 1.705268 0.01903886 +0.2838106 1.705268 0.01903886 +0.3840425 1.705268 0.01903886 +0.518627 1.705268 0.01903886 +0.6993381 1.705268 0.01903886 +0.9419845 1.705268 0.01903886 +1.267794 1.705268 0.01903886 +1.705268 1.705268 0.01903886 +2.292679 1.705268 0.01903886 +3.081414 1.705268 0.01903886 +4.140474 1.705268 0.01903886 +5.562508 1.705268 0.01903886 +7.471917 1.705268 0.01903886 +10.03574 1.705268 0.01903886 +13.47828 1.705268 0.01903886 +18.10068 1.705268 0.01903886 +24.30731 1.705268 0.01903886 +32.64117 1.705268 0.01903886 +43.83129 1.705268 0.01903886 +58.85664 1.705268 0.01903886 +-0.0175068 2.292679 0.01903886 +-0.01161267 2.292679 0.01903886 +-0.005718534 2.292679 0.01903886 +0.0001755984 2.292679 0.01903886 +0.006069731 2.292679 0.01903886 +0.01197402 2.292679 0.01903886 +0.01903886 2.292679 0.01903886 +0.02852504 2.292679 0.01903886 +0.04126244 2.292679 0.01903886 +0.05836535 2.292679 0.01903886 +0.08132997 2.292679 0.01903886 +0.1121653 2.292679 0.01903886 +0.1535689 2.292679 0.01903886 +0.2091628 2.292679 0.01903886 +0.2838106 2.292679 0.01903886 +0.3840425 2.292679 0.01903886 +0.518627 2.292679 0.01903886 +0.6993381 2.292679 0.01903886 +0.9419845 2.292679 0.01903886 +1.267794 2.292679 0.01903886 +1.705268 2.292679 0.01903886 +2.292679 2.292679 0.01903886 +3.081414 2.292679 0.01903886 +4.140474 2.292679 0.01903886 +5.562508 2.292679 0.01903886 +7.471917 2.292679 0.01903886 +10.03574 2.292679 0.01903886 +13.47828 2.292679 0.01903886 +18.10068 2.292679 0.01903886 +24.30731 2.292679 0.01903886 +32.64117 2.292679 0.01903886 +43.83129 2.292679 0.01903886 +58.85664 2.292679 0.01903886 +-0.0175068 3.081414 0.01903886 +-0.01161267 3.081414 0.01903886 +-0.005718534 3.081414 0.01903886 +0.0001755984 3.081414 0.01903886 +0.006069731 3.081414 0.01903886 +0.01197402 3.081414 0.01903886 +0.01903886 3.081414 0.01903886 +0.02852504 3.081414 0.01903886 +0.04126244 3.081414 0.01903886 +0.05836535 3.081414 0.01903886 +0.08132997 3.081414 0.01903886 +0.1121653 3.081414 0.01903886 +0.1535689 3.081414 0.01903886 +0.2091628 3.081414 0.01903886 +0.2838106 3.081414 0.01903886 +0.3840425 3.081414 0.01903886 +0.518627 3.081414 0.01903886 +0.6993381 3.081414 0.01903886 +0.9419845 3.081414 0.01903886 +1.267794 3.081414 0.01903886 +1.705268 3.081414 0.01903886 +2.292679 3.081414 0.01903886 +3.081414 3.081414 0.01903886 +4.140474 3.081414 0.01903886 +5.562508 3.081414 0.01903886 +7.471917 3.081414 0.01903886 +10.03574 3.081414 0.01903886 +13.47828 3.081414 0.01903886 +18.10068 3.081414 0.01903886 +24.30731 3.081414 0.01903886 +32.64117 3.081414 0.01903886 +43.83129 3.081414 0.01903886 +58.85664 3.081414 0.01903886 +-0.0175068 4.140474 0.01903886 +-0.01161267 4.140474 0.01903886 +-0.005718534 4.140474 0.01903886 +0.0001755984 4.140474 0.01903886 +0.006069731 4.140474 0.01903886 +0.01197402 4.140474 0.01903886 +0.01903886 4.140474 0.01903886 +0.02852504 4.140474 0.01903886 +0.04126244 4.140474 0.01903886 +0.05836535 4.140474 0.01903886 +0.08132997 4.140474 0.01903886 +0.1121653 4.140474 0.01903886 +0.1535689 4.140474 0.01903886 +0.2091628 4.140474 0.01903886 +0.2838106 4.140474 0.01903886 +0.3840425 4.140474 0.01903886 +0.518627 4.140474 0.01903886 +0.6993381 4.140474 0.01903886 +0.9419845 4.140474 0.01903886 +1.267794 4.140474 0.01903886 +1.705268 4.140474 0.01903886 +2.292679 4.140474 0.01903886 +3.081414 4.140474 0.01903886 +4.140474 4.140474 0.01903886 +5.562508 4.140474 0.01903886 +7.471917 4.140474 0.01903886 +10.03574 4.140474 0.01903886 +13.47828 4.140474 0.01903886 +18.10068 4.140474 0.01903886 +24.30731 4.140474 0.01903886 +32.64117 4.140474 0.01903886 +43.83129 4.140474 0.01903886 +58.85664 4.140474 0.01903886 +-0.0175068 5.562508 0.01903886 +-0.01161267 5.562508 0.01903886 +-0.005718534 5.562508 0.01903886 +0.0001755984 5.562508 0.01903886 +0.006069731 5.562508 0.01903886 +0.01197402 5.562508 0.01903886 +0.01903886 5.562508 0.01903886 +0.02852504 5.562508 0.01903886 +0.04126244 5.562508 0.01903886 +0.05836535 5.562508 0.01903886 +0.08132997 5.562508 0.01903886 +0.1121653 5.562508 0.01903886 +0.1535689 5.562508 0.01903886 +0.2091628 5.562508 0.01903886 +0.2838106 5.562508 0.01903886 +0.3840425 5.562508 0.01903886 +0.518627 5.562508 0.01903886 +0.6993381 5.562508 0.01903886 +0.9419845 5.562508 0.01903886 +1.267794 5.562508 0.01903886 +1.705268 5.562508 0.01903886 +2.292679 5.562508 0.01903886 +3.081414 5.562508 0.01903886 +4.140474 5.562508 0.01903886 +5.562508 5.562508 0.01903886 +7.471917 5.562508 0.01903886 +10.03574 5.562508 0.01903886 +13.47828 5.562508 0.01903886 +18.10068 5.562508 0.01903886 +24.30731 5.562508 0.01903886 +32.64117 5.562508 0.01903886 +43.83129 5.562508 0.01903886 +58.85664 5.562508 0.01903886 +-0.0175068 7.471917 0.01903886 +-0.01161267 7.471917 0.01903886 +-0.005718534 7.471917 0.01903886 +0.0001755984 7.471917 0.01903886 +0.006069731 7.471917 0.01903886 +0.01197402 7.471917 0.01903886 +0.01903886 7.471917 0.01903886 +0.02852504 7.471917 0.01903886 +0.04126244 7.471917 0.01903886 +0.05836535 7.471917 0.01903886 +0.08132997 7.471917 0.01903886 +0.1121653 7.471917 0.01903886 +0.1535689 7.471917 0.01903886 +0.2091628 7.471917 0.01903886 +0.2838106 7.471917 0.01903886 +0.3840425 7.471917 0.01903886 +0.518627 7.471917 0.01903886 +0.6993381 7.471917 0.01903886 +0.9419845 7.471917 0.01903886 +1.267794 7.471917 0.01903886 +1.705268 7.471917 0.01903886 +2.292679 7.471917 0.01903886 +3.081414 7.471917 0.01903886 +4.140474 7.471917 0.01903886 +5.562508 7.471917 0.01903886 +7.471917 7.471917 0.01903886 +10.03574 7.471917 0.01903886 +13.47828 7.471917 0.01903886 +18.10068 7.471917 0.01903886 +24.30731 7.471917 0.01903886 +32.64117 7.471917 0.01903886 +43.83129 7.471917 0.01903886 +58.85664 7.471917 0.01903886 +-0.0175068 10.03574 0.01903886 +-0.01161267 10.03574 0.01903886 +-0.005718534 10.03574 0.01903886 +0.0001755984 10.03574 0.01903886 +0.006069731 10.03574 0.01903886 +0.01197402 10.03574 0.01903886 +0.01903886 10.03574 0.01903886 +0.02852504 10.03574 0.01903886 +0.04126244 10.03574 0.01903886 +0.05836535 10.03574 0.01903886 +0.08132997 10.03574 0.01903886 +0.1121653 10.03574 0.01903886 +0.1535689 10.03574 0.01903886 +0.2091628 10.03574 0.01903886 +0.2838106 10.03574 0.01903886 +0.3840425 10.03574 0.01903886 +0.518627 10.03574 0.01903886 +0.6993381 10.03574 0.01903886 +0.9419845 10.03574 0.01903886 +1.267794 10.03574 0.01903886 +1.705268 10.03574 0.01903886 +2.292679 10.03574 0.01903886 +3.081414 10.03574 0.01903886 +4.140474 10.03574 0.01903886 +5.562508 10.03574 0.01903886 +7.471917 10.03574 0.01903886 +10.03574 10.03574 0.01903886 +13.47828 10.03574 0.01903886 +18.10068 10.03574 0.01903886 +24.30731 10.03574 0.01903886 +32.64117 10.03574 0.01903886 +43.83129 10.03574 0.01903886 +58.85664 10.03574 0.01903886 +-0.0175068 13.47828 0.01903886 +-0.01161267 13.47828 0.01903886 +-0.005718534 13.47828 0.01903886 +0.0001755984 13.47828 0.01903886 +0.006069731 13.47828 0.01903886 +0.01197402 13.47828 0.01903886 +0.01903886 13.47828 0.01903886 +0.02852504 13.47828 0.01903886 +0.04126244 13.47828 0.01903886 +0.05836535 13.47828 0.01903886 +0.08132997 13.47828 0.01903886 +0.1121653 13.47828 0.01903886 +0.1535689 13.47828 0.01903886 +0.2091628 13.47828 0.01903886 +0.2838106 13.47828 0.01903886 +0.3840425 13.47828 0.01903886 +0.518627 13.47828 0.01903886 +0.6993381 13.47828 0.01903886 +0.9419845 13.47828 0.01903886 +1.267794 13.47828 0.01903886 +1.705268 13.47828 0.01903886 +2.292679 13.47828 0.01903886 +3.081414 13.47828 0.01903886 +4.140474 13.47828 0.01903886 +5.562508 13.47828 0.01903886 +7.471917 13.47828 0.01903886 +10.03574 13.47828 0.01903886 +13.47828 13.47828 0.01903886 +18.10068 13.47828 0.01903886 +24.30731 13.47828 0.01903886 +32.64117 13.47828 0.01903886 +43.83129 13.47828 0.01903886 +58.85664 13.47828 0.01903886 +-0.0175068 18.10068 0.01903886 +-0.01161267 18.10068 0.01903886 +-0.005718534 18.10068 0.01903886 +0.0001755984 18.10068 0.01903886 +0.006069731 18.10068 0.01903886 +0.01197402 18.10068 0.01903886 +0.01903886 18.10068 0.01903886 +0.02852504 18.10068 0.01903886 +0.04126244 18.10068 0.01903886 +0.05836535 18.10068 0.01903886 +0.08132997 18.10068 0.01903886 +0.1121653 18.10068 0.01903886 +0.1535689 18.10068 0.01903886 +0.2091628 18.10068 0.01903886 +0.2838106 18.10068 0.01903886 +0.3840425 18.10068 0.01903886 +0.518627 18.10068 0.01903886 +0.6993381 18.10068 0.01903886 +0.9419845 18.10068 0.01903886 +1.267794 18.10068 0.01903886 +1.705268 18.10068 0.01903886 +2.292679 18.10068 0.01903886 +3.081414 18.10068 0.01903886 +4.140474 18.10068 0.01903886 +5.562508 18.10068 0.01903886 +7.471917 18.10068 0.01903886 +10.03574 18.10068 0.01903886 +13.47828 18.10068 0.01903886 +18.10068 18.10068 0.01903886 +24.30731 18.10068 0.01903886 +32.64117 18.10068 0.01903886 +43.83129 18.10068 0.01903886 +58.85664 18.10068 0.01903886 +-0.0175068 24.30731 0.01903886 +-0.01161267 24.30731 0.01903886 +-0.005718534 24.30731 0.01903886 +0.0001755984 24.30731 0.01903886 +0.006069731 24.30731 0.01903886 +0.01197402 24.30731 0.01903886 +0.01903886 24.30731 0.01903886 +0.02852504 24.30731 0.01903886 +0.04126244 24.30731 0.01903886 +0.05836535 24.30731 0.01903886 +0.08132997 24.30731 0.01903886 +0.1121653 24.30731 0.01903886 +0.1535689 24.30731 0.01903886 +0.2091628 24.30731 0.01903886 +0.2838106 24.30731 0.01903886 +0.3840425 24.30731 0.01903886 +0.518627 24.30731 0.01903886 +0.6993381 24.30731 0.01903886 +0.9419845 24.30731 0.01903886 +1.267794 24.30731 0.01903886 +1.705268 24.30731 0.01903886 +2.292679 24.30731 0.01903886 +3.081414 24.30731 0.01903886 +4.140474 24.30731 0.01903886 +5.562508 24.30731 0.01903886 +7.471917 24.30731 0.01903886 +10.03574 24.30731 0.01903886 +13.47828 24.30731 0.01903886 +18.10068 24.30731 0.01903886 +24.30731 24.30731 0.01903886 +32.64117 24.30731 0.01903886 +43.83129 24.30731 0.01903886 +58.85664 24.30731 0.01903886 +-0.0175068 32.64117 0.01903886 +-0.01161267 32.64117 0.01903886 +-0.005718534 32.64117 0.01903886 +0.0001755984 32.64117 0.01903886 +0.006069731 32.64117 0.01903886 +0.01197402 32.64117 0.01903886 +0.01903886 32.64117 0.01903886 +0.02852504 32.64117 0.01903886 +0.04126244 32.64117 0.01903886 +0.05836535 32.64117 0.01903886 +0.08132997 32.64117 0.01903886 +0.1121653 32.64117 0.01903886 +0.1535689 32.64117 0.01903886 +0.2091628 32.64117 0.01903886 +0.2838106 32.64117 0.01903886 +0.3840425 32.64117 0.01903886 +0.518627 32.64117 0.01903886 +0.6993381 32.64117 0.01903886 +0.9419845 32.64117 0.01903886 +1.267794 32.64117 0.01903886 +1.705268 32.64117 0.01903886 +2.292679 32.64117 0.01903886 +3.081414 32.64117 0.01903886 +4.140474 32.64117 0.01903886 +5.562508 32.64117 0.01903886 +7.471917 32.64117 0.01903886 +10.03574 32.64117 0.01903886 +13.47828 32.64117 0.01903886 +18.10068 32.64117 0.01903886 +24.30731 32.64117 0.01903886 +32.64117 32.64117 0.01903886 +43.83129 32.64117 0.01903886 +58.85664 32.64117 0.01903886 +-0.0175068 43.83129 0.01903886 +-0.01161267 43.83129 0.01903886 +-0.005718534 43.83129 0.01903886 +0.0001755984 43.83129 0.01903886 +0.006069731 43.83129 0.01903886 +0.01197402 43.83129 0.01903886 +0.01903886 43.83129 0.01903886 +0.02852504 43.83129 0.01903886 +0.04126244 43.83129 0.01903886 +0.05836535 43.83129 0.01903886 +0.08132997 43.83129 0.01903886 +0.1121653 43.83129 0.01903886 +0.1535689 43.83129 0.01903886 +0.2091628 43.83129 0.01903886 +0.2838106 43.83129 0.01903886 +0.3840425 43.83129 0.01903886 +0.518627 43.83129 0.01903886 +0.6993381 43.83129 0.01903886 +0.9419845 43.83129 0.01903886 +1.267794 43.83129 0.01903886 +1.705268 43.83129 0.01903886 +2.292679 43.83129 0.01903886 +3.081414 43.83129 0.01903886 +4.140474 43.83129 0.01903886 +5.562508 43.83129 0.01903886 +7.471917 43.83129 0.01903886 +10.03574 43.83129 0.01903886 +13.47828 43.83129 0.01903886 +18.10068 43.83129 0.01903886 +24.30731 43.83129 0.01903886 +32.64117 43.83129 0.01903886 +43.83129 43.83129 0.01903886 +58.85664 43.83129 0.01903886 +-0.0175068 58.85664 0.01903886 +-0.01161267 58.85664 0.01903886 +-0.005718534 58.85664 0.01903886 +0.0001755984 58.85664 0.01903886 +0.006069731 58.85664 0.01903886 +0.01197402 58.85664 0.01903886 +0.01903886 58.85664 0.01903886 +0.02852504 58.85664 0.01903886 +0.04126244 58.85664 0.01903886 +0.05836535 58.85664 0.01903886 +0.08132997 58.85664 0.01903886 +0.1121653 58.85664 0.01903886 +0.1535689 58.85664 0.01903886 +0.2091628 58.85664 0.01903886 +0.2838106 58.85664 0.01903886 +0.3840425 58.85664 0.01903886 +0.518627 58.85664 0.01903886 +0.6993381 58.85664 0.01903886 +0.9419845 58.85664 0.01903886 +1.267794 58.85664 0.01903886 +1.705268 58.85664 0.01903886 +2.292679 58.85664 0.01903886 +3.081414 58.85664 0.01903886 +4.140474 58.85664 0.01903886 +5.562508 58.85664 0.01903886 +7.471917 58.85664 0.01903886 +10.03574 58.85664 0.01903886 +13.47828 58.85664 0.01903886 +18.10068 58.85664 0.01903886 +24.30731 58.85664 0.01903886 +32.64117 58.85664 0.01903886 +43.83129 58.85664 0.01903886 +58.85664 58.85664 0.01903886 +-0.0175068 -0.0175068 0.02852504 +-0.01161267 -0.0175068 0.02852504 +-0.005718534 -0.0175068 0.02852504 +0.0001755984 -0.0175068 0.02852504 +0.006069731 -0.0175068 0.02852504 +0.01197402 -0.0175068 0.02852504 +0.01903886 -0.0175068 0.02852504 +0.02852504 -0.0175068 0.02852504 +0.04126244 -0.0175068 0.02852504 +0.05836535 -0.0175068 0.02852504 +0.08132997 -0.0175068 0.02852504 +0.1121653 -0.0175068 0.02852504 +0.1535689 -0.0175068 0.02852504 +0.2091628 -0.0175068 0.02852504 +0.2838106 -0.0175068 0.02852504 +0.3840425 -0.0175068 0.02852504 +0.518627 -0.0175068 0.02852504 +0.6993381 -0.0175068 0.02852504 +0.9419845 -0.0175068 0.02852504 +1.267794 -0.0175068 0.02852504 +1.705268 -0.0175068 0.02852504 +2.292679 -0.0175068 0.02852504 +3.081414 -0.0175068 0.02852504 +4.140474 -0.0175068 0.02852504 +5.562508 -0.0175068 0.02852504 +7.471917 -0.0175068 0.02852504 +10.03574 -0.0175068 0.02852504 +13.47828 -0.0175068 0.02852504 +18.10068 -0.0175068 0.02852504 +24.30731 -0.0175068 0.02852504 +32.64117 -0.0175068 0.02852504 +43.83129 -0.0175068 0.02852504 +58.85664 -0.0175068 0.02852504 +-0.0175068 -0.01161267 0.02852504 +-0.01161267 -0.01161267 0.02852504 +-0.005718534 -0.01161267 0.02852504 +0.0001755984 -0.01161267 0.02852504 +0.006069731 -0.01161267 0.02852504 +0.01197402 -0.01161267 0.02852504 +0.01903886 -0.01161267 0.02852504 +0.02852504 -0.01161267 0.02852504 +0.04126244 -0.01161267 0.02852504 +0.05836535 -0.01161267 0.02852504 +0.08132997 -0.01161267 0.02852504 +0.1121653 -0.01161267 0.02852504 +0.1535689 -0.01161267 0.02852504 +0.2091628 -0.01161267 0.02852504 +0.2838106 -0.01161267 0.02852504 +0.3840425 -0.01161267 0.02852504 +0.518627 -0.01161267 0.02852504 +0.6993381 -0.01161267 0.02852504 +0.9419845 -0.01161267 0.02852504 +1.267794 -0.01161267 0.02852504 +1.705268 -0.01161267 0.02852504 +2.292679 -0.01161267 0.02852504 +3.081414 -0.01161267 0.02852504 +4.140474 -0.01161267 0.02852504 +5.562508 -0.01161267 0.02852504 +7.471917 -0.01161267 0.02852504 +10.03574 -0.01161267 0.02852504 +13.47828 -0.01161267 0.02852504 +18.10068 -0.01161267 0.02852504 +24.30731 -0.01161267 0.02852504 +32.64117 -0.01161267 0.02852504 +43.83129 -0.01161267 0.02852504 +58.85664 -0.01161267 0.02852504 +-0.0175068 -0.005718534 0.02852504 +-0.01161267 -0.005718534 0.02852504 +-0.005718534 -0.005718534 0.02852504 +0.0001755984 -0.005718534 0.02852504 +0.006069731 -0.005718534 0.02852504 +0.01197402 -0.005718534 0.02852504 +0.01903886 -0.005718534 0.02852504 +0.02852504 -0.005718534 0.02852504 +0.04126244 -0.005718534 0.02852504 +0.05836535 -0.005718534 0.02852504 +0.08132997 -0.005718534 0.02852504 +0.1121653 -0.005718534 0.02852504 +0.1535689 -0.005718534 0.02852504 +0.2091628 -0.005718534 0.02852504 +0.2838106 -0.005718534 0.02852504 +0.3840425 -0.005718534 0.02852504 +0.518627 -0.005718534 0.02852504 +0.6993381 -0.005718534 0.02852504 +0.9419845 -0.005718534 0.02852504 +1.267794 -0.005718534 0.02852504 +1.705268 -0.005718534 0.02852504 +2.292679 -0.005718534 0.02852504 +3.081414 -0.005718534 0.02852504 +4.140474 -0.005718534 0.02852504 +5.562508 -0.005718534 0.02852504 +7.471917 -0.005718534 0.02852504 +10.03574 -0.005718534 0.02852504 +13.47828 -0.005718534 0.02852504 +18.10068 -0.005718534 0.02852504 +24.30731 -0.005718534 0.02852504 +32.64117 -0.005718534 0.02852504 +43.83129 -0.005718534 0.02852504 +58.85664 -0.005718534 0.02852504 +-0.0175068 0.0001755984 0.02852504 +-0.01161267 0.0001755984 0.02852504 +-0.005718534 0.0001755984 0.02852504 +0.0001755984 0.0001755984 0.02852504 +0.006069731 0.0001755984 0.02852504 +0.01197402 0.0001755984 0.02852504 +0.01903886 0.0001755984 0.02852504 +0.02852504 0.0001755984 0.02852504 +0.04126244 0.0001755984 0.02852504 +0.05836535 0.0001755984 0.02852504 +0.08132997 0.0001755984 0.02852504 +0.1121653 0.0001755984 0.02852504 +0.1535689 0.0001755984 0.02852504 +0.2091628 0.0001755984 0.02852504 +0.2838106 0.0001755984 0.02852504 +0.3840425 0.0001755984 0.02852504 +0.518627 0.0001755984 0.02852504 +0.6993381 0.0001755984 0.02852504 +0.9419845 0.0001755984 0.02852504 +1.267794 0.0001755984 0.02852504 +1.705268 0.0001755984 0.02852504 +2.292679 0.0001755984 0.02852504 +3.081414 0.0001755984 0.02852504 +4.140474 0.0001755984 0.02852504 +5.562508 0.0001755984 0.02852504 +7.471917 0.0001755984 0.02852504 +10.03574 0.0001755984 0.02852504 +13.47828 0.0001755984 0.02852504 +18.10068 0.0001755984 0.02852504 +24.30731 0.0001755984 0.02852504 +32.64117 0.0001755984 0.02852504 +43.83129 0.0001755984 0.02852504 +58.85664 0.0001755984 0.02852504 +-0.0175068 0.006069731 0.02852504 +-0.01161267 0.006069731 0.02852504 +-0.005718534 0.006069731 0.02852504 +0.0001755984 0.006069731 0.02852504 +0.006069731 0.006069731 0.02852504 +0.01197402 0.006069731 0.02852504 +0.01903886 0.006069731 0.02852504 +0.02852504 0.006069731 0.02852504 +0.04126244 0.006069731 0.02852504 +0.05836535 0.006069731 0.02852504 +0.08132997 0.006069731 0.02852504 +0.1121653 0.006069731 0.02852504 +0.1535689 0.006069731 0.02852504 +0.2091628 0.006069731 0.02852504 +0.2838106 0.006069731 0.02852504 +0.3840425 0.006069731 0.02852504 +0.518627 0.006069731 0.02852504 +0.6993381 0.006069731 0.02852504 +0.9419845 0.006069731 0.02852504 +1.267794 0.006069731 0.02852504 +1.705268 0.006069731 0.02852504 +2.292679 0.006069731 0.02852504 +3.081414 0.006069731 0.02852504 +4.140474 0.006069731 0.02852504 +5.562508 0.006069731 0.02852504 +7.471917 0.006069731 0.02852504 +10.03574 0.006069731 0.02852504 +13.47828 0.006069731 0.02852504 +18.10068 0.006069731 0.02852504 +24.30731 0.006069731 0.02852504 +32.64117 0.006069731 0.02852504 +43.83129 0.006069731 0.02852504 +58.85664 0.006069731 0.02852504 +-0.0175068 0.01197402 0.02852504 +-0.01161267 0.01197402 0.02852504 +-0.005718534 0.01197402 0.02852504 +0.0001755984 0.01197402 0.02852504 +0.006069731 0.01197402 0.02852504 +0.01197402 0.01197402 0.02852504 +0.01903886 0.01197402 0.02852504 +0.02852504 0.01197402 0.02852504 +0.04126244 0.01197402 0.02852504 +0.05836535 0.01197402 0.02852504 +0.08132997 0.01197402 0.02852504 +0.1121653 0.01197402 0.02852504 +0.1535689 0.01197402 0.02852504 +0.2091628 0.01197402 0.02852504 +0.2838106 0.01197402 0.02852504 +0.3840425 0.01197402 0.02852504 +0.518627 0.01197402 0.02852504 +0.6993381 0.01197402 0.02852504 +0.9419845 0.01197402 0.02852504 +1.267794 0.01197402 0.02852504 +1.705268 0.01197402 0.02852504 +2.292679 0.01197402 0.02852504 +3.081414 0.01197402 0.02852504 +4.140474 0.01197402 0.02852504 +5.562508 0.01197402 0.02852504 +7.471917 0.01197402 0.02852504 +10.03574 0.01197402 0.02852504 +13.47828 0.01197402 0.02852504 +18.10068 0.01197402 0.02852504 +24.30731 0.01197402 0.02852504 +32.64117 0.01197402 0.02852504 +43.83129 0.01197402 0.02852504 +58.85664 0.01197402 0.02852504 +-0.0175068 0.01903886 0.02852504 +-0.01161267 0.01903886 0.02852504 +-0.005718534 0.01903886 0.02852504 +0.0001755984 0.01903886 0.02852504 +0.006069731 0.01903886 0.02852504 +0.01197402 0.01903886 0.02852504 +0.01903886 0.01903886 0.02852504 +0.02852504 0.01903886 0.02852504 +0.04126244 0.01903886 0.02852504 +0.05836535 0.01903886 0.02852504 +0.08132997 0.01903886 0.02852504 +0.1121653 0.01903886 0.02852504 +0.1535689 0.01903886 0.02852504 +0.2091628 0.01903886 0.02852504 +0.2838106 0.01903886 0.02852504 +0.3840425 0.01903886 0.02852504 +0.518627 0.01903886 0.02852504 +0.6993381 0.01903886 0.02852504 +0.9419845 0.01903886 0.02852504 +1.267794 0.01903886 0.02852504 +1.705268 0.01903886 0.02852504 +2.292679 0.01903886 0.02852504 +3.081414 0.01903886 0.02852504 +4.140474 0.01903886 0.02852504 +5.562508 0.01903886 0.02852504 +7.471917 0.01903886 0.02852504 +10.03574 0.01903886 0.02852504 +13.47828 0.01903886 0.02852504 +18.10068 0.01903886 0.02852504 +24.30731 0.01903886 0.02852504 +32.64117 0.01903886 0.02852504 +43.83129 0.01903886 0.02852504 +58.85664 0.01903886 0.02852504 +-0.0175068 0.02852504 0.02852504 +-0.01161267 0.02852504 0.02852504 +-0.005718534 0.02852504 0.02852504 +0.0001755984 0.02852504 0.02852504 +0.006069731 0.02852504 0.02852504 +0.01197402 0.02852504 0.02852504 +0.01903886 0.02852504 0.02852504 +0.02852504 0.02852504 0.02852504 +0.04126244 0.02852504 0.02852504 +0.05836535 0.02852504 0.02852504 +0.08132997 0.02852504 0.02852504 +0.1121653 0.02852504 0.02852504 +0.1535689 0.02852504 0.02852504 +0.2091628 0.02852504 0.02852504 +0.2838106 0.02852504 0.02852504 +0.3840425 0.02852504 0.02852504 +0.518627 0.02852504 0.02852504 +0.6993381 0.02852504 0.02852504 +0.9419845 0.02852504 0.02852504 +1.267794 0.02852504 0.02852504 +1.705268 0.02852504 0.02852504 +2.292679 0.02852504 0.02852504 +3.081414 0.02852504 0.02852504 +4.140474 0.02852504 0.02852504 +5.562508 0.02852504 0.02852504 +7.471917 0.02852504 0.02852504 +10.03574 0.02852504 0.02852504 +13.47828 0.02852504 0.02852504 +18.10068 0.02852504 0.02852504 +24.30731 0.02852504 0.02852504 +32.64117 0.02852504 0.02852504 +43.83129 0.02852504 0.02852504 +58.85664 0.02852504 0.02852504 +-0.0175068 0.04126244 0.02852504 +-0.01161267 0.04126244 0.02852504 +-0.005718534 0.04126244 0.02852504 +0.0001755984 0.04126244 0.02852504 +0.006069731 0.04126244 0.02852504 +0.01197402 0.04126244 0.02852504 +0.01903886 0.04126244 0.02852504 +0.02852504 0.04126244 0.02852504 +0.04126244 0.04126244 0.02852504 +0.05836535 0.04126244 0.02852504 +0.08132997 0.04126244 0.02852504 +0.1121653 0.04126244 0.02852504 +0.1535689 0.04126244 0.02852504 +0.2091628 0.04126244 0.02852504 +0.2838106 0.04126244 0.02852504 +0.3840425 0.04126244 0.02852504 +0.518627 0.04126244 0.02852504 +0.6993381 0.04126244 0.02852504 +0.9419845 0.04126244 0.02852504 +1.267794 0.04126244 0.02852504 +1.705268 0.04126244 0.02852504 +2.292679 0.04126244 0.02852504 +3.081414 0.04126244 0.02852504 +4.140474 0.04126244 0.02852504 +5.562508 0.04126244 0.02852504 +7.471917 0.04126244 0.02852504 +10.03574 0.04126244 0.02852504 +13.47828 0.04126244 0.02852504 +18.10068 0.04126244 0.02852504 +24.30731 0.04126244 0.02852504 +32.64117 0.04126244 0.02852504 +43.83129 0.04126244 0.02852504 +58.85664 0.04126244 0.02852504 +-0.0175068 0.05836535 0.02852504 +-0.01161267 0.05836535 0.02852504 +-0.005718534 0.05836535 0.02852504 +0.0001755984 0.05836535 0.02852504 +0.006069731 0.05836535 0.02852504 +0.01197402 0.05836535 0.02852504 +0.01903886 0.05836535 0.02852504 +0.02852504 0.05836535 0.02852504 +0.04126244 0.05836535 0.02852504 +0.05836535 0.05836535 0.02852504 +0.08132997 0.05836535 0.02852504 +0.1121653 0.05836535 0.02852504 +0.1535689 0.05836535 0.02852504 +0.2091628 0.05836535 0.02852504 +0.2838106 0.05836535 0.02852504 +0.3840425 0.05836535 0.02852504 +0.518627 0.05836535 0.02852504 +0.6993381 0.05836535 0.02852504 +0.9419845 0.05836535 0.02852504 +1.267794 0.05836535 0.02852504 +1.705268 0.05836535 0.02852504 +2.292679 0.05836535 0.02852504 +3.081414 0.05836535 0.02852504 +4.140474 0.05836535 0.02852504 +5.562508 0.05836535 0.02852504 +7.471917 0.05836535 0.02852504 +10.03574 0.05836535 0.02852504 +13.47828 0.05836535 0.02852504 +18.10068 0.05836535 0.02852504 +24.30731 0.05836535 0.02852504 +32.64117 0.05836535 0.02852504 +43.83129 0.05836535 0.02852504 +58.85664 0.05836535 0.02852504 +-0.0175068 0.08132997 0.02852504 +-0.01161267 0.08132997 0.02852504 +-0.005718534 0.08132997 0.02852504 +0.0001755984 0.08132997 0.02852504 +0.006069731 0.08132997 0.02852504 +0.01197402 0.08132997 0.02852504 +0.01903886 0.08132997 0.02852504 +0.02852504 0.08132997 0.02852504 +0.04126244 0.08132997 0.02852504 +0.05836535 0.08132997 0.02852504 +0.08132997 0.08132997 0.02852504 +0.1121653 0.08132997 0.02852504 +0.1535689 0.08132997 0.02852504 +0.2091628 0.08132997 0.02852504 +0.2838106 0.08132997 0.02852504 +0.3840425 0.08132997 0.02852504 +0.518627 0.08132997 0.02852504 +0.6993381 0.08132997 0.02852504 +0.9419845 0.08132997 0.02852504 +1.267794 0.08132997 0.02852504 +1.705268 0.08132997 0.02852504 +2.292679 0.08132997 0.02852504 +3.081414 0.08132997 0.02852504 +4.140474 0.08132997 0.02852504 +5.562508 0.08132997 0.02852504 +7.471917 0.08132997 0.02852504 +10.03574 0.08132997 0.02852504 +13.47828 0.08132997 0.02852504 +18.10068 0.08132997 0.02852504 +24.30731 0.08132997 0.02852504 +32.64117 0.08132997 0.02852504 +43.83129 0.08132997 0.02852504 +58.85664 0.08132997 0.02852504 +-0.0175068 0.1121653 0.02852504 +-0.01161267 0.1121653 0.02852504 +-0.005718534 0.1121653 0.02852504 +0.0001755984 0.1121653 0.02852504 +0.006069731 0.1121653 0.02852504 +0.01197402 0.1121653 0.02852504 +0.01903886 0.1121653 0.02852504 +0.02852504 0.1121653 0.02852504 +0.04126244 0.1121653 0.02852504 +0.05836535 0.1121653 0.02852504 +0.08132997 0.1121653 0.02852504 +0.1121653 0.1121653 0.02852504 +0.1535689 0.1121653 0.02852504 +0.2091628 0.1121653 0.02852504 +0.2838106 0.1121653 0.02852504 +0.3840425 0.1121653 0.02852504 +0.518627 0.1121653 0.02852504 +0.6993381 0.1121653 0.02852504 +0.9419845 0.1121653 0.02852504 +1.267794 0.1121653 0.02852504 +1.705268 0.1121653 0.02852504 +2.292679 0.1121653 0.02852504 +3.081414 0.1121653 0.02852504 +4.140474 0.1121653 0.02852504 +5.562508 0.1121653 0.02852504 +7.471917 0.1121653 0.02852504 +10.03574 0.1121653 0.02852504 +13.47828 0.1121653 0.02852504 +18.10068 0.1121653 0.02852504 +24.30731 0.1121653 0.02852504 +32.64117 0.1121653 0.02852504 +43.83129 0.1121653 0.02852504 +58.85664 0.1121653 0.02852504 +-0.0175068 0.1535689 0.02852504 +-0.01161267 0.1535689 0.02852504 +-0.005718534 0.1535689 0.02852504 +0.0001755984 0.1535689 0.02852504 +0.006069731 0.1535689 0.02852504 +0.01197402 0.1535689 0.02852504 +0.01903886 0.1535689 0.02852504 +0.02852504 0.1535689 0.02852504 +0.04126244 0.1535689 0.02852504 +0.05836535 0.1535689 0.02852504 +0.08132997 0.1535689 0.02852504 +0.1121653 0.1535689 0.02852504 +0.1535689 0.1535689 0.02852504 +0.2091628 0.1535689 0.02852504 +0.2838106 0.1535689 0.02852504 +0.3840425 0.1535689 0.02852504 +0.518627 0.1535689 0.02852504 +0.6993381 0.1535689 0.02852504 +0.9419845 0.1535689 0.02852504 +1.267794 0.1535689 0.02852504 +1.705268 0.1535689 0.02852504 +2.292679 0.1535689 0.02852504 +3.081414 0.1535689 0.02852504 +4.140474 0.1535689 0.02852504 +5.562508 0.1535689 0.02852504 +7.471917 0.1535689 0.02852504 +10.03574 0.1535689 0.02852504 +13.47828 0.1535689 0.02852504 +18.10068 0.1535689 0.02852504 +24.30731 0.1535689 0.02852504 +32.64117 0.1535689 0.02852504 +43.83129 0.1535689 0.02852504 +58.85664 0.1535689 0.02852504 +-0.0175068 0.2091628 0.02852504 +-0.01161267 0.2091628 0.02852504 +-0.005718534 0.2091628 0.02852504 +0.0001755984 0.2091628 0.02852504 +0.006069731 0.2091628 0.02852504 +0.01197402 0.2091628 0.02852504 +0.01903886 0.2091628 0.02852504 +0.02852504 0.2091628 0.02852504 +0.04126244 0.2091628 0.02852504 +0.05836535 0.2091628 0.02852504 +0.08132997 0.2091628 0.02852504 +0.1121653 0.2091628 0.02852504 +0.1535689 0.2091628 0.02852504 +0.2091628 0.2091628 0.02852504 +0.2838106 0.2091628 0.02852504 +0.3840425 0.2091628 0.02852504 +0.518627 0.2091628 0.02852504 +0.6993381 0.2091628 0.02852504 +0.9419845 0.2091628 0.02852504 +1.267794 0.2091628 0.02852504 +1.705268 0.2091628 0.02852504 +2.292679 0.2091628 0.02852504 +3.081414 0.2091628 0.02852504 +4.140474 0.2091628 0.02852504 +5.562508 0.2091628 0.02852504 +7.471917 0.2091628 0.02852504 +10.03574 0.2091628 0.02852504 +13.47828 0.2091628 0.02852504 +18.10068 0.2091628 0.02852504 +24.30731 0.2091628 0.02852504 +32.64117 0.2091628 0.02852504 +43.83129 0.2091628 0.02852504 +58.85664 0.2091628 0.02852504 +-0.0175068 0.2838106 0.02852504 +-0.01161267 0.2838106 0.02852504 +-0.005718534 0.2838106 0.02852504 +0.0001755984 0.2838106 0.02852504 +0.006069731 0.2838106 0.02852504 +0.01197402 0.2838106 0.02852504 +0.01903886 0.2838106 0.02852504 +0.02852504 0.2838106 0.02852504 +0.04126244 0.2838106 0.02852504 +0.05836535 0.2838106 0.02852504 +0.08132997 0.2838106 0.02852504 +0.1121653 0.2838106 0.02852504 +0.1535689 0.2838106 0.02852504 +0.2091628 0.2838106 0.02852504 +0.2838106 0.2838106 0.02852504 +0.3840425 0.2838106 0.02852504 +0.518627 0.2838106 0.02852504 +0.6993381 0.2838106 0.02852504 +0.9419845 0.2838106 0.02852504 +1.267794 0.2838106 0.02852504 +1.705268 0.2838106 0.02852504 +2.292679 0.2838106 0.02852504 +3.081414 0.2838106 0.02852504 +4.140474 0.2838106 0.02852504 +5.562508 0.2838106 0.02852504 +7.471917 0.2838106 0.02852504 +10.03574 0.2838106 0.02852504 +13.47828 0.2838106 0.02852504 +18.10068 0.2838106 0.02852504 +24.30731 0.2838106 0.02852504 +32.64117 0.2838106 0.02852504 +43.83129 0.2838106 0.02852504 +58.85664 0.2838106 0.02852504 +-0.0175068 0.3840425 0.02852504 +-0.01161267 0.3840425 0.02852504 +-0.005718534 0.3840425 0.02852504 +0.0001755984 0.3840425 0.02852504 +0.006069731 0.3840425 0.02852504 +0.01197402 0.3840425 0.02852504 +0.01903886 0.3840425 0.02852504 +0.02852504 0.3840425 0.02852504 +0.04126244 0.3840425 0.02852504 +0.05836535 0.3840425 0.02852504 +0.08132997 0.3840425 0.02852504 +0.1121653 0.3840425 0.02852504 +0.1535689 0.3840425 0.02852504 +0.2091628 0.3840425 0.02852504 +0.2838106 0.3840425 0.02852504 +0.3840425 0.3840425 0.02852504 +0.518627 0.3840425 0.02852504 +0.6993381 0.3840425 0.02852504 +0.9419845 0.3840425 0.02852504 +1.267794 0.3840425 0.02852504 +1.705268 0.3840425 0.02852504 +2.292679 0.3840425 0.02852504 +3.081414 0.3840425 0.02852504 +4.140474 0.3840425 0.02852504 +5.562508 0.3840425 0.02852504 +7.471917 0.3840425 0.02852504 +10.03574 0.3840425 0.02852504 +13.47828 0.3840425 0.02852504 +18.10068 0.3840425 0.02852504 +24.30731 0.3840425 0.02852504 +32.64117 0.3840425 0.02852504 +43.83129 0.3840425 0.02852504 +58.85664 0.3840425 0.02852504 +-0.0175068 0.518627 0.02852504 +-0.01161267 0.518627 0.02852504 +-0.005718534 0.518627 0.02852504 +0.0001755984 0.518627 0.02852504 +0.006069731 0.518627 0.02852504 +0.01197402 0.518627 0.02852504 +0.01903886 0.518627 0.02852504 +0.02852504 0.518627 0.02852504 +0.04126244 0.518627 0.02852504 +0.05836535 0.518627 0.02852504 +0.08132997 0.518627 0.02852504 +0.1121653 0.518627 0.02852504 +0.1535689 0.518627 0.02852504 +0.2091628 0.518627 0.02852504 +0.2838106 0.518627 0.02852504 +0.3840425 0.518627 0.02852504 +0.518627 0.518627 0.02852504 +0.6993381 0.518627 0.02852504 +0.9419845 0.518627 0.02852504 +1.267794 0.518627 0.02852504 +1.705268 0.518627 0.02852504 +2.292679 0.518627 0.02852504 +3.081414 0.518627 0.02852504 +4.140474 0.518627 0.02852504 +5.562508 0.518627 0.02852504 +7.471917 0.518627 0.02852504 +10.03574 0.518627 0.02852504 +13.47828 0.518627 0.02852504 +18.10068 0.518627 0.02852504 +24.30731 0.518627 0.02852504 +32.64117 0.518627 0.02852504 +43.83129 0.518627 0.02852504 +58.85664 0.518627 0.02852504 +-0.0175068 0.6993381 0.02852504 +-0.01161267 0.6993381 0.02852504 +-0.005718534 0.6993381 0.02852504 +0.0001755984 0.6993381 0.02852504 +0.006069731 0.6993381 0.02852504 +0.01197402 0.6993381 0.02852504 +0.01903886 0.6993381 0.02852504 +0.02852504 0.6993381 0.02852504 +0.04126244 0.6993381 0.02852504 +0.05836535 0.6993381 0.02852504 +0.08132997 0.6993381 0.02852504 +0.1121653 0.6993381 0.02852504 +0.1535689 0.6993381 0.02852504 +0.2091628 0.6993381 0.02852504 +0.2838106 0.6993381 0.02852504 +0.3840425 0.6993381 0.02852504 +0.518627 0.6993381 0.02852504 +0.6993381 0.6993381 0.02852504 +0.9419845 0.6993381 0.02852504 +1.267794 0.6993381 0.02852504 +1.705268 0.6993381 0.02852504 +2.292679 0.6993381 0.02852504 +3.081414 0.6993381 0.02852504 +4.140474 0.6993381 0.02852504 +5.562508 0.6993381 0.02852504 +7.471917 0.6993381 0.02852504 +10.03574 0.6993381 0.02852504 +13.47828 0.6993381 0.02852504 +18.10068 0.6993381 0.02852504 +24.30731 0.6993381 0.02852504 +32.64117 0.6993381 0.02852504 +43.83129 0.6993381 0.02852504 +58.85664 0.6993381 0.02852504 +-0.0175068 0.9419845 0.02852504 +-0.01161267 0.9419845 0.02852504 +-0.005718534 0.9419845 0.02852504 +0.0001755984 0.9419845 0.02852504 +0.006069731 0.9419845 0.02852504 +0.01197402 0.9419845 0.02852504 +0.01903886 0.9419845 0.02852504 +0.02852504 0.9419845 0.02852504 +0.04126244 0.9419845 0.02852504 +0.05836535 0.9419845 0.02852504 +0.08132997 0.9419845 0.02852504 +0.1121653 0.9419845 0.02852504 +0.1535689 0.9419845 0.02852504 +0.2091628 0.9419845 0.02852504 +0.2838106 0.9419845 0.02852504 +0.3840425 0.9419845 0.02852504 +0.518627 0.9419845 0.02852504 +0.6993381 0.9419845 0.02852504 +0.9419845 0.9419845 0.02852504 +1.267794 0.9419845 0.02852504 +1.705268 0.9419845 0.02852504 +2.292679 0.9419845 0.02852504 +3.081414 0.9419845 0.02852504 +4.140474 0.9419845 0.02852504 +5.562508 0.9419845 0.02852504 +7.471917 0.9419845 0.02852504 +10.03574 0.9419845 0.02852504 +13.47828 0.9419845 0.02852504 +18.10068 0.9419845 0.02852504 +24.30731 0.9419845 0.02852504 +32.64117 0.9419845 0.02852504 +43.83129 0.9419845 0.02852504 +58.85664 0.9419845 0.02852504 +-0.0175068 1.267794 0.02852504 +-0.01161267 1.267794 0.02852504 +-0.005718534 1.267794 0.02852504 +0.0001755984 1.267794 0.02852504 +0.006069731 1.267794 0.02852504 +0.01197402 1.267794 0.02852504 +0.01903886 1.267794 0.02852504 +0.02852504 1.267794 0.02852504 +0.04126244 1.267794 0.02852504 +0.05836535 1.267794 0.02852504 +0.08132997 1.267794 0.02852504 +0.1121653 1.267794 0.02852504 +0.1535689 1.267794 0.02852504 +0.2091628 1.267794 0.02852504 +0.2838106 1.267794 0.02852504 +0.3840425 1.267794 0.02852504 +0.518627 1.267794 0.02852504 +0.6993381 1.267794 0.02852504 +0.9419845 1.267794 0.02852504 +1.267794 1.267794 0.02852504 +1.705268 1.267794 0.02852504 +2.292679 1.267794 0.02852504 +3.081414 1.267794 0.02852504 +4.140474 1.267794 0.02852504 +5.562508 1.267794 0.02852504 +7.471917 1.267794 0.02852504 +10.03574 1.267794 0.02852504 +13.47828 1.267794 0.02852504 +18.10068 1.267794 0.02852504 +24.30731 1.267794 0.02852504 +32.64117 1.267794 0.02852504 +43.83129 1.267794 0.02852504 +58.85664 1.267794 0.02852504 +-0.0175068 1.705268 0.02852504 +-0.01161267 1.705268 0.02852504 +-0.005718534 1.705268 0.02852504 +0.0001755984 1.705268 0.02852504 +0.006069731 1.705268 0.02852504 +0.01197402 1.705268 0.02852504 +0.01903886 1.705268 0.02852504 +0.02852504 1.705268 0.02852504 +0.04126244 1.705268 0.02852504 +0.05836535 1.705268 0.02852504 +0.08132997 1.705268 0.02852504 +0.1121653 1.705268 0.02852504 +0.1535689 1.705268 0.02852504 +0.2091628 1.705268 0.02852504 +0.2838106 1.705268 0.02852504 +0.3840425 1.705268 0.02852504 +0.518627 1.705268 0.02852504 +0.6993381 1.705268 0.02852504 +0.9419845 1.705268 0.02852504 +1.267794 1.705268 0.02852504 +1.705268 1.705268 0.02852504 +2.292679 1.705268 0.02852504 +3.081414 1.705268 0.02852504 +4.140474 1.705268 0.02852504 +5.562508 1.705268 0.02852504 +7.471917 1.705268 0.02852504 +10.03574 1.705268 0.02852504 +13.47828 1.705268 0.02852504 +18.10068 1.705268 0.02852504 +24.30731 1.705268 0.02852504 +32.64117 1.705268 0.02852504 +43.83129 1.705268 0.02852504 +58.85664 1.705268 0.02852504 +-0.0175068 2.292679 0.02852504 +-0.01161267 2.292679 0.02852504 +-0.005718534 2.292679 0.02852504 +0.0001755984 2.292679 0.02852504 +0.006069731 2.292679 0.02852504 +0.01197402 2.292679 0.02852504 +0.01903886 2.292679 0.02852504 +0.02852504 2.292679 0.02852504 +0.04126244 2.292679 0.02852504 +0.05836535 2.292679 0.02852504 +0.08132997 2.292679 0.02852504 +0.1121653 2.292679 0.02852504 +0.1535689 2.292679 0.02852504 +0.2091628 2.292679 0.02852504 +0.2838106 2.292679 0.02852504 +0.3840425 2.292679 0.02852504 +0.518627 2.292679 0.02852504 +0.6993381 2.292679 0.02852504 +0.9419845 2.292679 0.02852504 +1.267794 2.292679 0.02852504 +1.705268 2.292679 0.02852504 +2.292679 2.292679 0.02852504 +3.081414 2.292679 0.02852504 +4.140474 2.292679 0.02852504 +5.562508 2.292679 0.02852504 +7.471917 2.292679 0.02852504 +10.03574 2.292679 0.02852504 +13.47828 2.292679 0.02852504 +18.10068 2.292679 0.02852504 +24.30731 2.292679 0.02852504 +32.64117 2.292679 0.02852504 +43.83129 2.292679 0.02852504 +58.85664 2.292679 0.02852504 +-0.0175068 3.081414 0.02852504 +-0.01161267 3.081414 0.02852504 +-0.005718534 3.081414 0.02852504 +0.0001755984 3.081414 0.02852504 +0.006069731 3.081414 0.02852504 +0.01197402 3.081414 0.02852504 +0.01903886 3.081414 0.02852504 +0.02852504 3.081414 0.02852504 +0.04126244 3.081414 0.02852504 +0.05836535 3.081414 0.02852504 +0.08132997 3.081414 0.02852504 +0.1121653 3.081414 0.02852504 +0.1535689 3.081414 0.02852504 +0.2091628 3.081414 0.02852504 +0.2838106 3.081414 0.02852504 +0.3840425 3.081414 0.02852504 +0.518627 3.081414 0.02852504 +0.6993381 3.081414 0.02852504 +0.9419845 3.081414 0.02852504 +1.267794 3.081414 0.02852504 +1.705268 3.081414 0.02852504 +2.292679 3.081414 0.02852504 +3.081414 3.081414 0.02852504 +4.140474 3.081414 0.02852504 +5.562508 3.081414 0.02852504 +7.471917 3.081414 0.02852504 +10.03574 3.081414 0.02852504 +13.47828 3.081414 0.02852504 +18.10068 3.081414 0.02852504 +24.30731 3.081414 0.02852504 +32.64117 3.081414 0.02852504 +43.83129 3.081414 0.02852504 +58.85664 3.081414 0.02852504 +-0.0175068 4.140474 0.02852504 +-0.01161267 4.140474 0.02852504 +-0.005718534 4.140474 0.02852504 +0.0001755984 4.140474 0.02852504 +0.006069731 4.140474 0.02852504 +0.01197402 4.140474 0.02852504 +0.01903886 4.140474 0.02852504 +0.02852504 4.140474 0.02852504 +0.04126244 4.140474 0.02852504 +0.05836535 4.140474 0.02852504 +0.08132997 4.140474 0.02852504 +0.1121653 4.140474 0.02852504 +0.1535689 4.140474 0.02852504 +0.2091628 4.140474 0.02852504 +0.2838106 4.140474 0.02852504 +0.3840425 4.140474 0.02852504 +0.518627 4.140474 0.02852504 +0.6993381 4.140474 0.02852504 +0.9419845 4.140474 0.02852504 +1.267794 4.140474 0.02852504 +1.705268 4.140474 0.02852504 +2.292679 4.140474 0.02852504 +3.081414 4.140474 0.02852504 +4.140474 4.140474 0.02852504 +5.562508 4.140474 0.02852504 +7.471917 4.140474 0.02852504 +10.03574 4.140474 0.02852504 +13.47828 4.140474 0.02852504 +18.10068 4.140474 0.02852504 +24.30731 4.140474 0.02852504 +32.64117 4.140474 0.02852504 +43.83129 4.140474 0.02852504 +58.85664 4.140474 0.02852504 +-0.0175068 5.562508 0.02852504 +-0.01161267 5.562508 0.02852504 +-0.005718534 5.562508 0.02852504 +0.0001755984 5.562508 0.02852504 +0.006069731 5.562508 0.02852504 +0.01197402 5.562508 0.02852504 +0.01903886 5.562508 0.02852504 +0.02852504 5.562508 0.02852504 +0.04126244 5.562508 0.02852504 +0.05836535 5.562508 0.02852504 +0.08132997 5.562508 0.02852504 +0.1121653 5.562508 0.02852504 +0.1535689 5.562508 0.02852504 +0.2091628 5.562508 0.02852504 +0.2838106 5.562508 0.02852504 +0.3840425 5.562508 0.02852504 +0.518627 5.562508 0.02852504 +0.6993381 5.562508 0.02852504 +0.9419845 5.562508 0.02852504 +1.267794 5.562508 0.02852504 +1.705268 5.562508 0.02852504 +2.292679 5.562508 0.02852504 +3.081414 5.562508 0.02852504 +4.140474 5.562508 0.02852504 +5.562508 5.562508 0.02852504 +7.471917 5.562508 0.02852504 +10.03574 5.562508 0.02852504 +13.47828 5.562508 0.02852504 +18.10068 5.562508 0.02852504 +24.30731 5.562508 0.02852504 +32.64117 5.562508 0.02852504 +43.83129 5.562508 0.02852504 +58.85664 5.562508 0.02852504 +-0.0175068 7.471917 0.02852504 +-0.01161267 7.471917 0.02852504 +-0.005718534 7.471917 0.02852504 +0.0001755984 7.471917 0.02852504 +0.006069731 7.471917 0.02852504 +0.01197402 7.471917 0.02852504 +0.01903886 7.471917 0.02852504 +0.02852504 7.471917 0.02852504 +0.04126244 7.471917 0.02852504 +0.05836535 7.471917 0.02852504 +0.08132997 7.471917 0.02852504 +0.1121653 7.471917 0.02852504 +0.1535689 7.471917 0.02852504 +0.2091628 7.471917 0.02852504 +0.2838106 7.471917 0.02852504 +0.3840425 7.471917 0.02852504 +0.518627 7.471917 0.02852504 +0.6993381 7.471917 0.02852504 +0.9419845 7.471917 0.02852504 +1.267794 7.471917 0.02852504 +1.705268 7.471917 0.02852504 +2.292679 7.471917 0.02852504 +3.081414 7.471917 0.02852504 +4.140474 7.471917 0.02852504 +5.562508 7.471917 0.02852504 +7.471917 7.471917 0.02852504 +10.03574 7.471917 0.02852504 +13.47828 7.471917 0.02852504 +18.10068 7.471917 0.02852504 +24.30731 7.471917 0.02852504 +32.64117 7.471917 0.02852504 +43.83129 7.471917 0.02852504 +58.85664 7.471917 0.02852504 +-0.0175068 10.03574 0.02852504 +-0.01161267 10.03574 0.02852504 +-0.005718534 10.03574 0.02852504 +0.0001755984 10.03574 0.02852504 +0.006069731 10.03574 0.02852504 +0.01197402 10.03574 0.02852504 +0.01903886 10.03574 0.02852504 +0.02852504 10.03574 0.02852504 +0.04126244 10.03574 0.02852504 +0.05836535 10.03574 0.02852504 +0.08132997 10.03574 0.02852504 +0.1121653 10.03574 0.02852504 +0.1535689 10.03574 0.02852504 +0.2091628 10.03574 0.02852504 +0.2838106 10.03574 0.02852504 +0.3840425 10.03574 0.02852504 +0.518627 10.03574 0.02852504 +0.6993381 10.03574 0.02852504 +0.9419845 10.03574 0.02852504 +1.267794 10.03574 0.02852504 +1.705268 10.03574 0.02852504 +2.292679 10.03574 0.02852504 +3.081414 10.03574 0.02852504 +4.140474 10.03574 0.02852504 +5.562508 10.03574 0.02852504 +7.471917 10.03574 0.02852504 +10.03574 10.03574 0.02852504 +13.47828 10.03574 0.02852504 +18.10068 10.03574 0.02852504 +24.30731 10.03574 0.02852504 +32.64117 10.03574 0.02852504 +43.83129 10.03574 0.02852504 +58.85664 10.03574 0.02852504 +-0.0175068 13.47828 0.02852504 +-0.01161267 13.47828 0.02852504 +-0.005718534 13.47828 0.02852504 +0.0001755984 13.47828 0.02852504 +0.006069731 13.47828 0.02852504 +0.01197402 13.47828 0.02852504 +0.01903886 13.47828 0.02852504 +0.02852504 13.47828 0.02852504 +0.04126244 13.47828 0.02852504 +0.05836535 13.47828 0.02852504 +0.08132997 13.47828 0.02852504 +0.1121653 13.47828 0.02852504 +0.1535689 13.47828 0.02852504 +0.2091628 13.47828 0.02852504 +0.2838106 13.47828 0.02852504 +0.3840425 13.47828 0.02852504 +0.518627 13.47828 0.02852504 +0.6993381 13.47828 0.02852504 +0.9419845 13.47828 0.02852504 +1.267794 13.47828 0.02852504 +1.705268 13.47828 0.02852504 +2.292679 13.47828 0.02852504 +3.081414 13.47828 0.02852504 +4.140474 13.47828 0.02852504 +5.562508 13.47828 0.02852504 +7.471917 13.47828 0.02852504 +10.03574 13.47828 0.02852504 +13.47828 13.47828 0.02852504 +18.10068 13.47828 0.02852504 +24.30731 13.47828 0.02852504 +32.64117 13.47828 0.02852504 +43.83129 13.47828 0.02852504 +58.85664 13.47828 0.02852504 +-0.0175068 18.10068 0.02852504 +-0.01161267 18.10068 0.02852504 +-0.005718534 18.10068 0.02852504 +0.0001755984 18.10068 0.02852504 +0.006069731 18.10068 0.02852504 +0.01197402 18.10068 0.02852504 +0.01903886 18.10068 0.02852504 +0.02852504 18.10068 0.02852504 +0.04126244 18.10068 0.02852504 +0.05836535 18.10068 0.02852504 +0.08132997 18.10068 0.02852504 +0.1121653 18.10068 0.02852504 +0.1535689 18.10068 0.02852504 +0.2091628 18.10068 0.02852504 +0.2838106 18.10068 0.02852504 +0.3840425 18.10068 0.02852504 +0.518627 18.10068 0.02852504 +0.6993381 18.10068 0.02852504 +0.9419845 18.10068 0.02852504 +1.267794 18.10068 0.02852504 +1.705268 18.10068 0.02852504 +2.292679 18.10068 0.02852504 +3.081414 18.10068 0.02852504 +4.140474 18.10068 0.02852504 +5.562508 18.10068 0.02852504 +7.471917 18.10068 0.02852504 +10.03574 18.10068 0.02852504 +13.47828 18.10068 0.02852504 +18.10068 18.10068 0.02852504 +24.30731 18.10068 0.02852504 +32.64117 18.10068 0.02852504 +43.83129 18.10068 0.02852504 +58.85664 18.10068 0.02852504 +-0.0175068 24.30731 0.02852504 +-0.01161267 24.30731 0.02852504 +-0.005718534 24.30731 0.02852504 +0.0001755984 24.30731 0.02852504 +0.006069731 24.30731 0.02852504 +0.01197402 24.30731 0.02852504 +0.01903886 24.30731 0.02852504 +0.02852504 24.30731 0.02852504 +0.04126244 24.30731 0.02852504 +0.05836535 24.30731 0.02852504 +0.08132997 24.30731 0.02852504 +0.1121653 24.30731 0.02852504 +0.1535689 24.30731 0.02852504 +0.2091628 24.30731 0.02852504 +0.2838106 24.30731 0.02852504 +0.3840425 24.30731 0.02852504 +0.518627 24.30731 0.02852504 +0.6993381 24.30731 0.02852504 +0.9419845 24.30731 0.02852504 +1.267794 24.30731 0.02852504 +1.705268 24.30731 0.02852504 +2.292679 24.30731 0.02852504 +3.081414 24.30731 0.02852504 +4.140474 24.30731 0.02852504 +5.562508 24.30731 0.02852504 +7.471917 24.30731 0.02852504 +10.03574 24.30731 0.02852504 +13.47828 24.30731 0.02852504 +18.10068 24.30731 0.02852504 +24.30731 24.30731 0.02852504 +32.64117 24.30731 0.02852504 +43.83129 24.30731 0.02852504 +58.85664 24.30731 0.02852504 +-0.0175068 32.64117 0.02852504 +-0.01161267 32.64117 0.02852504 +-0.005718534 32.64117 0.02852504 +0.0001755984 32.64117 0.02852504 +0.006069731 32.64117 0.02852504 +0.01197402 32.64117 0.02852504 +0.01903886 32.64117 0.02852504 +0.02852504 32.64117 0.02852504 +0.04126244 32.64117 0.02852504 +0.05836535 32.64117 0.02852504 +0.08132997 32.64117 0.02852504 +0.1121653 32.64117 0.02852504 +0.1535689 32.64117 0.02852504 +0.2091628 32.64117 0.02852504 +0.2838106 32.64117 0.02852504 +0.3840425 32.64117 0.02852504 +0.518627 32.64117 0.02852504 +0.6993381 32.64117 0.02852504 +0.9419845 32.64117 0.02852504 +1.267794 32.64117 0.02852504 +1.705268 32.64117 0.02852504 +2.292679 32.64117 0.02852504 +3.081414 32.64117 0.02852504 +4.140474 32.64117 0.02852504 +5.562508 32.64117 0.02852504 +7.471917 32.64117 0.02852504 +10.03574 32.64117 0.02852504 +13.47828 32.64117 0.02852504 +18.10068 32.64117 0.02852504 +24.30731 32.64117 0.02852504 +32.64117 32.64117 0.02852504 +43.83129 32.64117 0.02852504 +58.85664 32.64117 0.02852504 +-0.0175068 43.83129 0.02852504 +-0.01161267 43.83129 0.02852504 +-0.005718534 43.83129 0.02852504 +0.0001755984 43.83129 0.02852504 +0.006069731 43.83129 0.02852504 +0.01197402 43.83129 0.02852504 +0.01903886 43.83129 0.02852504 +0.02852504 43.83129 0.02852504 +0.04126244 43.83129 0.02852504 +0.05836535 43.83129 0.02852504 +0.08132997 43.83129 0.02852504 +0.1121653 43.83129 0.02852504 +0.1535689 43.83129 0.02852504 +0.2091628 43.83129 0.02852504 +0.2838106 43.83129 0.02852504 +0.3840425 43.83129 0.02852504 +0.518627 43.83129 0.02852504 +0.6993381 43.83129 0.02852504 +0.9419845 43.83129 0.02852504 +1.267794 43.83129 0.02852504 +1.705268 43.83129 0.02852504 +2.292679 43.83129 0.02852504 +3.081414 43.83129 0.02852504 +4.140474 43.83129 0.02852504 +5.562508 43.83129 0.02852504 +7.471917 43.83129 0.02852504 +10.03574 43.83129 0.02852504 +13.47828 43.83129 0.02852504 +18.10068 43.83129 0.02852504 +24.30731 43.83129 0.02852504 +32.64117 43.83129 0.02852504 +43.83129 43.83129 0.02852504 +58.85664 43.83129 0.02852504 +-0.0175068 58.85664 0.02852504 +-0.01161267 58.85664 0.02852504 +-0.005718534 58.85664 0.02852504 +0.0001755984 58.85664 0.02852504 +0.006069731 58.85664 0.02852504 +0.01197402 58.85664 0.02852504 +0.01903886 58.85664 0.02852504 +0.02852504 58.85664 0.02852504 +0.04126244 58.85664 0.02852504 +0.05836535 58.85664 0.02852504 +0.08132997 58.85664 0.02852504 +0.1121653 58.85664 0.02852504 +0.1535689 58.85664 0.02852504 +0.2091628 58.85664 0.02852504 +0.2838106 58.85664 0.02852504 +0.3840425 58.85664 0.02852504 +0.518627 58.85664 0.02852504 +0.6993381 58.85664 0.02852504 +0.9419845 58.85664 0.02852504 +1.267794 58.85664 0.02852504 +1.705268 58.85664 0.02852504 +2.292679 58.85664 0.02852504 +3.081414 58.85664 0.02852504 +4.140474 58.85664 0.02852504 +5.562508 58.85664 0.02852504 +7.471917 58.85664 0.02852504 +10.03574 58.85664 0.02852504 +13.47828 58.85664 0.02852504 +18.10068 58.85664 0.02852504 +24.30731 58.85664 0.02852504 +32.64117 58.85664 0.02852504 +43.83129 58.85664 0.02852504 +58.85664 58.85664 0.02852504 +-0.0175068 -0.0175068 0.04126244 +-0.01161267 -0.0175068 0.04126244 +-0.005718534 -0.0175068 0.04126244 +0.0001755984 -0.0175068 0.04126244 +0.006069731 -0.0175068 0.04126244 +0.01197402 -0.0175068 0.04126244 +0.01903886 -0.0175068 0.04126244 +0.02852504 -0.0175068 0.04126244 +0.04126244 -0.0175068 0.04126244 +0.05836535 -0.0175068 0.04126244 +0.08132997 -0.0175068 0.04126244 +0.1121653 -0.0175068 0.04126244 +0.1535689 -0.0175068 0.04126244 +0.2091628 -0.0175068 0.04126244 +0.2838106 -0.0175068 0.04126244 +0.3840425 -0.0175068 0.04126244 +0.518627 -0.0175068 0.04126244 +0.6993381 -0.0175068 0.04126244 +0.9419845 -0.0175068 0.04126244 +1.267794 -0.0175068 0.04126244 +1.705268 -0.0175068 0.04126244 +2.292679 -0.0175068 0.04126244 +3.081414 -0.0175068 0.04126244 +4.140474 -0.0175068 0.04126244 +5.562508 -0.0175068 0.04126244 +7.471917 -0.0175068 0.04126244 +10.03574 -0.0175068 0.04126244 +13.47828 -0.0175068 0.04126244 +18.10068 -0.0175068 0.04126244 +24.30731 -0.0175068 0.04126244 +32.64117 -0.0175068 0.04126244 +43.83129 -0.0175068 0.04126244 +58.85664 -0.0175068 0.04126244 +-0.0175068 -0.01161267 0.04126244 +-0.01161267 -0.01161267 0.04126244 +-0.005718534 -0.01161267 0.04126244 +0.0001755984 -0.01161267 0.04126244 +0.006069731 -0.01161267 0.04126244 +0.01197402 -0.01161267 0.04126244 +0.01903886 -0.01161267 0.04126244 +0.02852504 -0.01161267 0.04126244 +0.04126244 -0.01161267 0.04126244 +0.05836535 -0.01161267 0.04126244 +0.08132997 -0.01161267 0.04126244 +0.1121653 -0.01161267 0.04126244 +0.1535689 -0.01161267 0.04126244 +0.2091628 -0.01161267 0.04126244 +0.2838106 -0.01161267 0.04126244 +0.3840425 -0.01161267 0.04126244 +0.518627 -0.01161267 0.04126244 +0.6993381 -0.01161267 0.04126244 +0.9419845 -0.01161267 0.04126244 +1.267794 -0.01161267 0.04126244 +1.705268 -0.01161267 0.04126244 +2.292679 -0.01161267 0.04126244 +3.081414 -0.01161267 0.04126244 +4.140474 -0.01161267 0.04126244 +5.562508 -0.01161267 0.04126244 +7.471917 -0.01161267 0.04126244 +10.03574 -0.01161267 0.04126244 +13.47828 -0.01161267 0.04126244 +18.10068 -0.01161267 0.04126244 +24.30731 -0.01161267 0.04126244 +32.64117 -0.01161267 0.04126244 +43.83129 -0.01161267 0.04126244 +58.85664 -0.01161267 0.04126244 +-0.0175068 -0.005718534 0.04126244 +-0.01161267 -0.005718534 0.04126244 +-0.005718534 -0.005718534 0.04126244 +0.0001755984 -0.005718534 0.04126244 +0.006069731 -0.005718534 0.04126244 +0.01197402 -0.005718534 0.04126244 +0.01903886 -0.005718534 0.04126244 +0.02852504 -0.005718534 0.04126244 +0.04126244 -0.005718534 0.04126244 +0.05836535 -0.005718534 0.04126244 +0.08132997 -0.005718534 0.04126244 +0.1121653 -0.005718534 0.04126244 +0.1535689 -0.005718534 0.04126244 +0.2091628 -0.005718534 0.04126244 +0.2838106 -0.005718534 0.04126244 +0.3840425 -0.005718534 0.04126244 +0.518627 -0.005718534 0.04126244 +0.6993381 -0.005718534 0.04126244 +0.9419845 -0.005718534 0.04126244 +1.267794 -0.005718534 0.04126244 +1.705268 -0.005718534 0.04126244 +2.292679 -0.005718534 0.04126244 +3.081414 -0.005718534 0.04126244 +4.140474 -0.005718534 0.04126244 +5.562508 -0.005718534 0.04126244 +7.471917 -0.005718534 0.04126244 +10.03574 -0.005718534 0.04126244 +13.47828 -0.005718534 0.04126244 +18.10068 -0.005718534 0.04126244 +24.30731 -0.005718534 0.04126244 +32.64117 -0.005718534 0.04126244 +43.83129 -0.005718534 0.04126244 +58.85664 -0.005718534 0.04126244 +-0.0175068 0.0001755984 0.04126244 +-0.01161267 0.0001755984 0.04126244 +-0.005718534 0.0001755984 0.04126244 +0.0001755984 0.0001755984 0.04126244 +0.006069731 0.0001755984 0.04126244 +0.01197402 0.0001755984 0.04126244 +0.01903886 0.0001755984 0.04126244 +0.02852504 0.0001755984 0.04126244 +0.04126244 0.0001755984 0.04126244 +0.05836535 0.0001755984 0.04126244 +0.08132997 0.0001755984 0.04126244 +0.1121653 0.0001755984 0.04126244 +0.1535689 0.0001755984 0.04126244 +0.2091628 0.0001755984 0.04126244 +0.2838106 0.0001755984 0.04126244 +0.3840425 0.0001755984 0.04126244 +0.518627 0.0001755984 0.04126244 +0.6993381 0.0001755984 0.04126244 +0.9419845 0.0001755984 0.04126244 +1.267794 0.0001755984 0.04126244 +1.705268 0.0001755984 0.04126244 +2.292679 0.0001755984 0.04126244 +3.081414 0.0001755984 0.04126244 +4.140474 0.0001755984 0.04126244 +5.562508 0.0001755984 0.04126244 +7.471917 0.0001755984 0.04126244 +10.03574 0.0001755984 0.04126244 +13.47828 0.0001755984 0.04126244 +18.10068 0.0001755984 0.04126244 +24.30731 0.0001755984 0.04126244 +32.64117 0.0001755984 0.04126244 +43.83129 0.0001755984 0.04126244 +58.85664 0.0001755984 0.04126244 +-0.0175068 0.006069731 0.04126244 +-0.01161267 0.006069731 0.04126244 +-0.005718534 0.006069731 0.04126244 +0.0001755984 0.006069731 0.04126244 +0.006069731 0.006069731 0.04126244 +0.01197402 0.006069731 0.04126244 +0.01903886 0.006069731 0.04126244 +0.02852504 0.006069731 0.04126244 +0.04126244 0.006069731 0.04126244 +0.05836535 0.006069731 0.04126244 +0.08132997 0.006069731 0.04126244 +0.1121653 0.006069731 0.04126244 +0.1535689 0.006069731 0.04126244 +0.2091628 0.006069731 0.04126244 +0.2838106 0.006069731 0.04126244 +0.3840425 0.006069731 0.04126244 +0.518627 0.006069731 0.04126244 +0.6993381 0.006069731 0.04126244 +0.9419845 0.006069731 0.04126244 +1.267794 0.006069731 0.04126244 +1.705268 0.006069731 0.04126244 +2.292679 0.006069731 0.04126244 +3.081414 0.006069731 0.04126244 +4.140474 0.006069731 0.04126244 +5.562508 0.006069731 0.04126244 +7.471917 0.006069731 0.04126244 +10.03574 0.006069731 0.04126244 +13.47828 0.006069731 0.04126244 +18.10068 0.006069731 0.04126244 +24.30731 0.006069731 0.04126244 +32.64117 0.006069731 0.04126244 +43.83129 0.006069731 0.04126244 +58.85664 0.006069731 0.04126244 +-0.0175068 0.01197402 0.04126244 +-0.01161267 0.01197402 0.04126244 +-0.005718534 0.01197402 0.04126244 +0.0001755984 0.01197402 0.04126244 +0.006069731 0.01197402 0.04126244 +0.01197402 0.01197402 0.04126244 +0.01903886 0.01197402 0.04126244 +0.02852504 0.01197402 0.04126244 +0.04126244 0.01197402 0.04126244 +0.05836535 0.01197402 0.04126244 +0.08132997 0.01197402 0.04126244 +0.1121653 0.01197402 0.04126244 +0.1535689 0.01197402 0.04126244 +0.2091628 0.01197402 0.04126244 +0.2838106 0.01197402 0.04126244 +0.3840425 0.01197402 0.04126244 +0.518627 0.01197402 0.04126244 +0.6993381 0.01197402 0.04126244 +0.9419845 0.01197402 0.04126244 +1.267794 0.01197402 0.04126244 +1.705268 0.01197402 0.04126244 +2.292679 0.01197402 0.04126244 +3.081414 0.01197402 0.04126244 +4.140474 0.01197402 0.04126244 +5.562508 0.01197402 0.04126244 +7.471917 0.01197402 0.04126244 +10.03574 0.01197402 0.04126244 +13.47828 0.01197402 0.04126244 +18.10068 0.01197402 0.04126244 +24.30731 0.01197402 0.04126244 +32.64117 0.01197402 0.04126244 +43.83129 0.01197402 0.04126244 +58.85664 0.01197402 0.04126244 +-0.0175068 0.01903886 0.04126244 +-0.01161267 0.01903886 0.04126244 +-0.005718534 0.01903886 0.04126244 +0.0001755984 0.01903886 0.04126244 +0.006069731 0.01903886 0.04126244 +0.01197402 0.01903886 0.04126244 +0.01903886 0.01903886 0.04126244 +0.02852504 0.01903886 0.04126244 +0.04126244 0.01903886 0.04126244 +0.05836535 0.01903886 0.04126244 +0.08132997 0.01903886 0.04126244 +0.1121653 0.01903886 0.04126244 +0.1535689 0.01903886 0.04126244 +0.2091628 0.01903886 0.04126244 +0.2838106 0.01903886 0.04126244 +0.3840425 0.01903886 0.04126244 +0.518627 0.01903886 0.04126244 +0.6993381 0.01903886 0.04126244 +0.9419845 0.01903886 0.04126244 +1.267794 0.01903886 0.04126244 +1.705268 0.01903886 0.04126244 +2.292679 0.01903886 0.04126244 +3.081414 0.01903886 0.04126244 +4.140474 0.01903886 0.04126244 +5.562508 0.01903886 0.04126244 +7.471917 0.01903886 0.04126244 +10.03574 0.01903886 0.04126244 +13.47828 0.01903886 0.04126244 +18.10068 0.01903886 0.04126244 +24.30731 0.01903886 0.04126244 +32.64117 0.01903886 0.04126244 +43.83129 0.01903886 0.04126244 +58.85664 0.01903886 0.04126244 +-0.0175068 0.02852504 0.04126244 +-0.01161267 0.02852504 0.04126244 +-0.005718534 0.02852504 0.04126244 +0.0001755984 0.02852504 0.04126244 +0.006069731 0.02852504 0.04126244 +0.01197402 0.02852504 0.04126244 +0.01903886 0.02852504 0.04126244 +0.02852504 0.02852504 0.04126244 +0.04126244 0.02852504 0.04126244 +0.05836535 0.02852504 0.04126244 +0.08132997 0.02852504 0.04126244 +0.1121653 0.02852504 0.04126244 +0.1535689 0.02852504 0.04126244 +0.2091628 0.02852504 0.04126244 +0.2838106 0.02852504 0.04126244 +0.3840425 0.02852504 0.04126244 +0.518627 0.02852504 0.04126244 +0.6993381 0.02852504 0.04126244 +0.9419845 0.02852504 0.04126244 +1.267794 0.02852504 0.04126244 +1.705268 0.02852504 0.04126244 +2.292679 0.02852504 0.04126244 +3.081414 0.02852504 0.04126244 +4.140474 0.02852504 0.04126244 +5.562508 0.02852504 0.04126244 +7.471917 0.02852504 0.04126244 +10.03574 0.02852504 0.04126244 +13.47828 0.02852504 0.04126244 +18.10068 0.02852504 0.04126244 +24.30731 0.02852504 0.04126244 +32.64117 0.02852504 0.04126244 +43.83129 0.02852504 0.04126244 +58.85664 0.02852504 0.04126244 +-0.0175068 0.04126244 0.04126244 +-0.01161267 0.04126244 0.04126244 +-0.005718534 0.04126244 0.04126244 +0.0001755984 0.04126244 0.04126244 +0.006069731 0.04126244 0.04126244 +0.01197402 0.04126244 0.04126244 +0.01903886 0.04126244 0.04126244 +0.02852504 0.04126244 0.04126244 +0.04126244 0.04126244 0.04126244 +0.05836535 0.04126244 0.04126244 +0.08132997 0.04126244 0.04126244 +0.1121653 0.04126244 0.04126244 +0.1535689 0.04126244 0.04126244 +0.2091628 0.04126244 0.04126244 +0.2838106 0.04126244 0.04126244 +0.3840425 0.04126244 0.04126244 +0.518627 0.04126244 0.04126244 +0.6993381 0.04126244 0.04126244 +0.9419845 0.04126244 0.04126244 +1.267794 0.04126244 0.04126244 +1.705268 0.04126244 0.04126244 +2.292679 0.04126244 0.04126244 +3.081414 0.04126244 0.04126244 +4.140474 0.04126244 0.04126244 +5.562508 0.04126244 0.04126244 +7.471917 0.04126244 0.04126244 +10.03574 0.04126244 0.04126244 +13.47828 0.04126244 0.04126244 +18.10068 0.04126244 0.04126244 +24.30731 0.04126244 0.04126244 +32.64117 0.04126244 0.04126244 +43.83129 0.04126244 0.04126244 +58.85664 0.04126244 0.04126244 +-0.0175068 0.05836535 0.04126244 +-0.01161267 0.05836535 0.04126244 +-0.005718534 0.05836535 0.04126244 +0.0001755984 0.05836535 0.04126244 +0.006069731 0.05836535 0.04126244 +0.01197402 0.05836535 0.04126244 +0.01903886 0.05836535 0.04126244 +0.02852504 0.05836535 0.04126244 +0.04126244 0.05836535 0.04126244 +0.05836535 0.05836535 0.04126244 +0.08132997 0.05836535 0.04126244 +0.1121653 0.05836535 0.04126244 +0.1535689 0.05836535 0.04126244 +0.2091628 0.05836535 0.04126244 +0.2838106 0.05836535 0.04126244 +0.3840425 0.05836535 0.04126244 +0.518627 0.05836535 0.04126244 +0.6993381 0.05836535 0.04126244 +0.9419845 0.05836535 0.04126244 +1.267794 0.05836535 0.04126244 +1.705268 0.05836535 0.04126244 +2.292679 0.05836535 0.04126244 +3.081414 0.05836535 0.04126244 +4.140474 0.05836535 0.04126244 +5.562508 0.05836535 0.04126244 +7.471917 0.05836535 0.04126244 +10.03574 0.05836535 0.04126244 +13.47828 0.05836535 0.04126244 +18.10068 0.05836535 0.04126244 +24.30731 0.05836535 0.04126244 +32.64117 0.05836535 0.04126244 +43.83129 0.05836535 0.04126244 +58.85664 0.05836535 0.04126244 +-0.0175068 0.08132997 0.04126244 +-0.01161267 0.08132997 0.04126244 +-0.005718534 0.08132997 0.04126244 +0.0001755984 0.08132997 0.04126244 +0.006069731 0.08132997 0.04126244 +0.01197402 0.08132997 0.04126244 +0.01903886 0.08132997 0.04126244 +0.02852504 0.08132997 0.04126244 +0.04126244 0.08132997 0.04126244 +0.05836535 0.08132997 0.04126244 +0.08132997 0.08132997 0.04126244 +0.1121653 0.08132997 0.04126244 +0.1535689 0.08132997 0.04126244 +0.2091628 0.08132997 0.04126244 +0.2838106 0.08132997 0.04126244 +0.3840425 0.08132997 0.04126244 +0.518627 0.08132997 0.04126244 +0.6993381 0.08132997 0.04126244 +0.9419845 0.08132997 0.04126244 +1.267794 0.08132997 0.04126244 +1.705268 0.08132997 0.04126244 +2.292679 0.08132997 0.04126244 +3.081414 0.08132997 0.04126244 +4.140474 0.08132997 0.04126244 +5.562508 0.08132997 0.04126244 +7.471917 0.08132997 0.04126244 +10.03574 0.08132997 0.04126244 +13.47828 0.08132997 0.04126244 +18.10068 0.08132997 0.04126244 +24.30731 0.08132997 0.04126244 +32.64117 0.08132997 0.04126244 +43.83129 0.08132997 0.04126244 +58.85664 0.08132997 0.04126244 +-0.0175068 0.1121653 0.04126244 +-0.01161267 0.1121653 0.04126244 +-0.005718534 0.1121653 0.04126244 +0.0001755984 0.1121653 0.04126244 +0.006069731 0.1121653 0.04126244 +0.01197402 0.1121653 0.04126244 +0.01903886 0.1121653 0.04126244 +0.02852504 0.1121653 0.04126244 +0.04126244 0.1121653 0.04126244 +0.05836535 0.1121653 0.04126244 +0.08132997 0.1121653 0.04126244 +0.1121653 0.1121653 0.04126244 +0.1535689 0.1121653 0.04126244 +0.2091628 0.1121653 0.04126244 +0.2838106 0.1121653 0.04126244 +0.3840425 0.1121653 0.04126244 +0.518627 0.1121653 0.04126244 +0.6993381 0.1121653 0.04126244 +0.9419845 0.1121653 0.04126244 +1.267794 0.1121653 0.04126244 +1.705268 0.1121653 0.04126244 +2.292679 0.1121653 0.04126244 +3.081414 0.1121653 0.04126244 +4.140474 0.1121653 0.04126244 +5.562508 0.1121653 0.04126244 +7.471917 0.1121653 0.04126244 +10.03574 0.1121653 0.04126244 +13.47828 0.1121653 0.04126244 +18.10068 0.1121653 0.04126244 +24.30731 0.1121653 0.04126244 +32.64117 0.1121653 0.04126244 +43.83129 0.1121653 0.04126244 +58.85664 0.1121653 0.04126244 +-0.0175068 0.1535689 0.04126244 +-0.01161267 0.1535689 0.04126244 +-0.005718534 0.1535689 0.04126244 +0.0001755984 0.1535689 0.04126244 +0.006069731 0.1535689 0.04126244 +0.01197402 0.1535689 0.04126244 +0.01903886 0.1535689 0.04126244 +0.02852504 0.1535689 0.04126244 +0.04126244 0.1535689 0.04126244 +0.05836535 0.1535689 0.04126244 +0.08132997 0.1535689 0.04126244 +0.1121653 0.1535689 0.04126244 +0.1535689 0.1535689 0.04126244 +0.2091628 0.1535689 0.04126244 +0.2838106 0.1535689 0.04126244 +0.3840425 0.1535689 0.04126244 +0.518627 0.1535689 0.04126244 +0.6993381 0.1535689 0.04126244 +0.9419845 0.1535689 0.04126244 +1.267794 0.1535689 0.04126244 +1.705268 0.1535689 0.04126244 +2.292679 0.1535689 0.04126244 +3.081414 0.1535689 0.04126244 +4.140474 0.1535689 0.04126244 +5.562508 0.1535689 0.04126244 +7.471917 0.1535689 0.04126244 +10.03574 0.1535689 0.04126244 +13.47828 0.1535689 0.04126244 +18.10068 0.1535689 0.04126244 +24.30731 0.1535689 0.04126244 +32.64117 0.1535689 0.04126244 +43.83129 0.1535689 0.04126244 +58.85664 0.1535689 0.04126244 +-0.0175068 0.2091628 0.04126244 +-0.01161267 0.2091628 0.04126244 +-0.005718534 0.2091628 0.04126244 +0.0001755984 0.2091628 0.04126244 +0.006069731 0.2091628 0.04126244 +0.01197402 0.2091628 0.04126244 +0.01903886 0.2091628 0.04126244 +0.02852504 0.2091628 0.04126244 +0.04126244 0.2091628 0.04126244 +0.05836535 0.2091628 0.04126244 +0.08132997 0.2091628 0.04126244 +0.1121653 0.2091628 0.04126244 +0.1535689 0.2091628 0.04126244 +0.2091628 0.2091628 0.04126244 +0.2838106 0.2091628 0.04126244 +0.3840425 0.2091628 0.04126244 +0.518627 0.2091628 0.04126244 +0.6993381 0.2091628 0.04126244 +0.9419845 0.2091628 0.04126244 +1.267794 0.2091628 0.04126244 +1.705268 0.2091628 0.04126244 +2.292679 0.2091628 0.04126244 +3.081414 0.2091628 0.04126244 +4.140474 0.2091628 0.04126244 +5.562508 0.2091628 0.04126244 +7.471917 0.2091628 0.04126244 +10.03574 0.2091628 0.04126244 +13.47828 0.2091628 0.04126244 +18.10068 0.2091628 0.04126244 +24.30731 0.2091628 0.04126244 +32.64117 0.2091628 0.04126244 +43.83129 0.2091628 0.04126244 +58.85664 0.2091628 0.04126244 +-0.0175068 0.2838106 0.04126244 +-0.01161267 0.2838106 0.04126244 +-0.005718534 0.2838106 0.04126244 +0.0001755984 0.2838106 0.04126244 +0.006069731 0.2838106 0.04126244 +0.01197402 0.2838106 0.04126244 +0.01903886 0.2838106 0.04126244 +0.02852504 0.2838106 0.04126244 +0.04126244 0.2838106 0.04126244 +0.05836535 0.2838106 0.04126244 +0.08132997 0.2838106 0.04126244 +0.1121653 0.2838106 0.04126244 +0.1535689 0.2838106 0.04126244 +0.2091628 0.2838106 0.04126244 +0.2838106 0.2838106 0.04126244 +0.3840425 0.2838106 0.04126244 +0.518627 0.2838106 0.04126244 +0.6993381 0.2838106 0.04126244 +0.9419845 0.2838106 0.04126244 +1.267794 0.2838106 0.04126244 +1.705268 0.2838106 0.04126244 +2.292679 0.2838106 0.04126244 +3.081414 0.2838106 0.04126244 +4.140474 0.2838106 0.04126244 +5.562508 0.2838106 0.04126244 +7.471917 0.2838106 0.04126244 +10.03574 0.2838106 0.04126244 +13.47828 0.2838106 0.04126244 +18.10068 0.2838106 0.04126244 +24.30731 0.2838106 0.04126244 +32.64117 0.2838106 0.04126244 +43.83129 0.2838106 0.04126244 +58.85664 0.2838106 0.04126244 +-0.0175068 0.3840425 0.04126244 +-0.01161267 0.3840425 0.04126244 +-0.005718534 0.3840425 0.04126244 +0.0001755984 0.3840425 0.04126244 +0.006069731 0.3840425 0.04126244 +0.01197402 0.3840425 0.04126244 +0.01903886 0.3840425 0.04126244 +0.02852504 0.3840425 0.04126244 +0.04126244 0.3840425 0.04126244 +0.05836535 0.3840425 0.04126244 +0.08132997 0.3840425 0.04126244 +0.1121653 0.3840425 0.04126244 +0.1535689 0.3840425 0.04126244 +0.2091628 0.3840425 0.04126244 +0.2838106 0.3840425 0.04126244 +0.3840425 0.3840425 0.04126244 +0.518627 0.3840425 0.04126244 +0.6993381 0.3840425 0.04126244 +0.9419845 0.3840425 0.04126244 +1.267794 0.3840425 0.04126244 +1.705268 0.3840425 0.04126244 +2.292679 0.3840425 0.04126244 +3.081414 0.3840425 0.04126244 +4.140474 0.3840425 0.04126244 +5.562508 0.3840425 0.04126244 +7.471917 0.3840425 0.04126244 +10.03574 0.3840425 0.04126244 +13.47828 0.3840425 0.04126244 +18.10068 0.3840425 0.04126244 +24.30731 0.3840425 0.04126244 +32.64117 0.3840425 0.04126244 +43.83129 0.3840425 0.04126244 +58.85664 0.3840425 0.04126244 +-0.0175068 0.518627 0.04126244 +-0.01161267 0.518627 0.04126244 +-0.005718534 0.518627 0.04126244 +0.0001755984 0.518627 0.04126244 +0.006069731 0.518627 0.04126244 +0.01197402 0.518627 0.04126244 +0.01903886 0.518627 0.04126244 +0.02852504 0.518627 0.04126244 +0.04126244 0.518627 0.04126244 +0.05836535 0.518627 0.04126244 +0.08132997 0.518627 0.04126244 +0.1121653 0.518627 0.04126244 +0.1535689 0.518627 0.04126244 +0.2091628 0.518627 0.04126244 +0.2838106 0.518627 0.04126244 +0.3840425 0.518627 0.04126244 +0.518627 0.518627 0.04126244 +0.6993381 0.518627 0.04126244 +0.9419845 0.518627 0.04126244 +1.267794 0.518627 0.04126244 +1.705268 0.518627 0.04126244 +2.292679 0.518627 0.04126244 +3.081414 0.518627 0.04126244 +4.140474 0.518627 0.04126244 +5.562508 0.518627 0.04126244 +7.471917 0.518627 0.04126244 +10.03574 0.518627 0.04126244 +13.47828 0.518627 0.04126244 +18.10068 0.518627 0.04126244 +24.30731 0.518627 0.04126244 +32.64117 0.518627 0.04126244 +43.83129 0.518627 0.04126244 +58.85664 0.518627 0.04126244 +-0.0175068 0.6993381 0.04126244 +-0.01161267 0.6993381 0.04126244 +-0.005718534 0.6993381 0.04126244 +0.0001755984 0.6993381 0.04126244 +0.006069731 0.6993381 0.04126244 +0.01197402 0.6993381 0.04126244 +0.01903886 0.6993381 0.04126244 +0.02852504 0.6993381 0.04126244 +0.04126244 0.6993381 0.04126244 +0.05836535 0.6993381 0.04126244 +0.08132997 0.6993381 0.04126244 +0.1121653 0.6993381 0.04126244 +0.1535689 0.6993381 0.04126244 +0.2091628 0.6993381 0.04126244 +0.2838106 0.6993381 0.04126244 +0.3840425 0.6993381 0.04126244 +0.518627 0.6993381 0.04126244 +0.6993381 0.6993381 0.04126244 +0.9419845 0.6993381 0.04126244 +1.267794 0.6993381 0.04126244 +1.705268 0.6993381 0.04126244 +2.292679 0.6993381 0.04126244 +3.081414 0.6993381 0.04126244 +4.140474 0.6993381 0.04126244 +5.562508 0.6993381 0.04126244 +7.471917 0.6993381 0.04126244 +10.03574 0.6993381 0.04126244 +13.47828 0.6993381 0.04126244 +18.10068 0.6993381 0.04126244 +24.30731 0.6993381 0.04126244 +32.64117 0.6993381 0.04126244 +43.83129 0.6993381 0.04126244 +58.85664 0.6993381 0.04126244 +-0.0175068 0.9419845 0.04126244 +-0.01161267 0.9419845 0.04126244 +-0.005718534 0.9419845 0.04126244 +0.0001755984 0.9419845 0.04126244 +0.006069731 0.9419845 0.04126244 +0.01197402 0.9419845 0.04126244 +0.01903886 0.9419845 0.04126244 +0.02852504 0.9419845 0.04126244 +0.04126244 0.9419845 0.04126244 +0.05836535 0.9419845 0.04126244 +0.08132997 0.9419845 0.04126244 +0.1121653 0.9419845 0.04126244 +0.1535689 0.9419845 0.04126244 +0.2091628 0.9419845 0.04126244 +0.2838106 0.9419845 0.04126244 +0.3840425 0.9419845 0.04126244 +0.518627 0.9419845 0.04126244 +0.6993381 0.9419845 0.04126244 +0.9419845 0.9419845 0.04126244 +1.267794 0.9419845 0.04126244 +1.705268 0.9419845 0.04126244 +2.292679 0.9419845 0.04126244 +3.081414 0.9419845 0.04126244 +4.140474 0.9419845 0.04126244 +5.562508 0.9419845 0.04126244 +7.471917 0.9419845 0.04126244 +10.03574 0.9419845 0.04126244 +13.47828 0.9419845 0.04126244 +18.10068 0.9419845 0.04126244 +24.30731 0.9419845 0.04126244 +32.64117 0.9419845 0.04126244 +43.83129 0.9419845 0.04126244 +58.85664 0.9419845 0.04126244 +-0.0175068 1.267794 0.04126244 +-0.01161267 1.267794 0.04126244 +-0.005718534 1.267794 0.04126244 +0.0001755984 1.267794 0.04126244 +0.006069731 1.267794 0.04126244 +0.01197402 1.267794 0.04126244 +0.01903886 1.267794 0.04126244 +0.02852504 1.267794 0.04126244 +0.04126244 1.267794 0.04126244 +0.05836535 1.267794 0.04126244 +0.08132997 1.267794 0.04126244 +0.1121653 1.267794 0.04126244 +0.1535689 1.267794 0.04126244 +0.2091628 1.267794 0.04126244 +0.2838106 1.267794 0.04126244 +0.3840425 1.267794 0.04126244 +0.518627 1.267794 0.04126244 +0.6993381 1.267794 0.04126244 +0.9419845 1.267794 0.04126244 +1.267794 1.267794 0.04126244 +1.705268 1.267794 0.04126244 +2.292679 1.267794 0.04126244 +3.081414 1.267794 0.04126244 +4.140474 1.267794 0.04126244 +5.562508 1.267794 0.04126244 +7.471917 1.267794 0.04126244 +10.03574 1.267794 0.04126244 +13.47828 1.267794 0.04126244 +18.10068 1.267794 0.04126244 +24.30731 1.267794 0.04126244 +32.64117 1.267794 0.04126244 +43.83129 1.267794 0.04126244 +58.85664 1.267794 0.04126244 +-0.0175068 1.705268 0.04126244 +-0.01161267 1.705268 0.04126244 +-0.005718534 1.705268 0.04126244 +0.0001755984 1.705268 0.04126244 +0.006069731 1.705268 0.04126244 +0.01197402 1.705268 0.04126244 +0.01903886 1.705268 0.04126244 +0.02852504 1.705268 0.04126244 +0.04126244 1.705268 0.04126244 +0.05836535 1.705268 0.04126244 +0.08132997 1.705268 0.04126244 +0.1121653 1.705268 0.04126244 +0.1535689 1.705268 0.04126244 +0.2091628 1.705268 0.04126244 +0.2838106 1.705268 0.04126244 +0.3840425 1.705268 0.04126244 +0.518627 1.705268 0.04126244 +0.6993381 1.705268 0.04126244 +0.9419845 1.705268 0.04126244 +1.267794 1.705268 0.04126244 +1.705268 1.705268 0.04126244 +2.292679 1.705268 0.04126244 +3.081414 1.705268 0.04126244 +4.140474 1.705268 0.04126244 +5.562508 1.705268 0.04126244 +7.471917 1.705268 0.04126244 +10.03574 1.705268 0.04126244 +13.47828 1.705268 0.04126244 +18.10068 1.705268 0.04126244 +24.30731 1.705268 0.04126244 +32.64117 1.705268 0.04126244 +43.83129 1.705268 0.04126244 +58.85664 1.705268 0.04126244 +-0.0175068 2.292679 0.04126244 +-0.01161267 2.292679 0.04126244 +-0.005718534 2.292679 0.04126244 +0.0001755984 2.292679 0.04126244 +0.006069731 2.292679 0.04126244 +0.01197402 2.292679 0.04126244 +0.01903886 2.292679 0.04126244 +0.02852504 2.292679 0.04126244 +0.04126244 2.292679 0.04126244 +0.05836535 2.292679 0.04126244 +0.08132997 2.292679 0.04126244 +0.1121653 2.292679 0.04126244 +0.1535689 2.292679 0.04126244 +0.2091628 2.292679 0.04126244 +0.2838106 2.292679 0.04126244 +0.3840425 2.292679 0.04126244 +0.518627 2.292679 0.04126244 +0.6993381 2.292679 0.04126244 +0.9419845 2.292679 0.04126244 +1.267794 2.292679 0.04126244 +1.705268 2.292679 0.04126244 +2.292679 2.292679 0.04126244 +3.081414 2.292679 0.04126244 +4.140474 2.292679 0.04126244 +5.562508 2.292679 0.04126244 +7.471917 2.292679 0.04126244 +10.03574 2.292679 0.04126244 +13.47828 2.292679 0.04126244 +18.10068 2.292679 0.04126244 +24.30731 2.292679 0.04126244 +32.64117 2.292679 0.04126244 +43.83129 2.292679 0.04126244 +58.85664 2.292679 0.04126244 +-0.0175068 3.081414 0.04126244 +-0.01161267 3.081414 0.04126244 +-0.005718534 3.081414 0.04126244 +0.0001755984 3.081414 0.04126244 +0.006069731 3.081414 0.04126244 +0.01197402 3.081414 0.04126244 +0.01903886 3.081414 0.04126244 +0.02852504 3.081414 0.04126244 +0.04126244 3.081414 0.04126244 +0.05836535 3.081414 0.04126244 +0.08132997 3.081414 0.04126244 +0.1121653 3.081414 0.04126244 +0.1535689 3.081414 0.04126244 +0.2091628 3.081414 0.04126244 +0.2838106 3.081414 0.04126244 +0.3840425 3.081414 0.04126244 +0.518627 3.081414 0.04126244 +0.6993381 3.081414 0.04126244 +0.9419845 3.081414 0.04126244 +1.267794 3.081414 0.04126244 +1.705268 3.081414 0.04126244 +2.292679 3.081414 0.04126244 +3.081414 3.081414 0.04126244 +4.140474 3.081414 0.04126244 +5.562508 3.081414 0.04126244 +7.471917 3.081414 0.04126244 +10.03574 3.081414 0.04126244 +13.47828 3.081414 0.04126244 +18.10068 3.081414 0.04126244 +24.30731 3.081414 0.04126244 +32.64117 3.081414 0.04126244 +43.83129 3.081414 0.04126244 +58.85664 3.081414 0.04126244 +-0.0175068 4.140474 0.04126244 +-0.01161267 4.140474 0.04126244 +-0.005718534 4.140474 0.04126244 +0.0001755984 4.140474 0.04126244 +0.006069731 4.140474 0.04126244 +0.01197402 4.140474 0.04126244 +0.01903886 4.140474 0.04126244 +0.02852504 4.140474 0.04126244 +0.04126244 4.140474 0.04126244 +0.05836535 4.140474 0.04126244 +0.08132997 4.140474 0.04126244 +0.1121653 4.140474 0.04126244 +0.1535689 4.140474 0.04126244 +0.2091628 4.140474 0.04126244 +0.2838106 4.140474 0.04126244 +0.3840425 4.140474 0.04126244 +0.518627 4.140474 0.04126244 +0.6993381 4.140474 0.04126244 +0.9419845 4.140474 0.04126244 +1.267794 4.140474 0.04126244 +1.705268 4.140474 0.04126244 +2.292679 4.140474 0.04126244 +3.081414 4.140474 0.04126244 +4.140474 4.140474 0.04126244 +5.562508 4.140474 0.04126244 +7.471917 4.140474 0.04126244 +10.03574 4.140474 0.04126244 +13.47828 4.140474 0.04126244 +18.10068 4.140474 0.04126244 +24.30731 4.140474 0.04126244 +32.64117 4.140474 0.04126244 +43.83129 4.140474 0.04126244 +58.85664 4.140474 0.04126244 +-0.0175068 5.562508 0.04126244 +-0.01161267 5.562508 0.04126244 +-0.005718534 5.562508 0.04126244 +0.0001755984 5.562508 0.04126244 +0.006069731 5.562508 0.04126244 +0.01197402 5.562508 0.04126244 +0.01903886 5.562508 0.04126244 +0.02852504 5.562508 0.04126244 +0.04126244 5.562508 0.04126244 +0.05836535 5.562508 0.04126244 +0.08132997 5.562508 0.04126244 +0.1121653 5.562508 0.04126244 +0.1535689 5.562508 0.04126244 +0.2091628 5.562508 0.04126244 +0.2838106 5.562508 0.04126244 +0.3840425 5.562508 0.04126244 +0.518627 5.562508 0.04126244 +0.6993381 5.562508 0.04126244 +0.9419845 5.562508 0.04126244 +1.267794 5.562508 0.04126244 +1.705268 5.562508 0.04126244 +2.292679 5.562508 0.04126244 +3.081414 5.562508 0.04126244 +4.140474 5.562508 0.04126244 +5.562508 5.562508 0.04126244 +7.471917 5.562508 0.04126244 +10.03574 5.562508 0.04126244 +13.47828 5.562508 0.04126244 +18.10068 5.562508 0.04126244 +24.30731 5.562508 0.04126244 +32.64117 5.562508 0.04126244 +43.83129 5.562508 0.04126244 +58.85664 5.562508 0.04126244 +-0.0175068 7.471917 0.04126244 +-0.01161267 7.471917 0.04126244 +-0.005718534 7.471917 0.04126244 +0.0001755984 7.471917 0.04126244 +0.006069731 7.471917 0.04126244 +0.01197402 7.471917 0.04126244 +0.01903886 7.471917 0.04126244 +0.02852504 7.471917 0.04126244 +0.04126244 7.471917 0.04126244 +0.05836535 7.471917 0.04126244 +0.08132997 7.471917 0.04126244 +0.1121653 7.471917 0.04126244 +0.1535689 7.471917 0.04126244 +0.2091628 7.471917 0.04126244 +0.2838106 7.471917 0.04126244 +0.3840425 7.471917 0.04126244 +0.518627 7.471917 0.04126244 +0.6993381 7.471917 0.04126244 +0.9419845 7.471917 0.04126244 +1.267794 7.471917 0.04126244 +1.705268 7.471917 0.04126244 +2.292679 7.471917 0.04126244 +3.081414 7.471917 0.04126244 +4.140474 7.471917 0.04126244 +5.562508 7.471917 0.04126244 +7.471917 7.471917 0.04126244 +10.03574 7.471917 0.04126244 +13.47828 7.471917 0.04126244 +18.10068 7.471917 0.04126244 +24.30731 7.471917 0.04126244 +32.64117 7.471917 0.04126244 +43.83129 7.471917 0.04126244 +58.85664 7.471917 0.04126244 +-0.0175068 10.03574 0.04126244 +-0.01161267 10.03574 0.04126244 +-0.005718534 10.03574 0.04126244 +0.0001755984 10.03574 0.04126244 +0.006069731 10.03574 0.04126244 +0.01197402 10.03574 0.04126244 +0.01903886 10.03574 0.04126244 +0.02852504 10.03574 0.04126244 +0.04126244 10.03574 0.04126244 +0.05836535 10.03574 0.04126244 +0.08132997 10.03574 0.04126244 +0.1121653 10.03574 0.04126244 +0.1535689 10.03574 0.04126244 +0.2091628 10.03574 0.04126244 +0.2838106 10.03574 0.04126244 +0.3840425 10.03574 0.04126244 +0.518627 10.03574 0.04126244 +0.6993381 10.03574 0.04126244 +0.9419845 10.03574 0.04126244 +1.267794 10.03574 0.04126244 +1.705268 10.03574 0.04126244 +2.292679 10.03574 0.04126244 +3.081414 10.03574 0.04126244 +4.140474 10.03574 0.04126244 +5.562508 10.03574 0.04126244 +7.471917 10.03574 0.04126244 +10.03574 10.03574 0.04126244 +13.47828 10.03574 0.04126244 +18.10068 10.03574 0.04126244 +24.30731 10.03574 0.04126244 +32.64117 10.03574 0.04126244 +43.83129 10.03574 0.04126244 +58.85664 10.03574 0.04126244 +-0.0175068 13.47828 0.04126244 +-0.01161267 13.47828 0.04126244 +-0.005718534 13.47828 0.04126244 +0.0001755984 13.47828 0.04126244 +0.006069731 13.47828 0.04126244 +0.01197402 13.47828 0.04126244 +0.01903886 13.47828 0.04126244 +0.02852504 13.47828 0.04126244 +0.04126244 13.47828 0.04126244 +0.05836535 13.47828 0.04126244 +0.08132997 13.47828 0.04126244 +0.1121653 13.47828 0.04126244 +0.1535689 13.47828 0.04126244 +0.2091628 13.47828 0.04126244 +0.2838106 13.47828 0.04126244 +0.3840425 13.47828 0.04126244 +0.518627 13.47828 0.04126244 +0.6993381 13.47828 0.04126244 +0.9419845 13.47828 0.04126244 +1.267794 13.47828 0.04126244 +1.705268 13.47828 0.04126244 +2.292679 13.47828 0.04126244 +3.081414 13.47828 0.04126244 +4.140474 13.47828 0.04126244 +5.562508 13.47828 0.04126244 +7.471917 13.47828 0.04126244 +10.03574 13.47828 0.04126244 +13.47828 13.47828 0.04126244 +18.10068 13.47828 0.04126244 +24.30731 13.47828 0.04126244 +32.64117 13.47828 0.04126244 +43.83129 13.47828 0.04126244 +58.85664 13.47828 0.04126244 +-0.0175068 18.10068 0.04126244 +-0.01161267 18.10068 0.04126244 +-0.005718534 18.10068 0.04126244 +0.0001755984 18.10068 0.04126244 +0.006069731 18.10068 0.04126244 +0.01197402 18.10068 0.04126244 +0.01903886 18.10068 0.04126244 +0.02852504 18.10068 0.04126244 +0.04126244 18.10068 0.04126244 +0.05836535 18.10068 0.04126244 +0.08132997 18.10068 0.04126244 +0.1121653 18.10068 0.04126244 +0.1535689 18.10068 0.04126244 +0.2091628 18.10068 0.04126244 +0.2838106 18.10068 0.04126244 +0.3840425 18.10068 0.04126244 +0.518627 18.10068 0.04126244 +0.6993381 18.10068 0.04126244 +0.9419845 18.10068 0.04126244 +1.267794 18.10068 0.04126244 +1.705268 18.10068 0.04126244 +2.292679 18.10068 0.04126244 +3.081414 18.10068 0.04126244 +4.140474 18.10068 0.04126244 +5.562508 18.10068 0.04126244 +7.471917 18.10068 0.04126244 +10.03574 18.10068 0.04126244 +13.47828 18.10068 0.04126244 +18.10068 18.10068 0.04126244 +24.30731 18.10068 0.04126244 +32.64117 18.10068 0.04126244 +43.83129 18.10068 0.04126244 +58.85664 18.10068 0.04126244 +-0.0175068 24.30731 0.04126244 +-0.01161267 24.30731 0.04126244 +-0.005718534 24.30731 0.04126244 +0.0001755984 24.30731 0.04126244 +0.006069731 24.30731 0.04126244 +0.01197402 24.30731 0.04126244 +0.01903886 24.30731 0.04126244 +0.02852504 24.30731 0.04126244 +0.04126244 24.30731 0.04126244 +0.05836535 24.30731 0.04126244 +0.08132997 24.30731 0.04126244 +0.1121653 24.30731 0.04126244 +0.1535689 24.30731 0.04126244 +0.2091628 24.30731 0.04126244 +0.2838106 24.30731 0.04126244 +0.3840425 24.30731 0.04126244 +0.518627 24.30731 0.04126244 +0.6993381 24.30731 0.04126244 +0.9419845 24.30731 0.04126244 +1.267794 24.30731 0.04126244 +1.705268 24.30731 0.04126244 +2.292679 24.30731 0.04126244 +3.081414 24.30731 0.04126244 +4.140474 24.30731 0.04126244 +5.562508 24.30731 0.04126244 +7.471917 24.30731 0.04126244 +10.03574 24.30731 0.04126244 +13.47828 24.30731 0.04126244 +18.10068 24.30731 0.04126244 +24.30731 24.30731 0.04126244 +32.64117 24.30731 0.04126244 +43.83129 24.30731 0.04126244 +58.85664 24.30731 0.04126244 +-0.0175068 32.64117 0.04126244 +-0.01161267 32.64117 0.04126244 +-0.005718534 32.64117 0.04126244 +0.0001755984 32.64117 0.04126244 +0.006069731 32.64117 0.04126244 +0.01197402 32.64117 0.04126244 +0.01903886 32.64117 0.04126244 +0.02852504 32.64117 0.04126244 +0.04126244 32.64117 0.04126244 +0.05836535 32.64117 0.04126244 +0.08132997 32.64117 0.04126244 +0.1121653 32.64117 0.04126244 +0.1535689 32.64117 0.04126244 +0.2091628 32.64117 0.04126244 +0.2838106 32.64117 0.04126244 +0.3840425 32.64117 0.04126244 +0.518627 32.64117 0.04126244 +0.6993381 32.64117 0.04126244 +0.9419845 32.64117 0.04126244 +1.267794 32.64117 0.04126244 +1.705268 32.64117 0.04126244 +2.292679 32.64117 0.04126244 +3.081414 32.64117 0.04126244 +4.140474 32.64117 0.04126244 +5.562508 32.64117 0.04126244 +7.471917 32.64117 0.04126244 +10.03574 32.64117 0.04126244 +13.47828 32.64117 0.04126244 +18.10068 32.64117 0.04126244 +24.30731 32.64117 0.04126244 +32.64117 32.64117 0.04126244 +43.83129 32.64117 0.04126244 +58.85664 32.64117 0.04126244 +-0.0175068 43.83129 0.04126244 +-0.01161267 43.83129 0.04126244 +-0.005718534 43.83129 0.04126244 +0.0001755984 43.83129 0.04126244 +0.006069731 43.83129 0.04126244 +0.01197402 43.83129 0.04126244 +0.01903886 43.83129 0.04126244 +0.02852504 43.83129 0.04126244 +0.04126244 43.83129 0.04126244 +0.05836535 43.83129 0.04126244 +0.08132997 43.83129 0.04126244 +0.1121653 43.83129 0.04126244 +0.1535689 43.83129 0.04126244 +0.2091628 43.83129 0.04126244 +0.2838106 43.83129 0.04126244 +0.3840425 43.83129 0.04126244 +0.518627 43.83129 0.04126244 +0.6993381 43.83129 0.04126244 +0.9419845 43.83129 0.04126244 +1.267794 43.83129 0.04126244 +1.705268 43.83129 0.04126244 +2.292679 43.83129 0.04126244 +3.081414 43.83129 0.04126244 +4.140474 43.83129 0.04126244 +5.562508 43.83129 0.04126244 +7.471917 43.83129 0.04126244 +10.03574 43.83129 0.04126244 +13.47828 43.83129 0.04126244 +18.10068 43.83129 0.04126244 +24.30731 43.83129 0.04126244 +32.64117 43.83129 0.04126244 +43.83129 43.83129 0.04126244 +58.85664 43.83129 0.04126244 +-0.0175068 58.85664 0.04126244 +-0.01161267 58.85664 0.04126244 +-0.005718534 58.85664 0.04126244 +0.0001755984 58.85664 0.04126244 +0.006069731 58.85664 0.04126244 +0.01197402 58.85664 0.04126244 +0.01903886 58.85664 0.04126244 +0.02852504 58.85664 0.04126244 +0.04126244 58.85664 0.04126244 +0.05836535 58.85664 0.04126244 +0.08132997 58.85664 0.04126244 +0.1121653 58.85664 0.04126244 +0.1535689 58.85664 0.04126244 +0.2091628 58.85664 0.04126244 +0.2838106 58.85664 0.04126244 +0.3840425 58.85664 0.04126244 +0.518627 58.85664 0.04126244 +0.6993381 58.85664 0.04126244 +0.9419845 58.85664 0.04126244 +1.267794 58.85664 0.04126244 +1.705268 58.85664 0.04126244 +2.292679 58.85664 0.04126244 +3.081414 58.85664 0.04126244 +4.140474 58.85664 0.04126244 +5.562508 58.85664 0.04126244 +7.471917 58.85664 0.04126244 +10.03574 58.85664 0.04126244 +13.47828 58.85664 0.04126244 +18.10068 58.85664 0.04126244 +24.30731 58.85664 0.04126244 +32.64117 58.85664 0.04126244 +43.83129 58.85664 0.04126244 +58.85664 58.85664 0.04126244 +-0.0175068 -0.0175068 0.05836535 +-0.01161267 -0.0175068 0.05836535 +-0.005718534 -0.0175068 0.05836535 +0.0001755984 -0.0175068 0.05836535 +0.006069731 -0.0175068 0.05836535 +0.01197402 -0.0175068 0.05836535 +0.01903886 -0.0175068 0.05836535 +0.02852504 -0.0175068 0.05836535 +0.04126244 -0.0175068 0.05836535 +0.05836535 -0.0175068 0.05836535 +0.08132997 -0.0175068 0.05836535 +0.1121653 -0.0175068 0.05836535 +0.1535689 -0.0175068 0.05836535 +0.2091628 -0.0175068 0.05836535 +0.2838106 -0.0175068 0.05836535 +0.3840425 -0.0175068 0.05836535 +0.518627 -0.0175068 0.05836535 +0.6993381 -0.0175068 0.05836535 +0.9419845 -0.0175068 0.05836535 +1.267794 -0.0175068 0.05836535 +1.705268 -0.0175068 0.05836535 +2.292679 -0.0175068 0.05836535 +3.081414 -0.0175068 0.05836535 +4.140474 -0.0175068 0.05836535 +5.562508 -0.0175068 0.05836535 +7.471917 -0.0175068 0.05836535 +10.03574 -0.0175068 0.05836535 +13.47828 -0.0175068 0.05836535 +18.10068 -0.0175068 0.05836535 +24.30731 -0.0175068 0.05836535 +32.64117 -0.0175068 0.05836535 +43.83129 -0.0175068 0.05836535 +58.85664 -0.0175068 0.05836535 +-0.0175068 -0.01161267 0.05836535 +-0.01161267 -0.01161267 0.05836535 +-0.005718534 -0.01161267 0.05836535 +0.0001755984 -0.01161267 0.05836535 +0.006069731 -0.01161267 0.05836535 +0.01197402 -0.01161267 0.05836535 +0.01903886 -0.01161267 0.05836535 +0.02852504 -0.01161267 0.05836535 +0.04126244 -0.01161267 0.05836535 +0.05836535 -0.01161267 0.05836535 +0.08132997 -0.01161267 0.05836535 +0.1121653 -0.01161267 0.05836535 +0.1535689 -0.01161267 0.05836535 +0.2091628 -0.01161267 0.05836535 +0.2838106 -0.01161267 0.05836535 +0.3840425 -0.01161267 0.05836535 +0.518627 -0.01161267 0.05836535 +0.6993381 -0.01161267 0.05836535 +0.9419845 -0.01161267 0.05836535 +1.267794 -0.01161267 0.05836535 +1.705268 -0.01161267 0.05836535 +2.292679 -0.01161267 0.05836535 +3.081414 -0.01161267 0.05836535 +4.140474 -0.01161267 0.05836535 +5.562508 -0.01161267 0.05836535 +7.471917 -0.01161267 0.05836535 +10.03574 -0.01161267 0.05836535 +13.47828 -0.01161267 0.05836535 +18.10068 -0.01161267 0.05836535 +24.30731 -0.01161267 0.05836535 +32.64117 -0.01161267 0.05836535 +43.83129 -0.01161267 0.05836535 +58.85664 -0.01161267 0.05836535 +-0.0175068 -0.005718534 0.05836535 +-0.01161267 -0.005718534 0.05836535 +-0.005718534 -0.005718534 0.05836535 +0.0001755984 -0.005718534 0.05836535 +0.006069731 -0.005718534 0.05836535 +0.01197402 -0.005718534 0.05836535 +0.01903886 -0.005718534 0.05836535 +0.02852504 -0.005718534 0.05836535 +0.04126244 -0.005718534 0.05836535 +0.05836535 -0.005718534 0.05836535 +0.08132997 -0.005718534 0.05836535 +0.1121653 -0.005718534 0.05836535 +0.1535689 -0.005718534 0.05836535 +0.2091628 -0.005718534 0.05836535 +0.2838106 -0.005718534 0.05836535 +0.3840425 -0.005718534 0.05836535 +0.518627 -0.005718534 0.05836535 +0.6993381 -0.005718534 0.05836535 +0.9419845 -0.005718534 0.05836535 +1.267794 -0.005718534 0.05836535 +1.705268 -0.005718534 0.05836535 +2.292679 -0.005718534 0.05836535 +3.081414 -0.005718534 0.05836535 +4.140474 -0.005718534 0.05836535 +5.562508 -0.005718534 0.05836535 +7.471917 -0.005718534 0.05836535 +10.03574 -0.005718534 0.05836535 +13.47828 -0.005718534 0.05836535 +18.10068 -0.005718534 0.05836535 +24.30731 -0.005718534 0.05836535 +32.64117 -0.005718534 0.05836535 +43.83129 -0.005718534 0.05836535 +58.85664 -0.005718534 0.05836535 +-0.0175068 0.0001755984 0.05836535 +-0.01161267 0.0001755984 0.05836535 +-0.005718534 0.0001755984 0.05836535 +0.0001755984 0.0001755984 0.05836535 +0.006069731 0.0001755984 0.05836535 +0.01197402 0.0001755984 0.05836535 +0.01903886 0.0001755984 0.05836535 +0.02852504 0.0001755984 0.05836535 +0.04126244 0.0001755984 0.05836535 +0.05836535 0.0001755984 0.05836535 +0.08132997 0.0001755984 0.05836535 +0.1121653 0.0001755984 0.05836535 +0.1535689 0.0001755984 0.05836535 +0.2091628 0.0001755984 0.05836535 +0.2838106 0.0001755984 0.05836535 +0.3840425 0.0001755984 0.05836535 +0.518627 0.0001755984 0.05836535 +0.6993381 0.0001755984 0.05836535 +0.9419845 0.0001755984 0.05836535 +1.267794 0.0001755984 0.05836535 +1.705268 0.0001755984 0.05836535 +2.292679 0.0001755984 0.05836535 +3.081414 0.0001755984 0.05836535 +4.140474 0.0001755984 0.05836535 +5.562508 0.0001755984 0.05836535 +7.471917 0.0001755984 0.05836535 +10.03574 0.0001755984 0.05836535 +13.47828 0.0001755984 0.05836535 +18.10068 0.0001755984 0.05836535 +24.30731 0.0001755984 0.05836535 +32.64117 0.0001755984 0.05836535 +43.83129 0.0001755984 0.05836535 +58.85664 0.0001755984 0.05836535 +-0.0175068 0.006069731 0.05836535 +-0.01161267 0.006069731 0.05836535 +-0.005718534 0.006069731 0.05836535 +0.0001755984 0.006069731 0.05836535 +0.006069731 0.006069731 0.05836535 +0.01197402 0.006069731 0.05836535 +0.01903886 0.006069731 0.05836535 +0.02852504 0.006069731 0.05836535 +0.04126244 0.006069731 0.05836535 +0.05836535 0.006069731 0.05836535 +0.08132997 0.006069731 0.05836535 +0.1121653 0.006069731 0.05836535 +0.1535689 0.006069731 0.05836535 +0.2091628 0.006069731 0.05836535 +0.2838106 0.006069731 0.05836535 +0.3840425 0.006069731 0.05836535 +0.518627 0.006069731 0.05836535 +0.6993381 0.006069731 0.05836535 +0.9419845 0.006069731 0.05836535 +1.267794 0.006069731 0.05836535 +1.705268 0.006069731 0.05836535 +2.292679 0.006069731 0.05836535 +3.081414 0.006069731 0.05836535 +4.140474 0.006069731 0.05836535 +5.562508 0.006069731 0.05836535 +7.471917 0.006069731 0.05836535 +10.03574 0.006069731 0.05836535 +13.47828 0.006069731 0.05836535 +18.10068 0.006069731 0.05836535 +24.30731 0.006069731 0.05836535 +32.64117 0.006069731 0.05836535 +43.83129 0.006069731 0.05836535 +58.85664 0.006069731 0.05836535 +-0.0175068 0.01197402 0.05836535 +-0.01161267 0.01197402 0.05836535 +-0.005718534 0.01197402 0.05836535 +0.0001755984 0.01197402 0.05836535 +0.006069731 0.01197402 0.05836535 +0.01197402 0.01197402 0.05836535 +0.01903886 0.01197402 0.05836535 +0.02852504 0.01197402 0.05836535 +0.04126244 0.01197402 0.05836535 +0.05836535 0.01197402 0.05836535 +0.08132997 0.01197402 0.05836535 +0.1121653 0.01197402 0.05836535 +0.1535689 0.01197402 0.05836535 +0.2091628 0.01197402 0.05836535 +0.2838106 0.01197402 0.05836535 +0.3840425 0.01197402 0.05836535 +0.518627 0.01197402 0.05836535 +0.6993381 0.01197402 0.05836535 +0.9419845 0.01197402 0.05836535 +1.267794 0.01197402 0.05836535 +1.705268 0.01197402 0.05836535 +2.292679 0.01197402 0.05836535 +3.081414 0.01197402 0.05836535 +4.140474 0.01197402 0.05836535 +5.562508 0.01197402 0.05836535 +7.471917 0.01197402 0.05836535 +10.03574 0.01197402 0.05836535 +13.47828 0.01197402 0.05836535 +18.10068 0.01197402 0.05836535 +24.30731 0.01197402 0.05836535 +32.64117 0.01197402 0.05836535 +43.83129 0.01197402 0.05836535 +58.85664 0.01197402 0.05836535 +-0.0175068 0.01903886 0.05836535 +-0.01161267 0.01903886 0.05836535 +-0.005718534 0.01903886 0.05836535 +0.0001755984 0.01903886 0.05836535 +0.006069731 0.01903886 0.05836535 +0.01197402 0.01903886 0.05836535 +0.01903886 0.01903886 0.05836535 +0.02852504 0.01903886 0.05836535 +0.04126244 0.01903886 0.05836535 +0.05836535 0.01903886 0.05836535 +0.08132997 0.01903886 0.05836535 +0.1121653 0.01903886 0.05836535 +0.1535689 0.01903886 0.05836535 +0.2091628 0.01903886 0.05836535 +0.2838106 0.01903886 0.05836535 +0.3840425 0.01903886 0.05836535 +0.518627 0.01903886 0.05836535 +0.6993381 0.01903886 0.05836535 +0.9419845 0.01903886 0.05836535 +1.267794 0.01903886 0.05836535 +1.705268 0.01903886 0.05836535 +2.292679 0.01903886 0.05836535 +3.081414 0.01903886 0.05836535 +4.140474 0.01903886 0.05836535 +5.562508 0.01903886 0.05836535 +7.471917 0.01903886 0.05836535 +10.03574 0.01903886 0.05836535 +13.47828 0.01903886 0.05836535 +18.10068 0.01903886 0.05836535 +24.30731 0.01903886 0.05836535 +32.64117 0.01903886 0.05836535 +43.83129 0.01903886 0.05836535 +58.85664 0.01903886 0.05836535 +-0.0175068 0.02852504 0.05836535 +-0.01161267 0.02852504 0.05836535 +-0.005718534 0.02852504 0.05836535 +0.0001755984 0.02852504 0.05836535 +0.006069731 0.02852504 0.05836535 +0.01197402 0.02852504 0.05836535 +0.01903886 0.02852504 0.05836535 +0.02852504 0.02852504 0.05836535 +0.04126244 0.02852504 0.05836535 +0.05836535 0.02852504 0.05836535 +0.08132997 0.02852504 0.05836535 +0.1121653 0.02852504 0.05836535 +0.1535689 0.02852504 0.05836535 +0.2091628 0.02852504 0.05836535 +0.2838106 0.02852504 0.05836535 +0.3840425 0.02852504 0.05836535 +0.518627 0.02852504 0.05836535 +0.6993381 0.02852504 0.05836535 +0.9419845 0.02852504 0.05836535 +1.267794 0.02852504 0.05836535 +1.705268 0.02852504 0.05836535 +2.292679 0.02852504 0.05836535 +3.081414 0.02852504 0.05836535 +4.140474 0.02852504 0.05836535 +5.562508 0.02852504 0.05836535 +7.471917 0.02852504 0.05836535 +10.03574 0.02852504 0.05836535 +13.47828 0.02852504 0.05836535 +18.10068 0.02852504 0.05836535 +24.30731 0.02852504 0.05836535 +32.64117 0.02852504 0.05836535 +43.83129 0.02852504 0.05836535 +58.85664 0.02852504 0.05836535 +-0.0175068 0.04126244 0.05836535 +-0.01161267 0.04126244 0.05836535 +-0.005718534 0.04126244 0.05836535 +0.0001755984 0.04126244 0.05836535 +0.006069731 0.04126244 0.05836535 +0.01197402 0.04126244 0.05836535 +0.01903886 0.04126244 0.05836535 +0.02852504 0.04126244 0.05836535 +0.04126244 0.04126244 0.05836535 +0.05836535 0.04126244 0.05836535 +0.08132997 0.04126244 0.05836535 +0.1121653 0.04126244 0.05836535 +0.1535689 0.04126244 0.05836535 +0.2091628 0.04126244 0.05836535 +0.2838106 0.04126244 0.05836535 +0.3840425 0.04126244 0.05836535 +0.518627 0.04126244 0.05836535 +0.6993381 0.04126244 0.05836535 +0.9419845 0.04126244 0.05836535 +1.267794 0.04126244 0.05836535 +1.705268 0.04126244 0.05836535 +2.292679 0.04126244 0.05836535 +3.081414 0.04126244 0.05836535 +4.140474 0.04126244 0.05836535 +5.562508 0.04126244 0.05836535 +7.471917 0.04126244 0.05836535 +10.03574 0.04126244 0.05836535 +13.47828 0.04126244 0.05836535 +18.10068 0.04126244 0.05836535 +24.30731 0.04126244 0.05836535 +32.64117 0.04126244 0.05836535 +43.83129 0.04126244 0.05836535 +58.85664 0.04126244 0.05836535 +-0.0175068 0.05836535 0.05836535 +-0.01161267 0.05836535 0.05836535 +-0.005718534 0.05836535 0.05836535 +0.0001755984 0.05836535 0.05836535 +0.006069731 0.05836535 0.05836535 +0.01197402 0.05836535 0.05836535 +0.01903886 0.05836535 0.05836535 +0.02852504 0.05836535 0.05836535 +0.04126244 0.05836535 0.05836535 +0.05836535 0.05836535 0.05836535 +0.08132997 0.05836535 0.05836535 +0.1121653 0.05836535 0.05836535 +0.1535689 0.05836535 0.05836535 +0.2091628 0.05836535 0.05836535 +0.2838106 0.05836535 0.05836535 +0.3840425 0.05836535 0.05836535 +0.518627 0.05836535 0.05836535 +0.6993381 0.05836535 0.05836535 +0.9419845 0.05836535 0.05836535 +1.267794 0.05836535 0.05836535 +1.705268 0.05836535 0.05836535 +2.292679 0.05836535 0.05836535 +3.081414 0.05836535 0.05836535 +4.140474 0.05836535 0.05836535 +5.562508 0.05836535 0.05836535 +7.471917 0.05836535 0.05836535 +10.03574 0.05836535 0.05836535 +13.47828 0.05836535 0.05836535 +18.10068 0.05836535 0.05836535 +24.30731 0.05836535 0.05836535 +32.64117 0.05836535 0.05836535 +43.83129 0.05836535 0.05836535 +58.85664 0.05836535 0.05836535 +-0.0175068 0.08132997 0.05836535 +-0.01161267 0.08132997 0.05836535 +-0.005718534 0.08132997 0.05836535 +0.0001755984 0.08132997 0.05836535 +0.006069731 0.08132997 0.05836535 +0.01197402 0.08132997 0.05836535 +0.01903886 0.08132997 0.05836535 +0.02852504 0.08132997 0.05836535 +0.04126244 0.08132997 0.05836535 +0.05836535 0.08132997 0.05836535 +0.08132997 0.08132997 0.05836535 +0.1121653 0.08132997 0.05836535 +0.1535689 0.08132997 0.05836535 +0.2091628 0.08132997 0.05836535 +0.2838106 0.08132997 0.05836535 +0.3840425 0.08132997 0.05836535 +0.518627 0.08132997 0.05836535 +0.6993381 0.08132997 0.05836535 +0.9419845 0.08132997 0.05836535 +1.267794 0.08132997 0.05836535 +1.705268 0.08132997 0.05836535 +2.292679 0.08132997 0.05836535 +3.081414 0.08132997 0.05836535 +4.140474 0.08132997 0.05836535 +5.562508 0.08132997 0.05836535 +7.471917 0.08132997 0.05836535 +10.03574 0.08132997 0.05836535 +13.47828 0.08132997 0.05836535 +18.10068 0.08132997 0.05836535 +24.30731 0.08132997 0.05836535 +32.64117 0.08132997 0.05836535 +43.83129 0.08132997 0.05836535 +58.85664 0.08132997 0.05836535 +-0.0175068 0.1121653 0.05836535 +-0.01161267 0.1121653 0.05836535 +-0.005718534 0.1121653 0.05836535 +0.0001755984 0.1121653 0.05836535 +0.006069731 0.1121653 0.05836535 +0.01197402 0.1121653 0.05836535 +0.01903886 0.1121653 0.05836535 +0.02852504 0.1121653 0.05836535 +0.04126244 0.1121653 0.05836535 +0.05836535 0.1121653 0.05836535 +0.08132997 0.1121653 0.05836535 +0.1121653 0.1121653 0.05836535 +0.1535689 0.1121653 0.05836535 +0.2091628 0.1121653 0.05836535 +0.2838106 0.1121653 0.05836535 +0.3840425 0.1121653 0.05836535 +0.518627 0.1121653 0.05836535 +0.6993381 0.1121653 0.05836535 +0.9419845 0.1121653 0.05836535 +1.267794 0.1121653 0.05836535 +1.705268 0.1121653 0.05836535 +2.292679 0.1121653 0.05836535 +3.081414 0.1121653 0.05836535 +4.140474 0.1121653 0.05836535 +5.562508 0.1121653 0.05836535 +7.471917 0.1121653 0.05836535 +10.03574 0.1121653 0.05836535 +13.47828 0.1121653 0.05836535 +18.10068 0.1121653 0.05836535 +24.30731 0.1121653 0.05836535 +32.64117 0.1121653 0.05836535 +43.83129 0.1121653 0.05836535 +58.85664 0.1121653 0.05836535 +-0.0175068 0.1535689 0.05836535 +-0.01161267 0.1535689 0.05836535 +-0.005718534 0.1535689 0.05836535 +0.0001755984 0.1535689 0.05836535 +0.006069731 0.1535689 0.05836535 +0.01197402 0.1535689 0.05836535 +0.01903886 0.1535689 0.05836535 +0.02852504 0.1535689 0.05836535 +0.04126244 0.1535689 0.05836535 +0.05836535 0.1535689 0.05836535 +0.08132997 0.1535689 0.05836535 +0.1121653 0.1535689 0.05836535 +0.1535689 0.1535689 0.05836535 +0.2091628 0.1535689 0.05836535 +0.2838106 0.1535689 0.05836535 +0.3840425 0.1535689 0.05836535 +0.518627 0.1535689 0.05836535 +0.6993381 0.1535689 0.05836535 +0.9419845 0.1535689 0.05836535 +1.267794 0.1535689 0.05836535 +1.705268 0.1535689 0.05836535 +2.292679 0.1535689 0.05836535 +3.081414 0.1535689 0.05836535 +4.140474 0.1535689 0.05836535 +5.562508 0.1535689 0.05836535 +7.471917 0.1535689 0.05836535 +10.03574 0.1535689 0.05836535 +13.47828 0.1535689 0.05836535 +18.10068 0.1535689 0.05836535 +24.30731 0.1535689 0.05836535 +32.64117 0.1535689 0.05836535 +43.83129 0.1535689 0.05836535 +58.85664 0.1535689 0.05836535 +-0.0175068 0.2091628 0.05836535 +-0.01161267 0.2091628 0.05836535 +-0.005718534 0.2091628 0.05836535 +0.0001755984 0.2091628 0.05836535 +0.006069731 0.2091628 0.05836535 +0.01197402 0.2091628 0.05836535 +0.01903886 0.2091628 0.05836535 +0.02852504 0.2091628 0.05836535 +0.04126244 0.2091628 0.05836535 +0.05836535 0.2091628 0.05836535 +0.08132997 0.2091628 0.05836535 +0.1121653 0.2091628 0.05836535 +0.1535689 0.2091628 0.05836535 +0.2091628 0.2091628 0.05836535 +0.2838106 0.2091628 0.05836535 +0.3840425 0.2091628 0.05836535 +0.518627 0.2091628 0.05836535 +0.6993381 0.2091628 0.05836535 +0.9419845 0.2091628 0.05836535 +1.267794 0.2091628 0.05836535 +1.705268 0.2091628 0.05836535 +2.292679 0.2091628 0.05836535 +3.081414 0.2091628 0.05836535 +4.140474 0.2091628 0.05836535 +5.562508 0.2091628 0.05836535 +7.471917 0.2091628 0.05836535 +10.03574 0.2091628 0.05836535 +13.47828 0.2091628 0.05836535 +18.10068 0.2091628 0.05836535 +24.30731 0.2091628 0.05836535 +32.64117 0.2091628 0.05836535 +43.83129 0.2091628 0.05836535 +58.85664 0.2091628 0.05836535 +-0.0175068 0.2838106 0.05836535 +-0.01161267 0.2838106 0.05836535 +-0.005718534 0.2838106 0.05836535 +0.0001755984 0.2838106 0.05836535 +0.006069731 0.2838106 0.05836535 +0.01197402 0.2838106 0.05836535 +0.01903886 0.2838106 0.05836535 +0.02852504 0.2838106 0.05836535 +0.04126244 0.2838106 0.05836535 +0.05836535 0.2838106 0.05836535 +0.08132997 0.2838106 0.05836535 +0.1121653 0.2838106 0.05836535 +0.1535689 0.2838106 0.05836535 +0.2091628 0.2838106 0.05836535 +0.2838106 0.2838106 0.05836535 +0.3840425 0.2838106 0.05836535 +0.518627 0.2838106 0.05836535 +0.6993381 0.2838106 0.05836535 +0.9419845 0.2838106 0.05836535 +1.267794 0.2838106 0.05836535 +1.705268 0.2838106 0.05836535 +2.292679 0.2838106 0.05836535 +3.081414 0.2838106 0.05836535 +4.140474 0.2838106 0.05836535 +5.562508 0.2838106 0.05836535 +7.471917 0.2838106 0.05836535 +10.03574 0.2838106 0.05836535 +13.47828 0.2838106 0.05836535 +18.10068 0.2838106 0.05836535 +24.30731 0.2838106 0.05836535 +32.64117 0.2838106 0.05836535 +43.83129 0.2838106 0.05836535 +58.85664 0.2838106 0.05836535 +-0.0175068 0.3840425 0.05836535 +-0.01161267 0.3840425 0.05836535 +-0.005718534 0.3840425 0.05836535 +0.0001755984 0.3840425 0.05836535 +0.006069731 0.3840425 0.05836535 +0.01197402 0.3840425 0.05836535 +0.01903886 0.3840425 0.05836535 +0.02852504 0.3840425 0.05836535 +0.04126244 0.3840425 0.05836535 +0.05836535 0.3840425 0.05836535 +0.08132997 0.3840425 0.05836535 +0.1121653 0.3840425 0.05836535 +0.1535689 0.3840425 0.05836535 +0.2091628 0.3840425 0.05836535 +0.2838106 0.3840425 0.05836535 +0.3840425 0.3840425 0.05836535 +0.518627 0.3840425 0.05836535 +0.6993381 0.3840425 0.05836535 +0.9419845 0.3840425 0.05836535 +1.267794 0.3840425 0.05836535 +1.705268 0.3840425 0.05836535 +2.292679 0.3840425 0.05836535 +3.081414 0.3840425 0.05836535 +4.140474 0.3840425 0.05836535 +5.562508 0.3840425 0.05836535 +7.471917 0.3840425 0.05836535 +10.03574 0.3840425 0.05836535 +13.47828 0.3840425 0.05836535 +18.10068 0.3840425 0.05836535 +24.30731 0.3840425 0.05836535 +32.64117 0.3840425 0.05836535 +43.83129 0.3840425 0.05836535 +58.85664 0.3840425 0.05836535 +-0.0175068 0.518627 0.05836535 +-0.01161267 0.518627 0.05836535 +-0.005718534 0.518627 0.05836535 +0.0001755984 0.518627 0.05836535 +0.006069731 0.518627 0.05836535 +0.01197402 0.518627 0.05836535 +0.01903886 0.518627 0.05836535 +0.02852504 0.518627 0.05836535 +0.04126244 0.518627 0.05836535 +0.05836535 0.518627 0.05836535 +0.08132997 0.518627 0.05836535 +0.1121653 0.518627 0.05836535 +0.1535689 0.518627 0.05836535 +0.2091628 0.518627 0.05836535 +0.2838106 0.518627 0.05836535 +0.3840425 0.518627 0.05836535 +0.518627 0.518627 0.05836535 +0.6993381 0.518627 0.05836535 +0.9419845 0.518627 0.05836535 +1.267794 0.518627 0.05836535 +1.705268 0.518627 0.05836535 +2.292679 0.518627 0.05836535 +3.081414 0.518627 0.05836535 +4.140474 0.518627 0.05836535 +5.562508 0.518627 0.05836535 +7.471917 0.518627 0.05836535 +10.03574 0.518627 0.05836535 +13.47828 0.518627 0.05836535 +18.10068 0.518627 0.05836535 +24.30731 0.518627 0.05836535 +32.64117 0.518627 0.05836535 +43.83129 0.518627 0.05836535 +58.85664 0.518627 0.05836535 +-0.0175068 0.6993381 0.05836535 +-0.01161267 0.6993381 0.05836535 +-0.005718534 0.6993381 0.05836535 +0.0001755984 0.6993381 0.05836535 +0.006069731 0.6993381 0.05836535 +0.01197402 0.6993381 0.05836535 +0.01903886 0.6993381 0.05836535 +0.02852504 0.6993381 0.05836535 +0.04126244 0.6993381 0.05836535 +0.05836535 0.6993381 0.05836535 +0.08132997 0.6993381 0.05836535 +0.1121653 0.6993381 0.05836535 +0.1535689 0.6993381 0.05836535 +0.2091628 0.6993381 0.05836535 +0.2838106 0.6993381 0.05836535 +0.3840425 0.6993381 0.05836535 +0.518627 0.6993381 0.05836535 +0.6993381 0.6993381 0.05836535 +0.9419845 0.6993381 0.05836535 +1.267794 0.6993381 0.05836535 +1.705268 0.6993381 0.05836535 +2.292679 0.6993381 0.05836535 +3.081414 0.6993381 0.05836535 +4.140474 0.6993381 0.05836535 +5.562508 0.6993381 0.05836535 +7.471917 0.6993381 0.05836535 +10.03574 0.6993381 0.05836535 +13.47828 0.6993381 0.05836535 +18.10068 0.6993381 0.05836535 +24.30731 0.6993381 0.05836535 +32.64117 0.6993381 0.05836535 +43.83129 0.6993381 0.05836535 +58.85664 0.6993381 0.05836535 +-0.0175068 0.9419845 0.05836535 +-0.01161267 0.9419845 0.05836535 +-0.005718534 0.9419845 0.05836535 +0.0001755984 0.9419845 0.05836535 +0.006069731 0.9419845 0.05836535 +0.01197402 0.9419845 0.05836535 +0.01903886 0.9419845 0.05836535 +0.02852504 0.9419845 0.05836535 +0.04126244 0.9419845 0.05836535 +0.05836535 0.9419845 0.05836535 +0.08132997 0.9419845 0.05836535 +0.1121653 0.9419845 0.05836535 +0.1535689 0.9419845 0.05836535 +0.2091628 0.9419845 0.05836535 +0.2838106 0.9419845 0.05836535 +0.3840425 0.9419845 0.05836535 +0.518627 0.9419845 0.05836535 +0.6993381 0.9419845 0.05836535 +0.9419845 0.9419845 0.05836535 +1.267794 0.9419845 0.05836535 +1.705268 0.9419845 0.05836535 +2.292679 0.9419845 0.05836535 +3.081414 0.9419845 0.05836535 +4.140474 0.9419845 0.05836535 +5.562508 0.9419845 0.05836535 +7.471917 0.9419845 0.05836535 +10.03574 0.9419845 0.05836535 +13.47828 0.9419845 0.05836535 +18.10068 0.9419845 0.05836535 +24.30731 0.9419845 0.05836535 +32.64117 0.9419845 0.05836535 +43.83129 0.9419845 0.05836535 +58.85664 0.9419845 0.05836535 +-0.0175068 1.267794 0.05836535 +-0.01161267 1.267794 0.05836535 +-0.005718534 1.267794 0.05836535 +0.0001755984 1.267794 0.05836535 +0.006069731 1.267794 0.05836535 +0.01197402 1.267794 0.05836535 +0.01903886 1.267794 0.05836535 +0.02852504 1.267794 0.05836535 +0.04126244 1.267794 0.05836535 +0.05836535 1.267794 0.05836535 +0.08132997 1.267794 0.05836535 +0.1121653 1.267794 0.05836535 +0.1535689 1.267794 0.05836535 +0.2091628 1.267794 0.05836535 +0.2838106 1.267794 0.05836535 +0.3840425 1.267794 0.05836535 +0.518627 1.267794 0.05836535 +0.6993381 1.267794 0.05836535 +0.9419845 1.267794 0.05836535 +1.267794 1.267794 0.05836535 +1.705268 1.267794 0.05836535 +2.292679 1.267794 0.05836535 +3.081414 1.267794 0.05836535 +4.140474 1.267794 0.05836535 +5.562508 1.267794 0.05836535 +7.471917 1.267794 0.05836535 +10.03574 1.267794 0.05836535 +13.47828 1.267794 0.05836535 +18.10068 1.267794 0.05836535 +24.30731 1.267794 0.05836535 +32.64117 1.267794 0.05836535 +43.83129 1.267794 0.05836535 +58.85664 1.267794 0.05836535 +-0.0175068 1.705268 0.05836535 +-0.01161267 1.705268 0.05836535 +-0.005718534 1.705268 0.05836535 +0.0001755984 1.705268 0.05836535 +0.006069731 1.705268 0.05836535 +0.01197402 1.705268 0.05836535 +0.01903886 1.705268 0.05836535 +0.02852504 1.705268 0.05836535 +0.04126244 1.705268 0.05836535 +0.05836535 1.705268 0.05836535 +0.08132997 1.705268 0.05836535 +0.1121653 1.705268 0.05836535 +0.1535689 1.705268 0.05836535 +0.2091628 1.705268 0.05836535 +0.2838106 1.705268 0.05836535 +0.3840425 1.705268 0.05836535 +0.518627 1.705268 0.05836535 +0.6993381 1.705268 0.05836535 +0.9419845 1.705268 0.05836535 +1.267794 1.705268 0.05836535 +1.705268 1.705268 0.05836535 +2.292679 1.705268 0.05836535 +3.081414 1.705268 0.05836535 +4.140474 1.705268 0.05836535 +5.562508 1.705268 0.05836535 +7.471917 1.705268 0.05836535 +10.03574 1.705268 0.05836535 +13.47828 1.705268 0.05836535 +18.10068 1.705268 0.05836535 +24.30731 1.705268 0.05836535 +32.64117 1.705268 0.05836535 +43.83129 1.705268 0.05836535 +58.85664 1.705268 0.05836535 +-0.0175068 2.292679 0.05836535 +-0.01161267 2.292679 0.05836535 +-0.005718534 2.292679 0.05836535 +0.0001755984 2.292679 0.05836535 +0.006069731 2.292679 0.05836535 +0.01197402 2.292679 0.05836535 +0.01903886 2.292679 0.05836535 +0.02852504 2.292679 0.05836535 +0.04126244 2.292679 0.05836535 +0.05836535 2.292679 0.05836535 +0.08132997 2.292679 0.05836535 +0.1121653 2.292679 0.05836535 +0.1535689 2.292679 0.05836535 +0.2091628 2.292679 0.05836535 +0.2838106 2.292679 0.05836535 +0.3840425 2.292679 0.05836535 +0.518627 2.292679 0.05836535 +0.6993381 2.292679 0.05836535 +0.9419845 2.292679 0.05836535 +1.267794 2.292679 0.05836535 +1.705268 2.292679 0.05836535 +2.292679 2.292679 0.05836535 +3.081414 2.292679 0.05836535 +4.140474 2.292679 0.05836535 +5.562508 2.292679 0.05836535 +7.471917 2.292679 0.05836535 +10.03574 2.292679 0.05836535 +13.47828 2.292679 0.05836535 +18.10068 2.292679 0.05836535 +24.30731 2.292679 0.05836535 +32.64117 2.292679 0.05836535 +43.83129 2.292679 0.05836535 +58.85664 2.292679 0.05836535 +-0.0175068 3.081414 0.05836535 +-0.01161267 3.081414 0.05836535 +-0.005718534 3.081414 0.05836535 +0.0001755984 3.081414 0.05836535 +0.006069731 3.081414 0.05836535 +0.01197402 3.081414 0.05836535 +0.01903886 3.081414 0.05836535 +0.02852504 3.081414 0.05836535 +0.04126244 3.081414 0.05836535 +0.05836535 3.081414 0.05836535 +0.08132997 3.081414 0.05836535 +0.1121653 3.081414 0.05836535 +0.1535689 3.081414 0.05836535 +0.2091628 3.081414 0.05836535 +0.2838106 3.081414 0.05836535 +0.3840425 3.081414 0.05836535 +0.518627 3.081414 0.05836535 +0.6993381 3.081414 0.05836535 +0.9419845 3.081414 0.05836535 +1.267794 3.081414 0.05836535 +1.705268 3.081414 0.05836535 +2.292679 3.081414 0.05836535 +3.081414 3.081414 0.05836535 +4.140474 3.081414 0.05836535 +5.562508 3.081414 0.05836535 +7.471917 3.081414 0.05836535 +10.03574 3.081414 0.05836535 +13.47828 3.081414 0.05836535 +18.10068 3.081414 0.05836535 +24.30731 3.081414 0.05836535 +32.64117 3.081414 0.05836535 +43.83129 3.081414 0.05836535 +58.85664 3.081414 0.05836535 +-0.0175068 4.140474 0.05836535 +-0.01161267 4.140474 0.05836535 +-0.005718534 4.140474 0.05836535 +0.0001755984 4.140474 0.05836535 +0.006069731 4.140474 0.05836535 +0.01197402 4.140474 0.05836535 +0.01903886 4.140474 0.05836535 +0.02852504 4.140474 0.05836535 +0.04126244 4.140474 0.05836535 +0.05836535 4.140474 0.05836535 +0.08132997 4.140474 0.05836535 +0.1121653 4.140474 0.05836535 +0.1535689 4.140474 0.05836535 +0.2091628 4.140474 0.05836535 +0.2838106 4.140474 0.05836535 +0.3840425 4.140474 0.05836535 +0.518627 4.140474 0.05836535 +0.6993381 4.140474 0.05836535 +0.9419845 4.140474 0.05836535 +1.267794 4.140474 0.05836535 +1.705268 4.140474 0.05836535 +2.292679 4.140474 0.05836535 +3.081414 4.140474 0.05836535 +4.140474 4.140474 0.05836535 +5.562508 4.140474 0.05836535 +7.471917 4.140474 0.05836535 +10.03574 4.140474 0.05836535 +13.47828 4.140474 0.05836535 +18.10068 4.140474 0.05836535 +24.30731 4.140474 0.05836535 +32.64117 4.140474 0.05836535 +43.83129 4.140474 0.05836535 +58.85664 4.140474 0.05836535 +-0.0175068 5.562508 0.05836535 +-0.01161267 5.562508 0.05836535 +-0.005718534 5.562508 0.05836535 +0.0001755984 5.562508 0.05836535 +0.006069731 5.562508 0.05836535 +0.01197402 5.562508 0.05836535 +0.01903886 5.562508 0.05836535 +0.02852504 5.562508 0.05836535 +0.04126244 5.562508 0.05836535 +0.05836535 5.562508 0.05836535 +0.08132997 5.562508 0.05836535 +0.1121653 5.562508 0.05836535 +0.1535689 5.562508 0.05836535 +0.2091628 5.562508 0.05836535 +0.2838106 5.562508 0.05836535 +0.3840425 5.562508 0.05836535 +0.518627 5.562508 0.05836535 +0.6993381 5.562508 0.05836535 +0.9419845 5.562508 0.05836535 +1.267794 5.562508 0.05836535 +1.705268 5.562508 0.05836535 +2.292679 5.562508 0.05836535 +3.081414 5.562508 0.05836535 +4.140474 5.562508 0.05836535 +5.562508 5.562508 0.05836535 +7.471917 5.562508 0.05836535 +10.03574 5.562508 0.05836535 +13.47828 5.562508 0.05836535 +18.10068 5.562508 0.05836535 +24.30731 5.562508 0.05836535 +32.64117 5.562508 0.05836535 +43.83129 5.562508 0.05836535 +58.85664 5.562508 0.05836535 +-0.0175068 7.471917 0.05836535 +-0.01161267 7.471917 0.05836535 +-0.005718534 7.471917 0.05836535 +0.0001755984 7.471917 0.05836535 +0.006069731 7.471917 0.05836535 +0.01197402 7.471917 0.05836535 +0.01903886 7.471917 0.05836535 +0.02852504 7.471917 0.05836535 +0.04126244 7.471917 0.05836535 +0.05836535 7.471917 0.05836535 +0.08132997 7.471917 0.05836535 +0.1121653 7.471917 0.05836535 +0.1535689 7.471917 0.05836535 +0.2091628 7.471917 0.05836535 +0.2838106 7.471917 0.05836535 +0.3840425 7.471917 0.05836535 +0.518627 7.471917 0.05836535 +0.6993381 7.471917 0.05836535 +0.9419845 7.471917 0.05836535 +1.267794 7.471917 0.05836535 +1.705268 7.471917 0.05836535 +2.292679 7.471917 0.05836535 +3.081414 7.471917 0.05836535 +4.140474 7.471917 0.05836535 +5.562508 7.471917 0.05836535 +7.471917 7.471917 0.05836535 +10.03574 7.471917 0.05836535 +13.47828 7.471917 0.05836535 +18.10068 7.471917 0.05836535 +24.30731 7.471917 0.05836535 +32.64117 7.471917 0.05836535 +43.83129 7.471917 0.05836535 +58.85664 7.471917 0.05836535 +-0.0175068 10.03574 0.05836535 +-0.01161267 10.03574 0.05836535 +-0.005718534 10.03574 0.05836535 +0.0001755984 10.03574 0.05836535 +0.006069731 10.03574 0.05836535 +0.01197402 10.03574 0.05836535 +0.01903886 10.03574 0.05836535 +0.02852504 10.03574 0.05836535 +0.04126244 10.03574 0.05836535 +0.05836535 10.03574 0.05836535 +0.08132997 10.03574 0.05836535 +0.1121653 10.03574 0.05836535 +0.1535689 10.03574 0.05836535 +0.2091628 10.03574 0.05836535 +0.2838106 10.03574 0.05836535 +0.3840425 10.03574 0.05836535 +0.518627 10.03574 0.05836535 +0.6993381 10.03574 0.05836535 +0.9419845 10.03574 0.05836535 +1.267794 10.03574 0.05836535 +1.705268 10.03574 0.05836535 +2.292679 10.03574 0.05836535 +3.081414 10.03574 0.05836535 +4.140474 10.03574 0.05836535 +5.562508 10.03574 0.05836535 +7.471917 10.03574 0.05836535 +10.03574 10.03574 0.05836535 +13.47828 10.03574 0.05836535 +18.10068 10.03574 0.05836535 +24.30731 10.03574 0.05836535 +32.64117 10.03574 0.05836535 +43.83129 10.03574 0.05836535 +58.85664 10.03574 0.05836535 +-0.0175068 13.47828 0.05836535 +-0.01161267 13.47828 0.05836535 +-0.005718534 13.47828 0.05836535 +0.0001755984 13.47828 0.05836535 +0.006069731 13.47828 0.05836535 +0.01197402 13.47828 0.05836535 +0.01903886 13.47828 0.05836535 +0.02852504 13.47828 0.05836535 +0.04126244 13.47828 0.05836535 +0.05836535 13.47828 0.05836535 +0.08132997 13.47828 0.05836535 +0.1121653 13.47828 0.05836535 +0.1535689 13.47828 0.05836535 +0.2091628 13.47828 0.05836535 +0.2838106 13.47828 0.05836535 +0.3840425 13.47828 0.05836535 +0.518627 13.47828 0.05836535 +0.6993381 13.47828 0.05836535 +0.9419845 13.47828 0.05836535 +1.267794 13.47828 0.05836535 +1.705268 13.47828 0.05836535 +2.292679 13.47828 0.05836535 +3.081414 13.47828 0.05836535 +4.140474 13.47828 0.05836535 +5.562508 13.47828 0.05836535 +7.471917 13.47828 0.05836535 +10.03574 13.47828 0.05836535 +13.47828 13.47828 0.05836535 +18.10068 13.47828 0.05836535 +24.30731 13.47828 0.05836535 +32.64117 13.47828 0.05836535 +43.83129 13.47828 0.05836535 +58.85664 13.47828 0.05836535 +-0.0175068 18.10068 0.05836535 +-0.01161267 18.10068 0.05836535 +-0.005718534 18.10068 0.05836535 +0.0001755984 18.10068 0.05836535 +0.006069731 18.10068 0.05836535 +0.01197402 18.10068 0.05836535 +0.01903886 18.10068 0.05836535 +0.02852504 18.10068 0.05836535 +0.04126244 18.10068 0.05836535 +0.05836535 18.10068 0.05836535 +0.08132997 18.10068 0.05836535 +0.1121653 18.10068 0.05836535 +0.1535689 18.10068 0.05836535 +0.2091628 18.10068 0.05836535 +0.2838106 18.10068 0.05836535 +0.3840425 18.10068 0.05836535 +0.518627 18.10068 0.05836535 +0.6993381 18.10068 0.05836535 +0.9419845 18.10068 0.05836535 +1.267794 18.10068 0.05836535 +1.705268 18.10068 0.05836535 +2.292679 18.10068 0.05836535 +3.081414 18.10068 0.05836535 +4.140474 18.10068 0.05836535 +5.562508 18.10068 0.05836535 +7.471917 18.10068 0.05836535 +10.03574 18.10068 0.05836535 +13.47828 18.10068 0.05836535 +18.10068 18.10068 0.05836535 +24.30731 18.10068 0.05836535 +32.64117 18.10068 0.05836535 +43.83129 18.10068 0.05836535 +58.85664 18.10068 0.05836535 +-0.0175068 24.30731 0.05836535 +-0.01161267 24.30731 0.05836535 +-0.005718534 24.30731 0.05836535 +0.0001755984 24.30731 0.05836535 +0.006069731 24.30731 0.05836535 +0.01197402 24.30731 0.05836535 +0.01903886 24.30731 0.05836535 +0.02852504 24.30731 0.05836535 +0.04126244 24.30731 0.05836535 +0.05836535 24.30731 0.05836535 +0.08132997 24.30731 0.05836535 +0.1121653 24.30731 0.05836535 +0.1535689 24.30731 0.05836535 +0.2091628 24.30731 0.05836535 +0.2838106 24.30731 0.05836535 +0.3840425 24.30731 0.05836535 +0.518627 24.30731 0.05836535 +0.6993381 24.30731 0.05836535 +0.9419845 24.30731 0.05836535 +1.267794 24.30731 0.05836535 +1.705268 24.30731 0.05836535 +2.292679 24.30731 0.05836535 +3.081414 24.30731 0.05836535 +4.140474 24.30731 0.05836535 +5.562508 24.30731 0.05836535 +7.471917 24.30731 0.05836535 +10.03574 24.30731 0.05836535 +13.47828 24.30731 0.05836535 +18.10068 24.30731 0.05836535 +24.30731 24.30731 0.05836535 +32.64117 24.30731 0.05836535 +43.83129 24.30731 0.05836535 +58.85664 24.30731 0.05836535 +-0.0175068 32.64117 0.05836535 +-0.01161267 32.64117 0.05836535 +-0.005718534 32.64117 0.05836535 +0.0001755984 32.64117 0.05836535 +0.006069731 32.64117 0.05836535 +0.01197402 32.64117 0.05836535 +0.01903886 32.64117 0.05836535 +0.02852504 32.64117 0.05836535 +0.04126244 32.64117 0.05836535 +0.05836535 32.64117 0.05836535 +0.08132997 32.64117 0.05836535 +0.1121653 32.64117 0.05836535 +0.1535689 32.64117 0.05836535 +0.2091628 32.64117 0.05836535 +0.2838106 32.64117 0.05836535 +0.3840425 32.64117 0.05836535 +0.518627 32.64117 0.05836535 +0.6993381 32.64117 0.05836535 +0.9419845 32.64117 0.05836535 +1.267794 32.64117 0.05836535 +1.705268 32.64117 0.05836535 +2.292679 32.64117 0.05836535 +3.081414 32.64117 0.05836535 +4.140474 32.64117 0.05836535 +5.562508 32.64117 0.05836535 +7.471917 32.64117 0.05836535 +10.03574 32.64117 0.05836535 +13.47828 32.64117 0.05836535 +18.10068 32.64117 0.05836535 +24.30731 32.64117 0.05836535 +32.64117 32.64117 0.05836535 +43.83129 32.64117 0.05836535 +58.85664 32.64117 0.05836535 +-0.0175068 43.83129 0.05836535 +-0.01161267 43.83129 0.05836535 +-0.005718534 43.83129 0.05836535 +0.0001755984 43.83129 0.05836535 +0.006069731 43.83129 0.05836535 +0.01197402 43.83129 0.05836535 +0.01903886 43.83129 0.05836535 +0.02852504 43.83129 0.05836535 +0.04126244 43.83129 0.05836535 +0.05836535 43.83129 0.05836535 +0.08132997 43.83129 0.05836535 +0.1121653 43.83129 0.05836535 +0.1535689 43.83129 0.05836535 +0.2091628 43.83129 0.05836535 +0.2838106 43.83129 0.05836535 +0.3840425 43.83129 0.05836535 +0.518627 43.83129 0.05836535 +0.6993381 43.83129 0.05836535 +0.9419845 43.83129 0.05836535 +1.267794 43.83129 0.05836535 +1.705268 43.83129 0.05836535 +2.292679 43.83129 0.05836535 +3.081414 43.83129 0.05836535 +4.140474 43.83129 0.05836535 +5.562508 43.83129 0.05836535 +7.471917 43.83129 0.05836535 +10.03574 43.83129 0.05836535 +13.47828 43.83129 0.05836535 +18.10068 43.83129 0.05836535 +24.30731 43.83129 0.05836535 +32.64117 43.83129 0.05836535 +43.83129 43.83129 0.05836535 +58.85664 43.83129 0.05836535 +-0.0175068 58.85664 0.05836535 +-0.01161267 58.85664 0.05836535 +-0.005718534 58.85664 0.05836535 +0.0001755984 58.85664 0.05836535 +0.006069731 58.85664 0.05836535 +0.01197402 58.85664 0.05836535 +0.01903886 58.85664 0.05836535 +0.02852504 58.85664 0.05836535 +0.04126244 58.85664 0.05836535 +0.05836535 58.85664 0.05836535 +0.08132997 58.85664 0.05836535 +0.1121653 58.85664 0.05836535 +0.1535689 58.85664 0.05836535 +0.2091628 58.85664 0.05836535 +0.2838106 58.85664 0.05836535 +0.3840425 58.85664 0.05836535 +0.518627 58.85664 0.05836535 +0.6993381 58.85664 0.05836535 +0.9419845 58.85664 0.05836535 +1.267794 58.85664 0.05836535 +1.705268 58.85664 0.05836535 +2.292679 58.85664 0.05836535 +3.081414 58.85664 0.05836535 +4.140474 58.85664 0.05836535 +5.562508 58.85664 0.05836535 +7.471917 58.85664 0.05836535 +10.03574 58.85664 0.05836535 +13.47828 58.85664 0.05836535 +18.10068 58.85664 0.05836535 +24.30731 58.85664 0.05836535 +32.64117 58.85664 0.05836535 +43.83129 58.85664 0.05836535 +58.85664 58.85664 0.05836535 +-0.0175068 -0.0175068 0.08132997 +-0.01161267 -0.0175068 0.08132997 +-0.005718534 -0.0175068 0.08132997 +0.0001755984 -0.0175068 0.08132997 +0.006069731 -0.0175068 0.08132997 +0.01197402 -0.0175068 0.08132997 +0.01903886 -0.0175068 0.08132997 +0.02852504 -0.0175068 0.08132997 +0.04126244 -0.0175068 0.08132997 +0.05836535 -0.0175068 0.08132997 +0.08132997 -0.0175068 0.08132997 +0.1121653 -0.0175068 0.08132997 +0.1535689 -0.0175068 0.08132997 +0.2091628 -0.0175068 0.08132997 +0.2838106 -0.0175068 0.08132997 +0.3840425 -0.0175068 0.08132997 +0.518627 -0.0175068 0.08132997 +0.6993381 -0.0175068 0.08132997 +0.9419845 -0.0175068 0.08132997 +1.267794 -0.0175068 0.08132997 +1.705268 -0.0175068 0.08132997 +2.292679 -0.0175068 0.08132997 +3.081414 -0.0175068 0.08132997 +4.140474 -0.0175068 0.08132997 +5.562508 -0.0175068 0.08132997 +7.471917 -0.0175068 0.08132997 +10.03574 -0.0175068 0.08132997 +13.47828 -0.0175068 0.08132997 +18.10068 -0.0175068 0.08132997 +24.30731 -0.0175068 0.08132997 +32.64117 -0.0175068 0.08132997 +43.83129 -0.0175068 0.08132997 +58.85664 -0.0175068 0.08132997 +-0.0175068 -0.01161267 0.08132997 +-0.01161267 -0.01161267 0.08132997 +-0.005718534 -0.01161267 0.08132997 +0.0001755984 -0.01161267 0.08132997 +0.006069731 -0.01161267 0.08132997 +0.01197402 -0.01161267 0.08132997 +0.01903886 -0.01161267 0.08132997 +0.02852504 -0.01161267 0.08132997 +0.04126244 -0.01161267 0.08132997 +0.05836535 -0.01161267 0.08132997 +0.08132997 -0.01161267 0.08132997 +0.1121653 -0.01161267 0.08132997 +0.1535689 -0.01161267 0.08132997 +0.2091628 -0.01161267 0.08132997 +0.2838106 -0.01161267 0.08132997 +0.3840425 -0.01161267 0.08132997 +0.518627 -0.01161267 0.08132997 +0.6993381 -0.01161267 0.08132997 +0.9419845 -0.01161267 0.08132997 +1.267794 -0.01161267 0.08132997 +1.705268 -0.01161267 0.08132997 +2.292679 -0.01161267 0.08132997 +3.081414 -0.01161267 0.08132997 +4.140474 -0.01161267 0.08132997 +5.562508 -0.01161267 0.08132997 +7.471917 -0.01161267 0.08132997 +10.03574 -0.01161267 0.08132997 +13.47828 -0.01161267 0.08132997 +18.10068 -0.01161267 0.08132997 +24.30731 -0.01161267 0.08132997 +32.64117 -0.01161267 0.08132997 +43.83129 -0.01161267 0.08132997 +58.85664 -0.01161267 0.08132997 +-0.0175068 -0.005718534 0.08132997 +-0.01161267 -0.005718534 0.08132997 +-0.005718534 -0.005718534 0.08132997 +0.0001755984 -0.005718534 0.08132997 +0.006069731 -0.005718534 0.08132997 +0.01197402 -0.005718534 0.08132997 +0.01903886 -0.005718534 0.08132997 +0.02852504 -0.005718534 0.08132997 +0.04126244 -0.005718534 0.08132997 +0.05836535 -0.005718534 0.08132997 +0.08132997 -0.005718534 0.08132997 +0.1121653 -0.005718534 0.08132997 +0.1535689 -0.005718534 0.08132997 +0.2091628 -0.005718534 0.08132997 +0.2838106 -0.005718534 0.08132997 +0.3840425 -0.005718534 0.08132997 +0.518627 -0.005718534 0.08132997 +0.6993381 -0.005718534 0.08132997 +0.9419845 -0.005718534 0.08132997 +1.267794 -0.005718534 0.08132997 +1.705268 -0.005718534 0.08132997 +2.292679 -0.005718534 0.08132997 +3.081414 -0.005718534 0.08132997 +4.140474 -0.005718534 0.08132997 +5.562508 -0.005718534 0.08132997 +7.471917 -0.005718534 0.08132997 +10.03574 -0.005718534 0.08132997 +13.47828 -0.005718534 0.08132997 +18.10068 -0.005718534 0.08132997 +24.30731 -0.005718534 0.08132997 +32.64117 -0.005718534 0.08132997 +43.83129 -0.005718534 0.08132997 +58.85664 -0.005718534 0.08132997 +-0.0175068 0.0001755984 0.08132997 +-0.01161267 0.0001755984 0.08132997 +-0.005718534 0.0001755984 0.08132997 +0.0001755984 0.0001755984 0.08132997 +0.006069731 0.0001755984 0.08132997 +0.01197402 0.0001755984 0.08132997 +0.01903886 0.0001755984 0.08132997 +0.02852504 0.0001755984 0.08132997 +0.04126244 0.0001755984 0.08132997 +0.05836535 0.0001755984 0.08132997 +0.08132997 0.0001755984 0.08132997 +0.1121653 0.0001755984 0.08132997 +0.1535689 0.0001755984 0.08132997 +0.2091628 0.0001755984 0.08132997 +0.2838106 0.0001755984 0.08132997 +0.3840425 0.0001755984 0.08132997 +0.518627 0.0001755984 0.08132997 +0.6993381 0.0001755984 0.08132997 +0.9419845 0.0001755984 0.08132997 +1.267794 0.0001755984 0.08132997 +1.705268 0.0001755984 0.08132997 +2.292679 0.0001755984 0.08132997 +3.081414 0.0001755984 0.08132997 +4.140474 0.0001755984 0.08132997 +5.562508 0.0001755984 0.08132997 +7.471917 0.0001755984 0.08132997 +10.03574 0.0001755984 0.08132997 +13.47828 0.0001755984 0.08132997 +18.10068 0.0001755984 0.08132997 +24.30731 0.0001755984 0.08132997 +32.64117 0.0001755984 0.08132997 +43.83129 0.0001755984 0.08132997 +58.85664 0.0001755984 0.08132997 +-0.0175068 0.006069731 0.08132997 +-0.01161267 0.006069731 0.08132997 +-0.005718534 0.006069731 0.08132997 +0.0001755984 0.006069731 0.08132997 +0.006069731 0.006069731 0.08132997 +0.01197402 0.006069731 0.08132997 +0.01903886 0.006069731 0.08132997 +0.02852504 0.006069731 0.08132997 +0.04126244 0.006069731 0.08132997 +0.05836535 0.006069731 0.08132997 +0.08132997 0.006069731 0.08132997 +0.1121653 0.006069731 0.08132997 +0.1535689 0.006069731 0.08132997 +0.2091628 0.006069731 0.08132997 +0.2838106 0.006069731 0.08132997 +0.3840425 0.006069731 0.08132997 +0.518627 0.006069731 0.08132997 +0.6993381 0.006069731 0.08132997 +0.9419845 0.006069731 0.08132997 +1.267794 0.006069731 0.08132997 +1.705268 0.006069731 0.08132997 +2.292679 0.006069731 0.08132997 +3.081414 0.006069731 0.08132997 +4.140474 0.006069731 0.08132997 +5.562508 0.006069731 0.08132997 +7.471917 0.006069731 0.08132997 +10.03574 0.006069731 0.08132997 +13.47828 0.006069731 0.08132997 +18.10068 0.006069731 0.08132997 +24.30731 0.006069731 0.08132997 +32.64117 0.006069731 0.08132997 +43.83129 0.006069731 0.08132997 +58.85664 0.006069731 0.08132997 +-0.0175068 0.01197402 0.08132997 +-0.01161267 0.01197402 0.08132997 +-0.005718534 0.01197402 0.08132997 +0.0001755984 0.01197402 0.08132997 +0.006069731 0.01197402 0.08132997 +0.01197402 0.01197402 0.08132997 +0.01903886 0.01197402 0.08132997 +0.02852504 0.01197402 0.08132997 +0.04126244 0.01197402 0.08132997 +0.05836535 0.01197402 0.08132997 +0.08132997 0.01197402 0.08132997 +0.1121653 0.01197402 0.08132997 +0.1535689 0.01197402 0.08132997 +0.2091628 0.01197402 0.08132997 +0.2838106 0.01197402 0.08132997 +0.3840425 0.01197402 0.08132997 +0.518627 0.01197402 0.08132997 +0.6993381 0.01197402 0.08132997 +0.9419845 0.01197402 0.08132997 +1.267794 0.01197402 0.08132997 +1.705268 0.01197402 0.08132997 +2.292679 0.01197402 0.08132997 +3.081414 0.01197402 0.08132997 +4.140474 0.01197402 0.08132997 +5.562508 0.01197402 0.08132997 +7.471917 0.01197402 0.08132997 +10.03574 0.01197402 0.08132997 +13.47828 0.01197402 0.08132997 +18.10068 0.01197402 0.08132997 +24.30731 0.01197402 0.08132997 +32.64117 0.01197402 0.08132997 +43.83129 0.01197402 0.08132997 +58.85664 0.01197402 0.08132997 +-0.0175068 0.01903886 0.08132997 +-0.01161267 0.01903886 0.08132997 +-0.005718534 0.01903886 0.08132997 +0.0001755984 0.01903886 0.08132997 +0.006069731 0.01903886 0.08132997 +0.01197402 0.01903886 0.08132997 +0.01903886 0.01903886 0.08132997 +0.02852504 0.01903886 0.08132997 +0.04126244 0.01903886 0.08132997 +0.05836535 0.01903886 0.08132997 +0.08132997 0.01903886 0.08132997 +0.1121653 0.01903886 0.08132997 +0.1535689 0.01903886 0.08132997 +0.2091628 0.01903886 0.08132997 +0.2838106 0.01903886 0.08132997 +0.3840425 0.01903886 0.08132997 +0.518627 0.01903886 0.08132997 +0.6993381 0.01903886 0.08132997 +0.9419845 0.01903886 0.08132997 +1.267794 0.01903886 0.08132997 +1.705268 0.01903886 0.08132997 +2.292679 0.01903886 0.08132997 +3.081414 0.01903886 0.08132997 +4.140474 0.01903886 0.08132997 +5.562508 0.01903886 0.08132997 +7.471917 0.01903886 0.08132997 +10.03574 0.01903886 0.08132997 +13.47828 0.01903886 0.08132997 +18.10068 0.01903886 0.08132997 +24.30731 0.01903886 0.08132997 +32.64117 0.01903886 0.08132997 +43.83129 0.01903886 0.08132997 +58.85664 0.01903886 0.08132997 +-0.0175068 0.02852504 0.08132997 +-0.01161267 0.02852504 0.08132997 +-0.005718534 0.02852504 0.08132997 +0.0001755984 0.02852504 0.08132997 +0.006069731 0.02852504 0.08132997 +0.01197402 0.02852504 0.08132997 +0.01903886 0.02852504 0.08132997 +0.02852504 0.02852504 0.08132997 +0.04126244 0.02852504 0.08132997 +0.05836535 0.02852504 0.08132997 +0.08132997 0.02852504 0.08132997 +0.1121653 0.02852504 0.08132997 +0.1535689 0.02852504 0.08132997 +0.2091628 0.02852504 0.08132997 +0.2838106 0.02852504 0.08132997 +0.3840425 0.02852504 0.08132997 +0.518627 0.02852504 0.08132997 +0.6993381 0.02852504 0.08132997 +0.9419845 0.02852504 0.08132997 +1.267794 0.02852504 0.08132997 +1.705268 0.02852504 0.08132997 +2.292679 0.02852504 0.08132997 +3.081414 0.02852504 0.08132997 +4.140474 0.02852504 0.08132997 +5.562508 0.02852504 0.08132997 +7.471917 0.02852504 0.08132997 +10.03574 0.02852504 0.08132997 +13.47828 0.02852504 0.08132997 +18.10068 0.02852504 0.08132997 +24.30731 0.02852504 0.08132997 +32.64117 0.02852504 0.08132997 +43.83129 0.02852504 0.08132997 +58.85664 0.02852504 0.08132997 +-0.0175068 0.04126244 0.08132997 +-0.01161267 0.04126244 0.08132997 +-0.005718534 0.04126244 0.08132997 +0.0001755984 0.04126244 0.08132997 +0.006069731 0.04126244 0.08132997 +0.01197402 0.04126244 0.08132997 +0.01903886 0.04126244 0.08132997 +0.02852504 0.04126244 0.08132997 +0.04126244 0.04126244 0.08132997 +0.05836535 0.04126244 0.08132997 +0.08132997 0.04126244 0.08132997 +0.1121653 0.04126244 0.08132997 +0.1535689 0.04126244 0.08132997 +0.2091628 0.04126244 0.08132997 +0.2838106 0.04126244 0.08132997 +0.3840425 0.04126244 0.08132997 +0.518627 0.04126244 0.08132997 +0.6993381 0.04126244 0.08132997 +0.9419845 0.04126244 0.08132997 +1.267794 0.04126244 0.08132997 +1.705268 0.04126244 0.08132997 +2.292679 0.04126244 0.08132997 +3.081414 0.04126244 0.08132997 +4.140474 0.04126244 0.08132997 +5.562508 0.04126244 0.08132997 +7.471917 0.04126244 0.08132997 +10.03574 0.04126244 0.08132997 +13.47828 0.04126244 0.08132997 +18.10068 0.04126244 0.08132997 +24.30731 0.04126244 0.08132997 +32.64117 0.04126244 0.08132997 +43.83129 0.04126244 0.08132997 +58.85664 0.04126244 0.08132997 +-0.0175068 0.05836535 0.08132997 +-0.01161267 0.05836535 0.08132997 +-0.005718534 0.05836535 0.08132997 +0.0001755984 0.05836535 0.08132997 +0.006069731 0.05836535 0.08132997 +0.01197402 0.05836535 0.08132997 +0.01903886 0.05836535 0.08132997 +0.02852504 0.05836535 0.08132997 +0.04126244 0.05836535 0.08132997 +0.05836535 0.05836535 0.08132997 +0.08132997 0.05836535 0.08132997 +0.1121653 0.05836535 0.08132997 +0.1535689 0.05836535 0.08132997 +0.2091628 0.05836535 0.08132997 +0.2838106 0.05836535 0.08132997 +0.3840425 0.05836535 0.08132997 +0.518627 0.05836535 0.08132997 +0.6993381 0.05836535 0.08132997 +0.9419845 0.05836535 0.08132997 +1.267794 0.05836535 0.08132997 +1.705268 0.05836535 0.08132997 +2.292679 0.05836535 0.08132997 +3.081414 0.05836535 0.08132997 +4.140474 0.05836535 0.08132997 +5.562508 0.05836535 0.08132997 +7.471917 0.05836535 0.08132997 +10.03574 0.05836535 0.08132997 +13.47828 0.05836535 0.08132997 +18.10068 0.05836535 0.08132997 +24.30731 0.05836535 0.08132997 +32.64117 0.05836535 0.08132997 +43.83129 0.05836535 0.08132997 +58.85664 0.05836535 0.08132997 +-0.0175068 0.08132997 0.08132997 +-0.01161267 0.08132997 0.08132997 +-0.005718534 0.08132997 0.08132997 +0.0001755984 0.08132997 0.08132997 +0.006069731 0.08132997 0.08132997 +0.01197402 0.08132997 0.08132997 +0.01903886 0.08132997 0.08132997 +0.02852504 0.08132997 0.08132997 +0.04126244 0.08132997 0.08132997 +0.05836535 0.08132997 0.08132997 +0.08132997 0.08132997 0.08132997 +0.1121653 0.08132997 0.08132997 +0.1535689 0.08132997 0.08132997 +0.2091628 0.08132997 0.08132997 +0.2838106 0.08132997 0.08132997 +0.3840425 0.08132997 0.08132997 +0.518627 0.08132997 0.08132997 +0.6993381 0.08132997 0.08132997 +0.9419845 0.08132997 0.08132997 +1.267794 0.08132997 0.08132997 +1.705268 0.08132997 0.08132997 +2.292679 0.08132997 0.08132997 +3.081414 0.08132997 0.08132997 +4.140474 0.08132997 0.08132997 +5.562508 0.08132997 0.08132997 +7.471917 0.08132997 0.08132997 +10.03574 0.08132997 0.08132997 +13.47828 0.08132997 0.08132997 +18.10068 0.08132997 0.08132997 +24.30731 0.08132997 0.08132997 +32.64117 0.08132997 0.08132997 +43.83129 0.08132997 0.08132997 +58.85664 0.08132997 0.08132997 +-0.0175068 0.1121653 0.08132997 +-0.01161267 0.1121653 0.08132997 +-0.005718534 0.1121653 0.08132997 +0.0001755984 0.1121653 0.08132997 +0.006069731 0.1121653 0.08132997 +0.01197402 0.1121653 0.08132997 +0.01903886 0.1121653 0.08132997 +0.02852504 0.1121653 0.08132997 +0.04126244 0.1121653 0.08132997 +0.05836535 0.1121653 0.08132997 +0.08132997 0.1121653 0.08132997 +0.1121653 0.1121653 0.08132997 +0.1535689 0.1121653 0.08132997 +0.2091628 0.1121653 0.08132997 +0.2838106 0.1121653 0.08132997 +0.3840425 0.1121653 0.08132997 +0.518627 0.1121653 0.08132997 +0.6993381 0.1121653 0.08132997 +0.9419845 0.1121653 0.08132997 +1.267794 0.1121653 0.08132997 +1.705268 0.1121653 0.08132997 +2.292679 0.1121653 0.08132997 +3.081414 0.1121653 0.08132997 +4.140474 0.1121653 0.08132997 +5.562508 0.1121653 0.08132997 +7.471917 0.1121653 0.08132997 +10.03574 0.1121653 0.08132997 +13.47828 0.1121653 0.08132997 +18.10068 0.1121653 0.08132997 +24.30731 0.1121653 0.08132997 +32.64117 0.1121653 0.08132997 +43.83129 0.1121653 0.08132997 +58.85664 0.1121653 0.08132997 +-0.0175068 0.1535689 0.08132997 +-0.01161267 0.1535689 0.08132997 +-0.005718534 0.1535689 0.08132997 +0.0001755984 0.1535689 0.08132997 +0.006069731 0.1535689 0.08132997 +0.01197402 0.1535689 0.08132997 +0.01903886 0.1535689 0.08132997 +0.02852504 0.1535689 0.08132997 +0.04126244 0.1535689 0.08132997 +0.05836535 0.1535689 0.08132997 +0.08132997 0.1535689 0.08132997 +0.1121653 0.1535689 0.08132997 +0.1535689 0.1535689 0.08132997 +0.2091628 0.1535689 0.08132997 +0.2838106 0.1535689 0.08132997 +0.3840425 0.1535689 0.08132997 +0.518627 0.1535689 0.08132997 +0.6993381 0.1535689 0.08132997 +0.9419845 0.1535689 0.08132997 +1.267794 0.1535689 0.08132997 +1.705268 0.1535689 0.08132997 +2.292679 0.1535689 0.08132997 +3.081414 0.1535689 0.08132997 +4.140474 0.1535689 0.08132997 +5.562508 0.1535689 0.08132997 +7.471917 0.1535689 0.08132997 +10.03574 0.1535689 0.08132997 +13.47828 0.1535689 0.08132997 +18.10068 0.1535689 0.08132997 +24.30731 0.1535689 0.08132997 +32.64117 0.1535689 0.08132997 +43.83129 0.1535689 0.08132997 +58.85664 0.1535689 0.08132997 +-0.0175068 0.2091628 0.08132997 +-0.01161267 0.2091628 0.08132997 +-0.005718534 0.2091628 0.08132997 +0.0001755984 0.2091628 0.08132997 +0.006069731 0.2091628 0.08132997 +0.01197402 0.2091628 0.08132997 +0.01903886 0.2091628 0.08132997 +0.02852504 0.2091628 0.08132997 +0.04126244 0.2091628 0.08132997 +0.05836535 0.2091628 0.08132997 +0.08132997 0.2091628 0.08132997 +0.1121653 0.2091628 0.08132997 +0.1535689 0.2091628 0.08132997 +0.2091628 0.2091628 0.08132997 +0.2838106 0.2091628 0.08132997 +0.3840425 0.2091628 0.08132997 +0.518627 0.2091628 0.08132997 +0.6993381 0.2091628 0.08132997 +0.9419845 0.2091628 0.08132997 +1.267794 0.2091628 0.08132997 +1.705268 0.2091628 0.08132997 +2.292679 0.2091628 0.08132997 +3.081414 0.2091628 0.08132997 +4.140474 0.2091628 0.08132997 +5.562508 0.2091628 0.08132997 +7.471917 0.2091628 0.08132997 +10.03574 0.2091628 0.08132997 +13.47828 0.2091628 0.08132997 +18.10068 0.2091628 0.08132997 +24.30731 0.2091628 0.08132997 +32.64117 0.2091628 0.08132997 +43.83129 0.2091628 0.08132997 +58.85664 0.2091628 0.08132997 +-0.0175068 0.2838106 0.08132997 +-0.01161267 0.2838106 0.08132997 +-0.005718534 0.2838106 0.08132997 +0.0001755984 0.2838106 0.08132997 +0.006069731 0.2838106 0.08132997 +0.01197402 0.2838106 0.08132997 +0.01903886 0.2838106 0.08132997 +0.02852504 0.2838106 0.08132997 +0.04126244 0.2838106 0.08132997 +0.05836535 0.2838106 0.08132997 +0.08132997 0.2838106 0.08132997 +0.1121653 0.2838106 0.08132997 +0.1535689 0.2838106 0.08132997 +0.2091628 0.2838106 0.08132997 +0.2838106 0.2838106 0.08132997 +0.3840425 0.2838106 0.08132997 +0.518627 0.2838106 0.08132997 +0.6993381 0.2838106 0.08132997 +0.9419845 0.2838106 0.08132997 +1.267794 0.2838106 0.08132997 +1.705268 0.2838106 0.08132997 +2.292679 0.2838106 0.08132997 +3.081414 0.2838106 0.08132997 +4.140474 0.2838106 0.08132997 +5.562508 0.2838106 0.08132997 +7.471917 0.2838106 0.08132997 +10.03574 0.2838106 0.08132997 +13.47828 0.2838106 0.08132997 +18.10068 0.2838106 0.08132997 +24.30731 0.2838106 0.08132997 +32.64117 0.2838106 0.08132997 +43.83129 0.2838106 0.08132997 +58.85664 0.2838106 0.08132997 +-0.0175068 0.3840425 0.08132997 +-0.01161267 0.3840425 0.08132997 +-0.005718534 0.3840425 0.08132997 +0.0001755984 0.3840425 0.08132997 +0.006069731 0.3840425 0.08132997 +0.01197402 0.3840425 0.08132997 +0.01903886 0.3840425 0.08132997 +0.02852504 0.3840425 0.08132997 +0.04126244 0.3840425 0.08132997 +0.05836535 0.3840425 0.08132997 +0.08132997 0.3840425 0.08132997 +0.1121653 0.3840425 0.08132997 +0.1535689 0.3840425 0.08132997 +0.2091628 0.3840425 0.08132997 +0.2838106 0.3840425 0.08132997 +0.3840425 0.3840425 0.08132997 +0.518627 0.3840425 0.08132997 +0.6993381 0.3840425 0.08132997 +0.9419845 0.3840425 0.08132997 +1.267794 0.3840425 0.08132997 +1.705268 0.3840425 0.08132997 +2.292679 0.3840425 0.08132997 +3.081414 0.3840425 0.08132997 +4.140474 0.3840425 0.08132997 +5.562508 0.3840425 0.08132997 +7.471917 0.3840425 0.08132997 +10.03574 0.3840425 0.08132997 +13.47828 0.3840425 0.08132997 +18.10068 0.3840425 0.08132997 +24.30731 0.3840425 0.08132997 +32.64117 0.3840425 0.08132997 +43.83129 0.3840425 0.08132997 +58.85664 0.3840425 0.08132997 +-0.0175068 0.518627 0.08132997 +-0.01161267 0.518627 0.08132997 +-0.005718534 0.518627 0.08132997 +0.0001755984 0.518627 0.08132997 +0.006069731 0.518627 0.08132997 +0.01197402 0.518627 0.08132997 +0.01903886 0.518627 0.08132997 +0.02852504 0.518627 0.08132997 +0.04126244 0.518627 0.08132997 +0.05836535 0.518627 0.08132997 +0.08132997 0.518627 0.08132997 +0.1121653 0.518627 0.08132997 +0.1535689 0.518627 0.08132997 +0.2091628 0.518627 0.08132997 +0.2838106 0.518627 0.08132997 +0.3840425 0.518627 0.08132997 +0.518627 0.518627 0.08132997 +0.6993381 0.518627 0.08132997 +0.9419845 0.518627 0.08132997 +1.267794 0.518627 0.08132997 +1.705268 0.518627 0.08132997 +2.292679 0.518627 0.08132997 +3.081414 0.518627 0.08132997 +4.140474 0.518627 0.08132997 +5.562508 0.518627 0.08132997 +7.471917 0.518627 0.08132997 +10.03574 0.518627 0.08132997 +13.47828 0.518627 0.08132997 +18.10068 0.518627 0.08132997 +24.30731 0.518627 0.08132997 +32.64117 0.518627 0.08132997 +43.83129 0.518627 0.08132997 +58.85664 0.518627 0.08132997 +-0.0175068 0.6993381 0.08132997 +-0.01161267 0.6993381 0.08132997 +-0.005718534 0.6993381 0.08132997 +0.0001755984 0.6993381 0.08132997 +0.006069731 0.6993381 0.08132997 +0.01197402 0.6993381 0.08132997 +0.01903886 0.6993381 0.08132997 +0.02852504 0.6993381 0.08132997 +0.04126244 0.6993381 0.08132997 +0.05836535 0.6993381 0.08132997 +0.08132997 0.6993381 0.08132997 +0.1121653 0.6993381 0.08132997 +0.1535689 0.6993381 0.08132997 +0.2091628 0.6993381 0.08132997 +0.2838106 0.6993381 0.08132997 +0.3840425 0.6993381 0.08132997 +0.518627 0.6993381 0.08132997 +0.6993381 0.6993381 0.08132997 +0.9419845 0.6993381 0.08132997 +1.267794 0.6993381 0.08132997 +1.705268 0.6993381 0.08132997 +2.292679 0.6993381 0.08132997 +3.081414 0.6993381 0.08132997 +4.140474 0.6993381 0.08132997 +5.562508 0.6993381 0.08132997 +7.471917 0.6993381 0.08132997 +10.03574 0.6993381 0.08132997 +13.47828 0.6993381 0.08132997 +18.10068 0.6993381 0.08132997 +24.30731 0.6993381 0.08132997 +32.64117 0.6993381 0.08132997 +43.83129 0.6993381 0.08132997 +58.85664 0.6993381 0.08132997 +-0.0175068 0.9419845 0.08132997 +-0.01161267 0.9419845 0.08132997 +-0.005718534 0.9419845 0.08132997 +0.0001755984 0.9419845 0.08132997 +0.006069731 0.9419845 0.08132997 +0.01197402 0.9419845 0.08132997 +0.01903886 0.9419845 0.08132997 +0.02852504 0.9419845 0.08132997 +0.04126244 0.9419845 0.08132997 +0.05836535 0.9419845 0.08132997 +0.08132997 0.9419845 0.08132997 +0.1121653 0.9419845 0.08132997 +0.1535689 0.9419845 0.08132997 +0.2091628 0.9419845 0.08132997 +0.2838106 0.9419845 0.08132997 +0.3840425 0.9419845 0.08132997 +0.518627 0.9419845 0.08132997 +0.6993381 0.9419845 0.08132997 +0.9419845 0.9419845 0.08132997 +1.267794 0.9419845 0.08132997 +1.705268 0.9419845 0.08132997 +2.292679 0.9419845 0.08132997 +3.081414 0.9419845 0.08132997 +4.140474 0.9419845 0.08132997 +5.562508 0.9419845 0.08132997 +7.471917 0.9419845 0.08132997 +10.03574 0.9419845 0.08132997 +13.47828 0.9419845 0.08132997 +18.10068 0.9419845 0.08132997 +24.30731 0.9419845 0.08132997 +32.64117 0.9419845 0.08132997 +43.83129 0.9419845 0.08132997 +58.85664 0.9419845 0.08132997 +-0.0175068 1.267794 0.08132997 +-0.01161267 1.267794 0.08132997 +-0.005718534 1.267794 0.08132997 +0.0001755984 1.267794 0.08132997 +0.006069731 1.267794 0.08132997 +0.01197402 1.267794 0.08132997 +0.01903886 1.267794 0.08132997 +0.02852504 1.267794 0.08132997 +0.04126244 1.267794 0.08132997 +0.05836535 1.267794 0.08132997 +0.08132997 1.267794 0.08132997 +0.1121653 1.267794 0.08132997 +0.1535689 1.267794 0.08132997 +0.2091628 1.267794 0.08132997 +0.2838106 1.267794 0.08132997 +0.3840425 1.267794 0.08132997 +0.518627 1.267794 0.08132997 +0.6993381 1.267794 0.08132997 +0.9419845 1.267794 0.08132997 +1.267794 1.267794 0.08132997 +1.705268 1.267794 0.08132997 +2.292679 1.267794 0.08132997 +3.081414 1.267794 0.08132997 +4.140474 1.267794 0.08132997 +5.562508 1.267794 0.08132997 +7.471917 1.267794 0.08132997 +10.03574 1.267794 0.08132997 +13.47828 1.267794 0.08132997 +18.10068 1.267794 0.08132997 +24.30731 1.267794 0.08132997 +32.64117 1.267794 0.08132997 +43.83129 1.267794 0.08132997 +58.85664 1.267794 0.08132997 +-0.0175068 1.705268 0.08132997 +-0.01161267 1.705268 0.08132997 +-0.005718534 1.705268 0.08132997 +0.0001755984 1.705268 0.08132997 +0.006069731 1.705268 0.08132997 +0.01197402 1.705268 0.08132997 +0.01903886 1.705268 0.08132997 +0.02852504 1.705268 0.08132997 +0.04126244 1.705268 0.08132997 +0.05836535 1.705268 0.08132997 +0.08132997 1.705268 0.08132997 +0.1121653 1.705268 0.08132997 +0.1535689 1.705268 0.08132997 +0.2091628 1.705268 0.08132997 +0.2838106 1.705268 0.08132997 +0.3840425 1.705268 0.08132997 +0.518627 1.705268 0.08132997 +0.6993381 1.705268 0.08132997 +0.9419845 1.705268 0.08132997 +1.267794 1.705268 0.08132997 +1.705268 1.705268 0.08132997 +2.292679 1.705268 0.08132997 +3.081414 1.705268 0.08132997 +4.140474 1.705268 0.08132997 +5.562508 1.705268 0.08132997 +7.471917 1.705268 0.08132997 +10.03574 1.705268 0.08132997 +13.47828 1.705268 0.08132997 +18.10068 1.705268 0.08132997 +24.30731 1.705268 0.08132997 +32.64117 1.705268 0.08132997 +43.83129 1.705268 0.08132997 +58.85664 1.705268 0.08132997 +-0.0175068 2.292679 0.08132997 +-0.01161267 2.292679 0.08132997 +-0.005718534 2.292679 0.08132997 +0.0001755984 2.292679 0.08132997 +0.006069731 2.292679 0.08132997 +0.01197402 2.292679 0.08132997 +0.01903886 2.292679 0.08132997 +0.02852504 2.292679 0.08132997 +0.04126244 2.292679 0.08132997 +0.05836535 2.292679 0.08132997 +0.08132997 2.292679 0.08132997 +0.1121653 2.292679 0.08132997 +0.1535689 2.292679 0.08132997 +0.2091628 2.292679 0.08132997 +0.2838106 2.292679 0.08132997 +0.3840425 2.292679 0.08132997 +0.518627 2.292679 0.08132997 +0.6993381 2.292679 0.08132997 +0.9419845 2.292679 0.08132997 +1.267794 2.292679 0.08132997 +1.705268 2.292679 0.08132997 +2.292679 2.292679 0.08132997 +3.081414 2.292679 0.08132997 +4.140474 2.292679 0.08132997 +5.562508 2.292679 0.08132997 +7.471917 2.292679 0.08132997 +10.03574 2.292679 0.08132997 +13.47828 2.292679 0.08132997 +18.10068 2.292679 0.08132997 +24.30731 2.292679 0.08132997 +32.64117 2.292679 0.08132997 +43.83129 2.292679 0.08132997 +58.85664 2.292679 0.08132997 +-0.0175068 3.081414 0.08132997 +-0.01161267 3.081414 0.08132997 +-0.005718534 3.081414 0.08132997 +0.0001755984 3.081414 0.08132997 +0.006069731 3.081414 0.08132997 +0.01197402 3.081414 0.08132997 +0.01903886 3.081414 0.08132997 +0.02852504 3.081414 0.08132997 +0.04126244 3.081414 0.08132997 +0.05836535 3.081414 0.08132997 +0.08132997 3.081414 0.08132997 +0.1121653 3.081414 0.08132997 +0.1535689 3.081414 0.08132997 +0.2091628 3.081414 0.08132997 +0.2838106 3.081414 0.08132997 +0.3840425 3.081414 0.08132997 +0.518627 3.081414 0.08132997 +0.6993381 3.081414 0.08132997 +0.9419845 3.081414 0.08132997 +1.267794 3.081414 0.08132997 +1.705268 3.081414 0.08132997 +2.292679 3.081414 0.08132997 +3.081414 3.081414 0.08132997 +4.140474 3.081414 0.08132997 +5.562508 3.081414 0.08132997 +7.471917 3.081414 0.08132997 +10.03574 3.081414 0.08132997 +13.47828 3.081414 0.08132997 +18.10068 3.081414 0.08132997 +24.30731 3.081414 0.08132997 +32.64117 3.081414 0.08132997 +43.83129 3.081414 0.08132997 +58.85664 3.081414 0.08132997 +-0.0175068 4.140474 0.08132997 +-0.01161267 4.140474 0.08132997 +-0.005718534 4.140474 0.08132997 +0.0001755984 4.140474 0.08132997 +0.006069731 4.140474 0.08132997 +0.01197402 4.140474 0.08132997 +0.01903886 4.140474 0.08132997 +0.02852504 4.140474 0.08132997 +0.04126244 4.140474 0.08132997 +0.05836535 4.140474 0.08132997 +0.08132997 4.140474 0.08132997 +0.1121653 4.140474 0.08132997 +0.1535689 4.140474 0.08132997 +0.2091628 4.140474 0.08132997 +0.2838106 4.140474 0.08132997 +0.3840425 4.140474 0.08132997 +0.518627 4.140474 0.08132997 +0.6993381 4.140474 0.08132997 +0.9419845 4.140474 0.08132997 +1.267794 4.140474 0.08132997 +1.705268 4.140474 0.08132997 +2.292679 4.140474 0.08132997 +3.081414 4.140474 0.08132997 +4.140474 4.140474 0.08132997 +5.562508 4.140474 0.08132997 +7.471917 4.140474 0.08132997 +10.03574 4.140474 0.08132997 +13.47828 4.140474 0.08132997 +18.10068 4.140474 0.08132997 +24.30731 4.140474 0.08132997 +32.64117 4.140474 0.08132997 +43.83129 4.140474 0.08132997 +58.85664 4.140474 0.08132997 +-0.0175068 5.562508 0.08132997 +-0.01161267 5.562508 0.08132997 +-0.005718534 5.562508 0.08132997 +0.0001755984 5.562508 0.08132997 +0.006069731 5.562508 0.08132997 +0.01197402 5.562508 0.08132997 +0.01903886 5.562508 0.08132997 +0.02852504 5.562508 0.08132997 +0.04126244 5.562508 0.08132997 +0.05836535 5.562508 0.08132997 +0.08132997 5.562508 0.08132997 +0.1121653 5.562508 0.08132997 +0.1535689 5.562508 0.08132997 +0.2091628 5.562508 0.08132997 +0.2838106 5.562508 0.08132997 +0.3840425 5.562508 0.08132997 +0.518627 5.562508 0.08132997 +0.6993381 5.562508 0.08132997 +0.9419845 5.562508 0.08132997 +1.267794 5.562508 0.08132997 +1.705268 5.562508 0.08132997 +2.292679 5.562508 0.08132997 +3.081414 5.562508 0.08132997 +4.140474 5.562508 0.08132997 +5.562508 5.562508 0.08132997 +7.471917 5.562508 0.08132997 +10.03574 5.562508 0.08132997 +13.47828 5.562508 0.08132997 +18.10068 5.562508 0.08132997 +24.30731 5.562508 0.08132997 +32.64117 5.562508 0.08132997 +43.83129 5.562508 0.08132997 +58.85664 5.562508 0.08132997 +-0.0175068 7.471917 0.08132997 +-0.01161267 7.471917 0.08132997 +-0.005718534 7.471917 0.08132997 +0.0001755984 7.471917 0.08132997 +0.006069731 7.471917 0.08132997 +0.01197402 7.471917 0.08132997 +0.01903886 7.471917 0.08132997 +0.02852504 7.471917 0.08132997 +0.04126244 7.471917 0.08132997 +0.05836535 7.471917 0.08132997 +0.08132997 7.471917 0.08132997 +0.1121653 7.471917 0.08132997 +0.1535689 7.471917 0.08132997 +0.2091628 7.471917 0.08132997 +0.2838106 7.471917 0.08132997 +0.3840425 7.471917 0.08132997 +0.518627 7.471917 0.08132997 +0.6993381 7.471917 0.08132997 +0.9419845 7.471917 0.08132997 +1.267794 7.471917 0.08132997 +1.705268 7.471917 0.08132997 +2.292679 7.471917 0.08132997 +3.081414 7.471917 0.08132997 +4.140474 7.471917 0.08132997 +5.562508 7.471917 0.08132997 +7.471917 7.471917 0.08132997 +10.03574 7.471917 0.08132997 +13.47828 7.471917 0.08132997 +18.10068 7.471917 0.08132997 +24.30731 7.471917 0.08132997 +32.64117 7.471917 0.08132997 +43.83129 7.471917 0.08132997 +58.85664 7.471917 0.08132997 +-0.0175068 10.03574 0.08132997 +-0.01161267 10.03574 0.08132997 +-0.005718534 10.03574 0.08132997 +0.0001755984 10.03574 0.08132997 +0.006069731 10.03574 0.08132997 +0.01197402 10.03574 0.08132997 +0.01903886 10.03574 0.08132997 +0.02852504 10.03574 0.08132997 +0.04126244 10.03574 0.08132997 +0.05836535 10.03574 0.08132997 +0.08132997 10.03574 0.08132997 +0.1121653 10.03574 0.08132997 +0.1535689 10.03574 0.08132997 +0.2091628 10.03574 0.08132997 +0.2838106 10.03574 0.08132997 +0.3840425 10.03574 0.08132997 +0.518627 10.03574 0.08132997 +0.6993381 10.03574 0.08132997 +0.9419845 10.03574 0.08132997 +1.267794 10.03574 0.08132997 +1.705268 10.03574 0.08132997 +2.292679 10.03574 0.08132997 +3.081414 10.03574 0.08132997 +4.140474 10.03574 0.08132997 +5.562508 10.03574 0.08132997 +7.471917 10.03574 0.08132997 +10.03574 10.03574 0.08132997 +13.47828 10.03574 0.08132997 +18.10068 10.03574 0.08132997 +24.30731 10.03574 0.08132997 +32.64117 10.03574 0.08132997 +43.83129 10.03574 0.08132997 +58.85664 10.03574 0.08132997 +-0.0175068 13.47828 0.08132997 +-0.01161267 13.47828 0.08132997 +-0.005718534 13.47828 0.08132997 +0.0001755984 13.47828 0.08132997 +0.006069731 13.47828 0.08132997 +0.01197402 13.47828 0.08132997 +0.01903886 13.47828 0.08132997 +0.02852504 13.47828 0.08132997 +0.04126244 13.47828 0.08132997 +0.05836535 13.47828 0.08132997 +0.08132997 13.47828 0.08132997 +0.1121653 13.47828 0.08132997 +0.1535689 13.47828 0.08132997 +0.2091628 13.47828 0.08132997 +0.2838106 13.47828 0.08132997 +0.3840425 13.47828 0.08132997 +0.518627 13.47828 0.08132997 +0.6993381 13.47828 0.08132997 +0.9419845 13.47828 0.08132997 +1.267794 13.47828 0.08132997 +1.705268 13.47828 0.08132997 +2.292679 13.47828 0.08132997 +3.081414 13.47828 0.08132997 +4.140474 13.47828 0.08132997 +5.562508 13.47828 0.08132997 +7.471917 13.47828 0.08132997 +10.03574 13.47828 0.08132997 +13.47828 13.47828 0.08132997 +18.10068 13.47828 0.08132997 +24.30731 13.47828 0.08132997 +32.64117 13.47828 0.08132997 +43.83129 13.47828 0.08132997 +58.85664 13.47828 0.08132997 +-0.0175068 18.10068 0.08132997 +-0.01161267 18.10068 0.08132997 +-0.005718534 18.10068 0.08132997 +0.0001755984 18.10068 0.08132997 +0.006069731 18.10068 0.08132997 +0.01197402 18.10068 0.08132997 +0.01903886 18.10068 0.08132997 +0.02852504 18.10068 0.08132997 +0.04126244 18.10068 0.08132997 +0.05836535 18.10068 0.08132997 +0.08132997 18.10068 0.08132997 +0.1121653 18.10068 0.08132997 +0.1535689 18.10068 0.08132997 +0.2091628 18.10068 0.08132997 +0.2838106 18.10068 0.08132997 +0.3840425 18.10068 0.08132997 +0.518627 18.10068 0.08132997 +0.6993381 18.10068 0.08132997 +0.9419845 18.10068 0.08132997 +1.267794 18.10068 0.08132997 +1.705268 18.10068 0.08132997 +2.292679 18.10068 0.08132997 +3.081414 18.10068 0.08132997 +4.140474 18.10068 0.08132997 +5.562508 18.10068 0.08132997 +7.471917 18.10068 0.08132997 +10.03574 18.10068 0.08132997 +13.47828 18.10068 0.08132997 +18.10068 18.10068 0.08132997 +24.30731 18.10068 0.08132997 +32.64117 18.10068 0.08132997 +43.83129 18.10068 0.08132997 +58.85664 18.10068 0.08132997 +-0.0175068 24.30731 0.08132997 +-0.01161267 24.30731 0.08132997 +-0.005718534 24.30731 0.08132997 +0.0001755984 24.30731 0.08132997 +0.006069731 24.30731 0.08132997 +0.01197402 24.30731 0.08132997 +0.01903886 24.30731 0.08132997 +0.02852504 24.30731 0.08132997 +0.04126244 24.30731 0.08132997 +0.05836535 24.30731 0.08132997 +0.08132997 24.30731 0.08132997 +0.1121653 24.30731 0.08132997 +0.1535689 24.30731 0.08132997 +0.2091628 24.30731 0.08132997 +0.2838106 24.30731 0.08132997 +0.3840425 24.30731 0.08132997 +0.518627 24.30731 0.08132997 +0.6993381 24.30731 0.08132997 +0.9419845 24.30731 0.08132997 +1.267794 24.30731 0.08132997 +1.705268 24.30731 0.08132997 +2.292679 24.30731 0.08132997 +3.081414 24.30731 0.08132997 +4.140474 24.30731 0.08132997 +5.562508 24.30731 0.08132997 +7.471917 24.30731 0.08132997 +10.03574 24.30731 0.08132997 +13.47828 24.30731 0.08132997 +18.10068 24.30731 0.08132997 +24.30731 24.30731 0.08132997 +32.64117 24.30731 0.08132997 +43.83129 24.30731 0.08132997 +58.85664 24.30731 0.08132997 +-0.0175068 32.64117 0.08132997 +-0.01161267 32.64117 0.08132997 +-0.005718534 32.64117 0.08132997 +0.0001755984 32.64117 0.08132997 +0.006069731 32.64117 0.08132997 +0.01197402 32.64117 0.08132997 +0.01903886 32.64117 0.08132997 +0.02852504 32.64117 0.08132997 +0.04126244 32.64117 0.08132997 +0.05836535 32.64117 0.08132997 +0.08132997 32.64117 0.08132997 +0.1121653 32.64117 0.08132997 +0.1535689 32.64117 0.08132997 +0.2091628 32.64117 0.08132997 +0.2838106 32.64117 0.08132997 +0.3840425 32.64117 0.08132997 +0.518627 32.64117 0.08132997 +0.6993381 32.64117 0.08132997 +0.9419845 32.64117 0.08132997 +1.267794 32.64117 0.08132997 +1.705268 32.64117 0.08132997 +2.292679 32.64117 0.08132997 +3.081414 32.64117 0.08132997 +4.140474 32.64117 0.08132997 +5.562508 32.64117 0.08132997 +7.471917 32.64117 0.08132997 +10.03574 32.64117 0.08132997 +13.47828 32.64117 0.08132997 +18.10068 32.64117 0.08132997 +24.30731 32.64117 0.08132997 +32.64117 32.64117 0.08132997 +43.83129 32.64117 0.08132997 +58.85664 32.64117 0.08132997 +-0.0175068 43.83129 0.08132997 +-0.01161267 43.83129 0.08132997 +-0.005718534 43.83129 0.08132997 +0.0001755984 43.83129 0.08132997 +0.006069731 43.83129 0.08132997 +0.01197402 43.83129 0.08132997 +0.01903886 43.83129 0.08132997 +0.02852504 43.83129 0.08132997 +0.04126244 43.83129 0.08132997 +0.05836535 43.83129 0.08132997 +0.08132997 43.83129 0.08132997 +0.1121653 43.83129 0.08132997 +0.1535689 43.83129 0.08132997 +0.2091628 43.83129 0.08132997 +0.2838106 43.83129 0.08132997 +0.3840425 43.83129 0.08132997 +0.518627 43.83129 0.08132997 +0.6993381 43.83129 0.08132997 +0.9419845 43.83129 0.08132997 +1.267794 43.83129 0.08132997 +1.705268 43.83129 0.08132997 +2.292679 43.83129 0.08132997 +3.081414 43.83129 0.08132997 +4.140474 43.83129 0.08132997 +5.562508 43.83129 0.08132997 +7.471917 43.83129 0.08132997 +10.03574 43.83129 0.08132997 +13.47828 43.83129 0.08132997 +18.10068 43.83129 0.08132997 +24.30731 43.83129 0.08132997 +32.64117 43.83129 0.08132997 +43.83129 43.83129 0.08132997 +58.85664 43.83129 0.08132997 +-0.0175068 58.85664 0.08132997 +-0.01161267 58.85664 0.08132997 +-0.005718534 58.85664 0.08132997 +0.0001755984 58.85664 0.08132997 +0.006069731 58.85664 0.08132997 +0.01197402 58.85664 0.08132997 +0.01903886 58.85664 0.08132997 +0.02852504 58.85664 0.08132997 +0.04126244 58.85664 0.08132997 +0.05836535 58.85664 0.08132997 +0.08132997 58.85664 0.08132997 +0.1121653 58.85664 0.08132997 +0.1535689 58.85664 0.08132997 +0.2091628 58.85664 0.08132997 +0.2838106 58.85664 0.08132997 +0.3840425 58.85664 0.08132997 +0.518627 58.85664 0.08132997 +0.6993381 58.85664 0.08132997 +0.9419845 58.85664 0.08132997 +1.267794 58.85664 0.08132997 +1.705268 58.85664 0.08132997 +2.292679 58.85664 0.08132997 +3.081414 58.85664 0.08132997 +4.140474 58.85664 0.08132997 +5.562508 58.85664 0.08132997 +7.471917 58.85664 0.08132997 +10.03574 58.85664 0.08132997 +13.47828 58.85664 0.08132997 +18.10068 58.85664 0.08132997 +24.30731 58.85664 0.08132997 +32.64117 58.85664 0.08132997 +43.83129 58.85664 0.08132997 +58.85664 58.85664 0.08132997 +-0.0175068 -0.0175068 0.1121653 +-0.01161267 -0.0175068 0.1121653 +-0.005718534 -0.0175068 0.1121653 +0.0001755984 -0.0175068 0.1121653 +0.006069731 -0.0175068 0.1121653 +0.01197402 -0.0175068 0.1121653 +0.01903886 -0.0175068 0.1121653 +0.02852504 -0.0175068 0.1121653 +0.04126244 -0.0175068 0.1121653 +0.05836535 -0.0175068 0.1121653 +0.08132997 -0.0175068 0.1121653 +0.1121653 -0.0175068 0.1121653 +0.1535689 -0.0175068 0.1121653 +0.2091628 -0.0175068 0.1121653 +0.2838106 -0.0175068 0.1121653 +0.3840425 -0.0175068 0.1121653 +0.518627 -0.0175068 0.1121653 +0.6993381 -0.0175068 0.1121653 +0.9419845 -0.0175068 0.1121653 +1.267794 -0.0175068 0.1121653 +1.705268 -0.0175068 0.1121653 +2.292679 -0.0175068 0.1121653 +3.081414 -0.0175068 0.1121653 +4.140474 -0.0175068 0.1121653 +5.562508 -0.0175068 0.1121653 +7.471917 -0.0175068 0.1121653 +10.03574 -0.0175068 0.1121653 +13.47828 -0.0175068 0.1121653 +18.10068 -0.0175068 0.1121653 +24.30731 -0.0175068 0.1121653 +32.64117 -0.0175068 0.1121653 +43.83129 -0.0175068 0.1121653 +58.85664 -0.0175068 0.1121653 +-0.0175068 -0.01161267 0.1121653 +-0.01161267 -0.01161267 0.1121653 +-0.005718534 -0.01161267 0.1121653 +0.0001755984 -0.01161267 0.1121653 +0.006069731 -0.01161267 0.1121653 +0.01197402 -0.01161267 0.1121653 +0.01903886 -0.01161267 0.1121653 +0.02852504 -0.01161267 0.1121653 +0.04126244 -0.01161267 0.1121653 +0.05836535 -0.01161267 0.1121653 +0.08132997 -0.01161267 0.1121653 +0.1121653 -0.01161267 0.1121653 +0.1535689 -0.01161267 0.1121653 +0.2091628 -0.01161267 0.1121653 +0.2838106 -0.01161267 0.1121653 +0.3840425 -0.01161267 0.1121653 +0.518627 -0.01161267 0.1121653 +0.6993381 -0.01161267 0.1121653 +0.9419845 -0.01161267 0.1121653 +1.267794 -0.01161267 0.1121653 +1.705268 -0.01161267 0.1121653 +2.292679 -0.01161267 0.1121653 +3.081414 -0.01161267 0.1121653 +4.140474 -0.01161267 0.1121653 +5.562508 -0.01161267 0.1121653 +7.471917 -0.01161267 0.1121653 +10.03574 -0.01161267 0.1121653 +13.47828 -0.01161267 0.1121653 +18.10068 -0.01161267 0.1121653 +24.30731 -0.01161267 0.1121653 +32.64117 -0.01161267 0.1121653 +43.83129 -0.01161267 0.1121653 +58.85664 -0.01161267 0.1121653 +-0.0175068 -0.005718534 0.1121653 +-0.01161267 -0.005718534 0.1121653 +-0.005718534 -0.005718534 0.1121653 +0.0001755984 -0.005718534 0.1121653 +0.006069731 -0.005718534 0.1121653 +0.01197402 -0.005718534 0.1121653 +0.01903886 -0.005718534 0.1121653 +0.02852504 -0.005718534 0.1121653 +0.04126244 -0.005718534 0.1121653 +0.05836535 -0.005718534 0.1121653 +0.08132997 -0.005718534 0.1121653 +0.1121653 -0.005718534 0.1121653 +0.1535689 -0.005718534 0.1121653 +0.2091628 -0.005718534 0.1121653 +0.2838106 -0.005718534 0.1121653 +0.3840425 -0.005718534 0.1121653 +0.518627 -0.005718534 0.1121653 +0.6993381 -0.005718534 0.1121653 +0.9419845 -0.005718534 0.1121653 +1.267794 -0.005718534 0.1121653 +1.705268 -0.005718534 0.1121653 +2.292679 -0.005718534 0.1121653 +3.081414 -0.005718534 0.1121653 +4.140474 -0.005718534 0.1121653 +5.562508 -0.005718534 0.1121653 +7.471917 -0.005718534 0.1121653 +10.03574 -0.005718534 0.1121653 +13.47828 -0.005718534 0.1121653 +18.10068 -0.005718534 0.1121653 +24.30731 -0.005718534 0.1121653 +32.64117 -0.005718534 0.1121653 +43.83129 -0.005718534 0.1121653 +58.85664 -0.005718534 0.1121653 +-0.0175068 0.0001755984 0.1121653 +-0.01161267 0.0001755984 0.1121653 +-0.005718534 0.0001755984 0.1121653 +0.0001755984 0.0001755984 0.1121653 +0.006069731 0.0001755984 0.1121653 +0.01197402 0.0001755984 0.1121653 +0.01903886 0.0001755984 0.1121653 +0.02852504 0.0001755984 0.1121653 +0.04126244 0.0001755984 0.1121653 +0.05836535 0.0001755984 0.1121653 +0.08132997 0.0001755984 0.1121653 +0.1121653 0.0001755984 0.1121653 +0.1535689 0.0001755984 0.1121653 +0.2091628 0.0001755984 0.1121653 +0.2838106 0.0001755984 0.1121653 +0.3840425 0.0001755984 0.1121653 +0.518627 0.0001755984 0.1121653 +0.6993381 0.0001755984 0.1121653 +0.9419845 0.0001755984 0.1121653 +1.267794 0.0001755984 0.1121653 +1.705268 0.0001755984 0.1121653 +2.292679 0.0001755984 0.1121653 +3.081414 0.0001755984 0.1121653 +4.140474 0.0001755984 0.1121653 +5.562508 0.0001755984 0.1121653 +7.471917 0.0001755984 0.1121653 +10.03574 0.0001755984 0.1121653 +13.47828 0.0001755984 0.1121653 +18.10068 0.0001755984 0.1121653 +24.30731 0.0001755984 0.1121653 +32.64117 0.0001755984 0.1121653 +43.83129 0.0001755984 0.1121653 +58.85664 0.0001755984 0.1121653 +-0.0175068 0.006069731 0.1121653 +-0.01161267 0.006069731 0.1121653 +-0.005718534 0.006069731 0.1121653 +0.0001755984 0.006069731 0.1121653 +0.006069731 0.006069731 0.1121653 +0.01197402 0.006069731 0.1121653 +0.01903886 0.006069731 0.1121653 +0.02852504 0.006069731 0.1121653 +0.04126244 0.006069731 0.1121653 +0.05836535 0.006069731 0.1121653 +0.08132997 0.006069731 0.1121653 +0.1121653 0.006069731 0.1121653 +0.1535689 0.006069731 0.1121653 +0.2091628 0.006069731 0.1121653 +0.2838106 0.006069731 0.1121653 +0.3840425 0.006069731 0.1121653 +0.518627 0.006069731 0.1121653 +0.6993381 0.006069731 0.1121653 +0.9419845 0.006069731 0.1121653 +1.267794 0.006069731 0.1121653 +1.705268 0.006069731 0.1121653 +2.292679 0.006069731 0.1121653 +3.081414 0.006069731 0.1121653 +4.140474 0.006069731 0.1121653 +5.562508 0.006069731 0.1121653 +7.471917 0.006069731 0.1121653 +10.03574 0.006069731 0.1121653 +13.47828 0.006069731 0.1121653 +18.10068 0.006069731 0.1121653 +24.30731 0.006069731 0.1121653 +32.64117 0.006069731 0.1121653 +43.83129 0.006069731 0.1121653 +58.85664 0.006069731 0.1121653 +-0.0175068 0.01197402 0.1121653 +-0.01161267 0.01197402 0.1121653 +-0.005718534 0.01197402 0.1121653 +0.0001755984 0.01197402 0.1121653 +0.006069731 0.01197402 0.1121653 +0.01197402 0.01197402 0.1121653 +0.01903886 0.01197402 0.1121653 +0.02852504 0.01197402 0.1121653 +0.04126244 0.01197402 0.1121653 +0.05836535 0.01197402 0.1121653 +0.08132997 0.01197402 0.1121653 +0.1121653 0.01197402 0.1121653 +0.1535689 0.01197402 0.1121653 +0.2091628 0.01197402 0.1121653 +0.2838106 0.01197402 0.1121653 +0.3840425 0.01197402 0.1121653 +0.518627 0.01197402 0.1121653 +0.6993381 0.01197402 0.1121653 +0.9419845 0.01197402 0.1121653 +1.267794 0.01197402 0.1121653 +1.705268 0.01197402 0.1121653 +2.292679 0.01197402 0.1121653 +3.081414 0.01197402 0.1121653 +4.140474 0.01197402 0.1121653 +5.562508 0.01197402 0.1121653 +7.471917 0.01197402 0.1121653 +10.03574 0.01197402 0.1121653 +13.47828 0.01197402 0.1121653 +18.10068 0.01197402 0.1121653 +24.30731 0.01197402 0.1121653 +32.64117 0.01197402 0.1121653 +43.83129 0.01197402 0.1121653 +58.85664 0.01197402 0.1121653 +-0.0175068 0.01903886 0.1121653 +-0.01161267 0.01903886 0.1121653 +-0.005718534 0.01903886 0.1121653 +0.0001755984 0.01903886 0.1121653 +0.006069731 0.01903886 0.1121653 +0.01197402 0.01903886 0.1121653 +0.01903886 0.01903886 0.1121653 +0.02852504 0.01903886 0.1121653 +0.04126244 0.01903886 0.1121653 +0.05836535 0.01903886 0.1121653 +0.08132997 0.01903886 0.1121653 +0.1121653 0.01903886 0.1121653 +0.1535689 0.01903886 0.1121653 +0.2091628 0.01903886 0.1121653 +0.2838106 0.01903886 0.1121653 +0.3840425 0.01903886 0.1121653 +0.518627 0.01903886 0.1121653 +0.6993381 0.01903886 0.1121653 +0.9419845 0.01903886 0.1121653 +1.267794 0.01903886 0.1121653 +1.705268 0.01903886 0.1121653 +2.292679 0.01903886 0.1121653 +3.081414 0.01903886 0.1121653 +4.140474 0.01903886 0.1121653 +5.562508 0.01903886 0.1121653 +7.471917 0.01903886 0.1121653 +10.03574 0.01903886 0.1121653 +13.47828 0.01903886 0.1121653 +18.10068 0.01903886 0.1121653 +24.30731 0.01903886 0.1121653 +32.64117 0.01903886 0.1121653 +43.83129 0.01903886 0.1121653 +58.85664 0.01903886 0.1121653 +-0.0175068 0.02852504 0.1121653 +-0.01161267 0.02852504 0.1121653 +-0.005718534 0.02852504 0.1121653 +0.0001755984 0.02852504 0.1121653 +0.006069731 0.02852504 0.1121653 +0.01197402 0.02852504 0.1121653 +0.01903886 0.02852504 0.1121653 +0.02852504 0.02852504 0.1121653 +0.04126244 0.02852504 0.1121653 +0.05836535 0.02852504 0.1121653 +0.08132997 0.02852504 0.1121653 +0.1121653 0.02852504 0.1121653 +0.1535689 0.02852504 0.1121653 +0.2091628 0.02852504 0.1121653 +0.2838106 0.02852504 0.1121653 +0.3840425 0.02852504 0.1121653 +0.518627 0.02852504 0.1121653 +0.6993381 0.02852504 0.1121653 +0.9419845 0.02852504 0.1121653 +1.267794 0.02852504 0.1121653 +1.705268 0.02852504 0.1121653 +2.292679 0.02852504 0.1121653 +3.081414 0.02852504 0.1121653 +4.140474 0.02852504 0.1121653 +5.562508 0.02852504 0.1121653 +7.471917 0.02852504 0.1121653 +10.03574 0.02852504 0.1121653 +13.47828 0.02852504 0.1121653 +18.10068 0.02852504 0.1121653 +24.30731 0.02852504 0.1121653 +32.64117 0.02852504 0.1121653 +43.83129 0.02852504 0.1121653 +58.85664 0.02852504 0.1121653 +-0.0175068 0.04126244 0.1121653 +-0.01161267 0.04126244 0.1121653 +-0.005718534 0.04126244 0.1121653 +0.0001755984 0.04126244 0.1121653 +0.006069731 0.04126244 0.1121653 +0.01197402 0.04126244 0.1121653 +0.01903886 0.04126244 0.1121653 +0.02852504 0.04126244 0.1121653 +0.04126244 0.04126244 0.1121653 +0.05836535 0.04126244 0.1121653 +0.08132997 0.04126244 0.1121653 +0.1121653 0.04126244 0.1121653 +0.1535689 0.04126244 0.1121653 +0.2091628 0.04126244 0.1121653 +0.2838106 0.04126244 0.1121653 +0.3840425 0.04126244 0.1121653 +0.518627 0.04126244 0.1121653 +0.6993381 0.04126244 0.1121653 +0.9419845 0.04126244 0.1121653 +1.267794 0.04126244 0.1121653 +1.705268 0.04126244 0.1121653 +2.292679 0.04126244 0.1121653 +3.081414 0.04126244 0.1121653 +4.140474 0.04126244 0.1121653 +5.562508 0.04126244 0.1121653 +7.471917 0.04126244 0.1121653 +10.03574 0.04126244 0.1121653 +13.47828 0.04126244 0.1121653 +18.10068 0.04126244 0.1121653 +24.30731 0.04126244 0.1121653 +32.64117 0.04126244 0.1121653 +43.83129 0.04126244 0.1121653 +58.85664 0.04126244 0.1121653 +-0.0175068 0.05836535 0.1121653 +-0.01161267 0.05836535 0.1121653 +-0.005718534 0.05836535 0.1121653 +0.0001755984 0.05836535 0.1121653 +0.006069731 0.05836535 0.1121653 +0.01197402 0.05836535 0.1121653 +0.01903886 0.05836535 0.1121653 +0.02852504 0.05836535 0.1121653 +0.04126244 0.05836535 0.1121653 +0.05836535 0.05836535 0.1121653 +0.08132997 0.05836535 0.1121653 +0.1121653 0.05836535 0.1121653 +0.1535689 0.05836535 0.1121653 +0.2091628 0.05836535 0.1121653 +0.2838106 0.05836535 0.1121653 +0.3840425 0.05836535 0.1121653 +0.518627 0.05836535 0.1121653 +0.6993381 0.05836535 0.1121653 +0.9419845 0.05836535 0.1121653 +1.267794 0.05836535 0.1121653 +1.705268 0.05836535 0.1121653 +2.292679 0.05836535 0.1121653 +3.081414 0.05836535 0.1121653 +4.140474 0.05836535 0.1121653 +5.562508 0.05836535 0.1121653 +7.471917 0.05836535 0.1121653 +10.03574 0.05836535 0.1121653 +13.47828 0.05836535 0.1121653 +18.10068 0.05836535 0.1121653 +24.30731 0.05836535 0.1121653 +32.64117 0.05836535 0.1121653 +43.83129 0.05836535 0.1121653 +58.85664 0.05836535 0.1121653 +-0.0175068 0.08132997 0.1121653 +-0.01161267 0.08132997 0.1121653 +-0.005718534 0.08132997 0.1121653 +0.0001755984 0.08132997 0.1121653 +0.006069731 0.08132997 0.1121653 +0.01197402 0.08132997 0.1121653 +0.01903886 0.08132997 0.1121653 +0.02852504 0.08132997 0.1121653 +0.04126244 0.08132997 0.1121653 +0.05836535 0.08132997 0.1121653 +0.08132997 0.08132997 0.1121653 +0.1121653 0.08132997 0.1121653 +0.1535689 0.08132997 0.1121653 +0.2091628 0.08132997 0.1121653 +0.2838106 0.08132997 0.1121653 +0.3840425 0.08132997 0.1121653 +0.518627 0.08132997 0.1121653 +0.6993381 0.08132997 0.1121653 +0.9419845 0.08132997 0.1121653 +1.267794 0.08132997 0.1121653 +1.705268 0.08132997 0.1121653 +2.292679 0.08132997 0.1121653 +3.081414 0.08132997 0.1121653 +4.140474 0.08132997 0.1121653 +5.562508 0.08132997 0.1121653 +7.471917 0.08132997 0.1121653 +10.03574 0.08132997 0.1121653 +13.47828 0.08132997 0.1121653 +18.10068 0.08132997 0.1121653 +24.30731 0.08132997 0.1121653 +32.64117 0.08132997 0.1121653 +43.83129 0.08132997 0.1121653 +58.85664 0.08132997 0.1121653 +-0.0175068 0.1121653 0.1121653 +-0.01161267 0.1121653 0.1121653 +-0.005718534 0.1121653 0.1121653 +0.0001755984 0.1121653 0.1121653 +0.006069731 0.1121653 0.1121653 +0.01197402 0.1121653 0.1121653 +0.01903886 0.1121653 0.1121653 +0.02852504 0.1121653 0.1121653 +0.04126244 0.1121653 0.1121653 +0.05836535 0.1121653 0.1121653 +0.08132997 0.1121653 0.1121653 +0.1121653 0.1121653 0.1121653 +0.1535689 0.1121653 0.1121653 +0.2091628 0.1121653 0.1121653 +0.2838106 0.1121653 0.1121653 +0.3840425 0.1121653 0.1121653 +0.518627 0.1121653 0.1121653 +0.6993381 0.1121653 0.1121653 +0.9419845 0.1121653 0.1121653 +1.267794 0.1121653 0.1121653 +1.705268 0.1121653 0.1121653 +2.292679 0.1121653 0.1121653 +3.081414 0.1121653 0.1121653 +4.140474 0.1121653 0.1121653 +5.562508 0.1121653 0.1121653 +7.471917 0.1121653 0.1121653 +10.03574 0.1121653 0.1121653 +13.47828 0.1121653 0.1121653 +18.10068 0.1121653 0.1121653 +24.30731 0.1121653 0.1121653 +32.64117 0.1121653 0.1121653 +43.83129 0.1121653 0.1121653 +58.85664 0.1121653 0.1121653 +-0.0175068 0.1535689 0.1121653 +-0.01161267 0.1535689 0.1121653 +-0.005718534 0.1535689 0.1121653 +0.0001755984 0.1535689 0.1121653 +0.006069731 0.1535689 0.1121653 +0.01197402 0.1535689 0.1121653 +0.01903886 0.1535689 0.1121653 +0.02852504 0.1535689 0.1121653 +0.04126244 0.1535689 0.1121653 +0.05836535 0.1535689 0.1121653 +0.08132997 0.1535689 0.1121653 +0.1121653 0.1535689 0.1121653 +0.1535689 0.1535689 0.1121653 +0.2091628 0.1535689 0.1121653 +0.2838106 0.1535689 0.1121653 +0.3840425 0.1535689 0.1121653 +0.518627 0.1535689 0.1121653 +0.6993381 0.1535689 0.1121653 +0.9419845 0.1535689 0.1121653 +1.267794 0.1535689 0.1121653 +1.705268 0.1535689 0.1121653 +2.292679 0.1535689 0.1121653 +3.081414 0.1535689 0.1121653 +4.140474 0.1535689 0.1121653 +5.562508 0.1535689 0.1121653 +7.471917 0.1535689 0.1121653 +10.03574 0.1535689 0.1121653 +13.47828 0.1535689 0.1121653 +18.10068 0.1535689 0.1121653 +24.30731 0.1535689 0.1121653 +32.64117 0.1535689 0.1121653 +43.83129 0.1535689 0.1121653 +58.85664 0.1535689 0.1121653 +-0.0175068 0.2091628 0.1121653 +-0.01161267 0.2091628 0.1121653 +-0.005718534 0.2091628 0.1121653 +0.0001755984 0.2091628 0.1121653 +0.006069731 0.2091628 0.1121653 +0.01197402 0.2091628 0.1121653 +0.01903886 0.2091628 0.1121653 +0.02852504 0.2091628 0.1121653 +0.04126244 0.2091628 0.1121653 +0.05836535 0.2091628 0.1121653 +0.08132997 0.2091628 0.1121653 +0.1121653 0.2091628 0.1121653 +0.1535689 0.2091628 0.1121653 +0.2091628 0.2091628 0.1121653 +0.2838106 0.2091628 0.1121653 +0.3840425 0.2091628 0.1121653 +0.518627 0.2091628 0.1121653 +0.6993381 0.2091628 0.1121653 +0.9419845 0.2091628 0.1121653 +1.267794 0.2091628 0.1121653 +1.705268 0.2091628 0.1121653 +2.292679 0.2091628 0.1121653 +3.081414 0.2091628 0.1121653 +4.140474 0.2091628 0.1121653 +5.562508 0.2091628 0.1121653 +7.471917 0.2091628 0.1121653 +10.03574 0.2091628 0.1121653 +13.47828 0.2091628 0.1121653 +18.10068 0.2091628 0.1121653 +24.30731 0.2091628 0.1121653 +32.64117 0.2091628 0.1121653 +43.83129 0.2091628 0.1121653 +58.85664 0.2091628 0.1121653 +-0.0175068 0.2838106 0.1121653 +-0.01161267 0.2838106 0.1121653 +-0.005718534 0.2838106 0.1121653 +0.0001755984 0.2838106 0.1121653 +0.006069731 0.2838106 0.1121653 +0.01197402 0.2838106 0.1121653 +0.01903886 0.2838106 0.1121653 +0.02852504 0.2838106 0.1121653 +0.04126244 0.2838106 0.1121653 +0.05836535 0.2838106 0.1121653 +0.08132997 0.2838106 0.1121653 +0.1121653 0.2838106 0.1121653 +0.1535689 0.2838106 0.1121653 +0.2091628 0.2838106 0.1121653 +0.2838106 0.2838106 0.1121653 +0.3840425 0.2838106 0.1121653 +0.518627 0.2838106 0.1121653 +0.6993381 0.2838106 0.1121653 +0.9419845 0.2838106 0.1121653 +1.267794 0.2838106 0.1121653 +1.705268 0.2838106 0.1121653 +2.292679 0.2838106 0.1121653 +3.081414 0.2838106 0.1121653 +4.140474 0.2838106 0.1121653 +5.562508 0.2838106 0.1121653 +7.471917 0.2838106 0.1121653 +10.03574 0.2838106 0.1121653 +13.47828 0.2838106 0.1121653 +18.10068 0.2838106 0.1121653 +24.30731 0.2838106 0.1121653 +32.64117 0.2838106 0.1121653 +43.83129 0.2838106 0.1121653 +58.85664 0.2838106 0.1121653 +-0.0175068 0.3840425 0.1121653 +-0.01161267 0.3840425 0.1121653 +-0.005718534 0.3840425 0.1121653 +0.0001755984 0.3840425 0.1121653 +0.006069731 0.3840425 0.1121653 +0.01197402 0.3840425 0.1121653 +0.01903886 0.3840425 0.1121653 +0.02852504 0.3840425 0.1121653 +0.04126244 0.3840425 0.1121653 +0.05836535 0.3840425 0.1121653 +0.08132997 0.3840425 0.1121653 +0.1121653 0.3840425 0.1121653 +0.1535689 0.3840425 0.1121653 +0.2091628 0.3840425 0.1121653 +0.2838106 0.3840425 0.1121653 +0.3840425 0.3840425 0.1121653 +0.518627 0.3840425 0.1121653 +0.6993381 0.3840425 0.1121653 +0.9419845 0.3840425 0.1121653 +1.267794 0.3840425 0.1121653 +1.705268 0.3840425 0.1121653 +2.292679 0.3840425 0.1121653 +3.081414 0.3840425 0.1121653 +4.140474 0.3840425 0.1121653 +5.562508 0.3840425 0.1121653 +7.471917 0.3840425 0.1121653 +10.03574 0.3840425 0.1121653 +13.47828 0.3840425 0.1121653 +18.10068 0.3840425 0.1121653 +24.30731 0.3840425 0.1121653 +32.64117 0.3840425 0.1121653 +43.83129 0.3840425 0.1121653 +58.85664 0.3840425 0.1121653 +-0.0175068 0.518627 0.1121653 +-0.01161267 0.518627 0.1121653 +-0.005718534 0.518627 0.1121653 +0.0001755984 0.518627 0.1121653 +0.006069731 0.518627 0.1121653 +0.01197402 0.518627 0.1121653 +0.01903886 0.518627 0.1121653 +0.02852504 0.518627 0.1121653 +0.04126244 0.518627 0.1121653 +0.05836535 0.518627 0.1121653 +0.08132997 0.518627 0.1121653 +0.1121653 0.518627 0.1121653 +0.1535689 0.518627 0.1121653 +0.2091628 0.518627 0.1121653 +0.2838106 0.518627 0.1121653 +0.3840425 0.518627 0.1121653 +0.518627 0.518627 0.1121653 +0.6993381 0.518627 0.1121653 +0.9419845 0.518627 0.1121653 +1.267794 0.518627 0.1121653 +1.705268 0.518627 0.1121653 +2.292679 0.518627 0.1121653 +3.081414 0.518627 0.1121653 +4.140474 0.518627 0.1121653 +5.562508 0.518627 0.1121653 +7.471917 0.518627 0.1121653 +10.03574 0.518627 0.1121653 +13.47828 0.518627 0.1121653 +18.10068 0.518627 0.1121653 +24.30731 0.518627 0.1121653 +32.64117 0.518627 0.1121653 +43.83129 0.518627 0.1121653 +58.85664 0.518627 0.1121653 +-0.0175068 0.6993381 0.1121653 +-0.01161267 0.6993381 0.1121653 +-0.005718534 0.6993381 0.1121653 +0.0001755984 0.6993381 0.1121653 +0.006069731 0.6993381 0.1121653 +0.01197402 0.6993381 0.1121653 +0.01903886 0.6993381 0.1121653 +0.02852504 0.6993381 0.1121653 +0.04126244 0.6993381 0.1121653 +0.05836535 0.6993381 0.1121653 +0.08132997 0.6993381 0.1121653 +0.1121653 0.6993381 0.1121653 +0.1535689 0.6993381 0.1121653 +0.2091628 0.6993381 0.1121653 +0.2838106 0.6993381 0.1121653 +0.3840425 0.6993381 0.1121653 +0.518627 0.6993381 0.1121653 +0.6993381 0.6993381 0.1121653 +0.9419845 0.6993381 0.1121653 +1.267794 0.6993381 0.1121653 +1.705268 0.6993381 0.1121653 +2.292679 0.6993381 0.1121653 +3.081414 0.6993381 0.1121653 +4.140474 0.6993381 0.1121653 +5.562508 0.6993381 0.1121653 +7.471917 0.6993381 0.1121653 +10.03574 0.6993381 0.1121653 +13.47828 0.6993381 0.1121653 +18.10068 0.6993381 0.1121653 +24.30731 0.6993381 0.1121653 +32.64117 0.6993381 0.1121653 +43.83129 0.6993381 0.1121653 +58.85664 0.6993381 0.1121653 +-0.0175068 0.9419845 0.1121653 +-0.01161267 0.9419845 0.1121653 +-0.005718534 0.9419845 0.1121653 +0.0001755984 0.9419845 0.1121653 +0.006069731 0.9419845 0.1121653 +0.01197402 0.9419845 0.1121653 +0.01903886 0.9419845 0.1121653 +0.02852504 0.9419845 0.1121653 +0.04126244 0.9419845 0.1121653 +0.05836535 0.9419845 0.1121653 +0.08132997 0.9419845 0.1121653 +0.1121653 0.9419845 0.1121653 +0.1535689 0.9419845 0.1121653 +0.2091628 0.9419845 0.1121653 +0.2838106 0.9419845 0.1121653 +0.3840425 0.9419845 0.1121653 +0.518627 0.9419845 0.1121653 +0.6993381 0.9419845 0.1121653 +0.9419845 0.9419845 0.1121653 +1.267794 0.9419845 0.1121653 +1.705268 0.9419845 0.1121653 +2.292679 0.9419845 0.1121653 +3.081414 0.9419845 0.1121653 +4.140474 0.9419845 0.1121653 +5.562508 0.9419845 0.1121653 +7.471917 0.9419845 0.1121653 +10.03574 0.9419845 0.1121653 +13.47828 0.9419845 0.1121653 +18.10068 0.9419845 0.1121653 +24.30731 0.9419845 0.1121653 +32.64117 0.9419845 0.1121653 +43.83129 0.9419845 0.1121653 +58.85664 0.9419845 0.1121653 +-0.0175068 1.267794 0.1121653 +-0.01161267 1.267794 0.1121653 +-0.005718534 1.267794 0.1121653 +0.0001755984 1.267794 0.1121653 +0.006069731 1.267794 0.1121653 +0.01197402 1.267794 0.1121653 +0.01903886 1.267794 0.1121653 +0.02852504 1.267794 0.1121653 +0.04126244 1.267794 0.1121653 +0.05836535 1.267794 0.1121653 +0.08132997 1.267794 0.1121653 +0.1121653 1.267794 0.1121653 +0.1535689 1.267794 0.1121653 +0.2091628 1.267794 0.1121653 +0.2838106 1.267794 0.1121653 +0.3840425 1.267794 0.1121653 +0.518627 1.267794 0.1121653 +0.6993381 1.267794 0.1121653 +0.9419845 1.267794 0.1121653 +1.267794 1.267794 0.1121653 +1.705268 1.267794 0.1121653 +2.292679 1.267794 0.1121653 +3.081414 1.267794 0.1121653 +4.140474 1.267794 0.1121653 +5.562508 1.267794 0.1121653 +7.471917 1.267794 0.1121653 +10.03574 1.267794 0.1121653 +13.47828 1.267794 0.1121653 +18.10068 1.267794 0.1121653 +24.30731 1.267794 0.1121653 +32.64117 1.267794 0.1121653 +43.83129 1.267794 0.1121653 +58.85664 1.267794 0.1121653 +-0.0175068 1.705268 0.1121653 +-0.01161267 1.705268 0.1121653 +-0.005718534 1.705268 0.1121653 +0.0001755984 1.705268 0.1121653 +0.006069731 1.705268 0.1121653 +0.01197402 1.705268 0.1121653 +0.01903886 1.705268 0.1121653 +0.02852504 1.705268 0.1121653 +0.04126244 1.705268 0.1121653 +0.05836535 1.705268 0.1121653 +0.08132997 1.705268 0.1121653 +0.1121653 1.705268 0.1121653 +0.1535689 1.705268 0.1121653 +0.2091628 1.705268 0.1121653 +0.2838106 1.705268 0.1121653 +0.3840425 1.705268 0.1121653 +0.518627 1.705268 0.1121653 +0.6993381 1.705268 0.1121653 +0.9419845 1.705268 0.1121653 +1.267794 1.705268 0.1121653 +1.705268 1.705268 0.1121653 +2.292679 1.705268 0.1121653 +3.081414 1.705268 0.1121653 +4.140474 1.705268 0.1121653 +5.562508 1.705268 0.1121653 +7.471917 1.705268 0.1121653 +10.03574 1.705268 0.1121653 +13.47828 1.705268 0.1121653 +18.10068 1.705268 0.1121653 +24.30731 1.705268 0.1121653 +32.64117 1.705268 0.1121653 +43.83129 1.705268 0.1121653 +58.85664 1.705268 0.1121653 +-0.0175068 2.292679 0.1121653 +-0.01161267 2.292679 0.1121653 +-0.005718534 2.292679 0.1121653 +0.0001755984 2.292679 0.1121653 +0.006069731 2.292679 0.1121653 +0.01197402 2.292679 0.1121653 +0.01903886 2.292679 0.1121653 +0.02852504 2.292679 0.1121653 +0.04126244 2.292679 0.1121653 +0.05836535 2.292679 0.1121653 +0.08132997 2.292679 0.1121653 +0.1121653 2.292679 0.1121653 +0.1535689 2.292679 0.1121653 +0.2091628 2.292679 0.1121653 +0.2838106 2.292679 0.1121653 +0.3840425 2.292679 0.1121653 +0.518627 2.292679 0.1121653 +0.6993381 2.292679 0.1121653 +0.9419845 2.292679 0.1121653 +1.267794 2.292679 0.1121653 +1.705268 2.292679 0.1121653 +2.292679 2.292679 0.1121653 +3.081414 2.292679 0.1121653 +4.140474 2.292679 0.1121653 +5.562508 2.292679 0.1121653 +7.471917 2.292679 0.1121653 +10.03574 2.292679 0.1121653 +13.47828 2.292679 0.1121653 +18.10068 2.292679 0.1121653 +24.30731 2.292679 0.1121653 +32.64117 2.292679 0.1121653 +43.83129 2.292679 0.1121653 +58.85664 2.292679 0.1121653 +-0.0175068 3.081414 0.1121653 +-0.01161267 3.081414 0.1121653 +-0.005718534 3.081414 0.1121653 +0.0001755984 3.081414 0.1121653 +0.006069731 3.081414 0.1121653 +0.01197402 3.081414 0.1121653 +0.01903886 3.081414 0.1121653 +0.02852504 3.081414 0.1121653 +0.04126244 3.081414 0.1121653 +0.05836535 3.081414 0.1121653 +0.08132997 3.081414 0.1121653 +0.1121653 3.081414 0.1121653 +0.1535689 3.081414 0.1121653 +0.2091628 3.081414 0.1121653 +0.2838106 3.081414 0.1121653 +0.3840425 3.081414 0.1121653 +0.518627 3.081414 0.1121653 +0.6993381 3.081414 0.1121653 +0.9419845 3.081414 0.1121653 +1.267794 3.081414 0.1121653 +1.705268 3.081414 0.1121653 +2.292679 3.081414 0.1121653 +3.081414 3.081414 0.1121653 +4.140474 3.081414 0.1121653 +5.562508 3.081414 0.1121653 +7.471917 3.081414 0.1121653 +10.03574 3.081414 0.1121653 +13.47828 3.081414 0.1121653 +18.10068 3.081414 0.1121653 +24.30731 3.081414 0.1121653 +32.64117 3.081414 0.1121653 +43.83129 3.081414 0.1121653 +58.85664 3.081414 0.1121653 +-0.0175068 4.140474 0.1121653 +-0.01161267 4.140474 0.1121653 +-0.005718534 4.140474 0.1121653 +0.0001755984 4.140474 0.1121653 +0.006069731 4.140474 0.1121653 +0.01197402 4.140474 0.1121653 +0.01903886 4.140474 0.1121653 +0.02852504 4.140474 0.1121653 +0.04126244 4.140474 0.1121653 +0.05836535 4.140474 0.1121653 +0.08132997 4.140474 0.1121653 +0.1121653 4.140474 0.1121653 +0.1535689 4.140474 0.1121653 +0.2091628 4.140474 0.1121653 +0.2838106 4.140474 0.1121653 +0.3840425 4.140474 0.1121653 +0.518627 4.140474 0.1121653 +0.6993381 4.140474 0.1121653 +0.9419845 4.140474 0.1121653 +1.267794 4.140474 0.1121653 +1.705268 4.140474 0.1121653 +2.292679 4.140474 0.1121653 +3.081414 4.140474 0.1121653 +4.140474 4.140474 0.1121653 +5.562508 4.140474 0.1121653 +7.471917 4.140474 0.1121653 +10.03574 4.140474 0.1121653 +13.47828 4.140474 0.1121653 +18.10068 4.140474 0.1121653 +24.30731 4.140474 0.1121653 +32.64117 4.140474 0.1121653 +43.83129 4.140474 0.1121653 +58.85664 4.140474 0.1121653 +-0.0175068 5.562508 0.1121653 +-0.01161267 5.562508 0.1121653 +-0.005718534 5.562508 0.1121653 +0.0001755984 5.562508 0.1121653 +0.006069731 5.562508 0.1121653 +0.01197402 5.562508 0.1121653 +0.01903886 5.562508 0.1121653 +0.02852504 5.562508 0.1121653 +0.04126244 5.562508 0.1121653 +0.05836535 5.562508 0.1121653 +0.08132997 5.562508 0.1121653 +0.1121653 5.562508 0.1121653 +0.1535689 5.562508 0.1121653 +0.2091628 5.562508 0.1121653 +0.2838106 5.562508 0.1121653 +0.3840425 5.562508 0.1121653 +0.518627 5.562508 0.1121653 +0.6993381 5.562508 0.1121653 +0.9419845 5.562508 0.1121653 +1.267794 5.562508 0.1121653 +1.705268 5.562508 0.1121653 +2.292679 5.562508 0.1121653 +3.081414 5.562508 0.1121653 +4.140474 5.562508 0.1121653 +5.562508 5.562508 0.1121653 +7.471917 5.562508 0.1121653 +10.03574 5.562508 0.1121653 +13.47828 5.562508 0.1121653 +18.10068 5.562508 0.1121653 +24.30731 5.562508 0.1121653 +32.64117 5.562508 0.1121653 +43.83129 5.562508 0.1121653 +58.85664 5.562508 0.1121653 +-0.0175068 7.471917 0.1121653 +-0.01161267 7.471917 0.1121653 +-0.005718534 7.471917 0.1121653 +0.0001755984 7.471917 0.1121653 +0.006069731 7.471917 0.1121653 +0.01197402 7.471917 0.1121653 +0.01903886 7.471917 0.1121653 +0.02852504 7.471917 0.1121653 +0.04126244 7.471917 0.1121653 +0.05836535 7.471917 0.1121653 +0.08132997 7.471917 0.1121653 +0.1121653 7.471917 0.1121653 +0.1535689 7.471917 0.1121653 +0.2091628 7.471917 0.1121653 +0.2838106 7.471917 0.1121653 +0.3840425 7.471917 0.1121653 +0.518627 7.471917 0.1121653 +0.6993381 7.471917 0.1121653 +0.9419845 7.471917 0.1121653 +1.267794 7.471917 0.1121653 +1.705268 7.471917 0.1121653 +2.292679 7.471917 0.1121653 +3.081414 7.471917 0.1121653 +4.140474 7.471917 0.1121653 +5.562508 7.471917 0.1121653 +7.471917 7.471917 0.1121653 +10.03574 7.471917 0.1121653 +13.47828 7.471917 0.1121653 +18.10068 7.471917 0.1121653 +24.30731 7.471917 0.1121653 +32.64117 7.471917 0.1121653 +43.83129 7.471917 0.1121653 +58.85664 7.471917 0.1121653 +-0.0175068 10.03574 0.1121653 +-0.01161267 10.03574 0.1121653 +-0.005718534 10.03574 0.1121653 +0.0001755984 10.03574 0.1121653 +0.006069731 10.03574 0.1121653 +0.01197402 10.03574 0.1121653 +0.01903886 10.03574 0.1121653 +0.02852504 10.03574 0.1121653 +0.04126244 10.03574 0.1121653 +0.05836535 10.03574 0.1121653 +0.08132997 10.03574 0.1121653 +0.1121653 10.03574 0.1121653 +0.1535689 10.03574 0.1121653 +0.2091628 10.03574 0.1121653 +0.2838106 10.03574 0.1121653 +0.3840425 10.03574 0.1121653 +0.518627 10.03574 0.1121653 +0.6993381 10.03574 0.1121653 +0.9419845 10.03574 0.1121653 +1.267794 10.03574 0.1121653 +1.705268 10.03574 0.1121653 +2.292679 10.03574 0.1121653 +3.081414 10.03574 0.1121653 +4.140474 10.03574 0.1121653 +5.562508 10.03574 0.1121653 +7.471917 10.03574 0.1121653 +10.03574 10.03574 0.1121653 +13.47828 10.03574 0.1121653 +18.10068 10.03574 0.1121653 +24.30731 10.03574 0.1121653 +32.64117 10.03574 0.1121653 +43.83129 10.03574 0.1121653 +58.85664 10.03574 0.1121653 +-0.0175068 13.47828 0.1121653 +-0.01161267 13.47828 0.1121653 +-0.005718534 13.47828 0.1121653 +0.0001755984 13.47828 0.1121653 +0.006069731 13.47828 0.1121653 +0.01197402 13.47828 0.1121653 +0.01903886 13.47828 0.1121653 +0.02852504 13.47828 0.1121653 +0.04126244 13.47828 0.1121653 +0.05836535 13.47828 0.1121653 +0.08132997 13.47828 0.1121653 +0.1121653 13.47828 0.1121653 +0.1535689 13.47828 0.1121653 +0.2091628 13.47828 0.1121653 +0.2838106 13.47828 0.1121653 +0.3840425 13.47828 0.1121653 +0.518627 13.47828 0.1121653 +0.6993381 13.47828 0.1121653 +0.9419845 13.47828 0.1121653 +1.267794 13.47828 0.1121653 +1.705268 13.47828 0.1121653 +2.292679 13.47828 0.1121653 +3.081414 13.47828 0.1121653 +4.140474 13.47828 0.1121653 +5.562508 13.47828 0.1121653 +7.471917 13.47828 0.1121653 +10.03574 13.47828 0.1121653 +13.47828 13.47828 0.1121653 +18.10068 13.47828 0.1121653 +24.30731 13.47828 0.1121653 +32.64117 13.47828 0.1121653 +43.83129 13.47828 0.1121653 +58.85664 13.47828 0.1121653 +-0.0175068 18.10068 0.1121653 +-0.01161267 18.10068 0.1121653 +-0.005718534 18.10068 0.1121653 +0.0001755984 18.10068 0.1121653 +0.006069731 18.10068 0.1121653 +0.01197402 18.10068 0.1121653 +0.01903886 18.10068 0.1121653 +0.02852504 18.10068 0.1121653 +0.04126244 18.10068 0.1121653 +0.05836535 18.10068 0.1121653 +0.08132997 18.10068 0.1121653 +0.1121653 18.10068 0.1121653 +0.1535689 18.10068 0.1121653 +0.2091628 18.10068 0.1121653 +0.2838106 18.10068 0.1121653 +0.3840425 18.10068 0.1121653 +0.518627 18.10068 0.1121653 +0.6993381 18.10068 0.1121653 +0.9419845 18.10068 0.1121653 +1.267794 18.10068 0.1121653 +1.705268 18.10068 0.1121653 +2.292679 18.10068 0.1121653 +3.081414 18.10068 0.1121653 +4.140474 18.10068 0.1121653 +5.562508 18.10068 0.1121653 +7.471917 18.10068 0.1121653 +10.03574 18.10068 0.1121653 +13.47828 18.10068 0.1121653 +18.10068 18.10068 0.1121653 +24.30731 18.10068 0.1121653 +32.64117 18.10068 0.1121653 +43.83129 18.10068 0.1121653 +58.85664 18.10068 0.1121653 +-0.0175068 24.30731 0.1121653 +-0.01161267 24.30731 0.1121653 +-0.005718534 24.30731 0.1121653 +0.0001755984 24.30731 0.1121653 +0.006069731 24.30731 0.1121653 +0.01197402 24.30731 0.1121653 +0.01903886 24.30731 0.1121653 +0.02852504 24.30731 0.1121653 +0.04126244 24.30731 0.1121653 +0.05836535 24.30731 0.1121653 +0.08132997 24.30731 0.1121653 +0.1121653 24.30731 0.1121653 +0.1535689 24.30731 0.1121653 +0.2091628 24.30731 0.1121653 +0.2838106 24.30731 0.1121653 +0.3840425 24.30731 0.1121653 +0.518627 24.30731 0.1121653 +0.6993381 24.30731 0.1121653 +0.9419845 24.30731 0.1121653 +1.267794 24.30731 0.1121653 +1.705268 24.30731 0.1121653 +2.292679 24.30731 0.1121653 +3.081414 24.30731 0.1121653 +4.140474 24.30731 0.1121653 +5.562508 24.30731 0.1121653 +7.471917 24.30731 0.1121653 +10.03574 24.30731 0.1121653 +13.47828 24.30731 0.1121653 +18.10068 24.30731 0.1121653 +24.30731 24.30731 0.1121653 +32.64117 24.30731 0.1121653 +43.83129 24.30731 0.1121653 +58.85664 24.30731 0.1121653 +-0.0175068 32.64117 0.1121653 +-0.01161267 32.64117 0.1121653 +-0.005718534 32.64117 0.1121653 +0.0001755984 32.64117 0.1121653 +0.006069731 32.64117 0.1121653 +0.01197402 32.64117 0.1121653 +0.01903886 32.64117 0.1121653 +0.02852504 32.64117 0.1121653 +0.04126244 32.64117 0.1121653 +0.05836535 32.64117 0.1121653 +0.08132997 32.64117 0.1121653 +0.1121653 32.64117 0.1121653 +0.1535689 32.64117 0.1121653 +0.2091628 32.64117 0.1121653 +0.2838106 32.64117 0.1121653 +0.3840425 32.64117 0.1121653 +0.518627 32.64117 0.1121653 +0.6993381 32.64117 0.1121653 +0.9419845 32.64117 0.1121653 +1.267794 32.64117 0.1121653 +1.705268 32.64117 0.1121653 +2.292679 32.64117 0.1121653 +3.081414 32.64117 0.1121653 +4.140474 32.64117 0.1121653 +5.562508 32.64117 0.1121653 +7.471917 32.64117 0.1121653 +10.03574 32.64117 0.1121653 +13.47828 32.64117 0.1121653 +18.10068 32.64117 0.1121653 +24.30731 32.64117 0.1121653 +32.64117 32.64117 0.1121653 +43.83129 32.64117 0.1121653 +58.85664 32.64117 0.1121653 +-0.0175068 43.83129 0.1121653 +-0.01161267 43.83129 0.1121653 +-0.005718534 43.83129 0.1121653 +0.0001755984 43.83129 0.1121653 +0.006069731 43.83129 0.1121653 +0.01197402 43.83129 0.1121653 +0.01903886 43.83129 0.1121653 +0.02852504 43.83129 0.1121653 +0.04126244 43.83129 0.1121653 +0.05836535 43.83129 0.1121653 +0.08132997 43.83129 0.1121653 +0.1121653 43.83129 0.1121653 +0.1535689 43.83129 0.1121653 +0.2091628 43.83129 0.1121653 +0.2838106 43.83129 0.1121653 +0.3840425 43.83129 0.1121653 +0.518627 43.83129 0.1121653 +0.6993381 43.83129 0.1121653 +0.9419845 43.83129 0.1121653 +1.267794 43.83129 0.1121653 +1.705268 43.83129 0.1121653 +2.292679 43.83129 0.1121653 +3.081414 43.83129 0.1121653 +4.140474 43.83129 0.1121653 +5.562508 43.83129 0.1121653 +7.471917 43.83129 0.1121653 +10.03574 43.83129 0.1121653 +13.47828 43.83129 0.1121653 +18.10068 43.83129 0.1121653 +24.30731 43.83129 0.1121653 +32.64117 43.83129 0.1121653 +43.83129 43.83129 0.1121653 +58.85664 43.83129 0.1121653 +-0.0175068 58.85664 0.1121653 +-0.01161267 58.85664 0.1121653 +-0.005718534 58.85664 0.1121653 +0.0001755984 58.85664 0.1121653 +0.006069731 58.85664 0.1121653 +0.01197402 58.85664 0.1121653 +0.01903886 58.85664 0.1121653 +0.02852504 58.85664 0.1121653 +0.04126244 58.85664 0.1121653 +0.05836535 58.85664 0.1121653 +0.08132997 58.85664 0.1121653 +0.1121653 58.85664 0.1121653 +0.1535689 58.85664 0.1121653 +0.2091628 58.85664 0.1121653 +0.2838106 58.85664 0.1121653 +0.3840425 58.85664 0.1121653 +0.518627 58.85664 0.1121653 +0.6993381 58.85664 0.1121653 +0.9419845 58.85664 0.1121653 +1.267794 58.85664 0.1121653 +1.705268 58.85664 0.1121653 +2.292679 58.85664 0.1121653 +3.081414 58.85664 0.1121653 +4.140474 58.85664 0.1121653 +5.562508 58.85664 0.1121653 +7.471917 58.85664 0.1121653 +10.03574 58.85664 0.1121653 +13.47828 58.85664 0.1121653 +18.10068 58.85664 0.1121653 +24.30731 58.85664 0.1121653 +32.64117 58.85664 0.1121653 +43.83129 58.85664 0.1121653 +58.85664 58.85664 0.1121653 +-0.0175068 -0.0175068 0.1535689 +-0.01161267 -0.0175068 0.1535689 +-0.005718534 -0.0175068 0.1535689 +0.0001755984 -0.0175068 0.1535689 +0.006069731 -0.0175068 0.1535689 +0.01197402 -0.0175068 0.1535689 +0.01903886 -0.0175068 0.1535689 +0.02852504 -0.0175068 0.1535689 +0.04126244 -0.0175068 0.1535689 +0.05836535 -0.0175068 0.1535689 +0.08132997 -0.0175068 0.1535689 +0.1121653 -0.0175068 0.1535689 +0.1535689 -0.0175068 0.1535689 +0.2091628 -0.0175068 0.1535689 +0.2838106 -0.0175068 0.1535689 +0.3840425 -0.0175068 0.1535689 +0.518627 -0.0175068 0.1535689 +0.6993381 -0.0175068 0.1535689 +0.9419845 -0.0175068 0.1535689 +1.267794 -0.0175068 0.1535689 +1.705268 -0.0175068 0.1535689 +2.292679 -0.0175068 0.1535689 +3.081414 -0.0175068 0.1535689 +4.140474 -0.0175068 0.1535689 +5.562508 -0.0175068 0.1535689 +7.471917 -0.0175068 0.1535689 +10.03574 -0.0175068 0.1535689 +13.47828 -0.0175068 0.1535689 +18.10068 -0.0175068 0.1535689 +24.30731 -0.0175068 0.1535689 +32.64117 -0.0175068 0.1535689 +43.83129 -0.0175068 0.1535689 +58.85664 -0.0175068 0.1535689 +-0.0175068 -0.01161267 0.1535689 +-0.01161267 -0.01161267 0.1535689 +-0.005718534 -0.01161267 0.1535689 +0.0001755984 -0.01161267 0.1535689 +0.006069731 -0.01161267 0.1535689 +0.01197402 -0.01161267 0.1535689 +0.01903886 -0.01161267 0.1535689 +0.02852504 -0.01161267 0.1535689 +0.04126244 -0.01161267 0.1535689 +0.05836535 -0.01161267 0.1535689 +0.08132997 -0.01161267 0.1535689 +0.1121653 -0.01161267 0.1535689 +0.1535689 -0.01161267 0.1535689 +0.2091628 -0.01161267 0.1535689 +0.2838106 -0.01161267 0.1535689 +0.3840425 -0.01161267 0.1535689 +0.518627 -0.01161267 0.1535689 +0.6993381 -0.01161267 0.1535689 +0.9419845 -0.01161267 0.1535689 +1.267794 -0.01161267 0.1535689 +1.705268 -0.01161267 0.1535689 +2.292679 -0.01161267 0.1535689 +3.081414 -0.01161267 0.1535689 +4.140474 -0.01161267 0.1535689 +5.562508 -0.01161267 0.1535689 +7.471917 -0.01161267 0.1535689 +10.03574 -0.01161267 0.1535689 +13.47828 -0.01161267 0.1535689 +18.10068 -0.01161267 0.1535689 +24.30731 -0.01161267 0.1535689 +32.64117 -0.01161267 0.1535689 +43.83129 -0.01161267 0.1535689 +58.85664 -0.01161267 0.1535689 +-0.0175068 -0.005718534 0.1535689 +-0.01161267 -0.005718534 0.1535689 +-0.005718534 -0.005718534 0.1535689 +0.0001755984 -0.005718534 0.1535689 +0.006069731 -0.005718534 0.1535689 +0.01197402 -0.005718534 0.1535689 +0.01903886 -0.005718534 0.1535689 +0.02852504 -0.005718534 0.1535689 +0.04126244 -0.005718534 0.1535689 +0.05836535 -0.005718534 0.1535689 +0.08132997 -0.005718534 0.1535689 +0.1121653 -0.005718534 0.1535689 +0.1535689 -0.005718534 0.1535689 +0.2091628 -0.005718534 0.1535689 +0.2838106 -0.005718534 0.1535689 +0.3840425 -0.005718534 0.1535689 +0.518627 -0.005718534 0.1535689 +0.6993381 -0.005718534 0.1535689 +0.9419845 -0.005718534 0.1535689 +1.267794 -0.005718534 0.1535689 +1.705268 -0.005718534 0.1535689 +2.292679 -0.005718534 0.1535689 +3.081414 -0.005718534 0.1535689 +4.140474 -0.005718534 0.1535689 +5.562508 -0.005718534 0.1535689 +7.471917 -0.005718534 0.1535689 +10.03574 -0.005718534 0.1535689 +13.47828 -0.005718534 0.1535689 +18.10068 -0.005718534 0.1535689 +24.30731 -0.005718534 0.1535689 +32.64117 -0.005718534 0.1535689 +43.83129 -0.005718534 0.1535689 +58.85664 -0.005718534 0.1535689 +-0.0175068 0.0001755984 0.1535689 +-0.01161267 0.0001755984 0.1535689 +-0.005718534 0.0001755984 0.1535689 +0.0001755984 0.0001755984 0.1535689 +0.006069731 0.0001755984 0.1535689 +0.01197402 0.0001755984 0.1535689 +0.01903886 0.0001755984 0.1535689 +0.02852504 0.0001755984 0.1535689 +0.04126244 0.0001755984 0.1535689 +0.05836535 0.0001755984 0.1535689 +0.08132997 0.0001755984 0.1535689 +0.1121653 0.0001755984 0.1535689 +0.1535689 0.0001755984 0.1535689 +0.2091628 0.0001755984 0.1535689 +0.2838106 0.0001755984 0.1535689 +0.3840425 0.0001755984 0.1535689 +0.518627 0.0001755984 0.1535689 +0.6993381 0.0001755984 0.1535689 +0.9419845 0.0001755984 0.1535689 +1.267794 0.0001755984 0.1535689 +1.705268 0.0001755984 0.1535689 +2.292679 0.0001755984 0.1535689 +3.081414 0.0001755984 0.1535689 +4.140474 0.0001755984 0.1535689 +5.562508 0.0001755984 0.1535689 +7.471917 0.0001755984 0.1535689 +10.03574 0.0001755984 0.1535689 +13.47828 0.0001755984 0.1535689 +18.10068 0.0001755984 0.1535689 +24.30731 0.0001755984 0.1535689 +32.64117 0.0001755984 0.1535689 +43.83129 0.0001755984 0.1535689 +58.85664 0.0001755984 0.1535689 +-0.0175068 0.006069731 0.1535689 +-0.01161267 0.006069731 0.1535689 +-0.005718534 0.006069731 0.1535689 +0.0001755984 0.006069731 0.1535689 +0.006069731 0.006069731 0.1535689 +0.01197402 0.006069731 0.1535689 +0.01903886 0.006069731 0.1535689 +0.02852504 0.006069731 0.1535689 +0.04126244 0.006069731 0.1535689 +0.05836535 0.006069731 0.1535689 +0.08132997 0.006069731 0.1535689 +0.1121653 0.006069731 0.1535689 +0.1535689 0.006069731 0.1535689 +0.2091628 0.006069731 0.1535689 +0.2838106 0.006069731 0.1535689 +0.3840425 0.006069731 0.1535689 +0.518627 0.006069731 0.1535689 +0.6993381 0.006069731 0.1535689 +0.9419845 0.006069731 0.1535689 +1.267794 0.006069731 0.1535689 +1.705268 0.006069731 0.1535689 +2.292679 0.006069731 0.1535689 +3.081414 0.006069731 0.1535689 +4.140474 0.006069731 0.1535689 +5.562508 0.006069731 0.1535689 +7.471917 0.006069731 0.1535689 +10.03574 0.006069731 0.1535689 +13.47828 0.006069731 0.1535689 +18.10068 0.006069731 0.1535689 +24.30731 0.006069731 0.1535689 +32.64117 0.006069731 0.1535689 +43.83129 0.006069731 0.1535689 +58.85664 0.006069731 0.1535689 +-0.0175068 0.01197402 0.1535689 +-0.01161267 0.01197402 0.1535689 +-0.005718534 0.01197402 0.1535689 +0.0001755984 0.01197402 0.1535689 +0.006069731 0.01197402 0.1535689 +0.01197402 0.01197402 0.1535689 +0.01903886 0.01197402 0.1535689 +0.02852504 0.01197402 0.1535689 +0.04126244 0.01197402 0.1535689 +0.05836535 0.01197402 0.1535689 +0.08132997 0.01197402 0.1535689 +0.1121653 0.01197402 0.1535689 +0.1535689 0.01197402 0.1535689 +0.2091628 0.01197402 0.1535689 +0.2838106 0.01197402 0.1535689 +0.3840425 0.01197402 0.1535689 +0.518627 0.01197402 0.1535689 +0.6993381 0.01197402 0.1535689 +0.9419845 0.01197402 0.1535689 +1.267794 0.01197402 0.1535689 +1.705268 0.01197402 0.1535689 +2.292679 0.01197402 0.1535689 +3.081414 0.01197402 0.1535689 +4.140474 0.01197402 0.1535689 +5.562508 0.01197402 0.1535689 +7.471917 0.01197402 0.1535689 +10.03574 0.01197402 0.1535689 +13.47828 0.01197402 0.1535689 +18.10068 0.01197402 0.1535689 +24.30731 0.01197402 0.1535689 +32.64117 0.01197402 0.1535689 +43.83129 0.01197402 0.1535689 +58.85664 0.01197402 0.1535689 +-0.0175068 0.01903886 0.1535689 +-0.01161267 0.01903886 0.1535689 +-0.005718534 0.01903886 0.1535689 +0.0001755984 0.01903886 0.1535689 +0.006069731 0.01903886 0.1535689 +0.01197402 0.01903886 0.1535689 +0.01903886 0.01903886 0.1535689 +0.02852504 0.01903886 0.1535689 +0.04126244 0.01903886 0.1535689 +0.05836535 0.01903886 0.1535689 +0.08132997 0.01903886 0.1535689 +0.1121653 0.01903886 0.1535689 +0.1535689 0.01903886 0.1535689 +0.2091628 0.01903886 0.1535689 +0.2838106 0.01903886 0.1535689 +0.3840425 0.01903886 0.1535689 +0.518627 0.01903886 0.1535689 +0.6993381 0.01903886 0.1535689 +0.9419845 0.01903886 0.1535689 +1.267794 0.01903886 0.1535689 +1.705268 0.01903886 0.1535689 +2.292679 0.01903886 0.1535689 +3.081414 0.01903886 0.1535689 +4.140474 0.01903886 0.1535689 +5.562508 0.01903886 0.1535689 +7.471917 0.01903886 0.1535689 +10.03574 0.01903886 0.1535689 +13.47828 0.01903886 0.1535689 +18.10068 0.01903886 0.1535689 +24.30731 0.01903886 0.1535689 +32.64117 0.01903886 0.1535689 +43.83129 0.01903886 0.1535689 +58.85664 0.01903886 0.1535689 +-0.0175068 0.02852504 0.1535689 +-0.01161267 0.02852504 0.1535689 +-0.005718534 0.02852504 0.1535689 +0.0001755984 0.02852504 0.1535689 +0.006069731 0.02852504 0.1535689 +0.01197402 0.02852504 0.1535689 +0.01903886 0.02852504 0.1535689 +0.02852504 0.02852504 0.1535689 +0.04126244 0.02852504 0.1535689 +0.05836535 0.02852504 0.1535689 +0.08132997 0.02852504 0.1535689 +0.1121653 0.02852504 0.1535689 +0.1535689 0.02852504 0.1535689 +0.2091628 0.02852504 0.1535689 +0.2838106 0.02852504 0.1535689 +0.3840425 0.02852504 0.1535689 +0.518627 0.02852504 0.1535689 +0.6993381 0.02852504 0.1535689 +0.9419845 0.02852504 0.1535689 +1.267794 0.02852504 0.1535689 +1.705268 0.02852504 0.1535689 +2.292679 0.02852504 0.1535689 +3.081414 0.02852504 0.1535689 +4.140474 0.02852504 0.1535689 +5.562508 0.02852504 0.1535689 +7.471917 0.02852504 0.1535689 +10.03574 0.02852504 0.1535689 +13.47828 0.02852504 0.1535689 +18.10068 0.02852504 0.1535689 +24.30731 0.02852504 0.1535689 +32.64117 0.02852504 0.1535689 +43.83129 0.02852504 0.1535689 +58.85664 0.02852504 0.1535689 +-0.0175068 0.04126244 0.1535689 +-0.01161267 0.04126244 0.1535689 +-0.005718534 0.04126244 0.1535689 +0.0001755984 0.04126244 0.1535689 +0.006069731 0.04126244 0.1535689 +0.01197402 0.04126244 0.1535689 +0.01903886 0.04126244 0.1535689 +0.02852504 0.04126244 0.1535689 +0.04126244 0.04126244 0.1535689 +0.05836535 0.04126244 0.1535689 +0.08132997 0.04126244 0.1535689 +0.1121653 0.04126244 0.1535689 +0.1535689 0.04126244 0.1535689 +0.2091628 0.04126244 0.1535689 +0.2838106 0.04126244 0.1535689 +0.3840425 0.04126244 0.1535689 +0.518627 0.04126244 0.1535689 +0.6993381 0.04126244 0.1535689 +0.9419845 0.04126244 0.1535689 +1.267794 0.04126244 0.1535689 +1.705268 0.04126244 0.1535689 +2.292679 0.04126244 0.1535689 +3.081414 0.04126244 0.1535689 +4.140474 0.04126244 0.1535689 +5.562508 0.04126244 0.1535689 +7.471917 0.04126244 0.1535689 +10.03574 0.04126244 0.1535689 +13.47828 0.04126244 0.1535689 +18.10068 0.04126244 0.1535689 +24.30731 0.04126244 0.1535689 +32.64117 0.04126244 0.1535689 +43.83129 0.04126244 0.1535689 +58.85664 0.04126244 0.1535689 +-0.0175068 0.05836535 0.1535689 +-0.01161267 0.05836535 0.1535689 +-0.005718534 0.05836535 0.1535689 +0.0001755984 0.05836535 0.1535689 +0.006069731 0.05836535 0.1535689 +0.01197402 0.05836535 0.1535689 +0.01903886 0.05836535 0.1535689 +0.02852504 0.05836535 0.1535689 +0.04126244 0.05836535 0.1535689 +0.05836535 0.05836535 0.1535689 +0.08132997 0.05836535 0.1535689 +0.1121653 0.05836535 0.1535689 +0.1535689 0.05836535 0.1535689 +0.2091628 0.05836535 0.1535689 +0.2838106 0.05836535 0.1535689 +0.3840425 0.05836535 0.1535689 +0.518627 0.05836535 0.1535689 +0.6993381 0.05836535 0.1535689 +0.9419845 0.05836535 0.1535689 +1.267794 0.05836535 0.1535689 +1.705268 0.05836535 0.1535689 +2.292679 0.05836535 0.1535689 +3.081414 0.05836535 0.1535689 +4.140474 0.05836535 0.1535689 +5.562508 0.05836535 0.1535689 +7.471917 0.05836535 0.1535689 +10.03574 0.05836535 0.1535689 +13.47828 0.05836535 0.1535689 +18.10068 0.05836535 0.1535689 +24.30731 0.05836535 0.1535689 +32.64117 0.05836535 0.1535689 +43.83129 0.05836535 0.1535689 +58.85664 0.05836535 0.1535689 +-0.0175068 0.08132997 0.1535689 +-0.01161267 0.08132997 0.1535689 +-0.005718534 0.08132997 0.1535689 +0.0001755984 0.08132997 0.1535689 +0.006069731 0.08132997 0.1535689 +0.01197402 0.08132997 0.1535689 +0.01903886 0.08132997 0.1535689 +0.02852504 0.08132997 0.1535689 +0.04126244 0.08132997 0.1535689 +0.05836535 0.08132997 0.1535689 +0.08132997 0.08132997 0.1535689 +0.1121653 0.08132997 0.1535689 +0.1535689 0.08132997 0.1535689 +0.2091628 0.08132997 0.1535689 +0.2838106 0.08132997 0.1535689 +0.3840425 0.08132997 0.1535689 +0.518627 0.08132997 0.1535689 +0.6993381 0.08132997 0.1535689 +0.9419845 0.08132997 0.1535689 +1.267794 0.08132997 0.1535689 +1.705268 0.08132997 0.1535689 +2.292679 0.08132997 0.1535689 +3.081414 0.08132997 0.1535689 +4.140474 0.08132997 0.1535689 +5.562508 0.08132997 0.1535689 +7.471917 0.08132997 0.1535689 +10.03574 0.08132997 0.1535689 +13.47828 0.08132997 0.1535689 +18.10068 0.08132997 0.1535689 +24.30731 0.08132997 0.1535689 +32.64117 0.08132997 0.1535689 +43.83129 0.08132997 0.1535689 +58.85664 0.08132997 0.1535689 +-0.0175068 0.1121653 0.1535689 +-0.01161267 0.1121653 0.1535689 +-0.005718534 0.1121653 0.1535689 +0.0001755984 0.1121653 0.1535689 +0.006069731 0.1121653 0.1535689 +0.01197402 0.1121653 0.1535689 +0.01903886 0.1121653 0.1535689 +0.02852504 0.1121653 0.1535689 +0.04126244 0.1121653 0.1535689 +0.05836535 0.1121653 0.1535689 +0.08132997 0.1121653 0.1535689 +0.1121653 0.1121653 0.1535689 +0.1535689 0.1121653 0.1535689 +0.2091628 0.1121653 0.1535689 +0.2838106 0.1121653 0.1535689 +0.3840425 0.1121653 0.1535689 +0.518627 0.1121653 0.1535689 +0.6993381 0.1121653 0.1535689 +0.9419845 0.1121653 0.1535689 +1.267794 0.1121653 0.1535689 +1.705268 0.1121653 0.1535689 +2.292679 0.1121653 0.1535689 +3.081414 0.1121653 0.1535689 +4.140474 0.1121653 0.1535689 +5.562508 0.1121653 0.1535689 +7.471917 0.1121653 0.1535689 +10.03574 0.1121653 0.1535689 +13.47828 0.1121653 0.1535689 +18.10068 0.1121653 0.1535689 +24.30731 0.1121653 0.1535689 +32.64117 0.1121653 0.1535689 +43.83129 0.1121653 0.1535689 +58.85664 0.1121653 0.1535689 +-0.0175068 0.1535689 0.1535689 +-0.01161267 0.1535689 0.1535689 +-0.005718534 0.1535689 0.1535689 +0.0001755984 0.1535689 0.1535689 +0.006069731 0.1535689 0.1535689 +0.01197402 0.1535689 0.1535689 +0.01903886 0.1535689 0.1535689 +0.02852504 0.1535689 0.1535689 +0.04126244 0.1535689 0.1535689 +0.05836535 0.1535689 0.1535689 +0.08132997 0.1535689 0.1535689 +0.1121653 0.1535689 0.1535689 +0.1535689 0.1535689 0.1535689 +0.2091628 0.1535689 0.1535689 +0.2838106 0.1535689 0.1535689 +0.3840425 0.1535689 0.1535689 +0.518627 0.1535689 0.1535689 +0.6993381 0.1535689 0.1535689 +0.9419845 0.1535689 0.1535689 +1.267794 0.1535689 0.1535689 +1.705268 0.1535689 0.1535689 +2.292679 0.1535689 0.1535689 +3.081414 0.1535689 0.1535689 +4.140474 0.1535689 0.1535689 +5.562508 0.1535689 0.1535689 +7.471917 0.1535689 0.1535689 +10.03574 0.1535689 0.1535689 +13.47828 0.1535689 0.1535689 +18.10068 0.1535689 0.1535689 +24.30731 0.1535689 0.1535689 +32.64117 0.1535689 0.1535689 +43.83129 0.1535689 0.1535689 +58.85664 0.1535689 0.1535689 +-0.0175068 0.2091628 0.1535689 +-0.01161267 0.2091628 0.1535689 +-0.005718534 0.2091628 0.1535689 +0.0001755984 0.2091628 0.1535689 +0.006069731 0.2091628 0.1535689 +0.01197402 0.2091628 0.1535689 +0.01903886 0.2091628 0.1535689 +0.02852504 0.2091628 0.1535689 +0.04126244 0.2091628 0.1535689 +0.05836535 0.2091628 0.1535689 +0.08132997 0.2091628 0.1535689 +0.1121653 0.2091628 0.1535689 +0.1535689 0.2091628 0.1535689 +0.2091628 0.2091628 0.1535689 +0.2838106 0.2091628 0.1535689 +0.3840425 0.2091628 0.1535689 +0.518627 0.2091628 0.1535689 +0.6993381 0.2091628 0.1535689 +0.9419845 0.2091628 0.1535689 +1.267794 0.2091628 0.1535689 +1.705268 0.2091628 0.1535689 +2.292679 0.2091628 0.1535689 +3.081414 0.2091628 0.1535689 +4.140474 0.2091628 0.1535689 +5.562508 0.2091628 0.1535689 +7.471917 0.2091628 0.1535689 +10.03574 0.2091628 0.1535689 +13.47828 0.2091628 0.1535689 +18.10068 0.2091628 0.1535689 +24.30731 0.2091628 0.1535689 +32.64117 0.2091628 0.1535689 +43.83129 0.2091628 0.1535689 +58.85664 0.2091628 0.1535689 +-0.0175068 0.2838106 0.1535689 +-0.01161267 0.2838106 0.1535689 +-0.005718534 0.2838106 0.1535689 +0.0001755984 0.2838106 0.1535689 +0.006069731 0.2838106 0.1535689 +0.01197402 0.2838106 0.1535689 +0.01903886 0.2838106 0.1535689 +0.02852504 0.2838106 0.1535689 +0.04126244 0.2838106 0.1535689 +0.05836535 0.2838106 0.1535689 +0.08132997 0.2838106 0.1535689 +0.1121653 0.2838106 0.1535689 +0.1535689 0.2838106 0.1535689 +0.2091628 0.2838106 0.1535689 +0.2838106 0.2838106 0.1535689 +0.3840425 0.2838106 0.1535689 +0.518627 0.2838106 0.1535689 +0.6993381 0.2838106 0.1535689 +0.9419845 0.2838106 0.1535689 +1.267794 0.2838106 0.1535689 +1.705268 0.2838106 0.1535689 +2.292679 0.2838106 0.1535689 +3.081414 0.2838106 0.1535689 +4.140474 0.2838106 0.1535689 +5.562508 0.2838106 0.1535689 +7.471917 0.2838106 0.1535689 +10.03574 0.2838106 0.1535689 +13.47828 0.2838106 0.1535689 +18.10068 0.2838106 0.1535689 +24.30731 0.2838106 0.1535689 +32.64117 0.2838106 0.1535689 +43.83129 0.2838106 0.1535689 +58.85664 0.2838106 0.1535689 +-0.0175068 0.3840425 0.1535689 +-0.01161267 0.3840425 0.1535689 +-0.005718534 0.3840425 0.1535689 +0.0001755984 0.3840425 0.1535689 +0.006069731 0.3840425 0.1535689 +0.01197402 0.3840425 0.1535689 +0.01903886 0.3840425 0.1535689 +0.02852504 0.3840425 0.1535689 +0.04126244 0.3840425 0.1535689 +0.05836535 0.3840425 0.1535689 +0.08132997 0.3840425 0.1535689 +0.1121653 0.3840425 0.1535689 +0.1535689 0.3840425 0.1535689 +0.2091628 0.3840425 0.1535689 +0.2838106 0.3840425 0.1535689 +0.3840425 0.3840425 0.1535689 +0.518627 0.3840425 0.1535689 +0.6993381 0.3840425 0.1535689 +0.9419845 0.3840425 0.1535689 +1.267794 0.3840425 0.1535689 +1.705268 0.3840425 0.1535689 +2.292679 0.3840425 0.1535689 +3.081414 0.3840425 0.1535689 +4.140474 0.3840425 0.1535689 +5.562508 0.3840425 0.1535689 +7.471917 0.3840425 0.1535689 +10.03574 0.3840425 0.1535689 +13.47828 0.3840425 0.1535689 +18.10068 0.3840425 0.1535689 +24.30731 0.3840425 0.1535689 +32.64117 0.3840425 0.1535689 +43.83129 0.3840425 0.1535689 +58.85664 0.3840425 0.1535689 +-0.0175068 0.518627 0.1535689 +-0.01161267 0.518627 0.1535689 +-0.005718534 0.518627 0.1535689 +0.0001755984 0.518627 0.1535689 +0.006069731 0.518627 0.1535689 +0.01197402 0.518627 0.1535689 +0.01903886 0.518627 0.1535689 +0.02852504 0.518627 0.1535689 +0.04126244 0.518627 0.1535689 +0.05836535 0.518627 0.1535689 +0.08132997 0.518627 0.1535689 +0.1121653 0.518627 0.1535689 +0.1535689 0.518627 0.1535689 +0.2091628 0.518627 0.1535689 +0.2838106 0.518627 0.1535689 +0.3840425 0.518627 0.1535689 +0.518627 0.518627 0.1535689 +0.6993381 0.518627 0.1535689 +0.9419845 0.518627 0.1535689 +1.267794 0.518627 0.1535689 +1.705268 0.518627 0.1535689 +2.292679 0.518627 0.1535689 +3.081414 0.518627 0.1535689 +4.140474 0.518627 0.1535689 +5.562508 0.518627 0.1535689 +7.471917 0.518627 0.1535689 +10.03574 0.518627 0.1535689 +13.47828 0.518627 0.1535689 +18.10068 0.518627 0.1535689 +24.30731 0.518627 0.1535689 +32.64117 0.518627 0.1535689 +43.83129 0.518627 0.1535689 +58.85664 0.518627 0.1535689 +-0.0175068 0.6993381 0.1535689 +-0.01161267 0.6993381 0.1535689 +-0.005718534 0.6993381 0.1535689 +0.0001755984 0.6993381 0.1535689 +0.006069731 0.6993381 0.1535689 +0.01197402 0.6993381 0.1535689 +0.01903886 0.6993381 0.1535689 +0.02852504 0.6993381 0.1535689 +0.04126244 0.6993381 0.1535689 +0.05836535 0.6993381 0.1535689 +0.08132997 0.6993381 0.1535689 +0.1121653 0.6993381 0.1535689 +0.1535689 0.6993381 0.1535689 +0.2091628 0.6993381 0.1535689 +0.2838106 0.6993381 0.1535689 +0.3840425 0.6993381 0.1535689 +0.518627 0.6993381 0.1535689 +0.6993381 0.6993381 0.1535689 +0.9419845 0.6993381 0.1535689 +1.267794 0.6993381 0.1535689 +1.705268 0.6993381 0.1535689 +2.292679 0.6993381 0.1535689 +3.081414 0.6993381 0.1535689 +4.140474 0.6993381 0.1535689 +5.562508 0.6993381 0.1535689 +7.471917 0.6993381 0.1535689 +10.03574 0.6993381 0.1535689 +13.47828 0.6993381 0.1535689 +18.10068 0.6993381 0.1535689 +24.30731 0.6993381 0.1535689 +32.64117 0.6993381 0.1535689 +43.83129 0.6993381 0.1535689 +58.85664 0.6993381 0.1535689 +-0.0175068 0.9419845 0.1535689 +-0.01161267 0.9419845 0.1535689 +-0.005718534 0.9419845 0.1535689 +0.0001755984 0.9419845 0.1535689 +0.006069731 0.9419845 0.1535689 +0.01197402 0.9419845 0.1535689 +0.01903886 0.9419845 0.1535689 +0.02852504 0.9419845 0.1535689 +0.04126244 0.9419845 0.1535689 +0.05836535 0.9419845 0.1535689 +0.08132997 0.9419845 0.1535689 +0.1121653 0.9419845 0.1535689 +0.1535689 0.9419845 0.1535689 +0.2091628 0.9419845 0.1535689 +0.2838106 0.9419845 0.1535689 +0.3840425 0.9419845 0.1535689 +0.518627 0.9419845 0.1535689 +0.6993381 0.9419845 0.1535689 +0.9419845 0.9419845 0.1535689 +1.267794 0.9419845 0.1535689 +1.705268 0.9419845 0.1535689 +2.292679 0.9419845 0.1535689 +3.081414 0.9419845 0.1535689 +4.140474 0.9419845 0.1535689 +5.562508 0.9419845 0.1535689 +7.471917 0.9419845 0.1535689 +10.03574 0.9419845 0.1535689 +13.47828 0.9419845 0.1535689 +18.10068 0.9419845 0.1535689 +24.30731 0.9419845 0.1535689 +32.64117 0.9419845 0.1535689 +43.83129 0.9419845 0.1535689 +58.85664 0.9419845 0.1535689 +-0.0175068 1.267794 0.1535689 +-0.01161267 1.267794 0.1535689 +-0.005718534 1.267794 0.1535689 +0.0001755984 1.267794 0.1535689 +0.006069731 1.267794 0.1535689 +0.01197402 1.267794 0.1535689 +0.01903886 1.267794 0.1535689 +0.02852504 1.267794 0.1535689 +0.04126244 1.267794 0.1535689 +0.05836535 1.267794 0.1535689 +0.08132997 1.267794 0.1535689 +0.1121653 1.267794 0.1535689 +0.1535689 1.267794 0.1535689 +0.2091628 1.267794 0.1535689 +0.2838106 1.267794 0.1535689 +0.3840425 1.267794 0.1535689 +0.518627 1.267794 0.1535689 +0.6993381 1.267794 0.1535689 +0.9419845 1.267794 0.1535689 +1.267794 1.267794 0.1535689 +1.705268 1.267794 0.1535689 +2.292679 1.267794 0.1535689 +3.081414 1.267794 0.1535689 +4.140474 1.267794 0.1535689 +5.562508 1.267794 0.1535689 +7.471917 1.267794 0.1535689 +10.03574 1.267794 0.1535689 +13.47828 1.267794 0.1535689 +18.10068 1.267794 0.1535689 +24.30731 1.267794 0.1535689 +32.64117 1.267794 0.1535689 +43.83129 1.267794 0.1535689 +58.85664 1.267794 0.1535689 +-0.0175068 1.705268 0.1535689 +-0.01161267 1.705268 0.1535689 +-0.005718534 1.705268 0.1535689 +0.0001755984 1.705268 0.1535689 +0.006069731 1.705268 0.1535689 +0.01197402 1.705268 0.1535689 +0.01903886 1.705268 0.1535689 +0.02852504 1.705268 0.1535689 +0.04126244 1.705268 0.1535689 +0.05836535 1.705268 0.1535689 +0.08132997 1.705268 0.1535689 +0.1121653 1.705268 0.1535689 +0.1535689 1.705268 0.1535689 +0.2091628 1.705268 0.1535689 +0.2838106 1.705268 0.1535689 +0.3840425 1.705268 0.1535689 +0.518627 1.705268 0.1535689 +0.6993381 1.705268 0.1535689 +0.9419845 1.705268 0.1535689 +1.267794 1.705268 0.1535689 +1.705268 1.705268 0.1535689 +2.292679 1.705268 0.1535689 +3.081414 1.705268 0.1535689 +4.140474 1.705268 0.1535689 +5.562508 1.705268 0.1535689 +7.471917 1.705268 0.1535689 +10.03574 1.705268 0.1535689 +13.47828 1.705268 0.1535689 +18.10068 1.705268 0.1535689 +24.30731 1.705268 0.1535689 +32.64117 1.705268 0.1535689 +43.83129 1.705268 0.1535689 +58.85664 1.705268 0.1535689 +-0.0175068 2.292679 0.1535689 +-0.01161267 2.292679 0.1535689 +-0.005718534 2.292679 0.1535689 +0.0001755984 2.292679 0.1535689 +0.006069731 2.292679 0.1535689 +0.01197402 2.292679 0.1535689 +0.01903886 2.292679 0.1535689 +0.02852504 2.292679 0.1535689 +0.04126244 2.292679 0.1535689 +0.05836535 2.292679 0.1535689 +0.08132997 2.292679 0.1535689 +0.1121653 2.292679 0.1535689 +0.1535689 2.292679 0.1535689 +0.2091628 2.292679 0.1535689 +0.2838106 2.292679 0.1535689 +0.3840425 2.292679 0.1535689 +0.518627 2.292679 0.1535689 +0.6993381 2.292679 0.1535689 +0.9419845 2.292679 0.1535689 +1.267794 2.292679 0.1535689 +1.705268 2.292679 0.1535689 +2.292679 2.292679 0.1535689 +3.081414 2.292679 0.1535689 +4.140474 2.292679 0.1535689 +5.562508 2.292679 0.1535689 +7.471917 2.292679 0.1535689 +10.03574 2.292679 0.1535689 +13.47828 2.292679 0.1535689 +18.10068 2.292679 0.1535689 +24.30731 2.292679 0.1535689 +32.64117 2.292679 0.1535689 +43.83129 2.292679 0.1535689 +58.85664 2.292679 0.1535689 +-0.0175068 3.081414 0.1535689 +-0.01161267 3.081414 0.1535689 +-0.005718534 3.081414 0.1535689 +0.0001755984 3.081414 0.1535689 +0.006069731 3.081414 0.1535689 +0.01197402 3.081414 0.1535689 +0.01903886 3.081414 0.1535689 +0.02852504 3.081414 0.1535689 +0.04126244 3.081414 0.1535689 +0.05836535 3.081414 0.1535689 +0.08132997 3.081414 0.1535689 +0.1121653 3.081414 0.1535689 +0.1535689 3.081414 0.1535689 +0.2091628 3.081414 0.1535689 +0.2838106 3.081414 0.1535689 +0.3840425 3.081414 0.1535689 +0.518627 3.081414 0.1535689 +0.6993381 3.081414 0.1535689 +0.9419845 3.081414 0.1535689 +1.267794 3.081414 0.1535689 +1.705268 3.081414 0.1535689 +2.292679 3.081414 0.1535689 +3.081414 3.081414 0.1535689 +4.140474 3.081414 0.1535689 +5.562508 3.081414 0.1535689 +7.471917 3.081414 0.1535689 +10.03574 3.081414 0.1535689 +13.47828 3.081414 0.1535689 +18.10068 3.081414 0.1535689 +24.30731 3.081414 0.1535689 +32.64117 3.081414 0.1535689 +43.83129 3.081414 0.1535689 +58.85664 3.081414 0.1535689 +-0.0175068 4.140474 0.1535689 +-0.01161267 4.140474 0.1535689 +-0.005718534 4.140474 0.1535689 +0.0001755984 4.140474 0.1535689 +0.006069731 4.140474 0.1535689 +0.01197402 4.140474 0.1535689 +0.01903886 4.140474 0.1535689 +0.02852504 4.140474 0.1535689 +0.04126244 4.140474 0.1535689 +0.05836535 4.140474 0.1535689 +0.08132997 4.140474 0.1535689 +0.1121653 4.140474 0.1535689 +0.1535689 4.140474 0.1535689 +0.2091628 4.140474 0.1535689 +0.2838106 4.140474 0.1535689 +0.3840425 4.140474 0.1535689 +0.518627 4.140474 0.1535689 +0.6993381 4.140474 0.1535689 +0.9419845 4.140474 0.1535689 +1.267794 4.140474 0.1535689 +1.705268 4.140474 0.1535689 +2.292679 4.140474 0.1535689 +3.081414 4.140474 0.1535689 +4.140474 4.140474 0.1535689 +5.562508 4.140474 0.1535689 +7.471917 4.140474 0.1535689 +10.03574 4.140474 0.1535689 +13.47828 4.140474 0.1535689 +18.10068 4.140474 0.1535689 +24.30731 4.140474 0.1535689 +32.64117 4.140474 0.1535689 +43.83129 4.140474 0.1535689 +58.85664 4.140474 0.1535689 +-0.0175068 5.562508 0.1535689 +-0.01161267 5.562508 0.1535689 +-0.005718534 5.562508 0.1535689 +0.0001755984 5.562508 0.1535689 +0.006069731 5.562508 0.1535689 +0.01197402 5.562508 0.1535689 +0.01903886 5.562508 0.1535689 +0.02852504 5.562508 0.1535689 +0.04126244 5.562508 0.1535689 +0.05836535 5.562508 0.1535689 +0.08132997 5.562508 0.1535689 +0.1121653 5.562508 0.1535689 +0.1535689 5.562508 0.1535689 +0.2091628 5.562508 0.1535689 +0.2838106 5.562508 0.1535689 +0.3840425 5.562508 0.1535689 +0.518627 5.562508 0.1535689 +0.6993381 5.562508 0.1535689 +0.9419845 5.562508 0.1535689 +1.267794 5.562508 0.1535689 +1.705268 5.562508 0.1535689 +2.292679 5.562508 0.1535689 +3.081414 5.562508 0.1535689 +4.140474 5.562508 0.1535689 +5.562508 5.562508 0.1535689 +7.471917 5.562508 0.1535689 +10.03574 5.562508 0.1535689 +13.47828 5.562508 0.1535689 +18.10068 5.562508 0.1535689 +24.30731 5.562508 0.1535689 +32.64117 5.562508 0.1535689 +43.83129 5.562508 0.1535689 +58.85664 5.562508 0.1535689 +-0.0175068 7.471917 0.1535689 +-0.01161267 7.471917 0.1535689 +-0.005718534 7.471917 0.1535689 +0.0001755984 7.471917 0.1535689 +0.006069731 7.471917 0.1535689 +0.01197402 7.471917 0.1535689 +0.01903886 7.471917 0.1535689 +0.02852504 7.471917 0.1535689 +0.04126244 7.471917 0.1535689 +0.05836535 7.471917 0.1535689 +0.08132997 7.471917 0.1535689 +0.1121653 7.471917 0.1535689 +0.1535689 7.471917 0.1535689 +0.2091628 7.471917 0.1535689 +0.2838106 7.471917 0.1535689 +0.3840425 7.471917 0.1535689 +0.518627 7.471917 0.1535689 +0.6993381 7.471917 0.1535689 +0.9419845 7.471917 0.1535689 +1.267794 7.471917 0.1535689 +1.705268 7.471917 0.1535689 +2.292679 7.471917 0.1535689 +3.081414 7.471917 0.1535689 +4.140474 7.471917 0.1535689 +5.562508 7.471917 0.1535689 +7.471917 7.471917 0.1535689 +10.03574 7.471917 0.1535689 +13.47828 7.471917 0.1535689 +18.10068 7.471917 0.1535689 +24.30731 7.471917 0.1535689 +32.64117 7.471917 0.1535689 +43.83129 7.471917 0.1535689 +58.85664 7.471917 0.1535689 +-0.0175068 10.03574 0.1535689 +-0.01161267 10.03574 0.1535689 +-0.005718534 10.03574 0.1535689 +0.0001755984 10.03574 0.1535689 +0.006069731 10.03574 0.1535689 +0.01197402 10.03574 0.1535689 +0.01903886 10.03574 0.1535689 +0.02852504 10.03574 0.1535689 +0.04126244 10.03574 0.1535689 +0.05836535 10.03574 0.1535689 +0.08132997 10.03574 0.1535689 +0.1121653 10.03574 0.1535689 +0.1535689 10.03574 0.1535689 +0.2091628 10.03574 0.1535689 +0.2838106 10.03574 0.1535689 +0.3840425 10.03574 0.1535689 +0.518627 10.03574 0.1535689 +0.6993381 10.03574 0.1535689 +0.9419845 10.03574 0.1535689 +1.267794 10.03574 0.1535689 +1.705268 10.03574 0.1535689 +2.292679 10.03574 0.1535689 +3.081414 10.03574 0.1535689 +4.140474 10.03574 0.1535689 +5.562508 10.03574 0.1535689 +7.471917 10.03574 0.1535689 +10.03574 10.03574 0.1535689 +13.47828 10.03574 0.1535689 +18.10068 10.03574 0.1535689 +24.30731 10.03574 0.1535689 +32.64117 10.03574 0.1535689 +43.83129 10.03574 0.1535689 +58.85664 10.03574 0.1535689 +-0.0175068 13.47828 0.1535689 +-0.01161267 13.47828 0.1535689 +-0.005718534 13.47828 0.1535689 +0.0001755984 13.47828 0.1535689 +0.006069731 13.47828 0.1535689 +0.01197402 13.47828 0.1535689 +0.01903886 13.47828 0.1535689 +0.02852504 13.47828 0.1535689 +0.04126244 13.47828 0.1535689 +0.05836535 13.47828 0.1535689 +0.08132997 13.47828 0.1535689 +0.1121653 13.47828 0.1535689 +0.1535689 13.47828 0.1535689 +0.2091628 13.47828 0.1535689 +0.2838106 13.47828 0.1535689 +0.3840425 13.47828 0.1535689 +0.518627 13.47828 0.1535689 +0.6993381 13.47828 0.1535689 +0.9419845 13.47828 0.1535689 +1.267794 13.47828 0.1535689 +1.705268 13.47828 0.1535689 +2.292679 13.47828 0.1535689 +3.081414 13.47828 0.1535689 +4.140474 13.47828 0.1535689 +5.562508 13.47828 0.1535689 +7.471917 13.47828 0.1535689 +10.03574 13.47828 0.1535689 +13.47828 13.47828 0.1535689 +18.10068 13.47828 0.1535689 +24.30731 13.47828 0.1535689 +32.64117 13.47828 0.1535689 +43.83129 13.47828 0.1535689 +58.85664 13.47828 0.1535689 +-0.0175068 18.10068 0.1535689 +-0.01161267 18.10068 0.1535689 +-0.005718534 18.10068 0.1535689 +0.0001755984 18.10068 0.1535689 +0.006069731 18.10068 0.1535689 +0.01197402 18.10068 0.1535689 +0.01903886 18.10068 0.1535689 +0.02852504 18.10068 0.1535689 +0.04126244 18.10068 0.1535689 +0.05836535 18.10068 0.1535689 +0.08132997 18.10068 0.1535689 +0.1121653 18.10068 0.1535689 +0.1535689 18.10068 0.1535689 +0.2091628 18.10068 0.1535689 +0.2838106 18.10068 0.1535689 +0.3840425 18.10068 0.1535689 +0.518627 18.10068 0.1535689 +0.6993381 18.10068 0.1535689 +0.9419845 18.10068 0.1535689 +1.267794 18.10068 0.1535689 +1.705268 18.10068 0.1535689 +2.292679 18.10068 0.1535689 +3.081414 18.10068 0.1535689 +4.140474 18.10068 0.1535689 +5.562508 18.10068 0.1535689 +7.471917 18.10068 0.1535689 +10.03574 18.10068 0.1535689 +13.47828 18.10068 0.1535689 +18.10068 18.10068 0.1535689 +24.30731 18.10068 0.1535689 +32.64117 18.10068 0.1535689 +43.83129 18.10068 0.1535689 +58.85664 18.10068 0.1535689 +-0.0175068 24.30731 0.1535689 +-0.01161267 24.30731 0.1535689 +-0.005718534 24.30731 0.1535689 +0.0001755984 24.30731 0.1535689 +0.006069731 24.30731 0.1535689 +0.01197402 24.30731 0.1535689 +0.01903886 24.30731 0.1535689 +0.02852504 24.30731 0.1535689 +0.04126244 24.30731 0.1535689 +0.05836535 24.30731 0.1535689 +0.08132997 24.30731 0.1535689 +0.1121653 24.30731 0.1535689 +0.1535689 24.30731 0.1535689 +0.2091628 24.30731 0.1535689 +0.2838106 24.30731 0.1535689 +0.3840425 24.30731 0.1535689 +0.518627 24.30731 0.1535689 +0.6993381 24.30731 0.1535689 +0.9419845 24.30731 0.1535689 +1.267794 24.30731 0.1535689 +1.705268 24.30731 0.1535689 +2.292679 24.30731 0.1535689 +3.081414 24.30731 0.1535689 +4.140474 24.30731 0.1535689 +5.562508 24.30731 0.1535689 +7.471917 24.30731 0.1535689 +10.03574 24.30731 0.1535689 +13.47828 24.30731 0.1535689 +18.10068 24.30731 0.1535689 +24.30731 24.30731 0.1535689 +32.64117 24.30731 0.1535689 +43.83129 24.30731 0.1535689 +58.85664 24.30731 0.1535689 +-0.0175068 32.64117 0.1535689 +-0.01161267 32.64117 0.1535689 +-0.005718534 32.64117 0.1535689 +0.0001755984 32.64117 0.1535689 +0.006069731 32.64117 0.1535689 +0.01197402 32.64117 0.1535689 +0.01903886 32.64117 0.1535689 +0.02852504 32.64117 0.1535689 +0.04126244 32.64117 0.1535689 +0.05836535 32.64117 0.1535689 +0.08132997 32.64117 0.1535689 +0.1121653 32.64117 0.1535689 +0.1535689 32.64117 0.1535689 +0.2091628 32.64117 0.1535689 +0.2838106 32.64117 0.1535689 +0.3840425 32.64117 0.1535689 +0.518627 32.64117 0.1535689 +0.6993381 32.64117 0.1535689 +0.9419845 32.64117 0.1535689 +1.267794 32.64117 0.1535689 +1.705268 32.64117 0.1535689 +2.292679 32.64117 0.1535689 +3.081414 32.64117 0.1535689 +4.140474 32.64117 0.1535689 +5.562508 32.64117 0.1535689 +7.471917 32.64117 0.1535689 +10.03574 32.64117 0.1535689 +13.47828 32.64117 0.1535689 +18.10068 32.64117 0.1535689 +24.30731 32.64117 0.1535689 +32.64117 32.64117 0.1535689 +43.83129 32.64117 0.1535689 +58.85664 32.64117 0.1535689 +-0.0175068 43.83129 0.1535689 +-0.01161267 43.83129 0.1535689 +-0.005718534 43.83129 0.1535689 +0.0001755984 43.83129 0.1535689 +0.006069731 43.83129 0.1535689 +0.01197402 43.83129 0.1535689 +0.01903886 43.83129 0.1535689 +0.02852504 43.83129 0.1535689 +0.04126244 43.83129 0.1535689 +0.05836535 43.83129 0.1535689 +0.08132997 43.83129 0.1535689 +0.1121653 43.83129 0.1535689 +0.1535689 43.83129 0.1535689 +0.2091628 43.83129 0.1535689 +0.2838106 43.83129 0.1535689 +0.3840425 43.83129 0.1535689 +0.518627 43.83129 0.1535689 +0.6993381 43.83129 0.1535689 +0.9419845 43.83129 0.1535689 +1.267794 43.83129 0.1535689 +1.705268 43.83129 0.1535689 +2.292679 43.83129 0.1535689 +3.081414 43.83129 0.1535689 +4.140474 43.83129 0.1535689 +5.562508 43.83129 0.1535689 +7.471917 43.83129 0.1535689 +10.03574 43.83129 0.1535689 +13.47828 43.83129 0.1535689 +18.10068 43.83129 0.1535689 +24.30731 43.83129 0.1535689 +32.64117 43.83129 0.1535689 +43.83129 43.83129 0.1535689 +58.85664 43.83129 0.1535689 +-0.0175068 58.85664 0.1535689 +-0.01161267 58.85664 0.1535689 +-0.005718534 58.85664 0.1535689 +0.0001755984 58.85664 0.1535689 +0.006069731 58.85664 0.1535689 +0.01197402 58.85664 0.1535689 +0.01903886 58.85664 0.1535689 +0.02852504 58.85664 0.1535689 +0.04126244 58.85664 0.1535689 +0.05836535 58.85664 0.1535689 +0.08132997 58.85664 0.1535689 +0.1121653 58.85664 0.1535689 +0.1535689 58.85664 0.1535689 +0.2091628 58.85664 0.1535689 +0.2838106 58.85664 0.1535689 +0.3840425 58.85664 0.1535689 +0.518627 58.85664 0.1535689 +0.6993381 58.85664 0.1535689 +0.9419845 58.85664 0.1535689 +1.267794 58.85664 0.1535689 +1.705268 58.85664 0.1535689 +2.292679 58.85664 0.1535689 +3.081414 58.85664 0.1535689 +4.140474 58.85664 0.1535689 +5.562508 58.85664 0.1535689 +7.471917 58.85664 0.1535689 +10.03574 58.85664 0.1535689 +13.47828 58.85664 0.1535689 +18.10068 58.85664 0.1535689 +24.30731 58.85664 0.1535689 +32.64117 58.85664 0.1535689 +43.83129 58.85664 0.1535689 +58.85664 58.85664 0.1535689 +-0.0175068 -0.0175068 0.2091628 +-0.01161267 -0.0175068 0.2091628 +-0.005718534 -0.0175068 0.2091628 +0.0001755984 -0.0175068 0.2091628 +0.006069731 -0.0175068 0.2091628 +0.01197402 -0.0175068 0.2091628 +0.01903886 -0.0175068 0.2091628 +0.02852504 -0.0175068 0.2091628 +0.04126244 -0.0175068 0.2091628 +0.05836535 -0.0175068 0.2091628 +0.08132997 -0.0175068 0.2091628 +0.1121653 -0.0175068 0.2091628 +0.1535689 -0.0175068 0.2091628 +0.2091628 -0.0175068 0.2091628 +0.2838106 -0.0175068 0.2091628 +0.3840425 -0.0175068 0.2091628 +0.518627 -0.0175068 0.2091628 +0.6993381 -0.0175068 0.2091628 +0.9419845 -0.0175068 0.2091628 +1.267794 -0.0175068 0.2091628 +1.705268 -0.0175068 0.2091628 +2.292679 -0.0175068 0.2091628 +3.081414 -0.0175068 0.2091628 +4.140474 -0.0175068 0.2091628 +5.562508 -0.0175068 0.2091628 +7.471917 -0.0175068 0.2091628 +10.03574 -0.0175068 0.2091628 +13.47828 -0.0175068 0.2091628 +18.10068 -0.0175068 0.2091628 +24.30731 -0.0175068 0.2091628 +32.64117 -0.0175068 0.2091628 +43.83129 -0.0175068 0.2091628 +58.85664 -0.0175068 0.2091628 +-0.0175068 -0.01161267 0.2091628 +-0.01161267 -0.01161267 0.2091628 +-0.005718534 -0.01161267 0.2091628 +0.0001755984 -0.01161267 0.2091628 +0.006069731 -0.01161267 0.2091628 +0.01197402 -0.01161267 0.2091628 +0.01903886 -0.01161267 0.2091628 +0.02852504 -0.01161267 0.2091628 +0.04126244 -0.01161267 0.2091628 +0.05836535 -0.01161267 0.2091628 +0.08132997 -0.01161267 0.2091628 +0.1121653 -0.01161267 0.2091628 +0.1535689 -0.01161267 0.2091628 +0.2091628 -0.01161267 0.2091628 +0.2838106 -0.01161267 0.2091628 +0.3840425 -0.01161267 0.2091628 +0.518627 -0.01161267 0.2091628 +0.6993381 -0.01161267 0.2091628 +0.9419845 -0.01161267 0.2091628 +1.267794 -0.01161267 0.2091628 +1.705268 -0.01161267 0.2091628 +2.292679 -0.01161267 0.2091628 +3.081414 -0.01161267 0.2091628 +4.140474 -0.01161267 0.2091628 +5.562508 -0.01161267 0.2091628 +7.471917 -0.01161267 0.2091628 +10.03574 -0.01161267 0.2091628 +13.47828 -0.01161267 0.2091628 +18.10068 -0.01161267 0.2091628 +24.30731 -0.01161267 0.2091628 +32.64117 -0.01161267 0.2091628 +43.83129 -0.01161267 0.2091628 +58.85664 -0.01161267 0.2091628 +-0.0175068 -0.005718534 0.2091628 +-0.01161267 -0.005718534 0.2091628 +-0.005718534 -0.005718534 0.2091628 +0.0001755984 -0.005718534 0.2091628 +0.006069731 -0.005718534 0.2091628 +0.01197402 -0.005718534 0.2091628 +0.01903886 -0.005718534 0.2091628 +0.02852504 -0.005718534 0.2091628 +0.04126244 -0.005718534 0.2091628 +0.05836535 -0.005718534 0.2091628 +0.08132997 -0.005718534 0.2091628 +0.1121653 -0.005718534 0.2091628 +0.1535689 -0.005718534 0.2091628 +0.2091628 -0.005718534 0.2091628 +0.2838106 -0.005718534 0.2091628 +0.3840425 -0.005718534 0.2091628 +0.518627 -0.005718534 0.2091628 +0.6993381 -0.005718534 0.2091628 +0.9419845 -0.005718534 0.2091628 +1.267794 -0.005718534 0.2091628 +1.705268 -0.005718534 0.2091628 +2.292679 -0.005718534 0.2091628 +3.081414 -0.005718534 0.2091628 +4.140474 -0.005718534 0.2091628 +5.562508 -0.005718534 0.2091628 +7.471917 -0.005718534 0.2091628 +10.03574 -0.005718534 0.2091628 +13.47828 -0.005718534 0.2091628 +18.10068 -0.005718534 0.2091628 +24.30731 -0.005718534 0.2091628 +32.64117 -0.005718534 0.2091628 +43.83129 -0.005718534 0.2091628 +58.85664 -0.005718534 0.2091628 +-0.0175068 0.0001755984 0.2091628 +-0.01161267 0.0001755984 0.2091628 +-0.005718534 0.0001755984 0.2091628 +0.0001755984 0.0001755984 0.2091628 +0.006069731 0.0001755984 0.2091628 +0.01197402 0.0001755984 0.2091628 +0.01903886 0.0001755984 0.2091628 +0.02852504 0.0001755984 0.2091628 +0.04126244 0.0001755984 0.2091628 +0.05836535 0.0001755984 0.2091628 +0.08132997 0.0001755984 0.2091628 +0.1121653 0.0001755984 0.2091628 +0.1535689 0.0001755984 0.2091628 +0.2091628 0.0001755984 0.2091628 +0.2838106 0.0001755984 0.2091628 +0.3840425 0.0001755984 0.2091628 +0.518627 0.0001755984 0.2091628 +0.6993381 0.0001755984 0.2091628 +0.9419845 0.0001755984 0.2091628 +1.267794 0.0001755984 0.2091628 +1.705268 0.0001755984 0.2091628 +2.292679 0.0001755984 0.2091628 +3.081414 0.0001755984 0.2091628 +4.140474 0.0001755984 0.2091628 +5.562508 0.0001755984 0.2091628 +7.471917 0.0001755984 0.2091628 +10.03574 0.0001755984 0.2091628 +13.47828 0.0001755984 0.2091628 +18.10068 0.0001755984 0.2091628 +24.30731 0.0001755984 0.2091628 +32.64117 0.0001755984 0.2091628 +43.83129 0.0001755984 0.2091628 +58.85664 0.0001755984 0.2091628 +-0.0175068 0.006069731 0.2091628 +-0.01161267 0.006069731 0.2091628 +-0.005718534 0.006069731 0.2091628 +0.0001755984 0.006069731 0.2091628 +0.006069731 0.006069731 0.2091628 +0.01197402 0.006069731 0.2091628 +0.01903886 0.006069731 0.2091628 +0.02852504 0.006069731 0.2091628 +0.04126244 0.006069731 0.2091628 +0.05836535 0.006069731 0.2091628 +0.08132997 0.006069731 0.2091628 +0.1121653 0.006069731 0.2091628 +0.1535689 0.006069731 0.2091628 +0.2091628 0.006069731 0.2091628 +0.2838106 0.006069731 0.2091628 +0.3840425 0.006069731 0.2091628 +0.518627 0.006069731 0.2091628 +0.6993381 0.006069731 0.2091628 +0.9419845 0.006069731 0.2091628 +1.267794 0.006069731 0.2091628 +1.705268 0.006069731 0.2091628 +2.292679 0.006069731 0.2091628 +3.081414 0.006069731 0.2091628 +4.140474 0.006069731 0.2091628 +5.562508 0.006069731 0.2091628 +7.471917 0.006069731 0.2091628 +10.03574 0.006069731 0.2091628 +13.47828 0.006069731 0.2091628 +18.10068 0.006069731 0.2091628 +24.30731 0.006069731 0.2091628 +32.64117 0.006069731 0.2091628 +43.83129 0.006069731 0.2091628 +58.85664 0.006069731 0.2091628 +-0.0175068 0.01197402 0.2091628 +-0.01161267 0.01197402 0.2091628 +-0.005718534 0.01197402 0.2091628 +0.0001755984 0.01197402 0.2091628 +0.006069731 0.01197402 0.2091628 +0.01197402 0.01197402 0.2091628 +0.01903886 0.01197402 0.2091628 +0.02852504 0.01197402 0.2091628 +0.04126244 0.01197402 0.2091628 +0.05836535 0.01197402 0.2091628 +0.08132997 0.01197402 0.2091628 +0.1121653 0.01197402 0.2091628 +0.1535689 0.01197402 0.2091628 +0.2091628 0.01197402 0.2091628 +0.2838106 0.01197402 0.2091628 +0.3840425 0.01197402 0.2091628 +0.518627 0.01197402 0.2091628 +0.6993381 0.01197402 0.2091628 +0.9419845 0.01197402 0.2091628 +1.267794 0.01197402 0.2091628 +1.705268 0.01197402 0.2091628 +2.292679 0.01197402 0.2091628 +3.081414 0.01197402 0.2091628 +4.140474 0.01197402 0.2091628 +5.562508 0.01197402 0.2091628 +7.471917 0.01197402 0.2091628 +10.03574 0.01197402 0.2091628 +13.47828 0.01197402 0.2091628 +18.10068 0.01197402 0.2091628 +24.30731 0.01197402 0.2091628 +32.64117 0.01197402 0.2091628 +43.83129 0.01197402 0.2091628 +58.85664 0.01197402 0.2091628 +-0.0175068 0.01903886 0.2091628 +-0.01161267 0.01903886 0.2091628 +-0.005718534 0.01903886 0.2091628 +0.0001755984 0.01903886 0.2091628 +0.006069731 0.01903886 0.2091628 +0.01197402 0.01903886 0.2091628 +0.01903886 0.01903886 0.2091628 +0.02852504 0.01903886 0.2091628 +0.04126244 0.01903886 0.2091628 +0.05836535 0.01903886 0.2091628 +0.08132997 0.01903886 0.2091628 +0.1121653 0.01903886 0.2091628 +0.1535689 0.01903886 0.2091628 +0.2091628 0.01903886 0.2091628 +0.2838106 0.01903886 0.2091628 +0.3840425 0.01903886 0.2091628 +0.518627 0.01903886 0.2091628 +0.6993381 0.01903886 0.2091628 +0.9419845 0.01903886 0.2091628 +1.267794 0.01903886 0.2091628 +1.705268 0.01903886 0.2091628 +2.292679 0.01903886 0.2091628 +3.081414 0.01903886 0.2091628 +4.140474 0.01903886 0.2091628 +5.562508 0.01903886 0.2091628 +7.471917 0.01903886 0.2091628 +10.03574 0.01903886 0.2091628 +13.47828 0.01903886 0.2091628 +18.10068 0.01903886 0.2091628 +24.30731 0.01903886 0.2091628 +32.64117 0.01903886 0.2091628 +43.83129 0.01903886 0.2091628 +58.85664 0.01903886 0.2091628 +-0.0175068 0.02852504 0.2091628 +-0.01161267 0.02852504 0.2091628 +-0.005718534 0.02852504 0.2091628 +0.0001755984 0.02852504 0.2091628 +0.006069731 0.02852504 0.2091628 +0.01197402 0.02852504 0.2091628 +0.01903886 0.02852504 0.2091628 +0.02852504 0.02852504 0.2091628 +0.04126244 0.02852504 0.2091628 +0.05836535 0.02852504 0.2091628 +0.08132997 0.02852504 0.2091628 +0.1121653 0.02852504 0.2091628 +0.1535689 0.02852504 0.2091628 +0.2091628 0.02852504 0.2091628 +0.2838106 0.02852504 0.2091628 +0.3840425 0.02852504 0.2091628 +0.518627 0.02852504 0.2091628 +0.6993381 0.02852504 0.2091628 +0.9419845 0.02852504 0.2091628 +1.267794 0.02852504 0.2091628 +1.705268 0.02852504 0.2091628 +2.292679 0.02852504 0.2091628 +3.081414 0.02852504 0.2091628 +4.140474 0.02852504 0.2091628 +5.562508 0.02852504 0.2091628 +7.471917 0.02852504 0.2091628 +10.03574 0.02852504 0.2091628 +13.47828 0.02852504 0.2091628 +18.10068 0.02852504 0.2091628 +24.30731 0.02852504 0.2091628 +32.64117 0.02852504 0.2091628 +43.83129 0.02852504 0.2091628 +58.85664 0.02852504 0.2091628 +-0.0175068 0.04126244 0.2091628 +-0.01161267 0.04126244 0.2091628 +-0.005718534 0.04126244 0.2091628 +0.0001755984 0.04126244 0.2091628 +0.006069731 0.04126244 0.2091628 +0.01197402 0.04126244 0.2091628 +0.01903886 0.04126244 0.2091628 +0.02852504 0.04126244 0.2091628 +0.04126244 0.04126244 0.2091628 +0.05836535 0.04126244 0.2091628 +0.08132997 0.04126244 0.2091628 +0.1121653 0.04126244 0.2091628 +0.1535689 0.04126244 0.2091628 +0.2091628 0.04126244 0.2091628 +0.2838106 0.04126244 0.2091628 +0.3840425 0.04126244 0.2091628 +0.518627 0.04126244 0.2091628 +0.6993381 0.04126244 0.2091628 +0.9419845 0.04126244 0.2091628 +1.267794 0.04126244 0.2091628 +1.705268 0.04126244 0.2091628 +2.292679 0.04126244 0.2091628 +3.081414 0.04126244 0.2091628 +4.140474 0.04126244 0.2091628 +5.562508 0.04126244 0.2091628 +7.471917 0.04126244 0.2091628 +10.03574 0.04126244 0.2091628 +13.47828 0.04126244 0.2091628 +18.10068 0.04126244 0.2091628 +24.30731 0.04126244 0.2091628 +32.64117 0.04126244 0.2091628 +43.83129 0.04126244 0.2091628 +58.85664 0.04126244 0.2091628 +-0.0175068 0.05836535 0.2091628 +-0.01161267 0.05836535 0.2091628 +-0.005718534 0.05836535 0.2091628 +0.0001755984 0.05836535 0.2091628 +0.006069731 0.05836535 0.2091628 +0.01197402 0.05836535 0.2091628 +0.01903886 0.05836535 0.2091628 +0.02852504 0.05836535 0.2091628 +0.04126244 0.05836535 0.2091628 +0.05836535 0.05836535 0.2091628 +0.08132997 0.05836535 0.2091628 +0.1121653 0.05836535 0.2091628 +0.1535689 0.05836535 0.2091628 +0.2091628 0.05836535 0.2091628 +0.2838106 0.05836535 0.2091628 +0.3840425 0.05836535 0.2091628 +0.518627 0.05836535 0.2091628 +0.6993381 0.05836535 0.2091628 +0.9419845 0.05836535 0.2091628 +1.267794 0.05836535 0.2091628 +1.705268 0.05836535 0.2091628 +2.292679 0.05836535 0.2091628 +3.081414 0.05836535 0.2091628 +4.140474 0.05836535 0.2091628 +5.562508 0.05836535 0.2091628 +7.471917 0.05836535 0.2091628 +10.03574 0.05836535 0.2091628 +13.47828 0.05836535 0.2091628 +18.10068 0.05836535 0.2091628 +24.30731 0.05836535 0.2091628 +32.64117 0.05836535 0.2091628 +43.83129 0.05836535 0.2091628 +58.85664 0.05836535 0.2091628 +-0.0175068 0.08132997 0.2091628 +-0.01161267 0.08132997 0.2091628 +-0.005718534 0.08132997 0.2091628 +0.0001755984 0.08132997 0.2091628 +0.006069731 0.08132997 0.2091628 +0.01197402 0.08132997 0.2091628 +0.01903886 0.08132997 0.2091628 +0.02852504 0.08132997 0.2091628 +0.04126244 0.08132997 0.2091628 +0.05836535 0.08132997 0.2091628 +0.08132997 0.08132997 0.2091628 +0.1121653 0.08132997 0.2091628 +0.1535689 0.08132997 0.2091628 +0.2091628 0.08132997 0.2091628 +0.2838106 0.08132997 0.2091628 +0.3840425 0.08132997 0.2091628 +0.518627 0.08132997 0.2091628 +0.6993381 0.08132997 0.2091628 +0.9419845 0.08132997 0.2091628 +1.267794 0.08132997 0.2091628 +1.705268 0.08132997 0.2091628 +2.292679 0.08132997 0.2091628 +3.081414 0.08132997 0.2091628 +4.140474 0.08132997 0.2091628 +5.562508 0.08132997 0.2091628 +7.471917 0.08132997 0.2091628 +10.03574 0.08132997 0.2091628 +13.47828 0.08132997 0.2091628 +18.10068 0.08132997 0.2091628 +24.30731 0.08132997 0.2091628 +32.64117 0.08132997 0.2091628 +43.83129 0.08132997 0.2091628 +58.85664 0.08132997 0.2091628 +-0.0175068 0.1121653 0.2091628 +-0.01161267 0.1121653 0.2091628 +-0.005718534 0.1121653 0.2091628 +0.0001755984 0.1121653 0.2091628 +0.006069731 0.1121653 0.2091628 +0.01197402 0.1121653 0.2091628 +0.01903886 0.1121653 0.2091628 +0.02852504 0.1121653 0.2091628 +0.04126244 0.1121653 0.2091628 +0.05836535 0.1121653 0.2091628 +0.08132997 0.1121653 0.2091628 +0.1121653 0.1121653 0.2091628 +0.1535689 0.1121653 0.2091628 +0.2091628 0.1121653 0.2091628 +0.2838106 0.1121653 0.2091628 +0.3840425 0.1121653 0.2091628 +0.518627 0.1121653 0.2091628 +0.6993381 0.1121653 0.2091628 +0.9419845 0.1121653 0.2091628 +1.267794 0.1121653 0.2091628 +1.705268 0.1121653 0.2091628 +2.292679 0.1121653 0.2091628 +3.081414 0.1121653 0.2091628 +4.140474 0.1121653 0.2091628 +5.562508 0.1121653 0.2091628 +7.471917 0.1121653 0.2091628 +10.03574 0.1121653 0.2091628 +13.47828 0.1121653 0.2091628 +18.10068 0.1121653 0.2091628 +24.30731 0.1121653 0.2091628 +32.64117 0.1121653 0.2091628 +43.83129 0.1121653 0.2091628 +58.85664 0.1121653 0.2091628 +-0.0175068 0.1535689 0.2091628 +-0.01161267 0.1535689 0.2091628 +-0.005718534 0.1535689 0.2091628 +0.0001755984 0.1535689 0.2091628 +0.006069731 0.1535689 0.2091628 +0.01197402 0.1535689 0.2091628 +0.01903886 0.1535689 0.2091628 +0.02852504 0.1535689 0.2091628 +0.04126244 0.1535689 0.2091628 +0.05836535 0.1535689 0.2091628 +0.08132997 0.1535689 0.2091628 +0.1121653 0.1535689 0.2091628 +0.1535689 0.1535689 0.2091628 +0.2091628 0.1535689 0.2091628 +0.2838106 0.1535689 0.2091628 +0.3840425 0.1535689 0.2091628 +0.518627 0.1535689 0.2091628 +0.6993381 0.1535689 0.2091628 +0.9419845 0.1535689 0.2091628 +1.267794 0.1535689 0.2091628 +1.705268 0.1535689 0.2091628 +2.292679 0.1535689 0.2091628 +3.081414 0.1535689 0.2091628 +4.140474 0.1535689 0.2091628 +5.562508 0.1535689 0.2091628 +7.471917 0.1535689 0.2091628 +10.03574 0.1535689 0.2091628 +13.47828 0.1535689 0.2091628 +18.10068 0.1535689 0.2091628 +24.30731 0.1535689 0.2091628 +32.64117 0.1535689 0.2091628 +43.83129 0.1535689 0.2091628 +58.85664 0.1535689 0.2091628 +-0.0175068 0.2091628 0.2091628 +-0.01161267 0.2091628 0.2091628 +-0.005718534 0.2091628 0.2091628 +0.0001755984 0.2091628 0.2091628 +0.006069731 0.2091628 0.2091628 +0.01197402 0.2091628 0.2091628 +0.01903886 0.2091628 0.2091628 +0.02852504 0.2091628 0.2091628 +0.04126244 0.2091628 0.2091628 +0.05836535 0.2091628 0.2091628 +0.08132997 0.2091628 0.2091628 +0.1121653 0.2091628 0.2091628 +0.1535689 0.2091628 0.2091628 +0.2091628 0.2091628 0.2091628 +0.2838106 0.2091628 0.2091628 +0.3840425 0.2091628 0.2091628 +0.518627 0.2091628 0.2091628 +0.6993381 0.2091628 0.2091628 +0.9419845 0.2091628 0.2091628 +1.267794 0.2091628 0.2091628 +1.705268 0.2091628 0.2091628 +2.292679 0.2091628 0.2091628 +3.081414 0.2091628 0.2091628 +4.140474 0.2091628 0.2091628 +5.562508 0.2091628 0.2091628 +7.471917 0.2091628 0.2091628 +10.03574 0.2091628 0.2091628 +13.47828 0.2091628 0.2091628 +18.10068 0.2091628 0.2091628 +24.30731 0.2091628 0.2091628 +32.64117 0.2091628 0.2091628 +43.83129 0.2091628 0.2091628 +58.85664 0.2091628 0.2091628 +-0.0175068 0.2838106 0.2091628 +-0.01161267 0.2838106 0.2091628 +-0.005718534 0.2838106 0.2091628 +0.0001755984 0.2838106 0.2091628 +0.006069731 0.2838106 0.2091628 +0.01197402 0.2838106 0.2091628 +0.01903886 0.2838106 0.2091628 +0.02852504 0.2838106 0.2091628 +0.04126244 0.2838106 0.2091628 +0.05836535 0.2838106 0.2091628 +0.08132997 0.2838106 0.2091628 +0.1121653 0.2838106 0.2091628 +0.1535689 0.2838106 0.2091628 +0.2091628 0.2838106 0.2091628 +0.2838106 0.2838106 0.2091628 +0.3840425 0.2838106 0.2091628 +0.518627 0.2838106 0.2091628 +0.6993381 0.2838106 0.2091628 +0.9419845 0.2838106 0.2091628 +1.267794 0.2838106 0.2091628 +1.705268 0.2838106 0.2091628 +2.292679 0.2838106 0.2091628 +3.081414 0.2838106 0.2091628 +4.140474 0.2838106 0.2091628 +5.562508 0.2838106 0.2091628 +7.471917 0.2838106 0.2091628 +10.03574 0.2838106 0.2091628 +13.47828 0.2838106 0.2091628 +18.10068 0.2838106 0.2091628 +24.30731 0.2838106 0.2091628 +32.64117 0.2838106 0.2091628 +43.83129 0.2838106 0.2091628 +58.85664 0.2838106 0.2091628 +-0.0175068 0.3840425 0.2091628 +-0.01161267 0.3840425 0.2091628 +-0.005718534 0.3840425 0.2091628 +0.0001755984 0.3840425 0.2091628 +0.006069731 0.3840425 0.2091628 +0.01197402 0.3840425 0.2091628 +0.01903886 0.3840425 0.2091628 +0.02852504 0.3840425 0.2091628 +0.04126244 0.3840425 0.2091628 +0.05836535 0.3840425 0.2091628 +0.08132997 0.3840425 0.2091628 +0.1121653 0.3840425 0.2091628 +0.1535689 0.3840425 0.2091628 +0.2091628 0.3840425 0.2091628 +0.2838106 0.3840425 0.2091628 +0.3840425 0.3840425 0.2091628 +0.518627 0.3840425 0.2091628 +0.6993381 0.3840425 0.2091628 +0.9419845 0.3840425 0.2091628 +1.267794 0.3840425 0.2091628 +1.705268 0.3840425 0.2091628 +2.292679 0.3840425 0.2091628 +3.081414 0.3840425 0.2091628 +4.140474 0.3840425 0.2091628 +5.562508 0.3840425 0.2091628 +7.471917 0.3840425 0.2091628 +10.03574 0.3840425 0.2091628 +13.47828 0.3840425 0.2091628 +18.10068 0.3840425 0.2091628 +24.30731 0.3840425 0.2091628 +32.64117 0.3840425 0.2091628 +43.83129 0.3840425 0.2091628 +58.85664 0.3840425 0.2091628 +-0.0175068 0.518627 0.2091628 +-0.01161267 0.518627 0.2091628 +-0.005718534 0.518627 0.2091628 +0.0001755984 0.518627 0.2091628 +0.006069731 0.518627 0.2091628 +0.01197402 0.518627 0.2091628 +0.01903886 0.518627 0.2091628 +0.02852504 0.518627 0.2091628 +0.04126244 0.518627 0.2091628 +0.05836535 0.518627 0.2091628 +0.08132997 0.518627 0.2091628 +0.1121653 0.518627 0.2091628 +0.1535689 0.518627 0.2091628 +0.2091628 0.518627 0.2091628 +0.2838106 0.518627 0.2091628 +0.3840425 0.518627 0.2091628 +0.518627 0.518627 0.2091628 +0.6993381 0.518627 0.2091628 +0.9419845 0.518627 0.2091628 +1.267794 0.518627 0.2091628 +1.705268 0.518627 0.2091628 +2.292679 0.518627 0.2091628 +3.081414 0.518627 0.2091628 +4.140474 0.518627 0.2091628 +5.562508 0.518627 0.2091628 +7.471917 0.518627 0.2091628 +10.03574 0.518627 0.2091628 +13.47828 0.518627 0.2091628 +18.10068 0.518627 0.2091628 +24.30731 0.518627 0.2091628 +32.64117 0.518627 0.2091628 +43.83129 0.518627 0.2091628 +58.85664 0.518627 0.2091628 +-0.0175068 0.6993381 0.2091628 +-0.01161267 0.6993381 0.2091628 +-0.005718534 0.6993381 0.2091628 +0.0001755984 0.6993381 0.2091628 +0.006069731 0.6993381 0.2091628 +0.01197402 0.6993381 0.2091628 +0.01903886 0.6993381 0.2091628 +0.02852504 0.6993381 0.2091628 +0.04126244 0.6993381 0.2091628 +0.05836535 0.6993381 0.2091628 +0.08132997 0.6993381 0.2091628 +0.1121653 0.6993381 0.2091628 +0.1535689 0.6993381 0.2091628 +0.2091628 0.6993381 0.2091628 +0.2838106 0.6993381 0.2091628 +0.3840425 0.6993381 0.2091628 +0.518627 0.6993381 0.2091628 +0.6993381 0.6993381 0.2091628 +0.9419845 0.6993381 0.2091628 +1.267794 0.6993381 0.2091628 +1.705268 0.6993381 0.2091628 +2.292679 0.6993381 0.2091628 +3.081414 0.6993381 0.2091628 +4.140474 0.6993381 0.2091628 +5.562508 0.6993381 0.2091628 +7.471917 0.6993381 0.2091628 +10.03574 0.6993381 0.2091628 +13.47828 0.6993381 0.2091628 +18.10068 0.6993381 0.2091628 +24.30731 0.6993381 0.2091628 +32.64117 0.6993381 0.2091628 +43.83129 0.6993381 0.2091628 +58.85664 0.6993381 0.2091628 +-0.0175068 0.9419845 0.2091628 +-0.01161267 0.9419845 0.2091628 +-0.005718534 0.9419845 0.2091628 +0.0001755984 0.9419845 0.2091628 +0.006069731 0.9419845 0.2091628 +0.01197402 0.9419845 0.2091628 +0.01903886 0.9419845 0.2091628 +0.02852504 0.9419845 0.2091628 +0.04126244 0.9419845 0.2091628 +0.05836535 0.9419845 0.2091628 +0.08132997 0.9419845 0.2091628 +0.1121653 0.9419845 0.2091628 +0.1535689 0.9419845 0.2091628 +0.2091628 0.9419845 0.2091628 +0.2838106 0.9419845 0.2091628 +0.3840425 0.9419845 0.2091628 +0.518627 0.9419845 0.2091628 +0.6993381 0.9419845 0.2091628 +0.9419845 0.9419845 0.2091628 +1.267794 0.9419845 0.2091628 +1.705268 0.9419845 0.2091628 +2.292679 0.9419845 0.2091628 +3.081414 0.9419845 0.2091628 +4.140474 0.9419845 0.2091628 +5.562508 0.9419845 0.2091628 +7.471917 0.9419845 0.2091628 +10.03574 0.9419845 0.2091628 +13.47828 0.9419845 0.2091628 +18.10068 0.9419845 0.2091628 +24.30731 0.9419845 0.2091628 +32.64117 0.9419845 0.2091628 +43.83129 0.9419845 0.2091628 +58.85664 0.9419845 0.2091628 +-0.0175068 1.267794 0.2091628 +-0.01161267 1.267794 0.2091628 +-0.005718534 1.267794 0.2091628 +0.0001755984 1.267794 0.2091628 +0.006069731 1.267794 0.2091628 +0.01197402 1.267794 0.2091628 +0.01903886 1.267794 0.2091628 +0.02852504 1.267794 0.2091628 +0.04126244 1.267794 0.2091628 +0.05836535 1.267794 0.2091628 +0.08132997 1.267794 0.2091628 +0.1121653 1.267794 0.2091628 +0.1535689 1.267794 0.2091628 +0.2091628 1.267794 0.2091628 +0.2838106 1.267794 0.2091628 +0.3840425 1.267794 0.2091628 +0.518627 1.267794 0.2091628 +0.6993381 1.267794 0.2091628 +0.9419845 1.267794 0.2091628 +1.267794 1.267794 0.2091628 +1.705268 1.267794 0.2091628 +2.292679 1.267794 0.2091628 +3.081414 1.267794 0.2091628 +4.140474 1.267794 0.2091628 +5.562508 1.267794 0.2091628 +7.471917 1.267794 0.2091628 +10.03574 1.267794 0.2091628 +13.47828 1.267794 0.2091628 +18.10068 1.267794 0.2091628 +24.30731 1.267794 0.2091628 +32.64117 1.267794 0.2091628 +43.83129 1.267794 0.2091628 +58.85664 1.267794 0.2091628 +-0.0175068 1.705268 0.2091628 +-0.01161267 1.705268 0.2091628 +-0.005718534 1.705268 0.2091628 +0.0001755984 1.705268 0.2091628 +0.006069731 1.705268 0.2091628 +0.01197402 1.705268 0.2091628 +0.01903886 1.705268 0.2091628 +0.02852504 1.705268 0.2091628 +0.04126244 1.705268 0.2091628 +0.05836535 1.705268 0.2091628 +0.08132997 1.705268 0.2091628 +0.1121653 1.705268 0.2091628 +0.1535689 1.705268 0.2091628 +0.2091628 1.705268 0.2091628 +0.2838106 1.705268 0.2091628 +0.3840425 1.705268 0.2091628 +0.518627 1.705268 0.2091628 +0.6993381 1.705268 0.2091628 +0.9419845 1.705268 0.2091628 +1.267794 1.705268 0.2091628 +1.705268 1.705268 0.2091628 +2.292679 1.705268 0.2091628 +3.081414 1.705268 0.2091628 +4.140474 1.705268 0.2091628 +5.562508 1.705268 0.2091628 +7.471917 1.705268 0.2091628 +10.03574 1.705268 0.2091628 +13.47828 1.705268 0.2091628 +18.10068 1.705268 0.2091628 +24.30731 1.705268 0.2091628 +32.64117 1.705268 0.2091628 +43.83129 1.705268 0.2091628 +58.85664 1.705268 0.2091628 +-0.0175068 2.292679 0.2091628 +-0.01161267 2.292679 0.2091628 +-0.005718534 2.292679 0.2091628 +0.0001755984 2.292679 0.2091628 +0.006069731 2.292679 0.2091628 +0.01197402 2.292679 0.2091628 +0.01903886 2.292679 0.2091628 +0.02852504 2.292679 0.2091628 +0.04126244 2.292679 0.2091628 +0.05836535 2.292679 0.2091628 +0.08132997 2.292679 0.2091628 +0.1121653 2.292679 0.2091628 +0.1535689 2.292679 0.2091628 +0.2091628 2.292679 0.2091628 +0.2838106 2.292679 0.2091628 +0.3840425 2.292679 0.2091628 +0.518627 2.292679 0.2091628 +0.6993381 2.292679 0.2091628 +0.9419845 2.292679 0.2091628 +1.267794 2.292679 0.2091628 +1.705268 2.292679 0.2091628 +2.292679 2.292679 0.2091628 +3.081414 2.292679 0.2091628 +4.140474 2.292679 0.2091628 +5.562508 2.292679 0.2091628 +7.471917 2.292679 0.2091628 +10.03574 2.292679 0.2091628 +13.47828 2.292679 0.2091628 +18.10068 2.292679 0.2091628 +24.30731 2.292679 0.2091628 +32.64117 2.292679 0.2091628 +43.83129 2.292679 0.2091628 +58.85664 2.292679 0.2091628 +-0.0175068 3.081414 0.2091628 +-0.01161267 3.081414 0.2091628 +-0.005718534 3.081414 0.2091628 +0.0001755984 3.081414 0.2091628 +0.006069731 3.081414 0.2091628 +0.01197402 3.081414 0.2091628 +0.01903886 3.081414 0.2091628 +0.02852504 3.081414 0.2091628 +0.04126244 3.081414 0.2091628 +0.05836535 3.081414 0.2091628 +0.08132997 3.081414 0.2091628 +0.1121653 3.081414 0.2091628 +0.1535689 3.081414 0.2091628 +0.2091628 3.081414 0.2091628 +0.2838106 3.081414 0.2091628 +0.3840425 3.081414 0.2091628 +0.518627 3.081414 0.2091628 +0.6993381 3.081414 0.2091628 +0.9419845 3.081414 0.2091628 +1.267794 3.081414 0.2091628 +1.705268 3.081414 0.2091628 +2.292679 3.081414 0.2091628 +3.081414 3.081414 0.2091628 +4.140474 3.081414 0.2091628 +5.562508 3.081414 0.2091628 +7.471917 3.081414 0.2091628 +10.03574 3.081414 0.2091628 +13.47828 3.081414 0.2091628 +18.10068 3.081414 0.2091628 +24.30731 3.081414 0.2091628 +32.64117 3.081414 0.2091628 +43.83129 3.081414 0.2091628 +58.85664 3.081414 0.2091628 +-0.0175068 4.140474 0.2091628 +-0.01161267 4.140474 0.2091628 +-0.005718534 4.140474 0.2091628 +0.0001755984 4.140474 0.2091628 +0.006069731 4.140474 0.2091628 +0.01197402 4.140474 0.2091628 +0.01903886 4.140474 0.2091628 +0.02852504 4.140474 0.2091628 +0.04126244 4.140474 0.2091628 +0.05836535 4.140474 0.2091628 +0.08132997 4.140474 0.2091628 +0.1121653 4.140474 0.2091628 +0.1535689 4.140474 0.2091628 +0.2091628 4.140474 0.2091628 +0.2838106 4.140474 0.2091628 +0.3840425 4.140474 0.2091628 +0.518627 4.140474 0.2091628 +0.6993381 4.140474 0.2091628 +0.9419845 4.140474 0.2091628 +1.267794 4.140474 0.2091628 +1.705268 4.140474 0.2091628 +2.292679 4.140474 0.2091628 +3.081414 4.140474 0.2091628 +4.140474 4.140474 0.2091628 +5.562508 4.140474 0.2091628 +7.471917 4.140474 0.2091628 +10.03574 4.140474 0.2091628 +13.47828 4.140474 0.2091628 +18.10068 4.140474 0.2091628 +24.30731 4.140474 0.2091628 +32.64117 4.140474 0.2091628 +43.83129 4.140474 0.2091628 +58.85664 4.140474 0.2091628 +-0.0175068 5.562508 0.2091628 +-0.01161267 5.562508 0.2091628 +-0.005718534 5.562508 0.2091628 +0.0001755984 5.562508 0.2091628 +0.006069731 5.562508 0.2091628 +0.01197402 5.562508 0.2091628 +0.01903886 5.562508 0.2091628 +0.02852504 5.562508 0.2091628 +0.04126244 5.562508 0.2091628 +0.05836535 5.562508 0.2091628 +0.08132997 5.562508 0.2091628 +0.1121653 5.562508 0.2091628 +0.1535689 5.562508 0.2091628 +0.2091628 5.562508 0.2091628 +0.2838106 5.562508 0.2091628 +0.3840425 5.562508 0.2091628 +0.518627 5.562508 0.2091628 +0.6993381 5.562508 0.2091628 +0.9419845 5.562508 0.2091628 +1.267794 5.562508 0.2091628 +1.705268 5.562508 0.2091628 +2.292679 5.562508 0.2091628 +3.081414 5.562508 0.2091628 +4.140474 5.562508 0.2091628 +5.562508 5.562508 0.2091628 +7.471917 5.562508 0.2091628 +10.03574 5.562508 0.2091628 +13.47828 5.562508 0.2091628 +18.10068 5.562508 0.2091628 +24.30731 5.562508 0.2091628 +32.64117 5.562508 0.2091628 +43.83129 5.562508 0.2091628 +58.85664 5.562508 0.2091628 +-0.0175068 7.471917 0.2091628 +-0.01161267 7.471917 0.2091628 +-0.005718534 7.471917 0.2091628 +0.0001755984 7.471917 0.2091628 +0.006069731 7.471917 0.2091628 +0.01197402 7.471917 0.2091628 +0.01903886 7.471917 0.2091628 +0.02852504 7.471917 0.2091628 +0.04126244 7.471917 0.2091628 +0.05836535 7.471917 0.2091628 +0.08132997 7.471917 0.2091628 +0.1121653 7.471917 0.2091628 +0.1535689 7.471917 0.2091628 +0.2091628 7.471917 0.2091628 +0.2838106 7.471917 0.2091628 +0.3840425 7.471917 0.2091628 +0.518627 7.471917 0.2091628 +0.6993381 7.471917 0.2091628 +0.9419845 7.471917 0.2091628 +1.267794 7.471917 0.2091628 +1.705268 7.471917 0.2091628 +2.292679 7.471917 0.2091628 +3.081414 7.471917 0.2091628 +4.140474 7.471917 0.2091628 +5.562508 7.471917 0.2091628 +7.471917 7.471917 0.2091628 +10.03574 7.471917 0.2091628 +13.47828 7.471917 0.2091628 +18.10068 7.471917 0.2091628 +24.30731 7.471917 0.2091628 +32.64117 7.471917 0.2091628 +43.83129 7.471917 0.2091628 +58.85664 7.471917 0.2091628 +-0.0175068 10.03574 0.2091628 +-0.01161267 10.03574 0.2091628 +-0.005718534 10.03574 0.2091628 +0.0001755984 10.03574 0.2091628 +0.006069731 10.03574 0.2091628 +0.01197402 10.03574 0.2091628 +0.01903886 10.03574 0.2091628 +0.02852504 10.03574 0.2091628 +0.04126244 10.03574 0.2091628 +0.05836535 10.03574 0.2091628 +0.08132997 10.03574 0.2091628 +0.1121653 10.03574 0.2091628 +0.1535689 10.03574 0.2091628 +0.2091628 10.03574 0.2091628 +0.2838106 10.03574 0.2091628 +0.3840425 10.03574 0.2091628 +0.518627 10.03574 0.2091628 +0.6993381 10.03574 0.2091628 +0.9419845 10.03574 0.2091628 +1.267794 10.03574 0.2091628 +1.705268 10.03574 0.2091628 +2.292679 10.03574 0.2091628 +3.081414 10.03574 0.2091628 +4.140474 10.03574 0.2091628 +5.562508 10.03574 0.2091628 +7.471917 10.03574 0.2091628 +10.03574 10.03574 0.2091628 +13.47828 10.03574 0.2091628 +18.10068 10.03574 0.2091628 +24.30731 10.03574 0.2091628 +32.64117 10.03574 0.2091628 +43.83129 10.03574 0.2091628 +58.85664 10.03574 0.2091628 +-0.0175068 13.47828 0.2091628 +-0.01161267 13.47828 0.2091628 +-0.005718534 13.47828 0.2091628 +0.0001755984 13.47828 0.2091628 +0.006069731 13.47828 0.2091628 +0.01197402 13.47828 0.2091628 +0.01903886 13.47828 0.2091628 +0.02852504 13.47828 0.2091628 +0.04126244 13.47828 0.2091628 +0.05836535 13.47828 0.2091628 +0.08132997 13.47828 0.2091628 +0.1121653 13.47828 0.2091628 +0.1535689 13.47828 0.2091628 +0.2091628 13.47828 0.2091628 +0.2838106 13.47828 0.2091628 +0.3840425 13.47828 0.2091628 +0.518627 13.47828 0.2091628 +0.6993381 13.47828 0.2091628 +0.9419845 13.47828 0.2091628 +1.267794 13.47828 0.2091628 +1.705268 13.47828 0.2091628 +2.292679 13.47828 0.2091628 +3.081414 13.47828 0.2091628 +4.140474 13.47828 0.2091628 +5.562508 13.47828 0.2091628 +7.471917 13.47828 0.2091628 +10.03574 13.47828 0.2091628 +13.47828 13.47828 0.2091628 +18.10068 13.47828 0.2091628 +24.30731 13.47828 0.2091628 +32.64117 13.47828 0.2091628 +43.83129 13.47828 0.2091628 +58.85664 13.47828 0.2091628 +-0.0175068 18.10068 0.2091628 +-0.01161267 18.10068 0.2091628 +-0.005718534 18.10068 0.2091628 +0.0001755984 18.10068 0.2091628 +0.006069731 18.10068 0.2091628 +0.01197402 18.10068 0.2091628 +0.01903886 18.10068 0.2091628 +0.02852504 18.10068 0.2091628 +0.04126244 18.10068 0.2091628 +0.05836535 18.10068 0.2091628 +0.08132997 18.10068 0.2091628 +0.1121653 18.10068 0.2091628 +0.1535689 18.10068 0.2091628 +0.2091628 18.10068 0.2091628 +0.2838106 18.10068 0.2091628 +0.3840425 18.10068 0.2091628 +0.518627 18.10068 0.2091628 +0.6993381 18.10068 0.2091628 +0.9419845 18.10068 0.2091628 +1.267794 18.10068 0.2091628 +1.705268 18.10068 0.2091628 +2.292679 18.10068 0.2091628 +3.081414 18.10068 0.2091628 +4.140474 18.10068 0.2091628 +5.562508 18.10068 0.2091628 +7.471917 18.10068 0.2091628 +10.03574 18.10068 0.2091628 +13.47828 18.10068 0.2091628 +18.10068 18.10068 0.2091628 +24.30731 18.10068 0.2091628 +32.64117 18.10068 0.2091628 +43.83129 18.10068 0.2091628 +58.85664 18.10068 0.2091628 +-0.0175068 24.30731 0.2091628 +-0.01161267 24.30731 0.2091628 +-0.005718534 24.30731 0.2091628 +0.0001755984 24.30731 0.2091628 +0.006069731 24.30731 0.2091628 +0.01197402 24.30731 0.2091628 +0.01903886 24.30731 0.2091628 +0.02852504 24.30731 0.2091628 +0.04126244 24.30731 0.2091628 +0.05836535 24.30731 0.2091628 +0.08132997 24.30731 0.2091628 +0.1121653 24.30731 0.2091628 +0.1535689 24.30731 0.2091628 +0.2091628 24.30731 0.2091628 +0.2838106 24.30731 0.2091628 +0.3840425 24.30731 0.2091628 +0.518627 24.30731 0.2091628 +0.6993381 24.30731 0.2091628 +0.9419845 24.30731 0.2091628 +1.267794 24.30731 0.2091628 +1.705268 24.30731 0.2091628 +2.292679 24.30731 0.2091628 +3.081414 24.30731 0.2091628 +4.140474 24.30731 0.2091628 +5.562508 24.30731 0.2091628 +7.471917 24.30731 0.2091628 +10.03574 24.30731 0.2091628 +13.47828 24.30731 0.2091628 +18.10068 24.30731 0.2091628 +24.30731 24.30731 0.2091628 +32.64117 24.30731 0.2091628 +43.83129 24.30731 0.2091628 +58.85664 24.30731 0.2091628 +-0.0175068 32.64117 0.2091628 +-0.01161267 32.64117 0.2091628 +-0.005718534 32.64117 0.2091628 +0.0001755984 32.64117 0.2091628 +0.006069731 32.64117 0.2091628 +0.01197402 32.64117 0.2091628 +0.01903886 32.64117 0.2091628 +0.02852504 32.64117 0.2091628 +0.04126244 32.64117 0.2091628 +0.05836535 32.64117 0.2091628 +0.08132997 32.64117 0.2091628 +0.1121653 32.64117 0.2091628 +0.1535689 32.64117 0.2091628 +0.2091628 32.64117 0.2091628 +0.2838106 32.64117 0.2091628 +0.3840425 32.64117 0.2091628 +0.518627 32.64117 0.2091628 +0.6993381 32.64117 0.2091628 +0.9419845 32.64117 0.2091628 +1.267794 32.64117 0.2091628 +1.705268 32.64117 0.2091628 +2.292679 32.64117 0.2091628 +3.081414 32.64117 0.2091628 +4.140474 32.64117 0.2091628 +5.562508 32.64117 0.2091628 +7.471917 32.64117 0.2091628 +10.03574 32.64117 0.2091628 +13.47828 32.64117 0.2091628 +18.10068 32.64117 0.2091628 +24.30731 32.64117 0.2091628 +32.64117 32.64117 0.2091628 +43.83129 32.64117 0.2091628 +58.85664 32.64117 0.2091628 +-0.0175068 43.83129 0.2091628 +-0.01161267 43.83129 0.2091628 +-0.005718534 43.83129 0.2091628 +0.0001755984 43.83129 0.2091628 +0.006069731 43.83129 0.2091628 +0.01197402 43.83129 0.2091628 +0.01903886 43.83129 0.2091628 +0.02852504 43.83129 0.2091628 +0.04126244 43.83129 0.2091628 +0.05836535 43.83129 0.2091628 +0.08132997 43.83129 0.2091628 +0.1121653 43.83129 0.2091628 +0.1535689 43.83129 0.2091628 +0.2091628 43.83129 0.2091628 +0.2838106 43.83129 0.2091628 +0.3840425 43.83129 0.2091628 +0.518627 43.83129 0.2091628 +0.6993381 43.83129 0.2091628 +0.9419845 43.83129 0.2091628 +1.267794 43.83129 0.2091628 +1.705268 43.83129 0.2091628 +2.292679 43.83129 0.2091628 +3.081414 43.83129 0.2091628 +4.140474 43.83129 0.2091628 +5.562508 43.83129 0.2091628 +7.471917 43.83129 0.2091628 +10.03574 43.83129 0.2091628 +13.47828 43.83129 0.2091628 +18.10068 43.83129 0.2091628 +24.30731 43.83129 0.2091628 +32.64117 43.83129 0.2091628 +43.83129 43.83129 0.2091628 +58.85664 43.83129 0.2091628 +-0.0175068 58.85664 0.2091628 +-0.01161267 58.85664 0.2091628 +-0.005718534 58.85664 0.2091628 +0.0001755984 58.85664 0.2091628 +0.006069731 58.85664 0.2091628 +0.01197402 58.85664 0.2091628 +0.01903886 58.85664 0.2091628 +0.02852504 58.85664 0.2091628 +0.04126244 58.85664 0.2091628 +0.05836535 58.85664 0.2091628 +0.08132997 58.85664 0.2091628 +0.1121653 58.85664 0.2091628 +0.1535689 58.85664 0.2091628 +0.2091628 58.85664 0.2091628 +0.2838106 58.85664 0.2091628 +0.3840425 58.85664 0.2091628 +0.518627 58.85664 0.2091628 +0.6993381 58.85664 0.2091628 +0.9419845 58.85664 0.2091628 +1.267794 58.85664 0.2091628 +1.705268 58.85664 0.2091628 +2.292679 58.85664 0.2091628 +3.081414 58.85664 0.2091628 +4.140474 58.85664 0.2091628 +5.562508 58.85664 0.2091628 +7.471917 58.85664 0.2091628 +10.03574 58.85664 0.2091628 +13.47828 58.85664 0.2091628 +18.10068 58.85664 0.2091628 +24.30731 58.85664 0.2091628 +32.64117 58.85664 0.2091628 +43.83129 58.85664 0.2091628 +58.85664 58.85664 0.2091628 +-0.0175068 -0.0175068 0.2838106 +-0.01161267 -0.0175068 0.2838106 +-0.005718534 -0.0175068 0.2838106 +0.0001755984 -0.0175068 0.2838106 +0.006069731 -0.0175068 0.2838106 +0.01197402 -0.0175068 0.2838106 +0.01903886 -0.0175068 0.2838106 +0.02852504 -0.0175068 0.2838106 +0.04126244 -0.0175068 0.2838106 +0.05836535 -0.0175068 0.2838106 +0.08132997 -0.0175068 0.2838106 +0.1121653 -0.0175068 0.2838106 +0.1535689 -0.0175068 0.2838106 +0.2091628 -0.0175068 0.2838106 +0.2838106 -0.0175068 0.2838106 +0.3840425 -0.0175068 0.2838106 +0.518627 -0.0175068 0.2838106 +0.6993381 -0.0175068 0.2838106 +0.9419845 -0.0175068 0.2838106 +1.267794 -0.0175068 0.2838106 +1.705268 -0.0175068 0.2838106 +2.292679 -0.0175068 0.2838106 +3.081414 -0.0175068 0.2838106 +4.140474 -0.0175068 0.2838106 +5.562508 -0.0175068 0.2838106 +7.471917 -0.0175068 0.2838106 +10.03574 -0.0175068 0.2838106 +13.47828 -0.0175068 0.2838106 +18.10068 -0.0175068 0.2838106 +24.30731 -0.0175068 0.2838106 +32.64117 -0.0175068 0.2838106 +43.83129 -0.0175068 0.2838106 +58.85664 -0.0175068 0.2838106 +-0.0175068 -0.01161267 0.2838106 +-0.01161267 -0.01161267 0.2838106 +-0.005718534 -0.01161267 0.2838106 +0.0001755984 -0.01161267 0.2838106 +0.006069731 -0.01161267 0.2838106 +0.01197402 -0.01161267 0.2838106 +0.01903886 -0.01161267 0.2838106 +0.02852504 -0.01161267 0.2838106 +0.04126244 -0.01161267 0.2838106 +0.05836535 -0.01161267 0.2838106 +0.08132997 -0.01161267 0.2838106 +0.1121653 -0.01161267 0.2838106 +0.1535689 -0.01161267 0.2838106 +0.2091628 -0.01161267 0.2838106 +0.2838106 -0.01161267 0.2838106 +0.3840425 -0.01161267 0.2838106 +0.518627 -0.01161267 0.2838106 +0.6993381 -0.01161267 0.2838106 +0.9419845 -0.01161267 0.2838106 +1.267794 -0.01161267 0.2838106 +1.705268 -0.01161267 0.2838106 +2.292679 -0.01161267 0.2838106 +3.081414 -0.01161267 0.2838106 +4.140474 -0.01161267 0.2838106 +5.562508 -0.01161267 0.2838106 +7.471917 -0.01161267 0.2838106 +10.03574 -0.01161267 0.2838106 +13.47828 -0.01161267 0.2838106 +18.10068 -0.01161267 0.2838106 +24.30731 -0.01161267 0.2838106 +32.64117 -0.01161267 0.2838106 +43.83129 -0.01161267 0.2838106 +58.85664 -0.01161267 0.2838106 +-0.0175068 -0.005718534 0.2838106 +-0.01161267 -0.005718534 0.2838106 +-0.005718534 -0.005718534 0.2838106 +0.0001755984 -0.005718534 0.2838106 +0.006069731 -0.005718534 0.2838106 +0.01197402 -0.005718534 0.2838106 +0.01903886 -0.005718534 0.2838106 +0.02852504 -0.005718534 0.2838106 +0.04126244 -0.005718534 0.2838106 +0.05836535 -0.005718534 0.2838106 +0.08132997 -0.005718534 0.2838106 +0.1121653 -0.005718534 0.2838106 +0.1535689 -0.005718534 0.2838106 +0.2091628 -0.005718534 0.2838106 +0.2838106 -0.005718534 0.2838106 +0.3840425 -0.005718534 0.2838106 +0.518627 -0.005718534 0.2838106 +0.6993381 -0.005718534 0.2838106 +0.9419845 -0.005718534 0.2838106 +1.267794 -0.005718534 0.2838106 +1.705268 -0.005718534 0.2838106 +2.292679 -0.005718534 0.2838106 +3.081414 -0.005718534 0.2838106 +4.140474 -0.005718534 0.2838106 +5.562508 -0.005718534 0.2838106 +7.471917 -0.005718534 0.2838106 +10.03574 -0.005718534 0.2838106 +13.47828 -0.005718534 0.2838106 +18.10068 -0.005718534 0.2838106 +24.30731 -0.005718534 0.2838106 +32.64117 -0.005718534 0.2838106 +43.83129 -0.005718534 0.2838106 +58.85664 -0.005718534 0.2838106 +-0.0175068 0.0001755984 0.2838106 +-0.01161267 0.0001755984 0.2838106 +-0.005718534 0.0001755984 0.2838106 +0.0001755984 0.0001755984 0.2838106 +0.006069731 0.0001755984 0.2838106 +0.01197402 0.0001755984 0.2838106 +0.01903886 0.0001755984 0.2838106 +0.02852504 0.0001755984 0.2838106 +0.04126244 0.0001755984 0.2838106 +0.05836535 0.0001755984 0.2838106 +0.08132997 0.0001755984 0.2838106 +0.1121653 0.0001755984 0.2838106 +0.1535689 0.0001755984 0.2838106 +0.2091628 0.0001755984 0.2838106 +0.2838106 0.0001755984 0.2838106 +0.3840425 0.0001755984 0.2838106 +0.518627 0.0001755984 0.2838106 +0.6993381 0.0001755984 0.2838106 +0.9419845 0.0001755984 0.2838106 +1.267794 0.0001755984 0.2838106 +1.705268 0.0001755984 0.2838106 +2.292679 0.0001755984 0.2838106 +3.081414 0.0001755984 0.2838106 +4.140474 0.0001755984 0.2838106 +5.562508 0.0001755984 0.2838106 +7.471917 0.0001755984 0.2838106 +10.03574 0.0001755984 0.2838106 +13.47828 0.0001755984 0.2838106 +18.10068 0.0001755984 0.2838106 +24.30731 0.0001755984 0.2838106 +32.64117 0.0001755984 0.2838106 +43.83129 0.0001755984 0.2838106 +58.85664 0.0001755984 0.2838106 +-0.0175068 0.006069731 0.2838106 +-0.01161267 0.006069731 0.2838106 +-0.005718534 0.006069731 0.2838106 +0.0001755984 0.006069731 0.2838106 +0.006069731 0.006069731 0.2838106 +0.01197402 0.006069731 0.2838106 +0.01903886 0.006069731 0.2838106 +0.02852504 0.006069731 0.2838106 +0.04126244 0.006069731 0.2838106 +0.05836535 0.006069731 0.2838106 +0.08132997 0.006069731 0.2838106 +0.1121653 0.006069731 0.2838106 +0.1535689 0.006069731 0.2838106 +0.2091628 0.006069731 0.2838106 +0.2838106 0.006069731 0.2838106 +0.3840425 0.006069731 0.2838106 +0.518627 0.006069731 0.2838106 +0.6993381 0.006069731 0.2838106 +0.9419845 0.006069731 0.2838106 +1.267794 0.006069731 0.2838106 +1.705268 0.006069731 0.2838106 +2.292679 0.006069731 0.2838106 +3.081414 0.006069731 0.2838106 +4.140474 0.006069731 0.2838106 +5.562508 0.006069731 0.2838106 +7.471917 0.006069731 0.2838106 +10.03574 0.006069731 0.2838106 +13.47828 0.006069731 0.2838106 +18.10068 0.006069731 0.2838106 +24.30731 0.006069731 0.2838106 +32.64117 0.006069731 0.2838106 +43.83129 0.006069731 0.2838106 +58.85664 0.006069731 0.2838106 +-0.0175068 0.01197402 0.2838106 +-0.01161267 0.01197402 0.2838106 +-0.005718534 0.01197402 0.2838106 +0.0001755984 0.01197402 0.2838106 +0.006069731 0.01197402 0.2838106 +0.01197402 0.01197402 0.2838106 +0.01903886 0.01197402 0.2838106 +0.02852504 0.01197402 0.2838106 +0.04126244 0.01197402 0.2838106 +0.05836535 0.01197402 0.2838106 +0.08132997 0.01197402 0.2838106 +0.1121653 0.01197402 0.2838106 +0.1535689 0.01197402 0.2838106 +0.2091628 0.01197402 0.2838106 +0.2838106 0.01197402 0.2838106 +0.3840425 0.01197402 0.2838106 +0.518627 0.01197402 0.2838106 +0.6993381 0.01197402 0.2838106 +0.9419845 0.01197402 0.2838106 +1.267794 0.01197402 0.2838106 +1.705268 0.01197402 0.2838106 +2.292679 0.01197402 0.2838106 +3.081414 0.01197402 0.2838106 +4.140474 0.01197402 0.2838106 +5.562508 0.01197402 0.2838106 +7.471917 0.01197402 0.2838106 +10.03574 0.01197402 0.2838106 +13.47828 0.01197402 0.2838106 +18.10068 0.01197402 0.2838106 +24.30731 0.01197402 0.2838106 +32.64117 0.01197402 0.2838106 +43.83129 0.01197402 0.2838106 +58.85664 0.01197402 0.2838106 +-0.0175068 0.01903886 0.2838106 +-0.01161267 0.01903886 0.2838106 +-0.005718534 0.01903886 0.2838106 +0.0001755984 0.01903886 0.2838106 +0.006069731 0.01903886 0.2838106 +0.01197402 0.01903886 0.2838106 +0.01903886 0.01903886 0.2838106 +0.02852504 0.01903886 0.2838106 +0.04126244 0.01903886 0.2838106 +0.05836535 0.01903886 0.2838106 +0.08132997 0.01903886 0.2838106 +0.1121653 0.01903886 0.2838106 +0.1535689 0.01903886 0.2838106 +0.2091628 0.01903886 0.2838106 +0.2838106 0.01903886 0.2838106 +0.3840425 0.01903886 0.2838106 +0.518627 0.01903886 0.2838106 +0.6993381 0.01903886 0.2838106 +0.9419845 0.01903886 0.2838106 +1.267794 0.01903886 0.2838106 +1.705268 0.01903886 0.2838106 +2.292679 0.01903886 0.2838106 +3.081414 0.01903886 0.2838106 +4.140474 0.01903886 0.2838106 +5.562508 0.01903886 0.2838106 +7.471917 0.01903886 0.2838106 +10.03574 0.01903886 0.2838106 +13.47828 0.01903886 0.2838106 +18.10068 0.01903886 0.2838106 +24.30731 0.01903886 0.2838106 +32.64117 0.01903886 0.2838106 +43.83129 0.01903886 0.2838106 +58.85664 0.01903886 0.2838106 +-0.0175068 0.02852504 0.2838106 +-0.01161267 0.02852504 0.2838106 +-0.005718534 0.02852504 0.2838106 +0.0001755984 0.02852504 0.2838106 +0.006069731 0.02852504 0.2838106 +0.01197402 0.02852504 0.2838106 +0.01903886 0.02852504 0.2838106 +0.02852504 0.02852504 0.2838106 +0.04126244 0.02852504 0.2838106 +0.05836535 0.02852504 0.2838106 +0.08132997 0.02852504 0.2838106 +0.1121653 0.02852504 0.2838106 +0.1535689 0.02852504 0.2838106 +0.2091628 0.02852504 0.2838106 +0.2838106 0.02852504 0.2838106 +0.3840425 0.02852504 0.2838106 +0.518627 0.02852504 0.2838106 +0.6993381 0.02852504 0.2838106 +0.9419845 0.02852504 0.2838106 +1.267794 0.02852504 0.2838106 +1.705268 0.02852504 0.2838106 +2.292679 0.02852504 0.2838106 +3.081414 0.02852504 0.2838106 +4.140474 0.02852504 0.2838106 +5.562508 0.02852504 0.2838106 +7.471917 0.02852504 0.2838106 +10.03574 0.02852504 0.2838106 +13.47828 0.02852504 0.2838106 +18.10068 0.02852504 0.2838106 +24.30731 0.02852504 0.2838106 +32.64117 0.02852504 0.2838106 +43.83129 0.02852504 0.2838106 +58.85664 0.02852504 0.2838106 +-0.0175068 0.04126244 0.2838106 +-0.01161267 0.04126244 0.2838106 +-0.005718534 0.04126244 0.2838106 +0.0001755984 0.04126244 0.2838106 +0.006069731 0.04126244 0.2838106 +0.01197402 0.04126244 0.2838106 +0.01903886 0.04126244 0.2838106 +0.02852504 0.04126244 0.2838106 +0.04126244 0.04126244 0.2838106 +0.05836535 0.04126244 0.2838106 +0.08132997 0.04126244 0.2838106 +0.1121653 0.04126244 0.2838106 +0.1535689 0.04126244 0.2838106 +0.2091628 0.04126244 0.2838106 +0.2838106 0.04126244 0.2838106 +0.3840425 0.04126244 0.2838106 +0.518627 0.04126244 0.2838106 +0.6993381 0.04126244 0.2838106 +0.9419845 0.04126244 0.2838106 +1.267794 0.04126244 0.2838106 +1.705268 0.04126244 0.2838106 +2.292679 0.04126244 0.2838106 +3.081414 0.04126244 0.2838106 +4.140474 0.04126244 0.2838106 +5.562508 0.04126244 0.2838106 +7.471917 0.04126244 0.2838106 +10.03574 0.04126244 0.2838106 +13.47828 0.04126244 0.2838106 +18.10068 0.04126244 0.2838106 +24.30731 0.04126244 0.2838106 +32.64117 0.04126244 0.2838106 +43.83129 0.04126244 0.2838106 +58.85664 0.04126244 0.2838106 +-0.0175068 0.05836535 0.2838106 +-0.01161267 0.05836535 0.2838106 +-0.005718534 0.05836535 0.2838106 +0.0001755984 0.05836535 0.2838106 +0.006069731 0.05836535 0.2838106 +0.01197402 0.05836535 0.2838106 +0.01903886 0.05836535 0.2838106 +0.02852504 0.05836535 0.2838106 +0.04126244 0.05836535 0.2838106 +0.05836535 0.05836535 0.2838106 +0.08132997 0.05836535 0.2838106 +0.1121653 0.05836535 0.2838106 +0.1535689 0.05836535 0.2838106 +0.2091628 0.05836535 0.2838106 +0.2838106 0.05836535 0.2838106 +0.3840425 0.05836535 0.2838106 +0.518627 0.05836535 0.2838106 +0.6993381 0.05836535 0.2838106 +0.9419845 0.05836535 0.2838106 +1.267794 0.05836535 0.2838106 +1.705268 0.05836535 0.2838106 +2.292679 0.05836535 0.2838106 +3.081414 0.05836535 0.2838106 +4.140474 0.05836535 0.2838106 +5.562508 0.05836535 0.2838106 +7.471917 0.05836535 0.2838106 +10.03574 0.05836535 0.2838106 +13.47828 0.05836535 0.2838106 +18.10068 0.05836535 0.2838106 +24.30731 0.05836535 0.2838106 +32.64117 0.05836535 0.2838106 +43.83129 0.05836535 0.2838106 +58.85664 0.05836535 0.2838106 +-0.0175068 0.08132997 0.2838106 +-0.01161267 0.08132997 0.2838106 +-0.005718534 0.08132997 0.2838106 +0.0001755984 0.08132997 0.2838106 +0.006069731 0.08132997 0.2838106 +0.01197402 0.08132997 0.2838106 +0.01903886 0.08132997 0.2838106 +0.02852504 0.08132997 0.2838106 +0.04126244 0.08132997 0.2838106 +0.05836535 0.08132997 0.2838106 +0.08132997 0.08132997 0.2838106 +0.1121653 0.08132997 0.2838106 +0.1535689 0.08132997 0.2838106 +0.2091628 0.08132997 0.2838106 +0.2838106 0.08132997 0.2838106 +0.3840425 0.08132997 0.2838106 +0.518627 0.08132997 0.2838106 +0.6993381 0.08132997 0.2838106 +0.9419845 0.08132997 0.2838106 +1.267794 0.08132997 0.2838106 +1.705268 0.08132997 0.2838106 +2.292679 0.08132997 0.2838106 +3.081414 0.08132997 0.2838106 +4.140474 0.08132997 0.2838106 +5.562508 0.08132997 0.2838106 +7.471917 0.08132997 0.2838106 +10.03574 0.08132997 0.2838106 +13.47828 0.08132997 0.2838106 +18.10068 0.08132997 0.2838106 +24.30731 0.08132997 0.2838106 +32.64117 0.08132997 0.2838106 +43.83129 0.08132997 0.2838106 +58.85664 0.08132997 0.2838106 +-0.0175068 0.1121653 0.2838106 +-0.01161267 0.1121653 0.2838106 +-0.005718534 0.1121653 0.2838106 +0.0001755984 0.1121653 0.2838106 +0.006069731 0.1121653 0.2838106 +0.01197402 0.1121653 0.2838106 +0.01903886 0.1121653 0.2838106 +0.02852504 0.1121653 0.2838106 +0.04126244 0.1121653 0.2838106 +0.05836535 0.1121653 0.2838106 +0.08132997 0.1121653 0.2838106 +0.1121653 0.1121653 0.2838106 +0.1535689 0.1121653 0.2838106 +0.2091628 0.1121653 0.2838106 +0.2838106 0.1121653 0.2838106 +0.3840425 0.1121653 0.2838106 +0.518627 0.1121653 0.2838106 +0.6993381 0.1121653 0.2838106 +0.9419845 0.1121653 0.2838106 +1.267794 0.1121653 0.2838106 +1.705268 0.1121653 0.2838106 +2.292679 0.1121653 0.2838106 +3.081414 0.1121653 0.2838106 +4.140474 0.1121653 0.2838106 +5.562508 0.1121653 0.2838106 +7.471917 0.1121653 0.2838106 +10.03574 0.1121653 0.2838106 +13.47828 0.1121653 0.2838106 +18.10068 0.1121653 0.2838106 +24.30731 0.1121653 0.2838106 +32.64117 0.1121653 0.2838106 +43.83129 0.1121653 0.2838106 +58.85664 0.1121653 0.2838106 +-0.0175068 0.1535689 0.2838106 +-0.01161267 0.1535689 0.2838106 +-0.005718534 0.1535689 0.2838106 +0.0001755984 0.1535689 0.2838106 +0.006069731 0.1535689 0.2838106 +0.01197402 0.1535689 0.2838106 +0.01903886 0.1535689 0.2838106 +0.02852504 0.1535689 0.2838106 +0.04126244 0.1535689 0.2838106 +0.05836535 0.1535689 0.2838106 +0.08132997 0.1535689 0.2838106 +0.1121653 0.1535689 0.2838106 +0.1535689 0.1535689 0.2838106 +0.2091628 0.1535689 0.2838106 +0.2838106 0.1535689 0.2838106 +0.3840425 0.1535689 0.2838106 +0.518627 0.1535689 0.2838106 +0.6993381 0.1535689 0.2838106 +0.9419845 0.1535689 0.2838106 +1.267794 0.1535689 0.2838106 +1.705268 0.1535689 0.2838106 +2.292679 0.1535689 0.2838106 +3.081414 0.1535689 0.2838106 +4.140474 0.1535689 0.2838106 +5.562508 0.1535689 0.2838106 +7.471917 0.1535689 0.2838106 +10.03574 0.1535689 0.2838106 +13.47828 0.1535689 0.2838106 +18.10068 0.1535689 0.2838106 +24.30731 0.1535689 0.2838106 +32.64117 0.1535689 0.2838106 +43.83129 0.1535689 0.2838106 +58.85664 0.1535689 0.2838106 +-0.0175068 0.2091628 0.2838106 +-0.01161267 0.2091628 0.2838106 +-0.005718534 0.2091628 0.2838106 +0.0001755984 0.2091628 0.2838106 +0.006069731 0.2091628 0.2838106 +0.01197402 0.2091628 0.2838106 +0.01903886 0.2091628 0.2838106 +0.02852504 0.2091628 0.2838106 +0.04126244 0.2091628 0.2838106 +0.05836535 0.2091628 0.2838106 +0.08132997 0.2091628 0.2838106 +0.1121653 0.2091628 0.2838106 +0.1535689 0.2091628 0.2838106 +0.2091628 0.2091628 0.2838106 +0.2838106 0.2091628 0.2838106 +0.3840425 0.2091628 0.2838106 +0.518627 0.2091628 0.2838106 +0.6993381 0.2091628 0.2838106 +0.9419845 0.2091628 0.2838106 +1.267794 0.2091628 0.2838106 +1.705268 0.2091628 0.2838106 +2.292679 0.2091628 0.2838106 +3.081414 0.2091628 0.2838106 +4.140474 0.2091628 0.2838106 +5.562508 0.2091628 0.2838106 +7.471917 0.2091628 0.2838106 +10.03574 0.2091628 0.2838106 +13.47828 0.2091628 0.2838106 +18.10068 0.2091628 0.2838106 +24.30731 0.2091628 0.2838106 +32.64117 0.2091628 0.2838106 +43.83129 0.2091628 0.2838106 +58.85664 0.2091628 0.2838106 +-0.0175068 0.2838106 0.2838106 +-0.01161267 0.2838106 0.2838106 +-0.005718534 0.2838106 0.2838106 +0.0001755984 0.2838106 0.2838106 +0.006069731 0.2838106 0.2838106 +0.01197402 0.2838106 0.2838106 +0.01903886 0.2838106 0.2838106 +0.02852504 0.2838106 0.2838106 +0.04126244 0.2838106 0.2838106 +0.05836535 0.2838106 0.2838106 +0.08132997 0.2838106 0.2838106 +0.1121653 0.2838106 0.2838106 +0.1535689 0.2838106 0.2838106 +0.2091628 0.2838106 0.2838106 +0.2838106 0.2838106 0.2838106 +0.3840425 0.2838106 0.2838106 +0.518627 0.2838106 0.2838106 +0.6993381 0.2838106 0.2838106 +0.9419845 0.2838106 0.2838106 +1.267794 0.2838106 0.2838106 +1.705268 0.2838106 0.2838106 +2.292679 0.2838106 0.2838106 +3.081414 0.2838106 0.2838106 +4.140474 0.2838106 0.2838106 +5.562508 0.2838106 0.2838106 +7.471917 0.2838106 0.2838106 +10.03574 0.2838106 0.2838106 +13.47828 0.2838106 0.2838106 +18.10068 0.2838106 0.2838106 +24.30731 0.2838106 0.2838106 +32.64117 0.2838106 0.2838106 +43.83129 0.2838106 0.2838106 +58.85664 0.2838106 0.2838106 +-0.0175068 0.3840425 0.2838106 +-0.01161267 0.3840425 0.2838106 +-0.005718534 0.3840425 0.2838106 +0.0001755984 0.3840425 0.2838106 +0.006069731 0.3840425 0.2838106 +0.01197402 0.3840425 0.2838106 +0.01903886 0.3840425 0.2838106 +0.02852504 0.3840425 0.2838106 +0.04126244 0.3840425 0.2838106 +0.05836535 0.3840425 0.2838106 +0.08132997 0.3840425 0.2838106 +0.1121653 0.3840425 0.2838106 +0.1535689 0.3840425 0.2838106 +0.2091628 0.3840425 0.2838106 +0.2838106 0.3840425 0.2838106 +0.3840425 0.3840425 0.2838106 +0.518627 0.3840425 0.2838106 +0.6993381 0.3840425 0.2838106 +0.9419845 0.3840425 0.2838106 +1.267794 0.3840425 0.2838106 +1.705268 0.3840425 0.2838106 +2.292679 0.3840425 0.2838106 +3.081414 0.3840425 0.2838106 +4.140474 0.3840425 0.2838106 +5.562508 0.3840425 0.2838106 +7.471917 0.3840425 0.2838106 +10.03574 0.3840425 0.2838106 +13.47828 0.3840425 0.2838106 +18.10068 0.3840425 0.2838106 +24.30731 0.3840425 0.2838106 +32.64117 0.3840425 0.2838106 +43.83129 0.3840425 0.2838106 +58.85664 0.3840425 0.2838106 +-0.0175068 0.518627 0.2838106 +-0.01161267 0.518627 0.2838106 +-0.005718534 0.518627 0.2838106 +0.0001755984 0.518627 0.2838106 +0.006069731 0.518627 0.2838106 +0.01197402 0.518627 0.2838106 +0.01903886 0.518627 0.2838106 +0.02852504 0.518627 0.2838106 +0.04126244 0.518627 0.2838106 +0.05836535 0.518627 0.2838106 +0.08132997 0.518627 0.2838106 +0.1121653 0.518627 0.2838106 +0.1535689 0.518627 0.2838106 +0.2091628 0.518627 0.2838106 +0.2838106 0.518627 0.2838106 +0.3840425 0.518627 0.2838106 +0.518627 0.518627 0.2838106 +0.6993381 0.518627 0.2838106 +0.9419845 0.518627 0.2838106 +1.267794 0.518627 0.2838106 +1.705268 0.518627 0.2838106 +2.292679 0.518627 0.2838106 +3.081414 0.518627 0.2838106 +4.140474 0.518627 0.2838106 +5.562508 0.518627 0.2838106 +7.471917 0.518627 0.2838106 +10.03574 0.518627 0.2838106 +13.47828 0.518627 0.2838106 +18.10068 0.518627 0.2838106 +24.30731 0.518627 0.2838106 +32.64117 0.518627 0.2838106 +43.83129 0.518627 0.2838106 +58.85664 0.518627 0.2838106 +-0.0175068 0.6993381 0.2838106 +-0.01161267 0.6993381 0.2838106 +-0.005718534 0.6993381 0.2838106 +0.0001755984 0.6993381 0.2838106 +0.006069731 0.6993381 0.2838106 +0.01197402 0.6993381 0.2838106 +0.01903886 0.6993381 0.2838106 +0.02852504 0.6993381 0.2838106 +0.04126244 0.6993381 0.2838106 +0.05836535 0.6993381 0.2838106 +0.08132997 0.6993381 0.2838106 +0.1121653 0.6993381 0.2838106 +0.1535689 0.6993381 0.2838106 +0.2091628 0.6993381 0.2838106 +0.2838106 0.6993381 0.2838106 +0.3840425 0.6993381 0.2838106 +0.518627 0.6993381 0.2838106 +0.6993381 0.6993381 0.2838106 +0.9419845 0.6993381 0.2838106 +1.267794 0.6993381 0.2838106 +1.705268 0.6993381 0.2838106 +2.292679 0.6993381 0.2838106 +3.081414 0.6993381 0.2838106 +4.140474 0.6993381 0.2838106 +5.562508 0.6993381 0.2838106 +7.471917 0.6993381 0.2838106 +10.03574 0.6993381 0.2838106 +13.47828 0.6993381 0.2838106 +18.10068 0.6993381 0.2838106 +24.30731 0.6993381 0.2838106 +32.64117 0.6993381 0.2838106 +43.83129 0.6993381 0.2838106 +58.85664 0.6993381 0.2838106 +-0.0175068 0.9419845 0.2838106 +-0.01161267 0.9419845 0.2838106 +-0.005718534 0.9419845 0.2838106 +0.0001755984 0.9419845 0.2838106 +0.006069731 0.9419845 0.2838106 +0.01197402 0.9419845 0.2838106 +0.01903886 0.9419845 0.2838106 +0.02852504 0.9419845 0.2838106 +0.04126244 0.9419845 0.2838106 +0.05836535 0.9419845 0.2838106 +0.08132997 0.9419845 0.2838106 +0.1121653 0.9419845 0.2838106 +0.1535689 0.9419845 0.2838106 +0.2091628 0.9419845 0.2838106 +0.2838106 0.9419845 0.2838106 +0.3840425 0.9419845 0.2838106 +0.518627 0.9419845 0.2838106 +0.6993381 0.9419845 0.2838106 +0.9419845 0.9419845 0.2838106 +1.267794 0.9419845 0.2838106 +1.705268 0.9419845 0.2838106 +2.292679 0.9419845 0.2838106 +3.081414 0.9419845 0.2838106 +4.140474 0.9419845 0.2838106 +5.562508 0.9419845 0.2838106 +7.471917 0.9419845 0.2838106 +10.03574 0.9419845 0.2838106 +13.47828 0.9419845 0.2838106 +18.10068 0.9419845 0.2838106 +24.30731 0.9419845 0.2838106 +32.64117 0.9419845 0.2838106 +43.83129 0.9419845 0.2838106 +58.85664 0.9419845 0.2838106 +-0.0175068 1.267794 0.2838106 +-0.01161267 1.267794 0.2838106 +-0.005718534 1.267794 0.2838106 +0.0001755984 1.267794 0.2838106 +0.006069731 1.267794 0.2838106 +0.01197402 1.267794 0.2838106 +0.01903886 1.267794 0.2838106 +0.02852504 1.267794 0.2838106 +0.04126244 1.267794 0.2838106 +0.05836535 1.267794 0.2838106 +0.08132997 1.267794 0.2838106 +0.1121653 1.267794 0.2838106 +0.1535689 1.267794 0.2838106 +0.2091628 1.267794 0.2838106 +0.2838106 1.267794 0.2838106 +0.3840425 1.267794 0.2838106 +0.518627 1.267794 0.2838106 +0.6993381 1.267794 0.2838106 +0.9419845 1.267794 0.2838106 +1.267794 1.267794 0.2838106 +1.705268 1.267794 0.2838106 +2.292679 1.267794 0.2838106 +3.081414 1.267794 0.2838106 +4.140474 1.267794 0.2838106 +5.562508 1.267794 0.2838106 +7.471917 1.267794 0.2838106 +10.03574 1.267794 0.2838106 +13.47828 1.267794 0.2838106 +18.10068 1.267794 0.2838106 +24.30731 1.267794 0.2838106 +32.64117 1.267794 0.2838106 +43.83129 1.267794 0.2838106 +58.85664 1.267794 0.2838106 +-0.0175068 1.705268 0.2838106 +-0.01161267 1.705268 0.2838106 +-0.005718534 1.705268 0.2838106 +0.0001755984 1.705268 0.2838106 +0.006069731 1.705268 0.2838106 +0.01197402 1.705268 0.2838106 +0.01903886 1.705268 0.2838106 +0.02852504 1.705268 0.2838106 +0.04126244 1.705268 0.2838106 +0.05836535 1.705268 0.2838106 +0.08132997 1.705268 0.2838106 +0.1121653 1.705268 0.2838106 +0.1535689 1.705268 0.2838106 +0.2091628 1.705268 0.2838106 +0.2838106 1.705268 0.2838106 +0.3840425 1.705268 0.2838106 +0.518627 1.705268 0.2838106 +0.6993381 1.705268 0.2838106 +0.9419845 1.705268 0.2838106 +1.267794 1.705268 0.2838106 +1.705268 1.705268 0.2838106 +2.292679 1.705268 0.2838106 +3.081414 1.705268 0.2838106 +4.140474 1.705268 0.2838106 +5.562508 1.705268 0.2838106 +7.471917 1.705268 0.2838106 +10.03574 1.705268 0.2838106 +13.47828 1.705268 0.2838106 +18.10068 1.705268 0.2838106 +24.30731 1.705268 0.2838106 +32.64117 1.705268 0.2838106 +43.83129 1.705268 0.2838106 +58.85664 1.705268 0.2838106 +-0.0175068 2.292679 0.2838106 +-0.01161267 2.292679 0.2838106 +-0.005718534 2.292679 0.2838106 +0.0001755984 2.292679 0.2838106 +0.006069731 2.292679 0.2838106 +0.01197402 2.292679 0.2838106 +0.01903886 2.292679 0.2838106 +0.02852504 2.292679 0.2838106 +0.04126244 2.292679 0.2838106 +0.05836535 2.292679 0.2838106 +0.08132997 2.292679 0.2838106 +0.1121653 2.292679 0.2838106 +0.1535689 2.292679 0.2838106 +0.2091628 2.292679 0.2838106 +0.2838106 2.292679 0.2838106 +0.3840425 2.292679 0.2838106 +0.518627 2.292679 0.2838106 +0.6993381 2.292679 0.2838106 +0.9419845 2.292679 0.2838106 +1.267794 2.292679 0.2838106 +1.705268 2.292679 0.2838106 +2.292679 2.292679 0.2838106 +3.081414 2.292679 0.2838106 +4.140474 2.292679 0.2838106 +5.562508 2.292679 0.2838106 +7.471917 2.292679 0.2838106 +10.03574 2.292679 0.2838106 +13.47828 2.292679 0.2838106 +18.10068 2.292679 0.2838106 +24.30731 2.292679 0.2838106 +32.64117 2.292679 0.2838106 +43.83129 2.292679 0.2838106 +58.85664 2.292679 0.2838106 +-0.0175068 3.081414 0.2838106 +-0.01161267 3.081414 0.2838106 +-0.005718534 3.081414 0.2838106 +0.0001755984 3.081414 0.2838106 +0.006069731 3.081414 0.2838106 +0.01197402 3.081414 0.2838106 +0.01903886 3.081414 0.2838106 +0.02852504 3.081414 0.2838106 +0.04126244 3.081414 0.2838106 +0.05836535 3.081414 0.2838106 +0.08132997 3.081414 0.2838106 +0.1121653 3.081414 0.2838106 +0.1535689 3.081414 0.2838106 +0.2091628 3.081414 0.2838106 +0.2838106 3.081414 0.2838106 +0.3840425 3.081414 0.2838106 +0.518627 3.081414 0.2838106 +0.6993381 3.081414 0.2838106 +0.9419845 3.081414 0.2838106 +1.267794 3.081414 0.2838106 +1.705268 3.081414 0.2838106 +2.292679 3.081414 0.2838106 +3.081414 3.081414 0.2838106 +4.140474 3.081414 0.2838106 +5.562508 3.081414 0.2838106 +7.471917 3.081414 0.2838106 +10.03574 3.081414 0.2838106 +13.47828 3.081414 0.2838106 +18.10068 3.081414 0.2838106 +24.30731 3.081414 0.2838106 +32.64117 3.081414 0.2838106 +43.83129 3.081414 0.2838106 +58.85664 3.081414 0.2838106 +-0.0175068 4.140474 0.2838106 +-0.01161267 4.140474 0.2838106 +-0.005718534 4.140474 0.2838106 +0.0001755984 4.140474 0.2838106 +0.006069731 4.140474 0.2838106 +0.01197402 4.140474 0.2838106 +0.01903886 4.140474 0.2838106 +0.02852504 4.140474 0.2838106 +0.04126244 4.140474 0.2838106 +0.05836535 4.140474 0.2838106 +0.08132997 4.140474 0.2838106 +0.1121653 4.140474 0.2838106 +0.1535689 4.140474 0.2838106 +0.2091628 4.140474 0.2838106 +0.2838106 4.140474 0.2838106 +0.3840425 4.140474 0.2838106 +0.518627 4.140474 0.2838106 +0.6993381 4.140474 0.2838106 +0.9419845 4.140474 0.2838106 +1.267794 4.140474 0.2838106 +1.705268 4.140474 0.2838106 +2.292679 4.140474 0.2838106 +3.081414 4.140474 0.2838106 +4.140474 4.140474 0.2838106 +5.562508 4.140474 0.2838106 +7.471917 4.140474 0.2838106 +10.03574 4.140474 0.2838106 +13.47828 4.140474 0.2838106 +18.10068 4.140474 0.2838106 +24.30731 4.140474 0.2838106 +32.64117 4.140474 0.2838106 +43.83129 4.140474 0.2838106 +58.85664 4.140474 0.2838106 +-0.0175068 5.562508 0.2838106 +-0.01161267 5.562508 0.2838106 +-0.005718534 5.562508 0.2838106 +0.0001755984 5.562508 0.2838106 +0.006069731 5.562508 0.2838106 +0.01197402 5.562508 0.2838106 +0.01903886 5.562508 0.2838106 +0.02852504 5.562508 0.2838106 +0.04126244 5.562508 0.2838106 +0.05836535 5.562508 0.2838106 +0.08132997 5.562508 0.2838106 +0.1121653 5.562508 0.2838106 +0.1535689 5.562508 0.2838106 +0.2091628 5.562508 0.2838106 +0.2838106 5.562508 0.2838106 +0.3840425 5.562508 0.2838106 +0.518627 5.562508 0.2838106 +0.6993381 5.562508 0.2838106 +0.9419845 5.562508 0.2838106 +1.267794 5.562508 0.2838106 +1.705268 5.562508 0.2838106 +2.292679 5.562508 0.2838106 +3.081414 5.562508 0.2838106 +4.140474 5.562508 0.2838106 +5.562508 5.562508 0.2838106 +7.471917 5.562508 0.2838106 +10.03574 5.562508 0.2838106 +13.47828 5.562508 0.2838106 +18.10068 5.562508 0.2838106 +24.30731 5.562508 0.2838106 +32.64117 5.562508 0.2838106 +43.83129 5.562508 0.2838106 +58.85664 5.562508 0.2838106 +-0.0175068 7.471917 0.2838106 +-0.01161267 7.471917 0.2838106 +-0.005718534 7.471917 0.2838106 +0.0001755984 7.471917 0.2838106 +0.006069731 7.471917 0.2838106 +0.01197402 7.471917 0.2838106 +0.01903886 7.471917 0.2838106 +0.02852504 7.471917 0.2838106 +0.04126244 7.471917 0.2838106 +0.05836535 7.471917 0.2838106 +0.08132997 7.471917 0.2838106 +0.1121653 7.471917 0.2838106 +0.1535689 7.471917 0.2838106 +0.2091628 7.471917 0.2838106 +0.2838106 7.471917 0.2838106 +0.3840425 7.471917 0.2838106 +0.518627 7.471917 0.2838106 +0.6993381 7.471917 0.2838106 +0.9419845 7.471917 0.2838106 +1.267794 7.471917 0.2838106 +1.705268 7.471917 0.2838106 +2.292679 7.471917 0.2838106 +3.081414 7.471917 0.2838106 +4.140474 7.471917 0.2838106 +5.562508 7.471917 0.2838106 +7.471917 7.471917 0.2838106 +10.03574 7.471917 0.2838106 +13.47828 7.471917 0.2838106 +18.10068 7.471917 0.2838106 +24.30731 7.471917 0.2838106 +32.64117 7.471917 0.2838106 +43.83129 7.471917 0.2838106 +58.85664 7.471917 0.2838106 +-0.0175068 10.03574 0.2838106 +-0.01161267 10.03574 0.2838106 +-0.005718534 10.03574 0.2838106 +0.0001755984 10.03574 0.2838106 +0.006069731 10.03574 0.2838106 +0.01197402 10.03574 0.2838106 +0.01903886 10.03574 0.2838106 +0.02852504 10.03574 0.2838106 +0.04126244 10.03574 0.2838106 +0.05836535 10.03574 0.2838106 +0.08132997 10.03574 0.2838106 +0.1121653 10.03574 0.2838106 +0.1535689 10.03574 0.2838106 +0.2091628 10.03574 0.2838106 +0.2838106 10.03574 0.2838106 +0.3840425 10.03574 0.2838106 +0.518627 10.03574 0.2838106 +0.6993381 10.03574 0.2838106 +0.9419845 10.03574 0.2838106 +1.267794 10.03574 0.2838106 +1.705268 10.03574 0.2838106 +2.292679 10.03574 0.2838106 +3.081414 10.03574 0.2838106 +4.140474 10.03574 0.2838106 +5.562508 10.03574 0.2838106 +7.471917 10.03574 0.2838106 +10.03574 10.03574 0.2838106 +13.47828 10.03574 0.2838106 +18.10068 10.03574 0.2838106 +24.30731 10.03574 0.2838106 +32.64117 10.03574 0.2838106 +43.83129 10.03574 0.2838106 +58.85664 10.03574 0.2838106 +-0.0175068 13.47828 0.2838106 +-0.01161267 13.47828 0.2838106 +-0.005718534 13.47828 0.2838106 +0.0001755984 13.47828 0.2838106 +0.006069731 13.47828 0.2838106 +0.01197402 13.47828 0.2838106 +0.01903886 13.47828 0.2838106 +0.02852504 13.47828 0.2838106 +0.04126244 13.47828 0.2838106 +0.05836535 13.47828 0.2838106 +0.08132997 13.47828 0.2838106 +0.1121653 13.47828 0.2838106 +0.1535689 13.47828 0.2838106 +0.2091628 13.47828 0.2838106 +0.2838106 13.47828 0.2838106 +0.3840425 13.47828 0.2838106 +0.518627 13.47828 0.2838106 +0.6993381 13.47828 0.2838106 +0.9419845 13.47828 0.2838106 +1.267794 13.47828 0.2838106 +1.705268 13.47828 0.2838106 +2.292679 13.47828 0.2838106 +3.081414 13.47828 0.2838106 +4.140474 13.47828 0.2838106 +5.562508 13.47828 0.2838106 +7.471917 13.47828 0.2838106 +10.03574 13.47828 0.2838106 +13.47828 13.47828 0.2838106 +18.10068 13.47828 0.2838106 +24.30731 13.47828 0.2838106 +32.64117 13.47828 0.2838106 +43.83129 13.47828 0.2838106 +58.85664 13.47828 0.2838106 +-0.0175068 18.10068 0.2838106 +-0.01161267 18.10068 0.2838106 +-0.005718534 18.10068 0.2838106 +0.0001755984 18.10068 0.2838106 +0.006069731 18.10068 0.2838106 +0.01197402 18.10068 0.2838106 +0.01903886 18.10068 0.2838106 +0.02852504 18.10068 0.2838106 +0.04126244 18.10068 0.2838106 +0.05836535 18.10068 0.2838106 +0.08132997 18.10068 0.2838106 +0.1121653 18.10068 0.2838106 +0.1535689 18.10068 0.2838106 +0.2091628 18.10068 0.2838106 +0.2838106 18.10068 0.2838106 +0.3840425 18.10068 0.2838106 +0.518627 18.10068 0.2838106 +0.6993381 18.10068 0.2838106 +0.9419845 18.10068 0.2838106 +1.267794 18.10068 0.2838106 +1.705268 18.10068 0.2838106 +2.292679 18.10068 0.2838106 +3.081414 18.10068 0.2838106 +4.140474 18.10068 0.2838106 +5.562508 18.10068 0.2838106 +7.471917 18.10068 0.2838106 +10.03574 18.10068 0.2838106 +13.47828 18.10068 0.2838106 +18.10068 18.10068 0.2838106 +24.30731 18.10068 0.2838106 +32.64117 18.10068 0.2838106 +43.83129 18.10068 0.2838106 +58.85664 18.10068 0.2838106 +-0.0175068 24.30731 0.2838106 +-0.01161267 24.30731 0.2838106 +-0.005718534 24.30731 0.2838106 +0.0001755984 24.30731 0.2838106 +0.006069731 24.30731 0.2838106 +0.01197402 24.30731 0.2838106 +0.01903886 24.30731 0.2838106 +0.02852504 24.30731 0.2838106 +0.04126244 24.30731 0.2838106 +0.05836535 24.30731 0.2838106 +0.08132997 24.30731 0.2838106 +0.1121653 24.30731 0.2838106 +0.1535689 24.30731 0.2838106 +0.2091628 24.30731 0.2838106 +0.2838106 24.30731 0.2838106 +0.3840425 24.30731 0.2838106 +0.518627 24.30731 0.2838106 +0.6993381 24.30731 0.2838106 +0.9419845 24.30731 0.2838106 +1.267794 24.30731 0.2838106 +1.705268 24.30731 0.2838106 +2.292679 24.30731 0.2838106 +3.081414 24.30731 0.2838106 +4.140474 24.30731 0.2838106 +5.562508 24.30731 0.2838106 +7.471917 24.30731 0.2838106 +10.03574 24.30731 0.2838106 +13.47828 24.30731 0.2838106 +18.10068 24.30731 0.2838106 +24.30731 24.30731 0.2838106 +32.64117 24.30731 0.2838106 +43.83129 24.30731 0.2838106 +58.85664 24.30731 0.2838106 +-0.0175068 32.64117 0.2838106 +-0.01161267 32.64117 0.2838106 +-0.005718534 32.64117 0.2838106 +0.0001755984 32.64117 0.2838106 +0.006069731 32.64117 0.2838106 +0.01197402 32.64117 0.2838106 +0.01903886 32.64117 0.2838106 +0.02852504 32.64117 0.2838106 +0.04126244 32.64117 0.2838106 +0.05836535 32.64117 0.2838106 +0.08132997 32.64117 0.2838106 +0.1121653 32.64117 0.2838106 +0.1535689 32.64117 0.2838106 +0.2091628 32.64117 0.2838106 +0.2838106 32.64117 0.2838106 +0.3840425 32.64117 0.2838106 +0.518627 32.64117 0.2838106 +0.6993381 32.64117 0.2838106 +0.9419845 32.64117 0.2838106 +1.267794 32.64117 0.2838106 +1.705268 32.64117 0.2838106 +2.292679 32.64117 0.2838106 +3.081414 32.64117 0.2838106 +4.140474 32.64117 0.2838106 +5.562508 32.64117 0.2838106 +7.471917 32.64117 0.2838106 +10.03574 32.64117 0.2838106 +13.47828 32.64117 0.2838106 +18.10068 32.64117 0.2838106 +24.30731 32.64117 0.2838106 +32.64117 32.64117 0.2838106 +43.83129 32.64117 0.2838106 +58.85664 32.64117 0.2838106 +-0.0175068 43.83129 0.2838106 +-0.01161267 43.83129 0.2838106 +-0.005718534 43.83129 0.2838106 +0.0001755984 43.83129 0.2838106 +0.006069731 43.83129 0.2838106 +0.01197402 43.83129 0.2838106 +0.01903886 43.83129 0.2838106 +0.02852504 43.83129 0.2838106 +0.04126244 43.83129 0.2838106 +0.05836535 43.83129 0.2838106 +0.08132997 43.83129 0.2838106 +0.1121653 43.83129 0.2838106 +0.1535689 43.83129 0.2838106 +0.2091628 43.83129 0.2838106 +0.2838106 43.83129 0.2838106 +0.3840425 43.83129 0.2838106 +0.518627 43.83129 0.2838106 +0.6993381 43.83129 0.2838106 +0.9419845 43.83129 0.2838106 +1.267794 43.83129 0.2838106 +1.705268 43.83129 0.2838106 +2.292679 43.83129 0.2838106 +3.081414 43.83129 0.2838106 +4.140474 43.83129 0.2838106 +5.562508 43.83129 0.2838106 +7.471917 43.83129 0.2838106 +10.03574 43.83129 0.2838106 +13.47828 43.83129 0.2838106 +18.10068 43.83129 0.2838106 +24.30731 43.83129 0.2838106 +32.64117 43.83129 0.2838106 +43.83129 43.83129 0.2838106 +58.85664 43.83129 0.2838106 +-0.0175068 58.85664 0.2838106 +-0.01161267 58.85664 0.2838106 +-0.005718534 58.85664 0.2838106 +0.0001755984 58.85664 0.2838106 +0.006069731 58.85664 0.2838106 +0.01197402 58.85664 0.2838106 +0.01903886 58.85664 0.2838106 +0.02852504 58.85664 0.2838106 +0.04126244 58.85664 0.2838106 +0.05836535 58.85664 0.2838106 +0.08132997 58.85664 0.2838106 +0.1121653 58.85664 0.2838106 +0.1535689 58.85664 0.2838106 +0.2091628 58.85664 0.2838106 +0.2838106 58.85664 0.2838106 +0.3840425 58.85664 0.2838106 +0.518627 58.85664 0.2838106 +0.6993381 58.85664 0.2838106 +0.9419845 58.85664 0.2838106 +1.267794 58.85664 0.2838106 +1.705268 58.85664 0.2838106 +2.292679 58.85664 0.2838106 +3.081414 58.85664 0.2838106 +4.140474 58.85664 0.2838106 +5.562508 58.85664 0.2838106 +7.471917 58.85664 0.2838106 +10.03574 58.85664 0.2838106 +13.47828 58.85664 0.2838106 +18.10068 58.85664 0.2838106 +24.30731 58.85664 0.2838106 +32.64117 58.85664 0.2838106 +43.83129 58.85664 0.2838106 +58.85664 58.85664 0.2838106 +-0.0175068 -0.0175068 0.3840425 +-0.01161267 -0.0175068 0.3840425 +-0.005718534 -0.0175068 0.3840425 +0.0001755984 -0.0175068 0.3840425 +0.006069731 -0.0175068 0.3840425 +0.01197402 -0.0175068 0.3840425 +0.01903886 -0.0175068 0.3840425 +0.02852504 -0.0175068 0.3840425 +0.04126244 -0.0175068 0.3840425 +0.05836535 -0.0175068 0.3840425 +0.08132997 -0.0175068 0.3840425 +0.1121653 -0.0175068 0.3840425 +0.1535689 -0.0175068 0.3840425 +0.2091628 -0.0175068 0.3840425 +0.2838106 -0.0175068 0.3840425 +0.3840425 -0.0175068 0.3840425 +0.518627 -0.0175068 0.3840425 +0.6993381 -0.0175068 0.3840425 +0.9419845 -0.0175068 0.3840425 +1.267794 -0.0175068 0.3840425 +1.705268 -0.0175068 0.3840425 +2.292679 -0.0175068 0.3840425 +3.081414 -0.0175068 0.3840425 +4.140474 -0.0175068 0.3840425 +5.562508 -0.0175068 0.3840425 +7.471917 -0.0175068 0.3840425 +10.03574 -0.0175068 0.3840425 +13.47828 -0.0175068 0.3840425 +18.10068 -0.0175068 0.3840425 +24.30731 -0.0175068 0.3840425 +32.64117 -0.0175068 0.3840425 +43.83129 -0.0175068 0.3840425 +58.85664 -0.0175068 0.3840425 +-0.0175068 -0.01161267 0.3840425 +-0.01161267 -0.01161267 0.3840425 +-0.005718534 -0.01161267 0.3840425 +0.0001755984 -0.01161267 0.3840425 +0.006069731 -0.01161267 0.3840425 +0.01197402 -0.01161267 0.3840425 +0.01903886 -0.01161267 0.3840425 +0.02852504 -0.01161267 0.3840425 +0.04126244 -0.01161267 0.3840425 +0.05836535 -0.01161267 0.3840425 +0.08132997 -0.01161267 0.3840425 +0.1121653 -0.01161267 0.3840425 +0.1535689 -0.01161267 0.3840425 +0.2091628 -0.01161267 0.3840425 +0.2838106 -0.01161267 0.3840425 +0.3840425 -0.01161267 0.3840425 +0.518627 -0.01161267 0.3840425 +0.6993381 -0.01161267 0.3840425 +0.9419845 -0.01161267 0.3840425 +1.267794 -0.01161267 0.3840425 +1.705268 -0.01161267 0.3840425 +2.292679 -0.01161267 0.3840425 +3.081414 -0.01161267 0.3840425 +4.140474 -0.01161267 0.3840425 +5.562508 -0.01161267 0.3840425 +7.471917 -0.01161267 0.3840425 +10.03574 -0.01161267 0.3840425 +13.47828 -0.01161267 0.3840425 +18.10068 -0.01161267 0.3840425 +24.30731 -0.01161267 0.3840425 +32.64117 -0.01161267 0.3840425 +43.83129 -0.01161267 0.3840425 +58.85664 -0.01161267 0.3840425 +-0.0175068 -0.005718534 0.3840425 +-0.01161267 -0.005718534 0.3840425 +-0.005718534 -0.005718534 0.3840425 +0.0001755984 -0.005718534 0.3840425 +0.006069731 -0.005718534 0.3840425 +0.01197402 -0.005718534 0.3840425 +0.01903886 -0.005718534 0.3840425 +0.02852504 -0.005718534 0.3840425 +0.04126244 -0.005718534 0.3840425 +0.05836535 -0.005718534 0.3840425 +0.08132997 -0.005718534 0.3840425 +0.1121653 -0.005718534 0.3840425 +0.1535689 -0.005718534 0.3840425 +0.2091628 -0.005718534 0.3840425 +0.2838106 -0.005718534 0.3840425 +0.3840425 -0.005718534 0.3840425 +0.518627 -0.005718534 0.3840425 +0.6993381 -0.005718534 0.3840425 +0.9419845 -0.005718534 0.3840425 +1.267794 -0.005718534 0.3840425 +1.705268 -0.005718534 0.3840425 +2.292679 -0.005718534 0.3840425 +3.081414 -0.005718534 0.3840425 +4.140474 -0.005718534 0.3840425 +5.562508 -0.005718534 0.3840425 +7.471917 -0.005718534 0.3840425 +10.03574 -0.005718534 0.3840425 +13.47828 -0.005718534 0.3840425 +18.10068 -0.005718534 0.3840425 +24.30731 -0.005718534 0.3840425 +32.64117 -0.005718534 0.3840425 +43.83129 -0.005718534 0.3840425 +58.85664 -0.005718534 0.3840425 +-0.0175068 0.0001755984 0.3840425 +-0.01161267 0.0001755984 0.3840425 +-0.005718534 0.0001755984 0.3840425 +0.0001755984 0.0001755984 0.3840425 +0.006069731 0.0001755984 0.3840425 +0.01197402 0.0001755984 0.3840425 +0.01903886 0.0001755984 0.3840425 +0.02852504 0.0001755984 0.3840425 +0.04126244 0.0001755984 0.3840425 +0.05836535 0.0001755984 0.3840425 +0.08132997 0.0001755984 0.3840425 +0.1121653 0.0001755984 0.3840425 +0.1535689 0.0001755984 0.3840425 +0.2091628 0.0001755984 0.3840425 +0.2838106 0.0001755984 0.3840425 +0.3840425 0.0001755984 0.3840425 +0.518627 0.0001755984 0.3840425 +0.6993381 0.0001755984 0.3840425 +0.9419845 0.0001755984 0.3840425 +1.267794 0.0001755984 0.3840425 +1.705268 0.0001755984 0.3840425 +2.292679 0.0001755984 0.3840425 +3.081414 0.0001755984 0.3840425 +4.140474 0.0001755984 0.3840425 +5.562508 0.0001755984 0.3840425 +7.471917 0.0001755984 0.3840425 +10.03574 0.0001755984 0.3840425 +13.47828 0.0001755984 0.3840425 +18.10068 0.0001755984 0.3840425 +24.30731 0.0001755984 0.3840425 +32.64117 0.0001755984 0.3840425 +43.83129 0.0001755984 0.3840425 +58.85664 0.0001755984 0.3840425 +-0.0175068 0.006069731 0.3840425 +-0.01161267 0.006069731 0.3840425 +-0.005718534 0.006069731 0.3840425 +0.0001755984 0.006069731 0.3840425 +0.006069731 0.006069731 0.3840425 +0.01197402 0.006069731 0.3840425 +0.01903886 0.006069731 0.3840425 +0.02852504 0.006069731 0.3840425 +0.04126244 0.006069731 0.3840425 +0.05836535 0.006069731 0.3840425 +0.08132997 0.006069731 0.3840425 +0.1121653 0.006069731 0.3840425 +0.1535689 0.006069731 0.3840425 +0.2091628 0.006069731 0.3840425 +0.2838106 0.006069731 0.3840425 +0.3840425 0.006069731 0.3840425 +0.518627 0.006069731 0.3840425 +0.6993381 0.006069731 0.3840425 +0.9419845 0.006069731 0.3840425 +1.267794 0.006069731 0.3840425 +1.705268 0.006069731 0.3840425 +2.292679 0.006069731 0.3840425 +3.081414 0.006069731 0.3840425 +4.140474 0.006069731 0.3840425 +5.562508 0.006069731 0.3840425 +7.471917 0.006069731 0.3840425 +10.03574 0.006069731 0.3840425 +13.47828 0.006069731 0.3840425 +18.10068 0.006069731 0.3840425 +24.30731 0.006069731 0.3840425 +32.64117 0.006069731 0.3840425 +43.83129 0.006069731 0.3840425 +58.85664 0.006069731 0.3840425 +-0.0175068 0.01197402 0.3840425 +-0.01161267 0.01197402 0.3840425 +-0.005718534 0.01197402 0.3840425 +0.0001755984 0.01197402 0.3840425 +0.006069731 0.01197402 0.3840425 +0.01197402 0.01197402 0.3840425 +0.01903886 0.01197402 0.3840425 +0.02852504 0.01197402 0.3840425 +0.04126244 0.01197402 0.3840425 +0.05836535 0.01197402 0.3840425 +0.08132997 0.01197402 0.3840425 +0.1121653 0.01197402 0.3840425 +0.1535689 0.01197402 0.3840425 +0.2091628 0.01197402 0.3840425 +0.2838106 0.01197402 0.3840425 +0.3840425 0.01197402 0.3840425 +0.518627 0.01197402 0.3840425 +0.6993381 0.01197402 0.3840425 +0.9419845 0.01197402 0.3840425 +1.267794 0.01197402 0.3840425 +1.705268 0.01197402 0.3840425 +2.292679 0.01197402 0.3840425 +3.081414 0.01197402 0.3840425 +4.140474 0.01197402 0.3840425 +5.562508 0.01197402 0.3840425 +7.471917 0.01197402 0.3840425 +10.03574 0.01197402 0.3840425 +13.47828 0.01197402 0.3840425 +18.10068 0.01197402 0.3840425 +24.30731 0.01197402 0.3840425 +32.64117 0.01197402 0.3840425 +43.83129 0.01197402 0.3840425 +58.85664 0.01197402 0.3840425 +-0.0175068 0.01903886 0.3840425 +-0.01161267 0.01903886 0.3840425 +-0.005718534 0.01903886 0.3840425 +0.0001755984 0.01903886 0.3840425 +0.006069731 0.01903886 0.3840425 +0.01197402 0.01903886 0.3840425 +0.01903886 0.01903886 0.3840425 +0.02852504 0.01903886 0.3840425 +0.04126244 0.01903886 0.3840425 +0.05836535 0.01903886 0.3840425 +0.08132997 0.01903886 0.3840425 +0.1121653 0.01903886 0.3840425 +0.1535689 0.01903886 0.3840425 +0.2091628 0.01903886 0.3840425 +0.2838106 0.01903886 0.3840425 +0.3840425 0.01903886 0.3840425 +0.518627 0.01903886 0.3840425 +0.6993381 0.01903886 0.3840425 +0.9419845 0.01903886 0.3840425 +1.267794 0.01903886 0.3840425 +1.705268 0.01903886 0.3840425 +2.292679 0.01903886 0.3840425 +3.081414 0.01903886 0.3840425 +4.140474 0.01903886 0.3840425 +5.562508 0.01903886 0.3840425 +7.471917 0.01903886 0.3840425 +10.03574 0.01903886 0.3840425 +13.47828 0.01903886 0.3840425 +18.10068 0.01903886 0.3840425 +24.30731 0.01903886 0.3840425 +32.64117 0.01903886 0.3840425 +43.83129 0.01903886 0.3840425 +58.85664 0.01903886 0.3840425 +-0.0175068 0.02852504 0.3840425 +-0.01161267 0.02852504 0.3840425 +-0.005718534 0.02852504 0.3840425 +0.0001755984 0.02852504 0.3840425 +0.006069731 0.02852504 0.3840425 +0.01197402 0.02852504 0.3840425 +0.01903886 0.02852504 0.3840425 +0.02852504 0.02852504 0.3840425 +0.04126244 0.02852504 0.3840425 +0.05836535 0.02852504 0.3840425 +0.08132997 0.02852504 0.3840425 +0.1121653 0.02852504 0.3840425 +0.1535689 0.02852504 0.3840425 +0.2091628 0.02852504 0.3840425 +0.2838106 0.02852504 0.3840425 +0.3840425 0.02852504 0.3840425 +0.518627 0.02852504 0.3840425 +0.6993381 0.02852504 0.3840425 +0.9419845 0.02852504 0.3840425 +1.267794 0.02852504 0.3840425 +1.705268 0.02852504 0.3840425 +2.292679 0.02852504 0.3840425 +3.081414 0.02852504 0.3840425 +4.140474 0.02852504 0.3840425 +5.562508 0.02852504 0.3840425 +7.471917 0.02852504 0.3840425 +10.03574 0.02852504 0.3840425 +13.47828 0.02852504 0.3840425 +18.10068 0.02852504 0.3840425 +24.30731 0.02852504 0.3840425 +32.64117 0.02852504 0.3840425 +43.83129 0.02852504 0.3840425 +58.85664 0.02852504 0.3840425 +-0.0175068 0.04126244 0.3840425 +-0.01161267 0.04126244 0.3840425 +-0.005718534 0.04126244 0.3840425 +0.0001755984 0.04126244 0.3840425 +0.006069731 0.04126244 0.3840425 +0.01197402 0.04126244 0.3840425 +0.01903886 0.04126244 0.3840425 +0.02852504 0.04126244 0.3840425 +0.04126244 0.04126244 0.3840425 +0.05836535 0.04126244 0.3840425 +0.08132997 0.04126244 0.3840425 +0.1121653 0.04126244 0.3840425 +0.1535689 0.04126244 0.3840425 +0.2091628 0.04126244 0.3840425 +0.2838106 0.04126244 0.3840425 +0.3840425 0.04126244 0.3840425 +0.518627 0.04126244 0.3840425 +0.6993381 0.04126244 0.3840425 +0.9419845 0.04126244 0.3840425 +1.267794 0.04126244 0.3840425 +1.705268 0.04126244 0.3840425 +2.292679 0.04126244 0.3840425 +3.081414 0.04126244 0.3840425 +4.140474 0.04126244 0.3840425 +5.562508 0.04126244 0.3840425 +7.471917 0.04126244 0.3840425 +10.03574 0.04126244 0.3840425 +13.47828 0.04126244 0.3840425 +18.10068 0.04126244 0.3840425 +24.30731 0.04126244 0.3840425 +32.64117 0.04126244 0.3840425 +43.83129 0.04126244 0.3840425 +58.85664 0.04126244 0.3840425 +-0.0175068 0.05836535 0.3840425 +-0.01161267 0.05836535 0.3840425 +-0.005718534 0.05836535 0.3840425 +0.0001755984 0.05836535 0.3840425 +0.006069731 0.05836535 0.3840425 +0.01197402 0.05836535 0.3840425 +0.01903886 0.05836535 0.3840425 +0.02852504 0.05836535 0.3840425 +0.04126244 0.05836535 0.3840425 +0.05836535 0.05836535 0.3840425 +0.08132997 0.05836535 0.3840425 +0.1121653 0.05836535 0.3840425 +0.1535689 0.05836535 0.3840425 +0.2091628 0.05836535 0.3840425 +0.2838106 0.05836535 0.3840425 +0.3840425 0.05836535 0.3840425 +0.518627 0.05836535 0.3840425 +0.6993381 0.05836535 0.3840425 +0.9419845 0.05836535 0.3840425 +1.267794 0.05836535 0.3840425 +1.705268 0.05836535 0.3840425 +2.292679 0.05836535 0.3840425 +3.081414 0.05836535 0.3840425 +4.140474 0.05836535 0.3840425 +5.562508 0.05836535 0.3840425 +7.471917 0.05836535 0.3840425 +10.03574 0.05836535 0.3840425 +13.47828 0.05836535 0.3840425 +18.10068 0.05836535 0.3840425 +24.30731 0.05836535 0.3840425 +32.64117 0.05836535 0.3840425 +43.83129 0.05836535 0.3840425 +58.85664 0.05836535 0.3840425 +-0.0175068 0.08132997 0.3840425 +-0.01161267 0.08132997 0.3840425 +-0.005718534 0.08132997 0.3840425 +0.0001755984 0.08132997 0.3840425 +0.006069731 0.08132997 0.3840425 +0.01197402 0.08132997 0.3840425 +0.01903886 0.08132997 0.3840425 +0.02852504 0.08132997 0.3840425 +0.04126244 0.08132997 0.3840425 +0.05836535 0.08132997 0.3840425 +0.08132997 0.08132997 0.3840425 +0.1121653 0.08132997 0.3840425 +0.1535689 0.08132997 0.3840425 +0.2091628 0.08132997 0.3840425 +0.2838106 0.08132997 0.3840425 +0.3840425 0.08132997 0.3840425 +0.518627 0.08132997 0.3840425 +0.6993381 0.08132997 0.3840425 +0.9419845 0.08132997 0.3840425 +1.267794 0.08132997 0.3840425 +1.705268 0.08132997 0.3840425 +2.292679 0.08132997 0.3840425 +3.081414 0.08132997 0.3840425 +4.140474 0.08132997 0.3840425 +5.562508 0.08132997 0.3840425 +7.471917 0.08132997 0.3840425 +10.03574 0.08132997 0.3840425 +13.47828 0.08132997 0.3840425 +18.10068 0.08132997 0.3840425 +24.30731 0.08132997 0.3840425 +32.64117 0.08132997 0.3840425 +43.83129 0.08132997 0.3840425 +58.85664 0.08132997 0.3840425 +-0.0175068 0.1121653 0.3840425 +-0.01161267 0.1121653 0.3840425 +-0.005718534 0.1121653 0.3840425 +0.0001755984 0.1121653 0.3840425 +0.006069731 0.1121653 0.3840425 +0.01197402 0.1121653 0.3840425 +0.01903886 0.1121653 0.3840425 +0.02852504 0.1121653 0.3840425 +0.04126244 0.1121653 0.3840425 +0.05836535 0.1121653 0.3840425 +0.08132997 0.1121653 0.3840425 +0.1121653 0.1121653 0.3840425 +0.1535689 0.1121653 0.3840425 +0.2091628 0.1121653 0.3840425 +0.2838106 0.1121653 0.3840425 +0.3840425 0.1121653 0.3840425 +0.518627 0.1121653 0.3840425 +0.6993381 0.1121653 0.3840425 +0.9419845 0.1121653 0.3840425 +1.267794 0.1121653 0.3840425 +1.705268 0.1121653 0.3840425 +2.292679 0.1121653 0.3840425 +3.081414 0.1121653 0.3840425 +4.140474 0.1121653 0.3840425 +5.562508 0.1121653 0.3840425 +7.471917 0.1121653 0.3840425 +10.03574 0.1121653 0.3840425 +13.47828 0.1121653 0.3840425 +18.10068 0.1121653 0.3840425 +24.30731 0.1121653 0.3840425 +32.64117 0.1121653 0.3840425 +43.83129 0.1121653 0.3840425 +58.85664 0.1121653 0.3840425 +-0.0175068 0.1535689 0.3840425 +-0.01161267 0.1535689 0.3840425 +-0.005718534 0.1535689 0.3840425 +0.0001755984 0.1535689 0.3840425 +0.006069731 0.1535689 0.3840425 +0.01197402 0.1535689 0.3840425 +0.01903886 0.1535689 0.3840425 +0.02852504 0.1535689 0.3840425 +0.04126244 0.1535689 0.3840425 +0.05836535 0.1535689 0.3840425 +0.08132997 0.1535689 0.3840425 +0.1121653 0.1535689 0.3840425 +0.1535689 0.1535689 0.3840425 +0.2091628 0.1535689 0.3840425 +0.2838106 0.1535689 0.3840425 +0.3840425 0.1535689 0.3840425 +0.518627 0.1535689 0.3840425 +0.6993381 0.1535689 0.3840425 +0.9419845 0.1535689 0.3840425 +1.267794 0.1535689 0.3840425 +1.705268 0.1535689 0.3840425 +2.292679 0.1535689 0.3840425 +3.081414 0.1535689 0.3840425 +4.140474 0.1535689 0.3840425 +5.562508 0.1535689 0.3840425 +7.471917 0.1535689 0.3840425 +10.03574 0.1535689 0.3840425 +13.47828 0.1535689 0.3840425 +18.10068 0.1535689 0.3840425 +24.30731 0.1535689 0.3840425 +32.64117 0.1535689 0.3840425 +43.83129 0.1535689 0.3840425 +58.85664 0.1535689 0.3840425 +-0.0175068 0.2091628 0.3840425 +-0.01161267 0.2091628 0.3840425 +-0.005718534 0.2091628 0.3840425 +0.0001755984 0.2091628 0.3840425 +0.006069731 0.2091628 0.3840425 +0.01197402 0.2091628 0.3840425 +0.01903886 0.2091628 0.3840425 +0.02852504 0.2091628 0.3840425 +0.04126244 0.2091628 0.3840425 +0.05836535 0.2091628 0.3840425 +0.08132997 0.2091628 0.3840425 +0.1121653 0.2091628 0.3840425 +0.1535689 0.2091628 0.3840425 +0.2091628 0.2091628 0.3840425 +0.2838106 0.2091628 0.3840425 +0.3840425 0.2091628 0.3840425 +0.518627 0.2091628 0.3840425 +0.6993381 0.2091628 0.3840425 +0.9419845 0.2091628 0.3840425 +1.267794 0.2091628 0.3840425 +1.705268 0.2091628 0.3840425 +2.292679 0.2091628 0.3840425 +3.081414 0.2091628 0.3840425 +4.140474 0.2091628 0.3840425 +5.562508 0.2091628 0.3840425 +7.471917 0.2091628 0.3840425 +10.03574 0.2091628 0.3840425 +13.47828 0.2091628 0.3840425 +18.10068 0.2091628 0.3840425 +24.30731 0.2091628 0.3840425 +32.64117 0.2091628 0.3840425 +43.83129 0.2091628 0.3840425 +58.85664 0.2091628 0.3840425 +-0.0175068 0.2838106 0.3840425 +-0.01161267 0.2838106 0.3840425 +-0.005718534 0.2838106 0.3840425 +0.0001755984 0.2838106 0.3840425 +0.006069731 0.2838106 0.3840425 +0.01197402 0.2838106 0.3840425 +0.01903886 0.2838106 0.3840425 +0.02852504 0.2838106 0.3840425 +0.04126244 0.2838106 0.3840425 +0.05836535 0.2838106 0.3840425 +0.08132997 0.2838106 0.3840425 +0.1121653 0.2838106 0.3840425 +0.1535689 0.2838106 0.3840425 +0.2091628 0.2838106 0.3840425 +0.2838106 0.2838106 0.3840425 +0.3840425 0.2838106 0.3840425 +0.518627 0.2838106 0.3840425 +0.6993381 0.2838106 0.3840425 +0.9419845 0.2838106 0.3840425 +1.267794 0.2838106 0.3840425 +1.705268 0.2838106 0.3840425 +2.292679 0.2838106 0.3840425 +3.081414 0.2838106 0.3840425 +4.140474 0.2838106 0.3840425 +5.562508 0.2838106 0.3840425 +7.471917 0.2838106 0.3840425 +10.03574 0.2838106 0.3840425 +13.47828 0.2838106 0.3840425 +18.10068 0.2838106 0.3840425 +24.30731 0.2838106 0.3840425 +32.64117 0.2838106 0.3840425 +43.83129 0.2838106 0.3840425 +58.85664 0.2838106 0.3840425 +-0.0175068 0.3840425 0.3840425 +-0.01161267 0.3840425 0.3840425 +-0.005718534 0.3840425 0.3840425 +0.0001755984 0.3840425 0.3840425 +0.006069731 0.3840425 0.3840425 +0.01197402 0.3840425 0.3840425 +0.01903886 0.3840425 0.3840425 +0.02852504 0.3840425 0.3840425 +0.04126244 0.3840425 0.3840425 +0.05836535 0.3840425 0.3840425 +0.08132997 0.3840425 0.3840425 +0.1121653 0.3840425 0.3840425 +0.1535689 0.3840425 0.3840425 +0.2091628 0.3840425 0.3840425 +0.2838106 0.3840425 0.3840425 +0.3840425 0.3840425 0.3840425 +0.518627 0.3840425 0.3840425 +0.6993381 0.3840425 0.3840425 +0.9419845 0.3840425 0.3840425 +1.267794 0.3840425 0.3840425 +1.705268 0.3840425 0.3840425 +2.292679 0.3840425 0.3840425 +3.081414 0.3840425 0.3840425 +4.140474 0.3840425 0.3840425 +5.562508 0.3840425 0.3840425 +7.471917 0.3840425 0.3840425 +10.03574 0.3840425 0.3840425 +13.47828 0.3840425 0.3840425 +18.10068 0.3840425 0.3840425 +24.30731 0.3840425 0.3840425 +32.64117 0.3840425 0.3840425 +43.83129 0.3840425 0.3840425 +58.85664 0.3840425 0.3840425 +-0.0175068 0.518627 0.3840425 +-0.01161267 0.518627 0.3840425 +-0.005718534 0.518627 0.3840425 +0.0001755984 0.518627 0.3840425 +0.006069731 0.518627 0.3840425 +0.01197402 0.518627 0.3840425 +0.01903886 0.518627 0.3840425 +0.02852504 0.518627 0.3840425 +0.04126244 0.518627 0.3840425 +0.05836535 0.518627 0.3840425 +0.08132997 0.518627 0.3840425 +0.1121653 0.518627 0.3840425 +0.1535689 0.518627 0.3840425 +0.2091628 0.518627 0.3840425 +0.2838106 0.518627 0.3840425 +0.3840425 0.518627 0.3840425 +0.518627 0.518627 0.3840425 +0.6993381 0.518627 0.3840425 +0.9419845 0.518627 0.3840425 +1.267794 0.518627 0.3840425 +1.705268 0.518627 0.3840425 +2.292679 0.518627 0.3840425 +3.081414 0.518627 0.3840425 +4.140474 0.518627 0.3840425 +5.562508 0.518627 0.3840425 +7.471917 0.518627 0.3840425 +10.03574 0.518627 0.3840425 +13.47828 0.518627 0.3840425 +18.10068 0.518627 0.3840425 +24.30731 0.518627 0.3840425 +32.64117 0.518627 0.3840425 +43.83129 0.518627 0.3840425 +58.85664 0.518627 0.3840425 +-0.0175068 0.6993381 0.3840425 +-0.01161267 0.6993381 0.3840425 +-0.005718534 0.6993381 0.3840425 +0.0001755984 0.6993381 0.3840425 +0.006069731 0.6993381 0.3840425 +0.01197402 0.6993381 0.3840425 +0.01903886 0.6993381 0.3840425 +0.02852504 0.6993381 0.3840425 +0.04126244 0.6993381 0.3840425 +0.05836535 0.6993381 0.3840425 +0.08132997 0.6993381 0.3840425 +0.1121653 0.6993381 0.3840425 +0.1535689 0.6993381 0.3840425 +0.2091628 0.6993381 0.3840425 +0.2838106 0.6993381 0.3840425 +0.3840425 0.6993381 0.3840425 +0.518627 0.6993381 0.3840425 +0.6993381 0.6993381 0.3840425 +0.9419845 0.6993381 0.3840425 +1.267794 0.6993381 0.3840425 +1.705268 0.6993381 0.3840425 +2.292679 0.6993381 0.3840425 +3.081414 0.6993381 0.3840425 +4.140474 0.6993381 0.3840425 +5.562508 0.6993381 0.3840425 +7.471917 0.6993381 0.3840425 +10.03574 0.6993381 0.3840425 +13.47828 0.6993381 0.3840425 +18.10068 0.6993381 0.3840425 +24.30731 0.6993381 0.3840425 +32.64117 0.6993381 0.3840425 +43.83129 0.6993381 0.3840425 +58.85664 0.6993381 0.3840425 +-0.0175068 0.9419845 0.3840425 +-0.01161267 0.9419845 0.3840425 +-0.005718534 0.9419845 0.3840425 +0.0001755984 0.9419845 0.3840425 +0.006069731 0.9419845 0.3840425 +0.01197402 0.9419845 0.3840425 +0.01903886 0.9419845 0.3840425 +0.02852504 0.9419845 0.3840425 +0.04126244 0.9419845 0.3840425 +0.05836535 0.9419845 0.3840425 +0.08132997 0.9419845 0.3840425 +0.1121653 0.9419845 0.3840425 +0.1535689 0.9419845 0.3840425 +0.2091628 0.9419845 0.3840425 +0.2838106 0.9419845 0.3840425 +0.3840425 0.9419845 0.3840425 +0.518627 0.9419845 0.3840425 +0.6993381 0.9419845 0.3840425 +0.9419845 0.9419845 0.3840425 +1.267794 0.9419845 0.3840425 +1.705268 0.9419845 0.3840425 +2.292679 0.9419845 0.3840425 +3.081414 0.9419845 0.3840425 +4.140474 0.9419845 0.3840425 +5.562508 0.9419845 0.3840425 +7.471917 0.9419845 0.3840425 +10.03574 0.9419845 0.3840425 +13.47828 0.9419845 0.3840425 +18.10068 0.9419845 0.3840425 +24.30731 0.9419845 0.3840425 +32.64117 0.9419845 0.3840425 +43.83129 0.9419845 0.3840425 +58.85664 0.9419845 0.3840425 +-0.0175068 1.267794 0.3840425 +-0.01161267 1.267794 0.3840425 +-0.005718534 1.267794 0.3840425 +0.0001755984 1.267794 0.3840425 +0.006069731 1.267794 0.3840425 +0.01197402 1.267794 0.3840425 +0.01903886 1.267794 0.3840425 +0.02852504 1.267794 0.3840425 +0.04126244 1.267794 0.3840425 +0.05836535 1.267794 0.3840425 +0.08132997 1.267794 0.3840425 +0.1121653 1.267794 0.3840425 +0.1535689 1.267794 0.3840425 +0.2091628 1.267794 0.3840425 +0.2838106 1.267794 0.3840425 +0.3840425 1.267794 0.3840425 +0.518627 1.267794 0.3840425 +0.6993381 1.267794 0.3840425 +0.9419845 1.267794 0.3840425 +1.267794 1.267794 0.3840425 +1.705268 1.267794 0.3840425 +2.292679 1.267794 0.3840425 +3.081414 1.267794 0.3840425 +4.140474 1.267794 0.3840425 +5.562508 1.267794 0.3840425 +7.471917 1.267794 0.3840425 +10.03574 1.267794 0.3840425 +13.47828 1.267794 0.3840425 +18.10068 1.267794 0.3840425 +24.30731 1.267794 0.3840425 +32.64117 1.267794 0.3840425 +43.83129 1.267794 0.3840425 +58.85664 1.267794 0.3840425 +-0.0175068 1.705268 0.3840425 +-0.01161267 1.705268 0.3840425 +-0.005718534 1.705268 0.3840425 +0.0001755984 1.705268 0.3840425 +0.006069731 1.705268 0.3840425 +0.01197402 1.705268 0.3840425 +0.01903886 1.705268 0.3840425 +0.02852504 1.705268 0.3840425 +0.04126244 1.705268 0.3840425 +0.05836535 1.705268 0.3840425 +0.08132997 1.705268 0.3840425 +0.1121653 1.705268 0.3840425 +0.1535689 1.705268 0.3840425 +0.2091628 1.705268 0.3840425 +0.2838106 1.705268 0.3840425 +0.3840425 1.705268 0.3840425 +0.518627 1.705268 0.3840425 +0.6993381 1.705268 0.3840425 +0.9419845 1.705268 0.3840425 +1.267794 1.705268 0.3840425 +1.705268 1.705268 0.3840425 +2.292679 1.705268 0.3840425 +3.081414 1.705268 0.3840425 +4.140474 1.705268 0.3840425 +5.562508 1.705268 0.3840425 +7.471917 1.705268 0.3840425 +10.03574 1.705268 0.3840425 +13.47828 1.705268 0.3840425 +18.10068 1.705268 0.3840425 +24.30731 1.705268 0.3840425 +32.64117 1.705268 0.3840425 +43.83129 1.705268 0.3840425 +58.85664 1.705268 0.3840425 +-0.0175068 2.292679 0.3840425 +-0.01161267 2.292679 0.3840425 +-0.005718534 2.292679 0.3840425 +0.0001755984 2.292679 0.3840425 +0.006069731 2.292679 0.3840425 +0.01197402 2.292679 0.3840425 +0.01903886 2.292679 0.3840425 +0.02852504 2.292679 0.3840425 +0.04126244 2.292679 0.3840425 +0.05836535 2.292679 0.3840425 +0.08132997 2.292679 0.3840425 +0.1121653 2.292679 0.3840425 +0.1535689 2.292679 0.3840425 +0.2091628 2.292679 0.3840425 +0.2838106 2.292679 0.3840425 +0.3840425 2.292679 0.3840425 +0.518627 2.292679 0.3840425 +0.6993381 2.292679 0.3840425 +0.9419845 2.292679 0.3840425 +1.267794 2.292679 0.3840425 +1.705268 2.292679 0.3840425 +2.292679 2.292679 0.3840425 +3.081414 2.292679 0.3840425 +4.140474 2.292679 0.3840425 +5.562508 2.292679 0.3840425 +7.471917 2.292679 0.3840425 +10.03574 2.292679 0.3840425 +13.47828 2.292679 0.3840425 +18.10068 2.292679 0.3840425 +24.30731 2.292679 0.3840425 +32.64117 2.292679 0.3840425 +43.83129 2.292679 0.3840425 +58.85664 2.292679 0.3840425 +-0.0175068 3.081414 0.3840425 +-0.01161267 3.081414 0.3840425 +-0.005718534 3.081414 0.3840425 +0.0001755984 3.081414 0.3840425 +0.006069731 3.081414 0.3840425 +0.01197402 3.081414 0.3840425 +0.01903886 3.081414 0.3840425 +0.02852504 3.081414 0.3840425 +0.04126244 3.081414 0.3840425 +0.05836535 3.081414 0.3840425 +0.08132997 3.081414 0.3840425 +0.1121653 3.081414 0.3840425 +0.1535689 3.081414 0.3840425 +0.2091628 3.081414 0.3840425 +0.2838106 3.081414 0.3840425 +0.3840425 3.081414 0.3840425 +0.518627 3.081414 0.3840425 +0.6993381 3.081414 0.3840425 +0.9419845 3.081414 0.3840425 +1.267794 3.081414 0.3840425 +1.705268 3.081414 0.3840425 +2.292679 3.081414 0.3840425 +3.081414 3.081414 0.3840425 +4.140474 3.081414 0.3840425 +5.562508 3.081414 0.3840425 +7.471917 3.081414 0.3840425 +10.03574 3.081414 0.3840425 +13.47828 3.081414 0.3840425 +18.10068 3.081414 0.3840425 +24.30731 3.081414 0.3840425 +32.64117 3.081414 0.3840425 +43.83129 3.081414 0.3840425 +58.85664 3.081414 0.3840425 +-0.0175068 4.140474 0.3840425 +-0.01161267 4.140474 0.3840425 +-0.005718534 4.140474 0.3840425 +0.0001755984 4.140474 0.3840425 +0.006069731 4.140474 0.3840425 +0.01197402 4.140474 0.3840425 +0.01903886 4.140474 0.3840425 +0.02852504 4.140474 0.3840425 +0.04126244 4.140474 0.3840425 +0.05836535 4.140474 0.3840425 +0.08132997 4.140474 0.3840425 +0.1121653 4.140474 0.3840425 +0.1535689 4.140474 0.3840425 +0.2091628 4.140474 0.3840425 +0.2838106 4.140474 0.3840425 +0.3840425 4.140474 0.3840425 +0.518627 4.140474 0.3840425 +0.6993381 4.140474 0.3840425 +0.9419845 4.140474 0.3840425 +1.267794 4.140474 0.3840425 +1.705268 4.140474 0.3840425 +2.292679 4.140474 0.3840425 +3.081414 4.140474 0.3840425 +4.140474 4.140474 0.3840425 +5.562508 4.140474 0.3840425 +7.471917 4.140474 0.3840425 +10.03574 4.140474 0.3840425 +13.47828 4.140474 0.3840425 +18.10068 4.140474 0.3840425 +24.30731 4.140474 0.3840425 +32.64117 4.140474 0.3840425 +43.83129 4.140474 0.3840425 +58.85664 4.140474 0.3840425 +-0.0175068 5.562508 0.3840425 +-0.01161267 5.562508 0.3840425 +-0.005718534 5.562508 0.3840425 +0.0001755984 5.562508 0.3840425 +0.006069731 5.562508 0.3840425 +0.01197402 5.562508 0.3840425 +0.01903886 5.562508 0.3840425 +0.02852504 5.562508 0.3840425 +0.04126244 5.562508 0.3840425 +0.05836535 5.562508 0.3840425 +0.08132997 5.562508 0.3840425 +0.1121653 5.562508 0.3840425 +0.1535689 5.562508 0.3840425 +0.2091628 5.562508 0.3840425 +0.2838106 5.562508 0.3840425 +0.3840425 5.562508 0.3840425 +0.518627 5.562508 0.3840425 +0.6993381 5.562508 0.3840425 +0.9419845 5.562508 0.3840425 +1.267794 5.562508 0.3840425 +1.705268 5.562508 0.3840425 +2.292679 5.562508 0.3840425 +3.081414 5.562508 0.3840425 +4.140474 5.562508 0.3840425 +5.562508 5.562508 0.3840425 +7.471917 5.562508 0.3840425 +10.03574 5.562508 0.3840425 +13.47828 5.562508 0.3840425 +18.10068 5.562508 0.3840425 +24.30731 5.562508 0.3840425 +32.64117 5.562508 0.3840425 +43.83129 5.562508 0.3840425 +58.85664 5.562508 0.3840425 +-0.0175068 7.471917 0.3840425 +-0.01161267 7.471917 0.3840425 +-0.005718534 7.471917 0.3840425 +0.0001755984 7.471917 0.3840425 +0.006069731 7.471917 0.3840425 +0.01197402 7.471917 0.3840425 +0.01903886 7.471917 0.3840425 +0.02852504 7.471917 0.3840425 +0.04126244 7.471917 0.3840425 +0.05836535 7.471917 0.3840425 +0.08132997 7.471917 0.3840425 +0.1121653 7.471917 0.3840425 +0.1535689 7.471917 0.3840425 +0.2091628 7.471917 0.3840425 +0.2838106 7.471917 0.3840425 +0.3840425 7.471917 0.3840425 +0.518627 7.471917 0.3840425 +0.6993381 7.471917 0.3840425 +0.9419845 7.471917 0.3840425 +1.267794 7.471917 0.3840425 +1.705268 7.471917 0.3840425 +2.292679 7.471917 0.3840425 +3.081414 7.471917 0.3840425 +4.140474 7.471917 0.3840425 +5.562508 7.471917 0.3840425 +7.471917 7.471917 0.3840425 +10.03574 7.471917 0.3840425 +13.47828 7.471917 0.3840425 +18.10068 7.471917 0.3840425 +24.30731 7.471917 0.3840425 +32.64117 7.471917 0.3840425 +43.83129 7.471917 0.3840425 +58.85664 7.471917 0.3840425 +-0.0175068 10.03574 0.3840425 +-0.01161267 10.03574 0.3840425 +-0.005718534 10.03574 0.3840425 +0.0001755984 10.03574 0.3840425 +0.006069731 10.03574 0.3840425 +0.01197402 10.03574 0.3840425 +0.01903886 10.03574 0.3840425 +0.02852504 10.03574 0.3840425 +0.04126244 10.03574 0.3840425 +0.05836535 10.03574 0.3840425 +0.08132997 10.03574 0.3840425 +0.1121653 10.03574 0.3840425 +0.1535689 10.03574 0.3840425 +0.2091628 10.03574 0.3840425 +0.2838106 10.03574 0.3840425 +0.3840425 10.03574 0.3840425 +0.518627 10.03574 0.3840425 +0.6993381 10.03574 0.3840425 +0.9419845 10.03574 0.3840425 +1.267794 10.03574 0.3840425 +1.705268 10.03574 0.3840425 +2.292679 10.03574 0.3840425 +3.081414 10.03574 0.3840425 +4.140474 10.03574 0.3840425 +5.562508 10.03574 0.3840425 +7.471917 10.03574 0.3840425 +10.03574 10.03574 0.3840425 +13.47828 10.03574 0.3840425 +18.10068 10.03574 0.3840425 +24.30731 10.03574 0.3840425 +32.64117 10.03574 0.3840425 +43.83129 10.03574 0.3840425 +58.85664 10.03574 0.3840425 +-0.0175068 13.47828 0.3840425 +-0.01161267 13.47828 0.3840425 +-0.005718534 13.47828 0.3840425 +0.0001755984 13.47828 0.3840425 +0.006069731 13.47828 0.3840425 +0.01197402 13.47828 0.3840425 +0.01903886 13.47828 0.3840425 +0.02852504 13.47828 0.3840425 +0.04126244 13.47828 0.3840425 +0.05836535 13.47828 0.3840425 +0.08132997 13.47828 0.3840425 +0.1121653 13.47828 0.3840425 +0.1535689 13.47828 0.3840425 +0.2091628 13.47828 0.3840425 +0.2838106 13.47828 0.3840425 +0.3840425 13.47828 0.3840425 +0.518627 13.47828 0.3840425 +0.6993381 13.47828 0.3840425 +0.9419845 13.47828 0.3840425 +1.267794 13.47828 0.3840425 +1.705268 13.47828 0.3840425 +2.292679 13.47828 0.3840425 +3.081414 13.47828 0.3840425 +4.140474 13.47828 0.3840425 +5.562508 13.47828 0.3840425 +7.471917 13.47828 0.3840425 +10.03574 13.47828 0.3840425 +13.47828 13.47828 0.3840425 +18.10068 13.47828 0.3840425 +24.30731 13.47828 0.3840425 +32.64117 13.47828 0.3840425 +43.83129 13.47828 0.3840425 +58.85664 13.47828 0.3840425 +-0.0175068 18.10068 0.3840425 +-0.01161267 18.10068 0.3840425 +-0.005718534 18.10068 0.3840425 +0.0001755984 18.10068 0.3840425 +0.006069731 18.10068 0.3840425 +0.01197402 18.10068 0.3840425 +0.01903886 18.10068 0.3840425 +0.02852504 18.10068 0.3840425 +0.04126244 18.10068 0.3840425 +0.05836535 18.10068 0.3840425 +0.08132997 18.10068 0.3840425 +0.1121653 18.10068 0.3840425 +0.1535689 18.10068 0.3840425 +0.2091628 18.10068 0.3840425 +0.2838106 18.10068 0.3840425 +0.3840425 18.10068 0.3840425 +0.518627 18.10068 0.3840425 +0.6993381 18.10068 0.3840425 +0.9419845 18.10068 0.3840425 +1.267794 18.10068 0.3840425 +1.705268 18.10068 0.3840425 +2.292679 18.10068 0.3840425 +3.081414 18.10068 0.3840425 +4.140474 18.10068 0.3840425 +5.562508 18.10068 0.3840425 +7.471917 18.10068 0.3840425 +10.03574 18.10068 0.3840425 +13.47828 18.10068 0.3840425 +18.10068 18.10068 0.3840425 +24.30731 18.10068 0.3840425 +32.64117 18.10068 0.3840425 +43.83129 18.10068 0.3840425 +58.85664 18.10068 0.3840425 +-0.0175068 24.30731 0.3840425 +-0.01161267 24.30731 0.3840425 +-0.005718534 24.30731 0.3840425 +0.0001755984 24.30731 0.3840425 +0.006069731 24.30731 0.3840425 +0.01197402 24.30731 0.3840425 +0.01903886 24.30731 0.3840425 +0.02852504 24.30731 0.3840425 +0.04126244 24.30731 0.3840425 +0.05836535 24.30731 0.3840425 +0.08132997 24.30731 0.3840425 +0.1121653 24.30731 0.3840425 +0.1535689 24.30731 0.3840425 +0.2091628 24.30731 0.3840425 +0.2838106 24.30731 0.3840425 +0.3840425 24.30731 0.3840425 +0.518627 24.30731 0.3840425 +0.6993381 24.30731 0.3840425 +0.9419845 24.30731 0.3840425 +1.267794 24.30731 0.3840425 +1.705268 24.30731 0.3840425 +2.292679 24.30731 0.3840425 +3.081414 24.30731 0.3840425 +4.140474 24.30731 0.3840425 +5.562508 24.30731 0.3840425 +7.471917 24.30731 0.3840425 +10.03574 24.30731 0.3840425 +13.47828 24.30731 0.3840425 +18.10068 24.30731 0.3840425 +24.30731 24.30731 0.3840425 +32.64117 24.30731 0.3840425 +43.83129 24.30731 0.3840425 +58.85664 24.30731 0.3840425 +-0.0175068 32.64117 0.3840425 +-0.01161267 32.64117 0.3840425 +-0.005718534 32.64117 0.3840425 +0.0001755984 32.64117 0.3840425 +0.006069731 32.64117 0.3840425 +0.01197402 32.64117 0.3840425 +0.01903886 32.64117 0.3840425 +0.02852504 32.64117 0.3840425 +0.04126244 32.64117 0.3840425 +0.05836535 32.64117 0.3840425 +0.08132997 32.64117 0.3840425 +0.1121653 32.64117 0.3840425 +0.1535689 32.64117 0.3840425 +0.2091628 32.64117 0.3840425 +0.2838106 32.64117 0.3840425 +0.3840425 32.64117 0.3840425 +0.518627 32.64117 0.3840425 +0.6993381 32.64117 0.3840425 +0.9419845 32.64117 0.3840425 +1.267794 32.64117 0.3840425 +1.705268 32.64117 0.3840425 +2.292679 32.64117 0.3840425 +3.081414 32.64117 0.3840425 +4.140474 32.64117 0.3840425 +5.562508 32.64117 0.3840425 +7.471917 32.64117 0.3840425 +10.03574 32.64117 0.3840425 +13.47828 32.64117 0.3840425 +18.10068 32.64117 0.3840425 +24.30731 32.64117 0.3840425 +32.64117 32.64117 0.3840425 +43.83129 32.64117 0.3840425 +58.85664 32.64117 0.3840425 +-0.0175068 43.83129 0.3840425 +-0.01161267 43.83129 0.3840425 +-0.005718534 43.83129 0.3840425 +0.0001755984 43.83129 0.3840425 +0.006069731 43.83129 0.3840425 +0.01197402 43.83129 0.3840425 +0.01903886 43.83129 0.3840425 +0.02852504 43.83129 0.3840425 +0.04126244 43.83129 0.3840425 +0.05836535 43.83129 0.3840425 +0.08132997 43.83129 0.3840425 +0.1121653 43.83129 0.3840425 +0.1535689 43.83129 0.3840425 +0.2091628 43.83129 0.3840425 +0.2838106 43.83129 0.3840425 +0.3840425 43.83129 0.3840425 +0.518627 43.83129 0.3840425 +0.6993381 43.83129 0.3840425 +0.9419845 43.83129 0.3840425 +1.267794 43.83129 0.3840425 +1.705268 43.83129 0.3840425 +2.292679 43.83129 0.3840425 +3.081414 43.83129 0.3840425 +4.140474 43.83129 0.3840425 +5.562508 43.83129 0.3840425 +7.471917 43.83129 0.3840425 +10.03574 43.83129 0.3840425 +13.47828 43.83129 0.3840425 +18.10068 43.83129 0.3840425 +24.30731 43.83129 0.3840425 +32.64117 43.83129 0.3840425 +43.83129 43.83129 0.3840425 +58.85664 43.83129 0.3840425 +-0.0175068 58.85664 0.3840425 +-0.01161267 58.85664 0.3840425 +-0.005718534 58.85664 0.3840425 +0.0001755984 58.85664 0.3840425 +0.006069731 58.85664 0.3840425 +0.01197402 58.85664 0.3840425 +0.01903886 58.85664 0.3840425 +0.02852504 58.85664 0.3840425 +0.04126244 58.85664 0.3840425 +0.05836535 58.85664 0.3840425 +0.08132997 58.85664 0.3840425 +0.1121653 58.85664 0.3840425 +0.1535689 58.85664 0.3840425 +0.2091628 58.85664 0.3840425 +0.2838106 58.85664 0.3840425 +0.3840425 58.85664 0.3840425 +0.518627 58.85664 0.3840425 +0.6993381 58.85664 0.3840425 +0.9419845 58.85664 0.3840425 +1.267794 58.85664 0.3840425 +1.705268 58.85664 0.3840425 +2.292679 58.85664 0.3840425 +3.081414 58.85664 0.3840425 +4.140474 58.85664 0.3840425 +5.562508 58.85664 0.3840425 +7.471917 58.85664 0.3840425 +10.03574 58.85664 0.3840425 +13.47828 58.85664 0.3840425 +18.10068 58.85664 0.3840425 +24.30731 58.85664 0.3840425 +32.64117 58.85664 0.3840425 +43.83129 58.85664 0.3840425 +58.85664 58.85664 0.3840425 +-0.0175068 -0.0175068 0.518627 +-0.01161267 -0.0175068 0.518627 +-0.005718534 -0.0175068 0.518627 +0.0001755984 -0.0175068 0.518627 +0.006069731 -0.0175068 0.518627 +0.01197402 -0.0175068 0.518627 +0.01903886 -0.0175068 0.518627 +0.02852504 -0.0175068 0.518627 +0.04126244 -0.0175068 0.518627 +0.05836535 -0.0175068 0.518627 +0.08132997 -0.0175068 0.518627 +0.1121653 -0.0175068 0.518627 +0.1535689 -0.0175068 0.518627 +0.2091628 -0.0175068 0.518627 +0.2838106 -0.0175068 0.518627 +0.3840425 -0.0175068 0.518627 +0.518627 -0.0175068 0.518627 +0.6993381 -0.0175068 0.518627 +0.9419845 -0.0175068 0.518627 +1.267794 -0.0175068 0.518627 +1.705268 -0.0175068 0.518627 +2.292679 -0.0175068 0.518627 +3.081414 -0.0175068 0.518627 +4.140474 -0.0175068 0.518627 +5.562508 -0.0175068 0.518627 +7.471917 -0.0175068 0.518627 +10.03574 -0.0175068 0.518627 +13.47828 -0.0175068 0.518627 +18.10068 -0.0175068 0.518627 +24.30731 -0.0175068 0.518627 +32.64117 -0.0175068 0.518627 +43.83129 -0.0175068 0.518627 +58.85664 -0.0175068 0.518627 +-0.0175068 -0.01161267 0.518627 +-0.01161267 -0.01161267 0.518627 +-0.005718534 -0.01161267 0.518627 +0.0001755984 -0.01161267 0.518627 +0.006069731 -0.01161267 0.518627 +0.01197402 -0.01161267 0.518627 +0.01903886 -0.01161267 0.518627 +0.02852504 -0.01161267 0.518627 +0.04126244 -0.01161267 0.518627 +0.05836535 -0.01161267 0.518627 +0.08132997 -0.01161267 0.518627 +0.1121653 -0.01161267 0.518627 +0.1535689 -0.01161267 0.518627 +0.2091628 -0.01161267 0.518627 +0.2838106 -0.01161267 0.518627 +0.3840425 -0.01161267 0.518627 +0.518627 -0.01161267 0.518627 +0.6993381 -0.01161267 0.518627 +0.9419845 -0.01161267 0.518627 +1.267794 -0.01161267 0.518627 +1.705268 -0.01161267 0.518627 +2.292679 -0.01161267 0.518627 +3.081414 -0.01161267 0.518627 +4.140474 -0.01161267 0.518627 +5.562508 -0.01161267 0.518627 +7.471917 -0.01161267 0.518627 +10.03574 -0.01161267 0.518627 +13.47828 -0.01161267 0.518627 +18.10068 -0.01161267 0.518627 +24.30731 -0.01161267 0.518627 +32.64117 -0.01161267 0.518627 +43.83129 -0.01161267 0.518627 +58.85664 -0.01161267 0.518627 +-0.0175068 -0.005718534 0.518627 +-0.01161267 -0.005718534 0.518627 +-0.005718534 -0.005718534 0.518627 +0.0001755984 -0.005718534 0.518627 +0.006069731 -0.005718534 0.518627 +0.01197402 -0.005718534 0.518627 +0.01903886 -0.005718534 0.518627 +0.02852504 -0.005718534 0.518627 +0.04126244 -0.005718534 0.518627 +0.05836535 -0.005718534 0.518627 +0.08132997 -0.005718534 0.518627 +0.1121653 -0.005718534 0.518627 +0.1535689 -0.005718534 0.518627 +0.2091628 -0.005718534 0.518627 +0.2838106 -0.005718534 0.518627 +0.3840425 -0.005718534 0.518627 +0.518627 -0.005718534 0.518627 +0.6993381 -0.005718534 0.518627 +0.9419845 -0.005718534 0.518627 +1.267794 -0.005718534 0.518627 +1.705268 -0.005718534 0.518627 +2.292679 -0.005718534 0.518627 +3.081414 -0.005718534 0.518627 +4.140474 -0.005718534 0.518627 +5.562508 -0.005718534 0.518627 +7.471917 -0.005718534 0.518627 +10.03574 -0.005718534 0.518627 +13.47828 -0.005718534 0.518627 +18.10068 -0.005718534 0.518627 +24.30731 -0.005718534 0.518627 +32.64117 -0.005718534 0.518627 +43.83129 -0.005718534 0.518627 +58.85664 -0.005718534 0.518627 +-0.0175068 0.0001755984 0.518627 +-0.01161267 0.0001755984 0.518627 +-0.005718534 0.0001755984 0.518627 +0.0001755984 0.0001755984 0.518627 +0.006069731 0.0001755984 0.518627 +0.01197402 0.0001755984 0.518627 +0.01903886 0.0001755984 0.518627 +0.02852504 0.0001755984 0.518627 +0.04126244 0.0001755984 0.518627 +0.05836535 0.0001755984 0.518627 +0.08132997 0.0001755984 0.518627 +0.1121653 0.0001755984 0.518627 +0.1535689 0.0001755984 0.518627 +0.2091628 0.0001755984 0.518627 +0.2838106 0.0001755984 0.518627 +0.3840425 0.0001755984 0.518627 +0.518627 0.0001755984 0.518627 +0.6993381 0.0001755984 0.518627 +0.9419845 0.0001755984 0.518627 +1.267794 0.0001755984 0.518627 +1.705268 0.0001755984 0.518627 +2.292679 0.0001755984 0.518627 +3.081414 0.0001755984 0.518627 +4.140474 0.0001755984 0.518627 +5.562508 0.0001755984 0.518627 +7.471917 0.0001755984 0.518627 +10.03574 0.0001755984 0.518627 +13.47828 0.0001755984 0.518627 +18.10068 0.0001755984 0.518627 +24.30731 0.0001755984 0.518627 +32.64117 0.0001755984 0.518627 +43.83129 0.0001755984 0.518627 +58.85664 0.0001755984 0.518627 +-0.0175068 0.006069731 0.518627 +-0.01161267 0.006069731 0.518627 +-0.005718534 0.006069731 0.518627 +0.0001755984 0.006069731 0.518627 +0.006069731 0.006069731 0.518627 +0.01197402 0.006069731 0.518627 +0.01903886 0.006069731 0.518627 +0.02852504 0.006069731 0.518627 +0.04126244 0.006069731 0.518627 +0.05836535 0.006069731 0.518627 +0.08132997 0.006069731 0.518627 +0.1121653 0.006069731 0.518627 +0.1535689 0.006069731 0.518627 +0.2091628 0.006069731 0.518627 +0.2838106 0.006069731 0.518627 +0.3840425 0.006069731 0.518627 +0.518627 0.006069731 0.518627 +0.6993381 0.006069731 0.518627 +0.9419845 0.006069731 0.518627 +1.267794 0.006069731 0.518627 +1.705268 0.006069731 0.518627 +2.292679 0.006069731 0.518627 +3.081414 0.006069731 0.518627 +4.140474 0.006069731 0.518627 +5.562508 0.006069731 0.518627 +7.471917 0.006069731 0.518627 +10.03574 0.006069731 0.518627 +13.47828 0.006069731 0.518627 +18.10068 0.006069731 0.518627 +24.30731 0.006069731 0.518627 +32.64117 0.006069731 0.518627 +43.83129 0.006069731 0.518627 +58.85664 0.006069731 0.518627 +-0.0175068 0.01197402 0.518627 +-0.01161267 0.01197402 0.518627 +-0.005718534 0.01197402 0.518627 +0.0001755984 0.01197402 0.518627 +0.006069731 0.01197402 0.518627 +0.01197402 0.01197402 0.518627 +0.01903886 0.01197402 0.518627 +0.02852504 0.01197402 0.518627 +0.04126244 0.01197402 0.518627 +0.05836535 0.01197402 0.518627 +0.08132997 0.01197402 0.518627 +0.1121653 0.01197402 0.518627 +0.1535689 0.01197402 0.518627 +0.2091628 0.01197402 0.518627 +0.2838106 0.01197402 0.518627 +0.3840425 0.01197402 0.518627 +0.518627 0.01197402 0.518627 +0.6993381 0.01197402 0.518627 +0.9419845 0.01197402 0.518627 +1.267794 0.01197402 0.518627 +1.705268 0.01197402 0.518627 +2.292679 0.01197402 0.518627 +3.081414 0.01197402 0.518627 +4.140474 0.01197402 0.518627 +5.562508 0.01197402 0.518627 +7.471917 0.01197402 0.518627 +10.03574 0.01197402 0.518627 +13.47828 0.01197402 0.518627 +18.10068 0.01197402 0.518627 +24.30731 0.01197402 0.518627 +32.64117 0.01197402 0.518627 +43.83129 0.01197402 0.518627 +58.85664 0.01197402 0.518627 +-0.0175068 0.01903886 0.518627 +-0.01161267 0.01903886 0.518627 +-0.005718534 0.01903886 0.518627 +0.0001755984 0.01903886 0.518627 +0.006069731 0.01903886 0.518627 +0.01197402 0.01903886 0.518627 +0.01903886 0.01903886 0.518627 +0.02852504 0.01903886 0.518627 +0.04126244 0.01903886 0.518627 +0.05836535 0.01903886 0.518627 +0.08132997 0.01903886 0.518627 +0.1121653 0.01903886 0.518627 +0.1535689 0.01903886 0.518627 +0.2091628 0.01903886 0.518627 +0.2838106 0.01903886 0.518627 +0.3840425 0.01903886 0.518627 +0.518627 0.01903886 0.518627 +0.6993381 0.01903886 0.518627 +0.9419845 0.01903886 0.518627 +1.267794 0.01903886 0.518627 +1.705268 0.01903886 0.518627 +2.292679 0.01903886 0.518627 +3.081414 0.01903886 0.518627 +4.140474 0.01903886 0.518627 +5.562508 0.01903886 0.518627 +7.471917 0.01903886 0.518627 +10.03574 0.01903886 0.518627 +13.47828 0.01903886 0.518627 +18.10068 0.01903886 0.518627 +24.30731 0.01903886 0.518627 +32.64117 0.01903886 0.518627 +43.83129 0.01903886 0.518627 +58.85664 0.01903886 0.518627 +-0.0175068 0.02852504 0.518627 +-0.01161267 0.02852504 0.518627 +-0.005718534 0.02852504 0.518627 +0.0001755984 0.02852504 0.518627 +0.006069731 0.02852504 0.518627 +0.01197402 0.02852504 0.518627 +0.01903886 0.02852504 0.518627 +0.02852504 0.02852504 0.518627 +0.04126244 0.02852504 0.518627 +0.05836535 0.02852504 0.518627 +0.08132997 0.02852504 0.518627 +0.1121653 0.02852504 0.518627 +0.1535689 0.02852504 0.518627 +0.2091628 0.02852504 0.518627 +0.2838106 0.02852504 0.518627 +0.3840425 0.02852504 0.518627 +0.518627 0.02852504 0.518627 +0.6993381 0.02852504 0.518627 +0.9419845 0.02852504 0.518627 +1.267794 0.02852504 0.518627 +1.705268 0.02852504 0.518627 +2.292679 0.02852504 0.518627 +3.081414 0.02852504 0.518627 +4.140474 0.02852504 0.518627 +5.562508 0.02852504 0.518627 +7.471917 0.02852504 0.518627 +10.03574 0.02852504 0.518627 +13.47828 0.02852504 0.518627 +18.10068 0.02852504 0.518627 +24.30731 0.02852504 0.518627 +32.64117 0.02852504 0.518627 +43.83129 0.02852504 0.518627 +58.85664 0.02852504 0.518627 +-0.0175068 0.04126244 0.518627 +-0.01161267 0.04126244 0.518627 +-0.005718534 0.04126244 0.518627 +0.0001755984 0.04126244 0.518627 +0.006069731 0.04126244 0.518627 +0.01197402 0.04126244 0.518627 +0.01903886 0.04126244 0.518627 +0.02852504 0.04126244 0.518627 +0.04126244 0.04126244 0.518627 +0.05836535 0.04126244 0.518627 +0.08132997 0.04126244 0.518627 +0.1121653 0.04126244 0.518627 +0.1535689 0.04126244 0.518627 +0.2091628 0.04126244 0.518627 +0.2838106 0.04126244 0.518627 +0.3840425 0.04126244 0.518627 +0.518627 0.04126244 0.518627 +0.6993381 0.04126244 0.518627 +0.9419845 0.04126244 0.518627 +1.267794 0.04126244 0.518627 +1.705268 0.04126244 0.518627 +2.292679 0.04126244 0.518627 +3.081414 0.04126244 0.518627 +4.140474 0.04126244 0.518627 +5.562508 0.04126244 0.518627 +7.471917 0.04126244 0.518627 +10.03574 0.04126244 0.518627 +13.47828 0.04126244 0.518627 +18.10068 0.04126244 0.518627 +24.30731 0.04126244 0.518627 +32.64117 0.04126244 0.518627 +43.83129 0.04126244 0.518627 +58.85664 0.04126244 0.518627 +-0.0175068 0.05836535 0.518627 +-0.01161267 0.05836535 0.518627 +-0.005718534 0.05836535 0.518627 +0.0001755984 0.05836535 0.518627 +0.006069731 0.05836535 0.518627 +0.01197402 0.05836535 0.518627 +0.01903886 0.05836535 0.518627 +0.02852504 0.05836535 0.518627 +0.04126244 0.05836535 0.518627 +0.05836535 0.05836535 0.518627 +0.08132997 0.05836535 0.518627 +0.1121653 0.05836535 0.518627 +0.1535689 0.05836535 0.518627 +0.2091628 0.05836535 0.518627 +0.2838106 0.05836535 0.518627 +0.3840425 0.05836535 0.518627 +0.518627 0.05836535 0.518627 +0.6993381 0.05836535 0.518627 +0.9419845 0.05836535 0.518627 +1.267794 0.05836535 0.518627 +1.705268 0.05836535 0.518627 +2.292679 0.05836535 0.518627 +3.081414 0.05836535 0.518627 +4.140474 0.05836535 0.518627 +5.562508 0.05836535 0.518627 +7.471917 0.05836535 0.518627 +10.03574 0.05836535 0.518627 +13.47828 0.05836535 0.518627 +18.10068 0.05836535 0.518627 +24.30731 0.05836535 0.518627 +32.64117 0.05836535 0.518627 +43.83129 0.05836535 0.518627 +58.85664 0.05836535 0.518627 +-0.0175068 0.08132997 0.518627 +-0.01161267 0.08132997 0.518627 +-0.005718534 0.08132997 0.518627 +0.0001755984 0.08132997 0.518627 +0.006069731 0.08132997 0.518627 +0.01197402 0.08132997 0.518627 +0.01903886 0.08132997 0.518627 +0.02852504 0.08132997 0.518627 +0.04126244 0.08132997 0.518627 +0.05836535 0.08132997 0.518627 +0.08132997 0.08132997 0.518627 +0.1121653 0.08132997 0.518627 +0.1535689 0.08132997 0.518627 +0.2091628 0.08132997 0.518627 +0.2838106 0.08132997 0.518627 +0.3840425 0.08132997 0.518627 +0.518627 0.08132997 0.518627 +0.6993381 0.08132997 0.518627 +0.9419845 0.08132997 0.518627 +1.267794 0.08132997 0.518627 +1.705268 0.08132997 0.518627 +2.292679 0.08132997 0.518627 +3.081414 0.08132997 0.518627 +4.140474 0.08132997 0.518627 +5.562508 0.08132997 0.518627 +7.471917 0.08132997 0.518627 +10.03574 0.08132997 0.518627 +13.47828 0.08132997 0.518627 +18.10068 0.08132997 0.518627 +24.30731 0.08132997 0.518627 +32.64117 0.08132997 0.518627 +43.83129 0.08132997 0.518627 +58.85664 0.08132997 0.518627 +-0.0175068 0.1121653 0.518627 +-0.01161267 0.1121653 0.518627 +-0.005718534 0.1121653 0.518627 +0.0001755984 0.1121653 0.518627 +0.006069731 0.1121653 0.518627 +0.01197402 0.1121653 0.518627 +0.01903886 0.1121653 0.518627 +0.02852504 0.1121653 0.518627 +0.04126244 0.1121653 0.518627 +0.05836535 0.1121653 0.518627 +0.08132997 0.1121653 0.518627 +0.1121653 0.1121653 0.518627 +0.1535689 0.1121653 0.518627 +0.2091628 0.1121653 0.518627 +0.2838106 0.1121653 0.518627 +0.3840425 0.1121653 0.518627 +0.518627 0.1121653 0.518627 +0.6993381 0.1121653 0.518627 +0.9419845 0.1121653 0.518627 +1.267794 0.1121653 0.518627 +1.705268 0.1121653 0.518627 +2.292679 0.1121653 0.518627 +3.081414 0.1121653 0.518627 +4.140474 0.1121653 0.518627 +5.562508 0.1121653 0.518627 +7.471917 0.1121653 0.518627 +10.03574 0.1121653 0.518627 +13.47828 0.1121653 0.518627 +18.10068 0.1121653 0.518627 +24.30731 0.1121653 0.518627 +32.64117 0.1121653 0.518627 +43.83129 0.1121653 0.518627 +58.85664 0.1121653 0.518627 +-0.0175068 0.1535689 0.518627 +-0.01161267 0.1535689 0.518627 +-0.005718534 0.1535689 0.518627 +0.0001755984 0.1535689 0.518627 +0.006069731 0.1535689 0.518627 +0.01197402 0.1535689 0.518627 +0.01903886 0.1535689 0.518627 +0.02852504 0.1535689 0.518627 +0.04126244 0.1535689 0.518627 +0.05836535 0.1535689 0.518627 +0.08132997 0.1535689 0.518627 +0.1121653 0.1535689 0.518627 +0.1535689 0.1535689 0.518627 +0.2091628 0.1535689 0.518627 +0.2838106 0.1535689 0.518627 +0.3840425 0.1535689 0.518627 +0.518627 0.1535689 0.518627 +0.6993381 0.1535689 0.518627 +0.9419845 0.1535689 0.518627 +1.267794 0.1535689 0.518627 +1.705268 0.1535689 0.518627 +2.292679 0.1535689 0.518627 +3.081414 0.1535689 0.518627 +4.140474 0.1535689 0.518627 +5.562508 0.1535689 0.518627 +7.471917 0.1535689 0.518627 +10.03574 0.1535689 0.518627 +13.47828 0.1535689 0.518627 +18.10068 0.1535689 0.518627 +24.30731 0.1535689 0.518627 +32.64117 0.1535689 0.518627 +43.83129 0.1535689 0.518627 +58.85664 0.1535689 0.518627 +-0.0175068 0.2091628 0.518627 +-0.01161267 0.2091628 0.518627 +-0.005718534 0.2091628 0.518627 +0.0001755984 0.2091628 0.518627 +0.006069731 0.2091628 0.518627 +0.01197402 0.2091628 0.518627 +0.01903886 0.2091628 0.518627 +0.02852504 0.2091628 0.518627 +0.04126244 0.2091628 0.518627 +0.05836535 0.2091628 0.518627 +0.08132997 0.2091628 0.518627 +0.1121653 0.2091628 0.518627 +0.1535689 0.2091628 0.518627 +0.2091628 0.2091628 0.518627 +0.2838106 0.2091628 0.518627 +0.3840425 0.2091628 0.518627 +0.518627 0.2091628 0.518627 +0.6993381 0.2091628 0.518627 +0.9419845 0.2091628 0.518627 +1.267794 0.2091628 0.518627 +1.705268 0.2091628 0.518627 +2.292679 0.2091628 0.518627 +3.081414 0.2091628 0.518627 +4.140474 0.2091628 0.518627 +5.562508 0.2091628 0.518627 +7.471917 0.2091628 0.518627 +10.03574 0.2091628 0.518627 +13.47828 0.2091628 0.518627 +18.10068 0.2091628 0.518627 +24.30731 0.2091628 0.518627 +32.64117 0.2091628 0.518627 +43.83129 0.2091628 0.518627 +58.85664 0.2091628 0.518627 +-0.0175068 0.2838106 0.518627 +-0.01161267 0.2838106 0.518627 +-0.005718534 0.2838106 0.518627 +0.0001755984 0.2838106 0.518627 +0.006069731 0.2838106 0.518627 +0.01197402 0.2838106 0.518627 +0.01903886 0.2838106 0.518627 +0.02852504 0.2838106 0.518627 +0.04126244 0.2838106 0.518627 +0.05836535 0.2838106 0.518627 +0.08132997 0.2838106 0.518627 +0.1121653 0.2838106 0.518627 +0.1535689 0.2838106 0.518627 +0.2091628 0.2838106 0.518627 +0.2838106 0.2838106 0.518627 +0.3840425 0.2838106 0.518627 +0.518627 0.2838106 0.518627 +0.6993381 0.2838106 0.518627 +0.9419845 0.2838106 0.518627 +1.267794 0.2838106 0.518627 +1.705268 0.2838106 0.518627 +2.292679 0.2838106 0.518627 +3.081414 0.2838106 0.518627 +4.140474 0.2838106 0.518627 +5.562508 0.2838106 0.518627 +7.471917 0.2838106 0.518627 +10.03574 0.2838106 0.518627 +13.47828 0.2838106 0.518627 +18.10068 0.2838106 0.518627 +24.30731 0.2838106 0.518627 +32.64117 0.2838106 0.518627 +43.83129 0.2838106 0.518627 +58.85664 0.2838106 0.518627 +-0.0175068 0.3840425 0.518627 +-0.01161267 0.3840425 0.518627 +-0.005718534 0.3840425 0.518627 +0.0001755984 0.3840425 0.518627 +0.006069731 0.3840425 0.518627 +0.01197402 0.3840425 0.518627 +0.01903886 0.3840425 0.518627 +0.02852504 0.3840425 0.518627 +0.04126244 0.3840425 0.518627 +0.05836535 0.3840425 0.518627 +0.08132997 0.3840425 0.518627 +0.1121653 0.3840425 0.518627 +0.1535689 0.3840425 0.518627 +0.2091628 0.3840425 0.518627 +0.2838106 0.3840425 0.518627 +0.3840425 0.3840425 0.518627 +0.518627 0.3840425 0.518627 +0.6993381 0.3840425 0.518627 +0.9419845 0.3840425 0.518627 +1.267794 0.3840425 0.518627 +1.705268 0.3840425 0.518627 +2.292679 0.3840425 0.518627 +3.081414 0.3840425 0.518627 +4.140474 0.3840425 0.518627 +5.562508 0.3840425 0.518627 +7.471917 0.3840425 0.518627 +10.03574 0.3840425 0.518627 +13.47828 0.3840425 0.518627 +18.10068 0.3840425 0.518627 +24.30731 0.3840425 0.518627 +32.64117 0.3840425 0.518627 +43.83129 0.3840425 0.518627 +58.85664 0.3840425 0.518627 +-0.0175068 0.518627 0.518627 +-0.01161267 0.518627 0.518627 +-0.005718534 0.518627 0.518627 +0.0001755984 0.518627 0.518627 +0.006069731 0.518627 0.518627 +0.01197402 0.518627 0.518627 +0.01903886 0.518627 0.518627 +0.02852504 0.518627 0.518627 +0.04126244 0.518627 0.518627 +0.05836535 0.518627 0.518627 +0.08132997 0.518627 0.518627 +0.1121653 0.518627 0.518627 +0.1535689 0.518627 0.518627 +0.2091628 0.518627 0.518627 +0.2838106 0.518627 0.518627 +0.3840425 0.518627 0.518627 +0.518627 0.518627 0.518627 +0.6993381 0.518627 0.518627 +0.9419845 0.518627 0.518627 +1.267794 0.518627 0.518627 +1.705268 0.518627 0.518627 +2.292679 0.518627 0.518627 +3.081414 0.518627 0.518627 +4.140474 0.518627 0.518627 +5.562508 0.518627 0.518627 +7.471917 0.518627 0.518627 +10.03574 0.518627 0.518627 +13.47828 0.518627 0.518627 +18.10068 0.518627 0.518627 +24.30731 0.518627 0.518627 +32.64117 0.518627 0.518627 +43.83129 0.518627 0.518627 +58.85664 0.518627 0.518627 +-0.0175068 0.6993381 0.518627 +-0.01161267 0.6993381 0.518627 +-0.005718534 0.6993381 0.518627 +0.0001755984 0.6993381 0.518627 +0.006069731 0.6993381 0.518627 +0.01197402 0.6993381 0.518627 +0.01903886 0.6993381 0.518627 +0.02852504 0.6993381 0.518627 +0.04126244 0.6993381 0.518627 +0.05836535 0.6993381 0.518627 +0.08132997 0.6993381 0.518627 +0.1121653 0.6993381 0.518627 +0.1535689 0.6993381 0.518627 +0.2091628 0.6993381 0.518627 +0.2838106 0.6993381 0.518627 +0.3840425 0.6993381 0.518627 +0.518627 0.6993381 0.518627 +0.6993381 0.6993381 0.518627 +0.9419845 0.6993381 0.518627 +1.267794 0.6993381 0.518627 +1.705268 0.6993381 0.518627 +2.292679 0.6993381 0.518627 +3.081414 0.6993381 0.518627 +4.140474 0.6993381 0.518627 +5.562508 0.6993381 0.518627 +7.471917 0.6993381 0.518627 +10.03574 0.6993381 0.518627 +13.47828 0.6993381 0.518627 +18.10068 0.6993381 0.518627 +24.30731 0.6993381 0.518627 +32.64117 0.6993381 0.518627 +43.83129 0.6993381 0.518627 +58.85664 0.6993381 0.518627 +-0.0175068 0.9419845 0.518627 +-0.01161267 0.9419845 0.518627 +-0.005718534 0.9419845 0.518627 +0.0001755984 0.9419845 0.518627 +0.006069731 0.9419845 0.518627 +0.01197402 0.9419845 0.518627 +0.01903886 0.9419845 0.518627 +0.02852504 0.9419845 0.518627 +0.04126244 0.9419845 0.518627 +0.05836535 0.9419845 0.518627 +0.08132997 0.9419845 0.518627 +0.1121653 0.9419845 0.518627 +0.1535689 0.9419845 0.518627 +0.2091628 0.9419845 0.518627 +0.2838106 0.9419845 0.518627 +0.3840425 0.9419845 0.518627 +0.518627 0.9419845 0.518627 +0.6993381 0.9419845 0.518627 +0.9419845 0.9419845 0.518627 +1.267794 0.9419845 0.518627 +1.705268 0.9419845 0.518627 +2.292679 0.9419845 0.518627 +3.081414 0.9419845 0.518627 +4.140474 0.9419845 0.518627 +5.562508 0.9419845 0.518627 +7.471917 0.9419845 0.518627 +10.03574 0.9419845 0.518627 +13.47828 0.9419845 0.518627 +18.10068 0.9419845 0.518627 +24.30731 0.9419845 0.518627 +32.64117 0.9419845 0.518627 +43.83129 0.9419845 0.518627 +58.85664 0.9419845 0.518627 +-0.0175068 1.267794 0.518627 +-0.01161267 1.267794 0.518627 +-0.005718534 1.267794 0.518627 +0.0001755984 1.267794 0.518627 +0.006069731 1.267794 0.518627 +0.01197402 1.267794 0.518627 +0.01903886 1.267794 0.518627 +0.02852504 1.267794 0.518627 +0.04126244 1.267794 0.518627 +0.05836535 1.267794 0.518627 +0.08132997 1.267794 0.518627 +0.1121653 1.267794 0.518627 +0.1535689 1.267794 0.518627 +0.2091628 1.267794 0.518627 +0.2838106 1.267794 0.518627 +0.3840425 1.267794 0.518627 +0.518627 1.267794 0.518627 +0.6993381 1.267794 0.518627 +0.9419845 1.267794 0.518627 +1.267794 1.267794 0.518627 +1.705268 1.267794 0.518627 +2.292679 1.267794 0.518627 +3.081414 1.267794 0.518627 +4.140474 1.267794 0.518627 +5.562508 1.267794 0.518627 +7.471917 1.267794 0.518627 +10.03574 1.267794 0.518627 +13.47828 1.267794 0.518627 +18.10068 1.267794 0.518627 +24.30731 1.267794 0.518627 +32.64117 1.267794 0.518627 +43.83129 1.267794 0.518627 +58.85664 1.267794 0.518627 +-0.0175068 1.705268 0.518627 +-0.01161267 1.705268 0.518627 +-0.005718534 1.705268 0.518627 +0.0001755984 1.705268 0.518627 +0.006069731 1.705268 0.518627 +0.01197402 1.705268 0.518627 +0.01903886 1.705268 0.518627 +0.02852504 1.705268 0.518627 +0.04126244 1.705268 0.518627 +0.05836535 1.705268 0.518627 +0.08132997 1.705268 0.518627 +0.1121653 1.705268 0.518627 +0.1535689 1.705268 0.518627 +0.2091628 1.705268 0.518627 +0.2838106 1.705268 0.518627 +0.3840425 1.705268 0.518627 +0.518627 1.705268 0.518627 +0.6993381 1.705268 0.518627 +0.9419845 1.705268 0.518627 +1.267794 1.705268 0.518627 +1.705268 1.705268 0.518627 +2.292679 1.705268 0.518627 +3.081414 1.705268 0.518627 +4.140474 1.705268 0.518627 +5.562508 1.705268 0.518627 +7.471917 1.705268 0.518627 +10.03574 1.705268 0.518627 +13.47828 1.705268 0.518627 +18.10068 1.705268 0.518627 +24.30731 1.705268 0.518627 +32.64117 1.705268 0.518627 +43.83129 1.705268 0.518627 +58.85664 1.705268 0.518627 +-0.0175068 2.292679 0.518627 +-0.01161267 2.292679 0.518627 +-0.005718534 2.292679 0.518627 +0.0001755984 2.292679 0.518627 +0.006069731 2.292679 0.518627 +0.01197402 2.292679 0.518627 +0.01903886 2.292679 0.518627 +0.02852504 2.292679 0.518627 +0.04126244 2.292679 0.518627 +0.05836535 2.292679 0.518627 +0.08132997 2.292679 0.518627 +0.1121653 2.292679 0.518627 +0.1535689 2.292679 0.518627 +0.2091628 2.292679 0.518627 +0.2838106 2.292679 0.518627 +0.3840425 2.292679 0.518627 +0.518627 2.292679 0.518627 +0.6993381 2.292679 0.518627 +0.9419845 2.292679 0.518627 +1.267794 2.292679 0.518627 +1.705268 2.292679 0.518627 +2.292679 2.292679 0.518627 +3.081414 2.292679 0.518627 +4.140474 2.292679 0.518627 +5.562508 2.292679 0.518627 +7.471917 2.292679 0.518627 +10.03574 2.292679 0.518627 +13.47828 2.292679 0.518627 +18.10068 2.292679 0.518627 +24.30731 2.292679 0.518627 +32.64117 2.292679 0.518627 +43.83129 2.292679 0.518627 +58.85664 2.292679 0.518627 +-0.0175068 3.081414 0.518627 +-0.01161267 3.081414 0.518627 +-0.005718534 3.081414 0.518627 +0.0001755984 3.081414 0.518627 +0.006069731 3.081414 0.518627 +0.01197402 3.081414 0.518627 +0.01903886 3.081414 0.518627 +0.02852504 3.081414 0.518627 +0.04126244 3.081414 0.518627 +0.05836535 3.081414 0.518627 +0.08132997 3.081414 0.518627 +0.1121653 3.081414 0.518627 +0.1535689 3.081414 0.518627 +0.2091628 3.081414 0.518627 +0.2838106 3.081414 0.518627 +0.3840425 3.081414 0.518627 +0.518627 3.081414 0.518627 +0.6993381 3.081414 0.518627 +0.9419845 3.081414 0.518627 +1.267794 3.081414 0.518627 +1.705268 3.081414 0.518627 +2.292679 3.081414 0.518627 +3.081414 3.081414 0.518627 +4.140474 3.081414 0.518627 +5.562508 3.081414 0.518627 +7.471917 3.081414 0.518627 +10.03574 3.081414 0.518627 +13.47828 3.081414 0.518627 +18.10068 3.081414 0.518627 +24.30731 3.081414 0.518627 +32.64117 3.081414 0.518627 +43.83129 3.081414 0.518627 +58.85664 3.081414 0.518627 +-0.0175068 4.140474 0.518627 +-0.01161267 4.140474 0.518627 +-0.005718534 4.140474 0.518627 +0.0001755984 4.140474 0.518627 +0.006069731 4.140474 0.518627 +0.01197402 4.140474 0.518627 +0.01903886 4.140474 0.518627 +0.02852504 4.140474 0.518627 +0.04126244 4.140474 0.518627 +0.05836535 4.140474 0.518627 +0.08132997 4.140474 0.518627 +0.1121653 4.140474 0.518627 +0.1535689 4.140474 0.518627 +0.2091628 4.140474 0.518627 +0.2838106 4.140474 0.518627 +0.3840425 4.140474 0.518627 +0.518627 4.140474 0.518627 +0.6993381 4.140474 0.518627 +0.9419845 4.140474 0.518627 +1.267794 4.140474 0.518627 +1.705268 4.140474 0.518627 +2.292679 4.140474 0.518627 +3.081414 4.140474 0.518627 +4.140474 4.140474 0.518627 +5.562508 4.140474 0.518627 +7.471917 4.140474 0.518627 +10.03574 4.140474 0.518627 +13.47828 4.140474 0.518627 +18.10068 4.140474 0.518627 +24.30731 4.140474 0.518627 +32.64117 4.140474 0.518627 +43.83129 4.140474 0.518627 +58.85664 4.140474 0.518627 +-0.0175068 5.562508 0.518627 +-0.01161267 5.562508 0.518627 +-0.005718534 5.562508 0.518627 +0.0001755984 5.562508 0.518627 +0.006069731 5.562508 0.518627 +0.01197402 5.562508 0.518627 +0.01903886 5.562508 0.518627 +0.02852504 5.562508 0.518627 +0.04126244 5.562508 0.518627 +0.05836535 5.562508 0.518627 +0.08132997 5.562508 0.518627 +0.1121653 5.562508 0.518627 +0.1535689 5.562508 0.518627 +0.2091628 5.562508 0.518627 +0.2838106 5.562508 0.518627 +0.3840425 5.562508 0.518627 +0.518627 5.562508 0.518627 +0.6993381 5.562508 0.518627 +0.9419845 5.562508 0.518627 +1.267794 5.562508 0.518627 +1.705268 5.562508 0.518627 +2.292679 5.562508 0.518627 +3.081414 5.562508 0.518627 +4.140474 5.562508 0.518627 +5.562508 5.562508 0.518627 +7.471917 5.562508 0.518627 +10.03574 5.562508 0.518627 +13.47828 5.562508 0.518627 +18.10068 5.562508 0.518627 +24.30731 5.562508 0.518627 +32.64117 5.562508 0.518627 +43.83129 5.562508 0.518627 +58.85664 5.562508 0.518627 +-0.0175068 7.471917 0.518627 +-0.01161267 7.471917 0.518627 +-0.005718534 7.471917 0.518627 +0.0001755984 7.471917 0.518627 +0.006069731 7.471917 0.518627 +0.01197402 7.471917 0.518627 +0.01903886 7.471917 0.518627 +0.02852504 7.471917 0.518627 +0.04126244 7.471917 0.518627 +0.05836535 7.471917 0.518627 +0.08132997 7.471917 0.518627 +0.1121653 7.471917 0.518627 +0.1535689 7.471917 0.518627 +0.2091628 7.471917 0.518627 +0.2838106 7.471917 0.518627 +0.3840425 7.471917 0.518627 +0.518627 7.471917 0.518627 +0.6993381 7.471917 0.518627 +0.9419845 7.471917 0.518627 +1.267794 7.471917 0.518627 +1.705268 7.471917 0.518627 +2.292679 7.471917 0.518627 +3.081414 7.471917 0.518627 +4.140474 7.471917 0.518627 +5.562508 7.471917 0.518627 +7.471917 7.471917 0.518627 +10.03574 7.471917 0.518627 +13.47828 7.471917 0.518627 +18.10068 7.471917 0.518627 +24.30731 7.471917 0.518627 +32.64117 7.471917 0.518627 +43.83129 7.471917 0.518627 +58.85664 7.471917 0.518627 +-0.0175068 10.03574 0.518627 +-0.01161267 10.03574 0.518627 +-0.005718534 10.03574 0.518627 +0.0001755984 10.03574 0.518627 +0.006069731 10.03574 0.518627 +0.01197402 10.03574 0.518627 +0.01903886 10.03574 0.518627 +0.02852504 10.03574 0.518627 +0.04126244 10.03574 0.518627 +0.05836535 10.03574 0.518627 +0.08132997 10.03574 0.518627 +0.1121653 10.03574 0.518627 +0.1535689 10.03574 0.518627 +0.2091628 10.03574 0.518627 +0.2838106 10.03574 0.518627 +0.3840425 10.03574 0.518627 +0.518627 10.03574 0.518627 +0.6993381 10.03574 0.518627 +0.9419845 10.03574 0.518627 +1.267794 10.03574 0.518627 +1.705268 10.03574 0.518627 +2.292679 10.03574 0.518627 +3.081414 10.03574 0.518627 +4.140474 10.03574 0.518627 +5.562508 10.03574 0.518627 +7.471917 10.03574 0.518627 +10.03574 10.03574 0.518627 +13.47828 10.03574 0.518627 +18.10068 10.03574 0.518627 +24.30731 10.03574 0.518627 +32.64117 10.03574 0.518627 +43.83129 10.03574 0.518627 +58.85664 10.03574 0.518627 +-0.0175068 13.47828 0.518627 +-0.01161267 13.47828 0.518627 +-0.005718534 13.47828 0.518627 +0.0001755984 13.47828 0.518627 +0.006069731 13.47828 0.518627 +0.01197402 13.47828 0.518627 +0.01903886 13.47828 0.518627 +0.02852504 13.47828 0.518627 +0.04126244 13.47828 0.518627 +0.05836535 13.47828 0.518627 +0.08132997 13.47828 0.518627 +0.1121653 13.47828 0.518627 +0.1535689 13.47828 0.518627 +0.2091628 13.47828 0.518627 +0.2838106 13.47828 0.518627 +0.3840425 13.47828 0.518627 +0.518627 13.47828 0.518627 +0.6993381 13.47828 0.518627 +0.9419845 13.47828 0.518627 +1.267794 13.47828 0.518627 +1.705268 13.47828 0.518627 +2.292679 13.47828 0.518627 +3.081414 13.47828 0.518627 +4.140474 13.47828 0.518627 +5.562508 13.47828 0.518627 +7.471917 13.47828 0.518627 +10.03574 13.47828 0.518627 +13.47828 13.47828 0.518627 +18.10068 13.47828 0.518627 +24.30731 13.47828 0.518627 +32.64117 13.47828 0.518627 +43.83129 13.47828 0.518627 +58.85664 13.47828 0.518627 +-0.0175068 18.10068 0.518627 +-0.01161267 18.10068 0.518627 +-0.005718534 18.10068 0.518627 +0.0001755984 18.10068 0.518627 +0.006069731 18.10068 0.518627 +0.01197402 18.10068 0.518627 +0.01903886 18.10068 0.518627 +0.02852504 18.10068 0.518627 +0.04126244 18.10068 0.518627 +0.05836535 18.10068 0.518627 +0.08132997 18.10068 0.518627 +0.1121653 18.10068 0.518627 +0.1535689 18.10068 0.518627 +0.2091628 18.10068 0.518627 +0.2838106 18.10068 0.518627 +0.3840425 18.10068 0.518627 +0.518627 18.10068 0.518627 +0.6993381 18.10068 0.518627 +0.9419845 18.10068 0.518627 +1.267794 18.10068 0.518627 +1.705268 18.10068 0.518627 +2.292679 18.10068 0.518627 +3.081414 18.10068 0.518627 +4.140474 18.10068 0.518627 +5.562508 18.10068 0.518627 +7.471917 18.10068 0.518627 +10.03574 18.10068 0.518627 +13.47828 18.10068 0.518627 +18.10068 18.10068 0.518627 +24.30731 18.10068 0.518627 +32.64117 18.10068 0.518627 +43.83129 18.10068 0.518627 +58.85664 18.10068 0.518627 +-0.0175068 24.30731 0.518627 +-0.01161267 24.30731 0.518627 +-0.005718534 24.30731 0.518627 +0.0001755984 24.30731 0.518627 +0.006069731 24.30731 0.518627 +0.01197402 24.30731 0.518627 +0.01903886 24.30731 0.518627 +0.02852504 24.30731 0.518627 +0.04126244 24.30731 0.518627 +0.05836535 24.30731 0.518627 +0.08132997 24.30731 0.518627 +0.1121653 24.30731 0.518627 +0.1535689 24.30731 0.518627 +0.2091628 24.30731 0.518627 +0.2838106 24.30731 0.518627 +0.3840425 24.30731 0.518627 +0.518627 24.30731 0.518627 +0.6993381 24.30731 0.518627 +0.9419845 24.30731 0.518627 +1.267794 24.30731 0.518627 +1.705268 24.30731 0.518627 +2.292679 24.30731 0.518627 +3.081414 24.30731 0.518627 +4.140474 24.30731 0.518627 +5.562508 24.30731 0.518627 +7.471917 24.30731 0.518627 +10.03574 24.30731 0.518627 +13.47828 24.30731 0.518627 +18.10068 24.30731 0.518627 +24.30731 24.30731 0.518627 +32.64117 24.30731 0.518627 +43.83129 24.30731 0.518627 +58.85664 24.30731 0.518627 +-0.0175068 32.64117 0.518627 +-0.01161267 32.64117 0.518627 +-0.005718534 32.64117 0.518627 +0.0001755984 32.64117 0.518627 +0.006069731 32.64117 0.518627 +0.01197402 32.64117 0.518627 +0.01903886 32.64117 0.518627 +0.02852504 32.64117 0.518627 +0.04126244 32.64117 0.518627 +0.05836535 32.64117 0.518627 +0.08132997 32.64117 0.518627 +0.1121653 32.64117 0.518627 +0.1535689 32.64117 0.518627 +0.2091628 32.64117 0.518627 +0.2838106 32.64117 0.518627 +0.3840425 32.64117 0.518627 +0.518627 32.64117 0.518627 +0.6993381 32.64117 0.518627 +0.9419845 32.64117 0.518627 +1.267794 32.64117 0.518627 +1.705268 32.64117 0.518627 +2.292679 32.64117 0.518627 +3.081414 32.64117 0.518627 +4.140474 32.64117 0.518627 +5.562508 32.64117 0.518627 +7.471917 32.64117 0.518627 +10.03574 32.64117 0.518627 +13.47828 32.64117 0.518627 +18.10068 32.64117 0.518627 +24.30731 32.64117 0.518627 +32.64117 32.64117 0.518627 +43.83129 32.64117 0.518627 +58.85664 32.64117 0.518627 +-0.0175068 43.83129 0.518627 +-0.01161267 43.83129 0.518627 +-0.005718534 43.83129 0.518627 +0.0001755984 43.83129 0.518627 +0.006069731 43.83129 0.518627 +0.01197402 43.83129 0.518627 +0.01903886 43.83129 0.518627 +0.02852504 43.83129 0.518627 +0.04126244 43.83129 0.518627 +0.05836535 43.83129 0.518627 +0.08132997 43.83129 0.518627 +0.1121653 43.83129 0.518627 +0.1535689 43.83129 0.518627 +0.2091628 43.83129 0.518627 +0.2838106 43.83129 0.518627 +0.3840425 43.83129 0.518627 +0.518627 43.83129 0.518627 +0.6993381 43.83129 0.518627 +0.9419845 43.83129 0.518627 +1.267794 43.83129 0.518627 +1.705268 43.83129 0.518627 +2.292679 43.83129 0.518627 +3.081414 43.83129 0.518627 +4.140474 43.83129 0.518627 +5.562508 43.83129 0.518627 +7.471917 43.83129 0.518627 +10.03574 43.83129 0.518627 +13.47828 43.83129 0.518627 +18.10068 43.83129 0.518627 +24.30731 43.83129 0.518627 +32.64117 43.83129 0.518627 +43.83129 43.83129 0.518627 +58.85664 43.83129 0.518627 +-0.0175068 58.85664 0.518627 +-0.01161267 58.85664 0.518627 +-0.005718534 58.85664 0.518627 +0.0001755984 58.85664 0.518627 +0.006069731 58.85664 0.518627 +0.01197402 58.85664 0.518627 +0.01903886 58.85664 0.518627 +0.02852504 58.85664 0.518627 +0.04126244 58.85664 0.518627 +0.05836535 58.85664 0.518627 +0.08132997 58.85664 0.518627 +0.1121653 58.85664 0.518627 +0.1535689 58.85664 0.518627 +0.2091628 58.85664 0.518627 +0.2838106 58.85664 0.518627 +0.3840425 58.85664 0.518627 +0.518627 58.85664 0.518627 +0.6993381 58.85664 0.518627 +0.9419845 58.85664 0.518627 +1.267794 58.85664 0.518627 +1.705268 58.85664 0.518627 +2.292679 58.85664 0.518627 +3.081414 58.85664 0.518627 +4.140474 58.85664 0.518627 +5.562508 58.85664 0.518627 +7.471917 58.85664 0.518627 +10.03574 58.85664 0.518627 +13.47828 58.85664 0.518627 +18.10068 58.85664 0.518627 +24.30731 58.85664 0.518627 +32.64117 58.85664 0.518627 +43.83129 58.85664 0.518627 +58.85664 58.85664 0.518627 +-0.0175068 -0.0175068 0.6993381 +-0.01161267 -0.0175068 0.6993381 +-0.005718534 -0.0175068 0.6993381 +0.0001755984 -0.0175068 0.6993381 +0.006069731 -0.0175068 0.6993381 +0.01197402 -0.0175068 0.6993381 +0.01903886 -0.0175068 0.6993381 +0.02852504 -0.0175068 0.6993381 +0.04126244 -0.0175068 0.6993381 +0.05836535 -0.0175068 0.6993381 +0.08132997 -0.0175068 0.6993381 +0.1121653 -0.0175068 0.6993381 +0.1535689 -0.0175068 0.6993381 +0.2091628 -0.0175068 0.6993381 +0.2838106 -0.0175068 0.6993381 +0.3840425 -0.0175068 0.6993381 +0.518627 -0.0175068 0.6993381 +0.6993381 -0.0175068 0.6993381 +0.9419845 -0.0175068 0.6993381 +1.267794 -0.0175068 0.6993381 +1.705268 -0.0175068 0.6993381 +2.292679 -0.0175068 0.6993381 +3.081414 -0.0175068 0.6993381 +4.140474 -0.0175068 0.6993381 +5.562508 -0.0175068 0.6993381 +7.471917 -0.0175068 0.6993381 +10.03574 -0.0175068 0.6993381 +13.47828 -0.0175068 0.6993381 +18.10068 -0.0175068 0.6993381 +24.30731 -0.0175068 0.6993381 +32.64117 -0.0175068 0.6993381 +43.83129 -0.0175068 0.6993381 +58.85664 -0.0175068 0.6993381 +-0.0175068 -0.01161267 0.6993381 +-0.01161267 -0.01161267 0.6993381 +-0.005718534 -0.01161267 0.6993381 +0.0001755984 -0.01161267 0.6993381 +0.006069731 -0.01161267 0.6993381 +0.01197402 -0.01161267 0.6993381 +0.01903886 -0.01161267 0.6993381 +0.02852504 -0.01161267 0.6993381 +0.04126244 -0.01161267 0.6993381 +0.05836535 -0.01161267 0.6993381 +0.08132997 -0.01161267 0.6993381 +0.1121653 -0.01161267 0.6993381 +0.1535689 -0.01161267 0.6993381 +0.2091628 -0.01161267 0.6993381 +0.2838106 -0.01161267 0.6993381 +0.3840425 -0.01161267 0.6993381 +0.518627 -0.01161267 0.6993381 +0.6993381 -0.01161267 0.6993381 +0.9419845 -0.01161267 0.6993381 +1.267794 -0.01161267 0.6993381 +1.705268 -0.01161267 0.6993381 +2.292679 -0.01161267 0.6993381 +3.081414 -0.01161267 0.6993381 +4.140474 -0.01161267 0.6993381 +5.562508 -0.01161267 0.6993381 +7.471917 -0.01161267 0.6993381 +10.03574 -0.01161267 0.6993381 +13.47828 -0.01161267 0.6993381 +18.10068 -0.01161267 0.6993381 +24.30731 -0.01161267 0.6993381 +32.64117 -0.01161267 0.6993381 +43.83129 -0.01161267 0.6993381 +58.85664 -0.01161267 0.6993381 +-0.0175068 -0.005718534 0.6993381 +-0.01161267 -0.005718534 0.6993381 +-0.005718534 -0.005718534 0.6993381 +0.0001755984 -0.005718534 0.6993381 +0.006069731 -0.005718534 0.6993381 +0.01197402 -0.005718534 0.6993381 +0.01903886 -0.005718534 0.6993381 +0.02852504 -0.005718534 0.6993381 +0.04126244 -0.005718534 0.6993381 +0.05836535 -0.005718534 0.6993381 +0.08132997 -0.005718534 0.6993381 +0.1121653 -0.005718534 0.6993381 +0.1535689 -0.005718534 0.6993381 +0.2091628 -0.005718534 0.6993381 +0.2838106 -0.005718534 0.6993381 +0.3840425 -0.005718534 0.6993381 +0.518627 -0.005718534 0.6993381 +0.6993381 -0.005718534 0.6993381 +0.9419845 -0.005718534 0.6993381 +1.267794 -0.005718534 0.6993381 +1.705268 -0.005718534 0.6993381 +2.292679 -0.005718534 0.6993381 +3.081414 -0.005718534 0.6993381 +4.140474 -0.005718534 0.6993381 +5.562508 -0.005718534 0.6993381 +7.471917 -0.005718534 0.6993381 +10.03574 -0.005718534 0.6993381 +13.47828 -0.005718534 0.6993381 +18.10068 -0.005718534 0.6993381 +24.30731 -0.005718534 0.6993381 +32.64117 -0.005718534 0.6993381 +43.83129 -0.005718534 0.6993381 +58.85664 -0.005718534 0.6993381 +-0.0175068 0.0001755984 0.6993381 +-0.01161267 0.0001755984 0.6993381 +-0.005718534 0.0001755984 0.6993381 +0.0001755984 0.0001755984 0.6993381 +0.006069731 0.0001755984 0.6993381 +0.01197402 0.0001755984 0.6993381 +0.01903886 0.0001755984 0.6993381 +0.02852504 0.0001755984 0.6993381 +0.04126244 0.0001755984 0.6993381 +0.05836535 0.0001755984 0.6993381 +0.08132997 0.0001755984 0.6993381 +0.1121653 0.0001755984 0.6993381 +0.1535689 0.0001755984 0.6993381 +0.2091628 0.0001755984 0.6993381 +0.2838106 0.0001755984 0.6993381 +0.3840425 0.0001755984 0.6993381 +0.518627 0.0001755984 0.6993381 +0.6993381 0.0001755984 0.6993381 +0.9419845 0.0001755984 0.6993381 +1.267794 0.0001755984 0.6993381 +1.705268 0.0001755984 0.6993381 +2.292679 0.0001755984 0.6993381 +3.081414 0.0001755984 0.6993381 +4.140474 0.0001755984 0.6993381 +5.562508 0.0001755984 0.6993381 +7.471917 0.0001755984 0.6993381 +10.03574 0.0001755984 0.6993381 +13.47828 0.0001755984 0.6993381 +18.10068 0.0001755984 0.6993381 +24.30731 0.0001755984 0.6993381 +32.64117 0.0001755984 0.6993381 +43.83129 0.0001755984 0.6993381 +58.85664 0.0001755984 0.6993381 +-0.0175068 0.006069731 0.6993381 +-0.01161267 0.006069731 0.6993381 +-0.005718534 0.006069731 0.6993381 +0.0001755984 0.006069731 0.6993381 +0.006069731 0.006069731 0.6993381 +0.01197402 0.006069731 0.6993381 +0.01903886 0.006069731 0.6993381 +0.02852504 0.006069731 0.6993381 +0.04126244 0.006069731 0.6993381 +0.05836535 0.006069731 0.6993381 +0.08132997 0.006069731 0.6993381 +0.1121653 0.006069731 0.6993381 +0.1535689 0.006069731 0.6993381 +0.2091628 0.006069731 0.6993381 +0.2838106 0.006069731 0.6993381 +0.3840425 0.006069731 0.6993381 +0.518627 0.006069731 0.6993381 +0.6993381 0.006069731 0.6993381 +0.9419845 0.006069731 0.6993381 +1.267794 0.006069731 0.6993381 +1.705268 0.006069731 0.6993381 +2.292679 0.006069731 0.6993381 +3.081414 0.006069731 0.6993381 +4.140474 0.006069731 0.6993381 +5.562508 0.006069731 0.6993381 +7.471917 0.006069731 0.6993381 +10.03574 0.006069731 0.6993381 +13.47828 0.006069731 0.6993381 +18.10068 0.006069731 0.6993381 +24.30731 0.006069731 0.6993381 +32.64117 0.006069731 0.6993381 +43.83129 0.006069731 0.6993381 +58.85664 0.006069731 0.6993381 +-0.0175068 0.01197402 0.6993381 +-0.01161267 0.01197402 0.6993381 +-0.005718534 0.01197402 0.6993381 +0.0001755984 0.01197402 0.6993381 +0.006069731 0.01197402 0.6993381 +0.01197402 0.01197402 0.6993381 +0.01903886 0.01197402 0.6993381 +0.02852504 0.01197402 0.6993381 +0.04126244 0.01197402 0.6993381 +0.05836535 0.01197402 0.6993381 +0.08132997 0.01197402 0.6993381 +0.1121653 0.01197402 0.6993381 +0.1535689 0.01197402 0.6993381 +0.2091628 0.01197402 0.6993381 +0.2838106 0.01197402 0.6993381 +0.3840425 0.01197402 0.6993381 +0.518627 0.01197402 0.6993381 +0.6993381 0.01197402 0.6993381 +0.9419845 0.01197402 0.6993381 +1.267794 0.01197402 0.6993381 +1.705268 0.01197402 0.6993381 +2.292679 0.01197402 0.6993381 +3.081414 0.01197402 0.6993381 +4.140474 0.01197402 0.6993381 +5.562508 0.01197402 0.6993381 +7.471917 0.01197402 0.6993381 +10.03574 0.01197402 0.6993381 +13.47828 0.01197402 0.6993381 +18.10068 0.01197402 0.6993381 +24.30731 0.01197402 0.6993381 +32.64117 0.01197402 0.6993381 +43.83129 0.01197402 0.6993381 +58.85664 0.01197402 0.6993381 +-0.0175068 0.01903886 0.6993381 +-0.01161267 0.01903886 0.6993381 +-0.005718534 0.01903886 0.6993381 +0.0001755984 0.01903886 0.6993381 +0.006069731 0.01903886 0.6993381 +0.01197402 0.01903886 0.6993381 +0.01903886 0.01903886 0.6993381 +0.02852504 0.01903886 0.6993381 +0.04126244 0.01903886 0.6993381 +0.05836535 0.01903886 0.6993381 +0.08132997 0.01903886 0.6993381 +0.1121653 0.01903886 0.6993381 +0.1535689 0.01903886 0.6993381 +0.2091628 0.01903886 0.6993381 +0.2838106 0.01903886 0.6993381 +0.3840425 0.01903886 0.6993381 +0.518627 0.01903886 0.6993381 +0.6993381 0.01903886 0.6993381 +0.9419845 0.01903886 0.6993381 +1.267794 0.01903886 0.6993381 +1.705268 0.01903886 0.6993381 +2.292679 0.01903886 0.6993381 +3.081414 0.01903886 0.6993381 +4.140474 0.01903886 0.6993381 +5.562508 0.01903886 0.6993381 +7.471917 0.01903886 0.6993381 +10.03574 0.01903886 0.6993381 +13.47828 0.01903886 0.6993381 +18.10068 0.01903886 0.6993381 +24.30731 0.01903886 0.6993381 +32.64117 0.01903886 0.6993381 +43.83129 0.01903886 0.6993381 +58.85664 0.01903886 0.6993381 +-0.0175068 0.02852504 0.6993381 +-0.01161267 0.02852504 0.6993381 +-0.005718534 0.02852504 0.6993381 +0.0001755984 0.02852504 0.6993381 +0.006069731 0.02852504 0.6993381 +0.01197402 0.02852504 0.6993381 +0.01903886 0.02852504 0.6993381 +0.02852504 0.02852504 0.6993381 +0.04126244 0.02852504 0.6993381 +0.05836535 0.02852504 0.6993381 +0.08132997 0.02852504 0.6993381 +0.1121653 0.02852504 0.6993381 +0.1535689 0.02852504 0.6993381 +0.2091628 0.02852504 0.6993381 +0.2838106 0.02852504 0.6993381 +0.3840425 0.02852504 0.6993381 +0.518627 0.02852504 0.6993381 +0.6993381 0.02852504 0.6993381 +0.9419845 0.02852504 0.6993381 +1.267794 0.02852504 0.6993381 +1.705268 0.02852504 0.6993381 +2.292679 0.02852504 0.6993381 +3.081414 0.02852504 0.6993381 +4.140474 0.02852504 0.6993381 +5.562508 0.02852504 0.6993381 +7.471917 0.02852504 0.6993381 +10.03574 0.02852504 0.6993381 +13.47828 0.02852504 0.6993381 +18.10068 0.02852504 0.6993381 +24.30731 0.02852504 0.6993381 +32.64117 0.02852504 0.6993381 +43.83129 0.02852504 0.6993381 +58.85664 0.02852504 0.6993381 +-0.0175068 0.04126244 0.6993381 +-0.01161267 0.04126244 0.6993381 +-0.005718534 0.04126244 0.6993381 +0.0001755984 0.04126244 0.6993381 +0.006069731 0.04126244 0.6993381 +0.01197402 0.04126244 0.6993381 +0.01903886 0.04126244 0.6993381 +0.02852504 0.04126244 0.6993381 +0.04126244 0.04126244 0.6993381 +0.05836535 0.04126244 0.6993381 +0.08132997 0.04126244 0.6993381 +0.1121653 0.04126244 0.6993381 +0.1535689 0.04126244 0.6993381 +0.2091628 0.04126244 0.6993381 +0.2838106 0.04126244 0.6993381 +0.3840425 0.04126244 0.6993381 +0.518627 0.04126244 0.6993381 +0.6993381 0.04126244 0.6993381 +0.9419845 0.04126244 0.6993381 +1.267794 0.04126244 0.6993381 +1.705268 0.04126244 0.6993381 +2.292679 0.04126244 0.6993381 +3.081414 0.04126244 0.6993381 +4.140474 0.04126244 0.6993381 +5.562508 0.04126244 0.6993381 +7.471917 0.04126244 0.6993381 +10.03574 0.04126244 0.6993381 +13.47828 0.04126244 0.6993381 +18.10068 0.04126244 0.6993381 +24.30731 0.04126244 0.6993381 +32.64117 0.04126244 0.6993381 +43.83129 0.04126244 0.6993381 +58.85664 0.04126244 0.6993381 +-0.0175068 0.05836535 0.6993381 +-0.01161267 0.05836535 0.6993381 +-0.005718534 0.05836535 0.6993381 +0.0001755984 0.05836535 0.6993381 +0.006069731 0.05836535 0.6993381 +0.01197402 0.05836535 0.6993381 +0.01903886 0.05836535 0.6993381 +0.02852504 0.05836535 0.6993381 +0.04126244 0.05836535 0.6993381 +0.05836535 0.05836535 0.6993381 +0.08132997 0.05836535 0.6993381 +0.1121653 0.05836535 0.6993381 +0.1535689 0.05836535 0.6993381 +0.2091628 0.05836535 0.6993381 +0.2838106 0.05836535 0.6993381 +0.3840425 0.05836535 0.6993381 +0.518627 0.05836535 0.6993381 +0.6993381 0.05836535 0.6993381 +0.9419845 0.05836535 0.6993381 +1.267794 0.05836535 0.6993381 +1.705268 0.05836535 0.6993381 +2.292679 0.05836535 0.6993381 +3.081414 0.05836535 0.6993381 +4.140474 0.05836535 0.6993381 +5.562508 0.05836535 0.6993381 +7.471917 0.05836535 0.6993381 +10.03574 0.05836535 0.6993381 +13.47828 0.05836535 0.6993381 +18.10068 0.05836535 0.6993381 +24.30731 0.05836535 0.6993381 +32.64117 0.05836535 0.6993381 +43.83129 0.05836535 0.6993381 +58.85664 0.05836535 0.6993381 +-0.0175068 0.08132997 0.6993381 +-0.01161267 0.08132997 0.6993381 +-0.005718534 0.08132997 0.6993381 +0.0001755984 0.08132997 0.6993381 +0.006069731 0.08132997 0.6993381 +0.01197402 0.08132997 0.6993381 +0.01903886 0.08132997 0.6993381 +0.02852504 0.08132997 0.6993381 +0.04126244 0.08132997 0.6993381 +0.05836535 0.08132997 0.6993381 +0.08132997 0.08132997 0.6993381 +0.1121653 0.08132997 0.6993381 +0.1535689 0.08132997 0.6993381 +0.2091628 0.08132997 0.6993381 +0.2838106 0.08132997 0.6993381 +0.3840425 0.08132997 0.6993381 +0.518627 0.08132997 0.6993381 +0.6993381 0.08132997 0.6993381 +0.9419845 0.08132997 0.6993381 +1.267794 0.08132997 0.6993381 +1.705268 0.08132997 0.6993381 +2.292679 0.08132997 0.6993381 +3.081414 0.08132997 0.6993381 +4.140474 0.08132997 0.6993381 +5.562508 0.08132997 0.6993381 +7.471917 0.08132997 0.6993381 +10.03574 0.08132997 0.6993381 +13.47828 0.08132997 0.6993381 +18.10068 0.08132997 0.6993381 +24.30731 0.08132997 0.6993381 +32.64117 0.08132997 0.6993381 +43.83129 0.08132997 0.6993381 +58.85664 0.08132997 0.6993381 +-0.0175068 0.1121653 0.6993381 +-0.01161267 0.1121653 0.6993381 +-0.005718534 0.1121653 0.6993381 +0.0001755984 0.1121653 0.6993381 +0.006069731 0.1121653 0.6993381 +0.01197402 0.1121653 0.6993381 +0.01903886 0.1121653 0.6993381 +0.02852504 0.1121653 0.6993381 +0.04126244 0.1121653 0.6993381 +0.05836535 0.1121653 0.6993381 +0.08132997 0.1121653 0.6993381 +0.1121653 0.1121653 0.6993381 +0.1535689 0.1121653 0.6993381 +0.2091628 0.1121653 0.6993381 +0.2838106 0.1121653 0.6993381 +0.3840425 0.1121653 0.6993381 +0.518627 0.1121653 0.6993381 +0.6993381 0.1121653 0.6993381 +0.9419845 0.1121653 0.6993381 +1.267794 0.1121653 0.6993381 +1.705268 0.1121653 0.6993381 +2.292679 0.1121653 0.6993381 +3.081414 0.1121653 0.6993381 +4.140474 0.1121653 0.6993381 +5.562508 0.1121653 0.6993381 +7.471917 0.1121653 0.6993381 +10.03574 0.1121653 0.6993381 +13.47828 0.1121653 0.6993381 +18.10068 0.1121653 0.6993381 +24.30731 0.1121653 0.6993381 +32.64117 0.1121653 0.6993381 +43.83129 0.1121653 0.6993381 +58.85664 0.1121653 0.6993381 +-0.0175068 0.1535689 0.6993381 +-0.01161267 0.1535689 0.6993381 +-0.005718534 0.1535689 0.6993381 +0.0001755984 0.1535689 0.6993381 +0.006069731 0.1535689 0.6993381 +0.01197402 0.1535689 0.6993381 +0.01903886 0.1535689 0.6993381 +0.02852504 0.1535689 0.6993381 +0.04126244 0.1535689 0.6993381 +0.05836535 0.1535689 0.6993381 +0.08132997 0.1535689 0.6993381 +0.1121653 0.1535689 0.6993381 +0.1535689 0.1535689 0.6993381 +0.2091628 0.1535689 0.6993381 +0.2838106 0.1535689 0.6993381 +0.3840425 0.1535689 0.6993381 +0.518627 0.1535689 0.6993381 +0.6993381 0.1535689 0.6993381 +0.9419845 0.1535689 0.6993381 +1.267794 0.1535689 0.6993381 +1.705268 0.1535689 0.6993381 +2.292679 0.1535689 0.6993381 +3.081414 0.1535689 0.6993381 +4.140474 0.1535689 0.6993381 +5.562508 0.1535689 0.6993381 +7.471917 0.1535689 0.6993381 +10.03574 0.1535689 0.6993381 +13.47828 0.1535689 0.6993381 +18.10068 0.1535689 0.6993381 +24.30731 0.1535689 0.6993381 +32.64117 0.1535689 0.6993381 +43.83129 0.1535689 0.6993381 +58.85664 0.1535689 0.6993381 +-0.0175068 0.2091628 0.6993381 +-0.01161267 0.2091628 0.6993381 +-0.005718534 0.2091628 0.6993381 +0.0001755984 0.2091628 0.6993381 +0.006069731 0.2091628 0.6993381 +0.01197402 0.2091628 0.6993381 +0.01903886 0.2091628 0.6993381 +0.02852504 0.2091628 0.6993381 +0.04126244 0.2091628 0.6993381 +0.05836535 0.2091628 0.6993381 +0.08132997 0.2091628 0.6993381 +0.1121653 0.2091628 0.6993381 +0.1535689 0.2091628 0.6993381 +0.2091628 0.2091628 0.6993381 +0.2838106 0.2091628 0.6993381 +0.3840425 0.2091628 0.6993381 +0.518627 0.2091628 0.6993381 +0.6993381 0.2091628 0.6993381 +0.9419845 0.2091628 0.6993381 +1.267794 0.2091628 0.6993381 +1.705268 0.2091628 0.6993381 +2.292679 0.2091628 0.6993381 +3.081414 0.2091628 0.6993381 +4.140474 0.2091628 0.6993381 +5.562508 0.2091628 0.6993381 +7.471917 0.2091628 0.6993381 +10.03574 0.2091628 0.6993381 +13.47828 0.2091628 0.6993381 +18.10068 0.2091628 0.6993381 +24.30731 0.2091628 0.6993381 +32.64117 0.2091628 0.6993381 +43.83129 0.2091628 0.6993381 +58.85664 0.2091628 0.6993381 +-0.0175068 0.2838106 0.6993381 +-0.01161267 0.2838106 0.6993381 +-0.005718534 0.2838106 0.6993381 +0.0001755984 0.2838106 0.6993381 +0.006069731 0.2838106 0.6993381 +0.01197402 0.2838106 0.6993381 +0.01903886 0.2838106 0.6993381 +0.02852504 0.2838106 0.6993381 +0.04126244 0.2838106 0.6993381 +0.05836535 0.2838106 0.6993381 +0.08132997 0.2838106 0.6993381 +0.1121653 0.2838106 0.6993381 +0.1535689 0.2838106 0.6993381 +0.2091628 0.2838106 0.6993381 +0.2838106 0.2838106 0.6993381 +0.3840425 0.2838106 0.6993381 +0.518627 0.2838106 0.6993381 +0.6993381 0.2838106 0.6993381 +0.9419845 0.2838106 0.6993381 +1.267794 0.2838106 0.6993381 +1.705268 0.2838106 0.6993381 +2.292679 0.2838106 0.6993381 +3.081414 0.2838106 0.6993381 +4.140474 0.2838106 0.6993381 +5.562508 0.2838106 0.6993381 +7.471917 0.2838106 0.6993381 +10.03574 0.2838106 0.6993381 +13.47828 0.2838106 0.6993381 +18.10068 0.2838106 0.6993381 +24.30731 0.2838106 0.6993381 +32.64117 0.2838106 0.6993381 +43.83129 0.2838106 0.6993381 +58.85664 0.2838106 0.6993381 +-0.0175068 0.3840425 0.6993381 +-0.01161267 0.3840425 0.6993381 +-0.005718534 0.3840425 0.6993381 +0.0001755984 0.3840425 0.6993381 +0.006069731 0.3840425 0.6993381 +0.01197402 0.3840425 0.6993381 +0.01903886 0.3840425 0.6993381 +0.02852504 0.3840425 0.6993381 +0.04126244 0.3840425 0.6993381 +0.05836535 0.3840425 0.6993381 +0.08132997 0.3840425 0.6993381 +0.1121653 0.3840425 0.6993381 +0.1535689 0.3840425 0.6993381 +0.2091628 0.3840425 0.6993381 +0.2838106 0.3840425 0.6993381 +0.3840425 0.3840425 0.6993381 +0.518627 0.3840425 0.6993381 +0.6993381 0.3840425 0.6993381 +0.9419845 0.3840425 0.6993381 +1.267794 0.3840425 0.6993381 +1.705268 0.3840425 0.6993381 +2.292679 0.3840425 0.6993381 +3.081414 0.3840425 0.6993381 +4.140474 0.3840425 0.6993381 +5.562508 0.3840425 0.6993381 +7.471917 0.3840425 0.6993381 +10.03574 0.3840425 0.6993381 +13.47828 0.3840425 0.6993381 +18.10068 0.3840425 0.6993381 +24.30731 0.3840425 0.6993381 +32.64117 0.3840425 0.6993381 +43.83129 0.3840425 0.6993381 +58.85664 0.3840425 0.6993381 +-0.0175068 0.518627 0.6993381 +-0.01161267 0.518627 0.6993381 +-0.005718534 0.518627 0.6993381 +0.0001755984 0.518627 0.6993381 +0.006069731 0.518627 0.6993381 +0.01197402 0.518627 0.6993381 +0.01903886 0.518627 0.6993381 +0.02852504 0.518627 0.6993381 +0.04126244 0.518627 0.6993381 +0.05836535 0.518627 0.6993381 +0.08132997 0.518627 0.6993381 +0.1121653 0.518627 0.6993381 +0.1535689 0.518627 0.6993381 +0.2091628 0.518627 0.6993381 +0.2838106 0.518627 0.6993381 +0.3840425 0.518627 0.6993381 +0.518627 0.518627 0.6993381 +0.6993381 0.518627 0.6993381 +0.9419845 0.518627 0.6993381 +1.267794 0.518627 0.6993381 +1.705268 0.518627 0.6993381 +2.292679 0.518627 0.6993381 +3.081414 0.518627 0.6993381 +4.140474 0.518627 0.6993381 +5.562508 0.518627 0.6993381 +7.471917 0.518627 0.6993381 +10.03574 0.518627 0.6993381 +13.47828 0.518627 0.6993381 +18.10068 0.518627 0.6993381 +24.30731 0.518627 0.6993381 +32.64117 0.518627 0.6993381 +43.83129 0.518627 0.6993381 +58.85664 0.518627 0.6993381 +-0.0175068 0.6993381 0.6993381 +-0.01161267 0.6993381 0.6993381 +-0.005718534 0.6993381 0.6993381 +0.0001755984 0.6993381 0.6993381 +0.006069731 0.6993381 0.6993381 +0.01197402 0.6993381 0.6993381 +0.01903886 0.6993381 0.6993381 +0.02852504 0.6993381 0.6993381 +0.04126244 0.6993381 0.6993381 +0.05836535 0.6993381 0.6993381 +0.08132997 0.6993381 0.6993381 +0.1121653 0.6993381 0.6993381 +0.1535689 0.6993381 0.6993381 +0.2091628 0.6993381 0.6993381 +0.2838106 0.6993381 0.6993381 +0.3840425 0.6993381 0.6993381 +0.518627 0.6993381 0.6993381 +0.6993381 0.6993381 0.6993381 +0.9419845 0.6993381 0.6993381 +1.267794 0.6993381 0.6993381 +1.705268 0.6993381 0.6993381 +2.292679 0.6993381 0.6993381 +3.081414 0.6993381 0.6993381 +4.140474 0.6993381 0.6993381 +5.562508 0.6993381 0.6993381 +7.471917 0.6993381 0.6993381 +10.03574 0.6993381 0.6993381 +13.47828 0.6993381 0.6993381 +18.10068 0.6993381 0.6993381 +24.30731 0.6993381 0.6993381 +32.64117 0.6993381 0.6993381 +43.83129 0.6993381 0.6993381 +58.85664 0.6993381 0.6993381 +-0.0175068 0.9419845 0.6993381 +-0.01161267 0.9419845 0.6993381 +-0.005718534 0.9419845 0.6993381 +0.0001755984 0.9419845 0.6993381 +0.006069731 0.9419845 0.6993381 +0.01197402 0.9419845 0.6993381 +0.01903886 0.9419845 0.6993381 +0.02852504 0.9419845 0.6993381 +0.04126244 0.9419845 0.6993381 +0.05836535 0.9419845 0.6993381 +0.08132997 0.9419845 0.6993381 +0.1121653 0.9419845 0.6993381 +0.1535689 0.9419845 0.6993381 +0.2091628 0.9419845 0.6993381 +0.2838106 0.9419845 0.6993381 +0.3840425 0.9419845 0.6993381 +0.518627 0.9419845 0.6993381 +0.6993381 0.9419845 0.6993381 +0.9419845 0.9419845 0.6993381 +1.267794 0.9419845 0.6993381 +1.705268 0.9419845 0.6993381 +2.292679 0.9419845 0.6993381 +3.081414 0.9419845 0.6993381 +4.140474 0.9419845 0.6993381 +5.562508 0.9419845 0.6993381 +7.471917 0.9419845 0.6993381 +10.03574 0.9419845 0.6993381 +13.47828 0.9419845 0.6993381 +18.10068 0.9419845 0.6993381 +24.30731 0.9419845 0.6993381 +32.64117 0.9419845 0.6993381 +43.83129 0.9419845 0.6993381 +58.85664 0.9419845 0.6993381 +-0.0175068 1.267794 0.6993381 +-0.01161267 1.267794 0.6993381 +-0.005718534 1.267794 0.6993381 +0.0001755984 1.267794 0.6993381 +0.006069731 1.267794 0.6993381 +0.01197402 1.267794 0.6993381 +0.01903886 1.267794 0.6993381 +0.02852504 1.267794 0.6993381 +0.04126244 1.267794 0.6993381 +0.05836535 1.267794 0.6993381 +0.08132997 1.267794 0.6993381 +0.1121653 1.267794 0.6993381 +0.1535689 1.267794 0.6993381 +0.2091628 1.267794 0.6993381 +0.2838106 1.267794 0.6993381 +0.3840425 1.267794 0.6993381 +0.518627 1.267794 0.6993381 +0.6993381 1.267794 0.6993381 +0.9419845 1.267794 0.6993381 +1.267794 1.267794 0.6993381 +1.705268 1.267794 0.6993381 +2.292679 1.267794 0.6993381 +3.081414 1.267794 0.6993381 +4.140474 1.267794 0.6993381 +5.562508 1.267794 0.6993381 +7.471917 1.267794 0.6993381 +10.03574 1.267794 0.6993381 +13.47828 1.267794 0.6993381 +18.10068 1.267794 0.6993381 +24.30731 1.267794 0.6993381 +32.64117 1.267794 0.6993381 +43.83129 1.267794 0.6993381 +58.85664 1.267794 0.6993381 +-0.0175068 1.705268 0.6993381 +-0.01161267 1.705268 0.6993381 +-0.005718534 1.705268 0.6993381 +0.0001755984 1.705268 0.6993381 +0.006069731 1.705268 0.6993381 +0.01197402 1.705268 0.6993381 +0.01903886 1.705268 0.6993381 +0.02852504 1.705268 0.6993381 +0.04126244 1.705268 0.6993381 +0.05836535 1.705268 0.6993381 +0.08132997 1.705268 0.6993381 +0.1121653 1.705268 0.6993381 +0.1535689 1.705268 0.6993381 +0.2091628 1.705268 0.6993381 +0.2838106 1.705268 0.6993381 +0.3840425 1.705268 0.6993381 +0.518627 1.705268 0.6993381 +0.6993381 1.705268 0.6993381 +0.9419845 1.705268 0.6993381 +1.267794 1.705268 0.6993381 +1.705268 1.705268 0.6993381 +2.292679 1.705268 0.6993381 +3.081414 1.705268 0.6993381 +4.140474 1.705268 0.6993381 +5.562508 1.705268 0.6993381 +7.471917 1.705268 0.6993381 +10.03574 1.705268 0.6993381 +13.47828 1.705268 0.6993381 +18.10068 1.705268 0.6993381 +24.30731 1.705268 0.6993381 +32.64117 1.705268 0.6993381 +43.83129 1.705268 0.6993381 +58.85664 1.705268 0.6993381 +-0.0175068 2.292679 0.6993381 +-0.01161267 2.292679 0.6993381 +-0.005718534 2.292679 0.6993381 +0.0001755984 2.292679 0.6993381 +0.006069731 2.292679 0.6993381 +0.01197402 2.292679 0.6993381 +0.01903886 2.292679 0.6993381 +0.02852504 2.292679 0.6993381 +0.04126244 2.292679 0.6993381 +0.05836535 2.292679 0.6993381 +0.08132997 2.292679 0.6993381 +0.1121653 2.292679 0.6993381 +0.1535689 2.292679 0.6993381 +0.2091628 2.292679 0.6993381 +0.2838106 2.292679 0.6993381 +0.3840425 2.292679 0.6993381 +0.518627 2.292679 0.6993381 +0.6993381 2.292679 0.6993381 +0.9419845 2.292679 0.6993381 +1.267794 2.292679 0.6993381 +1.705268 2.292679 0.6993381 +2.292679 2.292679 0.6993381 +3.081414 2.292679 0.6993381 +4.140474 2.292679 0.6993381 +5.562508 2.292679 0.6993381 +7.471917 2.292679 0.6993381 +10.03574 2.292679 0.6993381 +13.47828 2.292679 0.6993381 +18.10068 2.292679 0.6993381 +24.30731 2.292679 0.6993381 +32.64117 2.292679 0.6993381 +43.83129 2.292679 0.6993381 +58.85664 2.292679 0.6993381 +-0.0175068 3.081414 0.6993381 +-0.01161267 3.081414 0.6993381 +-0.005718534 3.081414 0.6993381 +0.0001755984 3.081414 0.6993381 +0.006069731 3.081414 0.6993381 +0.01197402 3.081414 0.6993381 +0.01903886 3.081414 0.6993381 +0.02852504 3.081414 0.6993381 +0.04126244 3.081414 0.6993381 +0.05836535 3.081414 0.6993381 +0.08132997 3.081414 0.6993381 +0.1121653 3.081414 0.6993381 +0.1535689 3.081414 0.6993381 +0.2091628 3.081414 0.6993381 +0.2838106 3.081414 0.6993381 +0.3840425 3.081414 0.6993381 +0.518627 3.081414 0.6993381 +0.6993381 3.081414 0.6993381 +0.9419845 3.081414 0.6993381 +1.267794 3.081414 0.6993381 +1.705268 3.081414 0.6993381 +2.292679 3.081414 0.6993381 +3.081414 3.081414 0.6993381 +4.140474 3.081414 0.6993381 +5.562508 3.081414 0.6993381 +7.471917 3.081414 0.6993381 +10.03574 3.081414 0.6993381 +13.47828 3.081414 0.6993381 +18.10068 3.081414 0.6993381 +24.30731 3.081414 0.6993381 +32.64117 3.081414 0.6993381 +43.83129 3.081414 0.6993381 +58.85664 3.081414 0.6993381 +-0.0175068 4.140474 0.6993381 +-0.01161267 4.140474 0.6993381 +-0.005718534 4.140474 0.6993381 +0.0001755984 4.140474 0.6993381 +0.006069731 4.140474 0.6993381 +0.01197402 4.140474 0.6993381 +0.01903886 4.140474 0.6993381 +0.02852504 4.140474 0.6993381 +0.04126244 4.140474 0.6993381 +0.05836535 4.140474 0.6993381 +0.08132997 4.140474 0.6993381 +0.1121653 4.140474 0.6993381 +0.1535689 4.140474 0.6993381 +0.2091628 4.140474 0.6993381 +0.2838106 4.140474 0.6993381 +0.3840425 4.140474 0.6993381 +0.518627 4.140474 0.6993381 +0.6993381 4.140474 0.6993381 +0.9419845 4.140474 0.6993381 +1.267794 4.140474 0.6993381 +1.705268 4.140474 0.6993381 +2.292679 4.140474 0.6993381 +3.081414 4.140474 0.6993381 +4.140474 4.140474 0.6993381 +5.562508 4.140474 0.6993381 +7.471917 4.140474 0.6993381 +10.03574 4.140474 0.6993381 +13.47828 4.140474 0.6993381 +18.10068 4.140474 0.6993381 +24.30731 4.140474 0.6993381 +32.64117 4.140474 0.6993381 +43.83129 4.140474 0.6993381 +58.85664 4.140474 0.6993381 +-0.0175068 5.562508 0.6993381 +-0.01161267 5.562508 0.6993381 +-0.005718534 5.562508 0.6993381 +0.0001755984 5.562508 0.6993381 +0.006069731 5.562508 0.6993381 +0.01197402 5.562508 0.6993381 +0.01903886 5.562508 0.6993381 +0.02852504 5.562508 0.6993381 +0.04126244 5.562508 0.6993381 +0.05836535 5.562508 0.6993381 +0.08132997 5.562508 0.6993381 +0.1121653 5.562508 0.6993381 +0.1535689 5.562508 0.6993381 +0.2091628 5.562508 0.6993381 +0.2838106 5.562508 0.6993381 +0.3840425 5.562508 0.6993381 +0.518627 5.562508 0.6993381 +0.6993381 5.562508 0.6993381 +0.9419845 5.562508 0.6993381 +1.267794 5.562508 0.6993381 +1.705268 5.562508 0.6993381 +2.292679 5.562508 0.6993381 +3.081414 5.562508 0.6993381 +4.140474 5.562508 0.6993381 +5.562508 5.562508 0.6993381 +7.471917 5.562508 0.6993381 +10.03574 5.562508 0.6993381 +13.47828 5.562508 0.6993381 +18.10068 5.562508 0.6993381 +24.30731 5.562508 0.6993381 +32.64117 5.562508 0.6993381 +43.83129 5.562508 0.6993381 +58.85664 5.562508 0.6993381 +-0.0175068 7.471917 0.6993381 +-0.01161267 7.471917 0.6993381 +-0.005718534 7.471917 0.6993381 +0.0001755984 7.471917 0.6993381 +0.006069731 7.471917 0.6993381 +0.01197402 7.471917 0.6993381 +0.01903886 7.471917 0.6993381 +0.02852504 7.471917 0.6993381 +0.04126244 7.471917 0.6993381 +0.05836535 7.471917 0.6993381 +0.08132997 7.471917 0.6993381 +0.1121653 7.471917 0.6993381 +0.1535689 7.471917 0.6993381 +0.2091628 7.471917 0.6993381 +0.2838106 7.471917 0.6993381 +0.3840425 7.471917 0.6993381 +0.518627 7.471917 0.6993381 +0.6993381 7.471917 0.6993381 +0.9419845 7.471917 0.6993381 +1.267794 7.471917 0.6993381 +1.705268 7.471917 0.6993381 +2.292679 7.471917 0.6993381 +3.081414 7.471917 0.6993381 +4.140474 7.471917 0.6993381 +5.562508 7.471917 0.6993381 +7.471917 7.471917 0.6993381 +10.03574 7.471917 0.6993381 +13.47828 7.471917 0.6993381 +18.10068 7.471917 0.6993381 +24.30731 7.471917 0.6993381 +32.64117 7.471917 0.6993381 +43.83129 7.471917 0.6993381 +58.85664 7.471917 0.6993381 +-0.0175068 10.03574 0.6993381 +-0.01161267 10.03574 0.6993381 +-0.005718534 10.03574 0.6993381 +0.0001755984 10.03574 0.6993381 +0.006069731 10.03574 0.6993381 +0.01197402 10.03574 0.6993381 +0.01903886 10.03574 0.6993381 +0.02852504 10.03574 0.6993381 +0.04126244 10.03574 0.6993381 +0.05836535 10.03574 0.6993381 +0.08132997 10.03574 0.6993381 +0.1121653 10.03574 0.6993381 +0.1535689 10.03574 0.6993381 +0.2091628 10.03574 0.6993381 +0.2838106 10.03574 0.6993381 +0.3840425 10.03574 0.6993381 +0.518627 10.03574 0.6993381 +0.6993381 10.03574 0.6993381 +0.9419845 10.03574 0.6993381 +1.267794 10.03574 0.6993381 +1.705268 10.03574 0.6993381 +2.292679 10.03574 0.6993381 +3.081414 10.03574 0.6993381 +4.140474 10.03574 0.6993381 +5.562508 10.03574 0.6993381 +7.471917 10.03574 0.6993381 +10.03574 10.03574 0.6993381 +13.47828 10.03574 0.6993381 +18.10068 10.03574 0.6993381 +24.30731 10.03574 0.6993381 +32.64117 10.03574 0.6993381 +43.83129 10.03574 0.6993381 +58.85664 10.03574 0.6993381 +-0.0175068 13.47828 0.6993381 +-0.01161267 13.47828 0.6993381 +-0.005718534 13.47828 0.6993381 +0.0001755984 13.47828 0.6993381 +0.006069731 13.47828 0.6993381 +0.01197402 13.47828 0.6993381 +0.01903886 13.47828 0.6993381 +0.02852504 13.47828 0.6993381 +0.04126244 13.47828 0.6993381 +0.05836535 13.47828 0.6993381 +0.08132997 13.47828 0.6993381 +0.1121653 13.47828 0.6993381 +0.1535689 13.47828 0.6993381 +0.2091628 13.47828 0.6993381 +0.2838106 13.47828 0.6993381 +0.3840425 13.47828 0.6993381 +0.518627 13.47828 0.6993381 +0.6993381 13.47828 0.6993381 +0.9419845 13.47828 0.6993381 +1.267794 13.47828 0.6993381 +1.705268 13.47828 0.6993381 +2.292679 13.47828 0.6993381 +3.081414 13.47828 0.6993381 +4.140474 13.47828 0.6993381 +5.562508 13.47828 0.6993381 +7.471917 13.47828 0.6993381 +10.03574 13.47828 0.6993381 +13.47828 13.47828 0.6993381 +18.10068 13.47828 0.6993381 +24.30731 13.47828 0.6993381 +32.64117 13.47828 0.6993381 +43.83129 13.47828 0.6993381 +58.85664 13.47828 0.6993381 +-0.0175068 18.10068 0.6993381 +-0.01161267 18.10068 0.6993381 +-0.005718534 18.10068 0.6993381 +0.0001755984 18.10068 0.6993381 +0.006069731 18.10068 0.6993381 +0.01197402 18.10068 0.6993381 +0.01903886 18.10068 0.6993381 +0.02852504 18.10068 0.6993381 +0.04126244 18.10068 0.6993381 +0.05836535 18.10068 0.6993381 +0.08132997 18.10068 0.6993381 +0.1121653 18.10068 0.6993381 +0.1535689 18.10068 0.6993381 +0.2091628 18.10068 0.6993381 +0.2838106 18.10068 0.6993381 +0.3840425 18.10068 0.6993381 +0.518627 18.10068 0.6993381 +0.6993381 18.10068 0.6993381 +0.9419845 18.10068 0.6993381 +1.267794 18.10068 0.6993381 +1.705268 18.10068 0.6993381 +2.292679 18.10068 0.6993381 +3.081414 18.10068 0.6993381 +4.140474 18.10068 0.6993381 +5.562508 18.10068 0.6993381 +7.471917 18.10068 0.6993381 +10.03574 18.10068 0.6993381 +13.47828 18.10068 0.6993381 +18.10068 18.10068 0.6993381 +24.30731 18.10068 0.6993381 +32.64117 18.10068 0.6993381 +43.83129 18.10068 0.6993381 +58.85664 18.10068 0.6993381 +-0.0175068 24.30731 0.6993381 +-0.01161267 24.30731 0.6993381 +-0.005718534 24.30731 0.6993381 +0.0001755984 24.30731 0.6993381 +0.006069731 24.30731 0.6993381 +0.01197402 24.30731 0.6993381 +0.01903886 24.30731 0.6993381 +0.02852504 24.30731 0.6993381 +0.04126244 24.30731 0.6993381 +0.05836535 24.30731 0.6993381 +0.08132997 24.30731 0.6993381 +0.1121653 24.30731 0.6993381 +0.1535689 24.30731 0.6993381 +0.2091628 24.30731 0.6993381 +0.2838106 24.30731 0.6993381 +0.3840425 24.30731 0.6993381 +0.518627 24.30731 0.6993381 +0.6993381 24.30731 0.6993381 +0.9419845 24.30731 0.6993381 +1.267794 24.30731 0.6993381 +1.705268 24.30731 0.6993381 +2.292679 24.30731 0.6993381 +3.081414 24.30731 0.6993381 +4.140474 24.30731 0.6993381 +5.562508 24.30731 0.6993381 +7.471917 24.30731 0.6993381 +10.03574 24.30731 0.6993381 +13.47828 24.30731 0.6993381 +18.10068 24.30731 0.6993381 +24.30731 24.30731 0.6993381 +32.64117 24.30731 0.6993381 +43.83129 24.30731 0.6993381 +58.85664 24.30731 0.6993381 +-0.0175068 32.64117 0.6993381 +-0.01161267 32.64117 0.6993381 +-0.005718534 32.64117 0.6993381 +0.0001755984 32.64117 0.6993381 +0.006069731 32.64117 0.6993381 +0.01197402 32.64117 0.6993381 +0.01903886 32.64117 0.6993381 +0.02852504 32.64117 0.6993381 +0.04126244 32.64117 0.6993381 +0.05836535 32.64117 0.6993381 +0.08132997 32.64117 0.6993381 +0.1121653 32.64117 0.6993381 +0.1535689 32.64117 0.6993381 +0.2091628 32.64117 0.6993381 +0.2838106 32.64117 0.6993381 +0.3840425 32.64117 0.6993381 +0.518627 32.64117 0.6993381 +0.6993381 32.64117 0.6993381 +0.9419845 32.64117 0.6993381 +1.267794 32.64117 0.6993381 +1.705268 32.64117 0.6993381 +2.292679 32.64117 0.6993381 +3.081414 32.64117 0.6993381 +4.140474 32.64117 0.6993381 +5.562508 32.64117 0.6993381 +7.471917 32.64117 0.6993381 +10.03574 32.64117 0.6993381 +13.47828 32.64117 0.6993381 +18.10068 32.64117 0.6993381 +24.30731 32.64117 0.6993381 +32.64117 32.64117 0.6993381 +43.83129 32.64117 0.6993381 +58.85664 32.64117 0.6993381 +-0.0175068 43.83129 0.6993381 +-0.01161267 43.83129 0.6993381 +-0.005718534 43.83129 0.6993381 +0.0001755984 43.83129 0.6993381 +0.006069731 43.83129 0.6993381 +0.01197402 43.83129 0.6993381 +0.01903886 43.83129 0.6993381 +0.02852504 43.83129 0.6993381 +0.04126244 43.83129 0.6993381 +0.05836535 43.83129 0.6993381 +0.08132997 43.83129 0.6993381 +0.1121653 43.83129 0.6993381 +0.1535689 43.83129 0.6993381 +0.2091628 43.83129 0.6993381 +0.2838106 43.83129 0.6993381 +0.3840425 43.83129 0.6993381 +0.518627 43.83129 0.6993381 +0.6993381 43.83129 0.6993381 +0.9419845 43.83129 0.6993381 +1.267794 43.83129 0.6993381 +1.705268 43.83129 0.6993381 +2.292679 43.83129 0.6993381 +3.081414 43.83129 0.6993381 +4.140474 43.83129 0.6993381 +5.562508 43.83129 0.6993381 +7.471917 43.83129 0.6993381 +10.03574 43.83129 0.6993381 +13.47828 43.83129 0.6993381 +18.10068 43.83129 0.6993381 +24.30731 43.83129 0.6993381 +32.64117 43.83129 0.6993381 +43.83129 43.83129 0.6993381 +58.85664 43.83129 0.6993381 +-0.0175068 58.85664 0.6993381 +-0.01161267 58.85664 0.6993381 +-0.005718534 58.85664 0.6993381 +0.0001755984 58.85664 0.6993381 +0.006069731 58.85664 0.6993381 +0.01197402 58.85664 0.6993381 +0.01903886 58.85664 0.6993381 +0.02852504 58.85664 0.6993381 +0.04126244 58.85664 0.6993381 +0.05836535 58.85664 0.6993381 +0.08132997 58.85664 0.6993381 +0.1121653 58.85664 0.6993381 +0.1535689 58.85664 0.6993381 +0.2091628 58.85664 0.6993381 +0.2838106 58.85664 0.6993381 +0.3840425 58.85664 0.6993381 +0.518627 58.85664 0.6993381 +0.6993381 58.85664 0.6993381 +0.9419845 58.85664 0.6993381 +1.267794 58.85664 0.6993381 +1.705268 58.85664 0.6993381 +2.292679 58.85664 0.6993381 +3.081414 58.85664 0.6993381 +4.140474 58.85664 0.6993381 +5.562508 58.85664 0.6993381 +7.471917 58.85664 0.6993381 +10.03574 58.85664 0.6993381 +13.47828 58.85664 0.6993381 +18.10068 58.85664 0.6993381 +24.30731 58.85664 0.6993381 +32.64117 58.85664 0.6993381 +43.83129 58.85664 0.6993381 +58.85664 58.85664 0.6993381 +-0.0175068 -0.0175068 0.9419845 +-0.01161267 -0.0175068 0.9419845 +-0.005718534 -0.0175068 0.9419845 +0.0001755984 -0.0175068 0.9419845 +0.006069731 -0.0175068 0.9419845 +0.01197402 -0.0175068 0.9419845 +0.01903886 -0.0175068 0.9419845 +0.02852504 -0.0175068 0.9419845 +0.04126244 -0.0175068 0.9419845 +0.05836535 -0.0175068 0.9419845 +0.08132997 -0.0175068 0.9419845 +0.1121653 -0.0175068 0.9419845 +0.1535689 -0.0175068 0.9419845 +0.2091628 -0.0175068 0.9419845 +0.2838106 -0.0175068 0.9419845 +0.3840425 -0.0175068 0.9419845 +0.518627 -0.0175068 0.9419845 +0.6993381 -0.0175068 0.9419845 +0.9419845 -0.0175068 0.9419845 +1.267794 -0.0175068 0.9419845 +1.705268 -0.0175068 0.9419845 +2.292679 -0.0175068 0.9419845 +3.081414 -0.0175068 0.9419845 +4.140474 -0.0175068 0.9419845 +5.562508 -0.0175068 0.9419845 +7.471917 -0.0175068 0.9419845 +10.03574 -0.0175068 0.9419845 +13.47828 -0.0175068 0.9419845 +18.10068 -0.0175068 0.9419845 +24.30731 -0.0175068 0.9419845 +32.64117 -0.0175068 0.9419845 +43.83129 -0.0175068 0.9419845 +58.85664 -0.0175068 0.9419845 +-0.0175068 -0.01161267 0.9419845 +-0.01161267 -0.01161267 0.9419845 +-0.005718534 -0.01161267 0.9419845 +0.0001755984 -0.01161267 0.9419845 +0.006069731 -0.01161267 0.9419845 +0.01197402 -0.01161267 0.9419845 +0.01903886 -0.01161267 0.9419845 +0.02852504 -0.01161267 0.9419845 +0.04126244 -0.01161267 0.9419845 +0.05836535 -0.01161267 0.9419845 +0.08132997 -0.01161267 0.9419845 +0.1121653 -0.01161267 0.9419845 +0.1535689 -0.01161267 0.9419845 +0.2091628 -0.01161267 0.9419845 +0.2838106 -0.01161267 0.9419845 +0.3840425 -0.01161267 0.9419845 +0.518627 -0.01161267 0.9419845 +0.6993381 -0.01161267 0.9419845 +0.9419845 -0.01161267 0.9419845 +1.267794 -0.01161267 0.9419845 +1.705268 -0.01161267 0.9419845 +2.292679 -0.01161267 0.9419845 +3.081414 -0.01161267 0.9419845 +4.140474 -0.01161267 0.9419845 +5.562508 -0.01161267 0.9419845 +7.471917 -0.01161267 0.9419845 +10.03574 -0.01161267 0.9419845 +13.47828 -0.01161267 0.9419845 +18.10068 -0.01161267 0.9419845 +24.30731 -0.01161267 0.9419845 +32.64117 -0.01161267 0.9419845 +43.83129 -0.01161267 0.9419845 +58.85664 -0.01161267 0.9419845 +-0.0175068 -0.005718534 0.9419845 +-0.01161267 -0.005718534 0.9419845 +-0.005718534 -0.005718534 0.9419845 +0.0001755984 -0.005718534 0.9419845 +0.006069731 -0.005718534 0.9419845 +0.01197402 -0.005718534 0.9419845 +0.01903886 -0.005718534 0.9419845 +0.02852504 -0.005718534 0.9419845 +0.04126244 -0.005718534 0.9419845 +0.05836535 -0.005718534 0.9419845 +0.08132997 -0.005718534 0.9419845 +0.1121653 -0.005718534 0.9419845 +0.1535689 -0.005718534 0.9419845 +0.2091628 -0.005718534 0.9419845 +0.2838106 -0.005718534 0.9419845 +0.3840425 -0.005718534 0.9419845 +0.518627 -0.005718534 0.9419845 +0.6993381 -0.005718534 0.9419845 +0.9419845 -0.005718534 0.9419845 +1.267794 -0.005718534 0.9419845 +1.705268 -0.005718534 0.9419845 +2.292679 -0.005718534 0.9419845 +3.081414 -0.005718534 0.9419845 +4.140474 -0.005718534 0.9419845 +5.562508 -0.005718534 0.9419845 +7.471917 -0.005718534 0.9419845 +10.03574 -0.005718534 0.9419845 +13.47828 -0.005718534 0.9419845 +18.10068 -0.005718534 0.9419845 +24.30731 -0.005718534 0.9419845 +32.64117 -0.005718534 0.9419845 +43.83129 -0.005718534 0.9419845 +58.85664 -0.005718534 0.9419845 +-0.0175068 0.0001755984 0.9419845 +-0.01161267 0.0001755984 0.9419845 +-0.005718534 0.0001755984 0.9419845 +0.0001755984 0.0001755984 0.9419845 +0.006069731 0.0001755984 0.9419845 +0.01197402 0.0001755984 0.9419845 +0.01903886 0.0001755984 0.9419845 +0.02852504 0.0001755984 0.9419845 +0.04126244 0.0001755984 0.9419845 +0.05836535 0.0001755984 0.9419845 +0.08132997 0.0001755984 0.9419845 +0.1121653 0.0001755984 0.9419845 +0.1535689 0.0001755984 0.9419845 +0.2091628 0.0001755984 0.9419845 +0.2838106 0.0001755984 0.9419845 +0.3840425 0.0001755984 0.9419845 +0.518627 0.0001755984 0.9419845 +0.6993381 0.0001755984 0.9419845 +0.9419845 0.0001755984 0.9419845 +1.267794 0.0001755984 0.9419845 +1.705268 0.0001755984 0.9419845 +2.292679 0.0001755984 0.9419845 +3.081414 0.0001755984 0.9419845 +4.140474 0.0001755984 0.9419845 +5.562508 0.0001755984 0.9419845 +7.471917 0.0001755984 0.9419845 +10.03574 0.0001755984 0.9419845 +13.47828 0.0001755984 0.9419845 +18.10068 0.0001755984 0.9419845 +24.30731 0.0001755984 0.9419845 +32.64117 0.0001755984 0.9419845 +43.83129 0.0001755984 0.9419845 +58.85664 0.0001755984 0.9419845 +-0.0175068 0.006069731 0.9419845 +-0.01161267 0.006069731 0.9419845 +-0.005718534 0.006069731 0.9419845 +0.0001755984 0.006069731 0.9419845 +0.006069731 0.006069731 0.9419845 +0.01197402 0.006069731 0.9419845 +0.01903886 0.006069731 0.9419845 +0.02852504 0.006069731 0.9419845 +0.04126244 0.006069731 0.9419845 +0.05836535 0.006069731 0.9419845 +0.08132997 0.006069731 0.9419845 +0.1121653 0.006069731 0.9419845 +0.1535689 0.006069731 0.9419845 +0.2091628 0.006069731 0.9419845 +0.2838106 0.006069731 0.9419845 +0.3840425 0.006069731 0.9419845 +0.518627 0.006069731 0.9419845 +0.6993381 0.006069731 0.9419845 +0.9419845 0.006069731 0.9419845 +1.267794 0.006069731 0.9419845 +1.705268 0.006069731 0.9419845 +2.292679 0.006069731 0.9419845 +3.081414 0.006069731 0.9419845 +4.140474 0.006069731 0.9419845 +5.562508 0.006069731 0.9419845 +7.471917 0.006069731 0.9419845 +10.03574 0.006069731 0.9419845 +13.47828 0.006069731 0.9419845 +18.10068 0.006069731 0.9419845 +24.30731 0.006069731 0.9419845 +32.64117 0.006069731 0.9419845 +43.83129 0.006069731 0.9419845 +58.85664 0.006069731 0.9419845 +-0.0175068 0.01197402 0.9419845 +-0.01161267 0.01197402 0.9419845 +-0.005718534 0.01197402 0.9419845 +0.0001755984 0.01197402 0.9419845 +0.006069731 0.01197402 0.9419845 +0.01197402 0.01197402 0.9419845 +0.01903886 0.01197402 0.9419845 +0.02852504 0.01197402 0.9419845 +0.04126244 0.01197402 0.9419845 +0.05836535 0.01197402 0.9419845 +0.08132997 0.01197402 0.9419845 +0.1121653 0.01197402 0.9419845 +0.1535689 0.01197402 0.9419845 +0.2091628 0.01197402 0.9419845 +0.2838106 0.01197402 0.9419845 +0.3840425 0.01197402 0.9419845 +0.518627 0.01197402 0.9419845 +0.6993381 0.01197402 0.9419845 +0.9419845 0.01197402 0.9419845 +1.267794 0.01197402 0.9419845 +1.705268 0.01197402 0.9419845 +2.292679 0.01197402 0.9419845 +3.081414 0.01197402 0.9419845 +4.140474 0.01197402 0.9419845 +5.562508 0.01197402 0.9419845 +7.471917 0.01197402 0.9419845 +10.03574 0.01197402 0.9419845 +13.47828 0.01197402 0.9419845 +18.10068 0.01197402 0.9419845 +24.30731 0.01197402 0.9419845 +32.64117 0.01197402 0.9419845 +43.83129 0.01197402 0.9419845 +58.85664 0.01197402 0.9419845 +-0.0175068 0.01903886 0.9419845 +-0.01161267 0.01903886 0.9419845 +-0.005718534 0.01903886 0.9419845 +0.0001755984 0.01903886 0.9419845 +0.006069731 0.01903886 0.9419845 +0.01197402 0.01903886 0.9419845 +0.01903886 0.01903886 0.9419845 +0.02852504 0.01903886 0.9419845 +0.04126244 0.01903886 0.9419845 +0.05836535 0.01903886 0.9419845 +0.08132997 0.01903886 0.9419845 +0.1121653 0.01903886 0.9419845 +0.1535689 0.01903886 0.9419845 +0.2091628 0.01903886 0.9419845 +0.2838106 0.01903886 0.9419845 +0.3840425 0.01903886 0.9419845 +0.518627 0.01903886 0.9419845 +0.6993381 0.01903886 0.9419845 +0.9419845 0.01903886 0.9419845 +1.267794 0.01903886 0.9419845 +1.705268 0.01903886 0.9419845 +2.292679 0.01903886 0.9419845 +3.081414 0.01903886 0.9419845 +4.140474 0.01903886 0.9419845 +5.562508 0.01903886 0.9419845 +7.471917 0.01903886 0.9419845 +10.03574 0.01903886 0.9419845 +13.47828 0.01903886 0.9419845 +18.10068 0.01903886 0.9419845 +24.30731 0.01903886 0.9419845 +32.64117 0.01903886 0.9419845 +43.83129 0.01903886 0.9419845 +58.85664 0.01903886 0.9419845 +-0.0175068 0.02852504 0.9419845 +-0.01161267 0.02852504 0.9419845 +-0.005718534 0.02852504 0.9419845 +0.0001755984 0.02852504 0.9419845 +0.006069731 0.02852504 0.9419845 +0.01197402 0.02852504 0.9419845 +0.01903886 0.02852504 0.9419845 +0.02852504 0.02852504 0.9419845 +0.04126244 0.02852504 0.9419845 +0.05836535 0.02852504 0.9419845 +0.08132997 0.02852504 0.9419845 +0.1121653 0.02852504 0.9419845 +0.1535689 0.02852504 0.9419845 +0.2091628 0.02852504 0.9419845 +0.2838106 0.02852504 0.9419845 +0.3840425 0.02852504 0.9419845 +0.518627 0.02852504 0.9419845 +0.6993381 0.02852504 0.9419845 +0.9419845 0.02852504 0.9419845 +1.267794 0.02852504 0.9419845 +1.705268 0.02852504 0.9419845 +2.292679 0.02852504 0.9419845 +3.081414 0.02852504 0.9419845 +4.140474 0.02852504 0.9419845 +5.562508 0.02852504 0.9419845 +7.471917 0.02852504 0.9419845 +10.03574 0.02852504 0.9419845 +13.47828 0.02852504 0.9419845 +18.10068 0.02852504 0.9419845 +24.30731 0.02852504 0.9419845 +32.64117 0.02852504 0.9419845 +43.83129 0.02852504 0.9419845 +58.85664 0.02852504 0.9419845 +-0.0175068 0.04126244 0.9419845 +-0.01161267 0.04126244 0.9419845 +-0.005718534 0.04126244 0.9419845 +0.0001755984 0.04126244 0.9419845 +0.006069731 0.04126244 0.9419845 +0.01197402 0.04126244 0.9419845 +0.01903886 0.04126244 0.9419845 +0.02852504 0.04126244 0.9419845 +0.04126244 0.04126244 0.9419845 +0.05836535 0.04126244 0.9419845 +0.08132997 0.04126244 0.9419845 +0.1121653 0.04126244 0.9419845 +0.1535689 0.04126244 0.9419845 +0.2091628 0.04126244 0.9419845 +0.2838106 0.04126244 0.9419845 +0.3840425 0.04126244 0.9419845 +0.518627 0.04126244 0.9419845 +0.6993381 0.04126244 0.9419845 +0.9419845 0.04126244 0.9419845 +1.267794 0.04126244 0.9419845 +1.705268 0.04126244 0.9419845 +2.292679 0.04126244 0.9419845 +3.081414 0.04126244 0.9419845 +4.140474 0.04126244 0.9419845 +5.562508 0.04126244 0.9419845 +7.471917 0.04126244 0.9419845 +10.03574 0.04126244 0.9419845 +13.47828 0.04126244 0.9419845 +18.10068 0.04126244 0.9419845 +24.30731 0.04126244 0.9419845 +32.64117 0.04126244 0.9419845 +43.83129 0.04126244 0.9419845 +58.85664 0.04126244 0.9419845 +-0.0175068 0.05836535 0.9419845 +-0.01161267 0.05836535 0.9419845 +-0.005718534 0.05836535 0.9419845 +0.0001755984 0.05836535 0.9419845 +0.006069731 0.05836535 0.9419845 +0.01197402 0.05836535 0.9419845 +0.01903886 0.05836535 0.9419845 +0.02852504 0.05836535 0.9419845 +0.04126244 0.05836535 0.9419845 +0.05836535 0.05836535 0.9419845 +0.08132997 0.05836535 0.9419845 +0.1121653 0.05836535 0.9419845 +0.1535689 0.05836535 0.9419845 +0.2091628 0.05836535 0.9419845 +0.2838106 0.05836535 0.9419845 +0.3840425 0.05836535 0.9419845 +0.518627 0.05836535 0.9419845 +0.6993381 0.05836535 0.9419845 +0.9419845 0.05836535 0.9419845 +1.267794 0.05836535 0.9419845 +1.705268 0.05836535 0.9419845 +2.292679 0.05836535 0.9419845 +3.081414 0.05836535 0.9419845 +4.140474 0.05836535 0.9419845 +5.562508 0.05836535 0.9419845 +7.471917 0.05836535 0.9419845 +10.03574 0.05836535 0.9419845 +13.47828 0.05836535 0.9419845 +18.10068 0.05836535 0.9419845 +24.30731 0.05836535 0.9419845 +32.64117 0.05836535 0.9419845 +43.83129 0.05836535 0.9419845 +58.85664 0.05836535 0.9419845 +-0.0175068 0.08132997 0.9419845 +-0.01161267 0.08132997 0.9419845 +-0.005718534 0.08132997 0.9419845 +0.0001755984 0.08132997 0.9419845 +0.006069731 0.08132997 0.9419845 +0.01197402 0.08132997 0.9419845 +0.01903886 0.08132997 0.9419845 +0.02852504 0.08132997 0.9419845 +0.04126244 0.08132997 0.9419845 +0.05836535 0.08132997 0.9419845 +0.08132997 0.08132997 0.9419845 +0.1121653 0.08132997 0.9419845 +0.1535689 0.08132997 0.9419845 +0.2091628 0.08132997 0.9419845 +0.2838106 0.08132997 0.9419845 +0.3840425 0.08132997 0.9419845 +0.518627 0.08132997 0.9419845 +0.6993381 0.08132997 0.9419845 +0.9419845 0.08132997 0.9419845 +1.267794 0.08132997 0.9419845 +1.705268 0.08132997 0.9419845 +2.292679 0.08132997 0.9419845 +3.081414 0.08132997 0.9419845 +4.140474 0.08132997 0.9419845 +5.562508 0.08132997 0.9419845 +7.471917 0.08132997 0.9419845 +10.03574 0.08132997 0.9419845 +13.47828 0.08132997 0.9419845 +18.10068 0.08132997 0.9419845 +24.30731 0.08132997 0.9419845 +32.64117 0.08132997 0.9419845 +43.83129 0.08132997 0.9419845 +58.85664 0.08132997 0.9419845 +-0.0175068 0.1121653 0.9419845 +-0.01161267 0.1121653 0.9419845 +-0.005718534 0.1121653 0.9419845 +0.0001755984 0.1121653 0.9419845 +0.006069731 0.1121653 0.9419845 +0.01197402 0.1121653 0.9419845 +0.01903886 0.1121653 0.9419845 +0.02852504 0.1121653 0.9419845 +0.04126244 0.1121653 0.9419845 +0.05836535 0.1121653 0.9419845 +0.08132997 0.1121653 0.9419845 +0.1121653 0.1121653 0.9419845 +0.1535689 0.1121653 0.9419845 +0.2091628 0.1121653 0.9419845 +0.2838106 0.1121653 0.9419845 +0.3840425 0.1121653 0.9419845 +0.518627 0.1121653 0.9419845 +0.6993381 0.1121653 0.9419845 +0.9419845 0.1121653 0.9419845 +1.267794 0.1121653 0.9419845 +1.705268 0.1121653 0.9419845 +2.292679 0.1121653 0.9419845 +3.081414 0.1121653 0.9419845 +4.140474 0.1121653 0.9419845 +5.562508 0.1121653 0.9419845 +7.471917 0.1121653 0.9419845 +10.03574 0.1121653 0.9419845 +13.47828 0.1121653 0.9419845 +18.10068 0.1121653 0.9419845 +24.30731 0.1121653 0.9419845 +32.64117 0.1121653 0.9419845 +43.83129 0.1121653 0.9419845 +58.85664 0.1121653 0.9419845 +-0.0175068 0.1535689 0.9419845 +-0.01161267 0.1535689 0.9419845 +-0.005718534 0.1535689 0.9419845 +0.0001755984 0.1535689 0.9419845 +0.006069731 0.1535689 0.9419845 +0.01197402 0.1535689 0.9419845 +0.01903886 0.1535689 0.9419845 +0.02852504 0.1535689 0.9419845 +0.04126244 0.1535689 0.9419845 +0.05836535 0.1535689 0.9419845 +0.08132997 0.1535689 0.9419845 +0.1121653 0.1535689 0.9419845 +0.1535689 0.1535689 0.9419845 +0.2091628 0.1535689 0.9419845 +0.2838106 0.1535689 0.9419845 +0.3840425 0.1535689 0.9419845 +0.518627 0.1535689 0.9419845 +0.6993381 0.1535689 0.9419845 +0.9419845 0.1535689 0.9419845 +1.267794 0.1535689 0.9419845 +1.705268 0.1535689 0.9419845 +2.292679 0.1535689 0.9419845 +3.081414 0.1535689 0.9419845 +4.140474 0.1535689 0.9419845 +5.562508 0.1535689 0.9419845 +7.471917 0.1535689 0.9419845 +10.03574 0.1535689 0.9419845 +13.47828 0.1535689 0.9419845 +18.10068 0.1535689 0.9419845 +24.30731 0.1535689 0.9419845 +32.64117 0.1535689 0.9419845 +43.83129 0.1535689 0.9419845 +58.85664 0.1535689 0.9419845 +-0.0175068 0.2091628 0.9419845 +-0.01161267 0.2091628 0.9419845 +-0.005718534 0.2091628 0.9419845 +0.0001755984 0.2091628 0.9419845 +0.006069731 0.2091628 0.9419845 +0.01197402 0.2091628 0.9419845 +0.01903886 0.2091628 0.9419845 +0.02852504 0.2091628 0.9419845 +0.04126244 0.2091628 0.9419845 +0.05836535 0.2091628 0.9419845 +0.08132997 0.2091628 0.9419845 +0.1121653 0.2091628 0.9419845 +0.1535689 0.2091628 0.9419845 +0.2091628 0.2091628 0.9419845 +0.2838106 0.2091628 0.9419845 +0.3840425 0.2091628 0.9419845 +0.518627 0.2091628 0.9419845 +0.6993381 0.2091628 0.9419845 +0.9419845 0.2091628 0.9419845 +1.267794 0.2091628 0.9419845 +1.705268 0.2091628 0.9419845 +2.292679 0.2091628 0.9419845 +3.081414 0.2091628 0.9419845 +4.140474 0.2091628 0.9419845 +5.562508 0.2091628 0.9419845 +7.471917 0.2091628 0.9419845 +10.03574 0.2091628 0.9419845 +13.47828 0.2091628 0.9419845 +18.10068 0.2091628 0.9419845 +24.30731 0.2091628 0.9419845 +32.64117 0.2091628 0.9419845 +43.83129 0.2091628 0.9419845 +58.85664 0.2091628 0.9419845 +-0.0175068 0.2838106 0.9419845 +-0.01161267 0.2838106 0.9419845 +-0.005718534 0.2838106 0.9419845 +0.0001755984 0.2838106 0.9419845 +0.006069731 0.2838106 0.9419845 +0.01197402 0.2838106 0.9419845 +0.01903886 0.2838106 0.9419845 +0.02852504 0.2838106 0.9419845 +0.04126244 0.2838106 0.9419845 +0.05836535 0.2838106 0.9419845 +0.08132997 0.2838106 0.9419845 +0.1121653 0.2838106 0.9419845 +0.1535689 0.2838106 0.9419845 +0.2091628 0.2838106 0.9419845 +0.2838106 0.2838106 0.9419845 +0.3840425 0.2838106 0.9419845 +0.518627 0.2838106 0.9419845 +0.6993381 0.2838106 0.9419845 +0.9419845 0.2838106 0.9419845 +1.267794 0.2838106 0.9419845 +1.705268 0.2838106 0.9419845 +2.292679 0.2838106 0.9419845 +3.081414 0.2838106 0.9419845 +4.140474 0.2838106 0.9419845 +5.562508 0.2838106 0.9419845 +7.471917 0.2838106 0.9419845 +10.03574 0.2838106 0.9419845 +13.47828 0.2838106 0.9419845 +18.10068 0.2838106 0.9419845 +24.30731 0.2838106 0.9419845 +32.64117 0.2838106 0.9419845 +43.83129 0.2838106 0.9419845 +58.85664 0.2838106 0.9419845 +-0.0175068 0.3840425 0.9419845 +-0.01161267 0.3840425 0.9419845 +-0.005718534 0.3840425 0.9419845 +0.0001755984 0.3840425 0.9419845 +0.006069731 0.3840425 0.9419845 +0.01197402 0.3840425 0.9419845 +0.01903886 0.3840425 0.9419845 +0.02852504 0.3840425 0.9419845 +0.04126244 0.3840425 0.9419845 +0.05836535 0.3840425 0.9419845 +0.08132997 0.3840425 0.9419845 +0.1121653 0.3840425 0.9419845 +0.1535689 0.3840425 0.9419845 +0.2091628 0.3840425 0.9419845 +0.2838106 0.3840425 0.9419845 +0.3840425 0.3840425 0.9419845 +0.518627 0.3840425 0.9419845 +0.6993381 0.3840425 0.9419845 +0.9419845 0.3840425 0.9419845 +1.267794 0.3840425 0.9419845 +1.705268 0.3840425 0.9419845 +2.292679 0.3840425 0.9419845 +3.081414 0.3840425 0.9419845 +4.140474 0.3840425 0.9419845 +5.562508 0.3840425 0.9419845 +7.471917 0.3840425 0.9419845 +10.03574 0.3840425 0.9419845 +13.47828 0.3840425 0.9419845 +18.10068 0.3840425 0.9419845 +24.30731 0.3840425 0.9419845 +32.64117 0.3840425 0.9419845 +43.83129 0.3840425 0.9419845 +58.85664 0.3840425 0.9419845 +-0.0175068 0.518627 0.9419845 +-0.01161267 0.518627 0.9419845 +-0.005718534 0.518627 0.9419845 +0.0001755984 0.518627 0.9419845 +0.006069731 0.518627 0.9419845 +0.01197402 0.518627 0.9419845 +0.01903886 0.518627 0.9419845 +0.02852504 0.518627 0.9419845 +0.04126244 0.518627 0.9419845 +0.05836535 0.518627 0.9419845 +0.08132997 0.518627 0.9419845 +0.1121653 0.518627 0.9419845 +0.1535689 0.518627 0.9419845 +0.2091628 0.518627 0.9419845 +0.2838106 0.518627 0.9419845 +0.3840425 0.518627 0.9419845 +0.518627 0.518627 0.9419845 +0.6993381 0.518627 0.9419845 +0.9419845 0.518627 0.9419845 +1.267794 0.518627 0.9419845 +1.705268 0.518627 0.9419845 +2.292679 0.518627 0.9419845 +3.081414 0.518627 0.9419845 +4.140474 0.518627 0.9419845 +5.562508 0.518627 0.9419845 +7.471917 0.518627 0.9419845 +10.03574 0.518627 0.9419845 +13.47828 0.518627 0.9419845 +18.10068 0.518627 0.9419845 +24.30731 0.518627 0.9419845 +32.64117 0.518627 0.9419845 +43.83129 0.518627 0.9419845 +58.85664 0.518627 0.9419845 +-0.0175068 0.6993381 0.9419845 +-0.01161267 0.6993381 0.9419845 +-0.005718534 0.6993381 0.9419845 +0.0001755984 0.6993381 0.9419845 +0.006069731 0.6993381 0.9419845 +0.01197402 0.6993381 0.9419845 +0.01903886 0.6993381 0.9419845 +0.02852504 0.6993381 0.9419845 +0.04126244 0.6993381 0.9419845 +0.05836535 0.6993381 0.9419845 +0.08132997 0.6993381 0.9419845 +0.1121653 0.6993381 0.9419845 +0.1535689 0.6993381 0.9419845 +0.2091628 0.6993381 0.9419845 +0.2838106 0.6993381 0.9419845 +0.3840425 0.6993381 0.9419845 +0.518627 0.6993381 0.9419845 +0.6993381 0.6993381 0.9419845 +0.9419845 0.6993381 0.9419845 +1.267794 0.6993381 0.9419845 +1.705268 0.6993381 0.9419845 +2.292679 0.6993381 0.9419845 +3.081414 0.6993381 0.9419845 +4.140474 0.6993381 0.9419845 +5.562508 0.6993381 0.9419845 +7.471917 0.6993381 0.9419845 +10.03574 0.6993381 0.9419845 +13.47828 0.6993381 0.9419845 +18.10068 0.6993381 0.9419845 +24.30731 0.6993381 0.9419845 +32.64117 0.6993381 0.9419845 +43.83129 0.6993381 0.9419845 +58.85664 0.6993381 0.9419845 +-0.0175068 0.9419845 0.9419845 +-0.01161267 0.9419845 0.9419845 +-0.005718534 0.9419845 0.9419845 +0.0001755984 0.9419845 0.9419845 +0.006069731 0.9419845 0.9419845 +0.01197402 0.9419845 0.9419845 +0.01903886 0.9419845 0.9419845 +0.02852504 0.9419845 0.9419845 +0.04126244 0.9419845 0.9419845 +0.05836535 0.9419845 0.9419845 +0.08132997 0.9419845 0.9419845 +0.1121653 0.9419845 0.9419845 +0.1535689 0.9419845 0.9419845 +0.2091628 0.9419845 0.9419845 +0.2838106 0.9419845 0.9419845 +0.3840425 0.9419845 0.9419845 +0.518627 0.9419845 0.9419845 +0.6993381 0.9419845 0.9419845 +0.9419845 0.9419845 0.9419845 +1.267794 0.9419845 0.9419845 +1.705268 0.9419845 0.9419845 +2.292679 0.9419845 0.9419845 +3.081414 0.9419845 0.9419845 +4.140474 0.9419845 0.9419845 +5.562508 0.9419845 0.9419845 +7.471917 0.9419845 0.9419845 +10.03574 0.9419845 0.9419845 +13.47828 0.9419845 0.9419845 +18.10068 0.9419845 0.9419845 +24.30731 0.9419845 0.9419845 +32.64117 0.9419845 0.9419845 +43.83129 0.9419845 0.9419845 +58.85664 0.9419845 0.9419845 +-0.0175068 1.267794 0.9419845 +-0.01161267 1.267794 0.9419845 +-0.005718534 1.267794 0.9419845 +0.0001755984 1.267794 0.9419845 +0.006069731 1.267794 0.9419845 +0.01197402 1.267794 0.9419845 +0.01903886 1.267794 0.9419845 +0.02852504 1.267794 0.9419845 +0.04126244 1.267794 0.9419845 +0.05836535 1.267794 0.9419845 +0.08132997 1.267794 0.9419845 +0.1121653 1.267794 0.9419845 +0.1535689 1.267794 0.9419845 +0.2091628 1.267794 0.9419845 +0.2838106 1.267794 0.9419845 +0.3840425 1.267794 0.9419845 +0.518627 1.267794 0.9419845 +0.6993381 1.267794 0.9419845 +0.9419845 1.267794 0.9419845 +1.267794 1.267794 0.9419845 +1.705268 1.267794 0.9419845 +2.292679 1.267794 0.9419845 +3.081414 1.267794 0.9419845 +4.140474 1.267794 0.9419845 +5.562508 1.267794 0.9419845 +7.471917 1.267794 0.9419845 +10.03574 1.267794 0.9419845 +13.47828 1.267794 0.9419845 +18.10068 1.267794 0.9419845 +24.30731 1.267794 0.9419845 +32.64117 1.267794 0.9419845 +43.83129 1.267794 0.9419845 +58.85664 1.267794 0.9419845 +-0.0175068 1.705268 0.9419845 +-0.01161267 1.705268 0.9419845 +-0.005718534 1.705268 0.9419845 +0.0001755984 1.705268 0.9419845 +0.006069731 1.705268 0.9419845 +0.01197402 1.705268 0.9419845 +0.01903886 1.705268 0.9419845 +0.02852504 1.705268 0.9419845 +0.04126244 1.705268 0.9419845 +0.05836535 1.705268 0.9419845 +0.08132997 1.705268 0.9419845 +0.1121653 1.705268 0.9419845 +0.1535689 1.705268 0.9419845 +0.2091628 1.705268 0.9419845 +0.2838106 1.705268 0.9419845 +0.3840425 1.705268 0.9419845 +0.518627 1.705268 0.9419845 +0.6993381 1.705268 0.9419845 +0.9419845 1.705268 0.9419845 +1.267794 1.705268 0.9419845 +1.705268 1.705268 0.9419845 +2.292679 1.705268 0.9419845 +3.081414 1.705268 0.9419845 +4.140474 1.705268 0.9419845 +5.562508 1.705268 0.9419845 +7.471917 1.705268 0.9419845 +10.03574 1.705268 0.9419845 +13.47828 1.705268 0.9419845 +18.10068 1.705268 0.9419845 +24.30731 1.705268 0.9419845 +32.64117 1.705268 0.9419845 +43.83129 1.705268 0.9419845 +58.85664 1.705268 0.9419845 +-0.0175068 2.292679 0.9419845 +-0.01161267 2.292679 0.9419845 +-0.005718534 2.292679 0.9419845 +0.0001755984 2.292679 0.9419845 +0.006069731 2.292679 0.9419845 +0.01197402 2.292679 0.9419845 +0.01903886 2.292679 0.9419845 +0.02852504 2.292679 0.9419845 +0.04126244 2.292679 0.9419845 +0.05836535 2.292679 0.9419845 +0.08132997 2.292679 0.9419845 +0.1121653 2.292679 0.9419845 +0.1535689 2.292679 0.9419845 +0.2091628 2.292679 0.9419845 +0.2838106 2.292679 0.9419845 +0.3840425 2.292679 0.9419845 +0.518627 2.292679 0.9419845 +0.6993381 2.292679 0.9419845 +0.9419845 2.292679 0.9419845 +1.267794 2.292679 0.9419845 +1.705268 2.292679 0.9419845 +2.292679 2.292679 0.9419845 +3.081414 2.292679 0.9419845 +4.140474 2.292679 0.9419845 +5.562508 2.292679 0.9419845 +7.471917 2.292679 0.9419845 +10.03574 2.292679 0.9419845 +13.47828 2.292679 0.9419845 +18.10068 2.292679 0.9419845 +24.30731 2.292679 0.9419845 +32.64117 2.292679 0.9419845 +43.83129 2.292679 0.9419845 +58.85664 2.292679 0.9419845 +-0.0175068 3.081414 0.9419845 +-0.01161267 3.081414 0.9419845 +-0.005718534 3.081414 0.9419845 +0.0001755984 3.081414 0.9419845 +0.006069731 3.081414 0.9419845 +0.01197402 3.081414 0.9419845 +0.01903886 3.081414 0.9419845 +0.02852504 3.081414 0.9419845 +0.04126244 3.081414 0.9419845 +0.05836535 3.081414 0.9419845 +0.08132997 3.081414 0.9419845 +0.1121653 3.081414 0.9419845 +0.1535689 3.081414 0.9419845 +0.2091628 3.081414 0.9419845 +0.2838106 3.081414 0.9419845 +0.3840425 3.081414 0.9419845 +0.518627 3.081414 0.9419845 +0.6993381 3.081414 0.9419845 +0.9419845 3.081414 0.9419845 +1.267794 3.081414 0.9419845 +1.705268 3.081414 0.9419845 +2.292679 3.081414 0.9419845 +3.081414 3.081414 0.9419845 +4.140474 3.081414 0.9419845 +5.562508 3.081414 0.9419845 +7.471917 3.081414 0.9419845 +10.03574 3.081414 0.9419845 +13.47828 3.081414 0.9419845 +18.10068 3.081414 0.9419845 +24.30731 3.081414 0.9419845 +32.64117 3.081414 0.9419845 +43.83129 3.081414 0.9419845 +58.85664 3.081414 0.9419845 +-0.0175068 4.140474 0.9419845 +-0.01161267 4.140474 0.9419845 +-0.005718534 4.140474 0.9419845 +0.0001755984 4.140474 0.9419845 +0.006069731 4.140474 0.9419845 +0.01197402 4.140474 0.9419845 +0.01903886 4.140474 0.9419845 +0.02852504 4.140474 0.9419845 +0.04126244 4.140474 0.9419845 +0.05836535 4.140474 0.9419845 +0.08132997 4.140474 0.9419845 +0.1121653 4.140474 0.9419845 +0.1535689 4.140474 0.9419845 +0.2091628 4.140474 0.9419845 +0.2838106 4.140474 0.9419845 +0.3840425 4.140474 0.9419845 +0.518627 4.140474 0.9419845 +0.6993381 4.140474 0.9419845 +0.9419845 4.140474 0.9419845 +1.267794 4.140474 0.9419845 +1.705268 4.140474 0.9419845 +2.292679 4.140474 0.9419845 +3.081414 4.140474 0.9419845 +4.140474 4.140474 0.9419845 +5.562508 4.140474 0.9419845 +7.471917 4.140474 0.9419845 +10.03574 4.140474 0.9419845 +13.47828 4.140474 0.9419845 +18.10068 4.140474 0.9419845 +24.30731 4.140474 0.9419845 +32.64117 4.140474 0.9419845 +43.83129 4.140474 0.9419845 +58.85664 4.140474 0.9419845 +-0.0175068 5.562508 0.9419845 +-0.01161267 5.562508 0.9419845 +-0.005718534 5.562508 0.9419845 +0.0001755984 5.562508 0.9419845 +0.006069731 5.562508 0.9419845 +0.01197402 5.562508 0.9419845 +0.01903886 5.562508 0.9419845 +0.02852504 5.562508 0.9419845 +0.04126244 5.562508 0.9419845 +0.05836535 5.562508 0.9419845 +0.08132997 5.562508 0.9419845 +0.1121653 5.562508 0.9419845 +0.1535689 5.562508 0.9419845 +0.2091628 5.562508 0.9419845 +0.2838106 5.562508 0.9419845 +0.3840425 5.562508 0.9419845 +0.518627 5.562508 0.9419845 +0.6993381 5.562508 0.9419845 +0.9419845 5.562508 0.9419845 +1.267794 5.562508 0.9419845 +1.705268 5.562508 0.9419845 +2.292679 5.562508 0.9419845 +3.081414 5.562508 0.9419845 +4.140474 5.562508 0.9419845 +5.562508 5.562508 0.9419845 +7.471917 5.562508 0.9419845 +10.03574 5.562508 0.9419845 +13.47828 5.562508 0.9419845 +18.10068 5.562508 0.9419845 +24.30731 5.562508 0.9419845 +32.64117 5.562508 0.9419845 +43.83129 5.562508 0.9419845 +58.85664 5.562508 0.9419845 +-0.0175068 7.471917 0.9419845 +-0.01161267 7.471917 0.9419845 +-0.005718534 7.471917 0.9419845 +0.0001755984 7.471917 0.9419845 +0.006069731 7.471917 0.9419845 +0.01197402 7.471917 0.9419845 +0.01903886 7.471917 0.9419845 +0.02852504 7.471917 0.9419845 +0.04126244 7.471917 0.9419845 +0.05836535 7.471917 0.9419845 +0.08132997 7.471917 0.9419845 +0.1121653 7.471917 0.9419845 +0.1535689 7.471917 0.9419845 +0.2091628 7.471917 0.9419845 +0.2838106 7.471917 0.9419845 +0.3840425 7.471917 0.9419845 +0.518627 7.471917 0.9419845 +0.6993381 7.471917 0.9419845 +0.9419845 7.471917 0.9419845 +1.267794 7.471917 0.9419845 +1.705268 7.471917 0.9419845 +2.292679 7.471917 0.9419845 +3.081414 7.471917 0.9419845 +4.140474 7.471917 0.9419845 +5.562508 7.471917 0.9419845 +7.471917 7.471917 0.9419845 +10.03574 7.471917 0.9419845 +13.47828 7.471917 0.9419845 +18.10068 7.471917 0.9419845 +24.30731 7.471917 0.9419845 +32.64117 7.471917 0.9419845 +43.83129 7.471917 0.9419845 +58.85664 7.471917 0.9419845 +-0.0175068 10.03574 0.9419845 +-0.01161267 10.03574 0.9419845 +-0.005718534 10.03574 0.9419845 +0.0001755984 10.03574 0.9419845 +0.006069731 10.03574 0.9419845 +0.01197402 10.03574 0.9419845 +0.01903886 10.03574 0.9419845 +0.02852504 10.03574 0.9419845 +0.04126244 10.03574 0.9419845 +0.05836535 10.03574 0.9419845 +0.08132997 10.03574 0.9419845 +0.1121653 10.03574 0.9419845 +0.1535689 10.03574 0.9419845 +0.2091628 10.03574 0.9419845 +0.2838106 10.03574 0.9419845 +0.3840425 10.03574 0.9419845 +0.518627 10.03574 0.9419845 +0.6993381 10.03574 0.9419845 +0.9419845 10.03574 0.9419845 +1.267794 10.03574 0.9419845 +1.705268 10.03574 0.9419845 +2.292679 10.03574 0.9419845 +3.081414 10.03574 0.9419845 +4.140474 10.03574 0.9419845 +5.562508 10.03574 0.9419845 +7.471917 10.03574 0.9419845 +10.03574 10.03574 0.9419845 +13.47828 10.03574 0.9419845 +18.10068 10.03574 0.9419845 +24.30731 10.03574 0.9419845 +32.64117 10.03574 0.9419845 +43.83129 10.03574 0.9419845 +58.85664 10.03574 0.9419845 +-0.0175068 13.47828 0.9419845 +-0.01161267 13.47828 0.9419845 +-0.005718534 13.47828 0.9419845 +0.0001755984 13.47828 0.9419845 +0.006069731 13.47828 0.9419845 +0.01197402 13.47828 0.9419845 +0.01903886 13.47828 0.9419845 +0.02852504 13.47828 0.9419845 +0.04126244 13.47828 0.9419845 +0.05836535 13.47828 0.9419845 +0.08132997 13.47828 0.9419845 +0.1121653 13.47828 0.9419845 +0.1535689 13.47828 0.9419845 +0.2091628 13.47828 0.9419845 +0.2838106 13.47828 0.9419845 +0.3840425 13.47828 0.9419845 +0.518627 13.47828 0.9419845 +0.6993381 13.47828 0.9419845 +0.9419845 13.47828 0.9419845 +1.267794 13.47828 0.9419845 +1.705268 13.47828 0.9419845 +2.292679 13.47828 0.9419845 +3.081414 13.47828 0.9419845 +4.140474 13.47828 0.9419845 +5.562508 13.47828 0.9419845 +7.471917 13.47828 0.9419845 +10.03574 13.47828 0.9419845 +13.47828 13.47828 0.9419845 +18.10068 13.47828 0.9419845 +24.30731 13.47828 0.9419845 +32.64117 13.47828 0.9419845 +43.83129 13.47828 0.9419845 +58.85664 13.47828 0.9419845 +-0.0175068 18.10068 0.9419845 +-0.01161267 18.10068 0.9419845 +-0.005718534 18.10068 0.9419845 +0.0001755984 18.10068 0.9419845 +0.006069731 18.10068 0.9419845 +0.01197402 18.10068 0.9419845 +0.01903886 18.10068 0.9419845 +0.02852504 18.10068 0.9419845 +0.04126244 18.10068 0.9419845 +0.05836535 18.10068 0.9419845 +0.08132997 18.10068 0.9419845 +0.1121653 18.10068 0.9419845 +0.1535689 18.10068 0.9419845 +0.2091628 18.10068 0.9419845 +0.2838106 18.10068 0.9419845 +0.3840425 18.10068 0.9419845 +0.518627 18.10068 0.9419845 +0.6993381 18.10068 0.9419845 +0.9419845 18.10068 0.9419845 +1.267794 18.10068 0.9419845 +1.705268 18.10068 0.9419845 +2.292679 18.10068 0.9419845 +3.081414 18.10068 0.9419845 +4.140474 18.10068 0.9419845 +5.562508 18.10068 0.9419845 +7.471917 18.10068 0.9419845 +10.03574 18.10068 0.9419845 +13.47828 18.10068 0.9419845 +18.10068 18.10068 0.9419845 +24.30731 18.10068 0.9419845 +32.64117 18.10068 0.9419845 +43.83129 18.10068 0.9419845 +58.85664 18.10068 0.9419845 +-0.0175068 24.30731 0.9419845 +-0.01161267 24.30731 0.9419845 +-0.005718534 24.30731 0.9419845 +0.0001755984 24.30731 0.9419845 +0.006069731 24.30731 0.9419845 +0.01197402 24.30731 0.9419845 +0.01903886 24.30731 0.9419845 +0.02852504 24.30731 0.9419845 +0.04126244 24.30731 0.9419845 +0.05836535 24.30731 0.9419845 +0.08132997 24.30731 0.9419845 +0.1121653 24.30731 0.9419845 +0.1535689 24.30731 0.9419845 +0.2091628 24.30731 0.9419845 +0.2838106 24.30731 0.9419845 +0.3840425 24.30731 0.9419845 +0.518627 24.30731 0.9419845 +0.6993381 24.30731 0.9419845 +0.9419845 24.30731 0.9419845 +1.267794 24.30731 0.9419845 +1.705268 24.30731 0.9419845 +2.292679 24.30731 0.9419845 +3.081414 24.30731 0.9419845 +4.140474 24.30731 0.9419845 +5.562508 24.30731 0.9419845 +7.471917 24.30731 0.9419845 +10.03574 24.30731 0.9419845 +13.47828 24.30731 0.9419845 +18.10068 24.30731 0.9419845 +24.30731 24.30731 0.9419845 +32.64117 24.30731 0.9419845 +43.83129 24.30731 0.9419845 +58.85664 24.30731 0.9419845 +-0.0175068 32.64117 0.9419845 +-0.01161267 32.64117 0.9419845 +-0.005718534 32.64117 0.9419845 +0.0001755984 32.64117 0.9419845 +0.006069731 32.64117 0.9419845 +0.01197402 32.64117 0.9419845 +0.01903886 32.64117 0.9419845 +0.02852504 32.64117 0.9419845 +0.04126244 32.64117 0.9419845 +0.05836535 32.64117 0.9419845 +0.08132997 32.64117 0.9419845 +0.1121653 32.64117 0.9419845 +0.1535689 32.64117 0.9419845 +0.2091628 32.64117 0.9419845 +0.2838106 32.64117 0.9419845 +0.3840425 32.64117 0.9419845 +0.518627 32.64117 0.9419845 +0.6993381 32.64117 0.9419845 +0.9419845 32.64117 0.9419845 +1.267794 32.64117 0.9419845 +1.705268 32.64117 0.9419845 +2.292679 32.64117 0.9419845 +3.081414 32.64117 0.9419845 +4.140474 32.64117 0.9419845 +5.562508 32.64117 0.9419845 +7.471917 32.64117 0.9419845 +10.03574 32.64117 0.9419845 +13.47828 32.64117 0.9419845 +18.10068 32.64117 0.9419845 +24.30731 32.64117 0.9419845 +32.64117 32.64117 0.9419845 +43.83129 32.64117 0.9419845 +58.85664 32.64117 0.9419845 +-0.0175068 43.83129 0.9419845 +-0.01161267 43.83129 0.9419845 +-0.005718534 43.83129 0.9419845 +0.0001755984 43.83129 0.9419845 +0.006069731 43.83129 0.9419845 +0.01197402 43.83129 0.9419845 +0.01903886 43.83129 0.9419845 +0.02852504 43.83129 0.9419845 +0.04126244 43.83129 0.9419845 +0.05836535 43.83129 0.9419845 +0.08132997 43.83129 0.9419845 +0.1121653 43.83129 0.9419845 +0.1535689 43.83129 0.9419845 +0.2091628 43.83129 0.9419845 +0.2838106 43.83129 0.9419845 +0.3840425 43.83129 0.9419845 +0.518627 43.83129 0.9419845 +0.6993381 43.83129 0.9419845 +0.9419845 43.83129 0.9419845 +1.267794 43.83129 0.9419845 +1.705268 43.83129 0.9419845 +2.292679 43.83129 0.9419845 +3.081414 43.83129 0.9419845 +4.140474 43.83129 0.9419845 +5.562508 43.83129 0.9419845 +7.471917 43.83129 0.9419845 +10.03574 43.83129 0.9419845 +13.47828 43.83129 0.9419845 +18.10068 43.83129 0.9419845 +24.30731 43.83129 0.9419845 +32.64117 43.83129 0.9419845 +43.83129 43.83129 0.9419845 +58.85664 43.83129 0.9419845 +-0.0175068 58.85664 0.9419845 +-0.01161267 58.85664 0.9419845 +-0.005718534 58.85664 0.9419845 +0.0001755984 58.85664 0.9419845 +0.006069731 58.85664 0.9419845 +0.01197402 58.85664 0.9419845 +0.01903886 58.85664 0.9419845 +0.02852504 58.85664 0.9419845 +0.04126244 58.85664 0.9419845 +0.05836535 58.85664 0.9419845 +0.08132997 58.85664 0.9419845 +0.1121653 58.85664 0.9419845 +0.1535689 58.85664 0.9419845 +0.2091628 58.85664 0.9419845 +0.2838106 58.85664 0.9419845 +0.3840425 58.85664 0.9419845 +0.518627 58.85664 0.9419845 +0.6993381 58.85664 0.9419845 +0.9419845 58.85664 0.9419845 +1.267794 58.85664 0.9419845 +1.705268 58.85664 0.9419845 +2.292679 58.85664 0.9419845 +3.081414 58.85664 0.9419845 +4.140474 58.85664 0.9419845 +5.562508 58.85664 0.9419845 +7.471917 58.85664 0.9419845 +10.03574 58.85664 0.9419845 +13.47828 58.85664 0.9419845 +18.10068 58.85664 0.9419845 +24.30731 58.85664 0.9419845 +32.64117 58.85664 0.9419845 +43.83129 58.85664 0.9419845 +58.85664 58.85664 0.9419845 +-0.0175068 -0.0175068 1.267794 +-0.01161267 -0.0175068 1.267794 +-0.005718534 -0.0175068 1.267794 +0.0001755984 -0.0175068 1.267794 +0.006069731 -0.0175068 1.267794 +0.01197402 -0.0175068 1.267794 +0.01903886 -0.0175068 1.267794 +0.02852504 -0.0175068 1.267794 +0.04126244 -0.0175068 1.267794 +0.05836535 -0.0175068 1.267794 +0.08132997 -0.0175068 1.267794 +0.1121653 -0.0175068 1.267794 +0.1535689 -0.0175068 1.267794 +0.2091628 -0.0175068 1.267794 +0.2838106 -0.0175068 1.267794 +0.3840425 -0.0175068 1.267794 +0.518627 -0.0175068 1.267794 +0.6993381 -0.0175068 1.267794 +0.9419845 -0.0175068 1.267794 +1.267794 -0.0175068 1.267794 +1.705268 -0.0175068 1.267794 +2.292679 -0.0175068 1.267794 +3.081414 -0.0175068 1.267794 +4.140474 -0.0175068 1.267794 +5.562508 -0.0175068 1.267794 +7.471917 -0.0175068 1.267794 +10.03574 -0.0175068 1.267794 +13.47828 -0.0175068 1.267794 +18.10068 -0.0175068 1.267794 +24.30731 -0.0175068 1.267794 +32.64117 -0.0175068 1.267794 +43.83129 -0.0175068 1.267794 +58.85664 -0.0175068 1.267794 +-0.0175068 -0.01161267 1.267794 +-0.01161267 -0.01161267 1.267794 +-0.005718534 -0.01161267 1.267794 +0.0001755984 -0.01161267 1.267794 +0.006069731 -0.01161267 1.267794 +0.01197402 -0.01161267 1.267794 +0.01903886 -0.01161267 1.267794 +0.02852504 -0.01161267 1.267794 +0.04126244 -0.01161267 1.267794 +0.05836535 -0.01161267 1.267794 +0.08132997 -0.01161267 1.267794 +0.1121653 -0.01161267 1.267794 +0.1535689 -0.01161267 1.267794 +0.2091628 -0.01161267 1.267794 +0.2838106 -0.01161267 1.267794 +0.3840425 -0.01161267 1.267794 +0.518627 -0.01161267 1.267794 +0.6993381 -0.01161267 1.267794 +0.9419845 -0.01161267 1.267794 +1.267794 -0.01161267 1.267794 +1.705268 -0.01161267 1.267794 +2.292679 -0.01161267 1.267794 +3.081414 -0.01161267 1.267794 +4.140474 -0.01161267 1.267794 +5.562508 -0.01161267 1.267794 +7.471917 -0.01161267 1.267794 +10.03574 -0.01161267 1.267794 +13.47828 -0.01161267 1.267794 +18.10068 -0.01161267 1.267794 +24.30731 -0.01161267 1.267794 +32.64117 -0.01161267 1.267794 +43.83129 -0.01161267 1.267794 +58.85664 -0.01161267 1.267794 +-0.0175068 -0.005718534 1.267794 +-0.01161267 -0.005718534 1.267794 +-0.005718534 -0.005718534 1.267794 +0.0001755984 -0.005718534 1.267794 +0.006069731 -0.005718534 1.267794 +0.01197402 -0.005718534 1.267794 +0.01903886 -0.005718534 1.267794 +0.02852504 -0.005718534 1.267794 +0.04126244 -0.005718534 1.267794 +0.05836535 -0.005718534 1.267794 +0.08132997 -0.005718534 1.267794 +0.1121653 -0.005718534 1.267794 +0.1535689 -0.005718534 1.267794 +0.2091628 -0.005718534 1.267794 +0.2838106 -0.005718534 1.267794 +0.3840425 -0.005718534 1.267794 +0.518627 -0.005718534 1.267794 +0.6993381 -0.005718534 1.267794 +0.9419845 -0.005718534 1.267794 +1.267794 -0.005718534 1.267794 +1.705268 -0.005718534 1.267794 +2.292679 -0.005718534 1.267794 +3.081414 -0.005718534 1.267794 +4.140474 -0.005718534 1.267794 +5.562508 -0.005718534 1.267794 +7.471917 -0.005718534 1.267794 +10.03574 -0.005718534 1.267794 +13.47828 -0.005718534 1.267794 +18.10068 -0.005718534 1.267794 +24.30731 -0.005718534 1.267794 +32.64117 -0.005718534 1.267794 +43.83129 -0.005718534 1.267794 +58.85664 -0.005718534 1.267794 +-0.0175068 0.0001755984 1.267794 +-0.01161267 0.0001755984 1.267794 +-0.005718534 0.0001755984 1.267794 +0.0001755984 0.0001755984 1.267794 +0.006069731 0.0001755984 1.267794 +0.01197402 0.0001755984 1.267794 +0.01903886 0.0001755984 1.267794 +0.02852504 0.0001755984 1.267794 +0.04126244 0.0001755984 1.267794 +0.05836535 0.0001755984 1.267794 +0.08132997 0.0001755984 1.267794 +0.1121653 0.0001755984 1.267794 +0.1535689 0.0001755984 1.267794 +0.2091628 0.0001755984 1.267794 +0.2838106 0.0001755984 1.267794 +0.3840425 0.0001755984 1.267794 +0.518627 0.0001755984 1.267794 +0.6993381 0.0001755984 1.267794 +0.9419845 0.0001755984 1.267794 +1.267794 0.0001755984 1.267794 +1.705268 0.0001755984 1.267794 +2.292679 0.0001755984 1.267794 +3.081414 0.0001755984 1.267794 +4.140474 0.0001755984 1.267794 +5.562508 0.0001755984 1.267794 +7.471917 0.0001755984 1.267794 +10.03574 0.0001755984 1.267794 +13.47828 0.0001755984 1.267794 +18.10068 0.0001755984 1.267794 +24.30731 0.0001755984 1.267794 +32.64117 0.0001755984 1.267794 +43.83129 0.0001755984 1.267794 +58.85664 0.0001755984 1.267794 +-0.0175068 0.006069731 1.267794 +-0.01161267 0.006069731 1.267794 +-0.005718534 0.006069731 1.267794 +0.0001755984 0.006069731 1.267794 +0.006069731 0.006069731 1.267794 +0.01197402 0.006069731 1.267794 +0.01903886 0.006069731 1.267794 +0.02852504 0.006069731 1.267794 +0.04126244 0.006069731 1.267794 +0.05836535 0.006069731 1.267794 +0.08132997 0.006069731 1.267794 +0.1121653 0.006069731 1.267794 +0.1535689 0.006069731 1.267794 +0.2091628 0.006069731 1.267794 +0.2838106 0.006069731 1.267794 +0.3840425 0.006069731 1.267794 +0.518627 0.006069731 1.267794 +0.6993381 0.006069731 1.267794 +0.9419845 0.006069731 1.267794 +1.267794 0.006069731 1.267794 +1.705268 0.006069731 1.267794 +2.292679 0.006069731 1.267794 +3.081414 0.006069731 1.267794 +4.140474 0.006069731 1.267794 +5.562508 0.006069731 1.267794 +7.471917 0.006069731 1.267794 +10.03574 0.006069731 1.267794 +13.47828 0.006069731 1.267794 +18.10068 0.006069731 1.267794 +24.30731 0.006069731 1.267794 +32.64117 0.006069731 1.267794 +43.83129 0.006069731 1.267794 +58.85664 0.006069731 1.267794 +-0.0175068 0.01197402 1.267794 +-0.01161267 0.01197402 1.267794 +-0.005718534 0.01197402 1.267794 +0.0001755984 0.01197402 1.267794 +0.006069731 0.01197402 1.267794 +0.01197402 0.01197402 1.267794 +0.01903886 0.01197402 1.267794 +0.02852504 0.01197402 1.267794 +0.04126244 0.01197402 1.267794 +0.05836535 0.01197402 1.267794 +0.08132997 0.01197402 1.267794 +0.1121653 0.01197402 1.267794 +0.1535689 0.01197402 1.267794 +0.2091628 0.01197402 1.267794 +0.2838106 0.01197402 1.267794 +0.3840425 0.01197402 1.267794 +0.518627 0.01197402 1.267794 +0.6993381 0.01197402 1.267794 +0.9419845 0.01197402 1.267794 +1.267794 0.01197402 1.267794 +1.705268 0.01197402 1.267794 +2.292679 0.01197402 1.267794 +3.081414 0.01197402 1.267794 +4.140474 0.01197402 1.267794 +5.562508 0.01197402 1.267794 +7.471917 0.01197402 1.267794 +10.03574 0.01197402 1.267794 +13.47828 0.01197402 1.267794 +18.10068 0.01197402 1.267794 +24.30731 0.01197402 1.267794 +32.64117 0.01197402 1.267794 +43.83129 0.01197402 1.267794 +58.85664 0.01197402 1.267794 +-0.0175068 0.01903886 1.267794 +-0.01161267 0.01903886 1.267794 +-0.005718534 0.01903886 1.267794 +0.0001755984 0.01903886 1.267794 +0.006069731 0.01903886 1.267794 +0.01197402 0.01903886 1.267794 +0.01903886 0.01903886 1.267794 +0.02852504 0.01903886 1.267794 +0.04126244 0.01903886 1.267794 +0.05836535 0.01903886 1.267794 +0.08132997 0.01903886 1.267794 +0.1121653 0.01903886 1.267794 +0.1535689 0.01903886 1.267794 +0.2091628 0.01903886 1.267794 +0.2838106 0.01903886 1.267794 +0.3840425 0.01903886 1.267794 +0.518627 0.01903886 1.267794 +0.6993381 0.01903886 1.267794 +0.9419845 0.01903886 1.267794 +1.267794 0.01903886 1.267794 +1.705268 0.01903886 1.267794 +2.292679 0.01903886 1.267794 +3.081414 0.01903886 1.267794 +4.140474 0.01903886 1.267794 +5.562508 0.01903886 1.267794 +7.471917 0.01903886 1.267794 +10.03574 0.01903886 1.267794 +13.47828 0.01903886 1.267794 +18.10068 0.01903886 1.267794 +24.30731 0.01903886 1.267794 +32.64117 0.01903886 1.267794 +43.83129 0.01903886 1.267794 +58.85664 0.01903886 1.267794 +-0.0175068 0.02852504 1.267794 +-0.01161267 0.02852504 1.267794 +-0.005718534 0.02852504 1.267794 +0.0001755984 0.02852504 1.267794 +0.006069731 0.02852504 1.267794 +0.01197402 0.02852504 1.267794 +0.01903886 0.02852504 1.267794 +0.02852504 0.02852504 1.267794 +0.04126244 0.02852504 1.267794 +0.05836535 0.02852504 1.267794 +0.08132997 0.02852504 1.267794 +0.1121653 0.02852504 1.267794 +0.1535689 0.02852504 1.267794 +0.2091628 0.02852504 1.267794 +0.2838106 0.02852504 1.267794 +0.3840425 0.02852504 1.267794 +0.518627 0.02852504 1.267794 +0.6993381 0.02852504 1.267794 +0.9419845 0.02852504 1.267794 +1.267794 0.02852504 1.267794 +1.705268 0.02852504 1.267794 +2.292679 0.02852504 1.267794 +3.081414 0.02852504 1.267794 +4.140474 0.02852504 1.267794 +5.562508 0.02852504 1.267794 +7.471917 0.02852504 1.267794 +10.03574 0.02852504 1.267794 +13.47828 0.02852504 1.267794 +18.10068 0.02852504 1.267794 +24.30731 0.02852504 1.267794 +32.64117 0.02852504 1.267794 +43.83129 0.02852504 1.267794 +58.85664 0.02852504 1.267794 +-0.0175068 0.04126244 1.267794 +-0.01161267 0.04126244 1.267794 +-0.005718534 0.04126244 1.267794 +0.0001755984 0.04126244 1.267794 +0.006069731 0.04126244 1.267794 +0.01197402 0.04126244 1.267794 +0.01903886 0.04126244 1.267794 +0.02852504 0.04126244 1.267794 +0.04126244 0.04126244 1.267794 +0.05836535 0.04126244 1.267794 +0.08132997 0.04126244 1.267794 +0.1121653 0.04126244 1.267794 +0.1535689 0.04126244 1.267794 +0.2091628 0.04126244 1.267794 +0.2838106 0.04126244 1.267794 +0.3840425 0.04126244 1.267794 +0.518627 0.04126244 1.267794 +0.6993381 0.04126244 1.267794 +0.9419845 0.04126244 1.267794 +1.267794 0.04126244 1.267794 +1.705268 0.04126244 1.267794 +2.292679 0.04126244 1.267794 +3.081414 0.04126244 1.267794 +4.140474 0.04126244 1.267794 +5.562508 0.04126244 1.267794 +7.471917 0.04126244 1.267794 +10.03574 0.04126244 1.267794 +13.47828 0.04126244 1.267794 +18.10068 0.04126244 1.267794 +24.30731 0.04126244 1.267794 +32.64117 0.04126244 1.267794 +43.83129 0.04126244 1.267794 +58.85664 0.04126244 1.267794 +-0.0175068 0.05836535 1.267794 +-0.01161267 0.05836535 1.267794 +-0.005718534 0.05836535 1.267794 +0.0001755984 0.05836535 1.267794 +0.006069731 0.05836535 1.267794 +0.01197402 0.05836535 1.267794 +0.01903886 0.05836535 1.267794 +0.02852504 0.05836535 1.267794 +0.04126244 0.05836535 1.267794 +0.05836535 0.05836535 1.267794 +0.08132997 0.05836535 1.267794 +0.1121653 0.05836535 1.267794 +0.1535689 0.05836535 1.267794 +0.2091628 0.05836535 1.267794 +0.2838106 0.05836535 1.267794 +0.3840425 0.05836535 1.267794 +0.518627 0.05836535 1.267794 +0.6993381 0.05836535 1.267794 +0.9419845 0.05836535 1.267794 +1.267794 0.05836535 1.267794 +1.705268 0.05836535 1.267794 +2.292679 0.05836535 1.267794 +3.081414 0.05836535 1.267794 +4.140474 0.05836535 1.267794 +5.562508 0.05836535 1.267794 +7.471917 0.05836535 1.267794 +10.03574 0.05836535 1.267794 +13.47828 0.05836535 1.267794 +18.10068 0.05836535 1.267794 +24.30731 0.05836535 1.267794 +32.64117 0.05836535 1.267794 +43.83129 0.05836535 1.267794 +58.85664 0.05836535 1.267794 +-0.0175068 0.08132997 1.267794 +-0.01161267 0.08132997 1.267794 +-0.005718534 0.08132997 1.267794 +0.0001755984 0.08132997 1.267794 +0.006069731 0.08132997 1.267794 +0.01197402 0.08132997 1.267794 +0.01903886 0.08132997 1.267794 +0.02852504 0.08132997 1.267794 +0.04126244 0.08132997 1.267794 +0.05836535 0.08132997 1.267794 +0.08132997 0.08132997 1.267794 +0.1121653 0.08132997 1.267794 +0.1535689 0.08132997 1.267794 +0.2091628 0.08132997 1.267794 +0.2838106 0.08132997 1.267794 +0.3840425 0.08132997 1.267794 +0.518627 0.08132997 1.267794 +0.6993381 0.08132997 1.267794 +0.9419845 0.08132997 1.267794 +1.267794 0.08132997 1.267794 +1.705268 0.08132997 1.267794 +2.292679 0.08132997 1.267794 +3.081414 0.08132997 1.267794 +4.140474 0.08132997 1.267794 +5.562508 0.08132997 1.267794 +7.471917 0.08132997 1.267794 +10.03574 0.08132997 1.267794 +13.47828 0.08132997 1.267794 +18.10068 0.08132997 1.267794 +24.30731 0.08132997 1.267794 +32.64117 0.08132997 1.267794 +43.83129 0.08132997 1.267794 +58.85664 0.08132997 1.267794 +-0.0175068 0.1121653 1.267794 +-0.01161267 0.1121653 1.267794 +-0.005718534 0.1121653 1.267794 +0.0001755984 0.1121653 1.267794 +0.006069731 0.1121653 1.267794 +0.01197402 0.1121653 1.267794 +0.01903886 0.1121653 1.267794 +0.02852504 0.1121653 1.267794 +0.04126244 0.1121653 1.267794 +0.05836535 0.1121653 1.267794 +0.08132997 0.1121653 1.267794 +0.1121653 0.1121653 1.267794 +0.1535689 0.1121653 1.267794 +0.2091628 0.1121653 1.267794 +0.2838106 0.1121653 1.267794 +0.3840425 0.1121653 1.267794 +0.518627 0.1121653 1.267794 +0.6993381 0.1121653 1.267794 +0.9419845 0.1121653 1.267794 +1.267794 0.1121653 1.267794 +1.705268 0.1121653 1.267794 +2.292679 0.1121653 1.267794 +3.081414 0.1121653 1.267794 +4.140474 0.1121653 1.267794 +5.562508 0.1121653 1.267794 +7.471917 0.1121653 1.267794 +10.03574 0.1121653 1.267794 +13.47828 0.1121653 1.267794 +18.10068 0.1121653 1.267794 +24.30731 0.1121653 1.267794 +32.64117 0.1121653 1.267794 +43.83129 0.1121653 1.267794 +58.85664 0.1121653 1.267794 +-0.0175068 0.1535689 1.267794 +-0.01161267 0.1535689 1.267794 +-0.005718534 0.1535689 1.267794 +0.0001755984 0.1535689 1.267794 +0.006069731 0.1535689 1.267794 +0.01197402 0.1535689 1.267794 +0.01903886 0.1535689 1.267794 +0.02852504 0.1535689 1.267794 +0.04126244 0.1535689 1.267794 +0.05836535 0.1535689 1.267794 +0.08132997 0.1535689 1.267794 +0.1121653 0.1535689 1.267794 +0.1535689 0.1535689 1.267794 +0.2091628 0.1535689 1.267794 +0.2838106 0.1535689 1.267794 +0.3840425 0.1535689 1.267794 +0.518627 0.1535689 1.267794 +0.6993381 0.1535689 1.267794 +0.9419845 0.1535689 1.267794 +1.267794 0.1535689 1.267794 +1.705268 0.1535689 1.267794 +2.292679 0.1535689 1.267794 +3.081414 0.1535689 1.267794 +4.140474 0.1535689 1.267794 +5.562508 0.1535689 1.267794 +7.471917 0.1535689 1.267794 +10.03574 0.1535689 1.267794 +13.47828 0.1535689 1.267794 +18.10068 0.1535689 1.267794 +24.30731 0.1535689 1.267794 +32.64117 0.1535689 1.267794 +43.83129 0.1535689 1.267794 +58.85664 0.1535689 1.267794 +-0.0175068 0.2091628 1.267794 +-0.01161267 0.2091628 1.267794 +-0.005718534 0.2091628 1.267794 +0.0001755984 0.2091628 1.267794 +0.006069731 0.2091628 1.267794 +0.01197402 0.2091628 1.267794 +0.01903886 0.2091628 1.267794 +0.02852504 0.2091628 1.267794 +0.04126244 0.2091628 1.267794 +0.05836535 0.2091628 1.267794 +0.08132997 0.2091628 1.267794 +0.1121653 0.2091628 1.267794 +0.1535689 0.2091628 1.267794 +0.2091628 0.2091628 1.267794 +0.2838106 0.2091628 1.267794 +0.3840425 0.2091628 1.267794 +0.518627 0.2091628 1.267794 +0.6993381 0.2091628 1.267794 +0.9419845 0.2091628 1.267794 +1.267794 0.2091628 1.267794 +1.705268 0.2091628 1.267794 +2.292679 0.2091628 1.267794 +3.081414 0.2091628 1.267794 +4.140474 0.2091628 1.267794 +5.562508 0.2091628 1.267794 +7.471917 0.2091628 1.267794 +10.03574 0.2091628 1.267794 +13.47828 0.2091628 1.267794 +18.10068 0.2091628 1.267794 +24.30731 0.2091628 1.267794 +32.64117 0.2091628 1.267794 +43.83129 0.2091628 1.267794 +58.85664 0.2091628 1.267794 +-0.0175068 0.2838106 1.267794 +-0.01161267 0.2838106 1.267794 +-0.005718534 0.2838106 1.267794 +0.0001755984 0.2838106 1.267794 +0.006069731 0.2838106 1.267794 +0.01197402 0.2838106 1.267794 +0.01903886 0.2838106 1.267794 +0.02852504 0.2838106 1.267794 +0.04126244 0.2838106 1.267794 +0.05836535 0.2838106 1.267794 +0.08132997 0.2838106 1.267794 +0.1121653 0.2838106 1.267794 +0.1535689 0.2838106 1.267794 +0.2091628 0.2838106 1.267794 +0.2838106 0.2838106 1.267794 +0.3840425 0.2838106 1.267794 +0.518627 0.2838106 1.267794 +0.6993381 0.2838106 1.267794 +0.9419845 0.2838106 1.267794 +1.267794 0.2838106 1.267794 +1.705268 0.2838106 1.267794 +2.292679 0.2838106 1.267794 +3.081414 0.2838106 1.267794 +4.140474 0.2838106 1.267794 +5.562508 0.2838106 1.267794 +7.471917 0.2838106 1.267794 +10.03574 0.2838106 1.267794 +13.47828 0.2838106 1.267794 +18.10068 0.2838106 1.267794 +24.30731 0.2838106 1.267794 +32.64117 0.2838106 1.267794 +43.83129 0.2838106 1.267794 +58.85664 0.2838106 1.267794 +-0.0175068 0.3840425 1.267794 +-0.01161267 0.3840425 1.267794 +-0.005718534 0.3840425 1.267794 +0.0001755984 0.3840425 1.267794 +0.006069731 0.3840425 1.267794 +0.01197402 0.3840425 1.267794 +0.01903886 0.3840425 1.267794 +0.02852504 0.3840425 1.267794 +0.04126244 0.3840425 1.267794 +0.05836535 0.3840425 1.267794 +0.08132997 0.3840425 1.267794 +0.1121653 0.3840425 1.267794 +0.1535689 0.3840425 1.267794 +0.2091628 0.3840425 1.267794 +0.2838106 0.3840425 1.267794 +0.3840425 0.3840425 1.267794 +0.518627 0.3840425 1.267794 +0.6993381 0.3840425 1.267794 +0.9419845 0.3840425 1.267794 +1.267794 0.3840425 1.267794 +1.705268 0.3840425 1.267794 +2.292679 0.3840425 1.267794 +3.081414 0.3840425 1.267794 +4.140474 0.3840425 1.267794 +5.562508 0.3840425 1.267794 +7.471917 0.3840425 1.267794 +10.03574 0.3840425 1.267794 +13.47828 0.3840425 1.267794 +18.10068 0.3840425 1.267794 +24.30731 0.3840425 1.267794 +32.64117 0.3840425 1.267794 +43.83129 0.3840425 1.267794 +58.85664 0.3840425 1.267794 +-0.0175068 0.518627 1.267794 +-0.01161267 0.518627 1.267794 +-0.005718534 0.518627 1.267794 +0.0001755984 0.518627 1.267794 +0.006069731 0.518627 1.267794 +0.01197402 0.518627 1.267794 +0.01903886 0.518627 1.267794 +0.02852504 0.518627 1.267794 +0.04126244 0.518627 1.267794 +0.05836535 0.518627 1.267794 +0.08132997 0.518627 1.267794 +0.1121653 0.518627 1.267794 +0.1535689 0.518627 1.267794 +0.2091628 0.518627 1.267794 +0.2838106 0.518627 1.267794 +0.3840425 0.518627 1.267794 +0.518627 0.518627 1.267794 +0.6993381 0.518627 1.267794 +0.9419845 0.518627 1.267794 +1.267794 0.518627 1.267794 +1.705268 0.518627 1.267794 +2.292679 0.518627 1.267794 +3.081414 0.518627 1.267794 +4.140474 0.518627 1.267794 +5.562508 0.518627 1.267794 +7.471917 0.518627 1.267794 +10.03574 0.518627 1.267794 +13.47828 0.518627 1.267794 +18.10068 0.518627 1.267794 +24.30731 0.518627 1.267794 +32.64117 0.518627 1.267794 +43.83129 0.518627 1.267794 +58.85664 0.518627 1.267794 +-0.0175068 0.6993381 1.267794 +-0.01161267 0.6993381 1.267794 +-0.005718534 0.6993381 1.267794 +0.0001755984 0.6993381 1.267794 +0.006069731 0.6993381 1.267794 +0.01197402 0.6993381 1.267794 +0.01903886 0.6993381 1.267794 +0.02852504 0.6993381 1.267794 +0.04126244 0.6993381 1.267794 +0.05836535 0.6993381 1.267794 +0.08132997 0.6993381 1.267794 +0.1121653 0.6993381 1.267794 +0.1535689 0.6993381 1.267794 +0.2091628 0.6993381 1.267794 +0.2838106 0.6993381 1.267794 +0.3840425 0.6993381 1.267794 +0.518627 0.6993381 1.267794 +0.6993381 0.6993381 1.267794 +0.9419845 0.6993381 1.267794 +1.267794 0.6993381 1.267794 +1.705268 0.6993381 1.267794 +2.292679 0.6993381 1.267794 +3.081414 0.6993381 1.267794 +4.140474 0.6993381 1.267794 +5.562508 0.6993381 1.267794 +7.471917 0.6993381 1.267794 +10.03574 0.6993381 1.267794 +13.47828 0.6993381 1.267794 +18.10068 0.6993381 1.267794 +24.30731 0.6993381 1.267794 +32.64117 0.6993381 1.267794 +43.83129 0.6993381 1.267794 +58.85664 0.6993381 1.267794 +-0.0175068 0.9419845 1.267794 +-0.01161267 0.9419845 1.267794 +-0.005718534 0.9419845 1.267794 +0.0001755984 0.9419845 1.267794 +0.006069731 0.9419845 1.267794 +0.01197402 0.9419845 1.267794 +0.01903886 0.9419845 1.267794 +0.02852504 0.9419845 1.267794 +0.04126244 0.9419845 1.267794 +0.05836535 0.9419845 1.267794 +0.08132997 0.9419845 1.267794 +0.1121653 0.9419845 1.267794 +0.1535689 0.9419845 1.267794 +0.2091628 0.9419845 1.267794 +0.2838106 0.9419845 1.267794 +0.3840425 0.9419845 1.267794 +0.518627 0.9419845 1.267794 +0.6993381 0.9419845 1.267794 +0.9419845 0.9419845 1.267794 +1.267794 0.9419845 1.267794 +1.705268 0.9419845 1.267794 +2.292679 0.9419845 1.267794 +3.081414 0.9419845 1.267794 +4.140474 0.9419845 1.267794 +5.562508 0.9419845 1.267794 +7.471917 0.9419845 1.267794 +10.03574 0.9419845 1.267794 +13.47828 0.9419845 1.267794 +18.10068 0.9419845 1.267794 +24.30731 0.9419845 1.267794 +32.64117 0.9419845 1.267794 +43.83129 0.9419845 1.267794 +58.85664 0.9419845 1.267794 +-0.0175068 1.267794 1.267794 +-0.01161267 1.267794 1.267794 +-0.005718534 1.267794 1.267794 +0.0001755984 1.267794 1.267794 +0.006069731 1.267794 1.267794 +0.01197402 1.267794 1.267794 +0.01903886 1.267794 1.267794 +0.02852504 1.267794 1.267794 +0.04126244 1.267794 1.267794 +0.05836535 1.267794 1.267794 +0.08132997 1.267794 1.267794 +0.1121653 1.267794 1.267794 +0.1535689 1.267794 1.267794 +0.2091628 1.267794 1.267794 +0.2838106 1.267794 1.267794 +0.3840425 1.267794 1.267794 +0.518627 1.267794 1.267794 +0.6993381 1.267794 1.267794 +0.9419845 1.267794 1.267794 +1.267794 1.267794 1.267794 +1.705268 1.267794 1.267794 +2.292679 1.267794 1.267794 +3.081414 1.267794 1.267794 +4.140474 1.267794 1.267794 +5.562508 1.267794 1.267794 +7.471917 1.267794 1.267794 +10.03574 1.267794 1.267794 +13.47828 1.267794 1.267794 +18.10068 1.267794 1.267794 +24.30731 1.267794 1.267794 +32.64117 1.267794 1.267794 +43.83129 1.267794 1.267794 +58.85664 1.267794 1.267794 +-0.0175068 1.705268 1.267794 +-0.01161267 1.705268 1.267794 +-0.005718534 1.705268 1.267794 +0.0001755984 1.705268 1.267794 +0.006069731 1.705268 1.267794 +0.01197402 1.705268 1.267794 +0.01903886 1.705268 1.267794 +0.02852504 1.705268 1.267794 +0.04126244 1.705268 1.267794 +0.05836535 1.705268 1.267794 +0.08132997 1.705268 1.267794 +0.1121653 1.705268 1.267794 +0.1535689 1.705268 1.267794 +0.2091628 1.705268 1.267794 +0.2838106 1.705268 1.267794 +0.3840425 1.705268 1.267794 +0.518627 1.705268 1.267794 +0.6993381 1.705268 1.267794 +0.9419845 1.705268 1.267794 +1.267794 1.705268 1.267794 +1.705268 1.705268 1.267794 +2.292679 1.705268 1.267794 +3.081414 1.705268 1.267794 +4.140474 1.705268 1.267794 +5.562508 1.705268 1.267794 +7.471917 1.705268 1.267794 +10.03574 1.705268 1.267794 +13.47828 1.705268 1.267794 +18.10068 1.705268 1.267794 +24.30731 1.705268 1.267794 +32.64117 1.705268 1.267794 +43.83129 1.705268 1.267794 +58.85664 1.705268 1.267794 +-0.0175068 2.292679 1.267794 +-0.01161267 2.292679 1.267794 +-0.005718534 2.292679 1.267794 +0.0001755984 2.292679 1.267794 +0.006069731 2.292679 1.267794 +0.01197402 2.292679 1.267794 +0.01903886 2.292679 1.267794 +0.02852504 2.292679 1.267794 +0.04126244 2.292679 1.267794 +0.05836535 2.292679 1.267794 +0.08132997 2.292679 1.267794 +0.1121653 2.292679 1.267794 +0.1535689 2.292679 1.267794 +0.2091628 2.292679 1.267794 +0.2838106 2.292679 1.267794 +0.3840425 2.292679 1.267794 +0.518627 2.292679 1.267794 +0.6993381 2.292679 1.267794 +0.9419845 2.292679 1.267794 +1.267794 2.292679 1.267794 +1.705268 2.292679 1.267794 +2.292679 2.292679 1.267794 +3.081414 2.292679 1.267794 +4.140474 2.292679 1.267794 +5.562508 2.292679 1.267794 +7.471917 2.292679 1.267794 +10.03574 2.292679 1.267794 +13.47828 2.292679 1.267794 +18.10068 2.292679 1.267794 +24.30731 2.292679 1.267794 +32.64117 2.292679 1.267794 +43.83129 2.292679 1.267794 +58.85664 2.292679 1.267794 +-0.0175068 3.081414 1.267794 +-0.01161267 3.081414 1.267794 +-0.005718534 3.081414 1.267794 +0.0001755984 3.081414 1.267794 +0.006069731 3.081414 1.267794 +0.01197402 3.081414 1.267794 +0.01903886 3.081414 1.267794 +0.02852504 3.081414 1.267794 +0.04126244 3.081414 1.267794 +0.05836535 3.081414 1.267794 +0.08132997 3.081414 1.267794 +0.1121653 3.081414 1.267794 +0.1535689 3.081414 1.267794 +0.2091628 3.081414 1.267794 +0.2838106 3.081414 1.267794 +0.3840425 3.081414 1.267794 +0.518627 3.081414 1.267794 +0.6993381 3.081414 1.267794 +0.9419845 3.081414 1.267794 +1.267794 3.081414 1.267794 +1.705268 3.081414 1.267794 +2.292679 3.081414 1.267794 +3.081414 3.081414 1.267794 +4.140474 3.081414 1.267794 +5.562508 3.081414 1.267794 +7.471917 3.081414 1.267794 +10.03574 3.081414 1.267794 +13.47828 3.081414 1.267794 +18.10068 3.081414 1.267794 +24.30731 3.081414 1.267794 +32.64117 3.081414 1.267794 +43.83129 3.081414 1.267794 +58.85664 3.081414 1.267794 +-0.0175068 4.140474 1.267794 +-0.01161267 4.140474 1.267794 +-0.005718534 4.140474 1.267794 +0.0001755984 4.140474 1.267794 +0.006069731 4.140474 1.267794 +0.01197402 4.140474 1.267794 +0.01903886 4.140474 1.267794 +0.02852504 4.140474 1.267794 +0.04126244 4.140474 1.267794 +0.05836535 4.140474 1.267794 +0.08132997 4.140474 1.267794 +0.1121653 4.140474 1.267794 +0.1535689 4.140474 1.267794 +0.2091628 4.140474 1.267794 +0.2838106 4.140474 1.267794 +0.3840425 4.140474 1.267794 +0.518627 4.140474 1.267794 +0.6993381 4.140474 1.267794 +0.9419845 4.140474 1.267794 +1.267794 4.140474 1.267794 +1.705268 4.140474 1.267794 +2.292679 4.140474 1.267794 +3.081414 4.140474 1.267794 +4.140474 4.140474 1.267794 +5.562508 4.140474 1.267794 +7.471917 4.140474 1.267794 +10.03574 4.140474 1.267794 +13.47828 4.140474 1.267794 +18.10068 4.140474 1.267794 +24.30731 4.140474 1.267794 +32.64117 4.140474 1.267794 +43.83129 4.140474 1.267794 +58.85664 4.140474 1.267794 +-0.0175068 5.562508 1.267794 +-0.01161267 5.562508 1.267794 +-0.005718534 5.562508 1.267794 +0.0001755984 5.562508 1.267794 +0.006069731 5.562508 1.267794 +0.01197402 5.562508 1.267794 +0.01903886 5.562508 1.267794 +0.02852504 5.562508 1.267794 +0.04126244 5.562508 1.267794 +0.05836535 5.562508 1.267794 +0.08132997 5.562508 1.267794 +0.1121653 5.562508 1.267794 +0.1535689 5.562508 1.267794 +0.2091628 5.562508 1.267794 +0.2838106 5.562508 1.267794 +0.3840425 5.562508 1.267794 +0.518627 5.562508 1.267794 +0.6993381 5.562508 1.267794 +0.9419845 5.562508 1.267794 +1.267794 5.562508 1.267794 +1.705268 5.562508 1.267794 +2.292679 5.562508 1.267794 +3.081414 5.562508 1.267794 +4.140474 5.562508 1.267794 +5.562508 5.562508 1.267794 +7.471917 5.562508 1.267794 +10.03574 5.562508 1.267794 +13.47828 5.562508 1.267794 +18.10068 5.562508 1.267794 +24.30731 5.562508 1.267794 +32.64117 5.562508 1.267794 +43.83129 5.562508 1.267794 +58.85664 5.562508 1.267794 +-0.0175068 7.471917 1.267794 +-0.01161267 7.471917 1.267794 +-0.005718534 7.471917 1.267794 +0.0001755984 7.471917 1.267794 +0.006069731 7.471917 1.267794 +0.01197402 7.471917 1.267794 +0.01903886 7.471917 1.267794 +0.02852504 7.471917 1.267794 +0.04126244 7.471917 1.267794 +0.05836535 7.471917 1.267794 +0.08132997 7.471917 1.267794 +0.1121653 7.471917 1.267794 +0.1535689 7.471917 1.267794 +0.2091628 7.471917 1.267794 +0.2838106 7.471917 1.267794 +0.3840425 7.471917 1.267794 +0.518627 7.471917 1.267794 +0.6993381 7.471917 1.267794 +0.9419845 7.471917 1.267794 +1.267794 7.471917 1.267794 +1.705268 7.471917 1.267794 +2.292679 7.471917 1.267794 +3.081414 7.471917 1.267794 +4.140474 7.471917 1.267794 +5.562508 7.471917 1.267794 +7.471917 7.471917 1.267794 +10.03574 7.471917 1.267794 +13.47828 7.471917 1.267794 +18.10068 7.471917 1.267794 +24.30731 7.471917 1.267794 +32.64117 7.471917 1.267794 +43.83129 7.471917 1.267794 +58.85664 7.471917 1.267794 +-0.0175068 10.03574 1.267794 +-0.01161267 10.03574 1.267794 +-0.005718534 10.03574 1.267794 +0.0001755984 10.03574 1.267794 +0.006069731 10.03574 1.267794 +0.01197402 10.03574 1.267794 +0.01903886 10.03574 1.267794 +0.02852504 10.03574 1.267794 +0.04126244 10.03574 1.267794 +0.05836535 10.03574 1.267794 +0.08132997 10.03574 1.267794 +0.1121653 10.03574 1.267794 +0.1535689 10.03574 1.267794 +0.2091628 10.03574 1.267794 +0.2838106 10.03574 1.267794 +0.3840425 10.03574 1.267794 +0.518627 10.03574 1.267794 +0.6993381 10.03574 1.267794 +0.9419845 10.03574 1.267794 +1.267794 10.03574 1.267794 +1.705268 10.03574 1.267794 +2.292679 10.03574 1.267794 +3.081414 10.03574 1.267794 +4.140474 10.03574 1.267794 +5.562508 10.03574 1.267794 +7.471917 10.03574 1.267794 +10.03574 10.03574 1.267794 +13.47828 10.03574 1.267794 +18.10068 10.03574 1.267794 +24.30731 10.03574 1.267794 +32.64117 10.03574 1.267794 +43.83129 10.03574 1.267794 +58.85664 10.03574 1.267794 +-0.0175068 13.47828 1.267794 +-0.01161267 13.47828 1.267794 +-0.005718534 13.47828 1.267794 +0.0001755984 13.47828 1.267794 +0.006069731 13.47828 1.267794 +0.01197402 13.47828 1.267794 +0.01903886 13.47828 1.267794 +0.02852504 13.47828 1.267794 +0.04126244 13.47828 1.267794 +0.05836535 13.47828 1.267794 +0.08132997 13.47828 1.267794 +0.1121653 13.47828 1.267794 +0.1535689 13.47828 1.267794 +0.2091628 13.47828 1.267794 +0.2838106 13.47828 1.267794 +0.3840425 13.47828 1.267794 +0.518627 13.47828 1.267794 +0.6993381 13.47828 1.267794 +0.9419845 13.47828 1.267794 +1.267794 13.47828 1.267794 +1.705268 13.47828 1.267794 +2.292679 13.47828 1.267794 +3.081414 13.47828 1.267794 +4.140474 13.47828 1.267794 +5.562508 13.47828 1.267794 +7.471917 13.47828 1.267794 +10.03574 13.47828 1.267794 +13.47828 13.47828 1.267794 +18.10068 13.47828 1.267794 +24.30731 13.47828 1.267794 +32.64117 13.47828 1.267794 +43.83129 13.47828 1.267794 +58.85664 13.47828 1.267794 +-0.0175068 18.10068 1.267794 +-0.01161267 18.10068 1.267794 +-0.005718534 18.10068 1.267794 +0.0001755984 18.10068 1.267794 +0.006069731 18.10068 1.267794 +0.01197402 18.10068 1.267794 +0.01903886 18.10068 1.267794 +0.02852504 18.10068 1.267794 +0.04126244 18.10068 1.267794 +0.05836535 18.10068 1.267794 +0.08132997 18.10068 1.267794 +0.1121653 18.10068 1.267794 +0.1535689 18.10068 1.267794 +0.2091628 18.10068 1.267794 +0.2838106 18.10068 1.267794 +0.3840425 18.10068 1.267794 +0.518627 18.10068 1.267794 +0.6993381 18.10068 1.267794 +0.9419845 18.10068 1.267794 +1.267794 18.10068 1.267794 +1.705268 18.10068 1.267794 +2.292679 18.10068 1.267794 +3.081414 18.10068 1.267794 +4.140474 18.10068 1.267794 +5.562508 18.10068 1.267794 +7.471917 18.10068 1.267794 +10.03574 18.10068 1.267794 +13.47828 18.10068 1.267794 +18.10068 18.10068 1.267794 +24.30731 18.10068 1.267794 +32.64117 18.10068 1.267794 +43.83129 18.10068 1.267794 +58.85664 18.10068 1.267794 +-0.0175068 24.30731 1.267794 +-0.01161267 24.30731 1.267794 +-0.005718534 24.30731 1.267794 +0.0001755984 24.30731 1.267794 +0.006069731 24.30731 1.267794 +0.01197402 24.30731 1.267794 +0.01903886 24.30731 1.267794 +0.02852504 24.30731 1.267794 +0.04126244 24.30731 1.267794 +0.05836535 24.30731 1.267794 +0.08132997 24.30731 1.267794 +0.1121653 24.30731 1.267794 +0.1535689 24.30731 1.267794 +0.2091628 24.30731 1.267794 +0.2838106 24.30731 1.267794 +0.3840425 24.30731 1.267794 +0.518627 24.30731 1.267794 +0.6993381 24.30731 1.267794 +0.9419845 24.30731 1.267794 +1.267794 24.30731 1.267794 +1.705268 24.30731 1.267794 +2.292679 24.30731 1.267794 +3.081414 24.30731 1.267794 +4.140474 24.30731 1.267794 +5.562508 24.30731 1.267794 +7.471917 24.30731 1.267794 +10.03574 24.30731 1.267794 +13.47828 24.30731 1.267794 +18.10068 24.30731 1.267794 +24.30731 24.30731 1.267794 +32.64117 24.30731 1.267794 +43.83129 24.30731 1.267794 +58.85664 24.30731 1.267794 +-0.0175068 32.64117 1.267794 +-0.01161267 32.64117 1.267794 +-0.005718534 32.64117 1.267794 +0.0001755984 32.64117 1.267794 +0.006069731 32.64117 1.267794 +0.01197402 32.64117 1.267794 +0.01903886 32.64117 1.267794 +0.02852504 32.64117 1.267794 +0.04126244 32.64117 1.267794 +0.05836535 32.64117 1.267794 +0.08132997 32.64117 1.267794 +0.1121653 32.64117 1.267794 +0.1535689 32.64117 1.267794 +0.2091628 32.64117 1.267794 +0.2838106 32.64117 1.267794 +0.3840425 32.64117 1.267794 +0.518627 32.64117 1.267794 +0.6993381 32.64117 1.267794 +0.9419845 32.64117 1.267794 +1.267794 32.64117 1.267794 +1.705268 32.64117 1.267794 +2.292679 32.64117 1.267794 +3.081414 32.64117 1.267794 +4.140474 32.64117 1.267794 +5.562508 32.64117 1.267794 +7.471917 32.64117 1.267794 +10.03574 32.64117 1.267794 +13.47828 32.64117 1.267794 +18.10068 32.64117 1.267794 +24.30731 32.64117 1.267794 +32.64117 32.64117 1.267794 +43.83129 32.64117 1.267794 +58.85664 32.64117 1.267794 +-0.0175068 43.83129 1.267794 +-0.01161267 43.83129 1.267794 +-0.005718534 43.83129 1.267794 +0.0001755984 43.83129 1.267794 +0.006069731 43.83129 1.267794 +0.01197402 43.83129 1.267794 +0.01903886 43.83129 1.267794 +0.02852504 43.83129 1.267794 +0.04126244 43.83129 1.267794 +0.05836535 43.83129 1.267794 +0.08132997 43.83129 1.267794 +0.1121653 43.83129 1.267794 +0.1535689 43.83129 1.267794 +0.2091628 43.83129 1.267794 +0.2838106 43.83129 1.267794 +0.3840425 43.83129 1.267794 +0.518627 43.83129 1.267794 +0.6993381 43.83129 1.267794 +0.9419845 43.83129 1.267794 +1.267794 43.83129 1.267794 +1.705268 43.83129 1.267794 +2.292679 43.83129 1.267794 +3.081414 43.83129 1.267794 +4.140474 43.83129 1.267794 +5.562508 43.83129 1.267794 +7.471917 43.83129 1.267794 +10.03574 43.83129 1.267794 +13.47828 43.83129 1.267794 +18.10068 43.83129 1.267794 +24.30731 43.83129 1.267794 +32.64117 43.83129 1.267794 +43.83129 43.83129 1.267794 +58.85664 43.83129 1.267794 +-0.0175068 58.85664 1.267794 +-0.01161267 58.85664 1.267794 +-0.005718534 58.85664 1.267794 +0.0001755984 58.85664 1.267794 +0.006069731 58.85664 1.267794 +0.01197402 58.85664 1.267794 +0.01903886 58.85664 1.267794 +0.02852504 58.85664 1.267794 +0.04126244 58.85664 1.267794 +0.05836535 58.85664 1.267794 +0.08132997 58.85664 1.267794 +0.1121653 58.85664 1.267794 +0.1535689 58.85664 1.267794 +0.2091628 58.85664 1.267794 +0.2838106 58.85664 1.267794 +0.3840425 58.85664 1.267794 +0.518627 58.85664 1.267794 +0.6993381 58.85664 1.267794 +0.9419845 58.85664 1.267794 +1.267794 58.85664 1.267794 +1.705268 58.85664 1.267794 +2.292679 58.85664 1.267794 +3.081414 58.85664 1.267794 +4.140474 58.85664 1.267794 +5.562508 58.85664 1.267794 +7.471917 58.85664 1.267794 +10.03574 58.85664 1.267794 +13.47828 58.85664 1.267794 +18.10068 58.85664 1.267794 +24.30731 58.85664 1.267794 +32.64117 58.85664 1.267794 +43.83129 58.85664 1.267794 +58.85664 58.85664 1.267794 +-0.0175068 -0.0175068 1.705268 +-0.01161267 -0.0175068 1.705268 +-0.005718534 -0.0175068 1.705268 +0.0001755984 -0.0175068 1.705268 +0.006069731 -0.0175068 1.705268 +0.01197402 -0.0175068 1.705268 +0.01903886 -0.0175068 1.705268 +0.02852504 -0.0175068 1.705268 +0.04126244 -0.0175068 1.705268 +0.05836535 -0.0175068 1.705268 +0.08132997 -0.0175068 1.705268 +0.1121653 -0.0175068 1.705268 +0.1535689 -0.0175068 1.705268 +0.2091628 -0.0175068 1.705268 +0.2838106 -0.0175068 1.705268 +0.3840425 -0.0175068 1.705268 +0.518627 -0.0175068 1.705268 +0.6993381 -0.0175068 1.705268 +0.9419845 -0.0175068 1.705268 +1.267794 -0.0175068 1.705268 +1.705268 -0.0175068 1.705268 +2.292679 -0.0175068 1.705268 +3.081414 -0.0175068 1.705268 +4.140474 -0.0175068 1.705268 +5.562508 -0.0175068 1.705268 +7.471917 -0.0175068 1.705268 +10.03574 -0.0175068 1.705268 +13.47828 -0.0175068 1.705268 +18.10068 -0.0175068 1.705268 +24.30731 -0.0175068 1.705268 +32.64117 -0.0175068 1.705268 +43.83129 -0.0175068 1.705268 +58.85664 -0.0175068 1.705268 +-0.0175068 -0.01161267 1.705268 +-0.01161267 -0.01161267 1.705268 +-0.005718534 -0.01161267 1.705268 +0.0001755984 -0.01161267 1.705268 +0.006069731 -0.01161267 1.705268 +0.01197402 -0.01161267 1.705268 +0.01903886 -0.01161267 1.705268 +0.02852504 -0.01161267 1.705268 +0.04126244 -0.01161267 1.705268 +0.05836535 -0.01161267 1.705268 +0.08132997 -0.01161267 1.705268 +0.1121653 -0.01161267 1.705268 +0.1535689 -0.01161267 1.705268 +0.2091628 -0.01161267 1.705268 +0.2838106 -0.01161267 1.705268 +0.3840425 -0.01161267 1.705268 +0.518627 -0.01161267 1.705268 +0.6993381 -0.01161267 1.705268 +0.9419845 -0.01161267 1.705268 +1.267794 -0.01161267 1.705268 +1.705268 -0.01161267 1.705268 +2.292679 -0.01161267 1.705268 +3.081414 -0.01161267 1.705268 +4.140474 -0.01161267 1.705268 +5.562508 -0.01161267 1.705268 +7.471917 -0.01161267 1.705268 +10.03574 -0.01161267 1.705268 +13.47828 -0.01161267 1.705268 +18.10068 -0.01161267 1.705268 +24.30731 -0.01161267 1.705268 +32.64117 -0.01161267 1.705268 +43.83129 -0.01161267 1.705268 +58.85664 -0.01161267 1.705268 +-0.0175068 -0.005718534 1.705268 +-0.01161267 -0.005718534 1.705268 +-0.005718534 -0.005718534 1.705268 +0.0001755984 -0.005718534 1.705268 +0.006069731 -0.005718534 1.705268 +0.01197402 -0.005718534 1.705268 +0.01903886 -0.005718534 1.705268 +0.02852504 -0.005718534 1.705268 +0.04126244 -0.005718534 1.705268 +0.05836535 -0.005718534 1.705268 +0.08132997 -0.005718534 1.705268 +0.1121653 -0.005718534 1.705268 +0.1535689 -0.005718534 1.705268 +0.2091628 -0.005718534 1.705268 +0.2838106 -0.005718534 1.705268 +0.3840425 -0.005718534 1.705268 +0.518627 -0.005718534 1.705268 +0.6993381 -0.005718534 1.705268 +0.9419845 -0.005718534 1.705268 +1.267794 -0.005718534 1.705268 +1.705268 -0.005718534 1.705268 +2.292679 -0.005718534 1.705268 +3.081414 -0.005718534 1.705268 +4.140474 -0.005718534 1.705268 +5.562508 -0.005718534 1.705268 +7.471917 -0.005718534 1.705268 +10.03574 -0.005718534 1.705268 +13.47828 -0.005718534 1.705268 +18.10068 -0.005718534 1.705268 +24.30731 -0.005718534 1.705268 +32.64117 -0.005718534 1.705268 +43.83129 -0.005718534 1.705268 +58.85664 -0.005718534 1.705268 +-0.0175068 0.0001755984 1.705268 +-0.01161267 0.0001755984 1.705268 +-0.005718534 0.0001755984 1.705268 +0.0001755984 0.0001755984 1.705268 +0.006069731 0.0001755984 1.705268 +0.01197402 0.0001755984 1.705268 +0.01903886 0.0001755984 1.705268 +0.02852504 0.0001755984 1.705268 +0.04126244 0.0001755984 1.705268 +0.05836535 0.0001755984 1.705268 +0.08132997 0.0001755984 1.705268 +0.1121653 0.0001755984 1.705268 +0.1535689 0.0001755984 1.705268 +0.2091628 0.0001755984 1.705268 +0.2838106 0.0001755984 1.705268 +0.3840425 0.0001755984 1.705268 +0.518627 0.0001755984 1.705268 +0.6993381 0.0001755984 1.705268 +0.9419845 0.0001755984 1.705268 +1.267794 0.0001755984 1.705268 +1.705268 0.0001755984 1.705268 +2.292679 0.0001755984 1.705268 +3.081414 0.0001755984 1.705268 +4.140474 0.0001755984 1.705268 +5.562508 0.0001755984 1.705268 +7.471917 0.0001755984 1.705268 +10.03574 0.0001755984 1.705268 +13.47828 0.0001755984 1.705268 +18.10068 0.0001755984 1.705268 +24.30731 0.0001755984 1.705268 +32.64117 0.0001755984 1.705268 +43.83129 0.0001755984 1.705268 +58.85664 0.0001755984 1.705268 +-0.0175068 0.006069731 1.705268 +-0.01161267 0.006069731 1.705268 +-0.005718534 0.006069731 1.705268 +0.0001755984 0.006069731 1.705268 +0.006069731 0.006069731 1.705268 +0.01197402 0.006069731 1.705268 +0.01903886 0.006069731 1.705268 +0.02852504 0.006069731 1.705268 +0.04126244 0.006069731 1.705268 +0.05836535 0.006069731 1.705268 +0.08132997 0.006069731 1.705268 +0.1121653 0.006069731 1.705268 +0.1535689 0.006069731 1.705268 +0.2091628 0.006069731 1.705268 +0.2838106 0.006069731 1.705268 +0.3840425 0.006069731 1.705268 +0.518627 0.006069731 1.705268 +0.6993381 0.006069731 1.705268 +0.9419845 0.006069731 1.705268 +1.267794 0.006069731 1.705268 +1.705268 0.006069731 1.705268 +2.292679 0.006069731 1.705268 +3.081414 0.006069731 1.705268 +4.140474 0.006069731 1.705268 +5.562508 0.006069731 1.705268 +7.471917 0.006069731 1.705268 +10.03574 0.006069731 1.705268 +13.47828 0.006069731 1.705268 +18.10068 0.006069731 1.705268 +24.30731 0.006069731 1.705268 +32.64117 0.006069731 1.705268 +43.83129 0.006069731 1.705268 +58.85664 0.006069731 1.705268 +-0.0175068 0.01197402 1.705268 +-0.01161267 0.01197402 1.705268 +-0.005718534 0.01197402 1.705268 +0.0001755984 0.01197402 1.705268 +0.006069731 0.01197402 1.705268 +0.01197402 0.01197402 1.705268 +0.01903886 0.01197402 1.705268 +0.02852504 0.01197402 1.705268 +0.04126244 0.01197402 1.705268 +0.05836535 0.01197402 1.705268 +0.08132997 0.01197402 1.705268 +0.1121653 0.01197402 1.705268 +0.1535689 0.01197402 1.705268 +0.2091628 0.01197402 1.705268 +0.2838106 0.01197402 1.705268 +0.3840425 0.01197402 1.705268 +0.518627 0.01197402 1.705268 +0.6993381 0.01197402 1.705268 +0.9419845 0.01197402 1.705268 +1.267794 0.01197402 1.705268 +1.705268 0.01197402 1.705268 +2.292679 0.01197402 1.705268 +3.081414 0.01197402 1.705268 +4.140474 0.01197402 1.705268 +5.562508 0.01197402 1.705268 +7.471917 0.01197402 1.705268 +10.03574 0.01197402 1.705268 +13.47828 0.01197402 1.705268 +18.10068 0.01197402 1.705268 +24.30731 0.01197402 1.705268 +32.64117 0.01197402 1.705268 +43.83129 0.01197402 1.705268 +58.85664 0.01197402 1.705268 +-0.0175068 0.01903886 1.705268 +-0.01161267 0.01903886 1.705268 +-0.005718534 0.01903886 1.705268 +0.0001755984 0.01903886 1.705268 +0.006069731 0.01903886 1.705268 +0.01197402 0.01903886 1.705268 +0.01903886 0.01903886 1.705268 +0.02852504 0.01903886 1.705268 +0.04126244 0.01903886 1.705268 +0.05836535 0.01903886 1.705268 +0.08132997 0.01903886 1.705268 +0.1121653 0.01903886 1.705268 +0.1535689 0.01903886 1.705268 +0.2091628 0.01903886 1.705268 +0.2838106 0.01903886 1.705268 +0.3840425 0.01903886 1.705268 +0.518627 0.01903886 1.705268 +0.6993381 0.01903886 1.705268 +0.9419845 0.01903886 1.705268 +1.267794 0.01903886 1.705268 +1.705268 0.01903886 1.705268 +2.292679 0.01903886 1.705268 +3.081414 0.01903886 1.705268 +4.140474 0.01903886 1.705268 +5.562508 0.01903886 1.705268 +7.471917 0.01903886 1.705268 +10.03574 0.01903886 1.705268 +13.47828 0.01903886 1.705268 +18.10068 0.01903886 1.705268 +24.30731 0.01903886 1.705268 +32.64117 0.01903886 1.705268 +43.83129 0.01903886 1.705268 +58.85664 0.01903886 1.705268 +-0.0175068 0.02852504 1.705268 +-0.01161267 0.02852504 1.705268 +-0.005718534 0.02852504 1.705268 +0.0001755984 0.02852504 1.705268 +0.006069731 0.02852504 1.705268 +0.01197402 0.02852504 1.705268 +0.01903886 0.02852504 1.705268 +0.02852504 0.02852504 1.705268 +0.04126244 0.02852504 1.705268 +0.05836535 0.02852504 1.705268 +0.08132997 0.02852504 1.705268 +0.1121653 0.02852504 1.705268 +0.1535689 0.02852504 1.705268 +0.2091628 0.02852504 1.705268 +0.2838106 0.02852504 1.705268 +0.3840425 0.02852504 1.705268 +0.518627 0.02852504 1.705268 +0.6993381 0.02852504 1.705268 +0.9419845 0.02852504 1.705268 +1.267794 0.02852504 1.705268 +1.705268 0.02852504 1.705268 +2.292679 0.02852504 1.705268 +3.081414 0.02852504 1.705268 +4.140474 0.02852504 1.705268 +5.562508 0.02852504 1.705268 +7.471917 0.02852504 1.705268 +10.03574 0.02852504 1.705268 +13.47828 0.02852504 1.705268 +18.10068 0.02852504 1.705268 +24.30731 0.02852504 1.705268 +32.64117 0.02852504 1.705268 +43.83129 0.02852504 1.705268 +58.85664 0.02852504 1.705268 +-0.0175068 0.04126244 1.705268 +-0.01161267 0.04126244 1.705268 +-0.005718534 0.04126244 1.705268 +0.0001755984 0.04126244 1.705268 +0.006069731 0.04126244 1.705268 +0.01197402 0.04126244 1.705268 +0.01903886 0.04126244 1.705268 +0.02852504 0.04126244 1.705268 +0.04126244 0.04126244 1.705268 +0.05836535 0.04126244 1.705268 +0.08132997 0.04126244 1.705268 +0.1121653 0.04126244 1.705268 +0.1535689 0.04126244 1.705268 +0.2091628 0.04126244 1.705268 +0.2838106 0.04126244 1.705268 +0.3840425 0.04126244 1.705268 +0.518627 0.04126244 1.705268 +0.6993381 0.04126244 1.705268 +0.9419845 0.04126244 1.705268 +1.267794 0.04126244 1.705268 +1.705268 0.04126244 1.705268 +2.292679 0.04126244 1.705268 +3.081414 0.04126244 1.705268 +4.140474 0.04126244 1.705268 +5.562508 0.04126244 1.705268 +7.471917 0.04126244 1.705268 +10.03574 0.04126244 1.705268 +13.47828 0.04126244 1.705268 +18.10068 0.04126244 1.705268 +24.30731 0.04126244 1.705268 +32.64117 0.04126244 1.705268 +43.83129 0.04126244 1.705268 +58.85664 0.04126244 1.705268 +-0.0175068 0.05836535 1.705268 +-0.01161267 0.05836535 1.705268 +-0.005718534 0.05836535 1.705268 +0.0001755984 0.05836535 1.705268 +0.006069731 0.05836535 1.705268 +0.01197402 0.05836535 1.705268 +0.01903886 0.05836535 1.705268 +0.02852504 0.05836535 1.705268 +0.04126244 0.05836535 1.705268 +0.05836535 0.05836535 1.705268 +0.08132997 0.05836535 1.705268 +0.1121653 0.05836535 1.705268 +0.1535689 0.05836535 1.705268 +0.2091628 0.05836535 1.705268 +0.2838106 0.05836535 1.705268 +0.3840425 0.05836535 1.705268 +0.518627 0.05836535 1.705268 +0.6993381 0.05836535 1.705268 +0.9419845 0.05836535 1.705268 +1.267794 0.05836535 1.705268 +1.705268 0.05836535 1.705268 +2.292679 0.05836535 1.705268 +3.081414 0.05836535 1.705268 +4.140474 0.05836535 1.705268 +5.562508 0.05836535 1.705268 +7.471917 0.05836535 1.705268 +10.03574 0.05836535 1.705268 +13.47828 0.05836535 1.705268 +18.10068 0.05836535 1.705268 +24.30731 0.05836535 1.705268 +32.64117 0.05836535 1.705268 +43.83129 0.05836535 1.705268 +58.85664 0.05836535 1.705268 +-0.0175068 0.08132997 1.705268 +-0.01161267 0.08132997 1.705268 +-0.005718534 0.08132997 1.705268 +0.0001755984 0.08132997 1.705268 +0.006069731 0.08132997 1.705268 +0.01197402 0.08132997 1.705268 +0.01903886 0.08132997 1.705268 +0.02852504 0.08132997 1.705268 +0.04126244 0.08132997 1.705268 +0.05836535 0.08132997 1.705268 +0.08132997 0.08132997 1.705268 +0.1121653 0.08132997 1.705268 +0.1535689 0.08132997 1.705268 +0.2091628 0.08132997 1.705268 +0.2838106 0.08132997 1.705268 +0.3840425 0.08132997 1.705268 +0.518627 0.08132997 1.705268 +0.6993381 0.08132997 1.705268 +0.9419845 0.08132997 1.705268 +1.267794 0.08132997 1.705268 +1.705268 0.08132997 1.705268 +2.292679 0.08132997 1.705268 +3.081414 0.08132997 1.705268 +4.140474 0.08132997 1.705268 +5.562508 0.08132997 1.705268 +7.471917 0.08132997 1.705268 +10.03574 0.08132997 1.705268 +13.47828 0.08132997 1.705268 +18.10068 0.08132997 1.705268 +24.30731 0.08132997 1.705268 +32.64117 0.08132997 1.705268 +43.83129 0.08132997 1.705268 +58.85664 0.08132997 1.705268 +-0.0175068 0.1121653 1.705268 +-0.01161267 0.1121653 1.705268 +-0.005718534 0.1121653 1.705268 +0.0001755984 0.1121653 1.705268 +0.006069731 0.1121653 1.705268 +0.01197402 0.1121653 1.705268 +0.01903886 0.1121653 1.705268 +0.02852504 0.1121653 1.705268 +0.04126244 0.1121653 1.705268 +0.05836535 0.1121653 1.705268 +0.08132997 0.1121653 1.705268 +0.1121653 0.1121653 1.705268 +0.1535689 0.1121653 1.705268 +0.2091628 0.1121653 1.705268 +0.2838106 0.1121653 1.705268 +0.3840425 0.1121653 1.705268 +0.518627 0.1121653 1.705268 +0.6993381 0.1121653 1.705268 +0.9419845 0.1121653 1.705268 +1.267794 0.1121653 1.705268 +1.705268 0.1121653 1.705268 +2.292679 0.1121653 1.705268 +3.081414 0.1121653 1.705268 +4.140474 0.1121653 1.705268 +5.562508 0.1121653 1.705268 +7.471917 0.1121653 1.705268 +10.03574 0.1121653 1.705268 +13.47828 0.1121653 1.705268 +18.10068 0.1121653 1.705268 +24.30731 0.1121653 1.705268 +32.64117 0.1121653 1.705268 +43.83129 0.1121653 1.705268 +58.85664 0.1121653 1.705268 +-0.0175068 0.1535689 1.705268 +-0.01161267 0.1535689 1.705268 +-0.005718534 0.1535689 1.705268 +0.0001755984 0.1535689 1.705268 +0.006069731 0.1535689 1.705268 +0.01197402 0.1535689 1.705268 +0.01903886 0.1535689 1.705268 +0.02852504 0.1535689 1.705268 +0.04126244 0.1535689 1.705268 +0.05836535 0.1535689 1.705268 +0.08132997 0.1535689 1.705268 +0.1121653 0.1535689 1.705268 +0.1535689 0.1535689 1.705268 +0.2091628 0.1535689 1.705268 +0.2838106 0.1535689 1.705268 +0.3840425 0.1535689 1.705268 +0.518627 0.1535689 1.705268 +0.6993381 0.1535689 1.705268 +0.9419845 0.1535689 1.705268 +1.267794 0.1535689 1.705268 +1.705268 0.1535689 1.705268 +2.292679 0.1535689 1.705268 +3.081414 0.1535689 1.705268 +4.140474 0.1535689 1.705268 +5.562508 0.1535689 1.705268 +7.471917 0.1535689 1.705268 +10.03574 0.1535689 1.705268 +13.47828 0.1535689 1.705268 +18.10068 0.1535689 1.705268 +24.30731 0.1535689 1.705268 +32.64117 0.1535689 1.705268 +43.83129 0.1535689 1.705268 +58.85664 0.1535689 1.705268 +-0.0175068 0.2091628 1.705268 +-0.01161267 0.2091628 1.705268 +-0.005718534 0.2091628 1.705268 +0.0001755984 0.2091628 1.705268 +0.006069731 0.2091628 1.705268 +0.01197402 0.2091628 1.705268 +0.01903886 0.2091628 1.705268 +0.02852504 0.2091628 1.705268 +0.04126244 0.2091628 1.705268 +0.05836535 0.2091628 1.705268 +0.08132997 0.2091628 1.705268 +0.1121653 0.2091628 1.705268 +0.1535689 0.2091628 1.705268 +0.2091628 0.2091628 1.705268 +0.2838106 0.2091628 1.705268 +0.3840425 0.2091628 1.705268 +0.518627 0.2091628 1.705268 +0.6993381 0.2091628 1.705268 +0.9419845 0.2091628 1.705268 +1.267794 0.2091628 1.705268 +1.705268 0.2091628 1.705268 +2.292679 0.2091628 1.705268 +3.081414 0.2091628 1.705268 +4.140474 0.2091628 1.705268 +5.562508 0.2091628 1.705268 +7.471917 0.2091628 1.705268 +10.03574 0.2091628 1.705268 +13.47828 0.2091628 1.705268 +18.10068 0.2091628 1.705268 +24.30731 0.2091628 1.705268 +32.64117 0.2091628 1.705268 +43.83129 0.2091628 1.705268 +58.85664 0.2091628 1.705268 +-0.0175068 0.2838106 1.705268 +-0.01161267 0.2838106 1.705268 +-0.005718534 0.2838106 1.705268 +0.0001755984 0.2838106 1.705268 +0.006069731 0.2838106 1.705268 +0.01197402 0.2838106 1.705268 +0.01903886 0.2838106 1.705268 +0.02852504 0.2838106 1.705268 +0.04126244 0.2838106 1.705268 +0.05836535 0.2838106 1.705268 +0.08132997 0.2838106 1.705268 +0.1121653 0.2838106 1.705268 +0.1535689 0.2838106 1.705268 +0.2091628 0.2838106 1.705268 +0.2838106 0.2838106 1.705268 +0.3840425 0.2838106 1.705268 +0.518627 0.2838106 1.705268 +0.6993381 0.2838106 1.705268 +0.9419845 0.2838106 1.705268 +1.267794 0.2838106 1.705268 +1.705268 0.2838106 1.705268 +2.292679 0.2838106 1.705268 +3.081414 0.2838106 1.705268 +4.140474 0.2838106 1.705268 +5.562508 0.2838106 1.705268 +7.471917 0.2838106 1.705268 +10.03574 0.2838106 1.705268 +13.47828 0.2838106 1.705268 +18.10068 0.2838106 1.705268 +24.30731 0.2838106 1.705268 +32.64117 0.2838106 1.705268 +43.83129 0.2838106 1.705268 +58.85664 0.2838106 1.705268 +-0.0175068 0.3840425 1.705268 +-0.01161267 0.3840425 1.705268 +-0.005718534 0.3840425 1.705268 +0.0001755984 0.3840425 1.705268 +0.006069731 0.3840425 1.705268 +0.01197402 0.3840425 1.705268 +0.01903886 0.3840425 1.705268 +0.02852504 0.3840425 1.705268 +0.04126244 0.3840425 1.705268 +0.05836535 0.3840425 1.705268 +0.08132997 0.3840425 1.705268 +0.1121653 0.3840425 1.705268 +0.1535689 0.3840425 1.705268 +0.2091628 0.3840425 1.705268 +0.2838106 0.3840425 1.705268 +0.3840425 0.3840425 1.705268 +0.518627 0.3840425 1.705268 +0.6993381 0.3840425 1.705268 +0.9419845 0.3840425 1.705268 +1.267794 0.3840425 1.705268 +1.705268 0.3840425 1.705268 +2.292679 0.3840425 1.705268 +3.081414 0.3840425 1.705268 +4.140474 0.3840425 1.705268 +5.562508 0.3840425 1.705268 +7.471917 0.3840425 1.705268 +10.03574 0.3840425 1.705268 +13.47828 0.3840425 1.705268 +18.10068 0.3840425 1.705268 +24.30731 0.3840425 1.705268 +32.64117 0.3840425 1.705268 +43.83129 0.3840425 1.705268 +58.85664 0.3840425 1.705268 +-0.0175068 0.518627 1.705268 +-0.01161267 0.518627 1.705268 +-0.005718534 0.518627 1.705268 +0.0001755984 0.518627 1.705268 +0.006069731 0.518627 1.705268 +0.01197402 0.518627 1.705268 +0.01903886 0.518627 1.705268 +0.02852504 0.518627 1.705268 +0.04126244 0.518627 1.705268 +0.05836535 0.518627 1.705268 +0.08132997 0.518627 1.705268 +0.1121653 0.518627 1.705268 +0.1535689 0.518627 1.705268 +0.2091628 0.518627 1.705268 +0.2838106 0.518627 1.705268 +0.3840425 0.518627 1.705268 +0.518627 0.518627 1.705268 +0.6993381 0.518627 1.705268 +0.9419845 0.518627 1.705268 +1.267794 0.518627 1.705268 +1.705268 0.518627 1.705268 +2.292679 0.518627 1.705268 +3.081414 0.518627 1.705268 +4.140474 0.518627 1.705268 +5.562508 0.518627 1.705268 +7.471917 0.518627 1.705268 +10.03574 0.518627 1.705268 +13.47828 0.518627 1.705268 +18.10068 0.518627 1.705268 +24.30731 0.518627 1.705268 +32.64117 0.518627 1.705268 +43.83129 0.518627 1.705268 +58.85664 0.518627 1.705268 +-0.0175068 0.6993381 1.705268 +-0.01161267 0.6993381 1.705268 +-0.005718534 0.6993381 1.705268 +0.0001755984 0.6993381 1.705268 +0.006069731 0.6993381 1.705268 +0.01197402 0.6993381 1.705268 +0.01903886 0.6993381 1.705268 +0.02852504 0.6993381 1.705268 +0.04126244 0.6993381 1.705268 +0.05836535 0.6993381 1.705268 +0.08132997 0.6993381 1.705268 +0.1121653 0.6993381 1.705268 +0.1535689 0.6993381 1.705268 +0.2091628 0.6993381 1.705268 +0.2838106 0.6993381 1.705268 +0.3840425 0.6993381 1.705268 +0.518627 0.6993381 1.705268 +0.6993381 0.6993381 1.705268 +0.9419845 0.6993381 1.705268 +1.267794 0.6993381 1.705268 +1.705268 0.6993381 1.705268 +2.292679 0.6993381 1.705268 +3.081414 0.6993381 1.705268 +4.140474 0.6993381 1.705268 +5.562508 0.6993381 1.705268 +7.471917 0.6993381 1.705268 +10.03574 0.6993381 1.705268 +13.47828 0.6993381 1.705268 +18.10068 0.6993381 1.705268 +24.30731 0.6993381 1.705268 +32.64117 0.6993381 1.705268 +43.83129 0.6993381 1.705268 +58.85664 0.6993381 1.705268 +-0.0175068 0.9419845 1.705268 +-0.01161267 0.9419845 1.705268 +-0.005718534 0.9419845 1.705268 +0.0001755984 0.9419845 1.705268 +0.006069731 0.9419845 1.705268 +0.01197402 0.9419845 1.705268 +0.01903886 0.9419845 1.705268 +0.02852504 0.9419845 1.705268 +0.04126244 0.9419845 1.705268 +0.05836535 0.9419845 1.705268 +0.08132997 0.9419845 1.705268 +0.1121653 0.9419845 1.705268 +0.1535689 0.9419845 1.705268 +0.2091628 0.9419845 1.705268 +0.2838106 0.9419845 1.705268 +0.3840425 0.9419845 1.705268 +0.518627 0.9419845 1.705268 +0.6993381 0.9419845 1.705268 +0.9419845 0.9419845 1.705268 +1.267794 0.9419845 1.705268 +1.705268 0.9419845 1.705268 +2.292679 0.9419845 1.705268 +3.081414 0.9419845 1.705268 +4.140474 0.9419845 1.705268 +5.562508 0.9419845 1.705268 +7.471917 0.9419845 1.705268 +10.03574 0.9419845 1.705268 +13.47828 0.9419845 1.705268 +18.10068 0.9419845 1.705268 +24.30731 0.9419845 1.705268 +32.64117 0.9419845 1.705268 +43.83129 0.9419845 1.705268 +58.85664 0.9419845 1.705268 +-0.0175068 1.267794 1.705268 +-0.01161267 1.267794 1.705268 +-0.005718534 1.267794 1.705268 +0.0001755984 1.267794 1.705268 +0.006069731 1.267794 1.705268 +0.01197402 1.267794 1.705268 +0.01903886 1.267794 1.705268 +0.02852504 1.267794 1.705268 +0.04126244 1.267794 1.705268 +0.05836535 1.267794 1.705268 +0.08132997 1.267794 1.705268 +0.1121653 1.267794 1.705268 +0.1535689 1.267794 1.705268 +0.2091628 1.267794 1.705268 +0.2838106 1.267794 1.705268 +0.3840425 1.267794 1.705268 +0.518627 1.267794 1.705268 +0.6993381 1.267794 1.705268 +0.9419845 1.267794 1.705268 +1.267794 1.267794 1.705268 +1.705268 1.267794 1.705268 +2.292679 1.267794 1.705268 +3.081414 1.267794 1.705268 +4.140474 1.267794 1.705268 +5.562508 1.267794 1.705268 +7.471917 1.267794 1.705268 +10.03574 1.267794 1.705268 +13.47828 1.267794 1.705268 +18.10068 1.267794 1.705268 +24.30731 1.267794 1.705268 +32.64117 1.267794 1.705268 +43.83129 1.267794 1.705268 +58.85664 1.267794 1.705268 +-0.0175068 1.705268 1.705268 +-0.01161267 1.705268 1.705268 +-0.005718534 1.705268 1.705268 +0.0001755984 1.705268 1.705268 +0.006069731 1.705268 1.705268 +0.01197402 1.705268 1.705268 +0.01903886 1.705268 1.705268 +0.02852504 1.705268 1.705268 +0.04126244 1.705268 1.705268 +0.05836535 1.705268 1.705268 +0.08132997 1.705268 1.705268 +0.1121653 1.705268 1.705268 +0.1535689 1.705268 1.705268 +0.2091628 1.705268 1.705268 +0.2838106 1.705268 1.705268 +0.3840425 1.705268 1.705268 +0.518627 1.705268 1.705268 +0.6993381 1.705268 1.705268 +0.9419845 1.705268 1.705268 +1.267794 1.705268 1.705268 +1.705268 1.705268 1.705268 +2.292679 1.705268 1.705268 +3.081414 1.705268 1.705268 +4.140474 1.705268 1.705268 +5.562508 1.705268 1.705268 +7.471917 1.705268 1.705268 +10.03574 1.705268 1.705268 +13.47828 1.705268 1.705268 +18.10068 1.705268 1.705268 +24.30731 1.705268 1.705268 +32.64117 1.705268 1.705268 +43.83129 1.705268 1.705268 +58.85664 1.705268 1.705268 +-0.0175068 2.292679 1.705268 +-0.01161267 2.292679 1.705268 +-0.005718534 2.292679 1.705268 +0.0001755984 2.292679 1.705268 +0.006069731 2.292679 1.705268 +0.01197402 2.292679 1.705268 +0.01903886 2.292679 1.705268 +0.02852504 2.292679 1.705268 +0.04126244 2.292679 1.705268 +0.05836535 2.292679 1.705268 +0.08132997 2.292679 1.705268 +0.1121653 2.292679 1.705268 +0.1535689 2.292679 1.705268 +0.2091628 2.292679 1.705268 +0.2838106 2.292679 1.705268 +0.3840425 2.292679 1.705268 +0.518627 2.292679 1.705268 +0.6993381 2.292679 1.705268 +0.9419845 2.292679 1.705268 +1.267794 2.292679 1.705268 +1.705268 2.292679 1.705268 +2.292679 2.292679 1.705268 +3.081414 2.292679 1.705268 +4.140474 2.292679 1.705268 +5.562508 2.292679 1.705268 +7.471917 2.292679 1.705268 +10.03574 2.292679 1.705268 +13.47828 2.292679 1.705268 +18.10068 2.292679 1.705268 +24.30731 2.292679 1.705268 +32.64117 2.292679 1.705268 +43.83129 2.292679 1.705268 +58.85664 2.292679 1.705268 +-0.0175068 3.081414 1.705268 +-0.01161267 3.081414 1.705268 +-0.005718534 3.081414 1.705268 +0.0001755984 3.081414 1.705268 +0.006069731 3.081414 1.705268 +0.01197402 3.081414 1.705268 +0.01903886 3.081414 1.705268 +0.02852504 3.081414 1.705268 +0.04126244 3.081414 1.705268 +0.05836535 3.081414 1.705268 +0.08132997 3.081414 1.705268 +0.1121653 3.081414 1.705268 +0.1535689 3.081414 1.705268 +0.2091628 3.081414 1.705268 +0.2838106 3.081414 1.705268 +0.3840425 3.081414 1.705268 +0.518627 3.081414 1.705268 +0.6993381 3.081414 1.705268 +0.9419845 3.081414 1.705268 +1.267794 3.081414 1.705268 +1.705268 3.081414 1.705268 +2.292679 3.081414 1.705268 +3.081414 3.081414 1.705268 +4.140474 3.081414 1.705268 +5.562508 3.081414 1.705268 +7.471917 3.081414 1.705268 +10.03574 3.081414 1.705268 +13.47828 3.081414 1.705268 +18.10068 3.081414 1.705268 +24.30731 3.081414 1.705268 +32.64117 3.081414 1.705268 +43.83129 3.081414 1.705268 +58.85664 3.081414 1.705268 +-0.0175068 4.140474 1.705268 +-0.01161267 4.140474 1.705268 +-0.005718534 4.140474 1.705268 +0.0001755984 4.140474 1.705268 +0.006069731 4.140474 1.705268 +0.01197402 4.140474 1.705268 +0.01903886 4.140474 1.705268 +0.02852504 4.140474 1.705268 +0.04126244 4.140474 1.705268 +0.05836535 4.140474 1.705268 +0.08132997 4.140474 1.705268 +0.1121653 4.140474 1.705268 +0.1535689 4.140474 1.705268 +0.2091628 4.140474 1.705268 +0.2838106 4.140474 1.705268 +0.3840425 4.140474 1.705268 +0.518627 4.140474 1.705268 +0.6993381 4.140474 1.705268 +0.9419845 4.140474 1.705268 +1.267794 4.140474 1.705268 +1.705268 4.140474 1.705268 +2.292679 4.140474 1.705268 +3.081414 4.140474 1.705268 +4.140474 4.140474 1.705268 +5.562508 4.140474 1.705268 +7.471917 4.140474 1.705268 +10.03574 4.140474 1.705268 +13.47828 4.140474 1.705268 +18.10068 4.140474 1.705268 +24.30731 4.140474 1.705268 +32.64117 4.140474 1.705268 +43.83129 4.140474 1.705268 +58.85664 4.140474 1.705268 +-0.0175068 5.562508 1.705268 +-0.01161267 5.562508 1.705268 +-0.005718534 5.562508 1.705268 +0.0001755984 5.562508 1.705268 +0.006069731 5.562508 1.705268 +0.01197402 5.562508 1.705268 +0.01903886 5.562508 1.705268 +0.02852504 5.562508 1.705268 +0.04126244 5.562508 1.705268 +0.05836535 5.562508 1.705268 +0.08132997 5.562508 1.705268 +0.1121653 5.562508 1.705268 +0.1535689 5.562508 1.705268 +0.2091628 5.562508 1.705268 +0.2838106 5.562508 1.705268 +0.3840425 5.562508 1.705268 +0.518627 5.562508 1.705268 +0.6993381 5.562508 1.705268 +0.9419845 5.562508 1.705268 +1.267794 5.562508 1.705268 +1.705268 5.562508 1.705268 +2.292679 5.562508 1.705268 +3.081414 5.562508 1.705268 +4.140474 5.562508 1.705268 +5.562508 5.562508 1.705268 +7.471917 5.562508 1.705268 +10.03574 5.562508 1.705268 +13.47828 5.562508 1.705268 +18.10068 5.562508 1.705268 +24.30731 5.562508 1.705268 +32.64117 5.562508 1.705268 +43.83129 5.562508 1.705268 +58.85664 5.562508 1.705268 +-0.0175068 7.471917 1.705268 +-0.01161267 7.471917 1.705268 +-0.005718534 7.471917 1.705268 +0.0001755984 7.471917 1.705268 +0.006069731 7.471917 1.705268 +0.01197402 7.471917 1.705268 +0.01903886 7.471917 1.705268 +0.02852504 7.471917 1.705268 +0.04126244 7.471917 1.705268 +0.05836535 7.471917 1.705268 +0.08132997 7.471917 1.705268 +0.1121653 7.471917 1.705268 +0.1535689 7.471917 1.705268 +0.2091628 7.471917 1.705268 +0.2838106 7.471917 1.705268 +0.3840425 7.471917 1.705268 +0.518627 7.471917 1.705268 +0.6993381 7.471917 1.705268 +0.9419845 7.471917 1.705268 +1.267794 7.471917 1.705268 +1.705268 7.471917 1.705268 +2.292679 7.471917 1.705268 +3.081414 7.471917 1.705268 +4.140474 7.471917 1.705268 +5.562508 7.471917 1.705268 +7.471917 7.471917 1.705268 +10.03574 7.471917 1.705268 +13.47828 7.471917 1.705268 +18.10068 7.471917 1.705268 +24.30731 7.471917 1.705268 +32.64117 7.471917 1.705268 +43.83129 7.471917 1.705268 +58.85664 7.471917 1.705268 +-0.0175068 10.03574 1.705268 +-0.01161267 10.03574 1.705268 +-0.005718534 10.03574 1.705268 +0.0001755984 10.03574 1.705268 +0.006069731 10.03574 1.705268 +0.01197402 10.03574 1.705268 +0.01903886 10.03574 1.705268 +0.02852504 10.03574 1.705268 +0.04126244 10.03574 1.705268 +0.05836535 10.03574 1.705268 +0.08132997 10.03574 1.705268 +0.1121653 10.03574 1.705268 +0.1535689 10.03574 1.705268 +0.2091628 10.03574 1.705268 +0.2838106 10.03574 1.705268 +0.3840425 10.03574 1.705268 +0.518627 10.03574 1.705268 +0.6993381 10.03574 1.705268 +0.9419845 10.03574 1.705268 +1.267794 10.03574 1.705268 +1.705268 10.03574 1.705268 +2.292679 10.03574 1.705268 +3.081414 10.03574 1.705268 +4.140474 10.03574 1.705268 +5.562508 10.03574 1.705268 +7.471917 10.03574 1.705268 +10.03574 10.03574 1.705268 +13.47828 10.03574 1.705268 +18.10068 10.03574 1.705268 +24.30731 10.03574 1.705268 +32.64117 10.03574 1.705268 +43.83129 10.03574 1.705268 +58.85664 10.03574 1.705268 +-0.0175068 13.47828 1.705268 +-0.01161267 13.47828 1.705268 +-0.005718534 13.47828 1.705268 +0.0001755984 13.47828 1.705268 +0.006069731 13.47828 1.705268 +0.01197402 13.47828 1.705268 +0.01903886 13.47828 1.705268 +0.02852504 13.47828 1.705268 +0.04126244 13.47828 1.705268 +0.05836535 13.47828 1.705268 +0.08132997 13.47828 1.705268 +0.1121653 13.47828 1.705268 +0.1535689 13.47828 1.705268 +0.2091628 13.47828 1.705268 +0.2838106 13.47828 1.705268 +0.3840425 13.47828 1.705268 +0.518627 13.47828 1.705268 +0.6993381 13.47828 1.705268 +0.9419845 13.47828 1.705268 +1.267794 13.47828 1.705268 +1.705268 13.47828 1.705268 +2.292679 13.47828 1.705268 +3.081414 13.47828 1.705268 +4.140474 13.47828 1.705268 +5.562508 13.47828 1.705268 +7.471917 13.47828 1.705268 +10.03574 13.47828 1.705268 +13.47828 13.47828 1.705268 +18.10068 13.47828 1.705268 +24.30731 13.47828 1.705268 +32.64117 13.47828 1.705268 +43.83129 13.47828 1.705268 +58.85664 13.47828 1.705268 +-0.0175068 18.10068 1.705268 +-0.01161267 18.10068 1.705268 +-0.005718534 18.10068 1.705268 +0.0001755984 18.10068 1.705268 +0.006069731 18.10068 1.705268 +0.01197402 18.10068 1.705268 +0.01903886 18.10068 1.705268 +0.02852504 18.10068 1.705268 +0.04126244 18.10068 1.705268 +0.05836535 18.10068 1.705268 +0.08132997 18.10068 1.705268 +0.1121653 18.10068 1.705268 +0.1535689 18.10068 1.705268 +0.2091628 18.10068 1.705268 +0.2838106 18.10068 1.705268 +0.3840425 18.10068 1.705268 +0.518627 18.10068 1.705268 +0.6993381 18.10068 1.705268 +0.9419845 18.10068 1.705268 +1.267794 18.10068 1.705268 +1.705268 18.10068 1.705268 +2.292679 18.10068 1.705268 +3.081414 18.10068 1.705268 +4.140474 18.10068 1.705268 +5.562508 18.10068 1.705268 +7.471917 18.10068 1.705268 +10.03574 18.10068 1.705268 +13.47828 18.10068 1.705268 +18.10068 18.10068 1.705268 +24.30731 18.10068 1.705268 +32.64117 18.10068 1.705268 +43.83129 18.10068 1.705268 +58.85664 18.10068 1.705268 +-0.0175068 24.30731 1.705268 +-0.01161267 24.30731 1.705268 +-0.005718534 24.30731 1.705268 +0.0001755984 24.30731 1.705268 +0.006069731 24.30731 1.705268 +0.01197402 24.30731 1.705268 +0.01903886 24.30731 1.705268 +0.02852504 24.30731 1.705268 +0.04126244 24.30731 1.705268 +0.05836535 24.30731 1.705268 +0.08132997 24.30731 1.705268 +0.1121653 24.30731 1.705268 +0.1535689 24.30731 1.705268 +0.2091628 24.30731 1.705268 +0.2838106 24.30731 1.705268 +0.3840425 24.30731 1.705268 +0.518627 24.30731 1.705268 +0.6993381 24.30731 1.705268 +0.9419845 24.30731 1.705268 +1.267794 24.30731 1.705268 +1.705268 24.30731 1.705268 +2.292679 24.30731 1.705268 +3.081414 24.30731 1.705268 +4.140474 24.30731 1.705268 +5.562508 24.30731 1.705268 +7.471917 24.30731 1.705268 +10.03574 24.30731 1.705268 +13.47828 24.30731 1.705268 +18.10068 24.30731 1.705268 +24.30731 24.30731 1.705268 +32.64117 24.30731 1.705268 +43.83129 24.30731 1.705268 +58.85664 24.30731 1.705268 +-0.0175068 32.64117 1.705268 +-0.01161267 32.64117 1.705268 +-0.005718534 32.64117 1.705268 +0.0001755984 32.64117 1.705268 +0.006069731 32.64117 1.705268 +0.01197402 32.64117 1.705268 +0.01903886 32.64117 1.705268 +0.02852504 32.64117 1.705268 +0.04126244 32.64117 1.705268 +0.05836535 32.64117 1.705268 +0.08132997 32.64117 1.705268 +0.1121653 32.64117 1.705268 +0.1535689 32.64117 1.705268 +0.2091628 32.64117 1.705268 +0.2838106 32.64117 1.705268 +0.3840425 32.64117 1.705268 +0.518627 32.64117 1.705268 +0.6993381 32.64117 1.705268 +0.9419845 32.64117 1.705268 +1.267794 32.64117 1.705268 +1.705268 32.64117 1.705268 +2.292679 32.64117 1.705268 +3.081414 32.64117 1.705268 +4.140474 32.64117 1.705268 +5.562508 32.64117 1.705268 +7.471917 32.64117 1.705268 +10.03574 32.64117 1.705268 +13.47828 32.64117 1.705268 +18.10068 32.64117 1.705268 +24.30731 32.64117 1.705268 +32.64117 32.64117 1.705268 +43.83129 32.64117 1.705268 +58.85664 32.64117 1.705268 +-0.0175068 43.83129 1.705268 +-0.01161267 43.83129 1.705268 +-0.005718534 43.83129 1.705268 +0.0001755984 43.83129 1.705268 +0.006069731 43.83129 1.705268 +0.01197402 43.83129 1.705268 +0.01903886 43.83129 1.705268 +0.02852504 43.83129 1.705268 +0.04126244 43.83129 1.705268 +0.05836535 43.83129 1.705268 +0.08132997 43.83129 1.705268 +0.1121653 43.83129 1.705268 +0.1535689 43.83129 1.705268 +0.2091628 43.83129 1.705268 +0.2838106 43.83129 1.705268 +0.3840425 43.83129 1.705268 +0.518627 43.83129 1.705268 +0.6993381 43.83129 1.705268 +0.9419845 43.83129 1.705268 +1.267794 43.83129 1.705268 +1.705268 43.83129 1.705268 +2.292679 43.83129 1.705268 +3.081414 43.83129 1.705268 +4.140474 43.83129 1.705268 +5.562508 43.83129 1.705268 +7.471917 43.83129 1.705268 +10.03574 43.83129 1.705268 +13.47828 43.83129 1.705268 +18.10068 43.83129 1.705268 +24.30731 43.83129 1.705268 +32.64117 43.83129 1.705268 +43.83129 43.83129 1.705268 +58.85664 43.83129 1.705268 +-0.0175068 58.85664 1.705268 +-0.01161267 58.85664 1.705268 +-0.005718534 58.85664 1.705268 +0.0001755984 58.85664 1.705268 +0.006069731 58.85664 1.705268 +0.01197402 58.85664 1.705268 +0.01903886 58.85664 1.705268 +0.02852504 58.85664 1.705268 +0.04126244 58.85664 1.705268 +0.05836535 58.85664 1.705268 +0.08132997 58.85664 1.705268 +0.1121653 58.85664 1.705268 +0.1535689 58.85664 1.705268 +0.2091628 58.85664 1.705268 +0.2838106 58.85664 1.705268 +0.3840425 58.85664 1.705268 +0.518627 58.85664 1.705268 +0.6993381 58.85664 1.705268 +0.9419845 58.85664 1.705268 +1.267794 58.85664 1.705268 +1.705268 58.85664 1.705268 +2.292679 58.85664 1.705268 +3.081414 58.85664 1.705268 +4.140474 58.85664 1.705268 +5.562508 58.85664 1.705268 +7.471917 58.85664 1.705268 +10.03574 58.85664 1.705268 +13.47828 58.85664 1.705268 +18.10068 58.85664 1.705268 +24.30731 58.85664 1.705268 +32.64117 58.85664 1.705268 +43.83129 58.85664 1.705268 +58.85664 58.85664 1.705268 +-0.0175068 -0.0175068 2.292679 +-0.01161267 -0.0175068 2.292679 +-0.005718534 -0.0175068 2.292679 +0.0001755984 -0.0175068 2.292679 +0.006069731 -0.0175068 2.292679 +0.01197402 -0.0175068 2.292679 +0.01903886 -0.0175068 2.292679 +0.02852504 -0.0175068 2.292679 +0.04126244 -0.0175068 2.292679 +0.05836535 -0.0175068 2.292679 +0.08132997 -0.0175068 2.292679 +0.1121653 -0.0175068 2.292679 +0.1535689 -0.0175068 2.292679 +0.2091628 -0.0175068 2.292679 +0.2838106 -0.0175068 2.292679 +0.3840425 -0.0175068 2.292679 +0.518627 -0.0175068 2.292679 +0.6993381 -0.0175068 2.292679 +0.9419845 -0.0175068 2.292679 +1.267794 -0.0175068 2.292679 +1.705268 -0.0175068 2.292679 +2.292679 -0.0175068 2.292679 +3.081414 -0.0175068 2.292679 +4.140474 -0.0175068 2.292679 +5.562508 -0.0175068 2.292679 +7.471917 -0.0175068 2.292679 +10.03574 -0.0175068 2.292679 +13.47828 -0.0175068 2.292679 +18.10068 -0.0175068 2.292679 +24.30731 -0.0175068 2.292679 +32.64117 -0.0175068 2.292679 +43.83129 -0.0175068 2.292679 +58.85664 -0.0175068 2.292679 +-0.0175068 -0.01161267 2.292679 +-0.01161267 -0.01161267 2.292679 +-0.005718534 -0.01161267 2.292679 +0.0001755984 -0.01161267 2.292679 +0.006069731 -0.01161267 2.292679 +0.01197402 -0.01161267 2.292679 +0.01903886 -0.01161267 2.292679 +0.02852504 -0.01161267 2.292679 +0.04126244 -0.01161267 2.292679 +0.05836535 -0.01161267 2.292679 +0.08132997 -0.01161267 2.292679 +0.1121653 -0.01161267 2.292679 +0.1535689 -0.01161267 2.292679 +0.2091628 -0.01161267 2.292679 +0.2838106 -0.01161267 2.292679 +0.3840425 -0.01161267 2.292679 +0.518627 -0.01161267 2.292679 +0.6993381 -0.01161267 2.292679 +0.9419845 -0.01161267 2.292679 +1.267794 -0.01161267 2.292679 +1.705268 -0.01161267 2.292679 +2.292679 -0.01161267 2.292679 +3.081414 -0.01161267 2.292679 +4.140474 -0.01161267 2.292679 +5.562508 -0.01161267 2.292679 +7.471917 -0.01161267 2.292679 +10.03574 -0.01161267 2.292679 +13.47828 -0.01161267 2.292679 +18.10068 -0.01161267 2.292679 +24.30731 -0.01161267 2.292679 +32.64117 -0.01161267 2.292679 +43.83129 -0.01161267 2.292679 +58.85664 -0.01161267 2.292679 +-0.0175068 -0.005718534 2.292679 +-0.01161267 -0.005718534 2.292679 +-0.005718534 -0.005718534 2.292679 +0.0001755984 -0.005718534 2.292679 +0.006069731 -0.005718534 2.292679 +0.01197402 -0.005718534 2.292679 +0.01903886 -0.005718534 2.292679 +0.02852504 -0.005718534 2.292679 +0.04126244 -0.005718534 2.292679 +0.05836535 -0.005718534 2.292679 +0.08132997 -0.005718534 2.292679 +0.1121653 -0.005718534 2.292679 +0.1535689 -0.005718534 2.292679 +0.2091628 -0.005718534 2.292679 +0.2838106 -0.005718534 2.292679 +0.3840425 -0.005718534 2.292679 +0.518627 -0.005718534 2.292679 +0.6993381 -0.005718534 2.292679 +0.9419845 -0.005718534 2.292679 +1.267794 -0.005718534 2.292679 +1.705268 -0.005718534 2.292679 +2.292679 -0.005718534 2.292679 +3.081414 -0.005718534 2.292679 +4.140474 -0.005718534 2.292679 +5.562508 -0.005718534 2.292679 +7.471917 -0.005718534 2.292679 +10.03574 -0.005718534 2.292679 +13.47828 -0.005718534 2.292679 +18.10068 -0.005718534 2.292679 +24.30731 -0.005718534 2.292679 +32.64117 -0.005718534 2.292679 +43.83129 -0.005718534 2.292679 +58.85664 -0.005718534 2.292679 +-0.0175068 0.0001755984 2.292679 +-0.01161267 0.0001755984 2.292679 +-0.005718534 0.0001755984 2.292679 +0.0001755984 0.0001755984 2.292679 +0.006069731 0.0001755984 2.292679 +0.01197402 0.0001755984 2.292679 +0.01903886 0.0001755984 2.292679 +0.02852504 0.0001755984 2.292679 +0.04126244 0.0001755984 2.292679 +0.05836535 0.0001755984 2.292679 +0.08132997 0.0001755984 2.292679 +0.1121653 0.0001755984 2.292679 +0.1535689 0.0001755984 2.292679 +0.2091628 0.0001755984 2.292679 +0.2838106 0.0001755984 2.292679 +0.3840425 0.0001755984 2.292679 +0.518627 0.0001755984 2.292679 +0.6993381 0.0001755984 2.292679 +0.9419845 0.0001755984 2.292679 +1.267794 0.0001755984 2.292679 +1.705268 0.0001755984 2.292679 +2.292679 0.0001755984 2.292679 +3.081414 0.0001755984 2.292679 +4.140474 0.0001755984 2.292679 +5.562508 0.0001755984 2.292679 +7.471917 0.0001755984 2.292679 +10.03574 0.0001755984 2.292679 +13.47828 0.0001755984 2.292679 +18.10068 0.0001755984 2.292679 +24.30731 0.0001755984 2.292679 +32.64117 0.0001755984 2.292679 +43.83129 0.0001755984 2.292679 +58.85664 0.0001755984 2.292679 +-0.0175068 0.006069731 2.292679 +-0.01161267 0.006069731 2.292679 +-0.005718534 0.006069731 2.292679 +0.0001755984 0.006069731 2.292679 +0.006069731 0.006069731 2.292679 +0.01197402 0.006069731 2.292679 +0.01903886 0.006069731 2.292679 +0.02852504 0.006069731 2.292679 +0.04126244 0.006069731 2.292679 +0.05836535 0.006069731 2.292679 +0.08132997 0.006069731 2.292679 +0.1121653 0.006069731 2.292679 +0.1535689 0.006069731 2.292679 +0.2091628 0.006069731 2.292679 +0.2838106 0.006069731 2.292679 +0.3840425 0.006069731 2.292679 +0.518627 0.006069731 2.292679 +0.6993381 0.006069731 2.292679 +0.9419845 0.006069731 2.292679 +1.267794 0.006069731 2.292679 +1.705268 0.006069731 2.292679 +2.292679 0.006069731 2.292679 +3.081414 0.006069731 2.292679 +4.140474 0.006069731 2.292679 +5.562508 0.006069731 2.292679 +7.471917 0.006069731 2.292679 +10.03574 0.006069731 2.292679 +13.47828 0.006069731 2.292679 +18.10068 0.006069731 2.292679 +24.30731 0.006069731 2.292679 +32.64117 0.006069731 2.292679 +43.83129 0.006069731 2.292679 +58.85664 0.006069731 2.292679 +-0.0175068 0.01197402 2.292679 +-0.01161267 0.01197402 2.292679 +-0.005718534 0.01197402 2.292679 +0.0001755984 0.01197402 2.292679 +0.006069731 0.01197402 2.292679 +0.01197402 0.01197402 2.292679 +0.01903886 0.01197402 2.292679 +0.02852504 0.01197402 2.292679 +0.04126244 0.01197402 2.292679 +0.05836535 0.01197402 2.292679 +0.08132997 0.01197402 2.292679 +0.1121653 0.01197402 2.292679 +0.1535689 0.01197402 2.292679 +0.2091628 0.01197402 2.292679 +0.2838106 0.01197402 2.292679 +0.3840425 0.01197402 2.292679 +0.518627 0.01197402 2.292679 +0.6993381 0.01197402 2.292679 +0.9419845 0.01197402 2.292679 +1.267794 0.01197402 2.292679 +1.705268 0.01197402 2.292679 +2.292679 0.01197402 2.292679 +3.081414 0.01197402 2.292679 +4.140474 0.01197402 2.292679 +5.562508 0.01197402 2.292679 +7.471917 0.01197402 2.292679 +10.03574 0.01197402 2.292679 +13.47828 0.01197402 2.292679 +18.10068 0.01197402 2.292679 +24.30731 0.01197402 2.292679 +32.64117 0.01197402 2.292679 +43.83129 0.01197402 2.292679 +58.85664 0.01197402 2.292679 +-0.0175068 0.01903886 2.292679 +-0.01161267 0.01903886 2.292679 +-0.005718534 0.01903886 2.292679 +0.0001755984 0.01903886 2.292679 +0.006069731 0.01903886 2.292679 +0.01197402 0.01903886 2.292679 +0.01903886 0.01903886 2.292679 +0.02852504 0.01903886 2.292679 +0.04126244 0.01903886 2.292679 +0.05836535 0.01903886 2.292679 +0.08132997 0.01903886 2.292679 +0.1121653 0.01903886 2.292679 +0.1535689 0.01903886 2.292679 +0.2091628 0.01903886 2.292679 +0.2838106 0.01903886 2.292679 +0.3840425 0.01903886 2.292679 +0.518627 0.01903886 2.292679 +0.6993381 0.01903886 2.292679 +0.9419845 0.01903886 2.292679 +1.267794 0.01903886 2.292679 +1.705268 0.01903886 2.292679 +2.292679 0.01903886 2.292679 +3.081414 0.01903886 2.292679 +4.140474 0.01903886 2.292679 +5.562508 0.01903886 2.292679 +7.471917 0.01903886 2.292679 +10.03574 0.01903886 2.292679 +13.47828 0.01903886 2.292679 +18.10068 0.01903886 2.292679 +24.30731 0.01903886 2.292679 +32.64117 0.01903886 2.292679 +43.83129 0.01903886 2.292679 +58.85664 0.01903886 2.292679 +-0.0175068 0.02852504 2.292679 +-0.01161267 0.02852504 2.292679 +-0.005718534 0.02852504 2.292679 +0.0001755984 0.02852504 2.292679 +0.006069731 0.02852504 2.292679 +0.01197402 0.02852504 2.292679 +0.01903886 0.02852504 2.292679 +0.02852504 0.02852504 2.292679 +0.04126244 0.02852504 2.292679 +0.05836535 0.02852504 2.292679 +0.08132997 0.02852504 2.292679 +0.1121653 0.02852504 2.292679 +0.1535689 0.02852504 2.292679 +0.2091628 0.02852504 2.292679 +0.2838106 0.02852504 2.292679 +0.3840425 0.02852504 2.292679 +0.518627 0.02852504 2.292679 +0.6993381 0.02852504 2.292679 +0.9419845 0.02852504 2.292679 +1.267794 0.02852504 2.292679 +1.705268 0.02852504 2.292679 +2.292679 0.02852504 2.292679 +3.081414 0.02852504 2.292679 +4.140474 0.02852504 2.292679 +5.562508 0.02852504 2.292679 +7.471917 0.02852504 2.292679 +10.03574 0.02852504 2.292679 +13.47828 0.02852504 2.292679 +18.10068 0.02852504 2.292679 +24.30731 0.02852504 2.292679 +32.64117 0.02852504 2.292679 +43.83129 0.02852504 2.292679 +58.85664 0.02852504 2.292679 +-0.0175068 0.04126244 2.292679 +-0.01161267 0.04126244 2.292679 +-0.005718534 0.04126244 2.292679 +0.0001755984 0.04126244 2.292679 +0.006069731 0.04126244 2.292679 +0.01197402 0.04126244 2.292679 +0.01903886 0.04126244 2.292679 +0.02852504 0.04126244 2.292679 +0.04126244 0.04126244 2.292679 +0.05836535 0.04126244 2.292679 +0.08132997 0.04126244 2.292679 +0.1121653 0.04126244 2.292679 +0.1535689 0.04126244 2.292679 +0.2091628 0.04126244 2.292679 +0.2838106 0.04126244 2.292679 +0.3840425 0.04126244 2.292679 +0.518627 0.04126244 2.292679 +0.6993381 0.04126244 2.292679 +0.9419845 0.04126244 2.292679 +1.267794 0.04126244 2.292679 +1.705268 0.04126244 2.292679 +2.292679 0.04126244 2.292679 +3.081414 0.04126244 2.292679 +4.140474 0.04126244 2.292679 +5.562508 0.04126244 2.292679 +7.471917 0.04126244 2.292679 +10.03574 0.04126244 2.292679 +13.47828 0.04126244 2.292679 +18.10068 0.04126244 2.292679 +24.30731 0.04126244 2.292679 +32.64117 0.04126244 2.292679 +43.83129 0.04126244 2.292679 +58.85664 0.04126244 2.292679 +-0.0175068 0.05836535 2.292679 +-0.01161267 0.05836535 2.292679 +-0.005718534 0.05836535 2.292679 +0.0001755984 0.05836535 2.292679 +0.006069731 0.05836535 2.292679 +0.01197402 0.05836535 2.292679 +0.01903886 0.05836535 2.292679 +0.02852504 0.05836535 2.292679 +0.04126244 0.05836535 2.292679 +0.05836535 0.05836535 2.292679 +0.08132997 0.05836535 2.292679 +0.1121653 0.05836535 2.292679 +0.1535689 0.05836535 2.292679 +0.2091628 0.05836535 2.292679 +0.2838106 0.05836535 2.292679 +0.3840425 0.05836535 2.292679 +0.518627 0.05836535 2.292679 +0.6993381 0.05836535 2.292679 +0.9419845 0.05836535 2.292679 +1.267794 0.05836535 2.292679 +1.705268 0.05836535 2.292679 +2.292679 0.05836535 2.292679 +3.081414 0.05836535 2.292679 +4.140474 0.05836535 2.292679 +5.562508 0.05836535 2.292679 +7.471917 0.05836535 2.292679 +10.03574 0.05836535 2.292679 +13.47828 0.05836535 2.292679 +18.10068 0.05836535 2.292679 +24.30731 0.05836535 2.292679 +32.64117 0.05836535 2.292679 +43.83129 0.05836535 2.292679 +58.85664 0.05836535 2.292679 +-0.0175068 0.08132997 2.292679 +-0.01161267 0.08132997 2.292679 +-0.005718534 0.08132997 2.292679 +0.0001755984 0.08132997 2.292679 +0.006069731 0.08132997 2.292679 +0.01197402 0.08132997 2.292679 +0.01903886 0.08132997 2.292679 +0.02852504 0.08132997 2.292679 +0.04126244 0.08132997 2.292679 +0.05836535 0.08132997 2.292679 +0.08132997 0.08132997 2.292679 +0.1121653 0.08132997 2.292679 +0.1535689 0.08132997 2.292679 +0.2091628 0.08132997 2.292679 +0.2838106 0.08132997 2.292679 +0.3840425 0.08132997 2.292679 +0.518627 0.08132997 2.292679 +0.6993381 0.08132997 2.292679 +0.9419845 0.08132997 2.292679 +1.267794 0.08132997 2.292679 +1.705268 0.08132997 2.292679 +2.292679 0.08132997 2.292679 +3.081414 0.08132997 2.292679 +4.140474 0.08132997 2.292679 +5.562508 0.08132997 2.292679 +7.471917 0.08132997 2.292679 +10.03574 0.08132997 2.292679 +13.47828 0.08132997 2.292679 +18.10068 0.08132997 2.292679 +24.30731 0.08132997 2.292679 +32.64117 0.08132997 2.292679 +43.83129 0.08132997 2.292679 +58.85664 0.08132997 2.292679 +-0.0175068 0.1121653 2.292679 +-0.01161267 0.1121653 2.292679 +-0.005718534 0.1121653 2.292679 +0.0001755984 0.1121653 2.292679 +0.006069731 0.1121653 2.292679 +0.01197402 0.1121653 2.292679 +0.01903886 0.1121653 2.292679 +0.02852504 0.1121653 2.292679 +0.04126244 0.1121653 2.292679 +0.05836535 0.1121653 2.292679 +0.08132997 0.1121653 2.292679 +0.1121653 0.1121653 2.292679 +0.1535689 0.1121653 2.292679 +0.2091628 0.1121653 2.292679 +0.2838106 0.1121653 2.292679 +0.3840425 0.1121653 2.292679 +0.518627 0.1121653 2.292679 +0.6993381 0.1121653 2.292679 +0.9419845 0.1121653 2.292679 +1.267794 0.1121653 2.292679 +1.705268 0.1121653 2.292679 +2.292679 0.1121653 2.292679 +3.081414 0.1121653 2.292679 +4.140474 0.1121653 2.292679 +5.562508 0.1121653 2.292679 +7.471917 0.1121653 2.292679 +10.03574 0.1121653 2.292679 +13.47828 0.1121653 2.292679 +18.10068 0.1121653 2.292679 +24.30731 0.1121653 2.292679 +32.64117 0.1121653 2.292679 +43.83129 0.1121653 2.292679 +58.85664 0.1121653 2.292679 +-0.0175068 0.1535689 2.292679 +-0.01161267 0.1535689 2.292679 +-0.005718534 0.1535689 2.292679 +0.0001755984 0.1535689 2.292679 +0.006069731 0.1535689 2.292679 +0.01197402 0.1535689 2.292679 +0.01903886 0.1535689 2.292679 +0.02852504 0.1535689 2.292679 +0.04126244 0.1535689 2.292679 +0.05836535 0.1535689 2.292679 +0.08132997 0.1535689 2.292679 +0.1121653 0.1535689 2.292679 +0.1535689 0.1535689 2.292679 +0.2091628 0.1535689 2.292679 +0.2838106 0.1535689 2.292679 +0.3840425 0.1535689 2.292679 +0.518627 0.1535689 2.292679 +0.6993381 0.1535689 2.292679 +0.9419845 0.1535689 2.292679 +1.267794 0.1535689 2.292679 +1.705268 0.1535689 2.292679 +2.292679 0.1535689 2.292679 +3.081414 0.1535689 2.292679 +4.140474 0.1535689 2.292679 +5.562508 0.1535689 2.292679 +7.471917 0.1535689 2.292679 +10.03574 0.1535689 2.292679 +13.47828 0.1535689 2.292679 +18.10068 0.1535689 2.292679 +24.30731 0.1535689 2.292679 +32.64117 0.1535689 2.292679 +43.83129 0.1535689 2.292679 +58.85664 0.1535689 2.292679 +-0.0175068 0.2091628 2.292679 +-0.01161267 0.2091628 2.292679 +-0.005718534 0.2091628 2.292679 +0.0001755984 0.2091628 2.292679 +0.006069731 0.2091628 2.292679 +0.01197402 0.2091628 2.292679 +0.01903886 0.2091628 2.292679 +0.02852504 0.2091628 2.292679 +0.04126244 0.2091628 2.292679 +0.05836535 0.2091628 2.292679 +0.08132997 0.2091628 2.292679 +0.1121653 0.2091628 2.292679 +0.1535689 0.2091628 2.292679 +0.2091628 0.2091628 2.292679 +0.2838106 0.2091628 2.292679 +0.3840425 0.2091628 2.292679 +0.518627 0.2091628 2.292679 +0.6993381 0.2091628 2.292679 +0.9419845 0.2091628 2.292679 +1.267794 0.2091628 2.292679 +1.705268 0.2091628 2.292679 +2.292679 0.2091628 2.292679 +3.081414 0.2091628 2.292679 +4.140474 0.2091628 2.292679 +5.562508 0.2091628 2.292679 +7.471917 0.2091628 2.292679 +10.03574 0.2091628 2.292679 +13.47828 0.2091628 2.292679 +18.10068 0.2091628 2.292679 +24.30731 0.2091628 2.292679 +32.64117 0.2091628 2.292679 +43.83129 0.2091628 2.292679 +58.85664 0.2091628 2.292679 +-0.0175068 0.2838106 2.292679 +-0.01161267 0.2838106 2.292679 +-0.005718534 0.2838106 2.292679 +0.0001755984 0.2838106 2.292679 +0.006069731 0.2838106 2.292679 +0.01197402 0.2838106 2.292679 +0.01903886 0.2838106 2.292679 +0.02852504 0.2838106 2.292679 +0.04126244 0.2838106 2.292679 +0.05836535 0.2838106 2.292679 +0.08132997 0.2838106 2.292679 +0.1121653 0.2838106 2.292679 +0.1535689 0.2838106 2.292679 +0.2091628 0.2838106 2.292679 +0.2838106 0.2838106 2.292679 +0.3840425 0.2838106 2.292679 +0.518627 0.2838106 2.292679 +0.6993381 0.2838106 2.292679 +0.9419845 0.2838106 2.292679 +1.267794 0.2838106 2.292679 +1.705268 0.2838106 2.292679 +2.292679 0.2838106 2.292679 +3.081414 0.2838106 2.292679 +4.140474 0.2838106 2.292679 +5.562508 0.2838106 2.292679 +7.471917 0.2838106 2.292679 +10.03574 0.2838106 2.292679 +13.47828 0.2838106 2.292679 +18.10068 0.2838106 2.292679 +24.30731 0.2838106 2.292679 +32.64117 0.2838106 2.292679 +43.83129 0.2838106 2.292679 +58.85664 0.2838106 2.292679 +-0.0175068 0.3840425 2.292679 +-0.01161267 0.3840425 2.292679 +-0.005718534 0.3840425 2.292679 +0.0001755984 0.3840425 2.292679 +0.006069731 0.3840425 2.292679 +0.01197402 0.3840425 2.292679 +0.01903886 0.3840425 2.292679 +0.02852504 0.3840425 2.292679 +0.04126244 0.3840425 2.292679 +0.05836535 0.3840425 2.292679 +0.08132997 0.3840425 2.292679 +0.1121653 0.3840425 2.292679 +0.1535689 0.3840425 2.292679 +0.2091628 0.3840425 2.292679 +0.2838106 0.3840425 2.292679 +0.3840425 0.3840425 2.292679 +0.518627 0.3840425 2.292679 +0.6993381 0.3840425 2.292679 +0.9419845 0.3840425 2.292679 +1.267794 0.3840425 2.292679 +1.705268 0.3840425 2.292679 +2.292679 0.3840425 2.292679 +3.081414 0.3840425 2.292679 +4.140474 0.3840425 2.292679 +5.562508 0.3840425 2.292679 +7.471917 0.3840425 2.292679 +10.03574 0.3840425 2.292679 +13.47828 0.3840425 2.292679 +18.10068 0.3840425 2.292679 +24.30731 0.3840425 2.292679 +32.64117 0.3840425 2.292679 +43.83129 0.3840425 2.292679 +58.85664 0.3840425 2.292679 +-0.0175068 0.518627 2.292679 +-0.01161267 0.518627 2.292679 +-0.005718534 0.518627 2.292679 +0.0001755984 0.518627 2.292679 +0.006069731 0.518627 2.292679 +0.01197402 0.518627 2.292679 +0.01903886 0.518627 2.292679 +0.02852504 0.518627 2.292679 +0.04126244 0.518627 2.292679 +0.05836535 0.518627 2.292679 +0.08132997 0.518627 2.292679 +0.1121653 0.518627 2.292679 +0.1535689 0.518627 2.292679 +0.2091628 0.518627 2.292679 +0.2838106 0.518627 2.292679 +0.3840425 0.518627 2.292679 +0.518627 0.518627 2.292679 +0.6993381 0.518627 2.292679 +0.9419845 0.518627 2.292679 +1.267794 0.518627 2.292679 +1.705268 0.518627 2.292679 +2.292679 0.518627 2.292679 +3.081414 0.518627 2.292679 +4.140474 0.518627 2.292679 +5.562508 0.518627 2.292679 +7.471917 0.518627 2.292679 +10.03574 0.518627 2.292679 +13.47828 0.518627 2.292679 +18.10068 0.518627 2.292679 +24.30731 0.518627 2.292679 +32.64117 0.518627 2.292679 +43.83129 0.518627 2.292679 +58.85664 0.518627 2.292679 +-0.0175068 0.6993381 2.292679 +-0.01161267 0.6993381 2.292679 +-0.005718534 0.6993381 2.292679 +0.0001755984 0.6993381 2.292679 +0.006069731 0.6993381 2.292679 +0.01197402 0.6993381 2.292679 +0.01903886 0.6993381 2.292679 +0.02852504 0.6993381 2.292679 +0.04126244 0.6993381 2.292679 +0.05836535 0.6993381 2.292679 +0.08132997 0.6993381 2.292679 +0.1121653 0.6993381 2.292679 +0.1535689 0.6993381 2.292679 +0.2091628 0.6993381 2.292679 +0.2838106 0.6993381 2.292679 +0.3840425 0.6993381 2.292679 +0.518627 0.6993381 2.292679 +0.6993381 0.6993381 2.292679 +0.9419845 0.6993381 2.292679 +1.267794 0.6993381 2.292679 +1.705268 0.6993381 2.292679 +2.292679 0.6993381 2.292679 +3.081414 0.6993381 2.292679 +4.140474 0.6993381 2.292679 +5.562508 0.6993381 2.292679 +7.471917 0.6993381 2.292679 +10.03574 0.6993381 2.292679 +13.47828 0.6993381 2.292679 +18.10068 0.6993381 2.292679 +24.30731 0.6993381 2.292679 +32.64117 0.6993381 2.292679 +43.83129 0.6993381 2.292679 +58.85664 0.6993381 2.292679 +-0.0175068 0.9419845 2.292679 +-0.01161267 0.9419845 2.292679 +-0.005718534 0.9419845 2.292679 +0.0001755984 0.9419845 2.292679 +0.006069731 0.9419845 2.292679 +0.01197402 0.9419845 2.292679 +0.01903886 0.9419845 2.292679 +0.02852504 0.9419845 2.292679 +0.04126244 0.9419845 2.292679 +0.05836535 0.9419845 2.292679 +0.08132997 0.9419845 2.292679 +0.1121653 0.9419845 2.292679 +0.1535689 0.9419845 2.292679 +0.2091628 0.9419845 2.292679 +0.2838106 0.9419845 2.292679 +0.3840425 0.9419845 2.292679 +0.518627 0.9419845 2.292679 +0.6993381 0.9419845 2.292679 +0.9419845 0.9419845 2.292679 +1.267794 0.9419845 2.292679 +1.705268 0.9419845 2.292679 +2.292679 0.9419845 2.292679 +3.081414 0.9419845 2.292679 +4.140474 0.9419845 2.292679 +5.562508 0.9419845 2.292679 +7.471917 0.9419845 2.292679 +10.03574 0.9419845 2.292679 +13.47828 0.9419845 2.292679 +18.10068 0.9419845 2.292679 +24.30731 0.9419845 2.292679 +32.64117 0.9419845 2.292679 +43.83129 0.9419845 2.292679 +58.85664 0.9419845 2.292679 +-0.0175068 1.267794 2.292679 +-0.01161267 1.267794 2.292679 +-0.005718534 1.267794 2.292679 +0.0001755984 1.267794 2.292679 +0.006069731 1.267794 2.292679 +0.01197402 1.267794 2.292679 +0.01903886 1.267794 2.292679 +0.02852504 1.267794 2.292679 +0.04126244 1.267794 2.292679 +0.05836535 1.267794 2.292679 +0.08132997 1.267794 2.292679 +0.1121653 1.267794 2.292679 +0.1535689 1.267794 2.292679 +0.2091628 1.267794 2.292679 +0.2838106 1.267794 2.292679 +0.3840425 1.267794 2.292679 +0.518627 1.267794 2.292679 +0.6993381 1.267794 2.292679 +0.9419845 1.267794 2.292679 +1.267794 1.267794 2.292679 +1.705268 1.267794 2.292679 +2.292679 1.267794 2.292679 +3.081414 1.267794 2.292679 +4.140474 1.267794 2.292679 +5.562508 1.267794 2.292679 +7.471917 1.267794 2.292679 +10.03574 1.267794 2.292679 +13.47828 1.267794 2.292679 +18.10068 1.267794 2.292679 +24.30731 1.267794 2.292679 +32.64117 1.267794 2.292679 +43.83129 1.267794 2.292679 +58.85664 1.267794 2.292679 +-0.0175068 1.705268 2.292679 +-0.01161267 1.705268 2.292679 +-0.005718534 1.705268 2.292679 +0.0001755984 1.705268 2.292679 +0.006069731 1.705268 2.292679 +0.01197402 1.705268 2.292679 +0.01903886 1.705268 2.292679 +0.02852504 1.705268 2.292679 +0.04126244 1.705268 2.292679 +0.05836535 1.705268 2.292679 +0.08132997 1.705268 2.292679 +0.1121653 1.705268 2.292679 +0.1535689 1.705268 2.292679 +0.2091628 1.705268 2.292679 +0.2838106 1.705268 2.292679 +0.3840425 1.705268 2.292679 +0.518627 1.705268 2.292679 +0.6993381 1.705268 2.292679 +0.9419845 1.705268 2.292679 +1.267794 1.705268 2.292679 +1.705268 1.705268 2.292679 +2.292679 1.705268 2.292679 +3.081414 1.705268 2.292679 +4.140474 1.705268 2.292679 +5.562508 1.705268 2.292679 +7.471917 1.705268 2.292679 +10.03574 1.705268 2.292679 +13.47828 1.705268 2.292679 +18.10068 1.705268 2.292679 +24.30731 1.705268 2.292679 +32.64117 1.705268 2.292679 +43.83129 1.705268 2.292679 +58.85664 1.705268 2.292679 +-0.0175068 2.292679 2.292679 +-0.01161267 2.292679 2.292679 +-0.005718534 2.292679 2.292679 +0.0001755984 2.292679 2.292679 +0.006069731 2.292679 2.292679 +0.01197402 2.292679 2.292679 +0.01903886 2.292679 2.292679 +0.02852504 2.292679 2.292679 +0.04126244 2.292679 2.292679 +0.05836535 2.292679 2.292679 +0.08132997 2.292679 2.292679 +0.1121653 2.292679 2.292679 +0.1535689 2.292679 2.292679 +0.2091628 2.292679 2.292679 +0.2838106 2.292679 2.292679 +0.3840425 2.292679 2.292679 +0.518627 2.292679 2.292679 +0.6993381 2.292679 2.292679 +0.9419845 2.292679 2.292679 +1.267794 2.292679 2.292679 +1.705268 2.292679 2.292679 +2.292679 2.292679 2.292679 +3.081414 2.292679 2.292679 +4.140474 2.292679 2.292679 +5.562508 2.292679 2.292679 +7.471917 2.292679 2.292679 +10.03574 2.292679 2.292679 +13.47828 2.292679 2.292679 +18.10068 2.292679 2.292679 +24.30731 2.292679 2.292679 +32.64117 2.292679 2.292679 +43.83129 2.292679 2.292679 +58.85664 2.292679 2.292679 +-0.0175068 3.081414 2.292679 +-0.01161267 3.081414 2.292679 +-0.005718534 3.081414 2.292679 +0.0001755984 3.081414 2.292679 +0.006069731 3.081414 2.292679 +0.01197402 3.081414 2.292679 +0.01903886 3.081414 2.292679 +0.02852504 3.081414 2.292679 +0.04126244 3.081414 2.292679 +0.05836535 3.081414 2.292679 +0.08132997 3.081414 2.292679 +0.1121653 3.081414 2.292679 +0.1535689 3.081414 2.292679 +0.2091628 3.081414 2.292679 +0.2838106 3.081414 2.292679 +0.3840425 3.081414 2.292679 +0.518627 3.081414 2.292679 +0.6993381 3.081414 2.292679 +0.9419845 3.081414 2.292679 +1.267794 3.081414 2.292679 +1.705268 3.081414 2.292679 +2.292679 3.081414 2.292679 +3.081414 3.081414 2.292679 +4.140474 3.081414 2.292679 +5.562508 3.081414 2.292679 +7.471917 3.081414 2.292679 +10.03574 3.081414 2.292679 +13.47828 3.081414 2.292679 +18.10068 3.081414 2.292679 +24.30731 3.081414 2.292679 +32.64117 3.081414 2.292679 +43.83129 3.081414 2.292679 +58.85664 3.081414 2.292679 +-0.0175068 4.140474 2.292679 +-0.01161267 4.140474 2.292679 +-0.005718534 4.140474 2.292679 +0.0001755984 4.140474 2.292679 +0.006069731 4.140474 2.292679 +0.01197402 4.140474 2.292679 +0.01903886 4.140474 2.292679 +0.02852504 4.140474 2.292679 +0.04126244 4.140474 2.292679 +0.05836535 4.140474 2.292679 +0.08132997 4.140474 2.292679 +0.1121653 4.140474 2.292679 +0.1535689 4.140474 2.292679 +0.2091628 4.140474 2.292679 +0.2838106 4.140474 2.292679 +0.3840425 4.140474 2.292679 +0.518627 4.140474 2.292679 +0.6993381 4.140474 2.292679 +0.9419845 4.140474 2.292679 +1.267794 4.140474 2.292679 +1.705268 4.140474 2.292679 +2.292679 4.140474 2.292679 +3.081414 4.140474 2.292679 +4.140474 4.140474 2.292679 +5.562508 4.140474 2.292679 +7.471917 4.140474 2.292679 +10.03574 4.140474 2.292679 +13.47828 4.140474 2.292679 +18.10068 4.140474 2.292679 +24.30731 4.140474 2.292679 +32.64117 4.140474 2.292679 +43.83129 4.140474 2.292679 +58.85664 4.140474 2.292679 +-0.0175068 5.562508 2.292679 +-0.01161267 5.562508 2.292679 +-0.005718534 5.562508 2.292679 +0.0001755984 5.562508 2.292679 +0.006069731 5.562508 2.292679 +0.01197402 5.562508 2.292679 +0.01903886 5.562508 2.292679 +0.02852504 5.562508 2.292679 +0.04126244 5.562508 2.292679 +0.05836535 5.562508 2.292679 +0.08132997 5.562508 2.292679 +0.1121653 5.562508 2.292679 +0.1535689 5.562508 2.292679 +0.2091628 5.562508 2.292679 +0.2838106 5.562508 2.292679 +0.3840425 5.562508 2.292679 +0.518627 5.562508 2.292679 +0.6993381 5.562508 2.292679 +0.9419845 5.562508 2.292679 +1.267794 5.562508 2.292679 +1.705268 5.562508 2.292679 +2.292679 5.562508 2.292679 +3.081414 5.562508 2.292679 +4.140474 5.562508 2.292679 +5.562508 5.562508 2.292679 +7.471917 5.562508 2.292679 +10.03574 5.562508 2.292679 +13.47828 5.562508 2.292679 +18.10068 5.562508 2.292679 +24.30731 5.562508 2.292679 +32.64117 5.562508 2.292679 +43.83129 5.562508 2.292679 +58.85664 5.562508 2.292679 +-0.0175068 7.471917 2.292679 +-0.01161267 7.471917 2.292679 +-0.005718534 7.471917 2.292679 +0.0001755984 7.471917 2.292679 +0.006069731 7.471917 2.292679 +0.01197402 7.471917 2.292679 +0.01903886 7.471917 2.292679 +0.02852504 7.471917 2.292679 +0.04126244 7.471917 2.292679 +0.05836535 7.471917 2.292679 +0.08132997 7.471917 2.292679 +0.1121653 7.471917 2.292679 +0.1535689 7.471917 2.292679 +0.2091628 7.471917 2.292679 +0.2838106 7.471917 2.292679 +0.3840425 7.471917 2.292679 +0.518627 7.471917 2.292679 +0.6993381 7.471917 2.292679 +0.9419845 7.471917 2.292679 +1.267794 7.471917 2.292679 +1.705268 7.471917 2.292679 +2.292679 7.471917 2.292679 +3.081414 7.471917 2.292679 +4.140474 7.471917 2.292679 +5.562508 7.471917 2.292679 +7.471917 7.471917 2.292679 +10.03574 7.471917 2.292679 +13.47828 7.471917 2.292679 +18.10068 7.471917 2.292679 +24.30731 7.471917 2.292679 +32.64117 7.471917 2.292679 +43.83129 7.471917 2.292679 +58.85664 7.471917 2.292679 +-0.0175068 10.03574 2.292679 +-0.01161267 10.03574 2.292679 +-0.005718534 10.03574 2.292679 +0.0001755984 10.03574 2.292679 +0.006069731 10.03574 2.292679 +0.01197402 10.03574 2.292679 +0.01903886 10.03574 2.292679 +0.02852504 10.03574 2.292679 +0.04126244 10.03574 2.292679 +0.05836535 10.03574 2.292679 +0.08132997 10.03574 2.292679 +0.1121653 10.03574 2.292679 +0.1535689 10.03574 2.292679 +0.2091628 10.03574 2.292679 +0.2838106 10.03574 2.292679 +0.3840425 10.03574 2.292679 +0.518627 10.03574 2.292679 +0.6993381 10.03574 2.292679 +0.9419845 10.03574 2.292679 +1.267794 10.03574 2.292679 +1.705268 10.03574 2.292679 +2.292679 10.03574 2.292679 +3.081414 10.03574 2.292679 +4.140474 10.03574 2.292679 +5.562508 10.03574 2.292679 +7.471917 10.03574 2.292679 +10.03574 10.03574 2.292679 +13.47828 10.03574 2.292679 +18.10068 10.03574 2.292679 +24.30731 10.03574 2.292679 +32.64117 10.03574 2.292679 +43.83129 10.03574 2.292679 +58.85664 10.03574 2.292679 +-0.0175068 13.47828 2.292679 +-0.01161267 13.47828 2.292679 +-0.005718534 13.47828 2.292679 +0.0001755984 13.47828 2.292679 +0.006069731 13.47828 2.292679 +0.01197402 13.47828 2.292679 +0.01903886 13.47828 2.292679 +0.02852504 13.47828 2.292679 +0.04126244 13.47828 2.292679 +0.05836535 13.47828 2.292679 +0.08132997 13.47828 2.292679 +0.1121653 13.47828 2.292679 +0.1535689 13.47828 2.292679 +0.2091628 13.47828 2.292679 +0.2838106 13.47828 2.292679 +0.3840425 13.47828 2.292679 +0.518627 13.47828 2.292679 +0.6993381 13.47828 2.292679 +0.9419845 13.47828 2.292679 +1.267794 13.47828 2.292679 +1.705268 13.47828 2.292679 +2.292679 13.47828 2.292679 +3.081414 13.47828 2.292679 +4.140474 13.47828 2.292679 +5.562508 13.47828 2.292679 +7.471917 13.47828 2.292679 +10.03574 13.47828 2.292679 +13.47828 13.47828 2.292679 +18.10068 13.47828 2.292679 +24.30731 13.47828 2.292679 +32.64117 13.47828 2.292679 +43.83129 13.47828 2.292679 +58.85664 13.47828 2.292679 +-0.0175068 18.10068 2.292679 +-0.01161267 18.10068 2.292679 +-0.005718534 18.10068 2.292679 +0.0001755984 18.10068 2.292679 +0.006069731 18.10068 2.292679 +0.01197402 18.10068 2.292679 +0.01903886 18.10068 2.292679 +0.02852504 18.10068 2.292679 +0.04126244 18.10068 2.292679 +0.05836535 18.10068 2.292679 +0.08132997 18.10068 2.292679 +0.1121653 18.10068 2.292679 +0.1535689 18.10068 2.292679 +0.2091628 18.10068 2.292679 +0.2838106 18.10068 2.292679 +0.3840425 18.10068 2.292679 +0.518627 18.10068 2.292679 +0.6993381 18.10068 2.292679 +0.9419845 18.10068 2.292679 +1.267794 18.10068 2.292679 +1.705268 18.10068 2.292679 +2.292679 18.10068 2.292679 +3.081414 18.10068 2.292679 +4.140474 18.10068 2.292679 +5.562508 18.10068 2.292679 +7.471917 18.10068 2.292679 +10.03574 18.10068 2.292679 +13.47828 18.10068 2.292679 +18.10068 18.10068 2.292679 +24.30731 18.10068 2.292679 +32.64117 18.10068 2.292679 +43.83129 18.10068 2.292679 +58.85664 18.10068 2.292679 +-0.0175068 24.30731 2.292679 +-0.01161267 24.30731 2.292679 +-0.005718534 24.30731 2.292679 +0.0001755984 24.30731 2.292679 +0.006069731 24.30731 2.292679 +0.01197402 24.30731 2.292679 +0.01903886 24.30731 2.292679 +0.02852504 24.30731 2.292679 +0.04126244 24.30731 2.292679 +0.05836535 24.30731 2.292679 +0.08132997 24.30731 2.292679 +0.1121653 24.30731 2.292679 +0.1535689 24.30731 2.292679 +0.2091628 24.30731 2.292679 +0.2838106 24.30731 2.292679 +0.3840425 24.30731 2.292679 +0.518627 24.30731 2.292679 +0.6993381 24.30731 2.292679 +0.9419845 24.30731 2.292679 +1.267794 24.30731 2.292679 +1.705268 24.30731 2.292679 +2.292679 24.30731 2.292679 +3.081414 24.30731 2.292679 +4.140474 24.30731 2.292679 +5.562508 24.30731 2.292679 +7.471917 24.30731 2.292679 +10.03574 24.30731 2.292679 +13.47828 24.30731 2.292679 +18.10068 24.30731 2.292679 +24.30731 24.30731 2.292679 +32.64117 24.30731 2.292679 +43.83129 24.30731 2.292679 +58.85664 24.30731 2.292679 +-0.0175068 32.64117 2.292679 +-0.01161267 32.64117 2.292679 +-0.005718534 32.64117 2.292679 +0.0001755984 32.64117 2.292679 +0.006069731 32.64117 2.292679 +0.01197402 32.64117 2.292679 +0.01903886 32.64117 2.292679 +0.02852504 32.64117 2.292679 +0.04126244 32.64117 2.292679 +0.05836535 32.64117 2.292679 +0.08132997 32.64117 2.292679 +0.1121653 32.64117 2.292679 +0.1535689 32.64117 2.292679 +0.2091628 32.64117 2.292679 +0.2838106 32.64117 2.292679 +0.3840425 32.64117 2.292679 +0.518627 32.64117 2.292679 +0.6993381 32.64117 2.292679 +0.9419845 32.64117 2.292679 +1.267794 32.64117 2.292679 +1.705268 32.64117 2.292679 +2.292679 32.64117 2.292679 +3.081414 32.64117 2.292679 +4.140474 32.64117 2.292679 +5.562508 32.64117 2.292679 +7.471917 32.64117 2.292679 +10.03574 32.64117 2.292679 +13.47828 32.64117 2.292679 +18.10068 32.64117 2.292679 +24.30731 32.64117 2.292679 +32.64117 32.64117 2.292679 +43.83129 32.64117 2.292679 +58.85664 32.64117 2.292679 +-0.0175068 43.83129 2.292679 +-0.01161267 43.83129 2.292679 +-0.005718534 43.83129 2.292679 +0.0001755984 43.83129 2.292679 +0.006069731 43.83129 2.292679 +0.01197402 43.83129 2.292679 +0.01903886 43.83129 2.292679 +0.02852504 43.83129 2.292679 +0.04126244 43.83129 2.292679 +0.05836535 43.83129 2.292679 +0.08132997 43.83129 2.292679 +0.1121653 43.83129 2.292679 +0.1535689 43.83129 2.292679 +0.2091628 43.83129 2.292679 +0.2838106 43.83129 2.292679 +0.3840425 43.83129 2.292679 +0.518627 43.83129 2.292679 +0.6993381 43.83129 2.292679 +0.9419845 43.83129 2.292679 +1.267794 43.83129 2.292679 +1.705268 43.83129 2.292679 +2.292679 43.83129 2.292679 +3.081414 43.83129 2.292679 +4.140474 43.83129 2.292679 +5.562508 43.83129 2.292679 +7.471917 43.83129 2.292679 +10.03574 43.83129 2.292679 +13.47828 43.83129 2.292679 +18.10068 43.83129 2.292679 +24.30731 43.83129 2.292679 +32.64117 43.83129 2.292679 +43.83129 43.83129 2.292679 +58.85664 43.83129 2.292679 +-0.0175068 58.85664 2.292679 +-0.01161267 58.85664 2.292679 +-0.005718534 58.85664 2.292679 +0.0001755984 58.85664 2.292679 +0.006069731 58.85664 2.292679 +0.01197402 58.85664 2.292679 +0.01903886 58.85664 2.292679 +0.02852504 58.85664 2.292679 +0.04126244 58.85664 2.292679 +0.05836535 58.85664 2.292679 +0.08132997 58.85664 2.292679 +0.1121653 58.85664 2.292679 +0.1535689 58.85664 2.292679 +0.2091628 58.85664 2.292679 +0.2838106 58.85664 2.292679 +0.3840425 58.85664 2.292679 +0.518627 58.85664 2.292679 +0.6993381 58.85664 2.292679 +0.9419845 58.85664 2.292679 +1.267794 58.85664 2.292679 +1.705268 58.85664 2.292679 +2.292679 58.85664 2.292679 +3.081414 58.85664 2.292679 +4.140474 58.85664 2.292679 +5.562508 58.85664 2.292679 +7.471917 58.85664 2.292679 +10.03574 58.85664 2.292679 +13.47828 58.85664 2.292679 +18.10068 58.85664 2.292679 +24.30731 58.85664 2.292679 +32.64117 58.85664 2.292679 +43.83129 58.85664 2.292679 +58.85664 58.85664 2.292679 +-0.0175068 -0.0175068 3.081414 +-0.01161267 -0.0175068 3.081414 +-0.005718534 -0.0175068 3.081414 +0.0001755984 -0.0175068 3.081414 +0.006069731 -0.0175068 3.081414 +0.01197402 -0.0175068 3.081414 +0.01903886 -0.0175068 3.081414 +0.02852504 -0.0175068 3.081414 +0.04126244 -0.0175068 3.081414 +0.05836535 -0.0175068 3.081414 +0.08132997 -0.0175068 3.081414 +0.1121653 -0.0175068 3.081414 +0.1535689 -0.0175068 3.081414 +0.2091628 -0.0175068 3.081414 +0.2838106 -0.0175068 3.081414 +0.3840425 -0.0175068 3.081414 +0.518627 -0.0175068 3.081414 +0.6993381 -0.0175068 3.081414 +0.9419845 -0.0175068 3.081414 +1.267794 -0.0175068 3.081414 +1.705268 -0.0175068 3.081414 +2.292679 -0.0175068 3.081414 +3.081414 -0.0175068 3.081414 +4.140474 -0.0175068 3.081414 +5.562508 -0.0175068 3.081414 +7.471917 -0.0175068 3.081414 +10.03574 -0.0175068 3.081414 +13.47828 -0.0175068 3.081414 +18.10068 -0.0175068 3.081414 +24.30731 -0.0175068 3.081414 +32.64117 -0.0175068 3.081414 +43.83129 -0.0175068 3.081414 +58.85664 -0.0175068 3.081414 +-0.0175068 -0.01161267 3.081414 +-0.01161267 -0.01161267 3.081414 +-0.005718534 -0.01161267 3.081414 +0.0001755984 -0.01161267 3.081414 +0.006069731 -0.01161267 3.081414 +0.01197402 -0.01161267 3.081414 +0.01903886 -0.01161267 3.081414 +0.02852504 -0.01161267 3.081414 +0.04126244 -0.01161267 3.081414 +0.05836535 -0.01161267 3.081414 +0.08132997 -0.01161267 3.081414 +0.1121653 -0.01161267 3.081414 +0.1535689 -0.01161267 3.081414 +0.2091628 -0.01161267 3.081414 +0.2838106 -0.01161267 3.081414 +0.3840425 -0.01161267 3.081414 +0.518627 -0.01161267 3.081414 +0.6993381 -0.01161267 3.081414 +0.9419845 -0.01161267 3.081414 +1.267794 -0.01161267 3.081414 +1.705268 -0.01161267 3.081414 +2.292679 -0.01161267 3.081414 +3.081414 -0.01161267 3.081414 +4.140474 -0.01161267 3.081414 +5.562508 -0.01161267 3.081414 +7.471917 -0.01161267 3.081414 +10.03574 -0.01161267 3.081414 +13.47828 -0.01161267 3.081414 +18.10068 -0.01161267 3.081414 +24.30731 -0.01161267 3.081414 +32.64117 -0.01161267 3.081414 +43.83129 -0.01161267 3.081414 +58.85664 -0.01161267 3.081414 +-0.0175068 -0.005718534 3.081414 +-0.01161267 -0.005718534 3.081414 +-0.005718534 -0.005718534 3.081414 +0.0001755984 -0.005718534 3.081414 +0.006069731 -0.005718534 3.081414 +0.01197402 -0.005718534 3.081414 +0.01903886 -0.005718534 3.081414 +0.02852504 -0.005718534 3.081414 +0.04126244 -0.005718534 3.081414 +0.05836535 -0.005718534 3.081414 +0.08132997 -0.005718534 3.081414 +0.1121653 -0.005718534 3.081414 +0.1535689 -0.005718534 3.081414 +0.2091628 -0.005718534 3.081414 +0.2838106 -0.005718534 3.081414 +0.3840425 -0.005718534 3.081414 +0.518627 -0.005718534 3.081414 +0.6993381 -0.005718534 3.081414 +0.9419845 -0.005718534 3.081414 +1.267794 -0.005718534 3.081414 +1.705268 -0.005718534 3.081414 +2.292679 -0.005718534 3.081414 +3.081414 -0.005718534 3.081414 +4.140474 -0.005718534 3.081414 +5.562508 -0.005718534 3.081414 +7.471917 -0.005718534 3.081414 +10.03574 -0.005718534 3.081414 +13.47828 -0.005718534 3.081414 +18.10068 -0.005718534 3.081414 +24.30731 -0.005718534 3.081414 +32.64117 -0.005718534 3.081414 +43.83129 -0.005718534 3.081414 +58.85664 -0.005718534 3.081414 +-0.0175068 0.0001755984 3.081414 +-0.01161267 0.0001755984 3.081414 +-0.005718534 0.0001755984 3.081414 +0.0001755984 0.0001755984 3.081414 +0.006069731 0.0001755984 3.081414 +0.01197402 0.0001755984 3.081414 +0.01903886 0.0001755984 3.081414 +0.02852504 0.0001755984 3.081414 +0.04126244 0.0001755984 3.081414 +0.05836535 0.0001755984 3.081414 +0.08132997 0.0001755984 3.081414 +0.1121653 0.0001755984 3.081414 +0.1535689 0.0001755984 3.081414 +0.2091628 0.0001755984 3.081414 +0.2838106 0.0001755984 3.081414 +0.3840425 0.0001755984 3.081414 +0.518627 0.0001755984 3.081414 +0.6993381 0.0001755984 3.081414 +0.9419845 0.0001755984 3.081414 +1.267794 0.0001755984 3.081414 +1.705268 0.0001755984 3.081414 +2.292679 0.0001755984 3.081414 +3.081414 0.0001755984 3.081414 +4.140474 0.0001755984 3.081414 +5.562508 0.0001755984 3.081414 +7.471917 0.0001755984 3.081414 +10.03574 0.0001755984 3.081414 +13.47828 0.0001755984 3.081414 +18.10068 0.0001755984 3.081414 +24.30731 0.0001755984 3.081414 +32.64117 0.0001755984 3.081414 +43.83129 0.0001755984 3.081414 +58.85664 0.0001755984 3.081414 +-0.0175068 0.006069731 3.081414 +-0.01161267 0.006069731 3.081414 +-0.005718534 0.006069731 3.081414 +0.0001755984 0.006069731 3.081414 +0.006069731 0.006069731 3.081414 +0.01197402 0.006069731 3.081414 +0.01903886 0.006069731 3.081414 +0.02852504 0.006069731 3.081414 +0.04126244 0.006069731 3.081414 +0.05836535 0.006069731 3.081414 +0.08132997 0.006069731 3.081414 +0.1121653 0.006069731 3.081414 +0.1535689 0.006069731 3.081414 +0.2091628 0.006069731 3.081414 +0.2838106 0.006069731 3.081414 +0.3840425 0.006069731 3.081414 +0.518627 0.006069731 3.081414 +0.6993381 0.006069731 3.081414 +0.9419845 0.006069731 3.081414 +1.267794 0.006069731 3.081414 +1.705268 0.006069731 3.081414 +2.292679 0.006069731 3.081414 +3.081414 0.006069731 3.081414 +4.140474 0.006069731 3.081414 +5.562508 0.006069731 3.081414 +7.471917 0.006069731 3.081414 +10.03574 0.006069731 3.081414 +13.47828 0.006069731 3.081414 +18.10068 0.006069731 3.081414 +24.30731 0.006069731 3.081414 +32.64117 0.006069731 3.081414 +43.83129 0.006069731 3.081414 +58.85664 0.006069731 3.081414 +-0.0175068 0.01197402 3.081414 +-0.01161267 0.01197402 3.081414 +-0.005718534 0.01197402 3.081414 +0.0001755984 0.01197402 3.081414 +0.006069731 0.01197402 3.081414 +0.01197402 0.01197402 3.081414 +0.01903886 0.01197402 3.081414 +0.02852504 0.01197402 3.081414 +0.04126244 0.01197402 3.081414 +0.05836535 0.01197402 3.081414 +0.08132997 0.01197402 3.081414 +0.1121653 0.01197402 3.081414 +0.1535689 0.01197402 3.081414 +0.2091628 0.01197402 3.081414 +0.2838106 0.01197402 3.081414 +0.3840425 0.01197402 3.081414 +0.518627 0.01197402 3.081414 +0.6993381 0.01197402 3.081414 +0.9419845 0.01197402 3.081414 +1.267794 0.01197402 3.081414 +1.705268 0.01197402 3.081414 +2.292679 0.01197402 3.081414 +3.081414 0.01197402 3.081414 +4.140474 0.01197402 3.081414 +5.562508 0.01197402 3.081414 +7.471917 0.01197402 3.081414 +10.03574 0.01197402 3.081414 +13.47828 0.01197402 3.081414 +18.10068 0.01197402 3.081414 +24.30731 0.01197402 3.081414 +32.64117 0.01197402 3.081414 +43.83129 0.01197402 3.081414 +58.85664 0.01197402 3.081414 +-0.0175068 0.01903886 3.081414 +-0.01161267 0.01903886 3.081414 +-0.005718534 0.01903886 3.081414 +0.0001755984 0.01903886 3.081414 +0.006069731 0.01903886 3.081414 +0.01197402 0.01903886 3.081414 +0.01903886 0.01903886 3.081414 +0.02852504 0.01903886 3.081414 +0.04126244 0.01903886 3.081414 +0.05836535 0.01903886 3.081414 +0.08132997 0.01903886 3.081414 +0.1121653 0.01903886 3.081414 +0.1535689 0.01903886 3.081414 +0.2091628 0.01903886 3.081414 +0.2838106 0.01903886 3.081414 +0.3840425 0.01903886 3.081414 +0.518627 0.01903886 3.081414 +0.6993381 0.01903886 3.081414 +0.9419845 0.01903886 3.081414 +1.267794 0.01903886 3.081414 +1.705268 0.01903886 3.081414 +2.292679 0.01903886 3.081414 +3.081414 0.01903886 3.081414 +4.140474 0.01903886 3.081414 +5.562508 0.01903886 3.081414 +7.471917 0.01903886 3.081414 +10.03574 0.01903886 3.081414 +13.47828 0.01903886 3.081414 +18.10068 0.01903886 3.081414 +24.30731 0.01903886 3.081414 +32.64117 0.01903886 3.081414 +43.83129 0.01903886 3.081414 +58.85664 0.01903886 3.081414 +-0.0175068 0.02852504 3.081414 +-0.01161267 0.02852504 3.081414 +-0.005718534 0.02852504 3.081414 +0.0001755984 0.02852504 3.081414 +0.006069731 0.02852504 3.081414 +0.01197402 0.02852504 3.081414 +0.01903886 0.02852504 3.081414 +0.02852504 0.02852504 3.081414 +0.04126244 0.02852504 3.081414 +0.05836535 0.02852504 3.081414 +0.08132997 0.02852504 3.081414 +0.1121653 0.02852504 3.081414 +0.1535689 0.02852504 3.081414 +0.2091628 0.02852504 3.081414 +0.2838106 0.02852504 3.081414 +0.3840425 0.02852504 3.081414 +0.518627 0.02852504 3.081414 +0.6993381 0.02852504 3.081414 +0.9419845 0.02852504 3.081414 +1.267794 0.02852504 3.081414 +1.705268 0.02852504 3.081414 +2.292679 0.02852504 3.081414 +3.081414 0.02852504 3.081414 +4.140474 0.02852504 3.081414 +5.562508 0.02852504 3.081414 +7.471917 0.02852504 3.081414 +10.03574 0.02852504 3.081414 +13.47828 0.02852504 3.081414 +18.10068 0.02852504 3.081414 +24.30731 0.02852504 3.081414 +32.64117 0.02852504 3.081414 +43.83129 0.02852504 3.081414 +58.85664 0.02852504 3.081414 +-0.0175068 0.04126244 3.081414 +-0.01161267 0.04126244 3.081414 +-0.005718534 0.04126244 3.081414 +0.0001755984 0.04126244 3.081414 +0.006069731 0.04126244 3.081414 +0.01197402 0.04126244 3.081414 +0.01903886 0.04126244 3.081414 +0.02852504 0.04126244 3.081414 +0.04126244 0.04126244 3.081414 +0.05836535 0.04126244 3.081414 +0.08132997 0.04126244 3.081414 +0.1121653 0.04126244 3.081414 +0.1535689 0.04126244 3.081414 +0.2091628 0.04126244 3.081414 +0.2838106 0.04126244 3.081414 +0.3840425 0.04126244 3.081414 +0.518627 0.04126244 3.081414 +0.6993381 0.04126244 3.081414 +0.9419845 0.04126244 3.081414 +1.267794 0.04126244 3.081414 +1.705268 0.04126244 3.081414 +2.292679 0.04126244 3.081414 +3.081414 0.04126244 3.081414 +4.140474 0.04126244 3.081414 +5.562508 0.04126244 3.081414 +7.471917 0.04126244 3.081414 +10.03574 0.04126244 3.081414 +13.47828 0.04126244 3.081414 +18.10068 0.04126244 3.081414 +24.30731 0.04126244 3.081414 +32.64117 0.04126244 3.081414 +43.83129 0.04126244 3.081414 +58.85664 0.04126244 3.081414 +-0.0175068 0.05836535 3.081414 +-0.01161267 0.05836535 3.081414 +-0.005718534 0.05836535 3.081414 +0.0001755984 0.05836535 3.081414 +0.006069731 0.05836535 3.081414 +0.01197402 0.05836535 3.081414 +0.01903886 0.05836535 3.081414 +0.02852504 0.05836535 3.081414 +0.04126244 0.05836535 3.081414 +0.05836535 0.05836535 3.081414 +0.08132997 0.05836535 3.081414 +0.1121653 0.05836535 3.081414 +0.1535689 0.05836535 3.081414 +0.2091628 0.05836535 3.081414 +0.2838106 0.05836535 3.081414 +0.3840425 0.05836535 3.081414 +0.518627 0.05836535 3.081414 +0.6993381 0.05836535 3.081414 +0.9419845 0.05836535 3.081414 +1.267794 0.05836535 3.081414 +1.705268 0.05836535 3.081414 +2.292679 0.05836535 3.081414 +3.081414 0.05836535 3.081414 +4.140474 0.05836535 3.081414 +5.562508 0.05836535 3.081414 +7.471917 0.05836535 3.081414 +10.03574 0.05836535 3.081414 +13.47828 0.05836535 3.081414 +18.10068 0.05836535 3.081414 +24.30731 0.05836535 3.081414 +32.64117 0.05836535 3.081414 +43.83129 0.05836535 3.081414 +58.85664 0.05836535 3.081414 +-0.0175068 0.08132997 3.081414 +-0.01161267 0.08132997 3.081414 +-0.005718534 0.08132997 3.081414 +0.0001755984 0.08132997 3.081414 +0.006069731 0.08132997 3.081414 +0.01197402 0.08132997 3.081414 +0.01903886 0.08132997 3.081414 +0.02852504 0.08132997 3.081414 +0.04126244 0.08132997 3.081414 +0.05836535 0.08132997 3.081414 +0.08132997 0.08132997 3.081414 +0.1121653 0.08132997 3.081414 +0.1535689 0.08132997 3.081414 +0.2091628 0.08132997 3.081414 +0.2838106 0.08132997 3.081414 +0.3840425 0.08132997 3.081414 +0.518627 0.08132997 3.081414 +0.6993381 0.08132997 3.081414 +0.9419845 0.08132997 3.081414 +1.267794 0.08132997 3.081414 +1.705268 0.08132997 3.081414 +2.292679 0.08132997 3.081414 +3.081414 0.08132997 3.081414 +4.140474 0.08132997 3.081414 +5.562508 0.08132997 3.081414 +7.471917 0.08132997 3.081414 +10.03574 0.08132997 3.081414 +13.47828 0.08132997 3.081414 +18.10068 0.08132997 3.081414 +24.30731 0.08132997 3.081414 +32.64117 0.08132997 3.081414 +43.83129 0.08132997 3.081414 +58.85664 0.08132997 3.081414 +-0.0175068 0.1121653 3.081414 +-0.01161267 0.1121653 3.081414 +-0.005718534 0.1121653 3.081414 +0.0001755984 0.1121653 3.081414 +0.006069731 0.1121653 3.081414 +0.01197402 0.1121653 3.081414 +0.01903886 0.1121653 3.081414 +0.02852504 0.1121653 3.081414 +0.04126244 0.1121653 3.081414 +0.05836535 0.1121653 3.081414 +0.08132997 0.1121653 3.081414 +0.1121653 0.1121653 3.081414 +0.1535689 0.1121653 3.081414 +0.2091628 0.1121653 3.081414 +0.2838106 0.1121653 3.081414 +0.3840425 0.1121653 3.081414 +0.518627 0.1121653 3.081414 +0.6993381 0.1121653 3.081414 +0.9419845 0.1121653 3.081414 +1.267794 0.1121653 3.081414 +1.705268 0.1121653 3.081414 +2.292679 0.1121653 3.081414 +3.081414 0.1121653 3.081414 +4.140474 0.1121653 3.081414 +5.562508 0.1121653 3.081414 +7.471917 0.1121653 3.081414 +10.03574 0.1121653 3.081414 +13.47828 0.1121653 3.081414 +18.10068 0.1121653 3.081414 +24.30731 0.1121653 3.081414 +32.64117 0.1121653 3.081414 +43.83129 0.1121653 3.081414 +58.85664 0.1121653 3.081414 +-0.0175068 0.1535689 3.081414 +-0.01161267 0.1535689 3.081414 +-0.005718534 0.1535689 3.081414 +0.0001755984 0.1535689 3.081414 +0.006069731 0.1535689 3.081414 +0.01197402 0.1535689 3.081414 +0.01903886 0.1535689 3.081414 +0.02852504 0.1535689 3.081414 +0.04126244 0.1535689 3.081414 +0.05836535 0.1535689 3.081414 +0.08132997 0.1535689 3.081414 +0.1121653 0.1535689 3.081414 +0.1535689 0.1535689 3.081414 +0.2091628 0.1535689 3.081414 +0.2838106 0.1535689 3.081414 +0.3840425 0.1535689 3.081414 +0.518627 0.1535689 3.081414 +0.6993381 0.1535689 3.081414 +0.9419845 0.1535689 3.081414 +1.267794 0.1535689 3.081414 +1.705268 0.1535689 3.081414 +2.292679 0.1535689 3.081414 +3.081414 0.1535689 3.081414 +4.140474 0.1535689 3.081414 +5.562508 0.1535689 3.081414 +7.471917 0.1535689 3.081414 +10.03574 0.1535689 3.081414 +13.47828 0.1535689 3.081414 +18.10068 0.1535689 3.081414 +24.30731 0.1535689 3.081414 +32.64117 0.1535689 3.081414 +43.83129 0.1535689 3.081414 +58.85664 0.1535689 3.081414 +-0.0175068 0.2091628 3.081414 +-0.01161267 0.2091628 3.081414 +-0.005718534 0.2091628 3.081414 +0.0001755984 0.2091628 3.081414 +0.006069731 0.2091628 3.081414 +0.01197402 0.2091628 3.081414 +0.01903886 0.2091628 3.081414 +0.02852504 0.2091628 3.081414 +0.04126244 0.2091628 3.081414 +0.05836535 0.2091628 3.081414 +0.08132997 0.2091628 3.081414 +0.1121653 0.2091628 3.081414 +0.1535689 0.2091628 3.081414 +0.2091628 0.2091628 3.081414 +0.2838106 0.2091628 3.081414 +0.3840425 0.2091628 3.081414 +0.518627 0.2091628 3.081414 +0.6993381 0.2091628 3.081414 +0.9419845 0.2091628 3.081414 +1.267794 0.2091628 3.081414 +1.705268 0.2091628 3.081414 +2.292679 0.2091628 3.081414 +3.081414 0.2091628 3.081414 +4.140474 0.2091628 3.081414 +5.562508 0.2091628 3.081414 +7.471917 0.2091628 3.081414 +10.03574 0.2091628 3.081414 +13.47828 0.2091628 3.081414 +18.10068 0.2091628 3.081414 +24.30731 0.2091628 3.081414 +32.64117 0.2091628 3.081414 +43.83129 0.2091628 3.081414 +58.85664 0.2091628 3.081414 +-0.0175068 0.2838106 3.081414 +-0.01161267 0.2838106 3.081414 +-0.005718534 0.2838106 3.081414 +0.0001755984 0.2838106 3.081414 +0.006069731 0.2838106 3.081414 +0.01197402 0.2838106 3.081414 +0.01903886 0.2838106 3.081414 +0.02852504 0.2838106 3.081414 +0.04126244 0.2838106 3.081414 +0.05836535 0.2838106 3.081414 +0.08132997 0.2838106 3.081414 +0.1121653 0.2838106 3.081414 +0.1535689 0.2838106 3.081414 +0.2091628 0.2838106 3.081414 +0.2838106 0.2838106 3.081414 +0.3840425 0.2838106 3.081414 +0.518627 0.2838106 3.081414 +0.6993381 0.2838106 3.081414 +0.9419845 0.2838106 3.081414 +1.267794 0.2838106 3.081414 +1.705268 0.2838106 3.081414 +2.292679 0.2838106 3.081414 +3.081414 0.2838106 3.081414 +4.140474 0.2838106 3.081414 +5.562508 0.2838106 3.081414 +7.471917 0.2838106 3.081414 +10.03574 0.2838106 3.081414 +13.47828 0.2838106 3.081414 +18.10068 0.2838106 3.081414 +24.30731 0.2838106 3.081414 +32.64117 0.2838106 3.081414 +43.83129 0.2838106 3.081414 +58.85664 0.2838106 3.081414 +-0.0175068 0.3840425 3.081414 +-0.01161267 0.3840425 3.081414 +-0.005718534 0.3840425 3.081414 +0.0001755984 0.3840425 3.081414 +0.006069731 0.3840425 3.081414 +0.01197402 0.3840425 3.081414 +0.01903886 0.3840425 3.081414 +0.02852504 0.3840425 3.081414 +0.04126244 0.3840425 3.081414 +0.05836535 0.3840425 3.081414 +0.08132997 0.3840425 3.081414 +0.1121653 0.3840425 3.081414 +0.1535689 0.3840425 3.081414 +0.2091628 0.3840425 3.081414 +0.2838106 0.3840425 3.081414 +0.3840425 0.3840425 3.081414 +0.518627 0.3840425 3.081414 +0.6993381 0.3840425 3.081414 +0.9419845 0.3840425 3.081414 +1.267794 0.3840425 3.081414 +1.705268 0.3840425 3.081414 +2.292679 0.3840425 3.081414 +3.081414 0.3840425 3.081414 +4.140474 0.3840425 3.081414 +5.562508 0.3840425 3.081414 +7.471917 0.3840425 3.081414 +10.03574 0.3840425 3.081414 +13.47828 0.3840425 3.081414 +18.10068 0.3840425 3.081414 +24.30731 0.3840425 3.081414 +32.64117 0.3840425 3.081414 +43.83129 0.3840425 3.081414 +58.85664 0.3840425 3.081414 +-0.0175068 0.518627 3.081414 +-0.01161267 0.518627 3.081414 +-0.005718534 0.518627 3.081414 +0.0001755984 0.518627 3.081414 +0.006069731 0.518627 3.081414 +0.01197402 0.518627 3.081414 +0.01903886 0.518627 3.081414 +0.02852504 0.518627 3.081414 +0.04126244 0.518627 3.081414 +0.05836535 0.518627 3.081414 +0.08132997 0.518627 3.081414 +0.1121653 0.518627 3.081414 +0.1535689 0.518627 3.081414 +0.2091628 0.518627 3.081414 +0.2838106 0.518627 3.081414 +0.3840425 0.518627 3.081414 +0.518627 0.518627 3.081414 +0.6993381 0.518627 3.081414 +0.9419845 0.518627 3.081414 +1.267794 0.518627 3.081414 +1.705268 0.518627 3.081414 +2.292679 0.518627 3.081414 +3.081414 0.518627 3.081414 +4.140474 0.518627 3.081414 +5.562508 0.518627 3.081414 +7.471917 0.518627 3.081414 +10.03574 0.518627 3.081414 +13.47828 0.518627 3.081414 +18.10068 0.518627 3.081414 +24.30731 0.518627 3.081414 +32.64117 0.518627 3.081414 +43.83129 0.518627 3.081414 +58.85664 0.518627 3.081414 +-0.0175068 0.6993381 3.081414 +-0.01161267 0.6993381 3.081414 +-0.005718534 0.6993381 3.081414 +0.0001755984 0.6993381 3.081414 +0.006069731 0.6993381 3.081414 +0.01197402 0.6993381 3.081414 +0.01903886 0.6993381 3.081414 +0.02852504 0.6993381 3.081414 +0.04126244 0.6993381 3.081414 +0.05836535 0.6993381 3.081414 +0.08132997 0.6993381 3.081414 +0.1121653 0.6993381 3.081414 +0.1535689 0.6993381 3.081414 +0.2091628 0.6993381 3.081414 +0.2838106 0.6993381 3.081414 +0.3840425 0.6993381 3.081414 +0.518627 0.6993381 3.081414 +0.6993381 0.6993381 3.081414 +0.9419845 0.6993381 3.081414 +1.267794 0.6993381 3.081414 +1.705268 0.6993381 3.081414 +2.292679 0.6993381 3.081414 +3.081414 0.6993381 3.081414 +4.140474 0.6993381 3.081414 +5.562508 0.6993381 3.081414 +7.471917 0.6993381 3.081414 +10.03574 0.6993381 3.081414 +13.47828 0.6993381 3.081414 +18.10068 0.6993381 3.081414 +24.30731 0.6993381 3.081414 +32.64117 0.6993381 3.081414 +43.83129 0.6993381 3.081414 +58.85664 0.6993381 3.081414 +-0.0175068 0.9419845 3.081414 +-0.01161267 0.9419845 3.081414 +-0.005718534 0.9419845 3.081414 +0.0001755984 0.9419845 3.081414 +0.006069731 0.9419845 3.081414 +0.01197402 0.9419845 3.081414 +0.01903886 0.9419845 3.081414 +0.02852504 0.9419845 3.081414 +0.04126244 0.9419845 3.081414 +0.05836535 0.9419845 3.081414 +0.08132997 0.9419845 3.081414 +0.1121653 0.9419845 3.081414 +0.1535689 0.9419845 3.081414 +0.2091628 0.9419845 3.081414 +0.2838106 0.9419845 3.081414 +0.3840425 0.9419845 3.081414 +0.518627 0.9419845 3.081414 +0.6993381 0.9419845 3.081414 +0.9419845 0.9419845 3.081414 +1.267794 0.9419845 3.081414 +1.705268 0.9419845 3.081414 +2.292679 0.9419845 3.081414 +3.081414 0.9419845 3.081414 +4.140474 0.9419845 3.081414 +5.562508 0.9419845 3.081414 +7.471917 0.9419845 3.081414 +10.03574 0.9419845 3.081414 +13.47828 0.9419845 3.081414 +18.10068 0.9419845 3.081414 +24.30731 0.9419845 3.081414 +32.64117 0.9419845 3.081414 +43.83129 0.9419845 3.081414 +58.85664 0.9419845 3.081414 +-0.0175068 1.267794 3.081414 +-0.01161267 1.267794 3.081414 +-0.005718534 1.267794 3.081414 +0.0001755984 1.267794 3.081414 +0.006069731 1.267794 3.081414 +0.01197402 1.267794 3.081414 +0.01903886 1.267794 3.081414 +0.02852504 1.267794 3.081414 +0.04126244 1.267794 3.081414 +0.05836535 1.267794 3.081414 +0.08132997 1.267794 3.081414 +0.1121653 1.267794 3.081414 +0.1535689 1.267794 3.081414 +0.2091628 1.267794 3.081414 +0.2838106 1.267794 3.081414 +0.3840425 1.267794 3.081414 +0.518627 1.267794 3.081414 +0.6993381 1.267794 3.081414 +0.9419845 1.267794 3.081414 +1.267794 1.267794 3.081414 +1.705268 1.267794 3.081414 +2.292679 1.267794 3.081414 +3.081414 1.267794 3.081414 +4.140474 1.267794 3.081414 +5.562508 1.267794 3.081414 +7.471917 1.267794 3.081414 +10.03574 1.267794 3.081414 +13.47828 1.267794 3.081414 +18.10068 1.267794 3.081414 +24.30731 1.267794 3.081414 +32.64117 1.267794 3.081414 +43.83129 1.267794 3.081414 +58.85664 1.267794 3.081414 +-0.0175068 1.705268 3.081414 +-0.01161267 1.705268 3.081414 +-0.005718534 1.705268 3.081414 +0.0001755984 1.705268 3.081414 +0.006069731 1.705268 3.081414 +0.01197402 1.705268 3.081414 +0.01903886 1.705268 3.081414 +0.02852504 1.705268 3.081414 +0.04126244 1.705268 3.081414 +0.05836535 1.705268 3.081414 +0.08132997 1.705268 3.081414 +0.1121653 1.705268 3.081414 +0.1535689 1.705268 3.081414 +0.2091628 1.705268 3.081414 +0.2838106 1.705268 3.081414 +0.3840425 1.705268 3.081414 +0.518627 1.705268 3.081414 +0.6993381 1.705268 3.081414 +0.9419845 1.705268 3.081414 +1.267794 1.705268 3.081414 +1.705268 1.705268 3.081414 +2.292679 1.705268 3.081414 +3.081414 1.705268 3.081414 +4.140474 1.705268 3.081414 +5.562508 1.705268 3.081414 +7.471917 1.705268 3.081414 +10.03574 1.705268 3.081414 +13.47828 1.705268 3.081414 +18.10068 1.705268 3.081414 +24.30731 1.705268 3.081414 +32.64117 1.705268 3.081414 +43.83129 1.705268 3.081414 +58.85664 1.705268 3.081414 +-0.0175068 2.292679 3.081414 +-0.01161267 2.292679 3.081414 +-0.005718534 2.292679 3.081414 +0.0001755984 2.292679 3.081414 +0.006069731 2.292679 3.081414 +0.01197402 2.292679 3.081414 +0.01903886 2.292679 3.081414 +0.02852504 2.292679 3.081414 +0.04126244 2.292679 3.081414 +0.05836535 2.292679 3.081414 +0.08132997 2.292679 3.081414 +0.1121653 2.292679 3.081414 +0.1535689 2.292679 3.081414 +0.2091628 2.292679 3.081414 +0.2838106 2.292679 3.081414 +0.3840425 2.292679 3.081414 +0.518627 2.292679 3.081414 +0.6993381 2.292679 3.081414 +0.9419845 2.292679 3.081414 +1.267794 2.292679 3.081414 +1.705268 2.292679 3.081414 +2.292679 2.292679 3.081414 +3.081414 2.292679 3.081414 +4.140474 2.292679 3.081414 +5.562508 2.292679 3.081414 +7.471917 2.292679 3.081414 +10.03574 2.292679 3.081414 +13.47828 2.292679 3.081414 +18.10068 2.292679 3.081414 +24.30731 2.292679 3.081414 +32.64117 2.292679 3.081414 +43.83129 2.292679 3.081414 +58.85664 2.292679 3.081414 +-0.0175068 3.081414 3.081414 +-0.01161267 3.081414 3.081414 +-0.005718534 3.081414 3.081414 +0.0001755984 3.081414 3.081414 +0.006069731 3.081414 3.081414 +0.01197402 3.081414 3.081414 +0.01903886 3.081414 3.081414 +0.02852504 3.081414 3.081414 +0.04126244 3.081414 3.081414 +0.05836535 3.081414 3.081414 +0.08132997 3.081414 3.081414 +0.1121653 3.081414 3.081414 +0.1535689 3.081414 3.081414 +0.2091628 3.081414 3.081414 +0.2838106 3.081414 3.081414 +0.3840425 3.081414 3.081414 +0.518627 3.081414 3.081414 +0.6993381 3.081414 3.081414 +0.9419845 3.081414 3.081414 +1.267794 3.081414 3.081414 +1.705268 3.081414 3.081414 +2.292679 3.081414 3.081414 +3.081414 3.081414 3.081414 +4.140474 3.081414 3.081414 +5.562508 3.081414 3.081414 +7.471917 3.081414 3.081414 +10.03574 3.081414 3.081414 +13.47828 3.081414 3.081414 +18.10068 3.081414 3.081414 +24.30731 3.081414 3.081414 +32.64117 3.081414 3.081414 +43.83129 3.081414 3.081414 +58.85664 3.081414 3.081414 +-0.0175068 4.140474 3.081414 +-0.01161267 4.140474 3.081414 +-0.005718534 4.140474 3.081414 +0.0001755984 4.140474 3.081414 +0.006069731 4.140474 3.081414 +0.01197402 4.140474 3.081414 +0.01903886 4.140474 3.081414 +0.02852504 4.140474 3.081414 +0.04126244 4.140474 3.081414 +0.05836535 4.140474 3.081414 +0.08132997 4.140474 3.081414 +0.1121653 4.140474 3.081414 +0.1535689 4.140474 3.081414 +0.2091628 4.140474 3.081414 +0.2838106 4.140474 3.081414 +0.3840425 4.140474 3.081414 +0.518627 4.140474 3.081414 +0.6993381 4.140474 3.081414 +0.9419845 4.140474 3.081414 +1.267794 4.140474 3.081414 +1.705268 4.140474 3.081414 +2.292679 4.140474 3.081414 +3.081414 4.140474 3.081414 +4.140474 4.140474 3.081414 +5.562508 4.140474 3.081414 +7.471917 4.140474 3.081414 +10.03574 4.140474 3.081414 +13.47828 4.140474 3.081414 +18.10068 4.140474 3.081414 +24.30731 4.140474 3.081414 +32.64117 4.140474 3.081414 +43.83129 4.140474 3.081414 +58.85664 4.140474 3.081414 +-0.0175068 5.562508 3.081414 +-0.01161267 5.562508 3.081414 +-0.005718534 5.562508 3.081414 +0.0001755984 5.562508 3.081414 +0.006069731 5.562508 3.081414 +0.01197402 5.562508 3.081414 +0.01903886 5.562508 3.081414 +0.02852504 5.562508 3.081414 +0.04126244 5.562508 3.081414 +0.05836535 5.562508 3.081414 +0.08132997 5.562508 3.081414 +0.1121653 5.562508 3.081414 +0.1535689 5.562508 3.081414 +0.2091628 5.562508 3.081414 +0.2838106 5.562508 3.081414 +0.3840425 5.562508 3.081414 +0.518627 5.562508 3.081414 +0.6993381 5.562508 3.081414 +0.9419845 5.562508 3.081414 +1.267794 5.562508 3.081414 +1.705268 5.562508 3.081414 +2.292679 5.562508 3.081414 +3.081414 5.562508 3.081414 +4.140474 5.562508 3.081414 +5.562508 5.562508 3.081414 +7.471917 5.562508 3.081414 +10.03574 5.562508 3.081414 +13.47828 5.562508 3.081414 +18.10068 5.562508 3.081414 +24.30731 5.562508 3.081414 +32.64117 5.562508 3.081414 +43.83129 5.562508 3.081414 +58.85664 5.562508 3.081414 +-0.0175068 7.471917 3.081414 +-0.01161267 7.471917 3.081414 +-0.005718534 7.471917 3.081414 +0.0001755984 7.471917 3.081414 +0.006069731 7.471917 3.081414 +0.01197402 7.471917 3.081414 +0.01903886 7.471917 3.081414 +0.02852504 7.471917 3.081414 +0.04126244 7.471917 3.081414 +0.05836535 7.471917 3.081414 +0.08132997 7.471917 3.081414 +0.1121653 7.471917 3.081414 +0.1535689 7.471917 3.081414 +0.2091628 7.471917 3.081414 +0.2838106 7.471917 3.081414 +0.3840425 7.471917 3.081414 +0.518627 7.471917 3.081414 +0.6993381 7.471917 3.081414 +0.9419845 7.471917 3.081414 +1.267794 7.471917 3.081414 +1.705268 7.471917 3.081414 +2.292679 7.471917 3.081414 +3.081414 7.471917 3.081414 +4.140474 7.471917 3.081414 +5.562508 7.471917 3.081414 +7.471917 7.471917 3.081414 +10.03574 7.471917 3.081414 +13.47828 7.471917 3.081414 +18.10068 7.471917 3.081414 +24.30731 7.471917 3.081414 +32.64117 7.471917 3.081414 +43.83129 7.471917 3.081414 +58.85664 7.471917 3.081414 +-0.0175068 10.03574 3.081414 +-0.01161267 10.03574 3.081414 +-0.005718534 10.03574 3.081414 +0.0001755984 10.03574 3.081414 +0.006069731 10.03574 3.081414 +0.01197402 10.03574 3.081414 +0.01903886 10.03574 3.081414 +0.02852504 10.03574 3.081414 +0.04126244 10.03574 3.081414 +0.05836535 10.03574 3.081414 +0.08132997 10.03574 3.081414 +0.1121653 10.03574 3.081414 +0.1535689 10.03574 3.081414 +0.2091628 10.03574 3.081414 +0.2838106 10.03574 3.081414 +0.3840425 10.03574 3.081414 +0.518627 10.03574 3.081414 +0.6993381 10.03574 3.081414 +0.9419845 10.03574 3.081414 +1.267794 10.03574 3.081414 +1.705268 10.03574 3.081414 +2.292679 10.03574 3.081414 +3.081414 10.03574 3.081414 +4.140474 10.03574 3.081414 +5.562508 10.03574 3.081414 +7.471917 10.03574 3.081414 +10.03574 10.03574 3.081414 +13.47828 10.03574 3.081414 +18.10068 10.03574 3.081414 +24.30731 10.03574 3.081414 +32.64117 10.03574 3.081414 +43.83129 10.03574 3.081414 +58.85664 10.03574 3.081414 +-0.0175068 13.47828 3.081414 +-0.01161267 13.47828 3.081414 +-0.005718534 13.47828 3.081414 +0.0001755984 13.47828 3.081414 +0.006069731 13.47828 3.081414 +0.01197402 13.47828 3.081414 +0.01903886 13.47828 3.081414 +0.02852504 13.47828 3.081414 +0.04126244 13.47828 3.081414 +0.05836535 13.47828 3.081414 +0.08132997 13.47828 3.081414 +0.1121653 13.47828 3.081414 +0.1535689 13.47828 3.081414 +0.2091628 13.47828 3.081414 +0.2838106 13.47828 3.081414 +0.3840425 13.47828 3.081414 +0.518627 13.47828 3.081414 +0.6993381 13.47828 3.081414 +0.9419845 13.47828 3.081414 +1.267794 13.47828 3.081414 +1.705268 13.47828 3.081414 +2.292679 13.47828 3.081414 +3.081414 13.47828 3.081414 +4.140474 13.47828 3.081414 +5.562508 13.47828 3.081414 +7.471917 13.47828 3.081414 +10.03574 13.47828 3.081414 +13.47828 13.47828 3.081414 +18.10068 13.47828 3.081414 +24.30731 13.47828 3.081414 +32.64117 13.47828 3.081414 +43.83129 13.47828 3.081414 +58.85664 13.47828 3.081414 +-0.0175068 18.10068 3.081414 +-0.01161267 18.10068 3.081414 +-0.005718534 18.10068 3.081414 +0.0001755984 18.10068 3.081414 +0.006069731 18.10068 3.081414 +0.01197402 18.10068 3.081414 +0.01903886 18.10068 3.081414 +0.02852504 18.10068 3.081414 +0.04126244 18.10068 3.081414 +0.05836535 18.10068 3.081414 +0.08132997 18.10068 3.081414 +0.1121653 18.10068 3.081414 +0.1535689 18.10068 3.081414 +0.2091628 18.10068 3.081414 +0.2838106 18.10068 3.081414 +0.3840425 18.10068 3.081414 +0.518627 18.10068 3.081414 +0.6993381 18.10068 3.081414 +0.9419845 18.10068 3.081414 +1.267794 18.10068 3.081414 +1.705268 18.10068 3.081414 +2.292679 18.10068 3.081414 +3.081414 18.10068 3.081414 +4.140474 18.10068 3.081414 +5.562508 18.10068 3.081414 +7.471917 18.10068 3.081414 +10.03574 18.10068 3.081414 +13.47828 18.10068 3.081414 +18.10068 18.10068 3.081414 +24.30731 18.10068 3.081414 +32.64117 18.10068 3.081414 +43.83129 18.10068 3.081414 +58.85664 18.10068 3.081414 +-0.0175068 24.30731 3.081414 +-0.01161267 24.30731 3.081414 +-0.005718534 24.30731 3.081414 +0.0001755984 24.30731 3.081414 +0.006069731 24.30731 3.081414 +0.01197402 24.30731 3.081414 +0.01903886 24.30731 3.081414 +0.02852504 24.30731 3.081414 +0.04126244 24.30731 3.081414 +0.05836535 24.30731 3.081414 +0.08132997 24.30731 3.081414 +0.1121653 24.30731 3.081414 +0.1535689 24.30731 3.081414 +0.2091628 24.30731 3.081414 +0.2838106 24.30731 3.081414 +0.3840425 24.30731 3.081414 +0.518627 24.30731 3.081414 +0.6993381 24.30731 3.081414 +0.9419845 24.30731 3.081414 +1.267794 24.30731 3.081414 +1.705268 24.30731 3.081414 +2.292679 24.30731 3.081414 +3.081414 24.30731 3.081414 +4.140474 24.30731 3.081414 +5.562508 24.30731 3.081414 +7.471917 24.30731 3.081414 +10.03574 24.30731 3.081414 +13.47828 24.30731 3.081414 +18.10068 24.30731 3.081414 +24.30731 24.30731 3.081414 +32.64117 24.30731 3.081414 +43.83129 24.30731 3.081414 +58.85664 24.30731 3.081414 +-0.0175068 32.64117 3.081414 +-0.01161267 32.64117 3.081414 +-0.005718534 32.64117 3.081414 +0.0001755984 32.64117 3.081414 +0.006069731 32.64117 3.081414 +0.01197402 32.64117 3.081414 +0.01903886 32.64117 3.081414 +0.02852504 32.64117 3.081414 +0.04126244 32.64117 3.081414 +0.05836535 32.64117 3.081414 +0.08132997 32.64117 3.081414 +0.1121653 32.64117 3.081414 +0.1535689 32.64117 3.081414 +0.2091628 32.64117 3.081414 +0.2838106 32.64117 3.081414 +0.3840425 32.64117 3.081414 +0.518627 32.64117 3.081414 +0.6993381 32.64117 3.081414 +0.9419845 32.64117 3.081414 +1.267794 32.64117 3.081414 +1.705268 32.64117 3.081414 +2.292679 32.64117 3.081414 +3.081414 32.64117 3.081414 +4.140474 32.64117 3.081414 +5.562508 32.64117 3.081414 +7.471917 32.64117 3.081414 +10.03574 32.64117 3.081414 +13.47828 32.64117 3.081414 +18.10068 32.64117 3.081414 +24.30731 32.64117 3.081414 +32.64117 32.64117 3.081414 +43.83129 32.64117 3.081414 +58.85664 32.64117 3.081414 +-0.0175068 43.83129 3.081414 +-0.01161267 43.83129 3.081414 +-0.005718534 43.83129 3.081414 +0.0001755984 43.83129 3.081414 +0.006069731 43.83129 3.081414 +0.01197402 43.83129 3.081414 +0.01903886 43.83129 3.081414 +0.02852504 43.83129 3.081414 +0.04126244 43.83129 3.081414 +0.05836535 43.83129 3.081414 +0.08132997 43.83129 3.081414 +0.1121653 43.83129 3.081414 +0.1535689 43.83129 3.081414 +0.2091628 43.83129 3.081414 +0.2838106 43.83129 3.081414 +0.3840425 43.83129 3.081414 +0.518627 43.83129 3.081414 +0.6993381 43.83129 3.081414 +0.9419845 43.83129 3.081414 +1.267794 43.83129 3.081414 +1.705268 43.83129 3.081414 +2.292679 43.83129 3.081414 +3.081414 43.83129 3.081414 +4.140474 43.83129 3.081414 +5.562508 43.83129 3.081414 +7.471917 43.83129 3.081414 +10.03574 43.83129 3.081414 +13.47828 43.83129 3.081414 +18.10068 43.83129 3.081414 +24.30731 43.83129 3.081414 +32.64117 43.83129 3.081414 +43.83129 43.83129 3.081414 +58.85664 43.83129 3.081414 +-0.0175068 58.85664 3.081414 +-0.01161267 58.85664 3.081414 +-0.005718534 58.85664 3.081414 +0.0001755984 58.85664 3.081414 +0.006069731 58.85664 3.081414 +0.01197402 58.85664 3.081414 +0.01903886 58.85664 3.081414 +0.02852504 58.85664 3.081414 +0.04126244 58.85664 3.081414 +0.05836535 58.85664 3.081414 +0.08132997 58.85664 3.081414 +0.1121653 58.85664 3.081414 +0.1535689 58.85664 3.081414 +0.2091628 58.85664 3.081414 +0.2838106 58.85664 3.081414 +0.3840425 58.85664 3.081414 +0.518627 58.85664 3.081414 +0.6993381 58.85664 3.081414 +0.9419845 58.85664 3.081414 +1.267794 58.85664 3.081414 +1.705268 58.85664 3.081414 +2.292679 58.85664 3.081414 +3.081414 58.85664 3.081414 +4.140474 58.85664 3.081414 +5.562508 58.85664 3.081414 +7.471917 58.85664 3.081414 +10.03574 58.85664 3.081414 +13.47828 58.85664 3.081414 +18.10068 58.85664 3.081414 +24.30731 58.85664 3.081414 +32.64117 58.85664 3.081414 +43.83129 58.85664 3.081414 +58.85664 58.85664 3.081414 +-0.0175068 -0.0175068 4.140474 +-0.01161267 -0.0175068 4.140474 +-0.005718534 -0.0175068 4.140474 +0.0001755984 -0.0175068 4.140474 +0.006069731 -0.0175068 4.140474 +0.01197402 -0.0175068 4.140474 +0.01903886 -0.0175068 4.140474 +0.02852504 -0.0175068 4.140474 +0.04126244 -0.0175068 4.140474 +0.05836535 -0.0175068 4.140474 +0.08132997 -0.0175068 4.140474 +0.1121653 -0.0175068 4.140474 +0.1535689 -0.0175068 4.140474 +0.2091628 -0.0175068 4.140474 +0.2838106 -0.0175068 4.140474 +0.3840425 -0.0175068 4.140474 +0.518627 -0.0175068 4.140474 +0.6993381 -0.0175068 4.140474 +0.9419845 -0.0175068 4.140474 +1.267794 -0.0175068 4.140474 +1.705268 -0.0175068 4.140474 +2.292679 -0.0175068 4.140474 +3.081414 -0.0175068 4.140474 +4.140474 -0.0175068 4.140474 +5.562508 -0.0175068 4.140474 +7.471917 -0.0175068 4.140474 +10.03574 -0.0175068 4.140474 +13.47828 -0.0175068 4.140474 +18.10068 -0.0175068 4.140474 +24.30731 -0.0175068 4.140474 +32.64117 -0.0175068 4.140474 +43.83129 -0.0175068 4.140474 +58.85664 -0.0175068 4.140474 +-0.0175068 -0.01161267 4.140474 +-0.01161267 -0.01161267 4.140474 +-0.005718534 -0.01161267 4.140474 +0.0001755984 -0.01161267 4.140474 +0.006069731 -0.01161267 4.140474 +0.01197402 -0.01161267 4.140474 +0.01903886 -0.01161267 4.140474 +0.02852504 -0.01161267 4.140474 +0.04126244 -0.01161267 4.140474 +0.05836535 -0.01161267 4.140474 +0.08132997 -0.01161267 4.140474 +0.1121653 -0.01161267 4.140474 +0.1535689 -0.01161267 4.140474 +0.2091628 -0.01161267 4.140474 +0.2838106 -0.01161267 4.140474 +0.3840425 -0.01161267 4.140474 +0.518627 -0.01161267 4.140474 +0.6993381 -0.01161267 4.140474 +0.9419845 -0.01161267 4.140474 +1.267794 -0.01161267 4.140474 +1.705268 -0.01161267 4.140474 +2.292679 -0.01161267 4.140474 +3.081414 -0.01161267 4.140474 +4.140474 -0.01161267 4.140474 +5.562508 -0.01161267 4.140474 +7.471917 -0.01161267 4.140474 +10.03574 -0.01161267 4.140474 +13.47828 -0.01161267 4.140474 +18.10068 -0.01161267 4.140474 +24.30731 -0.01161267 4.140474 +32.64117 -0.01161267 4.140474 +43.83129 -0.01161267 4.140474 +58.85664 -0.01161267 4.140474 +-0.0175068 -0.005718534 4.140474 +-0.01161267 -0.005718534 4.140474 +-0.005718534 -0.005718534 4.140474 +0.0001755984 -0.005718534 4.140474 +0.006069731 -0.005718534 4.140474 +0.01197402 -0.005718534 4.140474 +0.01903886 -0.005718534 4.140474 +0.02852504 -0.005718534 4.140474 +0.04126244 -0.005718534 4.140474 +0.05836535 -0.005718534 4.140474 +0.08132997 -0.005718534 4.140474 +0.1121653 -0.005718534 4.140474 +0.1535689 -0.005718534 4.140474 +0.2091628 -0.005718534 4.140474 +0.2838106 -0.005718534 4.140474 +0.3840425 -0.005718534 4.140474 +0.518627 -0.005718534 4.140474 +0.6993381 -0.005718534 4.140474 +0.9419845 -0.005718534 4.140474 +1.267794 -0.005718534 4.140474 +1.705268 -0.005718534 4.140474 +2.292679 -0.005718534 4.140474 +3.081414 -0.005718534 4.140474 +4.140474 -0.005718534 4.140474 +5.562508 -0.005718534 4.140474 +7.471917 -0.005718534 4.140474 +10.03574 -0.005718534 4.140474 +13.47828 -0.005718534 4.140474 +18.10068 -0.005718534 4.140474 +24.30731 -0.005718534 4.140474 +32.64117 -0.005718534 4.140474 +43.83129 -0.005718534 4.140474 +58.85664 -0.005718534 4.140474 +-0.0175068 0.0001755984 4.140474 +-0.01161267 0.0001755984 4.140474 +-0.005718534 0.0001755984 4.140474 +0.0001755984 0.0001755984 4.140474 +0.006069731 0.0001755984 4.140474 +0.01197402 0.0001755984 4.140474 +0.01903886 0.0001755984 4.140474 +0.02852504 0.0001755984 4.140474 +0.04126244 0.0001755984 4.140474 +0.05836535 0.0001755984 4.140474 +0.08132997 0.0001755984 4.140474 +0.1121653 0.0001755984 4.140474 +0.1535689 0.0001755984 4.140474 +0.2091628 0.0001755984 4.140474 +0.2838106 0.0001755984 4.140474 +0.3840425 0.0001755984 4.140474 +0.518627 0.0001755984 4.140474 +0.6993381 0.0001755984 4.140474 +0.9419845 0.0001755984 4.140474 +1.267794 0.0001755984 4.140474 +1.705268 0.0001755984 4.140474 +2.292679 0.0001755984 4.140474 +3.081414 0.0001755984 4.140474 +4.140474 0.0001755984 4.140474 +5.562508 0.0001755984 4.140474 +7.471917 0.0001755984 4.140474 +10.03574 0.0001755984 4.140474 +13.47828 0.0001755984 4.140474 +18.10068 0.0001755984 4.140474 +24.30731 0.0001755984 4.140474 +32.64117 0.0001755984 4.140474 +43.83129 0.0001755984 4.140474 +58.85664 0.0001755984 4.140474 +-0.0175068 0.006069731 4.140474 +-0.01161267 0.006069731 4.140474 +-0.005718534 0.006069731 4.140474 +0.0001755984 0.006069731 4.140474 +0.006069731 0.006069731 4.140474 +0.01197402 0.006069731 4.140474 +0.01903886 0.006069731 4.140474 +0.02852504 0.006069731 4.140474 +0.04126244 0.006069731 4.140474 +0.05836535 0.006069731 4.140474 +0.08132997 0.006069731 4.140474 +0.1121653 0.006069731 4.140474 +0.1535689 0.006069731 4.140474 +0.2091628 0.006069731 4.140474 +0.2838106 0.006069731 4.140474 +0.3840425 0.006069731 4.140474 +0.518627 0.006069731 4.140474 +0.6993381 0.006069731 4.140474 +0.9419845 0.006069731 4.140474 +1.267794 0.006069731 4.140474 +1.705268 0.006069731 4.140474 +2.292679 0.006069731 4.140474 +3.081414 0.006069731 4.140474 +4.140474 0.006069731 4.140474 +5.562508 0.006069731 4.140474 +7.471917 0.006069731 4.140474 +10.03574 0.006069731 4.140474 +13.47828 0.006069731 4.140474 +18.10068 0.006069731 4.140474 +24.30731 0.006069731 4.140474 +32.64117 0.006069731 4.140474 +43.83129 0.006069731 4.140474 +58.85664 0.006069731 4.140474 +-0.0175068 0.01197402 4.140474 +-0.01161267 0.01197402 4.140474 +-0.005718534 0.01197402 4.140474 +0.0001755984 0.01197402 4.140474 +0.006069731 0.01197402 4.140474 +0.01197402 0.01197402 4.140474 +0.01903886 0.01197402 4.140474 +0.02852504 0.01197402 4.140474 +0.04126244 0.01197402 4.140474 +0.05836535 0.01197402 4.140474 +0.08132997 0.01197402 4.140474 +0.1121653 0.01197402 4.140474 +0.1535689 0.01197402 4.140474 +0.2091628 0.01197402 4.140474 +0.2838106 0.01197402 4.140474 +0.3840425 0.01197402 4.140474 +0.518627 0.01197402 4.140474 +0.6993381 0.01197402 4.140474 +0.9419845 0.01197402 4.140474 +1.267794 0.01197402 4.140474 +1.705268 0.01197402 4.140474 +2.292679 0.01197402 4.140474 +3.081414 0.01197402 4.140474 +4.140474 0.01197402 4.140474 +5.562508 0.01197402 4.140474 +7.471917 0.01197402 4.140474 +10.03574 0.01197402 4.140474 +13.47828 0.01197402 4.140474 +18.10068 0.01197402 4.140474 +24.30731 0.01197402 4.140474 +32.64117 0.01197402 4.140474 +43.83129 0.01197402 4.140474 +58.85664 0.01197402 4.140474 +-0.0175068 0.01903886 4.140474 +-0.01161267 0.01903886 4.140474 +-0.005718534 0.01903886 4.140474 +0.0001755984 0.01903886 4.140474 +0.006069731 0.01903886 4.140474 +0.01197402 0.01903886 4.140474 +0.01903886 0.01903886 4.140474 +0.02852504 0.01903886 4.140474 +0.04126244 0.01903886 4.140474 +0.05836535 0.01903886 4.140474 +0.08132997 0.01903886 4.140474 +0.1121653 0.01903886 4.140474 +0.1535689 0.01903886 4.140474 +0.2091628 0.01903886 4.140474 +0.2838106 0.01903886 4.140474 +0.3840425 0.01903886 4.140474 +0.518627 0.01903886 4.140474 +0.6993381 0.01903886 4.140474 +0.9419845 0.01903886 4.140474 +1.267794 0.01903886 4.140474 +1.705268 0.01903886 4.140474 +2.292679 0.01903886 4.140474 +3.081414 0.01903886 4.140474 +4.140474 0.01903886 4.140474 +5.562508 0.01903886 4.140474 +7.471917 0.01903886 4.140474 +10.03574 0.01903886 4.140474 +13.47828 0.01903886 4.140474 +18.10068 0.01903886 4.140474 +24.30731 0.01903886 4.140474 +32.64117 0.01903886 4.140474 +43.83129 0.01903886 4.140474 +58.85664 0.01903886 4.140474 +-0.0175068 0.02852504 4.140474 +-0.01161267 0.02852504 4.140474 +-0.005718534 0.02852504 4.140474 +0.0001755984 0.02852504 4.140474 +0.006069731 0.02852504 4.140474 +0.01197402 0.02852504 4.140474 +0.01903886 0.02852504 4.140474 +0.02852504 0.02852504 4.140474 +0.04126244 0.02852504 4.140474 +0.05836535 0.02852504 4.140474 +0.08132997 0.02852504 4.140474 +0.1121653 0.02852504 4.140474 +0.1535689 0.02852504 4.140474 +0.2091628 0.02852504 4.140474 +0.2838106 0.02852504 4.140474 +0.3840425 0.02852504 4.140474 +0.518627 0.02852504 4.140474 +0.6993381 0.02852504 4.140474 +0.9419845 0.02852504 4.140474 +1.267794 0.02852504 4.140474 +1.705268 0.02852504 4.140474 +2.292679 0.02852504 4.140474 +3.081414 0.02852504 4.140474 +4.140474 0.02852504 4.140474 +5.562508 0.02852504 4.140474 +7.471917 0.02852504 4.140474 +10.03574 0.02852504 4.140474 +13.47828 0.02852504 4.140474 +18.10068 0.02852504 4.140474 +24.30731 0.02852504 4.140474 +32.64117 0.02852504 4.140474 +43.83129 0.02852504 4.140474 +58.85664 0.02852504 4.140474 +-0.0175068 0.04126244 4.140474 +-0.01161267 0.04126244 4.140474 +-0.005718534 0.04126244 4.140474 +0.0001755984 0.04126244 4.140474 +0.006069731 0.04126244 4.140474 +0.01197402 0.04126244 4.140474 +0.01903886 0.04126244 4.140474 +0.02852504 0.04126244 4.140474 +0.04126244 0.04126244 4.140474 +0.05836535 0.04126244 4.140474 +0.08132997 0.04126244 4.140474 +0.1121653 0.04126244 4.140474 +0.1535689 0.04126244 4.140474 +0.2091628 0.04126244 4.140474 +0.2838106 0.04126244 4.140474 +0.3840425 0.04126244 4.140474 +0.518627 0.04126244 4.140474 +0.6993381 0.04126244 4.140474 +0.9419845 0.04126244 4.140474 +1.267794 0.04126244 4.140474 +1.705268 0.04126244 4.140474 +2.292679 0.04126244 4.140474 +3.081414 0.04126244 4.140474 +4.140474 0.04126244 4.140474 +5.562508 0.04126244 4.140474 +7.471917 0.04126244 4.140474 +10.03574 0.04126244 4.140474 +13.47828 0.04126244 4.140474 +18.10068 0.04126244 4.140474 +24.30731 0.04126244 4.140474 +32.64117 0.04126244 4.140474 +43.83129 0.04126244 4.140474 +58.85664 0.04126244 4.140474 +-0.0175068 0.05836535 4.140474 +-0.01161267 0.05836535 4.140474 +-0.005718534 0.05836535 4.140474 +0.0001755984 0.05836535 4.140474 +0.006069731 0.05836535 4.140474 +0.01197402 0.05836535 4.140474 +0.01903886 0.05836535 4.140474 +0.02852504 0.05836535 4.140474 +0.04126244 0.05836535 4.140474 +0.05836535 0.05836535 4.140474 +0.08132997 0.05836535 4.140474 +0.1121653 0.05836535 4.140474 +0.1535689 0.05836535 4.140474 +0.2091628 0.05836535 4.140474 +0.2838106 0.05836535 4.140474 +0.3840425 0.05836535 4.140474 +0.518627 0.05836535 4.140474 +0.6993381 0.05836535 4.140474 +0.9419845 0.05836535 4.140474 +1.267794 0.05836535 4.140474 +1.705268 0.05836535 4.140474 +2.292679 0.05836535 4.140474 +3.081414 0.05836535 4.140474 +4.140474 0.05836535 4.140474 +5.562508 0.05836535 4.140474 +7.471917 0.05836535 4.140474 +10.03574 0.05836535 4.140474 +13.47828 0.05836535 4.140474 +18.10068 0.05836535 4.140474 +24.30731 0.05836535 4.140474 +32.64117 0.05836535 4.140474 +43.83129 0.05836535 4.140474 +58.85664 0.05836535 4.140474 +-0.0175068 0.08132997 4.140474 +-0.01161267 0.08132997 4.140474 +-0.005718534 0.08132997 4.140474 +0.0001755984 0.08132997 4.140474 +0.006069731 0.08132997 4.140474 +0.01197402 0.08132997 4.140474 +0.01903886 0.08132997 4.140474 +0.02852504 0.08132997 4.140474 +0.04126244 0.08132997 4.140474 +0.05836535 0.08132997 4.140474 +0.08132997 0.08132997 4.140474 +0.1121653 0.08132997 4.140474 +0.1535689 0.08132997 4.140474 +0.2091628 0.08132997 4.140474 +0.2838106 0.08132997 4.140474 +0.3840425 0.08132997 4.140474 +0.518627 0.08132997 4.140474 +0.6993381 0.08132997 4.140474 +0.9419845 0.08132997 4.140474 +1.267794 0.08132997 4.140474 +1.705268 0.08132997 4.140474 +2.292679 0.08132997 4.140474 +3.081414 0.08132997 4.140474 +4.140474 0.08132997 4.140474 +5.562508 0.08132997 4.140474 +7.471917 0.08132997 4.140474 +10.03574 0.08132997 4.140474 +13.47828 0.08132997 4.140474 +18.10068 0.08132997 4.140474 +24.30731 0.08132997 4.140474 +32.64117 0.08132997 4.140474 +43.83129 0.08132997 4.140474 +58.85664 0.08132997 4.140474 +-0.0175068 0.1121653 4.140474 +-0.01161267 0.1121653 4.140474 +-0.005718534 0.1121653 4.140474 +0.0001755984 0.1121653 4.140474 +0.006069731 0.1121653 4.140474 +0.01197402 0.1121653 4.140474 +0.01903886 0.1121653 4.140474 +0.02852504 0.1121653 4.140474 +0.04126244 0.1121653 4.140474 +0.05836535 0.1121653 4.140474 +0.08132997 0.1121653 4.140474 +0.1121653 0.1121653 4.140474 +0.1535689 0.1121653 4.140474 +0.2091628 0.1121653 4.140474 +0.2838106 0.1121653 4.140474 +0.3840425 0.1121653 4.140474 +0.518627 0.1121653 4.140474 +0.6993381 0.1121653 4.140474 +0.9419845 0.1121653 4.140474 +1.267794 0.1121653 4.140474 +1.705268 0.1121653 4.140474 +2.292679 0.1121653 4.140474 +3.081414 0.1121653 4.140474 +4.140474 0.1121653 4.140474 +5.562508 0.1121653 4.140474 +7.471917 0.1121653 4.140474 +10.03574 0.1121653 4.140474 +13.47828 0.1121653 4.140474 +18.10068 0.1121653 4.140474 +24.30731 0.1121653 4.140474 +32.64117 0.1121653 4.140474 +43.83129 0.1121653 4.140474 +58.85664 0.1121653 4.140474 +-0.0175068 0.1535689 4.140474 +-0.01161267 0.1535689 4.140474 +-0.005718534 0.1535689 4.140474 +0.0001755984 0.1535689 4.140474 +0.006069731 0.1535689 4.140474 +0.01197402 0.1535689 4.140474 +0.01903886 0.1535689 4.140474 +0.02852504 0.1535689 4.140474 +0.04126244 0.1535689 4.140474 +0.05836535 0.1535689 4.140474 +0.08132997 0.1535689 4.140474 +0.1121653 0.1535689 4.140474 +0.1535689 0.1535689 4.140474 +0.2091628 0.1535689 4.140474 +0.2838106 0.1535689 4.140474 +0.3840425 0.1535689 4.140474 +0.518627 0.1535689 4.140474 +0.6993381 0.1535689 4.140474 +0.9419845 0.1535689 4.140474 +1.267794 0.1535689 4.140474 +1.705268 0.1535689 4.140474 +2.292679 0.1535689 4.140474 +3.081414 0.1535689 4.140474 +4.140474 0.1535689 4.140474 +5.562508 0.1535689 4.140474 +7.471917 0.1535689 4.140474 +10.03574 0.1535689 4.140474 +13.47828 0.1535689 4.140474 +18.10068 0.1535689 4.140474 +24.30731 0.1535689 4.140474 +32.64117 0.1535689 4.140474 +43.83129 0.1535689 4.140474 +58.85664 0.1535689 4.140474 +-0.0175068 0.2091628 4.140474 +-0.01161267 0.2091628 4.140474 +-0.005718534 0.2091628 4.140474 +0.0001755984 0.2091628 4.140474 +0.006069731 0.2091628 4.140474 +0.01197402 0.2091628 4.140474 +0.01903886 0.2091628 4.140474 +0.02852504 0.2091628 4.140474 +0.04126244 0.2091628 4.140474 +0.05836535 0.2091628 4.140474 +0.08132997 0.2091628 4.140474 +0.1121653 0.2091628 4.140474 +0.1535689 0.2091628 4.140474 +0.2091628 0.2091628 4.140474 +0.2838106 0.2091628 4.140474 +0.3840425 0.2091628 4.140474 +0.518627 0.2091628 4.140474 +0.6993381 0.2091628 4.140474 +0.9419845 0.2091628 4.140474 +1.267794 0.2091628 4.140474 +1.705268 0.2091628 4.140474 +2.292679 0.2091628 4.140474 +3.081414 0.2091628 4.140474 +4.140474 0.2091628 4.140474 +5.562508 0.2091628 4.140474 +7.471917 0.2091628 4.140474 +10.03574 0.2091628 4.140474 +13.47828 0.2091628 4.140474 +18.10068 0.2091628 4.140474 +24.30731 0.2091628 4.140474 +32.64117 0.2091628 4.140474 +43.83129 0.2091628 4.140474 +58.85664 0.2091628 4.140474 +-0.0175068 0.2838106 4.140474 +-0.01161267 0.2838106 4.140474 +-0.005718534 0.2838106 4.140474 +0.0001755984 0.2838106 4.140474 +0.006069731 0.2838106 4.140474 +0.01197402 0.2838106 4.140474 +0.01903886 0.2838106 4.140474 +0.02852504 0.2838106 4.140474 +0.04126244 0.2838106 4.140474 +0.05836535 0.2838106 4.140474 +0.08132997 0.2838106 4.140474 +0.1121653 0.2838106 4.140474 +0.1535689 0.2838106 4.140474 +0.2091628 0.2838106 4.140474 +0.2838106 0.2838106 4.140474 +0.3840425 0.2838106 4.140474 +0.518627 0.2838106 4.140474 +0.6993381 0.2838106 4.140474 +0.9419845 0.2838106 4.140474 +1.267794 0.2838106 4.140474 +1.705268 0.2838106 4.140474 +2.292679 0.2838106 4.140474 +3.081414 0.2838106 4.140474 +4.140474 0.2838106 4.140474 +5.562508 0.2838106 4.140474 +7.471917 0.2838106 4.140474 +10.03574 0.2838106 4.140474 +13.47828 0.2838106 4.140474 +18.10068 0.2838106 4.140474 +24.30731 0.2838106 4.140474 +32.64117 0.2838106 4.140474 +43.83129 0.2838106 4.140474 +58.85664 0.2838106 4.140474 +-0.0175068 0.3840425 4.140474 +-0.01161267 0.3840425 4.140474 +-0.005718534 0.3840425 4.140474 +0.0001755984 0.3840425 4.140474 +0.006069731 0.3840425 4.140474 +0.01197402 0.3840425 4.140474 +0.01903886 0.3840425 4.140474 +0.02852504 0.3840425 4.140474 +0.04126244 0.3840425 4.140474 +0.05836535 0.3840425 4.140474 +0.08132997 0.3840425 4.140474 +0.1121653 0.3840425 4.140474 +0.1535689 0.3840425 4.140474 +0.2091628 0.3840425 4.140474 +0.2838106 0.3840425 4.140474 +0.3840425 0.3840425 4.140474 +0.518627 0.3840425 4.140474 +0.6993381 0.3840425 4.140474 +0.9419845 0.3840425 4.140474 +1.267794 0.3840425 4.140474 +1.705268 0.3840425 4.140474 +2.292679 0.3840425 4.140474 +3.081414 0.3840425 4.140474 +4.140474 0.3840425 4.140474 +5.562508 0.3840425 4.140474 +7.471917 0.3840425 4.140474 +10.03574 0.3840425 4.140474 +13.47828 0.3840425 4.140474 +18.10068 0.3840425 4.140474 +24.30731 0.3840425 4.140474 +32.64117 0.3840425 4.140474 +43.83129 0.3840425 4.140474 +58.85664 0.3840425 4.140474 +-0.0175068 0.518627 4.140474 +-0.01161267 0.518627 4.140474 +-0.005718534 0.518627 4.140474 +0.0001755984 0.518627 4.140474 +0.006069731 0.518627 4.140474 +0.01197402 0.518627 4.140474 +0.01903886 0.518627 4.140474 +0.02852504 0.518627 4.140474 +0.04126244 0.518627 4.140474 +0.05836535 0.518627 4.140474 +0.08132997 0.518627 4.140474 +0.1121653 0.518627 4.140474 +0.1535689 0.518627 4.140474 +0.2091628 0.518627 4.140474 +0.2838106 0.518627 4.140474 +0.3840425 0.518627 4.140474 +0.518627 0.518627 4.140474 +0.6993381 0.518627 4.140474 +0.9419845 0.518627 4.140474 +1.267794 0.518627 4.140474 +1.705268 0.518627 4.140474 +2.292679 0.518627 4.140474 +3.081414 0.518627 4.140474 +4.140474 0.518627 4.140474 +5.562508 0.518627 4.140474 +7.471917 0.518627 4.140474 +10.03574 0.518627 4.140474 +13.47828 0.518627 4.140474 +18.10068 0.518627 4.140474 +24.30731 0.518627 4.140474 +32.64117 0.518627 4.140474 +43.83129 0.518627 4.140474 +58.85664 0.518627 4.140474 +-0.0175068 0.6993381 4.140474 +-0.01161267 0.6993381 4.140474 +-0.005718534 0.6993381 4.140474 +0.0001755984 0.6993381 4.140474 +0.006069731 0.6993381 4.140474 +0.01197402 0.6993381 4.140474 +0.01903886 0.6993381 4.140474 +0.02852504 0.6993381 4.140474 +0.04126244 0.6993381 4.140474 +0.05836535 0.6993381 4.140474 +0.08132997 0.6993381 4.140474 +0.1121653 0.6993381 4.140474 +0.1535689 0.6993381 4.140474 +0.2091628 0.6993381 4.140474 +0.2838106 0.6993381 4.140474 +0.3840425 0.6993381 4.140474 +0.518627 0.6993381 4.140474 +0.6993381 0.6993381 4.140474 +0.9419845 0.6993381 4.140474 +1.267794 0.6993381 4.140474 +1.705268 0.6993381 4.140474 +2.292679 0.6993381 4.140474 +3.081414 0.6993381 4.140474 +4.140474 0.6993381 4.140474 +5.562508 0.6993381 4.140474 +7.471917 0.6993381 4.140474 +10.03574 0.6993381 4.140474 +13.47828 0.6993381 4.140474 +18.10068 0.6993381 4.140474 +24.30731 0.6993381 4.140474 +32.64117 0.6993381 4.140474 +43.83129 0.6993381 4.140474 +58.85664 0.6993381 4.140474 +-0.0175068 0.9419845 4.140474 +-0.01161267 0.9419845 4.140474 +-0.005718534 0.9419845 4.140474 +0.0001755984 0.9419845 4.140474 +0.006069731 0.9419845 4.140474 +0.01197402 0.9419845 4.140474 +0.01903886 0.9419845 4.140474 +0.02852504 0.9419845 4.140474 +0.04126244 0.9419845 4.140474 +0.05836535 0.9419845 4.140474 +0.08132997 0.9419845 4.140474 +0.1121653 0.9419845 4.140474 +0.1535689 0.9419845 4.140474 +0.2091628 0.9419845 4.140474 +0.2838106 0.9419845 4.140474 +0.3840425 0.9419845 4.140474 +0.518627 0.9419845 4.140474 +0.6993381 0.9419845 4.140474 +0.9419845 0.9419845 4.140474 +1.267794 0.9419845 4.140474 +1.705268 0.9419845 4.140474 +2.292679 0.9419845 4.140474 +3.081414 0.9419845 4.140474 +4.140474 0.9419845 4.140474 +5.562508 0.9419845 4.140474 +7.471917 0.9419845 4.140474 +10.03574 0.9419845 4.140474 +13.47828 0.9419845 4.140474 +18.10068 0.9419845 4.140474 +24.30731 0.9419845 4.140474 +32.64117 0.9419845 4.140474 +43.83129 0.9419845 4.140474 +58.85664 0.9419845 4.140474 +-0.0175068 1.267794 4.140474 +-0.01161267 1.267794 4.140474 +-0.005718534 1.267794 4.140474 +0.0001755984 1.267794 4.140474 +0.006069731 1.267794 4.140474 +0.01197402 1.267794 4.140474 +0.01903886 1.267794 4.140474 +0.02852504 1.267794 4.140474 +0.04126244 1.267794 4.140474 +0.05836535 1.267794 4.140474 +0.08132997 1.267794 4.140474 +0.1121653 1.267794 4.140474 +0.1535689 1.267794 4.140474 +0.2091628 1.267794 4.140474 +0.2838106 1.267794 4.140474 +0.3840425 1.267794 4.140474 +0.518627 1.267794 4.140474 +0.6993381 1.267794 4.140474 +0.9419845 1.267794 4.140474 +1.267794 1.267794 4.140474 +1.705268 1.267794 4.140474 +2.292679 1.267794 4.140474 +3.081414 1.267794 4.140474 +4.140474 1.267794 4.140474 +5.562508 1.267794 4.140474 +7.471917 1.267794 4.140474 +10.03574 1.267794 4.140474 +13.47828 1.267794 4.140474 +18.10068 1.267794 4.140474 +24.30731 1.267794 4.140474 +32.64117 1.267794 4.140474 +43.83129 1.267794 4.140474 +58.85664 1.267794 4.140474 +-0.0175068 1.705268 4.140474 +-0.01161267 1.705268 4.140474 +-0.005718534 1.705268 4.140474 +0.0001755984 1.705268 4.140474 +0.006069731 1.705268 4.140474 +0.01197402 1.705268 4.140474 +0.01903886 1.705268 4.140474 +0.02852504 1.705268 4.140474 +0.04126244 1.705268 4.140474 +0.05836535 1.705268 4.140474 +0.08132997 1.705268 4.140474 +0.1121653 1.705268 4.140474 +0.1535689 1.705268 4.140474 +0.2091628 1.705268 4.140474 +0.2838106 1.705268 4.140474 +0.3840425 1.705268 4.140474 +0.518627 1.705268 4.140474 +0.6993381 1.705268 4.140474 +0.9419845 1.705268 4.140474 +1.267794 1.705268 4.140474 +1.705268 1.705268 4.140474 +2.292679 1.705268 4.140474 +3.081414 1.705268 4.140474 +4.140474 1.705268 4.140474 +5.562508 1.705268 4.140474 +7.471917 1.705268 4.140474 +10.03574 1.705268 4.140474 +13.47828 1.705268 4.140474 +18.10068 1.705268 4.140474 +24.30731 1.705268 4.140474 +32.64117 1.705268 4.140474 +43.83129 1.705268 4.140474 +58.85664 1.705268 4.140474 +-0.0175068 2.292679 4.140474 +-0.01161267 2.292679 4.140474 +-0.005718534 2.292679 4.140474 +0.0001755984 2.292679 4.140474 +0.006069731 2.292679 4.140474 +0.01197402 2.292679 4.140474 +0.01903886 2.292679 4.140474 +0.02852504 2.292679 4.140474 +0.04126244 2.292679 4.140474 +0.05836535 2.292679 4.140474 +0.08132997 2.292679 4.140474 +0.1121653 2.292679 4.140474 +0.1535689 2.292679 4.140474 +0.2091628 2.292679 4.140474 +0.2838106 2.292679 4.140474 +0.3840425 2.292679 4.140474 +0.518627 2.292679 4.140474 +0.6993381 2.292679 4.140474 +0.9419845 2.292679 4.140474 +1.267794 2.292679 4.140474 +1.705268 2.292679 4.140474 +2.292679 2.292679 4.140474 +3.081414 2.292679 4.140474 +4.140474 2.292679 4.140474 +5.562508 2.292679 4.140474 +7.471917 2.292679 4.140474 +10.03574 2.292679 4.140474 +13.47828 2.292679 4.140474 +18.10068 2.292679 4.140474 +24.30731 2.292679 4.140474 +32.64117 2.292679 4.140474 +43.83129 2.292679 4.140474 +58.85664 2.292679 4.140474 +-0.0175068 3.081414 4.140474 +-0.01161267 3.081414 4.140474 +-0.005718534 3.081414 4.140474 +0.0001755984 3.081414 4.140474 +0.006069731 3.081414 4.140474 +0.01197402 3.081414 4.140474 +0.01903886 3.081414 4.140474 +0.02852504 3.081414 4.140474 +0.04126244 3.081414 4.140474 +0.05836535 3.081414 4.140474 +0.08132997 3.081414 4.140474 +0.1121653 3.081414 4.140474 +0.1535689 3.081414 4.140474 +0.2091628 3.081414 4.140474 +0.2838106 3.081414 4.140474 +0.3840425 3.081414 4.140474 +0.518627 3.081414 4.140474 +0.6993381 3.081414 4.140474 +0.9419845 3.081414 4.140474 +1.267794 3.081414 4.140474 +1.705268 3.081414 4.140474 +2.292679 3.081414 4.140474 +3.081414 3.081414 4.140474 +4.140474 3.081414 4.140474 +5.562508 3.081414 4.140474 +7.471917 3.081414 4.140474 +10.03574 3.081414 4.140474 +13.47828 3.081414 4.140474 +18.10068 3.081414 4.140474 +24.30731 3.081414 4.140474 +32.64117 3.081414 4.140474 +43.83129 3.081414 4.140474 +58.85664 3.081414 4.140474 +-0.0175068 4.140474 4.140474 +-0.01161267 4.140474 4.140474 +-0.005718534 4.140474 4.140474 +0.0001755984 4.140474 4.140474 +0.006069731 4.140474 4.140474 +0.01197402 4.140474 4.140474 +0.01903886 4.140474 4.140474 +0.02852504 4.140474 4.140474 +0.04126244 4.140474 4.140474 +0.05836535 4.140474 4.140474 +0.08132997 4.140474 4.140474 +0.1121653 4.140474 4.140474 +0.1535689 4.140474 4.140474 +0.2091628 4.140474 4.140474 +0.2838106 4.140474 4.140474 +0.3840425 4.140474 4.140474 +0.518627 4.140474 4.140474 +0.6993381 4.140474 4.140474 +0.9419845 4.140474 4.140474 +1.267794 4.140474 4.140474 +1.705268 4.140474 4.140474 +2.292679 4.140474 4.140474 +3.081414 4.140474 4.140474 +4.140474 4.140474 4.140474 +5.562508 4.140474 4.140474 +7.471917 4.140474 4.140474 +10.03574 4.140474 4.140474 +13.47828 4.140474 4.140474 +18.10068 4.140474 4.140474 +24.30731 4.140474 4.140474 +32.64117 4.140474 4.140474 +43.83129 4.140474 4.140474 +58.85664 4.140474 4.140474 +-0.0175068 5.562508 4.140474 +-0.01161267 5.562508 4.140474 +-0.005718534 5.562508 4.140474 +0.0001755984 5.562508 4.140474 +0.006069731 5.562508 4.140474 +0.01197402 5.562508 4.140474 +0.01903886 5.562508 4.140474 +0.02852504 5.562508 4.140474 +0.04126244 5.562508 4.140474 +0.05836535 5.562508 4.140474 +0.08132997 5.562508 4.140474 +0.1121653 5.562508 4.140474 +0.1535689 5.562508 4.140474 +0.2091628 5.562508 4.140474 +0.2838106 5.562508 4.140474 +0.3840425 5.562508 4.140474 +0.518627 5.562508 4.140474 +0.6993381 5.562508 4.140474 +0.9419845 5.562508 4.140474 +1.267794 5.562508 4.140474 +1.705268 5.562508 4.140474 +2.292679 5.562508 4.140474 +3.081414 5.562508 4.140474 +4.140474 5.562508 4.140474 +5.562508 5.562508 4.140474 +7.471917 5.562508 4.140474 +10.03574 5.562508 4.140474 +13.47828 5.562508 4.140474 +18.10068 5.562508 4.140474 +24.30731 5.562508 4.140474 +32.64117 5.562508 4.140474 +43.83129 5.562508 4.140474 +58.85664 5.562508 4.140474 +-0.0175068 7.471917 4.140474 +-0.01161267 7.471917 4.140474 +-0.005718534 7.471917 4.140474 +0.0001755984 7.471917 4.140474 +0.006069731 7.471917 4.140474 +0.01197402 7.471917 4.140474 +0.01903886 7.471917 4.140474 +0.02852504 7.471917 4.140474 +0.04126244 7.471917 4.140474 +0.05836535 7.471917 4.140474 +0.08132997 7.471917 4.140474 +0.1121653 7.471917 4.140474 +0.1535689 7.471917 4.140474 +0.2091628 7.471917 4.140474 +0.2838106 7.471917 4.140474 +0.3840425 7.471917 4.140474 +0.518627 7.471917 4.140474 +0.6993381 7.471917 4.140474 +0.9419845 7.471917 4.140474 +1.267794 7.471917 4.140474 +1.705268 7.471917 4.140474 +2.292679 7.471917 4.140474 +3.081414 7.471917 4.140474 +4.140474 7.471917 4.140474 +5.562508 7.471917 4.140474 +7.471917 7.471917 4.140474 +10.03574 7.471917 4.140474 +13.47828 7.471917 4.140474 +18.10068 7.471917 4.140474 +24.30731 7.471917 4.140474 +32.64117 7.471917 4.140474 +43.83129 7.471917 4.140474 +58.85664 7.471917 4.140474 +-0.0175068 10.03574 4.140474 +-0.01161267 10.03574 4.140474 +-0.005718534 10.03574 4.140474 +0.0001755984 10.03574 4.140474 +0.006069731 10.03574 4.140474 +0.01197402 10.03574 4.140474 +0.01903886 10.03574 4.140474 +0.02852504 10.03574 4.140474 +0.04126244 10.03574 4.140474 +0.05836535 10.03574 4.140474 +0.08132997 10.03574 4.140474 +0.1121653 10.03574 4.140474 +0.1535689 10.03574 4.140474 +0.2091628 10.03574 4.140474 +0.2838106 10.03574 4.140474 +0.3840425 10.03574 4.140474 +0.518627 10.03574 4.140474 +0.6993381 10.03574 4.140474 +0.9419845 10.03574 4.140474 +1.267794 10.03574 4.140474 +1.705268 10.03574 4.140474 +2.292679 10.03574 4.140474 +3.081414 10.03574 4.140474 +4.140474 10.03574 4.140474 +5.562508 10.03574 4.140474 +7.471917 10.03574 4.140474 +10.03574 10.03574 4.140474 +13.47828 10.03574 4.140474 +18.10068 10.03574 4.140474 +24.30731 10.03574 4.140474 +32.64117 10.03574 4.140474 +43.83129 10.03574 4.140474 +58.85664 10.03574 4.140474 +-0.0175068 13.47828 4.140474 +-0.01161267 13.47828 4.140474 +-0.005718534 13.47828 4.140474 +0.0001755984 13.47828 4.140474 +0.006069731 13.47828 4.140474 +0.01197402 13.47828 4.140474 +0.01903886 13.47828 4.140474 +0.02852504 13.47828 4.140474 +0.04126244 13.47828 4.140474 +0.05836535 13.47828 4.140474 +0.08132997 13.47828 4.140474 +0.1121653 13.47828 4.140474 +0.1535689 13.47828 4.140474 +0.2091628 13.47828 4.140474 +0.2838106 13.47828 4.140474 +0.3840425 13.47828 4.140474 +0.518627 13.47828 4.140474 +0.6993381 13.47828 4.140474 +0.9419845 13.47828 4.140474 +1.267794 13.47828 4.140474 +1.705268 13.47828 4.140474 +2.292679 13.47828 4.140474 +3.081414 13.47828 4.140474 +4.140474 13.47828 4.140474 +5.562508 13.47828 4.140474 +7.471917 13.47828 4.140474 +10.03574 13.47828 4.140474 +13.47828 13.47828 4.140474 +18.10068 13.47828 4.140474 +24.30731 13.47828 4.140474 +32.64117 13.47828 4.140474 +43.83129 13.47828 4.140474 +58.85664 13.47828 4.140474 +-0.0175068 18.10068 4.140474 +-0.01161267 18.10068 4.140474 +-0.005718534 18.10068 4.140474 +0.0001755984 18.10068 4.140474 +0.006069731 18.10068 4.140474 +0.01197402 18.10068 4.140474 +0.01903886 18.10068 4.140474 +0.02852504 18.10068 4.140474 +0.04126244 18.10068 4.140474 +0.05836535 18.10068 4.140474 +0.08132997 18.10068 4.140474 +0.1121653 18.10068 4.140474 +0.1535689 18.10068 4.140474 +0.2091628 18.10068 4.140474 +0.2838106 18.10068 4.140474 +0.3840425 18.10068 4.140474 +0.518627 18.10068 4.140474 +0.6993381 18.10068 4.140474 +0.9419845 18.10068 4.140474 +1.267794 18.10068 4.140474 +1.705268 18.10068 4.140474 +2.292679 18.10068 4.140474 +3.081414 18.10068 4.140474 +4.140474 18.10068 4.140474 +5.562508 18.10068 4.140474 +7.471917 18.10068 4.140474 +10.03574 18.10068 4.140474 +13.47828 18.10068 4.140474 +18.10068 18.10068 4.140474 +24.30731 18.10068 4.140474 +32.64117 18.10068 4.140474 +43.83129 18.10068 4.140474 +58.85664 18.10068 4.140474 +-0.0175068 24.30731 4.140474 +-0.01161267 24.30731 4.140474 +-0.005718534 24.30731 4.140474 +0.0001755984 24.30731 4.140474 +0.006069731 24.30731 4.140474 +0.01197402 24.30731 4.140474 +0.01903886 24.30731 4.140474 +0.02852504 24.30731 4.140474 +0.04126244 24.30731 4.140474 +0.05836535 24.30731 4.140474 +0.08132997 24.30731 4.140474 +0.1121653 24.30731 4.140474 +0.1535689 24.30731 4.140474 +0.2091628 24.30731 4.140474 +0.2838106 24.30731 4.140474 +0.3840425 24.30731 4.140474 +0.518627 24.30731 4.140474 +0.6993381 24.30731 4.140474 +0.9419845 24.30731 4.140474 +1.267794 24.30731 4.140474 +1.705268 24.30731 4.140474 +2.292679 24.30731 4.140474 +3.081414 24.30731 4.140474 +4.140474 24.30731 4.140474 +5.562508 24.30731 4.140474 +7.471917 24.30731 4.140474 +10.03574 24.30731 4.140474 +13.47828 24.30731 4.140474 +18.10068 24.30731 4.140474 +24.30731 24.30731 4.140474 +32.64117 24.30731 4.140474 +43.83129 24.30731 4.140474 +58.85664 24.30731 4.140474 +-0.0175068 32.64117 4.140474 +-0.01161267 32.64117 4.140474 +-0.005718534 32.64117 4.140474 +0.0001755984 32.64117 4.140474 +0.006069731 32.64117 4.140474 +0.01197402 32.64117 4.140474 +0.01903886 32.64117 4.140474 +0.02852504 32.64117 4.140474 +0.04126244 32.64117 4.140474 +0.05836535 32.64117 4.140474 +0.08132997 32.64117 4.140474 +0.1121653 32.64117 4.140474 +0.1535689 32.64117 4.140474 +0.2091628 32.64117 4.140474 +0.2838106 32.64117 4.140474 +0.3840425 32.64117 4.140474 +0.518627 32.64117 4.140474 +0.6993381 32.64117 4.140474 +0.9419845 32.64117 4.140474 +1.267794 32.64117 4.140474 +1.705268 32.64117 4.140474 +2.292679 32.64117 4.140474 +3.081414 32.64117 4.140474 +4.140474 32.64117 4.140474 +5.562508 32.64117 4.140474 +7.471917 32.64117 4.140474 +10.03574 32.64117 4.140474 +13.47828 32.64117 4.140474 +18.10068 32.64117 4.140474 +24.30731 32.64117 4.140474 +32.64117 32.64117 4.140474 +43.83129 32.64117 4.140474 +58.85664 32.64117 4.140474 +-0.0175068 43.83129 4.140474 +-0.01161267 43.83129 4.140474 +-0.005718534 43.83129 4.140474 +0.0001755984 43.83129 4.140474 +0.006069731 43.83129 4.140474 +0.01197402 43.83129 4.140474 +0.01903886 43.83129 4.140474 +0.02852504 43.83129 4.140474 +0.04126244 43.83129 4.140474 +0.05836535 43.83129 4.140474 +0.08132997 43.83129 4.140474 +0.1121653 43.83129 4.140474 +0.1535689 43.83129 4.140474 +0.2091628 43.83129 4.140474 +0.2838106 43.83129 4.140474 +0.3840425 43.83129 4.140474 +0.518627 43.83129 4.140474 +0.6993381 43.83129 4.140474 +0.9419845 43.83129 4.140474 +1.267794 43.83129 4.140474 +1.705268 43.83129 4.140474 +2.292679 43.83129 4.140474 +3.081414 43.83129 4.140474 +4.140474 43.83129 4.140474 +5.562508 43.83129 4.140474 +7.471917 43.83129 4.140474 +10.03574 43.83129 4.140474 +13.47828 43.83129 4.140474 +18.10068 43.83129 4.140474 +24.30731 43.83129 4.140474 +32.64117 43.83129 4.140474 +43.83129 43.83129 4.140474 +58.85664 43.83129 4.140474 +-0.0175068 58.85664 4.140474 +-0.01161267 58.85664 4.140474 +-0.005718534 58.85664 4.140474 +0.0001755984 58.85664 4.140474 +0.006069731 58.85664 4.140474 +0.01197402 58.85664 4.140474 +0.01903886 58.85664 4.140474 +0.02852504 58.85664 4.140474 +0.04126244 58.85664 4.140474 +0.05836535 58.85664 4.140474 +0.08132997 58.85664 4.140474 +0.1121653 58.85664 4.140474 +0.1535689 58.85664 4.140474 +0.2091628 58.85664 4.140474 +0.2838106 58.85664 4.140474 +0.3840425 58.85664 4.140474 +0.518627 58.85664 4.140474 +0.6993381 58.85664 4.140474 +0.9419845 58.85664 4.140474 +1.267794 58.85664 4.140474 +1.705268 58.85664 4.140474 +2.292679 58.85664 4.140474 +3.081414 58.85664 4.140474 +4.140474 58.85664 4.140474 +5.562508 58.85664 4.140474 +7.471917 58.85664 4.140474 +10.03574 58.85664 4.140474 +13.47828 58.85664 4.140474 +18.10068 58.85664 4.140474 +24.30731 58.85664 4.140474 +32.64117 58.85664 4.140474 +43.83129 58.85664 4.140474 +58.85664 58.85664 4.140474 +-0.0175068 -0.0175068 5.562508 +-0.01161267 -0.0175068 5.562508 +-0.005718534 -0.0175068 5.562508 +0.0001755984 -0.0175068 5.562508 +0.006069731 -0.0175068 5.562508 +0.01197402 -0.0175068 5.562508 +0.01903886 -0.0175068 5.562508 +0.02852504 -0.0175068 5.562508 +0.04126244 -0.0175068 5.562508 +0.05836535 -0.0175068 5.562508 +0.08132997 -0.0175068 5.562508 +0.1121653 -0.0175068 5.562508 +0.1535689 -0.0175068 5.562508 +0.2091628 -0.0175068 5.562508 +0.2838106 -0.0175068 5.562508 +0.3840425 -0.0175068 5.562508 +0.518627 -0.0175068 5.562508 +0.6993381 -0.0175068 5.562508 +0.9419845 -0.0175068 5.562508 +1.267794 -0.0175068 5.562508 +1.705268 -0.0175068 5.562508 +2.292679 -0.0175068 5.562508 +3.081414 -0.0175068 5.562508 +4.140474 -0.0175068 5.562508 +5.562508 -0.0175068 5.562508 +7.471917 -0.0175068 5.562508 +10.03574 -0.0175068 5.562508 +13.47828 -0.0175068 5.562508 +18.10068 -0.0175068 5.562508 +24.30731 -0.0175068 5.562508 +32.64117 -0.0175068 5.562508 +43.83129 -0.0175068 5.562508 +58.85664 -0.0175068 5.562508 +-0.0175068 -0.01161267 5.562508 +-0.01161267 -0.01161267 5.562508 +-0.005718534 -0.01161267 5.562508 +0.0001755984 -0.01161267 5.562508 +0.006069731 -0.01161267 5.562508 +0.01197402 -0.01161267 5.562508 +0.01903886 -0.01161267 5.562508 +0.02852504 -0.01161267 5.562508 +0.04126244 -0.01161267 5.562508 +0.05836535 -0.01161267 5.562508 +0.08132997 -0.01161267 5.562508 +0.1121653 -0.01161267 5.562508 +0.1535689 -0.01161267 5.562508 +0.2091628 -0.01161267 5.562508 +0.2838106 -0.01161267 5.562508 +0.3840425 -0.01161267 5.562508 +0.518627 -0.01161267 5.562508 +0.6993381 -0.01161267 5.562508 +0.9419845 -0.01161267 5.562508 +1.267794 -0.01161267 5.562508 +1.705268 -0.01161267 5.562508 +2.292679 -0.01161267 5.562508 +3.081414 -0.01161267 5.562508 +4.140474 -0.01161267 5.562508 +5.562508 -0.01161267 5.562508 +7.471917 -0.01161267 5.562508 +10.03574 -0.01161267 5.562508 +13.47828 -0.01161267 5.562508 +18.10068 -0.01161267 5.562508 +24.30731 -0.01161267 5.562508 +32.64117 -0.01161267 5.562508 +43.83129 -0.01161267 5.562508 +58.85664 -0.01161267 5.562508 +-0.0175068 -0.005718534 5.562508 +-0.01161267 -0.005718534 5.562508 +-0.005718534 -0.005718534 5.562508 +0.0001755984 -0.005718534 5.562508 +0.006069731 -0.005718534 5.562508 +0.01197402 -0.005718534 5.562508 +0.01903886 -0.005718534 5.562508 +0.02852504 -0.005718534 5.562508 +0.04126244 -0.005718534 5.562508 +0.05836535 -0.005718534 5.562508 +0.08132997 -0.005718534 5.562508 +0.1121653 -0.005718534 5.562508 +0.1535689 -0.005718534 5.562508 +0.2091628 -0.005718534 5.562508 +0.2838106 -0.005718534 5.562508 +0.3840425 -0.005718534 5.562508 +0.518627 -0.005718534 5.562508 +0.6993381 -0.005718534 5.562508 +0.9419845 -0.005718534 5.562508 +1.267794 -0.005718534 5.562508 +1.705268 -0.005718534 5.562508 +2.292679 -0.005718534 5.562508 +3.081414 -0.005718534 5.562508 +4.140474 -0.005718534 5.562508 +5.562508 -0.005718534 5.562508 +7.471917 -0.005718534 5.562508 +10.03574 -0.005718534 5.562508 +13.47828 -0.005718534 5.562508 +18.10068 -0.005718534 5.562508 +24.30731 -0.005718534 5.562508 +32.64117 -0.005718534 5.562508 +43.83129 -0.005718534 5.562508 +58.85664 -0.005718534 5.562508 +-0.0175068 0.0001755984 5.562508 +-0.01161267 0.0001755984 5.562508 +-0.005718534 0.0001755984 5.562508 +0.0001755984 0.0001755984 5.562508 +0.006069731 0.0001755984 5.562508 +0.01197402 0.0001755984 5.562508 +0.01903886 0.0001755984 5.562508 +0.02852504 0.0001755984 5.562508 +0.04126244 0.0001755984 5.562508 +0.05836535 0.0001755984 5.562508 +0.08132997 0.0001755984 5.562508 +0.1121653 0.0001755984 5.562508 +0.1535689 0.0001755984 5.562508 +0.2091628 0.0001755984 5.562508 +0.2838106 0.0001755984 5.562508 +0.3840425 0.0001755984 5.562508 +0.518627 0.0001755984 5.562508 +0.6993381 0.0001755984 5.562508 +0.9419845 0.0001755984 5.562508 +1.267794 0.0001755984 5.562508 +1.705268 0.0001755984 5.562508 +2.292679 0.0001755984 5.562508 +3.081414 0.0001755984 5.562508 +4.140474 0.0001755984 5.562508 +5.562508 0.0001755984 5.562508 +7.471917 0.0001755984 5.562508 +10.03574 0.0001755984 5.562508 +13.47828 0.0001755984 5.562508 +18.10068 0.0001755984 5.562508 +24.30731 0.0001755984 5.562508 +32.64117 0.0001755984 5.562508 +43.83129 0.0001755984 5.562508 +58.85664 0.0001755984 5.562508 +-0.0175068 0.006069731 5.562508 +-0.01161267 0.006069731 5.562508 +-0.005718534 0.006069731 5.562508 +0.0001755984 0.006069731 5.562508 +0.006069731 0.006069731 5.562508 +0.01197402 0.006069731 5.562508 +0.01903886 0.006069731 5.562508 +0.02852504 0.006069731 5.562508 +0.04126244 0.006069731 5.562508 +0.05836535 0.006069731 5.562508 +0.08132997 0.006069731 5.562508 +0.1121653 0.006069731 5.562508 +0.1535689 0.006069731 5.562508 +0.2091628 0.006069731 5.562508 +0.2838106 0.006069731 5.562508 +0.3840425 0.006069731 5.562508 +0.518627 0.006069731 5.562508 +0.6993381 0.006069731 5.562508 +0.9419845 0.006069731 5.562508 +1.267794 0.006069731 5.562508 +1.705268 0.006069731 5.562508 +2.292679 0.006069731 5.562508 +3.081414 0.006069731 5.562508 +4.140474 0.006069731 5.562508 +5.562508 0.006069731 5.562508 +7.471917 0.006069731 5.562508 +10.03574 0.006069731 5.562508 +13.47828 0.006069731 5.562508 +18.10068 0.006069731 5.562508 +24.30731 0.006069731 5.562508 +32.64117 0.006069731 5.562508 +43.83129 0.006069731 5.562508 +58.85664 0.006069731 5.562508 +-0.0175068 0.01197402 5.562508 +-0.01161267 0.01197402 5.562508 +-0.005718534 0.01197402 5.562508 +0.0001755984 0.01197402 5.562508 +0.006069731 0.01197402 5.562508 +0.01197402 0.01197402 5.562508 +0.01903886 0.01197402 5.562508 +0.02852504 0.01197402 5.562508 +0.04126244 0.01197402 5.562508 +0.05836535 0.01197402 5.562508 +0.08132997 0.01197402 5.562508 +0.1121653 0.01197402 5.562508 +0.1535689 0.01197402 5.562508 +0.2091628 0.01197402 5.562508 +0.2838106 0.01197402 5.562508 +0.3840425 0.01197402 5.562508 +0.518627 0.01197402 5.562508 +0.6993381 0.01197402 5.562508 +0.9419845 0.01197402 5.562508 +1.267794 0.01197402 5.562508 +1.705268 0.01197402 5.562508 +2.292679 0.01197402 5.562508 +3.081414 0.01197402 5.562508 +4.140474 0.01197402 5.562508 +5.562508 0.01197402 5.562508 +7.471917 0.01197402 5.562508 +10.03574 0.01197402 5.562508 +13.47828 0.01197402 5.562508 +18.10068 0.01197402 5.562508 +24.30731 0.01197402 5.562508 +32.64117 0.01197402 5.562508 +43.83129 0.01197402 5.562508 +58.85664 0.01197402 5.562508 +-0.0175068 0.01903886 5.562508 +-0.01161267 0.01903886 5.562508 +-0.005718534 0.01903886 5.562508 +0.0001755984 0.01903886 5.562508 +0.006069731 0.01903886 5.562508 +0.01197402 0.01903886 5.562508 +0.01903886 0.01903886 5.562508 +0.02852504 0.01903886 5.562508 +0.04126244 0.01903886 5.562508 +0.05836535 0.01903886 5.562508 +0.08132997 0.01903886 5.562508 +0.1121653 0.01903886 5.562508 +0.1535689 0.01903886 5.562508 +0.2091628 0.01903886 5.562508 +0.2838106 0.01903886 5.562508 +0.3840425 0.01903886 5.562508 +0.518627 0.01903886 5.562508 +0.6993381 0.01903886 5.562508 +0.9419845 0.01903886 5.562508 +1.267794 0.01903886 5.562508 +1.705268 0.01903886 5.562508 +2.292679 0.01903886 5.562508 +3.081414 0.01903886 5.562508 +4.140474 0.01903886 5.562508 +5.562508 0.01903886 5.562508 +7.471917 0.01903886 5.562508 +10.03574 0.01903886 5.562508 +13.47828 0.01903886 5.562508 +18.10068 0.01903886 5.562508 +24.30731 0.01903886 5.562508 +32.64117 0.01903886 5.562508 +43.83129 0.01903886 5.562508 +58.85664 0.01903886 5.562508 +-0.0175068 0.02852504 5.562508 +-0.01161267 0.02852504 5.562508 +-0.005718534 0.02852504 5.562508 +0.0001755984 0.02852504 5.562508 +0.006069731 0.02852504 5.562508 +0.01197402 0.02852504 5.562508 +0.01903886 0.02852504 5.562508 +0.02852504 0.02852504 5.562508 +0.04126244 0.02852504 5.562508 +0.05836535 0.02852504 5.562508 +0.08132997 0.02852504 5.562508 +0.1121653 0.02852504 5.562508 +0.1535689 0.02852504 5.562508 +0.2091628 0.02852504 5.562508 +0.2838106 0.02852504 5.562508 +0.3840425 0.02852504 5.562508 +0.518627 0.02852504 5.562508 +0.6993381 0.02852504 5.562508 +0.9419845 0.02852504 5.562508 +1.267794 0.02852504 5.562508 +1.705268 0.02852504 5.562508 +2.292679 0.02852504 5.562508 +3.081414 0.02852504 5.562508 +4.140474 0.02852504 5.562508 +5.562508 0.02852504 5.562508 +7.471917 0.02852504 5.562508 +10.03574 0.02852504 5.562508 +13.47828 0.02852504 5.562508 +18.10068 0.02852504 5.562508 +24.30731 0.02852504 5.562508 +32.64117 0.02852504 5.562508 +43.83129 0.02852504 5.562508 +58.85664 0.02852504 5.562508 +-0.0175068 0.04126244 5.562508 +-0.01161267 0.04126244 5.562508 +-0.005718534 0.04126244 5.562508 +0.0001755984 0.04126244 5.562508 +0.006069731 0.04126244 5.562508 +0.01197402 0.04126244 5.562508 +0.01903886 0.04126244 5.562508 +0.02852504 0.04126244 5.562508 +0.04126244 0.04126244 5.562508 +0.05836535 0.04126244 5.562508 +0.08132997 0.04126244 5.562508 +0.1121653 0.04126244 5.562508 +0.1535689 0.04126244 5.562508 +0.2091628 0.04126244 5.562508 +0.2838106 0.04126244 5.562508 +0.3840425 0.04126244 5.562508 +0.518627 0.04126244 5.562508 +0.6993381 0.04126244 5.562508 +0.9419845 0.04126244 5.562508 +1.267794 0.04126244 5.562508 +1.705268 0.04126244 5.562508 +2.292679 0.04126244 5.562508 +3.081414 0.04126244 5.562508 +4.140474 0.04126244 5.562508 +5.562508 0.04126244 5.562508 +7.471917 0.04126244 5.562508 +10.03574 0.04126244 5.562508 +13.47828 0.04126244 5.562508 +18.10068 0.04126244 5.562508 +24.30731 0.04126244 5.562508 +32.64117 0.04126244 5.562508 +43.83129 0.04126244 5.562508 +58.85664 0.04126244 5.562508 +-0.0175068 0.05836535 5.562508 +-0.01161267 0.05836535 5.562508 +-0.005718534 0.05836535 5.562508 +0.0001755984 0.05836535 5.562508 +0.006069731 0.05836535 5.562508 +0.01197402 0.05836535 5.562508 +0.01903886 0.05836535 5.562508 +0.02852504 0.05836535 5.562508 +0.04126244 0.05836535 5.562508 +0.05836535 0.05836535 5.562508 +0.08132997 0.05836535 5.562508 +0.1121653 0.05836535 5.562508 +0.1535689 0.05836535 5.562508 +0.2091628 0.05836535 5.562508 +0.2838106 0.05836535 5.562508 +0.3840425 0.05836535 5.562508 +0.518627 0.05836535 5.562508 +0.6993381 0.05836535 5.562508 +0.9419845 0.05836535 5.562508 +1.267794 0.05836535 5.562508 +1.705268 0.05836535 5.562508 +2.292679 0.05836535 5.562508 +3.081414 0.05836535 5.562508 +4.140474 0.05836535 5.562508 +5.562508 0.05836535 5.562508 +7.471917 0.05836535 5.562508 +10.03574 0.05836535 5.562508 +13.47828 0.05836535 5.562508 +18.10068 0.05836535 5.562508 +24.30731 0.05836535 5.562508 +32.64117 0.05836535 5.562508 +43.83129 0.05836535 5.562508 +58.85664 0.05836535 5.562508 +-0.0175068 0.08132997 5.562508 +-0.01161267 0.08132997 5.562508 +-0.005718534 0.08132997 5.562508 +0.0001755984 0.08132997 5.562508 +0.006069731 0.08132997 5.562508 +0.01197402 0.08132997 5.562508 +0.01903886 0.08132997 5.562508 +0.02852504 0.08132997 5.562508 +0.04126244 0.08132997 5.562508 +0.05836535 0.08132997 5.562508 +0.08132997 0.08132997 5.562508 +0.1121653 0.08132997 5.562508 +0.1535689 0.08132997 5.562508 +0.2091628 0.08132997 5.562508 +0.2838106 0.08132997 5.562508 +0.3840425 0.08132997 5.562508 +0.518627 0.08132997 5.562508 +0.6993381 0.08132997 5.562508 +0.9419845 0.08132997 5.562508 +1.267794 0.08132997 5.562508 +1.705268 0.08132997 5.562508 +2.292679 0.08132997 5.562508 +3.081414 0.08132997 5.562508 +4.140474 0.08132997 5.562508 +5.562508 0.08132997 5.562508 +7.471917 0.08132997 5.562508 +10.03574 0.08132997 5.562508 +13.47828 0.08132997 5.562508 +18.10068 0.08132997 5.562508 +24.30731 0.08132997 5.562508 +32.64117 0.08132997 5.562508 +43.83129 0.08132997 5.562508 +58.85664 0.08132997 5.562508 +-0.0175068 0.1121653 5.562508 +-0.01161267 0.1121653 5.562508 +-0.005718534 0.1121653 5.562508 +0.0001755984 0.1121653 5.562508 +0.006069731 0.1121653 5.562508 +0.01197402 0.1121653 5.562508 +0.01903886 0.1121653 5.562508 +0.02852504 0.1121653 5.562508 +0.04126244 0.1121653 5.562508 +0.05836535 0.1121653 5.562508 +0.08132997 0.1121653 5.562508 +0.1121653 0.1121653 5.562508 +0.1535689 0.1121653 5.562508 +0.2091628 0.1121653 5.562508 +0.2838106 0.1121653 5.562508 +0.3840425 0.1121653 5.562508 +0.518627 0.1121653 5.562508 +0.6993381 0.1121653 5.562508 +0.9419845 0.1121653 5.562508 +1.267794 0.1121653 5.562508 +1.705268 0.1121653 5.562508 +2.292679 0.1121653 5.562508 +3.081414 0.1121653 5.562508 +4.140474 0.1121653 5.562508 +5.562508 0.1121653 5.562508 +7.471917 0.1121653 5.562508 +10.03574 0.1121653 5.562508 +13.47828 0.1121653 5.562508 +18.10068 0.1121653 5.562508 +24.30731 0.1121653 5.562508 +32.64117 0.1121653 5.562508 +43.83129 0.1121653 5.562508 +58.85664 0.1121653 5.562508 +-0.0175068 0.1535689 5.562508 +-0.01161267 0.1535689 5.562508 +-0.005718534 0.1535689 5.562508 +0.0001755984 0.1535689 5.562508 +0.006069731 0.1535689 5.562508 +0.01197402 0.1535689 5.562508 +0.01903886 0.1535689 5.562508 +0.02852504 0.1535689 5.562508 +0.04126244 0.1535689 5.562508 +0.05836535 0.1535689 5.562508 +0.08132997 0.1535689 5.562508 +0.1121653 0.1535689 5.562508 +0.1535689 0.1535689 5.562508 +0.2091628 0.1535689 5.562508 +0.2838106 0.1535689 5.562508 +0.3840425 0.1535689 5.562508 +0.518627 0.1535689 5.562508 +0.6993381 0.1535689 5.562508 +0.9419845 0.1535689 5.562508 +1.267794 0.1535689 5.562508 +1.705268 0.1535689 5.562508 +2.292679 0.1535689 5.562508 +3.081414 0.1535689 5.562508 +4.140474 0.1535689 5.562508 +5.562508 0.1535689 5.562508 +7.471917 0.1535689 5.562508 +10.03574 0.1535689 5.562508 +13.47828 0.1535689 5.562508 +18.10068 0.1535689 5.562508 +24.30731 0.1535689 5.562508 +32.64117 0.1535689 5.562508 +43.83129 0.1535689 5.562508 +58.85664 0.1535689 5.562508 +-0.0175068 0.2091628 5.562508 +-0.01161267 0.2091628 5.562508 +-0.005718534 0.2091628 5.562508 +0.0001755984 0.2091628 5.562508 +0.006069731 0.2091628 5.562508 +0.01197402 0.2091628 5.562508 +0.01903886 0.2091628 5.562508 +0.02852504 0.2091628 5.562508 +0.04126244 0.2091628 5.562508 +0.05836535 0.2091628 5.562508 +0.08132997 0.2091628 5.562508 +0.1121653 0.2091628 5.562508 +0.1535689 0.2091628 5.562508 +0.2091628 0.2091628 5.562508 +0.2838106 0.2091628 5.562508 +0.3840425 0.2091628 5.562508 +0.518627 0.2091628 5.562508 +0.6993381 0.2091628 5.562508 +0.9419845 0.2091628 5.562508 +1.267794 0.2091628 5.562508 +1.705268 0.2091628 5.562508 +2.292679 0.2091628 5.562508 +3.081414 0.2091628 5.562508 +4.140474 0.2091628 5.562508 +5.562508 0.2091628 5.562508 +7.471917 0.2091628 5.562508 +10.03574 0.2091628 5.562508 +13.47828 0.2091628 5.562508 +18.10068 0.2091628 5.562508 +24.30731 0.2091628 5.562508 +32.64117 0.2091628 5.562508 +43.83129 0.2091628 5.562508 +58.85664 0.2091628 5.562508 +-0.0175068 0.2838106 5.562508 +-0.01161267 0.2838106 5.562508 +-0.005718534 0.2838106 5.562508 +0.0001755984 0.2838106 5.562508 +0.006069731 0.2838106 5.562508 +0.01197402 0.2838106 5.562508 +0.01903886 0.2838106 5.562508 +0.02852504 0.2838106 5.562508 +0.04126244 0.2838106 5.562508 +0.05836535 0.2838106 5.562508 +0.08132997 0.2838106 5.562508 +0.1121653 0.2838106 5.562508 +0.1535689 0.2838106 5.562508 +0.2091628 0.2838106 5.562508 +0.2838106 0.2838106 5.562508 +0.3840425 0.2838106 5.562508 +0.518627 0.2838106 5.562508 +0.6993381 0.2838106 5.562508 +0.9419845 0.2838106 5.562508 +1.267794 0.2838106 5.562508 +1.705268 0.2838106 5.562508 +2.292679 0.2838106 5.562508 +3.081414 0.2838106 5.562508 +4.140474 0.2838106 5.562508 +5.562508 0.2838106 5.562508 +7.471917 0.2838106 5.562508 +10.03574 0.2838106 5.562508 +13.47828 0.2838106 5.562508 +18.10068 0.2838106 5.562508 +24.30731 0.2838106 5.562508 +32.64117 0.2838106 5.562508 +43.83129 0.2838106 5.562508 +58.85664 0.2838106 5.562508 +-0.0175068 0.3840425 5.562508 +-0.01161267 0.3840425 5.562508 +-0.005718534 0.3840425 5.562508 +0.0001755984 0.3840425 5.562508 +0.006069731 0.3840425 5.562508 +0.01197402 0.3840425 5.562508 +0.01903886 0.3840425 5.562508 +0.02852504 0.3840425 5.562508 +0.04126244 0.3840425 5.562508 +0.05836535 0.3840425 5.562508 +0.08132997 0.3840425 5.562508 +0.1121653 0.3840425 5.562508 +0.1535689 0.3840425 5.562508 +0.2091628 0.3840425 5.562508 +0.2838106 0.3840425 5.562508 +0.3840425 0.3840425 5.562508 +0.518627 0.3840425 5.562508 +0.6993381 0.3840425 5.562508 +0.9419845 0.3840425 5.562508 +1.267794 0.3840425 5.562508 +1.705268 0.3840425 5.562508 +2.292679 0.3840425 5.562508 +3.081414 0.3840425 5.562508 +4.140474 0.3840425 5.562508 +5.562508 0.3840425 5.562508 +7.471917 0.3840425 5.562508 +10.03574 0.3840425 5.562508 +13.47828 0.3840425 5.562508 +18.10068 0.3840425 5.562508 +24.30731 0.3840425 5.562508 +32.64117 0.3840425 5.562508 +43.83129 0.3840425 5.562508 +58.85664 0.3840425 5.562508 +-0.0175068 0.518627 5.562508 +-0.01161267 0.518627 5.562508 +-0.005718534 0.518627 5.562508 +0.0001755984 0.518627 5.562508 +0.006069731 0.518627 5.562508 +0.01197402 0.518627 5.562508 +0.01903886 0.518627 5.562508 +0.02852504 0.518627 5.562508 +0.04126244 0.518627 5.562508 +0.05836535 0.518627 5.562508 +0.08132997 0.518627 5.562508 +0.1121653 0.518627 5.562508 +0.1535689 0.518627 5.562508 +0.2091628 0.518627 5.562508 +0.2838106 0.518627 5.562508 +0.3840425 0.518627 5.562508 +0.518627 0.518627 5.562508 +0.6993381 0.518627 5.562508 +0.9419845 0.518627 5.562508 +1.267794 0.518627 5.562508 +1.705268 0.518627 5.562508 +2.292679 0.518627 5.562508 +3.081414 0.518627 5.562508 +4.140474 0.518627 5.562508 +5.562508 0.518627 5.562508 +7.471917 0.518627 5.562508 +10.03574 0.518627 5.562508 +13.47828 0.518627 5.562508 +18.10068 0.518627 5.562508 +24.30731 0.518627 5.562508 +32.64117 0.518627 5.562508 +43.83129 0.518627 5.562508 +58.85664 0.518627 5.562508 +-0.0175068 0.6993381 5.562508 +-0.01161267 0.6993381 5.562508 +-0.005718534 0.6993381 5.562508 +0.0001755984 0.6993381 5.562508 +0.006069731 0.6993381 5.562508 +0.01197402 0.6993381 5.562508 +0.01903886 0.6993381 5.562508 +0.02852504 0.6993381 5.562508 +0.04126244 0.6993381 5.562508 +0.05836535 0.6993381 5.562508 +0.08132997 0.6993381 5.562508 +0.1121653 0.6993381 5.562508 +0.1535689 0.6993381 5.562508 +0.2091628 0.6993381 5.562508 +0.2838106 0.6993381 5.562508 +0.3840425 0.6993381 5.562508 +0.518627 0.6993381 5.562508 +0.6993381 0.6993381 5.562508 +0.9419845 0.6993381 5.562508 +1.267794 0.6993381 5.562508 +1.705268 0.6993381 5.562508 +2.292679 0.6993381 5.562508 +3.081414 0.6993381 5.562508 +4.140474 0.6993381 5.562508 +5.562508 0.6993381 5.562508 +7.471917 0.6993381 5.562508 +10.03574 0.6993381 5.562508 +13.47828 0.6993381 5.562508 +18.10068 0.6993381 5.562508 +24.30731 0.6993381 5.562508 +32.64117 0.6993381 5.562508 +43.83129 0.6993381 5.562508 +58.85664 0.6993381 5.562508 +-0.0175068 0.9419845 5.562508 +-0.01161267 0.9419845 5.562508 +-0.005718534 0.9419845 5.562508 +0.0001755984 0.9419845 5.562508 +0.006069731 0.9419845 5.562508 +0.01197402 0.9419845 5.562508 +0.01903886 0.9419845 5.562508 +0.02852504 0.9419845 5.562508 +0.04126244 0.9419845 5.562508 +0.05836535 0.9419845 5.562508 +0.08132997 0.9419845 5.562508 +0.1121653 0.9419845 5.562508 +0.1535689 0.9419845 5.562508 +0.2091628 0.9419845 5.562508 +0.2838106 0.9419845 5.562508 +0.3840425 0.9419845 5.562508 +0.518627 0.9419845 5.562508 +0.6993381 0.9419845 5.562508 +0.9419845 0.9419845 5.562508 +1.267794 0.9419845 5.562508 +1.705268 0.9419845 5.562508 +2.292679 0.9419845 5.562508 +3.081414 0.9419845 5.562508 +4.140474 0.9419845 5.562508 +5.562508 0.9419845 5.562508 +7.471917 0.9419845 5.562508 +10.03574 0.9419845 5.562508 +13.47828 0.9419845 5.562508 +18.10068 0.9419845 5.562508 +24.30731 0.9419845 5.562508 +32.64117 0.9419845 5.562508 +43.83129 0.9419845 5.562508 +58.85664 0.9419845 5.562508 +-0.0175068 1.267794 5.562508 +-0.01161267 1.267794 5.562508 +-0.005718534 1.267794 5.562508 +0.0001755984 1.267794 5.562508 +0.006069731 1.267794 5.562508 +0.01197402 1.267794 5.562508 +0.01903886 1.267794 5.562508 +0.02852504 1.267794 5.562508 +0.04126244 1.267794 5.562508 +0.05836535 1.267794 5.562508 +0.08132997 1.267794 5.562508 +0.1121653 1.267794 5.562508 +0.1535689 1.267794 5.562508 +0.2091628 1.267794 5.562508 +0.2838106 1.267794 5.562508 +0.3840425 1.267794 5.562508 +0.518627 1.267794 5.562508 +0.6993381 1.267794 5.562508 +0.9419845 1.267794 5.562508 +1.267794 1.267794 5.562508 +1.705268 1.267794 5.562508 +2.292679 1.267794 5.562508 +3.081414 1.267794 5.562508 +4.140474 1.267794 5.562508 +5.562508 1.267794 5.562508 +7.471917 1.267794 5.562508 +10.03574 1.267794 5.562508 +13.47828 1.267794 5.562508 +18.10068 1.267794 5.562508 +24.30731 1.267794 5.562508 +32.64117 1.267794 5.562508 +43.83129 1.267794 5.562508 +58.85664 1.267794 5.562508 +-0.0175068 1.705268 5.562508 +-0.01161267 1.705268 5.562508 +-0.005718534 1.705268 5.562508 +0.0001755984 1.705268 5.562508 +0.006069731 1.705268 5.562508 +0.01197402 1.705268 5.562508 +0.01903886 1.705268 5.562508 +0.02852504 1.705268 5.562508 +0.04126244 1.705268 5.562508 +0.05836535 1.705268 5.562508 +0.08132997 1.705268 5.562508 +0.1121653 1.705268 5.562508 +0.1535689 1.705268 5.562508 +0.2091628 1.705268 5.562508 +0.2838106 1.705268 5.562508 +0.3840425 1.705268 5.562508 +0.518627 1.705268 5.562508 +0.6993381 1.705268 5.562508 +0.9419845 1.705268 5.562508 +1.267794 1.705268 5.562508 +1.705268 1.705268 5.562508 +2.292679 1.705268 5.562508 +3.081414 1.705268 5.562508 +4.140474 1.705268 5.562508 +5.562508 1.705268 5.562508 +7.471917 1.705268 5.562508 +10.03574 1.705268 5.562508 +13.47828 1.705268 5.562508 +18.10068 1.705268 5.562508 +24.30731 1.705268 5.562508 +32.64117 1.705268 5.562508 +43.83129 1.705268 5.562508 +58.85664 1.705268 5.562508 +-0.0175068 2.292679 5.562508 +-0.01161267 2.292679 5.562508 +-0.005718534 2.292679 5.562508 +0.0001755984 2.292679 5.562508 +0.006069731 2.292679 5.562508 +0.01197402 2.292679 5.562508 +0.01903886 2.292679 5.562508 +0.02852504 2.292679 5.562508 +0.04126244 2.292679 5.562508 +0.05836535 2.292679 5.562508 +0.08132997 2.292679 5.562508 +0.1121653 2.292679 5.562508 +0.1535689 2.292679 5.562508 +0.2091628 2.292679 5.562508 +0.2838106 2.292679 5.562508 +0.3840425 2.292679 5.562508 +0.518627 2.292679 5.562508 +0.6993381 2.292679 5.562508 +0.9419845 2.292679 5.562508 +1.267794 2.292679 5.562508 +1.705268 2.292679 5.562508 +2.292679 2.292679 5.562508 +3.081414 2.292679 5.562508 +4.140474 2.292679 5.562508 +5.562508 2.292679 5.562508 +7.471917 2.292679 5.562508 +10.03574 2.292679 5.562508 +13.47828 2.292679 5.562508 +18.10068 2.292679 5.562508 +24.30731 2.292679 5.562508 +32.64117 2.292679 5.562508 +43.83129 2.292679 5.562508 +58.85664 2.292679 5.562508 +-0.0175068 3.081414 5.562508 +-0.01161267 3.081414 5.562508 +-0.005718534 3.081414 5.562508 +0.0001755984 3.081414 5.562508 +0.006069731 3.081414 5.562508 +0.01197402 3.081414 5.562508 +0.01903886 3.081414 5.562508 +0.02852504 3.081414 5.562508 +0.04126244 3.081414 5.562508 +0.05836535 3.081414 5.562508 +0.08132997 3.081414 5.562508 +0.1121653 3.081414 5.562508 +0.1535689 3.081414 5.562508 +0.2091628 3.081414 5.562508 +0.2838106 3.081414 5.562508 +0.3840425 3.081414 5.562508 +0.518627 3.081414 5.562508 +0.6993381 3.081414 5.562508 +0.9419845 3.081414 5.562508 +1.267794 3.081414 5.562508 +1.705268 3.081414 5.562508 +2.292679 3.081414 5.562508 +3.081414 3.081414 5.562508 +4.140474 3.081414 5.562508 +5.562508 3.081414 5.562508 +7.471917 3.081414 5.562508 +10.03574 3.081414 5.562508 +13.47828 3.081414 5.562508 +18.10068 3.081414 5.562508 +24.30731 3.081414 5.562508 +32.64117 3.081414 5.562508 +43.83129 3.081414 5.562508 +58.85664 3.081414 5.562508 +-0.0175068 4.140474 5.562508 +-0.01161267 4.140474 5.562508 +-0.005718534 4.140474 5.562508 +0.0001755984 4.140474 5.562508 +0.006069731 4.140474 5.562508 +0.01197402 4.140474 5.562508 +0.01903886 4.140474 5.562508 +0.02852504 4.140474 5.562508 +0.04126244 4.140474 5.562508 +0.05836535 4.140474 5.562508 +0.08132997 4.140474 5.562508 +0.1121653 4.140474 5.562508 +0.1535689 4.140474 5.562508 +0.2091628 4.140474 5.562508 +0.2838106 4.140474 5.562508 +0.3840425 4.140474 5.562508 +0.518627 4.140474 5.562508 +0.6993381 4.140474 5.562508 +0.9419845 4.140474 5.562508 +1.267794 4.140474 5.562508 +1.705268 4.140474 5.562508 +2.292679 4.140474 5.562508 +3.081414 4.140474 5.562508 +4.140474 4.140474 5.562508 +5.562508 4.140474 5.562508 +7.471917 4.140474 5.562508 +10.03574 4.140474 5.562508 +13.47828 4.140474 5.562508 +18.10068 4.140474 5.562508 +24.30731 4.140474 5.562508 +32.64117 4.140474 5.562508 +43.83129 4.140474 5.562508 +58.85664 4.140474 5.562508 +-0.0175068 5.562508 5.562508 +-0.01161267 5.562508 5.562508 +-0.005718534 5.562508 5.562508 +0.0001755984 5.562508 5.562508 +0.006069731 5.562508 5.562508 +0.01197402 5.562508 5.562508 +0.01903886 5.562508 5.562508 +0.02852504 5.562508 5.562508 +0.04126244 5.562508 5.562508 +0.05836535 5.562508 5.562508 +0.08132997 5.562508 5.562508 +0.1121653 5.562508 5.562508 +0.1535689 5.562508 5.562508 +0.2091628 5.562508 5.562508 +0.2838106 5.562508 5.562508 +0.3840425 5.562508 5.562508 +0.518627 5.562508 5.562508 +0.6993381 5.562508 5.562508 +0.9419845 5.562508 5.562508 +1.267794 5.562508 5.562508 +1.705268 5.562508 5.562508 +2.292679 5.562508 5.562508 +3.081414 5.562508 5.562508 +4.140474 5.562508 5.562508 +5.562508 5.562508 5.562508 +7.471917 5.562508 5.562508 +10.03574 5.562508 5.562508 +13.47828 5.562508 5.562508 +18.10068 5.562508 5.562508 +24.30731 5.562508 5.562508 +32.64117 5.562508 5.562508 +43.83129 5.562508 5.562508 +58.85664 5.562508 5.562508 +-0.0175068 7.471917 5.562508 +-0.01161267 7.471917 5.562508 +-0.005718534 7.471917 5.562508 +0.0001755984 7.471917 5.562508 +0.006069731 7.471917 5.562508 +0.01197402 7.471917 5.562508 +0.01903886 7.471917 5.562508 +0.02852504 7.471917 5.562508 +0.04126244 7.471917 5.562508 +0.05836535 7.471917 5.562508 +0.08132997 7.471917 5.562508 +0.1121653 7.471917 5.562508 +0.1535689 7.471917 5.562508 +0.2091628 7.471917 5.562508 +0.2838106 7.471917 5.562508 +0.3840425 7.471917 5.562508 +0.518627 7.471917 5.562508 +0.6993381 7.471917 5.562508 +0.9419845 7.471917 5.562508 +1.267794 7.471917 5.562508 +1.705268 7.471917 5.562508 +2.292679 7.471917 5.562508 +3.081414 7.471917 5.562508 +4.140474 7.471917 5.562508 +5.562508 7.471917 5.562508 +7.471917 7.471917 5.562508 +10.03574 7.471917 5.562508 +13.47828 7.471917 5.562508 +18.10068 7.471917 5.562508 +24.30731 7.471917 5.562508 +32.64117 7.471917 5.562508 +43.83129 7.471917 5.562508 +58.85664 7.471917 5.562508 +-0.0175068 10.03574 5.562508 +-0.01161267 10.03574 5.562508 +-0.005718534 10.03574 5.562508 +0.0001755984 10.03574 5.562508 +0.006069731 10.03574 5.562508 +0.01197402 10.03574 5.562508 +0.01903886 10.03574 5.562508 +0.02852504 10.03574 5.562508 +0.04126244 10.03574 5.562508 +0.05836535 10.03574 5.562508 +0.08132997 10.03574 5.562508 +0.1121653 10.03574 5.562508 +0.1535689 10.03574 5.562508 +0.2091628 10.03574 5.562508 +0.2838106 10.03574 5.562508 +0.3840425 10.03574 5.562508 +0.518627 10.03574 5.562508 +0.6993381 10.03574 5.562508 +0.9419845 10.03574 5.562508 +1.267794 10.03574 5.562508 +1.705268 10.03574 5.562508 +2.292679 10.03574 5.562508 +3.081414 10.03574 5.562508 +4.140474 10.03574 5.562508 +5.562508 10.03574 5.562508 +7.471917 10.03574 5.562508 +10.03574 10.03574 5.562508 +13.47828 10.03574 5.562508 +18.10068 10.03574 5.562508 +24.30731 10.03574 5.562508 +32.64117 10.03574 5.562508 +43.83129 10.03574 5.562508 +58.85664 10.03574 5.562508 +-0.0175068 13.47828 5.562508 +-0.01161267 13.47828 5.562508 +-0.005718534 13.47828 5.562508 +0.0001755984 13.47828 5.562508 +0.006069731 13.47828 5.562508 +0.01197402 13.47828 5.562508 +0.01903886 13.47828 5.562508 +0.02852504 13.47828 5.562508 +0.04126244 13.47828 5.562508 +0.05836535 13.47828 5.562508 +0.08132997 13.47828 5.562508 +0.1121653 13.47828 5.562508 +0.1535689 13.47828 5.562508 +0.2091628 13.47828 5.562508 +0.2838106 13.47828 5.562508 +0.3840425 13.47828 5.562508 +0.518627 13.47828 5.562508 +0.6993381 13.47828 5.562508 +0.9419845 13.47828 5.562508 +1.267794 13.47828 5.562508 +1.705268 13.47828 5.562508 +2.292679 13.47828 5.562508 +3.081414 13.47828 5.562508 +4.140474 13.47828 5.562508 +5.562508 13.47828 5.562508 +7.471917 13.47828 5.562508 +10.03574 13.47828 5.562508 +13.47828 13.47828 5.562508 +18.10068 13.47828 5.562508 +24.30731 13.47828 5.562508 +32.64117 13.47828 5.562508 +43.83129 13.47828 5.562508 +58.85664 13.47828 5.562508 +-0.0175068 18.10068 5.562508 +-0.01161267 18.10068 5.562508 +-0.005718534 18.10068 5.562508 +0.0001755984 18.10068 5.562508 +0.006069731 18.10068 5.562508 +0.01197402 18.10068 5.562508 +0.01903886 18.10068 5.562508 +0.02852504 18.10068 5.562508 +0.04126244 18.10068 5.562508 +0.05836535 18.10068 5.562508 +0.08132997 18.10068 5.562508 +0.1121653 18.10068 5.562508 +0.1535689 18.10068 5.562508 +0.2091628 18.10068 5.562508 +0.2838106 18.10068 5.562508 +0.3840425 18.10068 5.562508 +0.518627 18.10068 5.562508 +0.6993381 18.10068 5.562508 +0.9419845 18.10068 5.562508 +1.267794 18.10068 5.562508 +1.705268 18.10068 5.562508 +2.292679 18.10068 5.562508 +3.081414 18.10068 5.562508 +4.140474 18.10068 5.562508 +5.562508 18.10068 5.562508 +7.471917 18.10068 5.562508 +10.03574 18.10068 5.562508 +13.47828 18.10068 5.562508 +18.10068 18.10068 5.562508 +24.30731 18.10068 5.562508 +32.64117 18.10068 5.562508 +43.83129 18.10068 5.562508 +58.85664 18.10068 5.562508 +-0.0175068 24.30731 5.562508 +-0.01161267 24.30731 5.562508 +-0.005718534 24.30731 5.562508 +0.0001755984 24.30731 5.562508 +0.006069731 24.30731 5.562508 +0.01197402 24.30731 5.562508 +0.01903886 24.30731 5.562508 +0.02852504 24.30731 5.562508 +0.04126244 24.30731 5.562508 +0.05836535 24.30731 5.562508 +0.08132997 24.30731 5.562508 +0.1121653 24.30731 5.562508 +0.1535689 24.30731 5.562508 +0.2091628 24.30731 5.562508 +0.2838106 24.30731 5.562508 +0.3840425 24.30731 5.562508 +0.518627 24.30731 5.562508 +0.6993381 24.30731 5.562508 +0.9419845 24.30731 5.562508 +1.267794 24.30731 5.562508 +1.705268 24.30731 5.562508 +2.292679 24.30731 5.562508 +3.081414 24.30731 5.562508 +4.140474 24.30731 5.562508 +5.562508 24.30731 5.562508 +7.471917 24.30731 5.562508 +10.03574 24.30731 5.562508 +13.47828 24.30731 5.562508 +18.10068 24.30731 5.562508 +24.30731 24.30731 5.562508 +32.64117 24.30731 5.562508 +43.83129 24.30731 5.562508 +58.85664 24.30731 5.562508 +-0.0175068 32.64117 5.562508 +-0.01161267 32.64117 5.562508 +-0.005718534 32.64117 5.562508 +0.0001755984 32.64117 5.562508 +0.006069731 32.64117 5.562508 +0.01197402 32.64117 5.562508 +0.01903886 32.64117 5.562508 +0.02852504 32.64117 5.562508 +0.04126244 32.64117 5.562508 +0.05836535 32.64117 5.562508 +0.08132997 32.64117 5.562508 +0.1121653 32.64117 5.562508 +0.1535689 32.64117 5.562508 +0.2091628 32.64117 5.562508 +0.2838106 32.64117 5.562508 +0.3840425 32.64117 5.562508 +0.518627 32.64117 5.562508 +0.6993381 32.64117 5.562508 +0.9419845 32.64117 5.562508 +1.267794 32.64117 5.562508 +1.705268 32.64117 5.562508 +2.292679 32.64117 5.562508 +3.081414 32.64117 5.562508 +4.140474 32.64117 5.562508 +5.562508 32.64117 5.562508 +7.471917 32.64117 5.562508 +10.03574 32.64117 5.562508 +13.47828 32.64117 5.562508 +18.10068 32.64117 5.562508 +24.30731 32.64117 5.562508 +32.64117 32.64117 5.562508 +43.83129 32.64117 5.562508 +58.85664 32.64117 5.562508 +-0.0175068 43.83129 5.562508 +-0.01161267 43.83129 5.562508 +-0.005718534 43.83129 5.562508 +0.0001755984 43.83129 5.562508 +0.006069731 43.83129 5.562508 +0.01197402 43.83129 5.562508 +0.01903886 43.83129 5.562508 +0.02852504 43.83129 5.562508 +0.04126244 43.83129 5.562508 +0.05836535 43.83129 5.562508 +0.08132997 43.83129 5.562508 +0.1121653 43.83129 5.562508 +0.1535689 43.83129 5.562508 +0.2091628 43.83129 5.562508 +0.2838106 43.83129 5.562508 +0.3840425 43.83129 5.562508 +0.518627 43.83129 5.562508 +0.6993381 43.83129 5.562508 +0.9419845 43.83129 5.562508 +1.267794 43.83129 5.562508 +1.705268 43.83129 5.562508 +2.292679 43.83129 5.562508 +3.081414 43.83129 5.562508 +4.140474 43.83129 5.562508 +5.562508 43.83129 5.562508 +7.471917 43.83129 5.562508 +10.03574 43.83129 5.562508 +13.47828 43.83129 5.562508 +18.10068 43.83129 5.562508 +24.30731 43.83129 5.562508 +32.64117 43.83129 5.562508 +43.83129 43.83129 5.562508 +58.85664 43.83129 5.562508 +-0.0175068 58.85664 5.562508 +-0.01161267 58.85664 5.562508 +-0.005718534 58.85664 5.562508 +0.0001755984 58.85664 5.562508 +0.006069731 58.85664 5.562508 +0.01197402 58.85664 5.562508 +0.01903886 58.85664 5.562508 +0.02852504 58.85664 5.562508 +0.04126244 58.85664 5.562508 +0.05836535 58.85664 5.562508 +0.08132997 58.85664 5.562508 +0.1121653 58.85664 5.562508 +0.1535689 58.85664 5.562508 +0.2091628 58.85664 5.562508 +0.2838106 58.85664 5.562508 +0.3840425 58.85664 5.562508 +0.518627 58.85664 5.562508 +0.6993381 58.85664 5.562508 +0.9419845 58.85664 5.562508 +1.267794 58.85664 5.562508 +1.705268 58.85664 5.562508 +2.292679 58.85664 5.562508 +3.081414 58.85664 5.562508 +4.140474 58.85664 5.562508 +5.562508 58.85664 5.562508 +7.471917 58.85664 5.562508 +10.03574 58.85664 5.562508 +13.47828 58.85664 5.562508 +18.10068 58.85664 5.562508 +24.30731 58.85664 5.562508 +32.64117 58.85664 5.562508 +43.83129 58.85664 5.562508 +58.85664 58.85664 5.562508 +-0.0175068 -0.0175068 7.471917 +-0.01161267 -0.0175068 7.471917 +-0.005718534 -0.0175068 7.471917 +0.0001755984 -0.0175068 7.471917 +0.006069731 -0.0175068 7.471917 +0.01197402 -0.0175068 7.471917 +0.01903886 -0.0175068 7.471917 +0.02852504 -0.0175068 7.471917 +0.04126244 -0.0175068 7.471917 +0.05836535 -0.0175068 7.471917 +0.08132997 -0.0175068 7.471917 +0.1121653 -0.0175068 7.471917 +0.1535689 -0.0175068 7.471917 +0.2091628 -0.0175068 7.471917 +0.2838106 -0.0175068 7.471917 +0.3840425 -0.0175068 7.471917 +0.518627 -0.0175068 7.471917 +0.6993381 -0.0175068 7.471917 +0.9419845 -0.0175068 7.471917 +1.267794 -0.0175068 7.471917 +1.705268 -0.0175068 7.471917 +2.292679 -0.0175068 7.471917 +3.081414 -0.0175068 7.471917 +4.140474 -0.0175068 7.471917 +5.562508 -0.0175068 7.471917 +7.471917 -0.0175068 7.471917 +10.03574 -0.0175068 7.471917 +13.47828 -0.0175068 7.471917 +18.10068 -0.0175068 7.471917 +24.30731 -0.0175068 7.471917 +32.64117 -0.0175068 7.471917 +43.83129 -0.0175068 7.471917 +58.85664 -0.0175068 7.471917 +-0.0175068 -0.01161267 7.471917 +-0.01161267 -0.01161267 7.471917 +-0.005718534 -0.01161267 7.471917 +0.0001755984 -0.01161267 7.471917 +0.006069731 -0.01161267 7.471917 +0.01197402 -0.01161267 7.471917 +0.01903886 -0.01161267 7.471917 +0.02852504 -0.01161267 7.471917 +0.04126244 -0.01161267 7.471917 +0.05836535 -0.01161267 7.471917 +0.08132997 -0.01161267 7.471917 +0.1121653 -0.01161267 7.471917 +0.1535689 -0.01161267 7.471917 +0.2091628 -0.01161267 7.471917 +0.2838106 -0.01161267 7.471917 +0.3840425 -0.01161267 7.471917 +0.518627 -0.01161267 7.471917 +0.6993381 -0.01161267 7.471917 +0.9419845 -0.01161267 7.471917 +1.267794 -0.01161267 7.471917 +1.705268 -0.01161267 7.471917 +2.292679 -0.01161267 7.471917 +3.081414 -0.01161267 7.471917 +4.140474 -0.01161267 7.471917 +5.562508 -0.01161267 7.471917 +7.471917 -0.01161267 7.471917 +10.03574 -0.01161267 7.471917 +13.47828 -0.01161267 7.471917 +18.10068 -0.01161267 7.471917 +24.30731 -0.01161267 7.471917 +32.64117 -0.01161267 7.471917 +43.83129 -0.01161267 7.471917 +58.85664 -0.01161267 7.471917 +-0.0175068 -0.005718534 7.471917 +-0.01161267 -0.005718534 7.471917 +-0.005718534 -0.005718534 7.471917 +0.0001755984 -0.005718534 7.471917 +0.006069731 -0.005718534 7.471917 +0.01197402 -0.005718534 7.471917 +0.01903886 -0.005718534 7.471917 +0.02852504 -0.005718534 7.471917 +0.04126244 -0.005718534 7.471917 +0.05836535 -0.005718534 7.471917 +0.08132997 -0.005718534 7.471917 +0.1121653 -0.005718534 7.471917 +0.1535689 -0.005718534 7.471917 +0.2091628 -0.005718534 7.471917 +0.2838106 -0.005718534 7.471917 +0.3840425 -0.005718534 7.471917 +0.518627 -0.005718534 7.471917 +0.6993381 -0.005718534 7.471917 +0.9419845 -0.005718534 7.471917 +1.267794 -0.005718534 7.471917 +1.705268 -0.005718534 7.471917 +2.292679 -0.005718534 7.471917 +3.081414 -0.005718534 7.471917 +4.140474 -0.005718534 7.471917 +5.562508 -0.005718534 7.471917 +7.471917 -0.005718534 7.471917 +10.03574 -0.005718534 7.471917 +13.47828 -0.005718534 7.471917 +18.10068 -0.005718534 7.471917 +24.30731 -0.005718534 7.471917 +32.64117 -0.005718534 7.471917 +43.83129 -0.005718534 7.471917 +58.85664 -0.005718534 7.471917 +-0.0175068 0.0001755984 7.471917 +-0.01161267 0.0001755984 7.471917 +-0.005718534 0.0001755984 7.471917 +0.0001755984 0.0001755984 7.471917 +0.006069731 0.0001755984 7.471917 +0.01197402 0.0001755984 7.471917 +0.01903886 0.0001755984 7.471917 +0.02852504 0.0001755984 7.471917 +0.04126244 0.0001755984 7.471917 +0.05836535 0.0001755984 7.471917 +0.08132997 0.0001755984 7.471917 +0.1121653 0.0001755984 7.471917 +0.1535689 0.0001755984 7.471917 +0.2091628 0.0001755984 7.471917 +0.2838106 0.0001755984 7.471917 +0.3840425 0.0001755984 7.471917 +0.518627 0.0001755984 7.471917 +0.6993381 0.0001755984 7.471917 +0.9419845 0.0001755984 7.471917 +1.267794 0.0001755984 7.471917 +1.705268 0.0001755984 7.471917 +2.292679 0.0001755984 7.471917 +3.081414 0.0001755984 7.471917 +4.140474 0.0001755984 7.471917 +5.562508 0.0001755984 7.471917 +7.471917 0.0001755984 7.471917 +10.03574 0.0001755984 7.471917 +13.47828 0.0001755984 7.471917 +18.10068 0.0001755984 7.471917 +24.30731 0.0001755984 7.471917 +32.64117 0.0001755984 7.471917 +43.83129 0.0001755984 7.471917 +58.85664 0.0001755984 7.471917 +-0.0175068 0.006069731 7.471917 +-0.01161267 0.006069731 7.471917 +-0.005718534 0.006069731 7.471917 +0.0001755984 0.006069731 7.471917 +0.006069731 0.006069731 7.471917 +0.01197402 0.006069731 7.471917 +0.01903886 0.006069731 7.471917 +0.02852504 0.006069731 7.471917 +0.04126244 0.006069731 7.471917 +0.05836535 0.006069731 7.471917 +0.08132997 0.006069731 7.471917 +0.1121653 0.006069731 7.471917 +0.1535689 0.006069731 7.471917 +0.2091628 0.006069731 7.471917 +0.2838106 0.006069731 7.471917 +0.3840425 0.006069731 7.471917 +0.518627 0.006069731 7.471917 +0.6993381 0.006069731 7.471917 +0.9419845 0.006069731 7.471917 +1.267794 0.006069731 7.471917 +1.705268 0.006069731 7.471917 +2.292679 0.006069731 7.471917 +3.081414 0.006069731 7.471917 +4.140474 0.006069731 7.471917 +5.562508 0.006069731 7.471917 +7.471917 0.006069731 7.471917 +10.03574 0.006069731 7.471917 +13.47828 0.006069731 7.471917 +18.10068 0.006069731 7.471917 +24.30731 0.006069731 7.471917 +32.64117 0.006069731 7.471917 +43.83129 0.006069731 7.471917 +58.85664 0.006069731 7.471917 +-0.0175068 0.01197402 7.471917 +-0.01161267 0.01197402 7.471917 +-0.005718534 0.01197402 7.471917 +0.0001755984 0.01197402 7.471917 +0.006069731 0.01197402 7.471917 +0.01197402 0.01197402 7.471917 +0.01903886 0.01197402 7.471917 +0.02852504 0.01197402 7.471917 +0.04126244 0.01197402 7.471917 +0.05836535 0.01197402 7.471917 +0.08132997 0.01197402 7.471917 +0.1121653 0.01197402 7.471917 +0.1535689 0.01197402 7.471917 +0.2091628 0.01197402 7.471917 +0.2838106 0.01197402 7.471917 +0.3840425 0.01197402 7.471917 +0.518627 0.01197402 7.471917 +0.6993381 0.01197402 7.471917 +0.9419845 0.01197402 7.471917 +1.267794 0.01197402 7.471917 +1.705268 0.01197402 7.471917 +2.292679 0.01197402 7.471917 +3.081414 0.01197402 7.471917 +4.140474 0.01197402 7.471917 +5.562508 0.01197402 7.471917 +7.471917 0.01197402 7.471917 +10.03574 0.01197402 7.471917 +13.47828 0.01197402 7.471917 +18.10068 0.01197402 7.471917 +24.30731 0.01197402 7.471917 +32.64117 0.01197402 7.471917 +43.83129 0.01197402 7.471917 +58.85664 0.01197402 7.471917 +-0.0175068 0.01903886 7.471917 +-0.01161267 0.01903886 7.471917 +-0.005718534 0.01903886 7.471917 +0.0001755984 0.01903886 7.471917 +0.006069731 0.01903886 7.471917 +0.01197402 0.01903886 7.471917 +0.01903886 0.01903886 7.471917 +0.02852504 0.01903886 7.471917 +0.04126244 0.01903886 7.471917 +0.05836535 0.01903886 7.471917 +0.08132997 0.01903886 7.471917 +0.1121653 0.01903886 7.471917 +0.1535689 0.01903886 7.471917 +0.2091628 0.01903886 7.471917 +0.2838106 0.01903886 7.471917 +0.3840425 0.01903886 7.471917 +0.518627 0.01903886 7.471917 +0.6993381 0.01903886 7.471917 +0.9419845 0.01903886 7.471917 +1.267794 0.01903886 7.471917 +1.705268 0.01903886 7.471917 +2.292679 0.01903886 7.471917 +3.081414 0.01903886 7.471917 +4.140474 0.01903886 7.471917 +5.562508 0.01903886 7.471917 +7.471917 0.01903886 7.471917 +10.03574 0.01903886 7.471917 +13.47828 0.01903886 7.471917 +18.10068 0.01903886 7.471917 +24.30731 0.01903886 7.471917 +32.64117 0.01903886 7.471917 +43.83129 0.01903886 7.471917 +58.85664 0.01903886 7.471917 +-0.0175068 0.02852504 7.471917 +-0.01161267 0.02852504 7.471917 +-0.005718534 0.02852504 7.471917 +0.0001755984 0.02852504 7.471917 +0.006069731 0.02852504 7.471917 +0.01197402 0.02852504 7.471917 +0.01903886 0.02852504 7.471917 +0.02852504 0.02852504 7.471917 +0.04126244 0.02852504 7.471917 +0.05836535 0.02852504 7.471917 +0.08132997 0.02852504 7.471917 +0.1121653 0.02852504 7.471917 +0.1535689 0.02852504 7.471917 +0.2091628 0.02852504 7.471917 +0.2838106 0.02852504 7.471917 +0.3840425 0.02852504 7.471917 +0.518627 0.02852504 7.471917 +0.6993381 0.02852504 7.471917 +0.9419845 0.02852504 7.471917 +1.267794 0.02852504 7.471917 +1.705268 0.02852504 7.471917 +2.292679 0.02852504 7.471917 +3.081414 0.02852504 7.471917 +4.140474 0.02852504 7.471917 +5.562508 0.02852504 7.471917 +7.471917 0.02852504 7.471917 +10.03574 0.02852504 7.471917 +13.47828 0.02852504 7.471917 +18.10068 0.02852504 7.471917 +24.30731 0.02852504 7.471917 +32.64117 0.02852504 7.471917 +43.83129 0.02852504 7.471917 +58.85664 0.02852504 7.471917 +-0.0175068 0.04126244 7.471917 +-0.01161267 0.04126244 7.471917 +-0.005718534 0.04126244 7.471917 +0.0001755984 0.04126244 7.471917 +0.006069731 0.04126244 7.471917 +0.01197402 0.04126244 7.471917 +0.01903886 0.04126244 7.471917 +0.02852504 0.04126244 7.471917 +0.04126244 0.04126244 7.471917 +0.05836535 0.04126244 7.471917 +0.08132997 0.04126244 7.471917 +0.1121653 0.04126244 7.471917 +0.1535689 0.04126244 7.471917 +0.2091628 0.04126244 7.471917 +0.2838106 0.04126244 7.471917 +0.3840425 0.04126244 7.471917 +0.518627 0.04126244 7.471917 +0.6993381 0.04126244 7.471917 +0.9419845 0.04126244 7.471917 +1.267794 0.04126244 7.471917 +1.705268 0.04126244 7.471917 +2.292679 0.04126244 7.471917 +3.081414 0.04126244 7.471917 +4.140474 0.04126244 7.471917 +5.562508 0.04126244 7.471917 +7.471917 0.04126244 7.471917 +10.03574 0.04126244 7.471917 +13.47828 0.04126244 7.471917 +18.10068 0.04126244 7.471917 +24.30731 0.04126244 7.471917 +32.64117 0.04126244 7.471917 +43.83129 0.04126244 7.471917 +58.85664 0.04126244 7.471917 +-0.0175068 0.05836535 7.471917 +-0.01161267 0.05836535 7.471917 +-0.005718534 0.05836535 7.471917 +0.0001755984 0.05836535 7.471917 +0.006069731 0.05836535 7.471917 +0.01197402 0.05836535 7.471917 +0.01903886 0.05836535 7.471917 +0.02852504 0.05836535 7.471917 +0.04126244 0.05836535 7.471917 +0.05836535 0.05836535 7.471917 +0.08132997 0.05836535 7.471917 +0.1121653 0.05836535 7.471917 +0.1535689 0.05836535 7.471917 +0.2091628 0.05836535 7.471917 +0.2838106 0.05836535 7.471917 +0.3840425 0.05836535 7.471917 +0.518627 0.05836535 7.471917 +0.6993381 0.05836535 7.471917 +0.9419845 0.05836535 7.471917 +1.267794 0.05836535 7.471917 +1.705268 0.05836535 7.471917 +2.292679 0.05836535 7.471917 +3.081414 0.05836535 7.471917 +4.140474 0.05836535 7.471917 +5.562508 0.05836535 7.471917 +7.471917 0.05836535 7.471917 +10.03574 0.05836535 7.471917 +13.47828 0.05836535 7.471917 +18.10068 0.05836535 7.471917 +24.30731 0.05836535 7.471917 +32.64117 0.05836535 7.471917 +43.83129 0.05836535 7.471917 +58.85664 0.05836535 7.471917 +-0.0175068 0.08132997 7.471917 +-0.01161267 0.08132997 7.471917 +-0.005718534 0.08132997 7.471917 +0.0001755984 0.08132997 7.471917 +0.006069731 0.08132997 7.471917 +0.01197402 0.08132997 7.471917 +0.01903886 0.08132997 7.471917 +0.02852504 0.08132997 7.471917 +0.04126244 0.08132997 7.471917 +0.05836535 0.08132997 7.471917 +0.08132997 0.08132997 7.471917 +0.1121653 0.08132997 7.471917 +0.1535689 0.08132997 7.471917 +0.2091628 0.08132997 7.471917 +0.2838106 0.08132997 7.471917 +0.3840425 0.08132997 7.471917 +0.518627 0.08132997 7.471917 +0.6993381 0.08132997 7.471917 +0.9419845 0.08132997 7.471917 +1.267794 0.08132997 7.471917 +1.705268 0.08132997 7.471917 +2.292679 0.08132997 7.471917 +3.081414 0.08132997 7.471917 +4.140474 0.08132997 7.471917 +5.562508 0.08132997 7.471917 +7.471917 0.08132997 7.471917 +10.03574 0.08132997 7.471917 +13.47828 0.08132997 7.471917 +18.10068 0.08132997 7.471917 +24.30731 0.08132997 7.471917 +32.64117 0.08132997 7.471917 +43.83129 0.08132997 7.471917 +58.85664 0.08132997 7.471917 +-0.0175068 0.1121653 7.471917 +-0.01161267 0.1121653 7.471917 +-0.005718534 0.1121653 7.471917 +0.0001755984 0.1121653 7.471917 +0.006069731 0.1121653 7.471917 +0.01197402 0.1121653 7.471917 +0.01903886 0.1121653 7.471917 +0.02852504 0.1121653 7.471917 +0.04126244 0.1121653 7.471917 +0.05836535 0.1121653 7.471917 +0.08132997 0.1121653 7.471917 +0.1121653 0.1121653 7.471917 +0.1535689 0.1121653 7.471917 +0.2091628 0.1121653 7.471917 +0.2838106 0.1121653 7.471917 +0.3840425 0.1121653 7.471917 +0.518627 0.1121653 7.471917 +0.6993381 0.1121653 7.471917 +0.9419845 0.1121653 7.471917 +1.267794 0.1121653 7.471917 +1.705268 0.1121653 7.471917 +2.292679 0.1121653 7.471917 +3.081414 0.1121653 7.471917 +4.140474 0.1121653 7.471917 +5.562508 0.1121653 7.471917 +7.471917 0.1121653 7.471917 +10.03574 0.1121653 7.471917 +13.47828 0.1121653 7.471917 +18.10068 0.1121653 7.471917 +24.30731 0.1121653 7.471917 +32.64117 0.1121653 7.471917 +43.83129 0.1121653 7.471917 +58.85664 0.1121653 7.471917 +-0.0175068 0.1535689 7.471917 +-0.01161267 0.1535689 7.471917 +-0.005718534 0.1535689 7.471917 +0.0001755984 0.1535689 7.471917 +0.006069731 0.1535689 7.471917 +0.01197402 0.1535689 7.471917 +0.01903886 0.1535689 7.471917 +0.02852504 0.1535689 7.471917 +0.04126244 0.1535689 7.471917 +0.05836535 0.1535689 7.471917 +0.08132997 0.1535689 7.471917 +0.1121653 0.1535689 7.471917 +0.1535689 0.1535689 7.471917 +0.2091628 0.1535689 7.471917 +0.2838106 0.1535689 7.471917 +0.3840425 0.1535689 7.471917 +0.518627 0.1535689 7.471917 +0.6993381 0.1535689 7.471917 +0.9419845 0.1535689 7.471917 +1.267794 0.1535689 7.471917 +1.705268 0.1535689 7.471917 +2.292679 0.1535689 7.471917 +3.081414 0.1535689 7.471917 +4.140474 0.1535689 7.471917 +5.562508 0.1535689 7.471917 +7.471917 0.1535689 7.471917 +10.03574 0.1535689 7.471917 +13.47828 0.1535689 7.471917 +18.10068 0.1535689 7.471917 +24.30731 0.1535689 7.471917 +32.64117 0.1535689 7.471917 +43.83129 0.1535689 7.471917 +58.85664 0.1535689 7.471917 +-0.0175068 0.2091628 7.471917 +-0.01161267 0.2091628 7.471917 +-0.005718534 0.2091628 7.471917 +0.0001755984 0.2091628 7.471917 +0.006069731 0.2091628 7.471917 +0.01197402 0.2091628 7.471917 +0.01903886 0.2091628 7.471917 +0.02852504 0.2091628 7.471917 +0.04126244 0.2091628 7.471917 +0.05836535 0.2091628 7.471917 +0.08132997 0.2091628 7.471917 +0.1121653 0.2091628 7.471917 +0.1535689 0.2091628 7.471917 +0.2091628 0.2091628 7.471917 +0.2838106 0.2091628 7.471917 +0.3840425 0.2091628 7.471917 +0.518627 0.2091628 7.471917 +0.6993381 0.2091628 7.471917 +0.9419845 0.2091628 7.471917 +1.267794 0.2091628 7.471917 +1.705268 0.2091628 7.471917 +2.292679 0.2091628 7.471917 +3.081414 0.2091628 7.471917 +4.140474 0.2091628 7.471917 +5.562508 0.2091628 7.471917 +7.471917 0.2091628 7.471917 +10.03574 0.2091628 7.471917 +13.47828 0.2091628 7.471917 +18.10068 0.2091628 7.471917 +24.30731 0.2091628 7.471917 +32.64117 0.2091628 7.471917 +43.83129 0.2091628 7.471917 +58.85664 0.2091628 7.471917 +-0.0175068 0.2838106 7.471917 +-0.01161267 0.2838106 7.471917 +-0.005718534 0.2838106 7.471917 +0.0001755984 0.2838106 7.471917 +0.006069731 0.2838106 7.471917 +0.01197402 0.2838106 7.471917 +0.01903886 0.2838106 7.471917 +0.02852504 0.2838106 7.471917 +0.04126244 0.2838106 7.471917 +0.05836535 0.2838106 7.471917 +0.08132997 0.2838106 7.471917 +0.1121653 0.2838106 7.471917 +0.1535689 0.2838106 7.471917 +0.2091628 0.2838106 7.471917 +0.2838106 0.2838106 7.471917 +0.3840425 0.2838106 7.471917 +0.518627 0.2838106 7.471917 +0.6993381 0.2838106 7.471917 +0.9419845 0.2838106 7.471917 +1.267794 0.2838106 7.471917 +1.705268 0.2838106 7.471917 +2.292679 0.2838106 7.471917 +3.081414 0.2838106 7.471917 +4.140474 0.2838106 7.471917 +5.562508 0.2838106 7.471917 +7.471917 0.2838106 7.471917 +10.03574 0.2838106 7.471917 +13.47828 0.2838106 7.471917 +18.10068 0.2838106 7.471917 +24.30731 0.2838106 7.471917 +32.64117 0.2838106 7.471917 +43.83129 0.2838106 7.471917 +58.85664 0.2838106 7.471917 +-0.0175068 0.3840425 7.471917 +-0.01161267 0.3840425 7.471917 +-0.005718534 0.3840425 7.471917 +0.0001755984 0.3840425 7.471917 +0.006069731 0.3840425 7.471917 +0.01197402 0.3840425 7.471917 +0.01903886 0.3840425 7.471917 +0.02852504 0.3840425 7.471917 +0.04126244 0.3840425 7.471917 +0.05836535 0.3840425 7.471917 +0.08132997 0.3840425 7.471917 +0.1121653 0.3840425 7.471917 +0.1535689 0.3840425 7.471917 +0.2091628 0.3840425 7.471917 +0.2838106 0.3840425 7.471917 +0.3840425 0.3840425 7.471917 +0.518627 0.3840425 7.471917 +0.6993381 0.3840425 7.471917 +0.9419845 0.3840425 7.471917 +1.267794 0.3840425 7.471917 +1.705268 0.3840425 7.471917 +2.292679 0.3840425 7.471917 +3.081414 0.3840425 7.471917 +4.140474 0.3840425 7.471917 +5.562508 0.3840425 7.471917 +7.471917 0.3840425 7.471917 +10.03574 0.3840425 7.471917 +13.47828 0.3840425 7.471917 +18.10068 0.3840425 7.471917 +24.30731 0.3840425 7.471917 +32.64117 0.3840425 7.471917 +43.83129 0.3840425 7.471917 +58.85664 0.3840425 7.471917 +-0.0175068 0.518627 7.471917 +-0.01161267 0.518627 7.471917 +-0.005718534 0.518627 7.471917 +0.0001755984 0.518627 7.471917 +0.006069731 0.518627 7.471917 +0.01197402 0.518627 7.471917 +0.01903886 0.518627 7.471917 +0.02852504 0.518627 7.471917 +0.04126244 0.518627 7.471917 +0.05836535 0.518627 7.471917 +0.08132997 0.518627 7.471917 +0.1121653 0.518627 7.471917 +0.1535689 0.518627 7.471917 +0.2091628 0.518627 7.471917 +0.2838106 0.518627 7.471917 +0.3840425 0.518627 7.471917 +0.518627 0.518627 7.471917 +0.6993381 0.518627 7.471917 +0.9419845 0.518627 7.471917 +1.267794 0.518627 7.471917 +1.705268 0.518627 7.471917 +2.292679 0.518627 7.471917 +3.081414 0.518627 7.471917 +4.140474 0.518627 7.471917 +5.562508 0.518627 7.471917 +7.471917 0.518627 7.471917 +10.03574 0.518627 7.471917 +13.47828 0.518627 7.471917 +18.10068 0.518627 7.471917 +24.30731 0.518627 7.471917 +32.64117 0.518627 7.471917 +43.83129 0.518627 7.471917 +58.85664 0.518627 7.471917 +-0.0175068 0.6993381 7.471917 +-0.01161267 0.6993381 7.471917 +-0.005718534 0.6993381 7.471917 +0.0001755984 0.6993381 7.471917 +0.006069731 0.6993381 7.471917 +0.01197402 0.6993381 7.471917 +0.01903886 0.6993381 7.471917 +0.02852504 0.6993381 7.471917 +0.04126244 0.6993381 7.471917 +0.05836535 0.6993381 7.471917 +0.08132997 0.6993381 7.471917 +0.1121653 0.6993381 7.471917 +0.1535689 0.6993381 7.471917 +0.2091628 0.6993381 7.471917 +0.2838106 0.6993381 7.471917 +0.3840425 0.6993381 7.471917 +0.518627 0.6993381 7.471917 +0.6993381 0.6993381 7.471917 +0.9419845 0.6993381 7.471917 +1.267794 0.6993381 7.471917 +1.705268 0.6993381 7.471917 +2.292679 0.6993381 7.471917 +3.081414 0.6993381 7.471917 +4.140474 0.6993381 7.471917 +5.562508 0.6993381 7.471917 +7.471917 0.6993381 7.471917 +10.03574 0.6993381 7.471917 +13.47828 0.6993381 7.471917 +18.10068 0.6993381 7.471917 +24.30731 0.6993381 7.471917 +32.64117 0.6993381 7.471917 +43.83129 0.6993381 7.471917 +58.85664 0.6993381 7.471917 +-0.0175068 0.9419845 7.471917 +-0.01161267 0.9419845 7.471917 +-0.005718534 0.9419845 7.471917 +0.0001755984 0.9419845 7.471917 +0.006069731 0.9419845 7.471917 +0.01197402 0.9419845 7.471917 +0.01903886 0.9419845 7.471917 +0.02852504 0.9419845 7.471917 +0.04126244 0.9419845 7.471917 +0.05836535 0.9419845 7.471917 +0.08132997 0.9419845 7.471917 +0.1121653 0.9419845 7.471917 +0.1535689 0.9419845 7.471917 +0.2091628 0.9419845 7.471917 +0.2838106 0.9419845 7.471917 +0.3840425 0.9419845 7.471917 +0.518627 0.9419845 7.471917 +0.6993381 0.9419845 7.471917 +0.9419845 0.9419845 7.471917 +1.267794 0.9419845 7.471917 +1.705268 0.9419845 7.471917 +2.292679 0.9419845 7.471917 +3.081414 0.9419845 7.471917 +4.140474 0.9419845 7.471917 +5.562508 0.9419845 7.471917 +7.471917 0.9419845 7.471917 +10.03574 0.9419845 7.471917 +13.47828 0.9419845 7.471917 +18.10068 0.9419845 7.471917 +24.30731 0.9419845 7.471917 +32.64117 0.9419845 7.471917 +43.83129 0.9419845 7.471917 +58.85664 0.9419845 7.471917 +-0.0175068 1.267794 7.471917 +-0.01161267 1.267794 7.471917 +-0.005718534 1.267794 7.471917 +0.0001755984 1.267794 7.471917 +0.006069731 1.267794 7.471917 +0.01197402 1.267794 7.471917 +0.01903886 1.267794 7.471917 +0.02852504 1.267794 7.471917 +0.04126244 1.267794 7.471917 +0.05836535 1.267794 7.471917 +0.08132997 1.267794 7.471917 +0.1121653 1.267794 7.471917 +0.1535689 1.267794 7.471917 +0.2091628 1.267794 7.471917 +0.2838106 1.267794 7.471917 +0.3840425 1.267794 7.471917 +0.518627 1.267794 7.471917 +0.6993381 1.267794 7.471917 +0.9419845 1.267794 7.471917 +1.267794 1.267794 7.471917 +1.705268 1.267794 7.471917 +2.292679 1.267794 7.471917 +3.081414 1.267794 7.471917 +4.140474 1.267794 7.471917 +5.562508 1.267794 7.471917 +7.471917 1.267794 7.471917 +10.03574 1.267794 7.471917 +13.47828 1.267794 7.471917 +18.10068 1.267794 7.471917 +24.30731 1.267794 7.471917 +32.64117 1.267794 7.471917 +43.83129 1.267794 7.471917 +58.85664 1.267794 7.471917 +-0.0175068 1.705268 7.471917 +-0.01161267 1.705268 7.471917 +-0.005718534 1.705268 7.471917 +0.0001755984 1.705268 7.471917 +0.006069731 1.705268 7.471917 +0.01197402 1.705268 7.471917 +0.01903886 1.705268 7.471917 +0.02852504 1.705268 7.471917 +0.04126244 1.705268 7.471917 +0.05836535 1.705268 7.471917 +0.08132997 1.705268 7.471917 +0.1121653 1.705268 7.471917 +0.1535689 1.705268 7.471917 +0.2091628 1.705268 7.471917 +0.2838106 1.705268 7.471917 +0.3840425 1.705268 7.471917 +0.518627 1.705268 7.471917 +0.6993381 1.705268 7.471917 +0.9419845 1.705268 7.471917 +1.267794 1.705268 7.471917 +1.705268 1.705268 7.471917 +2.292679 1.705268 7.471917 +3.081414 1.705268 7.471917 +4.140474 1.705268 7.471917 +5.562508 1.705268 7.471917 +7.471917 1.705268 7.471917 +10.03574 1.705268 7.471917 +13.47828 1.705268 7.471917 +18.10068 1.705268 7.471917 +24.30731 1.705268 7.471917 +32.64117 1.705268 7.471917 +43.83129 1.705268 7.471917 +58.85664 1.705268 7.471917 +-0.0175068 2.292679 7.471917 +-0.01161267 2.292679 7.471917 +-0.005718534 2.292679 7.471917 +0.0001755984 2.292679 7.471917 +0.006069731 2.292679 7.471917 +0.01197402 2.292679 7.471917 +0.01903886 2.292679 7.471917 +0.02852504 2.292679 7.471917 +0.04126244 2.292679 7.471917 +0.05836535 2.292679 7.471917 +0.08132997 2.292679 7.471917 +0.1121653 2.292679 7.471917 +0.1535689 2.292679 7.471917 +0.2091628 2.292679 7.471917 +0.2838106 2.292679 7.471917 +0.3840425 2.292679 7.471917 +0.518627 2.292679 7.471917 +0.6993381 2.292679 7.471917 +0.9419845 2.292679 7.471917 +1.267794 2.292679 7.471917 +1.705268 2.292679 7.471917 +2.292679 2.292679 7.471917 +3.081414 2.292679 7.471917 +4.140474 2.292679 7.471917 +5.562508 2.292679 7.471917 +7.471917 2.292679 7.471917 +10.03574 2.292679 7.471917 +13.47828 2.292679 7.471917 +18.10068 2.292679 7.471917 +24.30731 2.292679 7.471917 +32.64117 2.292679 7.471917 +43.83129 2.292679 7.471917 +58.85664 2.292679 7.471917 +-0.0175068 3.081414 7.471917 +-0.01161267 3.081414 7.471917 +-0.005718534 3.081414 7.471917 +0.0001755984 3.081414 7.471917 +0.006069731 3.081414 7.471917 +0.01197402 3.081414 7.471917 +0.01903886 3.081414 7.471917 +0.02852504 3.081414 7.471917 +0.04126244 3.081414 7.471917 +0.05836535 3.081414 7.471917 +0.08132997 3.081414 7.471917 +0.1121653 3.081414 7.471917 +0.1535689 3.081414 7.471917 +0.2091628 3.081414 7.471917 +0.2838106 3.081414 7.471917 +0.3840425 3.081414 7.471917 +0.518627 3.081414 7.471917 +0.6993381 3.081414 7.471917 +0.9419845 3.081414 7.471917 +1.267794 3.081414 7.471917 +1.705268 3.081414 7.471917 +2.292679 3.081414 7.471917 +3.081414 3.081414 7.471917 +4.140474 3.081414 7.471917 +5.562508 3.081414 7.471917 +7.471917 3.081414 7.471917 +10.03574 3.081414 7.471917 +13.47828 3.081414 7.471917 +18.10068 3.081414 7.471917 +24.30731 3.081414 7.471917 +32.64117 3.081414 7.471917 +43.83129 3.081414 7.471917 +58.85664 3.081414 7.471917 +-0.0175068 4.140474 7.471917 +-0.01161267 4.140474 7.471917 +-0.005718534 4.140474 7.471917 +0.0001755984 4.140474 7.471917 +0.006069731 4.140474 7.471917 +0.01197402 4.140474 7.471917 +0.01903886 4.140474 7.471917 +0.02852504 4.140474 7.471917 +0.04126244 4.140474 7.471917 +0.05836535 4.140474 7.471917 +0.08132997 4.140474 7.471917 +0.1121653 4.140474 7.471917 +0.1535689 4.140474 7.471917 +0.2091628 4.140474 7.471917 +0.2838106 4.140474 7.471917 +0.3840425 4.140474 7.471917 +0.518627 4.140474 7.471917 +0.6993381 4.140474 7.471917 +0.9419845 4.140474 7.471917 +1.267794 4.140474 7.471917 +1.705268 4.140474 7.471917 +2.292679 4.140474 7.471917 +3.081414 4.140474 7.471917 +4.140474 4.140474 7.471917 +5.562508 4.140474 7.471917 +7.471917 4.140474 7.471917 +10.03574 4.140474 7.471917 +13.47828 4.140474 7.471917 +18.10068 4.140474 7.471917 +24.30731 4.140474 7.471917 +32.64117 4.140474 7.471917 +43.83129 4.140474 7.471917 +58.85664 4.140474 7.471917 +-0.0175068 5.562508 7.471917 +-0.01161267 5.562508 7.471917 +-0.005718534 5.562508 7.471917 +0.0001755984 5.562508 7.471917 +0.006069731 5.562508 7.471917 +0.01197402 5.562508 7.471917 +0.01903886 5.562508 7.471917 +0.02852504 5.562508 7.471917 +0.04126244 5.562508 7.471917 +0.05836535 5.562508 7.471917 +0.08132997 5.562508 7.471917 +0.1121653 5.562508 7.471917 +0.1535689 5.562508 7.471917 +0.2091628 5.562508 7.471917 +0.2838106 5.562508 7.471917 +0.3840425 5.562508 7.471917 +0.518627 5.562508 7.471917 +0.6993381 5.562508 7.471917 +0.9419845 5.562508 7.471917 +1.267794 5.562508 7.471917 +1.705268 5.562508 7.471917 +2.292679 5.562508 7.471917 +3.081414 5.562508 7.471917 +4.140474 5.562508 7.471917 +5.562508 5.562508 7.471917 +7.471917 5.562508 7.471917 +10.03574 5.562508 7.471917 +13.47828 5.562508 7.471917 +18.10068 5.562508 7.471917 +24.30731 5.562508 7.471917 +32.64117 5.562508 7.471917 +43.83129 5.562508 7.471917 +58.85664 5.562508 7.471917 +-0.0175068 7.471917 7.471917 +-0.01161267 7.471917 7.471917 +-0.005718534 7.471917 7.471917 +0.0001755984 7.471917 7.471917 +0.006069731 7.471917 7.471917 +0.01197402 7.471917 7.471917 +0.01903886 7.471917 7.471917 +0.02852504 7.471917 7.471917 +0.04126244 7.471917 7.471917 +0.05836535 7.471917 7.471917 +0.08132997 7.471917 7.471917 +0.1121653 7.471917 7.471917 +0.1535689 7.471917 7.471917 +0.2091628 7.471917 7.471917 +0.2838106 7.471917 7.471917 +0.3840425 7.471917 7.471917 +0.518627 7.471917 7.471917 +0.6993381 7.471917 7.471917 +0.9419845 7.471917 7.471917 +1.267794 7.471917 7.471917 +1.705268 7.471917 7.471917 +2.292679 7.471917 7.471917 +3.081414 7.471917 7.471917 +4.140474 7.471917 7.471917 +5.562508 7.471917 7.471917 +7.471917 7.471917 7.471917 +10.03574 7.471917 7.471917 +13.47828 7.471917 7.471917 +18.10068 7.471917 7.471917 +24.30731 7.471917 7.471917 +32.64117 7.471917 7.471917 +43.83129 7.471917 7.471917 +58.85664 7.471917 7.471917 +-0.0175068 10.03574 7.471917 +-0.01161267 10.03574 7.471917 +-0.005718534 10.03574 7.471917 +0.0001755984 10.03574 7.471917 +0.006069731 10.03574 7.471917 +0.01197402 10.03574 7.471917 +0.01903886 10.03574 7.471917 +0.02852504 10.03574 7.471917 +0.04126244 10.03574 7.471917 +0.05836535 10.03574 7.471917 +0.08132997 10.03574 7.471917 +0.1121653 10.03574 7.471917 +0.1535689 10.03574 7.471917 +0.2091628 10.03574 7.471917 +0.2838106 10.03574 7.471917 +0.3840425 10.03574 7.471917 +0.518627 10.03574 7.471917 +0.6993381 10.03574 7.471917 +0.9419845 10.03574 7.471917 +1.267794 10.03574 7.471917 +1.705268 10.03574 7.471917 +2.292679 10.03574 7.471917 +3.081414 10.03574 7.471917 +4.140474 10.03574 7.471917 +5.562508 10.03574 7.471917 +7.471917 10.03574 7.471917 +10.03574 10.03574 7.471917 +13.47828 10.03574 7.471917 +18.10068 10.03574 7.471917 +24.30731 10.03574 7.471917 +32.64117 10.03574 7.471917 +43.83129 10.03574 7.471917 +58.85664 10.03574 7.471917 +-0.0175068 13.47828 7.471917 +-0.01161267 13.47828 7.471917 +-0.005718534 13.47828 7.471917 +0.0001755984 13.47828 7.471917 +0.006069731 13.47828 7.471917 +0.01197402 13.47828 7.471917 +0.01903886 13.47828 7.471917 +0.02852504 13.47828 7.471917 +0.04126244 13.47828 7.471917 +0.05836535 13.47828 7.471917 +0.08132997 13.47828 7.471917 +0.1121653 13.47828 7.471917 +0.1535689 13.47828 7.471917 +0.2091628 13.47828 7.471917 +0.2838106 13.47828 7.471917 +0.3840425 13.47828 7.471917 +0.518627 13.47828 7.471917 +0.6993381 13.47828 7.471917 +0.9419845 13.47828 7.471917 +1.267794 13.47828 7.471917 +1.705268 13.47828 7.471917 +2.292679 13.47828 7.471917 +3.081414 13.47828 7.471917 +4.140474 13.47828 7.471917 +5.562508 13.47828 7.471917 +7.471917 13.47828 7.471917 +10.03574 13.47828 7.471917 +13.47828 13.47828 7.471917 +18.10068 13.47828 7.471917 +24.30731 13.47828 7.471917 +32.64117 13.47828 7.471917 +43.83129 13.47828 7.471917 +58.85664 13.47828 7.471917 +-0.0175068 18.10068 7.471917 +-0.01161267 18.10068 7.471917 +-0.005718534 18.10068 7.471917 +0.0001755984 18.10068 7.471917 +0.006069731 18.10068 7.471917 +0.01197402 18.10068 7.471917 +0.01903886 18.10068 7.471917 +0.02852504 18.10068 7.471917 +0.04126244 18.10068 7.471917 +0.05836535 18.10068 7.471917 +0.08132997 18.10068 7.471917 +0.1121653 18.10068 7.471917 +0.1535689 18.10068 7.471917 +0.2091628 18.10068 7.471917 +0.2838106 18.10068 7.471917 +0.3840425 18.10068 7.471917 +0.518627 18.10068 7.471917 +0.6993381 18.10068 7.471917 +0.9419845 18.10068 7.471917 +1.267794 18.10068 7.471917 +1.705268 18.10068 7.471917 +2.292679 18.10068 7.471917 +3.081414 18.10068 7.471917 +4.140474 18.10068 7.471917 +5.562508 18.10068 7.471917 +7.471917 18.10068 7.471917 +10.03574 18.10068 7.471917 +13.47828 18.10068 7.471917 +18.10068 18.10068 7.471917 +24.30731 18.10068 7.471917 +32.64117 18.10068 7.471917 +43.83129 18.10068 7.471917 +58.85664 18.10068 7.471917 +-0.0175068 24.30731 7.471917 +-0.01161267 24.30731 7.471917 +-0.005718534 24.30731 7.471917 +0.0001755984 24.30731 7.471917 +0.006069731 24.30731 7.471917 +0.01197402 24.30731 7.471917 +0.01903886 24.30731 7.471917 +0.02852504 24.30731 7.471917 +0.04126244 24.30731 7.471917 +0.05836535 24.30731 7.471917 +0.08132997 24.30731 7.471917 +0.1121653 24.30731 7.471917 +0.1535689 24.30731 7.471917 +0.2091628 24.30731 7.471917 +0.2838106 24.30731 7.471917 +0.3840425 24.30731 7.471917 +0.518627 24.30731 7.471917 +0.6993381 24.30731 7.471917 +0.9419845 24.30731 7.471917 +1.267794 24.30731 7.471917 +1.705268 24.30731 7.471917 +2.292679 24.30731 7.471917 +3.081414 24.30731 7.471917 +4.140474 24.30731 7.471917 +5.562508 24.30731 7.471917 +7.471917 24.30731 7.471917 +10.03574 24.30731 7.471917 +13.47828 24.30731 7.471917 +18.10068 24.30731 7.471917 +24.30731 24.30731 7.471917 +32.64117 24.30731 7.471917 +43.83129 24.30731 7.471917 +58.85664 24.30731 7.471917 +-0.0175068 32.64117 7.471917 +-0.01161267 32.64117 7.471917 +-0.005718534 32.64117 7.471917 +0.0001755984 32.64117 7.471917 +0.006069731 32.64117 7.471917 +0.01197402 32.64117 7.471917 +0.01903886 32.64117 7.471917 +0.02852504 32.64117 7.471917 +0.04126244 32.64117 7.471917 +0.05836535 32.64117 7.471917 +0.08132997 32.64117 7.471917 +0.1121653 32.64117 7.471917 +0.1535689 32.64117 7.471917 +0.2091628 32.64117 7.471917 +0.2838106 32.64117 7.471917 +0.3840425 32.64117 7.471917 +0.518627 32.64117 7.471917 +0.6993381 32.64117 7.471917 +0.9419845 32.64117 7.471917 +1.267794 32.64117 7.471917 +1.705268 32.64117 7.471917 +2.292679 32.64117 7.471917 +3.081414 32.64117 7.471917 +4.140474 32.64117 7.471917 +5.562508 32.64117 7.471917 +7.471917 32.64117 7.471917 +10.03574 32.64117 7.471917 +13.47828 32.64117 7.471917 +18.10068 32.64117 7.471917 +24.30731 32.64117 7.471917 +32.64117 32.64117 7.471917 +43.83129 32.64117 7.471917 +58.85664 32.64117 7.471917 +-0.0175068 43.83129 7.471917 +-0.01161267 43.83129 7.471917 +-0.005718534 43.83129 7.471917 +0.0001755984 43.83129 7.471917 +0.006069731 43.83129 7.471917 +0.01197402 43.83129 7.471917 +0.01903886 43.83129 7.471917 +0.02852504 43.83129 7.471917 +0.04126244 43.83129 7.471917 +0.05836535 43.83129 7.471917 +0.08132997 43.83129 7.471917 +0.1121653 43.83129 7.471917 +0.1535689 43.83129 7.471917 +0.2091628 43.83129 7.471917 +0.2838106 43.83129 7.471917 +0.3840425 43.83129 7.471917 +0.518627 43.83129 7.471917 +0.6993381 43.83129 7.471917 +0.9419845 43.83129 7.471917 +1.267794 43.83129 7.471917 +1.705268 43.83129 7.471917 +2.292679 43.83129 7.471917 +3.081414 43.83129 7.471917 +4.140474 43.83129 7.471917 +5.562508 43.83129 7.471917 +7.471917 43.83129 7.471917 +10.03574 43.83129 7.471917 +13.47828 43.83129 7.471917 +18.10068 43.83129 7.471917 +24.30731 43.83129 7.471917 +32.64117 43.83129 7.471917 +43.83129 43.83129 7.471917 +58.85664 43.83129 7.471917 +-0.0175068 58.85664 7.471917 +-0.01161267 58.85664 7.471917 +-0.005718534 58.85664 7.471917 +0.0001755984 58.85664 7.471917 +0.006069731 58.85664 7.471917 +0.01197402 58.85664 7.471917 +0.01903886 58.85664 7.471917 +0.02852504 58.85664 7.471917 +0.04126244 58.85664 7.471917 +0.05836535 58.85664 7.471917 +0.08132997 58.85664 7.471917 +0.1121653 58.85664 7.471917 +0.1535689 58.85664 7.471917 +0.2091628 58.85664 7.471917 +0.2838106 58.85664 7.471917 +0.3840425 58.85664 7.471917 +0.518627 58.85664 7.471917 +0.6993381 58.85664 7.471917 +0.9419845 58.85664 7.471917 +1.267794 58.85664 7.471917 +1.705268 58.85664 7.471917 +2.292679 58.85664 7.471917 +3.081414 58.85664 7.471917 +4.140474 58.85664 7.471917 +5.562508 58.85664 7.471917 +7.471917 58.85664 7.471917 +10.03574 58.85664 7.471917 +13.47828 58.85664 7.471917 +18.10068 58.85664 7.471917 +24.30731 58.85664 7.471917 +32.64117 58.85664 7.471917 +43.83129 58.85664 7.471917 +58.85664 58.85664 7.471917 +-0.0175068 -0.0175068 10.03574 +-0.01161267 -0.0175068 10.03574 +-0.005718534 -0.0175068 10.03574 +0.0001755984 -0.0175068 10.03574 +0.006069731 -0.0175068 10.03574 +0.01197402 -0.0175068 10.03574 +0.01903886 -0.0175068 10.03574 +0.02852504 -0.0175068 10.03574 +0.04126244 -0.0175068 10.03574 +0.05836535 -0.0175068 10.03574 +0.08132997 -0.0175068 10.03574 +0.1121653 -0.0175068 10.03574 +0.1535689 -0.0175068 10.03574 +0.2091628 -0.0175068 10.03574 +0.2838106 -0.0175068 10.03574 +0.3840425 -0.0175068 10.03574 +0.518627 -0.0175068 10.03574 +0.6993381 -0.0175068 10.03574 +0.9419845 -0.0175068 10.03574 +1.267794 -0.0175068 10.03574 +1.705268 -0.0175068 10.03574 +2.292679 -0.0175068 10.03574 +3.081414 -0.0175068 10.03574 +4.140474 -0.0175068 10.03574 +5.562508 -0.0175068 10.03574 +7.471917 -0.0175068 10.03574 +10.03574 -0.0175068 10.03574 +13.47828 -0.0175068 10.03574 +18.10068 -0.0175068 10.03574 +24.30731 -0.0175068 10.03574 +32.64117 -0.0175068 10.03574 +43.83129 -0.0175068 10.03574 +58.85664 -0.0175068 10.03574 +-0.0175068 -0.01161267 10.03574 +-0.01161267 -0.01161267 10.03574 +-0.005718534 -0.01161267 10.03574 +0.0001755984 -0.01161267 10.03574 +0.006069731 -0.01161267 10.03574 +0.01197402 -0.01161267 10.03574 +0.01903886 -0.01161267 10.03574 +0.02852504 -0.01161267 10.03574 +0.04126244 -0.01161267 10.03574 +0.05836535 -0.01161267 10.03574 +0.08132997 -0.01161267 10.03574 +0.1121653 -0.01161267 10.03574 +0.1535689 -0.01161267 10.03574 +0.2091628 -0.01161267 10.03574 +0.2838106 -0.01161267 10.03574 +0.3840425 -0.01161267 10.03574 +0.518627 -0.01161267 10.03574 +0.6993381 -0.01161267 10.03574 +0.9419845 -0.01161267 10.03574 +1.267794 -0.01161267 10.03574 +1.705268 -0.01161267 10.03574 +2.292679 -0.01161267 10.03574 +3.081414 -0.01161267 10.03574 +4.140474 -0.01161267 10.03574 +5.562508 -0.01161267 10.03574 +7.471917 -0.01161267 10.03574 +10.03574 -0.01161267 10.03574 +13.47828 -0.01161267 10.03574 +18.10068 -0.01161267 10.03574 +24.30731 -0.01161267 10.03574 +32.64117 -0.01161267 10.03574 +43.83129 -0.01161267 10.03574 +58.85664 -0.01161267 10.03574 +-0.0175068 -0.005718534 10.03574 +-0.01161267 -0.005718534 10.03574 +-0.005718534 -0.005718534 10.03574 +0.0001755984 -0.005718534 10.03574 +0.006069731 -0.005718534 10.03574 +0.01197402 -0.005718534 10.03574 +0.01903886 -0.005718534 10.03574 +0.02852504 -0.005718534 10.03574 +0.04126244 -0.005718534 10.03574 +0.05836535 -0.005718534 10.03574 +0.08132997 -0.005718534 10.03574 +0.1121653 -0.005718534 10.03574 +0.1535689 -0.005718534 10.03574 +0.2091628 -0.005718534 10.03574 +0.2838106 -0.005718534 10.03574 +0.3840425 -0.005718534 10.03574 +0.518627 -0.005718534 10.03574 +0.6993381 -0.005718534 10.03574 +0.9419845 -0.005718534 10.03574 +1.267794 -0.005718534 10.03574 +1.705268 -0.005718534 10.03574 +2.292679 -0.005718534 10.03574 +3.081414 -0.005718534 10.03574 +4.140474 -0.005718534 10.03574 +5.562508 -0.005718534 10.03574 +7.471917 -0.005718534 10.03574 +10.03574 -0.005718534 10.03574 +13.47828 -0.005718534 10.03574 +18.10068 -0.005718534 10.03574 +24.30731 -0.005718534 10.03574 +32.64117 -0.005718534 10.03574 +43.83129 -0.005718534 10.03574 +58.85664 -0.005718534 10.03574 +-0.0175068 0.0001755984 10.03574 +-0.01161267 0.0001755984 10.03574 +-0.005718534 0.0001755984 10.03574 +0.0001755984 0.0001755984 10.03574 +0.006069731 0.0001755984 10.03574 +0.01197402 0.0001755984 10.03574 +0.01903886 0.0001755984 10.03574 +0.02852504 0.0001755984 10.03574 +0.04126244 0.0001755984 10.03574 +0.05836535 0.0001755984 10.03574 +0.08132997 0.0001755984 10.03574 +0.1121653 0.0001755984 10.03574 +0.1535689 0.0001755984 10.03574 +0.2091628 0.0001755984 10.03574 +0.2838106 0.0001755984 10.03574 +0.3840425 0.0001755984 10.03574 +0.518627 0.0001755984 10.03574 +0.6993381 0.0001755984 10.03574 +0.9419845 0.0001755984 10.03574 +1.267794 0.0001755984 10.03574 +1.705268 0.0001755984 10.03574 +2.292679 0.0001755984 10.03574 +3.081414 0.0001755984 10.03574 +4.140474 0.0001755984 10.03574 +5.562508 0.0001755984 10.03574 +7.471917 0.0001755984 10.03574 +10.03574 0.0001755984 10.03574 +13.47828 0.0001755984 10.03574 +18.10068 0.0001755984 10.03574 +24.30731 0.0001755984 10.03574 +32.64117 0.0001755984 10.03574 +43.83129 0.0001755984 10.03574 +58.85664 0.0001755984 10.03574 +-0.0175068 0.006069731 10.03574 +-0.01161267 0.006069731 10.03574 +-0.005718534 0.006069731 10.03574 +0.0001755984 0.006069731 10.03574 +0.006069731 0.006069731 10.03574 +0.01197402 0.006069731 10.03574 +0.01903886 0.006069731 10.03574 +0.02852504 0.006069731 10.03574 +0.04126244 0.006069731 10.03574 +0.05836535 0.006069731 10.03574 +0.08132997 0.006069731 10.03574 +0.1121653 0.006069731 10.03574 +0.1535689 0.006069731 10.03574 +0.2091628 0.006069731 10.03574 +0.2838106 0.006069731 10.03574 +0.3840425 0.006069731 10.03574 +0.518627 0.006069731 10.03574 +0.6993381 0.006069731 10.03574 +0.9419845 0.006069731 10.03574 +1.267794 0.006069731 10.03574 +1.705268 0.006069731 10.03574 +2.292679 0.006069731 10.03574 +3.081414 0.006069731 10.03574 +4.140474 0.006069731 10.03574 +5.562508 0.006069731 10.03574 +7.471917 0.006069731 10.03574 +10.03574 0.006069731 10.03574 +13.47828 0.006069731 10.03574 +18.10068 0.006069731 10.03574 +24.30731 0.006069731 10.03574 +32.64117 0.006069731 10.03574 +43.83129 0.006069731 10.03574 +58.85664 0.006069731 10.03574 +-0.0175068 0.01197402 10.03574 +-0.01161267 0.01197402 10.03574 +-0.005718534 0.01197402 10.03574 +0.0001755984 0.01197402 10.03574 +0.006069731 0.01197402 10.03574 +0.01197402 0.01197402 10.03574 +0.01903886 0.01197402 10.03574 +0.02852504 0.01197402 10.03574 +0.04126244 0.01197402 10.03574 +0.05836535 0.01197402 10.03574 +0.08132997 0.01197402 10.03574 +0.1121653 0.01197402 10.03574 +0.1535689 0.01197402 10.03574 +0.2091628 0.01197402 10.03574 +0.2838106 0.01197402 10.03574 +0.3840425 0.01197402 10.03574 +0.518627 0.01197402 10.03574 +0.6993381 0.01197402 10.03574 +0.9419845 0.01197402 10.03574 +1.267794 0.01197402 10.03574 +1.705268 0.01197402 10.03574 +2.292679 0.01197402 10.03574 +3.081414 0.01197402 10.03574 +4.140474 0.01197402 10.03574 +5.562508 0.01197402 10.03574 +7.471917 0.01197402 10.03574 +10.03574 0.01197402 10.03574 +13.47828 0.01197402 10.03574 +18.10068 0.01197402 10.03574 +24.30731 0.01197402 10.03574 +32.64117 0.01197402 10.03574 +43.83129 0.01197402 10.03574 +58.85664 0.01197402 10.03574 +-0.0175068 0.01903886 10.03574 +-0.01161267 0.01903886 10.03574 +-0.005718534 0.01903886 10.03574 +0.0001755984 0.01903886 10.03574 +0.006069731 0.01903886 10.03574 +0.01197402 0.01903886 10.03574 +0.01903886 0.01903886 10.03574 +0.02852504 0.01903886 10.03574 +0.04126244 0.01903886 10.03574 +0.05836535 0.01903886 10.03574 +0.08132997 0.01903886 10.03574 +0.1121653 0.01903886 10.03574 +0.1535689 0.01903886 10.03574 +0.2091628 0.01903886 10.03574 +0.2838106 0.01903886 10.03574 +0.3840425 0.01903886 10.03574 +0.518627 0.01903886 10.03574 +0.6993381 0.01903886 10.03574 +0.9419845 0.01903886 10.03574 +1.267794 0.01903886 10.03574 +1.705268 0.01903886 10.03574 +2.292679 0.01903886 10.03574 +3.081414 0.01903886 10.03574 +4.140474 0.01903886 10.03574 +5.562508 0.01903886 10.03574 +7.471917 0.01903886 10.03574 +10.03574 0.01903886 10.03574 +13.47828 0.01903886 10.03574 +18.10068 0.01903886 10.03574 +24.30731 0.01903886 10.03574 +32.64117 0.01903886 10.03574 +43.83129 0.01903886 10.03574 +58.85664 0.01903886 10.03574 +-0.0175068 0.02852504 10.03574 +-0.01161267 0.02852504 10.03574 +-0.005718534 0.02852504 10.03574 +0.0001755984 0.02852504 10.03574 +0.006069731 0.02852504 10.03574 +0.01197402 0.02852504 10.03574 +0.01903886 0.02852504 10.03574 +0.02852504 0.02852504 10.03574 +0.04126244 0.02852504 10.03574 +0.05836535 0.02852504 10.03574 +0.08132997 0.02852504 10.03574 +0.1121653 0.02852504 10.03574 +0.1535689 0.02852504 10.03574 +0.2091628 0.02852504 10.03574 +0.2838106 0.02852504 10.03574 +0.3840425 0.02852504 10.03574 +0.518627 0.02852504 10.03574 +0.6993381 0.02852504 10.03574 +0.9419845 0.02852504 10.03574 +1.267794 0.02852504 10.03574 +1.705268 0.02852504 10.03574 +2.292679 0.02852504 10.03574 +3.081414 0.02852504 10.03574 +4.140474 0.02852504 10.03574 +5.562508 0.02852504 10.03574 +7.471917 0.02852504 10.03574 +10.03574 0.02852504 10.03574 +13.47828 0.02852504 10.03574 +18.10068 0.02852504 10.03574 +24.30731 0.02852504 10.03574 +32.64117 0.02852504 10.03574 +43.83129 0.02852504 10.03574 +58.85664 0.02852504 10.03574 +-0.0175068 0.04126244 10.03574 +-0.01161267 0.04126244 10.03574 +-0.005718534 0.04126244 10.03574 +0.0001755984 0.04126244 10.03574 +0.006069731 0.04126244 10.03574 +0.01197402 0.04126244 10.03574 +0.01903886 0.04126244 10.03574 +0.02852504 0.04126244 10.03574 +0.04126244 0.04126244 10.03574 +0.05836535 0.04126244 10.03574 +0.08132997 0.04126244 10.03574 +0.1121653 0.04126244 10.03574 +0.1535689 0.04126244 10.03574 +0.2091628 0.04126244 10.03574 +0.2838106 0.04126244 10.03574 +0.3840425 0.04126244 10.03574 +0.518627 0.04126244 10.03574 +0.6993381 0.04126244 10.03574 +0.9419845 0.04126244 10.03574 +1.267794 0.04126244 10.03574 +1.705268 0.04126244 10.03574 +2.292679 0.04126244 10.03574 +3.081414 0.04126244 10.03574 +4.140474 0.04126244 10.03574 +5.562508 0.04126244 10.03574 +7.471917 0.04126244 10.03574 +10.03574 0.04126244 10.03574 +13.47828 0.04126244 10.03574 +18.10068 0.04126244 10.03574 +24.30731 0.04126244 10.03574 +32.64117 0.04126244 10.03574 +43.83129 0.04126244 10.03574 +58.85664 0.04126244 10.03574 +-0.0175068 0.05836535 10.03574 +-0.01161267 0.05836535 10.03574 +-0.005718534 0.05836535 10.03574 +0.0001755984 0.05836535 10.03574 +0.006069731 0.05836535 10.03574 +0.01197402 0.05836535 10.03574 +0.01903886 0.05836535 10.03574 +0.02852504 0.05836535 10.03574 +0.04126244 0.05836535 10.03574 +0.05836535 0.05836535 10.03574 +0.08132997 0.05836535 10.03574 +0.1121653 0.05836535 10.03574 +0.1535689 0.05836535 10.03574 +0.2091628 0.05836535 10.03574 +0.2838106 0.05836535 10.03574 +0.3840425 0.05836535 10.03574 +0.518627 0.05836535 10.03574 +0.6993381 0.05836535 10.03574 +0.9419845 0.05836535 10.03574 +1.267794 0.05836535 10.03574 +1.705268 0.05836535 10.03574 +2.292679 0.05836535 10.03574 +3.081414 0.05836535 10.03574 +4.140474 0.05836535 10.03574 +5.562508 0.05836535 10.03574 +7.471917 0.05836535 10.03574 +10.03574 0.05836535 10.03574 +13.47828 0.05836535 10.03574 +18.10068 0.05836535 10.03574 +24.30731 0.05836535 10.03574 +32.64117 0.05836535 10.03574 +43.83129 0.05836535 10.03574 +58.85664 0.05836535 10.03574 +-0.0175068 0.08132997 10.03574 +-0.01161267 0.08132997 10.03574 +-0.005718534 0.08132997 10.03574 +0.0001755984 0.08132997 10.03574 +0.006069731 0.08132997 10.03574 +0.01197402 0.08132997 10.03574 +0.01903886 0.08132997 10.03574 +0.02852504 0.08132997 10.03574 +0.04126244 0.08132997 10.03574 +0.05836535 0.08132997 10.03574 +0.08132997 0.08132997 10.03574 +0.1121653 0.08132997 10.03574 +0.1535689 0.08132997 10.03574 +0.2091628 0.08132997 10.03574 +0.2838106 0.08132997 10.03574 +0.3840425 0.08132997 10.03574 +0.518627 0.08132997 10.03574 +0.6993381 0.08132997 10.03574 +0.9419845 0.08132997 10.03574 +1.267794 0.08132997 10.03574 +1.705268 0.08132997 10.03574 +2.292679 0.08132997 10.03574 +3.081414 0.08132997 10.03574 +4.140474 0.08132997 10.03574 +5.562508 0.08132997 10.03574 +7.471917 0.08132997 10.03574 +10.03574 0.08132997 10.03574 +13.47828 0.08132997 10.03574 +18.10068 0.08132997 10.03574 +24.30731 0.08132997 10.03574 +32.64117 0.08132997 10.03574 +43.83129 0.08132997 10.03574 +58.85664 0.08132997 10.03574 +-0.0175068 0.1121653 10.03574 +-0.01161267 0.1121653 10.03574 +-0.005718534 0.1121653 10.03574 +0.0001755984 0.1121653 10.03574 +0.006069731 0.1121653 10.03574 +0.01197402 0.1121653 10.03574 +0.01903886 0.1121653 10.03574 +0.02852504 0.1121653 10.03574 +0.04126244 0.1121653 10.03574 +0.05836535 0.1121653 10.03574 +0.08132997 0.1121653 10.03574 +0.1121653 0.1121653 10.03574 +0.1535689 0.1121653 10.03574 +0.2091628 0.1121653 10.03574 +0.2838106 0.1121653 10.03574 +0.3840425 0.1121653 10.03574 +0.518627 0.1121653 10.03574 +0.6993381 0.1121653 10.03574 +0.9419845 0.1121653 10.03574 +1.267794 0.1121653 10.03574 +1.705268 0.1121653 10.03574 +2.292679 0.1121653 10.03574 +3.081414 0.1121653 10.03574 +4.140474 0.1121653 10.03574 +5.562508 0.1121653 10.03574 +7.471917 0.1121653 10.03574 +10.03574 0.1121653 10.03574 +13.47828 0.1121653 10.03574 +18.10068 0.1121653 10.03574 +24.30731 0.1121653 10.03574 +32.64117 0.1121653 10.03574 +43.83129 0.1121653 10.03574 +58.85664 0.1121653 10.03574 +-0.0175068 0.1535689 10.03574 +-0.01161267 0.1535689 10.03574 +-0.005718534 0.1535689 10.03574 +0.0001755984 0.1535689 10.03574 +0.006069731 0.1535689 10.03574 +0.01197402 0.1535689 10.03574 +0.01903886 0.1535689 10.03574 +0.02852504 0.1535689 10.03574 +0.04126244 0.1535689 10.03574 +0.05836535 0.1535689 10.03574 +0.08132997 0.1535689 10.03574 +0.1121653 0.1535689 10.03574 +0.1535689 0.1535689 10.03574 +0.2091628 0.1535689 10.03574 +0.2838106 0.1535689 10.03574 +0.3840425 0.1535689 10.03574 +0.518627 0.1535689 10.03574 +0.6993381 0.1535689 10.03574 +0.9419845 0.1535689 10.03574 +1.267794 0.1535689 10.03574 +1.705268 0.1535689 10.03574 +2.292679 0.1535689 10.03574 +3.081414 0.1535689 10.03574 +4.140474 0.1535689 10.03574 +5.562508 0.1535689 10.03574 +7.471917 0.1535689 10.03574 +10.03574 0.1535689 10.03574 +13.47828 0.1535689 10.03574 +18.10068 0.1535689 10.03574 +24.30731 0.1535689 10.03574 +32.64117 0.1535689 10.03574 +43.83129 0.1535689 10.03574 +58.85664 0.1535689 10.03574 +-0.0175068 0.2091628 10.03574 +-0.01161267 0.2091628 10.03574 +-0.005718534 0.2091628 10.03574 +0.0001755984 0.2091628 10.03574 +0.006069731 0.2091628 10.03574 +0.01197402 0.2091628 10.03574 +0.01903886 0.2091628 10.03574 +0.02852504 0.2091628 10.03574 +0.04126244 0.2091628 10.03574 +0.05836535 0.2091628 10.03574 +0.08132997 0.2091628 10.03574 +0.1121653 0.2091628 10.03574 +0.1535689 0.2091628 10.03574 +0.2091628 0.2091628 10.03574 +0.2838106 0.2091628 10.03574 +0.3840425 0.2091628 10.03574 +0.518627 0.2091628 10.03574 +0.6993381 0.2091628 10.03574 +0.9419845 0.2091628 10.03574 +1.267794 0.2091628 10.03574 +1.705268 0.2091628 10.03574 +2.292679 0.2091628 10.03574 +3.081414 0.2091628 10.03574 +4.140474 0.2091628 10.03574 +5.562508 0.2091628 10.03574 +7.471917 0.2091628 10.03574 +10.03574 0.2091628 10.03574 +13.47828 0.2091628 10.03574 +18.10068 0.2091628 10.03574 +24.30731 0.2091628 10.03574 +32.64117 0.2091628 10.03574 +43.83129 0.2091628 10.03574 +58.85664 0.2091628 10.03574 +-0.0175068 0.2838106 10.03574 +-0.01161267 0.2838106 10.03574 +-0.005718534 0.2838106 10.03574 +0.0001755984 0.2838106 10.03574 +0.006069731 0.2838106 10.03574 +0.01197402 0.2838106 10.03574 +0.01903886 0.2838106 10.03574 +0.02852504 0.2838106 10.03574 +0.04126244 0.2838106 10.03574 +0.05836535 0.2838106 10.03574 +0.08132997 0.2838106 10.03574 +0.1121653 0.2838106 10.03574 +0.1535689 0.2838106 10.03574 +0.2091628 0.2838106 10.03574 +0.2838106 0.2838106 10.03574 +0.3840425 0.2838106 10.03574 +0.518627 0.2838106 10.03574 +0.6993381 0.2838106 10.03574 +0.9419845 0.2838106 10.03574 +1.267794 0.2838106 10.03574 +1.705268 0.2838106 10.03574 +2.292679 0.2838106 10.03574 +3.081414 0.2838106 10.03574 +4.140474 0.2838106 10.03574 +5.562508 0.2838106 10.03574 +7.471917 0.2838106 10.03574 +10.03574 0.2838106 10.03574 +13.47828 0.2838106 10.03574 +18.10068 0.2838106 10.03574 +24.30731 0.2838106 10.03574 +32.64117 0.2838106 10.03574 +43.83129 0.2838106 10.03574 +58.85664 0.2838106 10.03574 +-0.0175068 0.3840425 10.03574 +-0.01161267 0.3840425 10.03574 +-0.005718534 0.3840425 10.03574 +0.0001755984 0.3840425 10.03574 +0.006069731 0.3840425 10.03574 +0.01197402 0.3840425 10.03574 +0.01903886 0.3840425 10.03574 +0.02852504 0.3840425 10.03574 +0.04126244 0.3840425 10.03574 +0.05836535 0.3840425 10.03574 +0.08132997 0.3840425 10.03574 +0.1121653 0.3840425 10.03574 +0.1535689 0.3840425 10.03574 +0.2091628 0.3840425 10.03574 +0.2838106 0.3840425 10.03574 +0.3840425 0.3840425 10.03574 +0.518627 0.3840425 10.03574 +0.6993381 0.3840425 10.03574 +0.9419845 0.3840425 10.03574 +1.267794 0.3840425 10.03574 +1.705268 0.3840425 10.03574 +2.292679 0.3840425 10.03574 +3.081414 0.3840425 10.03574 +4.140474 0.3840425 10.03574 +5.562508 0.3840425 10.03574 +7.471917 0.3840425 10.03574 +10.03574 0.3840425 10.03574 +13.47828 0.3840425 10.03574 +18.10068 0.3840425 10.03574 +24.30731 0.3840425 10.03574 +32.64117 0.3840425 10.03574 +43.83129 0.3840425 10.03574 +58.85664 0.3840425 10.03574 +-0.0175068 0.518627 10.03574 +-0.01161267 0.518627 10.03574 +-0.005718534 0.518627 10.03574 +0.0001755984 0.518627 10.03574 +0.006069731 0.518627 10.03574 +0.01197402 0.518627 10.03574 +0.01903886 0.518627 10.03574 +0.02852504 0.518627 10.03574 +0.04126244 0.518627 10.03574 +0.05836535 0.518627 10.03574 +0.08132997 0.518627 10.03574 +0.1121653 0.518627 10.03574 +0.1535689 0.518627 10.03574 +0.2091628 0.518627 10.03574 +0.2838106 0.518627 10.03574 +0.3840425 0.518627 10.03574 +0.518627 0.518627 10.03574 +0.6993381 0.518627 10.03574 +0.9419845 0.518627 10.03574 +1.267794 0.518627 10.03574 +1.705268 0.518627 10.03574 +2.292679 0.518627 10.03574 +3.081414 0.518627 10.03574 +4.140474 0.518627 10.03574 +5.562508 0.518627 10.03574 +7.471917 0.518627 10.03574 +10.03574 0.518627 10.03574 +13.47828 0.518627 10.03574 +18.10068 0.518627 10.03574 +24.30731 0.518627 10.03574 +32.64117 0.518627 10.03574 +43.83129 0.518627 10.03574 +58.85664 0.518627 10.03574 +-0.0175068 0.6993381 10.03574 +-0.01161267 0.6993381 10.03574 +-0.005718534 0.6993381 10.03574 +0.0001755984 0.6993381 10.03574 +0.006069731 0.6993381 10.03574 +0.01197402 0.6993381 10.03574 +0.01903886 0.6993381 10.03574 +0.02852504 0.6993381 10.03574 +0.04126244 0.6993381 10.03574 +0.05836535 0.6993381 10.03574 +0.08132997 0.6993381 10.03574 +0.1121653 0.6993381 10.03574 +0.1535689 0.6993381 10.03574 +0.2091628 0.6993381 10.03574 +0.2838106 0.6993381 10.03574 +0.3840425 0.6993381 10.03574 +0.518627 0.6993381 10.03574 +0.6993381 0.6993381 10.03574 +0.9419845 0.6993381 10.03574 +1.267794 0.6993381 10.03574 +1.705268 0.6993381 10.03574 +2.292679 0.6993381 10.03574 +3.081414 0.6993381 10.03574 +4.140474 0.6993381 10.03574 +5.562508 0.6993381 10.03574 +7.471917 0.6993381 10.03574 +10.03574 0.6993381 10.03574 +13.47828 0.6993381 10.03574 +18.10068 0.6993381 10.03574 +24.30731 0.6993381 10.03574 +32.64117 0.6993381 10.03574 +43.83129 0.6993381 10.03574 +58.85664 0.6993381 10.03574 +-0.0175068 0.9419845 10.03574 +-0.01161267 0.9419845 10.03574 +-0.005718534 0.9419845 10.03574 +0.0001755984 0.9419845 10.03574 +0.006069731 0.9419845 10.03574 +0.01197402 0.9419845 10.03574 +0.01903886 0.9419845 10.03574 +0.02852504 0.9419845 10.03574 +0.04126244 0.9419845 10.03574 +0.05836535 0.9419845 10.03574 +0.08132997 0.9419845 10.03574 +0.1121653 0.9419845 10.03574 +0.1535689 0.9419845 10.03574 +0.2091628 0.9419845 10.03574 +0.2838106 0.9419845 10.03574 +0.3840425 0.9419845 10.03574 +0.518627 0.9419845 10.03574 +0.6993381 0.9419845 10.03574 +0.9419845 0.9419845 10.03574 +1.267794 0.9419845 10.03574 +1.705268 0.9419845 10.03574 +2.292679 0.9419845 10.03574 +3.081414 0.9419845 10.03574 +4.140474 0.9419845 10.03574 +5.562508 0.9419845 10.03574 +7.471917 0.9419845 10.03574 +10.03574 0.9419845 10.03574 +13.47828 0.9419845 10.03574 +18.10068 0.9419845 10.03574 +24.30731 0.9419845 10.03574 +32.64117 0.9419845 10.03574 +43.83129 0.9419845 10.03574 +58.85664 0.9419845 10.03574 +-0.0175068 1.267794 10.03574 +-0.01161267 1.267794 10.03574 +-0.005718534 1.267794 10.03574 +0.0001755984 1.267794 10.03574 +0.006069731 1.267794 10.03574 +0.01197402 1.267794 10.03574 +0.01903886 1.267794 10.03574 +0.02852504 1.267794 10.03574 +0.04126244 1.267794 10.03574 +0.05836535 1.267794 10.03574 +0.08132997 1.267794 10.03574 +0.1121653 1.267794 10.03574 +0.1535689 1.267794 10.03574 +0.2091628 1.267794 10.03574 +0.2838106 1.267794 10.03574 +0.3840425 1.267794 10.03574 +0.518627 1.267794 10.03574 +0.6993381 1.267794 10.03574 +0.9419845 1.267794 10.03574 +1.267794 1.267794 10.03574 +1.705268 1.267794 10.03574 +2.292679 1.267794 10.03574 +3.081414 1.267794 10.03574 +4.140474 1.267794 10.03574 +5.562508 1.267794 10.03574 +7.471917 1.267794 10.03574 +10.03574 1.267794 10.03574 +13.47828 1.267794 10.03574 +18.10068 1.267794 10.03574 +24.30731 1.267794 10.03574 +32.64117 1.267794 10.03574 +43.83129 1.267794 10.03574 +58.85664 1.267794 10.03574 +-0.0175068 1.705268 10.03574 +-0.01161267 1.705268 10.03574 +-0.005718534 1.705268 10.03574 +0.0001755984 1.705268 10.03574 +0.006069731 1.705268 10.03574 +0.01197402 1.705268 10.03574 +0.01903886 1.705268 10.03574 +0.02852504 1.705268 10.03574 +0.04126244 1.705268 10.03574 +0.05836535 1.705268 10.03574 +0.08132997 1.705268 10.03574 +0.1121653 1.705268 10.03574 +0.1535689 1.705268 10.03574 +0.2091628 1.705268 10.03574 +0.2838106 1.705268 10.03574 +0.3840425 1.705268 10.03574 +0.518627 1.705268 10.03574 +0.6993381 1.705268 10.03574 +0.9419845 1.705268 10.03574 +1.267794 1.705268 10.03574 +1.705268 1.705268 10.03574 +2.292679 1.705268 10.03574 +3.081414 1.705268 10.03574 +4.140474 1.705268 10.03574 +5.562508 1.705268 10.03574 +7.471917 1.705268 10.03574 +10.03574 1.705268 10.03574 +13.47828 1.705268 10.03574 +18.10068 1.705268 10.03574 +24.30731 1.705268 10.03574 +32.64117 1.705268 10.03574 +43.83129 1.705268 10.03574 +58.85664 1.705268 10.03574 +-0.0175068 2.292679 10.03574 +-0.01161267 2.292679 10.03574 +-0.005718534 2.292679 10.03574 +0.0001755984 2.292679 10.03574 +0.006069731 2.292679 10.03574 +0.01197402 2.292679 10.03574 +0.01903886 2.292679 10.03574 +0.02852504 2.292679 10.03574 +0.04126244 2.292679 10.03574 +0.05836535 2.292679 10.03574 +0.08132997 2.292679 10.03574 +0.1121653 2.292679 10.03574 +0.1535689 2.292679 10.03574 +0.2091628 2.292679 10.03574 +0.2838106 2.292679 10.03574 +0.3840425 2.292679 10.03574 +0.518627 2.292679 10.03574 +0.6993381 2.292679 10.03574 +0.9419845 2.292679 10.03574 +1.267794 2.292679 10.03574 +1.705268 2.292679 10.03574 +2.292679 2.292679 10.03574 +3.081414 2.292679 10.03574 +4.140474 2.292679 10.03574 +5.562508 2.292679 10.03574 +7.471917 2.292679 10.03574 +10.03574 2.292679 10.03574 +13.47828 2.292679 10.03574 +18.10068 2.292679 10.03574 +24.30731 2.292679 10.03574 +32.64117 2.292679 10.03574 +43.83129 2.292679 10.03574 +58.85664 2.292679 10.03574 +-0.0175068 3.081414 10.03574 +-0.01161267 3.081414 10.03574 +-0.005718534 3.081414 10.03574 +0.0001755984 3.081414 10.03574 +0.006069731 3.081414 10.03574 +0.01197402 3.081414 10.03574 +0.01903886 3.081414 10.03574 +0.02852504 3.081414 10.03574 +0.04126244 3.081414 10.03574 +0.05836535 3.081414 10.03574 +0.08132997 3.081414 10.03574 +0.1121653 3.081414 10.03574 +0.1535689 3.081414 10.03574 +0.2091628 3.081414 10.03574 +0.2838106 3.081414 10.03574 +0.3840425 3.081414 10.03574 +0.518627 3.081414 10.03574 +0.6993381 3.081414 10.03574 +0.9419845 3.081414 10.03574 +1.267794 3.081414 10.03574 +1.705268 3.081414 10.03574 +2.292679 3.081414 10.03574 +3.081414 3.081414 10.03574 +4.140474 3.081414 10.03574 +5.562508 3.081414 10.03574 +7.471917 3.081414 10.03574 +10.03574 3.081414 10.03574 +13.47828 3.081414 10.03574 +18.10068 3.081414 10.03574 +24.30731 3.081414 10.03574 +32.64117 3.081414 10.03574 +43.83129 3.081414 10.03574 +58.85664 3.081414 10.03574 +-0.0175068 4.140474 10.03574 +-0.01161267 4.140474 10.03574 +-0.005718534 4.140474 10.03574 +0.0001755984 4.140474 10.03574 +0.006069731 4.140474 10.03574 +0.01197402 4.140474 10.03574 +0.01903886 4.140474 10.03574 +0.02852504 4.140474 10.03574 +0.04126244 4.140474 10.03574 +0.05836535 4.140474 10.03574 +0.08132997 4.140474 10.03574 +0.1121653 4.140474 10.03574 +0.1535689 4.140474 10.03574 +0.2091628 4.140474 10.03574 +0.2838106 4.140474 10.03574 +0.3840425 4.140474 10.03574 +0.518627 4.140474 10.03574 +0.6993381 4.140474 10.03574 +0.9419845 4.140474 10.03574 +1.267794 4.140474 10.03574 +1.705268 4.140474 10.03574 +2.292679 4.140474 10.03574 +3.081414 4.140474 10.03574 +4.140474 4.140474 10.03574 +5.562508 4.140474 10.03574 +7.471917 4.140474 10.03574 +10.03574 4.140474 10.03574 +13.47828 4.140474 10.03574 +18.10068 4.140474 10.03574 +24.30731 4.140474 10.03574 +32.64117 4.140474 10.03574 +43.83129 4.140474 10.03574 +58.85664 4.140474 10.03574 +-0.0175068 5.562508 10.03574 +-0.01161267 5.562508 10.03574 +-0.005718534 5.562508 10.03574 +0.0001755984 5.562508 10.03574 +0.006069731 5.562508 10.03574 +0.01197402 5.562508 10.03574 +0.01903886 5.562508 10.03574 +0.02852504 5.562508 10.03574 +0.04126244 5.562508 10.03574 +0.05836535 5.562508 10.03574 +0.08132997 5.562508 10.03574 +0.1121653 5.562508 10.03574 +0.1535689 5.562508 10.03574 +0.2091628 5.562508 10.03574 +0.2838106 5.562508 10.03574 +0.3840425 5.562508 10.03574 +0.518627 5.562508 10.03574 +0.6993381 5.562508 10.03574 +0.9419845 5.562508 10.03574 +1.267794 5.562508 10.03574 +1.705268 5.562508 10.03574 +2.292679 5.562508 10.03574 +3.081414 5.562508 10.03574 +4.140474 5.562508 10.03574 +5.562508 5.562508 10.03574 +7.471917 5.562508 10.03574 +10.03574 5.562508 10.03574 +13.47828 5.562508 10.03574 +18.10068 5.562508 10.03574 +24.30731 5.562508 10.03574 +32.64117 5.562508 10.03574 +43.83129 5.562508 10.03574 +58.85664 5.562508 10.03574 +-0.0175068 7.471917 10.03574 +-0.01161267 7.471917 10.03574 +-0.005718534 7.471917 10.03574 +0.0001755984 7.471917 10.03574 +0.006069731 7.471917 10.03574 +0.01197402 7.471917 10.03574 +0.01903886 7.471917 10.03574 +0.02852504 7.471917 10.03574 +0.04126244 7.471917 10.03574 +0.05836535 7.471917 10.03574 +0.08132997 7.471917 10.03574 +0.1121653 7.471917 10.03574 +0.1535689 7.471917 10.03574 +0.2091628 7.471917 10.03574 +0.2838106 7.471917 10.03574 +0.3840425 7.471917 10.03574 +0.518627 7.471917 10.03574 +0.6993381 7.471917 10.03574 +0.9419845 7.471917 10.03574 +1.267794 7.471917 10.03574 +1.705268 7.471917 10.03574 +2.292679 7.471917 10.03574 +3.081414 7.471917 10.03574 +4.140474 7.471917 10.03574 +5.562508 7.471917 10.03574 +7.471917 7.471917 10.03574 +10.03574 7.471917 10.03574 +13.47828 7.471917 10.03574 +18.10068 7.471917 10.03574 +24.30731 7.471917 10.03574 +32.64117 7.471917 10.03574 +43.83129 7.471917 10.03574 +58.85664 7.471917 10.03574 +-0.0175068 10.03574 10.03574 +-0.01161267 10.03574 10.03574 +-0.005718534 10.03574 10.03574 +0.0001755984 10.03574 10.03574 +0.006069731 10.03574 10.03574 +0.01197402 10.03574 10.03574 +0.01903886 10.03574 10.03574 +0.02852504 10.03574 10.03574 +0.04126244 10.03574 10.03574 +0.05836535 10.03574 10.03574 +0.08132997 10.03574 10.03574 +0.1121653 10.03574 10.03574 +0.1535689 10.03574 10.03574 +0.2091628 10.03574 10.03574 +0.2838106 10.03574 10.03574 +0.3840425 10.03574 10.03574 +0.518627 10.03574 10.03574 +0.6993381 10.03574 10.03574 +0.9419845 10.03574 10.03574 +1.267794 10.03574 10.03574 +1.705268 10.03574 10.03574 +2.292679 10.03574 10.03574 +3.081414 10.03574 10.03574 +4.140474 10.03574 10.03574 +5.562508 10.03574 10.03574 +7.471917 10.03574 10.03574 +10.03574 10.03574 10.03574 +13.47828 10.03574 10.03574 +18.10068 10.03574 10.03574 +24.30731 10.03574 10.03574 +32.64117 10.03574 10.03574 +43.83129 10.03574 10.03574 +58.85664 10.03574 10.03574 +-0.0175068 13.47828 10.03574 +-0.01161267 13.47828 10.03574 +-0.005718534 13.47828 10.03574 +0.0001755984 13.47828 10.03574 +0.006069731 13.47828 10.03574 +0.01197402 13.47828 10.03574 +0.01903886 13.47828 10.03574 +0.02852504 13.47828 10.03574 +0.04126244 13.47828 10.03574 +0.05836535 13.47828 10.03574 +0.08132997 13.47828 10.03574 +0.1121653 13.47828 10.03574 +0.1535689 13.47828 10.03574 +0.2091628 13.47828 10.03574 +0.2838106 13.47828 10.03574 +0.3840425 13.47828 10.03574 +0.518627 13.47828 10.03574 +0.6993381 13.47828 10.03574 +0.9419845 13.47828 10.03574 +1.267794 13.47828 10.03574 +1.705268 13.47828 10.03574 +2.292679 13.47828 10.03574 +3.081414 13.47828 10.03574 +4.140474 13.47828 10.03574 +5.562508 13.47828 10.03574 +7.471917 13.47828 10.03574 +10.03574 13.47828 10.03574 +13.47828 13.47828 10.03574 +18.10068 13.47828 10.03574 +24.30731 13.47828 10.03574 +32.64117 13.47828 10.03574 +43.83129 13.47828 10.03574 +58.85664 13.47828 10.03574 +-0.0175068 18.10068 10.03574 +-0.01161267 18.10068 10.03574 +-0.005718534 18.10068 10.03574 +0.0001755984 18.10068 10.03574 +0.006069731 18.10068 10.03574 +0.01197402 18.10068 10.03574 +0.01903886 18.10068 10.03574 +0.02852504 18.10068 10.03574 +0.04126244 18.10068 10.03574 +0.05836535 18.10068 10.03574 +0.08132997 18.10068 10.03574 +0.1121653 18.10068 10.03574 +0.1535689 18.10068 10.03574 +0.2091628 18.10068 10.03574 +0.2838106 18.10068 10.03574 +0.3840425 18.10068 10.03574 +0.518627 18.10068 10.03574 +0.6993381 18.10068 10.03574 +0.9419845 18.10068 10.03574 +1.267794 18.10068 10.03574 +1.705268 18.10068 10.03574 +2.292679 18.10068 10.03574 +3.081414 18.10068 10.03574 +4.140474 18.10068 10.03574 +5.562508 18.10068 10.03574 +7.471917 18.10068 10.03574 +10.03574 18.10068 10.03574 +13.47828 18.10068 10.03574 +18.10068 18.10068 10.03574 +24.30731 18.10068 10.03574 +32.64117 18.10068 10.03574 +43.83129 18.10068 10.03574 +58.85664 18.10068 10.03574 +-0.0175068 24.30731 10.03574 +-0.01161267 24.30731 10.03574 +-0.005718534 24.30731 10.03574 +0.0001755984 24.30731 10.03574 +0.006069731 24.30731 10.03574 +0.01197402 24.30731 10.03574 +0.01903886 24.30731 10.03574 +0.02852504 24.30731 10.03574 +0.04126244 24.30731 10.03574 +0.05836535 24.30731 10.03574 +0.08132997 24.30731 10.03574 +0.1121653 24.30731 10.03574 +0.1535689 24.30731 10.03574 +0.2091628 24.30731 10.03574 +0.2838106 24.30731 10.03574 +0.3840425 24.30731 10.03574 +0.518627 24.30731 10.03574 +0.6993381 24.30731 10.03574 +0.9419845 24.30731 10.03574 +1.267794 24.30731 10.03574 +1.705268 24.30731 10.03574 +2.292679 24.30731 10.03574 +3.081414 24.30731 10.03574 +4.140474 24.30731 10.03574 +5.562508 24.30731 10.03574 +7.471917 24.30731 10.03574 +10.03574 24.30731 10.03574 +13.47828 24.30731 10.03574 +18.10068 24.30731 10.03574 +24.30731 24.30731 10.03574 +32.64117 24.30731 10.03574 +43.83129 24.30731 10.03574 +58.85664 24.30731 10.03574 +-0.0175068 32.64117 10.03574 +-0.01161267 32.64117 10.03574 +-0.005718534 32.64117 10.03574 +0.0001755984 32.64117 10.03574 +0.006069731 32.64117 10.03574 +0.01197402 32.64117 10.03574 +0.01903886 32.64117 10.03574 +0.02852504 32.64117 10.03574 +0.04126244 32.64117 10.03574 +0.05836535 32.64117 10.03574 +0.08132997 32.64117 10.03574 +0.1121653 32.64117 10.03574 +0.1535689 32.64117 10.03574 +0.2091628 32.64117 10.03574 +0.2838106 32.64117 10.03574 +0.3840425 32.64117 10.03574 +0.518627 32.64117 10.03574 +0.6993381 32.64117 10.03574 +0.9419845 32.64117 10.03574 +1.267794 32.64117 10.03574 +1.705268 32.64117 10.03574 +2.292679 32.64117 10.03574 +3.081414 32.64117 10.03574 +4.140474 32.64117 10.03574 +5.562508 32.64117 10.03574 +7.471917 32.64117 10.03574 +10.03574 32.64117 10.03574 +13.47828 32.64117 10.03574 +18.10068 32.64117 10.03574 +24.30731 32.64117 10.03574 +32.64117 32.64117 10.03574 +43.83129 32.64117 10.03574 +58.85664 32.64117 10.03574 +-0.0175068 43.83129 10.03574 +-0.01161267 43.83129 10.03574 +-0.005718534 43.83129 10.03574 +0.0001755984 43.83129 10.03574 +0.006069731 43.83129 10.03574 +0.01197402 43.83129 10.03574 +0.01903886 43.83129 10.03574 +0.02852504 43.83129 10.03574 +0.04126244 43.83129 10.03574 +0.05836535 43.83129 10.03574 +0.08132997 43.83129 10.03574 +0.1121653 43.83129 10.03574 +0.1535689 43.83129 10.03574 +0.2091628 43.83129 10.03574 +0.2838106 43.83129 10.03574 +0.3840425 43.83129 10.03574 +0.518627 43.83129 10.03574 +0.6993381 43.83129 10.03574 +0.9419845 43.83129 10.03574 +1.267794 43.83129 10.03574 +1.705268 43.83129 10.03574 +2.292679 43.83129 10.03574 +3.081414 43.83129 10.03574 +4.140474 43.83129 10.03574 +5.562508 43.83129 10.03574 +7.471917 43.83129 10.03574 +10.03574 43.83129 10.03574 +13.47828 43.83129 10.03574 +18.10068 43.83129 10.03574 +24.30731 43.83129 10.03574 +32.64117 43.83129 10.03574 +43.83129 43.83129 10.03574 +58.85664 43.83129 10.03574 +-0.0175068 58.85664 10.03574 +-0.01161267 58.85664 10.03574 +-0.005718534 58.85664 10.03574 +0.0001755984 58.85664 10.03574 +0.006069731 58.85664 10.03574 +0.01197402 58.85664 10.03574 +0.01903886 58.85664 10.03574 +0.02852504 58.85664 10.03574 +0.04126244 58.85664 10.03574 +0.05836535 58.85664 10.03574 +0.08132997 58.85664 10.03574 +0.1121653 58.85664 10.03574 +0.1535689 58.85664 10.03574 +0.2091628 58.85664 10.03574 +0.2838106 58.85664 10.03574 +0.3840425 58.85664 10.03574 +0.518627 58.85664 10.03574 +0.6993381 58.85664 10.03574 +0.9419845 58.85664 10.03574 +1.267794 58.85664 10.03574 +1.705268 58.85664 10.03574 +2.292679 58.85664 10.03574 +3.081414 58.85664 10.03574 +4.140474 58.85664 10.03574 +5.562508 58.85664 10.03574 +7.471917 58.85664 10.03574 +10.03574 58.85664 10.03574 +13.47828 58.85664 10.03574 +18.10068 58.85664 10.03574 +24.30731 58.85664 10.03574 +32.64117 58.85664 10.03574 +43.83129 58.85664 10.03574 +58.85664 58.85664 10.03574 +-0.0175068 -0.0175068 13.47828 +-0.01161267 -0.0175068 13.47828 +-0.005718534 -0.0175068 13.47828 +0.0001755984 -0.0175068 13.47828 +0.006069731 -0.0175068 13.47828 +0.01197402 -0.0175068 13.47828 +0.01903886 -0.0175068 13.47828 +0.02852504 -0.0175068 13.47828 +0.04126244 -0.0175068 13.47828 +0.05836535 -0.0175068 13.47828 +0.08132997 -0.0175068 13.47828 +0.1121653 -0.0175068 13.47828 +0.1535689 -0.0175068 13.47828 +0.2091628 -0.0175068 13.47828 +0.2838106 -0.0175068 13.47828 +0.3840425 -0.0175068 13.47828 +0.518627 -0.0175068 13.47828 +0.6993381 -0.0175068 13.47828 +0.9419845 -0.0175068 13.47828 +1.267794 -0.0175068 13.47828 +1.705268 -0.0175068 13.47828 +2.292679 -0.0175068 13.47828 +3.081414 -0.0175068 13.47828 +4.140474 -0.0175068 13.47828 +5.562508 -0.0175068 13.47828 +7.471917 -0.0175068 13.47828 +10.03574 -0.0175068 13.47828 +13.47828 -0.0175068 13.47828 +18.10068 -0.0175068 13.47828 +24.30731 -0.0175068 13.47828 +32.64117 -0.0175068 13.47828 +43.83129 -0.0175068 13.47828 +58.85664 -0.0175068 13.47828 +-0.0175068 -0.01161267 13.47828 +-0.01161267 -0.01161267 13.47828 +-0.005718534 -0.01161267 13.47828 +0.0001755984 -0.01161267 13.47828 +0.006069731 -0.01161267 13.47828 +0.01197402 -0.01161267 13.47828 +0.01903886 -0.01161267 13.47828 +0.02852504 -0.01161267 13.47828 +0.04126244 -0.01161267 13.47828 +0.05836535 -0.01161267 13.47828 +0.08132997 -0.01161267 13.47828 +0.1121653 -0.01161267 13.47828 +0.1535689 -0.01161267 13.47828 +0.2091628 -0.01161267 13.47828 +0.2838106 -0.01161267 13.47828 +0.3840425 -0.01161267 13.47828 +0.518627 -0.01161267 13.47828 +0.6993381 -0.01161267 13.47828 +0.9419845 -0.01161267 13.47828 +1.267794 -0.01161267 13.47828 +1.705268 -0.01161267 13.47828 +2.292679 -0.01161267 13.47828 +3.081414 -0.01161267 13.47828 +4.140474 -0.01161267 13.47828 +5.562508 -0.01161267 13.47828 +7.471917 -0.01161267 13.47828 +10.03574 -0.01161267 13.47828 +13.47828 -0.01161267 13.47828 +18.10068 -0.01161267 13.47828 +24.30731 -0.01161267 13.47828 +32.64117 -0.01161267 13.47828 +43.83129 -0.01161267 13.47828 +58.85664 -0.01161267 13.47828 +-0.0175068 -0.005718534 13.47828 +-0.01161267 -0.005718534 13.47828 +-0.005718534 -0.005718534 13.47828 +0.0001755984 -0.005718534 13.47828 +0.006069731 -0.005718534 13.47828 +0.01197402 -0.005718534 13.47828 +0.01903886 -0.005718534 13.47828 +0.02852504 -0.005718534 13.47828 +0.04126244 -0.005718534 13.47828 +0.05836535 -0.005718534 13.47828 +0.08132997 -0.005718534 13.47828 +0.1121653 -0.005718534 13.47828 +0.1535689 -0.005718534 13.47828 +0.2091628 -0.005718534 13.47828 +0.2838106 -0.005718534 13.47828 +0.3840425 -0.005718534 13.47828 +0.518627 -0.005718534 13.47828 +0.6993381 -0.005718534 13.47828 +0.9419845 -0.005718534 13.47828 +1.267794 -0.005718534 13.47828 +1.705268 -0.005718534 13.47828 +2.292679 -0.005718534 13.47828 +3.081414 -0.005718534 13.47828 +4.140474 -0.005718534 13.47828 +5.562508 -0.005718534 13.47828 +7.471917 -0.005718534 13.47828 +10.03574 -0.005718534 13.47828 +13.47828 -0.005718534 13.47828 +18.10068 -0.005718534 13.47828 +24.30731 -0.005718534 13.47828 +32.64117 -0.005718534 13.47828 +43.83129 -0.005718534 13.47828 +58.85664 -0.005718534 13.47828 +-0.0175068 0.0001755984 13.47828 +-0.01161267 0.0001755984 13.47828 +-0.005718534 0.0001755984 13.47828 +0.0001755984 0.0001755984 13.47828 +0.006069731 0.0001755984 13.47828 +0.01197402 0.0001755984 13.47828 +0.01903886 0.0001755984 13.47828 +0.02852504 0.0001755984 13.47828 +0.04126244 0.0001755984 13.47828 +0.05836535 0.0001755984 13.47828 +0.08132997 0.0001755984 13.47828 +0.1121653 0.0001755984 13.47828 +0.1535689 0.0001755984 13.47828 +0.2091628 0.0001755984 13.47828 +0.2838106 0.0001755984 13.47828 +0.3840425 0.0001755984 13.47828 +0.518627 0.0001755984 13.47828 +0.6993381 0.0001755984 13.47828 +0.9419845 0.0001755984 13.47828 +1.267794 0.0001755984 13.47828 +1.705268 0.0001755984 13.47828 +2.292679 0.0001755984 13.47828 +3.081414 0.0001755984 13.47828 +4.140474 0.0001755984 13.47828 +5.562508 0.0001755984 13.47828 +7.471917 0.0001755984 13.47828 +10.03574 0.0001755984 13.47828 +13.47828 0.0001755984 13.47828 +18.10068 0.0001755984 13.47828 +24.30731 0.0001755984 13.47828 +32.64117 0.0001755984 13.47828 +43.83129 0.0001755984 13.47828 +58.85664 0.0001755984 13.47828 +-0.0175068 0.006069731 13.47828 +-0.01161267 0.006069731 13.47828 +-0.005718534 0.006069731 13.47828 +0.0001755984 0.006069731 13.47828 +0.006069731 0.006069731 13.47828 +0.01197402 0.006069731 13.47828 +0.01903886 0.006069731 13.47828 +0.02852504 0.006069731 13.47828 +0.04126244 0.006069731 13.47828 +0.05836535 0.006069731 13.47828 +0.08132997 0.006069731 13.47828 +0.1121653 0.006069731 13.47828 +0.1535689 0.006069731 13.47828 +0.2091628 0.006069731 13.47828 +0.2838106 0.006069731 13.47828 +0.3840425 0.006069731 13.47828 +0.518627 0.006069731 13.47828 +0.6993381 0.006069731 13.47828 +0.9419845 0.006069731 13.47828 +1.267794 0.006069731 13.47828 +1.705268 0.006069731 13.47828 +2.292679 0.006069731 13.47828 +3.081414 0.006069731 13.47828 +4.140474 0.006069731 13.47828 +5.562508 0.006069731 13.47828 +7.471917 0.006069731 13.47828 +10.03574 0.006069731 13.47828 +13.47828 0.006069731 13.47828 +18.10068 0.006069731 13.47828 +24.30731 0.006069731 13.47828 +32.64117 0.006069731 13.47828 +43.83129 0.006069731 13.47828 +58.85664 0.006069731 13.47828 +-0.0175068 0.01197402 13.47828 +-0.01161267 0.01197402 13.47828 +-0.005718534 0.01197402 13.47828 +0.0001755984 0.01197402 13.47828 +0.006069731 0.01197402 13.47828 +0.01197402 0.01197402 13.47828 +0.01903886 0.01197402 13.47828 +0.02852504 0.01197402 13.47828 +0.04126244 0.01197402 13.47828 +0.05836535 0.01197402 13.47828 +0.08132997 0.01197402 13.47828 +0.1121653 0.01197402 13.47828 +0.1535689 0.01197402 13.47828 +0.2091628 0.01197402 13.47828 +0.2838106 0.01197402 13.47828 +0.3840425 0.01197402 13.47828 +0.518627 0.01197402 13.47828 +0.6993381 0.01197402 13.47828 +0.9419845 0.01197402 13.47828 +1.267794 0.01197402 13.47828 +1.705268 0.01197402 13.47828 +2.292679 0.01197402 13.47828 +3.081414 0.01197402 13.47828 +4.140474 0.01197402 13.47828 +5.562508 0.01197402 13.47828 +7.471917 0.01197402 13.47828 +10.03574 0.01197402 13.47828 +13.47828 0.01197402 13.47828 +18.10068 0.01197402 13.47828 +24.30731 0.01197402 13.47828 +32.64117 0.01197402 13.47828 +43.83129 0.01197402 13.47828 +58.85664 0.01197402 13.47828 +-0.0175068 0.01903886 13.47828 +-0.01161267 0.01903886 13.47828 +-0.005718534 0.01903886 13.47828 +0.0001755984 0.01903886 13.47828 +0.006069731 0.01903886 13.47828 +0.01197402 0.01903886 13.47828 +0.01903886 0.01903886 13.47828 +0.02852504 0.01903886 13.47828 +0.04126244 0.01903886 13.47828 +0.05836535 0.01903886 13.47828 +0.08132997 0.01903886 13.47828 +0.1121653 0.01903886 13.47828 +0.1535689 0.01903886 13.47828 +0.2091628 0.01903886 13.47828 +0.2838106 0.01903886 13.47828 +0.3840425 0.01903886 13.47828 +0.518627 0.01903886 13.47828 +0.6993381 0.01903886 13.47828 +0.9419845 0.01903886 13.47828 +1.267794 0.01903886 13.47828 +1.705268 0.01903886 13.47828 +2.292679 0.01903886 13.47828 +3.081414 0.01903886 13.47828 +4.140474 0.01903886 13.47828 +5.562508 0.01903886 13.47828 +7.471917 0.01903886 13.47828 +10.03574 0.01903886 13.47828 +13.47828 0.01903886 13.47828 +18.10068 0.01903886 13.47828 +24.30731 0.01903886 13.47828 +32.64117 0.01903886 13.47828 +43.83129 0.01903886 13.47828 +58.85664 0.01903886 13.47828 +-0.0175068 0.02852504 13.47828 +-0.01161267 0.02852504 13.47828 +-0.005718534 0.02852504 13.47828 +0.0001755984 0.02852504 13.47828 +0.006069731 0.02852504 13.47828 +0.01197402 0.02852504 13.47828 +0.01903886 0.02852504 13.47828 +0.02852504 0.02852504 13.47828 +0.04126244 0.02852504 13.47828 +0.05836535 0.02852504 13.47828 +0.08132997 0.02852504 13.47828 +0.1121653 0.02852504 13.47828 +0.1535689 0.02852504 13.47828 +0.2091628 0.02852504 13.47828 +0.2838106 0.02852504 13.47828 +0.3840425 0.02852504 13.47828 +0.518627 0.02852504 13.47828 +0.6993381 0.02852504 13.47828 +0.9419845 0.02852504 13.47828 +1.267794 0.02852504 13.47828 +1.705268 0.02852504 13.47828 +2.292679 0.02852504 13.47828 +3.081414 0.02852504 13.47828 +4.140474 0.02852504 13.47828 +5.562508 0.02852504 13.47828 +7.471917 0.02852504 13.47828 +10.03574 0.02852504 13.47828 +13.47828 0.02852504 13.47828 +18.10068 0.02852504 13.47828 +24.30731 0.02852504 13.47828 +32.64117 0.02852504 13.47828 +43.83129 0.02852504 13.47828 +58.85664 0.02852504 13.47828 +-0.0175068 0.04126244 13.47828 +-0.01161267 0.04126244 13.47828 +-0.005718534 0.04126244 13.47828 +0.0001755984 0.04126244 13.47828 +0.006069731 0.04126244 13.47828 +0.01197402 0.04126244 13.47828 +0.01903886 0.04126244 13.47828 +0.02852504 0.04126244 13.47828 +0.04126244 0.04126244 13.47828 +0.05836535 0.04126244 13.47828 +0.08132997 0.04126244 13.47828 +0.1121653 0.04126244 13.47828 +0.1535689 0.04126244 13.47828 +0.2091628 0.04126244 13.47828 +0.2838106 0.04126244 13.47828 +0.3840425 0.04126244 13.47828 +0.518627 0.04126244 13.47828 +0.6993381 0.04126244 13.47828 +0.9419845 0.04126244 13.47828 +1.267794 0.04126244 13.47828 +1.705268 0.04126244 13.47828 +2.292679 0.04126244 13.47828 +3.081414 0.04126244 13.47828 +4.140474 0.04126244 13.47828 +5.562508 0.04126244 13.47828 +7.471917 0.04126244 13.47828 +10.03574 0.04126244 13.47828 +13.47828 0.04126244 13.47828 +18.10068 0.04126244 13.47828 +24.30731 0.04126244 13.47828 +32.64117 0.04126244 13.47828 +43.83129 0.04126244 13.47828 +58.85664 0.04126244 13.47828 +-0.0175068 0.05836535 13.47828 +-0.01161267 0.05836535 13.47828 +-0.005718534 0.05836535 13.47828 +0.0001755984 0.05836535 13.47828 +0.006069731 0.05836535 13.47828 +0.01197402 0.05836535 13.47828 +0.01903886 0.05836535 13.47828 +0.02852504 0.05836535 13.47828 +0.04126244 0.05836535 13.47828 +0.05836535 0.05836535 13.47828 +0.08132997 0.05836535 13.47828 +0.1121653 0.05836535 13.47828 +0.1535689 0.05836535 13.47828 +0.2091628 0.05836535 13.47828 +0.2838106 0.05836535 13.47828 +0.3840425 0.05836535 13.47828 +0.518627 0.05836535 13.47828 +0.6993381 0.05836535 13.47828 +0.9419845 0.05836535 13.47828 +1.267794 0.05836535 13.47828 +1.705268 0.05836535 13.47828 +2.292679 0.05836535 13.47828 +3.081414 0.05836535 13.47828 +4.140474 0.05836535 13.47828 +5.562508 0.05836535 13.47828 +7.471917 0.05836535 13.47828 +10.03574 0.05836535 13.47828 +13.47828 0.05836535 13.47828 +18.10068 0.05836535 13.47828 +24.30731 0.05836535 13.47828 +32.64117 0.05836535 13.47828 +43.83129 0.05836535 13.47828 +58.85664 0.05836535 13.47828 +-0.0175068 0.08132997 13.47828 +-0.01161267 0.08132997 13.47828 +-0.005718534 0.08132997 13.47828 +0.0001755984 0.08132997 13.47828 +0.006069731 0.08132997 13.47828 +0.01197402 0.08132997 13.47828 +0.01903886 0.08132997 13.47828 +0.02852504 0.08132997 13.47828 +0.04126244 0.08132997 13.47828 +0.05836535 0.08132997 13.47828 +0.08132997 0.08132997 13.47828 +0.1121653 0.08132997 13.47828 +0.1535689 0.08132997 13.47828 +0.2091628 0.08132997 13.47828 +0.2838106 0.08132997 13.47828 +0.3840425 0.08132997 13.47828 +0.518627 0.08132997 13.47828 +0.6993381 0.08132997 13.47828 +0.9419845 0.08132997 13.47828 +1.267794 0.08132997 13.47828 +1.705268 0.08132997 13.47828 +2.292679 0.08132997 13.47828 +3.081414 0.08132997 13.47828 +4.140474 0.08132997 13.47828 +5.562508 0.08132997 13.47828 +7.471917 0.08132997 13.47828 +10.03574 0.08132997 13.47828 +13.47828 0.08132997 13.47828 +18.10068 0.08132997 13.47828 +24.30731 0.08132997 13.47828 +32.64117 0.08132997 13.47828 +43.83129 0.08132997 13.47828 +58.85664 0.08132997 13.47828 +-0.0175068 0.1121653 13.47828 +-0.01161267 0.1121653 13.47828 +-0.005718534 0.1121653 13.47828 +0.0001755984 0.1121653 13.47828 +0.006069731 0.1121653 13.47828 +0.01197402 0.1121653 13.47828 +0.01903886 0.1121653 13.47828 +0.02852504 0.1121653 13.47828 +0.04126244 0.1121653 13.47828 +0.05836535 0.1121653 13.47828 +0.08132997 0.1121653 13.47828 +0.1121653 0.1121653 13.47828 +0.1535689 0.1121653 13.47828 +0.2091628 0.1121653 13.47828 +0.2838106 0.1121653 13.47828 +0.3840425 0.1121653 13.47828 +0.518627 0.1121653 13.47828 +0.6993381 0.1121653 13.47828 +0.9419845 0.1121653 13.47828 +1.267794 0.1121653 13.47828 +1.705268 0.1121653 13.47828 +2.292679 0.1121653 13.47828 +3.081414 0.1121653 13.47828 +4.140474 0.1121653 13.47828 +5.562508 0.1121653 13.47828 +7.471917 0.1121653 13.47828 +10.03574 0.1121653 13.47828 +13.47828 0.1121653 13.47828 +18.10068 0.1121653 13.47828 +24.30731 0.1121653 13.47828 +32.64117 0.1121653 13.47828 +43.83129 0.1121653 13.47828 +58.85664 0.1121653 13.47828 +-0.0175068 0.1535689 13.47828 +-0.01161267 0.1535689 13.47828 +-0.005718534 0.1535689 13.47828 +0.0001755984 0.1535689 13.47828 +0.006069731 0.1535689 13.47828 +0.01197402 0.1535689 13.47828 +0.01903886 0.1535689 13.47828 +0.02852504 0.1535689 13.47828 +0.04126244 0.1535689 13.47828 +0.05836535 0.1535689 13.47828 +0.08132997 0.1535689 13.47828 +0.1121653 0.1535689 13.47828 +0.1535689 0.1535689 13.47828 +0.2091628 0.1535689 13.47828 +0.2838106 0.1535689 13.47828 +0.3840425 0.1535689 13.47828 +0.518627 0.1535689 13.47828 +0.6993381 0.1535689 13.47828 +0.9419845 0.1535689 13.47828 +1.267794 0.1535689 13.47828 +1.705268 0.1535689 13.47828 +2.292679 0.1535689 13.47828 +3.081414 0.1535689 13.47828 +4.140474 0.1535689 13.47828 +5.562508 0.1535689 13.47828 +7.471917 0.1535689 13.47828 +10.03574 0.1535689 13.47828 +13.47828 0.1535689 13.47828 +18.10068 0.1535689 13.47828 +24.30731 0.1535689 13.47828 +32.64117 0.1535689 13.47828 +43.83129 0.1535689 13.47828 +58.85664 0.1535689 13.47828 +-0.0175068 0.2091628 13.47828 +-0.01161267 0.2091628 13.47828 +-0.005718534 0.2091628 13.47828 +0.0001755984 0.2091628 13.47828 +0.006069731 0.2091628 13.47828 +0.01197402 0.2091628 13.47828 +0.01903886 0.2091628 13.47828 +0.02852504 0.2091628 13.47828 +0.04126244 0.2091628 13.47828 +0.05836535 0.2091628 13.47828 +0.08132997 0.2091628 13.47828 +0.1121653 0.2091628 13.47828 +0.1535689 0.2091628 13.47828 +0.2091628 0.2091628 13.47828 +0.2838106 0.2091628 13.47828 +0.3840425 0.2091628 13.47828 +0.518627 0.2091628 13.47828 +0.6993381 0.2091628 13.47828 +0.9419845 0.2091628 13.47828 +1.267794 0.2091628 13.47828 +1.705268 0.2091628 13.47828 +2.292679 0.2091628 13.47828 +3.081414 0.2091628 13.47828 +4.140474 0.2091628 13.47828 +5.562508 0.2091628 13.47828 +7.471917 0.2091628 13.47828 +10.03574 0.2091628 13.47828 +13.47828 0.2091628 13.47828 +18.10068 0.2091628 13.47828 +24.30731 0.2091628 13.47828 +32.64117 0.2091628 13.47828 +43.83129 0.2091628 13.47828 +58.85664 0.2091628 13.47828 +-0.0175068 0.2838106 13.47828 +-0.01161267 0.2838106 13.47828 +-0.005718534 0.2838106 13.47828 +0.0001755984 0.2838106 13.47828 +0.006069731 0.2838106 13.47828 +0.01197402 0.2838106 13.47828 +0.01903886 0.2838106 13.47828 +0.02852504 0.2838106 13.47828 +0.04126244 0.2838106 13.47828 +0.05836535 0.2838106 13.47828 +0.08132997 0.2838106 13.47828 +0.1121653 0.2838106 13.47828 +0.1535689 0.2838106 13.47828 +0.2091628 0.2838106 13.47828 +0.2838106 0.2838106 13.47828 +0.3840425 0.2838106 13.47828 +0.518627 0.2838106 13.47828 +0.6993381 0.2838106 13.47828 +0.9419845 0.2838106 13.47828 +1.267794 0.2838106 13.47828 +1.705268 0.2838106 13.47828 +2.292679 0.2838106 13.47828 +3.081414 0.2838106 13.47828 +4.140474 0.2838106 13.47828 +5.562508 0.2838106 13.47828 +7.471917 0.2838106 13.47828 +10.03574 0.2838106 13.47828 +13.47828 0.2838106 13.47828 +18.10068 0.2838106 13.47828 +24.30731 0.2838106 13.47828 +32.64117 0.2838106 13.47828 +43.83129 0.2838106 13.47828 +58.85664 0.2838106 13.47828 +-0.0175068 0.3840425 13.47828 +-0.01161267 0.3840425 13.47828 +-0.005718534 0.3840425 13.47828 +0.0001755984 0.3840425 13.47828 +0.006069731 0.3840425 13.47828 +0.01197402 0.3840425 13.47828 +0.01903886 0.3840425 13.47828 +0.02852504 0.3840425 13.47828 +0.04126244 0.3840425 13.47828 +0.05836535 0.3840425 13.47828 +0.08132997 0.3840425 13.47828 +0.1121653 0.3840425 13.47828 +0.1535689 0.3840425 13.47828 +0.2091628 0.3840425 13.47828 +0.2838106 0.3840425 13.47828 +0.3840425 0.3840425 13.47828 +0.518627 0.3840425 13.47828 +0.6993381 0.3840425 13.47828 +0.9419845 0.3840425 13.47828 +1.267794 0.3840425 13.47828 +1.705268 0.3840425 13.47828 +2.292679 0.3840425 13.47828 +3.081414 0.3840425 13.47828 +4.140474 0.3840425 13.47828 +5.562508 0.3840425 13.47828 +7.471917 0.3840425 13.47828 +10.03574 0.3840425 13.47828 +13.47828 0.3840425 13.47828 +18.10068 0.3840425 13.47828 +24.30731 0.3840425 13.47828 +32.64117 0.3840425 13.47828 +43.83129 0.3840425 13.47828 +58.85664 0.3840425 13.47828 +-0.0175068 0.518627 13.47828 +-0.01161267 0.518627 13.47828 +-0.005718534 0.518627 13.47828 +0.0001755984 0.518627 13.47828 +0.006069731 0.518627 13.47828 +0.01197402 0.518627 13.47828 +0.01903886 0.518627 13.47828 +0.02852504 0.518627 13.47828 +0.04126244 0.518627 13.47828 +0.05836535 0.518627 13.47828 +0.08132997 0.518627 13.47828 +0.1121653 0.518627 13.47828 +0.1535689 0.518627 13.47828 +0.2091628 0.518627 13.47828 +0.2838106 0.518627 13.47828 +0.3840425 0.518627 13.47828 +0.518627 0.518627 13.47828 +0.6993381 0.518627 13.47828 +0.9419845 0.518627 13.47828 +1.267794 0.518627 13.47828 +1.705268 0.518627 13.47828 +2.292679 0.518627 13.47828 +3.081414 0.518627 13.47828 +4.140474 0.518627 13.47828 +5.562508 0.518627 13.47828 +7.471917 0.518627 13.47828 +10.03574 0.518627 13.47828 +13.47828 0.518627 13.47828 +18.10068 0.518627 13.47828 +24.30731 0.518627 13.47828 +32.64117 0.518627 13.47828 +43.83129 0.518627 13.47828 +58.85664 0.518627 13.47828 +-0.0175068 0.6993381 13.47828 +-0.01161267 0.6993381 13.47828 +-0.005718534 0.6993381 13.47828 +0.0001755984 0.6993381 13.47828 +0.006069731 0.6993381 13.47828 +0.01197402 0.6993381 13.47828 +0.01903886 0.6993381 13.47828 +0.02852504 0.6993381 13.47828 +0.04126244 0.6993381 13.47828 +0.05836535 0.6993381 13.47828 +0.08132997 0.6993381 13.47828 +0.1121653 0.6993381 13.47828 +0.1535689 0.6993381 13.47828 +0.2091628 0.6993381 13.47828 +0.2838106 0.6993381 13.47828 +0.3840425 0.6993381 13.47828 +0.518627 0.6993381 13.47828 +0.6993381 0.6993381 13.47828 +0.9419845 0.6993381 13.47828 +1.267794 0.6993381 13.47828 +1.705268 0.6993381 13.47828 +2.292679 0.6993381 13.47828 +3.081414 0.6993381 13.47828 +4.140474 0.6993381 13.47828 +5.562508 0.6993381 13.47828 +7.471917 0.6993381 13.47828 +10.03574 0.6993381 13.47828 +13.47828 0.6993381 13.47828 +18.10068 0.6993381 13.47828 +24.30731 0.6993381 13.47828 +32.64117 0.6993381 13.47828 +43.83129 0.6993381 13.47828 +58.85664 0.6993381 13.47828 +-0.0175068 0.9419845 13.47828 +-0.01161267 0.9419845 13.47828 +-0.005718534 0.9419845 13.47828 +0.0001755984 0.9419845 13.47828 +0.006069731 0.9419845 13.47828 +0.01197402 0.9419845 13.47828 +0.01903886 0.9419845 13.47828 +0.02852504 0.9419845 13.47828 +0.04126244 0.9419845 13.47828 +0.05836535 0.9419845 13.47828 +0.08132997 0.9419845 13.47828 +0.1121653 0.9419845 13.47828 +0.1535689 0.9419845 13.47828 +0.2091628 0.9419845 13.47828 +0.2838106 0.9419845 13.47828 +0.3840425 0.9419845 13.47828 +0.518627 0.9419845 13.47828 +0.6993381 0.9419845 13.47828 +0.9419845 0.9419845 13.47828 +1.267794 0.9419845 13.47828 +1.705268 0.9419845 13.47828 +2.292679 0.9419845 13.47828 +3.081414 0.9419845 13.47828 +4.140474 0.9419845 13.47828 +5.562508 0.9419845 13.47828 +7.471917 0.9419845 13.47828 +10.03574 0.9419845 13.47828 +13.47828 0.9419845 13.47828 +18.10068 0.9419845 13.47828 +24.30731 0.9419845 13.47828 +32.64117 0.9419845 13.47828 +43.83129 0.9419845 13.47828 +58.85664 0.9419845 13.47828 +-0.0175068 1.267794 13.47828 +-0.01161267 1.267794 13.47828 +-0.005718534 1.267794 13.47828 +0.0001755984 1.267794 13.47828 +0.006069731 1.267794 13.47828 +0.01197402 1.267794 13.47828 +0.01903886 1.267794 13.47828 +0.02852504 1.267794 13.47828 +0.04126244 1.267794 13.47828 +0.05836535 1.267794 13.47828 +0.08132997 1.267794 13.47828 +0.1121653 1.267794 13.47828 +0.1535689 1.267794 13.47828 +0.2091628 1.267794 13.47828 +0.2838106 1.267794 13.47828 +0.3840425 1.267794 13.47828 +0.518627 1.267794 13.47828 +0.6993381 1.267794 13.47828 +0.9419845 1.267794 13.47828 +1.267794 1.267794 13.47828 +1.705268 1.267794 13.47828 +2.292679 1.267794 13.47828 +3.081414 1.267794 13.47828 +4.140474 1.267794 13.47828 +5.562508 1.267794 13.47828 +7.471917 1.267794 13.47828 +10.03574 1.267794 13.47828 +13.47828 1.267794 13.47828 +18.10068 1.267794 13.47828 +24.30731 1.267794 13.47828 +32.64117 1.267794 13.47828 +43.83129 1.267794 13.47828 +58.85664 1.267794 13.47828 +-0.0175068 1.705268 13.47828 +-0.01161267 1.705268 13.47828 +-0.005718534 1.705268 13.47828 +0.0001755984 1.705268 13.47828 +0.006069731 1.705268 13.47828 +0.01197402 1.705268 13.47828 +0.01903886 1.705268 13.47828 +0.02852504 1.705268 13.47828 +0.04126244 1.705268 13.47828 +0.05836535 1.705268 13.47828 +0.08132997 1.705268 13.47828 +0.1121653 1.705268 13.47828 +0.1535689 1.705268 13.47828 +0.2091628 1.705268 13.47828 +0.2838106 1.705268 13.47828 +0.3840425 1.705268 13.47828 +0.518627 1.705268 13.47828 +0.6993381 1.705268 13.47828 +0.9419845 1.705268 13.47828 +1.267794 1.705268 13.47828 +1.705268 1.705268 13.47828 +2.292679 1.705268 13.47828 +3.081414 1.705268 13.47828 +4.140474 1.705268 13.47828 +5.562508 1.705268 13.47828 +7.471917 1.705268 13.47828 +10.03574 1.705268 13.47828 +13.47828 1.705268 13.47828 +18.10068 1.705268 13.47828 +24.30731 1.705268 13.47828 +32.64117 1.705268 13.47828 +43.83129 1.705268 13.47828 +58.85664 1.705268 13.47828 +-0.0175068 2.292679 13.47828 +-0.01161267 2.292679 13.47828 +-0.005718534 2.292679 13.47828 +0.0001755984 2.292679 13.47828 +0.006069731 2.292679 13.47828 +0.01197402 2.292679 13.47828 +0.01903886 2.292679 13.47828 +0.02852504 2.292679 13.47828 +0.04126244 2.292679 13.47828 +0.05836535 2.292679 13.47828 +0.08132997 2.292679 13.47828 +0.1121653 2.292679 13.47828 +0.1535689 2.292679 13.47828 +0.2091628 2.292679 13.47828 +0.2838106 2.292679 13.47828 +0.3840425 2.292679 13.47828 +0.518627 2.292679 13.47828 +0.6993381 2.292679 13.47828 +0.9419845 2.292679 13.47828 +1.267794 2.292679 13.47828 +1.705268 2.292679 13.47828 +2.292679 2.292679 13.47828 +3.081414 2.292679 13.47828 +4.140474 2.292679 13.47828 +5.562508 2.292679 13.47828 +7.471917 2.292679 13.47828 +10.03574 2.292679 13.47828 +13.47828 2.292679 13.47828 +18.10068 2.292679 13.47828 +24.30731 2.292679 13.47828 +32.64117 2.292679 13.47828 +43.83129 2.292679 13.47828 +58.85664 2.292679 13.47828 +-0.0175068 3.081414 13.47828 +-0.01161267 3.081414 13.47828 +-0.005718534 3.081414 13.47828 +0.0001755984 3.081414 13.47828 +0.006069731 3.081414 13.47828 +0.01197402 3.081414 13.47828 +0.01903886 3.081414 13.47828 +0.02852504 3.081414 13.47828 +0.04126244 3.081414 13.47828 +0.05836535 3.081414 13.47828 +0.08132997 3.081414 13.47828 +0.1121653 3.081414 13.47828 +0.1535689 3.081414 13.47828 +0.2091628 3.081414 13.47828 +0.2838106 3.081414 13.47828 +0.3840425 3.081414 13.47828 +0.518627 3.081414 13.47828 +0.6993381 3.081414 13.47828 +0.9419845 3.081414 13.47828 +1.267794 3.081414 13.47828 +1.705268 3.081414 13.47828 +2.292679 3.081414 13.47828 +3.081414 3.081414 13.47828 +4.140474 3.081414 13.47828 +5.562508 3.081414 13.47828 +7.471917 3.081414 13.47828 +10.03574 3.081414 13.47828 +13.47828 3.081414 13.47828 +18.10068 3.081414 13.47828 +24.30731 3.081414 13.47828 +32.64117 3.081414 13.47828 +43.83129 3.081414 13.47828 +58.85664 3.081414 13.47828 +-0.0175068 4.140474 13.47828 +-0.01161267 4.140474 13.47828 +-0.005718534 4.140474 13.47828 +0.0001755984 4.140474 13.47828 +0.006069731 4.140474 13.47828 +0.01197402 4.140474 13.47828 +0.01903886 4.140474 13.47828 +0.02852504 4.140474 13.47828 +0.04126244 4.140474 13.47828 +0.05836535 4.140474 13.47828 +0.08132997 4.140474 13.47828 +0.1121653 4.140474 13.47828 +0.1535689 4.140474 13.47828 +0.2091628 4.140474 13.47828 +0.2838106 4.140474 13.47828 +0.3840425 4.140474 13.47828 +0.518627 4.140474 13.47828 +0.6993381 4.140474 13.47828 +0.9419845 4.140474 13.47828 +1.267794 4.140474 13.47828 +1.705268 4.140474 13.47828 +2.292679 4.140474 13.47828 +3.081414 4.140474 13.47828 +4.140474 4.140474 13.47828 +5.562508 4.140474 13.47828 +7.471917 4.140474 13.47828 +10.03574 4.140474 13.47828 +13.47828 4.140474 13.47828 +18.10068 4.140474 13.47828 +24.30731 4.140474 13.47828 +32.64117 4.140474 13.47828 +43.83129 4.140474 13.47828 +58.85664 4.140474 13.47828 +-0.0175068 5.562508 13.47828 +-0.01161267 5.562508 13.47828 +-0.005718534 5.562508 13.47828 +0.0001755984 5.562508 13.47828 +0.006069731 5.562508 13.47828 +0.01197402 5.562508 13.47828 +0.01903886 5.562508 13.47828 +0.02852504 5.562508 13.47828 +0.04126244 5.562508 13.47828 +0.05836535 5.562508 13.47828 +0.08132997 5.562508 13.47828 +0.1121653 5.562508 13.47828 +0.1535689 5.562508 13.47828 +0.2091628 5.562508 13.47828 +0.2838106 5.562508 13.47828 +0.3840425 5.562508 13.47828 +0.518627 5.562508 13.47828 +0.6993381 5.562508 13.47828 +0.9419845 5.562508 13.47828 +1.267794 5.562508 13.47828 +1.705268 5.562508 13.47828 +2.292679 5.562508 13.47828 +3.081414 5.562508 13.47828 +4.140474 5.562508 13.47828 +5.562508 5.562508 13.47828 +7.471917 5.562508 13.47828 +10.03574 5.562508 13.47828 +13.47828 5.562508 13.47828 +18.10068 5.562508 13.47828 +24.30731 5.562508 13.47828 +32.64117 5.562508 13.47828 +43.83129 5.562508 13.47828 +58.85664 5.562508 13.47828 +-0.0175068 7.471917 13.47828 +-0.01161267 7.471917 13.47828 +-0.005718534 7.471917 13.47828 +0.0001755984 7.471917 13.47828 +0.006069731 7.471917 13.47828 +0.01197402 7.471917 13.47828 +0.01903886 7.471917 13.47828 +0.02852504 7.471917 13.47828 +0.04126244 7.471917 13.47828 +0.05836535 7.471917 13.47828 +0.08132997 7.471917 13.47828 +0.1121653 7.471917 13.47828 +0.1535689 7.471917 13.47828 +0.2091628 7.471917 13.47828 +0.2838106 7.471917 13.47828 +0.3840425 7.471917 13.47828 +0.518627 7.471917 13.47828 +0.6993381 7.471917 13.47828 +0.9419845 7.471917 13.47828 +1.267794 7.471917 13.47828 +1.705268 7.471917 13.47828 +2.292679 7.471917 13.47828 +3.081414 7.471917 13.47828 +4.140474 7.471917 13.47828 +5.562508 7.471917 13.47828 +7.471917 7.471917 13.47828 +10.03574 7.471917 13.47828 +13.47828 7.471917 13.47828 +18.10068 7.471917 13.47828 +24.30731 7.471917 13.47828 +32.64117 7.471917 13.47828 +43.83129 7.471917 13.47828 +58.85664 7.471917 13.47828 +-0.0175068 10.03574 13.47828 +-0.01161267 10.03574 13.47828 +-0.005718534 10.03574 13.47828 +0.0001755984 10.03574 13.47828 +0.006069731 10.03574 13.47828 +0.01197402 10.03574 13.47828 +0.01903886 10.03574 13.47828 +0.02852504 10.03574 13.47828 +0.04126244 10.03574 13.47828 +0.05836535 10.03574 13.47828 +0.08132997 10.03574 13.47828 +0.1121653 10.03574 13.47828 +0.1535689 10.03574 13.47828 +0.2091628 10.03574 13.47828 +0.2838106 10.03574 13.47828 +0.3840425 10.03574 13.47828 +0.518627 10.03574 13.47828 +0.6993381 10.03574 13.47828 +0.9419845 10.03574 13.47828 +1.267794 10.03574 13.47828 +1.705268 10.03574 13.47828 +2.292679 10.03574 13.47828 +3.081414 10.03574 13.47828 +4.140474 10.03574 13.47828 +5.562508 10.03574 13.47828 +7.471917 10.03574 13.47828 +10.03574 10.03574 13.47828 +13.47828 10.03574 13.47828 +18.10068 10.03574 13.47828 +24.30731 10.03574 13.47828 +32.64117 10.03574 13.47828 +43.83129 10.03574 13.47828 +58.85664 10.03574 13.47828 +-0.0175068 13.47828 13.47828 +-0.01161267 13.47828 13.47828 +-0.005718534 13.47828 13.47828 +0.0001755984 13.47828 13.47828 +0.006069731 13.47828 13.47828 +0.01197402 13.47828 13.47828 +0.01903886 13.47828 13.47828 +0.02852504 13.47828 13.47828 +0.04126244 13.47828 13.47828 +0.05836535 13.47828 13.47828 +0.08132997 13.47828 13.47828 +0.1121653 13.47828 13.47828 +0.1535689 13.47828 13.47828 +0.2091628 13.47828 13.47828 +0.2838106 13.47828 13.47828 +0.3840425 13.47828 13.47828 +0.518627 13.47828 13.47828 +0.6993381 13.47828 13.47828 +0.9419845 13.47828 13.47828 +1.267794 13.47828 13.47828 +1.705268 13.47828 13.47828 +2.292679 13.47828 13.47828 +3.081414 13.47828 13.47828 +4.140474 13.47828 13.47828 +5.562508 13.47828 13.47828 +7.471917 13.47828 13.47828 +10.03574 13.47828 13.47828 +13.47828 13.47828 13.47828 +18.10068 13.47828 13.47828 +24.30731 13.47828 13.47828 +32.64117 13.47828 13.47828 +43.83129 13.47828 13.47828 +58.85664 13.47828 13.47828 +-0.0175068 18.10068 13.47828 +-0.01161267 18.10068 13.47828 +-0.005718534 18.10068 13.47828 +0.0001755984 18.10068 13.47828 +0.006069731 18.10068 13.47828 +0.01197402 18.10068 13.47828 +0.01903886 18.10068 13.47828 +0.02852504 18.10068 13.47828 +0.04126244 18.10068 13.47828 +0.05836535 18.10068 13.47828 +0.08132997 18.10068 13.47828 +0.1121653 18.10068 13.47828 +0.1535689 18.10068 13.47828 +0.2091628 18.10068 13.47828 +0.2838106 18.10068 13.47828 +0.3840425 18.10068 13.47828 +0.518627 18.10068 13.47828 +0.6993381 18.10068 13.47828 +0.9419845 18.10068 13.47828 +1.267794 18.10068 13.47828 +1.705268 18.10068 13.47828 +2.292679 18.10068 13.47828 +3.081414 18.10068 13.47828 +4.140474 18.10068 13.47828 +5.562508 18.10068 13.47828 +7.471917 18.10068 13.47828 +10.03574 18.10068 13.47828 +13.47828 18.10068 13.47828 +18.10068 18.10068 13.47828 +24.30731 18.10068 13.47828 +32.64117 18.10068 13.47828 +43.83129 18.10068 13.47828 +58.85664 18.10068 13.47828 +-0.0175068 24.30731 13.47828 +-0.01161267 24.30731 13.47828 +-0.005718534 24.30731 13.47828 +0.0001755984 24.30731 13.47828 +0.006069731 24.30731 13.47828 +0.01197402 24.30731 13.47828 +0.01903886 24.30731 13.47828 +0.02852504 24.30731 13.47828 +0.04126244 24.30731 13.47828 +0.05836535 24.30731 13.47828 +0.08132997 24.30731 13.47828 +0.1121653 24.30731 13.47828 +0.1535689 24.30731 13.47828 +0.2091628 24.30731 13.47828 +0.2838106 24.30731 13.47828 +0.3840425 24.30731 13.47828 +0.518627 24.30731 13.47828 +0.6993381 24.30731 13.47828 +0.9419845 24.30731 13.47828 +1.267794 24.30731 13.47828 +1.705268 24.30731 13.47828 +2.292679 24.30731 13.47828 +3.081414 24.30731 13.47828 +4.140474 24.30731 13.47828 +5.562508 24.30731 13.47828 +7.471917 24.30731 13.47828 +10.03574 24.30731 13.47828 +13.47828 24.30731 13.47828 +18.10068 24.30731 13.47828 +24.30731 24.30731 13.47828 +32.64117 24.30731 13.47828 +43.83129 24.30731 13.47828 +58.85664 24.30731 13.47828 +-0.0175068 32.64117 13.47828 +-0.01161267 32.64117 13.47828 +-0.005718534 32.64117 13.47828 +0.0001755984 32.64117 13.47828 +0.006069731 32.64117 13.47828 +0.01197402 32.64117 13.47828 +0.01903886 32.64117 13.47828 +0.02852504 32.64117 13.47828 +0.04126244 32.64117 13.47828 +0.05836535 32.64117 13.47828 +0.08132997 32.64117 13.47828 +0.1121653 32.64117 13.47828 +0.1535689 32.64117 13.47828 +0.2091628 32.64117 13.47828 +0.2838106 32.64117 13.47828 +0.3840425 32.64117 13.47828 +0.518627 32.64117 13.47828 +0.6993381 32.64117 13.47828 +0.9419845 32.64117 13.47828 +1.267794 32.64117 13.47828 +1.705268 32.64117 13.47828 +2.292679 32.64117 13.47828 +3.081414 32.64117 13.47828 +4.140474 32.64117 13.47828 +5.562508 32.64117 13.47828 +7.471917 32.64117 13.47828 +10.03574 32.64117 13.47828 +13.47828 32.64117 13.47828 +18.10068 32.64117 13.47828 +24.30731 32.64117 13.47828 +32.64117 32.64117 13.47828 +43.83129 32.64117 13.47828 +58.85664 32.64117 13.47828 +-0.0175068 43.83129 13.47828 +-0.01161267 43.83129 13.47828 +-0.005718534 43.83129 13.47828 +0.0001755984 43.83129 13.47828 +0.006069731 43.83129 13.47828 +0.01197402 43.83129 13.47828 +0.01903886 43.83129 13.47828 +0.02852504 43.83129 13.47828 +0.04126244 43.83129 13.47828 +0.05836535 43.83129 13.47828 +0.08132997 43.83129 13.47828 +0.1121653 43.83129 13.47828 +0.1535689 43.83129 13.47828 +0.2091628 43.83129 13.47828 +0.2838106 43.83129 13.47828 +0.3840425 43.83129 13.47828 +0.518627 43.83129 13.47828 +0.6993381 43.83129 13.47828 +0.9419845 43.83129 13.47828 +1.267794 43.83129 13.47828 +1.705268 43.83129 13.47828 +2.292679 43.83129 13.47828 +3.081414 43.83129 13.47828 +4.140474 43.83129 13.47828 +5.562508 43.83129 13.47828 +7.471917 43.83129 13.47828 +10.03574 43.83129 13.47828 +13.47828 43.83129 13.47828 +18.10068 43.83129 13.47828 +24.30731 43.83129 13.47828 +32.64117 43.83129 13.47828 +43.83129 43.83129 13.47828 +58.85664 43.83129 13.47828 +-0.0175068 58.85664 13.47828 +-0.01161267 58.85664 13.47828 +-0.005718534 58.85664 13.47828 +0.0001755984 58.85664 13.47828 +0.006069731 58.85664 13.47828 +0.01197402 58.85664 13.47828 +0.01903886 58.85664 13.47828 +0.02852504 58.85664 13.47828 +0.04126244 58.85664 13.47828 +0.05836535 58.85664 13.47828 +0.08132997 58.85664 13.47828 +0.1121653 58.85664 13.47828 +0.1535689 58.85664 13.47828 +0.2091628 58.85664 13.47828 +0.2838106 58.85664 13.47828 +0.3840425 58.85664 13.47828 +0.518627 58.85664 13.47828 +0.6993381 58.85664 13.47828 +0.9419845 58.85664 13.47828 +1.267794 58.85664 13.47828 +1.705268 58.85664 13.47828 +2.292679 58.85664 13.47828 +3.081414 58.85664 13.47828 +4.140474 58.85664 13.47828 +5.562508 58.85664 13.47828 +7.471917 58.85664 13.47828 +10.03574 58.85664 13.47828 +13.47828 58.85664 13.47828 +18.10068 58.85664 13.47828 +24.30731 58.85664 13.47828 +32.64117 58.85664 13.47828 +43.83129 58.85664 13.47828 +58.85664 58.85664 13.47828 +-0.0175068 -0.0175068 18.10068 +-0.01161267 -0.0175068 18.10068 +-0.005718534 -0.0175068 18.10068 +0.0001755984 -0.0175068 18.10068 +0.006069731 -0.0175068 18.10068 +0.01197402 -0.0175068 18.10068 +0.01903886 -0.0175068 18.10068 +0.02852504 -0.0175068 18.10068 +0.04126244 -0.0175068 18.10068 +0.05836535 -0.0175068 18.10068 +0.08132997 -0.0175068 18.10068 +0.1121653 -0.0175068 18.10068 +0.1535689 -0.0175068 18.10068 +0.2091628 -0.0175068 18.10068 +0.2838106 -0.0175068 18.10068 +0.3840425 -0.0175068 18.10068 +0.518627 -0.0175068 18.10068 +0.6993381 -0.0175068 18.10068 +0.9419845 -0.0175068 18.10068 +1.267794 -0.0175068 18.10068 +1.705268 -0.0175068 18.10068 +2.292679 -0.0175068 18.10068 +3.081414 -0.0175068 18.10068 +4.140474 -0.0175068 18.10068 +5.562508 -0.0175068 18.10068 +7.471917 -0.0175068 18.10068 +10.03574 -0.0175068 18.10068 +13.47828 -0.0175068 18.10068 +18.10068 -0.0175068 18.10068 +24.30731 -0.0175068 18.10068 +32.64117 -0.0175068 18.10068 +43.83129 -0.0175068 18.10068 +58.85664 -0.0175068 18.10068 +-0.0175068 -0.01161267 18.10068 +-0.01161267 -0.01161267 18.10068 +-0.005718534 -0.01161267 18.10068 +0.0001755984 -0.01161267 18.10068 +0.006069731 -0.01161267 18.10068 +0.01197402 -0.01161267 18.10068 +0.01903886 -0.01161267 18.10068 +0.02852504 -0.01161267 18.10068 +0.04126244 -0.01161267 18.10068 +0.05836535 -0.01161267 18.10068 +0.08132997 -0.01161267 18.10068 +0.1121653 -0.01161267 18.10068 +0.1535689 -0.01161267 18.10068 +0.2091628 -0.01161267 18.10068 +0.2838106 -0.01161267 18.10068 +0.3840425 -0.01161267 18.10068 +0.518627 -0.01161267 18.10068 +0.6993381 -0.01161267 18.10068 +0.9419845 -0.01161267 18.10068 +1.267794 -0.01161267 18.10068 +1.705268 -0.01161267 18.10068 +2.292679 -0.01161267 18.10068 +3.081414 -0.01161267 18.10068 +4.140474 -0.01161267 18.10068 +5.562508 -0.01161267 18.10068 +7.471917 -0.01161267 18.10068 +10.03574 -0.01161267 18.10068 +13.47828 -0.01161267 18.10068 +18.10068 -0.01161267 18.10068 +24.30731 -0.01161267 18.10068 +32.64117 -0.01161267 18.10068 +43.83129 -0.01161267 18.10068 +58.85664 -0.01161267 18.10068 +-0.0175068 -0.005718534 18.10068 +-0.01161267 -0.005718534 18.10068 +-0.005718534 -0.005718534 18.10068 +0.0001755984 -0.005718534 18.10068 +0.006069731 -0.005718534 18.10068 +0.01197402 -0.005718534 18.10068 +0.01903886 -0.005718534 18.10068 +0.02852504 -0.005718534 18.10068 +0.04126244 -0.005718534 18.10068 +0.05836535 -0.005718534 18.10068 +0.08132997 -0.005718534 18.10068 +0.1121653 -0.005718534 18.10068 +0.1535689 -0.005718534 18.10068 +0.2091628 -0.005718534 18.10068 +0.2838106 -0.005718534 18.10068 +0.3840425 -0.005718534 18.10068 +0.518627 -0.005718534 18.10068 +0.6993381 -0.005718534 18.10068 +0.9419845 -0.005718534 18.10068 +1.267794 -0.005718534 18.10068 +1.705268 -0.005718534 18.10068 +2.292679 -0.005718534 18.10068 +3.081414 -0.005718534 18.10068 +4.140474 -0.005718534 18.10068 +5.562508 -0.005718534 18.10068 +7.471917 -0.005718534 18.10068 +10.03574 -0.005718534 18.10068 +13.47828 -0.005718534 18.10068 +18.10068 -0.005718534 18.10068 +24.30731 -0.005718534 18.10068 +32.64117 -0.005718534 18.10068 +43.83129 -0.005718534 18.10068 +58.85664 -0.005718534 18.10068 +-0.0175068 0.0001755984 18.10068 +-0.01161267 0.0001755984 18.10068 +-0.005718534 0.0001755984 18.10068 +0.0001755984 0.0001755984 18.10068 +0.006069731 0.0001755984 18.10068 +0.01197402 0.0001755984 18.10068 +0.01903886 0.0001755984 18.10068 +0.02852504 0.0001755984 18.10068 +0.04126244 0.0001755984 18.10068 +0.05836535 0.0001755984 18.10068 +0.08132997 0.0001755984 18.10068 +0.1121653 0.0001755984 18.10068 +0.1535689 0.0001755984 18.10068 +0.2091628 0.0001755984 18.10068 +0.2838106 0.0001755984 18.10068 +0.3840425 0.0001755984 18.10068 +0.518627 0.0001755984 18.10068 +0.6993381 0.0001755984 18.10068 +0.9419845 0.0001755984 18.10068 +1.267794 0.0001755984 18.10068 +1.705268 0.0001755984 18.10068 +2.292679 0.0001755984 18.10068 +3.081414 0.0001755984 18.10068 +4.140474 0.0001755984 18.10068 +5.562508 0.0001755984 18.10068 +7.471917 0.0001755984 18.10068 +10.03574 0.0001755984 18.10068 +13.47828 0.0001755984 18.10068 +18.10068 0.0001755984 18.10068 +24.30731 0.0001755984 18.10068 +32.64117 0.0001755984 18.10068 +43.83129 0.0001755984 18.10068 +58.85664 0.0001755984 18.10068 +-0.0175068 0.006069731 18.10068 +-0.01161267 0.006069731 18.10068 +-0.005718534 0.006069731 18.10068 +0.0001755984 0.006069731 18.10068 +0.006069731 0.006069731 18.10068 +0.01197402 0.006069731 18.10068 +0.01903886 0.006069731 18.10068 +0.02852504 0.006069731 18.10068 +0.04126244 0.006069731 18.10068 +0.05836535 0.006069731 18.10068 +0.08132997 0.006069731 18.10068 +0.1121653 0.006069731 18.10068 +0.1535689 0.006069731 18.10068 +0.2091628 0.006069731 18.10068 +0.2838106 0.006069731 18.10068 +0.3840425 0.006069731 18.10068 +0.518627 0.006069731 18.10068 +0.6993381 0.006069731 18.10068 +0.9419845 0.006069731 18.10068 +1.267794 0.006069731 18.10068 +1.705268 0.006069731 18.10068 +2.292679 0.006069731 18.10068 +3.081414 0.006069731 18.10068 +4.140474 0.006069731 18.10068 +5.562508 0.006069731 18.10068 +7.471917 0.006069731 18.10068 +10.03574 0.006069731 18.10068 +13.47828 0.006069731 18.10068 +18.10068 0.006069731 18.10068 +24.30731 0.006069731 18.10068 +32.64117 0.006069731 18.10068 +43.83129 0.006069731 18.10068 +58.85664 0.006069731 18.10068 +-0.0175068 0.01197402 18.10068 +-0.01161267 0.01197402 18.10068 +-0.005718534 0.01197402 18.10068 +0.0001755984 0.01197402 18.10068 +0.006069731 0.01197402 18.10068 +0.01197402 0.01197402 18.10068 +0.01903886 0.01197402 18.10068 +0.02852504 0.01197402 18.10068 +0.04126244 0.01197402 18.10068 +0.05836535 0.01197402 18.10068 +0.08132997 0.01197402 18.10068 +0.1121653 0.01197402 18.10068 +0.1535689 0.01197402 18.10068 +0.2091628 0.01197402 18.10068 +0.2838106 0.01197402 18.10068 +0.3840425 0.01197402 18.10068 +0.518627 0.01197402 18.10068 +0.6993381 0.01197402 18.10068 +0.9419845 0.01197402 18.10068 +1.267794 0.01197402 18.10068 +1.705268 0.01197402 18.10068 +2.292679 0.01197402 18.10068 +3.081414 0.01197402 18.10068 +4.140474 0.01197402 18.10068 +5.562508 0.01197402 18.10068 +7.471917 0.01197402 18.10068 +10.03574 0.01197402 18.10068 +13.47828 0.01197402 18.10068 +18.10068 0.01197402 18.10068 +24.30731 0.01197402 18.10068 +32.64117 0.01197402 18.10068 +43.83129 0.01197402 18.10068 +58.85664 0.01197402 18.10068 +-0.0175068 0.01903886 18.10068 +-0.01161267 0.01903886 18.10068 +-0.005718534 0.01903886 18.10068 +0.0001755984 0.01903886 18.10068 +0.006069731 0.01903886 18.10068 +0.01197402 0.01903886 18.10068 +0.01903886 0.01903886 18.10068 +0.02852504 0.01903886 18.10068 +0.04126244 0.01903886 18.10068 +0.05836535 0.01903886 18.10068 +0.08132997 0.01903886 18.10068 +0.1121653 0.01903886 18.10068 +0.1535689 0.01903886 18.10068 +0.2091628 0.01903886 18.10068 +0.2838106 0.01903886 18.10068 +0.3840425 0.01903886 18.10068 +0.518627 0.01903886 18.10068 +0.6993381 0.01903886 18.10068 +0.9419845 0.01903886 18.10068 +1.267794 0.01903886 18.10068 +1.705268 0.01903886 18.10068 +2.292679 0.01903886 18.10068 +3.081414 0.01903886 18.10068 +4.140474 0.01903886 18.10068 +5.562508 0.01903886 18.10068 +7.471917 0.01903886 18.10068 +10.03574 0.01903886 18.10068 +13.47828 0.01903886 18.10068 +18.10068 0.01903886 18.10068 +24.30731 0.01903886 18.10068 +32.64117 0.01903886 18.10068 +43.83129 0.01903886 18.10068 +58.85664 0.01903886 18.10068 +-0.0175068 0.02852504 18.10068 +-0.01161267 0.02852504 18.10068 +-0.005718534 0.02852504 18.10068 +0.0001755984 0.02852504 18.10068 +0.006069731 0.02852504 18.10068 +0.01197402 0.02852504 18.10068 +0.01903886 0.02852504 18.10068 +0.02852504 0.02852504 18.10068 +0.04126244 0.02852504 18.10068 +0.05836535 0.02852504 18.10068 +0.08132997 0.02852504 18.10068 +0.1121653 0.02852504 18.10068 +0.1535689 0.02852504 18.10068 +0.2091628 0.02852504 18.10068 +0.2838106 0.02852504 18.10068 +0.3840425 0.02852504 18.10068 +0.518627 0.02852504 18.10068 +0.6993381 0.02852504 18.10068 +0.9419845 0.02852504 18.10068 +1.267794 0.02852504 18.10068 +1.705268 0.02852504 18.10068 +2.292679 0.02852504 18.10068 +3.081414 0.02852504 18.10068 +4.140474 0.02852504 18.10068 +5.562508 0.02852504 18.10068 +7.471917 0.02852504 18.10068 +10.03574 0.02852504 18.10068 +13.47828 0.02852504 18.10068 +18.10068 0.02852504 18.10068 +24.30731 0.02852504 18.10068 +32.64117 0.02852504 18.10068 +43.83129 0.02852504 18.10068 +58.85664 0.02852504 18.10068 +-0.0175068 0.04126244 18.10068 +-0.01161267 0.04126244 18.10068 +-0.005718534 0.04126244 18.10068 +0.0001755984 0.04126244 18.10068 +0.006069731 0.04126244 18.10068 +0.01197402 0.04126244 18.10068 +0.01903886 0.04126244 18.10068 +0.02852504 0.04126244 18.10068 +0.04126244 0.04126244 18.10068 +0.05836535 0.04126244 18.10068 +0.08132997 0.04126244 18.10068 +0.1121653 0.04126244 18.10068 +0.1535689 0.04126244 18.10068 +0.2091628 0.04126244 18.10068 +0.2838106 0.04126244 18.10068 +0.3840425 0.04126244 18.10068 +0.518627 0.04126244 18.10068 +0.6993381 0.04126244 18.10068 +0.9419845 0.04126244 18.10068 +1.267794 0.04126244 18.10068 +1.705268 0.04126244 18.10068 +2.292679 0.04126244 18.10068 +3.081414 0.04126244 18.10068 +4.140474 0.04126244 18.10068 +5.562508 0.04126244 18.10068 +7.471917 0.04126244 18.10068 +10.03574 0.04126244 18.10068 +13.47828 0.04126244 18.10068 +18.10068 0.04126244 18.10068 +24.30731 0.04126244 18.10068 +32.64117 0.04126244 18.10068 +43.83129 0.04126244 18.10068 +58.85664 0.04126244 18.10068 +-0.0175068 0.05836535 18.10068 +-0.01161267 0.05836535 18.10068 +-0.005718534 0.05836535 18.10068 +0.0001755984 0.05836535 18.10068 +0.006069731 0.05836535 18.10068 +0.01197402 0.05836535 18.10068 +0.01903886 0.05836535 18.10068 +0.02852504 0.05836535 18.10068 +0.04126244 0.05836535 18.10068 +0.05836535 0.05836535 18.10068 +0.08132997 0.05836535 18.10068 +0.1121653 0.05836535 18.10068 +0.1535689 0.05836535 18.10068 +0.2091628 0.05836535 18.10068 +0.2838106 0.05836535 18.10068 +0.3840425 0.05836535 18.10068 +0.518627 0.05836535 18.10068 +0.6993381 0.05836535 18.10068 +0.9419845 0.05836535 18.10068 +1.267794 0.05836535 18.10068 +1.705268 0.05836535 18.10068 +2.292679 0.05836535 18.10068 +3.081414 0.05836535 18.10068 +4.140474 0.05836535 18.10068 +5.562508 0.05836535 18.10068 +7.471917 0.05836535 18.10068 +10.03574 0.05836535 18.10068 +13.47828 0.05836535 18.10068 +18.10068 0.05836535 18.10068 +24.30731 0.05836535 18.10068 +32.64117 0.05836535 18.10068 +43.83129 0.05836535 18.10068 +58.85664 0.05836535 18.10068 +-0.0175068 0.08132997 18.10068 +-0.01161267 0.08132997 18.10068 +-0.005718534 0.08132997 18.10068 +0.0001755984 0.08132997 18.10068 +0.006069731 0.08132997 18.10068 +0.01197402 0.08132997 18.10068 +0.01903886 0.08132997 18.10068 +0.02852504 0.08132997 18.10068 +0.04126244 0.08132997 18.10068 +0.05836535 0.08132997 18.10068 +0.08132997 0.08132997 18.10068 +0.1121653 0.08132997 18.10068 +0.1535689 0.08132997 18.10068 +0.2091628 0.08132997 18.10068 +0.2838106 0.08132997 18.10068 +0.3840425 0.08132997 18.10068 +0.518627 0.08132997 18.10068 +0.6993381 0.08132997 18.10068 +0.9419845 0.08132997 18.10068 +1.267794 0.08132997 18.10068 +1.705268 0.08132997 18.10068 +2.292679 0.08132997 18.10068 +3.081414 0.08132997 18.10068 +4.140474 0.08132997 18.10068 +5.562508 0.08132997 18.10068 +7.471917 0.08132997 18.10068 +10.03574 0.08132997 18.10068 +13.47828 0.08132997 18.10068 +18.10068 0.08132997 18.10068 +24.30731 0.08132997 18.10068 +32.64117 0.08132997 18.10068 +43.83129 0.08132997 18.10068 +58.85664 0.08132997 18.10068 +-0.0175068 0.1121653 18.10068 +-0.01161267 0.1121653 18.10068 +-0.005718534 0.1121653 18.10068 +0.0001755984 0.1121653 18.10068 +0.006069731 0.1121653 18.10068 +0.01197402 0.1121653 18.10068 +0.01903886 0.1121653 18.10068 +0.02852504 0.1121653 18.10068 +0.04126244 0.1121653 18.10068 +0.05836535 0.1121653 18.10068 +0.08132997 0.1121653 18.10068 +0.1121653 0.1121653 18.10068 +0.1535689 0.1121653 18.10068 +0.2091628 0.1121653 18.10068 +0.2838106 0.1121653 18.10068 +0.3840425 0.1121653 18.10068 +0.518627 0.1121653 18.10068 +0.6993381 0.1121653 18.10068 +0.9419845 0.1121653 18.10068 +1.267794 0.1121653 18.10068 +1.705268 0.1121653 18.10068 +2.292679 0.1121653 18.10068 +3.081414 0.1121653 18.10068 +4.140474 0.1121653 18.10068 +5.562508 0.1121653 18.10068 +7.471917 0.1121653 18.10068 +10.03574 0.1121653 18.10068 +13.47828 0.1121653 18.10068 +18.10068 0.1121653 18.10068 +24.30731 0.1121653 18.10068 +32.64117 0.1121653 18.10068 +43.83129 0.1121653 18.10068 +58.85664 0.1121653 18.10068 +-0.0175068 0.1535689 18.10068 +-0.01161267 0.1535689 18.10068 +-0.005718534 0.1535689 18.10068 +0.0001755984 0.1535689 18.10068 +0.006069731 0.1535689 18.10068 +0.01197402 0.1535689 18.10068 +0.01903886 0.1535689 18.10068 +0.02852504 0.1535689 18.10068 +0.04126244 0.1535689 18.10068 +0.05836535 0.1535689 18.10068 +0.08132997 0.1535689 18.10068 +0.1121653 0.1535689 18.10068 +0.1535689 0.1535689 18.10068 +0.2091628 0.1535689 18.10068 +0.2838106 0.1535689 18.10068 +0.3840425 0.1535689 18.10068 +0.518627 0.1535689 18.10068 +0.6993381 0.1535689 18.10068 +0.9419845 0.1535689 18.10068 +1.267794 0.1535689 18.10068 +1.705268 0.1535689 18.10068 +2.292679 0.1535689 18.10068 +3.081414 0.1535689 18.10068 +4.140474 0.1535689 18.10068 +5.562508 0.1535689 18.10068 +7.471917 0.1535689 18.10068 +10.03574 0.1535689 18.10068 +13.47828 0.1535689 18.10068 +18.10068 0.1535689 18.10068 +24.30731 0.1535689 18.10068 +32.64117 0.1535689 18.10068 +43.83129 0.1535689 18.10068 +58.85664 0.1535689 18.10068 +-0.0175068 0.2091628 18.10068 +-0.01161267 0.2091628 18.10068 +-0.005718534 0.2091628 18.10068 +0.0001755984 0.2091628 18.10068 +0.006069731 0.2091628 18.10068 +0.01197402 0.2091628 18.10068 +0.01903886 0.2091628 18.10068 +0.02852504 0.2091628 18.10068 +0.04126244 0.2091628 18.10068 +0.05836535 0.2091628 18.10068 +0.08132997 0.2091628 18.10068 +0.1121653 0.2091628 18.10068 +0.1535689 0.2091628 18.10068 +0.2091628 0.2091628 18.10068 +0.2838106 0.2091628 18.10068 +0.3840425 0.2091628 18.10068 +0.518627 0.2091628 18.10068 +0.6993381 0.2091628 18.10068 +0.9419845 0.2091628 18.10068 +1.267794 0.2091628 18.10068 +1.705268 0.2091628 18.10068 +2.292679 0.2091628 18.10068 +3.081414 0.2091628 18.10068 +4.140474 0.2091628 18.10068 +5.562508 0.2091628 18.10068 +7.471917 0.2091628 18.10068 +10.03574 0.2091628 18.10068 +13.47828 0.2091628 18.10068 +18.10068 0.2091628 18.10068 +24.30731 0.2091628 18.10068 +32.64117 0.2091628 18.10068 +43.83129 0.2091628 18.10068 +58.85664 0.2091628 18.10068 +-0.0175068 0.2838106 18.10068 +-0.01161267 0.2838106 18.10068 +-0.005718534 0.2838106 18.10068 +0.0001755984 0.2838106 18.10068 +0.006069731 0.2838106 18.10068 +0.01197402 0.2838106 18.10068 +0.01903886 0.2838106 18.10068 +0.02852504 0.2838106 18.10068 +0.04126244 0.2838106 18.10068 +0.05836535 0.2838106 18.10068 +0.08132997 0.2838106 18.10068 +0.1121653 0.2838106 18.10068 +0.1535689 0.2838106 18.10068 +0.2091628 0.2838106 18.10068 +0.2838106 0.2838106 18.10068 +0.3840425 0.2838106 18.10068 +0.518627 0.2838106 18.10068 +0.6993381 0.2838106 18.10068 +0.9419845 0.2838106 18.10068 +1.267794 0.2838106 18.10068 +1.705268 0.2838106 18.10068 +2.292679 0.2838106 18.10068 +3.081414 0.2838106 18.10068 +4.140474 0.2838106 18.10068 +5.562508 0.2838106 18.10068 +7.471917 0.2838106 18.10068 +10.03574 0.2838106 18.10068 +13.47828 0.2838106 18.10068 +18.10068 0.2838106 18.10068 +24.30731 0.2838106 18.10068 +32.64117 0.2838106 18.10068 +43.83129 0.2838106 18.10068 +58.85664 0.2838106 18.10068 +-0.0175068 0.3840425 18.10068 +-0.01161267 0.3840425 18.10068 +-0.005718534 0.3840425 18.10068 +0.0001755984 0.3840425 18.10068 +0.006069731 0.3840425 18.10068 +0.01197402 0.3840425 18.10068 +0.01903886 0.3840425 18.10068 +0.02852504 0.3840425 18.10068 +0.04126244 0.3840425 18.10068 +0.05836535 0.3840425 18.10068 +0.08132997 0.3840425 18.10068 +0.1121653 0.3840425 18.10068 +0.1535689 0.3840425 18.10068 +0.2091628 0.3840425 18.10068 +0.2838106 0.3840425 18.10068 +0.3840425 0.3840425 18.10068 +0.518627 0.3840425 18.10068 +0.6993381 0.3840425 18.10068 +0.9419845 0.3840425 18.10068 +1.267794 0.3840425 18.10068 +1.705268 0.3840425 18.10068 +2.292679 0.3840425 18.10068 +3.081414 0.3840425 18.10068 +4.140474 0.3840425 18.10068 +5.562508 0.3840425 18.10068 +7.471917 0.3840425 18.10068 +10.03574 0.3840425 18.10068 +13.47828 0.3840425 18.10068 +18.10068 0.3840425 18.10068 +24.30731 0.3840425 18.10068 +32.64117 0.3840425 18.10068 +43.83129 0.3840425 18.10068 +58.85664 0.3840425 18.10068 +-0.0175068 0.518627 18.10068 +-0.01161267 0.518627 18.10068 +-0.005718534 0.518627 18.10068 +0.0001755984 0.518627 18.10068 +0.006069731 0.518627 18.10068 +0.01197402 0.518627 18.10068 +0.01903886 0.518627 18.10068 +0.02852504 0.518627 18.10068 +0.04126244 0.518627 18.10068 +0.05836535 0.518627 18.10068 +0.08132997 0.518627 18.10068 +0.1121653 0.518627 18.10068 +0.1535689 0.518627 18.10068 +0.2091628 0.518627 18.10068 +0.2838106 0.518627 18.10068 +0.3840425 0.518627 18.10068 +0.518627 0.518627 18.10068 +0.6993381 0.518627 18.10068 +0.9419845 0.518627 18.10068 +1.267794 0.518627 18.10068 +1.705268 0.518627 18.10068 +2.292679 0.518627 18.10068 +3.081414 0.518627 18.10068 +4.140474 0.518627 18.10068 +5.562508 0.518627 18.10068 +7.471917 0.518627 18.10068 +10.03574 0.518627 18.10068 +13.47828 0.518627 18.10068 +18.10068 0.518627 18.10068 +24.30731 0.518627 18.10068 +32.64117 0.518627 18.10068 +43.83129 0.518627 18.10068 +58.85664 0.518627 18.10068 +-0.0175068 0.6993381 18.10068 +-0.01161267 0.6993381 18.10068 +-0.005718534 0.6993381 18.10068 +0.0001755984 0.6993381 18.10068 +0.006069731 0.6993381 18.10068 +0.01197402 0.6993381 18.10068 +0.01903886 0.6993381 18.10068 +0.02852504 0.6993381 18.10068 +0.04126244 0.6993381 18.10068 +0.05836535 0.6993381 18.10068 +0.08132997 0.6993381 18.10068 +0.1121653 0.6993381 18.10068 +0.1535689 0.6993381 18.10068 +0.2091628 0.6993381 18.10068 +0.2838106 0.6993381 18.10068 +0.3840425 0.6993381 18.10068 +0.518627 0.6993381 18.10068 +0.6993381 0.6993381 18.10068 +0.9419845 0.6993381 18.10068 +1.267794 0.6993381 18.10068 +1.705268 0.6993381 18.10068 +2.292679 0.6993381 18.10068 +3.081414 0.6993381 18.10068 +4.140474 0.6993381 18.10068 +5.562508 0.6993381 18.10068 +7.471917 0.6993381 18.10068 +10.03574 0.6993381 18.10068 +13.47828 0.6993381 18.10068 +18.10068 0.6993381 18.10068 +24.30731 0.6993381 18.10068 +32.64117 0.6993381 18.10068 +43.83129 0.6993381 18.10068 +58.85664 0.6993381 18.10068 +-0.0175068 0.9419845 18.10068 +-0.01161267 0.9419845 18.10068 +-0.005718534 0.9419845 18.10068 +0.0001755984 0.9419845 18.10068 +0.006069731 0.9419845 18.10068 +0.01197402 0.9419845 18.10068 +0.01903886 0.9419845 18.10068 +0.02852504 0.9419845 18.10068 +0.04126244 0.9419845 18.10068 +0.05836535 0.9419845 18.10068 +0.08132997 0.9419845 18.10068 +0.1121653 0.9419845 18.10068 +0.1535689 0.9419845 18.10068 +0.2091628 0.9419845 18.10068 +0.2838106 0.9419845 18.10068 +0.3840425 0.9419845 18.10068 +0.518627 0.9419845 18.10068 +0.6993381 0.9419845 18.10068 +0.9419845 0.9419845 18.10068 +1.267794 0.9419845 18.10068 +1.705268 0.9419845 18.10068 +2.292679 0.9419845 18.10068 +3.081414 0.9419845 18.10068 +4.140474 0.9419845 18.10068 +5.562508 0.9419845 18.10068 +7.471917 0.9419845 18.10068 +10.03574 0.9419845 18.10068 +13.47828 0.9419845 18.10068 +18.10068 0.9419845 18.10068 +24.30731 0.9419845 18.10068 +32.64117 0.9419845 18.10068 +43.83129 0.9419845 18.10068 +58.85664 0.9419845 18.10068 +-0.0175068 1.267794 18.10068 +-0.01161267 1.267794 18.10068 +-0.005718534 1.267794 18.10068 +0.0001755984 1.267794 18.10068 +0.006069731 1.267794 18.10068 +0.01197402 1.267794 18.10068 +0.01903886 1.267794 18.10068 +0.02852504 1.267794 18.10068 +0.04126244 1.267794 18.10068 +0.05836535 1.267794 18.10068 +0.08132997 1.267794 18.10068 +0.1121653 1.267794 18.10068 +0.1535689 1.267794 18.10068 +0.2091628 1.267794 18.10068 +0.2838106 1.267794 18.10068 +0.3840425 1.267794 18.10068 +0.518627 1.267794 18.10068 +0.6993381 1.267794 18.10068 +0.9419845 1.267794 18.10068 +1.267794 1.267794 18.10068 +1.705268 1.267794 18.10068 +2.292679 1.267794 18.10068 +3.081414 1.267794 18.10068 +4.140474 1.267794 18.10068 +5.562508 1.267794 18.10068 +7.471917 1.267794 18.10068 +10.03574 1.267794 18.10068 +13.47828 1.267794 18.10068 +18.10068 1.267794 18.10068 +24.30731 1.267794 18.10068 +32.64117 1.267794 18.10068 +43.83129 1.267794 18.10068 +58.85664 1.267794 18.10068 +-0.0175068 1.705268 18.10068 +-0.01161267 1.705268 18.10068 +-0.005718534 1.705268 18.10068 +0.0001755984 1.705268 18.10068 +0.006069731 1.705268 18.10068 +0.01197402 1.705268 18.10068 +0.01903886 1.705268 18.10068 +0.02852504 1.705268 18.10068 +0.04126244 1.705268 18.10068 +0.05836535 1.705268 18.10068 +0.08132997 1.705268 18.10068 +0.1121653 1.705268 18.10068 +0.1535689 1.705268 18.10068 +0.2091628 1.705268 18.10068 +0.2838106 1.705268 18.10068 +0.3840425 1.705268 18.10068 +0.518627 1.705268 18.10068 +0.6993381 1.705268 18.10068 +0.9419845 1.705268 18.10068 +1.267794 1.705268 18.10068 +1.705268 1.705268 18.10068 +2.292679 1.705268 18.10068 +3.081414 1.705268 18.10068 +4.140474 1.705268 18.10068 +5.562508 1.705268 18.10068 +7.471917 1.705268 18.10068 +10.03574 1.705268 18.10068 +13.47828 1.705268 18.10068 +18.10068 1.705268 18.10068 +24.30731 1.705268 18.10068 +32.64117 1.705268 18.10068 +43.83129 1.705268 18.10068 +58.85664 1.705268 18.10068 +-0.0175068 2.292679 18.10068 +-0.01161267 2.292679 18.10068 +-0.005718534 2.292679 18.10068 +0.0001755984 2.292679 18.10068 +0.006069731 2.292679 18.10068 +0.01197402 2.292679 18.10068 +0.01903886 2.292679 18.10068 +0.02852504 2.292679 18.10068 +0.04126244 2.292679 18.10068 +0.05836535 2.292679 18.10068 +0.08132997 2.292679 18.10068 +0.1121653 2.292679 18.10068 +0.1535689 2.292679 18.10068 +0.2091628 2.292679 18.10068 +0.2838106 2.292679 18.10068 +0.3840425 2.292679 18.10068 +0.518627 2.292679 18.10068 +0.6993381 2.292679 18.10068 +0.9419845 2.292679 18.10068 +1.267794 2.292679 18.10068 +1.705268 2.292679 18.10068 +2.292679 2.292679 18.10068 +3.081414 2.292679 18.10068 +4.140474 2.292679 18.10068 +5.562508 2.292679 18.10068 +7.471917 2.292679 18.10068 +10.03574 2.292679 18.10068 +13.47828 2.292679 18.10068 +18.10068 2.292679 18.10068 +24.30731 2.292679 18.10068 +32.64117 2.292679 18.10068 +43.83129 2.292679 18.10068 +58.85664 2.292679 18.10068 +-0.0175068 3.081414 18.10068 +-0.01161267 3.081414 18.10068 +-0.005718534 3.081414 18.10068 +0.0001755984 3.081414 18.10068 +0.006069731 3.081414 18.10068 +0.01197402 3.081414 18.10068 +0.01903886 3.081414 18.10068 +0.02852504 3.081414 18.10068 +0.04126244 3.081414 18.10068 +0.05836535 3.081414 18.10068 +0.08132997 3.081414 18.10068 +0.1121653 3.081414 18.10068 +0.1535689 3.081414 18.10068 +0.2091628 3.081414 18.10068 +0.2838106 3.081414 18.10068 +0.3840425 3.081414 18.10068 +0.518627 3.081414 18.10068 +0.6993381 3.081414 18.10068 +0.9419845 3.081414 18.10068 +1.267794 3.081414 18.10068 +1.705268 3.081414 18.10068 +2.292679 3.081414 18.10068 +3.081414 3.081414 18.10068 +4.140474 3.081414 18.10068 +5.562508 3.081414 18.10068 +7.471917 3.081414 18.10068 +10.03574 3.081414 18.10068 +13.47828 3.081414 18.10068 +18.10068 3.081414 18.10068 +24.30731 3.081414 18.10068 +32.64117 3.081414 18.10068 +43.83129 3.081414 18.10068 +58.85664 3.081414 18.10068 +-0.0175068 4.140474 18.10068 +-0.01161267 4.140474 18.10068 +-0.005718534 4.140474 18.10068 +0.0001755984 4.140474 18.10068 +0.006069731 4.140474 18.10068 +0.01197402 4.140474 18.10068 +0.01903886 4.140474 18.10068 +0.02852504 4.140474 18.10068 +0.04126244 4.140474 18.10068 +0.05836535 4.140474 18.10068 +0.08132997 4.140474 18.10068 +0.1121653 4.140474 18.10068 +0.1535689 4.140474 18.10068 +0.2091628 4.140474 18.10068 +0.2838106 4.140474 18.10068 +0.3840425 4.140474 18.10068 +0.518627 4.140474 18.10068 +0.6993381 4.140474 18.10068 +0.9419845 4.140474 18.10068 +1.267794 4.140474 18.10068 +1.705268 4.140474 18.10068 +2.292679 4.140474 18.10068 +3.081414 4.140474 18.10068 +4.140474 4.140474 18.10068 +5.562508 4.140474 18.10068 +7.471917 4.140474 18.10068 +10.03574 4.140474 18.10068 +13.47828 4.140474 18.10068 +18.10068 4.140474 18.10068 +24.30731 4.140474 18.10068 +32.64117 4.140474 18.10068 +43.83129 4.140474 18.10068 +58.85664 4.140474 18.10068 +-0.0175068 5.562508 18.10068 +-0.01161267 5.562508 18.10068 +-0.005718534 5.562508 18.10068 +0.0001755984 5.562508 18.10068 +0.006069731 5.562508 18.10068 +0.01197402 5.562508 18.10068 +0.01903886 5.562508 18.10068 +0.02852504 5.562508 18.10068 +0.04126244 5.562508 18.10068 +0.05836535 5.562508 18.10068 +0.08132997 5.562508 18.10068 +0.1121653 5.562508 18.10068 +0.1535689 5.562508 18.10068 +0.2091628 5.562508 18.10068 +0.2838106 5.562508 18.10068 +0.3840425 5.562508 18.10068 +0.518627 5.562508 18.10068 +0.6993381 5.562508 18.10068 +0.9419845 5.562508 18.10068 +1.267794 5.562508 18.10068 +1.705268 5.562508 18.10068 +2.292679 5.562508 18.10068 +3.081414 5.562508 18.10068 +4.140474 5.562508 18.10068 +5.562508 5.562508 18.10068 +7.471917 5.562508 18.10068 +10.03574 5.562508 18.10068 +13.47828 5.562508 18.10068 +18.10068 5.562508 18.10068 +24.30731 5.562508 18.10068 +32.64117 5.562508 18.10068 +43.83129 5.562508 18.10068 +58.85664 5.562508 18.10068 +-0.0175068 7.471917 18.10068 +-0.01161267 7.471917 18.10068 +-0.005718534 7.471917 18.10068 +0.0001755984 7.471917 18.10068 +0.006069731 7.471917 18.10068 +0.01197402 7.471917 18.10068 +0.01903886 7.471917 18.10068 +0.02852504 7.471917 18.10068 +0.04126244 7.471917 18.10068 +0.05836535 7.471917 18.10068 +0.08132997 7.471917 18.10068 +0.1121653 7.471917 18.10068 +0.1535689 7.471917 18.10068 +0.2091628 7.471917 18.10068 +0.2838106 7.471917 18.10068 +0.3840425 7.471917 18.10068 +0.518627 7.471917 18.10068 +0.6993381 7.471917 18.10068 +0.9419845 7.471917 18.10068 +1.267794 7.471917 18.10068 +1.705268 7.471917 18.10068 +2.292679 7.471917 18.10068 +3.081414 7.471917 18.10068 +4.140474 7.471917 18.10068 +5.562508 7.471917 18.10068 +7.471917 7.471917 18.10068 +10.03574 7.471917 18.10068 +13.47828 7.471917 18.10068 +18.10068 7.471917 18.10068 +24.30731 7.471917 18.10068 +32.64117 7.471917 18.10068 +43.83129 7.471917 18.10068 +58.85664 7.471917 18.10068 +-0.0175068 10.03574 18.10068 +-0.01161267 10.03574 18.10068 +-0.005718534 10.03574 18.10068 +0.0001755984 10.03574 18.10068 +0.006069731 10.03574 18.10068 +0.01197402 10.03574 18.10068 +0.01903886 10.03574 18.10068 +0.02852504 10.03574 18.10068 +0.04126244 10.03574 18.10068 +0.05836535 10.03574 18.10068 +0.08132997 10.03574 18.10068 +0.1121653 10.03574 18.10068 +0.1535689 10.03574 18.10068 +0.2091628 10.03574 18.10068 +0.2838106 10.03574 18.10068 +0.3840425 10.03574 18.10068 +0.518627 10.03574 18.10068 +0.6993381 10.03574 18.10068 +0.9419845 10.03574 18.10068 +1.267794 10.03574 18.10068 +1.705268 10.03574 18.10068 +2.292679 10.03574 18.10068 +3.081414 10.03574 18.10068 +4.140474 10.03574 18.10068 +5.562508 10.03574 18.10068 +7.471917 10.03574 18.10068 +10.03574 10.03574 18.10068 +13.47828 10.03574 18.10068 +18.10068 10.03574 18.10068 +24.30731 10.03574 18.10068 +32.64117 10.03574 18.10068 +43.83129 10.03574 18.10068 +58.85664 10.03574 18.10068 +-0.0175068 13.47828 18.10068 +-0.01161267 13.47828 18.10068 +-0.005718534 13.47828 18.10068 +0.0001755984 13.47828 18.10068 +0.006069731 13.47828 18.10068 +0.01197402 13.47828 18.10068 +0.01903886 13.47828 18.10068 +0.02852504 13.47828 18.10068 +0.04126244 13.47828 18.10068 +0.05836535 13.47828 18.10068 +0.08132997 13.47828 18.10068 +0.1121653 13.47828 18.10068 +0.1535689 13.47828 18.10068 +0.2091628 13.47828 18.10068 +0.2838106 13.47828 18.10068 +0.3840425 13.47828 18.10068 +0.518627 13.47828 18.10068 +0.6993381 13.47828 18.10068 +0.9419845 13.47828 18.10068 +1.267794 13.47828 18.10068 +1.705268 13.47828 18.10068 +2.292679 13.47828 18.10068 +3.081414 13.47828 18.10068 +4.140474 13.47828 18.10068 +5.562508 13.47828 18.10068 +7.471917 13.47828 18.10068 +10.03574 13.47828 18.10068 +13.47828 13.47828 18.10068 +18.10068 13.47828 18.10068 +24.30731 13.47828 18.10068 +32.64117 13.47828 18.10068 +43.83129 13.47828 18.10068 +58.85664 13.47828 18.10068 +-0.0175068 18.10068 18.10068 +-0.01161267 18.10068 18.10068 +-0.005718534 18.10068 18.10068 +0.0001755984 18.10068 18.10068 +0.006069731 18.10068 18.10068 +0.01197402 18.10068 18.10068 +0.01903886 18.10068 18.10068 +0.02852504 18.10068 18.10068 +0.04126244 18.10068 18.10068 +0.05836535 18.10068 18.10068 +0.08132997 18.10068 18.10068 +0.1121653 18.10068 18.10068 +0.1535689 18.10068 18.10068 +0.2091628 18.10068 18.10068 +0.2838106 18.10068 18.10068 +0.3840425 18.10068 18.10068 +0.518627 18.10068 18.10068 +0.6993381 18.10068 18.10068 +0.9419845 18.10068 18.10068 +1.267794 18.10068 18.10068 +1.705268 18.10068 18.10068 +2.292679 18.10068 18.10068 +3.081414 18.10068 18.10068 +4.140474 18.10068 18.10068 +5.562508 18.10068 18.10068 +7.471917 18.10068 18.10068 +10.03574 18.10068 18.10068 +13.47828 18.10068 18.10068 +18.10068 18.10068 18.10068 +24.30731 18.10068 18.10068 +32.64117 18.10068 18.10068 +43.83129 18.10068 18.10068 +58.85664 18.10068 18.10068 +-0.0175068 24.30731 18.10068 +-0.01161267 24.30731 18.10068 +-0.005718534 24.30731 18.10068 +0.0001755984 24.30731 18.10068 +0.006069731 24.30731 18.10068 +0.01197402 24.30731 18.10068 +0.01903886 24.30731 18.10068 +0.02852504 24.30731 18.10068 +0.04126244 24.30731 18.10068 +0.05836535 24.30731 18.10068 +0.08132997 24.30731 18.10068 +0.1121653 24.30731 18.10068 +0.1535689 24.30731 18.10068 +0.2091628 24.30731 18.10068 +0.2838106 24.30731 18.10068 +0.3840425 24.30731 18.10068 +0.518627 24.30731 18.10068 +0.6993381 24.30731 18.10068 +0.9419845 24.30731 18.10068 +1.267794 24.30731 18.10068 +1.705268 24.30731 18.10068 +2.292679 24.30731 18.10068 +3.081414 24.30731 18.10068 +4.140474 24.30731 18.10068 +5.562508 24.30731 18.10068 +7.471917 24.30731 18.10068 +10.03574 24.30731 18.10068 +13.47828 24.30731 18.10068 +18.10068 24.30731 18.10068 +24.30731 24.30731 18.10068 +32.64117 24.30731 18.10068 +43.83129 24.30731 18.10068 +58.85664 24.30731 18.10068 +-0.0175068 32.64117 18.10068 +-0.01161267 32.64117 18.10068 +-0.005718534 32.64117 18.10068 +0.0001755984 32.64117 18.10068 +0.006069731 32.64117 18.10068 +0.01197402 32.64117 18.10068 +0.01903886 32.64117 18.10068 +0.02852504 32.64117 18.10068 +0.04126244 32.64117 18.10068 +0.05836535 32.64117 18.10068 +0.08132997 32.64117 18.10068 +0.1121653 32.64117 18.10068 +0.1535689 32.64117 18.10068 +0.2091628 32.64117 18.10068 +0.2838106 32.64117 18.10068 +0.3840425 32.64117 18.10068 +0.518627 32.64117 18.10068 +0.6993381 32.64117 18.10068 +0.9419845 32.64117 18.10068 +1.267794 32.64117 18.10068 +1.705268 32.64117 18.10068 +2.292679 32.64117 18.10068 +3.081414 32.64117 18.10068 +4.140474 32.64117 18.10068 +5.562508 32.64117 18.10068 +7.471917 32.64117 18.10068 +10.03574 32.64117 18.10068 +13.47828 32.64117 18.10068 +18.10068 32.64117 18.10068 +24.30731 32.64117 18.10068 +32.64117 32.64117 18.10068 +43.83129 32.64117 18.10068 +58.85664 32.64117 18.10068 +-0.0175068 43.83129 18.10068 +-0.01161267 43.83129 18.10068 +-0.005718534 43.83129 18.10068 +0.0001755984 43.83129 18.10068 +0.006069731 43.83129 18.10068 +0.01197402 43.83129 18.10068 +0.01903886 43.83129 18.10068 +0.02852504 43.83129 18.10068 +0.04126244 43.83129 18.10068 +0.05836535 43.83129 18.10068 +0.08132997 43.83129 18.10068 +0.1121653 43.83129 18.10068 +0.1535689 43.83129 18.10068 +0.2091628 43.83129 18.10068 +0.2838106 43.83129 18.10068 +0.3840425 43.83129 18.10068 +0.518627 43.83129 18.10068 +0.6993381 43.83129 18.10068 +0.9419845 43.83129 18.10068 +1.267794 43.83129 18.10068 +1.705268 43.83129 18.10068 +2.292679 43.83129 18.10068 +3.081414 43.83129 18.10068 +4.140474 43.83129 18.10068 +5.562508 43.83129 18.10068 +7.471917 43.83129 18.10068 +10.03574 43.83129 18.10068 +13.47828 43.83129 18.10068 +18.10068 43.83129 18.10068 +24.30731 43.83129 18.10068 +32.64117 43.83129 18.10068 +43.83129 43.83129 18.10068 +58.85664 43.83129 18.10068 +-0.0175068 58.85664 18.10068 +-0.01161267 58.85664 18.10068 +-0.005718534 58.85664 18.10068 +0.0001755984 58.85664 18.10068 +0.006069731 58.85664 18.10068 +0.01197402 58.85664 18.10068 +0.01903886 58.85664 18.10068 +0.02852504 58.85664 18.10068 +0.04126244 58.85664 18.10068 +0.05836535 58.85664 18.10068 +0.08132997 58.85664 18.10068 +0.1121653 58.85664 18.10068 +0.1535689 58.85664 18.10068 +0.2091628 58.85664 18.10068 +0.2838106 58.85664 18.10068 +0.3840425 58.85664 18.10068 +0.518627 58.85664 18.10068 +0.6993381 58.85664 18.10068 +0.9419845 58.85664 18.10068 +1.267794 58.85664 18.10068 +1.705268 58.85664 18.10068 +2.292679 58.85664 18.10068 +3.081414 58.85664 18.10068 +4.140474 58.85664 18.10068 +5.562508 58.85664 18.10068 +7.471917 58.85664 18.10068 +10.03574 58.85664 18.10068 +13.47828 58.85664 18.10068 +18.10068 58.85664 18.10068 +24.30731 58.85664 18.10068 +32.64117 58.85664 18.10068 +43.83129 58.85664 18.10068 +58.85664 58.85664 18.10068 +-0.0175068 -0.0175068 24.30731 +-0.01161267 -0.0175068 24.30731 +-0.005718534 -0.0175068 24.30731 +0.0001755984 -0.0175068 24.30731 +0.006069731 -0.0175068 24.30731 +0.01197402 -0.0175068 24.30731 +0.01903886 -0.0175068 24.30731 +0.02852504 -0.0175068 24.30731 +0.04126244 -0.0175068 24.30731 +0.05836535 -0.0175068 24.30731 +0.08132997 -0.0175068 24.30731 +0.1121653 -0.0175068 24.30731 +0.1535689 -0.0175068 24.30731 +0.2091628 -0.0175068 24.30731 +0.2838106 -0.0175068 24.30731 +0.3840425 -0.0175068 24.30731 +0.518627 -0.0175068 24.30731 +0.6993381 -0.0175068 24.30731 +0.9419845 -0.0175068 24.30731 +1.267794 -0.0175068 24.30731 +1.705268 -0.0175068 24.30731 +2.292679 -0.0175068 24.30731 +3.081414 -0.0175068 24.30731 +4.140474 -0.0175068 24.30731 +5.562508 -0.0175068 24.30731 +7.471917 -0.0175068 24.30731 +10.03574 -0.0175068 24.30731 +13.47828 -0.0175068 24.30731 +18.10068 -0.0175068 24.30731 +24.30731 -0.0175068 24.30731 +32.64117 -0.0175068 24.30731 +43.83129 -0.0175068 24.30731 +58.85664 -0.0175068 24.30731 +-0.0175068 -0.01161267 24.30731 +-0.01161267 -0.01161267 24.30731 +-0.005718534 -0.01161267 24.30731 +0.0001755984 -0.01161267 24.30731 +0.006069731 -0.01161267 24.30731 +0.01197402 -0.01161267 24.30731 +0.01903886 -0.01161267 24.30731 +0.02852504 -0.01161267 24.30731 +0.04126244 -0.01161267 24.30731 +0.05836535 -0.01161267 24.30731 +0.08132997 -0.01161267 24.30731 +0.1121653 -0.01161267 24.30731 +0.1535689 -0.01161267 24.30731 +0.2091628 -0.01161267 24.30731 +0.2838106 -0.01161267 24.30731 +0.3840425 -0.01161267 24.30731 +0.518627 -0.01161267 24.30731 +0.6993381 -0.01161267 24.30731 +0.9419845 -0.01161267 24.30731 +1.267794 -0.01161267 24.30731 +1.705268 -0.01161267 24.30731 +2.292679 -0.01161267 24.30731 +3.081414 -0.01161267 24.30731 +4.140474 -0.01161267 24.30731 +5.562508 -0.01161267 24.30731 +7.471917 -0.01161267 24.30731 +10.03574 -0.01161267 24.30731 +13.47828 -0.01161267 24.30731 +18.10068 -0.01161267 24.30731 +24.30731 -0.01161267 24.30731 +32.64117 -0.01161267 24.30731 +43.83129 -0.01161267 24.30731 +58.85664 -0.01161267 24.30731 +-0.0175068 -0.005718534 24.30731 +-0.01161267 -0.005718534 24.30731 +-0.005718534 -0.005718534 24.30731 +0.0001755984 -0.005718534 24.30731 +0.006069731 -0.005718534 24.30731 +0.01197402 -0.005718534 24.30731 +0.01903886 -0.005718534 24.30731 +0.02852504 -0.005718534 24.30731 +0.04126244 -0.005718534 24.30731 +0.05836535 -0.005718534 24.30731 +0.08132997 -0.005718534 24.30731 +0.1121653 -0.005718534 24.30731 +0.1535689 -0.005718534 24.30731 +0.2091628 -0.005718534 24.30731 +0.2838106 -0.005718534 24.30731 +0.3840425 -0.005718534 24.30731 +0.518627 -0.005718534 24.30731 +0.6993381 -0.005718534 24.30731 +0.9419845 -0.005718534 24.30731 +1.267794 -0.005718534 24.30731 +1.705268 -0.005718534 24.30731 +2.292679 -0.005718534 24.30731 +3.081414 -0.005718534 24.30731 +4.140474 -0.005718534 24.30731 +5.562508 -0.005718534 24.30731 +7.471917 -0.005718534 24.30731 +10.03574 -0.005718534 24.30731 +13.47828 -0.005718534 24.30731 +18.10068 -0.005718534 24.30731 +24.30731 -0.005718534 24.30731 +32.64117 -0.005718534 24.30731 +43.83129 -0.005718534 24.30731 +58.85664 -0.005718534 24.30731 +-0.0175068 0.0001755984 24.30731 +-0.01161267 0.0001755984 24.30731 +-0.005718534 0.0001755984 24.30731 +0.0001755984 0.0001755984 24.30731 +0.006069731 0.0001755984 24.30731 +0.01197402 0.0001755984 24.30731 +0.01903886 0.0001755984 24.30731 +0.02852504 0.0001755984 24.30731 +0.04126244 0.0001755984 24.30731 +0.05836535 0.0001755984 24.30731 +0.08132997 0.0001755984 24.30731 +0.1121653 0.0001755984 24.30731 +0.1535689 0.0001755984 24.30731 +0.2091628 0.0001755984 24.30731 +0.2838106 0.0001755984 24.30731 +0.3840425 0.0001755984 24.30731 +0.518627 0.0001755984 24.30731 +0.6993381 0.0001755984 24.30731 +0.9419845 0.0001755984 24.30731 +1.267794 0.0001755984 24.30731 +1.705268 0.0001755984 24.30731 +2.292679 0.0001755984 24.30731 +3.081414 0.0001755984 24.30731 +4.140474 0.0001755984 24.30731 +5.562508 0.0001755984 24.30731 +7.471917 0.0001755984 24.30731 +10.03574 0.0001755984 24.30731 +13.47828 0.0001755984 24.30731 +18.10068 0.0001755984 24.30731 +24.30731 0.0001755984 24.30731 +32.64117 0.0001755984 24.30731 +43.83129 0.0001755984 24.30731 +58.85664 0.0001755984 24.30731 +-0.0175068 0.006069731 24.30731 +-0.01161267 0.006069731 24.30731 +-0.005718534 0.006069731 24.30731 +0.0001755984 0.006069731 24.30731 +0.006069731 0.006069731 24.30731 +0.01197402 0.006069731 24.30731 +0.01903886 0.006069731 24.30731 +0.02852504 0.006069731 24.30731 +0.04126244 0.006069731 24.30731 +0.05836535 0.006069731 24.30731 +0.08132997 0.006069731 24.30731 +0.1121653 0.006069731 24.30731 +0.1535689 0.006069731 24.30731 +0.2091628 0.006069731 24.30731 +0.2838106 0.006069731 24.30731 +0.3840425 0.006069731 24.30731 +0.518627 0.006069731 24.30731 +0.6993381 0.006069731 24.30731 +0.9419845 0.006069731 24.30731 +1.267794 0.006069731 24.30731 +1.705268 0.006069731 24.30731 +2.292679 0.006069731 24.30731 +3.081414 0.006069731 24.30731 +4.140474 0.006069731 24.30731 +5.562508 0.006069731 24.30731 +7.471917 0.006069731 24.30731 +10.03574 0.006069731 24.30731 +13.47828 0.006069731 24.30731 +18.10068 0.006069731 24.30731 +24.30731 0.006069731 24.30731 +32.64117 0.006069731 24.30731 +43.83129 0.006069731 24.30731 +58.85664 0.006069731 24.30731 +-0.0175068 0.01197402 24.30731 +-0.01161267 0.01197402 24.30731 +-0.005718534 0.01197402 24.30731 +0.0001755984 0.01197402 24.30731 +0.006069731 0.01197402 24.30731 +0.01197402 0.01197402 24.30731 +0.01903886 0.01197402 24.30731 +0.02852504 0.01197402 24.30731 +0.04126244 0.01197402 24.30731 +0.05836535 0.01197402 24.30731 +0.08132997 0.01197402 24.30731 +0.1121653 0.01197402 24.30731 +0.1535689 0.01197402 24.30731 +0.2091628 0.01197402 24.30731 +0.2838106 0.01197402 24.30731 +0.3840425 0.01197402 24.30731 +0.518627 0.01197402 24.30731 +0.6993381 0.01197402 24.30731 +0.9419845 0.01197402 24.30731 +1.267794 0.01197402 24.30731 +1.705268 0.01197402 24.30731 +2.292679 0.01197402 24.30731 +3.081414 0.01197402 24.30731 +4.140474 0.01197402 24.30731 +5.562508 0.01197402 24.30731 +7.471917 0.01197402 24.30731 +10.03574 0.01197402 24.30731 +13.47828 0.01197402 24.30731 +18.10068 0.01197402 24.30731 +24.30731 0.01197402 24.30731 +32.64117 0.01197402 24.30731 +43.83129 0.01197402 24.30731 +58.85664 0.01197402 24.30731 +-0.0175068 0.01903886 24.30731 +-0.01161267 0.01903886 24.30731 +-0.005718534 0.01903886 24.30731 +0.0001755984 0.01903886 24.30731 +0.006069731 0.01903886 24.30731 +0.01197402 0.01903886 24.30731 +0.01903886 0.01903886 24.30731 +0.02852504 0.01903886 24.30731 +0.04126244 0.01903886 24.30731 +0.05836535 0.01903886 24.30731 +0.08132997 0.01903886 24.30731 +0.1121653 0.01903886 24.30731 +0.1535689 0.01903886 24.30731 +0.2091628 0.01903886 24.30731 +0.2838106 0.01903886 24.30731 +0.3840425 0.01903886 24.30731 +0.518627 0.01903886 24.30731 +0.6993381 0.01903886 24.30731 +0.9419845 0.01903886 24.30731 +1.267794 0.01903886 24.30731 +1.705268 0.01903886 24.30731 +2.292679 0.01903886 24.30731 +3.081414 0.01903886 24.30731 +4.140474 0.01903886 24.30731 +5.562508 0.01903886 24.30731 +7.471917 0.01903886 24.30731 +10.03574 0.01903886 24.30731 +13.47828 0.01903886 24.30731 +18.10068 0.01903886 24.30731 +24.30731 0.01903886 24.30731 +32.64117 0.01903886 24.30731 +43.83129 0.01903886 24.30731 +58.85664 0.01903886 24.30731 +-0.0175068 0.02852504 24.30731 +-0.01161267 0.02852504 24.30731 +-0.005718534 0.02852504 24.30731 +0.0001755984 0.02852504 24.30731 +0.006069731 0.02852504 24.30731 +0.01197402 0.02852504 24.30731 +0.01903886 0.02852504 24.30731 +0.02852504 0.02852504 24.30731 +0.04126244 0.02852504 24.30731 +0.05836535 0.02852504 24.30731 +0.08132997 0.02852504 24.30731 +0.1121653 0.02852504 24.30731 +0.1535689 0.02852504 24.30731 +0.2091628 0.02852504 24.30731 +0.2838106 0.02852504 24.30731 +0.3840425 0.02852504 24.30731 +0.518627 0.02852504 24.30731 +0.6993381 0.02852504 24.30731 +0.9419845 0.02852504 24.30731 +1.267794 0.02852504 24.30731 +1.705268 0.02852504 24.30731 +2.292679 0.02852504 24.30731 +3.081414 0.02852504 24.30731 +4.140474 0.02852504 24.30731 +5.562508 0.02852504 24.30731 +7.471917 0.02852504 24.30731 +10.03574 0.02852504 24.30731 +13.47828 0.02852504 24.30731 +18.10068 0.02852504 24.30731 +24.30731 0.02852504 24.30731 +32.64117 0.02852504 24.30731 +43.83129 0.02852504 24.30731 +58.85664 0.02852504 24.30731 +-0.0175068 0.04126244 24.30731 +-0.01161267 0.04126244 24.30731 +-0.005718534 0.04126244 24.30731 +0.0001755984 0.04126244 24.30731 +0.006069731 0.04126244 24.30731 +0.01197402 0.04126244 24.30731 +0.01903886 0.04126244 24.30731 +0.02852504 0.04126244 24.30731 +0.04126244 0.04126244 24.30731 +0.05836535 0.04126244 24.30731 +0.08132997 0.04126244 24.30731 +0.1121653 0.04126244 24.30731 +0.1535689 0.04126244 24.30731 +0.2091628 0.04126244 24.30731 +0.2838106 0.04126244 24.30731 +0.3840425 0.04126244 24.30731 +0.518627 0.04126244 24.30731 +0.6993381 0.04126244 24.30731 +0.9419845 0.04126244 24.30731 +1.267794 0.04126244 24.30731 +1.705268 0.04126244 24.30731 +2.292679 0.04126244 24.30731 +3.081414 0.04126244 24.30731 +4.140474 0.04126244 24.30731 +5.562508 0.04126244 24.30731 +7.471917 0.04126244 24.30731 +10.03574 0.04126244 24.30731 +13.47828 0.04126244 24.30731 +18.10068 0.04126244 24.30731 +24.30731 0.04126244 24.30731 +32.64117 0.04126244 24.30731 +43.83129 0.04126244 24.30731 +58.85664 0.04126244 24.30731 +-0.0175068 0.05836535 24.30731 +-0.01161267 0.05836535 24.30731 +-0.005718534 0.05836535 24.30731 +0.0001755984 0.05836535 24.30731 +0.006069731 0.05836535 24.30731 +0.01197402 0.05836535 24.30731 +0.01903886 0.05836535 24.30731 +0.02852504 0.05836535 24.30731 +0.04126244 0.05836535 24.30731 +0.05836535 0.05836535 24.30731 +0.08132997 0.05836535 24.30731 +0.1121653 0.05836535 24.30731 +0.1535689 0.05836535 24.30731 +0.2091628 0.05836535 24.30731 +0.2838106 0.05836535 24.30731 +0.3840425 0.05836535 24.30731 +0.518627 0.05836535 24.30731 +0.6993381 0.05836535 24.30731 +0.9419845 0.05836535 24.30731 +1.267794 0.05836535 24.30731 +1.705268 0.05836535 24.30731 +2.292679 0.05836535 24.30731 +3.081414 0.05836535 24.30731 +4.140474 0.05836535 24.30731 +5.562508 0.05836535 24.30731 +7.471917 0.05836535 24.30731 +10.03574 0.05836535 24.30731 +13.47828 0.05836535 24.30731 +18.10068 0.05836535 24.30731 +24.30731 0.05836535 24.30731 +32.64117 0.05836535 24.30731 +43.83129 0.05836535 24.30731 +58.85664 0.05836535 24.30731 +-0.0175068 0.08132997 24.30731 +-0.01161267 0.08132997 24.30731 +-0.005718534 0.08132997 24.30731 +0.0001755984 0.08132997 24.30731 +0.006069731 0.08132997 24.30731 +0.01197402 0.08132997 24.30731 +0.01903886 0.08132997 24.30731 +0.02852504 0.08132997 24.30731 +0.04126244 0.08132997 24.30731 +0.05836535 0.08132997 24.30731 +0.08132997 0.08132997 24.30731 +0.1121653 0.08132997 24.30731 +0.1535689 0.08132997 24.30731 +0.2091628 0.08132997 24.30731 +0.2838106 0.08132997 24.30731 +0.3840425 0.08132997 24.30731 +0.518627 0.08132997 24.30731 +0.6993381 0.08132997 24.30731 +0.9419845 0.08132997 24.30731 +1.267794 0.08132997 24.30731 +1.705268 0.08132997 24.30731 +2.292679 0.08132997 24.30731 +3.081414 0.08132997 24.30731 +4.140474 0.08132997 24.30731 +5.562508 0.08132997 24.30731 +7.471917 0.08132997 24.30731 +10.03574 0.08132997 24.30731 +13.47828 0.08132997 24.30731 +18.10068 0.08132997 24.30731 +24.30731 0.08132997 24.30731 +32.64117 0.08132997 24.30731 +43.83129 0.08132997 24.30731 +58.85664 0.08132997 24.30731 +-0.0175068 0.1121653 24.30731 +-0.01161267 0.1121653 24.30731 +-0.005718534 0.1121653 24.30731 +0.0001755984 0.1121653 24.30731 +0.006069731 0.1121653 24.30731 +0.01197402 0.1121653 24.30731 +0.01903886 0.1121653 24.30731 +0.02852504 0.1121653 24.30731 +0.04126244 0.1121653 24.30731 +0.05836535 0.1121653 24.30731 +0.08132997 0.1121653 24.30731 +0.1121653 0.1121653 24.30731 +0.1535689 0.1121653 24.30731 +0.2091628 0.1121653 24.30731 +0.2838106 0.1121653 24.30731 +0.3840425 0.1121653 24.30731 +0.518627 0.1121653 24.30731 +0.6993381 0.1121653 24.30731 +0.9419845 0.1121653 24.30731 +1.267794 0.1121653 24.30731 +1.705268 0.1121653 24.30731 +2.292679 0.1121653 24.30731 +3.081414 0.1121653 24.30731 +4.140474 0.1121653 24.30731 +5.562508 0.1121653 24.30731 +7.471917 0.1121653 24.30731 +10.03574 0.1121653 24.30731 +13.47828 0.1121653 24.30731 +18.10068 0.1121653 24.30731 +24.30731 0.1121653 24.30731 +32.64117 0.1121653 24.30731 +43.83129 0.1121653 24.30731 +58.85664 0.1121653 24.30731 +-0.0175068 0.1535689 24.30731 +-0.01161267 0.1535689 24.30731 +-0.005718534 0.1535689 24.30731 +0.0001755984 0.1535689 24.30731 +0.006069731 0.1535689 24.30731 +0.01197402 0.1535689 24.30731 +0.01903886 0.1535689 24.30731 +0.02852504 0.1535689 24.30731 +0.04126244 0.1535689 24.30731 +0.05836535 0.1535689 24.30731 +0.08132997 0.1535689 24.30731 +0.1121653 0.1535689 24.30731 +0.1535689 0.1535689 24.30731 +0.2091628 0.1535689 24.30731 +0.2838106 0.1535689 24.30731 +0.3840425 0.1535689 24.30731 +0.518627 0.1535689 24.30731 +0.6993381 0.1535689 24.30731 +0.9419845 0.1535689 24.30731 +1.267794 0.1535689 24.30731 +1.705268 0.1535689 24.30731 +2.292679 0.1535689 24.30731 +3.081414 0.1535689 24.30731 +4.140474 0.1535689 24.30731 +5.562508 0.1535689 24.30731 +7.471917 0.1535689 24.30731 +10.03574 0.1535689 24.30731 +13.47828 0.1535689 24.30731 +18.10068 0.1535689 24.30731 +24.30731 0.1535689 24.30731 +32.64117 0.1535689 24.30731 +43.83129 0.1535689 24.30731 +58.85664 0.1535689 24.30731 +-0.0175068 0.2091628 24.30731 +-0.01161267 0.2091628 24.30731 +-0.005718534 0.2091628 24.30731 +0.0001755984 0.2091628 24.30731 +0.006069731 0.2091628 24.30731 +0.01197402 0.2091628 24.30731 +0.01903886 0.2091628 24.30731 +0.02852504 0.2091628 24.30731 +0.04126244 0.2091628 24.30731 +0.05836535 0.2091628 24.30731 +0.08132997 0.2091628 24.30731 +0.1121653 0.2091628 24.30731 +0.1535689 0.2091628 24.30731 +0.2091628 0.2091628 24.30731 +0.2838106 0.2091628 24.30731 +0.3840425 0.2091628 24.30731 +0.518627 0.2091628 24.30731 +0.6993381 0.2091628 24.30731 +0.9419845 0.2091628 24.30731 +1.267794 0.2091628 24.30731 +1.705268 0.2091628 24.30731 +2.292679 0.2091628 24.30731 +3.081414 0.2091628 24.30731 +4.140474 0.2091628 24.30731 +5.562508 0.2091628 24.30731 +7.471917 0.2091628 24.30731 +10.03574 0.2091628 24.30731 +13.47828 0.2091628 24.30731 +18.10068 0.2091628 24.30731 +24.30731 0.2091628 24.30731 +32.64117 0.2091628 24.30731 +43.83129 0.2091628 24.30731 +58.85664 0.2091628 24.30731 +-0.0175068 0.2838106 24.30731 +-0.01161267 0.2838106 24.30731 +-0.005718534 0.2838106 24.30731 +0.0001755984 0.2838106 24.30731 +0.006069731 0.2838106 24.30731 +0.01197402 0.2838106 24.30731 +0.01903886 0.2838106 24.30731 +0.02852504 0.2838106 24.30731 +0.04126244 0.2838106 24.30731 +0.05836535 0.2838106 24.30731 +0.08132997 0.2838106 24.30731 +0.1121653 0.2838106 24.30731 +0.1535689 0.2838106 24.30731 +0.2091628 0.2838106 24.30731 +0.2838106 0.2838106 24.30731 +0.3840425 0.2838106 24.30731 +0.518627 0.2838106 24.30731 +0.6993381 0.2838106 24.30731 +0.9419845 0.2838106 24.30731 +1.267794 0.2838106 24.30731 +1.705268 0.2838106 24.30731 +2.292679 0.2838106 24.30731 +3.081414 0.2838106 24.30731 +4.140474 0.2838106 24.30731 +5.562508 0.2838106 24.30731 +7.471917 0.2838106 24.30731 +10.03574 0.2838106 24.30731 +13.47828 0.2838106 24.30731 +18.10068 0.2838106 24.30731 +24.30731 0.2838106 24.30731 +32.64117 0.2838106 24.30731 +43.83129 0.2838106 24.30731 +58.85664 0.2838106 24.30731 +-0.0175068 0.3840425 24.30731 +-0.01161267 0.3840425 24.30731 +-0.005718534 0.3840425 24.30731 +0.0001755984 0.3840425 24.30731 +0.006069731 0.3840425 24.30731 +0.01197402 0.3840425 24.30731 +0.01903886 0.3840425 24.30731 +0.02852504 0.3840425 24.30731 +0.04126244 0.3840425 24.30731 +0.05836535 0.3840425 24.30731 +0.08132997 0.3840425 24.30731 +0.1121653 0.3840425 24.30731 +0.1535689 0.3840425 24.30731 +0.2091628 0.3840425 24.30731 +0.2838106 0.3840425 24.30731 +0.3840425 0.3840425 24.30731 +0.518627 0.3840425 24.30731 +0.6993381 0.3840425 24.30731 +0.9419845 0.3840425 24.30731 +1.267794 0.3840425 24.30731 +1.705268 0.3840425 24.30731 +2.292679 0.3840425 24.30731 +3.081414 0.3840425 24.30731 +4.140474 0.3840425 24.30731 +5.562508 0.3840425 24.30731 +7.471917 0.3840425 24.30731 +10.03574 0.3840425 24.30731 +13.47828 0.3840425 24.30731 +18.10068 0.3840425 24.30731 +24.30731 0.3840425 24.30731 +32.64117 0.3840425 24.30731 +43.83129 0.3840425 24.30731 +58.85664 0.3840425 24.30731 +-0.0175068 0.518627 24.30731 +-0.01161267 0.518627 24.30731 +-0.005718534 0.518627 24.30731 +0.0001755984 0.518627 24.30731 +0.006069731 0.518627 24.30731 +0.01197402 0.518627 24.30731 +0.01903886 0.518627 24.30731 +0.02852504 0.518627 24.30731 +0.04126244 0.518627 24.30731 +0.05836535 0.518627 24.30731 +0.08132997 0.518627 24.30731 +0.1121653 0.518627 24.30731 +0.1535689 0.518627 24.30731 +0.2091628 0.518627 24.30731 +0.2838106 0.518627 24.30731 +0.3840425 0.518627 24.30731 +0.518627 0.518627 24.30731 +0.6993381 0.518627 24.30731 +0.9419845 0.518627 24.30731 +1.267794 0.518627 24.30731 +1.705268 0.518627 24.30731 +2.292679 0.518627 24.30731 +3.081414 0.518627 24.30731 +4.140474 0.518627 24.30731 +5.562508 0.518627 24.30731 +7.471917 0.518627 24.30731 +10.03574 0.518627 24.30731 +13.47828 0.518627 24.30731 +18.10068 0.518627 24.30731 +24.30731 0.518627 24.30731 +32.64117 0.518627 24.30731 +43.83129 0.518627 24.30731 +58.85664 0.518627 24.30731 +-0.0175068 0.6993381 24.30731 +-0.01161267 0.6993381 24.30731 +-0.005718534 0.6993381 24.30731 +0.0001755984 0.6993381 24.30731 +0.006069731 0.6993381 24.30731 +0.01197402 0.6993381 24.30731 +0.01903886 0.6993381 24.30731 +0.02852504 0.6993381 24.30731 +0.04126244 0.6993381 24.30731 +0.05836535 0.6993381 24.30731 +0.08132997 0.6993381 24.30731 +0.1121653 0.6993381 24.30731 +0.1535689 0.6993381 24.30731 +0.2091628 0.6993381 24.30731 +0.2838106 0.6993381 24.30731 +0.3840425 0.6993381 24.30731 +0.518627 0.6993381 24.30731 +0.6993381 0.6993381 24.30731 +0.9419845 0.6993381 24.30731 +1.267794 0.6993381 24.30731 +1.705268 0.6993381 24.30731 +2.292679 0.6993381 24.30731 +3.081414 0.6993381 24.30731 +4.140474 0.6993381 24.30731 +5.562508 0.6993381 24.30731 +7.471917 0.6993381 24.30731 +10.03574 0.6993381 24.30731 +13.47828 0.6993381 24.30731 +18.10068 0.6993381 24.30731 +24.30731 0.6993381 24.30731 +32.64117 0.6993381 24.30731 +43.83129 0.6993381 24.30731 +58.85664 0.6993381 24.30731 +-0.0175068 0.9419845 24.30731 +-0.01161267 0.9419845 24.30731 +-0.005718534 0.9419845 24.30731 +0.0001755984 0.9419845 24.30731 +0.006069731 0.9419845 24.30731 +0.01197402 0.9419845 24.30731 +0.01903886 0.9419845 24.30731 +0.02852504 0.9419845 24.30731 +0.04126244 0.9419845 24.30731 +0.05836535 0.9419845 24.30731 +0.08132997 0.9419845 24.30731 +0.1121653 0.9419845 24.30731 +0.1535689 0.9419845 24.30731 +0.2091628 0.9419845 24.30731 +0.2838106 0.9419845 24.30731 +0.3840425 0.9419845 24.30731 +0.518627 0.9419845 24.30731 +0.6993381 0.9419845 24.30731 +0.9419845 0.9419845 24.30731 +1.267794 0.9419845 24.30731 +1.705268 0.9419845 24.30731 +2.292679 0.9419845 24.30731 +3.081414 0.9419845 24.30731 +4.140474 0.9419845 24.30731 +5.562508 0.9419845 24.30731 +7.471917 0.9419845 24.30731 +10.03574 0.9419845 24.30731 +13.47828 0.9419845 24.30731 +18.10068 0.9419845 24.30731 +24.30731 0.9419845 24.30731 +32.64117 0.9419845 24.30731 +43.83129 0.9419845 24.30731 +58.85664 0.9419845 24.30731 +-0.0175068 1.267794 24.30731 +-0.01161267 1.267794 24.30731 +-0.005718534 1.267794 24.30731 +0.0001755984 1.267794 24.30731 +0.006069731 1.267794 24.30731 +0.01197402 1.267794 24.30731 +0.01903886 1.267794 24.30731 +0.02852504 1.267794 24.30731 +0.04126244 1.267794 24.30731 +0.05836535 1.267794 24.30731 +0.08132997 1.267794 24.30731 +0.1121653 1.267794 24.30731 +0.1535689 1.267794 24.30731 +0.2091628 1.267794 24.30731 +0.2838106 1.267794 24.30731 +0.3840425 1.267794 24.30731 +0.518627 1.267794 24.30731 +0.6993381 1.267794 24.30731 +0.9419845 1.267794 24.30731 +1.267794 1.267794 24.30731 +1.705268 1.267794 24.30731 +2.292679 1.267794 24.30731 +3.081414 1.267794 24.30731 +4.140474 1.267794 24.30731 +5.562508 1.267794 24.30731 +7.471917 1.267794 24.30731 +10.03574 1.267794 24.30731 +13.47828 1.267794 24.30731 +18.10068 1.267794 24.30731 +24.30731 1.267794 24.30731 +32.64117 1.267794 24.30731 +43.83129 1.267794 24.30731 +58.85664 1.267794 24.30731 +-0.0175068 1.705268 24.30731 +-0.01161267 1.705268 24.30731 +-0.005718534 1.705268 24.30731 +0.0001755984 1.705268 24.30731 +0.006069731 1.705268 24.30731 +0.01197402 1.705268 24.30731 +0.01903886 1.705268 24.30731 +0.02852504 1.705268 24.30731 +0.04126244 1.705268 24.30731 +0.05836535 1.705268 24.30731 +0.08132997 1.705268 24.30731 +0.1121653 1.705268 24.30731 +0.1535689 1.705268 24.30731 +0.2091628 1.705268 24.30731 +0.2838106 1.705268 24.30731 +0.3840425 1.705268 24.30731 +0.518627 1.705268 24.30731 +0.6993381 1.705268 24.30731 +0.9419845 1.705268 24.30731 +1.267794 1.705268 24.30731 +1.705268 1.705268 24.30731 +2.292679 1.705268 24.30731 +3.081414 1.705268 24.30731 +4.140474 1.705268 24.30731 +5.562508 1.705268 24.30731 +7.471917 1.705268 24.30731 +10.03574 1.705268 24.30731 +13.47828 1.705268 24.30731 +18.10068 1.705268 24.30731 +24.30731 1.705268 24.30731 +32.64117 1.705268 24.30731 +43.83129 1.705268 24.30731 +58.85664 1.705268 24.30731 +-0.0175068 2.292679 24.30731 +-0.01161267 2.292679 24.30731 +-0.005718534 2.292679 24.30731 +0.0001755984 2.292679 24.30731 +0.006069731 2.292679 24.30731 +0.01197402 2.292679 24.30731 +0.01903886 2.292679 24.30731 +0.02852504 2.292679 24.30731 +0.04126244 2.292679 24.30731 +0.05836535 2.292679 24.30731 +0.08132997 2.292679 24.30731 +0.1121653 2.292679 24.30731 +0.1535689 2.292679 24.30731 +0.2091628 2.292679 24.30731 +0.2838106 2.292679 24.30731 +0.3840425 2.292679 24.30731 +0.518627 2.292679 24.30731 +0.6993381 2.292679 24.30731 +0.9419845 2.292679 24.30731 +1.267794 2.292679 24.30731 +1.705268 2.292679 24.30731 +2.292679 2.292679 24.30731 +3.081414 2.292679 24.30731 +4.140474 2.292679 24.30731 +5.562508 2.292679 24.30731 +7.471917 2.292679 24.30731 +10.03574 2.292679 24.30731 +13.47828 2.292679 24.30731 +18.10068 2.292679 24.30731 +24.30731 2.292679 24.30731 +32.64117 2.292679 24.30731 +43.83129 2.292679 24.30731 +58.85664 2.292679 24.30731 +-0.0175068 3.081414 24.30731 +-0.01161267 3.081414 24.30731 +-0.005718534 3.081414 24.30731 +0.0001755984 3.081414 24.30731 +0.006069731 3.081414 24.30731 +0.01197402 3.081414 24.30731 +0.01903886 3.081414 24.30731 +0.02852504 3.081414 24.30731 +0.04126244 3.081414 24.30731 +0.05836535 3.081414 24.30731 +0.08132997 3.081414 24.30731 +0.1121653 3.081414 24.30731 +0.1535689 3.081414 24.30731 +0.2091628 3.081414 24.30731 +0.2838106 3.081414 24.30731 +0.3840425 3.081414 24.30731 +0.518627 3.081414 24.30731 +0.6993381 3.081414 24.30731 +0.9419845 3.081414 24.30731 +1.267794 3.081414 24.30731 +1.705268 3.081414 24.30731 +2.292679 3.081414 24.30731 +3.081414 3.081414 24.30731 +4.140474 3.081414 24.30731 +5.562508 3.081414 24.30731 +7.471917 3.081414 24.30731 +10.03574 3.081414 24.30731 +13.47828 3.081414 24.30731 +18.10068 3.081414 24.30731 +24.30731 3.081414 24.30731 +32.64117 3.081414 24.30731 +43.83129 3.081414 24.30731 +58.85664 3.081414 24.30731 +-0.0175068 4.140474 24.30731 +-0.01161267 4.140474 24.30731 +-0.005718534 4.140474 24.30731 +0.0001755984 4.140474 24.30731 +0.006069731 4.140474 24.30731 +0.01197402 4.140474 24.30731 +0.01903886 4.140474 24.30731 +0.02852504 4.140474 24.30731 +0.04126244 4.140474 24.30731 +0.05836535 4.140474 24.30731 +0.08132997 4.140474 24.30731 +0.1121653 4.140474 24.30731 +0.1535689 4.140474 24.30731 +0.2091628 4.140474 24.30731 +0.2838106 4.140474 24.30731 +0.3840425 4.140474 24.30731 +0.518627 4.140474 24.30731 +0.6993381 4.140474 24.30731 +0.9419845 4.140474 24.30731 +1.267794 4.140474 24.30731 +1.705268 4.140474 24.30731 +2.292679 4.140474 24.30731 +3.081414 4.140474 24.30731 +4.140474 4.140474 24.30731 +5.562508 4.140474 24.30731 +7.471917 4.140474 24.30731 +10.03574 4.140474 24.30731 +13.47828 4.140474 24.30731 +18.10068 4.140474 24.30731 +24.30731 4.140474 24.30731 +32.64117 4.140474 24.30731 +43.83129 4.140474 24.30731 +58.85664 4.140474 24.30731 +-0.0175068 5.562508 24.30731 +-0.01161267 5.562508 24.30731 +-0.005718534 5.562508 24.30731 +0.0001755984 5.562508 24.30731 +0.006069731 5.562508 24.30731 +0.01197402 5.562508 24.30731 +0.01903886 5.562508 24.30731 +0.02852504 5.562508 24.30731 +0.04126244 5.562508 24.30731 +0.05836535 5.562508 24.30731 +0.08132997 5.562508 24.30731 +0.1121653 5.562508 24.30731 +0.1535689 5.562508 24.30731 +0.2091628 5.562508 24.30731 +0.2838106 5.562508 24.30731 +0.3840425 5.562508 24.30731 +0.518627 5.562508 24.30731 +0.6993381 5.562508 24.30731 +0.9419845 5.562508 24.30731 +1.267794 5.562508 24.30731 +1.705268 5.562508 24.30731 +2.292679 5.562508 24.30731 +3.081414 5.562508 24.30731 +4.140474 5.562508 24.30731 +5.562508 5.562508 24.30731 +7.471917 5.562508 24.30731 +10.03574 5.562508 24.30731 +13.47828 5.562508 24.30731 +18.10068 5.562508 24.30731 +24.30731 5.562508 24.30731 +32.64117 5.562508 24.30731 +43.83129 5.562508 24.30731 +58.85664 5.562508 24.30731 +-0.0175068 7.471917 24.30731 +-0.01161267 7.471917 24.30731 +-0.005718534 7.471917 24.30731 +0.0001755984 7.471917 24.30731 +0.006069731 7.471917 24.30731 +0.01197402 7.471917 24.30731 +0.01903886 7.471917 24.30731 +0.02852504 7.471917 24.30731 +0.04126244 7.471917 24.30731 +0.05836535 7.471917 24.30731 +0.08132997 7.471917 24.30731 +0.1121653 7.471917 24.30731 +0.1535689 7.471917 24.30731 +0.2091628 7.471917 24.30731 +0.2838106 7.471917 24.30731 +0.3840425 7.471917 24.30731 +0.518627 7.471917 24.30731 +0.6993381 7.471917 24.30731 +0.9419845 7.471917 24.30731 +1.267794 7.471917 24.30731 +1.705268 7.471917 24.30731 +2.292679 7.471917 24.30731 +3.081414 7.471917 24.30731 +4.140474 7.471917 24.30731 +5.562508 7.471917 24.30731 +7.471917 7.471917 24.30731 +10.03574 7.471917 24.30731 +13.47828 7.471917 24.30731 +18.10068 7.471917 24.30731 +24.30731 7.471917 24.30731 +32.64117 7.471917 24.30731 +43.83129 7.471917 24.30731 +58.85664 7.471917 24.30731 +-0.0175068 10.03574 24.30731 +-0.01161267 10.03574 24.30731 +-0.005718534 10.03574 24.30731 +0.0001755984 10.03574 24.30731 +0.006069731 10.03574 24.30731 +0.01197402 10.03574 24.30731 +0.01903886 10.03574 24.30731 +0.02852504 10.03574 24.30731 +0.04126244 10.03574 24.30731 +0.05836535 10.03574 24.30731 +0.08132997 10.03574 24.30731 +0.1121653 10.03574 24.30731 +0.1535689 10.03574 24.30731 +0.2091628 10.03574 24.30731 +0.2838106 10.03574 24.30731 +0.3840425 10.03574 24.30731 +0.518627 10.03574 24.30731 +0.6993381 10.03574 24.30731 +0.9419845 10.03574 24.30731 +1.267794 10.03574 24.30731 +1.705268 10.03574 24.30731 +2.292679 10.03574 24.30731 +3.081414 10.03574 24.30731 +4.140474 10.03574 24.30731 +5.562508 10.03574 24.30731 +7.471917 10.03574 24.30731 +10.03574 10.03574 24.30731 +13.47828 10.03574 24.30731 +18.10068 10.03574 24.30731 +24.30731 10.03574 24.30731 +32.64117 10.03574 24.30731 +43.83129 10.03574 24.30731 +58.85664 10.03574 24.30731 +-0.0175068 13.47828 24.30731 +-0.01161267 13.47828 24.30731 +-0.005718534 13.47828 24.30731 +0.0001755984 13.47828 24.30731 +0.006069731 13.47828 24.30731 +0.01197402 13.47828 24.30731 +0.01903886 13.47828 24.30731 +0.02852504 13.47828 24.30731 +0.04126244 13.47828 24.30731 +0.05836535 13.47828 24.30731 +0.08132997 13.47828 24.30731 +0.1121653 13.47828 24.30731 +0.1535689 13.47828 24.30731 +0.2091628 13.47828 24.30731 +0.2838106 13.47828 24.30731 +0.3840425 13.47828 24.30731 +0.518627 13.47828 24.30731 +0.6993381 13.47828 24.30731 +0.9419845 13.47828 24.30731 +1.267794 13.47828 24.30731 +1.705268 13.47828 24.30731 +2.292679 13.47828 24.30731 +3.081414 13.47828 24.30731 +4.140474 13.47828 24.30731 +5.562508 13.47828 24.30731 +7.471917 13.47828 24.30731 +10.03574 13.47828 24.30731 +13.47828 13.47828 24.30731 +18.10068 13.47828 24.30731 +24.30731 13.47828 24.30731 +32.64117 13.47828 24.30731 +43.83129 13.47828 24.30731 +58.85664 13.47828 24.30731 +-0.0175068 18.10068 24.30731 +-0.01161267 18.10068 24.30731 +-0.005718534 18.10068 24.30731 +0.0001755984 18.10068 24.30731 +0.006069731 18.10068 24.30731 +0.01197402 18.10068 24.30731 +0.01903886 18.10068 24.30731 +0.02852504 18.10068 24.30731 +0.04126244 18.10068 24.30731 +0.05836535 18.10068 24.30731 +0.08132997 18.10068 24.30731 +0.1121653 18.10068 24.30731 +0.1535689 18.10068 24.30731 +0.2091628 18.10068 24.30731 +0.2838106 18.10068 24.30731 +0.3840425 18.10068 24.30731 +0.518627 18.10068 24.30731 +0.6993381 18.10068 24.30731 +0.9419845 18.10068 24.30731 +1.267794 18.10068 24.30731 +1.705268 18.10068 24.30731 +2.292679 18.10068 24.30731 +3.081414 18.10068 24.30731 +4.140474 18.10068 24.30731 +5.562508 18.10068 24.30731 +7.471917 18.10068 24.30731 +10.03574 18.10068 24.30731 +13.47828 18.10068 24.30731 +18.10068 18.10068 24.30731 +24.30731 18.10068 24.30731 +32.64117 18.10068 24.30731 +43.83129 18.10068 24.30731 +58.85664 18.10068 24.30731 +-0.0175068 24.30731 24.30731 +-0.01161267 24.30731 24.30731 +-0.005718534 24.30731 24.30731 +0.0001755984 24.30731 24.30731 +0.006069731 24.30731 24.30731 +0.01197402 24.30731 24.30731 +0.01903886 24.30731 24.30731 +0.02852504 24.30731 24.30731 +0.04126244 24.30731 24.30731 +0.05836535 24.30731 24.30731 +0.08132997 24.30731 24.30731 +0.1121653 24.30731 24.30731 +0.1535689 24.30731 24.30731 +0.2091628 24.30731 24.30731 +0.2838106 24.30731 24.30731 +0.3840425 24.30731 24.30731 +0.518627 24.30731 24.30731 +0.6993381 24.30731 24.30731 +0.9419845 24.30731 24.30731 +1.267794 24.30731 24.30731 +1.705268 24.30731 24.30731 +2.292679 24.30731 24.30731 +3.081414 24.30731 24.30731 +4.140474 24.30731 24.30731 +5.562508 24.30731 24.30731 +7.471917 24.30731 24.30731 +10.03574 24.30731 24.30731 +13.47828 24.30731 24.30731 +18.10068 24.30731 24.30731 +24.30731 24.30731 24.30731 +32.64117 24.30731 24.30731 +43.83129 24.30731 24.30731 +58.85664 24.30731 24.30731 +-0.0175068 32.64117 24.30731 +-0.01161267 32.64117 24.30731 +-0.005718534 32.64117 24.30731 +0.0001755984 32.64117 24.30731 +0.006069731 32.64117 24.30731 +0.01197402 32.64117 24.30731 +0.01903886 32.64117 24.30731 +0.02852504 32.64117 24.30731 +0.04126244 32.64117 24.30731 +0.05836535 32.64117 24.30731 +0.08132997 32.64117 24.30731 +0.1121653 32.64117 24.30731 +0.1535689 32.64117 24.30731 +0.2091628 32.64117 24.30731 +0.2838106 32.64117 24.30731 +0.3840425 32.64117 24.30731 +0.518627 32.64117 24.30731 +0.6993381 32.64117 24.30731 +0.9419845 32.64117 24.30731 +1.267794 32.64117 24.30731 +1.705268 32.64117 24.30731 +2.292679 32.64117 24.30731 +3.081414 32.64117 24.30731 +4.140474 32.64117 24.30731 +5.562508 32.64117 24.30731 +7.471917 32.64117 24.30731 +10.03574 32.64117 24.30731 +13.47828 32.64117 24.30731 +18.10068 32.64117 24.30731 +24.30731 32.64117 24.30731 +32.64117 32.64117 24.30731 +43.83129 32.64117 24.30731 +58.85664 32.64117 24.30731 +-0.0175068 43.83129 24.30731 +-0.01161267 43.83129 24.30731 +-0.005718534 43.83129 24.30731 +0.0001755984 43.83129 24.30731 +0.006069731 43.83129 24.30731 +0.01197402 43.83129 24.30731 +0.01903886 43.83129 24.30731 +0.02852504 43.83129 24.30731 +0.04126244 43.83129 24.30731 +0.05836535 43.83129 24.30731 +0.08132997 43.83129 24.30731 +0.1121653 43.83129 24.30731 +0.1535689 43.83129 24.30731 +0.2091628 43.83129 24.30731 +0.2838106 43.83129 24.30731 +0.3840425 43.83129 24.30731 +0.518627 43.83129 24.30731 +0.6993381 43.83129 24.30731 +0.9419845 43.83129 24.30731 +1.267794 43.83129 24.30731 +1.705268 43.83129 24.30731 +2.292679 43.83129 24.30731 +3.081414 43.83129 24.30731 +4.140474 43.83129 24.30731 +5.562508 43.83129 24.30731 +7.471917 43.83129 24.30731 +10.03574 43.83129 24.30731 +13.47828 43.83129 24.30731 +18.10068 43.83129 24.30731 +24.30731 43.83129 24.30731 +32.64117 43.83129 24.30731 +43.83129 43.83129 24.30731 +58.85664 43.83129 24.30731 +-0.0175068 58.85664 24.30731 +-0.01161267 58.85664 24.30731 +-0.005718534 58.85664 24.30731 +0.0001755984 58.85664 24.30731 +0.006069731 58.85664 24.30731 +0.01197402 58.85664 24.30731 +0.01903886 58.85664 24.30731 +0.02852504 58.85664 24.30731 +0.04126244 58.85664 24.30731 +0.05836535 58.85664 24.30731 +0.08132997 58.85664 24.30731 +0.1121653 58.85664 24.30731 +0.1535689 58.85664 24.30731 +0.2091628 58.85664 24.30731 +0.2838106 58.85664 24.30731 +0.3840425 58.85664 24.30731 +0.518627 58.85664 24.30731 +0.6993381 58.85664 24.30731 +0.9419845 58.85664 24.30731 +1.267794 58.85664 24.30731 +1.705268 58.85664 24.30731 +2.292679 58.85664 24.30731 +3.081414 58.85664 24.30731 +4.140474 58.85664 24.30731 +5.562508 58.85664 24.30731 +7.471917 58.85664 24.30731 +10.03574 58.85664 24.30731 +13.47828 58.85664 24.30731 +18.10068 58.85664 24.30731 +24.30731 58.85664 24.30731 +32.64117 58.85664 24.30731 +43.83129 58.85664 24.30731 +58.85664 58.85664 24.30731 +-0.0175068 -0.0175068 32.64117 +-0.01161267 -0.0175068 32.64117 +-0.005718534 -0.0175068 32.64117 +0.0001755984 -0.0175068 32.64117 +0.006069731 -0.0175068 32.64117 +0.01197402 -0.0175068 32.64117 +0.01903886 -0.0175068 32.64117 +0.02852504 -0.0175068 32.64117 +0.04126244 -0.0175068 32.64117 +0.05836535 -0.0175068 32.64117 +0.08132997 -0.0175068 32.64117 +0.1121653 -0.0175068 32.64117 +0.1535689 -0.0175068 32.64117 +0.2091628 -0.0175068 32.64117 +0.2838106 -0.0175068 32.64117 +0.3840425 -0.0175068 32.64117 +0.518627 -0.0175068 32.64117 +0.6993381 -0.0175068 32.64117 +0.9419845 -0.0175068 32.64117 +1.267794 -0.0175068 32.64117 +1.705268 -0.0175068 32.64117 +2.292679 -0.0175068 32.64117 +3.081414 -0.0175068 32.64117 +4.140474 -0.0175068 32.64117 +5.562508 -0.0175068 32.64117 +7.471917 -0.0175068 32.64117 +10.03574 -0.0175068 32.64117 +13.47828 -0.0175068 32.64117 +18.10068 -0.0175068 32.64117 +24.30731 -0.0175068 32.64117 +32.64117 -0.0175068 32.64117 +43.83129 -0.0175068 32.64117 +58.85664 -0.0175068 32.64117 +-0.0175068 -0.01161267 32.64117 +-0.01161267 -0.01161267 32.64117 +-0.005718534 -0.01161267 32.64117 +0.0001755984 -0.01161267 32.64117 +0.006069731 -0.01161267 32.64117 +0.01197402 -0.01161267 32.64117 +0.01903886 -0.01161267 32.64117 +0.02852504 -0.01161267 32.64117 +0.04126244 -0.01161267 32.64117 +0.05836535 -0.01161267 32.64117 +0.08132997 -0.01161267 32.64117 +0.1121653 -0.01161267 32.64117 +0.1535689 -0.01161267 32.64117 +0.2091628 -0.01161267 32.64117 +0.2838106 -0.01161267 32.64117 +0.3840425 -0.01161267 32.64117 +0.518627 -0.01161267 32.64117 +0.6993381 -0.01161267 32.64117 +0.9419845 -0.01161267 32.64117 +1.267794 -0.01161267 32.64117 +1.705268 -0.01161267 32.64117 +2.292679 -0.01161267 32.64117 +3.081414 -0.01161267 32.64117 +4.140474 -0.01161267 32.64117 +5.562508 -0.01161267 32.64117 +7.471917 -0.01161267 32.64117 +10.03574 -0.01161267 32.64117 +13.47828 -0.01161267 32.64117 +18.10068 -0.01161267 32.64117 +24.30731 -0.01161267 32.64117 +32.64117 -0.01161267 32.64117 +43.83129 -0.01161267 32.64117 +58.85664 -0.01161267 32.64117 +-0.0175068 -0.005718534 32.64117 +-0.01161267 -0.005718534 32.64117 +-0.005718534 -0.005718534 32.64117 +0.0001755984 -0.005718534 32.64117 +0.006069731 -0.005718534 32.64117 +0.01197402 -0.005718534 32.64117 +0.01903886 -0.005718534 32.64117 +0.02852504 -0.005718534 32.64117 +0.04126244 -0.005718534 32.64117 +0.05836535 -0.005718534 32.64117 +0.08132997 -0.005718534 32.64117 +0.1121653 -0.005718534 32.64117 +0.1535689 -0.005718534 32.64117 +0.2091628 -0.005718534 32.64117 +0.2838106 -0.005718534 32.64117 +0.3840425 -0.005718534 32.64117 +0.518627 -0.005718534 32.64117 +0.6993381 -0.005718534 32.64117 +0.9419845 -0.005718534 32.64117 +1.267794 -0.005718534 32.64117 +1.705268 -0.005718534 32.64117 +2.292679 -0.005718534 32.64117 +3.081414 -0.005718534 32.64117 +4.140474 -0.005718534 32.64117 +5.562508 -0.005718534 32.64117 +7.471917 -0.005718534 32.64117 +10.03574 -0.005718534 32.64117 +13.47828 -0.005718534 32.64117 +18.10068 -0.005718534 32.64117 +24.30731 -0.005718534 32.64117 +32.64117 -0.005718534 32.64117 +43.83129 -0.005718534 32.64117 +58.85664 -0.005718534 32.64117 +-0.0175068 0.0001755984 32.64117 +-0.01161267 0.0001755984 32.64117 +-0.005718534 0.0001755984 32.64117 +0.0001755984 0.0001755984 32.64117 +0.006069731 0.0001755984 32.64117 +0.01197402 0.0001755984 32.64117 +0.01903886 0.0001755984 32.64117 +0.02852504 0.0001755984 32.64117 +0.04126244 0.0001755984 32.64117 +0.05836535 0.0001755984 32.64117 +0.08132997 0.0001755984 32.64117 +0.1121653 0.0001755984 32.64117 +0.1535689 0.0001755984 32.64117 +0.2091628 0.0001755984 32.64117 +0.2838106 0.0001755984 32.64117 +0.3840425 0.0001755984 32.64117 +0.518627 0.0001755984 32.64117 +0.6993381 0.0001755984 32.64117 +0.9419845 0.0001755984 32.64117 +1.267794 0.0001755984 32.64117 +1.705268 0.0001755984 32.64117 +2.292679 0.0001755984 32.64117 +3.081414 0.0001755984 32.64117 +4.140474 0.0001755984 32.64117 +5.562508 0.0001755984 32.64117 +7.471917 0.0001755984 32.64117 +10.03574 0.0001755984 32.64117 +13.47828 0.0001755984 32.64117 +18.10068 0.0001755984 32.64117 +24.30731 0.0001755984 32.64117 +32.64117 0.0001755984 32.64117 +43.83129 0.0001755984 32.64117 +58.85664 0.0001755984 32.64117 +-0.0175068 0.006069731 32.64117 +-0.01161267 0.006069731 32.64117 +-0.005718534 0.006069731 32.64117 +0.0001755984 0.006069731 32.64117 +0.006069731 0.006069731 32.64117 +0.01197402 0.006069731 32.64117 +0.01903886 0.006069731 32.64117 +0.02852504 0.006069731 32.64117 +0.04126244 0.006069731 32.64117 +0.05836535 0.006069731 32.64117 +0.08132997 0.006069731 32.64117 +0.1121653 0.006069731 32.64117 +0.1535689 0.006069731 32.64117 +0.2091628 0.006069731 32.64117 +0.2838106 0.006069731 32.64117 +0.3840425 0.006069731 32.64117 +0.518627 0.006069731 32.64117 +0.6993381 0.006069731 32.64117 +0.9419845 0.006069731 32.64117 +1.267794 0.006069731 32.64117 +1.705268 0.006069731 32.64117 +2.292679 0.006069731 32.64117 +3.081414 0.006069731 32.64117 +4.140474 0.006069731 32.64117 +5.562508 0.006069731 32.64117 +7.471917 0.006069731 32.64117 +10.03574 0.006069731 32.64117 +13.47828 0.006069731 32.64117 +18.10068 0.006069731 32.64117 +24.30731 0.006069731 32.64117 +32.64117 0.006069731 32.64117 +43.83129 0.006069731 32.64117 +58.85664 0.006069731 32.64117 +-0.0175068 0.01197402 32.64117 +-0.01161267 0.01197402 32.64117 +-0.005718534 0.01197402 32.64117 +0.0001755984 0.01197402 32.64117 +0.006069731 0.01197402 32.64117 +0.01197402 0.01197402 32.64117 +0.01903886 0.01197402 32.64117 +0.02852504 0.01197402 32.64117 +0.04126244 0.01197402 32.64117 +0.05836535 0.01197402 32.64117 +0.08132997 0.01197402 32.64117 +0.1121653 0.01197402 32.64117 +0.1535689 0.01197402 32.64117 +0.2091628 0.01197402 32.64117 +0.2838106 0.01197402 32.64117 +0.3840425 0.01197402 32.64117 +0.518627 0.01197402 32.64117 +0.6993381 0.01197402 32.64117 +0.9419845 0.01197402 32.64117 +1.267794 0.01197402 32.64117 +1.705268 0.01197402 32.64117 +2.292679 0.01197402 32.64117 +3.081414 0.01197402 32.64117 +4.140474 0.01197402 32.64117 +5.562508 0.01197402 32.64117 +7.471917 0.01197402 32.64117 +10.03574 0.01197402 32.64117 +13.47828 0.01197402 32.64117 +18.10068 0.01197402 32.64117 +24.30731 0.01197402 32.64117 +32.64117 0.01197402 32.64117 +43.83129 0.01197402 32.64117 +58.85664 0.01197402 32.64117 +-0.0175068 0.01903886 32.64117 +-0.01161267 0.01903886 32.64117 +-0.005718534 0.01903886 32.64117 +0.0001755984 0.01903886 32.64117 +0.006069731 0.01903886 32.64117 +0.01197402 0.01903886 32.64117 +0.01903886 0.01903886 32.64117 +0.02852504 0.01903886 32.64117 +0.04126244 0.01903886 32.64117 +0.05836535 0.01903886 32.64117 +0.08132997 0.01903886 32.64117 +0.1121653 0.01903886 32.64117 +0.1535689 0.01903886 32.64117 +0.2091628 0.01903886 32.64117 +0.2838106 0.01903886 32.64117 +0.3840425 0.01903886 32.64117 +0.518627 0.01903886 32.64117 +0.6993381 0.01903886 32.64117 +0.9419845 0.01903886 32.64117 +1.267794 0.01903886 32.64117 +1.705268 0.01903886 32.64117 +2.292679 0.01903886 32.64117 +3.081414 0.01903886 32.64117 +4.140474 0.01903886 32.64117 +5.562508 0.01903886 32.64117 +7.471917 0.01903886 32.64117 +10.03574 0.01903886 32.64117 +13.47828 0.01903886 32.64117 +18.10068 0.01903886 32.64117 +24.30731 0.01903886 32.64117 +32.64117 0.01903886 32.64117 +43.83129 0.01903886 32.64117 +58.85664 0.01903886 32.64117 +-0.0175068 0.02852504 32.64117 +-0.01161267 0.02852504 32.64117 +-0.005718534 0.02852504 32.64117 +0.0001755984 0.02852504 32.64117 +0.006069731 0.02852504 32.64117 +0.01197402 0.02852504 32.64117 +0.01903886 0.02852504 32.64117 +0.02852504 0.02852504 32.64117 +0.04126244 0.02852504 32.64117 +0.05836535 0.02852504 32.64117 +0.08132997 0.02852504 32.64117 +0.1121653 0.02852504 32.64117 +0.1535689 0.02852504 32.64117 +0.2091628 0.02852504 32.64117 +0.2838106 0.02852504 32.64117 +0.3840425 0.02852504 32.64117 +0.518627 0.02852504 32.64117 +0.6993381 0.02852504 32.64117 +0.9419845 0.02852504 32.64117 +1.267794 0.02852504 32.64117 +1.705268 0.02852504 32.64117 +2.292679 0.02852504 32.64117 +3.081414 0.02852504 32.64117 +4.140474 0.02852504 32.64117 +5.562508 0.02852504 32.64117 +7.471917 0.02852504 32.64117 +10.03574 0.02852504 32.64117 +13.47828 0.02852504 32.64117 +18.10068 0.02852504 32.64117 +24.30731 0.02852504 32.64117 +32.64117 0.02852504 32.64117 +43.83129 0.02852504 32.64117 +58.85664 0.02852504 32.64117 +-0.0175068 0.04126244 32.64117 +-0.01161267 0.04126244 32.64117 +-0.005718534 0.04126244 32.64117 +0.0001755984 0.04126244 32.64117 +0.006069731 0.04126244 32.64117 +0.01197402 0.04126244 32.64117 +0.01903886 0.04126244 32.64117 +0.02852504 0.04126244 32.64117 +0.04126244 0.04126244 32.64117 +0.05836535 0.04126244 32.64117 +0.08132997 0.04126244 32.64117 +0.1121653 0.04126244 32.64117 +0.1535689 0.04126244 32.64117 +0.2091628 0.04126244 32.64117 +0.2838106 0.04126244 32.64117 +0.3840425 0.04126244 32.64117 +0.518627 0.04126244 32.64117 +0.6993381 0.04126244 32.64117 +0.9419845 0.04126244 32.64117 +1.267794 0.04126244 32.64117 +1.705268 0.04126244 32.64117 +2.292679 0.04126244 32.64117 +3.081414 0.04126244 32.64117 +4.140474 0.04126244 32.64117 +5.562508 0.04126244 32.64117 +7.471917 0.04126244 32.64117 +10.03574 0.04126244 32.64117 +13.47828 0.04126244 32.64117 +18.10068 0.04126244 32.64117 +24.30731 0.04126244 32.64117 +32.64117 0.04126244 32.64117 +43.83129 0.04126244 32.64117 +58.85664 0.04126244 32.64117 +-0.0175068 0.05836535 32.64117 +-0.01161267 0.05836535 32.64117 +-0.005718534 0.05836535 32.64117 +0.0001755984 0.05836535 32.64117 +0.006069731 0.05836535 32.64117 +0.01197402 0.05836535 32.64117 +0.01903886 0.05836535 32.64117 +0.02852504 0.05836535 32.64117 +0.04126244 0.05836535 32.64117 +0.05836535 0.05836535 32.64117 +0.08132997 0.05836535 32.64117 +0.1121653 0.05836535 32.64117 +0.1535689 0.05836535 32.64117 +0.2091628 0.05836535 32.64117 +0.2838106 0.05836535 32.64117 +0.3840425 0.05836535 32.64117 +0.518627 0.05836535 32.64117 +0.6993381 0.05836535 32.64117 +0.9419845 0.05836535 32.64117 +1.267794 0.05836535 32.64117 +1.705268 0.05836535 32.64117 +2.292679 0.05836535 32.64117 +3.081414 0.05836535 32.64117 +4.140474 0.05836535 32.64117 +5.562508 0.05836535 32.64117 +7.471917 0.05836535 32.64117 +10.03574 0.05836535 32.64117 +13.47828 0.05836535 32.64117 +18.10068 0.05836535 32.64117 +24.30731 0.05836535 32.64117 +32.64117 0.05836535 32.64117 +43.83129 0.05836535 32.64117 +58.85664 0.05836535 32.64117 +-0.0175068 0.08132997 32.64117 +-0.01161267 0.08132997 32.64117 +-0.005718534 0.08132997 32.64117 +0.0001755984 0.08132997 32.64117 +0.006069731 0.08132997 32.64117 +0.01197402 0.08132997 32.64117 +0.01903886 0.08132997 32.64117 +0.02852504 0.08132997 32.64117 +0.04126244 0.08132997 32.64117 +0.05836535 0.08132997 32.64117 +0.08132997 0.08132997 32.64117 +0.1121653 0.08132997 32.64117 +0.1535689 0.08132997 32.64117 +0.2091628 0.08132997 32.64117 +0.2838106 0.08132997 32.64117 +0.3840425 0.08132997 32.64117 +0.518627 0.08132997 32.64117 +0.6993381 0.08132997 32.64117 +0.9419845 0.08132997 32.64117 +1.267794 0.08132997 32.64117 +1.705268 0.08132997 32.64117 +2.292679 0.08132997 32.64117 +3.081414 0.08132997 32.64117 +4.140474 0.08132997 32.64117 +5.562508 0.08132997 32.64117 +7.471917 0.08132997 32.64117 +10.03574 0.08132997 32.64117 +13.47828 0.08132997 32.64117 +18.10068 0.08132997 32.64117 +24.30731 0.08132997 32.64117 +32.64117 0.08132997 32.64117 +43.83129 0.08132997 32.64117 +58.85664 0.08132997 32.64117 +-0.0175068 0.1121653 32.64117 +-0.01161267 0.1121653 32.64117 +-0.005718534 0.1121653 32.64117 +0.0001755984 0.1121653 32.64117 +0.006069731 0.1121653 32.64117 +0.01197402 0.1121653 32.64117 +0.01903886 0.1121653 32.64117 +0.02852504 0.1121653 32.64117 +0.04126244 0.1121653 32.64117 +0.05836535 0.1121653 32.64117 +0.08132997 0.1121653 32.64117 +0.1121653 0.1121653 32.64117 +0.1535689 0.1121653 32.64117 +0.2091628 0.1121653 32.64117 +0.2838106 0.1121653 32.64117 +0.3840425 0.1121653 32.64117 +0.518627 0.1121653 32.64117 +0.6993381 0.1121653 32.64117 +0.9419845 0.1121653 32.64117 +1.267794 0.1121653 32.64117 +1.705268 0.1121653 32.64117 +2.292679 0.1121653 32.64117 +3.081414 0.1121653 32.64117 +4.140474 0.1121653 32.64117 +5.562508 0.1121653 32.64117 +7.471917 0.1121653 32.64117 +10.03574 0.1121653 32.64117 +13.47828 0.1121653 32.64117 +18.10068 0.1121653 32.64117 +24.30731 0.1121653 32.64117 +32.64117 0.1121653 32.64117 +43.83129 0.1121653 32.64117 +58.85664 0.1121653 32.64117 +-0.0175068 0.1535689 32.64117 +-0.01161267 0.1535689 32.64117 +-0.005718534 0.1535689 32.64117 +0.0001755984 0.1535689 32.64117 +0.006069731 0.1535689 32.64117 +0.01197402 0.1535689 32.64117 +0.01903886 0.1535689 32.64117 +0.02852504 0.1535689 32.64117 +0.04126244 0.1535689 32.64117 +0.05836535 0.1535689 32.64117 +0.08132997 0.1535689 32.64117 +0.1121653 0.1535689 32.64117 +0.1535689 0.1535689 32.64117 +0.2091628 0.1535689 32.64117 +0.2838106 0.1535689 32.64117 +0.3840425 0.1535689 32.64117 +0.518627 0.1535689 32.64117 +0.6993381 0.1535689 32.64117 +0.9419845 0.1535689 32.64117 +1.267794 0.1535689 32.64117 +1.705268 0.1535689 32.64117 +2.292679 0.1535689 32.64117 +3.081414 0.1535689 32.64117 +4.140474 0.1535689 32.64117 +5.562508 0.1535689 32.64117 +7.471917 0.1535689 32.64117 +10.03574 0.1535689 32.64117 +13.47828 0.1535689 32.64117 +18.10068 0.1535689 32.64117 +24.30731 0.1535689 32.64117 +32.64117 0.1535689 32.64117 +43.83129 0.1535689 32.64117 +58.85664 0.1535689 32.64117 +-0.0175068 0.2091628 32.64117 +-0.01161267 0.2091628 32.64117 +-0.005718534 0.2091628 32.64117 +0.0001755984 0.2091628 32.64117 +0.006069731 0.2091628 32.64117 +0.01197402 0.2091628 32.64117 +0.01903886 0.2091628 32.64117 +0.02852504 0.2091628 32.64117 +0.04126244 0.2091628 32.64117 +0.05836535 0.2091628 32.64117 +0.08132997 0.2091628 32.64117 +0.1121653 0.2091628 32.64117 +0.1535689 0.2091628 32.64117 +0.2091628 0.2091628 32.64117 +0.2838106 0.2091628 32.64117 +0.3840425 0.2091628 32.64117 +0.518627 0.2091628 32.64117 +0.6993381 0.2091628 32.64117 +0.9419845 0.2091628 32.64117 +1.267794 0.2091628 32.64117 +1.705268 0.2091628 32.64117 +2.292679 0.2091628 32.64117 +3.081414 0.2091628 32.64117 +4.140474 0.2091628 32.64117 +5.562508 0.2091628 32.64117 +7.471917 0.2091628 32.64117 +10.03574 0.2091628 32.64117 +13.47828 0.2091628 32.64117 +18.10068 0.2091628 32.64117 +24.30731 0.2091628 32.64117 +32.64117 0.2091628 32.64117 +43.83129 0.2091628 32.64117 +58.85664 0.2091628 32.64117 +-0.0175068 0.2838106 32.64117 +-0.01161267 0.2838106 32.64117 +-0.005718534 0.2838106 32.64117 +0.0001755984 0.2838106 32.64117 +0.006069731 0.2838106 32.64117 +0.01197402 0.2838106 32.64117 +0.01903886 0.2838106 32.64117 +0.02852504 0.2838106 32.64117 +0.04126244 0.2838106 32.64117 +0.05836535 0.2838106 32.64117 +0.08132997 0.2838106 32.64117 +0.1121653 0.2838106 32.64117 +0.1535689 0.2838106 32.64117 +0.2091628 0.2838106 32.64117 +0.2838106 0.2838106 32.64117 +0.3840425 0.2838106 32.64117 +0.518627 0.2838106 32.64117 +0.6993381 0.2838106 32.64117 +0.9419845 0.2838106 32.64117 +1.267794 0.2838106 32.64117 +1.705268 0.2838106 32.64117 +2.292679 0.2838106 32.64117 +3.081414 0.2838106 32.64117 +4.140474 0.2838106 32.64117 +5.562508 0.2838106 32.64117 +7.471917 0.2838106 32.64117 +10.03574 0.2838106 32.64117 +13.47828 0.2838106 32.64117 +18.10068 0.2838106 32.64117 +24.30731 0.2838106 32.64117 +32.64117 0.2838106 32.64117 +43.83129 0.2838106 32.64117 +58.85664 0.2838106 32.64117 +-0.0175068 0.3840425 32.64117 +-0.01161267 0.3840425 32.64117 +-0.005718534 0.3840425 32.64117 +0.0001755984 0.3840425 32.64117 +0.006069731 0.3840425 32.64117 +0.01197402 0.3840425 32.64117 +0.01903886 0.3840425 32.64117 +0.02852504 0.3840425 32.64117 +0.04126244 0.3840425 32.64117 +0.05836535 0.3840425 32.64117 +0.08132997 0.3840425 32.64117 +0.1121653 0.3840425 32.64117 +0.1535689 0.3840425 32.64117 +0.2091628 0.3840425 32.64117 +0.2838106 0.3840425 32.64117 +0.3840425 0.3840425 32.64117 +0.518627 0.3840425 32.64117 +0.6993381 0.3840425 32.64117 +0.9419845 0.3840425 32.64117 +1.267794 0.3840425 32.64117 +1.705268 0.3840425 32.64117 +2.292679 0.3840425 32.64117 +3.081414 0.3840425 32.64117 +4.140474 0.3840425 32.64117 +5.562508 0.3840425 32.64117 +7.471917 0.3840425 32.64117 +10.03574 0.3840425 32.64117 +13.47828 0.3840425 32.64117 +18.10068 0.3840425 32.64117 +24.30731 0.3840425 32.64117 +32.64117 0.3840425 32.64117 +43.83129 0.3840425 32.64117 +58.85664 0.3840425 32.64117 +-0.0175068 0.518627 32.64117 +-0.01161267 0.518627 32.64117 +-0.005718534 0.518627 32.64117 +0.0001755984 0.518627 32.64117 +0.006069731 0.518627 32.64117 +0.01197402 0.518627 32.64117 +0.01903886 0.518627 32.64117 +0.02852504 0.518627 32.64117 +0.04126244 0.518627 32.64117 +0.05836535 0.518627 32.64117 +0.08132997 0.518627 32.64117 +0.1121653 0.518627 32.64117 +0.1535689 0.518627 32.64117 +0.2091628 0.518627 32.64117 +0.2838106 0.518627 32.64117 +0.3840425 0.518627 32.64117 +0.518627 0.518627 32.64117 +0.6993381 0.518627 32.64117 +0.9419845 0.518627 32.64117 +1.267794 0.518627 32.64117 +1.705268 0.518627 32.64117 +2.292679 0.518627 32.64117 +3.081414 0.518627 32.64117 +4.140474 0.518627 32.64117 +5.562508 0.518627 32.64117 +7.471917 0.518627 32.64117 +10.03574 0.518627 32.64117 +13.47828 0.518627 32.64117 +18.10068 0.518627 32.64117 +24.30731 0.518627 32.64117 +32.64117 0.518627 32.64117 +43.83129 0.518627 32.64117 +58.85664 0.518627 32.64117 +-0.0175068 0.6993381 32.64117 +-0.01161267 0.6993381 32.64117 +-0.005718534 0.6993381 32.64117 +0.0001755984 0.6993381 32.64117 +0.006069731 0.6993381 32.64117 +0.01197402 0.6993381 32.64117 +0.01903886 0.6993381 32.64117 +0.02852504 0.6993381 32.64117 +0.04126244 0.6993381 32.64117 +0.05836535 0.6993381 32.64117 +0.08132997 0.6993381 32.64117 +0.1121653 0.6993381 32.64117 +0.1535689 0.6993381 32.64117 +0.2091628 0.6993381 32.64117 +0.2838106 0.6993381 32.64117 +0.3840425 0.6993381 32.64117 +0.518627 0.6993381 32.64117 +0.6993381 0.6993381 32.64117 +0.9419845 0.6993381 32.64117 +1.267794 0.6993381 32.64117 +1.705268 0.6993381 32.64117 +2.292679 0.6993381 32.64117 +3.081414 0.6993381 32.64117 +4.140474 0.6993381 32.64117 +5.562508 0.6993381 32.64117 +7.471917 0.6993381 32.64117 +10.03574 0.6993381 32.64117 +13.47828 0.6993381 32.64117 +18.10068 0.6993381 32.64117 +24.30731 0.6993381 32.64117 +32.64117 0.6993381 32.64117 +43.83129 0.6993381 32.64117 +58.85664 0.6993381 32.64117 +-0.0175068 0.9419845 32.64117 +-0.01161267 0.9419845 32.64117 +-0.005718534 0.9419845 32.64117 +0.0001755984 0.9419845 32.64117 +0.006069731 0.9419845 32.64117 +0.01197402 0.9419845 32.64117 +0.01903886 0.9419845 32.64117 +0.02852504 0.9419845 32.64117 +0.04126244 0.9419845 32.64117 +0.05836535 0.9419845 32.64117 +0.08132997 0.9419845 32.64117 +0.1121653 0.9419845 32.64117 +0.1535689 0.9419845 32.64117 +0.2091628 0.9419845 32.64117 +0.2838106 0.9419845 32.64117 +0.3840425 0.9419845 32.64117 +0.518627 0.9419845 32.64117 +0.6993381 0.9419845 32.64117 +0.9419845 0.9419845 32.64117 +1.267794 0.9419845 32.64117 +1.705268 0.9419845 32.64117 +2.292679 0.9419845 32.64117 +3.081414 0.9419845 32.64117 +4.140474 0.9419845 32.64117 +5.562508 0.9419845 32.64117 +7.471917 0.9419845 32.64117 +10.03574 0.9419845 32.64117 +13.47828 0.9419845 32.64117 +18.10068 0.9419845 32.64117 +24.30731 0.9419845 32.64117 +32.64117 0.9419845 32.64117 +43.83129 0.9419845 32.64117 +58.85664 0.9419845 32.64117 +-0.0175068 1.267794 32.64117 +-0.01161267 1.267794 32.64117 +-0.005718534 1.267794 32.64117 +0.0001755984 1.267794 32.64117 +0.006069731 1.267794 32.64117 +0.01197402 1.267794 32.64117 +0.01903886 1.267794 32.64117 +0.02852504 1.267794 32.64117 +0.04126244 1.267794 32.64117 +0.05836535 1.267794 32.64117 +0.08132997 1.267794 32.64117 +0.1121653 1.267794 32.64117 +0.1535689 1.267794 32.64117 +0.2091628 1.267794 32.64117 +0.2838106 1.267794 32.64117 +0.3840425 1.267794 32.64117 +0.518627 1.267794 32.64117 +0.6993381 1.267794 32.64117 +0.9419845 1.267794 32.64117 +1.267794 1.267794 32.64117 +1.705268 1.267794 32.64117 +2.292679 1.267794 32.64117 +3.081414 1.267794 32.64117 +4.140474 1.267794 32.64117 +5.562508 1.267794 32.64117 +7.471917 1.267794 32.64117 +10.03574 1.267794 32.64117 +13.47828 1.267794 32.64117 +18.10068 1.267794 32.64117 +24.30731 1.267794 32.64117 +32.64117 1.267794 32.64117 +43.83129 1.267794 32.64117 +58.85664 1.267794 32.64117 +-0.0175068 1.705268 32.64117 +-0.01161267 1.705268 32.64117 +-0.005718534 1.705268 32.64117 +0.0001755984 1.705268 32.64117 +0.006069731 1.705268 32.64117 +0.01197402 1.705268 32.64117 +0.01903886 1.705268 32.64117 +0.02852504 1.705268 32.64117 +0.04126244 1.705268 32.64117 +0.05836535 1.705268 32.64117 +0.08132997 1.705268 32.64117 +0.1121653 1.705268 32.64117 +0.1535689 1.705268 32.64117 +0.2091628 1.705268 32.64117 +0.2838106 1.705268 32.64117 +0.3840425 1.705268 32.64117 +0.518627 1.705268 32.64117 +0.6993381 1.705268 32.64117 +0.9419845 1.705268 32.64117 +1.267794 1.705268 32.64117 +1.705268 1.705268 32.64117 +2.292679 1.705268 32.64117 +3.081414 1.705268 32.64117 +4.140474 1.705268 32.64117 +5.562508 1.705268 32.64117 +7.471917 1.705268 32.64117 +10.03574 1.705268 32.64117 +13.47828 1.705268 32.64117 +18.10068 1.705268 32.64117 +24.30731 1.705268 32.64117 +32.64117 1.705268 32.64117 +43.83129 1.705268 32.64117 +58.85664 1.705268 32.64117 +-0.0175068 2.292679 32.64117 +-0.01161267 2.292679 32.64117 +-0.005718534 2.292679 32.64117 +0.0001755984 2.292679 32.64117 +0.006069731 2.292679 32.64117 +0.01197402 2.292679 32.64117 +0.01903886 2.292679 32.64117 +0.02852504 2.292679 32.64117 +0.04126244 2.292679 32.64117 +0.05836535 2.292679 32.64117 +0.08132997 2.292679 32.64117 +0.1121653 2.292679 32.64117 +0.1535689 2.292679 32.64117 +0.2091628 2.292679 32.64117 +0.2838106 2.292679 32.64117 +0.3840425 2.292679 32.64117 +0.518627 2.292679 32.64117 +0.6993381 2.292679 32.64117 +0.9419845 2.292679 32.64117 +1.267794 2.292679 32.64117 +1.705268 2.292679 32.64117 +2.292679 2.292679 32.64117 +3.081414 2.292679 32.64117 +4.140474 2.292679 32.64117 +5.562508 2.292679 32.64117 +7.471917 2.292679 32.64117 +10.03574 2.292679 32.64117 +13.47828 2.292679 32.64117 +18.10068 2.292679 32.64117 +24.30731 2.292679 32.64117 +32.64117 2.292679 32.64117 +43.83129 2.292679 32.64117 +58.85664 2.292679 32.64117 +-0.0175068 3.081414 32.64117 +-0.01161267 3.081414 32.64117 +-0.005718534 3.081414 32.64117 +0.0001755984 3.081414 32.64117 +0.006069731 3.081414 32.64117 +0.01197402 3.081414 32.64117 +0.01903886 3.081414 32.64117 +0.02852504 3.081414 32.64117 +0.04126244 3.081414 32.64117 +0.05836535 3.081414 32.64117 +0.08132997 3.081414 32.64117 +0.1121653 3.081414 32.64117 +0.1535689 3.081414 32.64117 +0.2091628 3.081414 32.64117 +0.2838106 3.081414 32.64117 +0.3840425 3.081414 32.64117 +0.518627 3.081414 32.64117 +0.6993381 3.081414 32.64117 +0.9419845 3.081414 32.64117 +1.267794 3.081414 32.64117 +1.705268 3.081414 32.64117 +2.292679 3.081414 32.64117 +3.081414 3.081414 32.64117 +4.140474 3.081414 32.64117 +5.562508 3.081414 32.64117 +7.471917 3.081414 32.64117 +10.03574 3.081414 32.64117 +13.47828 3.081414 32.64117 +18.10068 3.081414 32.64117 +24.30731 3.081414 32.64117 +32.64117 3.081414 32.64117 +43.83129 3.081414 32.64117 +58.85664 3.081414 32.64117 +-0.0175068 4.140474 32.64117 +-0.01161267 4.140474 32.64117 +-0.005718534 4.140474 32.64117 +0.0001755984 4.140474 32.64117 +0.006069731 4.140474 32.64117 +0.01197402 4.140474 32.64117 +0.01903886 4.140474 32.64117 +0.02852504 4.140474 32.64117 +0.04126244 4.140474 32.64117 +0.05836535 4.140474 32.64117 +0.08132997 4.140474 32.64117 +0.1121653 4.140474 32.64117 +0.1535689 4.140474 32.64117 +0.2091628 4.140474 32.64117 +0.2838106 4.140474 32.64117 +0.3840425 4.140474 32.64117 +0.518627 4.140474 32.64117 +0.6993381 4.140474 32.64117 +0.9419845 4.140474 32.64117 +1.267794 4.140474 32.64117 +1.705268 4.140474 32.64117 +2.292679 4.140474 32.64117 +3.081414 4.140474 32.64117 +4.140474 4.140474 32.64117 +5.562508 4.140474 32.64117 +7.471917 4.140474 32.64117 +10.03574 4.140474 32.64117 +13.47828 4.140474 32.64117 +18.10068 4.140474 32.64117 +24.30731 4.140474 32.64117 +32.64117 4.140474 32.64117 +43.83129 4.140474 32.64117 +58.85664 4.140474 32.64117 +-0.0175068 5.562508 32.64117 +-0.01161267 5.562508 32.64117 +-0.005718534 5.562508 32.64117 +0.0001755984 5.562508 32.64117 +0.006069731 5.562508 32.64117 +0.01197402 5.562508 32.64117 +0.01903886 5.562508 32.64117 +0.02852504 5.562508 32.64117 +0.04126244 5.562508 32.64117 +0.05836535 5.562508 32.64117 +0.08132997 5.562508 32.64117 +0.1121653 5.562508 32.64117 +0.1535689 5.562508 32.64117 +0.2091628 5.562508 32.64117 +0.2838106 5.562508 32.64117 +0.3840425 5.562508 32.64117 +0.518627 5.562508 32.64117 +0.6993381 5.562508 32.64117 +0.9419845 5.562508 32.64117 +1.267794 5.562508 32.64117 +1.705268 5.562508 32.64117 +2.292679 5.562508 32.64117 +3.081414 5.562508 32.64117 +4.140474 5.562508 32.64117 +5.562508 5.562508 32.64117 +7.471917 5.562508 32.64117 +10.03574 5.562508 32.64117 +13.47828 5.562508 32.64117 +18.10068 5.562508 32.64117 +24.30731 5.562508 32.64117 +32.64117 5.562508 32.64117 +43.83129 5.562508 32.64117 +58.85664 5.562508 32.64117 +-0.0175068 7.471917 32.64117 +-0.01161267 7.471917 32.64117 +-0.005718534 7.471917 32.64117 +0.0001755984 7.471917 32.64117 +0.006069731 7.471917 32.64117 +0.01197402 7.471917 32.64117 +0.01903886 7.471917 32.64117 +0.02852504 7.471917 32.64117 +0.04126244 7.471917 32.64117 +0.05836535 7.471917 32.64117 +0.08132997 7.471917 32.64117 +0.1121653 7.471917 32.64117 +0.1535689 7.471917 32.64117 +0.2091628 7.471917 32.64117 +0.2838106 7.471917 32.64117 +0.3840425 7.471917 32.64117 +0.518627 7.471917 32.64117 +0.6993381 7.471917 32.64117 +0.9419845 7.471917 32.64117 +1.267794 7.471917 32.64117 +1.705268 7.471917 32.64117 +2.292679 7.471917 32.64117 +3.081414 7.471917 32.64117 +4.140474 7.471917 32.64117 +5.562508 7.471917 32.64117 +7.471917 7.471917 32.64117 +10.03574 7.471917 32.64117 +13.47828 7.471917 32.64117 +18.10068 7.471917 32.64117 +24.30731 7.471917 32.64117 +32.64117 7.471917 32.64117 +43.83129 7.471917 32.64117 +58.85664 7.471917 32.64117 +-0.0175068 10.03574 32.64117 +-0.01161267 10.03574 32.64117 +-0.005718534 10.03574 32.64117 +0.0001755984 10.03574 32.64117 +0.006069731 10.03574 32.64117 +0.01197402 10.03574 32.64117 +0.01903886 10.03574 32.64117 +0.02852504 10.03574 32.64117 +0.04126244 10.03574 32.64117 +0.05836535 10.03574 32.64117 +0.08132997 10.03574 32.64117 +0.1121653 10.03574 32.64117 +0.1535689 10.03574 32.64117 +0.2091628 10.03574 32.64117 +0.2838106 10.03574 32.64117 +0.3840425 10.03574 32.64117 +0.518627 10.03574 32.64117 +0.6993381 10.03574 32.64117 +0.9419845 10.03574 32.64117 +1.267794 10.03574 32.64117 +1.705268 10.03574 32.64117 +2.292679 10.03574 32.64117 +3.081414 10.03574 32.64117 +4.140474 10.03574 32.64117 +5.562508 10.03574 32.64117 +7.471917 10.03574 32.64117 +10.03574 10.03574 32.64117 +13.47828 10.03574 32.64117 +18.10068 10.03574 32.64117 +24.30731 10.03574 32.64117 +32.64117 10.03574 32.64117 +43.83129 10.03574 32.64117 +58.85664 10.03574 32.64117 +-0.0175068 13.47828 32.64117 +-0.01161267 13.47828 32.64117 +-0.005718534 13.47828 32.64117 +0.0001755984 13.47828 32.64117 +0.006069731 13.47828 32.64117 +0.01197402 13.47828 32.64117 +0.01903886 13.47828 32.64117 +0.02852504 13.47828 32.64117 +0.04126244 13.47828 32.64117 +0.05836535 13.47828 32.64117 +0.08132997 13.47828 32.64117 +0.1121653 13.47828 32.64117 +0.1535689 13.47828 32.64117 +0.2091628 13.47828 32.64117 +0.2838106 13.47828 32.64117 +0.3840425 13.47828 32.64117 +0.518627 13.47828 32.64117 +0.6993381 13.47828 32.64117 +0.9419845 13.47828 32.64117 +1.267794 13.47828 32.64117 +1.705268 13.47828 32.64117 +2.292679 13.47828 32.64117 +3.081414 13.47828 32.64117 +4.140474 13.47828 32.64117 +5.562508 13.47828 32.64117 +7.471917 13.47828 32.64117 +10.03574 13.47828 32.64117 +13.47828 13.47828 32.64117 +18.10068 13.47828 32.64117 +24.30731 13.47828 32.64117 +32.64117 13.47828 32.64117 +43.83129 13.47828 32.64117 +58.85664 13.47828 32.64117 +-0.0175068 18.10068 32.64117 +-0.01161267 18.10068 32.64117 +-0.005718534 18.10068 32.64117 +0.0001755984 18.10068 32.64117 +0.006069731 18.10068 32.64117 +0.01197402 18.10068 32.64117 +0.01903886 18.10068 32.64117 +0.02852504 18.10068 32.64117 +0.04126244 18.10068 32.64117 +0.05836535 18.10068 32.64117 +0.08132997 18.10068 32.64117 +0.1121653 18.10068 32.64117 +0.1535689 18.10068 32.64117 +0.2091628 18.10068 32.64117 +0.2838106 18.10068 32.64117 +0.3840425 18.10068 32.64117 +0.518627 18.10068 32.64117 +0.6993381 18.10068 32.64117 +0.9419845 18.10068 32.64117 +1.267794 18.10068 32.64117 +1.705268 18.10068 32.64117 +2.292679 18.10068 32.64117 +3.081414 18.10068 32.64117 +4.140474 18.10068 32.64117 +5.562508 18.10068 32.64117 +7.471917 18.10068 32.64117 +10.03574 18.10068 32.64117 +13.47828 18.10068 32.64117 +18.10068 18.10068 32.64117 +24.30731 18.10068 32.64117 +32.64117 18.10068 32.64117 +43.83129 18.10068 32.64117 +58.85664 18.10068 32.64117 +-0.0175068 24.30731 32.64117 +-0.01161267 24.30731 32.64117 +-0.005718534 24.30731 32.64117 +0.0001755984 24.30731 32.64117 +0.006069731 24.30731 32.64117 +0.01197402 24.30731 32.64117 +0.01903886 24.30731 32.64117 +0.02852504 24.30731 32.64117 +0.04126244 24.30731 32.64117 +0.05836535 24.30731 32.64117 +0.08132997 24.30731 32.64117 +0.1121653 24.30731 32.64117 +0.1535689 24.30731 32.64117 +0.2091628 24.30731 32.64117 +0.2838106 24.30731 32.64117 +0.3840425 24.30731 32.64117 +0.518627 24.30731 32.64117 +0.6993381 24.30731 32.64117 +0.9419845 24.30731 32.64117 +1.267794 24.30731 32.64117 +1.705268 24.30731 32.64117 +2.292679 24.30731 32.64117 +3.081414 24.30731 32.64117 +4.140474 24.30731 32.64117 +5.562508 24.30731 32.64117 +7.471917 24.30731 32.64117 +10.03574 24.30731 32.64117 +13.47828 24.30731 32.64117 +18.10068 24.30731 32.64117 +24.30731 24.30731 32.64117 +32.64117 24.30731 32.64117 +43.83129 24.30731 32.64117 +58.85664 24.30731 32.64117 +-0.0175068 32.64117 32.64117 +-0.01161267 32.64117 32.64117 +-0.005718534 32.64117 32.64117 +0.0001755984 32.64117 32.64117 +0.006069731 32.64117 32.64117 +0.01197402 32.64117 32.64117 +0.01903886 32.64117 32.64117 +0.02852504 32.64117 32.64117 +0.04126244 32.64117 32.64117 +0.05836535 32.64117 32.64117 +0.08132997 32.64117 32.64117 +0.1121653 32.64117 32.64117 +0.1535689 32.64117 32.64117 +0.2091628 32.64117 32.64117 +0.2838106 32.64117 32.64117 +0.3840425 32.64117 32.64117 +0.518627 32.64117 32.64117 +0.6993381 32.64117 32.64117 +0.9419845 32.64117 32.64117 +1.267794 32.64117 32.64117 +1.705268 32.64117 32.64117 +2.292679 32.64117 32.64117 +3.081414 32.64117 32.64117 +4.140474 32.64117 32.64117 +5.562508 32.64117 32.64117 +7.471917 32.64117 32.64117 +10.03574 32.64117 32.64117 +13.47828 32.64117 32.64117 +18.10068 32.64117 32.64117 +24.30731 32.64117 32.64117 +32.64117 32.64117 32.64117 +43.83129 32.64117 32.64117 +58.85664 32.64117 32.64117 +-0.0175068 43.83129 32.64117 +-0.01161267 43.83129 32.64117 +-0.005718534 43.83129 32.64117 +0.0001755984 43.83129 32.64117 +0.006069731 43.83129 32.64117 +0.01197402 43.83129 32.64117 +0.01903886 43.83129 32.64117 +0.02852504 43.83129 32.64117 +0.04126244 43.83129 32.64117 +0.05836535 43.83129 32.64117 +0.08132997 43.83129 32.64117 +0.1121653 43.83129 32.64117 +0.1535689 43.83129 32.64117 +0.2091628 43.83129 32.64117 +0.2838106 43.83129 32.64117 +0.3840425 43.83129 32.64117 +0.518627 43.83129 32.64117 +0.6993381 43.83129 32.64117 +0.9419845 43.83129 32.64117 +1.267794 43.83129 32.64117 +1.705268 43.83129 32.64117 +2.292679 43.83129 32.64117 +3.081414 43.83129 32.64117 +4.140474 43.83129 32.64117 +5.562508 43.83129 32.64117 +7.471917 43.83129 32.64117 +10.03574 43.83129 32.64117 +13.47828 43.83129 32.64117 +18.10068 43.83129 32.64117 +24.30731 43.83129 32.64117 +32.64117 43.83129 32.64117 +43.83129 43.83129 32.64117 +58.85664 43.83129 32.64117 +-0.0175068 58.85664 32.64117 +-0.01161267 58.85664 32.64117 +-0.005718534 58.85664 32.64117 +0.0001755984 58.85664 32.64117 +0.006069731 58.85664 32.64117 +0.01197402 58.85664 32.64117 +0.01903886 58.85664 32.64117 +0.02852504 58.85664 32.64117 +0.04126244 58.85664 32.64117 +0.05836535 58.85664 32.64117 +0.08132997 58.85664 32.64117 +0.1121653 58.85664 32.64117 +0.1535689 58.85664 32.64117 +0.2091628 58.85664 32.64117 +0.2838106 58.85664 32.64117 +0.3840425 58.85664 32.64117 +0.518627 58.85664 32.64117 +0.6993381 58.85664 32.64117 +0.9419845 58.85664 32.64117 +1.267794 58.85664 32.64117 +1.705268 58.85664 32.64117 +2.292679 58.85664 32.64117 +3.081414 58.85664 32.64117 +4.140474 58.85664 32.64117 +5.562508 58.85664 32.64117 +7.471917 58.85664 32.64117 +10.03574 58.85664 32.64117 +13.47828 58.85664 32.64117 +18.10068 58.85664 32.64117 +24.30731 58.85664 32.64117 +32.64117 58.85664 32.64117 +43.83129 58.85664 32.64117 +58.85664 58.85664 32.64117 +-0.0175068 -0.0175068 43.83129 +-0.01161267 -0.0175068 43.83129 +-0.005718534 -0.0175068 43.83129 +0.0001755984 -0.0175068 43.83129 +0.006069731 -0.0175068 43.83129 +0.01197402 -0.0175068 43.83129 +0.01903886 -0.0175068 43.83129 +0.02852504 -0.0175068 43.83129 +0.04126244 -0.0175068 43.83129 +0.05836535 -0.0175068 43.83129 +0.08132997 -0.0175068 43.83129 +0.1121653 -0.0175068 43.83129 +0.1535689 -0.0175068 43.83129 +0.2091628 -0.0175068 43.83129 +0.2838106 -0.0175068 43.83129 +0.3840425 -0.0175068 43.83129 +0.518627 -0.0175068 43.83129 +0.6993381 -0.0175068 43.83129 +0.9419845 -0.0175068 43.83129 +1.267794 -0.0175068 43.83129 +1.705268 -0.0175068 43.83129 +2.292679 -0.0175068 43.83129 +3.081414 -0.0175068 43.83129 +4.140474 -0.0175068 43.83129 +5.562508 -0.0175068 43.83129 +7.471917 -0.0175068 43.83129 +10.03574 -0.0175068 43.83129 +13.47828 -0.0175068 43.83129 +18.10068 -0.0175068 43.83129 +24.30731 -0.0175068 43.83129 +32.64117 -0.0175068 43.83129 +43.83129 -0.0175068 43.83129 +58.85664 -0.0175068 43.83129 +-0.0175068 -0.01161267 43.83129 +-0.01161267 -0.01161267 43.83129 +-0.005718534 -0.01161267 43.83129 +0.0001755984 -0.01161267 43.83129 +0.006069731 -0.01161267 43.83129 +0.01197402 -0.01161267 43.83129 +0.01903886 -0.01161267 43.83129 +0.02852504 -0.01161267 43.83129 +0.04126244 -0.01161267 43.83129 +0.05836535 -0.01161267 43.83129 +0.08132997 -0.01161267 43.83129 +0.1121653 -0.01161267 43.83129 +0.1535689 -0.01161267 43.83129 +0.2091628 -0.01161267 43.83129 +0.2838106 -0.01161267 43.83129 +0.3840425 -0.01161267 43.83129 +0.518627 -0.01161267 43.83129 +0.6993381 -0.01161267 43.83129 +0.9419845 -0.01161267 43.83129 +1.267794 -0.01161267 43.83129 +1.705268 -0.01161267 43.83129 +2.292679 -0.01161267 43.83129 +3.081414 -0.01161267 43.83129 +4.140474 -0.01161267 43.83129 +5.562508 -0.01161267 43.83129 +7.471917 -0.01161267 43.83129 +10.03574 -0.01161267 43.83129 +13.47828 -0.01161267 43.83129 +18.10068 -0.01161267 43.83129 +24.30731 -0.01161267 43.83129 +32.64117 -0.01161267 43.83129 +43.83129 -0.01161267 43.83129 +58.85664 -0.01161267 43.83129 +-0.0175068 -0.005718534 43.83129 +-0.01161267 -0.005718534 43.83129 +-0.005718534 -0.005718534 43.83129 +0.0001755984 -0.005718534 43.83129 +0.006069731 -0.005718534 43.83129 +0.01197402 -0.005718534 43.83129 +0.01903886 -0.005718534 43.83129 +0.02852504 -0.005718534 43.83129 +0.04126244 -0.005718534 43.83129 +0.05836535 -0.005718534 43.83129 +0.08132997 -0.005718534 43.83129 +0.1121653 -0.005718534 43.83129 +0.1535689 -0.005718534 43.83129 +0.2091628 -0.005718534 43.83129 +0.2838106 -0.005718534 43.83129 +0.3840425 -0.005718534 43.83129 +0.518627 -0.005718534 43.83129 +0.6993381 -0.005718534 43.83129 +0.9419845 -0.005718534 43.83129 +1.267794 -0.005718534 43.83129 +1.705268 -0.005718534 43.83129 +2.292679 -0.005718534 43.83129 +3.081414 -0.005718534 43.83129 +4.140474 -0.005718534 43.83129 +5.562508 -0.005718534 43.83129 +7.471917 -0.005718534 43.83129 +10.03574 -0.005718534 43.83129 +13.47828 -0.005718534 43.83129 +18.10068 -0.005718534 43.83129 +24.30731 -0.005718534 43.83129 +32.64117 -0.005718534 43.83129 +43.83129 -0.005718534 43.83129 +58.85664 -0.005718534 43.83129 +-0.0175068 0.0001755984 43.83129 +-0.01161267 0.0001755984 43.83129 +-0.005718534 0.0001755984 43.83129 +0.0001755984 0.0001755984 43.83129 +0.006069731 0.0001755984 43.83129 +0.01197402 0.0001755984 43.83129 +0.01903886 0.0001755984 43.83129 +0.02852504 0.0001755984 43.83129 +0.04126244 0.0001755984 43.83129 +0.05836535 0.0001755984 43.83129 +0.08132997 0.0001755984 43.83129 +0.1121653 0.0001755984 43.83129 +0.1535689 0.0001755984 43.83129 +0.2091628 0.0001755984 43.83129 +0.2838106 0.0001755984 43.83129 +0.3840425 0.0001755984 43.83129 +0.518627 0.0001755984 43.83129 +0.6993381 0.0001755984 43.83129 +0.9419845 0.0001755984 43.83129 +1.267794 0.0001755984 43.83129 +1.705268 0.0001755984 43.83129 +2.292679 0.0001755984 43.83129 +3.081414 0.0001755984 43.83129 +4.140474 0.0001755984 43.83129 +5.562508 0.0001755984 43.83129 +7.471917 0.0001755984 43.83129 +10.03574 0.0001755984 43.83129 +13.47828 0.0001755984 43.83129 +18.10068 0.0001755984 43.83129 +24.30731 0.0001755984 43.83129 +32.64117 0.0001755984 43.83129 +43.83129 0.0001755984 43.83129 +58.85664 0.0001755984 43.83129 +-0.0175068 0.006069731 43.83129 +-0.01161267 0.006069731 43.83129 +-0.005718534 0.006069731 43.83129 +0.0001755984 0.006069731 43.83129 +0.006069731 0.006069731 43.83129 +0.01197402 0.006069731 43.83129 +0.01903886 0.006069731 43.83129 +0.02852504 0.006069731 43.83129 +0.04126244 0.006069731 43.83129 +0.05836535 0.006069731 43.83129 +0.08132997 0.006069731 43.83129 +0.1121653 0.006069731 43.83129 +0.1535689 0.006069731 43.83129 +0.2091628 0.006069731 43.83129 +0.2838106 0.006069731 43.83129 +0.3840425 0.006069731 43.83129 +0.518627 0.006069731 43.83129 +0.6993381 0.006069731 43.83129 +0.9419845 0.006069731 43.83129 +1.267794 0.006069731 43.83129 +1.705268 0.006069731 43.83129 +2.292679 0.006069731 43.83129 +3.081414 0.006069731 43.83129 +4.140474 0.006069731 43.83129 +5.562508 0.006069731 43.83129 +7.471917 0.006069731 43.83129 +10.03574 0.006069731 43.83129 +13.47828 0.006069731 43.83129 +18.10068 0.006069731 43.83129 +24.30731 0.006069731 43.83129 +32.64117 0.006069731 43.83129 +43.83129 0.006069731 43.83129 +58.85664 0.006069731 43.83129 +-0.0175068 0.01197402 43.83129 +-0.01161267 0.01197402 43.83129 +-0.005718534 0.01197402 43.83129 +0.0001755984 0.01197402 43.83129 +0.006069731 0.01197402 43.83129 +0.01197402 0.01197402 43.83129 +0.01903886 0.01197402 43.83129 +0.02852504 0.01197402 43.83129 +0.04126244 0.01197402 43.83129 +0.05836535 0.01197402 43.83129 +0.08132997 0.01197402 43.83129 +0.1121653 0.01197402 43.83129 +0.1535689 0.01197402 43.83129 +0.2091628 0.01197402 43.83129 +0.2838106 0.01197402 43.83129 +0.3840425 0.01197402 43.83129 +0.518627 0.01197402 43.83129 +0.6993381 0.01197402 43.83129 +0.9419845 0.01197402 43.83129 +1.267794 0.01197402 43.83129 +1.705268 0.01197402 43.83129 +2.292679 0.01197402 43.83129 +3.081414 0.01197402 43.83129 +4.140474 0.01197402 43.83129 +5.562508 0.01197402 43.83129 +7.471917 0.01197402 43.83129 +10.03574 0.01197402 43.83129 +13.47828 0.01197402 43.83129 +18.10068 0.01197402 43.83129 +24.30731 0.01197402 43.83129 +32.64117 0.01197402 43.83129 +43.83129 0.01197402 43.83129 +58.85664 0.01197402 43.83129 +-0.0175068 0.01903886 43.83129 +-0.01161267 0.01903886 43.83129 +-0.005718534 0.01903886 43.83129 +0.0001755984 0.01903886 43.83129 +0.006069731 0.01903886 43.83129 +0.01197402 0.01903886 43.83129 +0.01903886 0.01903886 43.83129 +0.02852504 0.01903886 43.83129 +0.04126244 0.01903886 43.83129 +0.05836535 0.01903886 43.83129 +0.08132997 0.01903886 43.83129 +0.1121653 0.01903886 43.83129 +0.1535689 0.01903886 43.83129 +0.2091628 0.01903886 43.83129 +0.2838106 0.01903886 43.83129 +0.3840425 0.01903886 43.83129 +0.518627 0.01903886 43.83129 +0.6993381 0.01903886 43.83129 +0.9419845 0.01903886 43.83129 +1.267794 0.01903886 43.83129 +1.705268 0.01903886 43.83129 +2.292679 0.01903886 43.83129 +3.081414 0.01903886 43.83129 +4.140474 0.01903886 43.83129 +5.562508 0.01903886 43.83129 +7.471917 0.01903886 43.83129 +10.03574 0.01903886 43.83129 +13.47828 0.01903886 43.83129 +18.10068 0.01903886 43.83129 +24.30731 0.01903886 43.83129 +32.64117 0.01903886 43.83129 +43.83129 0.01903886 43.83129 +58.85664 0.01903886 43.83129 +-0.0175068 0.02852504 43.83129 +-0.01161267 0.02852504 43.83129 +-0.005718534 0.02852504 43.83129 +0.0001755984 0.02852504 43.83129 +0.006069731 0.02852504 43.83129 +0.01197402 0.02852504 43.83129 +0.01903886 0.02852504 43.83129 +0.02852504 0.02852504 43.83129 +0.04126244 0.02852504 43.83129 +0.05836535 0.02852504 43.83129 +0.08132997 0.02852504 43.83129 +0.1121653 0.02852504 43.83129 +0.1535689 0.02852504 43.83129 +0.2091628 0.02852504 43.83129 +0.2838106 0.02852504 43.83129 +0.3840425 0.02852504 43.83129 +0.518627 0.02852504 43.83129 +0.6993381 0.02852504 43.83129 +0.9419845 0.02852504 43.83129 +1.267794 0.02852504 43.83129 +1.705268 0.02852504 43.83129 +2.292679 0.02852504 43.83129 +3.081414 0.02852504 43.83129 +4.140474 0.02852504 43.83129 +5.562508 0.02852504 43.83129 +7.471917 0.02852504 43.83129 +10.03574 0.02852504 43.83129 +13.47828 0.02852504 43.83129 +18.10068 0.02852504 43.83129 +24.30731 0.02852504 43.83129 +32.64117 0.02852504 43.83129 +43.83129 0.02852504 43.83129 +58.85664 0.02852504 43.83129 +-0.0175068 0.04126244 43.83129 +-0.01161267 0.04126244 43.83129 +-0.005718534 0.04126244 43.83129 +0.0001755984 0.04126244 43.83129 +0.006069731 0.04126244 43.83129 +0.01197402 0.04126244 43.83129 +0.01903886 0.04126244 43.83129 +0.02852504 0.04126244 43.83129 +0.04126244 0.04126244 43.83129 +0.05836535 0.04126244 43.83129 +0.08132997 0.04126244 43.83129 +0.1121653 0.04126244 43.83129 +0.1535689 0.04126244 43.83129 +0.2091628 0.04126244 43.83129 +0.2838106 0.04126244 43.83129 +0.3840425 0.04126244 43.83129 +0.518627 0.04126244 43.83129 +0.6993381 0.04126244 43.83129 +0.9419845 0.04126244 43.83129 +1.267794 0.04126244 43.83129 +1.705268 0.04126244 43.83129 +2.292679 0.04126244 43.83129 +3.081414 0.04126244 43.83129 +4.140474 0.04126244 43.83129 +5.562508 0.04126244 43.83129 +7.471917 0.04126244 43.83129 +10.03574 0.04126244 43.83129 +13.47828 0.04126244 43.83129 +18.10068 0.04126244 43.83129 +24.30731 0.04126244 43.83129 +32.64117 0.04126244 43.83129 +43.83129 0.04126244 43.83129 +58.85664 0.04126244 43.83129 +-0.0175068 0.05836535 43.83129 +-0.01161267 0.05836535 43.83129 +-0.005718534 0.05836535 43.83129 +0.0001755984 0.05836535 43.83129 +0.006069731 0.05836535 43.83129 +0.01197402 0.05836535 43.83129 +0.01903886 0.05836535 43.83129 +0.02852504 0.05836535 43.83129 +0.04126244 0.05836535 43.83129 +0.05836535 0.05836535 43.83129 +0.08132997 0.05836535 43.83129 +0.1121653 0.05836535 43.83129 +0.1535689 0.05836535 43.83129 +0.2091628 0.05836535 43.83129 +0.2838106 0.05836535 43.83129 +0.3840425 0.05836535 43.83129 +0.518627 0.05836535 43.83129 +0.6993381 0.05836535 43.83129 +0.9419845 0.05836535 43.83129 +1.267794 0.05836535 43.83129 +1.705268 0.05836535 43.83129 +2.292679 0.05836535 43.83129 +3.081414 0.05836535 43.83129 +4.140474 0.05836535 43.83129 +5.562508 0.05836535 43.83129 +7.471917 0.05836535 43.83129 +10.03574 0.05836535 43.83129 +13.47828 0.05836535 43.83129 +18.10068 0.05836535 43.83129 +24.30731 0.05836535 43.83129 +32.64117 0.05836535 43.83129 +43.83129 0.05836535 43.83129 +58.85664 0.05836535 43.83129 +-0.0175068 0.08132997 43.83129 +-0.01161267 0.08132997 43.83129 +-0.005718534 0.08132997 43.83129 +0.0001755984 0.08132997 43.83129 +0.006069731 0.08132997 43.83129 +0.01197402 0.08132997 43.83129 +0.01903886 0.08132997 43.83129 +0.02852504 0.08132997 43.83129 +0.04126244 0.08132997 43.83129 +0.05836535 0.08132997 43.83129 +0.08132997 0.08132997 43.83129 +0.1121653 0.08132997 43.83129 +0.1535689 0.08132997 43.83129 +0.2091628 0.08132997 43.83129 +0.2838106 0.08132997 43.83129 +0.3840425 0.08132997 43.83129 +0.518627 0.08132997 43.83129 +0.6993381 0.08132997 43.83129 +0.9419845 0.08132997 43.83129 +1.267794 0.08132997 43.83129 +1.705268 0.08132997 43.83129 +2.292679 0.08132997 43.83129 +3.081414 0.08132997 43.83129 +4.140474 0.08132997 43.83129 +5.562508 0.08132997 43.83129 +7.471917 0.08132997 43.83129 +10.03574 0.08132997 43.83129 +13.47828 0.08132997 43.83129 +18.10068 0.08132997 43.83129 +24.30731 0.08132997 43.83129 +32.64117 0.08132997 43.83129 +43.83129 0.08132997 43.83129 +58.85664 0.08132997 43.83129 +-0.0175068 0.1121653 43.83129 +-0.01161267 0.1121653 43.83129 +-0.005718534 0.1121653 43.83129 +0.0001755984 0.1121653 43.83129 +0.006069731 0.1121653 43.83129 +0.01197402 0.1121653 43.83129 +0.01903886 0.1121653 43.83129 +0.02852504 0.1121653 43.83129 +0.04126244 0.1121653 43.83129 +0.05836535 0.1121653 43.83129 +0.08132997 0.1121653 43.83129 +0.1121653 0.1121653 43.83129 +0.1535689 0.1121653 43.83129 +0.2091628 0.1121653 43.83129 +0.2838106 0.1121653 43.83129 +0.3840425 0.1121653 43.83129 +0.518627 0.1121653 43.83129 +0.6993381 0.1121653 43.83129 +0.9419845 0.1121653 43.83129 +1.267794 0.1121653 43.83129 +1.705268 0.1121653 43.83129 +2.292679 0.1121653 43.83129 +3.081414 0.1121653 43.83129 +4.140474 0.1121653 43.83129 +5.562508 0.1121653 43.83129 +7.471917 0.1121653 43.83129 +10.03574 0.1121653 43.83129 +13.47828 0.1121653 43.83129 +18.10068 0.1121653 43.83129 +24.30731 0.1121653 43.83129 +32.64117 0.1121653 43.83129 +43.83129 0.1121653 43.83129 +58.85664 0.1121653 43.83129 +-0.0175068 0.1535689 43.83129 +-0.01161267 0.1535689 43.83129 +-0.005718534 0.1535689 43.83129 +0.0001755984 0.1535689 43.83129 +0.006069731 0.1535689 43.83129 +0.01197402 0.1535689 43.83129 +0.01903886 0.1535689 43.83129 +0.02852504 0.1535689 43.83129 +0.04126244 0.1535689 43.83129 +0.05836535 0.1535689 43.83129 +0.08132997 0.1535689 43.83129 +0.1121653 0.1535689 43.83129 +0.1535689 0.1535689 43.83129 +0.2091628 0.1535689 43.83129 +0.2838106 0.1535689 43.83129 +0.3840425 0.1535689 43.83129 +0.518627 0.1535689 43.83129 +0.6993381 0.1535689 43.83129 +0.9419845 0.1535689 43.83129 +1.267794 0.1535689 43.83129 +1.705268 0.1535689 43.83129 +2.292679 0.1535689 43.83129 +3.081414 0.1535689 43.83129 +4.140474 0.1535689 43.83129 +5.562508 0.1535689 43.83129 +7.471917 0.1535689 43.83129 +10.03574 0.1535689 43.83129 +13.47828 0.1535689 43.83129 +18.10068 0.1535689 43.83129 +24.30731 0.1535689 43.83129 +32.64117 0.1535689 43.83129 +43.83129 0.1535689 43.83129 +58.85664 0.1535689 43.83129 +-0.0175068 0.2091628 43.83129 +-0.01161267 0.2091628 43.83129 +-0.005718534 0.2091628 43.83129 +0.0001755984 0.2091628 43.83129 +0.006069731 0.2091628 43.83129 +0.01197402 0.2091628 43.83129 +0.01903886 0.2091628 43.83129 +0.02852504 0.2091628 43.83129 +0.04126244 0.2091628 43.83129 +0.05836535 0.2091628 43.83129 +0.08132997 0.2091628 43.83129 +0.1121653 0.2091628 43.83129 +0.1535689 0.2091628 43.83129 +0.2091628 0.2091628 43.83129 +0.2838106 0.2091628 43.83129 +0.3840425 0.2091628 43.83129 +0.518627 0.2091628 43.83129 +0.6993381 0.2091628 43.83129 +0.9419845 0.2091628 43.83129 +1.267794 0.2091628 43.83129 +1.705268 0.2091628 43.83129 +2.292679 0.2091628 43.83129 +3.081414 0.2091628 43.83129 +4.140474 0.2091628 43.83129 +5.562508 0.2091628 43.83129 +7.471917 0.2091628 43.83129 +10.03574 0.2091628 43.83129 +13.47828 0.2091628 43.83129 +18.10068 0.2091628 43.83129 +24.30731 0.2091628 43.83129 +32.64117 0.2091628 43.83129 +43.83129 0.2091628 43.83129 +58.85664 0.2091628 43.83129 +-0.0175068 0.2838106 43.83129 +-0.01161267 0.2838106 43.83129 +-0.005718534 0.2838106 43.83129 +0.0001755984 0.2838106 43.83129 +0.006069731 0.2838106 43.83129 +0.01197402 0.2838106 43.83129 +0.01903886 0.2838106 43.83129 +0.02852504 0.2838106 43.83129 +0.04126244 0.2838106 43.83129 +0.05836535 0.2838106 43.83129 +0.08132997 0.2838106 43.83129 +0.1121653 0.2838106 43.83129 +0.1535689 0.2838106 43.83129 +0.2091628 0.2838106 43.83129 +0.2838106 0.2838106 43.83129 +0.3840425 0.2838106 43.83129 +0.518627 0.2838106 43.83129 +0.6993381 0.2838106 43.83129 +0.9419845 0.2838106 43.83129 +1.267794 0.2838106 43.83129 +1.705268 0.2838106 43.83129 +2.292679 0.2838106 43.83129 +3.081414 0.2838106 43.83129 +4.140474 0.2838106 43.83129 +5.562508 0.2838106 43.83129 +7.471917 0.2838106 43.83129 +10.03574 0.2838106 43.83129 +13.47828 0.2838106 43.83129 +18.10068 0.2838106 43.83129 +24.30731 0.2838106 43.83129 +32.64117 0.2838106 43.83129 +43.83129 0.2838106 43.83129 +58.85664 0.2838106 43.83129 +-0.0175068 0.3840425 43.83129 +-0.01161267 0.3840425 43.83129 +-0.005718534 0.3840425 43.83129 +0.0001755984 0.3840425 43.83129 +0.006069731 0.3840425 43.83129 +0.01197402 0.3840425 43.83129 +0.01903886 0.3840425 43.83129 +0.02852504 0.3840425 43.83129 +0.04126244 0.3840425 43.83129 +0.05836535 0.3840425 43.83129 +0.08132997 0.3840425 43.83129 +0.1121653 0.3840425 43.83129 +0.1535689 0.3840425 43.83129 +0.2091628 0.3840425 43.83129 +0.2838106 0.3840425 43.83129 +0.3840425 0.3840425 43.83129 +0.518627 0.3840425 43.83129 +0.6993381 0.3840425 43.83129 +0.9419845 0.3840425 43.83129 +1.267794 0.3840425 43.83129 +1.705268 0.3840425 43.83129 +2.292679 0.3840425 43.83129 +3.081414 0.3840425 43.83129 +4.140474 0.3840425 43.83129 +5.562508 0.3840425 43.83129 +7.471917 0.3840425 43.83129 +10.03574 0.3840425 43.83129 +13.47828 0.3840425 43.83129 +18.10068 0.3840425 43.83129 +24.30731 0.3840425 43.83129 +32.64117 0.3840425 43.83129 +43.83129 0.3840425 43.83129 +58.85664 0.3840425 43.83129 +-0.0175068 0.518627 43.83129 +-0.01161267 0.518627 43.83129 +-0.005718534 0.518627 43.83129 +0.0001755984 0.518627 43.83129 +0.006069731 0.518627 43.83129 +0.01197402 0.518627 43.83129 +0.01903886 0.518627 43.83129 +0.02852504 0.518627 43.83129 +0.04126244 0.518627 43.83129 +0.05836535 0.518627 43.83129 +0.08132997 0.518627 43.83129 +0.1121653 0.518627 43.83129 +0.1535689 0.518627 43.83129 +0.2091628 0.518627 43.83129 +0.2838106 0.518627 43.83129 +0.3840425 0.518627 43.83129 +0.518627 0.518627 43.83129 +0.6993381 0.518627 43.83129 +0.9419845 0.518627 43.83129 +1.267794 0.518627 43.83129 +1.705268 0.518627 43.83129 +2.292679 0.518627 43.83129 +3.081414 0.518627 43.83129 +4.140474 0.518627 43.83129 +5.562508 0.518627 43.83129 +7.471917 0.518627 43.83129 +10.03574 0.518627 43.83129 +13.47828 0.518627 43.83129 +18.10068 0.518627 43.83129 +24.30731 0.518627 43.83129 +32.64117 0.518627 43.83129 +43.83129 0.518627 43.83129 +58.85664 0.518627 43.83129 +-0.0175068 0.6993381 43.83129 +-0.01161267 0.6993381 43.83129 +-0.005718534 0.6993381 43.83129 +0.0001755984 0.6993381 43.83129 +0.006069731 0.6993381 43.83129 +0.01197402 0.6993381 43.83129 +0.01903886 0.6993381 43.83129 +0.02852504 0.6993381 43.83129 +0.04126244 0.6993381 43.83129 +0.05836535 0.6993381 43.83129 +0.08132997 0.6993381 43.83129 +0.1121653 0.6993381 43.83129 +0.1535689 0.6993381 43.83129 +0.2091628 0.6993381 43.83129 +0.2838106 0.6993381 43.83129 +0.3840425 0.6993381 43.83129 +0.518627 0.6993381 43.83129 +0.6993381 0.6993381 43.83129 +0.9419845 0.6993381 43.83129 +1.267794 0.6993381 43.83129 +1.705268 0.6993381 43.83129 +2.292679 0.6993381 43.83129 +3.081414 0.6993381 43.83129 +4.140474 0.6993381 43.83129 +5.562508 0.6993381 43.83129 +7.471917 0.6993381 43.83129 +10.03574 0.6993381 43.83129 +13.47828 0.6993381 43.83129 +18.10068 0.6993381 43.83129 +24.30731 0.6993381 43.83129 +32.64117 0.6993381 43.83129 +43.83129 0.6993381 43.83129 +58.85664 0.6993381 43.83129 +-0.0175068 0.9419845 43.83129 +-0.01161267 0.9419845 43.83129 +-0.005718534 0.9419845 43.83129 +0.0001755984 0.9419845 43.83129 +0.006069731 0.9419845 43.83129 +0.01197402 0.9419845 43.83129 +0.01903886 0.9419845 43.83129 +0.02852504 0.9419845 43.83129 +0.04126244 0.9419845 43.83129 +0.05836535 0.9419845 43.83129 +0.08132997 0.9419845 43.83129 +0.1121653 0.9419845 43.83129 +0.1535689 0.9419845 43.83129 +0.2091628 0.9419845 43.83129 +0.2838106 0.9419845 43.83129 +0.3840425 0.9419845 43.83129 +0.518627 0.9419845 43.83129 +0.6993381 0.9419845 43.83129 +0.9419845 0.9419845 43.83129 +1.267794 0.9419845 43.83129 +1.705268 0.9419845 43.83129 +2.292679 0.9419845 43.83129 +3.081414 0.9419845 43.83129 +4.140474 0.9419845 43.83129 +5.562508 0.9419845 43.83129 +7.471917 0.9419845 43.83129 +10.03574 0.9419845 43.83129 +13.47828 0.9419845 43.83129 +18.10068 0.9419845 43.83129 +24.30731 0.9419845 43.83129 +32.64117 0.9419845 43.83129 +43.83129 0.9419845 43.83129 +58.85664 0.9419845 43.83129 +-0.0175068 1.267794 43.83129 +-0.01161267 1.267794 43.83129 +-0.005718534 1.267794 43.83129 +0.0001755984 1.267794 43.83129 +0.006069731 1.267794 43.83129 +0.01197402 1.267794 43.83129 +0.01903886 1.267794 43.83129 +0.02852504 1.267794 43.83129 +0.04126244 1.267794 43.83129 +0.05836535 1.267794 43.83129 +0.08132997 1.267794 43.83129 +0.1121653 1.267794 43.83129 +0.1535689 1.267794 43.83129 +0.2091628 1.267794 43.83129 +0.2838106 1.267794 43.83129 +0.3840425 1.267794 43.83129 +0.518627 1.267794 43.83129 +0.6993381 1.267794 43.83129 +0.9419845 1.267794 43.83129 +1.267794 1.267794 43.83129 +1.705268 1.267794 43.83129 +2.292679 1.267794 43.83129 +3.081414 1.267794 43.83129 +4.140474 1.267794 43.83129 +5.562508 1.267794 43.83129 +7.471917 1.267794 43.83129 +10.03574 1.267794 43.83129 +13.47828 1.267794 43.83129 +18.10068 1.267794 43.83129 +24.30731 1.267794 43.83129 +32.64117 1.267794 43.83129 +43.83129 1.267794 43.83129 +58.85664 1.267794 43.83129 +-0.0175068 1.705268 43.83129 +-0.01161267 1.705268 43.83129 +-0.005718534 1.705268 43.83129 +0.0001755984 1.705268 43.83129 +0.006069731 1.705268 43.83129 +0.01197402 1.705268 43.83129 +0.01903886 1.705268 43.83129 +0.02852504 1.705268 43.83129 +0.04126244 1.705268 43.83129 +0.05836535 1.705268 43.83129 +0.08132997 1.705268 43.83129 +0.1121653 1.705268 43.83129 +0.1535689 1.705268 43.83129 +0.2091628 1.705268 43.83129 +0.2838106 1.705268 43.83129 +0.3840425 1.705268 43.83129 +0.518627 1.705268 43.83129 +0.6993381 1.705268 43.83129 +0.9419845 1.705268 43.83129 +1.267794 1.705268 43.83129 +1.705268 1.705268 43.83129 +2.292679 1.705268 43.83129 +3.081414 1.705268 43.83129 +4.140474 1.705268 43.83129 +5.562508 1.705268 43.83129 +7.471917 1.705268 43.83129 +10.03574 1.705268 43.83129 +13.47828 1.705268 43.83129 +18.10068 1.705268 43.83129 +24.30731 1.705268 43.83129 +32.64117 1.705268 43.83129 +43.83129 1.705268 43.83129 +58.85664 1.705268 43.83129 +-0.0175068 2.292679 43.83129 +-0.01161267 2.292679 43.83129 +-0.005718534 2.292679 43.83129 +0.0001755984 2.292679 43.83129 +0.006069731 2.292679 43.83129 +0.01197402 2.292679 43.83129 +0.01903886 2.292679 43.83129 +0.02852504 2.292679 43.83129 +0.04126244 2.292679 43.83129 +0.05836535 2.292679 43.83129 +0.08132997 2.292679 43.83129 +0.1121653 2.292679 43.83129 +0.1535689 2.292679 43.83129 +0.2091628 2.292679 43.83129 +0.2838106 2.292679 43.83129 +0.3840425 2.292679 43.83129 +0.518627 2.292679 43.83129 +0.6993381 2.292679 43.83129 +0.9419845 2.292679 43.83129 +1.267794 2.292679 43.83129 +1.705268 2.292679 43.83129 +2.292679 2.292679 43.83129 +3.081414 2.292679 43.83129 +4.140474 2.292679 43.83129 +5.562508 2.292679 43.83129 +7.471917 2.292679 43.83129 +10.03574 2.292679 43.83129 +13.47828 2.292679 43.83129 +18.10068 2.292679 43.83129 +24.30731 2.292679 43.83129 +32.64117 2.292679 43.83129 +43.83129 2.292679 43.83129 +58.85664 2.292679 43.83129 +-0.0175068 3.081414 43.83129 +-0.01161267 3.081414 43.83129 +-0.005718534 3.081414 43.83129 +0.0001755984 3.081414 43.83129 +0.006069731 3.081414 43.83129 +0.01197402 3.081414 43.83129 +0.01903886 3.081414 43.83129 +0.02852504 3.081414 43.83129 +0.04126244 3.081414 43.83129 +0.05836535 3.081414 43.83129 +0.08132997 3.081414 43.83129 +0.1121653 3.081414 43.83129 +0.1535689 3.081414 43.83129 +0.2091628 3.081414 43.83129 +0.2838106 3.081414 43.83129 +0.3840425 3.081414 43.83129 +0.518627 3.081414 43.83129 +0.6993381 3.081414 43.83129 +0.9419845 3.081414 43.83129 +1.267794 3.081414 43.83129 +1.705268 3.081414 43.83129 +2.292679 3.081414 43.83129 +3.081414 3.081414 43.83129 +4.140474 3.081414 43.83129 +5.562508 3.081414 43.83129 +7.471917 3.081414 43.83129 +10.03574 3.081414 43.83129 +13.47828 3.081414 43.83129 +18.10068 3.081414 43.83129 +24.30731 3.081414 43.83129 +32.64117 3.081414 43.83129 +43.83129 3.081414 43.83129 +58.85664 3.081414 43.83129 +-0.0175068 4.140474 43.83129 +-0.01161267 4.140474 43.83129 +-0.005718534 4.140474 43.83129 +0.0001755984 4.140474 43.83129 +0.006069731 4.140474 43.83129 +0.01197402 4.140474 43.83129 +0.01903886 4.140474 43.83129 +0.02852504 4.140474 43.83129 +0.04126244 4.140474 43.83129 +0.05836535 4.140474 43.83129 +0.08132997 4.140474 43.83129 +0.1121653 4.140474 43.83129 +0.1535689 4.140474 43.83129 +0.2091628 4.140474 43.83129 +0.2838106 4.140474 43.83129 +0.3840425 4.140474 43.83129 +0.518627 4.140474 43.83129 +0.6993381 4.140474 43.83129 +0.9419845 4.140474 43.83129 +1.267794 4.140474 43.83129 +1.705268 4.140474 43.83129 +2.292679 4.140474 43.83129 +3.081414 4.140474 43.83129 +4.140474 4.140474 43.83129 +5.562508 4.140474 43.83129 +7.471917 4.140474 43.83129 +10.03574 4.140474 43.83129 +13.47828 4.140474 43.83129 +18.10068 4.140474 43.83129 +24.30731 4.140474 43.83129 +32.64117 4.140474 43.83129 +43.83129 4.140474 43.83129 +58.85664 4.140474 43.83129 +-0.0175068 5.562508 43.83129 +-0.01161267 5.562508 43.83129 +-0.005718534 5.562508 43.83129 +0.0001755984 5.562508 43.83129 +0.006069731 5.562508 43.83129 +0.01197402 5.562508 43.83129 +0.01903886 5.562508 43.83129 +0.02852504 5.562508 43.83129 +0.04126244 5.562508 43.83129 +0.05836535 5.562508 43.83129 +0.08132997 5.562508 43.83129 +0.1121653 5.562508 43.83129 +0.1535689 5.562508 43.83129 +0.2091628 5.562508 43.83129 +0.2838106 5.562508 43.83129 +0.3840425 5.562508 43.83129 +0.518627 5.562508 43.83129 +0.6993381 5.562508 43.83129 +0.9419845 5.562508 43.83129 +1.267794 5.562508 43.83129 +1.705268 5.562508 43.83129 +2.292679 5.562508 43.83129 +3.081414 5.562508 43.83129 +4.140474 5.562508 43.83129 +5.562508 5.562508 43.83129 +7.471917 5.562508 43.83129 +10.03574 5.562508 43.83129 +13.47828 5.562508 43.83129 +18.10068 5.562508 43.83129 +24.30731 5.562508 43.83129 +32.64117 5.562508 43.83129 +43.83129 5.562508 43.83129 +58.85664 5.562508 43.83129 +-0.0175068 7.471917 43.83129 +-0.01161267 7.471917 43.83129 +-0.005718534 7.471917 43.83129 +0.0001755984 7.471917 43.83129 +0.006069731 7.471917 43.83129 +0.01197402 7.471917 43.83129 +0.01903886 7.471917 43.83129 +0.02852504 7.471917 43.83129 +0.04126244 7.471917 43.83129 +0.05836535 7.471917 43.83129 +0.08132997 7.471917 43.83129 +0.1121653 7.471917 43.83129 +0.1535689 7.471917 43.83129 +0.2091628 7.471917 43.83129 +0.2838106 7.471917 43.83129 +0.3840425 7.471917 43.83129 +0.518627 7.471917 43.83129 +0.6993381 7.471917 43.83129 +0.9419845 7.471917 43.83129 +1.267794 7.471917 43.83129 +1.705268 7.471917 43.83129 +2.292679 7.471917 43.83129 +3.081414 7.471917 43.83129 +4.140474 7.471917 43.83129 +5.562508 7.471917 43.83129 +7.471917 7.471917 43.83129 +10.03574 7.471917 43.83129 +13.47828 7.471917 43.83129 +18.10068 7.471917 43.83129 +24.30731 7.471917 43.83129 +32.64117 7.471917 43.83129 +43.83129 7.471917 43.83129 +58.85664 7.471917 43.83129 +-0.0175068 10.03574 43.83129 +-0.01161267 10.03574 43.83129 +-0.005718534 10.03574 43.83129 +0.0001755984 10.03574 43.83129 +0.006069731 10.03574 43.83129 +0.01197402 10.03574 43.83129 +0.01903886 10.03574 43.83129 +0.02852504 10.03574 43.83129 +0.04126244 10.03574 43.83129 +0.05836535 10.03574 43.83129 +0.08132997 10.03574 43.83129 +0.1121653 10.03574 43.83129 +0.1535689 10.03574 43.83129 +0.2091628 10.03574 43.83129 +0.2838106 10.03574 43.83129 +0.3840425 10.03574 43.83129 +0.518627 10.03574 43.83129 +0.6993381 10.03574 43.83129 +0.9419845 10.03574 43.83129 +1.267794 10.03574 43.83129 +1.705268 10.03574 43.83129 +2.292679 10.03574 43.83129 +3.081414 10.03574 43.83129 +4.140474 10.03574 43.83129 +5.562508 10.03574 43.83129 +7.471917 10.03574 43.83129 +10.03574 10.03574 43.83129 +13.47828 10.03574 43.83129 +18.10068 10.03574 43.83129 +24.30731 10.03574 43.83129 +32.64117 10.03574 43.83129 +43.83129 10.03574 43.83129 +58.85664 10.03574 43.83129 +-0.0175068 13.47828 43.83129 +-0.01161267 13.47828 43.83129 +-0.005718534 13.47828 43.83129 +0.0001755984 13.47828 43.83129 +0.006069731 13.47828 43.83129 +0.01197402 13.47828 43.83129 +0.01903886 13.47828 43.83129 +0.02852504 13.47828 43.83129 +0.04126244 13.47828 43.83129 +0.05836535 13.47828 43.83129 +0.08132997 13.47828 43.83129 +0.1121653 13.47828 43.83129 +0.1535689 13.47828 43.83129 +0.2091628 13.47828 43.83129 +0.2838106 13.47828 43.83129 +0.3840425 13.47828 43.83129 +0.518627 13.47828 43.83129 +0.6993381 13.47828 43.83129 +0.9419845 13.47828 43.83129 +1.267794 13.47828 43.83129 +1.705268 13.47828 43.83129 +2.292679 13.47828 43.83129 +3.081414 13.47828 43.83129 +4.140474 13.47828 43.83129 +5.562508 13.47828 43.83129 +7.471917 13.47828 43.83129 +10.03574 13.47828 43.83129 +13.47828 13.47828 43.83129 +18.10068 13.47828 43.83129 +24.30731 13.47828 43.83129 +32.64117 13.47828 43.83129 +43.83129 13.47828 43.83129 +58.85664 13.47828 43.83129 +-0.0175068 18.10068 43.83129 +-0.01161267 18.10068 43.83129 +-0.005718534 18.10068 43.83129 +0.0001755984 18.10068 43.83129 +0.006069731 18.10068 43.83129 +0.01197402 18.10068 43.83129 +0.01903886 18.10068 43.83129 +0.02852504 18.10068 43.83129 +0.04126244 18.10068 43.83129 +0.05836535 18.10068 43.83129 +0.08132997 18.10068 43.83129 +0.1121653 18.10068 43.83129 +0.1535689 18.10068 43.83129 +0.2091628 18.10068 43.83129 +0.2838106 18.10068 43.83129 +0.3840425 18.10068 43.83129 +0.518627 18.10068 43.83129 +0.6993381 18.10068 43.83129 +0.9419845 18.10068 43.83129 +1.267794 18.10068 43.83129 +1.705268 18.10068 43.83129 +2.292679 18.10068 43.83129 +3.081414 18.10068 43.83129 +4.140474 18.10068 43.83129 +5.562508 18.10068 43.83129 +7.471917 18.10068 43.83129 +10.03574 18.10068 43.83129 +13.47828 18.10068 43.83129 +18.10068 18.10068 43.83129 +24.30731 18.10068 43.83129 +32.64117 18.10068 43.83129 +43.83129 18.10068 43.83129 +58.85664 18.10068 43.83129 +-0.0175068 24.30731 43.83129 +-0.01161267 24.30731 43.83129 +-0.005718534 24.30731 43.83129 +0.0001755984 24.30731 43.83129 +0.006069731 24.30731 43.83129 +0.01197402 24.30731 43.83129 +0.01903886 24.30731 43.83129 +0.02852504 24.30731 43.83129 +0.04126244 24.30731 43.83129 +0.05836535 24.30731 43.83129 +0.08132997 24.30731 43.83129 +0.1121653 24.30731 43.83129 +0.1535689 24.30731 43.83129 +0.2091628 24.30731 43.83129 +0.2838106 24.30731 43.83129 +0.3840425 24.30731 43.83129 +0.518627 24.30731 43.83129 +0.6993381 24.30731 43.83129 +0.9419845 24.30731 43.83129 +1.267794 24.30731 43.83129 +1.705268 24.30731 43.83129 +2.292679 24.30731 43.83129 +3.081414 24.30731 43.83129 +4.140474 24.30731 43.83129 +5.562508 24.30731 43.83129 +7.471917 24.30731 43.83129 +10.03574 24.30731 43.83129 +13.47828 24.30731 43.83129 +18.10068 24.30731 43.83129 +24.30731 24.30731 43.83129 +32.64117 24.30731 43.83129 +43.83129 24.30731 43.83129 +58.85664 24.30731 43.83129 +-0.0175068 32.64117 43.83129 +-0.01161267 32.64117 43.83129 +-0.005718534 32.64117 43.83129 +0.0001755984 32.64117 43.83129 +0.006069731 32.64117 43.83129 +0.01197402 32.64117 43.83129 +0.01903886 32.64117 43.83129 +0.02852504 32.64117 43.83129 +0.04126244 32.64117 43.83129 +0.05836535 32.64117 43.83129 +0.08132997 32.64117 43.83129 +0.1121653 32.64117 43.83129 +0.1535689 32.64117 43.83129 +0.2091628 32.64117 43.83129 +0.2838106 32.64117 43.83129 +0.3840425 32.64117 43.83129 +0.518627 32.64117 43.83129 +0.6993381 32.64117 43.83129 +0.9419845 32.64117 43.83129 +1.267794 32.64117 43.83129 +1.705268 32.64117 43.83129 +2.292679 32.64117 43.83129 +3.081414 32.64117 43.83129 +4.140474 32.64117 43.83129 +5.562508 32.64117 43.83129 +7.471917 32.64117 43.83129 +10.03574 32.64117 43.83129 +13.47828 32.64117 43.83129 +18.10068 32.64117 43.83129 +24.30731 32.64117 43.83129 +32.64117 32.64117 43.83129 +43.83129 32.64117 43.83129 +58.85664 32.64117 43.83129 +-0.0175068 43.83129 43.83129 +-0.01161267 43.83129 43.83129 +-0.005718534 43.83129 43.83129 +0.0001755984 43.83129 43.83129 +0.006069731 43.83129 43.83129 +0.01197402 43.83129 43.83129 +0.01903886 43.83129 43.83129 +0.02852504 43.83129 43.83129 +0.04126244 43.83129 43.83129 +0.05836535 43.83129 43.83129 +0.08132997 43.83129 43.83129 +0.1121653 43.83129 43.83129 +0.1535689 43.83129 43.83129 +0.2091628 43.83129 43.83129 +0.2838106 43.83129 43.83129 +0.3840425 43.83129 43.83129 +0.518627 43.83129 43.83129 +0.6993381 43.83129 43.83129 +0.9419845 43.83129 43.83129 +1.267794 43.83129 43.83129 +1.705268 43.83129 43.83129 +2.292679 43.83129 43.83129 +3.081414 43.83129 43.83129 +4.140474 43.83129 43.83129 +5.562508 43.83129 43.83129 +7.471917 43.83129 43.83129 +10.03574 43.83129 43.83129 +13.47828 43.83129 43.83129 +18.10068 43.83129 43.83129 +24.30731 43.83129 43.83129 +32.64117 43.83129 43.83129 +43.83129 43.83129 43.83129 +58.85664 43.83129 43.83129 +-0.0175068 58.85664 43.83129 +-0.01161267 58.85664 43.83129 +-0.005718534 58.85664 43.83129 +0.0001755984 58.85664 43.83129 +0.006069731 58.85664 43.83129 +0.01197402 58.85664 43.83129 +0.01903886 58.85664 43.83129 +0.02852504 58.85664 43.83129 +0.04126244 58.85664 43.83129 +0.05836535 58.85664 43.83129 +0.08132997 58.85664 43.83129 +0.1121653 58.85664 43.83129 +0.1535689 58.85664 43.83129 +0.2091628 58.85664 43.83129 +0.2838106 58.85664 43.83129 +0.3840425 58.85664 43.83129 +0.518627 58.85664 43.83129 +0.6993381 58.85664 43.83129 +0.9419845 58.85664 43.83129 +1.267794 58.85664 43.83129 +1.705268 58.85664 43.83129 +2.292679 58.85664 43.83129 +3.081414 58.85664 43.83129 +4.140474 58.85664 43.83129 +5.562508 58.85664 43.83129 +7.471917 58.85664 43.83129 +10.03574 58.85664 43.83129 +13.47828 58.85664 43.83129 +18.10068 58.85664 43.83129 +24.30731 58.85664 43.83129 +32.64117 58.85664 43.83129 +43.83129 58.85664 43.83129 +58.85664 58.85664 43.83129 +-0.0175068 -0.0175068 58.85664 +-0.01161267 -0.0175068 58.85664 +-0.005718534 -0.0175068 58.85664 +0.0001755984 -0.0175068 58.85664 +0.006069731 -0.0175068 58.85664 +0.01197402 -0.0175068 58.85664 +0.01903886 -0.0175068 58.85664 +0.02852504 -0.0175068 58.85664 +0.04126244 -0.0175068 58.85664 +0.05836535 -0.0175068 58.85664 +0.08132997 -0.0175068 58.85664 +0.1121653 -0.0175068 58.85664 +0.1535689 -0.0175068 58.85664 +0.2091628 -0.0175068 58.85664 +0.2838106 -0.0175068 58.85664 +0.3840425 -0.0175068 58.85664 +0.518627 -0.0175068 58.85664 +0.6993381 -0.0175068 58.85664 +0.9419845 -0.0175068 58.85664 +1.267794 -0.0175068 58.85664 +1.705268 -0.0175068 58.85664 +2.292679 -0.0175068 58.85664 +3.081414 -0.0175068 58.85664 +4.140474 -0.0175068 58.85664 +5.562508 -0.0175068 58.85664 +7.471917 -0.0175068 58.85664 +10.03574 -0.0175068 58.85664 +13.47828 -0.0175068 58.85664 +18.10068 -0.0175068 58.85664 +24.30731 -0.0175068 58.85664 +32.64117 -0.0175068 58.85664 +43.83129 -0.0175068 58.85664 +58.85664 -0.0175068 58.85664 +-0.0175068 -0.01161267 58.85664 +-0.01161267 -0.01161267 58.85664 +-0.005718534 -0.01161267 58.85664 +0.0001755984 -0.01161267 58.85664 +0.006069731 -0.01161267 58.85664 +0.01197402 -0.01161267 58.85664 +0.01903886 -0.01161267 58.85664 +0.02852504 -0.01161267 58.85664 +0.04126244 -0.01161267 58.85664 +0.05836535 -0.01161267 58.85664 +0.08132997 -0.01161267 58.85664 +0.1121653 -0.01161267 58.85664 +0.1535689 -0.01161267 58.85664 +0.2091628 -0.01161267 58.85664 +0.2838106 -0.01161267 58.85664 +0.3840425 -0.01161267 58.85664 +0.518627 -0.01161267 58.85664 +0.6993381 -0.01161267 58.85664 +0.9419845 -0.01161267 58.85664 +1.267794 -0.01161267 58.85664 +1.705268 -0.01161267 58.85664 +2.292679 -0.01161267 58.85664 +3.081414 -0.01161267 58.85664 +4.140474 -0.01161267 58.85664 +5.562508 -0.01161267 58.85664 +7.471917 -0.01161267 58.85664 +10.03574 -0.01161267 58.85664 +13.47828 -0.01161267 58.85664 +18.10068 -0.01161267 58.85664 +24.30731 -0.01161267 58.85664 +32.64117 -0.01161267 58.85664 +43.83129 -0.01161267 58.85664 +58.85664 -0.01161267 58.85664 +-0.0175068 -0.005718534 58.85664 +-0.01161267 -0.005718534 58.85664 +-0.005718534 -0.005718534 58.85664 +0.0001755984 -0.005718534 58.85664 +0.006069731 -0.005718534 58.85664 +0.01197402 -0.005718534 58.85664 +0.01903886 -0.005718534 58.85664 +0.02852504 -0.005718534 58.85664 +0.04126244 -0.005718534 58.85664 +0.05836535 -0.005718534 58.85664 +0.08132997 -0.005718534 58.85664 +0.1121653 -0.005718534 58.85664 +0.1535689 -0.005718534 58.85664 +0.2091628 -0.005718534 58.85664 +0.2838106 -0.005718534 58.85664 +0.3840425 -0.005718534 58.85664 +0.518627 -0.005718534 58.85664 +0.6993381 -0.005718534 58.85664 +0.9419845 -0.005718534 58.85664 +1.267794 -0.005718534 58.85664 +1.705268 -0.005718534 58.85664 +2.292679 -0.005718534 58.85664 +3.081414 -0.005718534 58.85664 +4.140474 -0.005718534 58.85664 +5.562508 -0.005718534 58.85664 +7.471917 -0.005718534 58.85664 +10.03574 -0.005718534 58.85664 +13.47828 -0.005718534 58.85664 +18.10068 -0.005718534 58.85664 +24.30731 -0.005718534 58.85664 +32.64117 -0.005718534 58.85664 +43.83129 -0.005718534 58.85664 +58.85664 -0.005718534 58.85664 +-0.0175068 0.0001755984 58.85664 +-0.01161267 0.0001755984 58.85664 +-0.005718534 0.0001755984 58.85664 +0.0001755984 0.0001755984 58.85664 +0.006069731 0.0001755984 58.85664 +0.01197402 0.0001755984 58.85664 +0.01903886 0.0001755984 58.85664 +0.02852504 0.0001755984 58.85664 +0.04126244 0.0001755984 58.85664 +0.05836535 0.0001755984 58.85664 +0.08132997 0.0001755984 58.85664 +0.1121653 0.0001755984 58.85664 +0.1535689 0.0001755984 58.85664 +0.2091628 0.0001755984 58.85664 +0.2838106 0.0001755984 58.85664 +0.3840425 0.0001755984 58.85664 +0.518627 0.0001755984 58.85664 +0.6993381 0.0001755984 58.85664 +0.9419845 0.0001755984 58.85664 +1.267794 0.0001755984 58.85664 +1.705268 0.0001755984 58.85664 +2.292679 0.0001755984 58.85664 +3.081414 0.0001755984 58.85664 +4.140474 0.0001755984 58.85664 +5.562508 0.0001755984 58.85664 +7.471917 0.0001755984 58.85664 +10.03574 0.0001755984 58.85664 +13.47828 0.0001755984 58.85664 +18.10068 0.0001755984 58.85664 +24.30731 0.0001755984 58.85664 +32.64117 0.0001755984 58.85664 +43.83129 0.0001755984 58.85664 +58.85664 0.0001755984 58.85664 +-0.0175068 0.006069731 58.85664 +-0.01161267 0.006069731 58.85664 +-0.005718534 0.006069731 58.85664 +0.0001755984 0.006069731 58.85664 +0.006069731 0.006069731 58.85664 +0.01197402 0.006069731 58.85664 +0.01903886 0.006069731 58.85664 +0.02852504 0.006069731 58.85664 +0.04126244 0.006069731 58.85664 +0.05836535 0.006069731 58.85664 +0.08132997 0.006069731 58.85664 +0.1121653 0.006069731 58.85664 +0.1535689 0.006069731 58.85664 +0.2091628 0.006069731 58.85664 +0.2838106 0.006069731 58.85664 +0.3840425 0.006069731 58.85664 +0.518627 0.006069731 58.85664 +0.6993381 0.006069731 58.85664 +0.9419845 0.006069731 58.85664 +1.267794 0.006069731 58.85664 +1.705268 0.006069731 58.85664 +2.292679 0.006069731 58.85664 +3.081414 0.006069731 58.85664 +4.140474 0.006069731 58.85664 +5.562508 0.006069731 58.85664 +7.471917 0.006069731 58.85664 +10.03574 0.006069731 58.85664 +13.47828 0.006069731 58.85664 +18.10068 0.006069731 58.85664 +24.30731 0.006069731 58.85664 +32.64117 0.006069731 58.85664 +43.83129 0.006069731 58.85664 +58.85664 0.006069731 58.85664 +-0.0175068 0.01197402 58.85664 +-0.01161267 0.01197402 58.85664 +-0.005718534 0.01197402 58.85664 +0.0001755984 0.01197402 58.85664 +0.006069731 0.01197402 58.85664 +0.01197402 0.01197402 58.85664 +0.01903886 0.01197402 58.85664 +0.02852504 0.01197402 58.85664 +0.04126244 0.01197402 58.85664 +0.05836535 0.01197402 58.85664 +0.08132997 0.01197402 58.85664 +0.1121653 0.01197402 58.85664 +0.1535689 0.01197402 58.85664 +0.2091628 0.01197402 58.85664 +0.2838106 0.01197402 58.85664 +0.3840425 0.01197402 58.85664 +0.518627 0.01197402 58.85664 +0.6993381 0.01197402 58.85664 +0.9419845 0.01197402 58.85664 +1.267794 0.01197402 58.85664 +1.705268 0.01197402 58.85664 +2.292679 0.01197402 58.85664 +3.081414 0.01197402 58.85664 +4.140474 0.01197402 58.85664 +5.562508 0.01197402 58.85664 +7.471917 0.01197402 58.85664 +10.03574 0.01197402 58.85664 +13.47828 0.01197402 58.85664 +18.10068 0.01197402 58.85664 +24.30731 0.01197402 58.85664 +32.64117 0.01197402 58.85664 +43.83129 0.01197402 58.85664 +58.85664 0.01197402 58.85664 +-0.0175068 0.01903886 58.85664 +-0.01161267 0.01903886 58.85664 +-0.005718534 0.01903886 58.85664 +0.0001755984 0.01903886 58.85664 +0.006069731 0.01903886 58.85664 +0.01197402 0.01903886 58.85664 +0.01903886 0.01903886 58.85664 +0.02852504 0.01903886 58.85664 +0.04126244 0.01903886 58.85664 +0.05836535 0.01903886 58.85664 +0.08132997 0.01903886 58.85664 +0.1121653 0.01903886 58.85664 +0.1535689 0.01903886 58.85664 +0.2091628 0.01903886 58.85664 +0.2838106 0.01903886 58.85664 +0.3840425 0.01903886 58.85664 +0.518627 0.01903886 58.85664 +0.6993381 0.01903886 58.85664 +0.9419845 0.01903886 58.85664 +1.267794 0.01903886 58.85664 +1.705268 0.01903886 58.85664 +2.292679 0.01903886 58.85664 +3.081414 0.01903886 58.85664 +4.140474 0.01903886 58.85664 +5.562508 0.01903886 58.85664 +7.471917 0.01903886 58.85664 +10.03574 0.01903886 58.85664 +13.47828 0.01903886 58.85664 +18.10068 0.01903886 58.85664 +24.30731 0.01903886 58.85664 +32.64117 0.01903886 58.85664 +43.83129 0.01903886 58.85664 +58.85664 0.01903886 58.85664 +-0.0175068 0.02852504 58.85664 +-0.01161267 0.02852504 58.85664 +-0.005718534 0.02852504 58.85664 +0.0001755984 0.02852504 58.85664 +0.006069731 0.02852504 58.85664 +0.01197402 0.02852504 58.85664 +0.01903886 0.02852504 58.85664 +0.02852504 0.02852504 58.85664 +0.04126244 0.02852504 58.85664 +0.05836535 0.02852504 58.85664 +0.08132997 0.02852504 58.85664 +0.1121653 0.02852504 58.85664 +0.1535689 0.02852504 58.85664 +0.2091628 0.02852504 58.85664 +0.2838106 0.02852504 58.85664 +0.3840425 0.02852504 58.85664 +0.518627 0.02852504 58.85664 +0.6993381 0.02852504 58.85664 +0.9419845 0.02852504 58.85664 +1.267794 0.02852504 58.85664 +1.705268 0.02852504 58.85664 +2.292679 0.02852504 58.85664 +3.081414 0.02852504 58.85664 +4.140474 0.02852504 58.85664 +5.562508 0.02852504 58.85664 +7.471917 0.02852504 58.85664 +10.03574 0.02852504 58.85664 +13.47828 0.02852504 58.85664 +18.10068 0.02852504 58.85664 +24.30731 0.02852504 58.85664 +32.64117 0.02852504 58.85664 +43.83129 0.02852504 58.85664 +58.85664 0.02852504 58.85664 +-0.0175068 0.04126244 58.85664 +-0.01161267 0.04126244 58.85664 +-0.005718534 0.04126244 58.85664 +0.0001755984 0.04126244 58.85664 +0.006069731 0.04126244 58.85664 +0.01197402 0.04126244 58.85664 +0.01903886 0.04126244 58.85664 +0.02852504 0.04126244 58.85664 +0.04126244 0.04126244 58.85664 +0.05836535 0.04126244 58.85664 +0.08132997 0.04126244 58.85664 +0.1121653 0.04126244 58.85664 +0.1535689 0.04126244 58.85664 +0.2091628 0.04126244 58.85664 +0.2838106 0.04126244 58.85664 +0.3840425 0.04126244 58.85664 +0.518627 0.04126244 58.85664 +0.6993381 0.04126244 58.85664 +0.9419845 0.04126244 58.85664 +1.267794 0.04126244 58.85664 +1.705268 0.04126244 58.85664 +2.292679 0.04126244 58.85664 +3.081414 0.04126244 58.85664 +4.140474 0.04126244 58.85664 +5.562508 0.04126244 58.85664 +7.471917 0.04126244 58.85664 +10.03574 0.04126244 58.85664 +13.47828 0.04126244 58.85664 +18.10068 0.04126244 58.85664 +24.30731 0.04126244 58.85664 +32.64117 0.04126244 58.85664 +43.83129 0.04126244 58.85664 +58.85664 0.04126244 58.85664 +-0.0175068 0.05836535 58.85664 +-0.01161267 0.05836535 58.85664 +-0.005718534 0.05836535 58.85664 +0.0001755984 0.05836535 58.85664 +0.006069731 0.05836535 58.85664 +0.01197402 0.05836535 58.85664 +0.01903886 0.05836535 58.85664 +0.02852504 0.05836535 58.85664 +0.04126244 0.05836535 58.85664 +0.05836535 0.05836535 58.85664 +0.08132997 0.05836535 58.85664 +0.1121653 0.05836535 58.85664 +0.1535689 0.05836535 58.85664 +0.2091628 0.05836535 58.85664 +0.2838106 0.05836535 58.85664 +0.3840425 0.05836535 58.85664 +0.518627 0.05836535 58.85664 +0.6993381 0.05836535 58.85664 +0.9419845 0.05836535 58.85664 +1.267794 0.05836535 58.85664 +1.705268 0.05836535 58.85664 +2.292679 0.05836535 58.85664 +3.081414 0.05836535 58.85664 +4.140474 0.05836535 58.85664 +5.562508 0.05836535 58.85664 +7.471917 0.05836535 58.85664 +10.03574 0.05836535 58.85664 +13.47828 0.05836535 58.85664 +18.10068 0.05836535 58.85664 +24.30731 0.05836535 58.85664 +32.64117 0.05836535 58.85664 +43.83129 0.05836535 58.85664 +58.85664 0.05836535 58.85664 +-0.0175068 0.08132997 58.85664 +-0.01161267 0.08132997 58.85664 +-0.005718534 0.08132997 58.85664 +0.0001755984 0.08132997 58.85664 +0.006069731 0.08132997 58.85664 +0.01197402 0.08132997 58.85664 +0.01903886 0.08132997 58.85664 +0.02852504 0.08132997 58.85664 +0.04126244 0.08132997 58.85664 +0.05836535 0.08132997 58.85664 +0.08132997 0.08132997 58.85664 +0.1121653 0.08132997 58.85664 +0.1535689 0.08132997 58.85664 +0.2091628 0.08132997 58.85664 +0.2838106 0.08132997 58.85664 +0.3840425 0.08132997 58.85664 +0.518627 0.08132997 58.85664 +0.6993381 0.08132997 58.85664 +0.9419845 0.08132997 58.85664 +1.267794 0.08132997 58.85664 +1.705268 0.08132997 58.85664 +2.292679 0.08132997 58.85664 +3.081414 0.08132997 58.85664 +4.140474 0.08132997 58.85664 +5.562508 0.08132997 58.85664 +7.471917 0.08132997 58.85664 +10.03574 0.08132997 58.85664 +13.47828 0.08132997 58.85664 +18.10068 0.08132997 58.85664 +24.30731 0.08132997 58.85664 +32.64117 0.08132997 58.85664 +43.83129 0.08132997 58.85664 +58.85664 0.08132997 58.85664 +-0.0175068 0.1121653 58.85664 +-0.01161267 0.1121653 58.85664 +-0.005718534 0.1121653 58.85664 +0.0001755984 0.1121653 58.85664 +0.006069731 0.1121653 58.85664 +0.01197402 0.1121653 58.85664 +0.01903886 0.1121653 58.85664 +0.02852504 0.1121653 58.85664 +0.04126244 0.1121653 58.85664 +0.05836535 0.1121653 58.85664 +0.08132997 0.1121653 58.85664 +0.1121653 0.1121653 58.85664 +0.1535689 0.1121653 58.85664 +0.2091628 0.1121653 58.85664 +0.2838106 0.1121653 58.85664 +0.3840425 0.1121653 58.85664 +0.518627 0.1121653 58.85664 +0.6993381 0.1121653 58.85664 +0.9419845 0.1121653 58.85664 +1.267794 0.1121653 58.85664 +1.705268 0.1121653 58.85664 +2.292679 0.1121653 58.85664 +3.081414 0.1121653 58.85664 +4.140474 0.1121653 58.85664 +5.562508 0.1121653 58.85664 +7.471917 0.1121653 58.85664 +10.03574 0.1121653 58.85664 +13.47828 0.1121653 58.85664 +18.10068 0.1121653 58.85664 +24.30731 0.1121653 58.85664 +32.64117 0.1121653 58.85664 +43.83129 0.1121653 58.85664 +58.85664 0.1121653 58.85664 +-0.0175068 0.1535689 58.85664 +-0.01161267 0.1535689 58.85664 +-0.005718534 0.1535689 58.85664 +0.0001755984 0.1535689 58.85664 +0.006069731 0.1535689 58.85664 +0.01197402 0.1535689 58.85664 +0.01903886 0.1535689 58.85664 +0.02852504 0.1535689 58.85664 +0.04126244 0.1535689 58.85664 +0.05836535 0.1535689 58.85664 +0.08132997 0.1535689 58.85664 +0.1121653 0.1535689 58.85664 +0.1535689 0.1535689 58.85664 +0.2091628 0.1535689 58.85664 +0.2838106 0.1535689 58.85664 +0.3840425 0.1535689 58.85664 +0.518627 0.1535689 58.85664 +0.6993381 0.1535689 58.85664 +0.9419845 0.1535689 58.85664 +1.267794 0.1535689 58.85664 +1.705268 0.1535689 58.85664 +2.292679 0.1535689 58.85664 +3.081414 0.1535689 58.85664 +4.140474 0.1535689 58.85664 +5.562508 0.1535689 58.85664 +7.471917 0.1535689 58.85664 +10.03574 0.1535689 58.85664 +13.47828 0.1535689 58.85664 +18.10068 0.1535689 58.85664 +24.30731 0.1535689 58.85664 +32.64117 0.1535689 58.85664 +43.83129 0.1535689 58.85664 +58.85664 0.1535689 58.85664 +-0.0175068 0.2091628 58.85664 +-0.01161267 0.2091628 58.85664 +-0.005718534 0.2091628 58.85664 +0.0001755984 0.2091628 58.85664 +0.006069731 0.2091628 58.85664 +0.01197402 0.2091628 58.85664 +0.01903886 0.2091628 58.85664 +0.02852504 0.2091628 58.85664 +0.04126244 0.2091628 58.85664 +0.05836535 0.2091628 58.85664 +0.08132997 0.2091628 58.85664 +0.1121653 0.2091628 58.85664 +0.1535689 0.2091628 58.85664 +0.2091628 0.2091628 58.85664 +0.2838106 0.2091628 58.85664 +0.3840425 0.2091628 58.85664 +0.518627 0.2091628 58.85664 +0.6993381 0.2091628 58.85664 +0.9419845 0.2091628 58.85664 +1.267794 0.2091628 58.85664 +1.705268 0.2091628 58.85664 +2.292679 0.2091628 58.85664 +3.081414 0.2091628 58.85664 +4.140474 0.2091628 58.85664 +5.562508 0.2091628 58.85664 +7.471917 0.2091628 58.85664 +10.03574 0.2091628 58.85664 +13.47828 0.2091628 58.85664 +18.10068 0.2091628 58.85664 +24.30731 0.2091628 58.85664 +32.64117 0.2091628 58.85664 +43.83129 0.2091628 58.85664 +58.85664 0.2091628 58.85664 +-0.0175068 0.2838106 58.85664 +-0.01161267 0.2838106 58.85664 +-0.005718534 0.2838106 58.85664 +0.0001755984 0.2838106 58.85664 +0.006069731 0.2838106 58.85664 +0.01197402 0.2838106 58.85664 +0.01903886 0.2838106 58.85664 +0.02852504 0.2838106 58.85664 +0.04126244 0.2838106 58.85664 +0.05836535 0.2838106 58.85664 +0.08132997 0.2838106 58.85664 +0.1121653 0.2838106 58.85664 +0.1535689 0.2838106 58.85664 +0.2091628 0.2838106 58.85664 +0.2838106 0.2838106 58.85664 +0.3840425 0.2838106 58.85664 +0.518627 0.2838106 58.85664 +0.6993381 0.2838106 58.85664 +0.9419845 0.2838106 58.85664 +1.267794 0.2838106 58.85664 +1.705268 0.2838106 58.85664 +2.292679 0.2838106 58.85664 +3.081414 0.2838106 58.85664 +4.140474 0.2838106 58.85664 +5.562508 0.2838106 58.85664 +7.471917 0.2838106 58.85664 +10.03574 0.2838106 58.85664 +13.47828 0.2838106 58.85664 +18.10068 0.2838106 58.85664 +24.30731 0.2838106 58.85664 +32.64117 0.2838106 58.85664 +43.83129 0.2838106 58.85664 +58.85664 0.2838106 58.85664 +-0.0175068 0.3840425 58.85664 +-0.01161267 0.3840425 58.85664 +-0.005718534 0.3840425 58.85664 +0.0001755984 0.3840425 58.85664 +0.006069731 0.3840425 58.85664 +0.01197402 0.3840425 58.85664 +0.01903886 0.3840425 58.85664 +0.02852504 0.3840425 58.85664 +0.04126244 0.3840425 58.85664 +0.05836535 0.3840425 58.85664 +0.08132997 0.3840425 58.85664 +0.1121653 0.3840425 58.85664 +0.1535689 0.3840425 58.85664 +0.2091628 0.3840425 58.85664 +0.2838106 0.3840425 58.85664 +0.3840425 0.3840425 58.85664 +0.518627 0.3840425 58.85664 +0.6993381 0.3840425 58.85664 +0.9419845 0.3840425 58.85664 +1.267794 0.3840425 58.85664 +1.705268 0.3840425 58.85664 +2.292679 0.3840425 58.85664 +3.081414 0.3840425 58.85664 +4.140474 0.3840425 58.85664 +5.562508 0.3840425 58.85664 +7.471917 0.3840425 58.85664 +10.03574 0.3840425 58.85664 +13.47828 0.3840425 58.85664 +18.10068 0.3840425 58.85664 +24.30731 0.3840425 58.85664 +32.64117 0.3840425 58.85664 +43.83129 0.3840425 58.85664 +58.85664 0.3840425 58.85664 +-0.0175068 0.518627 58.85664 +-0.01161267 0.518627 58.85664 +-0.005718534 0.518627 58.85664 +0.0001755984 0.518627 58.85664 +0.006069731 0.518627 58.85664 +0.01197402 0.518627 58.85664 +0.01903886 0.518627 58.85664 +0.02852504 0.518627 58.85664 +0.04126244 0.518627 58.85664 +0.05836535 0.518627 58.85664 +0.08132997 0.518627 58.85664 +0.1121653 0.518627 58.85664 +0.1535689 0.518627 58.85664 +0.2091628 0.518627 58.85664 +0.2838106 0.518627 58.85664 +0.3840425 0.518627 58.85664 +0.518627 0.518627 58.85664 +0.6993381 0.518627 58.85664 +0.9419845 0.518627 58.85664 +1.267794 0.518627 58.85664 +1.705268 0.518627 58.85664 +2.292679 0.518627 58.85664 +3.081414 0.518627 58.85664 +4.140474 0.518627 58.85664 +5.562508 0.518627 58.85664 +7.471917 0.518627 58.85664 +10.03574 0.518627 58.85664 +13.47828 0.518627 58.85664 +18.10068 0.518627 58.85664 +24.30731 0.518627 58.85664 +32.64117 0.518627 58.85664 +43.83129 0.518627 58.85664 +58.85664 0.518627 58.85664 +-0.0175068 0.6993381 58.85664 +-0.01161267 0.6993381 58.85664 +-0.005718534 0.6993381 58.85664 +0.0001755984 0.6993381 58.85664 +0.006069731 0.6993381 58.85664 +0.01197402 0.6993381 58.85664 +0.01903886 0.6993381 58.85664 +0.02852504 0.6993381 58.85664 +0.04126244 0.6993381 58.85664 +0.05836535 0.6993381 58.85664 +0.08132997 0.6993381 58.85664 +0.1121653 0.6993381 58.85664 +0.1535689 0.6993381 58.85664 +0.2091628 0.6993381 58.85664 +0.2838106 0.6993381 58.85664 +0.3840425 0.6993381 58.85664 +0.518627 0.6993381 58.85664 +0.6993381 0.6993381 58.85664 +0.9419845 0.6993381 58.85664 +1.267794 0.6993381 58.85664 +1.705268 0.6993381 58.85664 +2.292679 0.6993381 58.85664 +3.081414 0.6993381 58.85664 +4.140474 0.6993381 58.85664 +5.562508 0.6993381 58.85664 +7.471917 0.6993381 58.85664 +10.03574 0.6993381 58.85664 +13.47828 0.6993381 58.85664 +18.10068 0.6993381 58.85664 +24.30731 0.6993381 58.85664 +32.64117 0.6993381 58.85664 +43.83129 0.6993381 58.85664 +58.85664 0.6993381 58.85664 +-0.0175068 0.9419845 58.85664 +-0.01161267 0.9419845 58.85664 +-0.005718534 0.9419845 58.85664 +0.0001755984 0.9419845 58.85664 +0.006069731 0.9419845 58.85664 +0.01197402 0.9419845 58.85664 +0.01903886 0.9419845 58.85664 +0.02852504 0.9419845 58.85664 +0.04126244 0.9419845 58.85664 +0.05836535 0.9419845 58.85664 +0.08132997 0.9419845 58.85664 +0.1121653 0.9419845 58.85664 +0.1535689 0.9419845 58.85664 +0.2091628 0.9419845 58.85664 +0.2838106 0.9419845 58.85664 +0.3840425 0.9419845 58.85664 +0.518627 0.9419845 58.85664 +0.6993381 0.9419845 58.85664 +0.9419845 0.9419845 58.85664 +1.267794 0.9419845 58.85664 +1.705268 0.9419845 58.85664 +2.292679 0.9419845 58.85664 +3.081414 0.9419845 58.85664 +4.140474 0.9419845 58.85664 +5.562508 0.9419845 58.85664 +7.471917 0.9419845 58.85664 +10.03574 0.9419845 58.85664 +13.47828 0.9419845 58.85664 +18.10068 0.9419845 58.85664 +24.30731 0.9419845 58.85664 +32.64117 0.9419845 58.85664 +43.83129 0.9419845 58.85664 +58.85664 0.9419845 58.85664 +-0.0175068 1.267794 58.85664 +-0.01161267 1.267794 58.85664 +-0.005718534 1.267794 58.85664 +0.0001755984 1.267794 58.85664 +0.006069731 1.267794 58.85664 +0.01197402 1.267794 58.85664 +0.01903886 1.267794 58.85664 +0.02852504 1.267794 58.85664 +0.04126244 1.267794 58.85664 +0.05836535 1.267794 58.85664 +0.08132997 1.267794 58.85664 +0.1121653 1.267794 58.85664 +0.1535689 1.267794 58.85664 +0.2091628 1.267794 58.85664 +0.2838106 1.267794 58.85664 +0.3840425 1.267794 58.85664 +0.518627 1.267794 58.85664 +0.6993381 1.267794 58.85664 +0.9419845 1.267794 58.85664 +1.267794 1.267794 58.85664 +1.705268 1.267794 58.85664 +2.292679 1.267794 58.85664 +3.081414 1.267794 58.85664 +4.140474 1.267794 58.85664 +5.562508 1.267794 58.85664 +7.471917 1.267794 58.85664 +10.03574 1.267794 58.85664 +13.47828 1.267794 58.85664 +18.10068 1.267794 58.85664 +24.30731 1.267794 58.85664 +32.64117 1.267794 58.85664 +43.83129 1.267794 58.85664 +58.85664 1.267794 58.85664 +-0.0175068 1.705268 58.85664 +-0.01161267 1.705268 58.85664 +-0.005718534 1.705268 58.85664 +0.0001755984 1.705268 58.85664 +0.006069731 1.705268 58.85664 +0.01197402 1.705268 58.85664 +0.01903886 1.705268 58.85664 +0.02852504 1.705268 58.85664 +0.04126244 1.705268 58.85664 +0.05836535 1.705268 58.85664 +0.08132997 1.705268 58.85664 +0.1121653 1.705268 58.85664 +0.1535689 1.705268 58.85664 +0.2091628 1.705268 58.85664 +0.2838106 1.705268 58.85664 +0.3840425 1.705268 58.85664 +0.518627 1.705268 58.85664 +0.6993381 1.705268 58.85664 +0.9419845 1.705268 58.85664 +1.267794 1.705268 58.85664 +1.705268 1.705268 58.85664 +2.292679 1.705268 58.85664 +3.081414 1.705268 58.85664 +4.140474 1.705268 58.85664 +5.562508 1.705268 58.85664 +7.471917 1.705268 58.85664 +10.03574 1.705268 58.85664 +13.47828 1.705268 58.85664 +18.10068 1.705268 58.85664 +24.30731 1.705268 58.85664 +32.64117 1.705268 58.85664 +43.83129 1.705268 58.85664 +58.85664 1.705268 58.85664 +-0.0175068 2.292679 58.85664 +-0.01161267 2.292679 58.85664 +-0.005718534 2.292679 58.85664 +0.0001755984 2.292679 58.85664 +0.006069731 2.292679 58.85664 +0.01197402 2.292679 58.85664 +0.01903886 2.292679 58.85664 +0.02852504 2.292679 58.85664 +0.04126244 2.292679 58.85664 +0.05836535 2.292679 58.85664 +0.08132997 2.292679 58.85664 +0.1121653 2.292679 58.85664 +0.1535689 2.292679 58.85664 +0.2091628 2.292679 58.85664 +0.2838106 2.292679 58.85664 +0.3840425 2.292679 58.85664 +0.518627 2.292679 58.85664 +0.6993381 2.292679 58.85664 +0.9419845 2.292679 58.85664 +1.267794 2.292679 58.85664 +1.705268 2.292679 58.85664 +2.292679 2.292679 58.85664 +3.081414 2.292679 58.85664 +4.140474 2.292679 58.85664 +5.562508 2.292679 58.85664 +7.471917 2.292679 58.85664 +10.03574 2.292679 58.85664 +13.47828 2.292679 58.85664 +18.10068 2.292679 58.85664 +24.30731 2.292679 58.85664 +32.64117 2.292679 58.85664 +43.83129 2.292679 58.85664 +58.85664 2.292679 58.85664 +-0.0175068 3.081414 58.85664 +-0.01161267 3.081414 58.85664 +-0.005718534 3.081414 58.85664 +0.0001755984 3.081414 58.85664 +0.006069731 3.081414 58.85664 +0.01197402 3.081414 58.85664 +0.01903886 3.081414 58.85664 +0.02852504 3.081414 58.85664 +0.04126244 3.081414 58.85664 +0.05836535 3.081414 58.85664 +0.08132997 3.081414 58.85664 +0.1121653 3.081414 58.85664 +0.1535689 3.081414 58.85664 +0.2091628 3.081414 58.85664 +0.2838106 3.081414 58.85664 +0.3840425 3.081414 58.85664 +0.518627 3.081414 58.85664 +0.6993381 3.081414 58.85664 +0.9419845 3.081414 58.85664 +1.267794 3.081414 58.85664 +1.705268 3.081414 58.85664 +2.292679 3.081414 58.85664 +3.081414 3.081414 58.85664 +4.140474 3.081414 58.85664 +5.562508 3.081414 58.85664 +7.471917 3.081414 58.85664 +10.03574 3.081414 58.85664 +13.47828 3.081414 58.85664 +18.10068 3.081414 58.85664 +24.30731 3.081414 58.85664 +32.64117 3.081414 58.85664 +43.83129 3.081414 58.85664 +58.85664 3.081414 58.85664 +-0.0175068 4.140474 58.85664 +-0.01161267 4.140474 58.85664 +-0.005718534 4.140474 58.85664 +0.0001755984 4.140474 58.85664 +0.006069731 4.140474 58.85664 +0.01197402 4.140474 58.85664 +0.01903886 4.140474 58.85664 +0.02852504 4.140474 58.85664 +0.04126244 4.140474 58.85664 +0.05836535 4.140474 58.85664 +0.08132997 4.140474 58.85664 +0.1121653 4.140474 58.85664 +0.1535689 4.140474 58.85664 +0.2091628 4.140474 58.85664 +0.2838106 4.140474 58.85664 +0.3840425 4.140474 58.85664 +0.518627 4.140474 58.85664 +0.6993381 4.140474 58.85664 +0.9419845 4.140474 58.85664 +1.267794 4.140474 58.85664 +1.705268 4.140474 58.85664 +2.292679 4.140474 58.85664 +3.081414 4.140474 58.85664 +4.140474 4.140474 58.85664 +5.562508 4.140474 58.85664 +7.471917 4.140474 58.85664 +10.03574 4.140474 58.85664 +13.47828 4.140474 58.85664 +18.10068 4.140474 58.85664 +24.30731 4.140474 58.85664 +32.64117 4.140474 58.85664 +43.83129 4.140474 58.85664 +58.85664 4.140474 58.85664 +-0.0175068 5.562508 58.85664 +-0.01161267 5.562508 58.85664 +-0.005718534 5.562508 58.85664 +0.0001755984 5.562508 58.85664 +0.006069731 5.562508 58.85664 +0.01197402 5.562508 58.85664 +0.01903886 5.562508 58.85664 +0.02852504 5.562508 58.85664 +0.04126244 5.562508 58.85664 +0.05836535 5.562508 58.85664 +0.08132997 5.562508 58.85664 +0.1121653 5.562508 58.85664 +0.1535689 5.562508 58.85664 +0.2091628 5.562508 58.85664 +0.2838106 5.562508 58.85664 +0.3840425 5.562508 58.85664 +0.518627 5.562508 58.85664 +0.6993381 5.562508 58.85664 +0.9419845 5.562508 58.85664 +1.267794 5.562508 58.85664 +1.705268 5.562508 58.85664 +2.292679 5.562508 58.85664 +3.081414 5.562508 58.85664 +4.140474 5.562508 58.85664 +5.562508 5.562508 58.85664 +7.471917 5.562508 58.85664 +10.03574 5.562508 58.85664 +13.47828 5.562508 58.85664 +18.10068 5.562508 58.85664 +24.30731 5.562508 58.85664 +32.64117 5.562508 58.85664 +43.83129 5.562508 58.85664 +58.85664 5.562508 58.85664 +-0.0175068 7.471917 58.85664 +-0.01161267 7.471917 58.85664 +-0.005718534 7.471917 58.85664 +0.0001755984 7.471917 58.85664 +0.006069731 7.471917 58.85664 +0.01197402 7.471917 58.85664 +0.01903886 7.471917 58.85664 +0.02852504 7.471917 58.85664 +0.04126244 7.471917 58.85664 +0.05836535 7.471917 58.85664 +0.08132997 7.471917 58.85664 +0.1121653 7.471917 58.85664 +0.1535689 7.471917 58.85664 +0.2091628 7.471917 58.85664 +0.2838106 7.471917 58.85664 +0.3840425 7.471917 58.85664 +0.518627 7.471917 58.85664 +0.6993381 7.471917 58.85664 +0.9419845 7.471917 58.85664 +1.267794 7.471917 58.85664 +1.705268 7.471917 58.85664 +2.292679 7.471917 58.85664 +3.081414 7.471917 58.85664 +4.140474 7.471917 58.85664 +5.562508 7.471917 58.85664 +7.471917 7.471917 58.85664 +10.03574 7.471917 58.85664 +13.47828 7.471917 58.85664 +18.10068 7.471917 58.85664 +24.30731 7.471917 58.85664 +32.64117 7.471917 58.85664 +43.83129 7.471917 58.85664 +58.85664 7.471917 58.85664 +-0.0175068 10.03574 58.85664 +-0.01161267 10.03574 58.85664 +-0.005718534 10.03574 58.85664 +0.0001755984 10.03574 58.85664 +0.006069731 10.03574 58.85664 +0.01197402 10.03574 58.85664 +0.01903886 10.03574 58.85664 +0.02852504 10.03574 58.85664 +0.04126244 10.03574 58.85664 +0.05836535 10.03574 58.85664 +0.08132997 10.03574 58.85664 +0.1121653 10.03574 58.85664 +0.1535689 10.03574 58.85664 +0.2091628 10.03574 58.85664 +0.2838106 10.03574 58.85664 +0.3840425 10.03574 58.85664 +0.518627 10.03574 58.85664 +0.6993381 10.03574 58.85664 +0.9419845 10.03574 58.85664 +1.267794 10.03574 58.85664 +1.705268 10.03574 58.85664 +2.292679 10.03574 58.85664 +3.081414 10.03574 58.85664 +4.140474 10.03574 58.85664 +5.562508 10.03574 58.85664 +7.471917 10.03574 58.85664 +10.03574 10.03574 58.85664 +13.47828 10.03574 58.85664 +18.10068 10.03574 58.85664 +24.30731 10.03574 58.85664 +32.64117 10.03574 58.85664 +43.83129 10.03574 58.85664 +58.85664 10.03574 58.85664 +-0.0175068 13.47828 58.85664 +-0.01161267 13.47828 58.85664 +-0.005718534 13.47828 58.85664 +0.0001755984 13.47828 58.85664 +0.006069731 13.47828 58.85664 +0.01197402 13.47828 58.85664 +0.01903886 13.47828 58.85664 +0.02852504 13.47828 58.85664 +0.04126244 13.47828 58.85664 +0.05836535 13.47828 58.85664 +0.08132997 13.47828 58.85664 +0.1121653 13.47828 58.85664 +0.1535689 13.47828 58.85664 +0.2091628 13.47828 58.85664 +0.2838106 13.47828 58.85664 +0.3840425 13.47828 58.85664 +0.518627 13.47828 58.85664 +0.6993381 13.47828 58.85664 +0.9419845 13.47828 58.85664 +1.267794 13.47828 58.85664 +1.705268 13.47828 58.85664 +2.292679 13.47828 58.85664 +3.081414 13.47828 58.85664 +4.140474 13.47828 58.85664 +5.562508 13.47828 58.85664 +7.471917 13.47828 58.85664 +10.03574 13.47828 58.85664 +13.47828 13.47828 58.85664 +18.10068 13.47828 58.85664 +24.30731 13.47828 58.85664 +32.64117 13.47828 58.85664 +43.83129 13.47828 58.85664 +58.85664 13.47828 58.85664 +-0.0175068 18.10068 58.85664 +-0.01161267 18.10068 58.85664 +-0.005718534 18.10068 58.85664 +0.0001755984 18.10068 58.85664 +0.006069731 18.10068 58.85664 +0.01197402 18.10068 58.85664 +0.01903886 18.10068 58.85664 +0.02852504 18.10068 58.85664 +0.04126244 18.10068 58.85664 +0.05836535 18.10068 58.85664 +0.08132997 18.10068 58.85664 +0.1121653 18.10068 58.85664 +0.1535689 18.10068 58.85664 +0.2091628 18.10068 58.85664 +0.2838106 18.10068 58.85664 +0.3840425 18.10068 58.85664 +0.518627 18.10068 58.85664 +0.6993381 18.10068 58.85664 +0.9419845 18.10068 58.85664 +1.267794 18.10068 58.85664 +1.705268 18.10068 58.85664 +2.292679 18.10068 58.85664 +3.081414 18.10068 58.85664 +4.140474 18.10068 58.85664 +5.562508 18.10068 58.85664 +7.471917 18.10068 58.85664 +10.03574 18.10068 58.85664 +13.47828 18.10068 58.85664 +18.10068 18.10068 58.85664 +24.30731 18.10068 58.85664 +32.64117 18.10068 58.85664 +43.83129 18.10068 58.85664 +58.85664 18.10068 58.85664 +-0.0175068 24.30731 58.85664 +-0.01161267 24.30731 58.85664 +-0.005718534 24.30731 58.85664 +0.0001755984 24.30731 58.85664 +0.006069731 24.30731 58.85664 +0.01197402 24.30731 58.85664 +0.01903886 24.30731 58.85664 +0.02852504 24.30731 58.85664 +0.04126244 24.30731 58.85664 +0.05836535 24.30731 58.85664 +0.08132997 24.30731 58.85664 +0.1121653 24.30731 58.85664 +0.1535689 24.30731 58.85664 +0.2091628 24.30731 58.85664 +0.2838106 24.30731 58.85664 +0.3840425 24.30731 58.85664 +0.518627 24.30731 58.85664 +0.6993381 24.30731 58.85664 +0.9419845 24.30731 58.85664 +1.267794 24.30731 58.85664 +1.705268 24.30731 58.85664 +2.292679 24.30731 58.85664 +3.081414 24.30731 58.85664 +4.140474 24.30731 58.85664 +5.562508 24.30731 58.85664 +7.471917 24.30731 58.85664 +10.03574 24.30731 58.85664 +13.47828 24.30731 58.85664 +18.10068 24.30731 58.85664 +24.30731 24.30731 58.85664 +32.64117 24.30731 58.85664 +43.83129 24.30731 58.85664 +58.85664 24.30731 58.85664 +-0.0175068 32.64117 58.85664 +-0.01161267 32.64117 58.85664 +-0.005718534 32.64117 58.85664 +0.0001755984 32.64117 58.85664 +0.006069731 32.64117 58.85664 +0.01197402 32.64117 58.85664 +0.01903886 32.64117 58.85664 +0.02852504 32.64117 58.85664 +0.04126244 32.64117 58.85664 +0.05836535 32.64117 58.85664 +0.08132997 32.64117 58.85664 +0.1121653 32.64117 58.85664 +0.1535689 32.64117 58.85664 +0.2091628 32.64117 58.85664 +0.2838106 32.64117 58.85664 +0.3840425 32.64117 58.85664 +0.518627 32.64117 58.85664 +0.6993381 32.64117 58.85664 +0.9419845 32.64117 58.85664 +1.267794 32.64117 58.85664 +1.705268 32.64117 58.85664 +2.292679 32.64117 58.85664 +3.081414 32.64117 58.85664 +4.140474 32.64117 58.85664 +5.562508 32.64117 58.85664 +7.471917 32.64117 58.85664 +10.03574 32.64117 58.85664 +13.47828 32.64117 58.85664 +18.10068 32.64117 58.85664 +24.30731 32.64117 58.85664 +32.64117 32.64117 58.85664 +43.83129 32.64117 58.85664 +58.85664 32.64117 58.85664 +-0.0175068 43.83129 58.85664 +-0.01161267 43.83129 58.85664 +-0.005718534 43.83129 58.85664 +0.0001755984 43.83129 58.85664 +0.006069731 43.83129 58.85664 +0.01197402 43.83129 58.85664 +0.01903886 43.83129 58.85664 +0.02852504 43.83129 58.85664 +0.04126244 43.83129 58.85664 +0.05836535 43.83129 58.85664 +0.08132997 43.83129 58.85664 +0.1121653 43.83129 58.85664 +0.1535689 43.83129 58.85664 +0.2091628 43.83129 58.85664 +0.2838106 43.83129 58.85664 +0.3840425 43.83129 58.85664 +0.518627 43.83129 58.85664 +0.6993381 43.83129 58.85664 +0.9419845 43.83129 58.85664 +1.267794 43.83129 58.85664 +1.705268 43.83129 58.85664 +2.292679 43.83129 58.85664 +3.081414 43.83129 58.85664 +4.140474 43.83129 58.85664 +5.562508 43.83129 58.85664 +7.471917 43.83129 58.85664 +10.03574 43.83129 58.85664 +13.47828 43.83129 58.85664 +18.10068 43.83129 58.85664 +24.30731 43.83129 58.85664 +32.64117 43.83129 58.85664 +43.83129 43.83129 58.85664 +58.85664 43.83129 58.85664 +-0.0175068 58.85664 58.85664 +-0.01161267 58.85664 58.85664 +-0.005718534 58.85664 58.85664 +0.0001755984 58.85664 58.85664 +0.006069731 58.85664 58.85664 +0.01197402 58.85664 58.85664 +0.01903886 58.85664 58.85664 +0.02852504 58.85664 58.85664 +0.04126244 58.85664 58.85664 +0.05836535 58.85664 58.85664 +0.08132997 58.85664 58.85664 +0.1121653 58.85664 58.85664 +0.1535689 58.85664 58.85664 +0.2091628 58.85664 58.85664 +0.2838106 58.85664 58.85664 +0.3840425 58.85664 58.85664 +0.518627 58.85664 58.85664 +0.6993381 58.85664 58.85664 +0.9419845 58.85664 58.85664 +1.267794 58.85664 58.85664 +1.705268 58.85664 58.85664 +2.292679 58.85664 58.85664 +3.081414 58.85664 58.85664 +4.140474 58.85664 58.85664 +5.562508 58.85664 58.85664 +7.471917 58.85664 58.85664 +10.03574 58.85664 58.85664 +13.47828 58.85664 58.85664 +18.10068 58.85664 58.85664 +24.30731 58.85664 58.85664 +32.64117 58.85664 58.85664 +43.83129 58.85664 58.85664 +58.85664 58.85664 58.85664 diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Unity Log to Linear r1.cube.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Unity Log to Linear r1.cube.meta new file mode 100644 index 0000000..805fe9c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Unity Log to Linear r1.cube.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9b853726bb222aa4e86ef5f7633d2c15 +timeCreated: 1496826837 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Unity Log to sRGB r1.cube b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Unity Log to sRGB r1.cube new file mode 100644 index 0000000..351ef50 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Unity Log to sRGB r1.cube @@ -0,0 +1,35941 @@ +TITLE "Unity Log to sRGB r1" +LUT_3D_SIZE 33 +DOMAIN_MIN 0 0 0 +DOMAIN_MAX 1 1 1 +0 0 0 +0 0 0 +0 0 0 +0.002268731 0 0 +0.07076883 0 0 +0.1119241 0 0 +0.1475052 0 0 +0.1846606 0 0 +0.2245119 0 0 +0.2679612 0 0 +0.3158431 0 0 +0.3689944 0 0 +0.4282948 0 0 +0.494694 0 0 +0.5692344 0 0 +0.6530715 0 0 +0.7474945 0 0 +0.8539475 0 0 +0.974052 0 0 +1.113885 0 0 +1.27456 0 0 +1.458117 0 0 +1.667858 0 0 +1.907556 0 0 +2.181521 0 0 +2.494678 0 0 +2.852659 0 0 +3.261896 0 0 +3.729748 0 0 +4.264621 0 0 +4.876131 0 0 +5.575266 0 0 +6.374593 0 0 +0 0 0 +0 0 0 +0 0 0 +0.002268731 0 0 +0.07076883 0 0 +0.1119241 0 0 +0.1475052 0 0 +0.1846606 0 0 +0.2245119 0 0 +0.2679612 0 0 +0.3158431 0 0 +0.3689944 0 0 +0.4282948 0 0 +0.494694 0 0 +0.5692344 0 0 +0.6530715 0 0 +0.7474945 0 0 +0.8539475 0 0 +0.974052 0 0 +1.113885 0 0 +1.27456 0 0 +1.458117 0 0 +1.667858 0 0 +1.907556 0 0 +2.181521 0 0 +2.494678 0 0 +2.852659 0 0 +3.261896 0 0 +3.729748 0 0 +4.264621 0 0 +4.876131 0 0 +5.575266 0 0 +6.374593 0 0 +0 0 0 +0 0 0 +0 0 0 +0.002268731 0 0 +0.07076883 0 0 +0.1119241 0 0 +0.1475052 0 0 +0.1846606 0 0 +0.2245119 0 0 +0.2679612 0 0 +0.3158431 0 0 +0.3689944 0 0 +0.4282948 0 0 +0.494694 0 0 +0.5692344 0 0 +0.6530715 0 0 +0.7474945 0 0 +0.8539475 0 0 +0.974052 0 0 +1.113885 0 0 +1.27456 0 0 +1.458117 0 0 +1.667858 0 0 +1.907556 0 0 +2.181521 0 0 +2.494678 0 0 +2.852659 0 0 +3.261896 0 0 +3.729748 0 0 +4.264621 0 0 +4.876131 0 0 +5.575266 0 0 +6.374593 0 0 +0 0.002268731 0 +0 0.002268731 0 +0 0.002268731 0 +0.002268731 0.002268731 0 +0.07076883 0.002268731 0 +0.1119241 0.002268731 0 +0.1475052 0.002268731 0 +0.1846606 0.002268731 0 +0.2245119 0.002268731 0 +0.2679612 0.002268731 0 +0.3158431 0.002268731 0 +0.3689944 0.002268731 0 +0.4282948 0.002268731 0 +0.494694 0.002268731 0 +0.5692344 0.002268731 0 +0.6530715 0.002268731 0 +0.7474945 0.002268731 0 +0.8539475 0.002268731 0 +0.974052 0.002268731 0 +1.113885 0.002268731 0 +1.27456 0.002268731 0 +1.458117 0.002268731 0 +1.667858 0.002268731 0 +1.907556 0.002268731 0 +2.181521 0.002268731 0 +2.494678 0.002268731 0 +2.852659 0.002268731 0 +3.261896 0.002268731 0 +3.729748 0.002268731 0 +4.264621 0.002268731 0 +4.876131 0.002268731 0 +5.575266 0.002268731 0 +6.374593 0.002268731 0 +0 0.07076883 0 +0 0.07076883 0 +0 0.07076883 0 +0.002268731 0.07076883 0 +0.07076883 0.07076883 0 +0.1119241 0.07076883 0 +0.1475052 0.07076883 0 +0.1846606 0.07076883 0 +0.2245119 0.07076883 0 +0.2679612 0.07076883 0 +0.3158431 0.07076883 0 +0.3689944 0.07076883 0 +0.4282948 0.07076883 0 +0.494694 0.07076883 0 +0.5692344 0.07076883 0 +0.6530715 0.07076883 0 +0.7474945 0.07076883 0 +0.8539475 0.07076883 0 +0.974052 0.07076883 0 +1.113885 0.07076883 0 +1.27456 0.07076883 0 +1.458117 0.07076883 0 +1.667858 0.07076883 0 +1.907556 0.07076883 0 +2.181521 0.07076883 0 +2.494678 0.07076883 0 +2.852659 0.07076883 0 +3.261896 0.07076883 0 +3.729748 0.07076883 0 +4.264621 0.07076883 0 +4.876131 0.07076883 0 +5.575266 0.07076883 0 +6.374593 0.07076883 0 +0 0.1119241 0 +0 0.1119241 0 +0 0.1119241 0 +0.002268731 0.1119241 0 +0.07076883 0.1119241 0 +0.1119241 0.1119241 0 +0.1475052 0.1119241 0 +0.1846606 0.1119241 0 +0.2245119 0.1119241 0 +0.2679612 0.1119241 0 +0.3158431 0.1119241 0 +0.3689944 0.1119241 0 +0.4282948 0.1119241 0 +0.494694 0.1119241 0 +0.5692344 0.1119241 0 +0.6530715 0.1119241 0 +0.7474945 0.1119241 0 +0.8539475 0.1119241 0 +0.974052 0.1119241 0 +1.113885 0.1119241 0 +1.27456 0.1119241 0 +1.458117 0.1119241 0 +1.667858 0.1119241 0 +1.907556 0.1119241 0 +2.181521 0.1119241 0 +2.494678 0.1119241 0 +2.852659 0.1119241 0 +3.261896 0.1119241 0 +3.729748 0.1119241 0 +4.264621 0.1119241 0 +4.876131 0.1119241 0 +5.575266 0.1119241 0 +6.374593 0.1119241 0 +0 0.1475052 0 +0 0.1475052 0 +0 0.1475052 0 +0.002268731 0.1475052 0 +0.07076883 0.1475052 0 +0.1119241 0.1475052 0 +0.1475052 0.1475052 0 +0.1846606 0.1475052 0 +0.2245119 0.1475052 0 +0.2679612 0.1475052 0 +0.3158431 0.1475052 0 +0.3689944 0.1475052 0 +0.4282948 0.1475052 0 +0.494694 0.1475052 0 +0.5692344 0.1475052 0 +0.6530715 0.1475052 0 +0.7474945 0.1475052 0 +0.8539475 0.1475052 0 +0.974052 0.1475052 0 +1.113885 0.1475052 0 +1.27456 0.1475052 0 +1.458117 0.1475052 0 +1.667858 0.1475052 0 +1.907556 0.1475052 0 +2.181521 0.1475052 0 +2.494678 0.1475052 0 +2.852659 0.1475052 0 +3.261896 0.1475052 0 +3.729748 0.1475052 0 +4.264621 0.1475052 0 +4.876131 0.1475052 0 +5.575266 0.1475052 0 +6.374593 0.1475052 0 +0 0.1846606 0 +0 0.1846606 0 +0 0.1846606 0 +0.002268731 0.1846606 0 +0.07076883 0.1846606 0 +0.1119241 0.1846606 0 +0.1475052 0.1846606 0 +0.1846606 0.1846606 0 +0.2245119 0.1846606 0 +0.2679612 0.1846606 0 +0.3158431 0.1846606 0 +0.3689944 0.1846606 0 +0.4282948 0.1846606 0 +0.494694 0.1846606 0 +0.5692344 0.1846606 0 +0.6530715 0.1846606 0 +0.7474945 0.1846606 0 +0.8539475 0.1846606 0 +0.974052 0.1846606 0 +1.113885 0.1846606 0 +1.27456 0.1846606 0 +1.458117 0.1846606 0 +1.667858 0.1846606 0 +1.907556 0.1846606 0 +2.181521 0.1846606 0 +2.494678 0.1846606 0 +2.852659 0.1846606 0 +3.261896 0.1846606 0 +3.729748 0.1846606 0 +4.264621 0.1846606 0 +4.876131 0.1846606 0 +5.575266 0.1846606 0 +6.374593 0.1846606 0 +0 0.2245119 0 +0 0.2245119 0 +0 0.2245119 0 +0.002268731 0.2245119 0 +0.07076883 0.2245119 0 +0.1119241 0.2245119 0 +0.1475052 0.2245119 0 +0.1846606 0.2245119 0 +0.2245119 0.2245119 0 +0.2679612 0.2245119 0 +0.3158431 0.2245119 0 +0.3689944 0.2245119 0 +0.4282948 0.2245119 0 +0.494694 0.2245119 0 +0.5692344 0.2245119 0 +0.6530715 0.2245119 0 +0.7474945 0.2245119 0 +0.8539475 0.2245119 0 +0.974052 0.2245119 0 +1.113885 0.2245119 0 +1.27456 0.2245119 0 +1.458117 0.2245119 0 +1.667858 0.2245119 0 +1.907556 0.2245119 0 +2.181521 0.2245119 0 +2.494678 0.2245119 0 +2.852659 0.2245119 0 +3.261896 0.2245119 0 +3.729748 0.2245119 0 +4.264621 0.2245119 0 +4.876131 0.2245119 0 +5.575266 0.2245119 0 +6.374593 0.2245119 0 +0 0.2679612 0 +0 0.2679612 0 +0 0.2679612 0 +0.002268731 0.2679612 0 +0.07076883 0.2679612 0 +0.1119241 0.2679612 0 +0.1475052 0.2679612 0 +0.1846606 0.2679612 0 +0.2245119 0.2679612 0 +0.2679612 0.2679612 0 +0.3158431 0.2679612 0 +0.3689944 0.2679612 0 +0.4282948 0.2679612 0 +0.494694 0.2679612 0 +0.5692344 0.2679612 0 +0.6530715 0.2679612 0 +0.7474945 0.2679612 0 +0.8539475 0.2679612 0 +0.974052 0.2679612 0 +1.113885 0.2679612 0 +1.27456 0.2679612 0 +1.458117 0.2679612 0 +1.667858 0.2679612 0 +1.907556 0.2679612 0 +2.181521 0.2679612 0 +2.494678 0.2679612 0 +2.852659 0.2679612 0 +3.261896 0.2679612 0 +3.729748 0.2679612 0 +4.264621 0.2679612 0 +4.876131 0.2679612 0 +5.575266 0.2679612 0 +6.374593 0.2679612 0 +0 0.3158431 0 +0 0.3158431 0 +0 0.3158431 0 +0.002268731 0.3158431 0 +0.07076883 0.3158431 0 +0.1119241 0.3158431 0 +0.1475052 0.3158431 0 +0.1846606 0.3158431 0 +0.2245119 0.3158431 0 +0.2679612 0.3158431 0 +0.3158431 0.3158431 0 +0.3689944 0.3158431 0 +0.4282948 0.3158431 0 +0.494694 0.3158431 0 +0.5692344 0.3158431 0 +0.6530715 0.3158431 0 +0.7474945 0.3158431 0 +0.8539475 0.3158431 0 +0.974052 0.3158431 0 +1.113885 0.3158431 0 +1.27456 0.3158431 0 +1.458117 0.3158431 0 +1.667858 0.3158431 0 +1.907556 0.3158431 0 +2.181521 0.3158431 0 +2.494678 0.3158431 0 +2.852659 0.3158431 0 +3.261896 0.3158431 0 +3.729748 0.3158431 0 +4.264621 0.3158431 0 +4.876131 0.3158431 0 +5.575266 0.3158431 0 +6.374593 0.3158431 0 +0 0.3689944 0 +0 0.3689944 0 +0 0.3689944 0 +0.002268731 0.3689944 0 +0.07076883 0.3689944 0 +0.1119241 0.3689944 0 +0.1475052 0.3689944 0 +0.1846606 0.3689944 0 +0.2245119 0.3689944 0 +0.2679612 0.3689944 0 +0.3158431 0.3689944 0 +0.3689944 0.3689944 0 +0.4282948 0.3689944 0 +0.494694 0.3689944 0 +0.5692344 0.3689944 0 +0.6530715 0.3689944 0 +0.7474945 0.3689944 0 +0.8539475 0.3689944 0 +0.974052 0.3689944 0 +1.113885 0.3689944 0 +1.27456 0.3689944 0 +1.458117 0.3689944 0 +1.667858 0.3689944 0 +1.907556 0.3689944 0 +2.181521 0.3689944 0 +2.494678 0.3689944 0 +2.852659 0.3689944 0 +3.261896 0.3689944 0 +3.729748 0.3689944 0 +4.264621 0.3689944 0 +4.876131 0.3689944 0 +5.575266 0.3689944 0 +6.374593 0.3689944 0 +0 0.4282948 0 +0 0.4282948 0 +0 0.4282948 0 +0.002268731 0.4282948 0 +0.07076883 0.4282948 0 +0.1119241 0.4282948 0 +0.1475052 0.4282948 0 +0.1846606 0.4282948 0 +0.2245119 0.4282948 0 +0.2679612 0.4282948 0 +0.3158431 0.4282948 0 +0.3689944 0.4282948 0 +0.4282948 0.4282948 0 +0.494694 0.4282948 0 +0.5692344 0.4282948 0 +0.6530715 0.4282948 0 +0.7474945 0.4282948 0 +0.8539475 0.4282948 0 +0.974052 0.4282948 0 +1.113885 0.4282948 0 +1.27456 0.4282948 0 +1.458117 0.4282948 0 +1.667858 0.4282948 0 +1.907556 0.4282948 0 +2.181521 0.4282948 0 +2.494678 0.4282948 0 +2.852659 0.4282948 0 +3.261896 0.4282948 0 +3.729748 0.4282948 0 +4.264621 0.4282948 0 +4.876131 0.4282948 0 +5.575266 0.4282948 0 +6.374593 0.4282948 0 +0 0.494694 0 +0 0.494694 0 +0 0.494694 0 +0.002268731 0.494694 0 +0.07076883 0.494694 0 +0.1119241 0.494694 0 +0.1475052 0.494694 0 +0.1846606 0.494694 0 +0.2245119 0.494694 0 +0.2679612 0.494694 0 +0.3158431 0.494694 0 +0.3689944 0.494694 0 +0.4282948 0.494694 0 +0.494694 0.494694 0 +0.5692344 0.494694 0 +0.6530715 0.494694 0 +0.7474945 0.494694 0 +0.8539475 0.494694 0 +0.974052 0.494694 0 +1.113885 0.494694 0 +1.27456 0.494694 0 +1.458117 0.494694 0 +1.667858 0.494694 0 +1.907556 0.494694 0 +2.181521 0.494694 0 +2.494678 0.494694 0 +2.852659 0.494694 0 +3.261896 0.494694 0 +3.729748 0.494694 0 +4.264621 0.494694 0 +4.876131 0.494694 0 +5.575266 0.494694 0 +6.374593 0.494694 0 +0 0.5692344 0 +0 0.5692344 0 +0 0.5692344 0 +0.002268731 0.5692344 0 +0.07076883 0.5692344 0 +0.1119241 0.5692344 0 +0.1475052 0.5692344 0 +0.1846606 0.5692344 0 +0.2245119 0.5692344 0 +0.2679612 0.5692344 0 +0.3158431 0.5692344 0 +0.3689944 0.5692344 0 +0.4282948 0.5692344 0 +0.494694 0.5692344 0 +0.5692344 0.5692344 0 +0.6530715 0.5692344 0 +0.7474945 0.5692344 0 +0.8539475 0.5692344 0 +0.974052 0.5692344 0 +1.113885 0.5692344 0 +1.27456 0.5692344 0 +1.458117 0.5692344 0 +1.667858 0.5692344 0 +1.907556 0.5692344 0 +2.181521 0.5692344 0 +2.494678 0.5692344 0 +2.852659 0.5692344 0 +3.261896 0.5692344 0 +3.729748 0.5692344 0 +4.264621 0.5692344 0 +4.876131 0.5692344 0 +5.575266 0.5692344 0 +6.374593 0.5692344 0 +0 0.6530715 0 +0 0.6530715 0 +0 0.6530715 0 +0.002268731 0.6530715 0 +0.07076883 0.6530715 0 +0.1119241 0.6530715 0 +0.1475052 0.6530715 0 +0.1846606 0.6530715 0 +0.2245119 0.6530715 0 +0.2679612 0.6530715 0 +0.3158431 0.6530715 0 +0.3689944 0.6530715 0 +0.4282948 0.6530715 0 +0.494694 0.6530715 0 +0.5692344 0.6530715 0 +0.6530715 0.6530715 0 +0.7474945 0.6530715 0 +0.8539475 0.6530715 0 +0.974052 0.6530715 0 +1.113885 0.6530715 0 +1.27456 0.6530715 0 +1.458117 0.6530715 0 +1.667858 0.6530715 0 +1.907556 0.6530715 0 +2.181521 0.6530715 0 +2.494678 0.6530715 0 +2.852659 0.6530715 0 +3.261896 0.6530715 0 +3.729748 0.6530715 0 +4.264621 0.6530715 0 +4.876131 0.6530715 0 +5.575266 0.6530715 0 +6.374593 0.6530715 0 +0 0.7474945 0 +0 0.7474945 0 +0 0.7474945 0 +0.002268731 0.7474945 0 +0.07076883 0.7474945 0 +0.1119241 0.7474945 0 +0.1475052 0.7474945 0 +0.1846606 0.7474945 0 +0.2245119 0.7474945 0 +0.2679612 0.7474945 0 +0.3158431 0.7474945 0 +0.3689944 0.7474945 0 +0.4282948 0.7474945 0 +0.494694 0.7474945 0 +0.5692344 0.7474945 0 +0.6530715 0.7474945 0 +0.7474945 0.7474945 0 +0.8539475 0.7474945 0 +0.974052 0.7474945 0 +1.113885 0.7474945 0 +1.27456 0.7474945 0 +1.458117 0.7474945 0 +1.667858 0.7474945 0 +1.907556 0.7474945 0 +2.181521 0.7474945 0 +2.494678 0.7474945 0 +2.852659 0.7474945 0 +3.261896 0.7474945 0 +3.729748 0.7474945 0 +4.264621 0.7474945 0 +4.876131 0.7474945 0 +5.575266 0.7474945 0 +6.374593 0.7474945 0 +0 0.8539475 0 +0 0.8539475 0 +0 0.8539475 0 +0.002268731 0.8539475 0 +0.07076883 0.8539475 0 +0.1119241 0.8539475 0 +0.1475052 0.8539475 0 +0.1846606 0.8539475 0 +0.2245119 0.8539475 0 +0.2679612 0.8539475 0 +0.3158431 0.8539475 0 +0.3689944 0.8539475 0 +0.4282948 0.8539475 0 +0.494694 0.8539475 0 +0.5692344 0.8539475 0 +0.6530715 0.8539475 0 +0.7474945 0.8539475 0 +0.8539475 0.8539475 0 +0.974052 0.8539475 0 +1.113885 0.8539475 0 +1.27456 0.8539475 0 +1.458117 0.8539475 0 +1.667858 0.8539475 0 +1.907556 0.8539475 0 +2.181521 0.8539475 0 +2.494678 0.8539475 0 +2.852659 0.8539475 0 +3.261896 0.8539475 0 +3.729748 0.8539475 0 +4.264621 0.8539475 0 +4.876131 0.8539475 0 +5.575266 0.8539475 0 +6.374593 0.8539475 0 +0 0.974052 0 +0 0.974052 0 +0 0.974052 0 +0.002268731 0.974052 0 +0.07076883 0.974052 0 +0.1119241 0.974052 0 +0.1475052 0.974052 0 +0.1846606 0.974052 0 +0.2245119 0.974052 0 +0.2679612 0.974052 0 +0.3158431 0.974052 0 +0.3689944 0.974052 0 +0.4282948 0.974052 0 +0.494694 0.974052 0 +0.5692344 0.974052 0 +0.6530715 0.974052 0 +0.7474945 0.974052 0 +0.8539475 0.974052 0 +0.974052 0.974052 0 +1.113885 0.974052 0 +1.27456 0.974052 0 +1.458117 0.974052 0 +1.667858 0.974052 0 +1.907556 0.974052 0 +2.181521 0.974052 0 +2.494678 0.974052 0 +2.852659 0.974052 0 +3.261896 0.974052 0 +3.729748 0.974052 0 +4.264621 0.974052 0 +4.876131 0.974052 0 +5.575266 0.974052 0 +6.374593 0.974052 0 +0 1.113885 0 +0 1.113885 0 +0 1.113885 0 +0.002268731 1.113885 0 +0.07076883 1.113885 0 +0.1119241 1.113885 0 +0.1475052 1.113885 0 +0.1846606 1.113885 0 +0.2245119 1.113885 0 +0.2679612 1.113885 0 +0.3158431 1.113885 0 +0.3689944 1.113885 0 +0.4282948 1.113885 0 +0.494694 1.113885 0 +0.5692344 1.113885 0 +0.6530715 1.113885 0 +0.7474945 1.113885 0 +0.8539475 1.113885 0 +0.974052 1.113885 0 +1.113885 1.113885 0 +1.27456 1.113885 0 +1.458117 1.113885 0 +1.667858 1.113885 0 +1.907556 1.113885 0 +2.181521 1.113885 0 +2.494678 1.113885 0 +2.852659 1.113885 0 +3.261896 1.113885 0 +3.729748 1.113885 0 +4.264621 1.113885 0 +4.876131 1.113885 0 +5.575266 1.113885 0 +6.374593 1.113885 0 +0 1.27456 0 +0 1.27456 0 +0 1.27456 0 +0.002268731 1.27456 0 +0.07076883 1.27456 0 +0.1119241 1.27456 0 +0.1475052 1.27456 0 +0.1846606 1.27456 0 +0.2245119 1.27456 0 +0.2679612 1.27456 0 +0.3158431 1.27456 0 +0.3689944 1.27456 0 +0.4282948 1.27456 0 +0.494694 1.27456 0 +0.5692344 1.27456 0 +0.6530715 1.27456 0 +0.7474945 1.27456 0 +0.8539475 1.27456 0 +0.974052 1.27456 0 +1.113885 1.27456 0 +1.27456 1.27456 0 +1.458117 1.27456 0 +1.667858 1.27456 0 +1.907556 1.27456 0 +2.181521 1.27456 0 +2.494678 1.27456 0 +2.852659 1.27456 0 +3.261896 1.27456 0 +3.729748 1.27456 0 +4.264621 1.27456 0 +4.876131 1.27456 0 +5.575266 1.27456 0 +6.374593 1.27456 0 +0 1.458117 0 +0 1.458117 0 +0 1.458117 0 +0.002268731 1.458117 0 +0.07076883 1.458117 0 +0.1119241 1.458117 0 +0.1475052 1.458117 0 +0.1846606 1.458117 0 +0.2245119 1.458117 0 +0.2679612 1.458117 0 +0.3158431 1.458117 0 +0.3689944 1.458117 0 +0.4282948 1.458117 0 +0.494694 1.458117 0 +0.5692344 1.458117 0 +0.6530715 1.458117 0 +0.7474945 1.458117 0 +0.8539475 1.458117 0 +0.974052 1.458117 0 +1.113885 1.458117 0 +1.27456 1.458117 0 +1.458117 1.458117 0 +1.667858 1.458117 0 +1.907556 1.458117 0 +2.181521 1.458117 0 +2.494678 1.458117 0 +2.852659 1.458117 0 +3.261896 1.458117 0 +3.729748 1.458117 0 +4.264621 1.458117 0 +4.876131 1.458117 0 +5.575266 1.458117 0 +6.374593 1.458117 0 +0 1.667858 0 +0 1.667858 0 +0 1.667858 0 +0.002268731 1.667858 0 +0.07076883 1.667858 0 +0.1119241 1.667858 0 +0.1475052 1.667858 0 +0.1846606 1.667858 0 +0.2245119 1.667858 0 +0.2679612 1.667858 0 +0.3158431 1.667858 0 +0.3689944 1.667858 0 +0.4282948 1.667858 0 +0.494694 1.667858 0 +0.5692344 1.667858 0 +0.6530715 1.667858 0 +0.7474945 1.667858 0 +0.8539475 1.667858 0 +0.974052 1.667858 0 +1.113885 1.667858 0 +1.27456 1.667858 0 +1.458117 1.667858 0 +1.667858 1.667858 0 +1.907556 1.667858 0 +2.181521 1.667858 0 +2.494678 1.667858 0 +2.852659 1.667858 0 +3.261896 1.667858 0 +3.729748 1.667858 0 +4.264621 1.667858 0 +4.876131 1.667858 0 +5.575266 1.667858 0 +6.374593 1.667858 0 +0 1.907556 0 +0 1.907556 0 +0 1.907556 0 +0.002268731 1.907556 0 +0.07076883 1.907556 0 +0.1119241 1.907556 0 +0.1475052 1.907556 0 +0.1846606 1.907556 0 +0.2245119 1.907556 0 +0.2679612 1.907556 0 +0.3158431 1.907556 0 +0.3689944 1.907556 0 +0.4282948 1.907556 0 +0.494694 1.907556 0 +0.5692344 1.907556 0 +0.6530715 1.907556 0 +0.7474945 1.907556 0 +0.8539475 1.907556 0 +0.974052 1.907556 0 +1.113885 1.907556 0 +1.27456 1.907556 0 +1.458117 1.907556 0 +1.667858 1.907556 0 +1.907556 1.907556 0 +2.181521 1.907556 0 +2.494678 1.907556 0 +2.852659 1.907556 0 +3.261896 1.907556 0 +3.729748 1.907556 0 +4.264621 1.907556 0 +4.876131 1.907556 0 +5.575266 1.907556 0 +6.374593 1.907556 0 +0 2.181521 0 +0 2.181521 0 +0 2.181521 0 +0.002268731 2.181521 0 +0.07076883 2.181521 0 +0.1119241 2.181521 0 +0.1475052 2.181521 0 +0.1846606 2.181521 0 +0.2245119 2.181521 0 +0.2679612 2.181521 0 +0.3158431 2.181521 0 +0.3689944 2.181521 0 +0.4282948 2.181521 0 +0.494694 2.181521 0 +0.5692344 2.181521 0 +0.6530715 2.181521 0 +0.7474945 2.181521 0 +0.8539475 2.181521 0 +0.974052 2.181521 0 +1.113885 2.181521 0 +1.27456 2.181521 0 +1.458117 2.181521 0 +1.667858 2.181521 0 +1.907556 2.181521 0 +2.181521 2.181521 0 +2.494678 2.181521 0 +2.852659 2.181521 0 +3.261896 2.181521 0 +3.729748 2.181521 0 +4.264621 2.181521 0 +4.876131 2.181521 0 +5.575266 2.181521 0 +6.374593 2.181521 0 +0 2.494678 0 +0 2.494678 0 +0 2.494678 0 +0.002268731 2.494678 0 +0.07076883 2.494678 0 +0.1119241 2.494678 0 +0.1475052 2.494678 0 +0.1846606 2.494678 0 +0.2245119 2.494678 0 +0.2679612 2.494678 0 +0.3158431 2.494678 0 +0.3689944 2.494678 0 +0.4282948 2.494678 0 +0.494694 2.494678 0 +0.5692344 2.494678 0 +0.6530715 2.494678 0 +0.7474945 2.494678 0 +0.8539475 2.494678 0 +0.974052 2.494678 0 +1.113885 2.494678 0 +1.27456 2.494678 0 +1.458117 2.494678 0 +1.667858 2.494678 0 +1.907556 2.494678 0 +2.181521 2.494678 0 +2.494678 2.494678 0 +2.852659 2.494678 0 +3.261896 2.494678 0 +3.729748 2.494678 0 +4.264621 2.494678 0 +4.876131 2.494678 0 +5.575266 2.494678 0 +6.374593 2.494678 0 +0 2.852659 0 +0 2.852659 0 +0 2.852659 0 +0.002268731 2.852659 0 +0.07076883 2.852659 0 +0.1119241 2.852659 0 +0.1475052 2.852659 0 +0.1846606 2.852659 0 +0.2245119 2.852659 0 +0.2679612 2.852659 0 +0.3158431 2.852659 0 +0.3689944 2.852659 0 +0.4282948 2.852659 0 +0.494694 2.852659 0 +0.5692344 2.852659 0 +0.6530715 2.852659 0 +0.7474945 2.852659 0 +0.8539475 2.852659 0 +0.974052 2.852659 0 +1.113885 2.852659 0 +1.27456 2.852659 0 +1.458117 2.852659 0 +1.667858 2.852659 0 +1.907556 2.852659 0 +2.181521 2.852659 0 +2.494678 2.852659 0 +2.852659 2.852659 0 +3.261896 2.852659 0 +3.729748 2.852659 0 +4.264621 2.852659 0 +4.876131 2.852659 0 +5.575266 2.852659 0 +6.374593 2.852659 0 +0 3.261896 0 +0 3.261896 0 +0 3.261896 0 +0.002268731 3.261896 0 +0.07076883 3.261896 0 +0.1119241 3.261896 0 +0.1475052 3.261896 0 +0.1846606 3.261896 0 +0.2245119 3.261896 0 +0.2679612 3.261896 0 +0.3158431 3.261896 0 +0.3689944 3.261896 0 +0.4282948 3.261896 0 +0.494694 3.261896 0 +0.5692344 3.261896 0 +0.6530715 3.261896 0 +0.7474945 3.261896 0 +0.8539475 3.261896 0 +0.974052 3.261896 0 +1.113885 3.261896 0 +1.27456 3.261896 0 +1.458117 3.261896 0 +1.667858 3.261896 0 +1.907556 3.261896 0 +2.181521 3.261896 0 +2.494678 3.261896 0 +2.852659 3.261896 0 +3.261896 3.261896 0 +3.729748 3.261896 0 +4.264621 3.261896 0 +4.876131 3.261896 0 +5.575266 3.261896 0 +6.374593 3.261896 0 +0 3.729748 0 +0 3.729748 0 +0 3.729748 0 +0.002268731 3.729748 0 +0.07076883 3.729748 0 +0.1119241 3.729748 0 +0.1475052 3.729748 0 +0.1846606 3.729748 0 +0.2245119 3.729748 0 +0.2679612 3.729748 0 +0.3158431 3.729748 0 +0.3689944 3.729748 0 +0.4282948 3.729748 0 +0.494694 3.729748 0 +0.5692344 3.729748 0 +0.6530715 3.729748 0 +0.7474945 3.729748 0 +0.8539475 3.729748 0 +0.974052 3.729748 0 +1.113885 3.729748 0 +1.27456 3.729748 0 +1.458117 3.729748 0 +1.667858 3.729748 0 +1.907556 3.729748 0 +2.181521 3.729748 0 +2.494678 3.729748 0 +2.852659 3.729748 0 +3.261896 3.729748 0 +3.729748 3.729748 0 +4.264621 3.729748 0 +4.876131 3.729748 0 +5.575266 3.729748 0 +6.374593 3.729748 0 +0 4.264621 0 +0 4.264621 0 +0 4.264621 0 +0.002268731 4.264621 0 +0.07076883 4.264621 0 +0.1119241 4.264621 0 +0.1475052 4.264621 0 +0.1846606 4.264621 0 +0.2245119 4.264621 0 +0.2679612 4.264621 0 +0.3158431 4.264621 0 +0.3689944 4.264621 0 +0.4282948 4.264621 0 +0.494694 4.264621 0 +0.5692344 4.264621 0 +0.6530715 4.264621 0 +0.7474945 4.264621 0 +0.8539475 4.264621 0 +0.974052 4.264621 0 +1.113885 4.264621 0 +1.27456 4.264621 0 +1.458117 4.264621 0 +1.667858 4.264621 0 +1.907556 4.264621 0 +2.181521 4.264621 0 +2.494678 4.264621 0 +2.852659 4.264621 0 +3.261896 4.264621 0 +3.729748 4.264621 0 +4.264621 4.264621 0 +4.876131 4.264621 0 +5.575266 4.264621 0 +6.374593 4.264621 0 +0 4.876131 0 +0 4.876131 0 +0 4.876131 0 +0.002268731 4.876131 0 +0.07076883 4.876131 0 +0.1119241 4.876131 0 +0.1475052 4.876131 0 +0.1846606 4.876131 0 +0.2245119 4.876131 0 +0.2679612 4.876131 0 +0.3158431 4.876131 0 +0.3689944 4.876131 0 +0.4282948 4.876131 0 +0.494694 4.876131 0 +0.5692344 4.876131 0 +0.6530715 4.876131 0 +0.7474945 4.876131 0 +0.8539475 4.876131 0 +0.974052 4.876131 0 +1.113885 4.876131 0 +1.27456 4.876131 0 +1.458117 4.876131 0 +1.667858 4.876131 0 +1.907556 4.876131 0 +2.181521 4.876131 0 +2.494678 4.876131 0 +2.852659 4.876131 0 +3.261896 4.876131 0 +3.729748 4.876131 0 +4.264621 4.876131 0 +4.876131 4.876131 0 +5.575266 4.876131 0 +6.374593 4.876131 0 +0 5.575266 0 +0 5.575266 0 +0 5.575266 0 +0.002268731 5.575266 0 +0.07076883 5.575266 0 +0.1119241 5.575266 0 +0.1475052 5.575266 0 +0.1846606 5.575266 0 +0.2245119 5.575266 0 +0.2679612 5.575266 0 +0.3158431 5.575266 0 +0.3689944 5.575266 0 +0.4282948 5.575266 0 +0.494694 5.575266 0 +0.5692344 5.575266 0 +0.6530715 5.575266 0 +0.7474945 5.575266 0 +0.8539475 5.575266 0 +0.974052 5.575266 0 +1.113885 5.575266 0 +1.27456 5.575266 0 +1.458117 5.575266 0 +1.667858 5.575266 0 +1.907556 5.575266 0 +2.181521 5.575266 0 +2.494678 5.575266 0 +2.852659 5.575266 0 +3.261896 5.575266 0 +3.729748 5.575266 0 +4.264621 5.575266 0 +4.876131 5.575266 0 +5.575266 5.575266 0 +6.374593 5.575266 0 +0 6.374593 0 +0 6.374593 0 +0 6.374593 0 +0.002268731 6.374593 0 +0.07076883 6.374593 0 +0.1119241 6.374593 0 +0.1475052 6.374593 0 +0.1846606 6.374593 0 +0.2245119 6.374593 0 +0.2679612 6.374593 0 +0.3158431 6.374593 0 +0.3689944 6.374593 0 +0.4282948 6.374593 0 +0.494694 6.374593 0 +0.5692344 6.374593 0 +0.6530715 6.374593 0 +0.7474945 6.374593 0 +0.8539475 6.374593 0 +0.974052 6.374593 0 +1.113885 6.374593 0 +1.27456 6.374593 0 +1.458117 6.374593 0 +1.667858 6.374593 0 +1.907556 6.374593 0 +2.181521 6.374593 0 +2.494678 6.374593 0 +2.852659 6.374593 0 +3.261896 6.374593 0 +3.729748 6.374593 0 +4.264621 6.374593 0 +4.876131 6.374593 0 +5.575266 6.374593 0 +6.374593 6.374593 0 +0 0 0 +0 0 0 +0 0 0 +0.002268731 0 0 +0.07076883 0 0 +0.1119241 0 0 +0.1475052 0 0 +0.1846606 0 0 +0.2245119 0 0 +0.2679612 0 0 +0.3158431 0 0 +0.3689944 0 0 +0.4282948 0 0 +0.494694 0 0 +0.5692344 0 0 +0.6530715 0 0 +0.7474945 0 0 +0.8539475 0 0 +0.974052 0 0 +1.113885 0 0 +1.27456 0 0 +1.458117 0 0 +1.667858 0 0 +1.907556 0 0 +2.181521 0 0 +2.494678 0 0 +2.852659 0 0 +3.261896 0 0 +3.729748 0 0 +4.264621 0 0 +4.876131 0 0 +5.575266 0 0 +6.374593 0 0 +0 0 0 +0 0 0 +0 0 0 +0.002268731 0 0 +0.07076883 0 0 +0.1119241 0 0 +0.1475052 0 0 +0.1846606 0 0 +0.2245119 0 0 +0.2679612 0 0 +0.3158431 0 0 +0.3689944 0 0 +0.4282948 0 0 +0.494694 0 0 +0.5692344 0 0 +0.6530715 0 0 +0.7474945 0 0 +0.8539475 0 0 +0.974052 0 0 +1.113885 0 0 +1.27456 0 0 +1.458117 0 0 +1.667858 0 0 +1.907556 0 0 +2.181521 0 0 +2.494678 0 0 +2.852659 0 0 +3.261896 0 0 +3.729748 0 0 +4.264621 0 0 +4.876131 0 0 +5.575266 0 0 +6.374593 0 0 +0 0 0 +0 0 0 +0 0 0 +0.002268731 0 0 +0.07076883 0 0 +0.1119241 0 0 +0.1475052 0 0 +0.1846606 0 0 +0.2245119 0 0 +0.2679612 0 0 +0.3158431 0 0 +0.3689944 0 0 +0.4282948 0 0 +0.494694 0 0 +0.5692344 0 0 +0.6530715 0 0 +0.7474945 0 0 +0.8539475 0 0 +0.974052 0 0 +1.113885 0 0 +1.27456 0 0 +1.458117 0 0 +1.667858 0 0 +1.907556 0 0 +2.181521 0 0 +2.494678 0 0 +2.852659 0 0 +3.261896 0 0 +3.729748 0 0 +4.264621 0 0 +4.876131 0 0 +5.575266 0 0 +6.374593 0 0 +0 0.002268731 0 +0 0.002268731 0 +0 0.002268731 0 +0.002268731 0.002268731 0 +0.07076883 0.002268731 0 +0.1119241 0.002268731 0 +0.1475052 0.002268731 0 +0.1846606 0.002268731 0 +0.2245119 0.002268731 0 +0.2679612 0.002268731 0 +0.3158431 0.002268731 0 +0.3689944 0.002268731 0 +0.4282948 0.002268731 0 +0.494694 0.002268731 0 +0.5692344 0.002268731 0 +0.6530715 0.002268731 0 +0.7474945 0.002268731 0 +0.8539475 0.002268731 0 +0.974052 0.002268731 0 +1.113885 0.002268731 0 +1.27456 0.002268731 0 +1.458117 0.002268731 0 +1.667858 0.002268731 0 +1.907556 0.002268731 0 +2.181521 0.002268731 0 +2.494678 0.002268731 0 +2.852659 0.002268731 0 +3.261896 0.002268731 0 +3.729748 0.002268731 0 +4.264621 0.002268731 0 +4.876131 0.002268731 0 +5.575266 0.002268731 0 +6.374593 0.002268731 0 +0 0.07076883 0 +0 0.07076883 0 +0 0.07076883 0 +0.002268731 0.07076883 0 +0.07076883 0.07076883 0 +0.1119241 0.07076883 0 +0.1475052 0.07076883 0 +0.1846606 0.07076883 0 +0.2245119 0.07076883 0 +0.2679612 0.07076883 0 +0.3158431 0.07076883 0 +0.3689944 0.07076883 0 +0.4282948 0.07076883 0 +0.494694 0.07076883 0 +0.5692344 0.07076883 0 +0.6530715 0.07076883 0 +0.7474945 0.07076883 0 +0.8539475 0.07076883 0 +0.974052 0.07076883 0 +1.113885 0.07076883 0 +1.27456 0.07076883 0 +1.458117 0.07076883 0 +1.667858 0.07076883 0 +1.907556 0.07076883 0 +2.181521 0.07076883 0 +2.494678 0.07076883 0 +2.852659 0.07076883 0 +3.261896 0.07076883 0 +3.729748 0.07076883 0 +4.264621 0.07076883 0 +4.876131 0.07076883 0 +5.575266 0.07076883 0 +6.374593 0.07076883 0 +0 0.1119241 0 +0 0.1119241 0 +0 0.1119241 0 +0.002268731 0.1119241 0 +0.07076883 0.1119241 0 +0.1119241 0.1119241 0 +0.1475052 0.1119241 0 +0.1846606 0.1119241 0 +0.2245119 0.1119241 0 +0.2679612 0.1119241 0 +0.3158431 0.1119241 0 +0.3689944 0.1119241 0 +0.4282948 0.1119241 0 +0.494694 0.1119241 0 +0.5692344 0.1119241 0 +0.6530715 0.1119241 0 +0.7474945 0.1119241 0 +0.8539475 0.1119241 0 +0.974052 0.1119241 0 +1.113885 0.1119241 0 +1.27456 0.1119241 0 +1.458117 0.1119241 0 +1.667858 0.1119241 0 +1.907556 0.1119241 0 +2.181521 0.1119241 0 +2.494678 0.1119241 0 +2.852659 0.1119241 0 +3.261896 0.1119241 0 +3.729748 0.1119241 0 +4.264621 0.1119241 0 +4.876131 0.1119241 0 +5.575266 0.1119241 0 +6.374593 0.1119241 0 +0 0.1475052 0 +0 0.1475052 0 +0 0.1475052 0 +0.002268731 0.1475052 0 +0.07076883 0.1475052 0 +0.1119241 0.1475052 0 +0.1475052 0.1475052 0 +0.1846606 0.1475052 0 +0.2245119 0.1475052 0 +0.2679612 0.1475052 0 +0.3158431 0.1475052 0 +0.3689944 0.1475052 0 +0.4282948 0.1475052 0 +0.494694 0.1475052 0 +0.5692344 0.1475052 0 +0.6530715 0.1475052 0 +0.7474945 0.1475052 0 +0.8539475 0.1475052 0 +0.974052 0.1475052 0 +1.113885 0.1475052 0 +1.27456 0.1475052 0 +1.458117 0.1475052 0 +1.667858 0.1475052 0 +1.907556 0.1475052 0 +2.181521 0.1475052 0 +2.494678 0.1475052 0 +2.852659 0.1475052 0 +3.261896 0.1475052 0 +3.729748 0.1475052 0 +4.264621 0.1475052 0 +4.876131 0.1475052 0 +5.575266 0.1475052 0 +6.374593 0.1475052 0 +0 0.1846606 0 +0 0.1846606 0 +0 0.1846606 0 +0.002268731 0.1846606 0 +0.07076883 0.1846606 0 +0.1119241 0.1846606 0 +0.1475052 0.1846606 0 +0.1846606 0.1846606 0 +0.2245119 0.1846606 0 +0.2679612 0.1846606 0 +0.3158431 0.1846606 0 +0.3689944 0.1846606 0 +0.4282948 0.1846606 0 +0.494694 0.1846606 0 +0.5692344 0.1846606 0 +0.6530715 0.1846606 0 +0.7474945 0.1846606 0 +0.8539475 0.1846606 0 +0.974052 0.1846606 0 +1.113885 0.1846606 0 +1.27456 0.1846606 0 +1.458117 0.1846606 0 +1.667858 0.1846606 0 +1.907556 0.1846606 0 +2.181521 0.1846606 0 +2.494678 0.1846606 0 +2.852659 0.1846606 0 +3.261896 0.1846606 0 +3.729748 0.1846606 0 +4.264621 0.1846606 0 +4.876131 0.1846606 0 +5.575266 0.1846606 0 +6.374593 0.1846606 0 +0 0.2245119 0 +0 0.2245119 0 +0 0.2245119 0 +0.002268731 0.2245119 0 +0.07076883 0.2245119 0 +0.1119241 0.2245119 0 +0.1475052 0.2245119 0 +0.1846606 0.2245119 0 +0.2245119 0.2245119 0 +0.2679612 0.2245119 0 +0.3158431 0.2245119 0 +0.3689944 0.2245119 0 +0.4282948 0.2245119 0 +0.494694 0.2245119 0 +0.5692344 0.2245119 0 +0.6530715 0.2245119 0 +0.7474945 0.2245119 0 +0.8539475 0.2245119 0 +0.974052 0.2245119 0 +1.113885 0.2245119 0 +1.27456 0.2245119 0 +1.458117 0.2245119 0 +1.667858 0.2245119 0 +1.907556 0.2245119 0 +2.181521 0.2245119 0 +2.494678 0.2245119 0 +2.852659 0.2245119 0 +3.261896 0.2245119 0 +3.729748 0.2245119 0 +4.264621 0.2245119 0 +4.876131 0.2245119 0 +5.575266 0.2245119 0 +6.374593 0.2245119 0 +0 0.2679612 0 +0 0.2679612 0 +0 0.2679612 0 +0.002268731 0.2679612 0 +0.07076883 0.2679612 0 +0.1119241 0.2679612 0 +0.1475052 0.2679612 0 +0.1846606 0.2679612 0 +0.2245119 0.2679612 0 +0.2679612 0.2679612 0 +0.3158431 0.2679612 0 +0.3689944 0.2679612 0 +0.4282948 0.2679612 0 +0.494694 0.2679612 0 +0.5692344 0.2679612 0 +0.6530715 0.2679612 0 +0.7474945 0.2679612 0 +0.8539475 0.2679612 0 +0.974052 0.2679612 0 +1.113885 0.2679612 0 +1.27456 0.2679612 0 +1.458117 0.2679612 0 +1.667858 0.2679612 0 +1.907556 0.2679612 0 +2.181521 0.2679612 0 +2.494678 0.2679612 0 +2.852659 0.2679612 0 +3.261896 0.2679612 0 +3.729748 0.2679612 0 +4.264621 0.2679612 0 +4.876131 0.2679612 0 +5.575266 0.2679612 0 +6.374593 0.2679612 0 +0 0.3158431 0 +0 0.3158431 0 +0 0.3158431 0 +0.002268731 0.3158431 0 +0.07076883 0.3158431 0 +0.1119241 0.3158431 0 +0.1475052 0.3158431 0 +0.1846606 0.3158431 0 +0.2245119 0.3158431 0 +0.2679612 0.3158431 0 +0.3158431 0.3158431 0 +0.3689944 0.3158431 0 +0.4282948 0.3158431 0 +0.494694 0.3158431 0 +0.5692344 0.3158431 0 +0.6530715 0.3158431 0 +0.7474945 0.3158431 0 +0.8539475 0.3158431 0 +0.974052 0.3158431 0 +1.113885 0.3158431 0 +1.27456 0.3158431 0 +1.458117 0.3158431 0 +1.667858 0.3158431 0 +1.907556 0.3158431 0 +2.181521 0.3158431 0 +2.494678 0.3158431 0 +2.852659 0.3158431 0 +3.261896 0.3158431 0 +3.729748 0.3158431 0 +4.264621 0.3158431 0 +4.876131 0.3158431 0 +5.575266 0.3158431 0 +6.374593 0.3158431 0 +0 0.3689944 0 +0 0.3689944 0 +0 0.3689944 0 +0.002268731 0.3689944 0 +0.07076883 0.3689944 0 +0.1119241 0.3689944 0 +0.1475052 0.3689944 0 +0.1846606 0.3689944 0 +0.2245119 0.3689944 0 +0.2679612 0.3689944 0 +0.3158431 0.3689944 0 +0.3689944 0.3689944 0 +0.4282948 0.3689944 0 +0.494694 0.3689944 0 +0.5692344 0.3689944 0 +0.6530715 0.3689944 0 +0.7474945 0.3689944 0 +0.8539475 0.3689944 0 +0.974052 0.3689944 0 +1.113885 0.3689944 0 +1.27456 0.3689944 0 +1.458117 0.3689944 0 +1.667858 0.3689944 0 +1.907556 0.3689944 0 +2.181521 0.3689944 0 +2.494678 0.3689944 0 +2.852659 0.3689944 0 +3.261896 0.3689944 0 +3.729748 0.3689944 0 +4.264621 0.3689944 0 +4.876131 0.3689944 0 +5.575266 0.3689944 0 +6.374593 0.3689944 0 +0 0.4282948 0 +0 0.4282948 0 +0 0.4282948 0 +0.002268731 0.4282948 0 +0.07076883 0.4282948 0 +0.1119241 0.4282948 0 +0.1475052 0.4282948 0 +0.1846606 0.4282948 0 +0.2245119 0.4282948 0 +0.2679612 0.4282948 0 +0.3158431 0.4282948 0 +0.3689944 0.4282948 0 +0.4282948 0.4282948 0 +0.494694 0.4282948 0 +0.5692344 0.4282948 0 +0.6530715 0.4282948 0 +0.7474945 0.4282948 0 +0.8539475 0.4282948 0 +0.974052 0.4282948 0 +1.113885 0.4282948 0 +1.27456 0.4282948 0 +1.458117 0.4282948 0 +1.667858 0.4282948 0 +1.907556 0.4282948 0 +2.181521 0.4282948 0 +2.494678 0.4282948 0 +2.852659 0.4282948 0 +3.261896 0.4282948 0 +3.729748 0.4282948 0 +4.264621 0.4282948 0 +4.876131 0.4282948 0 +5.575266 0.4282948 0 +6.374593 0.4282948 0 +0 0.494694 0 +0 0.494694 0 +0 0.494694 0 +0.002268731 0.494694 0 +0.07076883 0.494694 0 +0.1119241 0.494694 0 +0.1475052 0.494694 0 +0.1846606 0.494694 0 +0.2245119 0.494694 0 +0.2679612 0.494694 0 +0.3158431 0.494694 0 +0.3689944 0.494694 0 +0.4282948 0.494694 0 +0.494694 0.494694 0 +0.5692344 0.494694 0 +0.6530715 0.494694 0 +0.7474945 0.494694 0 +0.8539475 0.494694 0 +0.974052 0.494694 0 +1.113885 0.494694 0 +1.27456 0.494694 0 +1.458117 0.494694 0 +1.667858 0.494694 0 +1.907556 0.494694 0 +2.181521 0.494694 0 +2.494678 0.494694 0 +2.852659 0.494694 0 +3.261896 0.494694 0 +3.729748 0.494694 0 +4.264621 0.494694 0 +4.876131 0.494694 0 +5.575266 0.494694 0 +6.374593 0.494694 0 +0 0.5692344 0 +0 0.5692344 0 +0 0.5692344 0 +0.002268731 0.5692344 0 +0.07076883 0.5692344 0 +0.1119241 0.5692344 0 +0.1475052 0.5692344 0 +0.1846606 0.5692344 0 +0.2245119 0.5692344 0 +0.2679612 0.5692344 0 +0.3158431 0.5692344 0 +0.3689944 0.5692344 0 +0.4282948 0.5692344 0 +0.494694 0.5692344 0 +0.5692344 0.5692344 0 +0.6530715 0.5692344 0 +0.7474945 0.5692344 0 +0.8539475 0.5692344 0 +0.974052 0.5692344 0 +1.113885 0.5692344 0 +1.27456 0.5692344 0 +1.458117 0.5692344 0 +1.667858 0.5692344 0 +1.907556 0.5692344 0 +2.181521 0.5692344 0 +2.494678 0.5692344 0 +2.852659 0.5692344 0 +3.261896 0.5692344 0 +3.729748 0.5692344 0 +4.264621 0.5692344 0 +4.876131 0.5692344 0 +5.575266 0.5692344 0 +6.374593 0.5692344 0 +0 0.6530715 0 +0 0.6530715 0 +0 0.6530715 0 +0.002268731 0.6530715 0 +0.07076883 0.6530715 0 +0.1119241 0.6530715 0 +0.1475052 0.6530715 0 +0.1846606 0.6530715 0 +0.2245119 0.6530715 0 +0.2679612 0.6530715 0 +0.3158431 0.6530715 0 +0.3689944 0.6530715 0 +0.4282948 0.6530715 0 +0.494694 0.6530715 0 +0.5692344 0.6530715 0 +0.6530715 0.6530715 0 +0.7474945 0.6530715 0 +0.8539475 0.6530715 0 +0.974052 0.6530715 0 +1.113885 0.6530715 0 +1.27456 0.6530715 0 +1.458117 0.6530715 0 +1.667858 0.6530715 0 +1.907556 0.6530715 0 +2.181521 0.6530715 0 +2.494678 0.6530715 0 +2.852659 0.6530715 0 +3.261896 0.6530715 0 +3.729748 0.6530715 0 +4.264621 0.6530715 0 +4.876131 0.6530715 0 +5.575266 0.6530715 0 +6.374593 0.6530715 0 +0 0.7474945 0 +0 0.7474945 0 +0 0.7474945 0 +0.002268731 0.7474945 0 +0.07076883 0.7474945 0 +0.1119241 0.7474945 0 +0.1475052 0.7474945 0 +0.1846606 0.7474945 0 +0.2245119 0.7474945 0 +0.2679612 0.7474945 0 +0.3158431 0.7474945 0 +0.3689944 0.7474945 0 +0.4282948 0.7474945 0 +0.494694 0.7474945 0 +0.5692344 0.7474945 0 +0.6530715 0.7474945 0 +0.7474945 0.7474945 0 +0.8539475 0.7474945 0 +0.974052 0.7474945 0 +1.113885 0.7474945 0 +1.27456 0.7474945 0 +1.458117 0.7474945 0 +1.667858 0.7474945 0 +1.907556 0.7474945 0 +2.181521 0.7474945 0 +2.494678 0.7474945 0 +2.852659 0.7474945 0 +3.261896 0.7474945 0 +3.729748 0.7474945 0 +4.264621 0.7474945 0 +4.876131 0.7474945 0 +5.575266 0.7474945 0 +6.374593 0.7474945 0 +0 0.8539475 0 +0 0.8539475 0 +0 0.8539475 0 +0.002268731 0.8539475 0 +0.07076883 0.8539475 0 +0.1119241 0.8539475 0 +0.1475052 0.8539475 0 +0.1846606 0.8539475 0 +0.2245119 0.8539475 0 +0.2679612 0.8539475 0 +0.3158431 0.8539475 0 +0.3689944 0.8539475 0 +0.4282948 0.8539475 0 +0.494694 0.8539475 0 +0.5692344 0.8539475 0 +0.6530715 0.8539475 0 +0.7474945 0.8539475 0 +0.8539475 0.8539475 0 +0.974052 0.8539475 0 +1.113885 0.8539475 0 +1.27456 0.8539475 0 +1.458117 0.8539475 0 +1.667858 0.8539475 0 +1.907556 0.8539475 0 +2.181521 0.8539475 0 +2.494678 0.8539475 0 +2.852659 0.8539475 0 +3.261896 0.8539475 0 +3.729748 0.8539475 0 +4.264621 0.8539475 0 +4.876131 0.8539475 0 +5.575266 0.8539475 0 +6.374593 0.8539475 0 +0 0.974052 0 +0 0.974052 0 +0 0.974052 0 +0.002268731 0.974052 0 +0.07076883 0.974052 0 +0.1119241 0.974052 0 +0.1475052 0.974052 0 +0.1846606 0.974052 0 +0.2245119 0.974052 0 +0.2679612 0.974052 0 +0.3158431 0.974052 0 +0.3689944 0.974052 0 +0.4282948 0.974052 0 +0.494694 0.974052 0 +0.5692344 0.974052 0 +0.6530715 0.974052 0 +0.7474945 0.974052 0 +0.8539475 0.974052 0 +0.974052 0.974052 0 +1.113885 0.974052 0 +1.27456 0.974052 0 +1.458117 0.974052 0 +1.667858 0.974052 0 +1.907556 0.974052 0 +2.181521 0.974052 0 +2.494678 0.974052 0 +2.852659 0.974052 0 +3.261896 0.974052 0 +3.729748 0.974052 0 +4.264621 0.974052 0 +4.876131 0.974052 0 +5.575266 0.974052 0 +6.374593 0.974052 0 +0 1.113885 0 +0 1.113885 0 +0 1.113885 0 +0.002268731 1.113885 0 +0.07076883 1.113885 0 +0.1119241 1.113885 0 +0.1475052 1.113885 0 +0.1846606 1.113885 0 +0.2245119 1.113885 0 +0.2679612 1.113885 0 +0.3158431 1.113885 0 +0.3689944 1.113885 0 +0.4282948 1.113885 0 +0.494694 1.113885 0 +0.5692344 1.113885 0 +0.6530715 1.113885 0 +0.7474945 1.113885 0 +0.8539475 1.113885 0 +0.974052 1.113885 0 +1.113885 1.113885 0 +1.27456 1.113885 0 +1.458117 1.113885 0 +1.667858 1.113885 0 +1.907556 1.113885 0 +2.181521 1.113885 0 +2.494678 1.113885 0 +2.852659 1.113885 0 +3.261896 1.113885 0 +3.729748 1.113885 0 +4.264621 1.113885 0 +4.876131 1.113885 0 +5.575266 1.113885 0 +6.374593 1.113885 0 +0 1.27456 0 +0 1.27456 0 +0 1.27456 0 +0.002268731 1.27456 0 +0.07076883 1.27456 0 +0.1119241 1.27456 0 +0.1475052 1.27456 0 +0.1846606 1.27456 0 +0.2245119 1.27456 0 +0.2679612 1.27456 0 +0.3158431 1.27456 0 +0.3689944 1.27456 0 +0.4282948 1.27456 0 +0.494694 1.27456 0 +0.5692344 1.27456 0 +0.6530715 1.27456 0 +0.7474945 1.27456 0 +0.8539475 1.27456 0 +0.974052 1.27456 0 +1.113885 1.27456 0 +1.27456 1.27456 0 +1.458117 1.27456 0 +1.667858 1.27456 0 +1.907556 1.27456 0 +2.181521 1.27456 0 +2.494678 1.27456 0 +2.852659 1.27456 0 +3.261896 1.27456 0 +3.729748 1.27456 0 +4.264621 1.27456 0 +4.876131 1.27456 0 +5.575266 1.27456 0 +6.374593 1.27456 0 +0 1.458117 0 +0 1.458117 0 +0 1.458117 0 +0.002268731 1.458117 0 +0.07076883 1.458117 0 +0.1119241 1.458117 0 +0.1475052 1.458117 0 +0.1846606 1.458117 0 +0.2245119 1.458117 0 +0.2679612 1.458117 0 +0.3158431 1.458117 0 +0.3689944 1.458117 0 +0.4282948 1.458117 0 +0.494694 1.458117 0 +0.5692344 1.458117 0 +0.6530715 1.458117 0 +0.7474945 1.458117 0 +0.8539475 1.458117 0 +0.974052 1.458117 0 +1.113885 1.458117 0 +1.27456 1.458117 0 +1.458117 1.458117 0 +1.667858 1.458117 0 +1.907556 1.458117 0 +2.181521 1.458117 0 +2.494678 1.458117 0 +2.852659 1.458117 0 +3.261896 1.458117 0 +3.729748 1.458117 0 +4.264621 1.458117 0 +4.876131 1.458117 0 +5.575266 1.458117 0 +6.374593 1.458117 0 +0 1.667858 0 +0 1.667858 0 +0 1.667858 0 +0.002268731 1.667858 0 +0.07076883 1.667858 0 +0.1119241 1.667858 0 +0.1475052 1.667858 0 +0.1846606 1.667858 0 +0.2245119 1.667858 0 +0.2679612 1.667858 0 +0.3158431 1.667858 0 +0.3689944 1.667858 0 +0.4282948 1.667858 0 +0.494694 1.667858 0 +0.5692344 1.667858 0 +0.6530715 1.667858 0 +0.7474945 1.667858 0 +0.8539475 1.667858 0 +0.974052 1.667858 0 +1.113885 1.667858 0 +1.27456 1.667858 0 +1.458117 1.667858 0 +1.667858 1.667858 0 +1.907556 1.667858 0 +2.181521 1.667858 0 +2.494678 1.667858 0 +2.852659 1.667858 0 +3.261896 1.667858 0 +3.729748 1.667858 0 +4.264621 1.667858 0 +4.876131 1.667858 0 +5.575266 1.667858 0 +6.374593 1.667858 0 +0 1.907556 0 +0 1.907556 0 +0 1.907556 0 +0.002268731 1.907556 0 +0.07076883 1.907556 0 +0.1119241 1.907556 0 +0.1475052 1.907556 0 +0.1846606 1.907556 0 +0.2245119 1.907556 0 +0.2679612 1.907556 0 +0.3158431 1.907556 0 +0.3689944 1.907556 0 +0.4282948 1.907556 0 +0.494694 1.907556 0 +0.5692344 1.907556 0 +0.6530715 1.907556 0 +0.7474945 1.907556 0 +0.8539475 1.907556 0 +0.974052 1.907556 0 +1.113885 1.907556 0 +1.27456 1.907556 0 +1.458117 1.907556 0 +1.667858 1.907556 0 +1.907556 1.907556 0 +2.181521 1.907556 0 +2.494678 1.907556 0 +2.852659 1.907556 0 +3.261896 1.907556 0 +3.729748 1.907556 0 +4.264621 1.907556 0 +4.876131 1.907556 0 +5.575266 1.907556 0 +6.374593 1.907556 0 +0 2.181521 0 +0 2.181521 0 +0 2.181521 0 +0.002268731 2.181521 0 +0.07076883 2.181521 0 +0.1119241 2.181521 0 +0.1475052 2.181521 0 +0.1846606 2.181521 0 +0.2245119 2.181521 0 +0.2679612 2.181521 0 +0.3158431 2.181521 0 +0.3689944 2.181521 0 +0.4282948 2.181521 0 +0.494694 2.181521 0 +0.5692344 2.181521 0 +0.6530715 2.181521 0 +0.7474945 2.181521 0 +0.8539475 2.181521 0 +0.974052 2.181521 0 +1.113885 2.181521 0 +1.27456 2.181521 0 +1.458117 2.181521 0 +1.667858 2.181521 0 +1.907556 2.181521 0 +2.181521 2.181521 0 +2.494678 2.181521 0 +2.852659 2.181521 0 +3.261896 2.181521 0 +3.729748 2.181521 0 +4.264621 2.181521 0 +4.876131 2.181521 0 +5.575266 2.181521 0 +6.374593 2.181521 0 +0 2.494678 0 +0 2.494678 0 +0 2.494678 0 +0.002268731 2.494678 0 +0.07076883 2.494678 0 +0.1119241 2.494678 0 +0.1475052 2.494678 0 +0.1846606 2.494678 0 +0.2245119 2.494678 0 +0.2679612 2.494678 0 +0.3158431 2.494678 0 +0.3689944 2.494678 0 +0.4282948 2.494678 0 +0.494694 2.494678 0 +0.5692344 2.494678 0 +0.6530715 2.494678 0 +0.7474945 2.494678 0 +0.8539475 2.494678 0 +0.974052 2.494678 0 +1.113885 2.494678 0 +1.27456 2.494678 0 +1.458117 2.494678 0 +1.667858 2.494678 0 +1.907556 2.494678 0 +2.181521 2.494678 0 +2.494678 2.494678 0 +2.852659 2.494678 0 +3.261896 2.494678 0 +3.729748 2.494678 0 +4.264621 2.494678 0 +4.876131 2.494678 0 +5.575266 2.494678 0 +6.374593 2.494678 0 +0 2.852659 0 +0 2.852659 0 +0 2.852659 0 +0.002268731 2.852659 0 +0.07076883 2.852659 0 +0.1119241 2.852659 0 +0.1475052 2.852659 0 +0.1846606 2.852659 0 +0.2245119 2.852659 0 +0.2679612 2.852659 0 +0.3158431 2.852659 0 +0.3689944 2.852659 0 +0.4282948 2.852659 0 +0.494694 2.852659 0 +0.5692344 2.852659 0 +0.6530715 2.852659 0 +0.7474945 2.852659 0 +0.8539475 2.852659 0 +0.974052 2.852659 0 +1.113885 2.852659 0 +1.27456 2.852659 0 +1.458117 2.852659 0 +1.667858 2.852659 0 +1.907556 2.852659 0 +2.181521 2.852659 0 +2.494678 2.852659 0 +2.852659 2.852659 0 +3.261896 2.852659 0 +3.729748 2.852659 0 +4.264621 2.852659 0 +4.876131 2.852659 0 +5.575266 2.852659 0 +6.374593 2.852659 0 +0 3.261896 0 +0 3.261896 0 +0 3.261896 0 +0.002268731 3.261896 0 +0.07076883 3.261896 0 +0.1119241 3.261896 0 +0.1475052 3.261896 0 +0.1846606 3.261896 0 +0.2245119 3.261896 0 +0.2679612 3.261896 0 +0.3158431 3.261896 0 +0.3689944 3.261896 0 +0.4282948 3.261896 0 +0.494694 3.261896 0 +0.5692344 3.261896 0 +0.6530715 3.261896 0 +0.7474945 3.261896 0 +0.8539475 3.261896 0 +0.974052 3.261896 0 +1.113885 3.261896 0 +1.27456 3.261896 0 +1.458117 3.261896 0 +1.667858 3.261896 0 +1.907556 3.261896 0 +2.181521 3.261896 0 +2.494678 3.261896 0 +2.852659 3.261896 0 +3.261896 3.261896 0 +3.729748 3.261896 0 +4.264621 3.261896 0 +4.876131 3.261896 0 +5.575266 3.261896 0 +6.374593 3.261896 0 +0 3.729748 0 +0 3.729748 0 +0 3.729748 0 +0.002268731 3.729748 0 +0.07076883 3.729748 0 +0.1119241 3.729748 0 +0.1475052 3.729748 0 +0.1846606 3.729748 0 +0.2245119 3.729748 0 +0.2679612 3.729748 0 +0.3158431 3.729748 0 +0.3689944 3.729748 0 +0.4282948 3.729748 0 +0.494694 3.729748 0 +0.5692344 3.729748 0 +0.6530715 3.729748 0 +0.7474945 3.729748 0 +0.8539475 3.729748 0 +0.974052 3.729748 0 +1.113885 3.729748 0 +1.27456 3.729748 0 +1.458117 3.729748 0 +1.667858 3.729748 0 +1.907556 3.729748 0 +2.181521 3.729748 0 +2.494678 3.729748 0 +2.852659 3.729748 0 +3.261896 3.729748 0 +3.729748 3.729748 0 +4.264621 3.729748 0 +4.876131 3.729748 0 +5.575266 3.729748 0 +6.374593 3.729748 0 +0 4.264621 0 +0 4.264621 0 +0 4.264621 0 +0.002268731 4.264621 0 +0.07076883 4.264621 0 +0.1119241 4.264621 0 +0.1475052 4.264621 0 +0.1846606 4.264621 0 +0.2245119 4.264621 0 +0.2679612 4.264621 0 +0.3158431 4.264621 0 +0.3689944 4.264621 0 +0.4282948 4.264621 0 +0.494694 4.264621 0 +0.5692344 4.264621 0 +0.6530715 4.264621 0 +0.7474945 4.264621 0 +0.8539475 4.264621 0 +0.974052 4.264621 0 +1.113885 4.264621 0 +1.27456 4.264621 0 +1.458117 4.264621 0 +1.667858 4.264621 0 +1.907556 4.264621 0 +2.181521 4.264621 0 +2.494678 4.264621 0 +2.852659 4.264621 0 +3.261896 4.264621 0 +3.729748 4.264621 0 +4.264621 4.264621 0 +4.876131 4.264621 0 +5.575266 4.264621 0 +6.374593 4.264621 0 +0 4.876131 0 +0 4.876131 0 +0 4.876131 0 +0.002268731 4.876131 0 +0.07076883 4.876131 0 +0.1119241 4.876131 0 +0.1475052 4.876131 0 +0.1846606 4.876131 0 +0.2245119 4.876131 0 +0.2679612 4.876131 0 +0.3158431 4.876131 0 +0.3689944 4.876131 0 +0.4282948 4.876131 0 +0.494694 4.876131 0 +0.5692344 4.876131 0 +0.6530715 4.876131 0 +0.7474945 4.876131 0 +0.8539475 4.876131 0 +0.974052 4.876131 0 +1.113885 4.876131 0 +1.27456 4.876131 0 +1.458117 4.876131 0 +1.667858 4.876131 0 +1.907556 4.876131 0 +2.181521 4.876131 0 +2.494678 4.876131 0 +2.852659 4.876131 0 +3.261896 4.876131 0 +3.729748 4.876131 0 +4.264621 4.876131 0 +4.876131 4.876131 0 +5.575266 4.876131 0 +6.374593 4.876131 0 +0 5.575266 0 +0 5.575266 0 +0 5.575266 0 +0.002268731 5.575266 0 +0.07076883 5.575266 0 +0.1119241 5.575266 0 +0.1475052 5.575266 0 +0.1846606 5.575266 0 +0.2245119 5.575266 0 +0.2679612 5.575266 0 +0.3158431 5.575266 0 +0.3689944 5.575266 0 +0.4282948 5.575266 0 +0.494694 5.575266 0 +0.5692344 5.575266 0 +0.6530715 5.575266 0 +0.7474945 5.575266 0 +0.8539475 5.575266 0 +0.974052 5.575266 0 +1.113885 5.575266 0 +1.27456 5.575266 0 +1.458117 5.575266 0 +1.667858 5.575266 0 +1.907556 5.575266 0 +2.181521 5.575266 0 +2.494678 5.575266 0 +2.852659 5.575266 0 +3.261896 5.575266 0 +3.729748 5.575266 0 +4.264621 5.575266 0 +4.876131 5.575266 0 +5.575266 5.575266 0 +6.374593 5.575266 0 +0 6.374593 0 +0 6.374593 0 +0 6.374593 0 +0.002268731 6.374593 0 +0.07076883 6.374593 0 +0.1119241 6.374593 0 +0.1475052 6.374593 0 +0.1846606 6.374593 0 +0.2245119 6.374593 0 +0.2679612 6.374593 0 +0.3158431 6.374593 0 +0.3689944 6.374593 0 +0.4282948 6.374593 0 +0.494694 6.374593 0 +0.5692344 6.374593 0 +0.6530715 6.374593 0 +0.7474945 6.374593 0 +0.8539475 6.374593 0 +0.974052 6.374593 0 +1.113885 6.374593 0 +1.27456 6.374593 0 +1.458117 6.374593 0 +1.667858 6.374593 0 +1.907556 6.374593 0 +2.181521 6.374593 0 +2.494678 6.374593 0 +2.852659 6.374593 0 +3.261896 6.374593 0 +3.729748 6.374593 0 +4.264621 6.374593 0 +4.876131 6.374593 0 +5.575266 6.374593 0 +6.374593 6.374593 0 +0 0 0 +0 0 0 +0 0 0 +0.002268731 0 0 +0.07076883 0 0 +0.1119241 0 0 +0.1475052 0 0 +0.1846606 0 0 +0.2245119 0 0 +0.2679612 0 0 +0.3158431 0 0 +0.3689944 0 0 +0.4282948 0 0 +0.494694 0 0 +0.5692344 0 0 +0.6530715 0 0 +0.7474945 0 0 +0.8539475 0 0 +0.974052 0 0 +1.113885 0 0 +1.27456 0 0 +1.458117 0 0 +1.667858 0 0 +1.907556 0 0 +2.181521 0 0 +2.494678 0 0 +2.852659 0 0 +3.261896 0 0 +3.729748 0 0 +4.264621 0 0 +4.876131 0 0 +5.575266 0 0 +6.374593 0 0 +0 0 0 +0 0 0 +0 0 0 +0.002268731 0 0 +0.07076883 0 0 +0.1119241 0 0 +0.1475052 0 0 +0.1846606 0 0 +0.2245119 0 0 +0.2679612 0 0 +0.3158431 0 0 +0.3689944 0 0 +0.4282948 0 0 +0.494694 0 0 +0.5692344 0 0 +0.6530715 0 0 +0.7474945 0 0 +0.8539475 0 0 +0.974052 0 0 +1.113885 0 0 +1.27456 0 0 +1.458117 0 0 +1.667858 0 0 +1.907556 0 0 +2.181521 0 0 +2.494678 0 0 +2.852659 0 0 +3.261896 0 0 +3.729748 0 0 +4.264621 0 0 +4.876131 0 0 +5.575266 0 0 +6.374593 0 0 +0 0 0 +0 0 0 +0 0 0 +0.002268731 0 0 +0.07076883 0 0 +0.1119241 0 0 +0.1475052 0 0 +0.1846606 0 0 +0.2245119 0 0 +0.2679612 0 0 +0.3158431 0 0 +0.3689944 0 0 +0.4282948 0 0 +0.494694 0 0 +0.5692344 0 0 +0.6530715 0 0 +0.7474945 0 0 +0.8539475 0 0 +0.974052 0 0 +1.113885 0 0 +1.27456 0 0 +1.458117 0 0 +1.667858 0 0 +1.907556 0 0 +2.181521 0 0 +2.494678 0 0 +2.852659 0 0 +3.261896 0 0 +3.729748 0 0 +4.264621 0 0 +4.876131 0 0 +5.575266 0 0 +6.374593 0 0 +0 0.002268731 0 +0 0.002268731 0 +0 0.002268731 0 +0.002268731 0.002268731 0 +0.07076883 0.002268731 0 +0.1119241 0.002268731 0 +0.1475052 0.002268731 0 +0.1846606 0.002268731 0 +0.2245119 0.002268731 0 +0.2679612 0.002268731 0 +0.3158431 0.002268731 0 +0.3689944 0.002268731 0 +0.4282948 0.002268731 0 +0.494694 0.002268731 0 +0.5692344 0.002268731 0 +0.6530715 0.002268731 0 +0.7474945 0.002268731 0 +0.8539475 0.002268731 0 +0.974052 0.002268731 0 +1.113885 0.002268731 0 +1.27456 0.002268731 0 +1.458117 0.002268731 0 +1.667858 0.002268731 0 +1.907556 0.002268731 0 +2.181521 0.002268731 0 +2.494678 0.002268731 0 +2.852659 0.002268731 0 +3.261896 0.002268731 0 +3.729748 0.002268731 0 +4.264621 0.002268731 0 +4.876131 0.002268731 0 +5.575266 0.002268731 0 +6.374593 0.002268731 0 +0 0.07076883 0 +0 0.07076883 0 +0 0.07076883 0 +0.002268731 0.07076883 0 +0.07076883 0.07076883 0 +0.1119241 0.07076883 0 +0.1475052 0.07076883 0 +0.1846606 0.07076883 0 +0.2245119 0.07076883 0 +0.2679612 0.07076883 0 +0.3158431 0.07076883 0 +0.3689944 0.07076883 0 +0.4282948 0.07076883 0 +0.494694 0.07076883 0 +0.5692344 0.07076883 0 +0.6530715 0.07076883 0 +0.7474945 0.07076883 0 +0.8539475 0.07076883 0 +0.974052 0.07076883 0 +1.113885 0.07076883 0 +1.27456 0.07076883 0 +1.458117 0.07076883 0 +1.667858 0.07076883 0 +1.907556 0.07076883 0 +2.181521 0.07076883 0 +2.494678 0.07076883 0 +2.852659 0.07076883 0 +3.261896 0.07076883 0 +3.729748 0.07076883 0 +4.264621 0.07076883 0 +4.876131 0.07076883 0 +5.575266 0.07076883 0 +6.374593 0.07076883 0 +0 0.1119241 0 +0 0.1119241 0 +0 0.1119241 0 +0.002268731 0.1119241 0 +0.07076883 0.1119241 0 +0.1119241 0.1119241 0 +0.1475052 0.1119241 0 +0.1846606 0.1119241 0 +0.2245119 0.1119241 0 +0.2679612 0.1119241 0 +0.3158431 0.1119241 0 +0.3689944 0.1119241 0 +0.4282948 0.1119241 0 +0.494694 0.1119241 0 +0.5692344 0.1119241 0 +0.6530715 0.1119241 0 +0.7474945 0.1119241 0 +0.8539475 0.1119241 0 +0.974052 0.1119241 0 +1.113885 0.1119241 0 +1.27456 0.1119241 0 +1.458117 0.1119241 0 +1.667858 0.1119241 0 +1.907556 0.1119241 0 +2.181521 0.1119241 0 +2.494678 0.1119241 0 +2.852659 0.1119241 0 +3.261896 0.1119241 0 +3.729748 0.1119241 0 +4.264621 0.1119241 0 +4.876131 0.1119241 0 +5.575266 0.1119241 0 +6.374593 0.1119241 0 +0 0.1475052 0 +0 0.1475052 0 +0 0.1475052 0 +0.002268731 0.1475052 0 +0.07076883 0.1475052 0 +0.1119241 0.1475052 0 +0.1475052 0.1475052 0 +0.1846606 0.1475052 0 +0.2245119 0.1475052 0 +0.2679612 0.1475052 0 +0.3158431 0.1475052 0 +0.3689944 0.1475052 0 +0.4282948 0.1475052 0 +0.494694 0.1475052 0 +0.5692344 0.1475052 0 +0.6530715 0.1475052 0 +0.7474945 0.1475052 0 +0.8539475 0.1475052 0 +0.974052 0.1475052 0 +1.113885 0.1475052 0 +1.27456 0.1475052 0 +1.458117 0.1475052 0 +1.667858 0.1475052 0 +1.907556 0.1475052 0 +2.181521 0.1475052 0 +2.494678 0.1475052 0 +2.852659 0.1475052 0 +3.261896 0.1475052 0 +3.729748 0.1475052 0 +4.264621 0.1475052 0 +4.876131 0.1475052 0 +5.575266 0.1475052 0 +6.374593 0.1475052 0 +0 0.1846606 0 +0 0.1846606 0 +0 0.1846606 0 +0.002268731 0.1846606 0 +0.07076883 0.1846606 0 +0.1119241 0.1846606 0 +0.1475052 0.1846606 0 +0.1846606 0.1846606 0 +0.2245119 0.1846606 0 +0.2679612 0.1846606 0 +0.3158431 0.1846606 0 +0.3689944 0.1846606 0 +0.4282948 0.1846606 0 +0.494694 0.1846606 0 +0.5692344 0.1846606 0 +0.6530715 0.1846606 0 +0.7474945 0.1846606 0 +0.8539475 0.1846606 0 +0.974052 0.1846606 0 +1.113885 0.1846606 0 +1.27456 0.1846606 0 +1.458117 0.1846606 0 +1.667858 0.1846606 0 +1.907556 0.1846606 0 +2.181521 0.1846606 0 +2.494678 0.1846606 0 +2.852659 0.1846606 0 +3.261896 0.1846606 0 +3.729748 0.1846606 0 +4.264621 0.1846606 0 +4.876131 0.1846606 0 +5.575266 0.1846606 0 +6.374593 0.1846606 0 +0 0.2245119 0 +0 0.2245119 0 +0 0.2245119 0 +0.002268731 0.2245119 0 +0.07076883 0.2245119 0 +0.1119241 0.2245119 0 +0.1475052 0.2245119 0 +0.1846606 0.2245119 0 +0.2245119 0.2245119 0 +0.2679612 0.2245119 0 +0.3158431 0.2245119 0 +0.3689944 0.2245119 0 +0.4282948 0.2245119 0 +0.494694 0.2245119 0 +0.5692344 0.2245119 0 +0.6530715 0.2245119 0 +0.7474945 0.2245119 0 +0.8539475 0.2245119 0 +0.974052 0.2245119 0 +1.113885 0.2245119 0 +1.27456 0.2245119 0 +1.458117 0.2245119 0 +1.667858 0.2245119 0 +1.907556 0.2245119 0 +2.181521 0.2245119 0 +2.494678 0.2245119 0 +2.852659 0.2245119 0 +3.261896 0.2245119 0 +3.729748 0.2245119 0 +4.264621 0.2245119 0 +4.876131 0.2245119 0 +5.575266 0.2245119 0 +6.374593 0.2245119 0 +0 0.2679612 0 +0 0.2679612 0 +0 0.2679612 0 +0.002268731 0.2679612 0 +0.07076883 0.2679612 0 +0.1119241 0.2679612 0 +0.1475052 0.2679612 0 +0.1846606 0.2679612 0 +0.2245119 0.2679612 0 +0.2679612 0.2679612 0 +0.3158431 0.2679612 0 +0.3689944 0.2679612 0 +0.4282948 0.2679612 0 +0.494694 0.2679612 0 +0.5692344 0.2679612 0 +0.6530715 0.2679612 0 +0.7474945 0.2679612 0 +0.8539475 0.2679612 0 +0.974052 0.2679612 0 +1.113885 0.2679612 0 +1.27456 0.2679612 0 +1.458117 0.2679612 0 +1.667858 0.2679612 0 +1.907556 0.2679612 0 +2.181521 0.2679612 0 +2.494678 0.2679612 0 +2.852659 0.2679612 0 +3.261896 0.2679612 0 +3.729748 0.2679612 0 +4.264621 0.2679612 0 +4.876131 0.2679612 0 +5.575266 0.2679612 0 +6.374593 0.2679612 0 +0 0.3158431 0 +0 0.3158431 0 +0 0.3158431 0 +0.002268731 0.3158431 0 +0.07076883 0.3158431 0 +0.1119241 0.3158431 0 +0.1475052 0.3158431 0 +0.1846606 0.3158431 0 +0.2245119 0.3158431 0 +0.2679612 0.3158431 0 +0.3158431 0.3158431 0 +0.3689944 0.3158431 0 +0.4282948 0.3158431 0 +0.494694 0.3158431 0 +0.5692344 0.3158431 0 +0.6530715 0.3158431 0 +0.7474945 0.3158431 0 +0.8539475 0.3158431 0 +0.974052 0.3158431 0 +1.113885 0.3158431 0 +1.27456 0.3158431 0 +1.458117 0.3158431 0 +1.667858 0.3158431 0 +1.907556 0.3158431 0 +2.181521 0.3158431 0 +2.494678 0.3158431 0 +2.852659 0.3158431 0 +3.261896 0.3158431 0 +3.729748 0.3158431 0 +4.264621 0.3158431 0 +4.876131 0.3158431 0 +5.575266 0.3158431 0 +6.374593 0.3158431 0 +0 0.3689944 0 +0 0.3689944 0 +0 0.3689944 0 +0.002268731 0.3689944 0 +0.07076883 0.3689944 0 +0.1119241 0.3689944 0 +0.1475052 0.3689944 0 +0.1846606 0.3689944 0 +0.2245119 0.3689944 0 +0.2679612 0.3689944 0 +0.3158431 0.3689944 0 +0.3689944 0.3689944 0 +0.4282948 0.3689944 0 +0.494694 0.3689944 0 +0.5692344 0.3689944 0 +0.6530715 0.3689944 0 +0.7474945 0.3689944 0 +0.8539475 0.3689944 0 +0.974052 0.3689944 0 +1.113885 0.3689944 0 +1.27456 0.3689944 0 +1.458117 0.3689944 0 +1.667858 0.3689944 0 +1.907556 0.3689944 0 +2.181521 0.3689944 0 +2.494678 0.3689944 0 +2.852659 0.3689944 0 +3.261896 0.3689944 0 +3.729748 0.3689944 0 +4.264621 0.3689944 0 +4.876131 0.3689944 0 +5.575266 0.3689944 0 +6.374593 0.3689944 0 +0 0.4282948 0 +0 0.4282948 0 +0 0.4282948 0 +0.002268731 0.4282948 0 +0.07076883 0.4282948 0 +0.1119241 0.4282948 0 +0.1475052 0.4282948 0 +0.1846606 0.4282948 0 +0.2245119 0.4282948 0 +0.2679612 0.4282948 0 +0.3158431 0.4282948 0 +0.3689944 0.4282948 0 +0.4282948 0.4282948 0 +0.494694 0.4282948 0 +0.5692344 0.4282948 0 +0.6530715 0.4282948 0 +0.7474945 0.4282948 0 +0.8539475 0.4282948 0 +0.974052 0.4282948 0 +1.113885 0.4282948 0 +1.27456 0.4282948 0 +1.458117 0.4282948 0 +1.667858 0.4282948 0 +1.907556 0.4282948 0 +2.181521 0.4282948 0 +2.494678 0.4282948 0 +2.852659 0.4282948 0 +3.261896 0.4282948 0 +3.729748 0.4282948 0 +4.264621 0.4282948 0 +4.876131 0.4282948 0 +5.575266 0.4282948 0 +6.374593 0.4282948 0 +0 0.494694 0 +0 0.494694 0 +0 0.494694 0 +0.002268731 0.494694 0 +0.07076883 0.494694 0 +0.1119241 0.494694 0 +0.1475052 0.494694 0 +0.1846606 0.494694 0 +0.2245119 0.494694 0 +0.2679612 0.494694 0 +0.3158431 0.494694 0 +0.3689944 0.494694 0 +0.4282948 0.494694 0 +0.494694 0.494694 0 +0.5692344 0.494694 0 +0.6530715 0.494694 0 +0.7474945 0.494694 0 +0.8539475 0.494694 0 +0.974052 0.494694 0 +1.113885 0.494694 0 +1.27456 0.494694 0 +1.458117 0.494694 0 +1.667858 0.494694 0 +1.907556 0.494694 0 +2.181521 0.494694 0 +2.494678 0.494694 0 +2.852659 0.494694 0 +3.261896 0.494694 0 +3.729748 0.494694 0 +4.264621 0.494694 0 +4.876131 0.494694 0 +5.575266 0.494694 0 +6.374593 0.494694 0 +0 0.5692344 0 +0 0.5692344 0 +0 0.5692344 0 +0.002268731 0.5692344 0 +0.07076883 0.5692344 0 +0.1119241 0.5692344 0 +0.1475052 0.5692344 0 +0.1846606 0.5692344 0 +0.2245119 0.5692344 0 +0.2679612 0.5692344 0 +0.3158431 0.5692344 0 +0.3689944 0.5692344 0 +0.4282948 0.5692344 0 +0.494694 0.5692344 0 +0.5692344 0.5692344 0 +0.6530715 0.5692344 0 +0.7474945 0.5692344 0 +0.8539475 0.5692344 0 +0.974052 0.5692344 0 +1.113885 0.5692344 0 +1.27456 0.5692344 0 +1.458117 0.5692344 0 +1.667858 0.5692344 0 +1.907556 0.5692344 0 +2.181521 0.5692344 0 +2.494678 0.5692344 0 +2.852659 0.5692344 0 +3.261896 0.5692344 0 +3.729748 0.5692344 0 +4.264621 0.5692344 0 +4.876131 0.5692344 0 +5.575266 0.5692344 0 +6.374593 0.5692344 0 +0 0.6530715 0 +0 0.6530715 0 +0 0.6530715 0 +0.002268731 0.6530715 0 +0.07076883 0.6530715 0 +0.1119241 0.6530715 0 +0.1475052 0.6530715 0 +0.1846606 0.6530715 0 +0.2245119 0.6530715 0 +0.2679612 0.6530715 0 +0.3158431 0.6530715 0 +0.3689944 0.6530715 0 +0.4282948 0.6530715 0 +0.494694 0.6530715 0 +0.5692344 0.6530715 0 +0.6530715 0.6530715 0 +0.7474945 0.6530715 0 +0.8539475 0.6530715 0 +0.974052 0.6530715 0 +1.113885 0.6530715 0 +1.27456 0.6530715 0 +1.458117 0.6530715 0 +1.667858 0.6530715 0 +1.907556 0.6530715 0 +2.181521 0.6530715 0 +2.494678 0.6530715 0 +2.852659 0.6530715 0 +3.261896 0.6530715 0 +3.729748 0.6530715 0 +4.264621 0.6530715 0 +4.876131 0.6530715 0 +5.575266 0.6530715 0 +6.374593 0.6530715 0 +0 0.7474945 0 +0 0.7474945 0 +0 0.7474945 0 +0.002268731 0.7474945 0 +0.07076883 0.7474945 0 +0.1119241 0.7474945 0 +0.1475052 0.7474945 0 +0.1846606 0.7474945 0 +0.2245119 0.7474945 0 +0.2679612 0.7474945 0 +0.3158431 0.7474945 0 +0.3689944 0.7474945 0 +0.4282948 0.7474945 0 +0.494694 0.7474945 0 +0.5692344 0.7474945 0 +0.6530715 0.7474945 0 +0.7474945 0.7474945 0 +0.8539475 0.7474945 0 +0.974052 0.7474945 0 +1.113885 0.7474945 0 +1.27456 0.7474945 0 +1.458117 0.7474945 0 +1.667858 0.7474945 0 +1.907556 0.7474945 0 +2.181521 0.7474945 0 +2.494678 0.7474945 0 +2.852659 0.7474945 0 +3.261896 0.7474945 0 +3.729748 0.7474945 0 +4.264621 0.7474945 0 +4.876131 0.7474945 0 +5.575266 0.7474945 0 +6.374593 0.7474945 0 +0 0.8539475 0 +0 0.8539475 0 +0 0.8539475 0 +0.002268731 0.8539475 0 +0.07076883 0.8539475 0 +0.1119241 0.8539475 0 +0.1475052 0.8539475 0 +0.1846606 0.8539475 0 +0.2245119 0.8539475 0 +0.2679612 0.8539475 0 +0.3158431 0.8539475 0 +0.3689944 0.8539475 0 +0.4282948 0.8539475 0 +0.494694 0.8539475 0 +0.5692344 0.8539475 0 +0.6530715 0.8539475 0 +0.7474945 0.8539475 0 +0.8539475 0.8539475 0 +0.974052 0.8539475 0 +1.113885 0.8539475 0 +1.27456 0.8539475 0 +1.458117 0.8539475 0 +1.667858 0.8539475 0 +1.907556 0.8539475 0 +2.181521 0.8539475 0 +2.494678 0.8539475 0 +2.852659 0.8539475 0 +3.261896 0.8539475 0 +3.729748 0.8539475 0 +4.264621 0.8539475 0 +4.876131 0.8539475 0 +5.575266 0.8539475 0 +6.374593 0.8539475 0 +0 0.974052 0 +0 0.974052 0 +0 0.974052 0 +0.002268731 0.974052 0 +0.07076883 0.974052 0 +0.1119241 0.974052 0 +0.1475052 0.974052 0 +0.1846606 0.974052 0 +0.2245119 0.974052 0 +0.2679612 0.974052 0 +0.3158431 0.974052 0 +0.3689944 0.974052 0 +0.4282948 0.974052 0 +0.494694 0.974052 0 +0.5692344 0.974052 0 +0.6530715 0.974052 0 +0.7474945 0.974052 0 +0.8539475 0.974052 0 +0.974052 0.974052 0 +1.113885 0.974052 0 +1.27456 0.974052 0 +1.458117 0.974052 0 +1.667858 0.974052 0 +1.907556 0.974052 0 +2.181521 0.974052 0 +2.494678 0.974052 0 +2.852659 0.974052 0 +3.261896 0.974052 0 +3.729748 0.974052 0 +4.264621 0.974052 0 +4.876131 0.974052 0 +5.575266 0.974052 0 +6.374593 0.974052 0 +0 1.113885 0 +0 1.113885 0 +0 1.113885 0 +0.002268731 1.113885 0 +0.07076883 1.113885 0 +0.1119241 1.113885 0 +0.1475052 1.113885 0 +0.1846606 1.113885 0 +0.2245119 1.113885 0 +0.2679612 1.113885 0 +0.3158431 1.113885 0 +0.3689944 1.113885 0 +0.4282948 1.113885 0 +0.494694 1.113885 0 +0.5692344 1.113885 0 +0.6530715 1.113885 0 +0.7474945 1.113885 0 +0.8539475 1.113885 0 +0.974052 1.113885 0 +1.113885 1.113885 0 +1.27456 1.113885 0 +1.458117 1.113885 0 +1.667858 1.113885 0 +1.907556 1.113885 0 +2.181521 1.113885 0 +2.494678 1.113885 0 +2.852659 1.113885 0 +3.261896 1.113885 0 +3.729748 1.113885 0 +4.264621 1.113885 0 +4.876131 1.113885 0 +5.575266 1.113885 0 +6.374593 1.113885 0 +0 1.27456 0 +0 1.27456 0 +0 1.27456 0 +0.002268731 1.27456 0 +0.07076883 1.27456 0 +0.1119241 1.27456 0 +0.1475052 1.27456 0 +0.1846606 1.27456 0 +0.2245119 1.27456 0 +0.2679612 1.27456 0 +0.3158431 1.27456 0 +0.3689944 1.27456 0 +0.4282948 1.27456 0 +0.494694 1.27456 0 +0.5692344 1.27456 0 +0.6530715 1.27456 0 +0.7474945 1.27456 0 +0.8539475 1.27456 0 +0.974052 1.27456 0 +1.113885 1.27456 0 +1.27456 1.27456 0 +1.458117 1.27456 0 +1.667858 1.27456 0 +1.907556 1.27456 0 +2.181521 1.27456 0 +2.494678 1.27456 0 +2.852659 1.27456 0 +3.261896 1.27456 0 +3.729748 1.27456 0 +4.264621 1.27456 0 +4.876131 1.27456 0 +5.575266 1.27456 0 +6.374593 1.27456 0 +0 1.458117 0 +0 1.458117 0 +0 1.458117 0 +0.002268731 1.458117 0 +0.07076883 1.458117 0 +0.1119241 1.458117 0 +0.1475052 1.458117 0 +0.1846606 1.458117 0 +0.2245119 1.458117 0 +0.2679612 1.458117 0 +0.3158431 1.458117 0 +0.3689944 1.458117 0 +0.4282948 1.458117 0 +0.494694 1.458117 0 +0.5692344 1.458117 0 +0.6530715 1.458117 0 +0.7474945 1.458117 0 +0.8539475 1.458117 0 +0.974052 1.458117 0 +1.113885 1.458117 0 +1.27456 1.458117 0 +1.458117 1.458117 0 +1.667858 1.458117 0 +1.907556 1.458117 0 +2.181521 1.458117 0 +2.494678 1.458117 0 +2.852659 1.458117 0 +3.261896 1.458117 0 +3.729748 1.458117 0 +4.264621 1.458117 0 +4.876131 1.458117 0 +5.575266 1.458117 0 +6.374593 1.458117 0 +0 1.667858 0 +0 1.667858 0 +0 1.667858 0 +0.002268731 1.667858 0 +0.07076883 1.667858 0 +0.1119241 1.667858 0 +0.1475052 1.667858 0 +0.1846606 1.667858 0 +0.2245119 1.667858 0 +0.2679612 1.667858 0 +0.3158431 1.667858 0 +0.3689944 1.667858 0 +0.4282948 1.667858 0 +0.494694 1.667858 0 +0.5692344 1.667858 0 +0.6530715 1.667858 0 +0.7474945 1.667858 0 +0.8539475 1.667858 0 +0.974052 1.667858 0 +1.113885 1.667858 0 +1.27456 1.667858 0 +1.458117 1.667858 0 +1.667858 1.667858 0 +1.907556 1.667858 0 +2.181521 1.667858 0 +2.494678 1.667858 0 +2.852659 1.667858 0 +3.261896 1.667858 0 +3.729748 1.667858 0 +4.264621 1.667858 0 +4.876131 1.667858 0 +5.575266 1.667858 0 +6.374593 1.667858 0 +0 1.907556 0 +0 1.907556 0 +0 1.907556 0 +0.002268731 1.907556 0 +0.07076883 1.907556 0 +0.1119241 1.907556 0 +0.1475052 1.907556 0 +0.1846606 1.907556 0 +0.2245119 1.907556 0 +0.2679612 1.907556 0 +0.3158431 1.907556 0 +0.3689944 1.907556 0 +0.4282948 1.907556 0 +0.494694 1.907556 0 +0.5692344 1.907556 0 +0.6530715 1.907556 0 +0.7474945 1.907556 0 +0.8539475 1.907556 0 +0.974052 1.907556 0 +1.113885 1.907556 0 +1.27456 1.907556 0 +1.458117 1.907556 0 +1.667858 1.907556 0 +1.907556 1.907556 0 +2.181521 1.907556 0 +2.494678 1.907556 0 +2.852659 1.907556 0 +3.261896 1.907556 0 +3.729748 1.907556 0 +4.264621 1.907556 0 +4.876131 1.907556 0 +5.575266 1.907556 0 +6.374593 1.907556 0 +0 2.181521 0 +0 2.181521 0 +0 2.181521 0 +0.002268731 2.181521 0 +0.07076883 2.181521 0 +0.1119241 2.181521 0 +0.1475052 2.181521 0 +0.1846606 2.181521 0 +0.2245119 2.181521 0 +0.2679612 2.181521 0 +0.3158431 2.181521 0 +0.3689944 2.181521 0 +0.4282948 2.181521 0 +0.494694 2.181521 0 +0.5692344 2.181521 0 +0.6530715 2.181521 0 +0.7474945 2.181521 0 +0.8539475 2.181521 0 +0.974052 2.181521 0 +1.113885 2.181521 0 +1.27456 2.181521 0 +1.458117 2.181521 0 +1.667858 2.181521 0 +1.907556 2.181521 0 +2.181521 2.181521 0 +2.494678 2.181521 0 +2.852659 2.181521 0 +3.261896 2.181521 0 +3.729748 2.181521 0 +4.264621 2.181521 0 +4.876131 2.181521 0 +5.575266 2.181521 0 +6.374593 2.181521 0 +0 2.494678 0 +0 2.494678 0 +0 2.494678 0 +0.002268731 2.494678 0 +0.07076883 2.494678 0 +0.1119241 2.494678 0 +0.1475052 2.494678 0 +0.1846606 2.494678 0 +0.2245119 2.494678 0 +0.2679612 2.494678 0 +0.3158431 2.494678 0 +0.3689944 2.494678 0 +0.4282948 2.494678 0 +0.494694 2.494678 0 +0.5692344 2.494678 0 +0.6530715 2.494678 0 +0.7474945 2.494678 0 +0.8539475 2.494678 0 +0.974052 2.494678 0 +1.113885 2.494678 0 +1.27456 2.494678 0 +1.458117 2.494678 0 +1.667858 2.494678 0 +1.907556 2.494678 0 +2.181521 2.494678 0 +2.494678 2.494678 0 +2.852659 2.494678 0 +3.261896 2.494678 0 +3.729748 2.494678 0 +4.264621 2.494678 0 +4.876131 2.494678 0 +5.575266 2.494678 0 +6.374593 2.494678 0 +0 2.852659 0 +0 2.852659 0 +0 2.852659 0 +0.002268731 2.852659 0 +0.07076883 2.852659 0 +0.1119241 2.852659 0 +0.1475052 2.852659 0 +0.1846606 2.852659 0 +0.2245119 2.852659 0 +0.2679612 2.852659 0 +0.3158431 2.852659 0 +0.3689944 2.852659 0 +0.4282948 2.852659 0 +0.494694 2.852659 0 +0.5692344 2.852659 0 +0.6530715 2.852659 0 +0.7474945 2.852659 0 +0.8539475 2.852659 0 +0.974052 2.852659 0 +1.113885 2.852659 0 +1.27456 2.852659 0 +1.458117 2.852659 0 +1.667858 2.852659 0 +1.907556 2.852659 0 +2.181521 2.852659 0 +2.494678 2.852659 0 +2.852659 2.852659 0 +3.261896 2.852659 0 +3.729748 2.852659 0 +4.264621 2.852659 0 +4.876131 2.852659 0 +5.575266 2.852659 0 +6.374593 2.852659 0 +0 3.261896 0 +0 3.261896 0 +0 3.261896 0 +0.002268731 3.261896 0 +0.07076883 3.261896 0 +0.1119241 3.261896 0 +0.1475052 3.261896 0 +0.1846606 3.261896 0 +0.2245119 3.261896 0 +0.2679612 3.261896 0 +0.3158431 3.261896 0 +0.3689944 3.261896 0 +0.4282948 3.261896 0 +0.494694 3.261896 0 +0.5692344 3.261896 0 +0.6530715 3.261896 0 +0.7474945 3.261896 0 +0.8539475 3.261896 0 +0.974052 3.261896 0 +1.113885 3.261896 0 +1.27456 3.261896 0 +1.458117 3.261896 0 +1.667858 3.261896 0 +1.907556 3.261896 0 +2.181521 3.261896 0 +2.494678 3.261896 0 +2.852659 3.261896 0 +3.261896 3.261896 0 +3.729748 3.261896 0 +4.264621 3.261896 0 +4.876131 3.261896 0 +5.575266 3.261896 0 +6.374593 3.261896 0 +0 3.729748 0 +0 3.729748 0 +0 3.729748 0 +0.002268731 3.729748 0 +0.07076883 3.729748 0 +0.1119241 3.729748 0 +0.1475052 3.729748 0 +0.1846606 3.729748 0 +0.2245119 3.729748 0 +0.2679612 3.729748 0 +0.3158431 3.729748 0 +0.3689944 3.729748 0 +0.4282948 3.729748 0 +0.494694 3.729748 0 +0.5692344 3.729748 0 +0.6530715 3.729748 0 +0.7474945 3.729748 0 +0.8539475 3.729748 0 +0.974052 3.729748 0 +1.113885 3.729748 0 +1.27456 3.729748 0 +1.458117 3.729748 0 +1.667858 3.729748 0 +1.907556 3.729748 0 +2.181521 3.729748 0 +2.494678 3.729748 0 +2.852659 3.729748 0 +3.261896 3.729748 0 +3.729748 3.729748 0 +4.264621 3.729748 0 +4.876131 3.729748 0 +5.575266 3.729748 0 +6.374593 3.729748 0 +0 4.264621 0 +0 4.264621 0 +0 4.264621 0 +0.002268731 4.264621 0 +0.07076883 4.264621 0 +0.1119241 4.264621 0 +0.1475052 4.264621 0 +0.1846606 4.264621 0 +0.2245119 4.264621 0 +0.2679612 4.264621 0 +0.3158431 4.264621 0 +0.3689944 4.264621 0 +0.4282948 4.264621 0 +0.494694 4.264621 0 +0.5692344 4.264621 0 +0.6530715 4.264621 0 +0.7474945 4.264621 0 +0.8539475 4.264621 0 +0.974052 4.264621 0 +1.113885 4.264621 0 +1.27456 4.264621 0 +1.458117 4.264621 0 +1.667858 4.264621 0 +1.907556 4.264621 0 +2.181521 4.264621 0 +2.494678 4.264621 0 +2.852659 4.264621 0 +3.261896 4.264621 0 +3.729748 4.264621 0 +4.264621 4.264621 0 +4.876131 4.264621 0 +5.575266 4.264621 0 +6.374593 4.264621 0 +0 4.876131 0 +0 4.876131 0 +0 4.876131 0 +0.002268731 4.876131 0 +0.07076883 4.876131 0 +0.1119241 4.876131 0 +0.1475052 4.876131 0 +0.1846606 4.876131 0 +0.2245119 4.876131 0 +0.2679612 4.876131 0 +0.3158431 4.876131 0 +0.3689944 4.876131 0 +0.4282948 4.876131 0 +0.494694 4.876131 0 +0.5692344 4.876131 0 +0.6530715 4.876131 0 +0.7474945 4.876131 0 +0.8539475 4.876131 0 +0.974052 4.876131 0 +1.113885 4.876131 0 +1.27456 4.876131 0 +1.458117 4.876131 0 +1.667858 4.876131 0 +1.907556 4.876131 0 +2.181521 4.876131 0 +2.494678 4.876131 0 +2.852659 4.876131 0 +3.261896 4.876131 0 +3.729748 4.876131 0 +4.264621 4.876131 0 +4.876131 4.876131 0 +5.575266 4.876131 0 +6.374593 4.876131 0 +0 5.575266 0 +0 5.575266 0 +0 5.575266 0 +0.002268731 5.575266 0 +0.07076883 5.575266 0 +0.1119241 5.575266 0 +0.1475052 5.575266 0 +0.1846606 5.575266 0 +0.2245119 5.575266 0 +0.2679612 5.575266 0 +0.3158431 5.575266 0 +0.3689944 5.575266 0 +0.4282948 5.575266 0 +0.494694 5.575266 0 +0.5692344 5.575266 0 +0.6530715 5.575266 0 +0.7474945 5.575266 0 +0.8539475 5.575266 0 +0.974052 5.575266 0 +1.113885 5.575266 0 +1.27456 5.575266 0 +1.458117 5.575266 0 +1.667858 5.575266 0 +1.907556 5.575266 0 +2.181521 5.575266 0 +2.494678 5.575266 0 +2.852659 5.575266 0 +3.261896 5.575266 0 +3.729748 5.575266 0 +4.264621 5.575266 0 +4.876131 5.575266 0 +5.575266 5.575266 0 +6.374593 5.575266 0 +0 6.374593 0 +0 6.374593 0 +0 6.374593 0 +0.002268731 6.374593 0 +0.07076883 6.374593 0 +0.1119241 6.374593 0 +0.1475052 6.374593 0 +0.1846606 6.374593 0 +0.2245119 6.374593 0 +0.2679612 6.374593 0 +0.3158431 6.374593 0 +0.3689944 6.374593 0 +0.4282948 6.374593 0 +0.494694 6.374593 0 +0.5692344 6.374593 0 +0.6530715 6.374593 0 +0.7474945 6.374593 0 +0.8539475 6.374593 0 +0.974052 6.374593 0 +1.113885 6.374593 0 +1.27456 6.374593 0 +1.458117 6.374593 0 +1.667858 6.374593 0 +1.907556 6.374593 0 +2.181521 6.374593 0 +2.494678 6.374593 0 +2.852659 6.374593 0 +3.261896 6.374593 0 +3.729748 6.374593 0 +4.264621 6.374593 0 +4.876131 6.374593 0 +5.575266 6.374593 0 +6.374593 6.374593 0 +0 0 0.002268731 +0 0 0.002268731 +0 0 0.002268731 +0.002268731 0 0.002268731 +0.07076883 0 0.002268731 +0.1119241 0 0.002268731 +0.1475052 0 0.002268731 +0.1846606 0 0.002268731 +0.2245119 0 0.002268731 +0.2679612 0 0.002268731 +0.3158431 0 0.002268731 +0.3689944 0 0.002268731 +0.4282948 0 0.002268731 +0.494694 0 0.002268731 +0.5692344 0 0.002268731 +0.6530715 0 0.002268731 +0.7474945 0 0.002268731 +0.8539475 0 0.002268731 +0.974052 0 0.002268731 +1.113885 0 0.002268731 +1.27456 0 0.002268731 +1.458117 0 0.002268731 +1.667858 0 0.002268731 +1.907556 0 0.002268731 +2.181521 0 0.002268731 +2.494678 0 0.002268731 +2.852659 0 0.002268731 +3.261896 0 0.002268731 +3.729748 0 0.002268731 +4.264621 0 0.002268731 +4.876131 0 0.002268731 +5.575266 0 0.002268731 +6.374593 0 0.002268731 +0 0 0.002268731 +0 0 0.002268731 +0 0 0.002268731 +0.002268731 0 0.002268731 +0.07076883 0 0.002268731 +0.1119241 0 0.002268731 +0.1475052 0 0.002268731 +0.1846606 0 0.002268731 +0.2245119 0 0.002268731 +0.2679612 0 0.002268731 +0.3158431 0 0.002268731 +0.3689944 0 0.002268731 +0.4282948 0 0.002268731 +0.494694 0 0.002268731 +0.5692344 0 0.002268731 +0.6530715 0 0.002268731 +0.7474945 0 0.002268731 +0.8539475 0 0.002268731 +0.974052 0 0.002268731 +1.113885 0 0.002268731 +1.27456 0 0.002268731 +1.458117 0 0.002268731 +1.667858 0 0.002268731 +1.907556 0 0.002268731 +2.181521 0 0.002268731 +2.494678 0 0.002268731 +2.852659 0 0.002268731 +3.261896 0 0.002268731 +3.729748 0 0.002268731 +4.264621 0 0.002268731 +4.876131 0 0.002268731 +5.575266 0 0.002268731 +6.374593 0 0.002268731 +0 0 0.002268731 +0 0 0.002268731 +0 0 0.002268731 +0.002268731 0 0.002268731 +0.07076883 0 0.002268731 +0.1119241 0 0.002268731 +0.1475052 0 0.002268731 +0.1846606 0 0.002268731 +0.2245119 0 0.002268731 +0.2679612 0 0.002268731 +0.3158431 0 0.002268731 +0.3689944 0 0.002268731 +0.4282948 0 0.002268731 +0.494694 0 0.002268731 +0.5692344 0 0.002268731 +0.6530715 0 0.002268731 +0.7474945 0 0.002268731 +0.8539475 0 0.002268731 +0.974052 0 0.002268731 +1.113885 0 0.002268731 +1.27456 0 0.002268731 +1.458117 0 0.002268731 +1.667858 0 0.002268731 +1.907556 0 0.002268731 +2.181521 0 0.002268731 +2.494678 0 0.002268731 +2.852659 0 0.002268731 +3.261896 0 0.002268731 +3.729748 0 0.002268731 +4.264621 0 0.002268731 +4.876131 0 0.002268731 +5.575266 0 0.002268731 +6.374593 0 0.002268731 +0 0.002268731 0.002268731 +0 0.002268731 0.002268731 +0 0.002268731 0.002268731 +0.002268731 0.002268731 0.002268731 +0.07076883 0.002268731 0.002268731 +0.1119241 0.002268731 0.002268731 +0.1475052 0.002268731 0.002268731 +0.1846606 0.002268731 0.002268731 +0.2245119 0.002268731 0.002268731 +0.2679612 0.002268731 0.002268731 +0.3158431 0.002268731 0.002268731 +0.3689944 0.002268731 0.002268731 +0.4282948 0.002268731 0.002268731 +0.494694 0.002268731 0.002268731 +0.5692344 0.002268731 0.002268731 +0.6530715 0.002268731 0.002268731 +0.7474945 0.002268731 0.002268731 +0.8539475 0.002268731 0.002268731 +0.974052 0.002268731 0.002268731 +1.113885 0.002268731 0.002268731 +1.27456 0.002268731 0.002268731 +1.458117 0.002268731 0.002268731 +1.667858 0.002268731 0.002268731 +1.907556 0.002268731 0.002268731 +2.181521 0.002268731 0.002268731 +2.494678 0.002268731 0.002268731 +2.852659 0.002268731 0.002268731 +3.261896 0.002268731 0.002268731 +3.729748 0.002268731 0.002268731 +4.264621 0.002268731 0.002268731 +4.876131 0.002268731 0.002268731 +5.575266 0.002268731 0.002268731 +6.374593 0.002268731 0.002268731 +0 0.07076883 0.002268731 +0 0.07076883 0.002268731 +0 0.07076883 0.002268731 +0.002268731 0.07076883 0.002268731 +0.07076883 0.07076883 0.002268731 +0.1119241 0.07076883 0.002268731 +0.1475052 0.07076883 0.002268731 +0.1846606 0.07076883 0.002268731 +0.2245119 0.07076883 0.002268731 +0.2679612 0.07076883 0.002268731 +0.3158431 0.07076883 0.002268731 +0.3689944 0.07076883 0.002268731 +0.4282948 0.07076883 0.002268731 +0.494694 0.07076883 0.002268731 +0.5692344 0.07076883 0.002268731 +0.6530715 0.07076883 0.002268731 +0.7474945 0.07076883 0.002268731 +0.8539475 0.07076883 0.002268731 +0.974052 0.07076883 0.002268731 +1.113885 0.07076883 0.002268731 +1.27456 0.07076883 0.002268731 +1.458117 0.07076883 0.002268731 +1.667858 0.07076883 0.002268731 +1.907556 0.07076883 0.002268731 +2.181521 0.07076883 0.002268731 +2.494678 0.07076883 0.002268731 +2.852659 0.07076883 0.002268731 +3.261896 0.07076883 0.002268731 +3.729748 0.07076883 0.002268731 +4.264621 0.07076883 0.002268731 +4.876131 0.07076883 0.002268731 +5.575266 0.07076883 0.002268731 +6.374593 0.07076883 0.002268731 +0 0.1119241 0.002268731 +0 0.1119241 0.002268731 +0 0.1119241 0.002268731 +0.002268731 0.1119241 0.002268731 +0.07076883 0.1119241 0.002268731 +0.1119241 0.1119241 0.002268731 +0.1475052 0.1119241 0.002268731 +0.1846606 0.1119241 0.002268731 +0.2245119 0.1119241 0.002268731 +0.2679612 0.1119241 0.002268731 +0.3158431 0.1119241 0.002268731 +0.3689944 0.1119241 0.002268731 +0.4282948 0.1119241 0.002268731 +0.494694 0.1119241 0.002268731 +0.5692344 0.1119241 0.002268731 +0.6530715 0.1119241 0.002268731 +0.7474945 0.1119241 0.002268731 +0.8539475 0.1119241 0.002268731 +0.974052 0.1119241 0.002268731 +1.113885 0.1119241 0.002268731 +1.27456 0.1119241 0.002268731 +1.458117 0.1119241 0.002268731 +1.667858 0.1119241 0.002268731 +1.907556 0.1119241 0.002268731 +2.181521 0.1119241 0.002268731 +2.494678 0.1119241 0.002268731 +2.852659 0.1119241 0.002268731 +3.261896 0.1119241 0.002268731 +3.729748 0.1119241 0.002268731 +4.264621 0.1119241 0.002268731 +4.876131 0.1119241 0.002268731 +5.575266 0.1119241 0.002268731 +6.374593 0.1119241 0.002268731 +0 0.1475052 0.002268731 +0 0.1475052 0.002268731 +0 0.1475052 0.002268731 +0.002268731 0.1475052 0.002268731 +0.07076883 0.1475052 0.002268731 +0.1119241 0.1475052 0.002268731 +0.1475052 0.1475052 0.002268731 +0.1846606 0.1475052 0.002268731 +0.2245119 0.1475052 0.002268731 +0.2679612 0.1475052 0.002268731 +0.3158431 0.1475052 0.002268731 +0.3689944 0.1475052 0.002268731 +0.4282948 0.1475052 0.002268731 +0.494694 0.1475052 0.002268731 +0.5692344 0.1475052 0.002268731 +0.6530715 0.1475052 0.002268731 +0.7474945 0.1475052 0.002268731 +0.8539475 0.1475052 0.002268731 +0.974052 0.1475052 0.002268731 +1.113885 0.1475052 0.002268731 +1.27456 0.1475052 0.002268731 +1.458117 0.1475052 0.002268731 +1.667858 0.1475052 0.002268731 +1.907556 0.1475052 0.002268731 +2.181521 0.1475052 0.002268731 +2.494678 0.1475052 0.002268731 +2.852659 0.1475052 0.002268731 +3.261896 0.1475052 0.002268731 +3.729748 0.1475052 0.002268731 +4.264621 0.1475052 0.002268731 +4.876131 0.1475052 0.002268731 +5.575266 0.1475052 0.002268731 +6.374593 0.1475052 0.002268731 +0 0.1846606 0.002268731 +0 0.1846606 0.002268731 +0 0.1846606 0.002268731 +0.002268731 0.1846606 0.002268731 +0.07076883 0.1846606 0.002268731 +0.1119241 0.1846606 0.002268731 +0.1475052 0.1846606 0.002268731 +0.1846606 0.1846606 0.002268731 +0.2245119 0.1846606 0.002268731 +0.2679612 0.1846606 0.002268731 +0.3158431 0.1846606 0.002268731 +0.3689944 0.1846606 0.002268731 +0.4282948 0.1846606 0.002268731 +0.494694 0.1846606 0.002268731 +0.5692344 0.1846606 0.002268731 +0.6530715 0.1846606 0.002268731 +0.7474945 0.1846606 0.002268731 +0.8539475 0.1846606 0.002268731 +0.974052 0.1846606 0.002268731 +1.113885 0.1846606 0.002268731 +1.27456 0.1846606 0.002268731 +1.458117 0.1846606 0.002268731 +1.667858 0.1846606 0.002268731 +1.907556 0.1846606 0.002268731 +2.181521 0.1846606 0.002268731 +2.494678 0.1846606 0.002268731 +2.852659 0.1846606 0.002268731 +3.261896 0.1846606 0.002268731 +3.729748 0.1846606 0.002268731 +4.264621 0.1846606 0.002268731 +4.876131 0.1846606 0.002268731 +5.575266 0.1846606 0.002268731 +6.374593 0.1846606 0.002268731 +0 0.2245119 0.002268731 +0 0.2245119 0.002268731 +0 0.2245119 0.002268731 +0.002268731 0.2245119 0.002268731 +0.07076883 0.2245119 0.002268731 +0.1119241 0.2245119 0.002268731 +0.1475052 0.2245119 0.002268731 +0.1846606 0.2245119 0.002268731 +0.2245119 0.2245119 0.002268731 +0.2679612 0.2245119 0.002268731 +0.3158431 0.2245119 0.002268731 +0.3689944 0.2245119 0.002268731 +0.4282948 0.2245119 0.002268731 +0.494694 0.2245119 0.002268731 +0.5692344 0.2245119 0.002268731 +0.6530715 0.2245119 0.002268731 +0.7474945 0.2245119 0.002268731 +0.8539475 0.2245119 0.002268731 +0.974052 0.2245119 0.002268731 +1.113885 0.2245119 0.002268731 +1.27456 0.2245119 0.002268731 +1.458117 0.2245119 0.002268731 +1.667858 0.2245119 0.002268731 +1.907556 0.2245119 0.002268731 +2.181521 0.2245119 0.002268731 +2.494678 0.2245119 0.002268731 +2.852659 0.2245119 0.002268731 +3.261896 0.2245119 0.002268731 +3.729748 0.2245119 0.002268731 +4.264621 0.2245119 0.002268731 +4.876131 0.2245119 0.002268731 +5.575266 0.2245119 0.002268731 +6.374593 0.2245119 0.002268731 +0 0.2679612 0.002268731 +0 0.2679612 0.002268731 +0 0.2679612 0.002268731 +0.002268731 0.2679612 0.002268731 +0.07076883 0.2679612 0.002268731 +0.1119241 0.2679612 0.002268731 +0.1475052 0.2679612 0.002268731 +0.1846606 0.2679612 0.002268731 +0.2245119 0.2679612 0.002268731 +0.2679612 0.2679612 0.002268731 +0.3158431 0.2679612 0.002268731 +0.3689944 0.2679612 0.002268731 +0.4282948 0.2679612 0.002268731 +0.494694 0.2679612 0.002268731 +0.5692344 0.2679612 0.002268731 +0.6530715 0.2679612 0.002268731 +0.7474945 0.2679612 0.002268731 +0.8539475 0.2679612 0.002268731 +0.974052 0.2679612 0.002268731 +1.113885 0.2679612 0.002268731 +1.27456 0.2679612 0.002268731 +1.458117 0.2679612 0.002268731 +1.667858 0.2679612 0.002268731 +1.907556 0.2679612 0.002268731 +2.181521 0.2679612 0.002268731 +2.494678 0.2679612 0.002268731 +2.852659 0.2679612 0.002268731 +3.261896 0.2679612 0.002268731 +3.729748 0.2679612 0.002268731 +4.264621 0.2679612 0.002268731 +4.876131 0.2679612 0.002268731 +5.575266 0.2679612 0.002268731 +6.374593 0.2679612 0.002268731 +0 0.3158431 0.002268731 +0 0.3158431 0.002268731 +0 0.3158431 0.002268731 +0.002268731 0.3158431 0.002268731 +0.07076883 0.3158431 0.002268731 +0.1119241 0.3158431 0.002268731 +0.1475052 0.3158431 0.002268731 +0.1846606 0.3158431 0.002268731 +0.2245119 0.3158431 0.002268731 +0.2679612 0.3158431 0.002268731 +0.3158431 0.3158431 0.002268731 +0.3689944 0.3158431 0.002268731 +0.4282948 0.3158431 0.002268731 +0.494694 0.3158431 0.002268731 +0.5692344 0.3158431 0.002268731 +0.6530715 0.3158431 0.002268731 +0.7474945 0.3158431 0.002268731 +0.8539475 0.3158431 0.002268731 +0.974052 0.3158431 0.002268731 +1.113885 0.3158431 0.002268731 +1.27456 0.3158431 0.002268731 +1.458117 0.3158431 0.002268731 +1.667858 0.3158431 0.002268731 +1.907556 0.3158431 0.002268731 +2.181521 0.3158431 0.002268731 +2.494678 0.3158431 0.002268731 +2.852659 0.3158431 0.002268731 +3.261896 0.3158431 0.002268731 +3.729748 0.3158431 0.002268731 +4.264621 0.3158431 0.002268731 +4.876131 0.3158431 0.002268731 +5.575266 0.3158431 0.002268731 +6.374593 0.3158431 0.002268731 +0 0.3689944 0.002268731 +0 0.3689944 0.002268731 +0 0.3689944 0.002268731 +0.002268731 0.3689944 0.002268731 +0.07076883 0.3689944 0.002268731 +0.1119241 0.3689944 0.002268731 +0.1475052 0.3689944 0.002268731 +0.1846606 0.3689944 0.002268731 +0.2245119 0.3689944 0.002268731 +0.2679612 0.3689944 0.002268731 +0.3158431 0.3689944 0.002268731 +0.3689944 0.3689944 0.002268731 +0.4282948 0.3689944 0.002268731 +0.494694 0.3689944 0.002268731 +0.5692344 0.3689944 0.002268731 +0.6530715 0.3689944 0.002268731 +0.7474945 0.3689944 0.002268731 +0.8539475 0.3689944 0.002268731 +0.974052 0.3689944 0.002268731 +1.113885 0.3689944 0.002268731 +1.27456 0.3689944 0.002268731 +1.458117 0.3689944 0.002268731 +1.667858 0.3689944 0.002268731 +1.907556 0.3689944 0.002268731 +2.181521 0.3689944 0.002268731 +2.494678 0.3689944 0.002268731 +2.852659 0.3689944 0.002268731 +3.261896 0.3689944 0.002268731 +3.729748 0.3689944 0.002268731 +4.264621 0.3689944 0.002268731 +4.876131 0.3689944 0.002268731 +5.575266 0.3689944 0.002268731 +6.374593 0.3689944 0.002268731 +0 0.4282948 0.002268731 +0 0.4282948 0.002268731 +0 0.4282948 0.002268731 +0.002268731 0.4282948 0.002268731 +0.07076883 0.4282948 0.002268731 +0.1119241 0.4282948 0.002268731 +0.1475052 0.4282948 0.002268731 +0.1846606 0.4282948 0.002268731 +0.2245119 0.4282948 0.002268731 +0.2679612 0.4282948 0.002268731 +0.3158431 0.4282948 0.002268731 +0.3689944 0.4282948 0.002268731 +0.4282948 0.4282948 0.002268731 +0.494694 0.4282948 0.002268731 +0.5692344 0.4282948 0.002268731 +0.6530715 0.4282948 0.002268731 +0.7474945 0.4282948 0.002268731 +0.8539475 0.4282948 0.002268731 +0.974052 0.4282948 0.002268731 +1.113885 0.4282948 0.002268731 +1.27456 0.4282948 0.002268731 +1.458117 0.4282948 0.002268731 +1.667858 0.4282948 0.002268731 +1.907556 0.4282948 0.002268731 +2.181521 0.4282948 0.002268731 +2.494678 0.4282948 0.002268731 +2.852659 0.4282948 0.002268731 +3.261896 0.4282948 0.002268731 +3.729748 0.4282948 0.002268731 +4.264621 0.4282948 0.002268731 +4.876131 0.4282948 0.002268731 +5.575266 0.4282948 0.002268731 +6.374593 0.4282948 0.002268731 +0 0.494694 0.002268731 +0 0.494694 0.002268731 +0 0.494694 0.002268731 +0.002268731 0.494694 0.002268731 +0.07076883 0.494694 0.002268731 +0.1119241 0.494694 0.002268731 +0.1475052 0.494694 0.002268731 +0.1846606 0.494694 0.002268731 +0.2245119 0.494694 0.002268731 +0.2679612 0.494694 0.002268731 +0.3158431 0.494694 0.002268731 +0.3689944 0.494694 0.002268731 +0.4282948 0.494694 0.002268731 +0.494694 0.494694 0.002268731 +0.5692344 0.494694 0.002268731 +0.6530715 0.494694 0.002268731 +0.7474945 0.494694 0.002268731 +0.8539475 0.494694 0.002268731 +0.974052 0.494694 0.002268731 +1.113885 0.494694 0.002268731 +1.27456 0.494694 0.002268731 +1.458117 0.494694 0.002268731 +1.667858 0.494694 0.002268731 +1.907556 0.494694 0.002268731 +2.181521 0.494694 0.002268731 +2.494678 0.494694 0.002268731 +2.852659 0.494694 0.002268731 +3.261896 0.494694 0.002268731 +3.729748 0.494694 0.002268731 +4.264621 0.494694 0.002268731 +4.876131 0.494694 0.002268731 +5.575266 0.494694 0.002268731 +6.374593 0.494694 0.002268731 +0 0.5692344 0.002268731 +0 0.5692344 0.002268731 +0 0.5692344 0.002268731 +0.002268731 0.5692344 0.002268731 +0.07076883 0.5692344 0.002268731 +0.1119241 0.5692344 0.002268731 +0.1475052 0.5692344 0.002268731 +0.1846606 0.5692344 0.002268731 +0.2245119 0.5692344 0.002268731 +0.2679612 0.5692344 0.002268731 +0.3158431 0.5692344 0.002268731 +0.3689944 0.5692344 0.002268731 +0.4282948 0.5692344 0.002268731 +0.494694 0.5692344 0.002268731 +0.5692344 0.5692344 0.002268731 +0.6530715 0.5692344 0.002268731 +0.7474945 0.5692344 0.002268731 +0.8539475 0.5692344 0.002268731 +0.974052 0.5692344 0.002268731 +1.113885 0.5692344 0.002268731 +1.27456 0.5692344 0.002268731 +1.458117 0.5692344 0.002268731 +1.667858 0.5692344 0.002268731 +1.907556 0.5692344 0.002268731 +2.181521 0.5692344 0.002268731 +2.494678 0.5692344 0.002268731 +2.852659 0.5692344 0.002268731 +3.261896 0.5692344 0.002268731 +3.729748 0.5692344 0.002268731 +4.264621 0.5692344 0.002268731 +4.876131 0.5692344 0.002268731 +5.575266 0.5692344 0.002268731 +6.374593 0.5692344 0.002268731 +0 0.6530715 0.002268731 +0 0.6530715 0.002268731 +0 0.6530715 0.002268731 +0.002268731 0.6530715 0.002268731 +0.07076883 0.6530715 0.002268731 +0.1119241 0.6530715 0.002268731 +0.1475052 0.6530715 0.002268731 +0.1846606 0.6530715 0.002268731 +0.2245119 0.6530715 0.002268731 +0.2679612 0.6530715 0.002268731 +0.3158431 0.6530715 0.002268731 +0.3689944 0.6530715 0.002268731 +0.4282948 0.6530715 0.002268731 +0.494694 0.6530715 0.002268731 +0.5692344 0.6530715 0.002268731 +0.6530715 0.6530715 0.002268731 +0.7474945 0.6530715 0.002268731 +0.8539475 0.6530715 0.002268731 +0.974052 0.6530715 0.002268731 +1.113885 0.6530715 0.002268731 +1.27456 0.6530715 0.002268731 +1.458117 0.6530715 0.002268731 +1.667858 0.6530715 0.002268731 +1.907556 0.6530715 0.002268731 +2.181521 0.6530715 0.002268731 +2.494678 0.6530715 0.002268731 +2.852659 0.6530715 0.002268731 +3.261896 0.6530715 0.002268731 +3.729748 0.6530715 0.002268731 +4.264621 0.6530715 0.002268731 +4.876131 0.6530715 0.002268731 +5.575266 0.6530715 0.002268731 +6.374593 0.6530715 0.002268731 +0 0.7474945 0.002268731 +0 0.7474945 0.002268731 +0 0.7474945 0.002268731 +0.002268731 0.7474945 0.002268731 +0.07076883 0.7474945 0.002268731 +0.1119241 0.7474945 0.002268731 +0.1475052 0.7474945 0.002268731 +0.1846606 0.7474945 0.002268731 +0.2245119 0.7474945 0.002268731 +0.2679612 0.7474945 0.002268731 +0.3158431 0.7474945 0.002268731 +0.3689944 0.7474945 0.002268731 +0.4282948 0.7474945 0.002268731 +0.494694 0.7474945 0.002268731 +0.5692344 0.7474945 0.002268731 +0.6530715 0.7474945 0.002268731 +0.7474945 0.7474945 0.002268731 +0.8539475 0.7474945 0.002268731 +0.974052 0.7474945 0.002268731 +1.113885 0.7474945 0.002268731 +1.27456 0.7474945 0.002268731 +1.458117 0.7474945 0.002268731 +1.667858 0.7474945 0.002268731 +1.907556 0.7474945 0.002268731 +2.181521 0.7474945 0.002268731 +2.494678 0.7474945 0.002268731 +2.852659 0.7474945 0.002268731 +3.261896 0.7474945 0.002268731 +3.729748 0.7474945 0.002268731 +4.264621 0.7474945 0.002268731 +4.876131 0.7474945 0.002268731 +5.575266 0.7474945 0.002268731 +6.374593 0.7474945 0.002268731 +0 0.8539475 0.002268731 +0 0.8539475 0.002268731 +0 0.8539475 0.002268731 +0.002268731 0.8539475 0.002268731 +0.07076883 0.8539475 0.002268731 +0.1119241 0.8539475 0.002268731 +0.1475052 0.8539475 0.002268731 +0.1846606 0.8539475 0.002268731 +0.2245119 0.8539475 0.002268731 +0.2679612 0.8539475 0.002268731 +0.3158431 0.8539475 0.002268731 +0.3689944 0.8539475 0.002268731 +0.4282948 0.8539475 0.002268731 +0.494694 0.8539475 0.002268731 +0.5692344 0.8539475 0.002268731 +0.6530715 0.8539475 0.002268731 +0.7474945 0.8539475 0.002268731 +0.8539475 0.8539475 0.002268731 +0.974052 0.8539475 0.002268731 +1.113885 0.8539475 0.002268731 +1.27456 0.8539475 0.002268731 +1.458117 0.8539475 0.002268731 +1.667858 0.8539475 0.002268731 +1.907556 0.8539475 0.002268731 +2.181521 0.8539475 0.002268731 +2.494678 0.8539475 0.002268731 +2.852659 0.8539475 0.002268731 +3.261896 0.8539475 0.002268731 +3.729748 0.8539475 0.002268731 +4.264621 0.8539475 0.002268731 +4.876131 0.8539475 0.002268731 +5.575266 0.8539475 0.002268731 +6.374593 0.8539475 0.002268731 +0 0.974052 0.002268731 +0 0.974052 0.002268731 +0 0.974052 0.002268731 +0.002268731 0.974052 0.002268731 +0.07076883 0.974052 0.002268731 +0.1119241 0.974052 0.002268731 +0.1475052 0.974052 0.002268731 +0.1846606 0.974052 0.002268731 +0.2245119 0.974052 0.002268731 +0.2679612 0.974052 0.002268731 +0.3158431 0.974052 0.002268731 +0.3689944 0.974052 0.002268731 +0.4282948 0.974052 0.002268731 +0.494694 0.974052 0.002268731 +0.5692344 0.974052 0.002268731 +0.6530715 0.974052 0.002268731 +0.7474945 0.974052 0.002268731 +0.8539475 0.974052 0.002268731 +0.974052 0.974052 0.002268731 +1.113885 0.974052 0.002268731 +1.27456 0.974052 0.002268731 +1.458117 0.974052 0.002268731 +1.667858 0.974052 0.002268731 +1.907556 0.974052 0.002268731 +2.181521 0.974052 0.002268731 +2.494678 0.974052 0.002268731 +2.852659 0.974052 0.002268731 +3.261896 0.974052 0.002268731 +3.729748 0.974052 0.002268731 +4.264621 0.974052 0.002268731 +4.876131 0.974052 0.002268731 +5.575266 0.974052 0.002268731 +6.374593 0.974052 0.002268731 +0 1.113885 0.002268731 +0 1.113885 0.002268731 +0 1.113885 0.002268731 +0.002268731 1.113885 0.002268731 +0.07076883 1.113885 0.002268731 +0.1119241 1.113885 0.002268731 +0.1475052 1.113885 0.002268731 +0.1846606 1.113885 0.002268731 +0.2245119 1.113885 0.002268731 +0.2679612 1.113885 0.002268731 +0.3158431 1.113885 0.002268731 +0.3689944 1.113885 0.002268731 +0.4282948 1.113885 0.002268731 +0.494694 1.113885 0.002268731 +0.5692344 1.113885 0.002268731 +0.6530715 1.113885 0.002268731 +0.7474945 1.113885 0.002268731 +0.8539475 1.113885 0.002268731 +0.974052 1.113885 0.002268731 +1.113885 1.113885 0.002268731 +1.27456 1.113885 0.002268731 +1.458117 1.113885 0.002268731 +1.667858 1.113885 0.002268731 +1.907556 1.113885 0.002268731 +2.181521 1.113885 0.002268731 +2.494678 1.113885 0.002268731 +2.852659 1.113885 0.002268731 +3.261896 1.113885 0.002268731 +3.729748 1.113885 0.002268731 +4.264621 1.113885 0.002268731 +4.876131 1.113885 0.002268731 +5.575266 1.113885 0.002268731 +6.374593 1.113885 0.002268731 +0 1.27456 0.002268731 +0 1.27456 0.002268731 +0 1.27456 0.002268731 +0.002268731 1.27456 0.002268731 +0.07076883 1.27456 0.002268731 +0.1119241 1.27456 0.002268731 +0.1475052 1.27456 0.002268731 +0.1846606 1.27456 0.002268731 +0.2245119 1.27456 0.002268731 +0.2679612 1.27456 0.002268731 +0.3158431 1.27456 0.002268731 +0.3689944 1.27456 0.002268731 +0.4282948 1.27456 0.002268731 +0.494694 1.27456 0.002268731 +0.5692344 1.27456 0.002268731 +0.6530715 1.27456 0.002268731 +0.7474945 1.27456 0.002268731 +0.8539475 1.27456 0.002268731 +0.974052 1.27456 0.002268731 +1.113885 1.27456 0.002268731 +1.27456 1.27456 0.002268731 +1.458117 1.27456 0.002268731 +1.667858 1.27456 0.002268731 +1.907556 1.27456 0.002268731 +2.181521 1.27456 0.002268731 +2.494678 1.27456 0.002268731 +2.852659 1.27456 0.002268731 +3.261896 1.27456 0.002268731 +3.729748 1.27456 0.002268731 +4.264621 1.27456 0.002268731 +4.876131 1.27456 0.002268731 +5.575266 1.27456 0.002268731 +6.374593 1.27456 0.002268731 +0 1.458117 0.002268731 +0 1.458117 0.002268731 +0 1.458117 0.002268731 +0.002268731 1.458117 0.002268731 +0.07076883 1.458117 0.002268731 +0.1119241 1.458117 0.002268731 +0.1475052 1.458117 0.002268731 +0.1846606 1.458117 0.002268731 +0.2245119 1.458117 0.002268731 +0.2679612 1.458117 0.002268731 +0.3158431 1.458117 0.002268731 +0.3689944 1.458117 0.002268731 +0.4282948 1.458117 0.002268731 +0.494694 1.458117 0.002268731 +0.5692344 1.458117 0.002268731 +0.6530715 1.458117 0.002268731 +0.7474945 1.458117 0.002268731 +0.8539475 1.458117 0.002268731 +0.974052 1.458117 0.002268731 +1.113885 1.458117 0.002268731 +1.27456 1.458117 0.002268731 +1.458117 1.458117 0.002268731 +1.667858 1.458117 0.002268731 +1.907556 1.458117 0.002268731 +2.181521 1.458117 0.002268731 +2.494678 1.458117 0.002268731 +2.852659 1.458117 0.002268731 +3.261896 1.458117 0.002268731 +3.729748 1.458117 0.002268731 +4.264621 1.458117 0.002268731 +4.876131 1.458117 0.002268731 +5.575266 1.458117 0.002268731 +6.374593 1.458117 0.002268731 +0 1.667858 0.002268731 +0 1.667858 0.002268731 +0 1.667858 0.002268731 +0.002268731 1.667858 0.002268731 +0.07076883 1.667858 0.002268731 +0.1119241 1.667858 0.002268731 +0.1475052 1.667858 0.002268731 +0.1846606 1.667858 0.002268731 +0.2245119 1.667858 0.002268731 +0.2679612 1.667858 0.002268731 +0.3158431 1.667858 0.002268731 +0.3689944 1.667858 0.002268731 +0.4282948 1.667858 0.002268731 +0.494694 1.667858 0.002268731 +0.5692344 1.667858 0.002268731 +0.6530715 1.667858 0.002268731 +0.7474945 1.667858 0.002268731 +0.8539475 1.667858 0.002268731 +0.974052 1.667858 0.002268731 +1.113885 1.667858 0.002268731 +1.27456 1.667858 0.002268731 +1.458117 1.667858 0.002268731 +1.667858 1.667858 0.002268731 +1.907556 1.667858 0.002268731 +2.181521 1.667858 0.002268731 +2.494678 1.667858 0.002268731 +2.852659 1.667858 0.002268731 +3.261896 1.667858 0.002268731 +3.729748 1.667858 0.002268731 +4.264621 1.667858 0.002268731 +4.876131 1.667858 0.002268731 +5.575266 1.667858 0.002268731 +6.374593 1.667858 0.002268731 +0 1.907556 0.002268731 +0 1.907556 0.002268731 +0 1.907556 0.002268731 +0.002268731 1.907556 0.002268731 +0.07076883 1.907556 0.002268731 +0.1119241 1.907556 0.002268731 +0.1475052 1.907556 0.002268731 +0.1846606 1.907556 0.002268731 +0.2245119 1.907556 0.002268731 +0.2679612 1.907556 0.002268731 +0.3158431 1.907556 0.002268731 +0.3689944 1.907556 0.002268731 +0.4282948 1.907556 0.002268731 +0.494694 1.907556 0.002268731 +0.5692344 1.907556 0.002268731 +0.6530715 1.907556 0.002268731 +0.7474945 1.907556 0.002268731 +0.8539475 1.907556 0.002268731 +0.974052 1.907556 0.002268731 +1.113885 1.907556 0.002268731 +1.27456 1.907556 0.002268731 +1.458117 1.907556 0.002268731 +1.667858 1.907556 0.002268731 +1.907556 1.907556 0.002268731 +2.181521 1.907556 0.002268731 +2.494678 1.907556 0.002268731 +2.852659 1.907556 0.002268731 +3.261896 1.907556 0.002268731 +3.729748 1.907556 0.002268731 +4.264621 1.907556 0.002268731 +4.876131 1.907556 0.002268731 +5.575266 1.907556 0.002268731 +6.374593 1.907556 0.002268731 +0 2.181521 0.002268731 +0 2.181521 0.002268731 +0 2.181521 0.002268731 +0.002268731 2.181521 0.002268731 +0.07076883 2.181521 0.002268731 +0.1119241 2.181521 0.002268731 +0.1475052 2.181521 0.002268731 +0.1846606 2.181521 0.002268731 +0.2245119 2.181521 0.002268731 +0.2679612 2.181521 0.002268731 +0.3158431 2.181521 0.002268731 +0.3689944 2.181521 0.002268731 +0.4282948 2.181521 0.002268731 +0.494694 2.181521 0.002268731 +0.5692344 2.181521 0.002268731 +0.6530715 2.181521 0.002268731 +0.7474945 2.181521 0.002268731 +0.8539475 2.181521 0.002268731 +0.974052 2.181521 0.002268731 +1.113885 2.181521 0.002268731 +1.27456 2.181521 0.002268731 +1.458117 2.181521 0.002268731 +1.667858 2.181521 0.002268731 +1.907556 2.181521 0.002268731 +2.181521 2.181521 0.002268731 +2.494678 2.181521 0.002268731 +2.852659 2.181521 0.002268731 +3.261896 2.181521 0.002268731 +3.729748 2.181521 0.002268731 +4.264621 2.181521 0.002268731 +4.876131 2.181521 0.002268731 +5.575266 2.181521 0.002268731 +6.374593 2.181521 0.002268731 +0 2.494678 0.002268731 +0 2.494678 0.002268731 +0 2.494678 0.002268731 +0.002268731 2.494678 0.002268731 +0.07076883 2.494678 0.002268731 +0.1119241 2.494678 0.002268731 +0.1475052 2.494678 0.002268731 +0.1846606 2.494678 0.002268731 +0.2245119 2.494678 0.002268731 +0.2679612 2.494678 0.002268731 +0.3158431 2.494678 0.002268731 +0.3689944 2.494678 0.002268731 +0.4282948 2.494678 0.002268731 +0.494694 2.494678 0.002268731 +0.5692344 2.494678 0.002268731 +0.6530715 2.494678 0.002268731 +0.7474945 2.494678 0.002268731 +0.8539475 2.494678 0.002268731 +0.974052 2.494678 0.002268731 +1.113885 2.494678 0.002268731 +1.27456 2.494678 0.002268731 +1.458117 2.494678 0.002268731 +1.667858 2.494678 0.002268731 +1.907556 2.494678 0.002268731 +2.181521 2.494678 0.002268731 +2.494678 2.494678 0.002268731 +2.852659 2.494678 0.002268731 +3.261896 2.494678 0.002268731 +3.729748 2.494678 0.002268731 +4.264621 2.494678 0.002268731 +4.876131 2.494678 0.002268731 +5.575266 2.494678 0.002268731 +6.374593 2.494678 0.002268731 +0 2.852659 0.002268731 +0 2.852659 0.002268731 +0 2.852659 0.002268731 +0.002268731 2.852659 0.002268731 +0.07076883 2.852659 0.002268731 +0.1119241 2.852659 0.002268731 +0.1475052 2.852659 0.002268731 +0.1846606 2.852659 0.002268731 +0.2245119 2.852659 0.002268731 +0.2679612 2.852659 0.002268731 +0.3158431 2.852659 0.002268731 +0.3689944 2.852659 0.002268731 +0.4282948 2.852659 0.002268731 +0.494694 2.852659 0.002268731 +0.5692344 2.852659 0.002268731 +0.6530715 2.852659 0.002268731 +0.7474945 2.852659 0.002268731 +0.8539475 2.852659 0.002268731 +0.974052 2.852659 0.002268731 +1.113885 2.852659 0.002268731 +1.27456 2.852659 0.002268731 +1.458117 2.852659 0.002268731 +1.667858 2.852659 0.002268731 +1.907556 2.852659 0.002268731 +2.181521 2.852659 0.002268731 +2.494678 2.852659 0.002268731 +2.852659 2.852659 0.002268731 +3.261896 2.852659 0.002268731 +3.729748 2.852659 0.002268731 +4.264621 2.852659 0.002268731 +4.876131 2.852659 0.002268731 +5.575266 2.852659 0.002268731 +6.374593 2.852659 0.002268731 +0 3.261896 0.002268731 +0 3.261896 0.002268731 +0 3.261896 0.002268731 +0.002268731 3.261896 0.002268731 +0.07076883 3.261896 0.002268731 +0.1119241 3.261896 0.002268731 +0.1475052 3.261896 0.002268731 +0.1846606 3.261896 0.002268731 +0.2245119 3.261896 0.002268731 +0.2679612 3.261896 0.002268731 +0.3158431 3.261896 0.002268731 +0.3689944 3.261896 0.002268731 +0.4282948 3.261896 0.002268731 +0.494694 3.261896 0.002268731 +0.5692344 3.261896 0.002268731 +0.6530715 3.261896 0.002268731 +0.7474945 3.261896 0.002268731 +0.8539475 3.261896 0.002268731 +0.974052 3.261896 0.002268731 +1.113885 3.261896 0.002268731 +1.27456 3.261896 0.002268731 +1.458117 3.261896 0.002268731 +1.667858 3.261896 0.002268731 +1.907556 3.261896 0.002268731 +2.181521 3.261896 0.002268731 +2.494678 3.261896 0.002268731 +2.852659 3.261896 0.002268731 +3.261896 3.261896 0.002268731 +3.729748 3.261896 0.002268731 +4.264621 3.261896 0.002268731 +4.876131 3.261896 0.002268731 +5.575266 3.261896 0.002268731 +6.374593 3.261896 0.002268731 +0 3.729748 0.002268731 +0 3.729748 0.002268731 +0 3.729748 0.002268731 +0.002268731 3.729748 0.002268731 +0.07076883 3.729748 0.002268731 +0.1119241 3.729748 0.002268731 +0.1475052 3.729748 0.002268731 +0.1846606 3.729748 0.002268731 +0.2245119 3.729748 0.002268731 +0.2679612 3.729748 0.002268731 +0.3158431 3.729748 0.002268731 +0.3689944 3.729748 0.002268731 +0.4282948 3.729748 0.002268731 +0.494694 3.729748 0.002268731 +0.5692344 3.729748 0.002268731 +0.6530715 3.729748 0.002268731 +0.7474945 3.729748 0.002268731 +0.8539475 3.729748 0.002268731 +0.974052 3.729748 0.002268731 +1.113885 3.729748 0.002268731 +1.27456 3.729748 0.002268731 +1.458117 3.729748 0.002268731 +1.667858 3.729748 0.002268731 +1.907556 3.729748 0.002268731 +2.181521 3.729748 0.002268731 +2.494678 3.729748 0.002268731 +2.852659 3.729748 0.002268731 +3.261896 3.729748 0.002268731 +3.729748 3.729748 0.002268731 +4.264621 3.729748 0.002268731 +4.876131 3.729748 0.002268731 +5.575266 3.729748 0.002268731 +6.374593 3.729748 0.002268731 +0 4.264621 0.002268731 +0 4.264621 0.002268731 +0 4.264621 0.002268731 +0.002268731 4.264621 0.002268731 +0.07076883 4.264621 0.002268731 +0.1119241 4.264621 0.002268731 +0.1475052 4.264621 0.002268731 +0.1846606 4.264621 0.002268731 +0.2245119 4.264621 0.002268731 +0.2679612 4.264621 0.002268731 +0.3158431 4.264621 0.002268731 +0.3689944 4.264621 0.002268731 +0.4282948 4.264621 0.002268731 +0.494694 4.264621 0.002268731 +0.5692344 4.264621 0.002268731 +0.6530715 4.264621 0.002268731 +0.7474945 4.264621 0.002268731 +0.8539475 4.264621 0.002268731 +0.974052 4.264621 0.002268731 +1.113885 4.264621 0.002268731 +1.27456 4.264621 0.002268731 +1.458117 4.264621 0.002268731 +1.667858 4.264621 0.002268731 +1.907556 4.264621 0.002268731 +2.181521 4.264621 0.002268731 +2.494678 4.264621 0.002268731 +2.852659 4.264621 0.002268731 +3.261896 4.264621 0.002268731 +3.729748 4.264621 0.002268731 +4.264621 4.264621 0.002268731 +4.876131 4.264621 0.002268731 +5.575266 4.264621 0.002268731 +6.374593 4.264621 0.002268731 +0 4.876131 0.002268731 +0 4.876131 0.002268731 +0 4.876131 0.002268731 +0.002268731 4.876131 0.002268731 +0.07076883 4.876131 0.002268731 +0.1119241 4.876131 0.002268731 +0.1475052 4.876131 0.002268731 +0.1846606 4.876131 0.002268731 +0.2245119 4.876131 0.002268731 +0.2679612 4.876131 0.002268731 +0.3158431 4.876131 0.002268731 +0.3689944 4.876131 0.002268731 +0.4282948 4.876131 0.002268731 +0.494694 4.876131 0.002268731 +0.5692344 4.876131 0.002268731 +0.6530715 4.876131 0.002268731 +0.7474945 4.876131 0.002268731 +0.8539475 4.876131 0.002268731 +0.974052 4.876131 0.002268731 +1.113885 4.876131 0.002268731 +1.27456 4.876131 0.002268731 +1.458117 4.876131 0.002268731 +1.667858 4.876131 0.002268731 +1.907556 4.876131 0.002268731 +2.181521 4.876131 0.002268731 +2.494678 4.876131 0.002268731 +2.852659 4.876131 0.002268731 +3.261896 4.876131 0.002268731 +3.729748 4.876131 0.002268731 +4.264621 4.876131 0.002268731 +4.876131 4.876131 0.002268731 +5.575266 4.876131 0.002268731 +6.374593 4.876131 0.002268731 +0 5.575266 0.002268731 +0 5.575266 0.002268731 +0 5.575266 0.002268731 +0.002268731 5.575266 0.002268731 +0.07076883 5.575266 0.002268731 +0.1119241 5.575266 0.002268731 +0.1475052 5.575266 0.002268731 +0.1846606 5.575266 0.002268731 +0.2245119 5.575266 0.002268731 +0.2679612 5.575266 0.002268731 +0.3158431 5.575266 0.002268731 +0.3689944 5.575266 0.002268731 +0.4282948 5.575266 0.002268731 +0.494694 5.575266 0.002268731 +0.5692344 5.575266 0.002268731 +0.6530715 5.575266 0.002268731 +0.7474945 5.575266 0.002268731 +0.8539475 5.575266 0.002268731 +0.974052 5.575266 0.002268731 +1.113885 5.575266 0.002268731 +1.27456 5.575266 0.002268731 +1.458117 5.575266 0.002268731 +1.667858 5.575266 0.002268731 +1.907556 5.575266 0.002268731 +2.181521 5.575266 0.002268731 +2.494678 5.575266 0.002268731 +2.852659 5.575266 0.002268731 +3.261896 5.575266 0.002268731 +3.729748 5.575266 0.002268731 +4.264621 5.575266 0.002268731 +4.876131 5.575266 0.002268731 +5.575266 5.575266 0.002268731 +6.374593 5.575266 0.002268731 +0 6.374593 0.002268731 +0 6.374593 0.002268731 +0 6.374593 0.002268731 +0.002268731 6.374593 0.002268731 +0.07076883 6.374593 0.002268731 +0.1119241 6.374593 0.002268731 +0.1475052 6.374593 0.002268731 +0.1846606 6.374593 0.002268731 +0.2245119 6.374593 0.002268731 +0.2679612 6.374593 0.002268731 +0.3158431 6.374593 0.002268731 +0.3689944 6.374593 0.002268731 +0.4282948 6.374593 0.002268731 +0.494694 6.374593 0.002268731 +0.5692344 6.374593 0.002268731 +0.6530715 6.374593 0.002268731 +0.7474945 6.374593 0.002268731 +0.8539475 6.374593 0.002268731 +0.974052 6.374593 0.002268731 +1.113885 6.374593 0.002268731 +1.27456 6.374593 0.002268731 +1.458117 6.374593 0.002268731 +1.667858 6.374593 0.002268731 +1.907556 6.374593 0.002268731 +2.181521 6.374593 0.002268731 +2.494678 6.374593 0.002268731 +2.852659 6.374593 0.002268731 +3.261896 6.374593 0.002268731 +3.729748 6.374593 0.002268731 +4.264621 6.374593 0.002268731 +4.876131 6.374593 0.002268731 +5.575266 6.374593 0.002268731 +6.374593 6.374593 0.002268731 +0 0 0.07076883 +0 0 0.07076883 +0 0 0.07076883 +0.002268731 0 0.07076883 +0.07076883 0 0.07076883 +0.1119241 0 0.07076883 +0.1475052 0 0.07076883 +0.1846606 0 0.07076883 +0.2245119 0 0.07076883 +0.2679612 0 0.07076883 +0.3158431 0 0.07076883 +0.3689944 0 0.07076883 +0.4282948 0 0.07076883 +0.494694 0 0.07076883 +0.5692344 0 0.07076883 +0.6530715 0 0.07076883 +0.7474945 0 0.07076883 +0.8539475 0 0.07076883 +0.974052 0 0.07076883 +1.113885 0 0.07076883 +1.27456 0 0.07076883 +1.458117 0 0.07076883 +1.667858 0 0.07076883 +1.907556 0 0.07076883 +2.181521 0 0.07076883 +2.494678 0 0.07076883 +2.852659 0 0.07076883 +3.261896 0 0.07076883 +3.729748 0 0.07076883 +4.264621 0 0.07076883 +4.876131 0 0.07076883 +5.575266 0 0.07076883 +6.374593 0 0.07076883 +0 0 0.07076883 +0 0 0.07076883 +0 0 0.07076883 +0.002268731 0 0.07076883 +0.07076883 0 0.07076883 +0.1119241 0 0.07076883 +0.1475052 0 0.07076883 +0.1846606 0 0.07076883 +0.2245119 0 0.07076883 +0.2679612 0 0.07076883 +0.3158431 0 0.07076883 +0.3689944 0 0.07076883 +0.4282948 0 0.07076883 +0.494694 0 0.07076883 +0.5692344 0 0.07076883 +0.6530715 0 0.07076883 +0.7474945 0 0.07076883 +0.8539475 0 0.07076883 +0.974052 0 0.07076883 +1.113885 0 0.07076883 +1.27456 0 0.07076883 +1.458117 0 0.07076883 +1.667858 0 0.07076883 +1.907556 0 0.07076883 +2.181521 0 0.07076883 +2.494678 0 0.07076883 +2.852659 0 0.07076883 +3.261896 0 0.07076883 +3.729748 0 0.07076883 +4.264621 0 0.07076883 +4.876131 0 0.07076883 +5.575266 0 0.07076883 +6.374593 0 0.07076883 +0 0 0.07076883 +0 0 0.07076883 +0 0 0.07076883 +0.002268731 0 0.07076883 +0.07076883 0 0.07076883 +0.1119241 0 0.07076883 +0.1475052 0 0.07076883 +0.1846606 0 0.07076883 +0.2245119 0 0.07076883 +0.2679612 0 0.07076883 +0.3158431 0 0.07076883 +0.3689944 0 0.07076883 +0.4282948 0 0.07076883 +0.494694 0 0.07076883 +0.5692344 0 0.07076883 +0.6530715 0 0.07076883 +0.7474945 0 0.07076883 +0.8539475 0 0.07076883 +0.974052 0 0.07076883 +1.113885 0 0.07076883 +1.27456 0 0.07076883 +1.458117 0 0.07076883 +1.667858 0 0.07076883 +1.907556 0 0.07076883 +2.181521 0 0.07076883 +2.494678 0 0.07076883 +2.852659 0 0.07076883 +3.261896 0 0.07076883 +3.729748 0 0.07076883 +4.264621 0 0.07076883 +4.876131 0 0.07076883 +5.575266 0 0.07076883 +6.374593 0 0.07076883 +0 0.002268731 0.07076883 +0 0.002268731 0.07076883 +0 0.002268731 0.07076883 +0.002268731 0.002268731 0.07076883 +0.07076883 0.002268731 0.07076883 +0.1119241 0.002268731 0.07076883 +0.1475052 0.002268731 0.07076883 +0.1846606 0.002268731 0.07076883 +0.2245119 0.002268731 0.07076883 +0.2679612 0.002268731 0.07076883 +0.3158431 0.002268731 0.07076883 +0.3689944 0.002268731 0.07076883 +0.4282948 0.002268731 0.07076883 +0.494694 0.002268731 0.07076883 +0.5692344 0.002268731 0.07076883 +0.6530715 0.002268731 0.07076883 +0.7474945 0.002268731 0.07076883 +0.8539475 0.002268731 0.07076883 +0.974052 0.002268731 0.07076883 +1.113885 0.002268731 0.07076883 +1.27456 0.002268731 0.07076883 +1.458117 0.002268731 0.07076883 +1.667858 0.002268731 0.07076883 +1.907556 0.002268731 0.07076883 +2.181521 0.002268731 0.07076883 +2.494678 0.002268731 0.07076883 +2.852659 0.002268731 0.07076883 +3.261896 0.002268731 0.07076883 +3.729748 0.002268731 0.07076883 +4.264621 0.002268731 0.07076883 +4.876131 0.002268731 0.07076883 +5.575266 0.002268731 0.07076883 +6.374593 0.002268731 0.07076883 +0 0.07076883 0.07076883 +0 0.07076883 0.07076883 +0 0.07076883 0.07076883 +0.002268731 0.07076883 0.07076883 +0.07076883 0.07076883 0.07076883 +0.1119241 0.07076883 0.07076883 +0.1475052 0.07076883 0.07076883 +0.1846606 0.07076883 0.07076883 +0.2245119 0.07076883 0.07076883 +0.2679612 0.07076883 0.07076883 +0.3158431 0.07076883 0.07076883 +0.3689944 0.07076883 0.07076883 +0.4282948 0.07076883 0.07076883 +0.494694 0.07076883 0.07076883 +0.5692344 0.07076883 0.07076883 +0.6530715 0.07076883 0.07076883 +0.7474945 0.07076883 0.07076883 +0.8539475 0.07076883 0.07076883 +0.974052 0.07076883 0.07076883 +1.113885 0.07076883 0.07076883 +1.27456 0.07076883 0.07076883 +1.458117 0.07076883 0.07076883 +1.667858 0.07076883 0.07076883 +1.907556 0.07076883 0.07076883 +2.181521 0.07076883 0.07076883 +2.494678 0.07076883 0.07076883 +2.852659 0.07076883 0.07076883 +3.261896 0.07076883 0.07076883 +3.729748 0.07076883 0.07076883 +4.264621 0.07076883 0.07076883 +4.876131 0.07076883 0.07076883 +5.575266 0.07076883 0.07076883 +6.374593 0.07076883 0.07076883 +0 0.1119241 0.07076883 +0 0.1119241 0.07076883 +0 0.1119241 0.07076883 +0.002268731 0.1119241 0.07076883 +0.07076883 0.1119241 0.07076883 +0.1119241 0.1119241 0.07076883 +0.1475052 0.1119241 0.07076883 +0.1846606 0.1119241 0.07076883 +0.2245119 0.1119241 0.07076883 +0.2679612 0.1119241 0.07076883 +0.3158431 0.1119241 0.07076883 +0.3689944 0.1119241 0.07076883 +0.4282948 0.1119241 0.07076883 +0.494694 0.1119241 0.07076883 +0.5692344 0.1119241 0.07076883 +0.6530715 0.1119241 0.07076883 +0.7474945 0.1119241 0.07076883 +0.8539475 0.1119241 0.07076883 +0.974052 0.1119241 0.07076883 +1.113885 0.1119241 0.07076883 +1.27456 0.1119241 0.07076883 +1.458117 0.1119241 0.07076883 +1.667858 0.1119241 0.07076883 +1.907556 0.1119241 0.07076883 +2.181521 0.1119241 0.07076883 +2.494678 0.1119241 0.07076883 +2.852659 0.1119241 0.07076883 +3.261896 0.1119241 0.07076883 +3.729748 0.1119241 0.07076883 +4.264621 0.1119241 0.07076883 +4.876131 0.1119241 0.07076883 +5.575266 0.1119241 0.07076883 +6.374593 0.1119241 0.07076883 +0 0.1475052 0.07076883 +0 0.1475052 0.07076883 +0 0.1475052 0.07076883 +0.002268731 0.1475052 0.07076883 +0.07076883 0.1475052 0.07076883 +0.1119241 0.1475052 0.07076883 +0.1475052 0.1475052 0.07076883 +0.1846606 0.1475052 0.07076883 +0.2245119 0.1475052 0.07076883 +0.2679612 0.1475052 0.07076883 +0.3158431 0.1475052 0.07076883 +0.3689944 0.1475052 0.07076883 +0.4282948 0.1475052 0.07076883 +0.494694 0.1475052 0.07076883 +0.5692344 0.1475052 0.07076883 +0.6530715 0.1475052 0.07076883 +0.7474945 0.1475052 0.07076883 +0.8539475 0.1475052 0.07076883 +0.974052 0.1475052 0.07076883 +1.113885 0.1475052 0.07076883 +1.27456 0.1475052 0.07076883 +1.458117 0.1475052 0.07076883 +1.667858 0.1475052 0.07076883 +1.907556 0.1475052 0.07076883 +2.181521 0.1475052 0.07076883 +2.494678 0.1475052 0.07076883 +2.852659 0.1475052 0.07076883 +3.261896 0.1475052 0.07076883 +3.729748 0.1475052 0.07076883 +4.264621 0.1475052 0.07076883 +4.876131 0.1475052 0.07076883 +5.575266 0.1475052 0.07076883 +6.374593 0.1475052 0.07076883 +0 0.1846606 0.07076883 +0 0.1846606 0.07076883 +0 0.1846606 0.07076883 +0.002268731 0.1846606 0.07076883 +0.07076883 0.1846606 0.07076883 +0.1119241 0.1846606 0.07076883 +0.1475052 0.1846606 0.07076883 +0.1846606 0.1846606 0.07076883 +0.2245119 0.1846606 0.07076883 +0.2679612 0.1846606 0.07076883 +0.3158431 0.1846606 0.07076883 +0.3689944 0.1846606 0.07076883 +0.4282948 0.1846606 0.07076883 +0.494694 0.1846606 0.07076883 +0.5692344 0.1846606 0.07076883 +0.6530715 0.1846606 0.07076883 +0.7474945 0.1846606 0.07076883 +0.8539475 0.1846606 0.07076883 +0.974052 0.1846606 0.07076883 +1.113885 0.1846606 0.07076883 +1.27456 0.1846606 0.07076883 +1.458117 0.1846606 0.07076883 +1.667858 0.1846606 0.07076883 +1.907556 0.1846606 0.07076883 +2.181521 0.1846606 0.07076883 +2.494678 0.1846606 0.07076883 +2.852659 0.1846606 0.07076883 +3.261896 0.1846606 0.07076883 +3.729748 0.1846606 0.07076883 +4.264621 0.1846606 0.07076883 +4.876131 0.1846606 0.07076883 +5.575266 0.1846606 0.07076883 +6.374593 0.1846606 0.07076883 +0 0.2245119 0.07076883 +0 0.2245119 0.07076883 +0 0.2245119 0.07076883 +0.002268731 0.2245119 0.07076883 +0.07076883 0.2245119 0.07076883 +0.1119241 0.2245119 0.07076883 +0.1475052 0.2245119 0.07076883 +0.1846606 0.2245119 0.07076883 +0.2245119 0.2245119 0.07076883 +0.2679612 0.2245119 0.07076883 +0.3158431 0.2245119 0.07076883 +0.3689944 0.2245119 0.07076883 +0.4282948 0.2245119 0.07076883 +0.494694 0.2245119 0.07076883 +0.5692344 0.2245119 0.07076883 +0.6530715 0.2245119 0.07076883 +0.7474945 0.2245119 0.07076883 +0.8539475 0.2245119 0.07076883 +0.974052 0.2245119 0.07076883 +1.113885 0.2245119 0.07076883 +1.27456 0.2245119 0.07076883 +1.458117 0.2245119 0.07076883 +1.667858 0.2245119 0.07076883 +1.907556 0.2245119 0.07076883 +2.181521 0.2245119 0.07076883 +2.494678 0.2245119 0.07076883 +2.852659 0.2245119 0.07076883 +3.261896 0.2245119 0.07076883 +3.729748 0.2245119 0.07076883 +4.264621 0.2245119 0.07076883 +4.876131 0.2245119 0.07076883 +5.575266 0.2245119 0.07076883 +6.374593 0.2245119 0.07076883 +0 0.2679612 0.07076883 +0 0.2679612 0.07076883 +0 0.2679612 0.07076883 +0.002268731 0.2679612 0.07076883 +0.07076883 0.2679612 0.07076883 +0.1119241 0.2679612 0.07076883 +0.1475052 0.2679612 0.07076883 +0.1846606 0.2679612 0.07076883 +0.2245119 0.2679612 0.07076883 +0.2679612 0.2679612 0.07076883 +0.3158431 0.2679612 0.07076883 +0.3689944 0.2679612 0.07076883 +0.4282948 0.2679612 0.07076883 +0.494694 0.2679612 0.07076883 +0.5692344 0.2679612 0.07076883 +0.6530715 0.2679612 0.07076883 +0.7474945 0.2679612 0.07076883 +0.8539475 0.2679612 0.07076883 +0.974052 0.2679612 0.07076883 +1.113885 0.2679612 0.07076883 +1.27456 0.2679612 0.07076883 +1.458117 0.2679612 0.07076883 +1.667858 0.2679612 0.07076883 +1.907556 0.2679612 0.07076883 +2.181521 0.2679612 0.07076883 +2.494678 0.2679612 0.07076883 +2.852659 0.2679612 0.07076883 +3.261896 0.2679612 0.07076883 +3.729748 0.2679612 0.07076883 +4.264621 0.2679612 0.07076883 +4.876131 0.2679612 0.07076883 +5.575266 0.2679612 0.07076883 +6.374593 0.2679612 0.07076883 +0 0.3158431 0.07076883 +0 0.3158431 0.07076883 +0 0.3158431 0.07076883 +0.002268731 0.3158431 0.07076883 +0.07076883 0.3158431 0.07076883 +0.1119241 0.3158431 0.07076883 +0.1475052 0.3158431 0.07076883 +0.1846606 0.3158431 0.07076883 +0.2245119 0.3158431 0.07076883 +0.2679612 0.3158431 0.07076883 +0.3158431 0.3158431 0.07076883 +0.3689944 0.3158431 0.07076883 +0.4282948 0.3158431 0.07076883 +0.494694 0.3158431 0.07076883 +0.5692344 0.3158431 0.07076883 +0.6530715 0.3158431 0.07076883 +0.7474945 0.3158431 0.07076883 +0.8539475 0.3158431 0.07076883 +0.974052 0.3158431 0.07076883 +1.113885 0.3158431 0.07076883 +1.27456 0.3158431 0.07076883 +1.458117 0.3158431 0.07076883 +1.667858 0.3158431 0.07076883 +1.907556 0.3158431 0.07076883 +2.181521 0.3158431 0.07076883 +2.494678 0.3158431 0.07076883 +2.852659 0.3158431 0.07076883 +3.261896 0.3158431 0.07076883 +3.729748 0.3158431 0.07076883 +4.264621 0.3158431 0.07076883 +4.876131 0.3158431 0.07076883 +5.575266 0.3158431 0.07076883 +6.374593 0.3158431 0.07076883 +0 0.3689944 0.07076883 +0 0.3689944 0.07076883 +0 0.3689944 0.07076883 +0.002268731 0.3689944 0.07076883 +0.07076883 0.3689944 0.07076883 +0.1119241 0.3689944 0.07076883 +0.1475052 0.3689944 0.07076883 +0.1846606 0.3689944 0.07076883 +0.2245119 0.3689944 0.07076883 +0.2679612 0.3689944 0.07076883 +0.3158431 0.3689944 0.07076883 +0.3689944 0.3689944 0.07076883 +0.4282948 0.3689944 0.07076883 +0.494694 0.3689944 0.07076883 +0.5692344 0.3689944 0.07076883 +0.6530715 0.3689944 0.07076883 +0.7474945 0.3689944 0.07076883 +0.8539475 0.3689944 0.07076883 +0.974052 0.3689944 0.07076883 +1.113885 0.3689944 0.07076883 +1.27456 0.3689944 0.07076883 +1.458117 0.3689944 0.07076883 +1.667858 0.3689944 0.07076883 +1.907556 0.3689944 0.07076883 +2.181521 0.3689944 0.07076883 +2.494678 0.3689944 0.07076883 +2.852659 0.3689944 0.07076883 +3.261896 0.3689944 0.07076883 +3.729748 0.3689944 0.07076883 +4.264621 0.3689944 0.07076883 +4.876131 0.3689944 0.07076883 +5.575266 0.3689944 0.07076883 +6.374593 0.3689944 0.07076883 +0 0.4282948 0.07076883 +0 0.4282948 0.07076883 +0 0.4282948 0.07076883 +0.002268731 0.4282948 0.07076883 +0.07076883 0.4282948 0.07076883 +0.1119241 0.4282948 0.07076883 +0.1475052 0.4282948 0.07076883 +0.1846606 0.4282948 0.07076883 +0.2245119 0.4282948 0.07076883 +0.2679612 0.4282948 0.07076883 +0.3158431 0.4282948 0.07076883 +0.3689944 0.4282948 0.07076883 +0.4282948 0.4282948 0.07076883 +0.494694 0.4282948 0.07076883 +0.5692344 0.4282948 0.07076883 +0.6530715 0.4282948 0.07076883 +0.7474945 0.4282948 0.07076883 +0.8539475 0.4282948 0.07076883 +0.974052 0.4282948 0.07076883 +1.113885 0.4282948 0.07076883 +1.27456 0.4282948 0.07076883 +1.458117 0.4282948 0.07076883 +1.667858 0.4282948 0.07076883 +1.907556 0.4282948 0.07076883 +2.181521 0.4282948 0.07076883 +2.494678 0.4282948 0.07076883 +2.852659 0.4282948 0.07076883 +3.261896 0.4282948 0.07076883 +3.729748 0.4282948 0.07076883 +4.264621 0.4282948 0.07076883 +4.876131 0.4282948 0.07076883 +5.575266 0.4282948 0.07076883 +6.374593 0.4282948 0.07076883 +0 0.494694 0.07076883 +0 0.494694 0.07076883 +0 0.494694 0.07076883 +0.002268731 0.494694 0.07076883 +0.07076883 0.494694 0.07076883 +0.1119241 0.494694 0.07076883 +0.1475052 0.494694 0.07076883 +0.1846606 0.494694 0.07076883 +0.2245119 0.494694 0.07076883 +0.2679612 0.494694 0.07076883 +0.3158431 0.494694 0.07076883 +0.3689944 0.494694 0.07076883 +0.4282948 0.494694 0.07076883 +0.494694 0.494694 0.07076883 +0.5692344 0.494694 0.07076883 +0.6530715 0.494694 0.07076883 +0.7474945 0.494694 0.07076883 +0.8539475 0.494694 0.07076883 +0.974052 0.494694 0.07076883 +1.113885 0.494694 0.07076883 +1.27456 0.494694 0.07076883 +1.458117 0.494694 0.07076883 +1.667858 0.494694 0.07076883 +1.907556 0.494694 0.07076883 +2.181521 0.494694 0.07076883 +2.494678 0.494694 0.07076883 +2.852659 0.494694 0.07076883 +3.261896 0.494694 0.07076883 +3.729748 0.494694 0.07076883 +4.264621 0.494694 0.07076883 +4.876131 0.494694 0.07076883 +5.575266 0.494694 0.07076883 +6.374593 0.494694 0.07076883 +0 0.5692344 0.07076883 +0 0.5692344 0.07076883 +0 0.5692344 0.07076883 +0.002268731 0.5692344 0.07076883 +0.07076883 0.5692344 0.07076883 +0.1119241 0.5692344 0.07076883 +0.1475052 0.5692344 0.07076883 +0.1846606 0.5692344 0.07076883 +0.2245119 0.5692344 0.07076883 +0.2679612 0.5692344 0.07076883 +0.3158431 0.5692344 0.07076883 +0.3689944 0.5692344 0.07076883 +0.4282948 0.5692344 0.07076883 +0.494694 0.5692344 0.07076883 +0.5692344 0.5692344 0.07076883 +0.6530715 0.5692344 0.07076883 +0.7474945 0.5692344 0.07076883 +0.8539475 0.5692344 0.07076883 +0.974052 0.5692344 0.07076883 +1.113885 0.5692344 0.07076883 +1.27456 0.5692344 0.07076883 +1.458117 0.5692344 0.07076883 +1.667858 0.5692344 0.07076883 +1.907556 0.5692344 0.07076883 +2.181521 0.5692344 0.07076883 +2.494678 0.5692344 0.07076883 +2.852659 0.5692344 0.07076883 +3.261896 0.5692344 0.07076883 +3.729748 0.5692344 0.07076883 +4.264621 0.5692344 0.07076883 +4.876131 0.5692344 0.07076883 +5.575266 0.5692344 0.07076883 +6.374593 0.5692344 0.07076883 +0 0.6530715 0.07076883 +0 0.6530715 0.07076883 +0 0.6530715 0.07076883 +0.002268731 0.6530715 0.07076883 +0.07076883 0.6530715 0.07076883 +0.1119241 0.6530715 0.07076883 +0.1475052 0.6530715 0.07076883 +0.1846606 0.6530715 0.07076883 +0.2245119 0.6530715 0.07076883 +0.2679612 0.6530715 0.07076883 +0.3158431 0.6530715 0.07076883 +0.3689944 0.6530715 0.07076883 +0.4282948 0.6530715 0.07076883 +0.494694 0.6530715 0.07076883 +0.5692344 0.6530715 0.07076883 +0.6530715 0.6530715 0.07076883 +0.7474945 0.6530715 0.07076883 +0.8539475 0.6530715 0.07076883 +0.974052 0.6530715 0.07076883 +1.113885 0.6530715 0.07076883 +1.27456 0.6530715 0.07076883 +1.458117 0.6530715 0.07076883 +1.667858 0.6530715 0.07076883 +1.907556 0.6530715 0.07076883 +2.181521 0.6530715 0.07076883 +2.494678 0.6530715 0.07076883 +2.852659 0.6530715 0.07076883 +3.261896 0.6530715 0.07076883 +3.729748 0.6530715 0.07076883 +4.264621 0.6530715 0.07076883 +4.876131 0.6530715 0.07076883 +5.575266 0.6530715 0.07076883 +6.374593 0.6530715 0.07076883 +0 0.7474945 0.07076883 +0 0.7474945 0.07076883 +0 0.7474945 0.07076883 +0.002268731 0.7474945 0.07076883 +0.07076883 0.7474945 0.07076883 +0.1119241 0.7474945 0.07076883 +0.1475052 0.7474945 0.07076883 +0.1846606 0.7474945 0.07076883 +0.2245119 0.7474945 0.07076883 +0.2679612 0.7474945 0.07076883 +0.3158431 0.7474945 0.07076883 +0.3689944 0.7474945 0.07076883 +0.4282948 0.7474945 0.07076883 +0.494694 0.7474945 0.07076883 +0.5692344 0.7474945 0.07076883 +0.6530715 0.7474945 0.07076883 +0.7474945 0.7474945 0.07076883 +0.8539475 0.7474945 0.07076883 +0.974052 0.7474945 0.07076883 +1.113885 0.7474945 0.07076883 +1.27456 0.7474945 0.07076883 +1.458117 0.7474945 0.07076883 +1.667858 0.7474945 0.07076883 +1.907556 0.7474945 0.07076883 +2.181521 0.7474945 0.07076883 +2.494678 0.7474945 0.07076883 +2.852659 0.7474945 0.07076883 +3.261896 0.7474945 0.07076883 +3.729748 0.7474945 0.07076883 +4.264621 0.7474945 0.07076883 +4.876131 0.7474945 0.07076883 +5.575266 0.7474945 0.07076883 +6.374593 0.7474945 0.07076883 +0 0.8539475 0.07076883 +0 0.8539475 0.07076883 +0 0.8539475 0.07076883 +0.002268731 0.8539475 0.07076883 +0.07076883 0.8539475 0.07076883 +0.1119241 0.8539475 0.07076883 +0.1475052 0.8539475 0.07076883 +0.1846606 0.8539475 0.07076883 +0.2245119 0.8539475 0.07076883 +0.2679612 0.8539475 0.07076883 +0.3158431 0.8539475 0.07076883 +0.3689944 0.8539475 0.07076883 +0.4282948 0.8539475 0.07076883 +0.494694 0.8539475 0.07076883 +0.5692344 0.8539475 0.07076883 +0.6530715 0.8539475 0.07076883 +0.7474945 0.8539475 0.07076883 +0.8539475 0.8539475 0.07076883 +0.974052 0.8539475 0.07076883 +1.113885 0.8539475 0.07076883 +1.27456 0.8539475 0.07076883 +1.458117 0.8539475 0.07076883 +1.667858 0.8539475 0.07076883 +1.907556 0.8539475 0.07076883 +2.181521 0.8539475 0.07076883 +2.494678 0.8539475 0.07076883 +2.852659 0.8539475 0.07076883 +3.261896 0.8539475 0.07076883 +3.729748 0.8539475 0.07076883 +4.264621 0.8539475 0.07076883 +4.876131 0.8539475 0.07076883 +5.575266 0.8539475 0.07076883 +6.374593 0.8539475 0.07076883 +0 0.974052 0.07076883 +0 0.974052 0.07076883 +0 0.974052 0.07076883 +0.002268731 0.974052 0.07076883 +0.07076883 0.974052 0.07076883 +0.1119241 0.974052 0.07076883 +0.1475052 0.974052 0.07076883 +0.1846606 0.974052 0.07076883 +0.2245119 0.974052 0.07076883 +0.2679612 0.974052 0.07076883 +0.3158431 0.974052 0.07076883 +0.3689944 0.974052 0.07076883 +0.4282948 0.974052 0.07076883 +0.494694 0.974052 0.07076883 +0.5692344 0.974052 0.07076883 +0.6530715 0.974052 0.07076883 +0.7474945 0.974052 0.07076883 +0.8539475 0.974052 0.07076883 +0.974052 0.974052 0.07076883 +1.113885 0.974052 0.07076883 +1.27456 0.974052 0.07076883 +1.458117 0.974052 0.07076883 +1.667858 0.974052 0.07076883 +1.907556 0.974052 0.07076883 +2.181521 0.974052 0.07076883 +2.494678 0.974052 0.07076883 +2.852659 0.974052 0.07076883 +3.261896 0.974052 0.07076883 +3.729748 0.974052 0.07076883 +4.264621 0.974052 0.07076883 +4.876131 0.974052 0.07076883 +5.575266 0.974052 0.07076883 +6.374593 0.974052 0.07076883 +0 1.113885 0.07076883 +0 1.113885 0.07076883 +0 1.113885 0.07076883 +0.002268731 1.113885 0.07076883 +0.07076883 1.113885 0.07076883 +0.1119241 1.113885 0.07076883 +0.1475052 1.113885 0.07076883 +0.1846606 1.113885 0.07076883 +0.2245119 1.113885 0.07076883 +0.2679612 1.113885 0.07076883 +0.3158431 1.113885 0.07076883 +0.3689944 1.113885 0.07076883 +0.4282948 1.113885 0.07076883 +0.494694 1.113885 0.07076883 +0.5692344 1.113885 0.07076883 +0.6530715 1.113885 0.07076883 +0.7474945 1.113885 0.07076883 +0.8539475 1.113885 0.07076883 +0.974052 1.113885 0.07076883 +1.113885 1.113885 0.07076883 +1.27456 1.113885 0.07076883 +1.458117 1.113885 0.07076883 +1.667858 1.113885 0.07076883 +1.907556 1.113885 0.07076883 +2.181521 1.113885 0.07076883 +2.494678 1.113885 0.07076883 +2.852659 1.113885 0.07076883 +3.261896 1.113885 0.07076883 +3.729748 1.113885 0.07076883 +4.264621 1.113885 0.07076883 +4.876131 1.113885 0.07076883 +5.575266 1.113885 0.07076883 +6.374593 1.113885 0.07076883 +0 1.27456 0.07076883 +0 1.27456 0.07076883 +0 1.27456 0.07076883 +0.002268731 1.27456 0.07076883 +0.07076883 1.27456 0.07076883 +0.1119241 1.27456 0.07076883 +0.1475052 1.27456 0.07076883 +0.1846606 1.27456 0.07076883 +0.2245119 1.27456 0.07076883 +0.2679612 1.27456 0.07076883 +0.3158431 1.27456 0.07076883 +0.3689944 1.27456 0.07076883 +0.4282948 1.27456 0.07076883 +0.494694 1.27456 0.07076883 +0.5692344 1.27456 0.07076883 +0.6530715 1.27456 0.07076883 +0.7474945 1.27456 0.07076883 +0.8539475 1.27456 0.07076883 +0.974052 1.27456 0.07076883 +1.113885 1.27456 0.07076883 +1.27456 1.27456 0.07076883 +1.458117 1.27456 0.07076883 +1.667858 1.27456 0.07076883 +1.907556 1.27456 0.07076883 +2.181521 1.27456 0.07076883 +2.494678 1.27456 0.07076883 +2.852659 1.27456 0.07076883 +3.261896 1.27456 0.07076883 +3.729748 1.27456 0.07076883 +4.264621 1.27456 0.07076883 +4.876131 1.27456 0.07076883 +5.575266 1.27456 0.07076883 +6.374593 1.27456 0.07076883 +0 1.458117 0.07076883 +0 1.458117 0.07076883 +0 1.458117 0.07076883 +0.002268731 1.458117 0.07076883 +0.07076883 1.458117 0.07076883 +0.1119241 1.458117 0.07076883 +0.1475052 1.458117 0.07076883 +0.1846606 1.458117 0.07076883 +0.2245119 1.458117 0.07076883 +0.2679612 1.458117 0.07076883 +0.3158431 1.458117 0.07076883 +0.3689944 1.458117 0.07076883 +0.4282948 1.458117 0.07076883 +0.494694 1.458117 0.07076883 +0.5692344 1.458117 0.07076883 +0.6530715 1.458117 0.07076883 +0.7474945 1.458117 0.07076883 +0.8539475 1.458117 0.07076883 +0.974052 1.458117 0.07076883 +1.113885 1.458117 0.07076883 +1.27456 1.458117 0.07076883 +1.458117 1.458117 0.07076883 +1.667858 1.458117 0.07076883 +1.907556 1.458117 0.07076883 +2.181521 1.458117 0.07076883 +2.494678 1.458117 0.07076883 +2.852659 1.458117 0.07076883 +3.261896 1.458117 0.07076883 +3.729748 1.458117 0.07076883 +4.264621 1.458117 0.07076883 +4.876131 1.458117 0.07076883 +5.575266 1.458117 0.07076883 +6.374593 1.458117 0.07076883 +0 1.667858 0.07076883 +0 1.667858 0.07076883 +0 1.667858 0.07076883 +0.002268731 1.667858 0.07076883 +0.07076883 1.667858 0.07076883 +0.1119241 1.667858 0.07076883 +0.1475052 1.667858 0.07076883 +0.1846606 1.667858 0.07076883 +0.2245119 1.667858 0.07076883 +0.2679612 1.667858 0.07076883 +0.3158431 1.667858 0.07076883 +0.3689944 1.667858 0.07076883 +0.4282948 1.667858 0.07076883 +0.494694 1.667858 0.07076883 +0.5692344 1.667858 0.07076883 +0.6530715 1.667858 0.07076883 +0.7474945 1.667858 0.07076883 +0.8539475 1.667858 0.07076883 +0.974052 1.667858 0.07076883 +1.113885 1.667858 0.07076883 +1.27456 1.667858 0.07076883 +1.458117 1.667858 0.07076883 +1.667858 1.667858 0.07076883 +1.907556 1.667858 0.07076883 +2.181521 1.667858 0.07076883 +2.494678 1.667858 0.07076883 +2.852659 1.667858 0.07076883 +3.261896 1.667858 0.07076883 +3.729748 1.667858 0.07076883 +4.264621 1.667858 0.07076883 +4.876131 1.667858 0.07076883 +5.575266 1.667858 0.07076883 +6.374593 1.667858 0.07076883 +0 1.907556 0.07076883 +0 1.907556 0.07076883 +0 1.907556 0.07076883 +0.002268731 1.907556 0.07076883 +0.07076883 1.907556 0.07076883 +0.1119241 1.907556 0.07076883 +0.1475052 1.907556 0.07076883 +0.1846606 1.907556 0.07076883 +0.2245119 1.907556 0.07076883 +0.2679612 1.907556 0.07076883 +0.3158431 1.907556 0.07076883 +0.3689944 1.907556 0.07076883 +0.4282948 1.907556 0.07076883 +0.494694 1.907556 0.07076883 +0.5692344 1.907556 0.07076883 +0.6530715 1.907556 0.07076883 +0.7474945 1.907556 0.07076883 +0.8539475 1.907556 0.07076883 +0.974052 1.907556 0.07076883 +1.113885 1.907556 0.07076883 +1.27456 1.907556 0.07076883 +1.458117 1.907556 0.07076883 +1.667858 1.907556 0.07076883 +1.907556 1.907556 0.07076883 +2.181521 1.907556 0.07076883 +2.494678 1.907556 0.07076883 +2.852659 1.907556 0.07076883 +3.261896 1.907556 0.07076883 +3.729748 1.907556 0.07076883 +4.264621 1.907556 0.07076883 +4.876131 1.907556 0.07076883 +5.575266 1.907556 0.07076883 +6.374593 1.907556 0.07076883 +0 2.181521 0.07076883 +0 2.181521 0.07076883 +0 2.181521 0.07076883 +0.002268731 2.181521 0.07076883 +0.07076883 2.181521 0.07076883 +0.1119241 2.181521 0.07076883 +0.1475052 2.181521 0.07076883 +0.1846606 2.181521 0.07076883 +0.2245119 2.181521 0.07076883 +0.2679612 2.181521 0.07076883 +0.3158431 2.181521 0.07076883 +0.3689944 2.181521 0.07076883 +0.4282948 2.181521 0.07076883 +0.494694 2.181521 0.07076883 +0.5692344 2.181521 0.07076883 +0.6530715 2.181521 0.07076883 +0.7474945 2.181521 0.07076883 +0.8539475 2.181521 0.07076883 +0.974052 2.181521 0.07076883 +1.113885 2.181521 0.07076883 +1.27456 2.181521 0.07076883 +1.458117 2.181521 0.07076883 +1.667858 2.181521 0.07076883 +1.907556 2.181521 0.07076883 +2.181521 2.181521 0.07076883 +2.494678 2.181521 0.07076883 +2.852659 2.181521 0.07076883 +3.261896 2.181521 0.07076883 +3.729748 2.181521 0.07076883 +4.264621 2.181521 0.07076883 +4.876131 2.181521 0.07076883 +5.575266 2.181521 0.07076883 +6.374593 2.181521 0.07076883 +0 2.494678 0.07076883 +0 2.494678 0.07076883 +0 2.494678 0.07076883 +0.002268731 2.494678 0.07076883 +0.07076883 2.494678 0.07076883 +0.1119241 2.494678 0.07076883 +0.1475052 2.494678 0.07076883 +0.1846606 2.494678 0.07076883 +0.2245119 2.494678 0.07076883 +0.2679612 2.494678 0.07076883 +0.3158431 2.494678 0.07076883 +0.3689944 2.494678 0.07076883 +0.4282948 2.494678 0.07076883 +0.494694 2.494678 0.07076883 +0.5692344 2.494678 0.07076883 +0.6530715 2.494678 0.07076883 +0.7474945 2.494678 0.07076883 +0.8539475 2.494678 0.07076883 +0.974052 2.494678 0.07076883 +1.113885 2.494678 0.07076883 +1.27456 2.494678 0.07076883 +1.458117 2.494678 0.07076883 +1.667858 2.494678 0.07076883 +1.907556 2.494678 0.07076883 +2.181521 2.494678 0.07076883 +2.494678 2.494678 0.07076883 +2.852659 2.494678 0.07076883 +3.261896 2.494678 0.07076883 +3.729748 2.494678 0.07076883 +4.264621 2.494678 0.07076883 +4.876131 2.494678 0.07076883 +5.575266 2.494678 0.07076883 +6.374593 2.494678 0.07076883 +0 2.852659 0.07076883 +0 2.852659 0.07076883 +0 2.852659 0.07076883 +0.002268731 2.852659 0.07076883 +0.07076883 2.852659 0.07076883 +0.1119241 2.852659 0.07076883 +0.1475052 2.852659 0.07076883 +0.1846606 2.852659 0.07076883 +0.2245119 2.852659 0.07076883 +0.2679612 2.852659 0.07076883 +0.3158431 2.852659 0.07076883 +0.3689944 2.852659 0.07076883 +0.4282948 2.852659 0.07076883 +0.494694 2.852659 0.07076883 +0.5692344 2.852659 0.07076883 +0.6530715 2.852659 0.07076883 +0.7474945 2.852659 0.07076883 +0.8539475 2.852659 0.07076883 +0.974052 2.852659 0.07076883 +1.113885 2.852659 0.07076883 +1.27456 2.852659 0.07076883 +1.458117 2.852659 0.07076883 +1.667858 2.852659 0.07076883 +1.907556 2.852659 0.07076883 +2.181521 2.852659 0.07076883 +2.494678 2.852659 0.07076883 +2.852659 2.852659 0.07076883 +3.261896 2.852659 0.07076883 +3.729748 2.852659 0.07076883 +4.264621 2.852659 0.07076883 +4.876131 2.852659 0.07076883 +5.575266 2.852659 0.07076883 +6.374593 2.852659 0.07076883 +0 3.261896 0.07076883 +0 3.261896 0.07076883 +0 3.261896 0.07076883 +0.002268731 3.261896 0.07076883 +0.07076883 3.261896 0.07076883 +0.1119241 3.261896 0.07076883 +0.1475052 3.261896 0.07076883 +0.1846606 3.261896 0.07076883 +0.2245119 3.261896 0.07076883 +0.2679612 3.261896 0.07076883 +0.3158431 3.261896 0.07076883 +0.3689944 3.261896 0.07076883 +0.4282948 3.261896 0.07076883 +0.494694 3.261896 0.07076883 +0.5692344 3.261896 0.07076883 +0.6530715 3.261896 0.07076883 +0.7474945 3.261896 0.07076883 +0.8539475 3.261896 0.07076883 +0.974052 3.261896 0.07076883 +1.113885 3.261896 0.07076883 +1.27456 3.261896 0.07076883 +1.458117 3.261896 0.07076883 +1.667858 3.261896 0.07076883 +1.907556 3.261896 0.07076883 +2.181521 3.261896 0.07076883 +2.494678 3.261896 0.07076883 +2.852659 3.261896 0.07076883 +3.261896 3.261896 0.07076883 +3.729748 3.261896 0.07076883 +4.264621 3.261896 0.07076883 +4.876131 3.261896 0.07076883 +5.575266 3.261896 0.07076883 +6.374593 3.261896 0.07076883 +0 3.729748 0.07076883 +0 3.729748 0.07076883 +0 3.729748 0.07076883 +0.002268731 3.729748 0.07076883 +0.07076883 3.729748 0.07076883 +0.1119241 3.729748 0.07076883 +0.1475052 3.729748 0.07076883 +0.1846606 3.729748 0.07076883 +0.2245119 3.729748 0.07076883 +0.2679612 3.729748 0.07076883 +0.3158431 3.729748 0.07076883 +0.3689944 3.729748 0.07076883 +0.4282948 3.729748 0.07076883 +0.494694 3.729748 0.07076883 +0.5692344 3.729748 0.07076883 +0.6530715 3.729748 0.07076883 +0.7474945 3.729748 0.07076883 +0.8539475 3.729748 0.07076883 +0.974052 3.729748 0.07076883 +1.113885 3.729748 0.07076883 +1.27456 3.729748 0.07076883 +1.458117 3.729748 0.07076883 +1.667858 3.729748 0.07076883 +1.907556 3.729748 0.07076883 +2.181521 3.729748 0.07076883 +2.494678 3.729748 0.07076883 +2.852659 3.729748 0.07076883 +3.261896 3.729748 0.07076883 +3.729748 3.729748 0.07076883 +4.264621 3.729748 0.07076883 +4.876131 3.729748 0.07076883 +5.575266 3.729748 0.07076883 +6.374593 3.729748 0.07076883 +0 4.264621 0.07076883 +0 4.264621 0.07076883 +0 4.264621 0.07076883 +0.002268731 4.264621 0.07076883 +0.07076883 4.264621 0.07076883 +0.1119241 4.264621 0.07076883 +0.1475052 4.264621 0.07076883 +0.1846606 4.264621 0.07076883 +0.2245119 4.264621 0.07076883 +0.2679612 4.264621 0.07076883 +0.3158431 4.264621 0.07076883 +0.3689944 4.264621 0.07076883 +0.4282948 4.264621 0.07076883 +0.494694 4.264621 0.07076883 +0.5692344 4.264621 0.07076883 +0.6530715 4.264621 0.07076883 +0.7474945 4.264621 0.07076883 +0.8539475 4.264621 0.07076883 +0.974052 4.264621 0.07076883 +1.113885 4.264621 0.07076883 +1.27456 4.264621 0.07076883 +1.458117 4.264621 0.07076883 +1.667858 4.264621 0.07076883 +1.907556 4.264621 0.07076883 +2.181521 4.264621 0.07076883 +2.494678 4.264621 0.07076883 +2.852659 4.264621 0.07076883 +3.261896 4.264621 0.07076883 +3.729748 4.264621 0.07076883 +4.264621 4.264621 0.07076883 +4.876131 4.264621 0.07076883 +5.575266 4.264621 0.07076883 +6.374593 4.264621 0.07076883 +0 4.876131 0.07076883 +0 4.876131 0.07076883 +0 4.876131 0.07076883 +0.002268731 4.876131 0.07076883 +0.07076883 4.876131 0.07076883 +0.1119241 4.876131 0.07076883 +0.1475052 4.876131 0.07076883 +0.1846606 4.876131 0.07076883 +0.2245119 4.876131 0.07076883 +0.2679612 4.876131 0.07076883 +0.3158431 4.876131 0.07076883 +0.3689944 4.876131 0.07076883 +0.4282948 4.876131 0.07076883 +0.494694 4.876131 0.07076883 +0.5692344 4.876131 0.07076883 +0.6530715 4.876131 0.07076883 +0.7474945 4.876131 0.07076883 +0.8539475 4.876131 0.07076883 +0.974052 4.876131 0.07076883 +1.113885 4.876131 0.07076883 +1.27456 4.876131 0.07076883 +1.458117 4.876131 0.07076883 +1.667858 4.876131 0.07076883 +1.907556 4.876131 0.07076883 +2.181521 4.876131 0.07076883 +2.494678 4.876131 0.07076883 +2.852659 4.876131 0.07076883 +3.261896 4.876131 0.07076883 +3.729748 4.876131 0.07076883 +4.264621 4.876131 0.07076883 +4.876131 4.876131 0.07076883 +5.575266 4.876131 0.07076883 +6.374593 4.876131 0.07076883 +0 5.575266 0.07076883 +0 5.575266 0.07076883 +0 5.575266 0.07076883 +0.002268731 5.575266 0.07076883 +0.07076883 5.575266 0.07076883 +0.1119241 5.575266 0.07076883 +0.1475052 5.575266 0.07076883 +0.1846606 5.575266 0.07076883 +0.2245119 5.575266 0.07076883 +0.2679612 5.575266 0.07076883 +0.3158431 5.575266 0.07076883 +0.3689944 5.575266 0.07076883 +0.4282948 5.575266 0.07076883 +0.494694 5.575266 0.07076883 +0.5692344 5.575266 0.07076883 +0.6530715 5.575266 0.07076883 +0.7474945 5.575266 0.07076883 +0.8539475 5.575266 0.07076883 +0.974052 5.575266 0.07076883 +1.113885 5.575266 0.07076883 +1.27456 5.575266 0.07076883 +1.458117 5.575266 0.07076883 +1.667858 5.575266 0.07076883 +1.907556 5.575266 0.07076883 +2.181521 5.575266 0.07076883 +2.494678 5.575266 0.07076883 +2.852659 5.575266 0.07076883 +3.261896 5.575266 0.07076883 +3.729748 5.575266 0.07076883 +4.264621 5.575266 0.07076883 +4.876131 5.575266 0.07076883 +5.575266 5.575266 0.07076883 +6.374593 5.575266 0.07076883 +0 6.374593 0.07076883 +0 6.374593 0.07076883 +0 6.374593 0.07076883 +0.002268731 6.374593 0.07076883 +0.07076883 6.374593 0.07076883 +0.1119241 6.374593 0.07076883 +0.1475052 6.374593 0.07076883 +0.1846606 6.374593 0.07076883 +0.2245119 6.374593 0.07076883 +0.2679612 6.374593 0.07076883 +0.3158431 6.374593 0.07076883 +0.3689944 6.374593 0.07076883 +0.4282948 6.374593 0.07076883 +0.494694 6.374593 0.07076883 +0.5692344 6.374593 0.07076883 +0.6530715 6.374593 0.07076883 +0.7474945 6.374593 0.07076883 +0.8539475 6.374593 0.07076883 +0.974052 6.374593 0.07076883 +1.113885 6.374593 0.07076883 +1.27456 6.374593 0.07076883 +1.458117 6.374593 0.07076883 +1.667858 6.374593 0.07076883 +1.907556 6.374593 0.07076883 +2.181521 6.374593 0.07076883 +2.494678 6.374593 0.07076883 +2.852659 6.374593 0.07076883 +3.261896 6.374593 0.07076883 +3.729748 6.374593 0.07076883 +4.264621 6.374593 0.07076883 +4.876131 6.374593 0.07076883 +5.575266 6.374593 0.07076883 +6.374593 6.374593 0.07076883 +0 0 0.1119241 +0 0 0.1119241 +0 0 0.1119241 +0.002268731 0 0.1119241 +0.07076883 0 0.1119241 +0.1119241 0 0.1119241 +0.1475052 0 0.1119241 +0.1846606 0 0.1119241 +0.2245119 0 0.1119241 +0.2679612 0 0.1119241 +0.3158431 0 0.1119241 +0.3689944 0 0.1119241 +0.4282948 0 0.1119241 +0.494694 0 0.1119241 +0.5692344 0 0.1119241 +0.6530715 0 0.1119241 +0.7474945 0 0.1119241 +0.8539475 0 0.1119241 +0.974052 0 0.1119241 +1.113885 0 0.1119241 +1.27456 0 0.1119241 +1.458117 0 0.1119241 +1.667858 0 0.1119241 +1.907556 0 0.1119241 +2.181521 0 0.1119241 +2.494678 0 0.1119241 +2.852659 0 0.1119241 +3.261896 0 0.1119241 +3.729748 0 0.1119241 +4.264621 0 0.1119241 +4.876131 0 0.1119241 +5.575266 0 0.1119241 +6.374593 0 0.1119241 +0 0 0.1119241 +0 0 0.1119241 +0 0 0.1119241 +0.002268731 0 0.1119241 +0.07076883 0 0.1119241 +0.1119241 0 0.1119241 +0.1475052 0 0.1119241 +0.1846606 0 0.1119241 +0.2245119 0 0.1119241 +0.2679612 0 0.1119241 +0.3158431 0 0.1119241 +0.3689944 0 0.1119241 +0.4282948 0 0.1119241 +0.494694 0 0.1119241 +0.5692344 0 0.1119241 +0.6530715 0 0.1119241 +0.7474945 0 0.1119241 +0.8539475 0 0.1119241 +0.974052 0 0.1119241 +1.113885 0 0.1119241 +1.27456 0 0.1119241 +1.458117 0 0.1119241 +1.667858 0 0.1119241 +1.907556 0 0.1119241 +2.181521 0 0.1119241 +2.494678 0 0.1119241 +2.852659 0 0.1119241 +3.261896 0 0.1119241 +3.729748 0 0.1119241 +4.264621 0 0.1119241 +4.876131 0 0.1119241 +5.575266 0 0.1119241 +6.374593 0 0.1119241 +0 0 0.1119241 +0 0 0.1119241 +0 0 0.1119241 +0.002268731 0 0.1119241 +0.07076883 0 0.1119241 +0.1119241 0 0.1119241 +0.1475052 0 0.1119241 +0.1846606 0 0.1119241 +0.2245119 0 0.1119241 +0.2679612 0 0.1119241 +0.3158431 0 0.1119241 +0.3689944 0 0.1119241 +0.4282948 0 0.1119241 +0.494694 0 0.1119241 +0.5692344 0 0.1119241 +0.6530715 0 0.1119241 +0.7474945 0 0.1119241 +0.8539475 0 0.1119241 +0.974052 0 0.1119241 +1.113885 0 0.1119241 +1.27456 0 0.1119241 +1.458117 0 0.1119241 +1.667858 0 0.1119241 +1.907556 0 0.1119241 +2.181521 0 0.1119241 +2.494678 0 0.1119241 +2.852659 0 0.1119241 +3.261896 0 0.1119241 +3.729748 0 0.1119241 +4.264621 0 0.1119241 +4.876131 0 0.1119241 +5.575266 0 0.1119241 +6.374593 0 0.1119241 +0 0.002268731 0.1119241 +0 0.002268731 0.1119241 +0 0.002268731 0.1119241 +0.002268731 0.002268731 0.1119241 +0.07076883 0.002268731 0.1119241 +0.1119241 0.002268731 0.1119241 +0.1475052 0.002268731 0.1119241 +0.1846606 0.002268731 0.1119241 +0.2245119 0.002268731 0.1119241 +0.2679612 0.002268731 0.1119241 +0.3158431 0.002268731 0.1119241 +0.3689944 0.002268731 0.1119241 +0.4282948 0.002268731 0.1119241 +0.494694 0.002268731 0.1119241 +0.5692344 0.002268731 0.1119241 +0.6530715 0.002268731 0.1119241 +0.7474945 0.002268731 0.1119241 +0.8539475 0.002268731 0.1119241 +0.974052 0.002268731 0.1119241 +1.113885 0.002268731 0.1119241 +1.27456 0.002268731 0.1119241 +1.458117 0.002268731 0.1119241 +1.667858 0.002268731 0.1119241 +1.907556 0.002268731 0.1119241 +2.181521 0.002268731 0.1119241 +2.494678 0.002268731 0.1119241 +2.852659 0.002268731 0.1119241 +3.261896 0.002268731 0.1119241 +3.729748 0.002268731 0.1119241 +4.264621 0.002268731 0.1119241 +4.876131 0.002268731 0.1119241 +5.575266 0.002268731 0.1119241 +6.374593 0.002268731 0.1119241 +0 0.07076883 0.1119241 +0 0.07076883 0.1119241 +0 0.07076883 0.1119241 +0.002268731 0.07076883 0.1119241 +0.07076883 0.07076883 0.1119241 +0.1119241 0.07076883 0.1119241 +0.1475052 0.07076883 0.1119241 +0.1846606 0.07076883 0.1119241 +0.2245119 0.07076883 0.1119241 +0.2679612 0.07076883 0.1119241 +0.3158431 0.07076883 0.1119241 +0.3689944 0.07076883 0.1119241 +0.4282948 0.07076883 0.1119241 +0.494694 0.07076883 0.1119241 +0.5692344 0.07076883 0.1119241 +0.6530715 0.07076883 0.1119241 +0.7474945 0.07076883 0.1119241 +0.8539475 0.07076883 0.1119241 +0.974052 0.07076883 0.1119241 +1.113885 0.07076883 0.1119241 +1.27456 0.07076883 0.1119241 +1.458117 0.07076883 0.1119241 +1.667858 0.07076883 0.1119241 +1.907556 0.07076883 0.1119241 +2.181521 0.07076883 0.1119241 +2.494678 0.07076883 0.1119241 +2.852659 0.07076883 0.1119241 +3.261896 0.07076883 0.1119241 +3.729748 0.07076883 0.1119241 +4.264621 0.07076883 0.1119241 +4.876131 0.07076883 0.1119241 +5.575266 0.07076883 0.1119241 +6.374593 0.07076883 0.1119241 +0 0.1119241 0.1119241 +0 0.1119241 0.1119241 +0 0.1119241 0.1119241 +0.002268731 0.1119241 0.1119241 +0.07076883 0.1119241 0.1119241 +0.1119241 0.1119241 0.1119241 +0.1475052 0.1119241 0.1119241 +0.1846606 0.1119241 0.1119241 +0.2245119 0.1119241 0.1119241 +0.2679612 0.1119241 0.1119241 +0.3158431 0.1119241 0.1119241 +0.3689944 0.1119241 0.1119241 +0.4282948 0.1119241 0.1119241 +0.494694 0.1119241 0.1119241 +0.5692344 0.1119241 0.1119241 +0.6530715 0.1119241 0.1119241 +0.7474945 0.1119241 0.1119241 +0.8539475 0.1119241 0.1119241 +0.974052 0.1119241 0.1119241 +1.113885 0.1119241 0.1119241 +1.27456 0.1119241 0.1119241 +1.458117 0.1119241 0.1119241 +1.667858 0.1119241 0.1119241 +1.907556 0.1119241 0.1119241 +2.181521 0.1119241 0.1119241 +2.494678 0.1119241 0.1119241 +2.852659 0.1119241 0.1119241 +3.261896 0.1119241 0.1119241 +3.729748 0.1119241 0.1119241 +4.264621 0.1119241 0.1119241 +4.876131 0.1119241 0.1119241 +5.575266 0.1119241 0.1119241 +6.374593 0.1119241 0.1119241 +0 0.1475052 0.1119241 +0 0.1475052 0.1119241 +0 0.1475052 0.1119241 +0.002268731 0.1475052 0.1119241 +0.07076883 0.1475052 0.1119241 +0.1119241 0.1475052 0.1119241 +0.1475052 0.1475052 0.1119241 +0.1846606 0.1475052 0.1119241 +0.2245119 0.1475052 0.1119241 +0.2679612 0.1475052 0.1119241 +0.3158431 0.1475052 0.1119241 +0.3689944 0.1475052 0.1119241 +0.4282948 0.1475052 0.1119241 +0.494694 0.1475052 0.1119241 +0.5692344 0.1475052 0.1119241 +0.6530715 0.1475052 0.1119241 +0.7474945 0.1475052 0.1119241 +0.8539475 0.1475052 0.1119241 +0.974052 0.1475052 0.1119241 +1.113885 0.1475052 0.1119241 +1.27456 0.1475052 0.1119241 +1.458117 0.1475052 0.1119241 +1.667858 0.1475052 0.1119241 +1.907556 0.1475052 0.1119241 +2.181521 0.1475052 0.1119241 +2.494678 0.1475052 0.1119241 +2.852659 0.1475052 0.1119241 +3.261896 0.1475052 0.1119241 +3.729748 0.1475052 0.1119241 +4.264621 0.1475052 0.1119241 +4.876131 0.1475052 0.1119241 +5.575266 0.1475052 0.1119241 +6.374593 0.1475052 0.1119241 +0 0.1846606 0.1119241 +0 0.1846606 0.1119241 +0 0.1846606 0.1119241 +0.002268731 0.1846606 0.1119241 +0.07076883 0.1846606 0.1119241 +0.1119241 0.1846606 0.1119241 +0.1475052 0.1846606 0.1119241 +0.1846606 0.1846606 0.1119241 +0.2245119 0.1846606 0.1119241 +0.2679612 0.1846606 0.1119241 +0.3158431 0.1846606 0.1119241 +0.3689944 0.1846606 0.1119241 +0.4282948 0.1846606 0.1119241 +0.494694 0.1846606 0.1119241 +0.5692344 0.1846606 0.1119241 +0.6530715 0.1846606 0.1119241 +0.7474945 0.1846606 0.1119241 +0.8539475 0.1846606 0.1119241 +0.974052 0.1846606 0.1119241 +1.113885 0.1846606 0.1119241 +1.27456 0.1846606 0.1119241 +1.458117 0.1846606 0.1119241 +1.667858 0.1846606 0.1119241 +1.907556 0.1846606 0.1119241 +2.181521 0.1846606 0.1119241 +2.494678 0.1846606 0.1119241 +2.852659 0.1846606 0.1119241 +3.261896 0.1846606 0.1119241 +3.729748 0.1846606 0.1119241 +4.264621 0.1846606 0.1119241 +4.876131 0.1846606 0.1119241 +5.575266 0.1846606 0.1119241 +6.374593 0.1846606 0.1119241 +0 0.2245119 0.1119241 +0 0.2245119 0.1119241 +0 0.2245119 0.1119241 +0.002268731 0.2245119 0.1119241 +0.07076883 0.2245119 0.1119241 +0.1119241 0.2245119 0.1119241 +0.1475052 0.2245119 0.1119241 +0.1846606 0.2245119 0.1119241 +0.2245119 0.2245119 0.1119241 +0.2679612 0.2245119 0.1119241 +0.3158431 0.2245119 0.1119241 +0.3689944 0.2245119 0.1119241 +0.4282948 0.2245119 0.1119241 +0.494694 0.2245119 0.1119241 +0.5692344 0.2245119 0.1119241 +0.6530715 0.2245119 0.1119241 +0.7474945 0.2245119 0.1119241 +0.8539475 0.2245119 0.1119241 +0.974052 0.2245119 0.1119241 +1.113885 0.2245119 0.1119241 +1.27456 0.2245119 0.1119241 +1.458117 0.2245119 0.1119241 +1.667858 0.2245119 0.1119241 +1.907556 0.2245119 0.1119241 +2.181521 0.2245119 0.1119241 +2.494678 0.2245119 0.1119241 +2.852659 0.2245119 0.1119241 +3.261896 0.2245119 0.1119241 +3.729748 0.2245119 0.1119241 +4.264621 0.2245119 0.1119241 +4.876131 0.2245119 0.1119241 +5.575266 0.2245119 0.1119241 +6.374593 0.2245119 0.1119241 +0 0.2679612 0.1119241 +0 0.2679612 0.1119241 +0 0.2679612 0.1119241 +0.002268731 0.2679612 0.1119241 +0.07076883 0.2679612 0.1119241 +0.1119241 0.2679612 0.1119241 +0.1475052 0.2679612 0.1119241 +0.1846606 0.2679612 0.1119241 +0.2245119 0.2679612 0.1119241 +0.2679612 0.2679612 0.1119241 +0.3158431 0.2679612 0.1119241 +0.3689944 0.2679612 0.1119241 +0.4282948 0.2679612 0.1119241 +0.494694 0.2679612 0.1119241 +0.5692344 0.2679612 0.1119241 +0.6530715 0.2679612 0.1119241 +0.7474945 0.2679612 0.1119241 +0.8539475 0.2679612 0.1119241 +0.974052 0.2679612 0.1119241 +1.113885 0.2679612 0.1119241 +1.27456 0.2679612 0.1119241 +1.458117 0.2679612 0.1119241 +1.667858 0.2679612 0.1119241 +1.907556 0.2679612 0.1119241 +2.181521 0.2679612 0.1119241 +2.494678 0.2679612 0.1119241 +2.852659 0.2679612 0.1119241 +3.261896 0.2679612 0.1119241 +3.729748 0.2679612 0.1119241 +4.264621 0.2679612 0.1119241 +4.876131 0.2679612 0.1119241 +5.575266 0.2679612 0.1119241 +6.374593 0.2679612 0.1119241 +0 0.3158431 0.1119241 +0 0.3158431 0.1119241 +0 0.3158431 0.1119241 +0.002268731 0.3158431 0.1119241 +0.07076883 0.3158431 0.1119241 +0.1119241 0.3158431 0.1119241 +0.1475052 0.3158431 0.1119241 +0.1846606 0.3158431 0.1119241 +0.2245119 0.3158431 0.1119241 +0.2679612 0.3158431 0.1119241 +0.3158431 0.3158431 0.1119241 +0.3689944 0.3158431 0.1119241 +0.4282948 0.3158431 0.1119241 +0.494694 0.3158431 0.1119241 +0.5692344 0.3158431 0.1119241 +0.6530715 0.3158431 0.1119241 +0.7474945 0.3158431 0.1119241 +0.8539475 0.3158431 0.1119241 +0.974052 0.3158431 0.1119241 +1.113885 0.3158431 0.1119241 +1.27456 0.3158431 0.1119241 +1.458117 0.3158431 0.1119241 +1.667858 0.3158431 0.1119241 +1.907556 0.3158431 0.1119241 +2.181521 0.3158431 0.1119241 +2.494678 0.3158431 0.1119241 +2.852659 0.3158431 0.1119241 +3.261896 0.3158431 0.1119241 +3.729748 0.3158431 0.1119241 +4.264621 0.3158431 0.1119241 +4.876131 0.3158431 0.1119241 +5.575266 0.3158431 0.1119241 +6.374593 0.3158431 0.1119241 +0 0.3689944 0.1119241 +0 0.3689944 0.1119241 +0 0.3689944 0.1119241 +0.002268731 0.3689944 0.1119241 +0.07076883 0.3689944 0.1119241 +0.1119241 0.3689944 0.1119241 +0.1475052 0.3689944 0.1119241 +0.1846606 0.3689944 0.1119241 +0.2245119 0.3689944 0.1119241 +0.2679612 0.3689944 0.1119241 +0.3158431 0.3689944 0.1119241 +0.3689944 0.3689944 0.1119241 +0.4282948 0.3689944 0.1119241 +0.494694 0.3689944 0.1119241 +0.5692344 0.3689944 0.1119241 +0.6530715 0.3689944 0.1119241 +0.7474945 0.3689944 0.1119241 +0.8539475 0.3689944 0.1119241 +0.974052 0.3689944 0.1119241 +1.113885 0.3689944 0.1119241 +1.27456 0.3689944 0.1119241 +1.458117 0.3689944 0.1119241 +1.667858 0.3689944 0.1119241 +1.907556 0.3689944 0.1119241 +2.181521 0.3689944 0.1119241 +2.494678 0.3689944 0.1119241 +2.852659 0.3689944 0.1119241 +3.261896 0.3689944 0.1119241 +3.729748 0.3689944 0.1119241 +4.264621 0.3689944 0.1119241 +4.876131 0.3689944 0.1119241 +5.575266 0.3689944 0.1119241 +6.374593 0.3689944 0.1119241 +0 0.4282948 0.1119241 +0 0.4282948 0.1119241 +0 0.4282948 0.1119241 +0.002268731 0.4282948 0.1119241 +0.07076883 0.4282948 0.1119241 +0.1119241 0.4282948 0.1119241 +0.1475052 0.4282948 0.1119241 +0.1846606 0.4282948 0.1119241 +0.2245119 0.4282948 0.1119241 +0.2679612 0.4282948 0.1119241 +0.3158431 0.4282948 0.1119241 +0.3689944 0.4282948 0.1119241 +0.4282948 0.4282948 0.1119241 +0.494694 0.4282948 0.1119241 +0.5692344 0.4282948 0.1119241 +0.6530715 0.4282948 0.1119241 +0.7474945 0.4282948 0.1119241 +0.8539475 0.4282948 0.1119241 +0.974052 0.4282948 0.1119241 +1.113885 0.4282948 0.1119241 +1.27456 0.4282948 0.1119241 +1.458117 0.4282948 0.1119241 +1.667858 0.4282948 0.1119241 +1.907556 0.4282948 0.1119241 +2.181521 0.4282948 0.1119241 +2.494678 0.4282948 0.1119241 +2.852659 0.4282948 0.1119241 +3.261896 0.4282948 0.1119241 +3.729748 0.4282948 0.1119241 +4.264621 0.4282948 0.1119241 +4.876131 0.4282948 0.1119241 +5.575266 0.4282948 0.1119241 +6.374593 0.4282948 0.1119241 +0 0.494694 0.1119241 +0 0.494694 0.1119241 +0 0.494694 0.1119241 +0.002268731 0.494694 0.1119241 +0.07076883 0.494694 0.1119241 +0.1119241 0.494694 0.1119241 +0.1475052 0.494694 0.1119241 +0.1846606 0.494694 0.1119241 +0.2245119 0.494694 0.1119241 +0.2679612 0.494694 0.1119241 +0.3158431 0.494694 0.1119241 +0.3689944 0.494694 0.1119241 +0.4282948 0.494694 0.1119241 +0.494694 0.494694 0.1119241 +0.5692344 0.494694 0.1119241 +0.6530715 0.494694 0.1119241 +0.7474945 0.494694 0.1119241 +0.8539475 0.494694 0.1119241 +0.974052 0.494694 0.1119241 +1.113885 0.494694 0.1119241 +1.27456 0.494694 0.1119241 +1.458117 0.494694 0.1119241 +1.667858 0.494694 0.1119241 +1.907556 0.494694 0.1119241 +2.181521 0.494694 0.1119241 +2.494678 0.494694 0.1119241 +2.852659 0.494694 0.1119241 +3.261896 0.494694 0.1119241 +3.729748 0.494694 0.1119241 +4.264621 0.494694 0.1119241 +4.876131 0.494694 0.1119241 +5.575266 0.494694 0.1119241 +6.374593 0.494694 0.1119241 +0 0.5692344 0.1119241 +0 0.5692344 0.1119241 +0 0.5692344 0.1119241 +0.002268731 0.5692344 0.1119241 +0.07076883 0.5692344 0.1119241 +0.1119241 0.5692344 0.1119241 +0.1475052 0.5692344 0.1119241 +0.1846606 0.5692344 0.1119241 +0.2245119 0.5692344 0.1119241 +0.2679612 0.5692344 0.1119241 +0.3158431 0.5692344 0.1119241 +0.3689944 0.5692344 0.1119241 +0.4282948 0.5692344 0.1119241 +0.494694 0.5692344 0.1119241 +0.5692344 0.5692344 0.1119241 +0.6530715 0.5692344 0.1119241 +0.7474945 0.5692344 0.1119241 +0.8539475 0.5692344 0.1119241 +0.974052 0.5692344 0.1119241 +1.113885 0.5692344 0.1119241 +1.27456 0.5692344 0.1119241 +1.458117 0.5692344 0.1119241 +1.667858 0.5692344 0.1119241 +1.907556 0.5692344 0.1119241 +2.181521 0.5692344 0.1119241 +2.494678 0.5692344 0.1119241 +2.852659 0.5692344 0.1119241 +3.261896 0.5692344 0.1119241 +3.729748 0.5692344 0.1119241 +4.264621 0.5692344 0.1119241 +4.876131 0.5692344 0.1119241 +5.575266 0.5692344 0.1119241 +6.374593 0.5692344 0.1119241 +0 0.6530715 0.1119241 +0 0.6530715 0.1119241 +0 0.6530715 0.1119241 +0.002268731 0.6530715 0.1119241 +0.07076883 0.6530715 0.1119241 +0.1119241 0.6530715 0.1119241 +0.1475052 0.6530715 0.1119241 +0.1846606 0.6530715 0.1119241 +0.2245119 0.6530715 0.1119241 +0.2679612 0.6530715 0.1119241 +0.3158431 0.6530715 0.1119241 +0.3689944 0.6530715 0.1119241 +0.4282948 0.6530715 0.1119241 +0.494694 0.6530715 0.1119241 +0.5692344 0.6530715 0.1119241 +0.6530715 0.6530715 0.1119241 +0.7474945 0.6530715 0.1119241 +0.8539475 0.6530715 0.1119241 +0.974052 0.6530715 0.1119241 +1.113885 0.6530715 0.1119241 +1.27456 0.6530715 0.1119241 +1.458117 0.6530715 0.1119241 +1.667858 0.6530715 0.1119241 +1.907556 0.6530715 0.1119241 +2.181521 0.6530715 0.1119241 +2.494678 0.6530715 0.1119241 +2.852659 0.6530715 0.1119241 +3.261896 0.6530715 0.1119241 +3.729748 0.6530715 0.1119241 +4.264621 0.6530715 0.1119241 +4.876131 0.6530715 0.1119241 +5.575266 0.6530715 0.1119241 +6.374593 0.6530715 0.1119241 +0 0.7474945 0.1119241 +0 0.7474945 0.1119241 +0 0.7474945 0.1119241 +0.002268731 0.7474945 0.1119241 +0.07076883 0.7474945 0.1119241 +0.1119241 0.7474945 0.1119241 +0.1475052 0.7474945 0.1119241 +0.1846606 0.7474945 0.1119241 +0.2245119 0.7474945 0.1119241 +0.2679612 0.7474945 0.1119241 +0.3158431 0.7474945 0.1119241 +0.3689944 0.7474945 0.1119241 +0.4282948 0.7474945 0.1119241 +0.494694 0.7474945 0.1119241 +0.5692344 0.7474945 0.1119241 +0.6530715 0.7474945 0.1119241 +0.7474945 0.7474945 0.1119241 +0.8539475 0.7474945 0.1119241 +0.974052 0.7474945 0.1119241 +1.113885 0.7474945 0.1119241 +1.27456 0.7474945 0.1119241 +1.458117 0.7474945 0.1119241 +1.667858 0.7474945 0.1119241 +1.907556 0.7474945 0.1119241 +2.181521 0.7474945 0.1119241 +2.494678 0.7474945 0.1119241 +2.852659 0.7474945 0.1119241 +3.261896 0.7474945 0.1119241 +3.729748 0.7474945 0.1119241 +4.264621 0.7474945 0.1119241 +4.876131 0.7474945 0.1119241 +5.575266 0.7474945 0.1119241 +6.374593 0.7474945 0.1119241 +0 0.8539475 0.1119241 +0 0.8539475 0.1119241 +0 0.8539475 0.1119241 +0.002268731 0.8539475 0.1119241 +0.07076883 0.8539475 0.1119241 +0.1119241 0.8539475 0.1119241 +0.1475052 0.8539475 0.1119241 +0.1846606 0.8539475 0.1119241 +0.2245119 0.8539475 0.1119241 +0.2679612 0.8539475 0.1119241 +0.3158431 0.8539475 0.1119241 +0.3689944 0.8539475 0.1119241 +0.4282948 0.8539475 0.1119241 +0.494694 0.8539475 0.1119241 +0.5692344 0.8539475 0.1119241 +0.6530715 0.8539475 0.1119241 +0.7474945 0.8539475 0.1119241 +0.8539475 0.8539475 0.1119241 +0.974052 0.8539475 0.1119241 +1.113885 0.8539475 0.1119241 +1.27456 0.8539475 0.1119241 +1.458117 0.8539475 0.1119241 +1.667858 0.8539475 0.1119241 +1.907556 0.8539475 0.1119241 +2.181521 0.8539475 0.1119241 +2.494678 0.8539475 0.1119241 +2.852659 0.8539475 0.1119241 +3.261896 0.8539475 0.1119241 +3.729748 0.8539475 0.1119241 +4.264621 0.8539475 0.1119241 +4.876131 0.8539475 0.1119241 +5.575266 0.8539475 0.1119241 +6.374593 0.8539475 0.1119241 +0 0.974052 0.1119241 +0 0.974052 0.1119241 +0 0.974052 0.1119241 +0.002268731 0.974052 0.1119241 +0.07076883 0.974052 0.1119241 +0.1119241 0.974052 0.1119241 +0.1475052 0.974052 0.1119241 +0.1846606 0.974052 0.1119241 +0.2245119 0.974052 0.1119241 +0.2679612 0.974052 0.1119241 +0.3158431 0.974052 0.1119241 +0.3689944 0.974052 0.1119241 +0.4282948 0.974052 0.1119241 +0.494694 0.974052 0.1119241 +0.5692344 0.974052 0.1119241 +0.6530715 0.974052 0.1119241 +0.7474945 0.974052 0.1119241 +0.8539475 0.974052 0.1119241 +0.974052 0.974052 0.1119241 +1.113885 0.974052 0.1119241 +1.27456 0.974052 0.1119241 +1.458117 0.974052 0.1119241 +1.667858 0.974052 0.1119241 +1.907556 0.974052 0.1119241 +2.181521 0.974052 0.1119241 +2.494678 0.974052 0.1119241 +2.852659 0.974052 0.1119241 +3.261896 0.974052 0.1119241 +3.729748 0.974052 0.1119241 +4.264621 0.974052 0.1119241 +4.876131 0.974052 0.1119241 +5.575266 0.974052 0.1119241 +6.374593 0.974052 0.1119241 +0 1.113885 0.1119241 +0 1.113885 0.1119241 +0 1.113885 0.1119241 +0.002268731 1.113885 0.1119241 +0.07076883 1.113885 0.1119241 +0.1119241 1.113885 0.1119241 +0.1475052 1.113885 0.1119241 +0.1846606 1.113885 0.1119241 +0.2245119 1.113885 0.1119241 +0.2679612 1.113885 0.1119241 +0.3158431 1.113885 0.1119241 +0.3689944 1.113885 0.1119241 +0.4282948 1.113885 0.1119241 +0.494694 1.113885 0.1119241 +0.5692344 1.113885 0.1119241 +0.6530715 1.113885 0.1119241 +0.7474945 1.113885 0.1119241 +0.8539475 1.113885 0.1119241 +0.974052 1.113885 0.1119241 +1.113885 1.113885 0.1119241 +1.27456 1.113885 0.1119241 +1.458117 1.113885 0.1119241 +1.667858 1.113885 0.1119241 +1.907556 1.113885 0.1119241 +2.181521 1.113885 0.1119241 +2.494678 1.113885 0.1119241 +2.852659 1.113885 0.1119241 +3.261896 1.113885 0.1119241 +3.729748 1.113885 0.1119241 +4.264621 1.113885 0.1119241 +4.876131 1.113885 0.1119241 +5.575266 1.113885 0.1119241 +6.374593 1.113885 0.1119241 +0 1.27456 0.1119241 +0 1.27456 0.1119241 +0 1.27456 0.1119241 +0.002268731 1.27456 0.1119241 +0.07076883 1.27456 0.1119241 +0.1119241 1.27456 0.1119241 +0.1475052 1.27456 0.1119241 +0.1846606 1.27456 0.1119241 +0.2245119 1.27456 0.1119241 +0.2679612 1.27456 0.1119241 +0.3158431 1.27456 0.1119241 +0.3689944 1.27456 0.1119241 +0.4282948 1.27456 0.1119241 +0.494694 1.27456 0.1119241 +0.5692344 1.27456 0.1119241 +0.6530715 1.27456 0.1119241 +0.7474945 1.27456 0.1119241 +0.8539475 1.27456 0.1119241 +0.974052 1.27456 0.1119241 +1.113885 1.27456 0.1119241 +1.27456 1.27456 0.1119241 +1.458117 1.27456 0.1119241 +1.667858 1.27456 0.1119241 +1.907556 1.27456 0.1119241 +2.181521 1.27456 0.1119241 +2.494678 1.27456 0.1119241 +2.852659 1.27456 0.1119241 +3.261896 1.27456 0.1119241 +3.729748 1.27456 0.1119241 +4.264621 1.27456 0.1119241 +4.876131 1.27456 0.1119241 +5.575266 1.27456 0.1119241 +6.374593 1.27456 0.1119241 +0 1.458117 0.1119241 +0 1.458117 0.1119241 +0 1.458117 0.1119241 +0.002268731 1.458117 0.1119241 +0.07076883 1.458117 0.1119241 +0.1119241 1.458117 0.1119241 +0.1475052 1.458117 0.1119241 +0.1846606 1.458117 0.1119241 +0.2245119 1.458117 0.1119241 +0.2679612 1.458117 0.1119241 +0.3158431 1.458117 0.1119241 +0.3689944 1.458117 0.1119241 +0.4282948 1.458117 0.1119241 +0.494694 1.458117 0.1119241 +0.5692344 1.458117 0.1119241 +0.6530715 1.458117 0.1119241 +0.7474945 1.458117 0.1119241 +0.8539475 1.458117 0.1119241 +0.974052 1.458117 0.1119241 +1.113885 1.458117 0.1119241 +1.27456 1.458117 0.1119241 +1.458117 1.458117 0.1119241 +1.667858 1.458117 0.1119241 +1.907556 1.458117 0.1119241 +2.181521 1.458117 0.1119241 +2.494678 1.458117 0.1119241 +2.852659 1.458117 0.1119241 +3.261896 1.458117 0.1119241 +3.729748 1.458117 0.1119241 +4.264621 1.458117 0.1119241 +4.876131 1.458117 0.1119241 +5.575266 1.458117 0.1119241 +6.374593 1.458117 0.1119241 +0 1.667858 0.1119241 +0 1.667858 0.1119241 +0 1.667858 0.1119241 +0.002268731 1.667858 0.1119241 +0.07076883 1.667858 0.1119241 +0.1119241 1.667858 0.1119241 +0.1475052 1.667858 0.1119241 +0.1846606 1.667858 0.1119241 +0.2245119 1.667858 0.1119241 +0.2679612 1.667858 0.1119241 +0.3158431 1.667858 0.1119241 +0.3689944 1.667858 0.1119241 +0.4282948 1.667858 0.1119241 +0.494694 1.667858 0.1119241 +0.5692344 1.667858 0.1119241 +0.6530715 1.667858 0.1119241 +0.7474945 1.667858 0.1119241 +0.8539475 1.667858 0.1119241 +0.974052 1.667858 0.1119241 +1.113885 1.667858 0.1119241 +1.27456 1.667858 0.1119241 +1.458117 1.667858 0.1119241 +1.667858 1.667858 0.1119241 +1.907556 1.667858 0.1119241 +2.181521 1.667858 0.1119241 +2.494678 1.667858 0.1119241 +2.852659 1.667858 0.1119241 +3.261896 1.667858 0.1119241 +3.729748 1.667858 0.1119241 +4.264621 1.667858 0.1119241 +4.876131 1.667858 0.1119241 +5.575266 1.667858 0.1119241 +6.374593 1.667858 0.1119241 +0 1.907556 0.1119241 +0 1.907556 0.1119241 +0 1.907556 0.1119241 +0.002268731 1.907556 0.1119241 +0.07076883 1.907556 0.1119241 +0.1119241 1.907556 0.1119241 +0.1475052 1.907556 0.1119241 +0.1846606 1.907556 0.1119241 +0.2245119 1.907556 0.1119241 +0.2679612 1.907556 0.1119241 +0.3158431 1.907556 0.1119241 +0.3689944 1.907556 0.1119241 +0.4282948 1.907556 0.1119241 +0.494694 1.907556 0.1119241 +0.5692344 1.907556 0.1119241 +0.6530715 1.907556 0.1119241 +0.7474945 1.907556 0.1119241 +0.8539475 1.907556 0.1119241 +0.974052 1.907556 0.1119241 +1.113885 1.907556 0.1119241 +1.27456 1.907556 0.1119241 +1.458117 1.907556 0.1119241 +1.667858 1.907556 0.1119241 +1.907556 1.907556 0.1119241 +2.181521 1.907556 0.1119241 +2.494678 1.907556 0.1119241 +2.852659 1.907556 0.1119241 +3.261896 1.907556 0.1119241 +3.729748 1.907556 0.1119241 +4.264621 1.907556 0.1119241 +4.876131 1.907556 0.1119241 +5.575266 1.907556 0.1119241 +6.374593 1.907556 0.1119241 +0 2.181521 0.1119241 +0 2.181521 0.1119241 +0 2.181521 0.1119241 +0.002268731 2.181521 0.1119241 +0.07076883 2.181521 0.1119241 +0.1119241 2.181521 0.1119241 +0.1475052 2.181521 0.1119241 +0.1846606 2.181521 0.1119241 +0.2245119 2.181521 0.1119241 +0.2679612 2.181521 0.1119241 +0.3158431 2.181521 0.1119241 +0.3689944 2.181521 0.1119241 +0.4282948 2.181521 0.1119241 +0.494694 2.181521 0.1119241 +0.5692344 2.181521 0.1119241 +0.6530715 2.181521 0.1119241 +0.7474945 2.181521 0.1119241 +0.8539475 2.181521 0.1119241 +0.974052 2.181521 0.1119241 +1.113885 2.181521 0.1119241 +1.27456 2.181521 0.1119241 +1.458117 2.181521 0.1119241 +1.667858 2.181521 0.1119241 +1.907556 2.181521 0.1119241 +2.181521 2.181521 0.1119241 +2.494678 2.181521 0.1119241 +2.852659 2.181521 0.1119241 +3.261896 2.181521 0.1119241 +3.729748 2.181521 0.1119241 +4.264621 2.181521 0.1119241 +4.876131 2.181521 0.1119241 +5.575266 2.181521 0.1119241 +6.374593 2.181521 0.1119241 +0 2.494678 0.1119241 +0 2.494678 0.1119241 +0 2.494678 0.1119241 +0.002268731 2.494678 0.1119241 +0.07076883 2.494678 0.1119241 +0.1119241 2.494678 0.1119241 +0.1475052 2.494678 0.1119241 +0.1846606 2.494678 0.1119241 +0.2245119 2.494678 0.1119241 +0.2679612 2.494678 0.1119241 +0.3158431 2.494678 0.1119241 +0.3689944 2.494678 0.1119241 +0.4282948 2.494678 0.1119241 +0.494694 2.494678 0.1119241 +0.5692344 2.494678 0.1119241 +0.6530715 2.494678 0.1119241 +0.7474945 2.494678 0.1119241 +0.8539475 2.494678 0.1119241 +0.974052 2.494678 0.1119241 +1.113885 2.494678 0.1119241 +1.27456 2.494678 0.1119241 +1.458117 2.494678 0.1119241 +1.667858 2.494678 0.1119241 +1.907556 2.494678 0.1119241 +2.181521 2.494678 0.1119241 +2.494678 2.494678 0.1119241 +2.852659 2.494678 0.1119241 +3.261896 2.494678 0.1119241 +3.729748 2.494678 0.1119241 +4.264621 2.494678 0.1119241 +4.876131 2.494678 0.1119241 +5.575266 2.494678 0.1119241 +6.374593 2.494678 0.1119241 +0 2.852659 0.1119241 +0 2.852659 0.1119241 +0 2.852659 0.1119241 +0.002268731 2.852659 0.1119241 +0.07076883 2.852659 0.1119241 +0.1119241 2.852659 0.1119241 +0.1475052 2.852659 0.1119241 +0.1846606 2.852659 0.1119241 +0.2245119 2.852659 0.1119241 +0.2679612 2.852659 0.1119241 +0.3158431 2.852659 0.1119241 +0.3689944 2.852659 0.1119241 +0.4282948 2.852659 0.1119241 +0.494694 2.852659 0.1119241 +0.5692344 2.852659 0.1119241 +0.6530715 2.852659 0.1119241 +0.7474945 2.852659 0.1119241 +0.8539475 2.852659 0.1119241 +0.974052 2.852659 0.1119241 +1.113885 2.852659 0.1119241 +1.27456 2.852659 0.1119241 +1.458117 2.852659 0.1119241 +1.667858 2.852659 0.1119241 +1.907556 2.852659 0.1119241 +2.181521 2.852659 0.1119241 +2.494678 2.852659 0.1119241 +2.852659 2.852659 0.1119241 +3.261896 2.852659 0.1119241 +3.729748 2.852659 0.1119241 +4.264621 2.852659 0.1119241 +4.876131 2.852659 0.1119241 +5.575266 2.852659 0.1119241 +6.374593 2.852659 0.1119241 +0 3.261896 0.1119241 +0 3.261896 0.1119241 +0 3.261896 0.1119241 +0.002268731 3.261896 0.1119241 +0.07076883 3.261896 0.1119241 +0.1119241 3.261896 0.1119241 +0.1475052 3.261896 0.1119241 +0.1846606 3.261896 0.1119241 +0.2245119 3.261896 0.1119241 +0.2679612 3.261896 0.1119241 +0.3158431 3.261896 0.1119241 +0.3689944 3.261896 0.1119241 +0.4282948 3.261896 0.1119241 +0.494694 3.261896 0.1119241 +0.5692344 3.261896 0.1119241 +0.6530715 3.261896 0.1119241 +0.7474945 3.261896 0.1119241 +0.8539475 3.261896 0.1119241 +0.974052 3.261896 0.1119241 +1.113885 3.261896 0.1119241 +1.27456 3.261896 0.1119241 +1.458117 3.261896 0.1119241 +1.667858 3.261896 0.1119241 +1.907556 3.261896 0.1119241 +2.181521 3.261896 0.1119241 +2.494678 3.261896 0.1119241 +2.852659 3.261896 0.1119241 +3.261896 3.261896 0.1119241 +3.729748 3.261896 0.1119241 +4.264621 3.261896 0.1119241 +4.876131 3.261896 0.1119241 +5.575266 3.261896 0.1119241 +6.374593 3.261896 0.1119241 +0 3.729748 0.1119241 +0 3.729748 0.1119241 +0 3.729748 0.1119241 +0.002268731 3.729748 0.1119241 +0.07076883 3.729748 0.1119241 +0.1119241 3.729748 0.1119241 +0.1475052 3.729748 0.1119241 +0.1846606 3.729748 0.1119241 +0.2245119 3.729748 0.1119241 +0.2679612 3.729748 0.1119241 +0.3158431 3.729748 0.1119241 +0.3689944 3.729748 0.1119241 +0.4282948 3.729748 0.1119241 +0.494694 3.729748 0.1119241 +0.5692344 3.729748 0.1119241 +0.6530715 3.729748 0.1119241 +0.7474945 3.729748 0.1119241 +0.8539475 3.729748 0.1119241 +0.974052 3.729748 0.1119241 +1.113885 3.729748 0.1119241 +1.27456 3.729748 0.1119241 +1.458117 3.729748 0.1119241 +1.667858 3.729748 0.1119241 +1.907556 3.729748 0.1119241 +2.181521 3.729748 0.1119241 +2.494678 3.729748 0.1119241 +2.852659 3.729748 0.1119241 +3.261896 3.729748 0.1119241 +3.729748 3.729748 0.1119241 +4.264621 3.729748 0.1119241 +4.876131 3.729748 0.1119241 +5.575266 3.729748 0.1119241 +6.374593 3.729748 0.1119241 +0 4.264621 0.1119241 +0 4.264621 0.1119241 +0 4.264621 0.1119241 +0.002268731 4.264621 0.1119241 +0.07076883 4.264621 0.1119241 +0.1119241 4.264621 0.1119241 +0.1475052 4.264621 0.1119241 +0.1846606 4.264621 0.1119241 +0.2245119 4.264621 0.1119241 +0.2679612 4.264621 0.1119241 +0.3158431 4.264621 0.1119241 +0.3689944 4.264621 0.1119241 +0.4282948 4.264621 0.1119241 +0.494694 4.264621 0.1119241 +0.5692344 4.264621 0.1119241 +0.6530715 4.264621 0.1119241 +0.7474945 4.264621 0.1119241 +0.8539475 4.264621 0.1119241 +0.974052 4.264621 0.1119241 +1.113885 4.264621 0.1119241 +1.27456 4.264621 0.1119241 +1.458117 4.264621 0.1119241 +1.667858 4.264621 0.1119241 +1.907556 4.264621 0.1119241 +2.181521 4.264621 0.1119241 +2.494678 4.264621 0.1119241 +2.852659 4.264621 0.1119241 +3.261896 4.264621 0.1119241 +3.729748 4.264621 0.1119241 +4.264621 4.264621 0.1119241 +4.876131 4.264621 0.1119241 +5.575266 4.264621 0.1119241 +6.374593 4.264621 0.1119241 +0 4.876131 0.1119241 +0 4.876131 0.1119241 +0 4.876131 0.1119241 +0.002268731 4.876131 0.1119241 +0.07076883 4.876131 0.1119241 +0.1119241 4.876131 0.1119241 +0.1475052 4.876131 0.1119241 +0.1846606 4.876131 0.1119241 +0.2245119 4.876131 0.1119241 +0.2679612 4.876131 0.1119241 +0.3158431 4.876131 0.1119241 +0.3689944 4.876131 0.1119241 +0.4282948 4.876131 0.1119241 +0.494694 4.876131 0.1119241 +0.5692344 4.876131 0.1119241 +0.6530715 4.876131 0.1119241 +0.7474945 4.876131 0.1119241 +0.8539475 4.876131 0.1119241 +0.974052 4.876131 0.1119241 +1.113885 4.876131 0.1119241 +1.27456 4.876131 0.1119241 +1.458117 4.876131 0.1119241 +1.667858 4.876131 0.1119241 +1.907556 4.876131 0.1119241 +2.181521 4.876131 0.1119241 +2.494678 4.876131 0.1119241 +2.852659 4.876131 0.1119241 +3.261896 4.876131 0.1119241 +3.729748 4.876131 0.1119241 +4.264621 4.876131 0.1119241 +4.876131 4.876131 0.1119241 +5.575266 4.876131 0.1119241 +6.374593 4.876131 0.1119241 +0 5.575266 0.1119241 +0 5.575266 0.1119241 +0 5.575266 0.1119241 +0.002268731 5.575266 0.1119241 +0.07076883 5.575266 0.1119241 +0.1119241 5.575266 0.1119241 +0.1475052 5.575266 0.1119241 +0.1846606 5.575266 0.1119241 +0.2245119 5.575266 0.1119241 +0.2679612 5.575266 0.1119241 +0.3158431 5.575266 0.1119241 +0.3689944 5.575266 0.1119241 +0.4282948 5.575266 0.1119241 +0.494694 5.575266 0.1119241 +0.5692344 5.575266 0.1119241 +0.6530715 5.575266 0.1119241 +0.7474945 5.575266 0.1119241 +0.8539475 5.575266 0.1119241 +0.974052 5.575266 0.1119241 +1.113885 5.575266 0.1119241 +1.27456 5.575266 0.1119241 +1.458117 5.575266 0.1119241 +1.667858 5.575266 0.1119241 +1.907556 5.575266 0.1119241 +2.181521 5.575266 0.1119241 +2.494678 5.575266 0.1119241 +2.852659 5.575266 0.1119241 +3.261896 5.575266 0.1119241 +3.729748 5.575266 0.1119241 +4.264621 5.575266 0.1119241 +4.876131 5.575266 0.1119241 +5.575266 5.575266 0.1119241 +6.374593 5.575266 0.1119241 +0 6.374593 0.1119241 +0 6.374593 0.1119241 +0 6.374593 0.1119241 +0.002268731 6.374593 0.1119241 +0.07076883 6.374593 0.1119241 +0.1119241 6.374593 0.1119241 +0.1475052 6.374593 0.1119241 +0.1846606 6.374593 0.1119241 +0.2245119 6.374593 0.1119241 +0.2679612 6.374593 0.1119241 +0.3158431 6.374593 0.1119241 +0.3689944 6.374593 0.1119241 +0.4282948 6.374593 0.1119241 +0.494694 6.374593 0.1119241 +0.5692344 6.374593 0.1119241 +0.6530715 6.374593 0.1119241 +0.7474945 6.374593 0.1119241 +0.8539475 6.374593 0.1119241 +0.974052 6.374593 0.1119241 +1.113885 6.374593 0.1119241 +1.27456 6.374593 0.1119241 +1.458117 6.374593 0.1119241 +1.667858 6.374593 0.1119241 +1.907556 6.374593 0.1119241 +2.181521 6.374593 0.1119241 +2.494678 6.374593 0.1119241 +2.852659 6.374593 0.1119241 +3.261896 6.374593 0.1119241 +3.729748 6.374593 0.1119241 +4.264621 6.374593 0.1119241 +4.876131 6.374593 0.1119241 +5.575266 6.374593 0.1119241 +6.374593 6.374593 0.1119241 +0 0 0.1475052 +0 0 0.1475052 +0 0 0.1475052 +0.002268731 0 0.1475052 +0.07076883 0 0.1475052 +0.1119241 0 0.1475052 +0.1475052 0 0.1475052 +0.1846606 0 0.1475052 +0.2245119 0 0.1475052 +0.2679612 0 0.1475052 +0.3158431 0 0.1475052 +0.3689944 0 0.1475052 +0.4282948 0 0.1475052 +0.494694 0 0.1475052 +0.5692344 0 0.1475052 +0.6530715 0 0.1475052 +0.7474945 0 0.1475052 +0.8539475 0 0.1475052 +0.974052 0 0.1475052 +1.113885 0 0.1475052 +1.27456 0 0.1475052 +1.458117 0 0.1475052 +1.667858 0 0.1475052 +1.907556 0 0.1475052 +2.181521 0 0.1475052 +2.494678 0 0.1475052 +2.852659 0 0.1475052 +3.261896 0 0.1475052 +3.729748 0 0.1475052 +4.264621 0 0.1475052 +4.876131 0 0.1475052 +5.575266 0 0.1475052 +6.374593 0 0.1475052 +0 0 0.1475052 +0 0 0.1475052 +0 0 0.1475052 +0.002268731 0 0.1475052 +0.07076883 0 0.1475052 +0.1119241 0 0.1475052 +0.1475052 0 0.1475052 +0.1846606 0 0.1475052 +0.2245119 0 0.1475052 +0.2679612 0 0.1475052 +0.3158431 0 0.1475052 +0.3689944 0 0.1475052 +0.4282948 0 0.1475052 +0.494694 0 0.1475052 +0.5692344 0 0.1475052 +0.6530715 0 0.1475052 +0.7474945 0 0.1475052 +0.8539475 0 0.1475052 +0.974052 0 0.1475052 +1.113885 0 0.1475052 +1.27456 0 0.1475052 +1.458117 0 0.1475052 +1.667858 0 0.1475052 +1.907556 0 0.1475052 +2.181521 0 0.1475052 +2.494678 0 0.1475052 +2.852659 0 0.1475052 +3.261896 0 0.1475052 +3.729748 0 0.1475052 +4.264621 0 0.1475052 +4.876131 0 0.1475052 +5.575266 0 0.1475052 +6.374593 0 0.1475052 +0 0 0.1475052 +0 0 0.1475052 +0 0 0.1475052 +0.002268731 0 0.1475052 +0.07076883 0 0.1475052 +0.1119241 0 0.1475052 +0.1475052 0 0.1475052 +0.1846606 0 0.1475052 +0.2245119 0 0.1475052 +0.2679612 0 0.1475052 +0.3158431 0 0.1475052 +0.3689944 0 0.1475052 +0.4282948 0 0.1475052 +0.494694 0 0.1475052 +0.5692344 0 0.1475052 +0.6530715 0 0.1475052 +0.7474945 0 0.1475052 +0.8539475 0 0.1475052 +0.974052 0 0.1475052 +1.113885 0 0.1475052 +1.27456 0 0.1475052 +1.458117 0 0.1475052 +1.667858 0 0.1475052 +1.907556 0 0.1475052 +2.181521 0 0.1475052 +2.494678 0 0.1475052 +2.852659 0 0.1475052 +3.261896 0 0.1475052 +3.729748 0 0.1475052 +4.264621 0 0.1475052 +4.876131 0 0.1475052 +5.575266 0 0.1475052 +6.374593 0 0.1475052 +0 0.002268731 0.1475052 +0 0.002268731 0.1475052 +0 0.002268731 0.1475052 +0.002268731 0.002268731 0.1475052 +0.07076883 0.002268731 0.1475052 +0.1119241 0.002268731 0.1475052 +0.1475052 0.002268731 0.1475052 +0.1846606 0.002268731 0.1475052 +0.2245119 0.002268731 0.1475052 +0.2679612 0.002268731 0.1475052 +0.3158431 0.002268731 0.1475052 +0.3689944 0.002268731 0.1475052 +0.4282948 0.002268731 0.1475052 +0.494694 0.002268731 0.1475052 +0.5692344 0.002268731 0.1475052 +0.6530715 0.002268731 0.1475052 +0.7474945 0.002268731 0.1475052 +0.8539475 0.002268731 0.1475052 +0.974052 0.002268731 0.1475052 +1.113885 0.002268731 0.1475052 +1.27456 0.002268731 0.1475052 +1.458117 0.002268731 0.1475052 +1.667858 0.002268731 0.1475052 +1.907556 0.002268731 0.1475052 +2.181521 0.002268731 0.1475052 +2.494678 0.002268731 0.1475052 +2.852659 0.002268731 0.1475052 +3.261896 0.002268731 0.1475052 +3.729748 0.002268731 0.1475052 +4.264621 0.002268731 0.1475052 +4.876131 0.002268731 0.1475052 +5.575266 0.002268731 0.1475052 +6.374593 0.002268731 0.1475052 +0 0.07076883 0.1475052 +0 0.07076883 0.1475052 +0 0.07076883 0.1475052 +0.002268731 0.07076883 0.1475052 +0.07076883 0.07076883 0.1475052 +0.1119241 0.07076883 0.1475052 +0.1475052 0.07076883 0.1475052 +0.1846606 0.07076883 0.1475052 +0.2245119 0.07076883 0.1475052 +0.2679612 0.07076883 0.1475052 +0.3158431 0.07076883 0.1475052 +0.3689944 0.07076883 0.1475052 +0.4282948 0.07076883 0.1475052 +0.494694 0.07076883 0.1475052 +0.5692344 0.07076883 0.1475052 +0.6530715 0.07076883 0.1475052 +0.7474945 0.07076883 0.1475052 +0.8539475 0.07076883 0.1475052 +0.974052 0.07076883 0.1475052 +1.113885 0.07076883 0.1475052 +1.27456 0.07076883 0.1475052 +1.458117 0.07076883 0.1475052 +1.667858 0.07076883 0.1475052 +1.907556 0.07076883 0.1475052 +2.181521 0.07076883 0.1475052 +2.494678 0.07076883 0.1475052 +2.852659 0.07076883 0.1475052 +3.261896 0.07076883 0.1475052 +3.729748 0.07076883 0.1475052 +4.264621 0.07076883 0.1475052 +4.876131 0.07076883 0.1475052 +5.575266 0.07076883 0.1475052 +6.374593 0.07076883 0.1475052 +0 0.1119241 0.1475052 +0 0.1119241 0.1475052 +0 0.1119241 0.1475052 +0.002268731 0.1119241 0.1475052 +0.07076883 0.1119241 0.1475052 +0.1119241 0.1119241 0.1475052 +0.1475052 0.1119241 0.1475052 +0.1846606 0.1119241 0.1475052 +0.2245119 0.1119241 0.1475052 +0.2679612 0.1119241 0.1475052 +0.3158431 0.1119241 0.1475052 +0.3689944 0.1119241 0.1475052 +0.4282948 0.1119241 0.1475052 +0.494694 0.1119241 0.1475052 +0.5692344 0.1119241 0.1475052 +0.6530715 0.1119241 0.1475052 +0.7474945 0.1119241 0.1475052 +0.8539475 0.1119241 0.1475052 +0.974052 0.1119241 0.1475052 +1.113885 0.1119241 0.1475052 +1.27456 0.1119241 0.1475052 +1.458117 0.1119241 0.1475052 +1.667858 0.1119241 0.1475052 +1.907556 0.1119241 0.1475052 +2.181521 0.1119241 0.1475052 +2.494678 0.1119241 0.1475052 +2.852659 0.1119241 0.1475052 +3.261896 0.1119241 0.1475052 +3.729748 0.1119241 0.1475052 +4.264621 0.1119241 0.1475052 +4.876131 0.1119241 0.1475052 +5.575266 0.1119241 0.1475052 +6.374593 0.1119241 0.1475052 +0 0.1475052 0.1475052 +0 0.1475052 0.1475052 +0 0.1475052 0.1475052 +0.002268731 0.1475052 0.1475052 +0.07076883 0.1475052 0.1475052 +0.1119241 0.1475052 0.1475052 +0.1475052 0.1475052 0.1475052 +0.1846606 0.1475052 0.1475052 +0.2245119 0.1475052 0.1475052 +0.2679612 0.1475052 0.1475052 +0.3158431 0.1475052 0.1475052 +0.3689944 0.1475052 0.1475052 +0.4282948 0.1475052 0.1475052 +0.494694 0.1475052 0.1475052 +0.5692344 0.1475052 0.1475052 +0.6530715 0.1475052 0.1475052 +0.7474945 0.1475052 0.1475052 +0.8539475 0.1475052 0.1475052 +0.974052 0.1475052 0.1475052 +1.113885 0.1475052 0.1475052 +1.27456 0.1475052 0.1475052 +1.458117 0.1475052 0.1475052 +1.667858 0.1475052 0.1475052 +1.907556 0.1475052 0.1475052 +2.181521 0.1475052 0.1475052 +2.494678 0.1475052 0.1475052 +2.852659 0.1475052 0.1475052 +3.261896 0.1475052 0.1475052 +3.729748 0.1475052 0.1475052 +4.264621 0.1475052 0.1475052 +4.876131 0.1475052 0.1475052 +5.575266 0.1475052 0.1475052 +6.374593 0.1475052 0.1475052 +0 0.1846606 0.1475052 +0 0.1846606 0.1475052 +0 0.1846606 0.1475052 +0.002268731 0.1846606 0.1475052 +0.07076883 0.1846606 0.1475052 +0.1119241 0.1846606 0.1475052 +0.1475052 0.1846606 0.1475052 +0.1846606 0.1846606 0.1475052 +0.2245119 0.1846606 0.1475052 +0.2679612 0.1846606 0.1475052 +0.3158431 0.1846606 0.1475052 +0.3689944 0.1846606 0.1475052 +0.4282948 0.1846606 0.1475052 +0.494694 0.1846606 0.1475052 +0.5692344 0.1846606 0.1475052 +0.6530715 0.1846606 0.1475052 +0.7474945 0.1846606 0.1475052 +0.8539475 0.1846606 0.1475052 +0.974052 0.1846606 0.1475052 +1.113885 0.1846606 0.1475052 +1.27456 0.1846606 0.1475052 +1.458117 0.1846606 0.1475052 +1.667858 0.1846606 0.1475052 +1.907556 0.1846606 0.1475052 +2.181521 0.1846606 0.1475052 +2.494678 0.1846606 0.1475052 +2.852659 0.1846606 0.1475052 +3.261896 0.1846606 0.1475052 +3.729748 0.1846606 0.1475052 +4.264621 0.1846606 0.1475052 +4.876131 0.1846606 0.1475052 +5.575266 0.1846606 0.1475052 +6.374593 0.1846606 0.1475052 +0 0.2245119 0.1475052 +0 0.2245119 0.1475052 +0 0.2245119 0.1475052 +0.002268731 0.2245119 0.1475052 +0.07076883 0.2245119 0.1475052 +0.1119241 0.2245119 0.1475052 +0.1475052 0.2245119 0.1475052 +0.1846606 0.2245119 0.1475052 +0.2245119 0.2245119 0.1475052 +0.2679612 0.2245119 0.1475052 +0.3158431 0.2245119 0.1475052 +0.3689944 0.2245119 0.1475052 +0.4282948 0.2245119 0.1475052 +0.494694 0.2245119 0.1475052 +0.5692344 0.2245119 0.1475052 +0.6530715 0.2245119 0.1475052 +0.7474945 0.2245119 0.1475052 +0.8539475 0.2245119 0.1475052 +0.974052 0.2245119 0.1475052 +1.113885 0.2245119 0.1475052 +1.27456 0.2245119 0.1475052 +1.458117 0.2245119 0.1475052 +1.667858 0.2245119 0.1475052 +1.907556 0.2245119 0.1475052 +2.181521 0.2245119 0.1475052 +2.494678 0.2245119 0.1475052 +2.852659 0.2245119 0.1475052 +3.261896 0.2245119 0.1475052 +3.729748 0.2245119 0.1475052 +4.264621 0.2245119 0.1475052 +4.876131 0.2245119 0.1475052 +5.575266 0.2245119 0.1475052 +6.374593 0.2245119 0.1475052 +0 0.2679612 0.1475052 +0 0.2679612 0.1475052 +0 0.2679612 0.1475052 +0.002268731 0.2679612 0.1475052 +0.07076883 0.2679612 0.1475052 +0.1119241 0.2679612 0.1475052 +0.1475052 0.2679612 0.1475052 +0.1846606 0.2679612 0.1475052 +0.2245119 0.2679612 0.1475052 +0.2679612 0.2679612 0.1475052 +0.3158431 0.2679612 0.1475052 +0.3689944 0.2679612 0.1475052 +0.4282948 0.2679612 0.1475052 +0.494694 0.2679612 0.1475052 +0.5692344 0.2679612 0.1475052 +0.6530715 0.2679612 0.1475052 +0.7474945 0.2679612 0.1475052 +0.8539475 0.2679612 0.1475052 +0.974052 0.2679612 0.1475052 +1.113885 0.2679612 0.1475052 +1.27456 0.2679612 0.1475052 +1.458117 0.2679612 0.1475052 +1.667858 0.2679612 0.1475052 +1.907556 0.2679612 0.1475052 +2.181521 0.2679612 0.1475052 +2.494678 0.2679612 0.1475052 +2.852659 0.2679612 0.1475052 +3.261896 0.2679612 0.1475052 +3.729748 0.2679612 0.1475052 +4.264621 0.2679612 0.1475052 +4.876131 0.2679612 0.1475052 +5.575266 0.2679612 0.1475052 +6.374593 0.2679612 0.1475052 +0 0.3158431 0.1475052 +0 0.3158431 0.1475052 +0 0.3158431 0.1475052 +0.002268731 0.3158431 0.1475052 +0.07076883 0.3158431 0.1475052 +0.1119241 0.3158431 0.1475052 +0.1475052 0.3158431 0.1475052 +0.1846606 0.3158431 0.1475052 +0.2245119 0.3158431 0.1475052 +0.2679612 0.3158431 0.1475052 +0.3158431 0.3158431 0.1475052 +0.3689944 0.3158431 0.1475052 +0.4282948 0.3158431 0.1475052 +0.494694 0.3158431 0.1475052 +0.5692344 0.3158431 0.1475052 +0.6530715 0.3158431 0.1475052 +0.7474945 0.3158431 0.1475052 +0.8539475 0.3158431 0.1475052 +0.974052 0.3158431 0.1475052 +1.113885 0.3158431 0.1475052 +1.27456 0.3158431 0.1475052 +1.458117 0.3158431 0.1475052 +1.667858 0.3158431 0.1475052 +1.907556 0.3158431 0.1475052 +2.181521 0.3158431 0.1475052 +2.494678 0.3158431 0.1475052 +2.852659 0.3158431 0.1475052 +3.261896 0.3158431 0.1475052 +3.729748 0.3158431 0.1475052 +4.264621 0.3158431 0.1475052 +4.876131 0.3158431 0.1475052 +5.575266 0.3158431 0.1475052 +6.374593 0.3158431 0.1475052 +0 0.3689944 0.1475052 +0 0.3689944 0.1475052 +0 0.3689944 0.1475052 +0.002268731 0.3689944 0.1475052 +0.07076883 0.3689944 0.1475052 +0.1119241 0.3689944 0.1475052 +0.1475052 0.3689944 0.1475052 +0.1846606 0.3689944 0.1475052 +0.2245119 0.3689944 0.1475052 +0.2679612 0.3689944 0.1475052 +0.3158431 0.3689944 0.1475052 +0.3689944 0.3689944 0.1475052 +0.4282948 0.3689944 0.1475052 +0.494694 0.3689944 0.1475052 +0.5692344 0.3689944 0.1475052 +0.6530715 0.3689944 0.1475052 +0.7474945 0.3689944 0.1475052 +0.8539475 0.3689944 0.1475052 +0.974052 0.3689944 0.1475052 +1.113885 0.3689944 0.1475052 +1.27456 0.3689944 0.1475052 +1.458117 0.3689944 0.1475052 +1.667858 0.3689944 0.1475052 +1.907556 0.3689944 0.1475052 +2.181521 0.3689944 0.1475052 +2.494678 0.3689944 0.1475052 +2.852659 0.3689944 0.1475052 +3.261896 0.3689944 0.1475052 +3.729748 0.3689944 0.1475052 +4.264621 0.3689944 0.1475052 +4.876131 0.3689944 0.1475052 +5.575266 0.3689944 0.1475052 +6.374593 0.3689944 0.1475052 +0 0.4282948 0.1475052 +0 0.4282948 0.1475052 +0 0.4282948 0.1475052 +0.002268731 0.4282948 0.1475052 +0.07076883 0.4282948 0.1475052 +0.1119241 0.4282948 0.1475052 +0.1475052 0.4282948 0.1475052 +0.1846606 0.4282948 0.1475052 +0.2245119 0.4282948 0.1475052 +0.2679612 0.4282948 0.1475052 +0.3158431 0.4282948 0.1475052 +0.3689944 0.4282948 0.1475052 +0.4282948 0.4282948 0.1475052 +0.494694 0.4282948 0.1475052 +0.5692344 0.4282948 0.1475052 +0.6530715 0.4282948 0.1475052 +0.7474945 0.4282948 0.1475052 +0.8539475 0.4282948 0.1475052 +0.974052 0.4282948 0.1475052 +1.113885 0.4282948 0.1475052 +1.27456 0.4282948 0.1475052 +1.458117 0.4282948 0.1475052 +1.667858 0.4282948 0.1475052 +1.907556 0.4282948 0.1475052 +2.181521 0.4282948 0.1475052 +2.494678 0.4282948 0.1475052 +2.852659 0.4282948 0.1475052 +3.261896 0.4282948 0.1475052 +3.729748 0.4282948 0.1475052 +4.264621 0.4282948 0.1475052 +4.876131 0.4282948 0.1475052 +5.575266 0.4282948 0.1475052 +6.374593 0.4282948 0.1475052 +0 0.494694 0.1475052 +0 0.494694 0.1475052 +0 0.494694 0.1475052 +0.002268731 0.494694 0.1475052 +0.07076883 0.494694 0.1475052 +0.1119241 0.494694 0.1475052 +0.1475052 0.494694 0.1475052 +0.1846606 0.494694 0.1475052 +0.2245119 0.494694 0.1475052 +0.2679612 0.494694 0.1475052 +0.3158431 0.494694 0.1475052 +0.3689944 0.494694 0.1475052 +0.4282948 0.494694 0.1475052 +0.494694 0.494694 0.1475052 +0.5692344 0.494694 0.1475052 +0.6530715 0.494694 0.1475052 +0.7474945 0.494694 0.1475052 +0.8539475 0.494694 0.1475052 +0.974052 0.494694 0.1475052 +1.113885 0.494694 0.1475052 +1.27456 0.494694 0.1475052 +1.458117 0.494694 0.1475052 +1.667858 0.494694 0.1475052 +1.907556 0.494694 0.1475052 +2.181521 0.494694 0.1475052 +2.494678 0.494694 0.1475052 +2.852659 0.494694 0.1475052 +3.261896 0.494694 0.1475052 +3.729748 0.494694 0.1475052 +4.264621 0.494694 0.1475052 +4.876131 0.494694 0.1475052 +5.575266 0.494694 0.1475052 +6.374593 0.494694 0.1475052 +0 0.5692344 0.1475052 +0 0.5692344 0.1475052 +0 0.5692344 0.1475052 +0.002268731 0.5692344 0.1475052 +0.07076883 0.5692344 0.1475052 +0.1119241 0.5692344 0.1475052 +0.1475052 0.5692344 0.1475052 +0.1846606 0.5692344 0.1475052 +0.2245119 0.5692344 0.1475052 +0.2679612 0.5692344 0.1475052 +0.3158431 0.5692344 0.1475052 +0.3689944 0.5692344 0.1475052 +0.4282948 0.5692344 0.1475052 +0.494694 0.5692344 0.1475052 +0.5692344 0.5692344 0.1475052 +0.6530715 0.5692344 0.1475052 +0.7474945 0.5692344 0.1475052 +0.8539475 0.5692344 0.1475052 +0.974052 0.5692344 0.1475052 +1.113885 0.5692344 0.1475052 +1.27456 0.5692344 0.1475052 +1.458117 0.5692344 0.1475052 +1.667858 0.5692344 0.1475052 +1.907556 0.5692344 0.1475052 +2.181521 0.5692344 0.1475052 +2.494678 0.5692344 0.1475052 +2.852659 0.5692344 0.1475052 +3.261896 0.5692344 0.1475052 +3.729748 0.5692344 0.1475052 +4.264621 0.5692344 0.1475052 +4.876131 0.5692344 0.1475052 +5.575266 0.5692344 0.1475052 +6.374593 0.5692344 0.1475052 +0 0.6530715 0.1475052 +0 0.6530715 0.1475052 +0 0.6530715 0.1475052 +0.002268731 0.6530715 0.1475052 +0.07076883 0.6530715 0.1475052 +0.1119241 0.6530715 0.1475052 +0.1475052 0.6530715 0.1475052 +0.1846606 0.6530715 0.1475052 +0.2245119 0.6530715 0.1475052 +0.2679612 0.6530715 0.1475052 +0.3158431 0.6530715 0.1475052 +0.3689944 0.6530715 0.1475052 +0.4282948 0.6530715 0.1475052 +0.494694 0.6530715 0.1475052 +0.5692344 0.6530715 0.1475052 +0.6530715 0.6530715 0.1475052 +0.7474945 0.6530715 0.1475052 +0.8539475 0.6530715 0.1475052 +0.974052 0.6530715 0.1475052 +1.113885 0.6530715 0.1475052 +1.27456 0.6530715 0.1475052 +1.458117 0.6530715 0.1475052 +1.667858 0.6530715 0.1475052 +1.907556 0.6530715 0.1475052 +2.181521 0.6530715 0.1475052 +2.494678 0.6530715 0.1475052 +2.852659 0.6530715 0.1475052 +3.261896 0.6530715 0.1475052 +3.729748 0.6530715 0.1475052 +4.264621 0.6530715 0.1475052 +4.876131 0.6530715 0.1475052 +5.575266 0.6530715 0.1475052 +6.374593 0.6530715 0.1475052 +0 0.7474945 0.1475052 +0 0.7474945 0.1475052 +0 0.7474945 0.1475052 +0.002268731 0.7474945 0.1475052 +0.07076883 0.7474945 0.1475052 +0.1119241 0.7474945 0.1475052 +0.1475052 0.7474945 0.1475052 +0.1846606 0.7474945 0.1475052 +0.2245119 0.7474945 0.1475052 +0.2679612 0.7474945 0.1475052 +0.3158431 0.7474945 0.1475052 +0.3689944 0.7474945 0.1475052 +0.4282948 0.7474945 0.1475052 +0.494694 0.7474945 0.1475052 +0.5692344 0.7474945 0.1475052 +0.6530715 0.7474945 0.1475052 +0.7474945 0.7474945 0.1475052 +0.8539475 0.7474945 0.1475052 +0.974052 0.7474945 0.1475052 +1.113885 0.7474945 0.1475052 +1.27456 0.7474945 0.1475052 +1.458117 0.7474945 0.1475052 +1.667858 0.7474945 0.1475052 +1.907556 0.7474945 0.1475052 +2.181521 0.7474945 0.1475052 +2.494678 0.7474945 0.1475052 +2.852659 0.7474945 0.1475052 +3.261896 0.7474945 0.1475052 +3.729748 0.7474945 0.1475052 +4.264621 0.7474945 0.1475052 +4.876131 0.7474945 0.1475052 +5.575266 0.7474945 0.1475052 +6.374593 0.7474945 0.1475052 +0 0.8539475 0.1475052 +0 0.8539475 0.1475052 +0 0.8539475 0.1475052 +0.002268731 0.8539475 0.1475052 +0.07076883 0.8539475 0.1475052 +0.1119241 0.8539475 0.1475052 +0.1475052 0.8539475 0.1475052 +0.1846606 0.8539475 0.1475052 +0.2245119 0.8539475 0.1475052 +0.2679612 0.8539475 0.1475052 +0.3158431 0.8539475 0.1475052 +0.3689944 0.8539475 0.1475052 +0.4282948 0.8539475 0.1475052 +0.494694 0.8539475 0.1475052 +0.5692344 0.8539475 0.1475052 +0.6530715 0.8539475 0.1475052 +0.7474945 0.8539475 0.1475052 +0.8539475 0.8539475 0.1475052 +0.974052 0.8539475 0.1475052 +1.113885 0.8539475 0.1475052 +1.27456 0.8539475 0.1475052 +1.458117 0.8539475 0.1475052 +1.667858 0.8539475 0.1475052 +1.907556 0.8539475 0.1475052 +2.181521 0.8539475 0.1475052 +2.494678 0.8539475 0.1475052 +2.852659 0.8539475 0.1475052 +3.261896 0.8539475 0.1475052 +3.729748 0.8539475 0.1475052 +4.264621 0.8539475 0.1475052 +4.876131 0.8539475 0.1475052 +5.575266 0.8539475 0.1475052 +6.374593 0.8539475 0.1475052 +0 0.974052 0.1475052 +0 0.974052 0.1475052 +0 0.974052 0.1475052 +0.002268731 0.974052 0.1475052 +0.07076883 0.974052 0.1475052 +0.1119241 0.974052 0.1475052 +0.1475052 0.974052 0.1475052 +0.1846606 0.974052 0.1475052 +0.2245119 0.974052 0.1475052 +0.2679612 0.974052 0.1475052 +0.3158431 0.974052 0.1475052 +0.3689944 0.974052 0.1475052 +0.4282948 0.974052 0.1475052 +0.494694 0.974052 0.1475052 +0.5692344 0.974052 0.1475052 +0.6530715 0.974052 0.1475052 +0.7474945 0.974052 0.1475052 +0.8539475 0.974052 0.1475052 +0.974052 0.974052 0.1475052 +1.113885 0.974052 0.1475052 +1.27456 0.974052 0.1475052 +1.458117 0.974052 0.1475052 +1.667858 0.974052 0.1475052 +1.907556 0.974052 0.1475052 +2.181521 0.974052 0.1475052 +2.494678 0.974052 0.1475052 +2.852659 0.974052 0.1475052 +3.261896 0.974052 0.1475052 +3.729748 0.974052 0.1475052 +4.264621 0.974052 0.1475052 +4.876131 0.974052 0.1475052 +5.575266 0.974052 0.1475052 +6.374593 0.974052 0.1475052 +0 1.113885 0.1475052 +0 1.113885 0.1475052 +0 1.113885 0.1475052 +0.002268731 1.113885 0.1475052 +0.07076883 1.113885 0.1475052 +0.1119241 1.113885 0.1475052 +0.1475052 1.113885 0.1475052 +0.1846606 1.113885 0.1475052 +0.2245119 1.113885 0.1475052 +0.2679612 1.113885 0.1475052 +0.3158431 1.113885 0.1475052 +0.3689944 1.113885 0.1475052 +0.4282948 1.113885 0.1475052 +0.494694 1.113885 0.1475052 +0.5692344 1.113885 0.1475052 +0.6530715 1.113885 0.1475052 +0.7474945 1.113885 0.1475052 +0.8539475 1.113885 0.1475052 +0.974052 1.113885 0.1475052 +1.113885 1.113885 0.1475052 +1.27456 1.113885 0.1475052 +1.458117 1.113885 0.1475052 +1.667858 1.113885 0.1475052 +1.907556 1.113885 0.1475052 +2.181521 1.113885 0.1475052 +2.494678 1.113885 0.1475052 +2.852659 1.113885 0.1475052 +3.261896 1.113885 0.1475052 +3.729748 1.113885 0.1475052 +4.264621 1.113885 0.1475052 +4.876131 1.113885 0.1475052 +5.575266 1.113885 0.1475052 +6.374593 1.113885 0.1475052 +0 1.27456 0.1475052 +0 1.27456 0.1475052 +0 1.27456 0.1475052 +0.002268731 1.27456 0.1475052 +0.07076883 1.27456 0.1475052 +0.1119241 1.27456 0.1475052 +0.1475052 1.27456 0.1475052 +0.1846606 1.27456 0.1475052 +0.2245119 1.27456 0.1475052 +0.2679612 1.27456 0.1475052 +0.3158431 1.27456 0.1475052 +0.3689944 1.27456 0.1475052 +0.4282948 1.27456 0.1475052 +0.494694 1.27456 0.1475052 +0.5692344 1.27456 0.1475052 +0.6530715 1.27456 0.1475052 +0.7474945 1.27456 0.1475052 +0.8539475 1.27456 0.1475052 +0.974052 1.27456 0.1475052 +1.113885 1.27456 0.1475052 +1.27456 1.27456 0.1475052 +1.458117 1.27456 0.1475052 +1.667858 1.27456 0.1475052 +1.907556 1.27456 0.1475052 +2.181521 1.27456 0.1475052 +2.494678 1.27456 0.1475052 +2.852659 1.27456 0.1475052 +3.261896 1.27456 0.1475052 +3.729748 1.27456 0.1475052 +4.264621 1.27456 0.1475052 +4.876131 1.27456 0.1475052 +5.575266 1.27456 0.1475052 +6.374593 1.27456 0.1475052 +0 1.458117 0.1475052 +0 1.458117 0.1475052 +0 1.458117 0.1475052 +0.002268731 1.458117 0.1475052 +0.07076883 1.458117 0.1475052 +0.1119241 1.458117 0.1475052 +0.1475052 1.458117 0.1475052 +0.1846606 1.458117 0.1475052 +0.2245119 1.458117 0.1475052 +0.2679612 1.458117 0.1475052 +0.3158431 1.458117 0.1475052 +0.3689944 1.458117 0.1475052 +0.4282948 1.458117 0.1475052 +0.494694 1.458117 0.1475052 +0.5692344 1.458117 0.1475052 +0.6530715 1.458117 0.1475052 +0.7474945 1.458117 0.1475052 +0.8539475 1.458117 0.1475052 +0.974052 1.458117 0.1475052 +1.113885 1.458117 0.1475052 +1.27456 1.458117 0.1475052 +1.458117 1.458117 0.1475052 +1.667858 1.458117 0.1475052 +1.907556 1.458117 0.1475052 +2.181521 1.458117 0.1475052 +2.494678 1.458117 0.1475052 +2.852659 1.458117 0.1475052 +3.261896 1.458117 0.1475052 +3.729748 1.458117 0.1475052 +4.264621 1.458117 0.1475052 +4.876131 1.458117 0.1475052 +5.575266 1.458117 0.1475052 +6.374593 1.458117 0.1475052 +0 1.667858 0.1475052 +0 1.667858 0.1475052 +0 1.667858 0.1475052 +0.002268731 1.667858 0.1475052 +0.07076883 1.667858 0.1475052 +0.1119241 1.667858 0.1475052 +0.1475052 1.667858 0.1475052 +0.1846606 1.667858 0.1475052 +0.2245119 1.667858 0.1475052 +0.2679612 1.667858 0.1475052 +0.3158431 1.667858 0.1475052 +0.3689944 1.667858 0.1475052 +0.4282948 1.667858 0.1475052 +0.494694 1.667858 0.1475052 +0.5692344 1.667858 0.1475052 +0.6530715 1.667858 0.1475052 +0.7474945 1.667858 0.1475052 +0.8539475 1.667858 0.1475052 +0.974052 1.667858 0.1475052 +1.113885 1.667858 0.1475052 +1.27456 1.667858 0.1475052 +1.458117 1.667858 0.1475052 +1.667858 1.667858 0.1475052 +1.907556 1.667858 0.1475052 +2.181521 1.667858 0.1475052 +2.494678 1.667858 0.1475052 +2.852659 1.667858 0.1475052 +3.261896 1.667858 0.1475052 +3.729748 1.667858 0.1475052 +4.264621 1.667858 0.1475052 +4.876131 1.667858 0.1475052 +5.575266 1.667858 0.1475052 +6.374593 1.667858 0.1475052 +0 1.907556 0.1475052 +0 1.907556 0.1475052 +0 1.907556 0.1475052 +0.002268731 1.907556 0.1475052 +0.07076883 1.907556 0.1475052 +0.1119241 1.907556 0.1475052 +0.1475052 1.907556 0.1475052 +0.1846606 1.907556 0.1475052 +0.2245119 1.907556 0.1475052 +0.2679612 1.907556 0.1475052 +0.3158431 1.907556 0.1475052 +0.3689944 1.907556 0.1475052 +0.4282948 1.907556 0.1475052 +0.494694 1.907556 0.1475052 +0.5692344 1.907556 0.1475052 +0.6530715 1.907556 0.1475052 +0.7474945 1.907556 0.1475052 +0.8539475 1.907556 0.1475052 +0.974052 1.907556 0.1475052 +1.113885 1.907556 0.1475052 +1.27456 1.907556 0.1475052 +1.458117 1.907556 0.1475052 +1.667858 1.907556 0.1475052 +1.907556 1.907556 0.1475052 +2.181521 1.907556 0.1475052 +2.494678 1.907556 0.1475052 +2.852659 1.907556 0.1475052 +3.261896 1.907556 0.1475052 +3.729748 1.907556 0.1475052 +4.264621 1.907556 0.1475052 +4.876131 1.907556 0.1475052 +5.575266 1.907556 0.1475052 +6.374593 1.907556 0.1475052 +0 2.181521 0.1475052 +0 2.181521 0.1475052 +0 2.181521 0.1475052 +0.002268731 2.181521 0.1475052 +0.07076883 2.181521 0.1475052 +0.1119241 2.181521 0.1475052 +0.1475052 2.181521 0.1475052 +0.1846606 2.181521 0.1475052 +0.2245119 2.181521 0.1475052 +0.2679612 2.181521 0.1475052 +0.3158431 2.181521 0.1475052 +0.3689944 2.181521 0.1475052 +0.4282948 2.181521 0.1475052 +0.494694 2.181521 0.1475052 +0.5692344 2.181521 0.1475052 +0.6530715 2.181521 0.1475052 +0.7474945 2.181521 0.1475052 +0.8539475 2.181521 0.1475052 +0.974052 2.181521 0.1475052 +1.113885 2.181521 0.1475052 +1.27456 2.181521 0.1475052 +1.458117 2.181521 0.1475052 +1.667858 2.181521 0.1475052 +1.907556 2.181521 0.1475052 +2.181521 2.181521 0.1475052 +2.494678 2.181521 0.1475052 +2.852659 2.181521 0.1475052 +3.261896 2.181521 0.1475052 +3.729748 2.181521 0.1475052 +4.264621 2.181521 0.1475052 +4.876131 2.181521 0.1475052 +5.575266 2.181521 0.1475052 +6.374593 2.181521 0.1475052 +0 2.494678 0.1475052 +0 2.494678 0.1475052 +0 2.494678 0.1475052 +0.002268731 2.494678 0.1475052 +0.07076883 2.494678 0.1475052 +0.1119241 2.494678 0.1475052 +0.1475052 2.494678 0.1475052 +0.1846606 2.494678 0.1475052 +0.2245119 2.494678 0.1475052 +0.2679612 2.494678 0.1475052 +0.3158431 2.494678 0.1475052 +0.3689944 2.494678 0.1475052 +0.4282948 2.494678 0.1475052 +0.494694 2.494678 0.1475052 +0.5692344 2.494678 0.1475052 +0.6530715 2.494678 0.1475052 +0.7474945 2.494678 0.1475052 +0.8539475 2.494678 0.1475052 +0.974052 2.494678 0.1475052 +1.113885 2.494678 0.1475052 +1.27456 2.494678 0.1475052 +1.458117 2.494678 0.1475052 +1.667858 2.494678 0.1475052 +1.907556 2.494678 0.1475052 +2.181521 2.494678 0.1475052 +2.494678 2.494678 0.1475052 +2.852659 2.494678 0.1475052 +3.261896 2.494678 0.1475052 +3.729748 2.494678 0.1475052 +4.264621 2.494678 0.1475052 +4.876131 2.494678 0.1475052 +5.575266 2.494678 0.1475052 +6.374593 2.494678 0.1475052 +0 2.852659 0.1475052 +0 2.852659 0.1475052 +0 2.852659 0.1475052 +0.002268731 2.852659 0.1475052 +0.07076883 2.852659 0.1475052 +0.1119241 2.852659 0.1475052 +0.1475052 2.852659 0.1475052 +0.1846606 2.852659 0.1475052 +0.2245119 2.852659 0.1475052 +0.2679612 2.852659 0.1475052 +0.3158431 2.852659 0.1475052 +0.3689944 2.852659 0.1475052 +0.4282948 2.852659 0.1475052 +0.494694 2.852659 0.1475052 +0.5692344 2.852659 0.1475052 +0.6530715 2.852659 0.1475052 +0.7474945 2.852659 0.1475052 +0.8539475 2.852659 0.1475052 +0.974052 2.852659 0.1475052 +1.113885 2.852659 0.1475052 +1.27456 2.852659 0.1475052 +1.458117 2.852659 0.1475052 +1.667858 2.852659 0.1475052 +1.907556 2.852659 0.1475052 +2.181521 2.852659 0.1475052 +2.494678 2.852659 0.1475052 +2.852659 2.852659 0.1475052 +3.261896 2.852659 0.1475052 +3.729748 2.852659 0.1475052 +4.264621 2.852659 0.1475052 +4.876131 2.852659 0.1475052 +5.575266 2.852659 0.1475052 +6.374593 2.852659 0.1475052 +0 3.261896 0.1475052 +0 3.261896 0.1475052 +0 3.261896 0.1475052 +0.002268731 3.261896 0.1475052 +0.07076883 3.261896 0.1475052 +0.1119241 3.261896 0.1475052 +0.1475052 3.261896 0.1475052 +0.1846606 3.261896 0.1475052 +0.2245119 3.261896 0.1475052 +0.2679612 3.261896 0.1475052 +0.3158431 3.261896 0.1475052 +0.3689944 3.261896 0.1475052 +0.4282948 3.261896 0.1475052 +0.494694 3.261896 0.1475052 +0.5692344 3.261896 0.1475052 +0.6530715 3.261896 0.1475052 +0.7474945 3.261896 0.1475052 +0.8539475 3.261896 0.1475052 +0.974052 3.261896 0.1475052 +1.113885 3.261896 0.1475052 +1.27456 3.261896 0.1475052 +1.458117 3.261896 0.1475052 +1.667858 3.261896 0.1475052 +1.907556 3.261896 0.1475052 +2.181521 3.261896 0.1475052 +2.494678 3.261896 0.1475052 +2.852659 3.261896 0.1475052 +3.261896 3.261896 0.1475052 +3.729748 3.261896 0.1475052 +4.264621 3.261896 0.1475052 +4.876131 3.261896 0.1475052 +5.575266 3.261896 0.1475052 +6.374593 3.261896 0.1475052 +0 3.729748 0.1475052 +0 3.729748 0.1475052 +0 3.729748 0.1475052 +0.002268731 3.729748 0.1475052 +0.07076883 3.729748 0.1475052 +0.1119241 3.729748 0.1475052 +0.1475052 3.729748 0.1475052 +0.1846606 3.729748 0.1475052 +0.2245119 3.729748 0.1475052 +0.2679612 3.729748 0.1475052 +0.3158431 3.729748 0.1475052 +0.3689944 3.729748 0.1475052 +0.4282948 3.729748 0.1475052 +0.494694 3.729748 0.1475052 +0.5692344 3.729748 0.1475052 +0.6530715 3.729748 0.1475052 +0.7474945 3.729748 0.1475052 +0.8539475 3.729748 0.1475052 +0.974052 3.729748 0.1475052 +1.113885 3.729748 0.1475052 +1.27456 3.729748 0.1475052 +1.458117 3.729748 0.1475052 +1.667858 3.729748 0.1475052 +1.907556 3.729748 0.1475052 +2.181521 3.729748 0.1475052 +2.494678 3.729748 0.1475052 +2.852659 3.729748 0.1475052 +3.261896 3.729748 0.1475052 +3.729748 3.729748 0.1475052 +4.264621 3.729748 0.1475052 +4.876131 3.729748 0.1475052 +5.575266 3.729748 0.1475052 +6.374593 3.729748 0.1475052 +0 4.264621 0.1475052 +0 4.264621 0.1475052 +0 4.264621 0.1475052 +0.002268731 4.264621 0.1475052 +0.07076883 4.264621 0.1475052 +0.1119241 4.264621 0.1475052 +0.1475052 4.264621 0.1475052 +0.1846606 4.264621 0.1475052 +0.2245119 4.264621 0.1475052 +0.2679612 4.264621 0.1475052 +0.3158431 4.264621 0.1475052 +0.3689944 4.264621 0.1475052 +0.4282948 4.264621 0.1475052 +0.494694 4.264621 0.1475052 +0.5692344 4.264621 0.1475052 +0.6530715 4.264621 0.1475052 +0.7474945 4.264621 0.1475052 +0.8539475 4.264621 0.1475052 +0.974052 4.264621 0.1475052 +1.113885 4.264621 0.1475052 +1.27456 4.264621 0.1475052 +1.458117 4.264621 0.1475052 +1.667858 4.264621 0.1475052 +1.907556 4.264621 0.1475052 +2.181521 4.264621 0.1475052 +2.494678 4.264621 0.1475052 +2.852659 4.264621 0.1475052 +3.261896 4.264621 0.1475052 +3.729748 4.264621 0.1475052 +4.264621 4.264621 0.1475052 +4.876131 4.264621 0.1475052 +5.575266 4.264621 0.1475052 +6.374593 4.264621 0.1475052 +0 4.876131 0.1475052 +0 4.876131 0.1475052 +0 4.876131 0.1475052 +0.002268731 4.876131 0.1475052 +0.07076883 4.876131 0.1475052 +0.1119241 4.876131 0.1475052 +0.1475052 4.876131 0.1475052 +0.1846606 4.876131 0.1475052 +0.2245119 4.876131 0.1475052 +0.2679612 4.876131 0.1475052 +0.3158431 4.876131 0.1475052 +0.3689944 4.876131 0.1475052 +0.4282948 4.876131 0.1475052 +0.494694 4.876131 0.1475052 +0.5692344 4.876131 0.1475052 +0.6530715 4.876131 0.1475052 +0.7474945 4.876131 0.1475052 +0.8539475 4.876131 0.1475052 +0.974052 4.876131 0.1475052 +1.113885 4.876131 0.1475052 +1.27456 4.876131 0.1475052 +1.458117 4.876131 0.1475052 +1.667858 4.876131 0.1475052 +1.907556 4.876131 0.1475052 +2.181521 4.876131 0.1475052 +2.494678 4.876131 0.1475052 +2.852659 4.876131 0.1475052 +3.261896 4.876131 0.1475052 +3.729748 4.876131 0.1475052 +4.264621 4.876131 0.1475052 +4.876131 4.876131 0.1475052 +5.575266 4.876131 0.1475052 +6.374593 4.876131 0.1475052 +0 5.575266 0.1475052 +0 5.575266 0.1475052 +0 5.575266 0.1475052 +0.002268731 5.575266 0.1475052 +0.07076883 5.575266 0.1475052 +0.1119241 5.575266 0.1475052 +0.1475052 5.575266 0.1475052 +0.1846606 5.575266 0.1475052 +0.2245119 5.575266 0.1475052 +0.2679612 5.575266 0.1475052 +0.3158431 5.575266 0.1475052 +0.3689944 5.575266 0.1475052 +0.4282948 5.575266 0.1475052 +0.494694 5.575266 0.1475052 +0.5692344 5.575266 0.1475052 +0.6530715 5.575266 0.1475052 +0.7474945 5.575266 0.1475052 +0.8539475 5.575266 0.1475052 +0.974052 5.575266 0.1475052 +1.113885 5.575266 0.1475052 +1.27456 5.575266 0.1475052 +1.458117 5.575266 0.1475052 +1.667858 5.575266 0.1475052 +1.907556 5.575266 0.1475052 +2.181521 5.575266 0.1475052 +2.494678 5.575266 0.1475052 +2.852659 5.575266 0.1475052 +3.261896 5.575266 0.1475052 +3.729748 5.575266 0.1475052 +4.264621 5.575266 0.1475052 +4.876131 5.575266 0.1475052 +5.575266 5.575266 0.1475052 +6.374593 5.575266 0.1475052 +0 6.374593 0.1475052 +0 6.374593 0.1475052 +0 6.374593 0.1475052 +0.002268731 6.374593 0.1475052 +0.07076883 6.374593 0.1475052 +0.1119241 6.374593 0.1475052 +0.1475052 6.374593 0.1475052 +0.1846606 6.374593 0.1475052 +0.2245119 6.374593 0.1475052 +0.2679612 6.374593 0.1475052 +0.3158431 6.374593 0.1475052 +0.3689944 6.374593 0.1475052 +0.4282948 6.374593 0.1475052 +0.494694 6.374593 0.1475052 +0.5692344 6.374593 0.1475052 +0.6530715 6.374593 0.1475052 +0.7474945 6.374593 0.1475052 +0.8539475 6.374593 0.1475052 +0.974052 6.374593 0.1475052 +1.113885 6.374593 0.1475052 +1.27456 6.374593 0.1475052 +1.458117 6.374593 0.1475052 +1.667858 6.374593 0.1475052 +1.907556 6.374593 0.1475052 +2.181521 6.374593 0.1475052 +2.494678 6.374593 0.1475052 +2.852659 6.374593 0.1475052 +3.261896 6.374593 0.1475052 +3.729748 6.374593 0.1475052 +4.264621 6.374593 0.1475052 +4.876131 6.374593 0.1475052 +5.575266 6.374593 0.1475052 +6.374593 6.374593 0.1475052 +0 0 0.1846606 +0 0 0.1846606 +0 0 0.1846606 +0.002268731 0 0.1846606 +0.07076883 0 0.1846606 +0.1119241 0 0.1846606 +0.1475052 0 0.1846606 +0.1846606 0 0.1846606 +0.2245119 0 0.1846606 +0.2679612 0 0.1846606 +0.3158431 0 0.1846606 +0.3689944 0 0.1846606 +0.4282948 0 0.1846606 +0.494694 0 0.1846606 +0.5692344 0 0.1846606 +0.6530715 0 0.1846606 +0.7474945 0 0.1846606 +0.8539475 0 0.1846606 +0.974052 0 0.1846606 +1.113885 0 0.1846606 +1.27456 0 0.1846606 +1.458117 0 0.1846606 +1.667858 0 0.1846606 +1.907556 0 0.1846606 +2.181521 0 0.1846606 +2.494678 0 0.1846606 +2.852659 0 0.1846606 +3.261896 0 0.1846606 +3.729748 0 0.1846606 +4.264621 0 0.1846606 +4.876131 0 0.1846606 +5.575266 0 0.1846606 +6.374593 0 0.1846606 +0 0 0.1846606 +0 0 0.1846606 +0 0 0.1846606 +0.002268731 0 0.1846606 +0.07076883 0 0.1846606 +0.1119241 0 0.1846606 +0.1475052 0 0.1846606 +0.1846606 0 0.1846606 +0.2245119 0 0.1846606 +0.2679612 0 0.1846606 +0.3158431 0 0.1846606 +0.3689944 0 0.1846606 +0.4282948 0 0.1846606 +0.494694 0 0.1846606 +0.5692344 0 0.1846606 +0.6530715 0 0.1846606 +0.7474945 0 0.1846606 +0.8539475 0 0.1846606 +0.974052 0 0.1846606 +1.113885 0 0.1846606 +1.27456 0 0.1846606 +1.458117 0 0.1846606 +1.667858 0 0.1846606 +1.907556 0 0.1846606 +2.181521 0 0.1846606 +2.494678 0 0.1846606 +2.852659 0 0.1846606 +3.261896 0 0.1846606 +3.729748 0 0.1846606 +4.264621 0 0.1846606 +4.876131 0 0.1846606 +5.575266 0 0.1846606 +6.374593 0 0.1846606 +0 0 0.1846606 +0 0 0.1846606 +0 0 0.1846606 +0.002268731 0 0.1846606 +0.07076883 0 0.1846606 +0.1119241 0 0.1846606 +0.1475052 0 0.1846606 +0.1846606 0 0.1846606 +0.2245119 0 0.1846606 +0.2679612 0 0.1846606 +0.3158431 0 0.1846606 +0.3689944 0 0.1846606 +0.4282948 0 0.1846606 +0.494694 0 0.1846606 +0.5692344 0 0.1846606 +0.6530715 0 0.1846606 +0.7474945 0 0.1846606 +0.8539475 0 0.1846606 +0.974052 0 0.1846606 +1.113885 0 0.1846606 +1.27456 0 0.1846606 +1.458117 0 0.1846606 +1.667858 0 0.1846606 +1.907556 0 0.1846606 +2.181521 0 0.1846606 +2.494678 0 0.1846606 +2.852659 0 0.1846606 +3.261896 0 0.1846606 +3.729748 0 0.1846606 +4.264621 0 0.1846606 +4.876131 0 0.1846606 +5.575266 0 0.1846606 +6.374593 0 0.1846606 +0 0.002268731 0.1846606 +0 0.002268731 0.1846606 +0 0.002268731 0.1846606 +0.002268731 0.002268731 0.1846606 +0.07076883 0.002268731 0.1846606 +0.1119241 0.002268731 0.1846606 +0.1475052 0.002268731 0.1846606 +0.1846606 0.002268731 0.1846606 +0.2245119 0.002268731 0.1846606 +0.2679612 0.002268731 0.1846606 +0.3158431 0.002268731 0.1846606 +0.3689944 0.002268731 0.1846606 +0.4282948 0.002268731 0.1846606 +0.494694 0.002268731 0.1846606 +0.5692344 0.002268731 0.1846606 +0.6530715 0.002268731 0.1846606 +0.7474945 0.002268731 0.1846606 +0.8539475 0.002268731 0.1846606 +0.974052 0.002268731 0.1846606 +1.113885 0.002268731 0.1846606 +1.27456 0.002268731 0.1846606 +1.458117 0.002268731 0.1846606 +1.667858 0.002268731 0.1846606 +1.907556 0.002268731 0.1846606 +2.181521 0.002268731 0.1846606 +2.494678 0.002268731 0.1846606 +2.852659 0.002268731 0.1846606 +3.261896 0.002268731 0.1846606 +3.729748 0.002268731 0.1846606 +4.264621 0.002268731 0.1846606 +4.876131 0.002268731 0.1846606 +5.575266 0.002268731 0.1846606 +6.374593 0.002268731 0.1846606 +0 0.07076883 0.1846606 +0 0.07076883 0.1846606 +0 0.07076883 0.1846606 +0.002268731 0.07076883 0.1846606 +0.07076883 0.07076883 0.1846606 +0.1119241 0.07076883 0.1846606 +0.1475052 0.07076883 0.1846606 +0.1846606 0.07076883 0.1846606 +0.2245119 0.07076883 0.1846606 +0.2679612 0.07076883 0.1846606 +0.3158431 0.07076883 0.1846606 +0.3689944 0.07076883 0.1846606 +0.4282948 0.07076883 0.1846606 +0.494694 0.07076883 0.1846606 +0.5692344 0.07076883 0.1846606 +0.6530715 0.07076883 0.1846606 +0.7474945 0.07076883 0.1846606 +0.8539475 0.07076883 0.1846606 +0.974052 0.07076883 0.1846606 +1.113885 0.07076883 0.1846606 +1.27456 0.07076883 0.1846606 +1.458117 0.07076883 0.1846606 +1.667858 0.07076883 0.1846606 +1.907556 0.07076883 0.1846606 +2.181521 0.07076883 0.1846606 +2.494678 0.07076883 0.1846606 +2.852659 0.07076883 0.1846606 +3.261896 0.07076883 0.1846606 +3.729748 0.07076883 0.1846606 +4.264621 0.07076883 0.1846606 +4.876131 0.07076883 0.1846606 +5.575266 0.07076883 0.1846606 +6.374593 0.07076883 0.1846606 +0 0.1119241 0.1846606 +0 0.1119241 0.1846606 +0 0.1119241 0.1846606 +0.002268731 0.1119241 0.1846606 +0.07076883 0.1119241 0.1846606 +0.1119241 0.1119241 0.1846606 +0.1475052 0.1119241 0.1846606 +0.1846606 0.1119241 0.1846606 +0.2245119 0.1119241 0.1846606 +0.2679612 0.1119241 0.1846606 +0.3158431 0.1119241 0.1846606 +0.3689944 0.1119241 0.1846606 +0.4282948 0.1119241 0.1846606 +0.494694 0.1119241 0.1846606 +0.5692344 0.1119241 0.1846606 +0.6530715 0.1119241 0.1846606 +0.7474945 0.1119241 0.1846606 +0.8539475 0.1119241 0.1846606 +0.974052 0.1119241 0.1846606 +1.113885 0.1119241 0.1846606 +1.27456 0.1119241 0.1846606 +1.458117 0.1119241 0.1846606 +1.667858 0.1119241 0.1846606 +1.907556 0.1119241 0.1846606 +2.181521 0.1119241 0.1846606 +2.494678 0.1119241 0.1846606 +2.852659 0.1119241 0.1846606 +3.261896 0.1119241 0.1846606 +3.729748 0.1119241 0.1846606 +4.264621 0.1119241 0.1846606 +4.876131 0.1119241 0.1846606 +5.575266 0.1119241 0.1846606 +6.374593 0.1119241 0.1846606 +0 0.1475052 0.1846606 +0 0.1475052 0.1846606 +0 0.1475052 0.1846606 +0.002268731 0.1475052 0.1846606 +0.07076883 0.1475052 0.1846606 +0.1119241 0.1475052 0.1846606 +0.1475052 0.1475052 0.1846606 +0.1846606 0.1475052 0.1846606 +0.2245119 0.1475052 0.1846606 +0.2679612 0.1475052 0.1846606 +0.3158431 0.1475052 0.1846606 +0.3689944 0.1475052 0.1846606 +0.4282948 0.1475052 0.1846606 +0.494694 0.1475052 0.1846606 +0.5692344 0.1475052 0.1846606 +0.6530715 0.1475052 0.1846606 +0.7474945 0.1475052 0.1846606 +0.8539475 0.1475052 0.1846606 +0.974052 0.1475052 0.1846606 +1.113885 0.1475052 0.1846606 +1.27456 0.1475052 0.1846606 +1.458117 0.1475052 0.1846606 +1.667858 0.1475052 0.1846606 +1.907556 0.1475052 0.1846606 +2.181521 0.1475052 0.1846606 +2.494678 0.1475052 0.1846606 +2.852659 0.1475052 0.1846606 +3.261896 0.1475052 0.1846606 +3.729748 0.1475052 0.1846606 +4.264621 0.1475052 0.1846606 +4.876131 0.1475052 0.1846606 +5.575266 0.1475052 0.1846606 +6.374593 0.1475052 0.1846606 +0 0.1846606 0.1846606 +0 0.1846606 0.1846606 +0 0.1846606 0.1846606 +0.002268731 0.1846606 0.1846606 +0.07076883 0.1846606 0.1846606 +0.1119241 0.1846606 0.1846606 +0.1475052 0.1846606 0.1846606 +0.1846606 0.1846606 0.1846606 +0.2245119 0.1846606 0.1846606 +0.2679612 0.1846606 0.1846606 +0.3158431 0.1846606 0.1846606 +0.3689944 0.1846606 0.1846606 +0.4282948 0.1846606 0.1846606 +0.494694 0.1846606 0.1846606 +0.5692344 0.1846606 0.1846606 +0.6530715 0.1846606 0.1846606 +0.7474945 0.1846606 0.1846606 +0.8539475 0.1846606 0.1846606 +0.974052 0.1846606 0.1846606 +1.113885 0.1846606 0.1846606 +1.27456 0.1846606 0.1846606 +1.458117 0.1846606 0.1846606 +1.667858 0.1846606 0.1846606 +1.907556 0.1846606 0.1846606 +2.181521 0.1846606 0.1846606 +2.494678 0.1846606 0.1846606 +2.852659 0.1846606 0.1846606 +3.261896 0.1846606 0.1846606 +3.729748 0.1846606 0.1846606 +4.264621 0.1846606 0.1846606 +4.876131 0.1846606 0.1846606 +5.575266 0.1846606 0.1846606 +6.374593 0.1846606 0.1846606 +0 0.2245119 0.1846606 +0 0.2245119 0.1846606 +0 0.2245119 0.1846606 +0.002268731 0.2245119 0.1846606 +0.07076883 0.2245119 0.1846606 +0.1119241 0.2245119 0.1846606 +0.1475052 0.2245119 0.1846606 +0.1846606 0.2245119 0.1846606 +0.2245119 0.2245119 0.1846606 +0.2679612 0.2245119 0.1846606 +0.3158431 0.2245119 0.1846606 +0.3689944 0.2245119 0.1846606 +0.4282948 0.2245119 0.1846606 +0.494694 0.2245119 0.1846606 +0.5692344 0.2245119 0.1846606 +0.6530715 0.2245119 0.1846606 +0.7474945 0.2245119 0.1846606 +0.8539475 0.2245119 0.1846606 +0.974052 0.2245119 0.1846606 +1.113885 0.2245119 0.1846606 +1.27456 0.2245119 0.1846606 +1.458117 0.2245119 0.1846606 +1.667858 0.2245119 0.1846606 +1.907556 0.2245119 0.1846606 +2.181521 0.2245119 0.1846606 +2.494678 0.2245119 0.1846606 +2.852659 0.2245119 0.1846606 +3.261896 0.2245119 0.1846606 +3.729748 0.2245119 0.1846606 +4.264621 0.2245119 0.1846606 +4.876131 0.2245119 0.1846606 +5.575266 0.2245119 0.1846606 +6.374593 0.2245119 0.1846606 +0 0.2679612 0.1846606 +0 0.2679612 0.1846606 +0 0.2679612 0.1846606 +0.002268731 0.2679612 0.1846606 +0.07076883 0.2679612 0.1846606 +0.1119241 0.2679612 0.1846606 +0.1475052 0.2679612 0.1846606 +0.1846606 0.2679612 0.1846606 +0.2245119 0.2679612 0.1846606 +0.2679612 0.2679612 0.1846606 +0.3158431 0.2679612 0.1846606 +0.3689944 0.2679612 0.1846606 +0.4282948 0.2679612 0.1846606 +0.494694 0.2679612 0.1846606 +0.5692344 0.2679612 0.1846606 +0.6530715 0.2679612 0.1846606 +0.7474945 0.2679612 0.1846606 +0.8539475 0.2679612 0.1846606 +0.974052 0.2679612 0.1846606 +1.113885 0.2679612 0.1846606 +1.27456 0.2679612 0.1846606 +1.458117 0.2679612 0.1846606 +1.667858 0.2679612 0.1846606 +1.907556 0.2679612 0.1846606 +2.181521 0.2679612 0.1846606 +2.494678 0.2679612 0.1846606 +2.852659 0.2679612 0.1846606 +3.261896 0.2679612 0.1846606 +3.729748 0.2679612 0.1846606 +4.264621 0.2679612 0.1846606 +4.876131 0.2679612 0.1846606 +5.575266 0.2679612 0.1846606 +6.374593 0.2679612 0.1846606 +0 0.3158431 0.1846606 +0 0.3158431 0.1846606 +0 0.3158431 0.1846606 +0.002268731 0.3158431 0.1846606 +0.07076883 0.3158431 0.1846606 +0.1119241 0.3158431 0.1846606 +0.1475052 0.3158431 0.1846606 +0.1846606 0.3158431 0.1846606 +0.2245119 0.3158431 0.1846606 +0.2679612 0.3158431 0.1846606 +0.3158431 0.3158431 0.1846606 +0.3689944 0.3158431 0.1846606 +0.4282948 0.3158431 0.1846606 +0.494694 0.3158431 0.1846606 +0.5692344 0.3158431 0.1846606 +0.6530715 0.3158431 0.1846606 +0.7474945 0.3158431 0.1846606 +0.8539475 0.3158431 0.1846606 +0.974052 0.3158431 0.1846606 +1.113885 0.3158431 0.1846606 +1.27456 0.3158431 0.1846606 +1.458117 0.3158431 0.1846606 +1.667858 0.3158431 0.1846606 +1.907556 0.3158431 0.1846606 +2.181521 0.3158431 0.1846606 +2.494678 0.3158431 0.1846606 +2.852659 0.3158431 0.1846606 +3.261896 0.3158431 0.1846606 +3.729748 0.3158431 0.1846606 +4.264621 0.3158431 0.1846606 +4.876131 0.3158431 0.1846606 +5.575266 0.3158431 0.1846606 +6.374593 0.3158431 0.1846606 +0 0.3689944 0.1846606 +0 0.3689944 0.1846606 +0 0.3689944 0.1846606 +0.002268731 0.3689944 0.1846606 +0.07076883 0.3689944 0.1846606 +0.1119241 0.3689944 0.1846606 +0.1475052 0.3689944 0.1846606 +0.1846606 0.3689944 0.1846606 +0.2245119 0.3689944 0.1846606 +0.2679612 0.3689944 0.1846606 +0.3158431 0.3689944 0.1846606 +0.3689944 0.3689944 0.1846606 +0.4282948 0.3689944 0.1846606 +0.494694 0.3689944 0.1846606 +0.5692344 0.3689944 0.1846606 +0.6530715 0.3689944 0.1846606 +0.7474945 0.3689944 0.1846606 +0.8539475 0.3689944 0.1846606 +0.974052 0.3689944 0.1846606 +1.113885 0.3689944 0.1846606 +1.27456 0.3689944 0.1846606 +1.458117 0.3689944 0.1846606 +1.667858 0.3689944 0.1846606 +1.907556 0.3689944 0.1846606 +2.181521 0.3689944 0.1846606 +2.494678 0.3689944 0.1846606 +2.852659 0.3689944 0.1846606 +3.261896 0.3689944 0.1846606 +3.729748 0.3689944 0.1846606 +4.264621 0.3689944 0.1846606 +4.876131 0.3689944 0.1846606 +5.575266 0.3689944 0.1846606 +6.374593 0.3689944 0.1846606 +0 0.4282948 0.1846606 +0 0.4282948 0.1846606 +0 0.4282948 0.1846606 +0.002268731 0.4282948 0.1846606 +0.07076883 0.4282948 0.1846606 +0.1119241 0.4282948 0.1846606 +0.1475052 0.4282948 0.1846606 +0.1846606 0.4282948 0.1846606 +0.2245119 0.4282948 0.1846606 +0.2679612 0.4282948 0.1846606 +0.3158431 0.4282948 0.1846606 +0.3689944 0.4282948 0.1846606 +0.4282948 0.4282948 0.1846606 +0.494694 0.4282948 0.1846606 +0.5692344 0.4282948 0.1846606 +0.6530715 0.4282948 0.1846606 +0.7474945 0.4282948 0.1846606 +0.8539475 0.4282948 0.1846606 +0.974052 0.4282948 0.1846606 +1.113885 0.4282948 0.1846606 +1.27456 0.4282948 0.1846606 +1.458117 0.4282948 0.1846606 +1.667858 0.4282948 0.1846606 +1.907556 0.4282948 0.1846606 +2.181521 0.4282948 0.1846606 +2.494678 0.4282948 0.1846606 +2.852659 0.4282948 0.1846606 +3.261896 0.4282948 0.1846606 +3.729748 0.4282948 0.1846606 +4.264621 0.4282948 0.1846606 +4.876131 0.4282948 0.1846606 +5.575266 0.4282948 0.1846606 +6.374593 0.4282948 0.1846606 +0 0.494694 0.1846606 +0 0.494694 0.1846606 +0 0.494694 0.1846606 +0.002268731 0.494694 0.1846606 +0.07076883 0.494694 0.1846606 +0.1119241 0.494694 0.1846606 +0.1475052 0.494694 0.1846606 +0.1846606 0.494694 0.1846606 +0.2245119 0.494694 0.1846606 +0.2679612 0.494694 0.1846606 +0.3158431 0.494694 0.1846606 +0.3689944 0.494694 0.1846606 +0.4282948 0.494694 0.1846606 +0.494694 0.494694 0.1846606 +0.5692344 0.494694 0.1846606 +0.6530715 0.494694 0.1846606 +0.7474945 0.494694 0.1846606 +0.8539475 0.494694 0.1846606 +0.974052 0.494694 0.1846606 +1.113885 0.494694 0.1846606 +1.27456 0.494694 0.1846606 +1.458117 0.494694 0.1846606 +1.667858 0.494694 0.1846606 +1.907556 0.494694 0.1846606 +2.181521 0.494694 0.1846606 +2.494678 0.494694 0.1846606 +2.852659 0.494694 0.1846606 +3.261896 0.494694 0.1846606 +3.729748 0.494694 0.1846606 +4.264621 0.494694 0.1846606 +4.876131 0.494694 0.1846606 +5.575266 0.494694 0.1846606 +6.374593 0.494694 0.1846606 +0 0.5692344 0.1846606 +0 0.5692344 0.1846606 +0 0.5692344 0.1846606 +0.002268731 0.5692344 0.1846606 +0.07076883 0.5692344 0.1846606 +0.1119241 0.5692344 0.1846606 +0.1475052 0.5692344 0.1846606 +0.1846606 0.5692344 0.1846606 +0.2245119 0.5692344 0.1846606 +0.2679612 0.5692344 0.1846606 +0.3158431 0.5692344 0.1846606 +0.3689944 0.5692344 0.1846606 +0.4282948 0.5692344 0.1846606 +0.494694 0.5692344 0.1846606 +0.5692344 0.5692344 0.1846606 +0.6530715 0.5692344 0.1846606 +0.7474945 0.5692344 0.1846606 +0.8539475 0.5692344 0.1846606 +0.974052 0.5692344 0.1846606 +1.113885 0.5692344 0.1846606 +1.27456 0.5692344 0.1846606 +1.458117 0.5692344 0.1846606 +1.667858 0.5692344 0.1846606 +1.907556 0.5692344 0.1846606 +2.181521 0.5692344 0.1846606 +2.494678 0.5692344 0.1846606 +2.852659 0.5692344 0.1846606 +3.261896 0.5692344 0.1846606 +3.729748 0.5692344 0.1846606 +4.264621 0.5692344 0.1846606 +4.876131 0.5692344 0.1846606 +5.575266 0.5692344 0.1846606 +6.374593 0.5692344 0.1846606 +0 0.6530715 0.1846606 +0 0.6530715 0.1846606 +0 0.6530715 0.1846606 +0.002268731 0.6530715 0.1846606 +0.07076883 0.6530715 0.1846606 +0.1119241 0.6530715 0.1846606 +0.1475052 0.6530715 0.1846606 +0.1846606 0.6530715 0.1846606 +0.2245119 0.6530715 0.1846606 +0.2679612 0.6530715 0.1846606 +0.3158431 0.6530715 0.1846606 +0.3689944 0.6530715 0.1846606 +0.4282948 0.6530715 0.1846606 +0.494694 0.6530715 0.1846606 +0.5692344 0.6530715 0.1846606 +0.6530715 0.6530715 0.1846606 +0.7474945 0.6530715 0.1846606 +0.8539475 0.6530715 0.1846606 +0.974052 0.6530715 0.1846606 +1.113885 0.6530715 0.1846606 +1.27456 0.6530715 0.1846606 +1.458117 0.6530715 0.1846606 +1.667858 0.6530715 0.1846606 +1.907556 0.6530715 0.1846606 +2.181521 0.6530715 0.1846606 +2.494678 0.6530715 0.1846606 +2.852659 0.6530715 0.1846606 +3.261896 0.6530715 0.1846606 +3.729748 0.6530715 0.1846606 +4.264621 0.6530715 0.1846606 +4.876131 0.6530715 0.1846606 +5.575266 0.6530715 0.1846606 +6.374593 0.6530715 0.1846606 +0 0.7474945 0.1846606 +0 0.7474945 0.1846606 +0 0.7474945 0.1846606 +0.002268731 0.7474945 0.1846606 +0.07076883 0.7474945 0.1846606 +0.1119241 0.7474945 0.1846606 +0.1475052 0.7474945 0.1846606 +0.1846606 0.7474945 0.1846606 +0.2245119 0.7474945 0.1846606 +0.2679612 0.7474945 0.1846606 +0.3158431 0.7474945 0.1846606 +0.3689944 0.7474945 0.1846606 +0.4282948 0.7474945 0.1846606 +0.494694 0.7474945 0.1846606 +0.5692344 0.7474945 0.1846606 +0.6530715 0.7474945 0.1846606 +0.7474945 0.7474945 0.1846606 +0.8539475 0.7474945 0.1846606 +0.974052 0.7474945 0.1846606 +1.113885 0.7474945 0.1846606 +1.27456 0.7474945 0.1846606 +1.458117 0.7474945 0.1846606 +1.667858 0.7474945 0.1846606 +1.907556 0.7474945 0.1846606 +2.181521 0.7474945 0.1846606 +2.494678 0.7474945 0.1846606 +2.852659 0.7474945 0.1846606 +3.261896 0.7474945 0.1846606 +3.729748 0.7474945 0.1846606 +4.264621 0.7474945 0.1846606 +4.876131 0.7474945 0.1846606 +5.575266 0.7474945 0.1846606 +6.374593 0.7474945 0.1846606 +0 0.8539475 0.1846606 +0 0.8539475 0.1846606 +0 0.8539475 0.1846606 +0.002268731 0.8539475 0.1846606 +0.07076883 0.8539475 0.1846606 +0.1119241 0.8539475 0.1846606 +0.1475052 0.8539475 0.1846606 +0.1846606 0.8539475 0.1846606 +0.2245119 0.8539475 0.1846606 +0.2679612 0.8539475 0.1846606 +0.3158431 0.8539475 0.1846606 +0.3689944 0.8539475 0.1846606 +0.4282948 0.8539475 0.1846606 +0.494694 0.8539475 0.1846606 +0.5692344 0.8539475 0.1846606 +0.6530715 0.8539475 0.1846606 +0.7474945 0.8539475 0.1846606 +0.8539475 0.8539475 0.1846606 +0.974052 0.8539475 0.1846606 +1.113885 0.8539475 0.1846606 +1.27456 0.8539475 0.1846606 +1.458117 0.8539475 0.1846606 +1.667858 0.8539475 0.1846606 +1.907556 0.8539475 0.1846606 +2.181521 0.8539475 0.1846606 +2.494678 0.8539475 0.1846606 +2.852659 0.8539475 0.1846606 +3.261896 0.8539475 0.1846606 +3.729748 0.8539475 0.1846606 +4.264621 0.8539475 0.1846606 +4.876131 0.8539475 0.1846606 +5.575266 0.8539475 0.1846606 +6.374593 0.8539475 0.1846606 +0 0.974052 0.1846606 +0 0.974052 0.1846606 +0 0.974052 0.1846606 +0.002268731 0.974052 0.1846606 +0.07076883 0.974052 0.1846606 +0.1119241 0.974052 0.1846606 +0.1475052 0.974052 0.1846606 +0.1846606 0.974052 0.1846606 +0.2245119 0.974052 0.1846606 +0.2679612 0.974052 0.1846606 +0.3158431 0.974052 0.1846606 +0.3689944 0.974052 0.1846606 +0.4282948 0.974052 0.1846606 +0.494694 0.974052 0.1846606 +0.5692344 0.974052 0.1846606 +0.6530715 0.974052 0.1846606 +0.7474945 0.974052 0.1846606 +0.8539475 0.974052 0.1846606 +0.974052 0.974052 0.1846606 +1.113885 0.974052 0.1846606 +1.27456 0.974052 0.1846606 +1.458117 0.974052 0.1846606 +1.667858 0.974052 0.1846606 +1.907556 0.974052 0.1846606 +2.181521 0.974052 0.1846606 +2.494678 0.974052 0.1846606 +2.852659 0.974052 0.1846606 +3.261896 0.974052 0.1846606 +3.729748 0.974052 0.1846606 +4.264621 0.974052 0.1846606 +4.876131 0.974052 0.1846606 +5.575266 0.974052 0.1846606 +6.374593 0.974052 0.1846606 +0 1.113885 0.1846606 +0 1.113885 0.1846606 +0 1.113885 0.1846606 +0.002268731 1.113885 0.1846606 +0.07076883 1.113885 0.1846606 +0.1119241 1.113885 0.1846606 +0.1475052 1.113885 0.1846606 +0.1846606 1.113885 0.1846606 +0.2245119 1.113885 0.1846606 +0.2679612 1.113885 0.1846606 +0.3158431 1.113885 0.1846606 +0.3689944 1.113885 0.1846606 +0.4282948 1.113885 0.1846606 +0.494694 1.113885 0.1846606 +0.5692344 1.113885 0.1846606 +0.6530715 1.113885 0.1846606 +0.7474945 1.113885 0.1846606 +0.8539475 1.113885 0.1846606 +0.974052 1.113885 0.1846606 +1.113885 1.113885 0.1846606 +1.27456 1.113885 0.1846606 +1.458117 1.113885 0.1846606 +1.667858 1.113885 0.1846606 +1.907556 1.113885 0.1846606 +2.181521 1.113885 0.1846606 +2.494678 1.113885 0.1846606 +2.852659 1.113885 0.1846606 +3.261896 1.113885 0.1846606 +3.729748 1.113885 0.1846606 +4.264621 1.113885 0.1846606 +4.876131 1.113885 0.1846606 +5.575266 1.113885 0.1846606 +6.374593 1.113885 0.1846606 +0 1.27456 0.1846606 +0 1.27456 0.1846606 +0 1.27456 0.1846606 +0.002268731 1.27456 0.1846606 +0.07076883 1.27456 0.1846606 +0.1119241 1.27456 0.1846606 +0.1475052 1.27456 0.1846606 +0.1846606 1.27456 0.1846606 +0.2245119 1.27456 0.1846606 +0.2679612 1.27456 0.1846606 +0.3158431 1.27456 0.1846606 +0.3689944 1.27456 0.1846606 +0.4282948 1.27456 0.1846606 +0.494694 1.27456 0.1846606 +0.5692344 1.27456 0.1846606 +0.6530715 1.27456 0.1846606 +0.7474945 1.27456 0.1846606 +0.8539475 1.27456 0.1846606 +0.974052 1.27456 0.1846606 +1.113885 1.27456 0.1846606 +1.27456 1.27456 0.1846606 +1.458117 1.27456 0.1846606 +1.667858 1.27456 0.1846606 +1.907556 1.27456 0.1846606 +2.181521 1.27456 0.1846606 +2.494678 1.27456 0.1846606 +2.852659 1.27456 0.1846606 +3.261896 1.27456 0.1846606 +3.729748 1.27456 0.1846606 +4.264621 1.27456 0.1846606 +4.876131 1.27456 0.1846606 +5.575266 1.27456 0.1846606 +6.374593 1.27456 0.1846606 +0 1.458117 0.1846606 +0 1.458117 0.1846606 +0 1.458117 0.1846606 +0.002268731 1.458117 0.1846606 +0.07076883 1.458117 0.1846606 +0.1119241 1.458117 0.1846606 +0.1475052 1.458117 0.1846606 +0.1846606 1.458117 0.1846606 +0.2245119 1.458117 0.1846606 +0.2679612 1.458117 0.1846606 +0.3158431 1.458117 0.1846606 +0.3689944 1.458117 0.1846606 +0.4282948 1.458117 0.1846606 +0.494694 1.458117 0.1846606 +0.5692344 1.458117 0.1846606 +0.6530715 1.458117 0.1846606 +0.7474945 1.458117 0.1846606 +0.8539475 1.458117 0.1846606 +0.974052 1.458117 0.1846606 +1.113885 1.458117 0.1846606 +1.27456 1.458117 0.1846606 +1.458117 1.458117 0.1846606 +1.667858 1.458117 0.1846606 +1.907556 1.458117 0.1846606 +2.181521 1.458117 0.1846606 +2.494678 1.458117 0.1846606 +2.852659 1.458117 0.1846606 +3.261896 1.458117 0.1846606 +3.729748 1.458117 0.1846606 +4.264621 1.458117 0.1846606 +4.876131 1.458117 0.1846606 +5.575266 1.458117 0.1846606 +6.374593 1.458117 0.1846606 +0 1.667858 0.1846606 +0 1.667858 0.1846606 +0 1.667858 0.1846606 +0.002268731 1.667858 0.1846606 +0.07076883 1.667858 0.1846606 +0.1119241 1.667858 0.1846606 +0.1475052 1.667858 0.1846606 +0.1846606 1.667858 0.1846606 +0.2245119 1.667858 0.1846606 +0.2679612 1.667858 0.1846606 +0.3158431 1.667858 0.1846606 +0.3689944 1.667858 0.1846606 +0.4282948 1.667858 0.1846606 +0.494694 1.667858 0.1846606 +0.5692344 1.667858 0.1846606 +0.6530715 1.667858 0.1846606 +0.7474945 1.667858 0.1846606 +0.8539475 1.667858 0.1846606 +0.974052 1.667858 0.1846606 +1.113885 1.667858 0.1846606 +1.27456 1.667858 0.1846606 +1.458117 1.667858 0.1846606 +1.667858 1.667858 0.1846606 +1.907556 1.667858 0.1846606 +2.181521 1.667858 0.1846606 +2.494678 1.667858 0.1846606 +2.852659 1.667858 0.1846606 +3.261896 1.667858 0.1846606 +3.729748 1.667858 0.1846606 +4.264621 1.667858 0.1846606 +4.876131 1.667858 0.1846606 +5.575266 1.667858 0.1846606 +6.374593 1.667858 0.1846606 +0 1.907556 0.1846606 +0 1.907556 0.1846606 +0 1.907556 0.1846606 +0.002268731 1.907556 0.1846606 +0.07076883 1.907556 0.1846606 +0.1119241 1.907556 0.1846606 +0.1475052 1.907556 0.1846606 +0.1846606 1.907556 0.1846606 +0.2245119 1.907556 0.1846606 +0.2679612 1.907556 0.1846606 +0.3158431 1.907556 0.1846606 +0.3689944 1.907556 0.1846606 +0.4282948 1.907556 0.1846606 +0.494694 1.907556 0.1846606 +0.5692344 1.907556 0.1846606 +0.6530715 1.907556 0.1846606 +0.7474945 1.907556 0.1846606 +0.8539475 1.907556 0.1846606 +0.974052 1.907556 0.1846606 +1.113885 1.907556 0.1846606 +1.27456 1.907556 0.1846606 +1.458117 1.907556 0.1846606 +1.667858 1.907556 0.1846606 +1.907556 1.907556 0.1846606 +2.181521 1.907556 0.1846606 +2.494678 1.907556 0.1846606 +2.852659 1.907556 0.1846606 +3.261896 1.907556 0.1846606 +3.729748 1.907556 0.1846606 +4.264621 1.907556 0.1846606 +4.876131 1.907556 0.1846606 +5.575266 1.907556 0.1846606 +6.374593 1.907556 0.1846606 +0 2.181521 0.1846606 +0 2.181521 0.1846606 +0 2.181521 0.1846606 +0.002268731 2.181521 0.1846606 +0.07076883 2.181521 0.1846606 +0.1119241 2.181521 0.1846606 +0.1475052 2.181521 0.1846606 +0.1846606 2.181521 0.1846606 +0.2245119 2.181521 0.1846606 +0.2679612 2.181521 0.1846606 +0.3158431 2.181521 0.1846606 +0.3689944 2.181521 0.1846606 +0.4282948 2.181521 0.1846606 +0.494694 2.181521 0.1846606 +0.5692344 2.181521 0.1846606 +0.6530715 2.181521 0.1846606 +0.7474945 2.181521 0.1846606 +0.8539475 2.181521 0.1846606 +0.974052 2.181521 0.1846606 +1.113885 2.181521 0.1846606 +1.27456 2.181521 0.1846606 +1.458117 2.181521 0.1846606 +1.667858 2.181521 0.1846606 +1.907556 2.181521 0.1846606 +2.181521 2.181521 0.1846606 +2.494678 2.181521 0.1846606 +2.852659 2.181521 0.1846606 +3.261896 2.181521 0.1846606 +3.729748 2.181521 0.1846606 +4.264621 2.181521 0.1846606 +4.876131 2.181521 0.1846606 +5.575266 2.181521 0.1846606 +6.374593 2.181521 0.1846606 +0 2.494678 0.1846606 +0 2.494678 0.1846606 +0 2.494678 0.1846606 +0.002268731 2.494678 0.1846606 +0.07076883 2.494678 0.1846606 +0.1119241 2.494678 0.1846606 +0.1475052 2.494678 0.1846606 +0.1846606 2.494678 0.1846606 +0.2245119 2.494678 0.1846606 +0.2679612 2.494678 0.1846606 +0.3158431 2.494678 0.1846606 +0.3689944 2.494678 0.1846606 +0.4282948 2.494678 0.1846606 +0.494694 2.494678 0.1846606 +0.5692344 2.494678 0.1846606 +0.6530715 2.494678 0.1846606 +0.7474945 2.494678 0.1846606 +0.8539475 2.494678 0.1846606 +0.974052 2.494678 0.1846606 +1.113885 2.494678 0.1846606 +1.27456 2.494678 0.1846606 +1.458117 2.494678 0.1846606 +1.667858 2.494678 0.1846606 +1.907556 2.494678 0.1846606 +2.181521 2.494678 0.1846606 +2.494678 2.494678 0.1846606 +2.852659 2.494678 0.1846606 +3.261896 2.494678 0.1846606 +3.729748 2.494678 0.1846606 +4.264621 2.494678 0.1846606 +4.876131 2.494678 0.1846606 +5.575266 2.494678 0.1846606 +6.374593 2.494678 0.1846606 +0 2.852659 0.1846606 +0 2.852659 0.1846606 +0 2.852659 0.1846606 +0.002268731 2.852659 0.1846606 +0.07076883 2.852659 0.1846606 +0.1119241 2.852659 0.1846606 +0.1475052 2.852659 0.1846606 +0.1846606 2.852659 0.1846606 +0.2245119 2.852659 0.1846606 +0.2679612 2.852659 0.1846606 +0.3158431 2.852659 0.1846606 +0.3689944 2.852659 0.1846606 +0.4282948 2.852659 0.1846606 +0.494694 2.852659 0.1846606 +0.5692344 2.852659 0.1846606 +0.6530715 2.852659 0.1846606 +0.7474945 2.852659 0.1846606 +0.8539475 2.852659 0.1846606 +0.974052 2.852659 0.1846606 +1.113885 2.852659 0.1846606 +1.27456 2.852659 0.1846606 +1.458117 2.852659 0.1846606 +1.667858 2.852659 0.1846606 +1.907556 2.852659 0.1846606 +2.181521 2.852659 0.1846606 +2.494678 2.852659 0.1846606 +2.852659 2.852659 0.1846606 +3.261896 2.852659 0.1846606 +3.729748 2.852659 0.1846606 +4.264621 2.852659 0.1846606 +4.876131 2.852659 0.1846606 +5.575266 2.852659 0.1846606 +6.374593 2.852659 0.1846606 +0 3.261896 0.1846606 +0 3.261896 0.1846606 +0 3.261896 0.1846606 +0.002268731 3.261896 0.1846606 +0.07076883 3.261896 0.1846606 +0.1119241 3.261896 0.1846606 +0.1475052 3.261896 0.1846606 +0.1846606 3.261896 0.1846606 +0.2245119 3.261896 0.1846606 +0.2679612 3.261896 0.1846606 +0.3158431 3.261896 0.1846606 +0.3689944 3.261896 0.1846606 +0.4282948 3.261896 0.1846606 +0.494694 3.261896 0.1846606 +0.5692344 3.261896 0.1846606 +0.6530715 3.261896 0.1846606 +0.7474945 3.261896 0.1846606 +0.8539475 3.261896 0.1846606 +0.974052 3.261896 0.1846606 +1.113885 3.261896 0.1846606 +1.27456 3.261896 0.1846606 +1.458117 3.261896 0.1846606 +1.667858 3.261896 0.1846606 +1.907556 3.261896 0.1846606 +2.181521 3.261896 0.1846606 +2.494678 3.261896 0.1846606 +2.852659 3.261896 0.1846606 +3.261896 3.261896 0.1846606 +3.729748 3.261896 0.1846606 +4.264621 3.261896 0.1846606 +4.876131 3.261896 0.1846606 +5.575266 3.261896 0.1846606 +6.374593 3.261896 0.1846606 +0 3.729748 0.1846606 +0 3.729748 0.1846606 +0 3.729748 0.1846606 +0.002268731 3.729748 0.1846606 +0.07076883 3.729748 0.1846606 +0.1119241 3.729748 0.1846606 +0.1475052 3.729748 0.1846606 +0.1846606 3.729748 0.1846606 +0.2245119 3.729748 0.1846606 +0.2679612 3.729748 0.1846606 +0.3158431 3.729748 0.1846606 +0.3689944 3.729748 0.1846606 +0.4282948 3.729748 0.1846606 +0.494694 3.729748 0.1846606 +0.5692344 3.729748 0.1846606 +0.6530715 3.729748 0.1846606 +0.7474945 3.729748 0.1846606 +0.8539475 3.729748 0.1846606 +0.974052 3.729748 0.1846606 +1.113885 3.729748 0.1846606 +1.27456 3.729748 0.1846606 +1.458117 3.729748 0.1846606 +1.667858 3.729748 0.1846606 +1.907556 3.729748 0.1846606 +2.181521 3.729748 0.1846606 +2.494678 3.729748 0.1846606 +2.852659 3.729748 0.1846606 +3.261896 3.729748 0.1846606 +3.729748 3.729748 0.1846606 +4.264621 3.729748 0.1846606 +4.876131 3.729748 0.1846606 +5.575266 3.729748 0.1846606 +6.374593 3.729748 0.1846606 +0 4.264621 0.1846606 +0 4.264621 0.1846606 +0 4.264621 0.1846606 +0.002268731 4.264621 0.1846606 +0.07076883 4.264621 0.1846606 +0.1119241 4.264621 0.1846606 +0.1475052 4.264621 0.1846606 +0.1846606 4.264621 0.1846606 +0.2245119 4.264621 0.1846606 +0.2679612 4.264621 0.1846606 +0.3158431 4.264621 0.1846606 +0.3689944 4.264621 0.1846606 +0.4282948 4.264621 0.1846606 +0.494694 4.264621 0.1846606 +0.5692344 4.264621 0.1846606 +0.6530715 4.264621 0.1846606 +0.7474945 4.264621 0.1846606 +0.8539475 4.264621 0.1846606 +0.974052 4.264621 0.1846606 +1.113885 4.264621 0.1846606 +1.27456 4.264621 0.1846606 +1.458117 4.264621 0.1846606 +1.667858 4.264621 0.1846606 +1.907556 4.264621 0.1846606 +2.181521 4.264621 0.1846606 +2.494678 4.264621 0.1846606 +2.852659 4.264621 0.1846606 +3.261896 4.264621 0.1846606 +3.729748 4.264621 0.1846606 +4.264621 4.264621 0.1846606 +4.876131 4.264621 0.1846606 +5.575266 4.264621 0.1846606 +6.374593 4.264621 0.1846606 +0 4.876131 0.1846606 +0 4.876131 0.1846606 +0 4.876131 0.1846606 +0.002268731 4.876131 0.1846606 +0.07076883 4.876131 0.1846606 +0.1119241 4.876131 0.1846606 +0.1475052 4.876131 0.1846606 +0.1846606 4.876131 0.1846606 +0.2245119 4.876131 0.1846606 +0.2679612 4.876131 0.1846606 +0.3158431 4.876131 0.1846606 +0.3689944 4.876131 0.1846606 +0.4282948 4.876131 0.1846606 +0.494694 4.876131 0.1846606 +0.5692344 4.876131 0.1846606 +0.6530715 4.876131 0.1846606 +0.7474945 4.876131 0.1846606 +0.8539475 4.876131 0.1846606 +0.974052 4.876131 0.1846606 +1.113885 4.876131 0.1846606 +1.27456 4.876131 0.1846606 +1.458117 4.876131 0.1846606 +1.667858 4.876131 0.1846606 +1.907556 4.876131 0.1846606 +2.181521 4.876131 0.1846606 +2.494678 4.876131 0.1846606 +2.852659 4.876131 0.1846606 +3.261896 4.876131 0.1846606 +3.729748 4.876131 0.1846606 +4.264621 4.876131 0.1846606 +4.876131 4.876131 0.1846606 +5.575266 4.876131 0.1846606 +6.374593 4.876131 0.1846606 +0 5.575266 0.1846606 +0 5.575266 0.1846606 +0 5.575266 0.1846606 +0.002268731 5.575266 0.1846606 +0.07076883 5.575266 0.1846606 +0.1119241 5.575266 0.1846606 +0.1475052 5.575266 0.1846606 +0.1846606 5.575266 0.1846606 +0.2245119 5.575266 0.1846606 +0.2679612 5.575266 0.1846606 +0.3158431 5.575266 0.1846606 +0.3689944 5.575266 0.1846606 +0.4282948 5.575266 0.1846606 +0.494694 5.575266 0.1846606 +0.5692344 5.575266 0.1846606 +0.6530715 5.575266 0.1846606 +0.7474945 5.575266 0.1846606 +0.8539475 5.575266 0.1846606 +0.974052 5.575266 0.1846606 +1.113885 5.575266 0.1846606 +1.27456 5.575266 0.1846606 +1.458117 5.575266 0.1846606 +1.667858 5.575266 0.1846606 +1.907556 5.575266 0.1846606 +2.181521 5.575266 0.1846606 +2.494678 5.575266 0.1846606 +2.852659 5.575266 0.1846606 +3.261896 5.575266 0.1846606 +3.729748 5.575266 0.1846606 +4.264621 5.575266 0.1846606 +4.876131 5.575266 0.1846606 +5.575266 5.575266 0.1846606 +6.374593 5.575266 0.1846606 +0 6.374593 0.1846606 +0 6.374593 0.1846606 +0 6.374593 0.1846606 +0.002268731 6.374593 0.1846606 +0.07076883 6.374593 0.1846606 +0.1119241 6.374593 0.1846606 +0.1475052 6.374593 0.1846606 +0.1846606 6.374593 0.1846606 +0.2245119 6.374593 0.1846606 +0.2679612 6.374593 0.1846606 +0.3158431 6.374593 0.1846606 +0.3689944 6.374593 0.1846606 +0.4282948 6.374593 0.1846606 +0.494694 6.374593 0.1846606 +0.5692344 6.374593 0.1846606 +0.6530715 6.374593 0.1846606 +0.7474945 6.374593 0.1846606 +0.8539475 6.374593 0.1846606 +0.974052 6.374593 0.1846606 +1.113885 6.374593 0.1846606 +1.27456 6.374593 0.1846606 +1.458117 6.374593 0.1846606 +1.667858 6.374593 0.1846606 +1.907556 6.374593 0.1846606 +2.181521 6.374593 0.1846606 +2.494678 6.374593 0.1846606 +2.852659 6.374593 0.1846606 +3.261896 6.374593 0.1846606 +3.729748 6.374593 0.1846606 +4.264621 6.374593 0.1846606 +4.876131 6.374593 0.1846606 +5.575266 6.374593 0.1846606 +6.374593 6.374593 0.1846606 +0 0 0.2245119 +0 0 0.2245119 +0 0 0.2245119 +0.002268731 0 0.2245119 +0.07076883 0 0.2245119 +0.1119241 0 0.2245119 +0.1475052 0 0.2245119 +0.1846606 0 0.2245119 +0.2245119 0 0.2245119 +0.2679612 0 0.2245119 +0.3158431 0 0.2245119 +0.3689944 0 0.2245119 +0.4282948 0 0.2245119 +0.494694 0 0.2245119 +0.5692344 0 0.2245119 +0.6530715 0 0.2245119 +0.7474945 0 0.2245119 +0.8539475 0 0.2245119 +0.974052 0 0.2245119 +1.113885 0 0.2245119 +1.27456 0 0.2245119 +1.458117 0 0.2245119 +1.667858 0 0.2245119 +1.907556 0 0.2245119 +2.181521 0 0.2245119 +2.494678 0 0.2245119 +2.852659 0 0.2245119 +3.261896 0 0.2245119 +3.729748 0 0.2245119 +4.264621 0 0.2245119 +4.876131 0 0.2245119 +5.575266 0 0.2245119 +6.374593 0 0.2245119 +0 0 0.2245119 +0 0 0.2245119 +0 0 0.2245119 +0.002268731 0 0.2245119 +0.07076883 0 0.2245119 +0.1119241 0 0.2245119 +0.1475052 0 0.2245119 +0.1846606 0 0.2245119 +0.2245119 0 0.2245119 +0.2679612 0 0.2245119 +0.3158431 0 0.2245119 +0.3689944 0 0.2245119 +0.4282948 0 0.2245119 +0.494694 0 0.2245119 +0.5692344 0 0.2245119 +0.6530715 0 0.2245119 +0.7474945 0 0.2245119 +0.8539475 0 0.2245119 +0.974052 0 0.2245119 +1.113885 0 0.2245119 +1.27456 0 0.2245119 +1.458117 0 0.2245119 +1.667858 0 0.2245119 +1.907556 0 0.2245119 +2.181521 0 0.2245119 +2.494678 0 0.2245119 +2.852659 0 0.2245119 +3.261896 0 0.2245119 +3.729748 0 0.2245119 +4.264621 0 0.2245119 +4.876131 0 0.2245119 +5.575266 0 0.2245119 +6.374593 0 0.2245119 +0 0 0.2245119 +0 0 0.2245119 +0 0 0.2245119 +0.002268731 0 0.2245119 +0.07076883 0 0.2245119 +0.1119241 0 0.2245119 +0.1475052 0 0.2245119 +0.1846606 0 0.2245119 +0.2245119 0 0.2245119 +0.2679612 0 0.2245119 +0.3158431 0 0.2245119 +0.3689944 0 0.2245119 +0.4282948 0 0.2245119 +0.494694 0 0.2245119 +0.5692344 0 0.2245119 +0.6530715 0 0.2245119 +0.7474945 0 0.2245119 +0.8539475 0 0.2245119 +0.974052 0 0.2245119 +1.113885 0 0.2245119 +1.27456 0 0.2245119 +1.458117 0 0.2245119 +1.667858 0 0.2245119 +1.907556 0 0.2245119 +2.181521 0 0.2245119 +2.494678 0 0.2245119 +2.852659 0 0.2245119 +3.261896 0 0.2245119 +3.729748 0 0.2245119 +4.264621 0 0.2245119 +4.876131 0 0.2245119 +5.575266 0 0.2245119 +6.374593 0 0.2245119 +0 0.002268731 0.2245119 +0 0.002268731 0.2245119 +0 0.002268731 0.2245119 +0.002268731 0.002268731 0.2245119 +0.07076883 0.002268731 0.2245119 +0.1119241 0.002268731 0.2245119 +0.1475052 0.002268731 0.2245119 +0.1846606 0.002268731 0.2245119 +0.2245119 0.002268731 0.2245119 +0.2679612 0.002268731 0.2245119 +0.3158431 0.002268731 0.2245119 +0.3689944 0.002268731 0.2245119 +0.4282948 0.002268731 0.2245119 +0.494694 0.002268731 0.2245119 +0.5692344 0.002268731 0.2245119 +0.6530715 0.002268731 0.2245119 +0.7474945 0.002268731 0.2245119 +0.8539475 0.002268731 0.2245119 +0.974052 0.002268731 0.2245119 +1.113885 0.002268731 0.2245119 +1.27456 0.002268731 0.2245119 +1.458117 0.002268731 0.2245119 +1.667858 0.002268731 0.2245119 +1.907556 0.002268731 0.2245119 +2.181521 0.002268731 0.2245119 +2.494678 0.002268731 0.2245119 +2.852659 0.002268731 0.2245119 +3.261896 0.002268731 0.2245119 +3.729748 0.002268731 0.2245119 +4.264621 0.002268731 0.2245119 +4.876131 0.002268731 0.2245119 +5.575266 0.002268731 0.2245119 +6.374593 0.002268731 0.2245119 +0 0.07076883 0.2245119 +0 0.07076883 0.2245119 +0 0.07076883 0.2245119 +0.002268731 0.07076883 0.2245119 +0.07076883 0.07076883 0.2245119 +0.1119241 0.07076883 0.2245119 +0.1475052 0.07076883 0.2245119 +0.1846606 0.07076883 0.2245119 +0.2245119 0.07076883 0.2245119 +0.2679612 0.07076883 0.2245119 +0.3158431 0.07076883 0.2245119 +0.3689944 0.07076883 0.2245119 +0.4282948 0.07076883 0.2245119 +0.494694 0.07076883 0.2245119 +0.5692344 0.07076883 0.2245119 +0.6530715 0.07076883 0.2245119 +0.7474945 0.07076883 0.2245119 +0.8539475 0.07076883 0.2245119 +0.974052 0.07076883 0.2245119 +1.113885 0.07076883 0.2245119 +1.27456 0.07076883 0.2245119 +1.458117 0.07076883 0.2245119 +1.667858 0.07076883 0.2245119 +1.907556 0.07076883 0.2245119 +2.181521 0.07076883 0.2245119 +2.494678 0.07076883 0.2245119 +2.852659 0.07076883 0.2245119 +3.261896 0.07076883 0.2245119 +3.729748 0.07076883 0.2245119 +4.264621 0.07076883 0.2245119 +4.876131 0.07076883 0.2245119 +5.575266 0.07076883 0.2245119 +6.374593 0.07076883 0.2245119 +0 0.1119241 0.2245119 +0 0.1119241 0.2245119 +0 0.1119241 0.2245119 +0.002268731 0.1119241 0.2245119 +0.07076883 0.1119241 0.2245119 +0.1119241 0.1119241 0.2245119 +0.1475052 0.1119241 0.2245119 +0.1846606 0.1119241 0.2245119 +0.2245119 0.1119241 0.2245119 +0.2679612 0.1119241 0.2245119 +0.3158431 0.1119241 0.2245119 +0.3689944 0.1119241 0.2245119 +0.4282948 0.1119241 0.2245119 +0.494694 0.1119241 0.2245119 +0.5692344 0.1119241 0.2245119 +0.6530715 0.1119241 0.2245119 +0.7474945 0.1119241 0.2245119 +0.8539475 0.1119241 0.2245119 +0.974052 0.1119241 0.2245119 +1.113885 0.1119241 0.2245119 +1.27456 0.1119241 0.2245119 +1.458117 0.1119241 0.2245119 +1.667858 0.1119241 0.2245119 +1.907556 0.1119241 0.2245119 +2.181521 0.1119241 0.2245119 +2.494678 0.1119241 0.2245119 +2.852659 0.1119241 0.2245119 +3.261896 0.1119241 0.2245119 +3.729748 0.1119241 0.2245119 +4.264621 0.1119241 0.2245119 +4.876131 0.1119241 0.2245119 +5.575266 0.1119241 0.2245119 +6.374593 0.1119241 0.2245119 +0 0.1475052 0.2245119 +0 0.1475052 0.2245119 +0 0.1475052 0.2245119 +0.002268731 0.1475052 0.2245119 +0.07076883 0.1475052 0.2245119 +0.1119241 0.1475052 0.2245119 +0.1475052 0.1475052 0.2245119 +0.1846606 0.1475052 0.2245119 +0.2245119 0.1475052 0.2245119 +0.2679612 0.1475052 0.2245119 +0.3158431 0.1475052 0.2245119 +0.3689944 0.1475052 0.2245119 +0.4282948 0.1475052 0.2245119 +0.494694 0.1475052 0.2245119 +0.5692344 0.1475052 0.2245119 +0.6530715 0.1475052 0.2245119 +0.7474945 0.1475052 0.2245119 +0.8539475 0.1475052 0.2245119 +0.974052 0.1475052 0.2245119 +1.113885 0.1475052 0.2245119 +1.27456 0.1475052 0.2245119 +1.458117 0.1475052 0.2245119 +1.667858 0.1475052 0.2245119 +1.907556 0.1475052 0.2245119 +2.181521 0.1475052 0.2245119 +2.494678 0.1475052 0.2245119 +2.852659 0.1475052 0.2245119 +3.261896 0.1475052 0.2245119 +3.729748 0.1475052 0.2245119 +4.264621 0.1475052 0.2245119 +4.876131 0.1475052 0.2245119 +5.575266 0.1475052 0.2245119 +6.374593 0.1475052 0.2245119 +0 0.1846606 0.2245119 +0 0.1846606 0.2245119 +0 0.1846606 0.2245119 +0.002268731 0.1846606 0.2245119 +0.07076883 0.1846606 0.2245119 +0.1119241 0.1846606 0.2245119 +0.1475052 0.1846606 0.2245119 +0.1846606 0.1846606 0.2245119 +0.2245119 0.1846606 0.2245119 +0.2679612 0.1846606 0.2245119 +0.3158431 0.1846606 0.2245119 +0.3689944 0.1846606 0.2245119 +0.4282948 0.1846606 0.2245119 +0.494694 0.1846606 0.2245119 +0.5692344 0.1846606 0.2245119 +0.6530715 0.1846606 0.2245119 +0.7474945 0.1846606 0.2245119 +0.8539475 0.1846606 0.2245119 +0.974052 0.1846606 0.2245119 +1.113885 0.1846606 0.2245119 +1.27456 0.1846606 0.2245119 +1.458117 0.1846606 0.2245119 +1.667858 0.1846606 0.2245119 +1.907556 0.1846606 0.2245119 +2.181521 0.1846606 0.2245119 +2.494678 0.1846606 0.2245119 +2.852659 0.1846606 0.2245119 +3.261896 0.1846606 0.2245119 +3.729748 0.1846606 0.2245119 +4.264621 0.1846606 0.2245119 +4.876131 0.1846606 0.2245119 +5.575266 0.1846606 0.2245119 +6.374593 0.1846606 0.2245119 +0 0.2245119 0.2245119 +0 0.2245119 0.2245119 +0 0.2245119 0.2245119 +0.002268731 0.2245119 0.2245119 +0.07076883 0.2245119 0.2245119 +0.1119241 0.2245119 0.2245119 +0.1475052 0.2245119 0.2245119 +0.1846606 0.2245119 0.2245119 +0.2245119 0.2245119 0.2245119 +0.2679612 0.2245119 0.2245119 +0.3158431 0.2245119 0.2245119 +0.3689944 0.2245119 0.2245119 +0.4282948 0.2245119 0.2245119 +0.494694 0.2245119 0.2245119 +0.5692344 0.2245119 0.2245119 +0.6530715 0.2245119 0.2245119 +0.7474945 0.2245119 0.2245119 +0.8539475 0.2245119 0.2245119 +0.974052 0.2245119 0.2245119 +1.113885 0.2245119 0.2245119 +1.27456 0.2245119 0.2245119 +1.458117 0.2245119 0.2245119 +1.667858 0.2245119 0.2245119 +1.907556 0.2245119 0.2245119 +2.181521 0.2245119 0.2245119 +2.494678 0.2245119 0.2245119 +2.852659 0.2245119 0.2245119 +3.261896 0.2245119 0.2245119 +3.729748 0.2245119 0.2245119 +4.264621 0.2245119 0.2245119 +4.876131 0.2245119 0.2245119 +5.575266 0.2245119 0.2245119 +6.374593 0.2245119 0.2245119 +0 0.2679612 0.2245119 +0 0.2679612 0.2245119 +0 0.2679612 0.2245119 +0.002268731 0.2679612 0.2245119 +0.07076883 0.2679612 0.2245119 +0.1119241 0.2679612 0.2245119 +0.1475052 0.2679612 0.2245119 +0.1846606 0.2679612 0.2245119 +0.2245119 0.2679612 0.2245119 +0.2679612 0.2679612 0.2245119 +0.3158431 0.2679612 0.2245119 +0.3689944 0.2679612 0.2245119 +0.4282948 0.2679612 0.2245119 +0.494694 0.2679612 0.2245119 +0.5692344 0.2679612 0.2245119 +0.6530715 0.2679612 0.2245119 +0.7474945 0.2679612 0.2245119 +0.8539475 0.2679612 0.2245119 +0.974052 0.2679612 0.2245119 +1.113885 0.2679612 0.2245119 +1.27456 0.2679612 0.2245119 +1.458117 0.2679612 0.2245119 +1.667858 0.2679612 0.2245119 +1.907556 0.2679612 0.2245119 +2.181521 0.2679612 0.2245119 +2.494678 0.2679612 0.2245119 +2.852659 0.2679612 0.2245119 +3.261896 0.2679612 0.2245119 +3.729748 0.2679612 0.2245119 +4.264621 0.2679612 0.2245119 +4.876131 0.2679612 0.2245119 +5.575266 0.2679612 0.2245119 +6.374593 0.2679612 0.2245119 +0 0.3158431 0.2245119 +0 0.3158431 0.2245119 +0 0.3158431 0.2245119 +0.002268731 0.3158431 0.2245119 +0.07076883 0.3158431 0.2245119 +0.1119241 0.3158431 0.2245119 +0.1475052 0.3158431 0.2245119 +0.1846606 0.3158431 0.2245119 +0.2245119 0.3158431 0.2245119 +0.2679612 0.3158431 0.2245119 +0.3158431 0.3158431 0.2245119 +0.3689944 0.3158431 0.2245119 +0.4282948 0.3158431 0.2245119 +0.494694 0.3158431 0.2245119 +0.5692344 0.3158431 0.2245119 +0.6530715 0.3158431 0.2245119 +0.7474945 0.3158431 0.2245119 +0.8539475 0.3158431 0.2245119 +0.974052 0.3158431 0.2245119 +1.113885 0.3158431 0.2245119 +1.27456 0.3158431 0.2245119 +1.458117 0.3158431 0.2245119 +1.667858 0.3158431 0.2245119 +1.907556 0.3158431 0.2245119 +2.181521 0.3158431 0.2245119 +2.494678 0.3158431 0.2245119 +2.852659 0.3158431 0.2245119 +3.261896 0.3158431 0.2245119 +3.729748 0.3158431 0.2245119 +4.264621 0.3158431 0.2245119 +4.876131 0.3158431 0.2245119 +5.575266 0.3158431 0.2245119 +6.374593 0.3158431 0.2245119 +0 0.3689944 0.2245119 +0 0.3689944 0.2245119 +0 0.3689944 0.2245119 +0.002268731 0.3689944 0.2245119 +0.07076883 0.3689944 0.2245119 +0.1119241 0.3689944 0.2245119 +0.1475052 0.3689944 0.2245119 +0.1846606 0.3689944 0.2245119 +0.2245119 0.3689944 0.2245119 +0.2679612 0.3689944 0.2245119 +0.3158431 0.3689944 0.2245119 +0.3689944 0.3689944 0.2245119 +0.4282948 0.3689944 0.2245119 +0.494694 0.3689944 0.2245119 +0.5692344 0.3689944 0.2245119 +0.6530715 0.3689944 0.2245119 +0.7474945 0.3689944 0.2245119 +0.8539475 0.3689944 0.2245119 +0.974052 0.3689944 0.2245119 +1.113885 0.3689944 0.2245119 +1.27456 0.3689944 0.2245119 +1.458117 0.3689944 0.2245119 +1.667858 0.3689944 0.2245119 +1.907556 0.3689944 0.2245119 +2.181521 0.3689944 0.2245119 +2.494678 0.3689944 0.2245119 +2.852659 0.3689944 0.2245119 +3.261896 0.3689944 0.2245119 +3.729748 0.3689944 0.2245119 +4.264621 0.3689944 0.2245119 +4.876131 0.3689944 0.2245119 +5.575266 0.3689944 0.2245119 +6.374593 0.3689944 0.2245119 +0 0.4282948 0.2245119 +0 0.4282948 0.2245119 +0 0.4282948 0.2245119 +0.002268731 0.4282948 0.2245119 +0.07076883 0.4282948 0.2245119 +0.1119241 0.4282948 0.2245119 +0.1475052 0.4282948 0.2245119 +0.1846606 0.4282948 0.2245119 +0.2245119 0.4282948 0.2245119 +0.2679612 0.4282948 0.2245119 +0.3158431 0.4282948 0.2245119 +0.3689944 0.4282948 0.2245119 +0.4282948 0.4282948 0.2245119 +0.494694 0.4282948 0.2245119 +0.5692344 0.4282948 0.2245119 +0.6530715 0.4282948 0.2245119 +0.7474945 0.4282948 0.2245119 +0.8539475 0.4282948 0.2245119 +0.974052 0.4282948 0.2245119 +1.113885 0.4282948 0.2245119 +1.27456 0.4282948 0.2245119 +1.458117 0.4282948 0.2245119 +1.667858 0.4282948 0.2245119 +1.907556 0.4282948 0.2245119 +2.181521 0.4282948 0.2245119 +2.494678 0.4282948 0.2245119 +2.852659 0.4282948 0.2245119 +3.261896 0.4282948 0.2245119 +3.729748 0.4282948 0.2245119 +4.264621 0.4282948 0.2245119 +4.876131 0.4282948 0.2245119 +5.575266 0.4282948 0.2245119 +6.374593 0.4282948 0.2245119 +0 0.494694 0.2245119 +0 0.494694 0.2245119 +0 0.494694 0.2245119 +0.002268731 0.494694 0.2245119 +0.07076883 0.494694 0.2245119 +0.1119241 0.494694 0.2245119 +0.1475052 0.494694 0.2245119 +0.1846606 0.494694 0.2245119 +0.2245119 0.494694 0.2245119 +0.2679612 0.494694 0.2245119 +0.3158431 0.494694 0.2245119 +0.3689944 0.494694 0.2245119 +0.4282948 0.494694 0.2245119 +0.494694 0.494694 0.2245119 +0.5692344 0.494694 0.2245119 +0.6530715 0.494694 0.2245119 +0.7474945 0.494694 0.2245119 +0.8539475 0.494694 0.2245119 +0.974052 0.494694 0.2245119 +1.113885 0.494694 0.2245119 +1.27456 0.494694 0.2245119 +1.458117 0.494694 0.2245119 +1.667858 0.494694 0.2245119 +1.907556 0.494694 0.2245119 +2.181521 0.494694 0.2245119 +2.494678 0.494694 0.2245119 +2.852659 0.494694 0.2245119 +3.261896 0.494694 0.2245119 +3.729748 0.494694 0.2245119 +4.264621 0.494694 0.2245119 +4.876131 0.494694 0.2245119 +5.575266 0.494694 0.2245119 +6.374593 0.494694 0.2245119 +0 0.5692344 0.2245119 +0 0.5692344 0.2245119 +0 0.5692344 0.2245119 +0.002268731 0.5692344 0.2245119 +0.07076883 0.5692344 0.2245119 +0.1119241 0.5692344 0.2245119 +0.1475052 0.5692344 0.2245119 +0.1846606 0.5692344 0.2245119 +0.2245119 0.5692344 0.2245119 +0.2679612 0.5692344 0.2245119 +0.3158431 0.5692344 0.2245119 +0.3689944 0.5692344 0.2245119 +0.4282948 0.5692344 0.2245119 +0.494694 0.5692344 0.2245119 +0.5692344 0.5692344 0.2245119 +0.6530715 0.5692344 0.2245119 +0.7474945 0.5692344 0.2245119 +0.8539475 0.5692344 0.2245119 +0.974052 0.5692344 0.2245119 +1.113885 0.5692344 0.2245119 +1.27456 0.5692344 0.2245119 +1.458117 0.5692344 0.2245119 +1.667858 0.5692344 0.2245119 +1.907556 0.5692344 0.2245119 +2.181521 0.5692344 0.2245119 +2.494678 0.5692344 0.2245119 +2.852659 0.5692344 0.2245119 +3.261896 0.5692344 0.2245119 +3.729748 0.5692344 0.2245119 +4.264621 0.5692344 0.2245119 +4.876131 0.5692344 0.2245119 +5.575266 0.5692344 0.2245119 +6.374593 0.5692344 0.2245119 +0 0.6530715 0.2245119 +0 0.6530715 0.2245119 +0 0.6530715 0.2245119 +0.002268731 0.6530715 0.2245119 +0.07076883 0.6530715 0.2245119 +0.1119241 0.6530715 0.2245119 +0.1475052 0.6530715 0.2245119 +0.1846606 0.6530715 0.2245119 +0.2245119 0.6530715 0.2245119 +0.2679612 0.6530715 0.2245119 +0.3158431 0.6530715 0.2245119 +0.3689944 0.6530715 0.2245119 +0.4282948 0.6530715 0.2245119 +0.494694 0.6530715 0.2245119 +0.5692344 0.6530715 0.2245119 +0.6530715 0.6530715 0.2245119 +0.7474945 0.6530715 0.2245119 +0.8539475 0.6530715 0.2245119 +0.974052 0.6530715 0.2245119 +1.113885 0.6530715 0.2245119 +1.27456 0.6530715 0.2245119 +1.458117 0.6530715 0.2245119 +1.667858 0.6530715 0.2245119 +1.907556 0.6530715 0.2245119 +2.181521 0.6530715 0.2245119 +2.494678 0.6530715 0.2245119 +2.852659 0.6530715 0.2245119 +3.261896 0.6530715 0.2245119 +3.729748 0.6530715 0.2245119 +4.264621 0.6530715 0.2245119 +4.876131 0.6530715 0.2245119 +5.575266 0.6530715 0.2245119 +6.374593 0.6530715 0.2245119 +0 0.7474945 0.2245119 +0 0.7474945 0.2245119 +0 0.7474945 0.2245119 +0.002268731 0.7474945 0.2245119 +0.07076883 0.7474945 0.2245119 +0.1119241 0.7474945 0.2245119 +0.1475052 0.7474945 0.2245119 +0.1846606 0.7474945 0.2245119 +0.2245119 0.7474945 0.2245119 +0.2679612 0.7474945 0.2245119 +0.3158431 0.7474945 0.2245119 +0.3689944 0.7474945 0.2245119 +0.4282948 0.7474945 0.2245119 +0.494694 0.7474945 0.2245119 +0.5692344 0.7474945 0.2245119 +0.6530715 0.7474945 0.2245119 +0.7474945 0.7474945 0.2245119 +0.8539475 0.7474945 0.2245119 +0.974052 0.7474945 0.2245119 +1.113885 0.7474945 0.2245119 +1.27456 0.7474945 0.2245119 +1.458117 0.7474945 0.2245119 +1.667858 0.7474945 0.2245119 +1.907556 0.7474945 0.2245119 +2.181521 0.7474945 0.2245119 +2.494678 0.7474945 0.2245119 +2.852659 0.7474945 0.2245119 +3.261896 0.7474945 0.2245119 +3.729748 0.7474945 0.2245119 +4.264621 0.7474945 0.2245119 +4.876131 0.7474945 0.2245119 +5.575266 0.7474945 0.2245119 +6.374593 0.7474945 0.2245119 +0 0.8539475 0.2245119 +0 0.8539475 0.2245119 +0 0.8539475 0.2245119 +0.002268731 0.8539475 0.2245119 +0.07076883 0.8539475 0.2245119 +0.1119241 0.8539475 0.2245119 +0.1475052 0.8539475 0.2245119 +0.1846606 0.8539475 0.2245119 +0.2245119 0.8539475 0.2245119 +0.2679612 0.8539475 0.2245119 +0.3158431 0.8539475 0.2245119 +0.3689944 0.8539475 0.2245119 +0.4282948 0.8539475 0.2245119 +0.494694 0.8539475 0.2245119 +0.5692344 0.8539475 0.2245119 +0.6530715 0.8539475 0.2245119 +0.7474945 0.8539475 0.2245119 +0.8539475 0.8539475 0.2245119 +0.974052 0.8539475 0.2245119 +1.113885 0.8539475 0.2245119 +1.27456 0.8539475 0.2245119 +1.458117 0.8539475 0.2245119 +1.667858 0.8539475 0.2245119 +1.907556 0.8539475 0.2245119 +2.181521 0.8539475 0.2245119 +2.494678 0.8539475 0.2245119 +2.852659 0.8539475 0.2245119 +3.261896 0.8539475 0.2245119 +3.729748 0.8539475 0.2245119 +4.264621 0.8539475 0.2245119 +4.876131 0.8539475 0.2245119 +5.575266 0.8539475 0.2245119 +6.374593 0.8539475 0.2245119 +0 0.974052 0.2245119 +0 0.974052 0.2245119 +0 0.974052 0.2245119 +0.002268731 0.974052 0.2245119 +0.07076883 0.974052 0.2245119 +0.1119241 0.974052 0.2245119 +0.1475052 0.974052 0.2245119 +0.1846606 0.974052 0.2245119 +0.2245119 0.974052 0.2245119 +0.2679612 0.974052 0.2245119 +0.3158431 0.974052 0.2245119 +0.3689944 0.974052 0.2245119 +0.4282948 0.974052 0.2245119 +0.494694 0.974052 0.2245119 +0.5692344 0.974052 0.2245119 +0.6530715 0.974052 0.2245119 +0.7474945 0.974052 0.2245119 +0.8539475 0.974052 0.2245119 +0.974052 0.974052 0.2245119 +1.113885 0.974052 0.2245119 +1.27456 0.974052 0.2245119 +1.458117 0.974052 0.2245119 +1.667858 0.974052 0.2245119 +1.907556 0.974052 0.2245119 +2.181521 0.974052 0.2245119 +2.494678 0.974052 0.2245119 +2.852659 0.974052 0.2245119 +3.261896 0.974052 0.2245119 +3.729748 0.974052 0.2245119 +4.264621 0.974052 0.2245119 +4.876131 0.974052 0.2245119 +5.575266 0.974052 0.2245119 +6.374593 0.974052 0.2245119 +0 1.113885 0.2245119 +0 1.113885 0.2245119 +0 1.113885 0.2245119 +0.002268731 1.113885 0.2245119 +0.07076883 1.113885 0.2245119 +0.1119241 1.113885 0.2245119 +0.1475052 1.113885 0.2245119 +0.1846606 1.113885 0.2245119 +0.2245119 1.113885 0.2245119 +0.2679612 1.113885 0.2245119 +0.3158431 1.113885 0.2245119 +0.3689944 1.113885 0.2245119 +0.4282948 1.113885 0.2245119 +0.494694 1.113885 0.2245119 +0.5692344 1.113885 0.2245119 +0.6530715 1.113885 0.2245119 +0.7474945 1.113885 0.2245119 +0.8539475 1.113885 0.2245119 +0.974052 1.113885 0.2245119 +1.113885 1.113885 0.2245119 +1.27456 1.113885 0.2245119 +1.458117 1.113885 0.2245119 +1.667858 1.113885 0.2245119 +1.907556 1.113885 0.2245119 +2.181521 1.113885 0.2245119 +2.494678 1.113885 0.2245119 +2.852659 1.113885 0.2245119 +3.261896 1.113885 0.2245119 +3.729748 1.113885 0.2245119 +4.264621 1.113885 0.2245119 +4.876131 1.113885 0.2245119 +5.575266 1.113885 0.2245119 +6.374593 1.113885 0.2245119 +0 1.27456 0.2245119 +0 1.27456 0.2245119 +0 1.27456 0.2245119 +0.002268731 1.27456 0.2245119 +0.07076883 1.27456 0.2245119 +0.1119241 1.27456 0.2245119 +0.1475052 1.27456 0.2245119 +0.1846606 1.27456 0.2245119 +0.2245119 1.27456 0.2245119 +0.2679612 1.27456 0.2245119 +0.3158431 1.27456 0.2245119 +0.3689944 1.27456 0.2245119 +0.4282948 1.27456 0.2245119 +0.494694 1.27456 0.2245119 +0.5692344 1.27456 0.2245119 +0.6530715 1.27456 0.2245119 +0.7474945 1.27456 0.2245119 +0.8539475 1.27456 0.2245119 +0.974052 1.27456 0.2245119 +1.113885 1.27456 0.2245119 +1.27456 1.27456 0.2245119 +1.458117 1.27456 0.2245119 +1.667858 1.27456 0.2245119 +1.907556 1.27456 0.2245119 +2.181521 1.27456 0.2245119 +2.494678 1.27456 0.2245119 +2.852659 1.27456 0.2245119 +3.261896 1.27456 0.2245119 +3.729748 1.27456 0.2245119 +4.264621 1.27456 0.2245119 +4.876131 1.27456 0.2245119 +5.575266 1.27456 0.2245119 +6.374593 1.27456 0.2245119 +0 1.458117 0.2245119 +0 1.458117 0.2245119 +0 1.458117 0.2245119 +0.002268731 1.458117 0.2245119 +0.07076883 1.458117 0.2245119 +0.1119241 1.458117 0.2245119 +0.1475052 1.458117 0.2245119 +0.1846606 1.458117 0.2245119 +0.2245119 1.458117 0.2245119 +0.2679612 1.458117 0.2245119 +0.3158431 1.458117 0.2245119 +0.3689944 1.458117 0.2245119 +0.4282948 1.458117 0.2245119 +0.494694 1.458117 0.2245119 +0.5692344 1.458117 0.2245119 +0.6530715 1.458117 0.2245119 +0.7474945 1.458117 0.2245119 +0.8539475 1.458117 0.2245119 +0.974052 1.458117 0.2245119 +1.113885 1.458117 0.2245119 +1.27456 1.458117 0.2245119 +1.458117 1.458117 0.2245119 +1.667858 1.458117 0.2245119 +1.907556 1.458117 0.2245119 +2.181521 1.458117 0.2245119 +2.494678 1.458117 0.2245119 +2.852659 1.458117 0.2245119 +3.261896 1.458117 0.2245119 +3.729748 1.458117 0.2245119 +4.264621 1.458117 0.2245119 +4.876131 1.458117 0.2245119 +5.575266 1.458117 0.2245119 +6.374593 1.458117 0.2245119 +0 1.667858 0.2245119 +0 1.667858 0.2245119 +0 1.667858 0.2245119 +0.002268731 1.667858 0.2245119 +0.07076883 1.667858 0.2245119 +0.1119241 1.667858 0.2245119 +0.1475052 1.667858 0.2245119 +0.1846606 1.667858 0.2245119 +0.2245119 1.667858 0.2245119 +0.2679612 1.667858 0.2245119 +0.3158431 1.667858 0.2245119 +0.3689944 1.667858 0.2245119 +0.4282948 1.667858 0.2245119 +0.494694 1.667858 0.2245119 +0.5692344 1.667858 0.2245119 +0.6530715 1.667858 0.2245119 +0.7474945 1.667858 0.2245119 +0.8539475 1.667858 0.2245119 +0.974052 1.667858 0.2245119 +1.113885 1.667858 0.2245119 +1.27456 1.667858 0.2245119 +1.458117 1.667858 0.2245119 +1.667858 1.667858 0.2245119 +1.907556 1.667858 0.2245119 +2.181521 1.667858 0.2245119 +2.494678 1.667858 0.2245119 +2.852659 1.667858 0.2245119 +3.261896 1.667858 0.2245119 +3.729748 1.667858 0.2245119 +4.264621 1.667858 0.2245119 +4.876131 1.667858 0.2245119 +5.575266 1.667858 0.2245119 +6.374593 1.667858 0.2245119 +0 1.907556 0.2245119 +0 1.907556 0.2245119 +0 1.907556 0.2245119 +0.002268731 1.907556 0.2245119 +0.07076883 1.907556 0.2245119 +0.1119241 1.907556 0.2245119 +0.1475052 1.907556 0.2245119 +0.1846606 1.907556 0.2245119 +0.2245119 1.907556 0.2245119 +0.2679612 1.907556 0.2245119 +0.3158431 1.907556 0.2245119 +0.3689944 1.907556 0.2245119 +0.4282948 1.907556 0.2245119 +0.494694 1.907556 0.2245119 +0.5692344 1.907556 0.2245119 +0.6530715 1.907556 0.2245119 +0.7474945 1.907556 0.2245119 +0.8539475 1.907556 0.2245119 +0.974052 1.907556 0.2245119 +1.113885 1.907556 0.2245119 +1.27456 1.907556 0.2245119 +1.458117 1.907556 0.2245119 +1.667858 1.907556 0.2245119 +1.907556 1.907556 0.2245119 +2.181521 1.907556 0.2245119 +2.494678 1.907556 0.2245119 +2.852659 1.907556 0.2245119 +3.261896 1.907556 0.2245119 +3.729748 1.907556 0.2245119 +4.264621 1.907556 0.2245119 +4.876131 1.907556 0.2245119 +5.575266 1.907556 0.2245119 +6.374593 1.907556 0.2245119 +0 2.181521 0.2245119 +0 2.181521 0.2245119 +0 2.181521 0.2245119 +0.002268731 2.181521 0.2245119 +0.07076883 2.181521 0.2245119 +0.1119241 2.181521 0.2245119 +0.1475052 2.181521 0.2245119 +0.1846606 2.181521 0.2245119 +0.2245119 2.181521 0.2245119 +0.2679612 2.181521 0.2245119 +0.3158431 2.181521 0.2245119 +0.3689944 2.181521 0.2245119 +0.4282948 2.181521 0.2245119 +0.494694 2.181521 0.2245119 +0.5692344 2.181521 0.2245119 +0.6530715 2.181521 0.2245119 +0.7474945 2.181521 0.2245119 +0.8539475 2.181521 0.2245119 +0.974052 2.181521 0.2245119 +1.113885 2.181521 0.2245119 +1.27456 2.181521 0.2245119 +1.458117 2.181521 0.2245119 +1.667858 2.181521 0.2245119 +1.907556 2.181521 0.2245119 +2.181521 2.181521 0.2245119 +2.494678 2.181521 0.2245119 +2.852659 2.181521 0.2245119 +3.261896 2.181521 0.2245119 +3.729748 2.181521 0.2245119 +4.264621 2.181521 0.2245119 +4.876131 2.181521 0.2245119 +5.575266 2.181521 0.2245119 +6.374593 2.181521 0.2245119 +0 2.494678 0.2245119 +0 2.494678 0.2245119 +0 2.494678 0.2245119 +0.002268731 2.494678 0.2245119 +0.07076883 2.494678 0.2245119 +0.1119241 2.494678 0.2245119 +0.1475052 2.494678 0.2245119 +0.1846606 2.494678 0.2245119 +0.2245119 2.494678 0.2245119 +0.2679612 2.494678 0.2245119 +0.3158431 2.494678 0.2245119 +0.3689944 2.494678 0.2245119 +0.4282948 2.494678 0.2245119 +0.494694 2.494678 0.2245119 +0.5692344 2.494678 0.2245119 +0.6530715 2.494678 0.2245119 +0.7474945 2.494678 0.2245119 +0.8539475 2.494678 0.2245119 +0.974052 2.494678 0.2245119 +1.113885 2.494678 0.2245119 +1.27456 2.494678 0.2245119 +1.458117 2.494678 0.2245119 +1.667858 2.494678 0.2245119 +1.907556 2.494678 0.2245119 +2.181521 2.494678 0.2245119 +2.494678 2.494678 0.2245119 +2.852659 2.494678 0.2245119 +3.261896 2.494678 0.2245119 +3.729748 2.494678 0.2245119 +4.264621 2.494678 0.2245119 +4.876131 2.494678 0.2245119 +5.575266 2.494678 0.2245119 +6.374593 2.494678 0.2245119 +0 2.852659 0.2245119 +0 2.852659 0.2245119 +0 2.852659 0.2245119 +0.002268731 2.852659 0.2245119 +0.07076883 2.852659 0.2245119 +0.1119241 2.852659 0.2245119 +0.1475052 2.852659 0.2245119 +0.1846606 2.852659 0.2245119 +0.2245119 2.852659 0.2245119 +0.2679612 2.852659 0.2245119 +0.3158431 2.852659 0.2245119 +0.3689944 2.852659 0.2245119 +0.4282948 2.852659 0.2245119 +0.494694 2.852659 0.2245119 +0.5692344 2.852659 0.2245119 +0.6530715 2.852659 0.2245119 +0.7474945 2.852659 0.2245119 +0.8539475 2.852659 0.2245119 +0.974052 2.852659 0.2245119 +1.113885 2.852659 0.2245119 +1.27456 2.852659 0.2245119 +1.458117 2.852659 0.2245119 +1.667858 2.852659 0.2245119 +1.907556 2.852659 0.2245119 +2.181521 2.852659 0.2245119 +2.494678 2.852659 0.2245119 +2.852659 2.852659 0.2245119 +3.261896 2.852659 0.2245119 +3.729748 2.852659 0.2245119 +4.264621 2.852659 0.2245119 +4.876131 2.852659 0.2245119 +5.575266 2.852659 0.2245119 +6.374593 2.852659 0.2245119 +0 3.261896 0.2245119 +0 3.261896 0.2245119 +0 3.261896 0.2245119 +0.002268731 3.261896 0.2245119 +0.07076883 3.261896 0.2245119 +0.1119241 3.261896 0.2245119 +0.1475052 3.261896 0.2245119 +0.1846606 3.261896 0.2245119 +0.2245119 3.261896 0.2245119 +0.2679612 3.261896 0.2245119 +0.3158431 3.261896 0.2245119 +0.3689944 3.261896 0.2245119 +0.4282948 3.261896 0.2245119 +0.494694 3.261896 0.2245119 +0.5692344 3.261896 0.2245119 +0.6530715 3.261896 0.2245119 +0.7474945 3.261896 0.2245119 +0.8539475 3.261896 0.2245119 +0.974052 3.261896 0.2245119 +1.113885 3.261896 0.2245119 +1.27456 3.261896 0.2245119 +1.458117 3.261896 0.2245119 +1.667858 3.261896 0.2245119 +1.907556 3.261896 0.2245119 +2.181521 3.261896 0.2245119 +2.494678 3.261896 0.2245119 +2.852659 3.261896 0.2245119 +3.261896 3.261896 0.2245119 +3.729748 3.261896 0.2245119 +4.264621 3.261896 0.2245119 +4.876131 3.261896 0.2245119 +5.575266 3.261896 0.2245119 +6.374593 3.261896 0.2245119 +0 3.729748 0.2245119 +0 3.729748 0.2245119 +0 3.729748 0.2245119 +0.002268731 3.729748 0.2245119 +0.07076883 3.729748 0.2245119 +0.1119241 3.729748 0.2245119 +0.1475052 3.729748 0.2245119 +0.1846606 3.729748 0.2245119 +0.2245119 3.729748 0.2245119 +0.2679612 3.729748 0.2245119 +0.3158431 3.729748 0.2245119 +0.3689944 3.729748 0.2245119 +0.4282948 3.729748 0.2245119 +0.494694 3.729748 0.2245119 +0.5692344 3.729748 0.2245119 +0.6530715 3.729748 0.2245119 +0.7474945 3.729748 0.2245119 +0.8539475 3.729748 0.2245119 +0.974052 3.729748 0.2245119 +1.113885 3.729748 0.2245119 +1.27456 3.729748 0.2245119 +1.458117 3.729748 0.2245119 +1.667858 3.729748 0.2245119 +1.907556 3.729748 0.2245119 +2.181521 3.729748 0.2245119 +2.494678 3.729748 0.2245119 +2.852659 3.729748 0.2245119 +3.261896 3.729748 0.2245119 +3.729748 3.729748 0.2245119 +4.264621 3.729748 0.2245119 +4.876131 3.729748 0.2245119 +5.575266 3.729748 0.2245119 +6.374593 3.729748 0.2245119 +0 4.264621 0.2245119 +0 4.264621 0.2245119 +0 4.264621 0.2245119 +0.002268731 4.264621 0.2245119 +0.07076883 4.264621 0.2245119 +0.1119241 4.264621 0.2245119 +0.1475052 4.264621 0.2245119 +0.1846606 4.264621 0.2245119 +0.2245119 4.264621 0.2245119 +0.2679612 4.264621 0.2245119 +0.3158431 4.264621 0.2245119 +0.3689944 4.264621 0.2245119 +0.4282948 4.264621 0.2245119 +0.494694 4.264621 0.2245119 +0.5692344 4.264621 0.2245119 +0.6530715 4.264621 0.2245119 +0.7474945 4.264621 0.2245119 +0.8539475 4.264621 0.2245119 +0.974052 4.264621 0.2245119 +1.113885 4.264621 0.2245119 +1.27456 4.264621 0.2245119 +1.458117 4.264621 0.2245119 +1.667858 4.264621 0.2245119 +1.907556 4.264621 0.2245119 +2.181521 4.264621 0.2245119 +2.494678 4.264621 0.2245119 +2.852659 4.264621 0.2245119 +3.261896 4.264621 0.2245119 +3.729748 4.264621 0.2245119 +4.264621 4.264621 0.2245119 +4.876131 4.264621 0.2245119 +5.575266 4.264621 0.2245119 +6.374593 4.264621 0.2245119 +0 4.876131 0.2245119 +0 4.876131 0.2245119 +0 4.876131 0.2245119 +0.002268731 4.876131 0.2245119 +0.07076883 4.876131 0.2245119 +0.1119241 4.876131 0.2245119 +0.1475052 4.876131 0.2245119 +0.1846606 4.876131 0.2245119 +0.2245119 4.876131 0.2245119 +0.2679612 4.876131 0.2245119 +0.3158431 4.876131 0.2245119 +0.3689944 4.876131 0.2245119 +0.4282948 4.876131 0.2245119 +0.494694 4.876131 0.2245119 +0.5692344 4.876131 0.2245119 +0.6530715 4.876131 0.2245119 +0.7474945 4.876131 0.2245119 +0.8539475 4.876131 0.2245119 +0.974052 4.876131 0.2245119 +1.113885 4.876131 0.2245119 +1.27456 4.876131 0.2245119 +1.458117 4.876131 0.2245119 +1.667858 4.876131 0.2245119 +1.907556 4.876131 0.2245119 +2.181521 4.876131 0.2245119 +2.494678 4.876131 0.2245119 +2.852659 4.876131 0.2245119 +3.261896 4.876131 0.2245119 +3.729748 4.876131 0.2245119 +4.264621 4.876131 0.2245119 +4.876131 4.876131 0.2245119 +5.575266 4.876131 0.2245119 +6.374593 4.876131 0.2245119 +0 5.575266 0.2245119 +0 5.575266 0.2245119 +0 5.575266 0.2245119 +0.002268731 5.575266 0.2245119 +0.07076883 5.575266 0.2245119 +0.1119241 5.575266 0.2245119 +0.1475052 5.575266 0.2245119 +0.1846606 5.575266 0.2245119 +0.2245119 5.575266 0.2245119 +0.2679612 5.575266 0.2245119 +0.3158431 5.575266 0.2245119 +0.3689944 5.575266 0.2245119 +0.4282948 5.575266 0.2245119 +0.494694 5.575266 0.2245119 +0.5692344 5.575266 0.2245119 +0.6530715 5.575266 0.2245119 +0.7474945 5.575266 0.2245119 +0.8539475 5.575266 0.2245119 +0.974052 5.575266 0.2245119 +1.113885 5.575266 0.2245119 +1.27456 5.575266 0.2245119 +1.458117 5.575266 0.2245119 +1.667858 5.575266 0.2245119 +1.907556 5.575266 0.2245119 +2.181521 5.575266 0.2245119 +2.494678 5.575266 0.2245119 +2.852659 5.575266 0.2245119 +3.261896 5.575266 0.2245119 +3.729748 5.575266 0.2245119 +4.264621 5.575266 0.2245119 +4.876131 5.575266 0.2245119 +5.575266 5.575266 0.2245119 +6.374593 5.575266 0.2245119 +0 6.374593 0.2245119 +0 6.374593 0.2245119 +0 6.374593 0.2245119 +0.002268731 6.374593 0.2245119 +0.07076883 6.374593 0.2245119 +0.1119241 6.374593 0.2245119 +0.1475052 6.374593 0.2245119 +0.1846606 6.374593 0.2245119 +0.2245119 6.374593 0.2245119 +0.2679612 6.374593 0.2245119 +0.3158431 6.374593 0.2245119 +0.3689944 6.374593 0.2245119 +0.4282948 6.374593 0.2245119 +0.494694 6.374593 0.2245119 +0.5692344 6.374593 0.2245119 +0.6530715 6.374593 0.2245119 +0.7474945 6.374593 0.2245119 +0.8539475 6.374593 0.2245119 +0.974052 6.374593 0.2245119 +1.113885 6.374593 0.2245119 +1.27456 6.374593 0.2245119 +1.458117 6.374593 0.2245119 +1.667858 6.374593 0.2245119 +1.907556 6.374593 0.2245119 +2.181521 6.374593 0.2245119 +2.494678 6.374593 0.2245119 +2.852659 6.374593 0.2245119 +3.261896 6.374593 0.2245119 +3.729748 6.374593 0.2245119 +4.264621 6.374593 0.2245119 +4.876131 6.374593 0.2245119 +5.575266 6.374593 0.2245119 +6.374593 6.374593 0.2245119 +0 0 0.2679612 +0 0 0.2679612 +0 0 0.2679612 +0.002268731 0 0.2679612 +0.07076883 0 0.2679612 +0.1119241 0 0.2679612 +0.1475052 0 0.2679612 +0.1846606 0 0.2679612 +0.2245119 0 0.2679612 +0.2679612 0 0.2679612 +0.3158431 0 0.2679612 +0.3689944 0 0.2679612 +0.4282948 0 0.2679612 +0.494694 0 0.2679612 +0.5692344 0 0.2679612 +0.6530715 0 0.2679612 +0.7474945 0 0.2679612 +0.8539475 0 0.2679612 +0.974052 0 0.2679612 +1.113885 0 0.2679612 +1.27456 0 0.2679612 +1.458117 0 0.2679612 +1.667858 0 0.2679612 +1.907556 0 0.2679612 +2.181521 0 0.2679612 +2.494678 0 0.2679612 +2.852659 0 0.2679612 +3.261896 0 0.2679612 +3.729748 0 0.2679612 +4.264621 0 0.2679612 +4.876131 0 0.2679612 +5.575266 0 0.2679612 +6.374593 0 0.2679612 +0 0 0.2679612 +0 0 0.2679612 +0 0 0.2679612 +0.002268731 0 0.2679612 +0.07076883 0 0.2679612 +0.1119241 0 0.2679612 +0.1475052 0 0.2679612 +0.1846606 0 0.2679612 +0.2245119 0 0.2679612 +0.2679612 0 0.2679612 +0.3158431 0 0.2679612 +0.3689944 0 0.2679612 +0.4282948 0 0.2679612 +0.494694 0 0.2679612 +0.5692344 0 0.2679612 +0.6530715 0 0.2679612 +0.7474945 0 0.2679612 +0.8539475 0 0.2679612 +0.974052 0 0.2679612 +1.113885 0 0.2679612 +1.27456 0 0.2679612 +1.458117 0 0.2679612 +1.667858 0 0.2679612 +1.907556 0 0.2679612 +2.181521 0 0.2679612 +2.494678 0 0.2679612 +2.852659 0 0.2679612 +3.261896 0 0.2679612 +3.729748 0 0.2679612 +4.264621 0 0.2679612 +4.876131 0 0.2679612 +5.575266 0 0.2679612 +6.374593 0 0.2679612 +0 0 0.2679612 +0 0 0.2679612 +0 0 0.2679612 +0.002268731 0 0.2679612 +0.07076883 0 0.2679612 +0.1119241 0 0.2679612 +0.1475052 0 0.2679612 +0.1846606 0 0.2679612 +0.2245119 0 0.2679612 +0.2679612 0 0.2679612 +0.3158431 0 0.2679612 +0.3689944 0 0.2679612 +0.4282948 0 0.2679612 +0.494694 0 0.2679612 +0.5692344 0 0.2679612 +0.6530715 0 0.2679612 +0.7474945 0 0.2679612 +0.8539475 0 0.2679612 +0.974052 0 0.2679612 +1.113885 0 0.2679612 +1.27456 0 0.2679612 +1.458117 0 0.2679612 +1.667858 0 0.2679612 +1.907556 0 0.2679612 +2.181521 0 0.2679612 +2.494678 0 0.2679612 +2.852659 0 0.2679612 +3.261896 0 0.2679612 +3.729748 0 0.2679612 +4.264621 0 0.2679612 +4.876131 0 0.2679612 +5.575266 0 0.2679612 +6.374593 0 0.2679612 +0 0.002268731 0.2679612 +0 0.002268731 0.2679612 +0 0.002268731 0.2679612 +0.002268731 0.002268731 0.2679612 +0.07076883 0.002268731 0.2679612 +0.1119241 0.002268731 0.2679612 +0.1475052 0.002268731 0.2679612 +0.1846606 0.002268731 0.2679612 +0.2245119 0.002268731 0.2679612 +0.2679612 0.002268731 0.2679612 +0.3158431 0.002268731 0.2679612 +0.3689944 0.002268731 0.2679612 +0.4282948 0.002268731 0.2679612 +0.494694 0.002268731 0.2679612 +0.5692344 0.002268731 0.2679612 +0.6530715 0.002268731 0.2679612 +0.7474945 0.002268731 0.2679612 +0.8539475 0.002268731 0.2679612 +0.974052 0.002268731 0.2679612 +1.113885 0.002268731 0.2679612 +1.27456 0.002268731 0.2679612 +1.458117 0.002268731 0.2679612 +1.667858 0.002268731 0.2679612 +1.907556 0.002268731 0.2679612 +2.181521 0.002268731 0.2679612 +2.494678 0.002268731 0.2679612 +2.852659 0.002268731 0.2679612 +3.261896 0.002268731 0.2679612 +3.729748 0.002268731 0.2679612 +4.264621 0.002268731 0.2679612 +4.876131 0.002268731 0.2679612 +5.575266 0.002268731 0.2679612 +6.374593 0.002268731 0.2679612 +0 0.07076883 0.2679612 +0 0.07076883 0.2679612 +0 0.07076883 0.2679612 +0.002268731 0.07076883 0.2679612 +0.07076883 0.07076883 0.2679612 +0.1119241 0.07076883 0.2679612 +0.1475052 0.07076883 0.2679612 +0.1846606 0.07076883 0.2679612 +0.2245119 0.07076883 0.2679612 +0.2679612 0.07076883 0.2679612 +0.3158431 0.07076883 0.2679612 +0.3689944 0.07076883 0.2679612 +0.4282948 0.07076883 0.2679612 +0.494694 0.07076883 0.2679612 +0.5692344 0.07076883 0.2679612 +0.6530715 0.07076883 0.2679612 +0.7474945 0.07076883 0.2679612 +0.8539475 0.07076883 0.2679612 +0.974052 0.07076883 0.2679612 +1.113885 0.07076883 0.2679612 +1.27456 0.07076883 0.2679612 +1.458117 0.07076883 0.2679612 +1.667858 0.07076883 0.2679612 +1.907556 0.07076883 0.2679612 +2.181521 0.07076883 0.2679612 +2.494678 0.07076883 0.2679612 +2.852659 0.07076883 0.2679612 +3.261896 0.07076883 0.2679612 +3.729748 0.07076883 0.2679612 +4.264621 0.07076883 0.2679612 +4.876131 0.07076883 0.2679612 +5.575266 0.07076883 0.2679612 +6.374593 0.07076883 0.2679612 +0 0.1119241 0.2679612 +0 0.1119241 0.2679612 +0 0.1119241 0.2679612 +0.002268731 0.1119241 0.2679612 +0.07076883 0.1119241 0.2679612 +0.1119241 0.1119241 0.2679612 +0.1475052 0.1119241 0.2679612 +0.1846606 0.1119241 0.2679612 +0.2245119 0.1119241 0.2679612 +0.2679612 0.1119241 0.2679612 +0.3158431 0.1119241 0.2679612 +0.3689944 0.1119241 0.2679612 +0.4282948 0.1119241 0.2679612 +0.494694 0.1119241 0.2679612 +0.5692344 0.1119241 0.2679612 +0.6530715 0.1119241 0.2679612 +0.7474945 0.1119241 0.2679612 +0.8539475 0.1119241 0.2679612 +0.974052 0.1119241 0.2679612 +1.113885 0.1119241 0.2679612 +1.27456 0.1119241 0.2679612 +1.458117 0.1119241 0.2679612 +1.667858 0.1119241 0.2679612 +1.907556 0.1119241 0.2679612 +2.181521 0.1119241 0.2679612 +2.494678 0.1119241 0.2679612 +2.852659 0.1119241 0.2679612 +3.261896 0.1119241 0.2679612 +3.729748 0.1119241 0.2679612 +4.264621 0.1119241 0.2679612 +4.876131 0.1119241 0.2679612 +5.575266 0.1119241 0.2679612 +6.374593 0.1119241 0.2679612 +0 0.1475052 0.2679612 +0 0.1475052 0.2679612 +0 0.1475052 0.2679612 +0.002268731 0.1475052 0.2679612 +0.07076883 0.1475052 0.2679612 +0.1119241 0.1475052 0.2679612 +0.1475052 0.1475052 0.2679612 +0.1846606 0.1475052 0.2679612 +0.2245119 0.1475052 0.2679612 +0.2679612 0.1475052 0.2679612 +0.3158431 0.1475052 0.2679612 +0.3689944 0.1475052 0.2679612 +0.4282948 0.1475052 0.2679612 +0.494694 0.1475052 0.2679612 +0.5692344 0.1475052 0.2679612 +0.6530715 0.1475052 0.2679612 +0.7474945 0.1475052 0.2679612 +0.8539475 0.1475052 0.2679612 +0.974052 0.1475052 0.2679612 +1.113885 0.1475052 0.2679612 +1.27456 0.1475052 0.2679612 +1.458117 0.1475052 0.2679612 +1.667858 0.1475052 0.2679612 +1.907556 0.1475052 0.2679612 +2.181521 0.1475052 0.2679612 +2.494678 0.1475052 0.2679612 +2.852659 0.1475052 0.2679612 +3.261896 0.1475052 0.2679612 +3.729748 0.1475052 0.2679612 +4.264621 0.1475052 0.2679612 +4.876131 0.1475052 0.2679612 +5.575266 0.1475052 0.2679612 +6.374593 0.1475052 0.2679612 +0 0.1846606 0.2679612 +0 0.1846606 0.2679612 +0 0.1846606 0.2679612 +0.002268731 0.1846606 0.2679612 +0.07076883 0.1846606 0.2679612 +0.1119241 0.1846606 0.2679612 +0.1475052 0.1846606 0.2679612 +0.1846606 0.1846606 0.2679612 +0.2245119 0.1846606 0.2679612 +0.2679612 0.1846606 0.2679612 +0.3158431 0.1846606 0.2679612 +0.3689944 0.1846606 0.2679612 +0.4282948 0.1846606 0.2679612 +0.494694 0.1846606 0.2679612 +0.5692344 0.1846606 0.2679612 +0.6530715 0.1846606 0.2679612 +0.7474945 0.1846606 0.2679612 +0.8539475 0.1846606 0.2679612 +0.974052 0.1846606 0.2679612 +1.113885 0.1846606 0.2679612 +1.27456 0.1846606 0.2679612 +1.458117 0.1846606 0.2679612 +1.667858 0.1846606 0.2679612 +1.907556 0.1846606 0.2679612 +2.181521 0.1846606 0.2679612 +2.494678 0.1846606 0.2679612 +2.852659 0.1846606 0.2679612 +3.261896 0.1846606 0.2679612 +3.729748 0.1846606 0.2679612 +4.264621 0.1846606 0.2679612 +4.876131 0.1846606 0.2679612 +5.575266 0.1846606 0.2679612 +6.374593 0.1846606 0.2679612 +0 0.2245119 0.2679612 +0 0.2245119 0.2679612 +0 0.2245119 0.2679612 +0.002268731 0.2245119 0.2679612 +0.07076883 0.2245119 0.2679612 +0.1119241 0.2245119 0.2679612 +0.1475052 0.2245119 0.2679612 +0.1846606 0.2245119 0.2679612 +0.2245119 0.2245119 0.2679612 +0.2679612 0.2245119 0.2679612 +0.3158431 0.2245119 0.2679612 +0.3689944 0.2245119 0.2679612 +0.4282948 0.2245119 0.2679612 +0.494694 0.2245119 0.2679612 +0.5692344 0.2245119 0.2679612 +0.6530715 0.2245119 0.2679612 +0.7474945 0.2245119 0.2679612 +0.8539475 0.2245119 0.2679612 +0.974052 0.2245119 0.2679612 +1.113885 0.2245119 0.2679612 +1.27456 0.2245119 0.2679612 +1.458117 0.2245119 0.2679612 +1.667858 0.2245119 0.2679612 +1.907556 0.2245119 0.2679612 +2.181521 0.2245119 0.2679612 +2.494678 0.2245119 0.2679612 +2.852659 0.2245119 0.2679612 +3.261896 0.2245119 0.2679612 +3.729748 0.2245119 0.2679612 +4.264621 0.2245119 0.2679612 +4.876131 0.2245119 0.2679612 +5.575266 0.2245119 0.2679612 +6.374593 0.2245119 0.2679612 +0 0.2679612 0.2679612 +0 0.2679612 0.2679612 +0 0.2679612 0.2679612 +0.002268731 0.2679612 0.2679612 +0.07076883 0.2679612 0.2679612 +0.1119241 0.2679612 0.2679612 +0.1475052 0.2679612 0.2679612 +0.1846606 0.2679612 0.2679612 +0.2245119 0.2679612 0.2679612 +0.2679612 0.2679612 0.2679612 +0.3158431 0.2679612 0.2679612 +0.3689944 0.2679612 0.2679612 +0.4282948 0.2679612 0.2679612 +0.494694 0.2679612 0.2679612 +0.5692344 0.2679612 0.2679612 +0.6530715 0.2679612 0.2679612 +0.7474945 0.2679612 0.2679612 +0.8539475 0.2679612 0.2679612 +0.974052 0.2679612 0.2679612 +1.113885 0.2679612 0.2679612 +1.27456 0.2679612 0.2679612 +1.458117 0.2679612 0.2679612 +1.667858 0.2679612 0.2679612 +1.907556 0.2679612 0.2679612 +2.181521 0.2679612 0.2679612 +2.494678 0.2679612 0.2679612 +2.852659 0.2679612 0.2679612 +3.261896 0.2679612 0.2679612 +3.729748 0.2679612 0.2679612 +4.264621 0.2679612 0.2679612 +4.876131 0.2679612 0.2679612 +5.575266 0.2679612 0.2679612 +6.374593 0.2679612 0.2679612 +0 0.3158431 0.2679612 +0 0.3158431 0.2679612 +0 0.3158431 0.2679612 +0.002268731 0.3158431 0.2679612 +0.07076883 0.3158431 0.2679612 +0.1119241 0.3158431 0.2679612 +0.1475052 0.3158431 0.2679612 +0.1846606 0.3158431 0.2679612 +0.2245119 0.3158431 0.2679612 +0.2679612 0.3158431 0.2679612 +0.3158431 0.3158431 0.2679612 +0.3689944 0.3158431 0.2679612 +0.4282948 0.3158431 0.2679612 +0.494694 0.3158431 0.2679612 +0.5692344 0.3158431 0.2679612 +0.6530715 0.3158431 0.2679612 +0.7474945 0.3158431 0.2679612 +0.8539475 0.3158431 0.2679612 +0.974052 0.3158431 0.2679612 +1.113885 0.3158431 0.2679612 +1.27456 0.3158431 0.2679612 +1.458117 0.3158431 0.2679612 +1.667858 0.3158431 0.2679612 +1.907556 0.3158431 0.2679612 +2.181521 0.3158431 0.2679612 +2.494678 0.3158431 0.2679612 +2.852659 0.3158431 0.2679612 +3.261896 0.3158431 0.2679612 +3.729748 0.3158431 0.2679612 +4.264621 0.3158431 0.2679612 +4.876131 0.3158431 0.2679612 +5.575266 0.3158431 0.2679612 +6.374593 0.3158431 0.2679612 +0 0.3689944 0.2679612 +0 0.3689944 0.2679612 +0 0.3689944 0.2679612 +0.002268731 0.3689944 0.2679612 +0.07076883 0.3689944 0.2679612 +0.1119241 0.3689944 0.2679612 +0.1475052 0.3689944 0.2679612 +0.1846606 0.3689944 0.2679612 +0.2245119 0.3689944 0.2679612 +0.2679612 0.3689944 0.2679612 +0.3158431 0.3689944 0.2679612 +0.3689944 0.3689944 0.2679612 +0.4282948 0.3689944 0.2679612 +0.494694 0.3689944 0.2679612 +0.5692344 0.3689944 0.2679612 +0.6530715 0.3689944 0.2679612 +0.7474945 0.3689944 0.2679612 +0.8539475 0.3689944 0.2679612 +0.974052 0.3689944 0.2679612 +1.113885 0.3689944 0.2679612 +1.27456 0.3689944 0.2679612 +1.458117 0.3689944 0.2679612 +1.667858 0.3689944 0.2679612 +1.907556 0.3689944 0.2679612 +2.181521 0.3689944 0.2679612 +2.494678 0.3689944 0.2679612 +2.852659 0.3689944 0.2679612 +3.261896 0.3689944 0.2679612 +3.729748 0.3689944 0.2679612 +4.264621 0.3689944 0.2679612 +4.876131 0.3689944 0.2679612 +5.575266 0.3689944 0.2679612 +6.374593 0.3689944 0.2679612 +0 0.4282948 0.2679612 +0 0.4282948 0.2679612 +0 0.4282948 0.2679612 +0.002268731 0.4282948 0.2679612 +0.07076883 0.4282948 0.2679612 +0.1119241 0.4282948 0.2679612 +0.1475052 0.4282948 0.2679612 +0.1846606 0.4282948 0.2679612 +0.2245119 0.4282948 0.2679612 +0.2679612 0.4282948 0.2679612 +0.3158431 0.4282948 0.2679612 +0.3689944 0.4282948 0.2679612 +0.4282948 0.4282948 0.2679612 +0.494694 0.4282948 0.2679612 +0.5692344 0.4282948 0.2679612 +0.6530715 0.4282948 0.2679612 +0.7474945 0.4282948 0.2679612 +0.8539475 0.4282948 0.2679612 +0.974052 0.4282948 0.2679612 +1.113885 0.4282948 0.2679612 +1.27456 0.4282948 0.2679612 +1.458117 0.4282948 0.2679612 +1.667858 0.4282948 0.2679612 +1.907556 0.4282948 0.2679612 +2.181521 0.4282948 0.2679612 +2.494678 0.4282948 0.2679612 +2.852659 0.4282948 0.2679612 +3.261896 0.4282948 0.2679612 +3.729748 0.4282948 0.2679612 +4.264621 0.4282948 0.2679612 +4.876131 0.4282948 0.2679612 +5.575266 0.4282948 0.2679612 +6.374593 0.4282948 0.2679612 +0 0.494694 0.2679612 +0 0.494694 0.2679612 +0 0.494694 0.2679612 +0.002268731 0.494694 0.2679612 +0.07076883 0.494694 0.2679612 +0.1119241 0.494694 0.2679612 +0.1475052 0.494694 0.2679612 +0.1846606 0.494694 0.2679612 +0.2245119 0.494694 0.2679612 +0.2679612 0.494694 0.2679612 +0.3158431 0.494694 0.2679612 +0.3689944 0.494694 0.2679612 +0.4282948 0.494694 0.2679612 +0.494694 0.494694 0.2679612 +0.5692344 0.494694 0.2679612 +0.6530715 0.494694 0.2679612 +0.7474945 0.494694 0.2679612 +0.8539475 0.494694 0.2679612 +0.974052 0.494694 0.2679612 +1.113885 0.494694 0.2679612 +1.27456 0.494694 0.2679612 +1.458117 0.494694 0.2679612 +1.667858 0.494694 0.2679612 +1.907556 0.494694 0.2679612 +2.181521 0.494694 0.2679612 +2.494678 0.494694 0.2679612 +2.852659 0.494694 0.2679612 +3.261896 0.494694 0.2679612 +3.729748 0.494694 0.2679612 +4.264621 0.494694 0.2679612 +4.876131 0.494694 0.2679612 +5.575266 0.494694 0.2679612 +6.374593 0.494694 0.2679612 +0 0.5692344 0.2679612 +0 0.5692344 0.2679612 +0 0.5692344 0.2679612 +0.002268731 0.5692344 0.2679612 +0.07076883 0.5692344 0.2679612 +0.1119241 0.5692344 0.2679612 +0.1475052 0.5692344 0.2679612 +0.1846606 0.5692344 0.2679612 +0.2245119 0.5692344 0.2679612 +0.2679612 0.5692344 0.2679612 +0.3158431 0.5692344 0.2679612 +0.3689944 0.5692344 0.2679612 +0.4282948 0.5692344 0.2679612 +0.494694 0.5692344 0.2679612 +0.5692344 0.5692344 0.2679612 +0.6530715 0.5692344 0.2679612 +0.7474945 0.5692344 0.2679612 +0.8539475 0.5692344 0.2679612 +0.974052 0.5692344 0.2679612 +1.113885 0.5692344 0.2679612 +1.27456 0.5692344 0.2679612 +1.458117 0.5692344 0.2679612 +1.667858 0.5692344 0.2679612 +1.907556 0.5692344 0.2679612 +2.181521 0.5692344 0.2679612 +2.494678 0.5692344 0.2679612 +2.852659 0.5692344 0.2679612 +3.261896 0.5692344 0.2679612 +3.729748 0.5692344 0.2679612 +4.264621 0.5692344 0.2679612 +4.876131 0.5692344 0.2679612 +5.575266 0.5692344 0.2679612 +6.374593 0.5692344 0.2679612 +0 0.6530715 0.2679612 +0 0.6530715 0.2679612 +0 0.6530715 0.2679612 +0.002268731 0.6530715 0.2679612 +0.07076883 0.6530715 0.2679612 +0.1119241 0.6530715 0.2679612 +0.1475052 0.6530715 0.2679612 +0.1846606 0.6530715 0.2679612 +0.2245119 0.6530715 0.2679612 +0.2679612 0.6530715 0.2679612 +0.3158431 0.6530715 0.2679612 +0.3689944 0.6530715 0.2679612 +0.4282948 0.6530715 0.2679612 +0.494694 0.6530715 0.2679612 +0.5692344 0.6530715 0.2679612 +0.6530715 0.6530715 0.2679612 +0.7474945 0.6530715 0.2679612 +0.8539475 0.6530715 0.2679612 +0.974052 0.6530715 0.2679612 +1.113885 0.6530715 0.2679612 +1.27456 0.6530715 0.2679612 +1.458117 0.6530715 0.2679612 +1.667858 0.6530715 0.2679612 +1.907556 0.6530715 0.2679612 +2.181521 0.6530715 0.2679612 +2.494678 0.6530715 0.2679612 +2.852659 0.6530715 0.2679612 +3.261896 0.6530715 0.2679612 +3.729748 0.6530715 0.2679612 +4.264621 0.6530715 0.2679612 +4.876131 0.6530715 0.2679612 +5.575266 0.6530715 0.2679612 +6.374593 0.6530715 0.2679612 +0 0.7474945 0.2679612 +0 0.7474945 0.2679612 +0 0.7474945 0.2679612 +0.002268731 0.7474945 0.2679612 +0.07076883 0.7474945 0.2679612 +0.1119241 0.7474945 0.2679612 +0.1475052 0.7474945 0.2679612 +0.1846606 0.7474945 0.2679612 +0.2245119 0.7474945 0.2679612 +0.2679612 0.7474945 0.2679612 +0.3158431 0.7474945 0.2679612 +0.3689944 0.7474945 0.2679612 +0.4282948 0.7474945 0.2679612 +0.494694 0.7474945 0.2679612 +0.5692344 0.7474945 0.2679612 +0.6530715 0.7474945 0.2679612 +0.7474945 0.7474945 0.2679612 +0.8539475 0.7474945 0.2679612 +0.974052 0.7474945 0.2679612 +1.113885 0.7474945 0.2679612 +1.27456 0.7474945 0.2679612 +1.458117 0.7474945 0.2679612 +1.667858 0.7474945 0.2679612 +1.907556 0.7474945 0.2679612 +2.181521 0.7474945 0.2679612 +2.494678 0.7474945 0.2679612 +2.852659 0.7474945 0.2679612 +3.261896 0.7474945 0.2679612 +3.729748 0.7474945 0.2679612 +4.264621 0.7474945 0.2679612 +4.876131 0.7474945 0.2679612 +5.575266 0.7474945 0.2679612 +6.374593 0.7474945 0.2679612 +0 0.8539475 0.2679612 +0 0.8539475 0.2679612 +0 0.8539475 0.2679612 +0.002268731 0.8539475 0.2679612 +0.07076883 0.8539475 0.2679612 +0.1119241 0.8539475 0.2679612 +0.1475052 0.8539475 0.2679612 +0.1846606 0.8539475 0.2679612 +0.2245119 0.8539475 0.2679612 +0.2679612 0.8539475 0.2679612 +0.3158431 0.8539475 0.2679612 +0.3689944 0.8539475 0.2679612 +0.4282948 0.8539475 0.2679612 +0.494694 0.8539475 0.2679612 +0.5692344 0.8539475 0.2679612 +0.6530715 0.8539475 0.2679612 +0.7474945 0.8539475 0.2679612 +0.8539475 0.8539475 0.2679612 +0.974052 0.8539475 0.2679612 +1.113885 0.8539475 0.2679612 +1.27456 0.8539475 0.2679612 +1.458117 0.8539475 0.2679612 +1.667858 0.8539475 0.2679612 +1.907556 0.8539475 0.2679612 +2.181521 0.8539475 0.2679612 +2.494678 0.8539475 0.2679612 +2.852659 0.8539475 0.2679612 +3.261896 0.8539475 0.2679612 +3.729748 0.8539475 0.2679612 +4.264621 0.8539475 0.2679612 +4.876131 0.8539475 0.2679612 +5.575266 0.8539475 0.2679612 +6.374593 0.8539475 0.2679612 +0 0.974052 0.2679612 +0 0.974052 0.2679612 +0 0.974052 0.2679612 +0.002268731 0.974052 0.2679612 +0.07076883 0.974052 0.2679612 +0.1119241 0.974052 0.2679612 +0.1475052 0.974052 0.2679612 +0.1846606 0.974052 0.2679612 +0.2245119 0.974052 0.2679612 +0.2679612 0.974052 0.2679612 +0.3158431 0.974052 0.2679612 +0.3689944 0.974052 0.2679612 +0.4282948 0.974052 0.2679612 +0.494694 0.974052 0.2679612 +0.5692344 0.974052 0.2679612 +0.6530715 0.974052 0.2679612 +0.7474945 0.974052 0.2679612 +0.8539475 0.974052 0.2679612 +0.974052 0.974052 0.2679612 +1.113885 0.974052 0.2679612 +1.27456 0.974052 0.2679612 +1.458117 0.974052 0.2679612 +1.667858 0.974052 0.2679612 +1.907556 0.974052 0.2679612 +2.181521 0.974052 0.2679612 +2.494678 0.974052 0.2679612 +2.852659 0.974052 0.2679612 +3.261896 0.974052 0.2679612 +3.729748 0.974052 0.2679612 +4.264621 0.974052 0.2679612 +4.876131 0.974052 0.2679612 +5.575266 0.974052 0.2679612 +6.374593 0.974052 0.2679612 +0 1.113885 0.2679612 +0 1.113885 0.2679612 +0 1.113885 0.2679612 +0.002268731 1.113885 0.2679612 +0.07076883 1.113885 0.2679612 +0.1119241 1.113885 0.2679612 +0.1475052 1.113885 0.2679612 +0.1846606 1.113885 0.2679612 +0.2245119 1.113885 0.2679612 +0.2679612 1.113885 0.2679612 +0.3158431 1.113885 0.2679612 +0.3689944 1.113885 0.2679612 +0.4282948 1.113885 0.2679612 +0.494694 1.113885 0.2679612 +0.5692344 1.113885 0.2679612 +0.6530715 1.113885 0.2679612 +0.7474945 1.113885 0.2679612 +0.8539475 1.113885 0.2679612 +0.974052 1.113885 0.2679612 +1.113885 1.113885 0.2679612 +1.27456 1.113885 0.2679612 +1.458117 1.113885 0.2679612 +1.667858 1.113885 0.2679612 +1.907556 1.113885 0.2679612 +2.181521 1.113885 0.2679612 +2.494678 1.113885 0.2679612 +2.852659 1.113885 0.2679612 +3.261896 1.113885 0.2679612 +3.729748 1.113885 0.2679612 +4.264621 1.113885 0.2679612 +4.876131 1.113885 0.2679612 +5.575266 1.113885 0.2679612 +6.374593 1.113885 0.2679612 +0 1.27456 0.2679612 +0 1.27456 0.2679612 +0 1.27456 0.2679612 +0.002268731 1.27456 0.2679612 +0.07076883 1.27456 0.2679612 +0.1119241 1.27456 0.2679612 +0.1475052 1.27456 0.2679612 +0.1846606 1.27456 0.2679612 +0.2245119 1.27456 0.2679612 +0.2679612 1.27456 0.2679612 +0.3158431 1.27456 0.2679612 +0.3689944 1.27456 0.2679612 +0.4282948 1.27456 0.2679612 +0.494694 1.27456 0.2679612 +0.5692344 1.27456 0.2679612 +0.6530715 1.27456 0.2679612 +0.7474945 1.27456 0.2679612 +0.8539475 1.27456 0.2679612 +0.974052 1.27456 0.2679612 +1.113885 1.27456 0.2679612 +1.27456 1.27456 0.2679612 +1.458117 1.27456 0.2679612 +1.667858 1.27456 0.2679612 +1.907556 1.27456 0.2679612 +2.181521 1.27456 0.2679612 +2.494678 1.27456 0.2679612 +2.852659 1.27456 0.2679612 +3.261896 1.27456 0.2679612 +3.729748 1.27456 0.2679612 +4.264621 1.27456 0.2679612 +4.876131 1.27456 0.2679612 +5.575266 1.27456 0.2679612 +6.374593 1.27456 0.2679612 +0 1.458117 0.2679612 +0 1.458117 0.2679612 +0 1.458117 0.2679612 +0.002268731 1.458117 0.2679612 +0.07076883 1.458117 0.2679612 +0.1119241 1.458117 0.2679612 +0.1475052 1.458117 0.2679612 +0.1846606 1.458117 0.2679612 +0.2245119 1.458117 0.2679612 +0.2679612 1.458117 0.2679612 +0.3158431 1.458117 0.2679612 +0.3689944 1.458117 0.2679612 +0.4282948 1.458117 0.2679612 +0.494694 1.458117 0.2679612 +0.5692344 1.458117 0.2679612 +0.6530715 1.458117 0.2679612 +0.7474945 1.458117 0.2679612 +0.8539475 1.458117 0.2679612 +0.974052 1.458117 0.2679612 +1.113885 1.458117 0.2679612 +1.27456 1.458117 0.2679612 +1.458117 1.458117 0.2679612 +1.667858 1.458117 0.2679612 +1.907556 1.458117 0.2679612 +2.181521 1.458117 0.2679612 +2.494678 1.458117 0.2679612 +2.852659 1.458117 0.2679612 +3.261896 1.458117 0.2679612 +3.729748 1.458117 0.2679612 +4.264621 1.458117 0.2679612 +4.876131 1.458117 0.2679612 +5.575266 1.458117 0.2679612 +6.374593 1.458117 0.2679612 +0 1.667858 0.2679612 +0 1.667858 0.2679612 +0 1.667858 0.2679612 +0.002268731 1.667858 0.2679612 +0.07076883 1.667858 0.2679612 +0.1119241 1.667858 0.2679612 +0.1475052 1.667858 0.2679612 +0.1846606 1.667858 0.2679612 +0.2245119 1.667858 0.2679612 +0.2679612 1.667858 0.2679612 +0.3158431 1.667858 0.2679612 +0.3689944 1.667858 0.2679612 +0.4282948 1.667858 0.2679612 +0.494694 1.667858 0.2679612 +0.5692344 1.667858 0.2679612 +0.6530715 1.667858 0.2679612 +0.7474945 1.667858 0.2679612 +0.8539475 1.667858 0.2679612 +0.974052 1.667858 0.2679612 +1.113885 1.667858 0.2679612 +1.27456 1.667858 0.2679612 +1.458117 1.667858 0.2679612 +1.667858 1.667858 0.2679612 +1.907556 1.667858 0.2679612 +2.181521 1.667858 0.2679612 +2.494678 1.667858 0.2679612 +2.852659 1.667858 0.2679612 +3.261896 1.667858 0.2679612 +3.729748 1.667858 0.2679612 +4.264621 1.667858 0.2679612 +4.876131 1.667858 0.2679612 +5.575266 1.667858 0.2679612 +6.374593 1.667858 0.2679612 +0 1.907556 0.2679612 +0 1.907556 0.2679612 +0 1.907556 0.2679612 +0.002268731 1.907556 0.2679612 +0.07076883 1.907556 0.2679612 +0.1119241 1.907556 0.2679612 +0.1475052 1.907556 0.2679612 +0.1846606 1.907556 0.2679612 +0.2245119 1.907556 0.2679612 +0.2679612 1.907556 0.2679612 +0.3158431 1.907556 0.2679612 +0.3689944 1.907556 0.2679612 +0.4282948 1.907556 0.2679612 +0.494694 1.907556 0.2679612 +0.5692344 1.907556 0.2679612 +0.6530715 1.907556 0.2679612 +0.7474945 1.907556 0.2679612 +0.8539475 1.907556 0.2679612 +0.974052 1.907556 0.2679612 +1.113885 1.907556 0.2679612 +1.27456 1.907556 0.2679612 +1.458117 1.907556 0.2679612 +1.667858 1.907556 0.2679612 +1.907556 1.907556 0.2679612 +2.181521 1.907556 0.2679612 +2.494678 1.907556 0.2679612 +2.852659 1.907556 0.2679612 +3.261896 1.907556 0.2679612 +3.729748 1.907556 0.2679612 +4.264621 1.907556 0.2679612 +4.876131 1.907556 0.2679612 +5.575266 1.907556 0.2679612 +6.374593 1.907556 0.2679612 +0 2.181521 0.2679612 +0 2.181521 0.2679612 +0 2.181521 0.2679612 +0.002268731 2.181521 0.2679612 +0.07076883 2.181521 0.2679612 +0.1119241 2.181521 0.2679612 +0.1475052 2.181521 0.2679612 +0.1846606 2.181521 0.2679612 +0.2245119 2.181521 0.2679612 +0.2679612 2.181521 0.2679612 +0.3158431 2.181521 0.2679612 +0.3689944 2.181521 0.2679612 +0.4282948 2.181521 0.2679612 +0.494694 2.181521 0.2679612 +0.5692344 2.181521 0.2679612 +0.6530715 2.181521 0.2679612 +0.7474945 2.181521 0.2679612 +0.8539475 2.181521 0.2679612 +0.974052 2.181521 0.2679612 +1.113885 2.181521 0.2679612 +1.27456 2.181521 0.2679612 +1.458117 2.181521 0.2679612 +1.667858 2.181521 0.2679612 +1.907556 2.181521 0.2679612 +2.181521 2.181521 0.2679612 +2.494678 2.181521 0.2679612 +2.852659 2.181521 0.2679612 +3.261896 2.181521 0.2679612 +3.729748 2.181521 0.2679612 +4.264621 2.181521 0.2679612 +4.876131 2.181521 0.2679612 +5.575266 2.181521 0.2679612 +6.374593 2.181521 0.2679612 +0 2.494678 0.2679612 +0 2.494678 0.2679612 +0 2.494678 0.2679612 +0.002268731 2.494678 0.2679612 +0.07076883 2.494678 0.2679612 +0.1119241 2.494678 0.2679612 +0.1475052 2.494678 0.2679612 +0.1846606 2.494678 0.2679612 +0.2245119 2.494678 0.2679612 +0.2679612 2.494678 0.2679612 +0.3158431 2.494678 0.2679612 +0.3689944 2.494678 0.2679612 +0.4282948 2.494678 0.2679612 +0.494694 2.494678 0.2679612 +0.5692344 2.494678 0.2679612 +0.6530715 2.494678 0.2679612 +0.7474945 2.494678 0.2679612 +0.8539475 2.494678 0.2679612 +0.974052 2.494678 0.2679612 +1.113885 2.494678 0.2679612 +1.27456 2.494678 0.2679612 +1.458117 2.494678 0.2679612 +1.667858 2.494678 0.2679612 +1.907556 2.494678 0.2679612 +2.181521 2.494678 0.2679612 +2.494678 2.494678 0.2679612 +2.852659 2.494678 0.2679612 +3.261896 2.494678 0.2679612 +3.729748 2.494678 0.2679612 +4.264621 2.494678 0.2679612 +4.876131 2.494678 0.2679612 +5.575266 2.494678 0.2679612 +6.374593 2.494678 0.2679612 +0 2.852659 0.2679612 +0 2.852659 0.2679612 +0 2.852659 0.2679612 +0.002268731 2.852659 0.2679612 +0.07076883 2.852659 0.2679612 +0.1119241 2.852659 0.2679612 +0.1475052 2.852659 0.2679612 +0.1846606 2.852659 0.2679612 +0.2245119 2.852659 0.2679612 +0.2679612 2.852659 0.2679612 +0.3158431 2.852659 0.2679612 +0.3689944 2.852659 0.2679612 +0.4282948 2.852659 0.2679612 +0.494694 2.852659 0.2679612 +0.5692344 2.852659 0.2679612 +0.6530715 2.852659 0.2679612 +0.7474945 2.852659 0.2679612 +0.8539475 2.852659 0.2679612 +0.974052 2.852659 0.2679612 +1.113885 2.852659 0.2679612 +1.27456 2.852659 0.2679612 +1.458117 2.852659 0.2679612 +1.667858 2.852659 0.2679612 +1.907556 2.852659 0.2679612 +2.181521 2.852659 0.2679612 +2.494678 2.852659 0.2679612 +2.852659 2.852659 0.2679612 +3.261896 2.852659 0.2679612 +3.729748 2.852659 0.2679612 +4.264621 2.852659 0.2679612 +4.876131 2.852659 0.2679612 +5.575266 2.852659 0.2679612 +6.374593 2.852659 0.2679612 +0 3.261896 0.2679612 +0 3.261896 0.2679612 +0 3.261896 0.2679612 +0.002268731 3.261896 0.2679612 +0.07076883 3.261896 0.2679612 +0.1119241 3.261896 0.2679612 +0.1475052 3.261896 0.2679612 +0.1846606 3.261896 0.2679612 +0.2245119 3.261896 0.2679612 +0.2679612 3.261896 0.2679612 +0.3158431 3.261896 0.2679612 +0.3689944 3.261896 0.2679612 +0.4282948 3.261896 0.2679612 +0.494694 3.261896 0.2679612 +0.5692344 3.261896 0.2679612 +0.6530715 3.261896 0.2679612 +0.7474945 3.261896 0.2679612 +0.8539475 3.261896 0.2679612 +0.974052 3.261896 0.2679612 +1.113885 3.261896 0.2679612 +1.27456 3.261896 0.2679612 +1.458117 3.261896 0.2679612 +1.667858 3.261896 0.2679612 +1.907556 3.261896 0.2679612 +2.181521 3.261896 0.2679612 +2.494678 3.261896 0.2679612 +2.852659 3.261896 0.2679612 +3.261896 3.261896 0.2679612 +3.729748 3.261896 0.2679612 +4.264621 3.261896 0.2679612 +4.876131 3.261896 0.2679612 +5.575266 3.261896 0.2679612 +6.374593 3.261896 0.2679612 +0 3.729748 0.2679612 +0 3.729748 0.2679612 +0 3.729748 0.2679612 +0.002268731 3.729748 0.2679612 +0.07076883 3.729748 0.2679612 +0.1119241 3.729748 0.2679612 +0.1475052 3.729748 0.2679612 +0.1846606 3.729748 0.2679612 +0.2245119 3.729748 0.2679612 +0.2679612 3.729748 0.2679612 +0.3158431 3.729748 0.2679612 +0.3689944 3.729748 0.2679612 +0.4282948 3.729748 0.2679612 +0.494694 3.729748 0.2679612 +0.5692344 3.729748 0.2679612 +0.6530715 3.729748 0.2679612 +0.7474945 3.729748 0.2679612 +0.8539475 3.729748 0.2679612 +0.974052 3.729748 0.2679612 +1.113885 3.729748 0.2679612 +1.27456 3.729748 0.2679612 +1.458117 3.729748 0.2679612 +1.667858 3.729748 0.2679612 +1.907556 3.729748 0.2679612 +2.181521 3.729748 0.2679612 +2.494678 3.729748 0.2679612 +2.852659 3.729748 0.2679612 +3.261896 3.729748 0.2679612 +3.729748 3.729748 0.2679612 +4.264621 3.729748 0.2679612 +4.876131 3.729748 0.2679612 +5.575266 3.729748 0.2679612 +6.374593 3.729748 0.2679612 +0 4.264621 0.2679612 +0 4.264621 0.2679612 +0 4.264621 0.2679612 +0.002268731 4.264621 0.2679612 +0.07076883 4.264621 0.2679612 +0.1119241 4.264621 0.2679612 +0.1475052 4.264621 0.2679612 +0.1846606 4.264621 0.2679612 +0.2245119 4.264621 0.2679612 +0.2679612 4.264621 0.2679612 +0.3158431 4.264621 0.2679612 +0.3689944 4.264621 0.2679612 +0.4282948 4.264621 0.2679612 +0.494694 4.264621 0.2679612 +0.5692344 4.264621 0.2679612 +0.6530715 4.264621 0.2679612 +0.7474945 4.264621 0.2679612 +0.8539475 4.264621 0.2679612 +0.974052 4.264621 0.2679612 +1.113885 4.264621 0.2679612 +1.27456 4.264621 0.2679612 +1.458117 4.264621 0.2679612 +1.667858 4.264621 0.2679612 +1.907556 4.264621 0.2679612 +2.181521 4.264621 0.2679612 +2.494678 4.264621 0.2679612 +2.852659 4.264621 0.2679612 +3.261896 4.264621 0.2679612 +3.729748 4.264621 0.2679612 +4.264621 4.264621 0.2679612 +4.876131 4.264621 0.2679612 +5.575266 4.264621 0.2679612 +6.374593 4.264621 0.2679612 +0 4.876131 0.2679612 +0 4.876131 0.2679612 +0 4.876131 0.2679612 +0.002268731 4.876131 0.2679612 +0.07076883 4.876131 0.2679612 +0.1119241 4.876131 0.2679612 +0.1475052 4.876131 0.2679612 +0.1846606 4.876131 0.2679612 +0.2245119 4.876131 0.2679612 +0.2679612 4.876131 0.2679612 +0.3158431 4.876131 0.2679612 +0.3689944 4.876131 0.2679612 +0.4282948 4.876131 0.2679612 +0.494694 4.876131 0.2679612 +0.5692344 4.876131 0.2679612 +0.6530715 4.876131 0.2679612 +0.7474945 4.876131 0.2679612 +0.8539475 4.876131 0.2679612 +0.974052 4.876131 0.2679612 +1.113885 4.876131 0.2679612 +1.27456 4.876131 0.2679612 +1.458117 4.876131 0.2679612 +1.667858 4.876131 0.2679612 +1.907556 4.876131 0.2679612 +2.181521 4.876131 0.2679612 +2.494678 4.876131 0.2679612 +2.852659 4.876131 0.2679612 +3.261896 4.876131 0.2679612 +3.729748 4.876131 0.2679612 +4.264621 4.876131 0.2679612 +4.876131 4.876131 0.2679612 +5.575266 4.876131 0.2679612 +6.374593 4.876131 0.2679612 +0 5.575266 0.2679612 +0 5.575266 0.2679612 +0 5.575266 0.2679612 +0.002268731 5.575266 0.2679612 +0.07076883 5.575266 0.2679612 +0.1119241 5.575266 0.2679612 +0.1475052 5.575266 0.2679612 +0.1846606 5.575266 0.2679612 +0.2245119 5.575266 0.2679612 +0.2679612 5.575266 0.2679612 +0.3158431 5.575266 0.2679612 +0.3689944 5.575266 0.2679612 +0.4282948 5.575266 0.2679612 +0.494694 5.575266 0.2679612 +0.5692344 5.575266 0.2679612 +0.6530715 5.575266 0.2679612 +0.7474945 5.575266 0.2679612 +0.8539475 5.575266 0.2679612 +0.974052 5.575266 0.2679612 +1.113885 5.575266 0.2679612 +1.27456 5.575266 0.2679612 +1.458117 5.575266 0.2679612 +1.667858 5.575266 0.2679612 +1.907556 5.575266 0.2679612 +2.181521 5.575266 0.2679612 +2.494678 5.575266 0.2679612 +2.852659 5.575266 0.2679612 +3.261896 5.575266 0.2679612 +3.729748 5.575266 0.2679612 +4.264621 5.575266 0.2679612 +4.876131 5.575266 0.2679612 +5.575266 5.575266 0.2679612 +6.374593 5.575266 0.2679612 +0 6.374593 0.2679612 +0 6.374593 0.2679612 +0 6.374593 0.2679612 +0.002268731 6.374593 0.2679612 +0.07076883 6.374593 0.2679612 +0.1119241 6.374593 0.2679612 +0.1475052 6.374593 0.2679612 +0.1846606 6.374593 0.2679612 +0.2245119 6.374593 0.2679612 +0.2679612 6.374593 0.2679612 +0.3158431 6.374593 0.2679612 +0.3689944 6.374593 0.2679612 +0.4282948 6.374593 0.2679612 +0.494694 6.374593 0.2679612 +0.5692344 6.374593 0.2679612 +0.6530715 6.374593 0.2679612 +0.7474945 6.374593 0.2679612 +0.8539475 6.374593 0.2679612 +0.974052 6.374593 0.2679612 +1.113885 6.374593 0.2679612 +1.27456 6.374593 0.2679612 +1.458117 6.374593 0.2679612 +1.667858 6.374593 0.2679612 +1.907556 6.374593 0.2679612 +2.181521 6.374593 0.2679612 +2.494678 6.374593 0.2679612 +2.852659 6.374593 0.2679612 +3.261896 6.374593 0.2679612 +3.729748 6.374593 0.2679612 +4.264621 6.374593 0.2679612 +4.876131 6.374593 0.2679612 +5.575266 6.374593 0.2679612 +6.374593 6.374593 0.2679612 +0 0 0.3158431 +0 0 0.3158431 +0 0 0.3158431 +0.002268731 0 0.3158431 +0.07076883 0 0.3158431 +0.1119241 0 0.3158431 +0.1475052 0 0.3158431 +0.1846606 0 0.3158431 +0.2245119 0 0.3158431 +0.2679612 0 0.3158431 +0.3158431 0 0.3158431 +0.3689944 0 0.3158431 +0.4282948 0 0.3158431 +0.494694 0 0.3158431 +0.5692344 0 0.3158431 +0.6530715 0 0.3158431 +0.7474945 0 0.3158431 +0.8539475 0 0.3158431 +0.974052 0 0.3158431 +1.113885 0 0.3158431 +1.27456 0 0.3158431 +1.458117 0 0.3158431 +1.667858 0 0.3158431 +1.907556 0 0.3158431 +2.181521 0 0.3158431 +2.494678 0 0.3158431 +2.852659 0 0.3158431 +3.261896 0 0.3158431 +3.729748 0 0.3158431 +4.264621 0 0.3158431 +4.876131 0 0.3158431 +5.575266 0 0.3158431 +6.374593 0 0.3158431 +0 0 0.3158431 +0 0 0.3158431 +0 0 0.3158431 +0.002268731 0 0.3158431 +0.07076883 0 0.3158431 +0.1119241 0 0.3158431 +0.1475052 0 0.3158431 +0.1846606 0 0.3158431 +0.2245119 0 0.3158431 +0.2679612 0 0.3158431 +0.3158431 0 0.3158431 +0.3689944 0 0.3158431 +0.4282948 0 0.3158431 +0.494694 0 0.3158431 +0.5692344 0 0.3158431 +0.6530715 0 0.3158431 +0.7474945 0 0.3158431 +0.8539475 0 0.3158431 +0.974052 0 0.3158431 +1.113885 0 0.3158431 +1.27456 0 0.3158431 +1.458117 0 0.3158431 +1.667858 0 0.3158431 +1.907556 0 0.3158431 +2.181521 0 0.3158431 +2.494678 0 0.3158431 +2.852659 0 0.3158431 +3.261896 0 0.3158431 +3.729748 0 0.3158431 +4.264621 0 0.3158431 +4.876131 0 0.3158431 +5.575266 0 0.3158431 +6.374593 0 0.3158431 +0 0 0.3158431 +0 0 0.3158431 +0 0 0.3158431 +0.002268731 0 0.3158431 +0.07076883 0 0.3158431 +0.1119241 0 0.3158431 +0.1475052 0 0.3158431 +0.1846606 0 0.3158431 +0.2245119 0 0.3158431 +0.2679612 0 0.3158431 +0.3158431 0 0.3158431 +0.3689944 0 0.3158431 +0.4282948 0 0.3158431 +0.494694 0 0.3158431 +0.5692344 0 0.3158431 +0.6530715 0 0.3158431 +0.7474945 0 0.3158431 +0.8539475 0 0.3158431 +0.974052 0 0.3158431 +1.113885 0 0.3158431 +1.27456 0 0.3158431 +1.458117 0 0.3158431 +1.667858 0 0.3158431 +1.907556 0 0.3158431 +2.181521 0 0.3158431 +2.494678 0 0.3158431 +2.852659 0 0.3158431 +3.261896 0 0.3158431 +3.729748 0 0.3158431 +4.264621 0 0.3158431 +4.876131 0 0.3158431 +5.575266 0 0.3158431 +6.374593 0 0.3158431 +0 0.002268731 0.3158431 +0 0.002268731 0.3158431 +0 0.002268731 0.3158431 +0.002268731 0.002268731 0.3158431 +0.07076883 0.002268731 0.3158431 +0.1119241 0.002268731 0.3158431 +0.1475052 0.002268731 0.3158431 +0.1846606 0.002268731 0.3158431 +0.2245119 0.002268731 0.3158431 +0.2679612 0.002268731 0.3158431 +0.3158431 0.002268731 0.3158431 +0.3689944 0.002268731 0.3158431 +0.4282948 0.002268731 0.3158431 +0.494694 0.002268731 0.3158431 +0.5692344 0.002268731 0.3158431 +0.6530715 0.002268731 0.3158431 +0.7474945 0.002268731 0.3158431 +0.8539475 0.002268731 0.3158431 +0.974052 0.002268731 0.3158431 +1.113885 0.002268731 0.3158431 +1.27456 0.002268731 0.3158431 +1.458117 0.002268731 0.3158431 +1.667858 0.002268731 0.3158431 +1.907556 0.002268731 0.3158431 +2.181521 0.002268731 0.3158431 +2.494678 0.002268731 0.3158431 +2.852659 0.002268731 0.3158431 +3.261896 0.002268731 0.3158431 +3.729748 0.002268731 0.3158431 +4.264621 0.002268731 0.3158431 +4.876131 0.002268731 0.3158431 +5.575266 0.002268731 0.3158431 +6.374593 0.002268731 0.3158431 +0 0.07076883 0.3158431 +0 0.07076883 0.3158431 +0 0.07076883 0.3158431 +0.002268731 0.07076883 0.3158431 +0.07076883 0.07076883 0.3158431 +0.1119241 0.07076883 0.3158431 +0.1475052 0.07076883 0.3158431 +0.1846606 0.07076883 0.3158431 +0.2245119 0.07076883 0.3158431 +0.2679612 0.07076883 0.3158431 +0.3158431 0.07076883 0.3158431 +0.3689944 0.07076883 0.3158431 +0.4282948 0.07076883 0.3158431 +0.494694 0.07076883 0.3158431 +0.5692344 0.07076883 0.3158431 +0.6530715 0.07076883 0.3158431 +0.7474945 0.07076883 0.3158431 +0.8539475 0.07076883 0.3158431 +0.974052 0.07076883 0.3158431 +1.113885 0.07076883 0.3158431 +1.27456 0.07076883 0.3158431 +1.458117 0.07076883 0.3158431 +1.667858 0.07076883 0.3158431 +1.907556 0.07076883 0.3158431 +2.181521 0.07076883 0.3158431 +2.494678 0.07076883 0.3158431 +2.852659 0.07076883 0.3158431 +3.261896 0.07076883 0.3158431 +3.729748 0.07076883 0.3158431 +4.264621 0.07076883 0.3158431 +4.876131 0.07076883 0.3158431 +5.575266 0.07076883 0.3158431 +6.374593 0.07076883 0.3158431 +0 0.1119241 0.3158431 +0 0.1119241 0.3158431 +0 0.1119241 0.3158431 +0.002268731 0.1119241 0.3158431 +0.07076883 0.1119241 0.3158431 +0.1119241 0.1119241 0.3158431 +0.1475052 0.1119241 0.3158431 +0.1846606 0.1119241 0.3158431 +0.2245119 0.1119241 0.3158431 +0.2679612 0.1119241 0.3158431 +0.3158431 0.1119241 0.3158431 +0.3689944 0.1119241 0.3158431 +0.4282948 0.1119241 0.3158431 +0.494694 0.1119241 0.3158431 +0.5692344 0.1119241 0.3158431 +0.6530715 0.1119241 0.3158431 +0.7474945 0.1119241 0.3158431 +0.8539475 0.1119241 0.3158431 +0.974052 0.1119241 0.3158431 +1.113885 0.1119241 0.3158431 +1.27456 0.1119241 0.3158431 +1.458117 0.1119241 0.3158431 +1.667858 0.1119241 0.3158431 +1.907556 0.1119241 0.3158431 +2.181521 0.1119241 0.3158431 +2.494678 0.1119241 0.3158431 +2.852659 0.1119241 0.3158431 +3.261896 0.1119241 0.3158431 +3.729748 0.1119241 0.3158431 +4.264621 0.1119241 0.3158431 +4.876131 0.1119241 0.3158431 +5.575266 0.1119241 0.3158431 +6.374593 0.1119241 0.3158431 +0 0.1475052 0.3158431 +0 0.1475052 0.3158431 +0 0.1475052 0.3158431 +0.002268731 0.1475052 0.3158431 +0.07076883 0.1475052 0.3158431 +0.1119241 0.1475052 0.3158431 +0.1475052 0.1475052 0.3158431 +0.1846606 0.1475052 0.3158431 +0.2245119 0.1475052 0.3158431 +0.2679612 0.1475052 0.3158431 +0.3158431 0.1475052 0.3158431 +0.3689944 0.1475052 0.3158431 +0.4282948 0.1475052 0.3158431 +0.494694 0.1475052 0.3158431 +0.5692344 0.1475052 0.3158431 +0.6530715 0.1475052 0.3158431 +0.7474945 0.1475052 0.3158431 +0.8539475 0.1475052 0.3158431 +0.974052 0.1475052 0.3158431 +1.113885 0.1475052 0.3158431 +1.27456 0.1475052 0.3158431 +1.458117 0.1475052 0.3158431 +1.667858 0.1475052 0.3158431 +1.907556 0.1475052 0.3158431 +2.181521 0.1475052 0.3158431 +2.494678 0.1475052 0.3158431 +2.852659 0.1475052 0.3158431 +3.261896 0.1475052 0.3158431 +3.729748 0.1475052 0.3158431 +4.264621 0.1475052 0.3158431 +4.876131 0.1475052 0.3158431 +5.575266 0.1475052 0.3158431 +6.374593 0.1475052 0.3158431 +0 0.1846606 0.3158431 +0 0.1846606 0.3158431 +0 0.1846606 0.3158431 +0.002268731 0.1846606 0.3158431 +0.07076883 0.1846606 0.3158431 +0.1119241 0.1846606 0.3158431 +0.1475052 0.1846606 0.3158431 +0.1846606 0.1846606 0.3158431 +0.2245119 0.1846606 0.3158431 +0.2679612 0.1846606 0.3158431 +0.3158431 0.1846606 0.3158431 +0.3689944 0.1846606 0.3158431 +0.4282948 0.1846606 0.3158431 +0.494694 0.1846606 0.3158431 +0.5692344 0.1846606 0.3158431 +0.6530715 0.1846606 0.3158431 +0.7474945 0.1846606 0.3158431 +0.8539475 0.1846606 0.3158431 +0.974052 0.1846606 0.3158431 +1.113885 0.1846606 0.3158431 +1.27456 0.1846606 0.3158431 +1.458117 0.1846606 0.3158431 +1.667858 0.1846606 0.3158431 +1.907556 0.1846606 0.3158431 +2.181521 0.1846606 0.3158431 +2.494678 0.1846606 0.3158431 +2.852659 0.1846606 0.3158431 +3.261896 0.1846606 0.3158431 +3.729748 0.1846606 0.3158431 +4.264621 0.1846606 0.3158431 +4.876131 0.1846606 0.3158431 +5.575266 0.1846606 0.3158431 +6.374593 0.1846606 0.3158431 +0 0.2245119 0.3158431 +0 0.2245119 0.3158431 +0 0.2245119 0.3158431 +0.002268731 0.2245119 0.3158431 +0.07076883 0.2245119 0.3158431 +0.1119241 0.2245119 0.3158431 +0.1475052 0.2245119 0.3158431 +0.1846606 0.2245119 0.3158431 +0.2245119 0.2245119 0.3158431 +0.2679612 0.2245119 0.3158431 +0.3158431 0.2245119 0.3158431 +0.3689944 0.2245119 0.3158431 +0.4282948 0.2245119 0.3158431 +0.494694 0.2245119 0.3158431 +0.5692344 0.2245119 0.3158431 +0.6530715 0.2245119 0.3158431 +0.7474945 0.2245119 0.3158431 +0.8539475 0.2245119 0.3158431 +0.974052 0.2245119 0.3158431 +1.113885 0.2245119 0.3158431 +1.27456 0.2245119 0.3158431 +1.458117 0.2245119 0.3158431 +1.667858 0.2245119 0.3158431 +1.907556 0.2245119 0.3158431 +2.181521 0.2245119 0.3158431 +2.494678 0.2245119 0.3158431 +2.852659 0.2245119 0.3158431 +3.261896 0.2245119 0.3158431 +3.729748 0.2245119 0.3158431 +4.264621 0.2245119 0.3158431 +4.876131 0.2245119 0.3158431 +5.575266 0.2245119 0.3158431 +6.374593 0.2245119 0.3158431 +0 0.2679612 0.3158431 +0 0.2679612 0.3158431 +0 0.2679612 0.3158431 +0.002268731 0.2679612 0.3158431 +0.07076883 0.2679612 0.3158431 +0.1119241 0.2679612 0.3158431 +0.1475052 0.2679612 0.3158431 +0.1846606 0.2679612 0.3158431 +0.2245119 0.2679612 0.3158431 +0.2679612 0.2679612 0.3158431 +0.3158431 0.2679612 0.3158431 +0.3689944 0.2679612 0.3158431 +0.4282948 0.2679612 0.3158431 +0.494694 0.2679612 0.3158431 +0.5692344 0.2679612 0.3158431 +0.6530715 0.2679612 0.3158431 +0.7474945 0.2679612 0.3158431 +0.8539475 0.2679612 0.3158431 +0.974052 0.2679612 0.3158431 +1.113885 0.2679612 0.3158431 +1.27456 0.2679612 0.3158431 +1.458117 0.2679612 0.3158431 +1.667858 0.2679612 0.3158431 +1.907556 0.2679612 0.3158431 +2.181521 0.2679612 0.3158431 +2.494678 0.2679612 0.3158431 +2.852659 0.2679612 0.3158431 +3.261896 0.2679612 0.3158431 +3.729748 0.2679612 0.3158431 +4.264621 0.2679612 0.3158431 +4.876131 0.2679612 0.3158431 +5.575266 0.2679612 0.3158431 +6.374593 0.2679612 0.3158431 +0 0.3158431 0.3158431 +0 0.3158431 0.3158431 +0 0.3158431 0.3158431 +0.002268731 0.3158431 0.3158431 +0.07076883 0.3158431 0.3158431 +0.1119241 0.3158431 0.3158431 +0.1475052 0.3158431 0.3158431 +0.1846606 0.3158431 0.3158431 +0.2245119 0.3158431 0.3158431 +0.2679612 0.3158431 0.3158431 +0.3158431 0.3158431 0.3158431 +0.3689944 0.3158431 0.3158431 +0.4282948 0.3158431 0.3158431 +0.494694 0.3158431 0.3158431 +0.5692344 0.3158431 0.3158431 +0.6530715 0.3158431 0.3158431 +0.7474945 0.3158431 0.3158431 +0.8539475 0.3158431 0.3158431 +0.974052 0.3158431 0.3158431 +1.113885 0.3158431 0.3158431 +1.27456 0.3158431 0.3158431 +1.458117 0.3158431 0.3158431 +1.667858 0.3158431 0.3158431 +1.907556 0.3158431 0.3158431 +2.181521 0.3158431 0.3158431 +2.494678 0.3158431 0.3158431 +2.852659 0.3158431 0.3158431 +3.261896 0.3158431 0.3158431 +3.729748 0.3158431 0.3158431 +4.264621 0.3158431 0.3158431 +4.876131 0.3158431 0.3158431 +5.575266 0.3158431 0.3158431 +6.374593 0.3158431 0.3158431 +0 0.3689944 0.3158431 +0 0.3689944 0.3158431 +0 0.3689944 0.3158431 +0.002268731 0.3689944 0.3158431 +0.07076883 0.3689944 0.3158431 +0.1119241 0.3689944 0.3158431 +0.1475052 0.3689944 0.3158431 +0.1846606 0.3689944 0.3158431 +0.2245119 0.3689944 0.3158431 +0.2679612 0.3689944 0.3158431 +0.3158431 0.3689944 0.3158431 +0.3689944 0.3689944 0.3158431 +0.4282948 0.3689944 0.3158431 +0.494694 0.3689944 0.3158431 +0.5692344 0.3689944 0.3158431 +0.6530715 0.3689944 0.3158431 +0.7474945 0.3689944 0.3158431 +0.8539475 0.3689944 0.3158431 +0.974052 0.3689944 0.3158431 +1.113885 0.3689944 0.3158431 +1.27456 0.3689944 0.3158431 +1.458117 0.3689944 0.3158431 +1.667858 0.3689944 0.3158431 +1.907556 0.3689944 0.3158431 +2.181521 0.3689944 0.3158431 +2.494678 0.3689944 0.3158431 +2.852659 0.3689944 0.3158431 +3.261896 0.3689944 0.3158431 +3.729748 0.3689944 0.3158431 +4.264621 0.3689944 0.3158431 +4.876131 0.3689944 0.3158431 +5.575266 0.3689944 0.3158431 +6.374593 0.3689944 0.3158431 +0 0.4282948 0.3158431 +0 0.4282948 0.3158431 +0 0.4282948 0.3158431 +0.002268731 0.4282948 0.3158431 +0.07076883 0.4282948 0.3158431 +0.1119241 0.4282948 0.3158431 +0.1475052 0.4282948 0.3158431 +0.1846606 0.4282948 0.3158431 +0.2245119 0.4282948 0.3158431 +0.2679612 0.4282948 0.3158431 +0.3158431 0.4282948 0.3158431 +0.3689944 0.4282948 0.3158431 +0.4282948 0.4282948 0.3158431 +0.494694 0.4282948 0.3158431 +0.5692344 0.4282948 0.3158431 +0.6530715 0.4282948 0.3158431 +0.7474945 0.4282948 0.3158431 +0.8539475 0.4282948 0.3158431 +0.974052 0.4282948 0.3158431 +1.113885 0.4282948 0.3158431 +1.27456 0.4282948 0.3158431 +1.458117 0.4282948 0.3158431 +1.667858 0.4282948 0.3158431 +1.907556 0.4282948 0.3158431 +2.181521 0.4282948 0.3158431 +2.494678 0.4282948 0.3158431 +2.852659 0.4282948 0.3158431 +3.261896 0.4282948 0.3158431 +3.729748 0.4282948 0.3158431 +4.264621 0.4282948 0.3158431 +4.876131 0.4282948 0.3158431 +5.575266 0.4282948 0.3158431 +6.374593 0.4282948 0.3158431 +0 0.494694 0.3158431 +0 0.494694 0.3158431 +0 0.494694 0.3158431 +0.002268731 0.494694 0.3158431 +0.07076883 0.494694 0.3158431 +0.1119241 0.494694 0.3158431 +0.1475052 0.494694 0.3158431 +0.1846606 0.494694 0.3158431 +0.2245119 0.494694 0.3158431 +0.2679612 0.494694 0.3158431 +0.3158431 0.494694 0.3158431 +0.3689944 0.494694 0.3158431 +0.4282948 0.494694 0.3158431 +0.494694 0.494694 0.3158431 +0.5692344 0.494694 0.3158431 +0.6530715 0.494694 0.3158431 +0.7474945 0.494694 0.3158431 +0.8539475 0.494694 0.3158431 +0.974052 0.494694 0.3158431 +1.113885 0.494694 0.3158431 +1.27456 0.494694 0.3158431 +1.458117 0.494694 0.3158431 +1.667858 0.494694 0.3158431 +1.907556 0.494694 0.3158431 +2.181521 0.494694 0.3158431 +2.494678 0.494694 0.3158431 +2.852659 0.494694 0.3158431 +3.261896 0.494694 0.3158431 +3.729748 0.494694 0.3158431 +4.264621 0.494694 0.3158431 +4.876131 0.494694 0.3158431 +5.575266 0.494694 0.3158431 +6.374593 0.494694 0.3158431 +0 0.5692344 0.3158431 +0 0.5692344 0.3158431 +0 0.5692344 0.3158431 +0.002268731 0.5692344 0.3158431 +0.07076883 0.5692344 0.3158431 +0.1119241 0.5692344 0.3158431 +0.1475052 0.5692344 0.3158431 +0.1846606 0.5692344 0.3158431 +0.2245119 0.5692344 0.3158431 +0.2679612 0.5692344 0.3158431 +0.3158431 0.5692344 0.3158431 +0.3689944 0.5692344 0.3158431 +0.4282948 0.5692344 0.3158431 +0.494694 0.5692344 0.3158431 +0.5692344 0.5692344 0.3158431 +0.6530715 0.5692344 0.3158431 +0.7474945 0.5692344 0.3158431 +0.8539475 0.5692344 0.3158431 +0.974052 0.5692344 0.3158431 +1.113885 0.5692344 0.3158431 +1.27456 0.5692344 0.3158431 +1.458117 0.5692344 0.3158431 +1.667858 0.5692344 0.3158431 +1.907556 0.5692344 0.3158431 +2.181521 0.5692344 0.3158431 +2.494678 0.5692344 0.3158431 +2.852659 0.5692344 0.3158431 +3.261896 0.5692344 0.3158431 +3.729748 0.5692344 0.3158431 +4.264621 0.5692344 0.3158431 +4.876131 0.5692344 0.3158431 +5.575266 0.5692344 0.3158431 +6.374593 0.5692344 0.3158431 +0 0.6530715 0.3158431 +0 0.6530715 0.3158431 +0 0.6530715 0.3158431 +0.002268731 0.6530715 0.3158431 +0.07076883 0.6530715 0.3158431 +0.1119241 0.6530715 0.3158431 +0.1475052 0.6530715 0.3158431 +0.1846606 0.6530715 0.3158431 +0.2245119 0.6530715 0.3158431 +0.2679612 0.6530715 0.3158431 +0.3158431 0.6530715 0.3158431 +0.3689944 0.6530715 0.3158431 +0.4282948 0.6530715 0.3158431 +0.494694 0.6530715 0.3158431 +0.5692344 0.6530715 0.3158431 +0.6530715 0.6530715 0.3158431 +0.7474945 0.6530715 0.3158431 +0.8539475 0.6530715 0.3158431 +0.974052 0.6530715 0.3158431 +1.113885 0.6530715 0.3158431 +1.27456 0.6530715 0.3158431 +1.458117 0.6530715 0.3158431 +1.667858 0.6530715 0.3158431 +1.907556 0.6530715 0.3158431 +2.181521 0.6530715 0.3158431 +2.494678 0.6530715 0.3158431 +2.852659 0.6530715 0.3158431 +3.261896 0.6530715 0.3158431 +3.729748 0.6530715 0.3158431 +4.264621 0.6530715 0.3158431 +4.876131 0.6530715 0.3158431 +5.575266 0.6530715 0.3158431 +6.374593 0.6530715 0.3158431 +0 0.7474945 0.3158431 +0 0.7474945 0.3158431 +0 0.7474945 0.3158431 +0.002268731 0.7474945 0.3158431 +0.07076883 0.7474945 0.3158431 +0.1119241 0.7474945 0.3158431 +0.1475052 0.7474945 0.3158431 +0.1846606 0.7474945 0.3158431 +0.2245119 0.7474945 0.3158431 +0.2679612 0.7474945 0.3158431 +0.3158431 0.7474945 0.3158431 +0.3689944 0.7474945 0.3158431 +0.4282948 0.7474945 0.3158431 +0.494694 0.7474945 0.3158431 +0.5692344 0.7474945 0.3158431 +0.6530715 0.7474945 0.3158431 +0.7474945 0.7474945 0.3158431 +0.8539475 0.7474945 0.3158431 +0.974052 0.7474945 0.3158431 +1.113885 0.7474945 0.3158431 +1.27456 0.7474945 0.3158431 +1.458117 0.7474945 0.3158431 +1.667858 0.7474945 0.3158431 +1.907556 0.7474945 0.3158431 +2.181521 0.7474945 0.3158431 +2.494678 0.7474945 0.3158431 +2.852659 0.7474945 0.3158431 +3.261896 0.7474945 0.3158431 +3.729748 0.7474945 0.3158431 +4.264621 0.7474945 0.3158431 +4.876131 0.7474945 0.3158431 +5.575266 0.7474945 0.3158431 +6.374593 0.7474945 0.3158431 +0 0.8539475 0.3158431 +0 0.8539475 0.3158431 +0 0.8539475 0.3158431 +0.002268731 0.8539475 0.3158431 +0.07076883 0.8539475 0.3158431 +0.1119241 0.8539475 0.3158431 +0.1475052 0.8539475 0.3158431 +0.1846606 0.8539475 0.3158431 +0.2245119 0.8539475 0.3158431 +0.2679612 0.8539475 0.3158431 +0.3158431 0.8539475 0.3158431 +0.3689944 0.8539475 0.3158431 +0.4282948 0.8539475 0.3158431 +0.494694 0.8539475 0.3158431 +0.5692344 0.8539475 0.3158431 +0.6530715 0.8539475 0.3158431 +0.7474945 0.8539475 0.3158431 +0.8539475 0.8539475 0.3158431 +0.974052 0.8539475 0.3158431 +1.113885 0.8539475 0.3158431 +1.27456 0.8539475 0.3158431 +1.458117 0.8539475 0.3158431 +1.667858 0.8539475 0.3158431 +1.907556 0.8539475 0.3158431 +2.181521 0.8539475 0.3158431 +2.494678 0.8539475 0.3158431 +2.852659 0.8539475 0.3158431 +3.261896 0.8539475 0.3158431 +3.729748 0.8539475 0.3158431 +4.264621 0.8539475 0.3158431 +4.876131 0.8539475 0.3158431 +5.575266 0.8539475 0.3158431 +6.374593 0.8539475 0.3158431 +0 0.974052 0.3158431 +0 0.974052 0.3158431 +0 0.974052 0.3158431 +0.002268731 0.974052 0.3158431 +0.07076883 0.974052 0.3158431 +0.1119241 0.974052 0.3158431 +0.1475052 0.974052 0.3158431 +0.1846606 0.974052 0.3158431 +0.2245119 0.974052 0.3158431 +0.2679612 0.974052 0.3158431 +0.3158431 0.974052 0.3158431 +0.3689944 0.974052 0.3158431 +0.4282948 0.974052 0.3158431 +0.494694 0.974052 0.3158431 +0.5692344 0.974052 0.3158431 +0.6530715 0.974052 0.3158431 +0.7474945 0.974052 0.3158431 +0.8539475 0.974052 0.3158431 +0.974052 0.974052 0.3158431 +1.113885 0.974052 0.3158431 +1.27456 0.974052 0.3158431 +1.458117 0.974052 0.3158431 +1.667858 0.974052 0.3158431 +1.907556 0.974052 0.3158431 +2.181521 0.974052 0.3158431 +2.494678 0.974052 0.3158431 +2.852659 0.974052 0.3158431 +3.261896 0.974052 0.3158431 +3.729748 0.974052 0.3158431 +4.264621 0.974052 0.3158431 +4.876131 0.974052 0.3158431 +5.575266 0.974052 0.3158431 +6.374593 0.974052 0.3158431 +0 1.113885 0.3158431 +0 1.113885 0.3158431 +0 1.113885 0.3158431 +0.002268731 1.113885 0.3158431 +0.07076883 1.113885 0.3158431 +0.1119241 1.113885 0.3158431 +0.1475052 1.113885 0.3158431 +0.1846606 1.113885 0.3158431 +0.2245119 1.113885 0.3158431 +0.2679612 1.113885 0.3158431 +0.3158431 1.113885 0.3158431 +0.3689944 1.113885 0.3158431 +0.4282948 1.113885 0.3158431 +0.494694 1.113885 0.3158431 +0.5692344 1.113885 0.3158431 +0.6530715 1.113885 0.3158431 +0.7474945 1.113885 0.3158431 +0.8539475 1.113885 0.3158431 +0.974052 1.113885 0.3158431 +1.113885 1.113885 0.3158431 +1.27456 1.113885 0.3158431 +1.458117 1.113885 0.3158431 +1.667858 1.113885 0.3158431 +1.907556 1.113885 0.3158431 +2.181521 1.113885 0.3158431 +2.494678 1.113885 0.3158431 +2.852659 1.113885 0.3158431 +3.261896 1.113885 0.3158431 +3.729748 1.113885 0.3158431 +4.264621 1.113885 0.3158431 +4.876131 1.113885 0.3158431 +5.575266 1.113885 0.3158431 +6.374593 1.113885 0.3158431 +0 1.27456 0.3158431 +0 1.27456 0.3158431 +0 1.27456 0.3158431 +0.002268731 1.27456 0.3158431 +0.07076883 1.27456 0.3158431 +0.1119241 1.27456 0.3158431 +0.1475052 1.27456 0.3158431 +0.1846606 1.27456 0.3158431 +0.2245119 1.27456 0.3158431 +0.2679612 1.27456 0.3158431 +0.3158431 1.27456 0.3158431 +0.3689944 1.27456 0.3158431 +0.4282948 1.27456 0.3158431 +0.494694 1.27456 0.3158431 +0.5692344 1.27456 0.3158431 +0.6530715 1.27456 0.3158431 +0.7474945 1.27456 0.3158431 +0.8539475 1.27456 0.3158431 +0.974052 1.27456 0.3158431 +1.113885 1.27456 0.3158431 +1.27456 1.27456 0.3158431 +1.458117 1.27456 0.3158431 +1.667858 1.27456 0.3158431 +1.907556 1.27456 0.3158431 +2.181521 1.27456 0.3158431 +2.494678 1.27456 0.3158431 +2.852659 1.27456 0.3158431 +3.261896 1.27456 0.3158431 +3.729748 1.27456 0.3158431 +4.264621 1.27456 0.3158431 +4.876131 1.27456 0.3158431 +5.575266 1.27456 0.3158431 +6.374593 1.27456 0.3158431 +0 1.458117 0.3158431 +0 1.458117 0.3158431 +0 1.458117 0.3158431 +0.002268731 1.458117 0.3158431 +0.07076883 1.458117 0.3158431 +0.1119241 1.458117 0.3158431 +0.1475052 1.458117 0.3158431 +0.1846606 1.458117 0.3158431 +0.2245119 1.458117 0.3158431 +0.2679612 1.458117 0.3158431 +0.3158431 1.458117 0.3158431 +0.3689944 1.458117 0.3158431 +0.4282948 1.458117 0.3158431 +0.494694 1.458117 0.3158431 +0.5692344 1.458117 0.3158431 +0.6530715 1.458117 0.3158431 +0.7474945 1.458117 0.3158431 +0.8539475 1.458117 0.3158431 +0.974052 1.458117 0.3158431 +1.113885 1.458117 0.3158431 +1.27456 1.458117 0.3158431 +1.458117 1.458117 0.3158431 +1.667858 1.458117 0.3158431 +1.907556 1.458117 0.3158431 +2.181521 1.458117 0.3158431 +2.494678 1.458117 0.3158431 +2.852659 1.458117 0.3158431 +3.261896 1.458117 0.3158431 +3.729748 1.458117 0.3158431 +4.264621 1.458117 0.3158431 +4.876131 1.458117 0.3158431 +5.575266 1.458117 0.3158431 +6.374593 1.458117 0.3158431 +0 1.667858 0.3158431 +0 1.667858 0.3158431 +0 1.667858 0.3158431 +0.002268731 1.667858 0.3158431 +0.07076883 1.667858 0.3158431 +0.1119241 1.667858 0.3158431 +0.1475052 1.667858 0.3158431 +0.1846606 1.667858 0.3158431 +0.2245119 1.667858 0.3158431 +0.2679612 1.667858 0.3158431 +0.3158431 1.667858 0.3158431 +0.3689944 1.667858 0.3158431 +0.4282948 1.667858 0.3158431 +0.494694 1.667858 0.3158431 +0.5692344 1.667858 0.3158431 +0.6530715 1.667858 0.3158431 +0.7474945 1.667858 0.3158431 +0.8539475 1.667858 0.3158431 +0.974052 1.667858 0.3158431 +1.113885 1.667858 0.3158431 +1.27456 1.667858 0.3158431 +1.458117 1.667858 0.3158431 +1.667858 1.667858 0.3158431 +1.907556 1.667858 0.3158431 +2.181521 1.667858 0.3158431 +2.494678 1.667858 0.3158431 +2.852659 1.667858 0.3158431 +3.261896 1.667858 0.3158431 +3.729748 1.667858 0.3158431 +4.264621 1.667858 0.3158431 +4.876131 1.667858 0.3158431 +5.575266 1.667858 0.3158431 +6.374593 1.667858 0.3158431 +0 1.907556 0.3158431 +0 1.907556 0.3158431 +0 1.907556 0.3158431 +0.002268731 1.907556 0.3158431 +0.07076883 1.907556 0.3158431 +0.1119241 1.907556 0.3158431 +0.1475052 1.907556 0.3158431 +0.1846606 1.907556 0.3158431 +0.2245119 1.907556 0.3158431 +0.2679612 1.907556 0.3158431 +0.3158431 1.907556 0.3158431 +0.3689944 1.907556 0.3158431 +0.4282948 1.907556 0.3158431 +0.494694 1.907556 0.3158431 +0.5692344 1.907556 0.3158431 +0.6530715 1.907556 0.3158431 +0.7474945 1.907556 0.3158431 +0.8539475 1.907556 0.3158431 +0.974052 1.907556 0.3158431 +1.113885 1.907556 0.3158431 +1.27456 1.907556 0.3158431 +1.458117 1.907556 0.3158431 +1.667858 1.907556 0.3158431 +1.907556 1.907556 0.3158431 +2.181521 1.907556 0.3158431 +2.494678 1.907556 0.3158431 +2.852659 1.907556 0.3158431 +3.261896 1.907556 0.3158431 +3.729748 1.907556 0.3158431 +4.264621 1.907556 0.3158431 +4.876131 1.907556 0.3158431 +5.575266 1.907556 0.3158431 +6.374593 1.907556 0.3158431 +0 2.181521 0.3158431 +0 2.181521 0.3158431 +0 2.181521 0.3158431 +0.002268731 2.181521 0.3158431 +0.07076883 2.181521 0.3158431 +0.1119241 2.181521 0.3158431 +0.1475052 2.181521 0.3158431 +0.1846606 2.181521 0.3158431 +0.2245119 2.181521 0.3158431 +0.2679612 2.181521 0.3158431 +0.3158431 2.181521 0.3158431 +0.3689944 2.181521 0.3158431 +0.4282948 2.181521 0.3158431 +0.494694 2.181521 0.3158431 +0.5692344 2.181521 0.3158431 +0.6530715 2.181521 0.3158431 +0.7474945 2.181521 0.3158431 +0.8539475 2.181521 0.3158431 +0.974052 2.181521 0.3158431 +1.113885 2.181521 0.3158431 +1.27456 2.181521 0.3158431 +1.458117 2.181521 0.3158431 +1.667858 2.181521 0.3158431 +1.907556 2.181521 0.3158431 +2.181521 2.181521 0.3158431 +2.494678 2.181521 0.3158431 +2.852659 2.181521 0.3158431 +3.261896 2.181521 0.3158431 +3.729748 2.181521 0.3158431 +4.264621 2.181521 0.3158431 +4.876131 2.181521 0.3158431 +5.575266 2.181521 0.3158431 +6.374593 2.181521 0.3158431 +0 2.494678 0.3158431 +0 2.494678 0.3158431 +0 2.494678 0.3158431 +0.002268731 2.494678 0.3158431 +0.07076883 2.494678 0.3158431 +0.1119241 2.494678 0.3158431 +0.1475052 2.494678 0.3158431 +0.1846606 2.494678 0.3158431 +0.2245119 2.494678 0.3158431 +0.2679612 2.494678 0.3158431 +0.3158431 2.494678 0.3158431 +0.3689944 2.494678 0.3158431 +0.4282948 2.494678 0.3158431 +0.494694 2.494678 0.3158431 +0.5692344 2.494678 0.3158431 +0.6530715 2.494678 0.3158431 +0.7474945 2.494678 0.3158431 +0.8539475 2.494678 0.3158431 +0.974052 2.494678 0.3158431 +1.113885 2.494678 0.3158431 +1.27456 2.494678 0.3158431 +1.458117 2.494678 0.3158431 +1.667858 2.494678 0.3158431 +1.907556 2.494678 0.3158431 +2.181521 2.494678 0.3158431 +2.494678 2.494678 0.3158431 +2.852659 2.494678 0.3158431 +3.261896 2.494678 0.3158431 +3.729748 2.494678 0.3158431 +4.264621 2.494678 0.3158431 +4.876131 2.494678 0.3158431 +5.575266 2.494678 0.3158431 +6.374593 2.494678 0.3158431 +0 2.852659 0.3158431 +0 2.852659 0.3158431 +0 2.852659 0.3158431 +0.002268731 2.852659 0.3158431 +0.07076883 2.852659 0.3158431 +0.1119241 2.852659 0.3158431 +0.1475052 2.852659 0.3158431 +0.1846606 2.852659 0.3158431 +0.2245119 2.852659 0.3158431 +0.2679612 2.852659 0.3158431 +0.3158431 2.852659 0.3158431 +0.3689944 2.852659 0.3158431 +0.4282948 2.852659 0.3158431 +0.494694 2.852659 0.3158431 +0.5692344 2.852659 0.3158431 +0.6530715 2.852659 0.3158431 +0.7474945 2.852659 0.3158431 +0.8539475 2.852659 0.3158431 +0.974052 2.852659 0.3158431 +1.113885 2.852659 0.3158431 +1.27456 2.852659 0.3158431 +1.458117 2.852659 0.3158431 +1.667858 2.852659 0.3158431 +1.907556 2.852659 0.3158431 +2.181521 2.852659 0.3158431 +2.494678 2.852659 0.3158431 +2.852659 2.852659 0.3158431 +3.261896 2.852659 0.3158431 +3.729748 2.852659 0.3158431 +4.264621 2.852659 0.3158431 +4.876131 2.852659 0.3158431 +5.575266 2.852659 0.3158431 +6.374593 2.852659 0.3158431 +0 3.261896 0.3158431 +0 3.261896 0.3158431 +0 3.261896 0.3158431 +0.002268731 3.261896 0.3158431 +0.07076883 3.261896 0.3158431 +0.1119241 3.261896 0.3158431 +0.1475052 3.261896 0.3158431 +0.1846606 3.261896 0.3158431 +0.2245119 3.261896 0.3158431 +0.2679612 3.261896 0.3158431 +0.3158431 3.261896 0.3158431 +0.3689944 3.261896 0.3158431 +0.4282948 3.261896 0.3158431 +0.494694 3.261896 0.3158431 +0.5692344 3.261896 0.3158431 +0.6530715 3.261896 0.3158431 +0.7474945 3.261896 0.3158431 +0.8539475 3.261896 0.3158431 +0.974052 3.261896 0.3158431 +1.113885 3.261896 0.3158431 +1.27456 3.261896 0.3158431 +1.458117 3.261896 0.3158431 +1.667858 3.261896 0.3158431 +1.907556 3.261896 0.3158431 +2.181521 3.261896 0.3158431 +2.494678 3.261896 0.3158431 +2.852659 3.261896 0.3158431 +3.261896 3.261896 0.3158431 +3.729748 3.261896 0.3158431 +4.264621 3.261896 0.3158431 +4.876131 3.261896 0.3158431 +5.575266 3.261896 0.3158431 +6.374593 3.261896 0.3158431 +0 3.729748 0.3158431 +0 3.729748 0.3158431 +0 3.729748 0.3158431 +0.002268731 3.729748 0.3158431 +0.07076883 3.729748 0.3158431 +0.1119241 3.729748 0.3158431 +0.1475052 3.729748 0.3158431 +0.1846606 3.729748 0.3158431 +0.2245119 3.729748 0.3158431 +0.2679612 3.729748 0.3158431 +0.3158431 3.729748 0.3158431 +0.3689944 3.729748 0.3158431 +0.4282948 3.729748 0.3158431 +0.494694 3.729748 0.3158431 +0.5692344 3.729748 0.3158431 +0.6530715 3.729748 0.3158431 +0.7474945 3.729748 0.3158431 +0.8539475 3.729748 0.3158431 +0.974052 3.729748 0.3158431 +1.113885 3.729748 0.3158431 +1.27456 3.729748 0.3158431 +1.458117 3.729748 0.3158431 +1.667858 3.729748 0.3158431 +1.907556 3.729748 0.3158431 +2.181521 3.729748 0.3158431 +2.494678 3.729748 0.3158431 +2.852659 3.729748 0.3158431 +3.261896 3.729748 0.3158431 +3.729748 3.729748 0.3158431 +4.264621 3.729748 0.3158431 +4.876131 3.729748 0.3158431 +5.575266 3.729748 0.3158431 +6.374593 3.729748 0.3158431 +0 4.264621 0.3158431 +0 4.264621 0.3158431 +0 4.264621 0.3158431 +0.002268731 4.264621 0.3158431 +0.07076883 4.264621 0.3158431 +0.1119241 4.264621 0.3158431 +0.1475052 4.264621 0.3158431 +0.1846606 4.264621 0.3158431 +0.2245119 4.264621 0.3158431 +0.2679612 4.264621 0.3158431 +0.3158431 4.264621 0.3158431 +0.3689944 4.264621 0.3158431 +0.4282948 4.264621 0.3158431 +0.494694 4.264621 0.3158431 +0.5692344 4.264621 0.3158431 +0.6530715 4.264621 0.3158431 +0.7474945 4.264621 0.3158431 +0.8539475 4.264621 0.3158431 +0.974052 4.264621 0.3158431 +1.113885 4.264621 0.3158431 +1.27456 4.264621 0.3158431 +1.458117 4.264621 0.3158431 +1.667858 4.264621 0.3158431 +1.907556 4.264621 0.3158431 +2.181521 4.264621 0.3158431 +2.494678 4.264621 0.3158431 +2.852659 4.264621 0.3158431 +3.261896 4.264621 0.3158431 +3.729748 4.264621 0.3158431 +4.264621 4.264621 0.3158431 +4.876131 4.264621 0.3158431 +5.575266 4.264621 0.3158431 +6.374593 4.264621 0.3158431 +0 4.876131 0.3158431 +0 4.876131 0.3158431 +0 4.876131 0.3158431 +0.002268731 4.876131 0.3158431 +0.07076883 4.876131 0.3158431 +0.1119241 4.876131 0.3158431 +0.1475052 4.876131 0.3158431 +0.1846606 4.876131 0.3158431 +0.2245119 4.876131 0.3158431 +0.2679612 4.876131 0.3158431 +0.3158431 4.876131 0.3158431 +0.3689944 4.876131 0.3158431 +0.4282948 4.876131 0.3158431 +0.494694 4.876131 0.3158431 +0.5692344 4.876131 0.3158431 +0.6530715 4.876131 0.3158431 +0.7474945 4.876131 0.3158431 +0.8539475 4.876131 0.3158431 +0.974052 4.876131 0.3158431 +1.113885 4.876131 0.3158431 +1.27456 4.876131 0.3158431 +1.458117 4.876131 0.3158431 +1.667858 4.876131 0.3158431 +1.907556 4.876131 0.3158431 +2.181521 4.876131 0.3158431 +2.494678 4.876131 0.3158431 +2.852659 4.876131 0.3158431 +3.261896 4.876131 0.3158431 +3.729748 4.876131 0.3158431 +4.264621 4.876131 0.3158431 +4.876131 4.876131 0.3158431 +5.575266 4.876131 0.3158431 +6.374593 4.876131 0.3158431 +0 5.575266 0.3158431 +0 5.575266 0.3158431 +0 5.575266 0.3158431 +0.002268731 5.575266 0.3158431 +0.07076883 5.575266 0.3158431 +0.1119241 5.575266 0.3158431 +0.1475052 5.575266 0.3158431 +0.1846606 5.575266 0.3158431 +0.2245119 5.575266 0.3158431 +0.2679612 5.575266 0.3158431 +0.3158431 5.575266 0.3158431 +0.3689944 5.575266 0.3158431 +0.4282948 5.575266 0.3158431 +0.494694 5.575266 0.3158431 +0.5692344 5.575266 0.3158431 +0.6530715 5.575266 0.3158431 +0.7474945 5.575266 0.3158431 +0.8539475 5.575266 0.3158431 +0.974052 5.575266 0.3158431 +1.113885 5.575266 0.3158431 +1.27456 5.575266 0.3158431 +1.458117 5.575266 0.3158431 +1.667858 5.575266 0.3158431 +1.907556 5.575266 0.3158431 +2.181521 5.575266 0.3158431 +2.494678 5.575266 0.3158431 +2.852659 5.575266 0.3158431 +3.261896 5.575266 0.3158431 +3.729748 5.575266 0.3158431 +4.264621 5.575266 0.3158431 +4.876131 5.575266 0.3158431 +5.575266 5.575266 0.3158431 +6.374593 5.575266 0.3158431 +0 6.374593 0.3158431 +0 6.374593 0.3158431 +0 6.374593 0.3158431 +0.002268731 6.374593 0.3158431 +0.07076883 6.374593 0.3158431 +0.1119241 6.374593 0.3158431 +0.1475052 6.374593 0.3158431 +0.1846606 6.374593 0.3158431 +0.2245119 6.374593 0.3158431 +0.2679612 6.374593 0.3158431 +0.3158431 6.374593 0.3158431 +0.3689944 6.374593 0.3158431 +0.4282948 6.374593 0.3158431 +0.494694 6.374593 0.3158431 +0.5692344 6.374593 0.3158431 +0.6530715 6.374593 0.3158431 +0.7474945 6.374593 0.3158431 +0.8539475 6.374593 0.3158431 +0.974052 6.374593 0.3158431 +1.113885 6.374593 0.3158431 +1.27456 6.374593 0.3158431 +1.458117 6.374593 0.3158431 +1.667858 6.374593 0.3158431 +1.907556 6.374593 0.3158431 +2.181521 6.374593 0.3158431 +2.494678 6.374593 0.3158431 +2.852659 6.374593 0.3158431 +3.261896 6.374593 0.3158431 +3.729748 6.374593 0.3158431 +4.264621 6.374593 0.3158431 +4.876131 6.374593 0.3158431 +5.575266 6.374593 0.3158431 +6.374593 6.374593 0.3158431 +0 0 0.3689944 +0 0 0.3689944 +0 0 0.3689944 +0.002268731 0 0.3689944 +0.07076883 0 0.3689944 +0.1119241 0 0.3689944 +0.1475052 0 0.3689944 +0.1846606 0 0.3689944 +0.2245119 0 0.3689944 +0.2679612 0 0.3689944 +0.3158431 0 0.3689944 +0.3689944 0 0.3689944 +0.4282948 0 0.3689944 +0.494694 0 0.3689944 +0.5692344 0 0.3689944 +0.6530715 0 0.3689944 +0.7474945 0 0.3689944 +0.8539475 0 0.3689944 +0.974052 0 0.3689944 +1.113885 0 0.3689944 +1.27456 0 0.3689944 +1.458117 0 0.3689944 +1.667858 0 0.3689944 +1.907556 0 0.3689944 +2.181521 0 0.3689944 +2.494678 0 0.3689944 +2.852659 0 0.3689944 +3.261896 0 0.3689944 +3.729748 0 0.3689944 +4.264621 0 0.3689944 +4.876131 0 0.3689944 +5.575266 0 0.3689944 +6.374593 0 0.3689944 +0 0 0.3689944 +0 0 0.3689944 +0 0 0.3689944 +0.002268731 0 0.3689944 +0.07076883 0 0.3689944 +0.1119241 0 0.3689944 +0.1475052 0 0.3689944 +0.1846606 0 0.3689944 +0.2245119 0 0.3689944 +0.2679612 0 0.3689944 +0.3158431 0 0.3689944 +0.3689944 0 0.3689944 +0.4282948 0 0.3689944 +0.494694 0 0.3689944 +0.5692344 0 0.3689944 +0.6530715 0 0.3689944 +0.7474945 0 0.3689944 +0.8539475 0 0.3689944 +0.974052 0 0.3689944 +1.113885 0 0.3689944 +1.27456 0 0.3689944 +1.458117 0 0.3689944 +1.667858 0 0.3689944 +1.907556 0 0.3689944 +2.181521 0 0.3689944 +2.494678 0 0.3689944 +2.852659 0 0.3689944 +3.261896 0 0.3689944 +3.729748 0 0.3689944 +4.264621 0 0.3689944 +4.876131 0 0.3689944 +5.575266 0 0.3689944 +6.374593 0 0.3689944 +0 0 0.3689944 +0 0 0.3689944 +0 0 0.3689944 +0.002268731 0 0.3689944 +0.07076883 0 0.3689944 +0.1119241 0 0.3689944 +0.1475052 0 0.3689944 +0.1846606 0 0.3689944 +0.2245119 0 0.3689944 +0.2679612 0 0.3689944 +0.3158431 0 0.3689944 +0.3689944 0 0.3689944 +0.4282948 0 0.3689944 +0.494694 0 0.3689944 +0.5692344 0 0.3689944 +0.6530715 0 0.3689944 +0.7474945 0 0.3689944 +0.8539475 0 0.3689944 +0.974052 0 0.3689944 +1.113885 0 0.3689944 +1.27456 0 0.3689944 +1.458117 0 0.3689944 +1.667858 0 0.3689944 +1.907556 0 0.3689944 +2.181521 0 0.3689944 +2.494678 0 0.3689944 +2.852659 0 0.3689944 +3.261896 0 0.3689944 +3.729748 0 0.3689944 +4.264621 0 0.3689944 +4.876131 0 0.3689944 +5.575266 0 0.3689944 +6.374593 0 0.3689944 +0 0.002268731 0.3689944 +0 0.002268731 0.3689944 +0 0.002268731 0.3689944 +0.002268731 0.002268731 0.3689944 +0.07076883 0.002268731 0.3689944 +0.1119241 0.002268731 0.3689944 +0.1475052 0.002268731 0.3689944 +0.1846606 0.002268731 0.3689944 +0.2245119 0.002268731 0.3689944 +0.2679612 0.002268731 0.3689944 +0.3158431 0.002268731 0.3689944 +0.3689944 0.002268731 0.3689944 +0.4282948 0.002268731 0.3689944 +0.494694 0.002268731 0.3689944 +0.5692344 0.002268731 0.3689944 +0.6530715 0.002268731 0.3689944 +0.7474945 0.002268731 0.3689944 +0.8539475 0.002268731 0.3689944 +0.974052 0.002268731 0.3689944 +1.113885 0.002268731 0.3689944 +1.27456 0.002268731 0.3689944 +1.458117 0.002268731 0.3689944 +1.667858 0.002268731 0.3689944 +1.907556 0.002268731 0.3689944 +2.181521 0.002268731 0.3689944 +2.494678 0.002268731 0.3689944 +2.852659 0.002268731 0.3689944 +3.261896 0.002268731 0.3689944 +3.729748 0.002268731 0.3689944 +4.264621 0.002268731 0.3689944 +4.876131 0.002268731 0.3689944 +5.575266 0.002268731 0.3689944 +6.374593 0.002268731 0.3689944 +0 0.07076883 0.3689944 +0 0.07076883 0.3689944 +0 0.07076883 0.3689944 +0.002268731 0.07076883 0.3689944 +0.07076883 0.07076883 0.3689944 +0.1119241 0.07076883 0.3689944 +0.1475052 0.07076883 0.3689944 +0.1846606 0.07076883 0.3689944 +0.2245119 0.07076883 0.3689944 +0.2679612 0.07076883 0.3689944 +0.3158431 0.07076883 0.3689944 +0.3689944 0.07076883 0.3689944 +0.4282948 0.07076883 0.3689944 +0.494694 0.07076883 0.3689944 +0.5692344 0.07076883 0.3689944 +0.6530715 0.07076883 0.3689944 +0.7474945 0.07076883 0.3689944 +0.8539475 0.07076883 0.3689944 +0.974052 0.07076883 0.3689944 +1.113885 0.07076883 0.3689944 +1.27456 0.07076883 0.3689944 +1.458117 0.07076883 0.3689944 +1.667858 0.07076883 0.3689944 +1.907556 0.07076883 0.3689944 +2.181521 0.07076883 0.3689944 +2.494678 0.07076883 0.3689944 +2.852659 0.07076883 0.3689944 +3.261896 0.07076883 0.3689944 +3.729748 0.07076883 0.3689944 +4.264621 0.07076883 0.3689944 +4.876131 0.07076883 0.3689944 +5.575266 0.07076883 0.3689944 +6.374593 0.07076883 0.3689944 +0 0.1119241 0.3689944 +0 0.1119241 0.3689944 +0 0.1119241 0.3689944 +0.002268731 0.1119241 0.3689944 +0.07076883 0.1119241 0.3689944 +0.1119241 0.1119241 0.3689944 +0.1475052 0.1119241 0.3689944 +0.1846606 0.1119241 0.3689944 +0.2245119 0.1119241 0.3689944 +0.2679612 0.1119241 0.3689944 +0.3158431 0.1119241 0.3689944 +0.3689944 0.1119241 0.3689944 +0.4282948 0.1119241 0.3689944 +0.494694 0.1119241 0.3689944 +0.5692344 0.1119241 0.3689944 +0.6530715 0.1119241 0.3689944 +0.7474945 0.1119241 0.3689944 +0.8539475 0.1119241 0.3689944 +0.974052 0.1119241 0.3689944 +1.113885 0.1119241 0.3689944 +1.27456 0.1119241 0.3689944 +1.458117 0.1119241 0.3689944 +1.667858 0.1119241 0.3689944 +1.907556 0.1119241 0.3689944 +2.181521 0.1119241 0.3689944 +2.494678 0.1119241 0.3689944 +2.852659 0.1119241 0.3689944 +3.261896 0.1119241 0.3689944 +3.729748 0.1119241 0.3689944 +4.264621 0.1119241 0.3689944 +4.876131 0.1119241 0.3689944 +5.575266 0.1119241 0.3689944 +6.374593 0.1119241 0.3689944 +0 0.1475052 0.3689944 +0 0.1475052 0.3689944 +0 0.1475052 0.3689944 +0.002268731 0.1475052 0.3689944 +0.07076883 0.1475052 0.3689944 +0.1119241 0.1475052 0.3689944 +0.1475052 0.1475052 0.3689944 +0.1846606 0.1475052 0.3689944 +0.2245119 0.1475052 0.3689944 +0.2679612 0.1475052 0.3689944 +0.3158431 0.1475052 0.3689944 +0.3689944 0.1475052 0.3689944 +0.4282948 0.1475052 0.3689944 +0.494694 0.1475052 0.3689944 +0.5692344 0.1475052 0.3689944 +0.6530715 0.1475052 0.3689944 +0.7474945 0.1475052 0.3689944 +0.8539475 0.1475052 0.3689944 +0.974052 0.1475052 0.3689944 +1.113885 0.1475052 0.3689944 +1.27456 0.1475052 0.3689944 +1.458117 0.1475052 0.3689944 +1.667858 0.1475052 0.3689944 +1.907556 0.1475052 0.3689944 +2.181521 0.1475052 0.3689944 +2.494678 0.1475052 0.3689944 +2.852659 0.1475052 0.3689944 +3.261896 0.1475052 0.3689944 +3.729748 0.1475052 0.3689944 +4.264621 0.1475052 0.3689944 +4.876131 0.1475052 0.3689944 +5.575266 0.1475052 0.3689944 +6.374593 0.1475052 0.3689944 +0 0.1846606 0.3689944 +0 0.1846606 0.3689944 +0 0.1846606 0.3689944 +0.002268731 0.1846606 0.3689944 +0.07076883 0.1846606 0.3689944 +0.1119241 0.1846606 0.3689944 +0.1475052 0.1846606 0.3689944 +0.1846606 0.1846606 0.3689944 +0.2245119 0.1846606 0.3689944 +0.2679612 0.1846606 0.3689944 +0.3158431 0.1846606 0.3689944 +0.3689944 0.1846606 0.3689944 +0.4282948 0.1846606 0.3689944 +0.494694 0.1846606 0.3689944 +0.5692344 0.1846606 0.3689944 +0.6530715 0.1846606 0.3689944 +0.7474945 0.1846606 0.3689944 +0.8539475 0.1846606 0.3689944 +0.974052 0.1846606 0.3689944 +1.113885 0.1846606 0.3689944 +1.27456 0.1846606 0.3689944 +1.458117 0.1846606 0.3689944 +1.667858 0.1846606 0.3689944 +1.907556 0.1846606 0.3689944 +2.181521 0.1846606 0.3689944 +2.494678 0.1846606 0.3689944 +2.852659 0.1846606 0.3689944 +3.261896 0.1846606 0.3689944 +3.729748 0.1846606 0.3689944 +4.264621 0.1846606 0.3689944 +4.876131 0.1846606 0.3689944 +5.575266 0.1846606 0.3689944 +6.374593 0.1846606 0.3689944 +0 0.2245119 0.3689944 +0 0.2245119 0.3689944 +0 0.2245119 0.3689944 +0.002268731 0.2245119 0.3689944 +0.07076883 0.2245119 0.3689944 +0.1119241 0.2245119 0.3689944 +0.1475052 0.2245119 0.3689944 +0.1846606 0.2245119 0.3689944 +0.2245119 0.2245119 0.3689944 +0.2679612 0.2245119 0.3689944 +0.3158431 0.2245119 0.3689944 +0.3689944 0.2245119 0.3689944 +0.4282948 0.2245119 0.3689944 +0.494694 0.2245119 0.3689944 +0.5692344 0.2245119 0.3689944 +0.6530715 0.2245119 0.3689944 +0.7474945 0.2245119 0.3689944 +0.8539475 0.2245119 0.3689944 +0.974052 0.2245119 0.3689944 +1.113885 0.2245119 0.3689944 +1.27456 0.2245119 0.3689944 +1.458117 0.2245119 0.3689944 +1.667858 0.2245119 0.3689944 +1.907556 0.2245119 0.3689944 +2.181521 0.2245119 0.3689944 +2.494678 0.2245119 0.3689944 +2.852659 0.2245119 0.3689944 +3.261896 0.2245119 0.3689944 +3.729748 0.2245119 0.3689944 +4.264621 0.2245119 0.3689944 +4.876131 0.2245119 0.3689944 +5.575266 0.2245119 0.3689944 +6.374593 0.2245119 0.3689944 +0 0.2679612 0.3689944 +0 0.2679612 0.3689944 +0 0.2679612 0.3689944 +0.002268731 0.2679612 0.3689944 +0.07076883 0.2679612 0.3689944 +0.1119241 0.2679612 0.3689944 +0.1475052 0.2679612 0.3689944 +0.1846606 0.2679612 0.3689944 +0.2245119 0.2679612 0.3689944 +0.2679612 0.2679612 0.3689944 +0.3158431 0.2679612 0.3689944 +0.3689944 0.2679612 0.3689944 +0.4282948 0.2679612 0.3689944 +0.494694 0.2679612 0.3689944 +0.5692344 0.2679612 0.3689944 +0.6530715 0.2679612 0.3689944 +0.7474945 0.2679612 0.3689944 +0.8539475 0.2679612 0.3689944 +0.974052 0.2679612 0.3689944 +1.113885 0.2679612 0.3689944 +1.27456 0.2679612 0.3689944 +1.458117 0.2679612 0.3689944 +1.667858 0.2679612 0.3689944 +1.907556 0.2679612 0.3689944 +2.181521 0.2679612 0.3689944 +2.494678 0.2679612 0.3689944 +2.852659 0.2679612 0.3689944 +3.261896 0.2679612 0.3689944 +3.729748 0.2679612 0.3689944 +4.264621 0.2679612 0.3689944 +4.876131 0.2679612 0.3689944 +5.575266 0.2679612 0.3689944 +6.374593 0.2679612 0.3689944 +0 0.3158431 0.3689944 +0 0.3158431 0.3689944 +0 0.3158431 0.3689944 +0.002268731 0.3158431 0.3689944 +0.07076883 0.3158431 0.3689944 +0.1119241 0.3158431 0.3689944 +0.1475052 0.3158431 0.3689944 +0.1846606 0.3158431 0.3689944 +0.2245119 0.3158431 0.3689944 +0.2679612 0.3158431 0.3689944 +0.3158431 0.3158431 0.3689944 +0.3689944 0.3158431 0.3689944 +0.4282948 0.3158431 0.3689944 +0.494694 0.3158431 0.3689944 +0.5692344 0.3158431 0.3689944 +0.6530715 0.3158431 0.3689944 +0.7474945 0.3158431 0.3689944 +0.8539475 0.3158431 0.3689944 +0.974052 0.3158431 0.3689944 +1.113885 0.3158431 0.3689944 +1.27456 0.3158431 0.3689944 +1.458117 0.3158431 0.3689944 +1.667858 0.3158431 0.3689944 +1.907556 0.3158431 0.3689944 +2.181521 0.3158431 0.3689944 +2.494678 0.3158431 0.3689944 +2.852659 0.3158431 0.3689944 +3.261896 0.3158431 0.3689944 +3.729748 0.3158431 0.3689944 +4.264621 0.3158431 0.3689944 +4.876131 0.3158431 0.3689944 +5.575266 0.3158431 0.3689944 +6.374593 0.3158431 0.3689944 +0 0.3689944 0.3689944 +0 0.3689944 0.3689944 +0 0.3689944 0.3689944 +0.002268731 0.3689944 0.3689944 +0.07076883 0.3689944 0.3689944 +0.1119241 0.3689944 0.3689944 +0.1475052 0.3689944 0.3689944 +0.1846606 0.3689944 0.3689944 +0.2245119 0.3689944 0.3689944 +0.2679612 0.3689944 0.3689944 +0.3158431 0.3689944 0.3689944 +0.3689944 0.3689944 0.3689944 +0.4282948 0.3689944 0.3689944 +0.494694 0.3689944 0.3689944 +0.5692344 0.3689944 0.3689944 +0.6530715 0.3689944 0.3689944 +0.7474945 0.3689944 0.3689944 +0.8539475 0.3689944 0.3689944 +0.974052 0.3689944 0.3689944 +1.113885 0.3689944 0.3689944 +1.27456 0.3689944 0.3689944 +1.458117 0.3689944 0.3689944 +1.667858 0.3689944 0.3689944 +1.907556 0.3689944 0.3689944 +2.181521 0.3689944 0.3689944 +2.494678 0.3689944 0.3689944 +2.852659 0.3689944 0.3689944 +3.261896 0.3689944 0.3689944 +3.729748 0.3689944 0.3689944 +4.264621 0.3689944 0.3689944 +4.876131 0.3689944 0.3689944 +5.575266 0.3689944 0.3689944 +6.374593 0.3689944 0.3689944 +0 0.4282948 0.3689944 +0 0.4282948 0.3689944 +0 0.4282948 0.3689944 +0.002268731 0.4282948 0.3689944 +0.07076883 0.4282948 0.3689944 +0.1119241 0.4282948 0.3689944 +0.1475052 0.4282948 0.3689944 +0.1846606 0.4282948 0.3689944 +0.2245119 0.4282948 0.3689944 +0.2679612 0.4282948 0.3689944 +0.3158431 0.4282948 0.3689944 +0.3689944 0.4282948 0.3689944 +0.4282948 0.4282948 0.3689944 +0.494694 0.4282948 0.3689944 +0.5692344 0.4282948 0.3689944 +0.6530715 0.4282948 0.3689944 +0.7474945 0.4282948 0.3689944 +0.8539475 0.4282948 0.3689944 +0.974052 0.4282948 0.3689944 +1.113885 0.4282948 0.3689944 +1.27456 0.4282948 0.3689944 +1.458117 0.4282948 0.3689944 +1.667858 0.4282948 0.3689944 +1.907556 0.4282948 0.3689944 +2.181521 0.4282948 0.3689944 +2.494678 0.4282948 0.3689944 +2.852659 0.4282948 0.3689944 +3.261896 0.4282948 0.3689944 +3.729748 0.4282948 0.3689944 +4.264621 0.4282948 0.3689944 +4.876131 0.4282948 0.3689944 +5.575266 0.4282948 0.3689944 +6.374593 0.4282948 0.3689944 +0 0.494694 0.3689944 +0 0.494694 0.3689944 +0 0.494694 0.3689944 +0.002268731 0.494694 0.3689944 +0.07076883 0.494694 0.3689944 +0.1119241 0.494694 0.3689944 +0.1475052 0.494694 0.3689944 +0.1846606 0.494694 0.3689944 +0.2245119 0.494694 0.3689944 +0.2679612 0.494694 0.3689944 +0.3158431 0.494694 0.3689944 +0.3689944 0.494694 0.3689944 +0.4282948 0.494694 0.3689944 +0.494694 0.494694 0.3689944 +0.5692344 0.494694 0.3689944 +0.6530715 0.494694 0.3689944 +0.7474945 0.494694 0.3689944 +0.8539475 0.494694 0.3689944 +0.974052 0.494694 0.3689944 +1.113885 0.494694 0.3689944 +1.27456 0.494694 0.3689944 +1.458117 0.494694 0.3689944 +1.667858 0.494694 0.3689944 +1.907556 0.494694 0.3689944 +2.181521 0.494694 0.3689944 +2.494678 0.494694 0.3689944 +2.852659 0.494694 0.3689944 +3.261896 0.494694 0.3689944 +3.729748 0.494694 0.3689944 +4.264621 0.494694 0.3689944 +4.876131 0.494694 0.3689944 +5.575266 0.494694 0.3689944 +6.374593 0.494694 0.3689944 +0 0.5692344 0.3689944 +0 0.5692344 0.3689944 +0 0.5692344 0.3689944 +0.002268731 0.5692344 0.3689944 +0.07076883 0.5692344 0.3689944 +0.1119241 0.5692344 0.3689944 +0.1475052 0.5692344 0.3689944 +0.1846606 0.5692344 0.3689944 +0.2245119 0.5692344 0.3689944 +0.2679612 0.5692344 0.3689944 +0.3158431 0.5692344 0.3689944 +0.3689944 0.5692344 0.3689944 +0.4282948 0.5692344 0.3689944 +0.494694 0.5692344 0.3689944 +0.5692344 0.5692344 0.3689944 +0.6530715 0.5692344 0.3689944 +0.7474945 0.5692344 0.3689944 +0.8539475 0.5692344 0.3689944 +0.974052 0.5692344 0.3689944 +1.113885 0.5692344 0.3689944 +1.27456 0.5692344 0.3689944 +1.458117 0.5692344 0.3689944 +1.667858 0.5692344 0.3689944 +1.907556 0.5692344 0.3689944 +2.181521 0.5692344 0.3689944 +2.494678 0.5692344 0.3689944 +2.852659 0.5692344 0.3689944 +3.261896 0.5692344 0.3689944 +3.729748 0.5692344 0.3689944 +4.264621 0.5692344 0.3689944 +4.876131 0.5692344 0.3689944 +5.575266 0.5692344 0.3689944 +6.374593 0.5692344 0.3689944 +0 0.6530715 0.3689944 +0 0.6530715 0.3689944 +0 0.6530715 0.3689944 +0.002268731 0.6530715 0.3689944 +0.07076883 0.6530715 0.3689944 +0.1119241 0.6530715 0.3689944 +0.1475052 0.6530715 0.3689944 +0.1846606 0.6530715 0.3689944 +0.2245119 0.6530715 0.3689944 +0.2679612 0.6530715 0.3689944 +0.3158431 0.6530715 0.3689944 +0.3689944 0.6530715 0.3689944 +0.4282948 0.6530715 0.3689944 +0.494694 0.6530715 0.3689944 +0.5692344 0.6530715 0.3689944 +0.6530715 0.6530715 0.3689944 +0.7474945 0.6530715 0.3689944 +0.8539475 0.6530715 0.3689944 +0.974052 0.6530715 0.3689944 +1.113885 0.6530715 0.3689944 +1.27456 0.6530715 0.3689944 +1.458117 0.6530715 0.3689944 +1.667858 0.6530715 0.3689944 +1.907556 0.6530715 0.3689944 +2.181521 0.6530715 0.3689944 +2.494678 0.6530715 0.3689944 +2.852659 0.6530715 0.3689944 +3.261896 0.6530715 0.3689944 +3.729748 0.6530715 0.3689944 +4.264621 0.6530715 0.3689944 +4.876131 0.6530715 0.3689944 +5.575266 0.6530715 0.3689944 +6.374593 0.6530715 0.3689944 +0 0.7474945 0.3689944 +0 0.7474945 0.3689944 +0 0.7474945 0.3689944 +0.002268731 0.7474945 0.3689944 +0.07076883 0.7474945 0.3689944 +0.1119241 0.7474945 0.3689944 +0.1475052 0.7474945 0.3689944 +0.1846606 0.7474945 0.3689944 +0.2245119 0.7474945 0.3689944 +0.2679612 0.7474945 0.3689944 +0.3158431 0.7474945 0.3689944 +0.3689944 0.7474945 0.3689944 +0.4282948 0.7474945 0.3689944 +0.494694 0.7474945 0.3689944 +0.5692344 0.7474945 0.3689944 +0.6530715 0.7474945 0.3689944 +0.7474945 0.7474945 0.3689944 +0.8539475 0.7474945 0.3689944 +0.974052 0.7474945 0.3689944 +1.113885 0.7474945 0.3689944 +1.27456 0.7474945 0.3689944 +1.458117 0.7474945 0.3689944 +1.667858 0.7474945 0.3689944 +1.907556 0.7474945 0.3689944 +2.181521 0.7474945 0.3689944 +2.494678 0.7474945 0.3689944 +2.852659 0.7474945 0.3689944 +3.261896 0.7474945 0.3689944 +3.729748 0.7474945 0.3689944 +4.264621 0.7474945 0.3689944 +4.876131 0.7474945 0.3689944 +5.575266 0.7474945 0.3689944 +6.374593 0.7474945 0.3689944 +0 0.8539475 0.3689944 +0 0.8539475 0.3689944 +0 0.8539475 0.3689944 +0.002268731 0.8539475 0.3689944 +0.07076883 0.8539475 0.3689944 +0.1119241 0.8539475 0.3689944 +0.1475052 0.8539475 0.3689944 +0.1846606 0.8539475 0.3689944 +0.2245119 0.8539475 0.3689944 +0.2679612 0.8539475 0.3689944 +0.3158431 0.8539475 0.3689944 +0.3689944 0.8539475 0.3689944 +0.4282948 0.8539475 0.3689944 +0.494694 0.8539475 0.3689944 +0.5692344 0.8539475 0.3689944 +0.6530715 0.8539475 0.3689944 +0.7474945 0.8539475 0.3689944 +0.8539475 0.8539475 0.3689944 +0.974052 0.8539475 0.3689944 +1.113885 0.8539475 0.3689944 +1.27456 0.8539475 0.3689944 +1.458117 0.8539475 0.3689944 +1.667858 0.8539475 0.3689944 +1.907556 0.8539475 0.3689944 +2.181521 0.8539475 0.3689944 +2.494678 0.8539475 0.3689944 +2.852659 0.8539475 0.3689944 +3.261896 0.8539475 0.3689944 +3.729748 0.8539475 0.3689944 +4.264621 0.8539475 0.3689944 +4.876131 0.8539475 0.3689944 +5.575266 0.8539475 0.3689944 +6.374593 0.8539475 0.3689944 +0 0.974052 0.3689944 +0 0.974052 0.3689944 +0 0.974052 0.3689944 +0.002268731 0.974052 0.3689944 +0.07076883 0.974052 0.3689944 +0.1119241 0.974052 0.3689944 +0.1475052 0.974052 0.3689944 +0.1846606 0.974052 0.3689944 +0.2245119 0.974052 0.3689944 +0.2679612 0.974052 0.3689944 +0.3158431 0.974052 0.3689944 +0.3689944 0.974052 0.3689944 +0.4282948 0.974052 0.3689944 +0.494694 0.974052 0.3689944 +0.5692344 0.974052 0.3689944 +0.6530715 0.974052 0.3689944 +0.7474945 0.974052 0.3689944 +0.8539475 0.974052 0.3689944 +0.974052 0.974052 0.3689944 +1.113885 0.974052 0.3689944 +1.27456 0.974052 0.3689944 +1.458117 0.974052 0.3689944 +1.667858 0.974052 0.3689944 +1.907556 0.974052 0.3689944 +2.181521 0.974052 0.3689944 +2.494678 0.974052 0.3689944 +2.852659 0.974052 0.3689944 +3.261896 0.974052 0.3689944 +3.729748 0.974052 0.3689944 +4.264621 0.974052 0.3689944 +4.876131 0.974052 0.3689944 +5.575266 0.974052 0.3689944 +6.374593 0.974052 0.3689944 +0 1.113885 0.3689944 +0 1.113885 0.3689944 +0 1.113885 0.3689944 +0.002268731 1.113885 0.3689944 +0.07076883 1.113885 0.3689944 +0.1119241 1.113885 0.3689944 +0.1475052 1.113885 0.3689944 +0.1846606 1.113885 0.3689944 +0.2245119 1.113885 0.3689944 +0.2679612 1.113885 0.3689944 +0.3158431 1.113885 0.3689944 +0.3689944 1.113885 0.3689944 +0.4282948 1.113885 0.3689944 +0.494694 1.113885 0.3689944 +0.5692344 1.113885 0.3689944 +0.6530715 1.113885 0.3689944 +0.7474945 1.113885 0.3689944 +0.8539475 1.113885 0.3689944 +0.974052 1.113885 0.3689944 +1.113885 1.113885 0.3689944 +1.27456 1.113885 0.3689944 +1.458117 1.113885 0.3689944 +1.667858 1.113885 0.3689944 +1.907556 1.113885 0.3689944 +2.181521 1.113885 0.3689944 +2.494678 1.113885 0.3689944 +2.852659 1.113885 0.3689944 +3.261896 1.113885 0.3689944 +3.729748 1.113885 0.3689944 +4.264621 1.113885 0.3689944 +4.876131 1.113885 0.3689944 +5.575266 1.113885 0.3689944 +6.374593 1.113885 0.3689944 +0 1.27456 0.3689944 +0 1.27456 0.3689944 +0 1.27456 0.3689944 +0.002268731 1.27456 0.3689944 +0.07076883 1.27456 0.3689944 +0.1119241 1.27456 0.3689944 +0.1475052 1.27456 0.3689944 +0.1846606 1.27456 0.3689944 +0.2245119 1.27456 0.3689944 +0.2679612 1.27456 0.3689944 +0.3158431 1.27456 0.3689944 +0.3689944 1.27456 0.3689944 +0.4282948 1.27456 0.3689944 +0.494694 1.27456 0.3689944 +0.5692344 1.27456 0.3689944 +0.6530715 1.27456 0.3689944 +0.7474945 1.27456 0.3689944 +0.8539475 1.27456 0.3689944 +0.974052 1.27456 0.3689944 +1.113885 1.27456 0.3689944 +1.27456 1.27456 0.3689944 +1.458117 1.27456 0.3689944 +1.667858 1.27456 0.3689944 +1.907556 1.27456 0.3689944 +2.181521 1.27456 0.3689944 +2.494678 1.27456 0.3689944 +2.852659 1.27456 0.3689944 +3.261896 1.27456 0.3689944 +3.729748 1.27456 0.3689944 +4.264621 1.27456 0.3689944 +4.876131 1.27456 0.3689944 +5.575266 1.27456 0.3689944 +6.374593 1.27456 0.3689944 +0 1.458117 0.3689944 +0 1.458117 0.3689944 +0 1.458117 0.3689944 +0.002268731 1.458117 0.3689944 +0.07076883 1.458117 0.3689944 +0.1119241 1.458117 0.3689944 +0.1475052 1.458117 0.3689944 +0.1846606 1.458117 0.3689944 +0.2245119 1.458117 0.3689944 +0.2679612 1.458117 0.3689944 +0.3158431 1.458117 0.3689944 +0.3689944 1.458117 0.3689944 +0.4282948 1.458117 0.3689944 +0.494694 1.458117 0.3689944 +0.5692344 1.458117 0.3689944 +0.6530715 1.458117 0.3689944 +0.7474945 1.458117 0.3689944 +0.8539475 1.458117 0.3689944 +0.974052 1.458117 0.3689944 +1.113885 1.458117 0.3689944 +1.27456 1.458117 0.3689944 +1.458117 1.458117 0.3689944 +1.667858 1.458117 0.3689944 +1.907556 1.458117 0.3689944 +2.181521 1.458117 0.3689944 +2.494678 1.458117 0.3689944 +2.852659 1.458117 0.3689944 +3.261896 1.458117 0.3689944 +3.729748 1.458117 0.3689944 +4.264621 1.458117 0.3689944 +4.876131 1.458117 0.3689944 +5.575266 1.458117 0.3689944 +6.374593 1.458117 0.3689944 +0 1.667858 0.3689944 +0 1.667858 0.3689944 +0 1.667858 0.3689944 +0.002268731 1.667858 0.3689944 +0.07076883 1.667858 0.3689944 +0.1119241 1.667858 0.3689944 +0.1475052 1.667858 0.3689944 +0.1846606 1.667858 0.3689944 +0.2245119 1.667858 0.3689944 +0.2679612 1.667858 0.3689944 +0.3158431 1.667858 0.3689944 +0.3689944 1.667858 0.3689944 +0.4282948 1.667858 0.3689944 +0.494694 1.667858 0.3689944 +0.5692344 1.667858 0.3689944 +0.6530715 1.667858 0.3689944 +0.7474945 1.667858 0.3689944 +0.8539475 1.667858 0.3689944 +0.974052 1.667858 0.3689944 +1.113885 1.667858 0.3689944 +1.27456 1.667858 0.3689944 +1.458117 1.667858 0.3689944 +1.667858 1.667858 0.3689944 +1.907556 1.667858 0.3689944 +2.181521 1.667858 0.3689944 +2.494678 1.667858 0.3689944 +2.852659 1.667858 0.3689944 +3.261896 1.667858 0.3689944 +3.729748 1.667858 0.3689944 +4.264621 1.667858 0.3689944 +4.876131 1.667858 0.3689944 +5.575266 1.667858 0.3689944 +6.374593 1.667858 0.3689944 +0 1.907556 0.3689944 +0 1.907556 0.3689944 +0 1.907556 0.3689944 +0.002268731 1.907556 0.3689944 +0.07076883 1.907556 0.3689944 +0.1119241 1.907556 0.3689944 +0.1475052 1.907556 0.3689944 +0.1846606 1.907556 0.3689944 +0.2245119 1.907556 0.3689944 +0.2679612 1.907556 0.3689944 +0.3158431 1.907556 0.3689944 +0.3689944 1.907556 0.3689944 +0.4282948 1.907556 0.3689944 +0.494694 1.907556 0.3689944 +0.5692344 1.907556 0.3689944 +0.6530715 1.907556 0.3689944 +0.7474945 1.907556 0.3689944 +0.8539475 1.907556 0.3689944 +0.974052 1.907556 0.3689944 +1.113885 1.907556 0.3689944 +1.27456 1.907556 0.3689944 +1.458117 1.907556 0.3689944 +1.667858 1.907556 0.3689944 +1.907556 1.907556 0.3689944 +2.181521 1.907556 0.3689944 +2.494678 1.907556 0.3689944 +2.852659 1.907556 0.3689944 +3.261896 1.907556 0.3689944 +3.729748 1.907556 0.3689944 +4.264621 1.907556 0.3689944 +4.876131 1.907556 0.3689944 +5.575266 1.907556 0.3689944 +6.374593 1.907556 0.3689944 +0 2.181521 0.3689944 +0 2.181521 0.3689944 +0 2.181521 0.3689944 +0.002268731 2.181521 0.3689944 +0.07076883 2.181521 0.3689944 +0.1119241 2.181521 0.3689944 +0.1475052 2.181521 0.3689944 +0.1846606 2.181521 0.3689944 +0.2245119 2.181521 0.3689944 +0.2679612 2.181521 0.3689944 +0.3158431 2.181521 0.3689944 +0.3689944 2.181521 0.3689944 +0.4282948 2.181521 0.3689944 +0.494694 2.181521 0.3689944 +0.5692344 2.181521 0.3689944 +0.6530715 2.181521 0.3689944 +0.7474945 2.181521 0.3689944 +0.8539475 2.181521 0.3689944 +0.974052 2.181521 0.3689944 +1.113885 2.181521 0.3689944 +1.27456 2.181521 0.3689944 +1.458117 2.181521 0.3689944 +1.667858 2.181521 0.3689944 +1.907556 2.181521 0.3689944 +2.181521 2.181521 0.3689944 +2.494678 2.181521 0.3689944 +2.852659 2.181521 0.3689944 +3.261896 2.181521 0.3689944 +3.729748 2.181521 0.3689944 +4.264621 2.181521 0.3689944 +4.876131 2.181521 0.3689944 +5.575266 2.181521 0.3689944 +6.374593 2.181521 0.3689944 +0 2.494678 0.3689944 +0 2.494678 0.3689944 +0 2.494678 0.3689944 +0.002268731 2.494678 0.3689944 +0.07076883 2.494678 0.3689944 +0.1119241 2.494678 0.3689944 +0.1475052 2.494678 0.3689944 +0.1846606 2.494678 0.3689944 +0.2245119 2.494678 0.3689944 +0.2679612 2.494678 0.3689944 +0.3158431 2.494678 0.3689944 +0.3689944 2.494678 0.3689944 +0.4282948 2.494678 0.3689944 +0.494694 2.494678 0.3689944 +0.5692344 2.494678 0.3689944 +0.6530715 2.494678 0.3689944 +0.7474945 2.494678 0.3689944 +0.8539475 2.494678 0.3689944 +0.974052 2.494678 0.3689944 +1.113885 2.494678 0.3689944 +1.27456 2.494678 0.3689944 +1.458117 2.494678 0.3689944 +1.667858 2.494678 0.3689944 +1.907556 2.494678 0.3689944 +2.181521 2.494678 0.3689944 +2.494678 2.494678 0.3689944 +2.852659 2.494678 0.3689944 +3.261896 2.494678 0.3689944 +3.729748 2.494678 0.3689944 +4.264621 2.494678 0.3689944 +4.876131 2.494678 0.3689944 +5.575266 2.494678 0.3689944 +6.374593 2.494678 0.3689944 +0 2.852659 0.3689944 +0 2.852659 0.3689944 +0 2.852659 0.3689944 +0.002268731 2.852659 0.3689944 +0.07076883 2.852659 0.3689944 +0.1119241 2.852659 0.3689944 +0.1475052 2.852659 0.3689944 +0.1846606 2.852659 0.3689944 +0.2245119 2.852659 0.3689944 +0.2679612 2.852659 0.3689944 +0.3158431 2.852659 0.3689944 +0.3689944 2.852659 0.3689944 +0.4282948 2.852659 0.3689944 +0.494694 2.852659 0.3689944 +0.5692344 2.852659 0.3689944 +0.6530715 2.852659 0.3689944 +0.7474945 2.852659 0.3689944 +0.8539475 2.852659 0.3689944 +0.974052 2.852659 0.3689944 +1.113885 2.852659 0.3689944 +1.27456 2.852659 0.3689944 +1.458117 2.852659 0.3689944 +1.667858 2.852659 0.3689944 +1.907556 2.852659 0.3689944 +2.181521 2.852659 0.3689944 +2.494678 2.852659 0.3689944 +2.852659 2.852659 0.3689944 +3.261896 2.852659 0.3689944 +3.729748 2.852659 0.3689944 +4.264621 2.852659 0.3689944 +4.876131 2.852659 0.3689944 +5.575266 2.852659 0.3689944 +6.374593 2.852659 0.3689944 +0 3.261896 0.3689944 +0 3.261896 0.3689944 +0 3.261896 0.3689944 +0.002268731 3.261896 0.3689944 +0.07076883 3.261896 0.3689944 +0.1119241 3.261896 0.3689944 +0.1475052 3.261896 0.3689944 +0.1846606 3.261896 0.3689944 +0.2245119 3.261896 0.3689944 +0.2679612 3.261896 0.3689944 +0.3158431 3.261896 0.3689944 +0.3689944 3.261896 0.3689944 +0.4282948 3.261896 0.3689944 +0.494694 3.261896 0.3689944 +0.5692344 3.261896 0.3689944 +0.6530715 3.261896 0.3689944 +0.7474945 3.261896 0.3689944 +0.8539475 3.261896 0.3689944 +0.974052 3.261896 0.3689944 +1.113885 3.261896 0.3689944 +1.27456 3.261896 0.3689944 +1.458117 3.261896 0.3689944 +1.667858 3.261896 0.3689944 +1.907556 3.261896 0.3689944 +2.181521 3.261896 0.3689944 +2.494678 3.261896 0.3689944 +2.852659 3.261896 0.3689944 +3.261896 3.261896 0.3689944 +3.729748 3.261896 0.3689944 +4.264621 3.261896 0.3689944 +4.876131 3.261896 0.3689944 +5.575266 3.261896 0.3689944 +6.374593 3.261896 0.3689944 +0 3.729748 0.3689944 +0 3.729748 0.3689944 +0 3.729748 0.3689944 +0.002268731 3.729748 0.3689944 +0.07076883 3.729748 0.3689944 +0.1119241 3.729748 0.3689944 +0.1475052 3.729748 0.3689944 +0.1846606 3.729748 0.3689944 +0.2245119 3.729748 0.3689944 +0.2679612 3.729748 0.3689944 +0.3158431 3.729748 0.3689944 +0.3689944 3.729748 0.3689944 +0.4282948 3.729748 0.3689944 +0.494694 3.729748 0.3689944 +0.5692344 3.729748 0.3689944 +0.6530715 3.729748 0.3689944 +0.7474945 3.729748 0.3689944 +0.8539475 3.729748 0.3689944 +0.974052 3.729748 0.3689944 +1.113885 3.729748 0.3689944 +1.27456 3.729748 0.3689944 +1.458117 3.729748 0.3689944 +1.667858 3.729748 0.3689944 +1.907556 3.729748 0.3689944 +2.181521 3.729748 0.3689944 +2.494678 3.729748 0.3689944 +2.852659 3.729748 0.3689944 +3.261896 3.729748 0.3689944 +3.729748 3.729748 0.3689944 +4.264621 3.729748 0.3689944 +4.876131 3.729748 0.3689944 +5.575266 3.729748 0.3689944 +6.374593 3.729748 0.3689944 +0 4.264621 0.3689944 +0 4.264621 0.3689944 +0 4.264621 0.3689944 +0.002268731 4.264621 0.3689944 +0.07076883 4.264621 0.3689944 +0.1119241 4.264621 0.3689944 +0.1475052 4.264621 0.3689944 +0.1846606 4.264621 0.3689944 +0.2245119 4.264621 0.3689944 +0.2679612 4.264621 0.3689944 +0.3158431 4.264621 0.3689944 +0.3689944 4.264621 0.3689944 +0.4282948 4.264621 0.3689944 +0.494694 4.264621 0.3689944 +0.5692344 4.264621 0.3689944 +0.6530715 4.264621 0.3689944 +0.7474945 4.264621 0.3689944 +0.8539475 4.264621 0.3689944 +0.974052 4.264621 0.3689944 +1.113885 4.264621 0.3689944 +1.27456 4.264621 0.3689944 +1.458117 4.264621 0.3689944 +1.667858 4.264621 0.3689944 +1.907556 4.264621 0.3689944 +2.181521 4.264621 0.3689944 +2.494678 4.264621 0.3689944 +2.852659 4.264621 0.3689944 +3.261896 4.264621 0.3689944 +3.729748 4.264621 0.3689944 +4.264621 4.264621 0.3689944 +4.876131 4.264621 0.3689944 +5.575266 4.264621 0.3689944 +6.374593 4.264621 0.3689944 +0 4.876131 0.3689944 +0 4.876131 0.3689944 +0 4.876131 0.3689944 +0.002268731 4.876131 0.3689944 +0.07076883 4.876131 0.3689944 +0.1119241 4.876131 0.3689944 +0.1475052 4.876131 0.3689944 +0.1846606 4.876131 0.3689944 +0.2245119 4.876131 0.3689944 +0.2679612 4.876131 0.3689944 +0.3158431 4.876131 0.3689944 +0.3689944 4.876131 0.3689944 +0.4282948 4.876131 0.3689944 +0.494694 4.876131 0.3689944 +0.5692344 4.876131 0.3689944 +0.6530715 4.876131 0.3689944 +0.7474945 4.876131 0.3689944 +0.8539475 4.876131 0.3689944 +0.974052 4.876131 0.3689944 +1.113885 4.876131 0.3689944 +1.27456 4.876131 0.3689944 +1.458117 4.876131 0.3689944 +1.667858 4.876131 0.3689944 +1.907556 4.876131 0.3689944 +2.181521 4.876131 0.3689944 +2.494678 4.876131 0.3689944 +2.852659 4.876131 0.3689944 +3.261896 4.876131 0.3689944 +3.729748 4.876131 0.3689944 +4.264621 4.876131 0.3689944 +4.876131 4.876131 0.3689944 +5.575266 4.876131 0.3689944 +6.374593 4.876131 0.3689944 +0 5.575266 0.3689944 +0 5.575266 0.3689944 +0 5.575266 0.3689944 +0.002268731 5.575266 0.3689944 +0.07076883 5.575266 0.3689944 +0.1119241 5.575266 0.3689944 +0.1475052 5.575266 0.3689944 +0.1846606 5.575266 0.3689944 +0.2245119 5.575266 0.3689944 +0.2679612 5.575266 0.3689944 +0.3158431 5.575266 0.3689944 +0.3689944 5.575266 0.3689944 +0.4282948 5.575266 0.3689944 +0.494694 5.575266 0.3689944 +0.5692344 5.575266 0.3689944 +0.6530715 5.575266 0.3689944 +0.7474945 5.575266 0.3689944 +0.8539475 5.575266 0.3689944 +0.974052 5.575266 0.3689944 +1.113885 5.575266 0.3689944 +1.27456 5.575266 0.3689944 +1.458117 5.575266 0.3689944 +1.667858 5.575266 0.3689944 +1.907556 5.575266 0.3689944 +2.181521 5.575266 0.3689944 +2.494678 5.575266 0.3689944 +2.852659 5.575266 0.3689944 +3.261896 5.575266 0.3689944 +3.729748 5.575266 0.3689944 +4.264621 5.575266 0.3689944 +4.876131 5.575266 0.3689944 +5.575266 5.575266 0.3689944 +6.374593 5.575266 0.3689944 +0 6.374593 0.3689944 +0 6.374593 0.3689944 +0 6.374593 0.3689944 +0.002268731 6.374593 0.3689944 +0.07076883 6.374593 0.3689944 +0.1119241 6.374593 0.3689944 +0.1475052 6.374593 0.3689944 +0.1846606 6.374593 0.3689944 +0.2245119 6.374593 0.3689944 +0.2679612 6.374593 0.3689944 +0.3158431 6.374593 0.3689944 +0.3689944 6.374593 0.3689944 +0.4282948 6.374593 0.3689944 +0.494694 6.374593 0.3689944 +0.5692344 6.374593 0.3689944 +0.6530715 6.374593 0.3689944 +0.7474945 6.374593 0.3689944 +0.8539475 6.374593 0.3689944 +0.974052 6.374593 0.3689944 +1.113885 6.374593 0.3689944 +1.27456 6.374593 0.3689944 +1.458117 6.374593 0.3689944 +1.667858 6.374593 0.3689944 +1.907556 6.374593 0.3689944 +2.181521 6.374593 0.3689944 +2.494678 6.374593 0.3689944 +2.852659 6.374593 0.3689944 +3.261896 6.374593 0.3689944 +3.729748 6.374593 0.3689944 +4.264621 6.374593 0.3689944 +4.876131 6.374593 0.3689944 +5.575266 6.374593 0.3689944 +6.374593 6.374593 0.3689944 +0 0 0.4282948 +0 0 0.4282948 +0 0 0.4282948 +0.002268731 0 0.4282948 +0.07076883 0 0.4282948 +0.1119241 0 0.4282948 +0.1475052 0 0.4282948 +0.1846606 0 0.4282948 +0.2245119 0 0.4282948 +0.2679612 0 0.4282948 +0.3158431 0 0.4282948 +0.3689944 0 0.4282948 +0.4282948 0 0.4282948 +0.494694 0 0.4282948 +0.5692344 0 0.4282948 +0.6530715 0 0.4282948 +0.7474945 0 0.4282948 +0.8539475 0 0.4282948 +0.974052 0 0.4282948 +1.113885 0 0.4282948 +1.27456 0 0.4282948 +1.458117 0 0.4282948 +1.667858 0 0.4282948 +1.907556 0 0.4282948 +2.181521 0 0.4282948 +2.494678 0 0.4282948 +2.852659 0 0.4282948 +3.261896 0 0.4282948 +3.729748 0 0.4282948 +4.264621 0 0.4282948 +4.876131 0 0.4282948 +5.575266 0 0.4282948 +6.374593 0 0.4282948 +0 0 0.4282948 +0 0 0.4282948 +0 0 0.4282948 +0.002268731 0 0.4282948 +0.07076883 0 0.4282948 +0.1119241 0 0.4282948 +0.1475052 0 0.4282948 +0.1846606 0 0.4282948 +0.2245119 0 0.4282948 +0.2679612 0 0.4282948 +0.3158431 0 0.4282948 +0.3689944 0 0.4282948 +0.4282948 0 0.4282948 +0.494694 0 0.4282948 +0.5692344 0 0.4282948 +0.6530715 0 0.4282948 +0.7474945 0 0.4282948 +0.8539475 0 0.4282948 +0.974052 0 0.4282948 +1.113885 0 0.4282948 +1.27456 0 0.4282948 +1.458117 0 0.4282948 +1.667858 0 0.4282948 +1.907556 0 0.4282948 +2.181521 0 0.4282948 +2.494678 0 0.4282948 +2.852659 0 0.4282948 +3.261896 0 0.4282948 +3.729748 0 0.4282948 +4.264621 0 0.4282948 +4.876131 0 0.4282948 +5.575266 0 0.4282948 +6.374593 0 0.4282948 +0 0 0.4282948 +0 0 0.4282948 +0 0 0.4282948 +0.002268731 0 0.4282948 +0.07076883 0 0.4282948 +0.1119241 0 0.4282948 +0.1475052 0 0.4282948 +0.1846606 0 0.4282948 +0.2245119 0 0.4282948 +0.2679612 0 0.4282948 +0.3158431 0 0.4282948 +0.3689944 0 0.4282948 +0.4282948 0 0.4282948 +0.494694 0 0.4282948 +0.5692344 0 0.4282948 +0.6530715 0 0.4282948 +0.7474945 0 0.4282948 +0.8539475 0 0.4282948 +0.974052 0 0.4282948 +1.113885 0 0.4282948 +1.27456 0 0.4282948 +1.458117 0 0.4282948 +1.667858 0 0.4282948 +1.907556 0 0.4282948 +2.181521 0 0.4282948 +2.494678 0 0.4282948 +2.852659 0 0.4282948 +3.261896 0 0.4282948 +3.729748 0 0.4282948 +4.264621 0 0.4282948 +4.876131 0 0.4282948 +5.575266 0 0.4282948 +6.374593 0 0.4282948 +0 0.002268731 0.4282948 +0 0.002268731 0.4282948 +0 0.002268731 0.4282948 +0.002268731 0.002268731 0.4282948 +0.07076883 0.002268731 0.4282948 +0.1119241 0.002268731 0.4282948 +0.1475052 0.002268731 0.4282948 +0.1846606 0.002268731 0.4282948 +0.2245119 0.002268731 0.4282948 +0.2679612 0.002268731 0.4282948 +0.3158431 0.002268731 0.4282948 +0.3689944 0.002268731 0.4282948 +0.4282948 0.002268731 0.4282948 +0.494694 0.002268731 0.4282948 +0.5692344 0.002268731 0.4282948 +0.6530715 0.002268731 0.4282948 +0.7474945 0.002268731 0.4282948 +0.8539475 0.002268731 0.4282948 +0.974052 0.002268731 0.4282948 +1.113885 0.002268731 0.4282948 +1.27456 0.002268731 0.4282948 +1.458117 0.002268731 0.4282948 +1.667858 0.002268731 0.4282948 +1.907556 0.002268731 0.4282948 +2.181521 0.002268731 0.4282948 +2.494678 0.002268731 0.4282948 +2.852659 0.002268731 0.4282948 +3.261896 0.002268731 0.4282948 +3.729748 0.002268731 0.4282948 +4.264621 0.002268731 0.4282948 +4.876131 0.002268731 0.4282948 +5.575266 0.002268731 0.4282948 +6.374593 0.002268731 0.4282948 +0 0.07076883 0.4282948 +0 0.07076883 0.4282948 +0 0.07076883 0.4282948 +0.002268731 0.07076883 0.4282948 +0.07076883 0.07076883 0.4282948 +0.1119241 0.07076883 0.4282948 +0.1475052 0.07076883 0.4282948 +0.1846606 0.07076883 0.4282948 +0.2245119 0.07076883 0.4282948 +0.2679612 0.07076883 0.4282948 +0.3158431 0.07076883 0.4282948 +0.3689944 0.07076883 0.4282948 +0.4282948 0.07076883 0.4282948 +0.494694 0.07076883 0.4282948 +0.5692344 0.07076883 0.4282948 +0.6530715 0.07076883 0.4282948 +0.7474945 0.07076883 0.4282948 +0.8539475 0.07076883 0.4282948 +0.974052 0.07076883 0.4282948 +1.113885 0.07076883 0.4282948 +1.27456 0.07076883 0.4282948 +1.458117 0.07076883 0.4282948 +1.667858 0.07076883 0.4282948 +1.907556 0.07076883 0.4282948 +2.181521 0.07076883 0.4282948 +2.494678 0.07076883 0.4282948 +2.852659 0.07076883 0.4282948 +3.261896 0.07076883 0.4282948 +3.729748 0.07076883 0.4282948 +4.264621 0.07076883 0.4282948 +4.876131 0.07076883 0.4282948 +5.575266 0.07076883 0.4282948 +6.374593 0.07076883 0.4282948 +0 0.1119241 0.4282948 +0 0.1119241 0.4282948 +0 0.1119241 0.4282948 +0.002268731 0.1119241 0.4282948 +0.07076883 0.1119241 0.4282948 +0.1119241 0.1119241 0.4282948 +0.1475052 0.1119241 0.4282948 +0.1846606 0.1119241 0.4282948 +0.2245119 0.1119241 0.4282948 +0.2679612 0.1119241 0.4282948 +0.3158431 0.1119241 0.4282948 +0.3689944 0.1119241 0.4282948 +0.4282948 0.1119241 0.4282948 +0.494694 0.1119241 0.4282948 +0.5692344 0.1119241 0.4282948 +0.6530715 0.1119241 0.4282948 +0.7474945 0.1119241 0.4282948 +0.8539475 0.1119241 0.4282948 +0.974052 0.1119241 0.4282948 +1.113885 0.1119241 0.4282948 +1.27456 0.1119241 0.4282948 +1.458117 0.1119241 0.4282948 +1.667858 0.1119241 0.4282948 +1.907556 0.1119241 0.4282948 +2.181521 0.1119241 0.4282948 +2.494678 0.1119241 0.4282948 +2.852659 0.1119241 0.4282948 +3.261896 0.1119241 0.4282948 +3.729748 0.1119241 0.4282948 +4.264621 0.1119241 0.4282948 +4.876131 0.1119241 0.4282948 +5.575266 0.1119241 0.4282948 +6.374593 0.1119241 0.4282948 +0 0.1475052 0.4282948 +0 0.1475052 0.4282948 +0 0.1475052 0.4282948 +0.002268731 0.1475052 0.4282948 +0.07076883 0.1475052 0.4282948 +0.1119241 0.1475052 0.4282948 +0.1475052 0.1475052 0.4282948 +0.1846606 0.1475052 0.4282948 +0.2245119 0.1475052 0.4282948 +0.2679612 0.1475052 0.4282948 +0.3158431 0.1475052 0.4282948 +0.3689944 0.1475052 0.4282948 +0.4282948 0.1475052 0.4282948 +0.494694 0.1475052 0.4282948 +0.5692344 0.1475052 0.4282948 +0.6530715 0.1475052 0.4282948 +0.7474945 0.1475052 0.4282948 +0.8539475 0.1475052 0.4282948 +0.974052 0.1475052 0.4282948 +1.113885 0.1475052 0.4282948 +1.27456 0.1475052 0.4282948 +1.458117 0.1475052 0.4282948 +1.667858 0.1475052 0.4282948 +1.907556 0.1475052 0.4282948 +2.181521 0.1475052 0.4282948 +2.494678 0.1475052 0.4282948 +2.852659 0.1475052 0.4282948 +3.261896 0.1475052 0.4282948 +3.729748 0.1475052 0.4282948 +4.264621 0.1475052 0.4282948 +4.876131 0.1475052 0.4282948 +5.575266 0.1475052 0.4282948 +6.374593 0.1475052 0.4282948 +0 0.1846606 0.4282948 +0 0.1846606 0.4282948 +0 0.1846606 0.4282948 +0.002268731 0.1846606 0.4282948 +0.07076883 0.1846606 0.4282948 +0.1119241 0.1846606 0.4282948 +0.1475052 0.1846606 0.4282948 +0.1846606 0.1846606 0.4282948 +0.2245119 0.1846606 0.4282948 +0.2679612 0.1846606 0.4282948 +0.3158431 0.1846606 0.4282948 +0.3689944 0.1846606 0.4282948 +0.4282948 0.1846606 0.4282948 +0.494694 0.1846606 0.4282948 +0.5692344 0.1846606 0.4282948 +0.6530715 0.1846606 0.4282948 +0.7474945 0.1846606 0.4282948 +0.8539475 0.1846606 0.4282948 +0.974052 0.1846606 0.4282948 +1.113885 0.1846606 0.4282948 +1.27456 0.1846606 0.4282948 +1.458117 0.1846606 0.4282948 +1.667858 0.1846606 0.4282948 +1.907556 0.1846606 0.4282948 +2.181521 0.1846606 0.4282948 +2.494678 0.1846606 0.4282948 +2.852659 0.1846606 0.4282948 +3.261896 0.1846606 0.4282948 +3.729748 0.1846606 0.4282948 +4.264621 0.1846606 0.4282948 +4.876131 0.1846606 0.4282948 +5.575266 0.1846606 0.4282948 +6.374593 0.1846606 0.4282948 +0 0.2245119 0.4282948 +0 0.2245119 0.4282948 +0 0.2245119 0.4282948 +0.002268731 0.2245119 0.4282948 +0.07076883 0.2245119 0.4282948 +0.1119241 0.2245119 0.4282948 +0.1475052 0.2245119 0.4282948 +0.1846606 0.2245119 0.4282948 +0.2245119 0.2245119 0.4282948 +0.2679612 0.2245119 0.4282948 +0.3158431 0.2245119 0.4282948 +0.3689944 0.2245119 0.4282948 +0.4282948 0.2245119 0.4282948 +0.494694 0.2245119 0.4282948 +0.5692344 0.2245119 0.4282948 +0.6530715 0.2245119 0.4282948 +0.7474945 0.2245119 0.4282948 +0.8539475 0.2245119 0.4282948 +0.974052 0.2245119 0.4282948 +1.113885 0.2245119 0.4282948 +1.27456 0.2245119 0.4282948 +1.458117 0.2245119 0.4282948 +1.667858 0.2245119 0.4282948 +1.907556 0.2245119 0.4282948 +2.181521 0.2245119 0.4282948 +2.494678 0.2245119 0.4282948 +2.852659 0.2245119 0.4282948 +3.261896 0.2245119 0.4282948 +3.729748 0.2245119 0.4282948 +4.264621 0.2245119 0.4282948 +4.876131 0.2245119 0.4282948 +5.575266 0.2245119 0.4282948 +6.374593 0.2245119 0.4282948 +0 0.2679612 0.4282948 +0 0.2679612 0.4282948 +0 0.2679612 0.4282948 +0.002268731 0.2679612 0.4282948 +0.07076883 0.2679612 0.4282948 +0.1119241 0.2679612 0.4282948 +0.1475052 0.2679612 0.4282948 +0.1846606 0.2679612 0.4282948 +0.2245119 0.2679612 0.4282948 +0.2679612 0.2679612 0.4282948 +0.3158431 0.2679612 0.4282948 +0.3689944 0.2679612 0.4282948 +0.4282948 0.2679612 0.4282948 +0.494694 0.2679612 0.4282948 +0.5692344 0.2679612 0.4282948 +0.6530715 0.2679612 0.4282948 +0.7474945 0.2679612 0.4282948 +0.8539475 0.2679612 0.4282948 +0.974052 0.2679612 0.4282948 +1.113885 0.2679612 0.4282948 +1.27456 0.2679612 0.4282948 +1.458117 0.2679612 0.4282948 +1.667858 0.2679612 0.4282948 +1.907556 0.2679612 0.4282948 +2.181521 0.2679612 0.4282948 +2.494678 0.2679612 0.4282948 +2.852659 0.2679612 0.4282948 +3.261896 0.2679612 0.4282948 +3.729748 0.2679612 0.4282948 +4.264621 0.2679612 0.4282948 +4.876131 0.2679612 0.4282948 +5.575266 0.2679612 0.4282948 +6.374593 0.2679612 0.4282948 +0 0.3158431 0.4282948 +0 0.3158431 0.4282948 +0 0.3158431 0.4282948 +0.002268731 0.3158431 0.4282948 +0.07076883 0.3158431 0.4282948 +0.1119241 0.3158431 0.4282948 +0.1475052 0.3158431 0.4282948 +0.1846606 0.3158431 0.4282948 +0.2245119 0.3158431 0.4282948 +0.2679612 0.3158431 0.4282948 +0.3158431 0.3158431 0.4282948 +0.3689944 0.3158431 0.4282948 +0.4282948 0.3158431 0.4282948 +0.494694 0.3158431 0.4282948 +0.5692344 0.3158431 0.4282948 +0.6530715 0.3158431 0.4282948 +0.7474945 0.3158431 0.4282948 +0.8539475 0.3158431 0.4282948 +0.974052 0.3158431 0.4282948 +1.113885 0.3158431 0.4282948 +1.27456 0.3158431 0.4282948 +1.458117 0.3158431 0.4282948 +1.667858 0.3158431 0.4282948 +1.907556 0.3158431 0.4282948 +2.181521 0.3158431 0.4282948 +2.494678 0.3158431 0.4282948 +2.852659 0.3158431 0.4282948 +3.261896 0.3158431 0.4282948 +3.729748 0.3158431 0.4282948 +4.264621 0.3158431 0.4282948 +4.876131 0.3158431 0.4282948 +5.575266 0.3158431 0.4282948 +6.374593 0.3158431 0.4282948 +0 0.3689944 0.4282948 +0 0.3689944 0.4282948 +0 0.3689944 0.4282948 +0.002268731 0.3689944 0.4282948 +0.07076883 0.3689944 0.4282948 +0.1119241 0.3689944 0.4282948 +0.1475052 0.3689944 0.4282948 +0.1846606 0.3689944 0.4282948 +0.2245119 0.3689944 0.4282948 +0.2679612 0.3689944 0.4282948 +0.3158431 0.3689944 0.4282948 +0.3689944 0.3689944 0.4282948 +0.4282948 0.3689944 0.4282948 +0.494694 0.3689944 0.4282948 +0.5692344 0.3689944 0.4282948 +0.6530715 0.3689944 0.4282948 +0.7474945 0.3689944 0.4282948 +0.8539475 0.3689944 0.4282948 +0.974052 0.3689944 0.4282948 +1.113885 0.3689944 0.4282948 +1.27456 0.3689944 0.4282948 +1.458117 0.3689944 0.4282948 +1.667858 0.3689944 0.4282948 +1.907556 0.3689944 0.4282948 +2.181521 0.3689944 0.4282948 +2.494678 0.3689944 0.4282948 +2.852659 0.3689944 0.4282948 +3.261896 0.3689944 0.4282948 +3.729748 0.3689944 0.4282948 +4.264621 0.3689944 0.4282948 +4.876131 0.3689944 0.4282948 +5.575266 0.3689944 0.4282948 +6.374593 0.3689944 0.4282948 +0 0.4282948 0.4282948 +0 0.4282948 0.4282948 +0 0.4282948 0.4282948 +0.002268731 0.4282948 0.4282948 +0.07076883 0.4282948 0.4282948 +0.1119241 0.4282948 0.4282948 +0.1475052 0.4282948 0.4282948 +0.1846606 0.4282948 0.4282948 +0.2245119 0.4282948 0.4282948 +0.2679612 0.4282948 0.4282948 +0.3158431 0.4282948 0.4282948 +0.3689944 0.4282948 0.4282948 +0.4282948 0.4282948 0.4282948 +0.494694 0.4282948 0.4282948 +0.5692344 0.4282948 0.4282948 +0.6530715 0.4282948 0.4282948 +0.7474945 0.4282948 0.4282948 +0.8539475 0.4282948 0.4282948 +0.974052 0.4282948 0.4282948 +1.113885 0.4282948 0.4282948 +1.27456 0.4282948 0.4282948 +1.458117 0.4282948 0.4282948 +1.667858 0.4282948 0.4282948 +1.907556 0.4282948 0.4282948 +2.181521 0.4282948 0.4282948 +2.494678 0.4282948 0.4282948 +2.852659 0.4282948 0.4282948 +3.261896 0.4282948 0.4282948 +3.729748 0.4282948 0.4282948 +4.264621 0.4282948 0.4282948 +4.876131 0.4282948 0.4282948 +5.575266 0.4282948 0.4282948 +6.374593 0.4282948 0.4282948 +0 0.494694 0.4282948 +0 0.494694 0.4282948 +0 0.494694 0.4282948 +0.002268731 0.494694 0.4282948 +0.07076883 0.494694 0.4282948 +0.1119241 0.494694 0.4282948 +0.1475052 0.494694 0.4282948 +0.1846606 0.494694 0.4282948 +0.2245119 0.494694 0.4282948 +0.2679612 0.494694 0.4282948 +0.3158431 0.494694 0.4282948 +0.3689944 0.494694 0.4282948 +0.4282948 0.494694 0.4282948 +0.494694 0.494694 0.4282948 +0.5692344 0.494694 0.4282948 +0.6530715 0.494694 0.4282948 +0.7474945 0.494694 0.4282948 +0.8539475 0.494694 0.4282948 +0.974052 0.494694 0.4282948 +1.113885 0.494694 0.4282948 +1.27456 0.494694 0.4282948 +1.458117 0.494694 0.4282948 +1.667858 0.494694 0.4282948 +1.907556 0.494694 0.4282948 +2.181521 0.494694 0.4282948 +2.494678 0.494694 0.4282948 +2.852659 0.494694 0.4282948 +3.261896 0.494694 0.4282948 +3.729748 0.494694 0.4282948 +4.264621 0.494694 0.4282948 +4.876131 0.494694 0.4282948 +5.575266 0.494694 0.4282948 +6.374593 0.494694 0.4282948 +0 0.5692344 0.4282948 +0 0.5692344 0.4282948 +0 0.5692344 0.4282948 +0.002268731 0.5692344 0.4282948 +0.07076883 0.5692344 0.4282948 +0.1119241 0.5692344 0.4282948 +0.1475052 0.5692344 0.4282948 +0.1846606 0.5692344 0.4282948 +0.2245119 0.5692344 0.4282948 +0.2679612 0.5692344 0.4282948 +0.3158431 0.5692344 0.4282948 +0.3689944 0.5692344 0.4282948 +0.4282948 0.5692344 0.4282948 +0.494694 0.5692344 0.4282948 +0.5692344 0.5692344 0.4282948 +0.6530715 0.5692344 0.4282948 +0.7474945 0.5692344 0.4282948 +0.8539475 0.5692344 0.4282948 +0.974052 0.5692344 0.4282948 +1.113885 0.5692344 0.4282948 +1.27456 0.5692344 0.4282948 +1.458117 0.5692344 0.4282948 +1.667858 0.5692344 0.4282948 +1.907556 0.5692344 0.4282948 +2.181521 0.5692344 0.4282948 +2.494678 0.5692344 0.4282948 +2.852659 0.5692344 0.4282948 +3.261896 0.5692344 0.4282948 +3.729748 0.5692344 0.4282948 +4.264621 0.5692344 0.4282948 +4.876131 0.5692344 0.4282948 +5.575266 0.5692344 0.4282948 +6.374593 0.5692344 0.4282948 +0 0.6530715 0.4282948 +0 0.6530715 0.4282948 +0 0.6530715 0.4282948 +0.002268731 0.6530715 0.4282948 +0.07076883 0.6530715 0.4282948 +0.1119241 0.6530715 0.4282948 +0.1475052 0.6530715 0.4282948 +0.1846606 0.6530715 0.4282948 +0.2245119 0.6530715 0.4282948 +0.2679612 0.6530715 0.4282948 +0.3158431 0.6530715 0.4282948 +0.3689944 0.6530715 0.4282948 +0.4282948 0.6530715 0.4282948 +0.494694 0.6530715 0.4282948 +0.5692344 0.6530715 0.4282948 +0.6530715 0.6530715 0.4282948 +0.7474945 0.6530715 0.4282948 +0.8539475 0.6530715 0.4282948 +0.974052 0.6530715 0.4282948 +1.113885 0.6530715 0.4282948 +1.27456 0.6530715 0.4282948 +1.458117 0.6530715 0.4282948 +1.667858 0.6530715 0.4282948 +1.907556 0.6530715 0.4282948 +2.181521 0.6530715 0.4282948 +2.494678 0.6530715 0.4282948 +2.852659 0.6530715 0.4282948 +3.261896 0.6530715 0.4282948 +3.729748 0.6530715 0.4282948 +4.264621 0.6530715 0.4282948 +4.876131 0.6530715 0.4282948 +5.575266 0.6530715 0.4282948 +6.374593 0.6530715 0.4282948 +0 0.7474945 0.4282948 +0 0.7474945 0.4282948 +0 0.7474945 0.4282948 +0.002268731 0.7474945 0.4282948 +0.07076883 0.7474945 0.4282948 +0.1119241 0.7474945 0.4282948 +0.1475052 0.7474945 0.4282948 +0.1846606 0.7474945 0.4282948 +0.2245119 0.7474945 0.4282948 +0.2679612 0.7474945 0.4282948 +0.3158431 0.7474945 0.4282948 +0.3689944 0.7474945 0.4282948 +0.4282948 0.7474945 0.4282948 +0.494694 0.7474945 0.4282948 +0.5692344 0.7474945 0.4282948 +0.6530715 0.7474945 0.4282948 +0.7474945 0.7474945 0.4282948 +0.8539475 0.7474945 0.4282948 +0.974052 0.7474945 0.4282948 +1.113885 0.7474945 0.4282948 +1.27456 0.7474945 0.4282948 +1.458117 0.7474945 0.4282948 +1.667858 0.7474945 0.4282948 +1.907556 0.7474945 0.4282948 +2.181521 0.7474945 0.4282948 +2.494678 0.7474945 0.4282948 +2.852659 0.7474945 0.4282948 +3.261896 0.7474945 0.4282948 +3.729748 0.7474945 0.4282948 +4.264621 0.7474945 0.4282948 +4.876131 0.7474945 0.4282948 +5.575266 0.7474945 0.4282948 +6.374593 0.7474945 0.4282948 +0 0.8539475 0.4282948 +0 0.8539475 0.4282948 +0 0.8539475 0.4282948 +0.002268731 0.8539475 0.4282948 +0.07076883 0.8539475 0.4282948 +0.1119241 0.8539475 0.4282948 +0.1475052 0.8539475 0.4282948 +0.1846606 0.8539475 0.4282948 +0.2245119 0.8539475 0.4282948 +0.2679612 0.8539475 0.4282948 +0.3158431 0.8539475 0.4282948 +0.3689944 0.8539475 0.4282948 +0.4282948 0.8539475 0.4282948 +0.494694 0.8539475 0.4282948 +0.5692344 0.8539475 0.4282948 +0.6530715 0.8539475 0.4282948 +0.7474945 0.8539475 0.4282948 +0.8539475 0.8539475 0.4282948 +0.974052 0.8539475 0.4282948 +1.113885 0.8539475 0.4282948 +1.27456 0.8539475 0.4282948 +1.458117 0.8539475 0.4282948 +1.667858 0.8539475 0.4282948 +1.907556 0.8539475 0.4282948 +2.181521 0.8539475 0.4282948 +2.494678 0.8539475 0.4282948 +2.852659 0.8539475 0.4282948 +3.261896 0.8539475 0.4282948 +3.729748 0.8539475 0.4282948 +4.264621 0.8539475 0.4282948 +4.876131 0.8539475 0.4282948 +5.575266 0.8539475 0.4282948 +6.374593 0.8539475 0.4282948 +0 0.974052 0.4282948 +0 0.974052 0.4282948 +0 0.974052 0.4282948 +0.002268731 0.974052 0.4282948 +0.07076883 0.974052 0.4282948 +0.1119241 0.974052 0.4282948 +0.1475052 0.974052 0.4282948 +0.1846606 0.974052 0.4282948 +0.2245119 0.974052 0.4282948 +0.2679612 0.974052 0.4282948 +0.3158431 0.974052 0.4282948 +0.3689944 0.974052 0.4282948 +0.4282948 0.974052 0.4282948 +0.494694 0.974052 0.4282948 +0.5692344 0.974052 0.4282948 +0.6530715 0.974052 0.4282948 +0.7474945 0.974052 0.4282948 +0.8539475 0.974052 0.4282948 +0.974052 0.974052 0.4282948 +1.113885 0.974052 0.4282948 +1.27456 0.974052 0.4282948 +1.458117 0.974052 0.4282948 +1.667858 0.974052 0.4282948 +1.907556 0.974052 0.4282948 +2.181521 0.974052 0.4282948 +2.494678 0.974052 0.4282948 +2.852659 0.974052 0.4282948 +3.261896 0.974052 0.4282948 +3.729748 0.974052 0.4282948 +4.264621 0.974052 0.4282948 +4.876131 0.974052 0.4282948 +5.575266 0.974052 0.4282948 +6.374593 0.974052 0.4282948 +0 1.113885 0.4282948 +0 1.113885 0.4282948 +0 1.113885 0.4282948 +0.002268731 1.113885 0.4282948 +0.07076883 1.113885 0.4282948 +0.1119241 1.113885 0.4282948 +0.1475052 1.113885 0.4282948 +0.1846606 1.113885 0.4282948 +0.2245119 1.113885 0.4282948 +0.2679612 1.113885 0.4282948 +0.3158431 1.113885 0.4282948 +0.3689944 1.113885 0.4282948 +0.4282948 1.113885 0.4282948 +0.494694 1.113885 0.4282948 +0.5692344 1.113885 0.4282948 +0.6530715 1.113885 0.4282948 +0.7474945 1.113885 0.4282948 +0.8539475 1.113885 0.4282948 +0.974052 1.113885 0.4282948 +1.113885 1.113885 0.4282948 +1.27456 1.113885 0.4282948 +1.458117 1.113885 0.4282948 +1.667858 1.113885 0.4282948 +1.907556 1.113885 0.4282948 +2.181521 1.113885 0.4282948 +2.494678 1.113885 0.4282948 +2.852659 1.113885 0.4282948 +3.261896 1.113885 0.4282948 +3.729748 1.113885 0.4282948 +4.264621 1.113885 0.4282948 +4.876131 1.113885 0.4282948 +5.575266 1.113885 0.4282948 +6.374593 1.113885 0.4282948 +0 1.27456 0.4282948 +0 1.27456 0.4282948 +0 1.27456 0.4282948 +0.002268731 1.27456 0.4282948 +0.07076883 1.27456 0.4282948 +0.1119241 1.27456 0.4282948 +0.1475052 1.27456 0.4282948 +0.1846606 1.27456 0.4282948 +0.2245119 1.27456 0.4282948 +0.2679612 1.27456 0.4282948 +0.3158431 1.27456 0.4282948 +0.3689944 1.27456 0.4282948 +0.4282948 1.27456 0.4282948 +0.494694 1.27456 0.4282948 +0.5692344 1.27456 0.4282948 +0.6530715 1.27456 0.4282948 +0.7474945 1.27456 0.4282948 +0.8539475 1.27456 0.4282948 +0.974052 1.27456 0.4282948 +1.113885 1.27456 0.4282948 +1.27456 1.27456 0.4282948 +1.458117 1.27456 0.4282948 +1.667858 1.27456 0.4282948 +1.907556 1.27456 0.4282948 +2.181521 1.27456 0.4282948 +2.494678 1.27456 0.4282948 +2.852659 1.27456 0.4282948 +3.261896 1.27456 0.4282948 +3.729748 1.27456 0.4282948 +4.264621 1.27456 0.4282948 +4.876131 1.27456 0.4282948 +5.575266 1.27456 0.4282948 +6.374593 1.27456 0.4282948 +0 1.458117 0.4282948 +0 1.458117 0.4282948 +0 1.458117 0.4282948 +0.002268731 1.458117 0.4282948 +0.07076883 1.458117 0.4282948 +0.1119241 1.458117 0.4282948 +0.1475052 1.458117 0.4282948 +0.1846606 1.458117 0.4282948 +0.2245119 1.458117 0.4282948 +0.2679612 1.458117 0.4282948 +0.3158431 1.458117 0.4282948 +0.3689944 1.458117 0.4282948 +0.4282948 1.458117 0.4282948 +0.494694 1.458117 0.4282948 +0.5692344 1.458117 0.4282948 +0.6530715 1.458117 0.4282948 +0.7474945 1.458117 0.4282948 +0.8539475 1.458117 0.4282948 +0.974052 1.458117 0.4282948 +1.113885 1.458117 0.4282948 +1.27456 1.458117 0.4282948 +1.458117 1.458117 0.4282948 +1.667858 1.458117 0.4282948 +1.907556 1.458117 0.4282948 +2.181521 1.458117 0.4282948 +2.494678 1.458117 0.4282948 +2.852659 1.458117 0.4282948 +3.261896 1.458117 0.4282948 +3.729748 1.458117 0.4282948 +4.264621 1.458117 0.4282948 +4.876131 1.458117 0.4282948 +5.575266 1.458117 0.4282948 +6.374593 1.458117 0.4282948 +0 1.667858 0.4282948 +0 1.667858 0.4282948 +0 1.667858 0.4282948 +0.002268731 1.667858 0.4282948 +0.07076883 1.667858 0.4282948 +0.1119241 1.667858 0.4282948 +0.1475052 1.667858 0.4282948 +0.1846606 1.667858 0.4282948 +0.2245119 1.667858 0.4282948 +0.2679612 1.667858 0.4282948 +0.3158431 1.667858 0.4282948 +0.3689944 1.667858 0.4282948 +0.4282948 1.667858 0.4282948 +0.494694 1.667858 0.4282948 +0.5692344 1.667858 0.4282948 +0.6530715 1.667858 0.4282948 +0.7474945 1.667858 0.4282948 +0.8539475 1.667858 0.4282948 +0.974052 1.667858 0.4282948 +1.113885 1.667858 0.4282948 +1.27456 1.667858 0.4282948 +1.458117 1.667858 0.4282948 +1.667858 1.667858 0.4282948 +1.907556 1.667858 0.4282948 +2.181521 1.667858 0.4282948 +2.494678 1.667858 0.4282948 +2.852659 1.667858 0.4282948 +3.261896 1.667858 0.4282948 +3.729748 1.667858 0.4282948 +4.264621 1.667858 0.4282948 +4.876131 1.667858 0.4282948 +5.575266 1.667858 0.4282948 +6.374593 1.667858 0.4282948 +0 1.907556 0.4282948 +0 1.907556 0.4282948 +0 1.907556 0.4282948 +0.002268731 1.907556 0.4282948 +0.07076883 1.907556 0.4282948 +0.1119241 1.907556 0.4282948 +0.1475052 1.907556 0.4282948 +0.1846606 1.907556 0.4282948 +0.2245119 1.907556 0.4282948 +0.2679612 1.907556 0.4282948 +0.3158431 1.907556 0.4282948 +0.3689944 1.907556 0.4282948 +0.4282948 1.907556 0.4282948 +0.494694 1.907556 0.4282948 +0.5692344 1.907556 0.4282948 +0.6530715 1.907556 0.4282948 +0.7474945 1.907556 0.4282948 +0.8539475 1.907556 0.4282948 +0.974052 1.907556 0.4282948 +1.113885 1.907556 0.4282948 +1.27456 1.907556 0.4282948 +1.458117 1.907556 0.4282948 +1.667858 1.907556 0.4282948 +1.907556 1.907556 0.4282948 +2.181521 1.907556 0.4282948 +2.494678 1.907556 0.4282948 +2.852659 1.907556 0.4282948 +3.261896 1.907556 0.4282948 +3.729748 1.907556 0.4282948 +4.264621 1.907556 0.4282948 +4.876131 1.907556 0.4282948 +5.575266 1.907556 0.4282948 +6.374593 1.907556 0.4282948 +0 2.181521 0.4282948 +0 2.181521 0.4282948 +0 2.181521 0.4282948 +0.002268731 2.181521 0.4282948 +0.07076883 2.181521 0.4282948 +0.1119241 2.181521 0.4282948 +0.1475052 2.181521 0.4282948 +0.1846606 2.181521 0.4282948 +0.2245119 2.181521 0.4282948 +0.2679612 2.181521 0.4282948 +0.3158431 2.181521 0.4282948 +0.3689944 2.181521 0.4282948 +0.4282948 2.181521 0.4282948 +0.494694 2.181521 0.4282948 +0.5692344 2.181521 0.4282948 +0.6530715 2.181521 0.4282948 +0.7474945 2.181521 0.4282948 +0.8539475 2.181521 0.4282948 +0.974052 2.181521 0.4282948 +1.113885 2.181521 0.4282948 +1.27456 2.181521 0.4282948 +1.458117 2.181521 0.4282948 +1.667858 2.181521 0.4282948 +1.907556 2.181521 0.4282948 +2.181521 2.181521 0.4282948 +2.494678 2.181521 0.4282948 +2.852659 2.181521 0.4282948 +3.261896 2.181521 0.4282948 +3.729748 2.181521 0.4282948 +4.264621 2.181521 0.4282948 +4.876131 2.181521 0.4282948 +5.575266 2.181521 0.4282948 +6.374593 2.181521 0.4282948 +0 2.494678 0.4282948 +0 2.494678 0.4282948 +0 2.494678 0.4282948 +0.002268731 2.494678 0.4282948 +0.07076883 2.494678 0.4282948 +0.1119241 2.494678 0.4282948 +0.1475052 2.494678 0.4282948 +0.1846606 2.494678 0.4282948 +0.2245119 2.494678 0.4282948 +0.2679612 2.494678 0.4282948 +0.3158431 2.494678 0.4282948 +0.3689944 2.494678 0.4282948 +0.4282948 2.494678 0.4282948 +0.494694 2.494678 0.4282948 +0.5692344 2.494678 0.4282948 +0.6530715 2.494678 0.4282948 +0.7474945 2.494678 0.4282948 +0.8539475 2.494678 0.4282948 +0.974052 2.494678 0.4282948 +1.113885 2.494678 0.4282948 +1.27456 2.494678 0.4282948 +1.458117 2.494678 0.4282948 +1.667858 2.494678 0.4282948 +1.907556 2.494678 0.4282948 +2.181521 2.494678 0.4282948 +2.494678 2.494678 0.4282948 +2.852659 2.494678 0.4282948 +3.261896 2.494678 0.4282948 +3.729748 2.494678 0.4282948 +4.264621 2.494678 0.4282948 +4.876131 2.494678 0.4282948 +5.575266 2.494678 0.4282948 +6.374593 2.494678 0.4282948 +0 2.852659 0.4282948 +0 2.852659 0.4282948 +0 2.852659 0.4282948 +0.002268731 2.852659 0.4282948 +0.07076883 2.852659 0.4282948 +0.1119241 2.852659 0.4282948 +0.1475052 2.852659 0.4282948 +0.1846606 2.852659 0.4282948 +0.2245119 2.852659 0.4282948 +0.2679612 2.852659 0.4282948 +0.3158431 2.852659 0.4282948 +0.3689944 2.852659 0.4282948 +0.4282948 2.852659 0.4282948 +0.494694 2.852659 0.4282948 +0.5692344 2.852659 0.4282948 +0.6530715 2.852659 0.4282948 +0.7474945 2.852659 0.4282948 +0.8539475 2.852659 0.4282948 +0.974052 2.852659 0.4282948 +1.113885 2.852659 0.4282948 +1.27456 2.852659 0.4282948 +1.458117 2.852659 0.4282948 +1.667858 2.852659 0.4282948 +1.907556 2.852659 0.4282948 +2.181521 2.852659 0.4282948 +2.494678 2.852659 0.4282948 +2.852659 2.852659 0.4282948 +3.261896 2.852659 0.4282948 +3.729748 2.852659 0.4282948 +4.264621 2.852659 0.4282948 +4.876131 2.852659 0.4282948 +5.575266 2.852659 0.4282948 +6.374593 2.852659 0.4282948 +0 3.261896 0.4282948 +0 3.261896 0.4282948 +0 3.261896 0.4282948 +0.002268731 3.261896 0.4282948 +0.07076883 3.261896 0.4282948 +0.1119241 3.261896 0.4282948 +0.1475052 3.261896 0.4282948 +0.1846606 3.261896 0.4282948 +0.2245119 3.261896 0.4282948 +0.2679612 3.261896 0.4282948 +0.3158431 3.261896 0.4282948 +0.3689944 3.261896 0.4282948 +0.4282948 3.261896 0.4282948 +0.494694 3.261896 0.4282948 +0.5692344 3.261896 0.4282948 +0.6530715 3.261896 0.4282948 +0.7474945 3.261896 0.4282948 +0.8539475 3.261896 0.4282948 +0.974052 3.261896 0.4282948 +1.113885 3.261896 0.4282948 +1.27456 3.261896 0.4282948 +1.458117 3.261896 0.4282948 +1.667858 3.261896 0.4282948 +1.907556 3.261896 0.4282948 +2.181521 3.261896 0.4282948 +2.494678 3.261896 0.4282948 +2.852659 3.261896 0.4282948 +3.261896 3.261896 0.4282948 +3.729748 3.261896 0.4282948 +4.264621 3.261896 0.4282948 +4.876131 3.261896 0.4282948 +5.575266 3.261896 0.4282948 +6.374593 3.261896 0.4282948 +0 3.729748 0.4282948 +0 3.729748 0.4282948 +0 3.729748 0.4282948 +0.002268731 3.729748 0.4282948 +0.07076883 3.729748 0.4282948 +0.1119241 3.729748 0.4282948 +0.1475052 3.729748 0.4282948 +0.1846606 3.729748 0.4282948 +0.2245119 3.729748 0.4282948 +0.2679612 3.729748 0.4282948 +0.3158431 3.729748 0.4282948 +0.3689944 3.729748 0.4282948 +0.4282948 3.729748 0.4282948 +0.494694 3.729748 0.4282948 +0.5692344 3.729748 0.4282948 +0.6530715 3.729748 0.4282948 +0.7474945 3.729748 0.4282948 +0.8539475 3.729748 0.4282948 +0.974052 3.729748 0.4282948 +1.113885 3.729748 0.4282948 +1.27456 3.729748 0.4282948 +1.458117 3.729748 0.4282948 +1.667858 3.729748 0.4282948 +1.907556 3.729748 0.4282948 +2.181521 3.729748 0.4282948 +2.494678 3.729748 0.4282948 +2.852659 3.729748 0.4282948 +3.261896 3.729748 0.4282948 +3.729748 3.729748 0.4282948 +4.264621 3.729748 0.4282948 +4.876131 3.729748 0.4282948 +5.575266 3.729748 0.4282948 +6.374593 3.729748 0.4282948 +0 4.264621 0.4282948 +0 4.264621 0.4282948 +0 4.264621 0.4282948 +0.002268731 4.264621 0.4282948 +0.07076883 4.264621 0.4282948 +0.1119241 4.264621 0.4282948 +0.1475052 4.264621 0.4282948 +0.1846606 4.264621 0.4282948 +0.2245119 4.264621 0.4282948 +0.2679612 4.264621 0.4282948 +0.3158431 4.264621 0.4282948 +0.3689944 4.264621 0.4282948 +0.4282948 4.264621 0.4282948 +0.494694 4.264621 0.4282948 +0.5692344 4.264621 0.4282948 +0.6530715 4.264621 0.4282948 +0.7474945 4.264621 0.4282948 +0.8539475 4.264621 0.4282948 +0.974052 4.264621 0.4282948 +1.113885 4.264621 0.4282948 +1.27456 4.264621 0.4282948 +1.458117 4.264621 0.4282948 +1.667858 4.264621 0.4282948 +1.907556 4.264621 0.4282948 +2.181521 4.264621 0.4282948 +2.494678 4.264621 0.4282948 +2.852659 4.264621 0.4282948 +3.261896 4.264621 0.4282948 +3.729748 4.264621 0.4282948 +4.264621 4.264621 0.4282948 +4.876131 4.264621 0.4282948 +5.575266 4.264621 0.4282948 +6.374593 4.264621 0.4282948 +0 4.876131 0.4282948 +0 4.876131 0.4282948 +0 4.876131 0.4282948 +0.002268731 4.876131 0.4282948 +0.07076883 4.876131 0.4282948 +0.1119241 4.876131 0.4282948 +0.1475052 4.876131 0.4282948 +0.1846606 4.876131 0.4282948 +0.2245119 4.876131 0.4282948 +0.2679612 4.876131 0.4282948 +0.3158431 4.876131 0.4282948 +0.3689944 4.876131 0.4282948 +0.4282948 4.876131 0.4282948 +0.494694 4.876131 0.4282948 +0.5692344 4.876131 0.4282948 +0.6530715 4.876131 0.4282948 +0.7474945 4.876131 0.4282948 +0.8539475 4.876131 0.4282948 +0.974052 4.876131 0.4282948 +1.113885 4.876131 0.4282948 +1.27456 4.876131 0.4282948 +1.458117 4.876131 0.4282948 +1.667858 4.876131 0.4282948 +1.907556 4.876131 0.4282948 +2.181521 4.876131 0.4282948 +2.494678 4.876131 0.4282948 +2.852659 4.876131 0.4282948 +3.261896 4.876131 0.4282948 +3.729748 4.876131 0.4282948 +4.264621 4.876131 0.4282948 +4.876131 4.876131 0.4282948 +5.575266 4.876131 0.4282948 +6.374593 4.876131 0.4282948 +0 5.575266 0.4282948 +0 5.575266 0.4282948 +0 5.575266 0.4282948 +0.002268731 5.575266 0.4282948 +0.07076883 5.575266 0.4282948 +0.1119241 5.575266 0.4282948 +0.1475052 5.575266 0.4282948 +0.1846606 5.575266 0.4282948 +0.2245119 5.575266 0.4282948 +0.2679612 5.575266 0.4282948 +0.3158431 5.575266 0.4282948 +0.3689944 5.575266 0.4282948 +0.4282948 5.575266 0.4282948 +0.494694 5.575266 0.4282948 +0.5692344 5.575266 0.4282948 +0.6530715 5.575266 0.4282948 +0.7474945 5.575266 0.4282948 +0.8539475 5.575266 0.4282948 +0.974052 5.575266 0.4282948 +1.113885 5.575266 0.4282948 +1.27456 5.575266 0.4282948 +1.458117 5.575266 0.4282948 +1.667858 5.575266 0.4282948 +1.907556 5.575266 0.4282948 +2.181521 5.575266 0.4282948 +2.494678 5.575266 0.4282948 +2.852659 5.575266 0.4282948 +3.261896 5.575266 0.4282948 +3.729748 5.575266 0.4282948 +4.264621 5.575266 0.4282948 +4.876131 5.575266 0.4282948 +5.575266 5.575266 0.4282948 +6.374593 5.575266 0.4282948 +0 6.374593 0.4282948 +0 6.374593 0.4282948 +0 6.374593 0.4282948 +0.002268731 6.374593 0.4282948 +0.07076883 6.374593 0.4282948 +0.1119241 6.374593 0.4282948 +0.1475052 6.374593 0.4282948 +0.1846606 6.374593 0.4282948 +0.2245119 6.374593 0.4282948 +0.2679612 6.374593 0.4282948 +0.3158431 6.374593 0.4282948 +0.3689944 6.374593 0.4282948 +0.4282948 6.374593 0.4282948 +0.494694 6.374593 0.4282948 +0.5692344 6.374593 0.4282948 +0.6530715 6.374593 0.4282948 +0.7474945 6.374593 0.4282948 +0.8539475 6.374593 0.4282948 +0.974052 6.374593 0.4282948 +1.113885 6.374593 0.4282948 +1.27456 6.374593 0.4282948 +1.458117 6.374593 0.4282948 +1.667858 6.374593 0.4282948 +1.907556 6.374593 0.4282948 +2.181521 6.374593 0.4282948 +2.494678 6.374593 0.4282948 +2.852659 6.374593 0.4282948 +3.261896 6.374593 0.4282948 +3.729748 6.374593 0.4282948 +4.264621 6.374593 0.4282948 +4.876131 6.374593 0.4282948 +5.575266 6.374593 0.4282948 +6.374593 6.374593 0.4282948 +0 0 0.494694 +0 0 0.494694 +0 0 0.494694 +0.002268731 0 0.494694 +0.07076883 0 0.494694 +0.1119241 0 0.494694 +0.1475052 0 0.494694 +0.1846606 0 0.494694 +0.2245119 0 0.494694 +0.2679612 0 0.494694 +0.3158431 0 0.494694 +0.3689944 0 0.494694 +0.4282948 0 0.494694 +0.494694 0 0.494694 +0.5692344 0 0.494694 +0.6530715 0 0.494694 +0.7474945 0 0.494694 +0.8539475 0 0.494694 +0.974052 0 0.494694 +1.113885 0 0.494694 +1.27456 0 0.494694 +1.458117 0 0.494694 +1.667858 0 0.494694 +1.907556 0 0.494694 +2.181521 0 0.494694 +2.494678 0 0.494694 +2.852659 0 0.494694 +3.261896 0 0.494694 +3.729748 0 0.494694 +4.264621 0 0.494694 +4.876131 0 0.494694 +5.575266 0 0.494694 +6.374593 0 0.494694 +0 0 0.494694 +0 0 0.494694 +0 0 0.494694 +0.002268731 0 0.494694 +0.07076883 0 0.494694 +0.1119241 0 0.494694 +0.1475052 0 0.494694 +0.1846606 0 0.494694 +0.2245119 0 0.494694 +0.2679612 0 0.494694 +0.3158431 0 0.494694 +0.3689944 0 0.494694 +0.4282948 0 0.494694 +0.494694 0 0.494694 +0.5692344 0 0.494694 +0.6530715 0 0.494694 +0.7474945 0 0.494694 +0.8539475 0 0.494694 +0.974052 0 0.494694 +1.113885 0 0.494694 +1.27456 0 0.494694 +1.458117 0 0.494694 +1.667858 0 0.494694 +1.907556 0 0.494694 +2.181521 0 0.494694 +2.494678 0 0.494694 +2.852659 0 0.494694 +3.261896 0 0.494694 +3.729748 0 0.494694 +4.264621 0 0.494694 +4.876131 0 0.494694 +5.575266 0 0.494694 +6.374593 0 0.494694 +0 0 0.494694 +0 0 0.494694 +0 0 0.494694 +0.002268731 0 0.494694 +0.07076883 0 0.494694 +0.1119241 0 0.494694 +0.1475052 0 0.494694 +0.1846606 0 0.494694 +0.2245119 0 0.494694 +0.2679612 0 0.494694 +0.3158431 0 0.494694 +0.3689944 0 0.494694 +0.4282948 0 0.494694 +0.494694 0 0.494694 +0.5692344 0 0.494694 +0.6530715 0 0.494694 +0.7474945 0 0.494694 +0.8539475 0 0.494694 +0.974052 0 0.494694 +1.113885 0 0.494694 +1.27456 0 0.494694 +1.458117 0 0.494694 +1.667858 0 0.494694 +1.907556 0 0.494694 +2.181521 0 0.494694 +2.494678 0 0.494694 +2.852659 0 0.494694 +3.261896 0 0.494694 +3.729748 0 0.494694 +4.264621 0 0.494694 +4.876131 0 0.494694 +5.575266 0 0.494694 +6.374593 0 0.494694 +0 0.002268731 0.494694 +0 0.002268731 0.494694 +0 0.002268731 0.494694 +0.002268731 0.002268731 0.494694 +0.07076883 0.002268731 0.494694 +0.1119241 0.002268731 0.494694 +0.1475052 0.002268731 0.494694 +0.1846606 0.002268731 0.494694 +0.2245119 0.002268731 0.494694 +0.2679612 0.002268731 0.494694 +0.3158431 0.002268731 0.494694 +0.3689944 0.002268731 0.494694 +0.4282948 0.002268731 0.494694 +0.494694 0.002268731 0.494694 +0.5692344 0.002268731 0.494694 +0.6530715 0.002268731 0.494694 +0.7474945 0.002268731 0.494694 +0.8539475 0.002268731 0.494694 +0.974052 0.002268731 0.494694 +1.113885 0.002268731 0.494694 +1.27456 0.002268731 0.494694 +1.458117 0.002268731 0.494694 +1.667858 0.002268731 0.494694 +1.907556 0.002268731 0.494694 +2.181521 0.002268731 0.494694 +2.494678 0.002268731 0.494694 +2.852659 0.002268731 0.494694 +3.261896 0.002268731 0.494694 +3.729748 0.002268731 0.494694 +4.264621 0.002268731 0.494694 +4.876131 0.002268731 0.494694 +5.575266 0.002268731 0.494694 +6.374593 0.002268731 0.494694 +0 0.07076883 0.494694 +0 0.07076883 0.494694 +0 0.07076883 0.494694 +0.002268731 0.07076883 0.494694 +0.07076883 0.07076883 0.494694 +0.1119241 0.07076883 0.494694 +0.1475052 0.07076883 0.494694 +0.1846606 0.07076883 0.494694 +0.2245119 0.07076883 0.494694 +0.2679612 0.07076883 0.494694 +0.3158431 0.07076883 0.494694 +0.3689944 0.07076883 0.494694 +0.4282948 0.07076883 0.494694 +0.494694 0.07076883 0.494694 +0.5692344 0.07076883 0.494694 +0.6530715 0.07076883 0.494694 +0.7474945 0.07076883 0.494694 +0.8539475 0.07076883 0.494694 +0.974052 0.07076883 0.494694 +1.113885 0.07076883 0.494694 +1.27456 0.07076883 0.494694 +1.458117 0.07076883 0.494694 +1.667858 0.07076883 0.494694 +1.907556 0.07076883 0.494694 +2.181521 0.07076883 0.494694 +2.494678 0.07076883 0.494694 +2.852659 0.07076883 0.494694 +3.261896 0.07076883 0.494694 +3.729748 0.07076883 0.494694 +4.264621 0.07076883 0.494694 +4.876131 0.07076883 0.494694 +5.575266 0.07076883 0.494694 +6.374593 0.07076883 0.494694 +0 0.1119241 0.494694 +0 0.1119241 0.494694 +0 0.1119241 0.494694 +0.002268731 0.1119241 0.494694 +0.07076883 0.1119241 0.494694 +0.1119241 0.1119241 0.494694 +0.1475052 0.1119241 0.494694 +0.1846606 0.1119241 0.494694 +0.2245119 0.1119241 0.494694 +0.2679612 0.1119241 0.494694 +0.3158431 0.1119241 0.494694 +0.3689944 0.1119241 0.494694 +0.4282948 0.1119241 0.494694 +0.494694 0.1119241 0.494694 +0.5692344 0.1119241 0.494694 +0.6530715 0.1119241 0.494694 +0.7474945 0.1119241 0.494694 +0.8539475 0.1119241 0.494694 +0.974052 0.1119241 0.494694 +1.113885 0.1119241 0.494694 +1.27456 0.1119241 0.494694 +1.458117 0.1119241 0.494694 +1.667858 0.1119241 0.494694 +1.907556 0.1119241 0.494694 +2.181521 0.1119241 0.494694 +2.494678 0.1119241 0.494694 +2.852659 0.1119241 0.494694 +3.261896 0.1119241 0.494694 +3.729748 0.1119241 0.494694 +4.264621 0.1119241 0.494694 +4.876131 0.1119241 0.494694 +5.575266 0.1119241 0.494694 +6.374593 0.1119241 0.494694 +0 0.1475052 0.494694 +0 0.1475052 0.494694 +0 0.1475052 0.494694 +0.002268731 0.1475052 0.494694 +0.07076883 0.1475052 0.494694 +0.1119241 0.1475052 0.494694 +0.1475052 0.1475052 0.494694 +0.1846606 0.1475052 0.494694 +0.2245119 0.1475052 0.494694 +0.2679612 0.1475052 0.494694 +0.3158431 0.1475052 0.494694 +0.3689944 0.1475052 0.494694 +0.4282948 0.1475052 0.494694 +0.494694 0.1475052 0.494694 +0.5692344 0.1475052 0.494694 +0.6530715 0.1475052 0.494694 +0.7474945 0.1475052 0.494694 +0.8539475 0.1475052 0.494694 +0.974052 0.1475052 0.494694 +1.113885 0.1475052 0.494694 +1.27456 0.1475052 0.494694 +1.458117 0.1475052 0.494694 +1.667858 0.1475052 0.494694 +1.907556 0.1475052 0.494694 +2.181521 0.1475052 0.494694 +2.494678 0.1475052 0.494694 +2.852659 0.1475052 0.494694 +3.261896 0.1475052 0.494694 +3.729748 0.1475052 0.494694 +4.264621 0.1475052 0.494694 +4.876131 0.1475052 0.494694 +5.575266 0.1475052 0.494694 +6.374593 0.1475052 0.494694 +0 0.1846606 0.494694 +0 0.1846606 0.494694 +0 0.1846606 0.494694 +0.002268731 0.1846606 0.494694 +0.07076883 0.1846606 0.494694 +0.1119241 0.1846606 0.494694 +0.1475052 0.1846606 0.494694 +0.1846606 0.1846606 0.494694 +0.2245119 0.1846606 0.494694 +0.2679612 0.1846606 0.494694 +0.3158431 0.1846606 0.494694 +0.3689944 0.1846606 0.494694 +0.4282948 0.1846606 0.494694 +0.494694 0.1846606 0.494694 +0.5692344 0.1846606 0.494694 +0.6530715 0.1846606 0.494694 +0.7474945 0.1846606 0.494694 +0.8539475 0.1846606 0.494694 +0.974052 0.1846606 0.494694 +1.113885 0.1846606 0.494694 +1.27456 0.1846606 0.494694 +1.458117 0.1846606 0.494694 +1.667858 0.1846606 0.494694 +1.907556 0.1846606 0.494694 +2.181521 0.1846606 0.494694 +2.494678 0.1846606 0.494694 +2.852659 0.1846606 0.494694 +3.261896 0.1846606 0.494694 +3.729748 0.1846606 0.494694 +4.264621 0.1846606 0.494694 +4.876131 0.1846606 0.494694 +5.575266 0.1846606 0.494694 +6.374593 0.1846606 0.494694 +0 0.2245119 0.494694 +0 0.2245119 0.494694 +0 0.2245119 0.494694 +0.002268731 0.2245119 0.494694 +0.07076883 0.2245119 0.494694 +0.1119241 0.2245119 0.494694 +0.1475052 0.2245119 0.494694 +0.1846606 0.2245119 0.494694 +0.2245119 0.2245119 0.494694 +0.2679612 0.2245119 0.494694 +0.3158431 0.2245119 0.494694 +0.3689944 0.2245119 0.494694 +0.4282948 0.2245119 0.494694 +0.494694 0.2245119 0.494694 +0.5692344 0.2245119 0.494694 +0.6530715 0.2245119 0.494694 +0.7474945 0.2245119 0.494694 +0.8539475 0.2245119 0.494694 +0.974052 0.2245119 0.494694 +1.113885 0.2245119 0.494694 +1.27456 0.2245119 0.494694 +1.458117 0.2245119 0.494694 +1.667858 0.2245119 0.494694 +1.907556 0.2245119 0.494694 +2.181521 0.2245119 0.494694 +2.494678 0.2245119 0.494694 +2.852659 0.2245119 0.494694 +3.261896 0.2245119 0.494694 +3.729748 0.2245119 0.494694 +4.264621 0.2245119 0.494694 +4.876131 0.2245119 0.494694 +5.575266 0.2245119 0.494694 +6.374593 0.2245119 0.494694 +0 0.2679612 0.494694 +0 0.2679612 0.494694 +0 0.2679612 0.494694 +0.002268731 0.2679612 0.494694 +0.07076883 0.2679612 0.494694 +0.1119241 0.2679612 0.494694 +0.1475052 0.2679612 0.494694 +0.1846606 0.2679612 0.494694 +0.2245119 0.2679612 0.494694 +0.2679612 0.2679612 0.494694 +0.3158431 0.2679612 0.494694 +0.3689944 0.2679612 0.494694 +0.4282948 0.2679612 0.494694 +0.494694 0.2679612 0.494694 +0.5692344 0.2679612 0.494694 +0.6530715 0.2679612 0.494694 +0.7474945 0.2679612 0.494694 +0.8539475 0.2679612 0.494694 +0.974052 0.2679612 0.494694 +1.113885 0.2679612 0.494694 +1.27456 0.2679612 0.494694 +1.458117 0.2679612 0.494694 +1.667858 0.2679612 0.494694 +1.907556 0.2679612 0.494694 +2.181521 0.2679612 0.494694 +2.494678 0.2679612 0.494694 +2.852659 0.2679612 0.494694 +3.261896 0.2679612 0.494694 +3.729748 0.2679612 0.494694 +4.264621 0.2679612 0.494694 +4.876131 0.2679612 0.494694 +5.575266 0.2679612 0.494694 +6.374593 0.2679612 0.494694 +0 0.3158431 0.494694 +0 0.3158431 0.494694 +0 0.3158431 0.494694 +0.002268731 0.3158431 0.494694 +0.07076883 0.3158431 0.494694 +0.1119241 0.3158431 0.494694 +0.1475052 0.3158431 0.494694 +0.1846606 0.3158431 0.494694 +0.2245119 0.3158431 0.494694 +0.2679612 0.3158431 0.494694 +0.3158431 0.3158431 0.494694 +0.3689944 0.3158431 0.494694 +0.4282948 0.3158431 0.494694 +0.494694 0.3158431 0.494694 +0.5692344 0.3158431 0.494694 +0.6530715 0.3158431 0.494694 +0.7474945 0.3158431 0.494694 +0.8539475 0.3158431 0.494694 +0.974052 0.3158431 0.494694 +1.113885 0.3158431 0.494694 +1.27456 0.3158431 0.494694 +1.458117 0.3158431 0.494694 +1.667858 0.3158431 0.494694 +1.907556 0.3158431 0.494694 +2.181521 0.3158431 0.494694 +2.494678 0.3158431 0.494694 +2.852659 0.3158431 0.494694 +3.261896 0.3158431 0.494694 +3.729748 0.3158431 0.494694 +4.264621 0.3158431 0.494694 +4.876131 0.3158431 0.494694 +5.575266 0.3158431 0.494694 +6.374593 0.3158431 0.494694 +0 0.3689944 0.494694 +0 0.3689944 0.494694 +0 0.3689944 0.494694 +0.002268731 0.3689944 0.494694 +0.07076883 0.3689944 0.494694 +0.1119241 0.3689944 0.494694 +0.1475052 0.3689944 0.494694 +0.1846606 0.3689944 0.494694 +0.2245119 0.3689944 0.494694 +0.2679612 0.3689944 0.494694 +0.3158431 0.3689944 0.494694 +0.3689944 0.3689944 0.494694 +0.4282948 0.3689944 0.494694 +0.494694 0.3689944 0.494694 +0.5692344 0.3689944 0.494694 +0.6530715 0.3689944 0.494694 +0.7474945 0.3689944 0.494694 +0.8539475 0.3689944 0.494694 +0.974052 0.3689944 0.494694 +1.113885 0.3689944 0.494694 +1.27456 0.3689944 0.494694 +1.458117 0.3689944 0.494694 +1.667858 0.3689944 0.494694 +1.907556 0.3689944 0.494694 +2.181521 0.3689944 0.494694 +2.494678 0.3689944 0.494694 +2.852659 0.3689944 0.494694 +3.261896 0.3689944 0.494694 +3.729748 0.3689944 0.494694 +4.264621 0.3689944 0.494694 +4.876131 0.3689944 0.494694 +5.575266 0.3689944 0.494694 +6.374593 0.3689944 0.494694 +0 0.4282948 0.494694 +0 0.4282948 0.494694 +0 0.4282948 0.494694 +0.002268731 0.4282948 0.494694 +0.07076883 0.4282948 0.494694 +0.1119241 0.4282948 0.494694 +0.1475052 0.4282948 0.494694 +0.1846606 0.4282948 0.494694 +0.2245119 0.4282948 0.494694 +0.2679612 0.4282948 0.494694 +0.3158431 0.4282948 0.494694 +0.3689944 0.4282948 0.494694 +0.4282948 0.4282948 0.494694 +0.494694 0.4282948 0.494694 +0.5692344 0.4282948 0.494694 +0.6530715 0.4282948 0.494694 +0.7474945 0.4282948 0.494694 +0.8539475 0.4282948 0.494694 +0.974052 0.4282948 0.494694 +1.113885 0.4282948 0.494694 +1.27456 0.4282948 0.494694 +1.458117 0.4282948 0.494694 +1.667858 0.4282948 0.494694 +1.907556 0.4282948 0.494694 +2.181521 0.4282948 0.494694 +2.494678 0.4282948 0.494694 +2.852659 0.4282948 0.494694 +3.261896 0.4282948 0.494694 +3.729748 0.4282948 0.494694 +4.264621 0.4282948 0.494694 +4.876131 0.4282948 0.494694 +5.575266 0.4282948 0.494694 +6.374593 0.4282948 0.494694 +0 0.494694 0.494694 +0 0.494694 0.494694 +0 0.494694 0.494694 +0.002268731 0.494694 0.494694 +0.07076883 0.494694 0.494694 +0.1119241 0.494694 0.494694 +0.1475052 0.494694 0.494694 +0.1846606 0.494694 0.494694 +0.2245119 0.494694 0.494694 +0.2679612 0.494694 0.494694 +0.3158431 0.494694 0.494694 +0.3689944 0.494694 0.494694 +0.4282948 0.494694 0.494694 +0.494694 0.494694 0.494694 +0.5692344 0.494694 0.494694 +0.6530715 0.494694 0.494694 +0.7474945 0.494694 0.494694 +0.8539475 0.494694 0.494694 +0.974052 0.494694 0.494694 +1.113885 0.494694 0.494694 +1.27456 0.494694 0.494694 +1.458117 0.494694 0.494694 +1.667858 0.494694 0.494694 +1.907556 0.494694 0.494694 +2.181521 0.494694 0.494694 +2.494678 0.494694 0.494694 +2.852659 0.494694 0.494694 +3.261896 0.494694 0.494694 +3.729748 0.494694 0.494694 +4.264621 0.494694 0.494694 +4.876131 0.494694 0.494694 +5.575266 0.494694 0.494694 +6.374593 0.494694 0.494694 +0 0.5692344 0.494694 +0 0.5692344 0.494694 +0 0.5692344 0.494694 +0.002268731 0.5692344 0.494694 +0.07076883 0.5692344 0.494694 +0.1119241 0.5692344 0.494694 +0.1475052 0.5692344 0.494694 +0.1846606 0.5692344 0.494694 +0.2245119 0.5692344 0.494694 +0.2679612 0.5692344 0.494694 +0.3158431 0.5692344 0.494694 +0.3689944 0.5692344 0.494694 +0.4282948 0.5692344 0.494694 +0.494694 0.5692344 0.494694 +0.5692344 0.5692344 0.494694 +0.6530715 0.5692344 0.494694 +0.7474945 0.5692344 0.494694 +0.8539475 0.5692344 0.494694 +0.974052 0.5692344 0.494694 +1.113885 0.5692344 0.494694 +1.27456 0.5692344 0.494694 +1.458117 0.5692344 0.494694 +1.667858 0.5692344 0.494694 +1.907556 0.5692344 0.494694 +2.181521 0.5692344 0.494694 +2.494678 0.5692344 0.494694 +2.852659 0.5692344 0.494694 +3.261896 0.5692344 0.494694 +3.729748 0.5692344 0.494694 +4.264621 0.5692344 0.494694 +4.876131 0.5692344 0.494694 +5.575266 0.5692344 0.494694 +6.374593 0.5692344 0.494694 +0 0.6530715 0.494694 +0 0.6530715 0.494694 +0 0.6530715 0.494694 +0.002268731 0.6530715 0.494694 +0.07076883 0.6530715 0.494694 +0.1119241 0.6530715 0.494694 +0.1475052 0.6530715 0.494694 +0.1846606 0.6530715 0.494694 +0.2245119 0.6530715 0.494694 +0.2679612 0.6530715 0.494694 +0.3158431 0.6530715 0.494694 +0.3689944 0.6530715 0.494694 +0.4282948 0.6530715 0.494694 +0.494694 0.6530715 0.494694 +0.5692344 0.6530715 0.494694 +0.6530715 0.6530715 0.494694 +0.7474945 0.6530715 0.494694 +0.8539475 0.6530715 0.494694 +0.974052 0.6530715 0.494694 +1.113885 0.6530715 0.494694 +1.27456 0.6530715 0.494694 +1.458117 0.6530715 0.494694 +1.667858 0.6530715 0.494694 +1.907556 0.6530715 0.494694 +2.181521 0.6530715 0.494694 +2.494678 0.6530715 0.494694 +2.852659 0.6530715 0.494694 +3.261896 0.6530715 0.494694 +3.729748 0.6530715 0.494694 +4.264621 0.6530715 0.494694 +4.876131 0.6530715 0.494694 +5.575266 0.6530715 0.494694 +6.374593 0.6530715 0.494694 +0 0.7474945 0.494694 +0 0.7474945 0.494694 +0 0.7474945 0.494694 +0.002268731 0.7474945 0.494694 +0.07076883 0.7474945 0.494694 +0.1119241 0.7474945 0.494694 +0.1475052 0.7474945 0.494694 +0.1846606 0.7474945 0.494694 +0.2245119 0.7474945 0.494694 +0.2679612 0.7474945 0.494694 +0.3158431 0.7474945 0.494694 +0.3689944 0.7474945 0.494694 +0.4282948 0.7474945 0.494694 +0.494694 0.7474945 0.494694 +0.5692344 0.7474945 0.494694 +0.6530715 0.7474945 0.494694 +0.7474945 0.7474945 0.494694 +0.8539475 0.7474945 0.494694 +0.974052 0.7474945 0.494694 +1.113885 0.7474945 0.494694 +1.27456 0.7474945 0.494694 +1.458117 0.7474945 0.494694 +1.667858 0.7474945 0.494694 +1.907556 0.7474945 0.494694 +2.181521 0.7474945 0.494694 +2.494678 0.7474945 0.494694 +2.852659 0.7474945 0.494694 +3.261896 0.7474945 0.494694 +3.729748 0.7474945 0.494694 +4.264621 0.7474945 0.494694 +4.876131 0.7474945 0.494694 +5.575266 0.7474945 0.494694 +6.374593 0.7474945 0.494694 +0 0.8539475 0.494694 +0 0.8539475 0.494694 +0 0.8539475 0.494694 +0.002268731 0.8539475 0.494694 +0.07076883 0.8539475 0.494694 +0.1119241 0.8539475 0.494694 +0.1475052 0.8539475 0.494694 +0.1846606 0.8539475 0.494694 +0.2245119 0.8539475 0.494694 +0.2679612 0.8539475 0.494694 +0.3158431 0.8539475 0.494694 +0.3689944 0.8539475 0.494694 +0.4282948 0.8539475 0.494694 +0.494694 0.8539475 0.494694 +0.5692344 0.8539475 0.494694 +0.6530715 0.8539475 0.494694 +0.7474945 0.8539475 0.494694 +0.8539475 0.8539475 0.494694 +0.974052 0.8539475 0.494694 +1.113885 0.8539475 0.494694 +1.27456 0.8539475 0.494694 +1.458117 0.8539475 0.494694 +1.667858 0.8539475 0.494694 +1.907556 0.8539475 0.494694 +2.181521 0.8539475 0.494694 +2.494678 0.8539475 0.494694 +2.852659 0.8539475 0.494694 +3.261896 0.8539475 0.494694 +3.729748 0.8539475 0.494694 +4.264621 0.8539475 0.494694 +4.876131 0.8539475 0.494694 +5.575266 0.8539475 0.494694 +6.374593 0.8539475 0.494694 +0 0.974052 0.494694 +0 0.974052 0.494694 +0 0.974052 0.494694 +0.002268731 0.974052 0.494694 +0.07076883 0.974052 0.494694 +0.1119241 0.974052 0.494694 +0.1475052 0.974052 0.494694 +0.1846606 0.974052 0.494694 +0.2245119 0.974052 0.494694 +0.2679612 0.974052 0.494694 +0.3158431 0.974052 0.494694 +0.3689944 0.974052 0.494694 +0.4282948 0.974052 0.494694 +0.494694 0.974052 0.494694 +0.5692344 0.974052 0.494694 +0.6530715 0.974052 0.494694 +0.7474945 0.974052 0.494694 +0.8539475 0.974052 0.494694 +0.974052 0.974052 0.494694 +1.113885 0.974052 0.494694 +1.27456 0.974052 0.494694 +1.458117 0.974052 0.494694 +1.667858 0.974052 0.494694 +1.907556 0.974052 0.494694 +2.181521 0.974052 0.494694 +2.494678 0.974052 0.494694 +2.852659 0.974052 0.494694 +3.261896 0.974052 0.494694 +3.729748 0.974052 0.494694 +4.264621 0.974052 0.494694 +4.876131 0.974052 0.494694 +5.575266 0.974052 0.494694 +6.374593 0.974052 0.494694 +0 1.113885 0.494694 +0 1.113885 0.494694 +0 1.113885 0.494694 +0.002268731 1.113885 0.494694 +0.07076883 1.113885 0.494694 +0.1119241 1.113885 0.494694 +0.1475052 1.113885 0.494694 +0.1846606 1.113885 0.494694 +0.2245119 1.113885 0.494694 +0.2679612 1.113885 0.494694 +0.3158431 1.113885 0.494694 +0.3689944 1.113885 0.494694 +0.4282948 1.113885 0.494694 +0.494694 1.113885 0.494694 +0.5692344 1.113885 0.494694 +0.6530715 1.113885 0.494694 +0.7474945 1.113885 0.494694 +0.8539475 1.113885 0.494694 +0.974052 1.113885 0.494694 +1.113885 1.113885 0.494694 +1.27456 1.113885 0.494694 +1.458117 1.113885 0.494694 +1.667858 1.113885 0.494694 +1.907556 1.113885 0.494694 +2.181521 1.113885 0.494694 +2.494678 1.113885 0.494694 +2.852659 1.113885 0.494694 +3.261896 1.113885 0.494694 +3.729748 1.113885 0.494694 +4.264621 1.113885 0.494694 +4.876131 1.113885 0.494694 +5.575266 1.113885 0.494694 +6.374593 1.113885 0.494694 +0 1.27456 0.494694 +0 1.27456 0.494694 +0 1.27456 0.494694 +0.002268731 1.27456 0.494694 +0.07076883 1.27456 0.494694 +0.1119241 1.27456 0.494694 +0.1475052 1.27456 0.494694 +0.1846606 1.27456 0.494694 +0.2245119 1.27456 0.494694 +0.2679612 1.27456 0.494694 +0.3158431 1.27456 0.494694 +0.3689944 1.27456 0.494694 +0.4282948 1.27456 0.494694 +0.494694 1.27456 0.494694 +0.5692344 1.27456 0.494694 +0.6530715 1.27456 0.494694 +0.7474945 1.27456 0.494694 +0.8539475 1.27456 0.494694 +0.974052 1.27456 0.494694 +1.113885 1.27456 0.494694 +1.27456 1.27456 0.494694 +1.458117 1.27456 0.494694 +1.667858 1.27456 0.494694 +1.907556 1.27456 0.494694 +2.181521 1.27456 0.494694 +2.494678 1.27456 0.494694 +2.852659 1.27456 0.494694 +3.261896 1.27456 0.494694 +3.729748 1.27456 0.494694 +4.264621 1.27456 0.494694 +4.876131 1.27456 0.494694 +5.575266 1.27456 0.494694 +6.374593 1.27456 0.494694 +0 1.458117 0.494694 +0 1.458117 0.494694 +0 1.458117 0.494694 +0.002268731 1.458117 0.494694 +0.07076883 1.458117 0.494694 +0.1119241 1.458117 0.494694 +0.1475052 1.458117 0.494694 +0.1846606 1.458117 0.494694 +0.2245119 1.458117 0.494694 +0.2679612 1.458117 0.494694 +0.3158431 1.458117 0.494694 +0.3689944 1.458117 0.494694 +0.4282948 1.458117 0.494694 +0.494694 1.458117 0.494694 +0.5692344 1.458117 0.494694 +0.6530715 1.458117 0.494694 +0.7474945 1.458117 0.494694 +0.8539475 1.458117 0.494694 +0.974052 1.458117 0.494694 +1.113885 1.458117 0.494694 +1.27456 1.458117 0.494694 +1.458117 1.458117 0.494694 +1.667858 1.458117 0.494694 +1.907556 1.458117 0.494694 +2.181521 1.458117 0.494694 +2.494678 1.458117 0.494694 +2.852659 1.458117 0.494694 +3.261896 1.458117 0.494694 +3.729748 1.458117 0.494694 +4.264621 1.458117 0.494694 +4.876131 1.458117 0.494694 +5.575266 1.458117 0.494694 +6.374593 1.458117 0.494694 +0 1.667858 0.494694 +0 1.667858 0.494694 +0 1.667858 0.494694 +0.002268731 1.667858 0.494694 +0.07076883 1.667858 0.494694 +0.1119241 1.667858 0.494694 +0.1475052 1.667858 0.494694 +0.1846606 1.667858 0.494694 +0.2245119 1.667858 0.494694 +0.2679612 1.667858 0.494694 +0.3158431 1.667858 0.494694 +0.3689944 1.667858 0.494694 +0.4282948 1.667858 0.494694 +0.494694 1.667858 0.494694 +0.5692344 1.667858 0.494694 +0.6530715 1.667858 0.494694 +0.7474945 1.667858 0.494694 +0.8539475 1.667858 0.494694 +0.974052 1.667858 0.494694 +1.113885 1.667858 0.494694 +1.27456 1.667858 0.494694 +1.458117 1.667858 0.494694 +1.667858 1.667858 0.494694 +1.907556 1.667858 0.494694 +2.181521 1.667858 0.494694 +2.494678 1.667858 0.494694 +2.852659 1.667858 0.494694 +3.261896 1.667858 0.494694 +3.729748 1.667858 0.494694 +4.264621 1.667858 0.494694 +4.876131 1.667858 0.494694 +5.575266 1.667858 0.494694 +6.374593 1.667858 0.494694 +0 1.907556 0.494694 +0 1.907556 0.494694 +0 1.907556 0.494694 +0.002268731 1.907556 0.494694 +0.07076883 1.907556 0.494694 +0.1119241 1.907556 0.494694 +0.1475052 1.907556 0.494694 +0.1846606 1.907556 0.494694 +0.2245119 1.907556 0.494694 +0.2679612 1.907556 0.494694 +0.3158431 1.907556 0.494694 +0.3689944 1.907556 0.494694 +0.4282948 1.907556 0.494694 +0.494694 1.907556 0.494694 +0.5692344 1.907556 0.494694 +0.6530715 1.907556 0.494694 +0.7474945 1.907556 0.494694 +0.8539475 1.907556 0.494694 +0.974052 1.907556 0.494694 +1.113885 1.907556 0.494694 +1.27456 1.907556 0.494694 +1.458117 1.907556 0.494694 +1.667858 1.907556 0.494694 +1.907556 1.907556 0.494694 +2.181521 1.907556 0.494694 +2.494678 1.907556 0.494694 +2.852659 1.907556 0.494694 +3.261896 1.907556 0.494694 +3.729748 1.907556 0.494694 +4.264621 1.907556 0.494694 +4.876131 1.907556 0.494694 +5.575266 1.907556 0.494694 +6.374593 1.907556 0.494694 +0 2.181521 0.494694 +0 2.181521 0.494694 +0 2.181521 0.494694 +0.002268731 2.181521 0.494694 +0.07076883 2.181521 0.494694 +0.1119241 2.181521 0.494694 +0.1475052 2.181521 0.494694 +0.1846606 2.181521 0.494694 +0.2245119 2.181521 0.494694 +0.2679612 2.181521 0.494694 +0.3158431 2.181521 0.494694 +0.3689944 2.181521 0.494694 +0.4282948 2.181521 0.494694 +0.494694 2.181521 0.494694 +0.5692344 2.181521 0.494694 +0.6530715 2.181521 0.494694 +0.7474945 2.181521 0.494694 +0.8539475 2.181521 0.494694 +0.974052 2.181521 0.494694 +1.113885 2.181521 0.494694 +1.27456 2.181521 0.494694 +1.458117 2.181521 0.494694 +1.667858 2.181521 0.494694 +1.907556 2.181521 0.494694 +2.181521 2.181521 0.494694 +2.494678 2.181521 0.494694 +2.852659 2.181521 0.494694 +3.261896 2.181521 0.494694 +3.729748 2.181521 0.494694 +4.264621 2.181521 0.494694 +4.876131 2.181521 0.494694 +5.575266 2.181521 0.494694 +6.374593 2.181521 0.494694 +0 2.494678 0.494694 +0 2.494678 0.494694 +0 2.494678 0.494694 +0.002268731 2.494678 0.494694 +0.07076883 2.494678 0.494694 +0.1119241 2.494678 0.494694 +0.1475052 2.494678 0.494694 +0.1846606 2.494678 0.494694 +0.2245119 2.494678 0.494694 +0.2679612 2.494678 0.494694 +0.3158431 2.494678 0.494694 +0.3689944 2.494678 0.494694 +0.4282948 2.494678 0.494694 +0.494694 2.494678 0.494694 +0.5692344 2.494678 0.494694 +0.6530715 2.494678 0.494694 +0.7474945 2.494678 0.494694 +0.8539475 2.494678 0.494694 +0.974052 2.494678 0.494694 +1.113885 2.494678 0.494694 +1.27456 2.494678 0.494694 +1.458117 2.494678 0.494694 +1.667858 2.494678 0.494694 +1.907556 2.494678 0.494694 +2.181521 2.494678 0.494694 +2.494678 2.494678 0.494694 +2.852659 2.494678 0.494694 +3.261896 2.494678 0.494694 +3.729748 2.494678 0.494694 +4.264621 2.494678 0.494694 +4.876131 2.494678 0.494694 +5.575266 2.494678 0.494694 +6.374593 2.494678 0.494694 +0 2.852659 0.494694 +0 2.852659 0.494694 +0 2.852659 0.494694 +0.002268731 2.852659 0.494694 +0.07076883 2.852659 0.494694 +0.1119241 2.852659 0.494694 +0.1475052 2.852659 0.494694 +0.1846606 2.852659 0.494694 +0.2245119 2.852659 0.494694 +0.2679612 2.852659 0.494694 +0.3158431 2.852659 0.494694 +0.3689944 2.852659 0.494694 +0.4282948 2.852659 0.494694 +0.494694 2.852659 0.494694 +0.5692344 2.852659 0.494694 +0.6530715 2.852659 0.494694 +0.7474945 2.852659 0.494694 +0.8539475 2.852659 0.494694 +0.974052 2.852659 0.494694 +1.113885 2.852659 0.494694 +1.27456 2.852659 0.494694 +1.458117 2.852659 0.494694 +1.667858 2.852659 0.494694 +1.907556 2.852659 0.494694 +2.181521 2.852659 0.494694 +2.494678 2.852659 0.494694 +2.852659 2.852659 0.494694 +3.261896 2.852659 0.494694 +3.729748 2.852659 0.494694 +4.264621 2.852659 0.494694 +4.876131 2.852659 0.494694 +5.575266 2.852659 0.494694 +6.374593 2.852659 0.494694 +0 3.261896 0.494694 +0 3.261896 0.494694 +0 3.261896 0.494694 +0.002268731 3.261896 0.494694 +0.07076883 3.261896 0.494694 +0.1119241 3.261896 0.494694 +0.1475052 3.261896 0.494694 +0.1846606 3.261896 0.494694 +0.2245119 3.261896 0.494694 +0.2679612 3.261896 0.494694 +0.3158431 3.261896 0.494694 +0.3689944 3.261896 0.494694 +0.4282948 3.261896 0.494694 +0.494694 3.261896 0.494694 +0.5692344 3.261896 0.494694 +0.6530715 3.261896 0.494694 +0.7474945 3.261896 0.494694 +0.8539475 3.261896 0.494694 +0.974052 3.261896 0.494694 +1.113885 3.261896 0.494694 +1.27456 3.261896 0.494694 +1.458117 3.261896 0.494694 +1.667858 3.261896 0.494694 +1.907556 3.261896 0.494694 +2.181521 3.261896 0.494694 +2.494678 3.261896 0.494694 +2.852659 3.261896 0.494694 +3.261896 3.261896 0.494694 +3.729748 3.261896 0.494694 +4.264621 3.261896 0.494694 +4.876131 3.261896 0.494694 +5.575266 3.261896 0.494694 +6.374593 3.261896 0.494694 +0 3.729748 0.494694 +0 3.729748 0.494694 +0 3.729748 0.494694 +0.002268731 3.729748 0.494694 +0.07076883 3.729748 0.494694 +0.1119241 3.729748 0.494694 +0.1475052 3.729748 0.494694 +0.1846606 3.729748 0.494694 +0.2245119 3.729748 0.494694 +0.2679612 3.729748 0.494694 +0.3158431 3.729748 0.494694 +0.3689944 3.729748 0.494694 +0.4282948 3.729748 0.494694 +0.494694 3.729748 0.494694 +0.5692344 3.729748 0.494694 +0.6530715 3.729748 0.494694 +0.7474945 3.729748 0.494694 +0.8539475 3.729748 0.494694 +0.974052 3.729748 0.494694 +1.113885 3.729748 0.494694 +1.27456 3.729748 0.494694 +1.458117 3.729748 0.494694 +1.667858 3.729748 0.494694 +1.907556 3.729748 0.494694 +2.181521 3.729748 0.494694 +2.494678 3.729748 0.494694 +2.852659 3.729748 0.494694 +3.261896 3.729748 0.494694 +3.729748 3.729748 0.494694 +4.264621 3.729748 0.494694 +4.876131 3.729748 0.494694 +5.575266 3.729748 0.494694 +6.374593 3.729748 0.494694 +0 4.264621 0.494694 +0 4.264621 0.494694 +0 4.264621 0.494694 +0.002268731 4.264621 0.494694 +0.07076883 4.264621 0.494694 +0.1119241 4.264621 0.494694 +0.1475052 4.264621 0.494694 +0.1846606 4.264621 0.494694 +0.2245119 4.264621 0.494694 +0.2679612 4.264621 0.494694 +0.3158431 4.264621 0.494694 +0.3689944 4.264621 0.494694 +0.4282948 4.264621 0.494694 +0.494694 4.264621 0.494694 +0.5692344 4.264621 0.494694 +0.6530715 4.264621 0.494694 +0.7474945 4.264621 0.494694 +0.8539475 4.264621 0.494694 +0.974052 4.264621 0.494694 +1.113885 4.264621 0.494694 +1.27456 4.264621 0.494694 +1.458117 4.264621 0.494694 +1.667858 4.264621 0.494694 +1.907556 4.264621 0.494694 +2.181521 4.264621 0.494694 +2.494678 4.264621 0.494694 +2.852659 4.264621 0.494694 +3.261896 4.264621 0.494694 +3.729748 4.264621 0.494694 +4.264621 4.264621 0.494694 +4.876131 4.264621 0.494694 +5.575266 4.264621 0.494694 +6.374593 4.264621 0.494694 +0 4.876131 0.494694 +0 4.876131 0.494694 +0 4.876131 0.494694 +0.002268731 4.876131 0.494694 +0.07076883 4.876131 0.494694 +0.1119241 4.876131 0.494694 +0.1475052 4.876131 0.494694 +0.1846606 4.876131 0.494694 +0.2245119 4.876131 0.494694 +0.2679612 4.876131 0.494694 +0.3158431 4.876131 0.494694 +0.3689944 4.876131 0.494694 +0.4282948 4.876131 0.494694 +0.494694 4.876131 0.494694 +0.5692344 4.876131 0.494694 +0.6530715 4.876131 0.494694 +0.7474945 4.876131 0.494694 +0.8539475 4.876131 0.494694 +0.974052 4.876131 0.494694 +1.113885 4.876131 0.494694 +1.27456 4.876131 0.494694 +1.458117 4.876131 0.494694 +1.667858 4.876131 0.494694 +1.907556 4.876131 0.494694 +2.181521 4.876131 0.494694 +2.494678 4.876131 0.494694 +2.852659 4.876131 0.494694 +3.261896 4.876131 0.494694 +3.729748 4.876131 0.494694 +4.264621 4.876131 0.494694 +4.876131 4.876131 0.494694 +5.575266 4.876131 0.494694 +6.374593 4.876131 0.494694 +0 5.575266 0.494694 +0 5.575266 0.494694 +0 5.575266 0.494694 +0.002268731 5.575266 0.494694 +0.07076883 5.575266 0.494694 +0.1119241 5.575266 0.494694 +0.1475052 5.575266 0.494694 +0.1846606 5.575266 0.494694 +0.2245119 5.575266 0.494694 +0.2679612 5.575266 0.494694 +0.3158431 5.575266 0.494694 +0.3689944 5.575266 0.494694 +0.4282948 5.575266 0.494694 +0.494694 5.575266 0.494694 +0.5692344 5.575266 0.494694 +0.6530715 5.575266 0.494694 +0.7474945 5.575266 0.494694 +0.8539475 5.575266 0.494694 +0.974052 5.575266 0.494694 +1.113885 5.575266 0.494694 +1.27456 5.575266 0.494694 +1.458117 5.575266 0.494694 +1.667858 5.575266 0.494694 +1.907556 5.575266 0.494694 +2.181521 5.575266 0.494694 +2.494678 5.575266 0.494694 +2.852659 5.575266 0.494694 +3.261896 5.575266 0.494694 +3.729748 5.575266 0.494694 +4.264621 5.575266 0.494694 +4.876131 5.575266 0.494694 +5.575266 5.575266 0.494694 +6.374593 5.575266 0.494694 +0 6.374593 0.494694 +0 6.374593 0.494694 +0 6.374593 0.494694 +0.002268731 6.374593 0.494694 +0.07076883 6.374593 0.494694 +0.1119241 6.374593 0.494694 +0.1475052 6.374593 0.494694 +0.1846606 6.374593 0.494694 +0.2245119 6.374593 0.494694 +0.2679612 6.374593 0.494694 +0.3158431 6.374593 0.494694 +0.3689944 6.374593 0.494694 +0.4282948 6.374593 0.494694 +0.494694 6.374593 0.494694 +0.5692344 6.374593 0.494694 +0.6530715 6.374593 0.494694 +0.7474945 6.374593 0.494694 +0.8539475 6.374593 0.494694 +0.974052 6.374593 0.494694 +1.113885 6.374593 0.494694 +1.27456 6.374593 0.494694 +1.458117 6.374593 0.494694 +1.667858 6.374593 0.494694 +1.907556 6.374593 0.494694 +2.181521 6.374593 0.494694 +2.494678 6.374593 0.494694 +2.852659 6.374593 0.494694 +3.261896 6.374593 0.494694 +3.729748 6.374593 0.494694 +4.264621 6.374593 0.494694 +4.876131 6.374593 0.494694 +5.575266 6.374593 0.494694 +6.374593 6.374593 0.494694 +0 0 0.5692344 +0 0 0.5692344 +0 0 0.5692344 +0.002268731 0 0.5692344 +0.07076883 0 0.5692344 +0.1119241 0 0.5692344 +0.1475052 0 0.5692344 +0.1846606 0 0.5692344 +0.2245119 0 0.5692344 +0.2679612 0 0.5692344 +0.3158431 0 0.5692344 +0.3689944 0 0.5692344 +0.4282948 0 0.5692344 +0.494694 0 0.5692344 +0.5692344 0 0.5692344 +0.6530715 0 0.5692344 +0.7474945 0 0.5692344 +0.8539475 0 0.5692344 +0.974052 0 0.5692344 +1.113885 0 0.5692344 +1.27456 0 0.5692344 +1.458117 0 0.5692344 +1.667858 0 0.5692344 +1.907556 0 0.5692344 +2.181521 0 0.5692344 +2.494678 0 0.5692344 +2.852659 0 0.5692344 +3.261896 0 0.5692344 +3.729748 0 0.5692344 +4.264621 0 0.5692344 +4.876131 0 0.5692344 +5.575266 0 0.5692344 +6.374593 0 0.5692344 +0 0 0.5692344 +0 0 0.5692344 +0 0 0.5692344 +0.002268731 0 0.5692344 +0.07076883 0 0.5692344 +0.1119241 0 0.5692344 +0.1475052 0 0.5692344 +0.1846606 0 0.5692344 +0.2245119 0 0.5692344 +0.2679612 0 0.5692344 +0.3158431 0 0.5692344 +0.3689944 0 0.5692344 +0.4282948 0 0.5692344 +0.494694 0 0.5692344 +0.5692344 0 0.5692344 +0.6530715 0 0.5692344 +0.7474945 0 0.5692344 +0.8539475 0 0.5692344 +0.974052 0 0.5692344 +1.113885 0 0.5692344 +1.27456 0 0.5692344 +1.458117 0 0.5692344 +1.667858 0 0.5692344 +1.907556 0 0.5692344 +2.181521 0 0.5692344 +2.494678 0 0.5692344 +2.852659 0 0.5692344 +3.261896 0 0.5692344 +3.729748 0 0.5692344 +4.264621 0 0.5692344 +4.876131 0 0.5692344 +5.575266 0 0.5692344 +6.374593 0 0.5692344 +0 0 0.5692344 +0 0 0.5692344 +0 0 0.5692344 +0.002268731 0 0.5692344 +0.07076883 0 0.5692344 +0.1119241 0 0.5692344 +0.1475052 0 0.5692344 +0.1846606 0 0.5692344 +0.2245119 0 0.5692344 +0.2679612 0 0.5692344 +0.3158431 0 0.5692344 +0.3689944 0 0.5692344 +0.4282948 0 0.5692344 +0.494694 0 0.5692344 +0.5692344 0 0.5692344 +0.6530715 0 0.5692344 +0.7474945 0 0.5692344 +0.8539475 0 0.5692344 +0.974052 0 0.5692344 +1.113885 0 0.5692344 +1.27456 0 0.5692344 +1.458117 0 0.5692344 +1.667858 0 0.5692344 +1.907556 0 0.5692344 +2.181521 0 0.5692344 +2.494678 0 0.5692344 +2.852659 0 0.5692344 +3.261896 0 0.5692344 +3.729748 0 0.5692344 +4.264621 0 0.5692344 +4.876131 0 0.5692344 +5.575266 0 0.5692344 +6.374593 0 0.5692344 +0 0.002268731 0.5692344 +0 0.002268731 0.5692344 +0 0.002268731 0.5692344 +0.002268731 0.002268731 0.5692344 +0.07076883 0.002268731 0.5692344 +0.1119241 0.002268731 0.5692344 +0.1475052 0.002268731 0.5692344 +0.1846606 0.002268731 0.5692344 +0.2245119 0.002268731 0.5692344 +0.2679612 0.002268731 0.5692344 +0.3158431 0.002268731 0.5692344 +0.3689944 0.002268731 0.5692344 +0.4282948 0.002268731 0.5692344 +0.494694 0.002268731 0.5692344 +0.5692344 0.002268731 0.5692344 +0.6530715 0.002268731 0.5692344 +0.7474945 0.002268731 0.5692344 +0.8539475 0.002268731 0.5692344 +0.974052 0.002268731 0.5692344 +1.113885 0.002268731 0.5692344 +1.27456 0.002268731 0.5692344 +1.458117 0.002268731 0.5692344 +1.667858 0.002268731 0.5692344 +1.907556 0.002268731 0.5692344 +2.181521 0.002268731 0.5692344 +2.494678 0.002268731 0.5692344 +2.852659 0.002268731 0.5692344 +3.261896 0.002268731 0.5692344 +3.729748 0.002268731 0.5692344 +4.264621 0.002268731 0.5692344 +4.876131 0.002268731 0.5692344 +5.575266 0.002268731 0.5692344 +6.374593 0.002268731 0.5692344 +0 0.07076883 0.5692344 +0 0.07076883 0.5692344 +0 0.07076883 0.5692344 +0.002268731 0.07076883 0.5692344 +0.07076883 0.07076883 0.5692344 +0.1119241 0.07076883 0.5692344 +0.1475052 0.07076883 0.5692344 +0.1846606 0.07076883 0.5692344 +0.2245119 0.07076883 0.5692344 +0.2679612 0.07076883 0.5692344 +0.3158431 0.07076883 0.5692344 +0.3689944 0.07076883 0.5692344 +0.4282948 0.07076883 0.5692344 +0.494694 0.07076883 0.5692344 +0.5692344 0.07076883 0.5692344 +0.6530715 0.07076883 0.5692344 +0.7474945 0.07076883 0.5692344 +0.8539475 0.07076883 0.5692344 +0.974052 0.07076883 0.5692344 +1.113885 0.07076883 0.5692344 +1.27456 0.07076883 0.5692344 +1.458117 0.07076883 0.5692344 +1.667858 0.07076883 0.5692344 +1.907556 0.07076883 0.5692344 +2.181521 0.07076883 0.5692344 +2.494678 0.07076883 0.5692344 +2.852659 0.07076883 0.5692344 +3.261896 0.07076883 0.5692344 +3.729748 0.07076883 0.5692344 +4.264621 0.07076883 0.5692344 +4.876131 0.07076883 0.5692344 +5.575266 0.07076883 0.5692344 +6.374593 0.07076883 0.5692344 +0 0.1119241 0.5692344 +0 0.1119241 0.5692344 +0 0.1119241 0.5692344 +0.002268731 0.1119241 0.5692344 +0.07076883 0.1119241 0.5692344 +0.1119241 0.1119241 0.5692344 +0.1475052 0.1119241 0.5692344 +0.1846606 0.1119241 0.5692344 +0.2245119 0.1119241 0.5692344 +0.2679612 0.1119241 0.5692344 +0.3158431 0.1119241 0.5692344 +0.3689944 0.1119241 0.5692344 +0.4282948 0.1119241 0.5692344 +0.494694 0.1119241 0.5692344 +0.5692344 0.1119241 0.5692344 +0.6530715 0.1119241 0.5692344 +0.7474945 0.1119241 0.5692344 +0.8539475 0.1119241 0.5692344 +0.974052 0.1119241 0.5692344 +1.113885 0.1119241 0.5692344 +1.27456 0.1119241 0.5692344 +1.458117 0.1119241 0.5692344 +1.667858 0.1119241 0.5692344 +1.907556 0.1119241 0.5692344 +2.181521 0.1119241 0.5692344 +2.494678 0.1119241 0.5692344 +2.852659 0.1119241 0.5692344 +3.261896 0.1119241 0.5692344 +3.729748 0.1119241 0.5692344 +4.264621 0.1119241 0.5692344 +4.876131 0.1119241 0.5692344 +5.575266 0.1119241 0.5692344 +6.374593 0.1119241 0.5692344 +0 0.1475052 0.5692344 +0 0.1475052 0.5692344 +0 0.1475052 0.5692344 +0.002268731 0.1475052 0.5692344 +0.07076883 0.1475052 0.5692344 +0.1119241 0.1475052 0.5692344 +0.1475052 0.1475052 0.5692344 +0.1846606 0.1475052 0.5692344 +0.2245119 0.1475052 0.5692344 +0.2679612 0.1475052 0.5692344 +0.3158431 0.1475052 0.5692344 +0.3689944 0.1475052 0.5692344 +0.4282948 0.1475052 0.5692344 +0.494694 0.1475052 0.5692344 +0.5692344 0.1475052 0.5692344 +0.6530715 0.1475052 0.5692344 +0.7474945 0.1475052 0.5692344 +0.8539475 0.1475052 0.5692344 +0.974052 0.1475052 0.5692344 +1.113885 0.1475052 0.5692344 +1.27456 0.1475052 0.5692344 +1.458117 0.1475052 0.5692344 +1.667858 0.1475052 0.5692344 +1.907556 0.1475052 0.5692344 +2.181521 0.1475052 0.5692344 +2.494678 0.1475052 0.5692344 +2.852659 0.1475052 0.5692344 +3.261896 0.1475052 0.5692344 +3.729748 0.1475052 0.5692344 +4.264621 0.1475052 0.5692344 +4.876131 0.1475052 0.5692344 +5.575266 0.1475052 0.5692344 +6.374593 0.1475052 0.5692344 +0 0.1846606 0.5692344 +0 0.1846606 0.5692344 +0 0.1846606 0.5692344 +0.002268731 0.1846606 0.5692344 +0.07076883 0.1846606 0.5692344 +0.1119241 0.1846606 0.5692344 +0.1475052 0.1846606 0.5692344 +0.1846606 0.1846606 0.5692344 +0.2245119 0.1846606 0.5692344 +0.2679612 0.1846606 0.5692344 +0.3158431 0.1846606 0.5692344 +0.3689944 0.1846606 0.5692344 +0.4282948 0.1846606 0.5692344 +0.494694 0.1846606 0.5692344 +0.5692344 0.1846606 0.5692344 +0.6530715 0.1846606 0.5692344 +0.7474945 0.1846606 0.5692344 +0.8539475 0.1846606 0.5692344 +0.974052 0.1846606 0.5692344 +1.113885 0.1846606 0.5692344 +1.27456 0.1846606 0.5692344 +1.458117 0.1846606 0.5692344 +1.667858 0.1846606 0.5692344 +1.907556 0.1846606 0.5692344 +2.181521 0.1846606 0.5692344 +2.494678 0.1846606 0.5692344 +2.852659 0.1846606 0.5692344 +3.261896 0.1846606 0.5692344 +3.729748 0.1846606 0.5692344 +4.264621 0.1846606 0.5692344 +4.876131 0.1846606 0.5692344 +5.575266 0.1846606 0.5692344 +6.374593 0.1846606 0.5692344 +0 0.2245119 0.5692344 +0 0.2245119 0.5692344 +0 0.2245119 0.5692344 +0.002268731 0.2245119 0.5692344 +0.07076883 0.2245119 0.5692344 +0.1119241 0.2245119 0.5692344 +0.1475052 0.2245119 0.5692344 +0.1846606 0.2245119 0.5692344 +0.2245119 0.2245119 0.5692344 +0.2679612 0.2245119 0.5692344 +0.3158431 0.2245119 0.5692344 +0.3689944 0.2245119 0.5692344 +0.4282948 0.2245119 0.5692344 +0.494694 0.2245119 0.5692344 +0.5692344 0.2245119 0.5692344 +0.6530715 0.2245119 0.5692344 +0.7474945 0.2245119 0.5692344 +0.8539475 0.2245119 0.5692344 +0.974052 0.2245119 0.5692344 +1.113885 0.2245119 0.5692344 +1.27456 0.2245119 0.5692344 +1.458117 0.2245119 0.5692344 +1.667858 0.2245119 0.5692344 +1.907556 0.2245119 0.5692344 +2.181521 0.2245119 0.5692344 +2.494678 0.2245119 0.5692344 +2.852659 0.2245119 0.5692344 +3.261896 0.2245119 0.5692344 +3.729748 0.2245119 0.5692344 +4.264621 0.2245119 0.5692344 +4.876131 0.2245119 0.5692344 +5.575266 0.2245119 0.5692344 +6.374593 0.2245119 0.5692344 +0 0.2679612 0.5692344 +0 0.2679612 0.5692344 +0 0.2679612 0.5692344 +0.002268731 0.2679612 0.5692344 +0.07076883 0.2679612 0.5692344 +0.1119241 0.2679612 0.5692344 +0.1475052 0.2679612 0.5692344 +0.1846606 0.2679612 0.5692344 +0.2245119 0.2679612 0.5692344 +0.2679612 0.2679612 0.5692344 +0.3158431 0.2679612 0.5692344 +0.3689944 0.2679612 0.5692344 +0.4282948 0.2679612 0.5692344 +0.494694 0.2679612 0.5692344 +0.5692344 0.2679612 0.5692344 +0.6530715 0.2679612 0.5692344 +0.7474945 0.2679612 0.5692344 +0.8539475 0.2679612 0.5692344 +0.974052 0.2679612 0.5692344 +1.113885 0.2679612 0.5692344 +1.27456 0.2679612 0.5692344 +1.458117 0.2679612 0.5692344 +1.667858 0.2679612 0.5692344 +1.907556 0.2679612 0.5692344 +2.181521 0.2679612 0.5692344 +2.494678 0.2679612 0.5692344 +2.852659 0.2679612 0.5692344 +3.261896 0.2679612 0.5692344 +3.729748 0.2679612 0.5692344 +4.264621 0.2679612 0.5692344 +4.876131 0.2679612 0.5692344 +5.575266 0.2679612 0.5692344 +6.374593 0.2679612 0.5692344 +0 0.3158431 0.5692344 +0 0.3158431 0.5692344 +0 0.3158431 0.5692344 +0.002268731 0.3158431 0.5692344 +0.07076883 0.3158431 0.5692344 +0.1119241 0.3158431 0.5692344 +0.1475052 0.3158431 0.5692344 +0.1846606 0.3158431 0.5692344 +0.2245119 0.3158431 0.5692344 +0.2679612 0.3158431 0.5692344 +0.3158431 0.3158431 0.5692344 +0.3689944 0.3158431 0.5692344 +0.4282948 0.3158431 0.5692344 +0.494694 0.3158431 0.5692344 +0.5692344 0.3158431 0.5692344 +0.6530715 0.3158431 0.5692344 +0.7474945 0.3158431 0.5692344 +0.8539475 0.3158431 0.5692344 +0.974052 0.3158431 0.5692344 +1.113885 0.3158431 0.5692344 +1.27456 0.3158431 0.5692344 +1.458117 0.3158431 0.5692344 +1.667858 0.3158431 0.5692344 +1.907556 0.3158431 0.5692344 +2.181521 0.3158431 0.5692344 +2.494678 0.3158431 0.5692344 +2.852659 0.3158431 0.5692344 +3.261896 0.3158431 0.5692344 +3.729748 0.3158431 0.5692344 +4.264621 0.3158431 0.5692344 +4.876131 0.3158431 0.5692344 +5.575266 0.3158431 0.5692344 +6.374593 0.3158431 0.5692344 +0 0.3689944 0.5692344 +0 0.3689944 0.5692344 +0 0.3689944 0.5692344 +0.002268731 0.3689944 0.5692344 +0.07076883 0.3689944 0.5692344 +0.1119241 0.3689944 0.5692344 +0.1475052 0.3689944 0.5692344 +0.1846606 0.3689944 0.5692344 +0.2245119 0.3689944 0.5692344 +0.2679612 0.3689944 0.5692344 +0.3158431 0.3689944 0.5692344 +0.3689944 0.3689944 0.5692344 +0.4282948 0.3689944 0.5692344 +0.494694 0.3689944 0.5692344 +0.5692344 0.3689944 0.5692344 +0.6530715 0.3689944 0.5692344 +0.7474945 0.3689944 0.5692344 +0.8539475 0.3689944 0.5692344 +0.974052 0.3689944 0.5692344 +1.113885 0.3689944 0.5692344 +1.27456 0.3689944 0.5692344 +1.458117 0.3689944 0.5692344 +1.667858 0.3689944 0.5692344 +1.907556 0.3689944 0.5692344 +2.181521 0.3689944 0.5692344 +2.494678 0.3689944 0.5692344 +2.852659 0.3689944 0.5692344 +3.261896 0.3689944 0.5692344 +3.729748 0.3689944 0.5692344 +4.264621 0.3689944 0.5692344 +4.876131 0.3689944 0.5692344 +5.575266 0.3689944 0.5692344 +6.374593 0.3689944 0.5692344 +0 0.4282948 0.5692344 +0 0.4282948 0.5692344 +0 0.4282948 0.5692344 +0.002268731 0.4282948 0.5692344 +0.07076883 0.4282948 0.5692344 +0.1119241 0.4282948 0.5692344 +0.1475052 0.4282948 0.5692344 +0.1846606 0.4282948 0.5692344 +0.2245119 0.4282948 0.5692344 +0.2679612 0.4282948 0.5692344 +0.3158431 0.4282948 0.5692344 +0.3689944 0.4282948 0.5692344 +0.4282948 0.4282948 0.5692344 +0.494694 0.4282948 0.5692344 +0.5692344 0.4282948 0.5692344 +0.6530715 0.4282948 0.5692344 +0.7474945 0.4282948 0.5692344 +0.8539475 0.4282948 0.5692344 +0.974052 0.4282948 0.5692344 +1.113885 0.4282948 0.5692344 +1.27456 0.4282948 0.5692344 +1.458117 0.4282948 0.5692344 +1.667858 0.4282948 0.5692344 +1.907556 0.4282948 0.5692344 +2.181521 0.4282948 0.5692344 +2.494678 0.4282948 0.5692344 +2.852659 0.4282948 0.5692344 +3.261896 0.4282948 0.5692344 +3.729748 0.4282948 0.5692344 +4.264621 0.4282948 0.5692344 +4.876131 0.4282948 0.5692344 +5.575266 0.4282948 0.5692344 +6.374593 0.4282948 0.5692344 +0 0.494694 0.5692344 +0 0.494694 0.5692344 +0 0.494694 0.5692344 +0.002268731 0.494694 0.5692344 +0.07076883 0.494694 0.5692344 +0.1119241 0.494694 0.5692344 +0.1475052 0.494694 0.5692344 +0.1846606 0.494694 0.5692344 +0.2245119 0.494694 0.5692344 +0.2679612 0.494694 0.5692344 +0.3158431 0.494694 0.5692344 +0.3689944 0.494694 0.5692344 +0.4282948 0.494694 0.5692344 +0.494694 0.494694 0.5692344 +0.5692344 0.494694 0.5692344 +0.6530715 0.494694 0.5692344 +0.7474945 0.494694 0.5692344 +0.8539475 0.494694 0.5692344 +0.974052 0.494694 0.5692344 +1.113885 0.494694 0.5692344 +1.27456 0.494694 0.5692344 +1.458117 0.494694 0.5692344 +1.667858 0.494694 0.5692344 +1.907556 0.494694 0.5692344 +2.181521 0.494694 0.5692344 +2.494678 0.494694 0.5692344 +2.852659 0.494694 0.5692344 +3.261896 0.494694 0.5692344 +3.729748 0.494694 0.5692344 +4.264621 0.494694 0.5692344 +4.876131 0.494694 0.5692344 +5.575266 0.494694 0.5692344 +6.374593 0.494694 0.5692344 +0 0.5692344 0.5692344 +0 0.5692344 0.5692344 +0 0.5692344 0.5692344 +0.002268731 0.5692344 0.5692344 +0.07076883 0.5692344 0.5692344 +0.1119241 0.5692344 0.5692344 +0.1475052 0.5692344 0.5692344 +0.1846606 0.5692344 0.5692344 +0.2245119 0.5692344 0.5692344 +0.2679612 0.5692344 0.5692344 +0.3158431 0.5692344 0.5692344 +0.3689944 0.5692344 0.5692344 +0.4282948 0.5692344 0.5692344 +0.494694 0.5692344 0.5692344 +0.5692344 0.5692344 0.5692344 +0.6530715 0.5692344 0.5692344 +0.7474945 0.5692344 0.5692344 +0.8539475 0.5692344 0.5692344 +0.974052 0.5692344 0.5692344 +1.113885 0.5692344 0.5692344 +1.27456 0.5692344 0.5692344 +1.458117 0.5692344 0.5692344 +1.667858 0.5692344 0.5692344 +1.907556 0.5692344 0.5692344 +2.181521 0.5692344 0.5692344 +2.494678 0.5692344 0.5692344 +2.852659 0.5692344 0.5692344 +3.261896 0.5692344 0.5692344 +3.729748 0.5692344 0.5692344 +4.264621 0.5692344 0.5692344 +4.876131 0.5692344 0.5692344 +5.575266 0.5692344 0.5692344 +6.374593 0.5692344 0.5692344 +0 0.6530715 0.5692344 +0 0.6530715 0.5692344 +0 0.6530715 0.5692344 +0.002268731 0.6530715 0.5692344 +0.07076883 0.6530715 0.5692344 +0.1119241 0.6530715 0.5692344 +0.1475052 0.6530715 0.5692344 +0.1846606 0.6530715 0.5692344 +0.2245119 0.6530715 0.5692344 +0.2679612 0.6530715 0.5692344 +0.3158431 0.6530715 0.5692344 +0.3689944 0.6530715 0.5692344 +0.4282948 0.6530715 0.5692344 +0.494694 0.6530715 0.5692344 +0.5692344 0.6530715 0.5692344 +0.6530715 0.6530715 0.5692344 +0.7474945 0.6530715 0.5692344 +0.8539475 0.6530715 0.5692344 +0.974052 0.6530715 0.5692344 +1.113885 0.6530715 0.5692344 +1.27456 0.6530715 0.5692344 +1.458117 0.6530715 0.5692344 +1.667858 0.6530715 0.5692344 +1.907556 0.6530715 0.5692344 +2.181521 0.6530715 0.5692344 +2.494678 0.6530715 0.5692344 +2.852659 0.6530715 0.5692344 +3.261896 0.6530715 0.5692344 +3.729748 0.6530715 0.5692344 +4.264621 0.6530715 0.5692344 +4.876131 0.6530715 0.5692344 +5.575266 0.6530715 0.5692344 +6.374593 0.6530715 0.5692344 +0 0.7474945 0.5692344 +0 0.7474945 0.5692344 +0 0.7474945 0.5692344 +0.002268731 0.7474945 0.5692344 +0.07076883 0.7474945 0.5692344 +0.1119241 0.7474945 0.5692344 +0.1475052 0.7474945 0.5692344 +0.1846606 0.7474945 0.5692344 +0.2245119 0.7474945 0.5692344 +0.2679612 0.7474945 0.5692344 +0.3158431 0.7474945 0.5692344 +0.3689944 0.7474945 0.5692344 +0.4282948 0.7474945 0.5692344 +0.494694 0.7474945 0.5692344 +0.5692344 0.7474945 0.5692344 +0.6530715 0.7474945 0.5692344 +0.7474945 0.7474945 0.5692344 +0.8539475 0.7474945 0.5692344 +0.974052 0.7474945 0.5692344 +1.113885 0.7474945 0.5692344 +1.27456 0.7474945 0.5692344 +1.458117 0.7474945 0.5692344 +1.667858 0.7474945 0.5692344 +1.907556 0.7474945 0.5692344 +2.181521 0.7474945 0.5692344 +2.494678 0.7474945 0.5692344 +2.852659 0.7474945 0.5692344 +3.261896 0.7474945 0.5692344 +3.729748 0.7474945 0.5692344 +4.264621 0.7474945 0.5692344 +4.876131 0.7474945 0.5692344 +5.575266 0.7474945 0.5692344 +6.374593 0.7474945 0.5692344 +0 0.8539475 0.5692344 +0 0.8539475 0.5692344 +0 0.8539475 0.5692344 +0.002268731 0.8539475 0.5692344 +0.07076883 0.8539475 0.5692344 +0.1119241 0.8539475 0.5692344 +0.1475052 0.8539475 0.5692344 +0.1846606 0.8539475 0.5692344 +0.2245119 0.8539475 0.5692344 +0.2679612 0.8539475 0.5692344 +0.3158431 0.8539475 0.5692344 +0.3689944 0.8539475 0.5692344 +0.4282948 0.8539475 0.5692344 +0.494694 0.8539475 0.5692344 +0.5692344 0.8539475 0.5692344 +0.6530715 0.8539475 0.5692344 +0.7474945 0.8539475 0.5692344 +0.8539475 0.8539475 0.5692344 +0.974052 0.8539475 0.5692344 +1.113885 0.8539475 0.5692344 +1.27456 0.8539475 0.5692344 +1.458117 0.8539475 0.5692344 +1.667858 0.8539475 0.5692344 +1.907556 0.8539475 0.5692344 +2.181521 0.8539475 0.5692344 +2.494678 0.8539475 0.5692344 +2.852659 0.8539475 0.5692344 +3.261896 0.8539475 0.5692344 +3.729748 0.8539475 0.5692344 +4.264621 0.8539475 0.5692344 +4.876131 0.8539475 0.5692344 +5.575266 0.8539475 0.5692344 +6.374593 0.8539475 0.5692344 +0 0.974052 0.5692344 +0 0.974052 0.5692344 +0 0.974052 0.5692344 +0.002268731 0.974052 0.5692344 +0.07076883 0.974052 0.5692344 +0.1119241 0.974052 0.5692344 +0.1475052 0.974052 0.5692344 +0.1846606 0.974052 0.5692344 +0.2245119 0.974052 0.5692344 +0.2679612 0.974052 0.5692344 +0.3158431 0.974052 0.5692344 +0.3689944 0.974052 0.5692344 +0.4282948 0.974052 0.5692344 +0.494694 0.974052 0.5692344 +0.5692344 0.974052 0.5692344 +0.6530715 0.974052 0.5692344 +0.7474945 0.974052 0.5692344 +0.8539475 0.974052 0.5692344 +0.974052 0.974052 0.5692344 +1.113885 0.974052 0.5692344 +1.27456 0.974052 0.5692344 +1.458117 0.974052 0.5692344 +1.667858 0.974052 0.5692344 +1.907556 0.974052 0.5692344 +2.181521 0.974052 0.5692344 +2.494678 0.974052 0.5692344 +2.852659 0.974052 0.5692344 +3.261896 0.974052 0.5692344 +3.729748 0.974052 0.5692344 +4.264621 0.974052 0.5692344 +4.876131 0.974052 0.5692344 +5.575266 0.974052 0.5692344 +6.374593 0.974052 0.5692344 +0 1.113885 0.5692344 +0 1.113885 0.5692344 +0 1.113885 0.5692344 +0.002268731 1.113885 0.5692344 +0.07076883 1.113885 0.5692344 +0.1119241 1.113885 0.5692344 +0.1475052 1.113885 0.5692344 +0.1846606 1.113885 0.5692344 +0.2245119 1.113885 0.5692344 +0.2679612 1.113885 0.5692344 +0.3158431 1.113885 0.5692344 +0.3689944 1.113885 0.5692344 +0.4282948 1.113885 0.5692344 +0.494694 1.113885 0.5692344 +0.5692344 1.113885 0.5692344 +0.6530715 1.113885 0.5692344 +0.7474945 1.113885 0.5692344 +0.8539475 1.113885 0.5692344 +0.974052 1.113885 0.5692344 +1.113885 1.113885 0.5692344 +1.27456 1.113885 0.5692344 +1.458117 1.113885 0.5692344 +1.667858 1.113885 0.5692344 +1.907556 1.113885 0.5692344 +2.181521 1.113885 0.5692344 +2.494678 1.113885 0.5692344 +2.852659 1.113885 0.5692344 +3.261896 1.113885 0.5692344 +3.729748 1.113885 0.5692344 +4.264621 1.113885 0.5692344 +4.876131 1.113885 0.5692344 +5.575266 1.113885 0.5692344 +6.374593 1.113885 0.5692344 +0 1.27456 0.5692344 +0 1.27456 0.5692344 +0 1.27456 0.5692344 +0.002268731 1.27456 0.5692344 +0.07076883 1.27456 0.5692344 +0.1119241 1.27456 0.5692344 +0.1475052 1.27456 0.5692344 +0.1846606 1.27456 0.5692344 +0.2245119 1.27456 0.5692344 +0.2679612 1.27456 0.5692344 +0.3158431 1.27456 0.5692344 +0.3689944 1.27456 0.5692344 +0.4282948 1.27456 0.5692344 +0.494694 1.27456 0.5692344 +0.5692344 1.27456 0.5692344 +0.6530715 1.27456 0.5692344 +0.7474945 1.27456 0.5692344 +0.8539475 1.27456 0.5692344 +0.974052 1.27456 0.5692344 +1.113885 1.27456 0.5692344 +1.27456 1.27456 0.5692344 +1.458117 1.27456 0.5692344 +1.667858 1.27456 0.5692344 +1.907556 1.27456 0.5692344 +2.181521 1.27456 0.5692344 +2.494678 1.27456 0.5692344 +2.852659 1.27456 0.5692344 +3.261896 1.27456 0.5692344 +3.729748 1.27456 0.5692344 +4.264621 1.27456 0.5692344 +4.876131 1.27456 0.5692344 +5.575266 1.27456 0.5692344 +6.374593 1.27456 0.5692344 +0 1.458117 0.5692344 +0 1.458117 0.5692344 +0 1.458117 0.5692344 +0.002268731 1.458117 0.5692344 +0.07076883 1.458117 0.5692344 +0.1119241 1.458117 0.5692344 +0.1475052 1.458117 0.5692344 +0.1846606 1.458117 0.5692344 +0.2245119 1.458117 0.5692344 +0.2679612 1.458117 0.5692344 +0.3158431 1.458117 0.5692344 +0.3689944 1.458117 0.5692344 +0.4282948 1.458117 0.5692344 +0.494694 1.458117 0.5692344 +0.5692344 1.458117 0.5692344 +0.6530715 1.458117 0.5692344 +0.7474945 1.458117 0.5692344 +0.8539475 1.458117 0.5692344 +0.974052 1.458117 0.5692344 +1.113885 1.458117 0.5692344 +1.27456 1.458117 0.5692344 +1.458117 1.458117 0.5692344 +1.667858 1.458117 0.5692344 +1.907556 1.458117 0.5692344 +2.181521 1.458117 0.5692344 +2.494678 1.458117 0.5692344 +2.852659 1.458117 0.5692344 +3.261896 1.458117 0.5692344 +3.729748 1.458117 0.5692344 +4.264621 1.458117 0.5692344 +4.876131 1.458117 0.5692344 +5.575266 1.458117 0.5692344 +6.374593 1.458117 0.5692344 +0 1.667858 0.5692344 +0 1.667858 0.5692344 +0 1.667858 0.5692344 +0.002268731 1.667858 0.5692344 +0.07076883 1.667858 0.5692344 +0.1119241 1.667858 0.5692344 +0.1475052 1.667858 0.5692344 +0.1846606 1.667858 0.5692344 +0.2245119 1.667858 0.5692344 +0.2679612 1.667858 0.5692344 +0.3158431 1.667858 0.5692344 +0.3689944 1.667858 0.5692344 +0.4282948 1.667858 0.5692344 +0.494694 1.667858 0.5692344 +0.5692344 1.667858 0.5692344 +0.6530715 1.667858 0.5692344 +0.7474945 1.667858 0.5692344 +0.8539475 1.667858 0.5692344 +0.974052 1.667858 0.5692344 +1.113885 1.667858 0.5692344 +1.27456 1.667858 0.5692344 +1.458117 1.667858 0.5692344 +1.667858 1.667858 0.5692344 +1.907556 1.667858 0.5692344 +2.181521 1.667858 0.5692344 +2.494678 1.667858 0.5692344 +2.852659 1.667858 0.5692344 +3.261896 1.667858 0.5692344 +3.729748 1.667858 0.5692344 +4.264621 1.667858 0.5692344 +4.876131 1.667858 0.5692344 +5.575266 1.667858 0.5692344 +6.374593 1.667858 0.5692344 +0 1.907556 0.5692344 +0 1.907556 0.5692344 +0 1.907556 0.5692344 +0.002268731 1.907556 0.5692344 +0.07076883 1.907556 0.5692344 +0.1119241 1.907556 0.5692344 +0.1475052 1.907556 0.5692344 +0.1846606 1.907556 0.5692344 +0.2245119 1.907556 0.5692344 +0.2679612 1.907556 0.5692344 +0.3158431 1.907556 0.5692344 +0.3689944 1.907556 0.5692344 +0.4282948 1.907556 0.5692344 +0.494694 1.907556 0.5692344 +0.5692344 1.907556 0.5692344 +0.6530715 1.907556 0.5692344 +0.7474945 1.907556 0.5692344 +0.8539475 1.907556 0.5692344 +0.974052 1.907556 0.5692344 +1.113885 1.907556 0.5692344 +1.27456 1.907556 0.5692344 +1.458117 1.907556 0.5692344 +1.667858 1.907556 0.5692344 +1.907556 1.907556 0.5692344 +2.181521 1.907556 0.5692344 +2.494678 1.907556 0.5692344 +2.852659 1.907556 0.5692344 +3.261896 1.907556 0.5692344 +3.729748 1.907556 0.5692344 +4.264621 1.907556 0.5692344 +4.876131 1.907556 0.5692344 +5.575266 1.907556 0.5692344 +6.374593 1.907556 0.5692344 +0 2.181521 0.5692344 +0 2.181521 0.5692344 +0 2.181521 0.5692344 +0.002268731 2.181521 0.5692344 +0.07076883 2.181521 0.5692344 +0.1119241 2.181521 0.5692344 +0.1475052 2.181521 0.5692344 +0.1846606 2.181521 0.5692344 +0.2245119 2.181521 0.5692344 +0.2679612 2.181521 0.5692344 +0.3158431 2.181521 0.5692344 +0.3689944 2.181521 0.5692344 +0.4282948 2.181521 0.5692344 +0.494694 2.181521 0.5692344 +0.5692344 2.181521 0.5692344 +0.6530715 2.181521 0.5692344 +0.7474945 2.181521 0.5692344 +0.8539475 2.181521 0.5692344 +0.974052 2.181521 0.5692344 +1.113885 2.181521 0.5692344 +1.27456 2.181521 0.5692344 +1.458117 2.181521 0.5692344 +1.667858 2.181521 0.5692344 +1.907556 2.181521 0.5692344 +2.181521 2.181521 0.5692344 +2.494678 2.181521 0.5692344 +2.852659 2.181521 0.5692344 +3.261896 2.181521 0.5692344 +3.729748 2.181521 0.5692344 +4.264621 2.181521 0.5692344 +4.876131 2.181521 0.5692344 +5.575266 2.181521 0.5692344 +6.374593 2.181521 0.5692344 +0 2.494678 0.5692344 +0 2.494678 0.5692344 +0 2.494678 0.5692344 +0.002268731 2.494678 0.5692344 +0.07076883 2.494678 0.5692344 +0.1119241 2.494678 0.5692344 +0.1475052 2.494678 0.5692344 +0.1846606 2.494678 0.5692344 +0.2245119 2.494678 0.5692344 +0.2679612 2.494678 0.5692344 +0.3158431 2.494678 0.5692344 +0.3689944 2.494678 0.5692344 +0.4282948 2.494678 0.5692344 +0.494694 2.494678 0.5692344 +0.5692344 2.494678 0.5692344 +0.6530715 2.494678 0.5692344 +0.7474945 2.494678 0.5692344 +0.8539475 2.494678 0.5692344 +0.974052 2.494678 0.5692344 +1.113885 2.494678 0.5692344 +1.27456 2.494678 0.5692344 +1.458117 2.494678 0.5692344 +1.667858 2.494678 0.5692344 +1.907556 2.494678 0.5692344 +2.181521 2.494678 0.5692344 +2.494678 2.494678 0.5692344 +2.852659 2.494678 0.5692344 +3.261896 2.494678 0.5692344 +3.729748 2.494678 0.5692344 +4.264621 2.494678 0.5692344 +4.876131 2.494678 0.5692344 +5.575266 2.494678 0.5692344 +6.374593 2.494678 0.5692344 +0 2.852659 0.5692344 +0 2.852659 0.5692344 +0 2.852659 0.5692344 +0.002268731 2.852659 0.5692344 +0.07076883 2.852659 0.5692344 +0.1119241 2.852659 0.5692344 +0.1475052 2.852659 0.5692344 +0.1846606 2.852659 0.5692344 +0.2245119 2.852659 0.5692344 +0.2679612 2.852659 0.5692344 +0.3158431 2.852659 0.5692344 +0.3689944 2.852659 0.5692344 +0.4282948 2.852659 0.5692344 +0.494694 2.852659 0.5692344 +0.5692344 2.852659 0.5692344 +0.6530715 2.852659 0.5692344 +0.7474945 2.852659 0.5692344 +0.8539475 2.852659 0.5692344 +0.974052 2.852659 0.5692344 +1.113885 2.852659 0.5692344 +1.27456 2.852659 0.5692344 +1.458117 2.852659 0.5692344 +1.667858 2.852659 0.5692344 +1.907556 2.852659 0.5692344 +2.181521 2.852659 0.5692344 +2.494678 2.852659 0.5692344 +2.852659 2.852659 0.5692344 +3.261896 2.852659 0.5692344 +3.729748 2.852659 0.5692344 +4.264621 2.852659 0.5692344 +4.876131 2.852659 0.5692344 +5.575266 2.852659 0.5692344 +6.374593 2.852659 0.5692344 +0 3.261896 0.5692344 +0 3.261896 0.5692344 +0 3.261896 0.5692344 +0.002268731 3.261896 0.5692344 +0.07076883 3.261896 0.5692344 +0.1119241 3.261896 0.5692344 +0.1475052 3.261896 0.5692344 +0.1846606 3.261896 0.5692344 +0.2245119 3.261896 0.5692344 +0.2679612 3.261896 0.5692344 +0.3158431 3.261896 0.5692344 +0.3689944 3.261896 0.5692344 +0.4282948 3.261896 0.5692344 +0.494694 3.261896 0.5692344 +0.5692344 3.261896 0.5692344 +0.6530715 3.261896 0.5692344 +0.7474945 3.261896 0.5692344 +0.8539475 3.261896 0.5692344 +0.974052 3.261896 0.5692344 +1.113885 3.261896 0.5692344 +1.27456 3.261896 0.5692344 +1.458117 3.261896 0.5692344 +1.667858 3.261896 0.5692344 +1.907556 3.261896 0.5692344 +2.181521 3.261896 0.5692344 +2.494678 3.261896 0.5692344 +2.852659 3.261896 0.5692344 +3.261896 3.261896 0.5692344 +3.729748 3.261896 0.5692344 +4.264621 3.261896 0.5692344 +4.876131 3.261896 0.5692344 +5.575266 3.261896 0.5692344 +6.374593 3.261896 0.5692344 +0 3.729748 0.5692344 +0 3.729748 0.5692344 +0 3.729748 0.5692344 +0.002268731 3.729748 0.5692344 +0.07076883 3.729748 0.5692344 +0.1119241 3.729748 0.5692344 +0.1475052 3.729748 0.5692344 +0.1846606 3.729748 0.5692344 +0.2245119 3.729748 0.5692344 +0.2679612 3.729748 0.5692344 +0.3158431 3.729748 0.5692344 +0.3689944 3.729748 0.5692344 +0.4282948 3.729748 0.5692344 +0.494694 3.729748 0.5692344 +0.5692344 3.729748 0.5692344 +0.6530715 3.729748 0.5692344 +0.7474945 3.729748 0.5692344 +0.8539475 3.729748 0.5692344 +0.974052 3.729748 0.5692344 +1.113885 3.729748 0.5692344 +1.27456 3.729748 0.5692344 +1.458117 3.729748 0.5692344 +1.667858 3.729748 0.5692344 +1.907556 3.729748 0.5692344 +2.181521 3.729748 0.5692344 +2.494678 3.729748 0.5692344 +2.852659 3.729748 0.5692344 +3.261896 3.729748 0.5692344 +3.729748 3.729748 0.5692344 +4.264621 3.729748 0.5692344 +4.876131 3.729748 0.5692344 +5.575266 3.729748 0.5692344 +6.374593 3.729748 0.5692344 +0 4.264621 0.5692344 +0 4.264621 0.5692344 +0 4.264621 0.5692344 +0.002268731 4.264621 0.5692344 +0.07076883 4.264621 0.5692344 +0.1119241 4.264621 0.5692344 +0.1475052 4.264621 0.5692344 +0.1846606 4.264621 0.5692344 +0.2245119 4.264621 0.5692344 +0.2679612 4.264621 0.5692344 +0.3158431 4.264621 0.5692344 +0.3689944 4.264621 0.5692344 +0.4282948 4.264621 0.5692344 +0.494694 4.264621 0.5692344 +0.5692344 4.264621 0.5692344 +0.6530715 4.264621 0.5692344 +0.7474945 4.264621 0.5692344 +0.8539475 4.264621 0.5692344 +0.974052 4.264621 0.5692344 +1.113885 4.264621 0.5692344 +1.27456 4.264621 0.5692344 +1.458117 4.264621 0.5692344 +1.667858 4.264621 0.5692344 +1.907556 4.264621 0.5692344 +2.181521 4.264621 0.5692344 +2.494678 4.264621 0.5692344 +2.852659 4.264621 0.5692344 +3.261896 4.264621 0.5692344 +3.729748 4.264621 0.5692344 +4.264621 4.264621 0.5692344 +4.876131 4.264621 0.5692344 +5.575266 4.264621 0.5692344 +6.374593 4.264621 0.5692344 +0 4.876131 0.5692344 +0 4.876131 0.5692344 +0 4.876131 0.5692344 +0.002268731 4.876131 0.5692344 +0.07076883 4.876131 0.5692344 +0.1119241 4.876131 0.5692344 +0.1475052 4.876131 0.5692344 +0.1846606 4.876131 0.5692344 +0.2245119 4.876131 0.5692344 +0.2679612 4.876131 0.5692344 +0.3158431 4.876131 0.5692344 +0.3689944 4.876131 0.5692344 +0.4282948 4.876131 0.5692344 +0.494694 4.876131 0.5692344 +0.5692344 4.876131 0.5692344 +0.6530715 4.876131 0.5692344 +0.7474945 4.876131 0.5692344 +0.8539475 4.876131 0.5692344 +0.974052 4.876131 0.5692344 +1.113885 4.876131 0.5692344 +1.27456 4.876131 0.5692344 +1.458117 4.876131 0.5692344 +1.667858 4.876131 0.5692344 +1.907556 4.876131 0.5692344 +2.181521 4.876131 0.5692344 +2.494678 4.876131 0.5692344 +2.852659 4.876131 0.5692344 +3.261896 4.876131 0.5692344 +3.729748 4.876131 0.5692344 +4.264621 4.876131 0.5692344 +4.876131 4.876131 0.5692344 +5.575266 4.876131 0.5692344 +6.374593 4.876131 0.5692344 +0 5.575266 0.5692344 +0 5.575266 0.5692344 +0 5.575266 0.5692344 +0.002268731 5.575266 0.5692344 +0.07076883 5.575266 0.5692344 +0.1119241 5.575266 0.5692344 +0.1475052 5.575266 0.5692344 +0.1846606 5.575266 0.5692344 +0.2245119 5.575266 0.5692344 +0.2679612 5.575266 0.5692344 +0.3158431 5.575266 0.5692344 +0.3689944 5.575266 0.5692344 +0.4282948 5.575266 0.5692344 +0.494694 5.575266 0.5692344 +0.5692344 5.575266 0.5692344 +0.6530715 5.575266 0.5692344 +0.7474945 5.575266 0.5692344 +0.8539475 5.575266 0.5692344 +0.974052 5.575266 0.5692344 +1.113885 5.575266 0.5692344 +1.27456 5.575266 0.5692344 +1.458117 5.575266 0.5692344 +1.667858 5.575266 0.5692344 +1.907556 5.575266 0.5692344 +2.181521 5.575266 0.5692344 +2.494678 5.575266 0.5692344 +2.852659 5.575266 0.5692344 +3.261896 5.575266 0.5692344 +3.729748 5.575266 0.5692344 +4.264621 5.575266 0.5692344 +4.876131 5.575266 0.5692344 +5.575266 5.575266 0.5692344 +6.374593 5.575266 0.5692344 +0 6.374593 0.5692344 +0 6.374593 0.5692344 +0 6.374593 0.5692344 +0.002268731 6.374593 0.5692344 +0.07076883 6.374593 0.5692344 +0.1119241 6.374593 0.5692344 +0.1475052 6.374593 0.5692344 +0.1846606 6.374593 0.5692344 +0.2245119 6.374593 0.5692344 +0.2679612 6.374593 0.5692344 +0.3158431 6.374593 0.5692344 +0.3689944 6.374593 0.5692344 +0.4282948 6.374593 0.5692344 +0.494694 6.374593 0.5692344 +0.5692344 6.374593 0.5692344 +0.6530715 6.374593 0.5692344 +0.7474945 6.374593 0.5692344 +0.8539475 6.374593 0.5692344 +0.974052 6.374593 0.5692344 +1.113885 6.374593 0.5692344 +1.27456 6.374593 0.5692344 +1.458117 6.374593 0.5692344 +1.667858 6.374593 0.5692344 +1.907556 6.374593 0.5692344 +2.181521 6.374593 0.5692344 +2.494678 6.374593 0.5692344 +2.852659 6.374593 0.5692344 +3.261896 6.374593 0.5692344 +3.729748 6.374593 0.5692344 +4.264621 6.374593 0.5692344 +4.876131 6.374593 0.5692344 +5.575266 6.374593 0.5692344 +6.374593 6.374593 0.5692344 +0 0 0.6530715 +0 0 0.6530715 +0 0 0.6530715 +0.002268731 0 0.6530715 +0.07076883 0 0.6530715 +0.1119241 0 0.6530715 +0.1475052 0 0.6530715 +0.1846606 0 0.6530715 +0.2245119 0 0.6530715 +0.2679612 0 0.6530715 +0.3158431 0 0.6530715 +0.3689944 0 0.6530715 +0.4282948 0 0.6530715 +0.494694 0 0.6530715 +0.5692344 0 0.6530715 +0.6530715 0 0.6530715 +0.7474945 0 0.6530715 +0.8539475 0 0.6530715 +0.974052 0 0.6530715 +1.113885 0 0.6530715 +1.27456 0 0.6530715 +1.458117 0 0.6530715 +1.667858 0 0.6530715 +1.907556 0 0.6530715 +2.181521 0 0.6530715 +2.494678 0 0.6530715 +2.852659 0 0.6530715 +3.261896 0 0.6530715 +3.729748 0 0.6530715 +4.264621 0 0.6530715 +4.876131 0 0.6530715 +5.575266 0 0.6530715 +6.374593 0 0.6530715 +0 0 0.6530715 +0 0 0.6530715 +0 0 0.6530715 +0.002268731 0 0.6530715 +0.07076883 0 0.6530715 +0.1119241 0 0.6530715 +0.1475052 0 0.6530715 +0.1846606 0 0.6530715 +0.2245119 0 0.6530715 +0.2679612 0 0.6530715 +0.3158431 0 0.6530715 +0.3689944 0 0.6530715 +0.4282948 0 0.6530715 +0.494694 0 0.6530715 +0.5692344 0 0.6530715 +0.6530715 0 0.6530715 +0.7474945 0 0.6530715 +0.8539475 0 0.6530715 +0.974052 0 0.6530715 +1.113885 0 0.6530715 +1.27456 0 0.6530715 +1.458117 0 0.6530715 +1.667858 0 0.6530715 +1.907556 0 0.6530715 +2.181521 0 0.6530715 +2.494678 0 0.6530715 +2.852659 0 0.6530715 +3.261896 0 0.6530715 +3.729748 0 0.6530715 +4.264621 0 0.6530715 +4.876131 0 0.6530715 +5.575266 0 0.6530715 +6.374593 0 0.6530715 +0 0 0.6530715 +0 0 0.6530715 +0 0 0.6530715 +0.002268731 0 0.6530715 +0.07076883 0 0.6530715 +0.1119241 0 0.6530715 +0.1475052 0 0.6530715 +0.1846606 0 0.6530715 +0.2245119 0 0.6530715 +0.2679612 0 0.6530715 +0.3158431 0 0.6530715 +0.3689944 0 0.6530715 +0.4282948 0 0.6530715 +0.494694 0 0.6530715 +0.5692344 0 0.6530715 +0.6530715 0 0.6530715 +0.7474945 0 0.6530715 +0.8539475 0 0.6530715 +0.974052 0 0.6530715 +1.113885 0 0.6530715 +1.27456 0 0.6530715 +1.458117 0 0.6530715 +1.667858 0 0.6530715 +1.907556 0 0.6530715 +2.181521 0 0.6530715 +2.494678 0 0.6530715 +2.852659 0 0.6530715 +3.261896 0 0.6530715 +3.729748 0 0.6530715 +4.264621 0 0.6530715 +4.876131 0 0.6530715 +5.575266 0 0.6530715 +6.374593 0 0.6530715 +0 0.002268731 0.6530715 +0 0.002268731 0.6530715 +0 0.002268731 0.6530715 +0.002268731 0.002268731 0.6530715 +0.07076883 0.002268731 0.6530715 +0.1119241 0.002268731 0.6530715 +0.1475052 0.002268731 0.6530715 +0.1846606 0.002268731 0.6530715 +0.2245119 0.002268731 0.6530715 +0.2679612 0.002268731 0.6530715 +0.3158431 0.002268731 0.6530715 +0.3689944 0.002268731 0.6530715 +0.4282948 0.002268731 0.6530715 +0.494694 0.002268731 0.6530715 +0.5692344 0.002268731 0.6530715 +0.6530715 0.002268731 0.6530715 +0.7474945 0.002268731 0.6530715 +0.8539475 0.002268731 0.6530715 +0.974052 0.002268731 0.6530715 +1.113885 0.002268731 0.6530715 +1.27456 0.002268731 0.6530715 +1.458117 0.002268731 0.6530715 +1.667858 0.002268731 0.6530715 +1.907556 0.002268731 0.6530715 +2.181521 0.002268731 0.6530715 +2.494678 0.002268731 0.6530715 +2.852659 0.002268731 0.6530715 +3.261896 0.002268731 0.6530715 +3.729748 0.002268731 0.6530715 +4.264621 0.002268731 0.6530715 +4.876131 0.002268731 0.6530715 +5.575266 0.002268731 0.6530715 +6.374593 0.002268731 0.6530715 +0 0.07076883 0.6530715 +0 0.07076883 0.6530715 +0 0.07076883 0.6530715 +0.002268731 0.07076883 0.6530715 +0.07076883 0.07076883 0.6530715 +0.1119241 0.07076883 0.6530715 +0.1475052 0.07076883 0.6530715 +0.1846606 0.07076883 0.6530715 +0.2245119 0.07076883 0.6530715 +0.2679612 0.07076883 0.6530715 +0.3158431 0.07076883 0.6530715 +0.3689944 0.07076883 0.6530715 +0.4282948 0.07076883 0.6530715 +0.494694 0.07076883 0.6530715 +0.5692344 0.07076883 0.6530715 +0.6530715 0.07076883 0.6530715 +0.7474945 0.07076883 0.6530715 +0.8539475 0.07076883 0.6530715 +0.974052 0.07076883 0.6530715 +1.113885 0.07076883 0.6530715 +1.27456 0.07076883 0.6530715 +1.458117 0.07076883 0.6530715 +1.667858 0.07076883 0.6530715 +1.907556 0.07076883 0.6530715 +2.181521 0.07076883 0.6530715 +2.494678 0.07076883 0.6530715 +2.852659 0.07076883 0.6530715 +3.261896 0.07076883 0.6530715 +3.729748 0.07076883 0.6530715 +4.264621 0.07076883 0.6530715 +4.876131 0.07076883 0.6530715 +5.575266 0.07076883 0.6530715 +6.374593 0.07076883 0.6530715 +0 0.1119241 0.6530715 +0 0.1119241 0.6530715 +0 0.1119241 0.6530715 +0.002268731 0.1119241 0.6530715 +0.07076883 0.1119241 0.6530715 +0.1119241 0.1119241 0.6530715 +0.1475052 0.1119241 0.6530715 +0.1846606 0.1119241 0.6530715 +0.2245119 0.1119241 0.6530715 +0.2679612 0.1119241 0.6530715 +0.3158431 0.1119241 0.6530715 +0.3689944 0.1119241 0.6530715 +0.4282948 0.1119241 0.6530715 +0.494694 0.1119241 0.6530715 +0.5692344 0.1119241 0.6530715 +0.6530715 0.1119241 0.6530715 +0.7474945 0.1119241 0.6530715 +0.8539475 0.1119241 0.6530715 +0.974052 0.1119241 0.6530715 +1.113885 0.1119241 0.6530715 +1.27456 0.1119241 0.6530715 +1.458117 0.1119241 0.6530715 +1.667858 0.1119241 0.6530715 +1.907556 0.1119241 0.6530715 +2.181521 0.1119241 0.6530715 +2.494678 0.1119241 0.6530715 +2.852659 0.1119241 0.6530715 +3.261896 0.1119241 0.6530715 +3.729748 0.1119241 0.6530715 +4.264621 0.1119241 0.6530715 +4.876131 0.1119241 0.6530715 +5.575266 0.1119241 0.6530715 +6.374593 0.1119241 0.6530715 +0 0.1475052 0.6530715 +0 0.1475052 0.6530715 +0 0.1475052 0.6530715 +0.002268731 0.1475052 0.6530715 +0.07076883 0.1475052 0.6530715 +0.1119241 0.1475052 0.6530715 +0.1475052 0.1475052 0.6530715 +0.1846606 0.1475052 0.6530715 +0.2245119 0.1475052 0.6530715 +0.2679612 0.1475052 0.6530715 +0.3158431 0.1475052 0.6530715 +0.3689944 0.1475052 0.6530715 +0.4282948 0.1475052 0.6530715 +0.494694 0.1475052 0.6530715 +0.5692344 0.1475052 0.6530715 +0.6530715 0.1475052 0.6530715 +0.7474945 0.1475052 0.6530715 +0.8539475 0.1475052 0.6530715 +0.974052 0.1475052 0.6530715 +1.113885 0.1475052 0.6530715 +1.27456 0.1475052 0.6530715 +1.458117 0.1475052 0.6530715 +1.667858 0.1475052 0.6530715 +1.907556 0.1475052 0.6530715 +2.181521 0.1475052 0.6530715 +2.494678 0.1475052 0.6530715 +2.852659 0.1475052 0.6530715 +3.261896 0.1475052 0.6530715 +3.729748 0.1475052 0.6530715 +4.264621 0.1475052 0.6530715 +4.876131 0.1475052 0.6530715 +5.575266 0.1475052 0.6530715 +6.374593 0.1475052 0.6530715 +0 0.1846606 0.6530715 +0 0.1846606 0.6530715 +0 0.1846606 0.6530715 +0.002268731 0.1846606 0.6530715 +0.07076883 0.1846606 0.6530715 +0.1119241 0.1846606 0.6530715 +0.1475052 0.1846606 0.6530715 +0.1846606 0.1846606 0.6530715 +0.2245119 0.1846606 0.6530715 +0.2679612 0.1846606 0.6530715 +0.3158431 0.1846606 0.6530715 +0.3689944 0.1846606 0.6530715 +0.4282948 0.1846606 0.6530715 +0.494694 0.1846606 0.6530715 +0.5692344 0.1846606 0.6530715 +0.6530715 0.1846606 0.6530715 +0.7474945 0.1846606 0.6530715 +0.8539475 0.1846606 0.6530715 +0.974052 0.1846606 0.6530715 +1.113885 0.1846606 0.6530715 +1.27456 0.1846606 0.6530715 +1.458117 0.1846606 0.6530715 +1.667858 0.1846606 0.6530715 +1.907556 0.1846606 0.6530715 +2.181521 0.1846606 0.6530715 +2.494678 0.1846606 0.6530715 +2.852659 0.1846606 0.6530715 +3.261896 0.1846606 0.6530715 +3.729748 0.1846606 0.6530715 +4.264621 0.1846606 0.6530715 +4.876131 0.1846606 0.6530715 +5.575266 0.1846606 0.6530715 +6.374593 0.1846606 0.6530715 +0 0.2245119 0.6530715 +0 0.2245119 0.6530715 +0 0.2245119 0.6530715 +0.002268731 0.2245119 0.6530715 +0.07076883 0.2245119 0.6530715 +0.1119241 0.2245119 0.6530715 +0.1475052 0.2245119 0.6530715 +0.1846606 0.2245119 0.6530715 +0.2245119 0.2245119 0.6530715 +0.2679612 0.2245119 0.6530715 +0.3158431 0.2245119 0.6530715 +0.3689944 0.2245119 0.6530715 +0.4282948 0.2245119 0.6530715 +0.494694 0.2245119 0.6530715 +0.5692344 0.2245119 0.6530715 +0.6530715 0.2245119 0.6530715 +0.7474945 0.2245119 0.6530715 +0.8539475 0.2245119 0.6530715 +0.974052 0.2245119 0.6530715 +1.113885 0.2245119 0.6530715 +1.27456 0.2245119 0.6530715 +1.458117 0.2245119 0.6530715 +1.667858 0.2245119 0.6530715 +1.907556 0.2245119 0.6530715 +2.181521 0.2245119 0.6530715 +2.494678 0.2245119 0.6530715 +2.852659 0.2245119 0.6530715 +3.261896 0.2245119 0.6530715 +3.729748 0.2245119 0.6530715 +4.264621 0.2245119 0.6530715 +4.876131 0.2245119 0.6530715 +5.575266 0.2245119 0.6530715 +6.374593 0.2245119 0.6530715 +0 0.2679612 0.6530715 +0 0.2679612 0.6530715 +0 0.2679612 0.6530715 +0.002268731 0.2679612 0.6530715 +0.07076883 0.2679612 0.6530715 +0.1119241 0.2679612 0.6530715 +0.1475052 0.2679612 0.6530715 +0.1846606 0.2679612 0.6530715 +0.2245119 0.2679612 0.6530715 +0.2679612 0.2679612 0.6530715 +0.3158431 0.2679612 0.6530715 +0.3689944 0.2679612 0.6530715 +0.4282948 0.2679612 0.6530715 +0.494694 0.2679612 0.6530715 +0.5692344 0.2679612 0.6530715 +0.6530715 0.2679612 0.6530715 +0.7474945 0.2679612 0.6530715 +0.8539475 0.2679612 0.6530715 +0.974052 0.2679612 0.6530715 +1.113885 0.2679612 0.6530715 +1.27456 0.2679612 0.6530715 +1.458117 0.2679612 0.6530715 +1.667858 0.2679612 0.6530715 +1.907556 0.2679612 0.6530715 +2.181521 0.2679612 0.6530715 +2.494678 0.2679612 0.6530715 +2.852659 0.2679612 0.6530715 +3.261896 0.2679612 0.6530715 +3.729748 0.2679612 0.6530715 +4.264621 0.2679612 0.6530715 +4.876131 0.2679612 0.6530715 +5.575266 0.2679612 0.6530715 +6.374593 0.2679612 0.6530715 +0 0.3158431 0.6530715 +0 0.3158431 0.6530715 +0 0.3158431 0.6530715 +0.002268731 0.3158431 0.6530715 +0.07076883 0.3158431 0.6530715 +0.1119241 0.3158431 0.6530715 +0.1475052 0.3158431 0.6530715 +0.1846606 0.3158431 0.6530715 +0.2245119 0.3158431 0.6530715 +0.2679612 0.3158431 0.6530715 +0.3158431 0.3158431 0.6530715 +0.3689944 0.3158431 0.6530715 +0.4282948 0.3158431 0.6530715 +0.494694 0.3158431 0.6530715 +0.5692344 0.3158431 0.6530715 +0.6530715 0.3158431 0.6530715 +0.7474945 0.3158431 0.6530715 +0.8539475 0.3158431 0.6530715 +0.974052 0.3158431 0.6530715 +1.113885 0.3158431 0.6530715 +1.27456 0.3158431 0.6530715 +1.458117 0.3158431 0.6530715 +1.667858 0.3158431 0.6530715 +1.907556 0.3158431 0.6530715 +2.181521 0.3158431 0.6530715 +2.494678 0.3158431 0.6530715 +2.852659 0.3158431 0.6530715 +3.261896 0.3158431 0.6530715 +3.729748 0.3158431 0.6530715 +4.264621 0.3158431 0.6530715 +4.876131 0.3158431 0.6530715 +5.575266 0.3158431 0.6530715 +6.374593 0.3158431 0.6530715 +0 0.3689944 0.6530715 +0 0.3689944 0.6530715 +0 0.3689944 0.6530715 +0.002268731 0.3689944 0.6530715 +0.07076883 0.3689944 0.6530715 +0.1119241 0.3689944 0.6530715 +0.1475052 0.3689944 0.6530715 +0.1846606 0.3689944 0.6530715 +0.2245119 0.3689944 0.6530715 +0.2679612 0.3689944 0.6530715 +0.3158431 0.3689944 0.6530715 +0.3689944 0.3689944 0.6530715 +0.4282948 0.3689944 0.6530715 +0.494694 0.3689944 0.6530715 +0.5692344 0.3689944 0.6530715 +0.6530715 0.3689944 0.6530715 +0.7474945 0.3689944 0.6530715 +0.8539475 0.3689944 0.6530715 +0.974052 0.3689944 0.6530715 +1.113885 0.3689944 0.6530715 +1.27456 0.3689944 0.6530715 +1.458117 0.3689944 0.6530715 +1.667858 0.3689944 0.6530715 +1.907556 0.3689944 0.6530715 +2.181521 0.3689944 0.6530715 +2.494678 0.3689944 0.6530715 +2.852659 0.3689944 0.6530715 +3.261896 0.3689944 0.6530715 +3.729748 0.3689944 0.6530715 +4.264621 0.3689944 0.6530715 +4.876131 0.3689944 0.6530715 +5.575266 0.3689944 0.6530715 +6.374593 0.3689944 0.6530715 +0 0.4282948 0.6530715 +0 0.4282948 0.6530715 +0 0.4282948 0.6530715 +0.002268731 0.4282948 0.6530715 +0.07076883 0.4282948 0.6530715 +0.1119241 0.4282948 0.6530715 +0.1475052 0.4282948 0.6530715 +0.1846606 0.4282948 0.6530715 +0.2245119 0.4282948 0.6530715 +0.2679612 0.4282948 0.6530715 +0.3158431 0.4282948 0.6530715 +0.3689944 0.4282948 0.6530715 +0.4282948 0.4282948 0.6530715 +0.494694 0.4282948 0.6530715 +0.5692344 0.4282948 0.6530715 +0.6530715 0.4282948 0.6530715 +0.7474945 0.4282948 0.6530715 +0.8539475 0.4282948 0.6530715 +0.974052 0.4282948 0.6530715 +1.113885 0.4282948 0.6530715 +1.27456 0.4282948 0.6530715 +1.458117 0.4282948 0.6530715 +1.667858 0.4282948 0.6530715 +1.907556 0.4282948 0.6530715 +2.181521 0.4282948 0.6530715 +2.494678 0.4282948 0.6530715 +2.852659 0.4282948 0.6530715 +3.261896 0.4282948 0.6530715 +3.729748 0.4282948 0.6530715 +4.264621 0.4282948 0.6530715 +4.876131 0.4282948 0.6530715 +5.575266 0.4282948 0.6530715 +6.374593 0.4282948 0.6530715 +0 0.494694 0.6530715 +0 0.494694 0.6530715 +0 0.494694 0.6530715 +0.002268731 0.494694 0.6530715 +0.07076883 0.494694 0.6530715 +0.1119241 0.494694 0.6530715 +0.1475052 0.494694 0.6530715 +0.1846606 0.494694 0.6530715 +0.2245119 0.494694 0.6530715 +0.2679612 0.494694 0.6530715 +0.3158431 0.494694 0.6530715 +0.3689944 0.494694 0.6530715 +0.4282948 0.494694 0.6530715 +0.494694 0.494694 0.6530715 +0.5692344 0.494694 0.6530715 +0.6530715 0.494694 0.6530715 +0.7474945 0.494694 0.6530715 +0.8539475 0.494694 0.6530715 +0.974052 0.494694 0.6530715 +1.113885 0.494694 0.6530715 +1.27456 0.494694 0.6530715 +1.458117 0.494694 0.6530715 +1.667858 0.494694 0.6530715 +1.907556 0.494694 0.6530715 +2.181521 0.494694 0.6530715 +2.494678 0.494694 0.6530715 +2.852659 0.494694 0.6530715 +3.261896 0.494694 0.6530715 +3.729748 0.494694 0.6530715 +4.264621 0.494694 0.6530715 +4.876131 0.494694 0.6530715 +5.575266 0.494694 0.6530715 +6.374593 0.494694 0.6530715 +0 0.5692344 0.6530715 +0 0.5692344 0.6530715 +0 0.5692344 0.6530715 +0.002268731 0.5692344 0.6530715 +0.07076883 0.5692344 0.6530715 +0.1119241 0.5692344 0.6530715 +0.1475052 0.5692344 0.6530715 +0.1846606 0.5692344 0.6530715 +0.2245119 0.5692344 0.6530715 +0.2679612 0.5692344 0.6530715 +0.3158431 0.5692344 0.6530715 +0.3689944 0.5692344 0.6530715 +0.4282948 0.5692344 0.6530715 +0.494694 0.5692344 0.6530715 +0.5692344 0.5692344 0.6530715 +0.6530715 0.5692344 0.6530715 +0.7474945 0.5692344 0.6530715 +0.8539475 0.5692344 0.6530715 +0.974052 0.5692344 0.6530715 +1.113885 0.5692344 0.6530715 +1.27456 0.5692344 0.6530715 +1.458117 0.5692344 0.6530715 +1.667858 0.5692344 0.6530715 +1.907556 0.5692344 0.6530715 +2.181521 0.5692344 0.6530715 +2.494678 0.5692344 0.6530715 +2.852659 0.5692344 0.6530715 +3.261896 0.5692344 0.6530715 +3.729748 0.5692344 0.6530715 +4.264621 0.5692344 0.6530715 +4.876131 0.5692344 0.6530715 +5.575266 0.5692344 0.6530715 +6.374593 0.5692344 0.6530715 +0 0.6530715 0.6530715 +0 0.6530715 0.6530715 +0 0.6530715 0.6530715 +0.002268731 0.6530715 0.6530715 +0.07076883 0.6530715 0.6530715 +0.1119241 0.6530715 0.6530715 +0.1475052 0.6530715 0.6530715 +0.1846606 0.6530715 0.6530715 +0.2245119 0.6530715 0.6530715 +0.2679612 0.6530715 0.6530715 +0.3158431 0.6530715 0.6530715 +0.3689944 0.6530715 0.6530715 +0.4282948 0.6530715 0.6530715 +0.494694 0.6530715 0.6530715 +0.5692344 0.6530715 0.6530715 +0.6530715 0.6530715 0.6530715 +0.7474945 0.6530715 0.6530715 +0.8539475 0.6530715 0.6530715 +0.974052 0.6530715 0.6530715 +1.113885 0.6530715 0.6530715 +1.27456 0.6530715 0.6530715 +1.458117 0.6530715 0.6530715 +1.667858 0.6530715 0.6530715 +1.907556 0.6530715 0.6530715 +2.181521 0.6530715 0.6530715 +2.494678 0.6530715 0.6530715 +2.852659 0.6530715 0.6530715 +3.261896 0.6530715 0.6530715 +3.729748 0.6530715 0.6530715 +4.264621 0.6530715 0.6530715 +4.876131 0.6530715 0.6530715 +5.575266 0.6530715 0.6530715 +6.374593 0.6530715 0.6530715 +0 0.7474945 0.6530715 +0 0.7474945 0.6530715 +0 0.7474945 0.6530715 +0.002268731 0.7474945 0.6530715 +0.07076883 0.7474945 0.6530715 +0.1119241 0.7474945 0.6530715 +0.1475052 0.7474945 0.6530715 +0.1846606 0.7474945 0.6530715 +0.2245119 0.7474945 0.6530715 +0.2679612 0.7474945 0.6530715 +0.3158431 0.7474945 0.6530715 +0.3689944 0.7474945 0.6530715 +0.4282948 0.7474945 0.6530715 +0.494694 0.7474945 0.6530715 +0.5692344 0.7474945 0.6530715 +0.6530715 0.7474945 0.6530715 +0.7474945 0.7474945 0.6530715 +0.8539475 0.7474945 0.6530715 +0.974052 0.7474945 0.6530715 +1.113885 0.7474945 0.6530715 +1.27456 0.7474945 0.6530715 +1.458117 0.7474945 0.6530715 +1.667858 0.7474945 0.6530715 +1.907556 0.7474945 0.6530715 +2.181521 0.7474945 0.6530715 +2.494678 0.7474945 0.6530715 +2.852659 0.7474945 0.6530715 +3.261896 0.7474945 0.6530715 +3.729748 0.7474945 0.6530715 +4.264621 0.7474945 0.6530715 +4.876131 0.7474945 0.6530715 +5.575266 0.7474945 0.6530715 +6.374593 0.7474945 0.6530715 +0 0.8539475 0.6530715 +0 0.8539475 0.6530715 +0 0.8539475 0.6530715 +0.002268731 0.8539475 0.6530715 +0.07076883 0.8539475 0.6530715 +0.1119241 0.8539475 0.6530715 +0.1475052 0.8539475 0.6530715 +0.1846606 0.8539475 0.6530715 +0.2245119 0.8539475 0.6530715 +0.2679612 0.8539475 0.6530715 +0.3158431 0.8539475 0.6530715 +0.3689944 0.8539475 0.6530715 +0.4282948 0.8539475 0.6530715 +0.494694 0.8539475 0.6530715 +0.5692344 0.8539475 0.6530715 +0.6530715 0.8539475 0.6530715 +0.7474945 0.8539475 0.6530715 +0.8539475 0.8539475 0.6530715 +0.974052 0.8539475 0.6530715 +1.113885 0.8539475 0.6530715 +1.27456 0.8539475 0.6530715 +1.458117 0.8539475 0.6530715 +1.667858 0.8539475 0.6530715 +1.907556 0.8539475 0.6530715 +2.181521 0.8539475 0.6530715 +2.494678 0.8539475 0.6530715 +2.852659 0.8539475 0.6530715 +3.261896 0.8539475 0.6530715 +3.729748 0.8539475 0.6530715 +4.264621 0.8539475 0.6530715 +4.876131 0.8539475 0.6530715 +5.575266 0.8539475 0.6530715 +6.374593 0.8539475 0.6530715 +0 0.974052 0.6530715 +0 0.974052 0.6530715 +0 0.974052 0.6530715 +0.002268731 0.974052 0.6530715 +0.07076883 0.974052 0.6530715 +0.1119241 0.974052 0.6530715 +0.1475052 0.974052 0.6530715 +0.1846606 0.974052 0.6530715 +0.2245119 0.974052 0.6530715 +0.2679612 0.974052 0.6530715 +0.3158431 0.974052 0.6530715 +0.3689944 0.974052 0.6530715 +0.4282948 0.974052 0.6530715 +0.494694 0.974052 0.6530715 +0.5692344 0.974052 0.6530715 +0.6530715 0.974052 0.6530715 +0.7474945 0.974052 0.6530715 +0.8539475 0.974052 0.6530715 +0.974052 0.974052 0.6530715 +1.113885 0.974052 0.6530715 +1.27456 0.974052 0.6530715 +1.458117 0.974052 0.6530715 +1.667858 0.974052 0.6530715 +1.907556 0.974052 0.6530715 +2.181521 0.974052 0.6530715 +2.494678 0.974052 0.6530715 +2.852659 0.974052 0.6530715 +3.261896 0.974052 0.6530715 +3.729748 0.974052 0.6530715 +4.264621 0.974052 0.6530715 +4.876131 0.974052 0.6530715 +5.575266 0.974052 0.6530715 +6.374593 0.974052 0.6530715 +0 1.113885 0.6530715 +0 1.113885 0.6530715 +0 1.113885 0.6530715 +0.002268731 1.113885 0.6530715 +0.07076883 1.113885 0.6530715 +0.1119241 1.113885 0.6530715 +0.1475052 1.113885 0.6530715 +0.1846606 1.113885 0.6530715 +0.2245119 1.113885 0.6530715 +0.2679612 1.113885 0.6530715 +0.3158431 1.113885 0.6530715 +0.3689944 1.113885 0.6530715 +0.4282948 1.113885 0.6530715 +0.494694 1.113885 0.6530715 +0.5692344 1.113885 0.6530715 +0.6530715 1.113885 0.6530715 +0.7474945 1.113885 0.6530715 +0.8539475 1.113885 0.6530715 +0.974052 1.113885 0.6530715 +1.113885 1.113885 0.6530715 +1.27456 1.113885 0.6530715 +1.458117 1.113885 0.6530715 +1.667858 1.113885 0.6530715 +1.907556 1.113885 0.6530715 +2.181521 1.113885 0.6530715 +2.494678 1.113885 0.6530715 +2.852659 1.113885 0.6530715 +3.261896 1.113885 0.6530715 +3.729748 1.113885 0.6530715 +4.264621 1.113885 0.6530715 +4.876131 1.113885 0.6530715 +5.575266 1.113885 0.6530715 +6.374593 1.113885 0.6530715 +0 1.27456 0.6530715 +0 1.27456 0.6530715 +0 1.27456 0.6530715 +0.002268731 1.27456 0.6530715 +0.07076883 1.27456 0.6530715 +0.1119241 1.27456 0.6530715 +0.1475052 1.27456 0.6530715 +0.1846606 1.27456 0.6530715 +0.2245119 1.27456 0.6530715 +0.2679612 1.27456 0.6530715 +0.3158431 1.27456 0.6530715 +0.3689944 1.27456 0.6530715 +0.4282948 1.27456 0.6530715 +0.494694 1.27456 0.6530715 +0.5692344 1.27456 0.6530715 +0.6530715 1.27456 0.6530715 +0.7474945 1.27456 0.6530715 +0.8539475 1.27456 0.6530715 +0.974052 1.27456 0.6530715 +1.113885 1.27456 0.6530715 +1.27456 1.27456 0.6530715 +1.458117 1.27456 0.6530715 +1.667858 1.27456 0.6530715 +1.907556 1.27456 0.6530715 +2.181521 1.27456 0.6530715 +2.494678 1.27456 0.6530715 +2.852659 1.27456 0.6530715 +3.261896 1.27456 0.6530715 +3.729748 1.27456 0.6530715 +4.264621 1.27456 0.6530715 +4.876131 1.27456 0.6530715 +5.575266 1.27456 0.6530715 +6.374593 1.27456 0.6530715 +0 1.458117 0.6530715 +0 1.458117 0.6530715 +0 1.458117 0.6530715 +0.002268731 1.458117 0.6530715 +0.07076883 1.458117 0.6530715 +0.1119241 1.458117 0.6530715 +0.1475052 1.458117 0.6530715 +0.1846606 1.458117 0.6530715 +0.2245119 1.458117 0.6530715 +0.2679612 1.458117 0.6530715 +0.3158431 1.458117 0.6530715 +0.3689944 1.458117 0.6530715 +0.4282948 1.458117 0.6530715 +0.494694 1.458117 0.6530715 +0.5692344 1.458117 0.6530715 +0.6530715 1.458117 0.6530715 +0.7474945 1.458117 0.6530715 +0.8539475 1.458117 0.6530715 +0.974052 1.458117 0.6530715 +1.113885 1.458117 0.6530715 +1.27456 1.458117 0.6530715 +1.458117 1.458117 0.6530715 +1.667858 1.458117 0.6530715 +1.907556 1.458117 0.6530715 +2.181521 1.458117 0.6530715 +2.494678 1.458117 0.6530715 +2.852659 1.458117 0.6530715 +3.261896 1.458117 0.6530715 +3.729748 1.458117 0.6530715 +4.264621 1.458117 0.6530715 +4.876131 1.458117 0.6530715 +5.575266 1.458117 0.6530715 +6.374593 1.458117 0.6530715 +0 1.667858 0.6530715 +0 1.667858 0.6530715 +0 1.667858 0.6530715 +0.002268731 1.667858 0.6530715 +0.07076883 1.667858 0.6530715 +0.1119241 1.667858 0.6530715 +0.1475052 1.667858 0.6530715 +0.1846606 1.667858 0.6530715 +0.2245119 1.667858 0.6530715 +0.2679612 1.667858 0.6530715 +0.3158431 1.667858 0.6530715 +0.3689944 1.667858 0.6530715 +0.4282948 1.667858 0.6530715 +0.494694 1.667858 0.6530715 +0.5692344 1.667858 0.6530715 +0.6530715 1.667858 0.6530715 +0.7474945 1.667858 0.6530715 +0.8539475 1.667858 0.6530715 +0.974052 1.667858 0.6530715 +1.113885 1.667858 0.6530715 +1.27456 1.667858 0.6530715 +1.458117 1.667858 0.6530715 +1.667858 1.667858 0.6530715 +1.907556 1.667858 0.6530715 +2.181521 1.667858 0.6530715 +2.494678 1.667858 0.6530715 +2.852659 1.667858 0.6530715 +3.261896 1.667858 0.6530715 +3.729748 1.667858 0.6530715 +4.264621 1.667858 0.6530715 +4.876131 1.667858 0.6530715 +5.575266 1.667858 0.6530715 +6.374593 1.667858 0.6530715 +0 1.907556 0.6530715 +0 1.907556 0.6530715 +0 1.907556 0.6530715 +0.002268731 1.907556 0.6530715 +0.07076883 1.907556 0.6530715 +0.1119241 1.907556 0.6530715 +0.1475052 1.907556 0.6530715 +0.1846606 1.907556 0.6530715 +0.2245119 1.907556 0.6530715 +0.2679612 1.907556 0.6530715 +0.3158431 1.907556 0.6530715 +0.3689944 1.907556 0.6530715 +0.4282948 1.907556 0.6530715 +0.494694 1.907556 0.6530715 +0.5692344 1.907556 0.6530715 +0.6530715 1.907556 0.6530715 +0.7474945 1.907556 0.6530715 +0.8539475 1.907556 0.6530715 +0.974052 1.907556 0.6530715 +1.113885 1.907556 0.6530715 +1.27456 1.907556 0.6530715 +1.458117 1.907556 0.6530715 +1.667858 1.907556 0.6530715 +1.907556 1.907556 0.6530715 +2.181521 1.907556 0.6530715 +2.494678 1.907556 0.6530715 +2.852659 1.907556 0.6530715 +3.261896 1.907556 0.6530715 +3.729748 1.907556 0.6530715 +4.264621 1.907556 0.6530715 +4.876131 1.907556 0.6530715 +5.575266 1.907556 0.6530715 +6.374593 1.907556 0.6530715 +0 2.181521 0.6530715 +0 2.181521 0.6530715 +0 2.181521 0.6530715 +0.002268731 2.181521 0.6530715 +0.07076883 2.181521 0.6530715 +0.1119241 2.181521 0.6530715 +0.1475052 2.181521 0.6530715 +0.1846606 2.181521 0.6530715 +0.2245119 2.181521 0.6530715 +0.2679612 2.181521 0.6530715 +0.3158431 2.181521 0.6530715 +0.3689944 2.181521 0.6530715 +0.4282948 2.181521 0.6530715 +0.494694 2.181521 0.6530715 +0.5692344 2.181521 0.6530715 +0.6530715 2.181521 0.6530715 +0.7474945 2.181521 0.6530715 +0.8539475 2.181521 0.6530715 +0.974052 2.181521 0.6530715 +1.113885 2.181521 0.6530715 +1.27456 2.181521 0.6530715 +1.458117 2.181521 0.6530715 +1.667858 2.181521 0.6530715 +1.907556 2.181521 0.6530715 +2.181521 2.181521 0.6530715 +2.494678 2.181521 0.6530715 +2.852659 2.181521 0.6530715 +3.261896 2.181521 0.6530715 +3.729748 2.181521 0.6530715 +4.264621 2.181521 0.6530715 +4.876131 2.181521 0.6530715 +5.575266 2.181521 0.6530715 +6.374593 2.181521 0.6530715 +0 2.494678 0.6530715 +0 2.494678 0.6530715 +0 2.494678 0.6530715 +0.002268731 2.494678 0.6530715 +0.07076883 2.494678 0.6530715 +0.1119241 2.494678 0.6530715 +0.1475052 2.494678 0.6530715 +0.1846606 2.494678 0.6530715 +0.2245119 2.494678 0.6530715 +0.2679612 2.494678 0.6530715 +0.3158431 2.494678 0.6530715 +0.3689944 2.494678 0.6530715 +0.4282948 2.494678 0.6530715 +0.494694 2.494678 0.6530715 +0.5692344 2.494678 0.6530715 +0.6530715 2.494678 0.6530715 +0.7474945 2.494678 0.6530715 +0.8539475 2.494678 0.6530715 +0.974052 2.494678 0.6530715 +1.113885 2.494678 0.6530715 +1.27456 2.494678 0.6530715 +1.458117 2.494678 0.6530715 +1.667858 2.494678 0.6530715 +1.907556 2.494678 0.6530715 +2.181521 2.494678 0.6530715 +2.494678 2.494678 0.6530715 +2.852659 2.494678 0.6530715 +3.261896 2.494678 0.6530715 +3.729748 2.494678 0.6530715 +4.264621 2.494678 0.6530715 +4.876131 2.494678 0.6530715 +5.575266 2.494678 0.6530715 +6.374593 2.494678 0.6530715 +0 2.852659 0.6530715 +0 2.852659 0.6530715 +0 2.852659 0.6530715 +0.002268731 2.852659 0.6530715 +0.07076883 2.852659 0.6530715 +0.1119241 2.852659 0.6530715 +0.1475052 2.852659 0.6530715 +0.1846606 2.852659 0.6530715 +0.2245119 2.852659 0.6530715 +0.2679612 2.852659 0.6530715 +0.3158431 2.852659 0.6530715 +0.3689944 2.852659 0.6530715 +0.4282948 2.852659 0.6530715 +0.494694 2.852659 0.6530715 +0.5692344 2.852659 0.6530715 +0.6530715 2.852659 0.6530715 +0.7474945 2.852659 0.6530715 +0.8539475 2.852659 0.6530715 +0.974052 2.852659 0.6530715 +1.113885 2.852659 0.6530715 +1.27456 2.852659 0.6530715 +1.458117 2.852659 0.6530715 +1.667858 2.852659 0.6530715 +1.907556 2.852659 0.6530715 +2.181521 2.852659 0.6530715 +2.494678 2.852659 0.6530715 +2.852659 2.852659 0.6530715 +3.261896 2.852659 0.6530715 +3.729748 2.852659 0.6530715 +4.264621 2.852659 0.6530715 +4.876131 2.852659 0.6530715 +5.575266 2.852659 0.6530715 +6.374593 2.852659 0.6530715 +0 3.261896 0.6530715 +0 3.261896 0.6530715 +0 3.261896 0.6530715 +0.002268731 3.261896 0.6530715 +0.07076883 3.261896 0.6530715 +0.1119241 3.261896 0.6530715 +0.1475052 3.261896 0.6530715 +0.1846606 3.261896 0.6530715 +0.2245119 3.261896 0.6530715 +0.2679612 3.261896 0.6530715 +0.3158431 3.261896 0.6530715 +0.3689944 3.261896 0.6530715 +0.4282948 3.261896 0.6530715 +0.494694 3.261896 0.6530715 +0.5692344 3.261896 0.6530715 +0.6530715 3.261896 0.6530715 +0.7474945 3.261896 0.6530715 +0.8539475 3.261896 0.6530715 +0.974052 3.261896 0.6530715 +1.113885 3.261896 0.6530715 +1.27456 3.261896 0.6530715 +1.458117 3.261896 0.6530715 +1.667858 3.261896 0.6530715 +1.907556 3.261896 0.6530715 +2.181521 3.261896 0.6530715 +2.494678 3.261896 0.6530715 +2.852659 3.261896 0.6530715 +3.261896 3.261896 0.6530715 +3.729748 3.261896 0.6530715 +4.264621 3.261896 0.6530715 +4.876131 3.261896 0.6530715 +5.575266 3.261896 0.6530715 +6.374593 3.261896 0.6530715 +0 3.729748 0.6530715 +0 3.729748 0.6530715 +0 3.729748 0.6530715 +0.002268731 3.729748 0.6530715 +0.07076883 3.729748 0.6530715 +0.1119241 3.729748 0.6530715 +0.1475052 3.729748 0.6530715 +0.1846606 3.729748 0.6530715 +0.2245119 3.729748 0.6530715 +0.2679612 3.729748 0.6530715 +0.3158431 3.729748 0.6530715 +0.3689944 3.729748 0.6530715 +0.4282948 3.729748 0.6530715 +0.494694 3.729748 0.6530715 +0.5692344 3.729748 0.6530715 +0.6530715 3.729748 0.6530715 +0.7474945 3.729748 0.6530715 +0.8539475 3.729748 0.6530715 +0.974052 3.729748 0.6530715 +1.113885 3.729748 0.6530715 +1.27456 3.729748 0.6530715 +1.458117 3.729748 0.6530715 +1.667858 3.729748 0.6530715 +1.907556 3.729748 0.6530715 +2.181521 3.729748 0.6530715 +2.494678 3.729748 0.6530715 +2.852659 3.729748 0.6530715 +3.261896 3.729748 0.6530715 +3.729748 3.729748 0.6530715 +4.264621 3.729748 0.6530715 +4.876131 3.729748 0.6530715 +5.575266 3.729748 0.6530715 +6.374593 3.729748 0.6530715 +0 4.264621 0.6530715 +0 4.264621 0.6530715 +0 4.264621 0.6530715 +0.002268731 4.264621 0.6530715 +0.07076883 4.264621 0.6530715 +0.1119241 4.264621 0.6530715 +0.1475052 4.264621 0.6530715 +0.1846606 4.264621 0.6530715 +0.2245119 4.264621 0.6530715 +0.2679612 4.264621 0.6530715 +0.3158431 4.264621 0.6530715 +0.3689944 4.264621 0.6530715 +0.4282948 4.264621 0.6530715 +0.494694 4.264621 0.6530715 +0.5692344 4.264621 0.6530715 +0.6530715 4.264621 0.6530715 +0.7474945 4.264621 0.6530715 +0.8539475 4.264621 0.6530715 +0.974052 4.264621 0.6530715 +1.113885 4.264621 0.6530715 +1.27456 4.264621 0.6530715 +1.458117 4.264621 0.6530715 +1.667858 4.264621 0.6530715 +1.907556 4.264621 0.6530715 +2.181521 4.264621 0.6530715 +2.494678 4.264621 0.6530715 +2.852659 4.264621 0.6530715 +3.261896 4.264621 0.6530715 +3.729748 4.264621 0.6530715 +4.264621 4.264621 0.6530715 +4.876131 4.264621 0.6530715 +5.575266 4.264621 0.6530715 +6.374593 4.264621 0.6530715 +0 4.876131 0.6530715 +0 4.876131 0.6530715 +0 4.876131 0.6530715 +0.002268731 4.876131 0.6530715 +0.07076883 4.876131 0.6530715 +0.1119241 4.876131 0.6530715 +0.1475052 4.876131 0.6530715 +0.1846606 4.876131 0.6530715 +0.2245119 4.876131 0.6530715 +0.2679612 4.876131 0.6530715 +0.3158431 4.876131 0.6530715 +0.3689944 4.876131 0.6530715 +0.4282948 4.876131 0.6530715 +0.494694 4.876131 0.6530715 +0.5692344 4.876131 0.6530715 +0.6530715 4.876131 0.6530715 +0.7474945 4.876131 0.6530715 +0.8539475 4.876131 0.6530715 +0.974052 4.876131 0.6530715 +1.113885 4.876131 0.6530715 +1.27456 4.876131 0.6530715 +1.458117 4.876131 0.6530715 +1.667858 4.876131 0.6530715 +1.907556 4.876131 0.6530715 +2.181521 4.876131 0.6530715 +2.494678 4.876131 0.6530715 +2.852659 4.876131 0.6530715 +3.261896 4.876131 0.6530715 +3.729748 4.876131 0.6530715 +4.264621 4.876131 0.6530715 +4.876131 4.876131 0.6530715 +5.575266 4.876131 0.6530715 +6.374593 4.876131 0.6530715 +0 5.575266 0.6530715 +0 5.575266 0.6530715 +0 5.575266 0.6530715 +0.002268731 5.575266 0.6530715 +0.07076883 5.575266 0.6530715 +0.1119241 5.575266 0.6530715 +0.1475052 5.575266 0.6530715 +0.1846606 5.575266 0.6530715 +0.2245119 5.575266 0.6530715 +0.2679612 5.575266 0.6530715 +0.3158431 5.575266 0.6530715 +0.3689944 5.575266 0.6530715 +0.4282948 5.575266 0.6530715 +0.494694 5.575266 0.6530715 +0.5692344 5.575266 0.6530715 +0.6530715 5.575266 0.6530715 +0.7474945 5.575266 0.6530715 +0.8539475 5.575266 0.6530715 +0.974052 5.575266 0.6530715 +1.113885 5.575266 0.6530715 +1.27456 5.575266 0.6530715 +1.458117 5.575266 0.6530715 +1.667858 5.575266 0.6530715 +1.907556 5.575266 0.6530715 +2.181521 5.575266 0.6530715 +2.494678 5.575266 0.6530715 +2.852659 5.575266 0.6530715 +3.261896 5.575266 0.6530715 +3.729748 5.575266 0.6530715 +4.264621 5.575266 0.6530715 +4.876131 5.575266 0.6530715 +5.575266 5.575266 0.6530715 +6.374593 5.575266 0.6530715 +0 6.374593 0.6530715 +0 6.374593 0.6530715 +0 6.374593 0.6530715 +0.002268731 6.374593 0.6530715 +0.07076883 6.374593 0.6530715 +0.1119241 6.374593 0.6530715 +0.1475052 6.374593 0.6530715 +0.1846606 6.374593 0.6530715 +0.2245119 6.374593 0.6530715 +0.2679612 6.374593 0.6530715 +0.3158431 6.374593 0.6530715 +0.3689944 6.374593 0.6530715 +0.4282948 6.374593 0.6530715 +0.494694 6.374593 0.6530715 +0.5692344 6.374593 0.6530715 +0.6530715 6.374593 0.6530715 +0.7474945 6.374593 0.6530715 +0.8539475 6.374593 0.6530715 +0.974052 6.374593 0.6530715 +1.113885 6.374593 0.6530715 +1.27456 6.374593 0.6530715 +1.458117 6.374593 0.6530715 +1.667858 6.374593 0.6530715 +1.907556 6.374593 0.6530715 +2.181521 6.374593 0.6530715 +2.494678 6.374593 0.6530715 +2.852659 6.374593 0.6530715 +3.261896 6.374593 0.6530715 +3.729748 6.374593 0.6530715 +4.264621 6.374593 0.6530715 +4.876131 6.374593 0.6530715 +5.575266 6.374593 0.6530715 +6.374593 6.374593 0.6530715 +0 0 0.7474945 +0 0 0.7474945 +0 0 0.7474945 +0.002268731 0 0.7474945 +0.07076883 0 0.7474945 +0.1119241 0 0.7474945 +0.1475052 0 0.7474945 +0.1846606 0 0.7474945 +0.2245119 0 0.7474945 +0.2679612 0 0.7474945 +0.3158431 0 0.7474945 +0.3689944 0 0.7474945 +0.4282948 0 0.7474945 +0.494694 0 0.7474945 +0.5692344 0 0.7474945 +0.6530715 0 0.7474945 +0.7474945 0 0.7474945 +0.8539475 0 0.7474945 +0.974052 0 0.7474945 +1.113885 0 0.7474945 +1.27456 0 0.7474945 +1.458117 0 0.7474945 +1.667858 0 0.7474945 +1.907556 0 0.7474945 +2.181521 0 0.7474945 +2.494678 0 0.7474945 +2.852659 0 0.7474945 +3.261896 0 0.7474945 +3.729748 0 0.7474945 +4.264621 0 0.7474945 +4.876131 0 0.7474945 +5.575266 0 0.7474945 +6.374593 0 0.7474945 +0 0 0.7474945 +0 0 0.7474945 +0 0 0.7474945 +0.002268731 0 0.7474945 +0.07076883 0 0.7474945 +0.1119241 0 0.7474945 +0.1475052 0 0.7474945 +0.1846606 0 0.7474945 +0.2245119 0 0.7474945 +0.2679612 0 0.7474945 +0.3158431 0 0.7474945 +0.3689944 0 0.7474945 +0.4282948 0 0.7474945 +0.494694 0 0.7474945 +0.5692344 0 0.7474945 +0.6530715 0 0.7474945 +0.7474945 0 0.7474945 +0.8539475 0 0.7474945 +0.974052 0 0.7474945 +1.113885 0 0.7474945 +1.27456 0 0.7474945 +1.458117 0 0.7474945 +1.667858 0 0.7474945 +1.907556 0 0.7474945 +2.181521 0 0.7474945 +2.494678 0 0.7474945 +2.852659 0 0.7474945 +3.261896 0 0.7474945 +3.729748 0 0.7474945 +4.264621 0 0.7474945 +4.876131 0 0.7474945 +5.575266 0 0.7474945 +6.374593 0 0.7474945 +0 0 0.7474945 +0 0 0.7474945 +0 0 0.7474945 +0.002268731 0 0.7474945 +0.07076883 0 0.7474945 +0.1119241 0 0.7474945 +0.1475052 0 0.7474945 +0.1846606 0 0.7474945 +0.2245119 0 0.7474945 +0.2679612 0 0.7474945 +0.3158431 0 0.7474945 +0.3689944 0 0.7474945 +0.4282948 0 0.7474945 +0.494694 0 0.7474945 +0.5692344 0 0.7474945 +0.6530715 0 0.7474945 +0.7474945 0 0.7474945 +0.8539475 0 0.7474945 +0.974052 0 0.7474945 +1.113885 0 0.7474945 +1.27456 0 0.7474945 +1.458117 0 0.7474945 +1.667858 0 0.7474945 +1.907556 0 0.7474945 +2.181521 0 0.7474945 +2.494678 0 0.7474945 +2.852659 0 0.7474945 +3.261896 0 0.7474945 +3.729748 0 0.7474945 +4.264621 0 0.7474945 +4.876131 0 0.7474945 +5.575266 0 0.7474945 +6.374593 0 0.7474945 +0 0.002268731 0.7474945 +0 0.002268731 0.7474945 +0 0.002268731 0.7474945 +0.002268731 0.002268731 0.7474945 +0.07076883 0.002268731 0.7474945 +0.1119241 0.002268731 0.7474945 +0.1475052 0.002268731 0.7474945 +0.1846606 0.002268731 0.7474945 +0.2245119 0.002268731 0.7474945 +0.2679612 0.002268731 0.7474945 +0.3158431 0.002268731 0.7474945 +0.3689944 0.002268731 0.7474945 +0.4282948 0.002268731 0.7474945 +0.494694 0.002268731 0.7474945 +0.5692344 0.002268731 0.7474945 +0.6530715 0.002268731 0.7474945 +0.7474945 0.002268731 0.7474945 +0.8539475 0.002268731 0.7474945 +0.974052 0.002268731 0.7474945 +1.113885 0.002268731 0.7474945 +1.27456 0.002268731 0.7474945 +1.458117 0.002268731 0.7474945 +1.667858 0.002268731 0.7474945 +1.907556 0.002268731 0.7474945 +2.181521 0.002268731 0.7474945 +2.494678 0.002268731 0.7474945 +2.852659 0.002268731 0.7474945 +3.261896 0.002268731 0.7474945 +3.729748 0.002268731 0.7474945 +4.264621 0.002268731 0.7474945 +4.876131 0.002268731 0.7474945 +5.575266 0.002268731 0.7474945 +6.374593 0.002268731 0.7474945 +0 0.07076883 0.7474945 +0 0.07076883 0.7474945 +0 0.07076883 0.7474945 +0.002268731 0.07076883 0.7474945 +0.07076883 0.07076883 0.7474945 +0.1119241 0.07076883 0.7474945 +0.1475052 0.07076883 0.7474945 +0.1846606 0.07076883 0.7474945 +0.2245119 0.07076883 0.7474945 +0.2679612 0.07076883 0.7474945 +0.3158431 0.07076883 0.7474945 +0.3689944 0.07076883 0.7474945 +0.4282948 0.07076883 0.7474945 +0.494694 0.07076883 0.7474945 +0.5692344 0.07076883 0.7474945 +0.6530715 0.07076883 0.7474945 +0.7474945 0.07076883 0.7474945 +0.8539475 0.07076883 0.7474945 +0.974052 0.07076883 0.7474945 +1.113885 0.07076883 0.7474945 +1.27456 0.07076883 0.7474945 +1.458117 0.07076883 0.7474945 +1.667858 0.07076883 0.7474945 +1.907556 0.07076883 0.7474945 +2.181521 0.07076883 0.7474945 +2.494678 0.07076883 0.7474945 +2.852659 0.07076883 0.7474945 +3.261896 0.07076883 0.7474945 +3.729748 0.07076883 0.7474945 +4.264621 0.07076883 0.7474945 +4.876131 0.07076883 0.7474945 +5.575266 0.07076883 0.7474945 +6.374593 0.07076883 0.7474945 +0 0.1119241 0.7474945 +0 0.1119241 0.7474945 +0 0.1119241 0.7474945 +0.002268731 0.1119241 0.7474945 +0.07076883 0.1119241 0.7474945 +0.1119241 0.1119241 0.7474945 +0.1475052 0.1119241 0.7474945 +0.1846606 0.1119241 0.7474945 +0.2245119 0.1119241 0.7474945 +0.2679612 0.1119241 0.7474945 +0.3158431 0.1119241 0.7474945 +0.3689944 0.1119241 0.7474945 +0.4282948 0.1119241 0.7474945 +0.494694 0.1119241 0.7474945 +0.5692344 0.1119241 0.7474945 +0.6530715 0.1119241 0.7474945 +0.7474945 0.1119241 0.7474945 +0.8539475 0.1119241 0.7474945 +0.974052 0.1119241 0.7474945 +1.113885 0.1119241 0.7474945 +1.27456 0.1119241 0.7474945 +1.458117 0.1119241 0.7474945 +1.667858 0.1119241 0.7474945 +1.907556 0.1119241 0.7474945 +2.181521 0.1119241 0.7474945 +2.494678 0.1119241 0.7474945 +2.852659 0.1119241 0.7474945 +3.261896 0.1119241 0.7474945 +3.729748 0.1119241 0.7474945 +4.264621 0.1119241 0.7474945 +4.876131 0.1119241 0.7474945 +5.575266 0.1119241 0.7474945 +6.374593 0.1119241 0.7474945 +0 0.1475052 0.7474945 +0 0.1475052 0.7474945 +0 0.1475052 0.7474945 +0.002268731 0.1475052 0.7474945 +0.07076883 0.1475052 0.7474945 +0.1119241 0.1475052 0.7474945 +0.1475052 0.1475052 0.7474945 +0.1846606 0.1475052 0.7474945 +0.2245119 0.1475052 0.7474945 +0.2679612 0.1475052 0.7474945 +0.3158431 0.1475052 0.7474945 +0.3689944 0.1475052 0.7474945 +0.4282948 0.1475052 0.7474945 +0.494694 0.1475052 0.7474945 +0.5692344 0.1475052 0.7474945 +0.6530715 0.1475052 0.7474945 +0.7474945 0.1475052 0.7474945 +0.8539475 0.1475052 0.7474945 +0.974052 0.1475052 0.7474945 +1.113885 0.1475052 0.7474945 +1.27456 0.1475052 0.7474945 +1.458117 0.1475052 0.7474945 +1.667858 0.1475052 0.7474945 +1.907556 0.1475052 0.7474945 +2.181521 0.1475052 0.7474945 +2.494678 0.1475052 0.7474945 +2.852659 0.1475052 0.7474945 +3.261896 0.1475052 0.7474945 +3.729748 0.1475052 0.7474945 +4.264621 0.1475052 0.7474945 +4.876131 0.1475052 0.7474945 +5.575266 0.1475052 0.7474945 +6.374593 0.1475052 0.7474945 +0 0.1846606 0.7474945 +0 0.1846606 0.7474945 +0 0.1846606 0.7474945 +0.002268731 0.1846606 0.7474945 +0.07076883 0.1846606 0.7474945 +0.1119241 0.1846606 0.7474945 +0.1475052 0.1846606 0.7474945 +0.1846606 0.1846606 0.7474945 +0.2245119 0.1846606 0.7474945 +0.2679612 0.1846606 0.7474945 +0.3158431 0.1846606 0.7474945 +0.3689944 0.1846606 0.7474945 +0.4282948 0.1846606 0.7474945 +0.494694 0.1846606 0.7474945 +0.5692344 0.1846606 0.7474945 +0.6530715 0.1846606 0.7474945 +0.7474945 0.1846606 0.7474945 +0.8539475 0.1846606 0.7474945 +0.974052 0.1846606 0.7474945 +1.113885 0.1846606 0.7474945 +1.27456 0.1846606 0.7474945 +1.458117 0.1846606 0.7474945 +1.667858 0.1846606 0.7474945 +1.907556 0.1846606 0.7474945 +2.181521 0.1846606 0.7474945 +2.494678 0.1846606 0.7474945 +2.852659 0.1846606 0.7474945 +3.261896 0.1846606 0.7474945 +3.729748 0.1846606 0.7474945 +4.264621 0.1846606 0.7474945 +4.876131 0.1846606 0.7474945 +5.575266 0.1846606 0.7474945 +6.374593 0.1846606 0.7474945 +0 0.2245119 0.7474945 +0 0.2245119 0.7474945 +0 0.2245119 0.7474945 +0.002268731 0.2245119 0.7474945 +0.07076883 0.2245119 0.7474945 +0.1119241 0.2245119 0.7474945 +0.1475052 0.2245119 0.7474945 +0.1846606 0.2245119 0.7474945 +0.2245119 0.2245119 0.7474945 +0.2679612 0.2245119 0.7474945 +0.3158431 0.2245119 0.7474945 +0.3689944 0.2245119 0.7474945 +0.4282948 0.2245119 0.7474945 +0.494694 0.2245119 0.7474945 +0.5692344 0.2245119 0.7474945 +0.6530715 0.2245119 0.7474945 +0.7474945 0.2245119 0.7474945 +0.8539475 0.2245119 0.7474945 +0.974052 0.2245119 0.7474945 +1.113885 0.2245119 0.7474945 +1.27456 0.2245119 0.7474945 +1.458117 0.2245119 0.7474945 +1.667858 0.2245119 0.7474945 +1.907556 0.2245119 0.7474945 +2.181521 0.2245119 0.7474945 +2.494678 0.2245119 0.7474945 +2.852659 0.2245119 0.7474945 +3.261896 0.2245119 0.7474945 +3.729748 0.2245119 0.7474945 +4.264621 0.2245119 0.7474945 +4.876131 0.2245119 0.7474945 +5.575266 0.2245119 0.7474945 +6.374593 0.2245119 0.7474945 +0 0.2679612 0.7474945 +0 0.2679612 0.7474945 +0 0.2679612 0.7474945 +0.002268731 0.2679612 0.7474945 +0.07076883 0.2679612 0.7474945 +0.1119241 0.2679612 0.7474945 +0.1475052 0.2679612 0.7474945 +0.1846606 0.2679612 0.7474945 +0.2245119 0.2679612 0.7474945 +0.2679612 0.2679612 0.7474945 +0.3158431 0.2679612 0.7474945 +0.3689944 0.2679612 0.7474945 +0.4282948 0.2679612 0.7474945 +0.494694 0.2679612 0.7474945 +0.5692344 0.2679612 0.7474945 +0.6530715 0.2679612 0.7474945 +0.7474945 0.2679612 0.7474945 +0.8539475 0.2679612 0.7474945 +0.974052 0.2679612 0.7474945 +1.113885 0.2679612 0.7474945 +1.27456 0.2679612 0.7474945 +1.458117 0.2679612 0.7474945 +1.667858 0.2679612 0.7474945 +1.907556 0.2679612 0.7474945 +2.181521 0.2679612 0.7474945 +2.494678 0.2679612 0.7474945 +2.852659 0.2679612 0.7474945 +3.261896 0.2679612 0.7474945 +3.729748 0.2679612 0.7474945 +4.264621 0.2679612 0.7474945 +4.876131 0.2679612 0.7474945 +5.575266 0.2679612 0.7474945 +6.374593 0.2679612 0.7474945 +0 0.3158431 0.7474945 +0 0.3158431 0.7474945 +0 0.3158431 0.7474945 +0.002268731 0.3158431 0.7474945 +0.07076883 0.3158431 0.7474945 +0.1119241 0.3158431 0.7474945 +0.1475052 0.3158431 0.7474945 +0.1846606 0.3158431 0.7474945 +0.2245119 0.3158431 0.7474945 +0.2679612 0.3158431 0.7474945 +0.3158431 0.3158431 0.7474945 +0.3689944 0.3158431 0.7474945 +0.4282948 0.3158431 0.7474945 +0.494694 0.3158431 0.7474945 +0.5692344 0.3158431 0.7474945 +0.6530715 0.3158431 0.7474945 +0.7474945 0.3158431 0.7474945 +0.8539475 0.3158431 0.7474945 +0.974052 0.3158431 0.7474945 +1.113885 0.3158431 0.7474945 +1.27456 0.3158431 0.7474945 +1.458117 0.3158431 0.7474945 +1.667858 0.3158431 0.7474945 +1.907556 0.3158431 0.7474945 +2.181521 0.3158431 0.7474945 +2.494678 0.3158431 0.7474945 +2.852659 0.3158431 0.7474945 +3.261896 0.3158431 0.7474945 +3.729748 0.3158431 0.7474945 +4.264621 0.3158431 0.7474945 +4.876131 0.3158431 0.7474945 +5.575266 0.3158431 0.7474945 +6.374593 0.3158431 0.7474945 +0 0.3689944 0.7474945 +0 0.3689944 0.7474945 +0 0.3689944 0.7474945 +0.002268731 0.3689944 0.7474945 +0.07076883 0.3689944 0.7474945 +0.1119241 0.3689944 0.7474945 +0.1475052 0.3689944 0.7474945 +0.1846606 0.3689944 0.7474945 +0.2245119 0.3689944 0.7474945 +0.2679612 0.3689944 0.7474945 +0.3158431 0.3689944 0.7474945 +0.3689944 0.3689944 0.7474945 +0.4282948 0.3689944 0.7474945 +0.494694 0.3689944 0.7474945 +0.5692344 0.3689944 0.7474945 +0.6530715 0.3689944 0.7474945 +0.7474945 0.3689944 0.7474945 +0.8539475 0.3689944 0.7474945 +0.974052 0.3689944 0.7474945 +1.113885 0.3689944 0.7474945 +1.27456 0.3689944 0.7474945 +1.458117 0.3689944 0.7474945 +1.667858 0.3689944 0.7474945 +1.907556 0.3689944 0.7474945 +2.181521 0.3689944 0.7474945 +2.494678 0.3689944 0.7474945 +2.852659 0.3689944 0.7474945 +3.261896 0.3689944 0.7474945 +3.729748 0.3689944 0.7474945 +4.264621 0.3689944 0.7474945 +4.876131 0.3689944 0.7474945 +5.575266 0.3689944 0.7474945 +6.374593 0.3689944 0.7474945 +0 0.4282948 0.7474945 +0 0.4282948 0.7474945 +0 0.4282948 0.7474945 +0.002268731 0.4282948 0.7474945 +0.07076883 0.4282948 0.7474945 +0.1119241 0.4282948 0.7474945 +0.1475052 0.4282948 0.7474945 +0.1846606 0.4282948 0.7474945 +0.2245119 0.4282948 0.7474945 +0.2679612 0.4282948 0.7474945 +0.3158431 0.4282948 0.7474945 +0.3689944 0.4282948 0.7474945 +0.4282948 0.4282948 0.7474945 +0.494694 0.4282948 0.7474945 +0.5692344 0.4282948 0.7474945 +0.6530715 0.4282948 0.7474945 +0.7474945 0.4282948 0.7474945 +0.8539475 0.4282948 0.7474945 +0.974052 0.4282948 0.7474945 +1.113885 0.4282948 0.7474945 +1.27456 0.4282948 0.7474945 +1.458117 0.4282948 0.7474945 +1.667858 0.4282948 0.7474945 +1.907556 0.4282948 0.7474945 +2.181521 0.4282948 0.7474945 +2.494678 0.4282948 0.7474945 +2.852659 0.4282948 0.7474945 +3.261896 0.4282948 0.7474945 +3.729748 0.4282948 0.7474945 +4.264621 0.4282948 0.7474945 +4.876131 0.4282948 0.7474945 +5.575266 0.4282948 0.7474945 +6.374593 0.4282948 0.7474945 +0 0.494694 0.7474945 +0 0.494694 0.7474945 +0 0.494694 0.7474945 +0.002268731 0.494694 0.7474945 +0.07076883 0.494694 0.7474945 +0.1119241 0.494694 0.7474945 +0.1475052 0.494694 0.7474945 +0.1846606 0.494694 0.7474945 +0.2245119 0.494694 0.7474945 +0.2679612 0.494694 0.7474945 +0.3158431 0.494694 0.7474945 +0.3689944 0.494694 0.7474945 +0.4282948 0.494694 0.7474945 +0.494694 0.494694 0.7474945 +0.5692344 0.494694 0.7474945 +0.6530715 0.494694 0.7474945 +0.7474945 0.494694 0.7474945 +0.8539475 0.494694 0.7474945 +0.974052 0.494694 0.7474945 +1.113885 0.494694 0.7474945 +1.27456 0.494694 0.7474945 +1.458117 0.494694 0.7474945 +1.667858 0.494694 0.7474945 +1.907556 0.494694 0.7474945 +2.181521 0.494694 0.7474945 +2.494678 0.494694 0.7474945 +2.852659 0.494694 0.7474945 +3.261896 0.494694 0.7474945 +3.729748 0.494694 0.7474945 +4.264621 0.494694 0.7474945 +4.876131 0.494694 0.7474945 +5.575266 0.494694 0.7474945 +6.374593 0.494694 0.7474945 +0 0.5692344 0.7474945 +0 0.5692344 0.7474945 +0 0.5692344 0.7474945 +0.002268731 0.5692344 0.7474945 +0.07076883 0.5692344 0.7474945 +0.1119241 0.5692344 0.7474945 +0.1475052 0.5692344 0.7474945 +0.1846606 0.5692344 0.7474945 +0.2245119 0.5692344 0.7474945 +0.2679612 0.5692344 0.7474945 +0.3158431 0.5692344 0.7474945 +0.3689944 0.5692344 0.7474945 +0.4282948 0.5692344 0.7474945 +0.494694 0.5692344 0.7474945 +0.5692344 0.5692344 0.7474945 +0.6530715 0.5692344 0.7474945 +0.7474945 0.5692344 0.7474945 +0.8539475 0.5692344 0.7474945 +0.974052 0.5692344 0.7474945 +1.113885 0.5692344 0.7474945 +1.27456 0.5692344 0.7474945 +1.458117 0.5692344 0.7474945 +1.667858 0.5692344 0.7474945 +1.907556 0.5692344 0.7474945 +2.181521 0.5692344 0.7474945 +2.494678 0.5692344 0.7474945 +2.852659 0.5692344 0.7474945 +3.261896 0.5692344 0.7474945 +3.729748 0.5692344 0.7474945 +4.264621 0.5692344 0.7474945 +4.876131 0.5692344 0.7474945 +5.575266 0.5692344 0.7474945 +6.374593 0.5692344 0.7474945 +0 0.6530715 0.7474945 +0 0.6530715 0.7474945 +0 0.6530715 0.7474945 +0.002268731 0.6530715 0.7474945 +0.07076883 0.6530715 0.7474945 +0.1119241 0.6530715 0.7474945 +0.1475052 0.6530715 0.7474945 +0.1846606 0.6530715 0.7474945 +0.2245119 0.6530715 0.7474945 +0.2679612 0.6530715 0.7474945 +0.3158431 0.6530715 0.7474945 +0.3689944 0.6530715 0.7474945 +0.4282948 0.6530715 0.7474945 +0.494694 0.6530715 0.7474945 +0.5692344 0.6530715 0.7474945 +0.6530715 0.6530715 0.7474945 +0.7474945 0.6530715 0.7474945 +0.8539475 0.6530715 0.7474945 +0.974052 0.6530715 0.7474945 +1.113885 0.6530715 0.7474945 +1.27456 0.6530715 0.7474945 +1.458117 0.6530715 0.7474945 +1.667858 0.6530715 0.7474945 +1.907556 0.6530715 0.7474945 +2.181521 0.6530715 0.7474945 +2.494678 0.6530715 0.7474945 +2.852659 0.6530715 0.7474945 +3.261896 0.6530715 0.7474945 +3.729748 0.6530715 0.7474945 +4.264621 0.6530715 0.7474945 +4.876131 0.6530715 0.7474945 +5.575266 0.6530715 0.7474945 +6.374593 0.6530715 0.7474945 +0 0.7474945 0.7474945 +0 0.7474945 0.7474945 +0 0.7474945 0.7474945 +0.002268731 0.7474945 0.7474945 +0.07076883 0.7474945 0.7474945 +0.1119241 0.7474945 0.7474945 +0.1475052 0.7474945 0.7474945 +0.1846606 0.7474945 0.7474945 +0.2245119 0.7474945 0.7474945 +0.2679612 0.7474945 0.7474945 +0.3158431 0.7474945 0.7474945 +0.3689944 0.7474945 0.7474945 +0.4282948 0.7474945 0.7474945 +0.494694 0.7474945 0.7474945 +0.5692344 0.7474945 0.7474945 +0.6530715 0.7474945 0.7474945 +0.7474945 0.7474945 0.7474945 +0.8539475 0.7474945 0.7474945 +0.974052 0.7474945 0.7474945 +1.113885 0.7474945 0.7474945 +1.27456 0.7474945 0.7474945 +1.458117 0.7474945 0.7474945 +1.667858 0.7474945 0.7474945 +1.907556 0.7474945 0.7474945 +2.181521 0.7474945 0.7474945 +2.494678 0.7474945 0.7474945 +2.852659 0.7474945 0.7474945 +3.261896 0.7474945 0.7474945 +3.729748 0.7474945 0.7474945 +4.264621 0.7474945 0.7474945 +4.876131 0.7474945 0.7474945 +5.575266 0.7474945 0.7474945 +6.374593 0.7474945 0.7474945 +0 0.8539475 0.7474945 +0 0.8539475 0.7474945 +0 0.8539475 0.7474945 +0.002268731 0.8539475 0.7474945 +0.07076883 0.8539475 0.7474945 +0.1119241 0.8539475 0.7474945 +0.1475052 0.8539475 0.7474945 +0.1846606 0.8539475 0.7474945 +0.2245119 0.8539475 0.7474945 +0.2679612 0.8539475 0.7474945 +0.3158431 0.8539475 0.7474945 +0.3689944 0.8539475 0.7474945 +0.4282948 0.8539475 0.7474945 +0.494694 0.8539475 0.7474945 +0.5692344 0.8539475 0.7474945 +0.6530715 0.8539475 0.7474945 +0.7474945 0.8539475 0.7474945 +0.8539475 0.8539475 0.7474945 +0.974052 0.8539475 0.7474945 +1.113885 0.8539475 0.7474945 +1.27456 0.8539475 0.7474945 +1.458117 0.8539475 0.7474945 +1.667858 0.8539475 0.7474945 +1.907556 0.8539475 0.7474945 +2.181521 0.8539475 0.7474945 +2.494678 0.8539475 0.7474945 +2.852659 0.8539475 0.7474945 +3.261896 0.8539475 0.7474945 +3.729748 0.8539475 0.7474945 +4.264621 0.8539475 0.7474945 +4.876131 0.8539475 0.7474945 +5.575266 0.8539475 0.7474945 +6.374593 0.8539475 0.7474945 +0 0.974052 0.7474945 +0 0.974052 0.7474945 +0 0.974052 0.7474945 +0.002268731 0.974052 0.7474945 +0.07076883 0.974052 0.7474945 +0.1119241 0.974052 0.7474945 +0.1475052 0.974052 0.7474945 +0.1846606 0.974052 0.7474945 +0.2245119 0.974052 0.7474945 +0.2679612 0.974052 0.7474945 +0.3158431 0.974052 0.7474945 +0.3689944 0.974052 0.7474945 +0.4282948 0.974052 0.7474945 +0.494694 0.974052 0.7474945 +0.5692344 0.974052 0.7474945 +0.6530715 0.974052 0.7474945 +0.7474945 0.974052 0.7474945 +0.8539475 0.974052 0.7474945 +0.974052 0.974052 0.7474945 +1.113885 0.974052 0.7474945 +1.27456 0.974052 0.7474945 +1.458117 0.974052 0.7474945 +1.667858 0.974052 0.7474945 +1.907556 0.974052 0.7474945 +2.181521 0.974052 0.7474945 +2.494678 0.974052 0.7474945 +2.852659 0.974052 0.7474945 +3.261896 0.974052 0.7474945 +3.729748 0.974052 0.7474945 +4.264621 0.974052 0.7474945 +4.876131 0.974052 0.7474945 +5.575266 0.974052 0.7474945 +6.374593 0.974052 0.7474945 +0 1.113885 0.7474945 +0 1.113885 0.7474945 +0 1.113885 0.7474945 +0.002268731 1.113885 0.7474945 +0.07076883 1.113885 0.7474945 +0.1119241 1.113885 0.7474945 +0.1475052 1.113885 0.7474945 +0.1846606 1.113885 0.7474945 +0.2245119 1.113885 0.7474945 +0.2679612 1.113885 0.7474945 +0.3158431 1.113885 0.7474945 +0.3689944 1.113885 0.7474945 +0.4282948 1.113885 0.7474945 +0.494694 1.113885 0.7474945 +0.5692344 1.113885 0.7474945 +0.6530715 1.113885 0.7474945 +0.7474945 1.113885 0.7474945 +0.8539475 1.113885 0.7474945 +0.974052 1.113885 0.7474945 +1.113885 1.113885 0.7474945 +1.27456 1.113885 0.7474945 +1.458117 1.113885 0.7474945 +1.667858 1.113885 0.7474945 +1.907556 1.113885 0.7474945 +2.181521 1.113885 0.7474945 +2.494678 1.113885 0.7474945 +2.852659 1.113885 0.7474945 +3.261896 1.113885 0.7474945 +3.729748 1.113885 0.7474945 +4.264621 1.113885 0.7474945 +4.876131 1.113885 0.7474945 +5.575266 1.113885 0.7474945 +6.374593 1.113885 0.7474945 +0 1.27456 0.7474945 +0 1.27456 0.7474945 +0 1.27456 0.7474945 +0.002268731 1.27456 0.7474945 +0.07076883 1.27456 0.7474945 +0.1119241 1.27456 0.7474945 +0.1475052 1.27456 0.7474945 +0.1846606 1.27456 0.7474945 +0.2245119 1.27456 0.7474945 +0.2679612 1.27456 0.7474945 +0.3158431 1.27456 0.7474945 +0.3689944 1.27456 0.7474945 +0.4282948 1.27456 0.7474945 +0.494694 1.27456 0.7474945 +0.5692344 1.27456 0.7474945 +0.6530715 1.27456 0.7474945 +0.7474945 1.27456 0.7474945 +0.8539475 1.27456 0.7474945 +0.974052 1.27456 0.7474945 +1.113885 1.27456 0.7474945 +1.27456 1.27456 0.7474945 +1.458117 1.27456 0.7474945 +1.667858 1.27456 0.7474945 +1.907556 1.27456 0.7474945 +2.181521 1.27456 0.7474945 +2.494678 1.27456 0.7474945 +2.852659 1.27456 0.7474945 +3.261896 1.27456 0.7474945 +3.729748 1.27456 0.7474945 +4.264621 1.27456 0.7474945 +4.876131 1.27456 0.7474945 +5.575266 1.27456 0.7474945 +6.374593 1.27456 0.7474945 +0 1.458117 0.7474945 +0 1.458117 0.7474945 +0 1.458117 0.7474945 +0.002268731 1.458117 0.7474945 +0.07076883 1.458117 0.7474945 +0.1119241 1.458117 0.7474945 +0.1475052 1.458117 0.7474945 +0.1846606 1.458117 0.7474945 +0.2245119 1.458117 0.7474945 +0.2679612 1.458117 0.7474945 +0.3158431 1.458117 0.7474945 +0.3689944 1.458117 0.7474945 +0.4282948 1.458117 0.7474945 +0.494694 1.458117 0.7474945 +0.5692344 1.458117 0.7474945 +0.6530715 1.458117 0.7474945 +0.7474945 1.458117 0.7474945 +0.8539475 1.458117 0.7474945 +0.974052 1.458117 0.7474945 +1.113885 1.458117 0.7474945 +1.27456 1.458117 0.7474945 +1.458117 1.458117 0.7474945 +1.667858 1.458117 0.7474945 +1.907556 1.458117 0.7474945 +2.181521 1.458117 0.7474945 +2.494678 1.458117 0.7474945 +2.852659 1.458117 0.7474945 +3.261896 1.458117 0.7474945 +3.729748 1.458117 0.7474945 +4.264621 1.458117 0.7474945 +4.876131 1.458117 0.7474945 +5.575266 1.458117 0.7474945 +6.374593 1.458117 0.7474945 +0 1.667858 0.7474945 +0 1.667858 0.7474945 +0 1.667858 0.7474945 +0.002268731 1.667858 0.7474945 +0.07076883 1.667858 0.7474945 +0.1119241 1.667858 0.7474945 +0.1475052 1.667858 0.7474945 +0.1846606 1.667858 0.7474945 +0.2245119 1.667858 0.7474945 +0.2679612 1.667858 0.7474945 +0.3158431 1.667858 0.7474945 +0.3689944 1.667858 0.7474945 +0.4282948 1.667858 0.7474945 +0.494694 1.667858 0.7474945 +0.5692344 1.667858 0.7474945 +0.6530715 1.667858 0.7474945 +0.7474945 1.667858 0.7474945 +0.8539475 1.667858 0.7474945 +0.974052 1.667858 0.7474945 +1.113885 1.667858 0.7474945 +1.27456 1.667858 0.7474945 +1.458117 1.667858 0.7474945 +1.667858 1.667858 0.7474945 +1.907556 1.667858 0.7474945 +2.181521 1.667858 0.7474945 +2.494678 1.667858 0.7474945 +2.852659 1.667858 0.7474945 +3.261896 1.667858 0.7474945 +3.729748 1.667858 0.7474945 +4.264621 1.667858 0.7474945 +4.876131 1.667858 0.7474945 +5.575266 1.667858 0.7474945 +6.374593 1.667858 0.7474945 +0 1.907556 0.7474945 +0 1.907556 0.7474945 +0 1.907556 0.7474945 +0.002268731 1.907556 0.7474945 +0.07076883 1.907556 0.7474945 +0.1119241 1.907556 0.7474945 +0.1475052 1.907556 0.7474945 +0.1846606 1.907556 0.7474945 +0.2245119 1.907556 0.7474945 +0.2679612 1.907556 0.7474945 +0.3158431 1.907556 0.7474945 +0.3689944 1.907556 0.7474945 +0.4282948 1.907556 0.7474945 +0.494694 1.907556 0.7474945 +0.5692344 1.907556 0.7474945 +0.6530715 1.907556 0.7474945 +0.7474945 1.907556 0.7474945 +0.8539475 1.907556 0.7474945 +0.974052 1.907556 0.7474945 +1.113885 1.907556 0.7474945 +1.27456 1.907556 0.7474945 +1.458117 1.907556 0.7474945 +1.667858 1.907556 0.7474945 +1.907556 1.907556 0.7474945 +2.181521 1.907556 0.7474945 +2.494678 1.907556 0.7474945 +2.852659 1.907556 0.7474945 +3.261896 1.907556 0.7474945 +3.729748 1.907556 0.7474945 +4.264621 1.907556 0.7474945 +4.876131 1.907556 0.7474945 +5.575266 1.907556 0.7474945 +6.374593 1.907556 0.7474945 +0 2.181521 0.7474945 +0 2.181521 0.7474945 +0 2.181521 0.7474945 +0.002268731 2.181521 0.7474945 +0.07076883 2.181521 0.7474945 +0.1119241 2.181521 0.7474945 +0.1475052 2.181521 0.7474945 +0.1846606 2.181521 0.7474945 +0.2245119 2.181521 0.7474945 +0.2679612 2.181521 0.7474945 +0.3158431 2.181521 0.7474945 +0.3689944 2.181521 0.7474945 +0.4282948 2.181521 0.7474945 +0.494694 2.181521 0.7474945 +0.5692344 2.181521 0.7474945 +0.6530715 2.181521 0.7474945 +0.7474945 2.181521 0.7474945 +0.8539475 2.181521 0.7474945 +0.974052 2.181521 0.7474945 +1.113885 2.181521 0.7474945 +1.27456 2.181521 0.7474945 +1.458117 2.181521 0.7474945 +1.667858 2.181521 0.7474945 +1.907556 2.181521 0.7474945 +2.181521 2.181521 0.7474945 +2.494678 2.181521 0.7474945 +2.852659 2.181521 0.7474945 +3.261896 2.181521 0.7474945 +3.729748 2.181521 0.7474945 +4.264621 2.181521 0.7474945 +4.876131 2.181521 0.7474945 +5.575266 2.181521 0.7474945 +6.374593 2.181521 0.7474945 +0 2.494678 0.7474945 +0 2.494678 0.7474945 +0 2.494678 0.7474945 +0.002268731 2.494678 0.7474945 +0.07076883 2.494678 0.7474945 +0.1119241 2.494678 0.7474945 +0.1475052 2.494678 0.7474945 +0.1846606 2.494678 0.7474945 +0.2245119 2.494678 0.7474945 +0.2679612 2.494678 0.7474945 +0.3158431 2.494678 0.7474945 +0.3689944 2.494678 0.7474945 +0.4282948 2.494678 0.7474945 +0.494694 2.494678 0.7474945 +0.5692344 2.494678 0.7474945 +0.6530715 2.494678 0.7474945 +0.7474945 2.494678 0.7474945 +0.8539475 2.494678 0.7474945 +0.974052 2.494678 0.7474945 +1.113885 2.494678 0.7474945 +1.27456 2.494678 0.7474945 +1.458117 2.494678 0.7474945 +1.667858 2.494678 0.7474945 +1.907556 2.494678 0.7474945 +2.181521 2.494678 0.7474945 +2.494678 2.494678 0.7474945 +2.852659 2.494678 0.7474945 +3.261896 2.494678 0.7474945 +3.729748 2.494678 0.7474945 +4.264621 2.494678 0.7474945 +4.876131 2.494678 0.7474945 +5.575266 2.494678 0.7474945 +6.374593 2.494678 0.7474945 +0 2.852659 0.7474945 +0 2.852659 0.7474945 +0 2.852659 0.7474945 +0.002268731 2.852659 0.7474945 +0.07076883 2.852659 0.7474945 +0.1119241 2.852659 0.7474945 +0.1475052 2.852659 0.7474945 +0.1846606 2.852659 0.7474945 +0.2245119 2.852659 0.7474945 +0.2679612 2.852659 0.7474945 +0.3158431 2.852659 0.7474945 +0.3689944 2.852659 0.7474945 +0.4282948 2.852659 0.7474945 +0.494694 2.852659 0.7474945 +0.5692344 2.852659 0.7474945 +0.6530715 2.852659 0.7474945 +0.7474945 2.852659 0.7474945 +0.8539475 2.852659 0.7474945 +0.974052 2.852659 0.7474945 +1.113885 2.852659 0.7474945 +1.27456 2.852659 0.7474945 +1.458117 2.852659 0.7474945 +1.667858 2.852659 0.7474945 +1.907556 2.852659 0.7474945 +2.181521 2.852659 0.7474945 +2.494678 2.852659 0.7474945 +2.852659 2.852659 0.7474945 +3.261896 2.852659 0.7474945 +3.729748 2.852659 0.7474945 +4.264621 2.852659 0.7474945 +4.876131 2.852659 0.7474945 +5.575266 2.852659 0.7474945 +6.374593 2.852659 0.7474945 +0 3.261896 0.7474945 +0 3.261896 0.7474945 +0 3.261896 0.7474945 +0.002268731 3.261896 0.7474945 +0.07076883 3.261896 0.7474945 +0.1119241 3.261896 0.7474945 +0.1475052 3.261896 0.7474945 +0.1846606 3.261896 0.7474945 +0.2245119 3.261896 0.7474945 +0.2679612 3.261896 0.7474945 +0.3158431 3.261896 0.7474945 +0.3689944 3.261896 0.7474945 +0.4282948 3.261896 0.7474945 +0.494694 3.261896 0.7474945 +0.5692344 3.261896 0.7474945 +0.6530715 3.261896 0.7474945 +0.7474945 3.261896 0.7474945 +0.8539475 3.261896 0.7474945 +0.974052 3.261896 0.7474945 +1.113885 3.261896 0.7474945 +1.27456 3.261896 0.7474945 +1.458117 3.261896 0.7474945 +1.667858 3.261896 0.7474945 +1.907556 3.261896 0.7474945 +2.181521 3.261896 0.7474945 +2.494678 3.261896 0.7474945 +2.852659 3.261896 0.7474945 +3.261896 3.261896 0.7474945 +3.729748 3.261896 0.7474945 +4.264621 3.261896 0.7474945 +4.876131 3.261896 0.7474945 +5.575266 3.261896 0.7474945 +6.374593 3.261896 0.7474945 +0 3.729748 0.7474945 +0 3.729748 0.7474945 +0 3.729748 0.7474945 +0.002268731 3.729748 0.7474945 +0.07076883 3.729748 0.7474945 +0.1119241 3.729748 0.7474945 +0.1475052 3.729748 0.7474945 +0.1846606 3.729748 0.7474945 +0.2245119 3.729748 0.7474945 +0.2679612 3.729748 0.7474945 +0.3158431 3.729748 0.7474945 +0.3689944 3.729748 0.7474945 +0.4282948 3.729748 0.7474945 +0.494694 3.729748 0.7474945 +0.5692344 3.729748 0.7474945 +0.6530715 3.729748 0.7474945 +0.7474945 3.729748 0.7474945 +0.8539475 3.729748 0.7474945 +0.974052 3.729748 0.7474945 +1.113885 3.729748 0.7474945 +1.27456 3.729748 0.7474945 +1.458117 3.729748 0.7474945 +1.667858 3.729748 0.7474945 +1.907556 3.729748 0.7474945 +2.181521 3.729748 0.7474945 +2.494678 3.729748 0.7474945 +2.852659 3.729748 0.7474945 +3.261896 3.729748 0.7474945 +3.729748 3.729748 0.7474945 +4.264621 3.729748 0.7474945 +4.876131 3.729748 0.7474945 +5.575266 3.729748 0.7474945 +6.374593 3.729748 0.7474945 +0 4.264621 0.7474945 +0 4.264621 0.7474945 +0 4.264621 0.7474945 +0.002268731 4.264621 0.7474945 +0.07076883 4.264621 0.7474945 +0.1119241 4.264621 0.7474945 +0.1475052 4.264621 0.7474945 +0.1846606 4.264621 0.7474945 +0.2245119 4.264621 0.7474945 +0.2679612 4.264621 0.7474945 +0.3158431 4.264621 0.7474945 +0.3689944 4.264621 0.7474945 +0.4282948 4.264621 0.7474945 +0.494694 4.264621 0.7474945 +0.5692344 4.264621 0.7474945 +0.6530715 4.264621 0.7474945 +0.7474945 4.264621 0.7474945 +0.8539475 4.264621 0.7474945 +0.974052 4.264621 0.7474945 +1.113885 4.264621 0.7474945 +1.27456 4.264621 0.7474945 +1.458117 4.264621 0.7474945 +1.667858 4.264621 0.7474945 +1.907556 4.264621 0.7474945 +2.181521 4.264621 0.7474945 +2.494678 4.264621 0.7474945 +2.852659 4.264621 0.7474945 +3.261896 4.264621 0.7474945 +3.729748 4.264621 0.7474945 +4.264621 4.264621 0.7474945 +4.876131 4.264621 0.7474945 +5.575266 4.264621 0.7474945 +6.374593 4.264621 0.7474945 +0 4.876131 0.7474945 +0 4.876131 0.7474945 +0 4.876131 0.7474945 +0.002268731 4.876131 0.7474945 +0.07076883 4.876131 0.7474945 +0.1119241 4.876131 0.7474945 +0.1475052 4.876131 0.7474945 +0.1846606 4.876131 0.7474945 +0.2245119 4.876131 0.7474945 +0.2679612 4.876131 0.7474945 +0.3158431 4.876131 0.7474945 +0.3689944 4.876131 0.7474945 +0.4282948 4.876131 0.7474945 +0.494694 4.876131 0.7474945 +0.5692344 4.876131 0.7474945 +0.6530715 4.876131 0.7474945 +0.7474945 4.876131 0.7474945 +0.8539475 4.876131 0.7474945 +0.974052 4.876131 0.7474945 +1.113885 4.876131 0.7474945 +1.27456 4.876131 0.7474945 +1.458117 4.876131 0.7474945 +1.667858 4.876131 0.7474945 +1.907556 4.876131 0.7474945 +2.181521 4.876131 0.7474945 +2.494678 4.876131 0.7474945 +2.852659 4.876131 0.7474945 +3.261896 4.876131 0.7474945 +3.729748 4.876131 0.7474945 +4.264621 4.876131 0.7474945 +4.876131 4.876131 0.7474945 +5.575266 4.876131 0.7474945 +6.374593 4.876131 0.7474945 +0 5.575266 0.7474945 +0 5.575266 0.7474945 +0 5.575266 0.7474945 +0.002268731 5.575266 0.7474945 +0.07076883 5.575266 0.7474945 +0.1119241 5.575266 0.7474945 +0.1475052 5.575266 0.7474945 +0.1846606 5.575266 0.7474945 +0.2245119 5.575266 0.7474945 +0.2679612 5.575266 0.7474945 +0.3158431 5.575266 0.7474945 +0.3689944 5.575266 0.7474945 +0.4282948 5.575266 0.7474945 +0.494694 5.575266 0.7474945 +0.5692344 5.575266 0.7474945 +0.6530715 5.575266 0.7474945 +0.7474945 5.575266 0.7474945 +0.8539475 5.575266 0.7474945 +0.974052 5.575266 0.7474945 +1.113885 5.575266 0.7474945 +1.27456 5.575266 0.7474945 +1.458117 5.575266 0.7474945 +1.667858 5.575266 0.7474945 +1.907556 5.575266 0.7474945 +2.181521 5.575266 0.7474945 +2.494678 5.575266 0.7474945 +2.852659 5.575266 0.7474945 +3.261896 5.575266 0.7474945 +3.729748 5.575266 0.7474945 +4.264621 5.575266 0.7474945 +4.876131 5.575266 0.7474945 +5.575266 5.575266 0.7474945 +6.374593 5.575266 0.7474945 +0 6.374593 0.7474945 +0 6.374593 0.7474945 +0 6.374593 0.7474945 +0.002268731 6.374593 0.7474945 +0.07076883 6.374593 0.7474945 +0.1119241 6.374593 0.7474945 +0.1475052 6.374593 0.7474945 +0.1846606 6.374593 0.7474945 +0.2245119 6.374593 0.7474945 +0.2679612 6.374593 0.7474945 +0.3158431 6.374593 0.7474945 +0.3689944 6.374593 0.7474945 +0.4282948 6.374593 0.7474945 +0.494694 6.374593 0.7474945 +0.5692344 6.374593 0.7474945 +0.6530715 6.374593 0.7474945 +0.7474945 6.374593 0.7474945 +0.8539475 6.374593 0.7474945 +0.974052 6.374593 0.7474945 +1.113885 6.374593 0.7474945 +1.27456 6.374593 0.7474945 +1.458117 6.374593 0.7474945 +1.667858 6.374593 0.7474945 +1.907556 6.374593 0.7474945 +2.181521 6.374593 0.7474945 +2.494678 6.374593 0.7474945 +2.852659 6.374593 0.7474945 +3.261896 6.374593 0.7474945 +3.729748 6.374593 0.7474945 +4.264621 6.374593 0.7474945 +4.876131 6.374593 0.7474945 +5.575266 6.374593 0.7474945 +6.374593 6.374593 0.7474945 +0 0 0.8539475 +0 0 0.8539475 +0 0 0.8539475 +0.002268731 0 0.8539475 +0.07076883 0 0.8539475 +0.1119241 0 0.8539475 +0.1475052 0 0.8539475 +0.1846606 0 0.8539475 +0.2245119 0 0.8539475 +0.2679612 0 0.8539475 +0.3158431 0 0.8539475 +0.3689944 0 0.8539475 +0.4282948 0 0.8539475 +0.494694 0 0.8539475 +0.5692344 0 0.8539475 +0.6530715 0 0.8539475 +0.7474945 0 0.8539475 +0.8539475 0 0.8539475 +0.974052 0 0.8539475 +1.113885 0 0.8539475 +1.27456 0 0.8539475 +1.458117 0 0.8539475 +1.667858 0 0.8539475 +1.907556 0 0.8539475 +2.181521 0 0.8539475 +2.494678 0 0.8539475 +2.852659 0 0.8539475 +3.261896 0 0.8539475 +3.729748 0 0.8539475 +4.264621 0 0.8539475 +4.876131 0 0.8539475 +5.575266 0 0.8539475 +6.374593 0 0.8539475 +0 0 0.8539475 +0 0 0.8539475 +0 0 0.8539475 +0.002268731 0 0.8539475 +0.07076883 0 0.8539475 +0.1119241 0 0.8539475 +0.1475052 0 0.8539475 +0.1846606 0 0.8539475 +0.2245119 0 0.8539475 +0.2679612 0 0.8539475 +0.3158431 0 0.8539475 +0.3689944 0 0.8539475 +0.4282948 0 0.8539475 +0.494694 0 0.8539475 +0.5692344 0 0.8539475 +0.6530715 0 0.8539475 +0.7474945 0 0.8539475 +0.8539475 0 0.8539475 +0.974052 0 0.8539475 +1.113885 0 0.8539475 +1.27456 0 0.8539475 +1.458117 0 0.8539475 +1.667858 0 0.8539475 +1.907556 0 0.8539475 +2.181521 0 0.8539475 +2.494678 0 0.8539475 +2.852659 0 0.8539475 +3.261896 0 0.8539475 +3.729748 0 0.8539475 +4.264621 0 0.8539475 +4.876131 0 0.8539475 +5.575266 0 0.8539475 +6.374593 0 0.8539475 +0 0 0.8539475 +0 0 0.8539475 +0 0 0.8539475 +0.002268731 0 0.8539475 +0.07076883 0 0.8539475 +0.1119241 0 0.8539475 +0.1475052 0 0.8539475 +0.1846606 0 0.8539475 +0.2245119 0 0.8539475 +0.2679612 0 0.8539475 +0.3158431 0 0.8539475 +0.3689944 0 0.8539475 +0.4282948 0 0.8539475 +0.494694 0 0.8539475 +0.5692344 0 0.8539475 +0.6530715 0 0.8539475 +0.7474945 0 0.8539475 +0.8539475 0 0.8539475 +0.974052 0 0.8539475 +1.113885 0 0.8539475 +1.27456 0 0.8539475 +1.458117 0 0.8539475 +1.667858 0 0.8539475 +1.907556 0 0.8539475 +2.181521 0 0.8539475 +2.494678 0 0.8539475 +2.852659 0 0.8539475 +3.261896 0 0.8539475 +3.729748 0 0.8539475 +4.264621 0 0.8539475 +4.876131 0 0.8539475 +5.575266 0 0.8539475 +6.374593 0 0.8539475 +0 0.002268731 0.8539475 +0 0.002268731 0.8539475 +0 0.002268731 0.8539475 +0.002268731 0.002268731 0.8539475 +0.07076883 0.002268731 0.8539475 +0.1119241 0.002268731 0.8539475 +0.1475052 0.002268731 0.8539475 +0.1846606 0.002268731 0.8539475 +0.2245119 0.002268731 0.8539475 +0.2679612 0.002268731 0.8539475 +0.3158431 0.002268731 0.8539475 +0.3689944 0.002268731 0.8539475 +0.4282948 0.002268731 0.8539475 +0.494694 0.002268731 0.8539475 +0.5692344 0.002268731 0.8539475 +0.6530715 0.002268731 0.8539475 +0.7474945 0.002268731 0.8539475 +0.8539475 0.002268731 0.8539475 +0.974052 0.002268731 0.8539475 +1.113885 0.002268731 0.8539475 +1.27456 0.002268731 0.8539475 +1.458117 0.002268731 0.8539475 +1.667858 0.002268731 0.8539475 +1.907556 0.002268731 0.8539475 +2.181521 0.002268731 0.8539475 +2.494678 0.002268731 0.8539475 +2.852659 0.002268731 0.8539475 +3.261896 0.002268731 0.8539475 +3.729748 0.002268731 0.8539475 +4.264621 0.002268731 0.8539475 +4.876131 0.002268731 0.8539475 +5.575266 0.002268731 0.8539475 +6.374593 0.002268731 0.8539475 +0 0.07076883 0.8539475 +0 0.07076883 0.8539475 +0 0.07076883 0.8539475 +0.002268731 0.07076883 0.8539475 +0.07076883 0.07076883 0.8539475 +0.1119241 0.07076883 0.8539475 +0.1475052 0.07076883 0.8539475 +0.1846606 0.07076883 0.8539475 +0.2245119 0.07076883 0.8539475 +0.2679612 0.07076883 0.8539475 +0.3158431 0.07076883 0.8539475 +0.3689944 0.07076883 0.8539475 +0.4282948 0.07076883 0.8539475 +0.494694 0.07076883 0.8539475 +0.5692344 0.07076883 0.8539475 +0.6530715 0.07076883 0.8539475 +0.7474945 0.07076883 0.8539475 +0.8539475 0.07076883 0.8539475 +0.974052 0.07076883 0.8539475 +1.113885 0.07076883 0.8539475 +1.27456 0.07076883 0.8539475 +1.458117 0.07076883 0.8539475 +1.667858 0.07076883 0.8539475 +1.907556 0.07076883 0.8539475 +2.181521 0.07076883 0.8539475 +2.494678 0.07076883 0.8539475 +2.852659 0.07076883 0.8539475 +3.261896 0.07076883 0.8539475 +3.729748 0.07076883 0.8539475 +4.264621 0.07076883 0.8539475 +4.876131 0.07076883 0.8539475 +5.575266 0.07076883 0.8539475 +6.374593 0.07076883 0.8539475 +0 0.1119241 0.8539475 +0 0.1119241 0.8539475 +0 0.1119241 0.8539475 +0.002268731 0.1119241 0.8539475 +0.07076883 0.1119241 0.8539475 +0.1119241 0.1119241 0.8539475 +0.1475052 0.1119241 0.8539475 +0.1846606 0.1119241 0.8539475 +0.2245119 0.1119241 0.8539475 +0.2679612 0.1119241 0.8539475 +0.3158431 0.1119241 0.8539475 +0.3689944 0.1119241 0.8539475 +0.4282948 0.1119241 0.8539475 +0.494694 0.1119241 0.8539475 +0.5692344 0.1119241 0.8539475 +0.6530715 0.1119241 0.8539475 +0.7474945 0.1119241 0.8539475 +0.8539475 0.1119241 0.8539475 +0.974052 0.1119241 0.8539475 +1.113885 0.1119241 0.8539475 +1.27456 0.1119241 0.8539475 +1.458117 0.1119241 0.8539475 +1.667858 0.1119241 0.8539475 +1.907556 0.1119241 0.8539475 +2.181521 0.1119241 0.8539475 +2.494678 0.1119241 0.8539475 +2.852659 0.1119241 0.8539475 +3.261896 0.1119241 0.8539475 +3.729748 0.1119241 0.8539475 +4.264621 0.1119241 0.8539475 +4.876131 0.1119241 0.8539475 +5.575266 0.1119241 0.8539475 +6.374593 0.1119241 0.8539475 +0 0.1475052 0.8539475 +0 0.1475052 0.8539475 +0 0.1475052 0.8539475 +0.002268731 0.1475052 0.8539475 +0.07076883 0.1475052 0.8539475 +0.1119241 0.1475052 0.8539475 +0.1475052 0.1475052 0.8539475 +0.1846606 0.1475052 0.8539475 +0.2245119 0.1475052 0.8539475 +0.2679612 0.1475052 0.8539475 +0.3158431 0.1475052 0.8539475 +0.3689944 0.1475052 0.8539475 +0.4282948 0.1475052 0.8539475 +0.494694 0.1475052 0.8539475 +0.5692344 0.1475052 0.8539475 +0.6530715 0.1475052 0.8539475 +0.7474945 0.1475052 0.8539475 +0.8539475 0.1475052 0.8539475 +0.974052 0.1475052 0.8539475 +1.113885 0.1475052 0.8539475 +1.27456 0.1475052 0.8539475 +1.458117 0.1475052 0.8539475 +1.667858 0.1475052 0.8539475 +1.907556 0.1475052 0.8539475 +2.181521 0.1475052 0.8539475 +2.494678 0.1475052 0.8539475 +2.852659 0.1475052 0.8539475 +3.261896 0.1475052 0.8539475 +3.729748 0.1475052 0.8539475 +4.264621 0.1475052 0.8539475 +4.876131 0.1475052 0.8539475 +5.575266 0.1475052 0.8539475 +6.374593 0.1475052 0.8539475 +0 0.1846606 0.8539475 +0 0.1846606 0.8539475 +0 0.1846606 0.8539475 +0.002268731 0.1846606 0.8539475 +0.07076883 0.1846606 0.8539475 +0.1119241 0.1846606 0.8539475 +0.1475052 0.1846606 0.8539475 +0.1846606 0.1846606 0.8539475 +0.2245119 0.1846606 0.8539475 +0.2679612 0.1846606 0.8539475 +0.3158431 0.1846606 0.8539475 +0.3689944 0.1846606 0.8539475 +0.4282948 0.1846606 0.8539475 +0.494694 0.1846606 0.8539475 +0.5692344 0.1846606 0.8539475 +0.6530715 0.1846606 0.8539475 +0.7474945 0.1846606 0.8539475 +0.8539475 0.1846606 0.8539475 +0.974052 0.1846606 0.8539475 +1.113885 0.1846606 0.8539475 +1.27456 0.1846606 0.8539475 +1.458117 0.1846606 0.8539475 +1.667858 0.1846606 0.8539475 +1.907556 0.1846606 0.8539475 +2.181521 0.1846606 0.8539475 +2.494678 0.1846606 0.8539475 +2.852659 0.1846606 0.8539475 +3.261896 0.1846606 0.8539475 +3.729748 0.1846606 0.8539475 +4.264621 0.1846606 0.8539475 +4.876131 0.1846606 0.8539475 +5.575266 0.1846606 0.8539475 +6.374593 0.1846606 0.8539475 +0 0.2245119 0.8539475 +0 0.2245119 0.8539475 +0 0.2245119 0.8539475 +0.002268731 0.2245119 0.8539475 +0.07076883 0.2245119 0.8539475 +0.1119241 0.2245119 0.8539475 +0.1475052 0.2245119 0.8539475 +0.1846606 0.2245119 0.8539475 +0.2245119 0.2245119 0.8539475 +0.2679612 0.2245119 0.8539475 +0.3158431 0.2245119 0.8539475 +0.3689944 0.2245119 0.8539475 +0.4282948 0.2245119 0.8539475 +0.494694 0.2245119 0.8539475 +0.5692344 0.2245119 0.8539475 +0.6530715 0.2245119 0.8539475 +0.7474945 0.2245119 0.8539475 +0.8539475 0.2245119 0.8539475 +0.974052 0.2245119 0.8539475 +1.113885 0.2245119 0.8539475 +1.27456 0.2245119 0.8539475 +1.458117 0.2245119 0.8539475 +1.667858 0.2245119 0.8539475 +1.907556 0.2245119 0.8539475 +2.181521 0.2245119 0.8539475 +2.494678 0.2245119 0.8539475 +2.852659 0.2245119 0.8539475 +3.261896 0.2245119 0.8539475 +3.729748 0.2245119 0.8539475 +4.264621 0.2245119 0.8539475 +4.876131 0.2245119 0.8539475 +5.575266 0.2245119 0.8539475 +6.374593 0.2245119 0.8539475 +0 0.2679612 0.8539475 +0 0.2679612 0.8539475 +0 0.2679612 0.8539475 +0.002268731 0.2679612 0.8539475 +0.07076883 0.2679612 0.8539475 +0.1119241 0.2679612 0.8539475 +0.1475052 0.2679612 0.8539475 +0.1846606 0.2679612 0.8539475 +0.2245119 0.2679612 0.8539475 +0.2679612 0.2679612 0.8539475 +0.3158431 0.2679612 0.8539475 +0.3689944 0.2679612 0.8539475 +0.4282948 0.2679612 0.8539475 +0.494694 0.2679612 0.8539475 +0.5692344 0.2679612 0.8539475 +0.6530715 0.2679612 0.8539475 +0.7474945 0.2679612 0.8539475 +0.8539475 0.2679612 0.8539475 +0.974052 0.2679612 0.8539475 +1.113885 0.2679612 0.8539475 +1.27456 0.2679612 0.8539475 +1.458117 0.2679612 0.8539475 +1.667858 0.2679612 0.8539475 +1.907556 0.2679612 0.8539475 +2.181521 0.2679612 0.8539475 +2.494678 0.2679612 0.8539475 +2.852659 0.2679612 0.8539475 +3.261896 0.2679612 0.8539475 +3.729748 0.2679612 0.8539475 +4.264621 0.2679612 0.8539475 +4.876131 0.2679612 0.8539475 +5.575266 0.2679612 0.8539475 +6.374593 0.2679612 0.8539475 +0 0.3158431 0.8539475 +0 0.3158431 0.8539475 +0 0.3158431 0.8539475 +0.002268731 0.3158431 0.8539475 +0.07076883 0.3158431 0.8539475 +0.1119241 0.3158431 0.8539475 +0.1475052 0.3158431 0.8539475 +0.1846606 0.3158431 0.8539475 +0.2245119 0.3158431 0.8539475 +0.2679612 0.3158431 0.8539475 +0.3158431 0.3158431 0.8539475 +0.3689944 0.3158431 0.8539475 +0.4282948 0.3158431 0.8539475 +0.494694 0.3158431 0.8539475 +0.5692344 0.3158431 0.8539475 +0.6530715 0.3158431 0.8539475 +0.7474945 0.3158431 0.8539475 +0.8539475 0.3158431 0.8539475 +0.974052 0.3158431 0.8539475 +1.113885 0.3158431 0.8539475 +1.27456 0.3158431 0.8539475 +1.458117 0.3158431 0.8539475 +1.667858 0.3158431 0.8539475 +1.907556 0.3158431 0.8539475 +2.181521 0.3158431 0.8539475 +2.494678 0.3158431 0.8539475 +2.852659 0.3158431 0.8539475 +3.261896 0.3158431 0.8539475 +3.729748 0.3158431 0.8539475 +4.264621 0.3158431 0.8539475 +4.876131 0.3158431 0.8539475 +5.575266 0.3158431 0.8539475 +6.374593 0.3158431 0.8539475 +0 0.3689944 0.8539475 +0 0.3689944 0.8539475 +0 0.3689944 0.8539475 +0.002268731 0.3689944 0.8539475 +0.07076883 0.3689944 0.8539475 +0.1119241 0.3689944 0.8539475 +0.1475052 0.3689944 0.8539475 +0.1846606 0.3689944 0.8539475 +0.2245119 0.3689944 0.8539475 +0.2679612 0.3689944 0.8539475 +0.3158431 0.3689944 0.8539475 +0.3689944 0.3689944 0.8539475 +0.4282948 0.3689944 0.8539475 +0.494694 0.3689944 0.8539475 +0.5692344 0.3689944 0.8539475 +0.6530715 0.3689944 0.8539475 +0.7474945 0.3689944 0.8539475 +0.8539475 0.3689944 0.8539475 +0.974052 0.3689944 0.8539475 +1.113885 0.3689944 0.8539475 +1.27456 0.3689944 0.8539475 +1.458117 0.3689944 0.8539475 +1.667858 0.3689944 0.8539475 +1.907556 0.3689944 0.8539475 +2.181521 0.3689944 0.8539475 +2.494678 0.3689944 0.8539475 +2.852659 0.3689944 0.8539475 +3.261896 0.3689944 0.8539475 +3.729748 0.3689944 0.8539475 +4.264621 0.3689944 0.8539475 +4.876131 0.3689944 0.8539475 +5.575266 0.3689944 0.8539475 +6.374593 0.3689944 0.8539475 +0 0.4282948 0.8539475 +0 0.4282948 0.8539475 +0 0.4282948 0.8539475 +0.002268731 0.4282948 0.8539475 +0.07076883 0.4282948 0.8539475 +0.1119241 0.4282948 0.8539475 +0.1475052 0.4282948 0.8539475 +0.1846606 0.4282948 0.8539475 +0.2245119 0.4282948 0.8539475 +0.2679612 0.4282948 0.8539475 +0.3158431 0.4282948 0.8539475 +0.3689944 0.4282948 0.8539475 +0.4282948 0.4282948 0.8539475 +0.494694 0.4282948 0.8539475 +0.5692344 0.4282948 0.8539475 +0.6530715 0.4282948 0.8539475 +0.7474945 0.4282948 0.8539475 +0.8539475 0.4282948 0.8539475 +0.974052 0.4282948 0.8539475 +1.113885 0.4282948 0.8539475 +1.27456 0.4282948 0.8539475 +1.458117 0.4282948 0.8539475 +1.667858 0.4282948 0.8539475 +1.907556 0.4282948 0.8539475 +2.181521 0.4282948 0.8539475 +2.494678 0.4282948 0.8539475 +2.852659 0.4282948 0.8539475 +3.261896 0.4282948 0.8539475 +3.729748 0.4282948 0.8539475 +4.264621 0.4282948 0.8539475 +4.876131 0.4282948 0.8539475 +5.575266 0.4282948 0.8539475 +6.374593 0.4282948 0.8539475 +0 0.494694 0.8539475 +0 0.494694 0.8539475 +0 0.494694 0.8539475 +0.002268731 0.494694 0.8539475 +0.07076883 0.494694 0.8539475 +0.1119241 0.494694 0.8539475 +0.1475052 0.494694 0.8539475 +0.1846606 0.494694 0.8539475 +0.2245119 0.494694 0.8539475 +0.2679612 0.494694 0.8539475 +0.3158431 0.494694 0.8539475 +0.3689944 0.494694 0.8539475 +0.4282948 0.494694 0.8539475 +0.494694 0.494694 0.8539475 +0.5692344 0.494694 0.8539475 +0.6530715 0.494694 0.8539475 +0.7474945 0.494694 0.8539475 +0.8539475 0.494694 0.8539475 +0.974052 0.494694 0.8539475 +1.113885 0.494694 0.8539475 +1.27456 0.494694 0.8539475 +1.458117 0.494694 0.8539475 +1.667858 0.494694 0.8539475 +1.907556 0.494694 0.8539475 +2.181521 0.494694 0.8539475 +2.494678 0.494694 0.8539475 +2.852659 0.494694 0.8539475 +3.261896 0.494694 0.8539475 +3.729748 0.494694 0.8539475 +4.264621 0.494694 0.8539475 +4.876131 0.494694 0.8539475 +5.575266 0.494694 0.8539475 +6.374593 0.494694 0.8539475 +0 0.5692344 0.8539475 +0 0.5692344 0.8539475 +0 0.5692344 0.8539475 +0.002268731 0.5692344 0.8539475 +0.07076883 0.5692344 0.8539475 +0.1119241 0.5692344 0.8539475 +0.1475052 0.5692344 0.8539475 +0.1846606 0.5692344 0.8539475 +0.2245119 0.5692344 0.8539475 +0.2679612 0.5692344 0.8539475 +0.3158431 0.5692344 0.8539475 +0.3689944 0.5692344 0.8539475 +0.4282948 0.5692344 0.8539475 +0.494694 0.5692344 0.8539475 +0.5692344 0.5692344 0.8539475 +0.6530715 0.5692344 0.8539475 +0.7474945 0.5692344 0.8539475 +0.8539475 0.5692344 0.8539475 +0.974052 0.5692344 0.8539475 +1.113885 0.5692344 0.8539475 +1.27456 0.5692344 0.8539475 +1.458117 0.5692344 0.8539475 +1.667858 0.5692344 0.8539475 +1.907556 0.5692344 0.8539475 +2.181521 0.5692344 0.8539475 +2.494678 0.5692344 0.8539475 +2.852659 0.5692344 0.8539475 +3.261896 0.5692344 0.8539475 +3.729748 0.5692344 0.8539475 +4.264621 0.5692344 0.8539475 +4.876131 0.5692344 0.8539475 +5.575266 0.5692344 0.8539475 +6.374593 0.5692344 0.8539475 +0 0.6530715 0.8539475 +0 0.6530715 0.8539475 +0 0.6530715 0.8539475 +0.002268731 0.6530715 0.8539475 +0.07076883 0.6530715 0.8539475 +0.1119241 0.6530715 0.8539475 +0.1475052 0.6530715 0.8539475 +0.1846606 0.6530715 0.8539475 +0.2245119 0.6530715 0.8539475 +0.2679612 0.6530715 0.8539475 +0.3158431 0.6530715 0.8539475 +0.3689944 0.6530715 0.8539475 +0.4282948 0.6530715 0.8539475 +0.494694 0.6530715 0.8539475 +0.5692344 0.6530715 0.8539475 +0.6530715 0.6530715 0.8539475 +0.7474945 0.6530715 0.8539475 +0.8539475 0.6530715 0.8539475 +0.974052 0.6530715 0.8539475 +1.113885 0.6530715 0.8539475 +1.27456 0.6530715 0.8539475 +1.458117 0.6530715 0.8539475 +1.667858 0.6530715 0.8539475 +1.907556 0.6530715 0.8539475 +2.181521 0.6530715 0.8539475 +2.494678 0.6530715 0.8539475 +2.852659 0.6530715 0.8539475 +3.261896 0.6530715 0.8539475 +3.729748 0.6530715 0.8539475 +4.264621 0.6530715 0.8539475 +4.876131 0.6530715 0.8539475 +5.575266 0.6530715 0.8539475 +6.374593 0.6530715 0.8539475 +0 0.7474945 0.8539475 +0 0.7474945 0.8539475 +0 0.7474945 0.8539475 +0.002268731 0.7474945 0.8539475 +0.07076883 0.7474945 0.8539475 +0.1119241 0.7474945 0.8539475 +0.1475052 0.7474945 0.8539475 +0.1846606 0.7474945 0.8539475 +0.2245119 0.7474945 0.8539475 +0.2679612 0.7474945 0.8539475 +0.3158431 0.7474945 0.8539475 +0.3689944 0.7474945 0.8539475 +0.4282948 0.7474945 0.8539475 +0.494694 0.7474945 0.8539475 +0.5692344 0.7474945 0.8539475 +0.6530715 0.7474945 0.8539475 +0.7474945 0.7474945 0.8539475 +0.8539475 0.7474945 0.8539475 +0.974052 0.7474945 0.8539475 +1.113885 0.7474945 0.8539475 +1.27456 0.7474945 0.8539475 +1.458117 0.7474945 0.8539475 +1.667858 0.7474945 0.8539475 +1.907556 0.7474945 0.8539475 +2.181521 0.7474945 0.8539475 +2.494678 0.7474945 0.8539475 +2.852659 0.7474945 0.8539475 +3.261896 0.7474945 0.8539475 +3.729748 0.7474945 0.8539475 +4.264621 0.7474945 0.8539475 +4.876131 0.7474945 0.8539475 +5.575266 0.7474945 0.8539475 +6.374593 0.7474945 0.8539475 +0 0.8539475 0.8539475 +0 0.8539475 0.8539475 +0 0.8539475 0.8539475 +0.002268731 0.8539475 0.8539475 +0.07076883 0.8539475 0.8539475 +0.1119241 0.8539475 0.8539475 +0.1475052 0.8539475 0.8539475 +0.1846606 0.8539475 0.8539475 +0.2245119 0.8539475 0.8539475 +0.2679612 0.8539475 0.8539475 +0.3158431 0.8539475 0.8539475 +0.3689944 0.8539475 0.8539475 +0.4282948 0.8539475 0.8539475 +0.494694 0.8539475 0.8539475 +0.5692344 0.8539475 0.8539475 +0.6530715 0.8539475 0.8539475 +0.7474945 0.8539475 0.8539475 +0.8539475 0.8539475 0.8539475 +0.974052 0.8539475 0.8539475 +1.113885 0.8539475 0.8539475 +1.27456 0.8539475 0.8539475 +1.458117 0.8539475 0.8539475 +1.667858 0.8539475 0.8539475 +1.907556 0.8539475 0.8539475 +2.181521 0.8539475 0.8539475 +2.494678 0.8539475 0.8539475 +2.852659 0.8539475 0.8539475 +3.261896 0.8539475 0.8539475 +3.729748 0.8539475 0.8539475 +4.264621 0.8539475 0.8539475 +4.876131 0.8539475 0.8539475 +5.575266 0.8539475 0.8539475 +6.374593 0.8539475 0.8539475 +0 0.974052 0.8539475 +0 0.974052 0.8539475 +0 0.974052 0.8539475 +0.002268731 0.974052 0.8539475 +0.07076883 0.974052 0.8539475 +0.1119241 0.974052 0.8539475 +0.1475052 0.974052 0.8539475 +0.1846606 0.974052 0.8539475 +0.2245119 0.974052 0.8539475 +0.2679612 0.974052 0.8539475 +0.3158431 0.974052 0.8539475 +0.3689944 0.974052 0.8539475 +0.4282948 0.974052 0.8539475 +0.494694 0.974052 0.8539475 +0.5692344 0.974052 0.8539475 +0.6530715 0.974052 0.8539475 +0.7474945 0.974052 0.8539475 +0.8539475 0.974052 0.8539475 +0.974052 0.974052 0.8539475 +1.113885 0.974052 0.8539475 +1.27456 0.974052 0.8539475 +1.458117 0.974052 0.8539475 +1.667858 0.974052 0.8539475 +1.907556 0.974052 0.8539475 +2.181521 0.974052 0.8539475 +2.494678 0.974052 0.8539475 +2.852659 0.974052 0.8539475 +3.261896 0.974052 0.8539475 +3.729748 0.974052 0.8539475 +4.264621 0.974052 0.8539475 +4.876131 0.974052 0.8539475 +5.575266 0.974052 0.8539475 +6.374593 0.974052 0.8539475 +0 1.113885 0.8539475 +0 1.113885 0.8539475 +0 1.113885 0.8539475 +0.002268731 1.113885 0.8539475 +0.07076883 1.113885 0.8539475 +0.1119241 1.113885 0.8539475 +0.1475052 1.113885 0.8539475 +0.1846606 1.113885 0.8539475 +0.2245119 1.113885 0.8539475 +0.2679612 1.113885 0.8539475 +0.3158431 1.113885 0.8539475 +0.3689944 1.113885 0.8539475 +0.4282948 1.113885 0.8539475 +0.494694 1.113885 0.8539475 +0.5692344 1.113885 0.8539475 +0.6530715 1.113885 0.8539475 +0.7474945 1.113885 0.8539475 +0.8539475 1.113885 0.8539475 +0.974052 1.113885 0.8539475 +1.113885 1.113885 0.8539475 +1.27456 1.113885 0.8539475 +1.458117 1.113885 0.8539475 +1.667858 1.113885 0.8539475 +1.907556 1.113885 0.8539475 +2.181521 1.113885 0.8539475 +2.494678 1.113885 0.8539475 +2.852659 1.113885 0.8539475 +3.261896 1.113885 0.8539475 +3.729748 1.113885 0.8539475 +4.264621 1.113885 0.8539475 +4.876131 1.113885 0.8539475 +5.575266 1.113885 0.8539475 +6.374593 1.113885 0.8539475 +0 1.27456 0.8539475 +0 1.27456 0.8539475 +0 1.27456 0.8539475 +0.002268731 1.27456 0.8539475 +0.07076883 1.27456 0.8539475 +0.1119241 1.27456 0.8539475 +0.1475052 1.27456 0.8539475 +0.1846606 1.27456 0.8539475 +0.2245119 1.27456 0.8539475 +0.2679612 1.27456 0.8539475 +0.3158431 1.27456 0.8539475 +0.3689944 1.27456 0.8539475 +0.4282948 1.27456 0.8539475 +0.494694 1.27456 0.8539475 +0.5692344 1.27456 0.8539475 +0.6530715 1.27456 0.8539475 +0.7474945 1.27456 0.8539475 +0.8539475 1.27456 0.8539475 +0.974052 1.27456 0.8539475 +1.113885 1.27456 0.8539475 +1.27456 1.27456 0.8539475 +1.458117 1.27456 0.8539475 +1.667858 1.27456 0.8539475 +1.907556 1.27456 0.8539475 +2.181521 1.27456 0.8539475 +2.494678 1.27456 0.8539475 +2.852659 1.27456 0.8539475 +3.261896 1.27456 0.8539475 +3.729748 1.27456 0.8539475 +4.264621 1.27456 0.8539475 +4.876131 1.27456 0.8539475 +5.575266 1.27456 0.8539475 +6.374593 1.27456 0.8539475 +0 1.458117 0.8539475 +0 1.458117 0.8539475 +0 1.458117 0.8539475 +0.002268731 1.458117 0.8539475 +0.07076883 1.458117 0.8539475 +0.1119241 1.458117 0.8539475 +0.1475052 1.458117 0.8539475 +0.1846606 1.458117 0.8539475 +0.2245119 1.458117 0.8539475 +0.2679612 1.458117 0.8539475 +0.3158431 1.458117 0.8539475 +0.3689944 1.458117 0.8539475 +0.4282948 1.458117 0.8539475 +0.494694 1.458117 0.8539475 +0.5692344 1.458117 0.8539475 +0.6530715 1.458117 0.8539475 +0.7474945 1.458117 0.8539475 +0.8539475 1.458117 0.8539475 +0.974052 1.458117 0.8539475 +1.113885 1.458117 0.8539475 +1.27456 1.458117 0.8539475 +1.458117 1.458117 0.8539475 +1.667858 1.458117 0.8539475 +1.907556 1.458117 0.8539475 +2.181521 1.458117 0.8539475 +2.494678 1.458117 0.8539475 +2.852659 1.458117 0.8539475 +3.261896 1.458117 0.8539475 +3.729748 1.458117 0.8539475 +4.264621 1.458117 0.8539475 +4.876131 1.458117 0.8539475 +5.575266 1.458117 0.8539475 +6.374593 1.458117 0.8539475 +0 1.667858 0.8539475 +0 1.667858 0.8539475 +0 1.667858 0.8539475 +0.002268731 1.667858 0.8539475 +0.07076883 1.667858 0.8539475 +0.1119241 1.667858 0.8539475 +0.1475052 1.667858 0.8539475 +0.1846606 1.667858 0.8539475 +0.2245119 1.667858 0.8539475 +0.2679612 1.667858 0.8539475 +0.3158431 1.667858 0.8539475 +0.3689944 1.667858 0.8539475 +0.4282948 1.667858 0.8539475 +0.494694 1.667858 0.8539475 +0.5692344 1.667858 0.8539475 +0.6530715 1.667858 0.8539475 +0.7474945 1.667858 0.8539475 +0.8539475 1.667858 0.8539475 +0.974052 1.667858 0.8539475 +1.113885 1.667858 0.8539475 +1.27456 1.667858 0.8539475 +1.458117 1.667858 0.8539475 +1.667858 1.667858 0.8539475 +1.907556 1.667858 0.8539475 +2.181521 1.667858 0.8539475 +2.494678 1.667858 0.8539475 +2.852659 1.667858 0.8539475 +3.261896 1.667858 0.8539475 +3.729748 1.667858 0.8539475 +4.264621 1.667858 0.8539475 +4.876131 1.667858 0.8539475 +5.575266 1.667858 0.8539475 +6.374593 1.667858 0.8539475 +0 1.907556 0.8539475 +0 1.907556 0.8539475 +0 1.907556 0.8539475 +0.002268731 1.907556 0.8539475 +0.07076883 1.907556 0.8539475 +0.1119241 1.907556 0.8539475 +0.1475052 1.907556 0.8539475 +0.1846606 1.907556 0.8539475 +0.2245119 1.907556 0.8539475 +0.2679612 1.907556 0.8539475 +0.3158431 1.907556 0.8539475 +0.3689944 1.907556 0.8539475 +0.4282948 1.907556 0.8539475 +0.494694 1.907556 0.8539475 +0.5692344 1.907556 0.8539475 +0.6530715 1.907556 0.8539475 +0.7474945 1.907556 0.8539475 +0.8539475 1.907556 0.8539475 +0.974052 1.907556 0.8539475 +1.113885 1.907556 0.8539475 +1.27456 1.907556 0.8539475 +1.458117 1.907556 0.8539475 +1.667858 1.907556 0.8539475 +1.907556 1.907556 0.8539475 +2.181521 1.907556 0.8539475 +2.494678 1.907556 0.8539475 +2.852659 1.907556 0.8539475 +3.261896 1.907556 0.8539475 +3.729748 1.907556 0.8539475 +4.264621 1.907556 0.8539475 +4.876131 1.907556 0.8539475 +5.575266 1.907556 0.8539475 +6.374593 1.907556 0.8539475 +0 2.181521 0.8539475 +0 2.181521 0.8539475 +0 2.181521 0.8539475 +0.002268731 2.181521 0.8539475 +0.07076883 2.181521 0.8539475 +0.1119241 2.181521 0.8539475 +0.1475052 2.181521 0.8539475 +0.1846606 2.181521 0.8539475 +0.2245119 2.181521 0.8539475 +0.2679612 2.181521 0.8539475 +0.3158431 2.181521 0.8539475 +0.3689944 2.181521 0.8539475 +0.4282948 2.181521 0.8539475 +0.494694 2.181521 0.8539475 +0.5692344 2.181521 0.8539475 +0.6530715 2.181521 0.8539475 +0.7474945 2.181521 0.8539475 +0.8539475 2.181521 0.8539475 +0.974052 2.181521 0.8539475 +1.113885 2.181521 0.8539475 +1.27456 2.181521 0.8539475 +1.458117 2.181521 0.8539475 +1.667858 2.181521 0.8539475 +1.907556 2.181521 0.8539475 +2.181521 2.181521 0.8539475 +2.494678 2.181521 0.8539475 +2.852659 2.181521 0.8539475 +3.261896 2.181521 0.8539475 +3.729748 2.181521 0.8539475 +4.264621 2.181521 0.8539475 +4.876131 2.181521 0.8539475 +5.575266 2.181521 0.8539475 +6.374593 2.181521 0.8539475 +0 2.494678 0.8539475 +0 2.494678 0.8539475 +0 2.494678 0.8539475 +0.002268731 2.494678 0.8539475 +0.07076883 2.494678 0.8539475 +0.1119241 2.494678 0.8539475 +0.1475052 2.494678 0.8539475 +0.1846606 2.494678 0.8539475 +0.2245119 2.494678 0.8539475 +0.2679612 2.494678 0.8539475 +0.3158431 2.494678 0.8539475 +0.3689944 2.494678 0.8539475 +0.4282948 2.494678 0.8539475 +0.494694 2.494678 0.8539475 +0.5692344 2.494678 0.8539475 +0.6530715 2.494678 0.8539475 +0.7474945 2.494678 0.8539475 +0.8539475 2.494678 0.8539475 +0.974052 2.494678 0.8539475 +1.113885 2.494678 0.8539475 +1.27456 2.494678 0.8539475 +1.458117 2.494678 0.8539475 +1.667858 2.494678 0.8539475 +1.907556 2.494678 0.8539475 +2.181521 2.494678 0.8539475 +2.494678 2.494678 0.8539475 +2.852659 2.494678 0.8539475 +3.261896 2.494678 0.8539475 +3.729748 2.494678 0.8539475 +4.264621 2.494678 0.8539475 +4.876131 2.494678 0.8539475 +5.575266 2.494678 0.8539475 +6.374593 2.494678 0.8539475 +0 2.852659 0.8539475 +0 2.852659 0.8539475 +0 2.852659 0.8539475 +0.002268731 2.852659 0.8539475 +0.07076883 2.852659 0.8539475 +0.1119241 2.852659 0.8539475 +0.1475052 2.852659 0.8539475 +0.1846606 2.852659 0.8539475 +0.2245119 2.852659 0.8539475 +0.2679612 2.852659 0.8539475 +0.3158431 2.852659 0.8539475 +0.3689944 2.852659 0.8539475 +0.4282948 2.852659 0.8539475 +0.494694 2.852659 0.8539475 +0.5692344 2.852659 0.8539475 +0.6530715 2.852659 0.8539475 +0.7474945 2.852659 0.8539475 +0.8539475 2.852659 0.8539475 +0.974052 2.852659 0.8539475 +1.113885 2.852659 0.8539475 +1.27456 2.852659 0.8539475 +1.458117 2.852659 0.8539475 +1.667858 2.852659 0.8539475 +1.907556 2.852659 0.8539475 +2.181521 2.852659 0.8539475 +2.494678 2.852659 0.8539475 +2.852659 2.852659 0.8539475 +3.261896 2.852659 0.8539475 +3.729748 2.852659 0.8539475 +4.264621 2.852659 0.8539475 +4.876131 2.852659 0.8539475 +5.575266 2.852659 0.8539475 +6.374593 2.852659 0.8539475 +0 3.261896 0.8539475 +0 3.261896 0.8539475 +0 3.261896 0.8539475 +0.002268731 3.261896 0.8539475 +0.07076883 3.261896 0.8539475 +0.1119241 3.261896 0.8539475 +0.1475052 3.261896 0.8539475 +0.1846606 3.261896 0.8539475 +0.2245119 3.261896 0.8539475 +0.2679612 3.261896 0.8539475 +0.3158431 3.261896 0.8539475 +0.3689944 3.261896 0.8539475 +0.4282948 3.261896 0.8539475 +0.494694 3.261896 0.8539475 +0.5692344 3.261896 0.8539475 +0.6530715 3.261896 0.8539475 +0.7474945 3.261896 0.8539475 +0.8539475 3.261896 0.8539475 +0.974052 3.261896 0.8539475 +1.113885 3.261896 0.8539475 +1.27456 3.261896 0.8539475 +1.458117 3.261896 0.8539475 +1.667858 3.261896 0.8539475 +1.907556 3.261896 0.8539475 +2.181521 3.261896 0.8539475 +2.494678 3.261896 0.8539475 +2.852659 3.261896 0.8539475 +3.261896 3.261896 0.8539475 +3.729748 3.261896 0.8539475 +4.264621 3.261896 0.8539475 +4.876131 3.261896 0.8539475 +5.575266 3.261896 0.8539475 +6.374593 3.261896 0.8539475 +0 3.729748 0.8539475 +0 3.729748 0.8539475 +0 3.729748 0.8539475 +0.002268731 3.729748 0.8539475 +0.07076883 3.729748 0.8539475 +0.1119241 3.729748 0.8539475 +0.1475052 3.729748 0.8539475 +0.1846606 3.729748 0.8539475 +0.2245119 3.729748 0.8539475 +0.2679612 3.729748 0.8539475 +0.3158431 3.729748 0.8539475 +0.3689944 3.729748 0.8539475 +0.4282948 3.729748 0.8539475 +0.494694 3.729748 0.8539475 +0.5692344 3.729748 0.8539475 +0.6530715 3.729748 0.8539475 +0.7474945 3.729748 0.8539475 +0.8539475 3.729748 0.8539475 +0.974052 3.729748 0.8539475 +1.113885 3.729748 0.8539475 +1.27456 3.729748 0.8539475 +1.458117 3.729748 0.8539475 +1.667858 3.729748 0.8539475 +1.907556 3.729748 0.8539475 +2.181521 3.729748 0.8539475 +2.494678 3.729748 0.8539475 +2.852659 3.729748 0.8539475 +3.261896 3.729748 0.8539475 +3.729748 3.729748 0.8539475 +4.264621 3.729748 0.8539475 +4.876131 3.729748 0.8539475 +5.575266 3.729748 0.8539475 +6.374593 3.729748 0.8539475 +0 4.264621 0.8539475 +0 4.264621 0.8539475 +0 4.264621 0.8539475 +0.002268731 4.264621 0.8539475 +0.07076883 4.264621 0.8539475 +0.1119241 4.264621 0.8539475 +0.1475052 4.264621 0.8539475 +0.1846606 4.264621 0.8539475 +0.2245119 4.264621 0.8539475 +0.2679612 4.264621 0.8539475 +0.3158431 4.264621 0.8539475 +0.3689944 4.264621 0.8539475 +0.4282948 4.264621 0.8539475 +0.494694 4.264621 0.8539475 +0.5692344 4.264621 0.8539475 +0.6530715 4.264621 0.8539475 +0.7474945 4.264621 0.8539475 +0.8539475 4.264621 0.8539475 +0.974052 4.264621 0.8539475 +1.113885 4.264621 0.8539475 +1.27456 4.264621 0.8539475 +1.458117 4.264621 0.8539475 +1.667858 4.264621 0.8539475 +1.907556 4.264621 0.8539475 +2.181521 4.264621 0.8539475 +2.494678 4.264621 0.8539475 +2.852659 4.264621 0.8539475 +3.261896 4.264621 0.8539475 +3.729748 4.264621 0.8539475 +4.264621 4.264621 0.8539475 +4.876131 4.264621 0.8539475 +5.575266 4.264621 0.8539475 +6.374593 4.264621 0.8539475 +0 4.876131 0.8539475 +0 4.876131 0.8539475 +0 4.876131 0.8539475 +0.002268731 4.876131 0.8539475 +0.07076883 4.876131 0.8539475 +0.1119241 4.876131 0.8539475 +0.1475052 4.876131 0.8539475 +0.1846606 4.876131 0.8539475 +0.2245119 4.876131 0.8539475 +0.2679612 4.876131 0.8539475 +0.3158431 4.876131 0.8539475 +0.3689944 4.876131 0.8539475 +0.4282948 4.876131 0.8539475 +0.494694 4.876131 0.8539475 +0.5692344 4.876131 0.8539475 +0.6530715 4.876131 0.8539475 +0.7474945 4.876131 0.8539475 +0.8539475 4.876131 0.8539475 +0.974052 4.876131 0.8539475 +1.113885 4.876131 0.8539475 +1.27456 4.876131 0.8539475 +1.458117 4.876131 0.8539475 +1.667858 4.876131 0.8539475 +1.907556 4.876131 0.8539475 +2.181521 4.876131 0.8539475 +2.494678 4.876131 0.8539475 +2.852659 4.876131 0.8539475 +3.261896 4.876131 0.8539475 +3.729748 4.876131 0.8539475 +4.264621 4.876131 0.8539475 +4.876131 4.876131 0.8539475 +5.575266 4.876131 0.8539475 +6.374593 4.876131 0.8539475 +0 5.575266 0.8539475 +0 5.575266 0.8539475 +0 5.575266 0.8539475 +0.002268731 5.575266 0.8539475 +0.07076883 5.575266 0.8539475 +0.1119241 5.575266 0.8539475 +0.1475052 5.575266 0.8539475 +0.1846606 5.575266 0.8539475 +0.2245119 5.575266 0.8539475 +0.2679612 5.575266 0.8539475 +0.3158431 5.575266 0.8539475 +0.3689944 5.575266 0.8539475 +0.4282948 5.575266 0.8539475 +0.494694 5.575266 0.8539475 +0.5692344 5.575266 0.8539475 +0.6530715 5.575266 0.8539475 +0.7474945 5.575266 0.8539475 +0.8539475 5.575266 0.8539475 +0.974052 5.575266 0.8539475 +1.113885 5.575266 0.8539475 +1.27456 5.575266 0.8539475 +1.458117 5.575266 0.8539475 +1.667858 5.575266 0.8539475 +1.907556 5.575266 0.8539475 +2.181521 5.575266 0.8539475 +2.494678 5.575266 0.8539475 +2.852659 5.575266 0.8539475 +3.261896 5.575266 0.8539475 +3.729748 5.575266 0.8539475 +4.264621 5.575266 0.8539475 +4.876131 5.575266 0.8539475 +5.575266 5.575266 0.8539475 +6.374593 5.575266 0.8539475 +0 6.374593 0.8539475 +0 6.374593 0.8539475 +0 6.374593 0.8539475 +0.002268731 6.374593 0.8539475 +0.07076883 6.374593 0.8539475 +0.1119241 6.374593 0.8539475 +0.1475052 6.374593 0.8539475 +0.1846606 6.374593 0.8539475 +0.2245119 6.374593 0.8539475 +0.2679612 6.374593 0.8539475 +0.3158431 6.374593 0.8539475 +0.3689944 6.374593 0.8539475 +0.4282948 6.374593 0.8539475 +0.494694 6.374593 0.8539475 +0.5692344 6.374593 0.8539475 +0.6530715 6.374593 0.8539475 +0.7474945 6.374593 0.8539475 +0.8539475 6.374593 0.8539475 +0.974052 6.374593 0.8539475 +1.113885 6.374593 0.8539475 +1.27456 6.374593 0.8539475 +1.458117 6.374593 0.8539475 +1.667858 6.374593 0.8539475 +1.907556 6.374593 0.8539475 +2.181521 6.374593 0.8539475 +2.494678 6.374593 0.8539475 +2.852659 6.374593 0.8539475 +3.261896 6.374593 0.8539475 +3.729748 6.374593 0.8539475 +4.264621 6.374593 0.8539475 +4.876131 6.374593 0.8539475 +5.575266 6.374593 0.8539475 +6.374593 6.374593 0.8539475 +0 0 0.974052 +0 0 0.974052 +0 0 0.974052 +0.002268731 0 0.974052 +0.07076883 0 0.974052 +0.1119241 0 0.974052 +0.1475052 0 0.974052 +0.1846606 0 0.974052 +0.2245119 0 0.974052 +0.2679612 0 0.974052 +0.3158431 0 0.974052 +0.3689944 0 0.974052 +0.4282948 0 0.974052 +0.494694 0 0.974052 +0.5692344 0 0.974052 +0.6530715 0 0.974052 +0.7474945 0 0.974052 +0.8539475 0 0.974052 +0.974052 0 0.974052 +1.113885 0 0.974052 +1.27456 0 0.974052 +1.458117 0 0.974052 +1.667858 0 0.974052 +1.907556 0 0.974052 +2.181521 0 0.974052 +2.494678 0 0.974052 +2.852659 0 0.974052 +3.261896 0 0.974052 +3.729748 0 0.974052 +4.264621 0 0.974052 +4.876131 0 0.974052 +5.575266 0 0.974052 +6.374593 0 0.974052 +0 0 0.974052 +0 0 0.974052 +0 0 0.974052 +0.002268731 0 0.974052 +0.07076883 0 0.974052 +0.1119241 0 0.974052 +0.1475052 0 0.974052 +0.1846606 0 0.974052 +0.2245119 0 0.974052 +0.2679612 0 0.974052 +0.3158431 0 0.974052 +0.3689944 0 0.974052 +0.4282948 0 0.974052 +0.494694 0 0.974052 +0.5692344 0 0.974052 +0.6530715 0 0.974052 +0.7474945 0 0.974052 +0.8539475 0 0.974052 +0.974052 0 0.974052 +1.113885 0 0.974052 +1.27456 0 0.974052 +1.458117 0 0.974052 +1.667858 0 0.974052 +1.907556 0 0.974052 +2.181521 0 0.974052 +2.494678 0 0.974052 +2.852659 0 0.974052 +3.261896 0 0.974052 +3.729748 0 0.974052 +4.264621 0 0.974052 +4.876131 0 0.974052 +5.575266 0 0.974052 +6.374593 0 0.974052 +0 0 0.974052 +0 0 0.974052 +0 0 0.974052 +0.002268731 0 0.974052 +0.07076883 0 0.974052 +0.1119241 0 0.974052 +0.1475052 0 0.974052 +0.1846606 0 0.974052 +0.2245119 0 0.974052 +0.2679612 0 0.974052 +0.3158431 0 0.974052 +0.3689944 0 0.974052 +0.4282948 0 0.974052 +0.494694 0 0.974052 +0.5692344 0 0.974052 +0.6530715 0 0.974052 +0.7474945 0 0.974052 +0.8539475 0 0.974052 +0.974052 0 0.974052 +1.113885 0 0.974052 +1.27456 0 0.974052 +1.458117 0 0.974052 +1.667858 0 0.974052 +1.907556 0 0.974052 +2.181521 0 0.974052 +2.494678 0 0.974052 +2.852659 0 0.974052 +3.261896 0 0.974052 +3.729748 0 0.974052 +4.264621 0 0.974052 +4.876131 0 0.974052 +5.575266 0 0.974052 +6.374593 0 0.974052 +0 0.002268731 0.974052 +0 0.002268731 0.974052 +0 0.002268731 0.974052 +0.002268731 0.002268731 0.974052 +0.07076883 0.002268731 0.974052 +0.1119241 0.002268731 0.974052 +0.1475052 0.002268731 0.974052 +0.1846606 0.002268731 0.974052 +0.2245119 0.002268731 0.974052 +0.2679612 0.002268731 0.974052 +0.3158431 0.002268731 0.974052 +0.3689944 0.002268731 0.974052 +0.4282948 0.002268731 0.974052 +0.494694 0.002268731 0.974052 +0.5692344 0.002268731 0.974052 +0.6530715 0.002268731 0.974052 +0.7474945 0.002268731 0.974052 +0.8539475 0.002268731 0.974052 +0.974052 0.002268731 0.974052 +1.113885 0.002268731 0.974052 +1.27456 0.002268731 0.974052 +1.458117 0.002268731 0.974052 +1.667858 0.002268731 0.974052 +1.907556 0.002268731 0.974052 +2.181521 0.002268731 0.974052 +2.494678 0.002268731 0.974052 +2.852659 0.002268731 0.974052 +3.261896 0.002268731 0.974052 +3.729748 0.002268731 0.974052 +4.264621 0.002268731 0.974052 +4.876131 0.002268731 0.974052 +5.575266 0.002268731 0.974052 +6.374593 0.002268731 0.974052 +0 0.07076883 0.974052 +0 0.07076883 0.974052 +0 0.07076883 0.974052 +0.002268731 0.07076883 0.974052 +0.07076883 0.07076883 0.974052 +0.1119241 0.07076883 0.974052 +0.1475052 0.07076883 0.974052 +0.1846606 0.07076883 0.974052 +0.2245119 0.07076883 0.974052 +0.2679612 0.07076883 0.974052 +0.3158431 0.07076883 0.974052 +0.3689944 0.07076883 0.974052 +0.4282948 0.07076883 0.974052 +0.494694 0.07076883 0.974052 +0.5692344 0.07076883 0.974052 +0.6530715 0.07076883 0.974052 +0.7474945 0.07076883 0.974052 +0.8539475 0.07076883 0.974052 +0.974052 0.07076883 0.974052 +1.113885 0.07076883 0.974052 +1.27456 0.07076883 0.974052 +1.458117 0.07076883 0.974052 +1.667858 0.07076883 0.974052 +1.907556 0.07076883 0.974052 +2.181521 0.07076883 0.974052 +2.494678 0.07076883 0.974052 +2.852659 0.07076883 0.974052 +3.261896 0.07076883 0.974052 +3.729748 0.07076883 0.974052 +4.264621 0.07076883 0.974052 +4.876131 0.07076883 0.974052 +5.575266 0.07076883 0.974052 +6.374593 0.07076883 0.974052 +0 0.1119241 0.974052 +0 0.1119241 0.974052 +0 0.1119241 0.974052 +0.002268731 0.1119241 0.974052 +0.07076883 0.1119241 0.974052 +0.1119241 0.1119241 0.974052 +0.1475052 0.1119241 0.974052 +0.1846606 0.1119241 0.974052 +0.2245119 0.1119241 0.974052 +0.2679612 0.1119241 0.974052 +0.3158431 0.1119241 0.974052 +0.3689944 0.1119241 0.974052 +0.4282948 0.1119241 0.974052 +0.494694 0.1119241 0.974052 +0.5692344 0.1119241 0.974052 +0.6530715 0.1119241 0.974052 +0.7474945 0.1119241 0.974052 +0.8539475 0.1119241 0.974052 +0.974052 0.1119241 0.974052 +1.113885 0.1119241 0.974052 +1.27456 0.1119241 0.974052 +1.458117 0.1119241 0.974052 +1.667858 0.1119241 0.974052 +1.907556 0.1119241 0.974052 +2.181521 0.1119241 0.974052 +2.494678 0.1119241 0.974052 +2.852659 0.1119241 0.974052 +3.261896 0.1119241 0.974052 +3.729748 0.1119241 0.974052 +4.264621 0.1119241 0.974052 +4.876131 0.1119241 0.974052 +5.575266 0.1119241 0.974052 +6.374593 0.1119241 0.974052 +0 0.1475052 0.974052 +0 0.1475052 0.974052 +0 0.1475052 0.974052 +0.002268731 0.1475052 0.974052 +0.07076883 0.1475052 0.974052 +0.1119241 0.1475052 0.974052 +0.1475052 0.1475052 0.974052 +0.1846606 0.1475052 0.974052 +0.2245119 0.1475052 0.974052 +0.2679612 0.1475052 0.974052 +0.3158431 0.1475052 0.974052 +0.3689944 0.1475052 0.974052 +0.4282948 0.1475052 0.974052 +0.494694 0.1475052 0.974052 +0.5692344 0.1475052 0.974052 +0.6530715 0.1475052 0.974052 +0.7474945 0.1475052 0.974052 +0.8539475 0.1475052 0.974052 +0.974052 0.1475052 0.974052 +1.113885 0.1475052 0.974052 +1.27456 0.1475052 0.974052 +1.458117 0.1475052 0.974052 +1.667858 0.1475052 0.974052 +1.907556 0.1475052 0.974052 +2.181521 0.1475052 0.974052 +2.494678 0.1475052 0.974052 +2.852659 0.1475052 0.974052 +3.261896 0.1475052 0.974052 +3.729748 0.1475052 0.974052 +4.264621 0.1475052 0.974052 +4.876131 0.1475052 0.974052 +5.575266 0.1475052 0.974052 +6.374593 0.1475052 0.974052 +0 0.1846606 0.974052 +0 0.1846606 0.974052 +0 0.1846606 0.974052 +0.002268731 0.1846606 0.974052 +0.07076883 0.1846606 0.974052 +0.1119241 0.1846606 0.974052 +0.1475052 0.1846606 0.974052 +0.1846606 0.1846606 0.974052 +0.2245119 0.1846606 0.974052 +0.2679612 0.1846606 0.974052 +0.3158431 0.1846606 0.974052 +0.3689944 0.1846606 0.974052 +0.4282948 0.1846606 0.974052 +0.494694 0.1846606 0.974052 +0.5692344 0.1846606 0.974052 +0.6530715 0.1846606 0.974052 +0.7474945 0.1846606 0.974052 +0.8539475 0.1846606 0.974052 +0.974052 0.1846606 0.974052 +1.113885 0.1846606 0.974052 +1.27456 0.1846606 0.974052 +1.458117 0.1846606 0.974052 +1.667858 0.1846606 0.974052 +1.907556 0.1846606 0.974052 +2.181521 0.1846606 0.974052 +2.494678 0.1846606 0.974052 +2.852659 0.1846606 0.974052 +3.261896 0.1846606 0.974052 +3.729748 0.1846606 0.974052 +4.264621 0.1846606 0.974052 +4.876131 0.1846606 0.974052 +5.575266 0.1846606 0.974052 +6.374593 0.1846606 0.974052 +0 0.2245119 0.974052 +0 0.2245119 0.974052 +0 0.2245119 0.974052 +0.002268731 0.2245119 0.974052 +0.07076883 0.2245119 0.974052 +0.1119241 0.2245119 0.974052 +0.1475052 0.2245119 0.974052 +0.1846606 0.2245119 0.974052 +0.2245119 0.2245119 0.974052 +0.2679612 0.2245119 0.974052 +0.3158431 0.2245119 0.974052 +0.3689944 0.2245119 0.974052 +0.4282948 0.2245119 0.974052 +0.494694 0.2245119 0.974052 +0.5692344 0.2245119 0.974052 +0.6530715 0.2245119 0.974052 +0.7474945 0.2245119 0.974052 +0.8539475 0.2245119 0.974052 +0.974052 0.2245119 0.974052 +1.113885 0.2245119 0.974052 +1.27456 0.2245119 0.974052 +1.458117 0.2245119 0.974052 +1.667858 0.2245119 0.974052 +1.907556 0.2245119 0.974052 +2.181521 0.2245119 0.974052 +2.494678 0.2245119 0.974052 +2.852659 0.2245119 0.974052 +3.261896 0.2245119 0.974052 +3.729748 0.2245119 0.974052 +4.264621 0.2245119 0.974052 +4.876131 0.2245119 0.974052 +5.575266 0.2245119 0.974052 +6.374593 0.2245119 0.974052 +0 0.2679612 0.974052 +0 0.2679612 0.974052 +0 0.2679612 0.974052 +0.002268731 0.2679612 0.974052 +0.07076883 0.2679612 0.974052 +0.1119241 0.2679612 0.974052 +0.1475052 0.2679612 0.974052 +0.1846606 0.2679612 0.974052 +0.2245119 0.2679612 0.974052 +0.2679612 0.2679612 0.974052 +0.3158431 0.2679612 0.974052 +0.3689944 0.2679612 0.974052 +0.4282948 0.2679612 0.974052 +0.494694 0.2679612 0.974052 +0.5692344 0.2679612 0.974052 +0.6530715 0.2679612 0.974052 +0.7474945 0.2679612 0.974052 +0.8539475 0.2679612 0.974052 +0.974052 0.2679612 0.974052 +1.113885 0.2679612 0.974052 +1.27456 0.2679612 0.974052 +1.458117 0.2679612 0.974052 +1.667858 0.2679612 0.974052 +1.907556 0.2679612 0.974052 +2.181521 0.2679612 0.974052 +2.494678 0.2679612 0.974052 +2.852659 0.2679612 0.974052 +3.261896 0.2679612 0.974052 +3.729748 0.2679612 0.974052 +4.264621 0.2679612 0.974052 +4.876131 0.2679612 0.974052 +5.575266 0.2679612 0.974052 +6.374593 0.2679612 0.974052 +0 0.3158431 0.974052 +0 0.3158431 0.974052 +0 0.3158431 0.974052 +0.002268731 0.3158431 0.974052 +0.07076883 0.3158431 0.974052 +0.1119241 0.3158431 0.974052 +0.1475052 0.3158431 0.974052 +0.1846606 0.3158431 0.974052 +0.2245119 0.3158431 0.974052 +0.2679612 0.3158431 0.974052 +0.3158431 0.3158431 0.974052 +0.3689944 0.3158431 0.974052 +0.4282948 0.3158431 0.974052 +0.494694 0.3158431 0.974052 +0.5692344 0.3158431 0.974052 +0.6530715 0.3158431 0.974052 +0.7474945 0.3158431 0.974052 +0.8539475 0.3158431 0.974052 +0.974052 0.3158431 0.974052 +1.113885 0.3158431 0.974052 +1.27456 0.3158431 0.974052 +1.458117 0.3158431 0.974052 +1.667858 0.3158431 0.974052 +1.907556 0.3158431 0.974052 +2.181521 0.3158431 0.974052 +2.494678 0.3158431 0.974052 +2.852659 0.3158431 0.974052 +3.261896 0.3158431 0.974052 +3.729748 0.3158431 0.974052 +4.264621 0.3158431 0.974052 +4.876131 0.3158431 0.974052 +5.575266 0.3158431 0.974052 +6.374593 0.3158431 0.974052 +0 0.3689944 0.974052 +0 0.3689944 0.974052 +0 0.3689944 0.974052 +0.002268731 0.3689944 0.974052 +0.07076883 0.3689944 0.974052 +0.1119241 0.3689944 0.974052 +0.1475052 0.3689944 0.974052 +0.1846606 0.3689944 0.974052 +0.2245119 0.3689944 0.974052 +0.2679612 0.3689944 0.974052 +0.3158431 0.3689944 0.974052 +0.3689944 0.3689944 0.974052 +0.4282948 0.3689944 0.974052 +0.494694 0.3689944 0.974052 +0.5692344 0.3689944 0.974052 +0.6530715 0.3689944 0.974052 +0.7474945 0.3689944 0.974052 +0.8539475 0.3689944 0.974052 +0.974052 0.3689944 0.974052 +1.113885 0.3689944 0.974052 +1.27456 0.3689944 0.974052 +1.458117 0.3689944 0.974052 +1.667858 0.3689944 0.974052 +1.907556 0.3689944 0.974052 +2.181521 0.3689944 0.974052 +2.494678 0.3689944 0.974052 +2.852659 0.3689944 0.974052 +3.261896 0.3689944 0.974052 +3.729748 0.3689944 0.974052 +4.264621 0.3689944 0.974052 +4.876131 0.3689944 0.974052 +5.575266 0.3689944 0.974052 +6.374593 0.3689944 0.974052 +0 0.4282948 0.974052 +0 0.4282948 0.974052 +0 0.4282948 0.974052 +0.002268731 0.4282948 0.974052 +0.07076883 0.4282948 0.974052 +0.1119241 0.4282948 0.974052 +0.1475052 0.4282948 0.974052 +0.1846606 0.4282948 0.974052 +0.2245119 0.4282948 0.974052 +0.2679612 0.4282948 0.974052 +0.3158431 0.4282948 0.974052 +0.3689944 0.4282948 0.974052 +0.4282948 0.4282948 0.974052 +0.494694 0.4282948 0.974052 +0.5692344 0.4282948 0.974052 +0.6530715 0.4282948 0.974052 +0.7474945 0.4282948 0.974052 +0.8539475 0.4282948 0.974052 +0.974052 0.4282948 0.974052 +1.113885 0.4282948 0.974052 +1.27456 0.4282948 0.974052 +1.458117 0.4282948 0.974052 +1.667858 0.4282948 0.974052 +1.907556 0.4282948 0.974052 +2.181521 0.4282948 0.974052 +2.494678 0.4282948 0.974052 +2.852659 0.4282948 0.974052 +3.261896 0.4282948 0.974052 +3.729748 0.4282948 0.974052 +4.264621 0.4282948 0.974052 +4.876131 0.4282948 0.974052 +5.575266 0.4282948 0.974052 +6.374593 0.4282948 0.974052 +0 0.494694 0.974052 +0 0.494694 0.974052 +0 0.494694 0.974052 +0.002268731 0.494694 0.974052 +0.07076883 0.494694 0.974052 +0.1119241 0.494694 0.974052 +0.1475052 0.494694 0.974052 +0.1846606 0.494694 0.974052 +0.2245119 0.494694 0.974052 +0.2679612 0.494694 0.974052 +0.3158431 0.494694 0.974052 +0.3689944 0.494694 0.974052 +0.4282948 0.494694 0.974052 +0.494694 0.494694 0.974052 +0.5692344 0.494694 0.974052 +0.6530715 0.494694 0.974052 +0.7474945 0.494694 0.974052 +0.8539475 0.494694 0.974052 +0.974052 0.494694 0.974052 +1.113885 0.494694 0.974052 +1.27456 0.494694 0.974052 +1.458117 0.494694 0.974052 +1.667858 0.494694 0.974052 +1.907556 0.494694 0.974052 +2.181521 0.494694 0.974052 +2.494678 0.494694 0.974052 +2.852659 0.494694 0.974052 +3.261896 0.494694 0.974052 +3.729748 0.494694 0.974052 +4.264621 0.494694 0.974052 +4.876131 0.494694 0.974052 +5.575266 0.494694 0.974052 +6.374593 0.494694 0.974052 +0 0.5692344 0.974052 +0 0.5692344 0.974052 +0 0.5692344 0.974052 +0.002268731 0.5692344 0.974052 +0.07076883 0.5692344 0.974052 +0.1119241 0.5692344 0.974052 +0.1475052 0.5692344 0.974052 +0.1846606 0.5692344 0.974052 +0.2245119 0.5692344 0.974052 +0.2679612 0.5692344 0.974052 +0.3158431 0.5692344 0.974052 +0.3689944 0.5692344 0.974052 +0.4282948 0.5692344 0.974052 +0.494694 0.5692344 0.974052 +0.5692344 0.5692344 0.974052 +0.6530715 0.5692344 0.974052 +0.7474945 0.5692344 0.974052 +0.8539475 0.5692344 0.974052 +0.974052 0.5692344 0.974052 +1.113885 0.5692344 0.974052 +1.27456 0.5692344 0.974052 +1.458117 0.5692344 0.974052 +1.667858 0.5692344 0.974052 +1.907556 0.5692344 0.974052 +2.181521 0.5692344 0.974052 +2.494678 0.5692344 0.974052 +2.852659 0.5692344 0.974052 +3.261896 0.5692344 0.974052 +3.729748 0.5692344 0.974052 +4.264621 0.5692344 0.974052 +4.876131 0.5692344 0.974052 +5.575266 0.5692344 0.974052 +6.374593 0.5692344 0.974052 +0 0.6530715 0.974052 +0 0.6530715 0.974052 +0 0.6530715 0.974052 +0.002268731 0.6530715 0.974052 +0.07076883 0.6530715 0.974052 +0.1119241 0.6530715 0.974052 +0.1475052 0.6530715 0.974052 +0.1846606 0.6530715 0.974052 +0.2245119 0.6530715 0.974052 +0.2679612 0.6530715 0.974052 +0.3158431 0.6530715 0.974052 +0.3689944 0.6530715 0.974052 +0.4282948 0.6530715 0.974052 +0.494694 0.6530715 0.974052 +0.5692344 0.6530715 0.974052 +0.6530715 0.6530715 0.974052 +0.7474945 0.6530715 0.974052 +0.8539475 0.6530715 0.974052 +0.974052 0.6530715 0.974052 +1.113885 0.6530715 0.974052 +1.27456 0.6530715 0.974052 +1.458117 0.6530715 0.974052 +1.667858 0.6530715 0.974052 +1.907556 0.6530715 0.974052 +2.181521 0.6530715 0.974052 +2.494678 0.6530715 0.974052 +2.852659 0.6530715 0.974052 +3.261896 0.6530715 0.974052 +3.729748 0.6530715 0.974052 +4.264621 0.6530715 0.974052 +4.876131 0.6530715 0.974052 +5.575266 0.6530715 0.974052 +6.374593 0.6530715 0.974052 +0 0.7474945 0.974052 +0 0.7474945 0.974052 +0 0.7474945 0.974052 +0.002268731 0.7474945 0.974052 +0.07076883 0.7474945 0.974052 +0.1119241 0.7474945 0.974052 +0.1475052 0.7474945 0.974052 +0.1846606 0.7474945 0.974052 +0.2245119 0.7474945 0.974052 +0.2679612 0.7474945 0.974052 +0.3158431 0.7474945 0.974052 +0.3689944 0.7474945 0.974052 +0.4282948 0.7474945 0.974052 +0.494694 0.7474945 0.974052 +0.5692344 0.7474945 0.974052 +0.6530715 0.7474945 0.974052 +0.7474945 0.7474945 0.974052 +0.8539475 0.7474945 0.974052 +0.974052 0.7474945 0.974052 +1.113885 0.7474945 0.974052 +1.27456 0.7474945 0.974052 +1.458117 0.7474945 0.974052 +1.667858 0.7474945 0.974052 +1.907556 0.7474945 0.974052 +2.181521 0.7474945 0.974052 +2.494678 0.7474945 0.974052 +2.852659 0.7474945 0.974052 +3.261896 0.7474945 0.974052 +3.729748 0.7474945 0.974052 +4.264621 0.7474945 0.974052 +4.876131 0.7474945 0.974052 +5.575266 0.7474945 0.974052 +6.374593 0.7474945 0.974052 +0 0.8539475 0.974052 +0 0.8539475 0.974052 +0 0.8539475 0.974052 +0.002268731 0.8539475 0.974052 +0.07076883 0.8539475 0.974052 +0.1119241 0.8539475 0.974052 +0.1475052 0.8539475 0.974052 +0.1846606 0.8539475 0.974052 +0.2245119 0.8539475 0.974052 +0.2679612 0.8539475 0.974052 +0.3158431 0.8539475 0.974052 +0.3689944 0.8539475 0.974052 +0.4282948 0.8539475 0.974052 +0.494694 0.8539475 0.974052 +0.5692344 0.8539475 0.974052 +0.6530715 0.8539475 0.974052 +0.7474945 0.8539475 0.974052 +0.8539475 0.8539475 0.974052 +0.974052 0.8539475 0.974052 +1.113885 0.8539475 0.974052 +1.27456 0.8539475 0.974052 +1.458117 0.8539475 0.974052 +1.667858 0.8539475 0.974052 +1.907556 0.8539475 0.974052 +2.181521 0.8539475 0.974052 +2.494678 0.8539475 0.974052 +2.852659 0.8539475 0.974052 +3.261896 0.8539475 0.974052 +3.729748 0.8539475 0.974052 +4.264621 0.8539475 0.974052 +4.876131 0.8539475 0.974052 +5.575266 0.8539475 0.974052 +6.374593 0.8539475 0.974052 +0 0.974052 0.974052 +0 0.974052 0.974052 +0 0.974052 0.974052 +0.002268731 0.974052 0.974052 +0.07076883 0.974052 0.974052 +0.1119241 0.974052 0.974052 +0.1475052 0.974052 0.974052 +0.1846606 0.974052 0.974052 +0.2245119 0.974052 0.974052 +0.2679612 0.974052 0.974052 +0.3158431 0.974052 0.974052 +0.3689944 0.974052 0.974052 +0.4282948 0.974052 0.974052 +0.494694 0.974052 0.974052 +0.5692344 0.974052 0.974052 +0.6530715 0.974052 0.974052 +0.7474945 0.974052 0.974052 +0.8539475 0.974052 0.974052 +0.974052 0.974052 0.974052 +1.113885 0.974052 0.974052 +1.27456 0.974052 0.974052 +1.458117 0.974052 0.974052 +1.667858 0.974052 0.974052 +1.907556 0.974052 0.974052 +2.181521 0.974052 0.974052 +2.494678 0.974052 0.974052 +2.852659 0.974052 0.974052 +3.261896 0.974052 0.974052 +3.729748 0.974052 0.974052 +4.264621 0.974052 0.974052 +4.876131 0.974052 0.974052 +5.575266 0.974052 0.974052 +6.374593 0.974052 0.974052 +0 1.113885 0.974052 +0 1.113885 0.974052 +0 1.113885 0.974052 +0.002268731 1.113885 0.974052 +0.07076883 1.113885 0.974052 +0.1119241 1.113885 0.974052 +0.1475052 1.113885 0.974052 +0.1846606 1.113885 0.974052 +0.2245119 1.113885 0.974052 +0.2679612 1.113885 0.974052 +0.3158431 1.113885 0.974052 +0.3689944 1.113885 0.974052 +0.4282948 1.113885 0.974052 +0.494694 1.113885 0.974052 +0.5692344 1.113885 0.974052 +0.6530715 1.113885 0.974052 +0.7474945 1.113885 0.974052 +0.8539475 1.113885 0.974052 +0.974052 1.113885 0.974052 +1.113885 1.113885 0.974052 +1.27456 1.113885 0.974052 +1.458117 1.113885 0.974052 +1.667858 1.113885 0.974052 +1.907556 1.113885 0.974052 +2.181521 1.113885 0.974052 +2.494678 1.113885 0.974052 +2.852659 1.113885 0.974052 +3.261896 1.113885 0.974052 +3.729748 1.113885 0.974052 +4.264621 1.113885 0.974052 +4.876131 1.113885 0.974052 +5.575266 1.113885 0.974052 +6.374593 1.113885 0.974052 +0 1.27456 0.974052 +0 1.27456 0.974052 +0 1.27456 0.974052 +0.002268731 1.27456 0.974052 +0.07076883 1.27456 0.974052 +0.1119241 1.27456 0.974052 +0.1475052 1.27456 0.974052 +0.1846606 1.27456 0.974052 +0.2245119 1.27456 0.974052 +0.2679612 1.27456 0.974052 +0.3158431 1.27456 0.974052 +0.3689944 1.27456 0.974052 +0.4282948 1.27456 0.974052 +0.494694 1.27456 0.974052 +0.5692344 1.27456 0.974052 +0.6530715 1.27456 0.974052 +0.7474945 1.27456 0.974052 +0.8539475 1.27456 0.974052 +0.974052 1.27456 0.974052 +1.113885 1.27456 0.974052 +1.27456 1.27456 0.974052 +1.458117 1.27456 0.974052 +1.667858 1.27456 0.974052 +1.907556 1.27456 0.974052 +2.181521 1.27456 0.974052 +2.494678 1.27456 0.974052 +2.852659 1.27456 0.974052 +3.261896 1.27456 0.974052 +3.729748 1.27456 0.974052 +4.264621 1.27456 0.974052 +4.876131 1.27456 0.974052 +5.575266 1.27456 0.974052 +6.374593 1.27456 0.974052 +0 1.458117 0.974052 +0 1.458117 0.974052 +0 1.458117 0.974052 +0.002268731 1.458117 0.974052 +0.07076883 1.458117 0.974052 +0.1119241 1.458117 0.974052 +0.1475052 1.458117 0.974052 +0.1846606 1.458117 0.974052 +0.2245119 1.458117 0.974052 +0.2679612 1.458117 0.974052 +0.3158431 1.458117 0.974052 +0.3689944 1.458117 0.974052 +0.4282948 1.458117 0.974052 +0.494694 1.458117 0.974052 +0.5692344 1.458117 0.974052 +0.6530715 1.458117 0.974052 +0.7474945 1.458117 0.974052 +0.8539475 1.458117 0.974052 +0.974052 1.458117 0.974052 +1.113885 1.458117 0.974052 +1.27456 1.458117 0.974052 +1.458117 1.458117 0.974052 +1.667858 1.458117 0.974052 +1.907556 1.458117 0.974052 +2.181521 1.458117 0.974052 +2.494678 1.458117 0.974052 +2.852659 1.458117 0.974052 +3.261896 1.458117 0.974052 +3.729748 1.458117 0.974052 +4.264621 1.458117 0.974052 +4.876131 1.458117 0.974052 +5.575266 1.458117 0.974052 +6.374593 1.458117 0.974052 +0 1.667858 0.974052 +0 1.667858 0.974052 +0 1.667858 0.974052 +0.002268731 1.667858 0.974052 +0.07076883 1.667858 0.974052 +0.1119241 1.667858 0.974052 +0.1475052 1.667858 0.974052 +0.1846606 1.667858 0.974052 +0.2245119 1.667858 0.974052 +0.2679612 1.667858 0.974052 +0.3158431 1.667858 0.974052 +0.3689944 1.667858 0.974052 +0.4282948 1.667858 0.974052 +0.494694 1.667858 0.974052 +0.5692344 1.667858 0.974052 +0.6530715 1.667858 0.974052 +0.7474945 1.667858 0.974052 +0.8539475 1.667858 0.974052 +0.974052 1.667858 0.974052 +1.113885 1.667858 0.974052 +1.27456 1.667858 0.974052 +1.458117 1.667858 0.974052 +1.667858 1.667858 0.974052 +1.907556 1.667858 0.974052 +2.181521 1.667858 0.974052 +2.494678 1.667858 0.974052 +2.852659 1.667858 0.974052 +3.261896 1.667858 0.974052 +3.729748 1.667858 0.974052 +4.264621 1.667858 0.974052 +4.876131 1.667858 0.974052 +5.575266 1.667858 0.974052 +6.374593 1.667858 0.974052 +0 1.907556 0.974052 +0 1.907556 0.974052 +0 1.907556 0.974052 +0.002268731 1.907556 0.974052 +0.07076883 1.907556 0.974052 +0.1119241 1.907556 0.974052 +0.1475052 1.907556 0.974052 +0.1846606 1.907556 0.974052 +0.2245119 1.907556 0.974052 +0.2679612 1.907556 0.974052 +0.3158431 1.907556 0.974052 +0.3689944 1.907556 0.974052 +0.4282948 1.907556 0.974052 +0.494694 1.907556 0.974052 +0.5692344 1.907556 0.974052 +0.6530715 1.907556 0.974052 +0.7474945 1.907556 0.974052 +0.8539475 1.907556 0.974052 +0.974052 1.907556 0.974052 +1.113885 1.907556 0.974052 +1.27456 1.907556 0.974052 +1.458117 1.907556 0.974052 +1.667858 1.907556 0.974052 +1.907556 1.907556 0.974052 +2.181521 1.907556 0.974052 +2.494678 1.907556 0.974052 +2.852659 1.907556 0.974052 +3.261896 1.907556 0.974052 +3.729748 1.907556 0.974052 +4.264621 1.907556 0.974052 +4.876131 1.907556 0.974052 +5.575266 1.907556 0.974052 +6.374593 1.907556 0.974052 +0 2.181521 0.974052 +0 2.181521 0.974052 +0 2.181521 0.974052 +0.002268731 2.181521 0.974052 +0.07076883 2.181521 0.974052 +0.1119241 2.181521 0.974052 +0.1475052 2.181521 0.974052 +0.1846606 2.181521 0.974052 +0.2245119 2.181521 0.974052 +0.2679612 2.181521 0.974052 +0.3158431 2.181521 0.974052 +0.3689944 2.181521 0.974052 +0.4282948 2.181521 0.974052 +0.494694 2.181521 0.974052 +0.5692344 2.181521 0.974052 +0.6530715 2.181521 0.974052 +0.7474945 2.181521 0.974052 +0.8539475 2.181521 0.974052 +0.974052 2.181521 0.974052 +1.113885 2.181521 0.974052 +1.27456 2.181521 0.974052 +1.458117 2.181521 0.974052 +1.667858 2.181521 0.974052 +1.907556 2.181521 0.974052 +2.181521 2.181521 0.974052 +2.494678 2.181521 0.974052 +2.852659 2.181521 0.974052 +3.261896 2.181521 0.974052 +3.729748 2.181521 0.974052 +4.264621 2.181521 0.974052 +4.876131 2.181521 0.974052 +5.575266 2.181521 0.974052 +6.374593 2.181521 0.974052 +0 2.494678 0.974052 +0 2.494678 0.974052 +0 2.494678 0.974052 +0.002268731 2.494678 0.974052 +0.07076883 2.494678 0.974052 +0.1119241 2.494678 0.974052 +0.1475052 2.494678 0.974052 +0.1846606 2.494678 0.974052 +0.2245119 2.494678 0.974052 +0.2679612 2.494678 0.974052 +0.3158431 2.494678 0.974052 +0.3689944 2.494678 0.974052 +0.4282948 2.494678 0.974052 +0.494694 2.494678 0.974052 +0.5692344 2.494678 0.974052 +0.6530715 2.494678 0.974052 +0.7474945 2.494678 0.974052 +0.8539475 2.494678 0.974052 +0.974052 2.494678 0.974052 +1.113885 2.494678 0.974052 +1.27456 2.494678 0.974052 +1.458117 2.494678 0.974052 +1.667858 2.494678 0.974052 +1.907556 2.494678 0.974052 +2.181521 2.494678 0.974052 +2.494678 2.494678 0.974052 +2.852659 2.494678 0.974052 +3.261896 2.494678 0.974052 +3.729748 2.494678 0.974052 +4.264621 2.494678 0.974052 +4.876131 2.494678 0.974052 +5.575266 2.494678 0.974052 +6.374593 2.494678 0.974052 +0 2.852659 0.974052 +0 2.852659 0.974052 +0 2.852659 0.974052 +0.002268731 2.852659 0.974052 +0.07076883 2.852659 0.974052 +0.1119241 2.852659 0.974052 +0.1475052 2.852659 0.974052 +0.1846606 2.852659 0.974052 +0.2245119 2.852659 0.974052 +0.2679612 2.852659 0.974052 +0.3158431 2.852659 0.974052 +0.3689944 2.852659 0.974052 +0.4282948 2.852659 0.974052 +0.494694 2.852659 0.974052 +0.5692344 2.852659 0.974052 +0.6530715 2.852659 0.974052 +0.7474945 2.852659 0.974052 +0.8539475 2.852659 0.974052 +0.974052 2.852659 0.974052 +1.113885 2.852659 0.974052 +1.27456 2.852659 0.974052 +1.458117 2.852659 0.974052 +1.667858 2.852659 0.974052 +1.907556 2.852659 0.974052 +2.181521 2.852659 0.974052 +2.494678 2.852659 0.974052 +2.852659 2.852659 0.974052 +3.261896 2.852659 0.974052 +3.729748 2.852659 0.974052 +4.264621 2.852659 0.974052 +4.876131 2.852659 0.974052 +5.575266 2.852659 0.974052 +6.374593 2.852659 0.974052 +0 3.261896 0.974052 +0 3.261896 0.974052 +0 3.261896 0.974052 +0.002268731 3.261896 0.974052 +0.07076883 3.261896 0.974052 +0.1119241 3.261896 0.974052 +0.1475052 3.261896 0.974052 +0.1846606 3.261896 0.974052 +0.2245119 3.261896 0.974052 +0.2679612 3.261896 0.974052 +0.3158431 3.261896 0.974052 +0.3689944 3.261896 0.974052 +0.4282948 3.261896 0.974052 +0.494694 3.261896 0.974052 +0.5692344 3.261896 0.974052 +0.6530715 3.261896 0.974052 +0.7474945 3.261896 0.974052 +0.8539475 3.261896 0.974052 +0.974052 3.261896 0.974052 +1.113885 3.261896 0.974052 +1.27456 3.261896 0.974052 +1.458117 3.261896 0.974052 +1.667858 3.261896 0.974052 +1.907556 3.261896 0.974052 +2.181521 3.261896 0.974052 +2.494678 3.261896 0.974052 +2.852659 3.261896 0.974052 +3.261896 3.261896 0.974052 +3.729748 3.261896 0.974052 +4.264621 3.261896 0.974052 +4.876131 3.261896 0.974052 +5.575266 3.261896 0.974052 +6.374593 3.261896 0.974052 +0 3.729748 0.974052 +0 3.729748 0.974052 +0 3.729748 0.974052 +0.002268731 3.729748 0.974052 +0.07076883 3.729748 0.974052 +0.1119241 3.729748 0.974052 +0.1475052 3.729748 0.974052 +0.1846606 3.729748 0.974052 +0.2245119 3.729748 0.974052 +0.2679612 3.729748 0.974052 +0.3158431 3.729748 0.974052 +0.3689944 3.729748 0.974052 +0.4282948 3.729748 0.974052 +0.494694 3.729748 0.974052 +0.5692344 3.729748 0.974052 +0.6530715 3.729748 0.974052 +0.7474945 3.729748 0.974052 +0.8539475 3.729748 0.974052 +0.974052 3.729748 0.974052 +1.113885 3.729748 0.974052 +1.27456 3.729748 0.974052 +1.458117 3.729748 0.974052 +1.667858 3.729748 0.974052 +1.907556 3.729748 0.974052 +2.181521 3.729748 0.974052 +2.494678 3.729748 0.974052 +2.852659 3.729748 0.974052 +3.261896 3.729748 0.974052 +3.729748 3.729748 0.974052 +4.264621 3.729748 0.974052 +4.876131 3.729748 0.974052 +5.575266 3.729748 0.974052 +6.374593 3.729748 0.974052 +0 4.264621 0.974052 +0 4.264621 0.974052 +0 4.264621 0.974052 +0.002268731 4.264621 0.974052 +0.07076883 4.264621 0.974052 +0.1119241 4.264621 0.974052 +0.1475052 4.264621 0.974052 +0.1846606 4.264621 0.974052 +0.2245119 4.264621 0.974052 +0.2679612 4.264621 0.974052 +0.3158431 4.264621 0.974052 +0.3689944 4.264621 0.974052 +0.4282948 4.264621 0.974052 +0.494694 4.264621 0.974052 +0.5692344 4.264621 0.974052 +0.6530715 4.264621 0.974052 +0.7474945 4.264621 0.974052 +0.8539475 4.264621 0.974052 +0.974052 4.264621 0.974052 +1.113885 4.264621 0.974052 +1.27456 4.264621 0.974052 +1.458117 4.264621 0.974052 +1.667858 4.264621 0.974052 +1.907556 4.264621 0.974052 +2.181521 4.264621 0.974052 +2.494678 4.264621 0.974052 +2.852659 4.264621 0.974052 +3.261896 4.264621 0.974052 +3.729748 4.264621 0.974052 +4.264621 4.264621 0.974052 +4.876131 4.264621 0.974052 +5.575266 4.264621 0.974052 +6.374593 4.264621 0.974052 +0 4.876131 0.974052 +0 4.876131 0.974052 +0 4.876131 0.974052 +0.002268731 4.876131 0.974052 +0.07076883 4.876131 0.974052 +0.1119241 4.876131 0.974052 +0.1475052 4.876131 0.974052 +0.1846606 4.876131 0.974052 +0.2245119 4.876131 0.974052 +0.2679612 4.876131 0.974052 +0.3158431 4.876131 0.974052 +0.3689944 4.876131 0.974052 +0.4282948 4.876131 0.974052 +0.494694 4.876131 0.974052 +0.5692344 4.876131 0.974052 +0.6530715 4.876131 0.974052 +0.7474945 4.876131 0.974052 +0.8539475 4.876131 0.974052 +0.974052 4.876131 0.974052 +1.113885 4.876131 0.974052 +1.27456 4.876131 0.974052 +1.458117 4.876131 0.974052 +1.667858 4.876131 0.974052 +1.907556 4.876131 0.974052 +2.181521 4.876131 0.974052 +2.494678 4.876131 0.974052 +2.852659 4.876131 0.974052 +3.261896 4.876131 0.974052 +3.729748 4.876131 0.974052 +4.264621 4.876131 0.974052 +4.876131 4.876131 0.974052 +5.575266 4.876131 0.974052 +6.374593 4.876131 0.974052 +0 5.575266 0.974052 +0 5.575266 0.974052 +0 5.575266 0.974052 +0.002268731 5.575266 0.974052 +0.07076883 5.575266 0.974052 +0.1119241 5.575266 0.974052 +0.1475052 5.575266 0.974052 +0.1846606 5.575266 0.974052 +0.2245119 5.575266 0.974052 +0.2679612 5.575266 0.974052 +0.3158431 5.575266 0.974052 +0.3689944 5.575266 0.974052 +0.4282948 5.575266 0.974052 +0.494694 5.575266 0.974052 +0.5692344 5.575266 0.974052 +0.6530715 5.575266 0.974052 +0.7474945 5.575266 0.974052 +0.8539475 5.575266 0.974052 +0.974052 5.575266 0.974052 +1.113885 5.575266 0.974052 +1.27456 5.575266 0.974052 +1.458117 5.575266 0.974052 +1.667858 5.575266 0.974052 +1.907556 5.575266 0.974052 +2.181521 5.575266 0.974052 +2.494678 5.575266 0.974052 +2.852659 5.575266 0.974052 +3.261896 5.575266 0.974052 +3.729748 5.575266 0.974052 +4.264621 5.575266 0.974052 +4.876131 5.575266 0.974052 +5.575266 5.575266 0.974052 +6.374593 5.575266 0.974052 +0 6.374593 0.974052 +0 6.374593 0.974052 +0 6.374593 0.974052 +0.002268731 6.374593 0.974052 +0.07076883 6.374593 0.974052 +0.1119241 6.374593 0.974052 +0.1475052 6.374593 0.974052 +0.1846606 6.374593 0.974052 +0.2245119 6.374593 0.974052 +0.2679612 6.374593 0.974052 +0.3158431 6.374593 0.974052 +0.3689944 6.374593 0.974052 +0.4282948 6.374593 0.974052 +0.494694 6.374593 0.974052 +0.5692344 6.374593 0.974052 +0.6530715 6.374593 0.974052 +0.7474945 6.374593 0.974052 +0.8539475 6.374593 0.974052 +0.974052 6.374593 0.974052 +1.113885 6.374593 0.974052 +1.27456 6.374593 0.974052 +1.458117 6.374593 0.974052 +1.667858 6.374593 0.974052 +1.907556 6.374593 0.974052 +2.181521 6.374593 0.974052 +2.494678 6.374593 0.974052 +2.852659 6.374593 0.974052 +3.261896 6.374593 0.974052 +3.729748 6.374593 0.974052 +4.264621 6.374593 0.974052 +4.876131 6.374593 0.974052 +5.575266 6.374593 0.974052 +6.374593 6.374593 0.974052 +0 0 1.113885 +0 0 1.113885 +0 0 1.113885 +0.002268731 0 1.113885 +0.07076883 0 1.113885 +0.1119241 0 1.113885 +0.1475052 0 1.113885 +0.1846606 0 1.113885 +0.2245119 0 1.113885 +0.2679612 0 1.113885 +0.3158431 0 1.113885 +0.3689944 0 1.113885 +0.4282948 0 1.113885 +0.494694 0 1.113885 +0.5692344 0 1.113885 +0.6530715 0 1.113885 +0.7474945 0 1.113885 +0.8539475 0 1.113885 +0.974052 0 1.113885 +1.113885 0 1.113885 +1.27456 0 1.113885 +1.458117 0 1.113885 +1.667858 0 1.113885 +1.907556 0 1.113885 +2.181521 0 1.113885 +2.494678 0 1.113885 +2.852659 0 1.113885 +3.261896 0 1.113885 +3.729748 0 1.113885 +4.264621 0 1.113885 +4.876131 0 1.113885 +5.575266 0 1.113885 +6.374593 0 1.113885 +0 0 1.113885 +0 0 1.113885 +0 0 1.113885 +0.002268731 0 1.113885 +0.07076883 0 1.113885 +0.1119241 0 1.113885 +0.1475052 0 1.113885 +0.1846606 0 1.113885 +0.2245119 0 1.113885 +0.2679612 0 1.113885 +0.3158431 0 1.113885 +0.3689944 0 1.113885 +0.4282948 0 1.113885 +0.494694 0 1.113885 +0.5692344 0 1.113885 +0.6530715 0 1.113885 +0.7474945 0 1.113885 +0.8539475 0 1.113885 +0.974052 0 1.113885 +1.113885 0 1.113885 +1.27456 0 1.113885 +1.458117 0 1.113885 +1.667858 0 1.113885 +1.907556 0 1.113885 +2.181521 0 1.113885 +2.494678 0 1.113885 +2.852659 0 1.113885 +3.261896 0 1.113885 +3.729748 0 1.113885 +4.264621 0 1.113885 +4.876131 0 1.113885 +5.575266 0 1.113885 +6.374593 0 1.113885 +0 0 1.113885 +0 0 1.113885 +0 0 1.113885 +0.002268731 0 1.113885 +0.07076883 0 1.113885 +0.1119241 0 1.113885 +0.1475052 0 1.113885 +0.1846606 0 1.113885 +0.2245119 0 1.113885 +0.2679612 0 1.113885 +0.3158431 0 1.113885 +0.3689944 0 1.113885 +0.4282948 0 1.113885 +0.494694 0 1.113885 +0.5692344 0 1.113885 +0.6530715 0 1.113885 +0.7474945 0 1.113885 +0.8539475 0 1.113885 +0.974052 0 1.113885 +1.113885 0 1.113885 +1.27456 0 1.113885 +1.458117 0 1.113885 +1.667858 0 1.113885 +1.907556 0 1.113885 +2.181521 0 1.113885 +2.494678 0 1.113885 +2.852659 0 1.113885 +3.261896 0 1.113885 +3.729748 0 1.113885 +4.264621 0 1.113885 +4.876131 0 1.113885 +5.575266 0 1.113885 +6.374593 0 1.113885 +0 0.002268731 1.113885 +0 0.002268731 1.113885 +0 0.002268731 1.113885 +0.002268731 0.002268731 1.113885 +0.07076883 0.002268731 1.113885 +0.1119241 0.002268731 1.113885 +0.1475052 0.002268731 1.113885 +0.1846606 0.002268731 1.113885 +0.2245119 0.002268731 1.113885 +0.2679612 0.002268731 1.113885 +0.3158431 0.002268731 1.113885 +0.3689944 0.002268731 1.113885 +0.4282948 0.002268731 1.113885 +0.494694 0.002268731 1.113885 +0.5692344 0.002268731 1.113885 +0.6530715 0.002268731 1.113885 +0.7474945 0.002268731 1.113885 +0.8539475 0.002268731 1.113885 +0.974052 0.002268731 1.113885 +1.113885 0.002268731 1.113885 +1.27456 0.002268731 1.113885 +1.458117 0.002268731 1.113885 +1.667858 0.002268731 1.113885 +1.907556 0.002268731 1.113885 +2.181521 0.002268731 1.113885 +2.494678 0.002268731 1.113885 +2.852659 0.002268731 1.113885 +3.261896 0.002268731 1.113885 +3.729748 0.002268731 1.113885 +4.264621 0.002268731 1.113885 +4.876131 0.002268731 1.113885 +5.575266 0.002268731 1.113885 +6.374593 0.002268731 1.113885 +0 0.07076883 1.113885 +0 0.07076883 1.113885 +0 0.07076883 1.113885 +0.002268731 0.07076883 1.113885 +0.07076883 0.07076883 1.113885 +0.1119241 0.07076883 1.113885 +0.1475052 0.07076883 1.113885 +0.1846606 0.07076883 1.113885 +0.2245119 0.07076883 1.113885 +0.2679612 0.07076883 1.113885 +0.3158431 0.07076883 1.113885 +0.3689944 0.07076883 1.113885 +0.4282948 0.07076883 1.113885 +0.494694 0.07076883 1.113885 +0.5692344 0.07076883 1.113885 +0.6530715 0.07076883 1.113885 +0.7474945 0.07076883 1.113885 +0.8539475 0.07076883 1.113885 +0.974052 0.07076883 1.113885 +1.113885 0.07076883 1.113885 +1.27456 0.07076883 1.113885 +1.458117 0.07076883 1.113885 +1.667858 0.07076883 1.113885 +1.907556 0.07076883 1.113885 +2.181521 0.07076883 1.113885 +2.494678 0.07076883 1.113885 +2.852659 0.07076883 1.113885 +3.261896 0.07076883 1.113885 +3.729748 0.07076883 1.113885 +4.264621 0.07076883 1.113885 +4.876131 0.07076883 1.113885 +5.575266 0.07076883 1.113885 +6.374593 0.07076883 1.113885 +0 0.1119241 1.113885 +0 0.1119241 1.113885 +0 0.1119241 1.113885 +0.002268731 0.1119241 1.113885 +0.07076883 0.1119241 1.113885 +0.1119241 0.1119241 1.113885 +0.1475052 0.1119241 1.113885 +0.1846606 0.1119241 1.113885 +0.2245119 0.1119241 1.113885 +0.2679612 0.1119241 1.113885 +0.3158431 0.1119241 1.113885 +0.3689944 0.1119241 1.113885 +0.4282948 0.1119241 1.113885 +0.494694 0.1119241 1.113885 +0.5692344 0.1119241 1.113885 +0.6530715 0.1119241 1.113885 +0.7474945 0.1119241 1.113885 +0.8539475 0.1119241 1.113885 +0.974052 0.1119241 1.113885 +1.113885 0.1119241 1.113885 +1.27456 0.1119241 1.113885 +1.458117 0.1119241 1.113885 +1.667858 0.1119241 1.113885 +1.907556 0.1119241 1.113885 +2.181521 0.1119241 1.113885 +2.494678 0.1119241 1.113885 +2.852659 0.1119241 1.113885 +3.261896 0.1119241 1.113885 +3.729748 0.1119241 1.113885 +4.264621 0.1119241 1.113885 +4.876131 0.1119241 1.113885 +5.575266 0.1119241 1.113885 +6.374593 0.1119241 1.113885 +0 0.1475052 1.113885 +0 0.1475052 1.113885 +0 0.1475052 1.113885 +0.002268731 0.1475052 1.113885 +0.07076883 0.1475052 1.113885 +0.1119241 0.1475052 1.113885 +0.1475052 0.1475052 1.113885 +0.1846606 0.1475052 1.113885 +0.2245119 0.1475052 1.113885 +0.2679612 0.1475052 1.113885 +0.3158431 0.1475052 1.113885 +0.3689944 0.1475052 1.113885 +0.4282948 0.1475052 1.113885 +0.494694 0.1475052 1.113885 +0.5692344 0.1475052 1.113885 +0.6530715 0.1475052 1.113885 +0.7474945 0.1475052 1.113885 +0.8539475 0.1475052 1.113885 +0.974052 0.1475052 1.113885 +1.113885 0.1475052 1.113885 +1.27456 0.1475052 1.113885 +1.458117 0.1475052 1.113885 +1.667858 0.1475052 1.113885 +1.907556 0.1475052 1.113885 +2.181521 0.1475052 1.113885 +2.494678 0.1475052 1.113885 +2.852659 0.1475052 1.113885 +3.261896 0.1475052 1.113885 +3.729748 0.1475052 1.113885 +4.264621 0.1475052 1.113885 +4.876131 0.1475052 1.113885 +5.575266 0.1475052 1.113885 +6.374593 0.1475052 1.113885 +0 0.1846606 1.113885 +0 0.1846606 1.113885 +0 0.1846606 1.113885 +0.002268731 0.1846606 1.113885 +0.07076883 0.1846606 1.113885 +0.1119241 0.1846606 1.113885 +0.1475052 0.1846606 1.113885 +0.1846606 0.1846606 1.113885 +0.2245119 0.1846606 1.113885 +0.2679612 0.1846606 1.113885 +0.3158431 0.1846606 1.113885 +0.3689944 0.1846606 1.113885 +0.4282948 0.1846606 1.113885 +0.494694 0.1846606 1.113885 +0.5692344 0.1846606 1.113885 +0.6530715 0.1846606 1.113885 +0.7474945 0.1846606 1.113885 +0.8539475 0.1846606 1.113885 +0.974052 0.1846606 1.113885 +1.113885 0.1846606 1.113885 +1.27456 0.1846606 1.113885 +1.458117 0.1846606 1.113885 +1.667858 0.1846606 1.113885 +1.907556 0.1846606 1.113885 +2.181521 0.1846606 1.113885 +2.494678 0.1846606 1.113885 +2.852659 0.1846606 1.113885 +3.261896 0.1846606 1.113885 +3.729748 0.1846606 1.113885 +4.264621 0.1846606 1.113885 +4.876131 0.1846606 1.113885 +5.575266 0.1846606 1.113885 +6.374593 0.1846606 1.113885 +0 0.2245119 1.113885 +0 0.2245119 1.113885 +0 0.2245119 1.113885 +0.002268731 0.2245119 1.113885 +0.07076883 0.2245119 1.113885 +0.1119241 0.2245119 1.113885 +0.1475052 0.2245119 1.113885 +0.1846606 0.2245119 1.113885 +0.2245119 0.2245119 1.113885 +0.2679612 0.2245119 1.113885 +0.3158431 0.2245119 1.113885 +0.3689944 0.2245119 1.113885 +0.4282948 0.2245119 1.113885 +0.494694 0.2245119 1.113885 +0.5692344 0.2245119 1.113885 +0.6530715 0.2245119 1.113885 +0.7474945 0.2245119 1.113885 +0.8539475 0.2245119 1.113885 +0.974052 0.2245119 1.113885 +1.113885 0.2245119 1.113885 +1.27456 0.2245119 1.113885 +1.458117 0.2245119 1.113885 +1.667858 0.2245119 1.113885 +1.907556 0.2245119 1.113885 +2.181521 0.2245119 1.113885 +2.494678 0.2245119 1.113885 +2.852659 0.2245119 1.113885 +3.261896 0.2245119 1.113885 +3.729748 0.2245119 1.113885 +4.264621 0.2245119 1.113885 +4.876131 0.2245119 1.113885 +5.575266 0.2245119 1.113885 +6.374593 0.2245119 1.113885 +0 0.2679612 1.113885 +0 0.2679612 1.113885 +0 0.2679612 1.113885 +0.002268731 0.2679612 1.113885 +0.07076883 0.2679612 1.113885 +0.1119241 0.2679612 1.113885 +0.1475052 0.2679612 1.113885 +0.1846606 0.2679612 1.113885 +0.2245119 0.2679612 1.113885 +0.2679612 0.2679612 1.113885 +0.3158431 0.2679612 1.113885 +0.3689944 0.2679612 1.113885 +0.4282948 0.2679612 1.113885 +0.494694 0.2679612 1.113885 +0.5692344 0.2679612 1.113885 +0.6530715 0.2679612 1.113885 +0.7474945 0.2679612 1.113885 +0.8539475 0.2679612 1.113885 +0.974052 0.2679612 1.113885 +1.113885 0.2679612 1.113885 +1.27456 0.2679612 1.113885 +1.458117 0.2679612 1.113885 +1.667858 0.2679612 1.113885 +1.907556 0.2679612 1.113885 +2.181521 0.2679612 1.113885 +2.494678 0.2679612 1.113885 +2.852659 0.2679612 1.113885 +3.261896 0.2679612 1.113885 +3.729748 0.2679612 1.113885 +4.264621 0.2679612 1.113885 +4.876131 0.2679612 1.113885 +5.575266 0.2679612 1.113885 +6.374593 0.2679612 1.113885 +0 0.3158431 1.113885 +0 0.3158431 1.113885 +0 0.3158431 1.113885 +0.002268731 0.3158431 1.113885 +0.07076883 0.3158431 1.113885 +0.1119241 0.3158431 1.113885 +0.1475052 0.3158431 1.113885 +0.1846606 0.3158431 1.113885 +0.2245119 0.3158431 1.113885 +0.2679612 0.3158431 1.113885 +0.3158431 0.3158431 1.113885 +0.3689944 0.3158431 1.113885 +0.4282948 0.3158431 1.113885 +0.494694 0.3158431 1.113885 +0.5692344 0.3158431 1.113885 +0.6530715 0.3158431 1.113885 +0.7474945 0.3158431 1.113885 +0.8539475 0.3158431 1.113885 +0.974052 0.3158431 1.113885 +1.113885 0.3158431 1.113885 +1.27456 0.3158431 1.113885 +1.458117 0.3158431 1.113885 +1.667858 0.3158431 1.113885 +1.907556 0.3158431 1.113885 +2.181521 0.3158431 1.113885 +2.494678 0.3158431 1.113885 +2.852659 0.3158431 1.113885 +3.261896 0.3158431 1.113885 +3.729748 0.3158431 1.113885 +4.264621 0.3158431 1.113885 +4.876131 0.3158431 1.113885 +5.575266 0.3158431 1.113885 +6.374593 0.3158431 1.113885 +0 0.3689944 1.113885 +0 0.3689944 1.113885 +0 0.3689944 1.113885 +0.002268731 0.3689944 1.113885 +0.07076883 0.3689944 1.113885 +0.1119241 0.3689944 1.113885 +0.1475052 0.3689944 1.113885 +0.1846606 0.3689944 1.113885 +0.2245119 0.3689944 1.113885 +0.2679612 0.3689944 1.113885 +0.3158431 0.3689944 1.113885 +0.3689944 0.3689944 1.113885 +0.4282948 0.3689944 1.113885 +0.494694 0.3689944 1.113885 +0.5692344 0.3689944 1.113885 +0.6530715 0.3689944 1.113885 +0.7474945 0.3689944 1.113885 +0.8539475 0.3689944 1.113885 +0.974052 0.3689944 1.113885 +1.113885 0.3689944 1.113885 +1.27456 0.3689944 1.113885 +1.458117 0.3689944 1.113885 +1.667858 0.3689944 1.113885 +1.907556 0.3689944 1.113885 +2.181521 0.3689944 1.113885 +2.494678 0.3689944 1.113885 +2.852659 0.3689944 1.113885 +3.261896 0.3689944 1.113885 +3.729748 0.3689944 1.113885 +4.264621 0.3689944 1.113885 +4.876131 0.3689944 1.113885 +5.575266 0.3689944 1.113885 +6.374593 0.3689944 1.113885 +0 0.4282948 1.113885 +0 0.4282948 1.113885 +0 0.4282948 1.113885 +0.002268731 0.4282948 1.113885 +0.07076883 0.4282948 1.113885 +0.1119241 0.4282948 1.113885 +0.1475052 0.4282948 1.113885 +0.1846606 0.4282948 1.113885 +0.2245119 0.4282948 1.113885 +0.2679612 0.4282948 1.113885 +0.3158431 0.4282948 1.113885 +0.3689944 0.4282948 1.113885 +0.4282948 0.4282948 1.113885 +0.494694 0.4282948 1.113885 +0.5692344 0.4282948 1.113885 +0.6530715 0.4282948 1.113885 +0.7474945 0.4282948 1.113885 +0.8539475 0.4282948 1.113885 +0.974052 0.4282948 1.113885 +1.113885 0.4282948 1.113885 +1.27456 0.4282948 1.113885 +1.458117 0.4282948 1.113885 +1.667858 0.4282948 1.113885 +1.907556 0.4282948 1.113885 +2.181521 0.4282948 1.113885 +2.494678 0.4282948 1.113885 +2.852659 0.4282948 1.113885 +3.261896 0.4282948 1.113885 +3.729748 0.4282948 1.113885 +4.264621 0.4282948 1.113885 +4.876131 0.4282948 1.113885 +5.575266 0.4282948 1.113885 +6.374593 0.4282948 1.113885 +0 0.494694 1.113885 +0 0.494694 1.113885 +0 0.494694 1.113885 +0.002268731 0.494694 1.113885 +0.07076883 0.494694 1.113885 +0.1119241 0.494694 1.113885 +0.1475052 0.494694 1.113885 +0.1846606 0.494694 1.113885 +0.2245119 0.494694 1.113885 +0.2679612 0.494694 1.113885 +0.3158431 0.494694 1.113885 +0.3689944 0.494694 1.113885 +0.4282948 0.494694 1.113885 +0.494694 0.494694 1.113885 +0.5692344 0.494694 1.113885 +0.6530715 0.494694 1.113885 +0.7474945 0.494694 1.113885 +0.8539475 0.494694 1.113885 +0.974052 0.494694 1.113885 +1.113885 0.494694 1.113885 +1.27456 0.494694 1.113885 +1.458117 0.494694 1.113885 +1.667858 0.494694 1.113885 +1.907556 0.494694 1.113885 +2.181521 0.494694 1.113885 +2.494678 0.494694 1.113885 +2.852659 0.494694 1.113885 +3.261896 0.494694 1.113885 +3.729748 0.494694 1.113885 +4.264621 0.494694 1.113885 +4.876131 0.494694 1.113885 +5.575266 0.494694 1.113885 +6.374593 0.494694 1.113885 +0 0.5692344 1.113885 +0 0.5692344 1.113885 +0 0.5692344 1.113885 +0.002268731 0.5692344 1.113885 +0.07076883 0.5692344 1.113885 +0.1119241 0.5692344 1.113885 +0.1475052 0.5692344 1.113885 +0.1846606 0.5692344 1.113885 +0.2245119 0.5692344 1.113885 +0.2679612 0.5692344 1.113885 +0.3158431 0.5692344 1.113885 +0.3689944 0.5692344 1.113885 +0.4282948 0.5692344 1.113885 +0.494694 0.5692344 1.113885 +0.5692344 0.5692344 1.113885 +0.6530715 0.5692344 1.113885 +0.7474945 0.5692344 1.113885 +0.8539475 0.5692344 1.113885 +0.974052 0.5692344 1.113885 +1.113885 0.5692344 1.113885 +1.27456 0.5692344 1.113885 +1.458117 0.5692344 1.113885 +1.667858 0.5692344 1.113885 +1.907556 0.5692344 1.113885 +2.181521 0.5692344 1.113885 +2.494678 0.5692344 1.113885 +2.852659 0.5692344 1.113885 +3.261896 0.5692344 1.113885 +3.729748 0.5692344 1.113885 +4.264621 0.5692344 1.113885 +4.876131 0.5692344 1.113885 +5.575266 0.5692344 1.113885 +6.374593 0.5692344 1.113885 +0 0.6530715 1.113885 +0 0.6530715 1.113885 +0 0.6530715 1.113885 +0.002268731 0.6530715 1.113885 +0.07076883 0.6530715 1.113885 +0.1119241 0.6530715 1.113885 +0.1475052 0.6530715 1.113885 +0.1846606 0.6530715 1.113885 +0.2245119 0.6530715 1.113885 +0.2679612 0.6530715 1.113885 +0.3158431 0.6530715 1.113885 +0.3689944 0.6530715 1.113885 +0.4282948 0.6530715 1.113885 +0.494694 0.6530715 1.113885 +0.5692344 0.6530715 1.113885 +0.6530715 0.6530715 1.113885 +0.7474945 0.6530715 1.113885 +0.8539475 0.6530715 1.113885 +0.974052 0.6530715 1.113885 +1.113885 0.6530715 1.113885 +1.27456 0.6530715 1.113885 +1.458117 0.6530715 1.113885 +1.667858 0.6530715 1.113885 +1.907556 0.6530715 1.113885 +2.181521 0.6530715 1.113885 +2.494678 0.6530715 1.113885 +2.852659 0.6530715 1.113885 +3.261896 0.6530715 1.113885 +3.729748 0.6530715 1.113885 +4.264621 0.6530715 1.113885 +4.876131 0.6530715 1.113885 +5.575266 0.6530715 1.113885 +6.374593 0.6530715 1.113885 +0 0.7474945 1.113885 +0 0.7474945 1.113885 +0 0.7474945 1.113885 +0.002268731 0.7474945 1.113885 +0.07076883 0.7474945 1.113885 +0.1119241 0.7474945 1.113885 +0.1475052 0.7474945 1.113885 +0.1846606 0.7474945 1.113885 +0.2245119 0.7474945 1.113885 +0.2679612 0.7474945 1.113885 +0.3158431 0.7474945 1.113885 +0.3689944 0.7474945 1.113885 +0.4282948 0.7474945 1.113885 +0.494694 0.7474945 1.113885 +0.5692344 0.7474945 1.113885 +0.6530715 0.7474945 1.113885 +0.7474945 0.7474945 1.113885 +0.8539475 0.7474945 1.113885 +0.974052 0.7474945 1.113885 +1.113885 0.7474945 1.113885 +1.27456 0.7474945 1.113885 +1.458117 0.7474945 1.113885 +1.667858 0.7474945 1.113885 +1.907556 0.7474945 1.113885 +2.181521 0.7474945 1.113885 +2.494678 0.7474945 1.113885 +2.852659 0.7474945 1.113885 +3.261896 0.7474945 1.113885 +3.729748 0.7474945 1.113885 +4.264621 0.7474945 1.113885 +4.876131 0.7474945 1.113885 +5.575266 0.7474945 1.113885 +6.374593 0.7474945 1.113885 +0 0.8539475 1.113885 +0 0.8539475 1.113885 +0 0.8539475 1.113885 +0.002268731 0.8539475 1.113885 +0.07076883 0.8539475 1.113885 +0.1119241 0.8539475 1.113885 +0.1475052 0.8539475 1.113885 +0.1846606 0.8539475 1.113885 +0.2245119 0.8539475 1.113885 +0.2679612 0.8539475 1.113885 +0.3158431 0.8539475 1.113885 +0.3689944 0.8539475 1.113885 +0.4282948 0.8539475 1.113885 +0.494694 0.8539475 1.113885 +0.5692344 0.8539475 1.113885 +0.6530715 0.8539475 1.113885 +0.7474945 0.8539475 1.113885 +0.8539475 0.8539475 1.113885 +0.974052 0.8539475 1.113885 +1.113885 0.8539475 1.113885 +1.27456 0.8539475 1.113885 +1.458117 0.8539475 1.113885 +1.667858 0.8539475 1.113885 +1.907556 0.8539475 1.113885 +2.181521 0.8539475 1.113885 +2.494678 0.8539475 1.113885 +2.852659 0.8539475 1.113885 +3.261896 0.8539475 1.113885 +3.729748 0.8539475 1.113885 +4.264621 0.8539475 1.113885 +4.876131 0.8539475 1.113885 +5.575266 0.8539475 1.113885 +6.374593 0.8539475 1.113885 +0 0.974052 1.113885 +0 0.974052 1.113885 +0 0.974052 1.113885 +0.002268731 0.974052 1.113885 +0.07076883 0.974052 1.113885 +0.1119241 0.974052 1.113885 +0.1475052 0.974052 1.113885 +0.1846606 0.974052 1.113885 +0.2245119 0.974052 1.113885 +0.2679612 0.974052 1.113885 +0.3158431 0.974052 1.113885 +0.3689944 0.974052 1.113885 +0.4282948 0.974052 1.113885 +0.494694 0.974052 1.113885 +0.5692344 0.974052 1.113885 +0.6530715 0.974052 1.113885 +0.7474945 0.974052 1.113885 +0.8539475 0.974052 1.113885 +0.974052 0.974052 1.113885 +1.113885 0.974052 1.113885 +1.27456 0.974052 1.113885 +1.458117 0.974052 1.113885 +1.667858 0.974052 1.113885 +1.907556 0.974052 1.113885 +2.181521 0.974052 1.113885 +2.494678 0.974052 1.113885 +2.852659 0.974052 1.113885 +3.261896 0.974052 1.113885 +3.729748 0.974052 1.113885 +4.264621 0.974052 1.113885 +4.876131 0.974052 1.113885 +5.575266 0.974052 1.113885 +6.374593 0.974052 1.113885 +0 1.113885 1.113885 +0 1.113885 1.113885 +0 1.113885 1.113885 +0.002268731 1.113885 1.113885 +0.07076883 1.113885 1.113885 +0.1119241 1.113885 1.113885 +0.1475052 1.113885 1.113885 +0.1846606 1.113885 1.113885 +0.2245119 1.113885 1.113885 +0.2679612 1.113885 1.113885 +0.3158431 1.113885 1.113885 +0.3689944 1.113885 1.113885 +0.4282948 1.113885 1.113885 +0.494694 1.113885 1.113885 +0.5692344 1.113885 1.113885 +0.6530715 1.113885 1.113885 +0.7474945 1.113885 1.113885 +0.8539475 1.113885 1.113885 +0.974052 1.113885 1.113885 +1.113885 1.113885 1.113885 +1.27456 1.113885 1.113885 +1.458117 1.113885 1.113885 +1.667858 1.113885 1.113885 +1.907556 1.113885 1.113885 +2.181521 1.113885 1.113885 +2.494678 1.113885 1.113885 +2.852659 1.113885 1.113885 +3.261896 1.113885 1.113885 +3.729748 1.113885 1.113885 +4.264621 1.113885 1.113885 +4.876131 1.113885 1.113885 +5.575266 1.113885 1.113885 +6.374593 1.113885 1.113885 +0 1.27456 1.113885 +0 1.27456 1.113885 +0 1.27456 1.113885 +0.002268731 1.27456 1.113885 +0.07076883 1.27456 1.113885 +0.1119241 1.27456 1.113885 +0.1475052 1.27456 1.113885 +0.1846606 1.27456 1.113885 +0.2245119 1.27456 1.113885 +0.2679612 1.27456 1.113885 +0.3158431 1.27456 1.113885 +0.3689944 1.27456 1.113885 +0.4282948 1.27456 1.113885 +0.494694 1.27456 1.113885 +0.5692344 1.27456 1.113885 +0.6530715 1.27456 1.113885 +0.7474945 1.27456 1.113885 +0.8539475 1.27456 1.113885 +0.974052 1.27456 1.113885 +1.113885 1.27456 1.113885 +1.27456 1.27456 1.113885 +1.458117 1.27456 1.113885 +1.667858 1.27456 1.113885 +1.907556 1.27456 1.113885 +2.181521 1.27456 1.113885 +2.494678 1.27456 1.113885 +2.852659 1.27456 1.113885 +3.261896 1.27456 1.113885 +3.729748 1.27456 1.113885 +4.264621 1.27456 1.113885 +4.876131 1.27456 1.113885 +5.575266 1.27456 1.113885 +6.374593 1.27456 1.113885 +0 1.458117 1.113885 +0 1.458117 1.113885 +0 1.458117 1.113885 +0.002268731 1.458117 1.113885 +0.07076883 1.458117 1.113885 +0.1119241 1.458117 1.113885 +0.1475052 1.458117 1.113885 +0.1846606 1.458117 1.113885 +0.2245119 1.458117 1.113885 +0.2679612 1.458117 1.113885 +0.3158431 1.458117 1.113885 +0.3689944 1.458117 1.113885 +0.4282948 1.458117 1.113885 +0.494694 1.458117 1.113885 +0.5692344 1.458117 1.113885 +0.6530715 1.458117 1.113885 +0.7474945 1.458117 1.113885 +0.8539475 1.458117 1.113885 +0.974052 1.458117 1.113885 +1.113885 1.458117 1.113885 +1.27456 1.458117 1.113885 +1.458117 1.458117 1.113885 +1.667858 1.458117 1.113885 +1.907556 1.458117 1.113885 +2.181521 1.458117 1.113885 +2.494678 1.458117 1.113885 +2.852659 1.458117 1.113885 +3.261896 1.458117 1.113885 +3.729748 1.458117 1.113885 +4.264621 1.458117 1.113885 +4.876131 1.458117 1.113885 +5.575266 1.458117 1.113885 +6.374593 1.458117 1.113885 +0 1.667858 1.113885 +0 1.667858 1.113885 +0 1.667858 1.113885 +0.002268731 1.667858 1.113885 +0.07076883 1.667858 1.113885 +0.1119241 1.667858 1.113885 +0.1475052 1.667858 1.113885 +0.1846606 1.667858 1.113885 +0.2245119 1.667858 1.113885 +0.2679612 1.667858 1.113885 +0.3158431 1.667858 1.113885 +0.3689944 1.667858 1.113885 +0.4282948 1.667858 1.113885 +0.494694 1.667858 1.113885 +0.5692344 1.667858 1.113885 +0.6530715 1.667858 1.113885 +0.7474945 1.667858 1.113885 +0.8539475 1.667858 1.113885 +0.974052 1.667858 1.113885 +1.113885 1.667858 1.113885 +1.27456 1.667858 1.113885 +1.458117 1.667858 1.113885 +1.667858 1.667858 1.113885 +1.907556 1.667858 1.113885 +2.181521 1.667858 1.113885 +2.494678 1.667858 1.113885 +2.852659 1.667858 1.113885 +3.261896 1.667858 1.113885 +3.729748 1.667858 1.113885 +4.264621 1.667858 1.113885 +4.876131 1.667858 1.113885 +5.575266 1.667858 1.113885 +6.374593 1.667858 1.113885 +0 1.907556 1.113885 +0 1.907556 1.113885 +0 1.907556 1.113885 +0.002268731 1.907556 1.113885 +0.07076883 1.907556 1.113885 +0.1119241 1.907556 1.113885 +0.1475052 1.907556 1.113885 +0.1846606 1.907556 1.113885 +0.2245119 1.907556 1.113885 +0.2679612 1.907556 1.113885 +0.3158431 1.907556 1.113885 +0.3689944 1.907556 1.113885 +0.4282948 1.907556 1.113885 +0.494694 1.907556 1.113885 +0.5692344 1.907556 1.113885 +0.6530715 1.907556 1.113885 +0.7474945 1.907556 1.113885 +0.8539475 1.907556 1.113885 +0.974052 1.907556 1.113885 +1.113885 1.907556 1.113885 +1.27456 1.907556 1.113885 +1.458117 1.907556 1.113885 +1.667858 1.907556 1.113885 +1.907556 1.907556 1.113885 +2.181521 1.907556 1.113885 +2.494678 1.907556 1.113885 +2.852659 1.907556 1.113885 +3.261896 1.907556 1.113885 +3.729748 1.907556 1.113885 +4.264621 1.907556 1.113885 +4.876131 1.907556 1.113885 +5.575266 1.907556 1.113885 +6.374593 1.907556 1.113885 +0 2.181521 1.113885 +0 2.181521 1.113885 +0 2.181521 1.113885 +0.002268731 2.181521 1.113885 +0.07076883 2.181521 1.113885 +0.1119241 2.181521 1.113885 +0.1475052 2.181521 1.113885 +0.1846606 2.181521 1.113885 +0.2245119 2.181521 1.113885 +0.2679612 2.181521 1.113885 +0.3158431 2.181521 1.113885 +0.3689944 2.181521 1.113885 +0.4282948 2.181521 1.113885 +0.494694 2.181521 1.113885 +0.5692344 2.181521 1.113885 +0.6530715 2.181521 1.113885 +0.7474945 2.181521 1.113885 +0.8539475 2.181521 1.113885 +0.974052 2.181521 1.113885 +1.113885 2.181521 1.113885 +1.27456 2.181521 1.113885 +1.458117 2.181521 1.113885 +1.667858 2.181521 1.113885 +1.907556 2.181521 1.113885 +2.181521 2.181521 1.113885 +2.494678 2.181521 1.113885 +2.852659 2.181521 1.113885 +3.261896 2.181521 1.113885 +3.729748 2.181521 1.113885 +4.264621 2.181521 1.113885 +4.876131 2.181521 1.113885 +5.575266 2.181521 1.113885 +6.374593 2.181521 1.113885 +0 2.494678 1.113885 +0 2.494678 1.113885 +0 2.494678 1.113885 +0.002268731 2.494678 1.113885 +0.07076883 2.494678 1.113885 +0.1119241 2.494678 1.113885 +0.1475052 2.494678 1.113885 +0.1846606 2.494678 1.113885 +0.2245119 2.494678 1.113885 +0.2679612 2.494678 1.113885 +0.3158431 2.494678 1.113885 +0.3689944 2.494678 1.113885 +0.4282948 2.494678 1.113885 +0.494694 2.494678 1.113885 +0.5692344 2.494678 1.113885 +0.6530715 2.494678 1.113885 +0.7474945 2.494678 1.113885 +0.8539475 2.494678 1.113885 +0.974052 2.494678 1.113885 +1.113885 2.494678 1.113885 +1.27456 2.494678 1.113885 +1.458117 2.494678 1.113885 +1.667858 2.494678 1.113885 +1.907556 2.494678 1.113885 +2.181521 2.494678 1.113885 +2.494678 2.494678 1.113885 +2.852659 2.494678 1.113885 +3.261896 2.494678 1.113885 +3.729748 2.494678 1.113885 +4.264621 2.494678 1.113885 +4.876131 2.494678 1.113885 +5.575266 2.494678 1.113885 +6.374593 2.494678 1.113885 +0 2.852659 1.113885 +0 2.852659 1.113885 +0 2.852659 1.113885 +0.002268731 2.852659 1.113885 +0.07076883 2.852659 1.113885 +0.1119241 2.852659 1.113885 +0.1475052 2.852659 1.113885 +0.1846606 2.852659 1.113885 +0.2245119 2.852659 1.113885 +0.2679612 2.852659 1.113885 +0.3158431 2.852659 1.113885 +0.3689944 2.852659 1.113885 +0.4282948 2.852659 1.113885 +0.494694 2.852659 1.113885 +0.5692344 2.852659 1.113885 +0.6530715 2.852659 1.113885 +0.7474945 2.852659 1.113885 +0.8539475 2.852659 1.113885 +0.974052 2.852659 1.113885 +1.113885 2.852659 1.113885 +1.27456 2.852659 1.113885 +1.458117 2.852659 1.113885 +1.667858 2.852659 1.113885 +1.907556 2.852659 1.113885 +2.181521 2.852659 1.113885 +2.494678 2.852659 1.113885 +2.852659 2.852659 1.113885 +3.261896 2.852659 1.113885 +3.729748 2.852659 1.113885 +4.264621 2.852659 1.113885 +4.876131 2.852659 1.113885 +5.575266 2.852659 1.113885 +6.374593 2.852659 1.113885 +0 3.261896 1.113885 +0 3.261896 1.113885 +0 3.261896 1.113885 +0.002268731 3.261896 1.113885 +0.07076883 3.261896 1.113885 +0.1119241 3.261896 1.113885 +0.1475052 3.261896 1.113885 +0.1846606 3.261896 1.113885 +0.2245119 3.261896 1.113885 +0.2679612 3.261896 1.113885 +0.3158431 3.261896 1.113885 +0.3689944 3.261896 1.113885 +0.4282948 3.261896 1.113885 +0.494694 3.261896 1.113885 +0.5692344 3.261896 1.113885 +0.6530715 3.261896 1.113885 +0.7474945 3.261896 1.113885 +0.8539475 3.261896 1.113885 +0.974052 3.261896 1.113885 +1.113885 3.261896 1.113885 +1.27456 3.261896 1.113885 +1.458117 3.261896 1.113885 +1.667858 3.261896 1.113885 +1.907556 3.261896 1.113885 +2.181521 3.261896 1.113885 +2.494678 3.261896 1.113885 +2.852659 3.261896 1.113885 +3.261896 3.261896 1.113885 +3.729748 3.261896 1.113885 +4.264621 3.261896 1.113885 +4.876131 3.261896 1.113885 +5.575266 3.261896 1.113885 +6.374593 3.261896 1.113885 +0 3.729748 1.113885 +0 3.729748 1.113885 +0 3.729748 1.113885 +0.002268731 3.729748 1.113885 +0.07076883 3.729748 1.113885 +0.1119241 3.729748 1.113885 +0.1475052 3.729748 1.113885 +0.1846606 3.729748 1.113885 +0.2245119 3.729748 1.113885 +0.2679612 3.729748 1.113885 +0.3158431 3.729748 1.113885 +0.3689944 3.729748 1.113885 +0.4282948 3.729748 1.113885 +0.494694 3.729748 1.113885 +0.5692344 3.729748 1.113885 +0.6530715 3.729748 1.113885 +0.7474945 3.729748 1.113885 +0.8539475 3.729748 1.113885 +0.974052 3.729748 1.113885 +1.113885 3.729748 1.113885 +1.27456 3.729748 1.113885 +1.458117 3.729748 1.113885 +1.667858 3.729748 1.113885 +1.907556 3.729748 1.113885 +2.181521 3.729748 1.113885 +2.494678 3.729748 1.113885 +2.852659 3.729748 1.113885 +3.261896 3.729748 1.113885 +3.729748 3.729748 1.113885 +4.264621 3.729748 1.113885 +4.876131 3.729748 1.113885 +5.575266 3.729748 1.113885 +6.374593 3.729748 1.113885 +0 4.264621 1.113885 +0 4.264621 1.113885 +0 4.264621 1.113885 +0.002268731 4.264621 1.113885 +0.07076883 4.264621 1.113885 +0.1119241 4.264621 1.113885 +0.1475052 4.264621 1.113885 +0.1846606 4.264621 1.113885 +0.2245119 4.264621 1.113885 +0.2679612 4.264621 1.113885 +0.3158431 4.264621 1.113885 +0.3689944 4.264621 1.113885 +0.4282948 4.264621 1.113885 +0.494694 4.264621 1.113885 +0.5692344 4.264621 1.113885 +0.6530715 4.264621 1.113885 +0.7474945 4.264621 1.113885 +0.8539475 4.264621 1.113885 +0.974052 4.264621 1.113885 +1.113885 4.264621 1.113885 +1.27456 4.264621 1.113885 +1.458117 4.264621 1.113885 +1.667858 4.264621 1.113885 +1.907556 4.264621 1.113885 +2.181521 4.264621 1.113885 +2.494678 4.264621 1.113885 +2.852659 4.264621 1.113885 +3.261896 4.264621 1.113885 +3.729748 4.264621 1.113885 +4.264621 4.264621 1.113885 +4.876131 4.264621 1.113885 +5.575266 4.264621 1.113885 +6.374593 4.264621 1.113885 +0 4.876131 1.113885 +0 4.876131 1.113885 +0 4.876131 1.113885 +0.002268731 4.876131 1.113885 +0.07076883 4.876131 1.113885 +0.1119241 4.876131 1.113885 +0.1475052 4.876131 1.113885 +0.1846606 4.876131 1.113885 +0.2245119 4.876131 1.113885 +0.2679612 4.876131 1.113885 +0.3158431 4.876131 1.113885 +0.3689944 4.876131 1.113885 +0.4282948 4.876131 1.113885 +0.494694 4.876131 1.113885 +0.5692344 4.876131 1.113885 +0.6530715 4.876131 1.113885 +0.7474945 4.876131 1.113885 +0.8539475 4.876131 1.113885 +0.974052 4.876131 1.113885 +1.113885 4.876131 1.113885 +1.27456 4.876131 1.113885 +1.458117 4.876131 1.113885 +1.667858 4.876131 1.113885 +1.907556 4.876131 1.113885 +2.181521 4.876131 1.113885 +2.494678 4.876131 1.113885 +2.852659 4.876131 1.113885 +3.261896 4.876131 1.113885 +3.729748 4.876131 1.113885 +4.264621 4.876131 1.113885 +4.876131 4.876131 1.113885 +5.575266 4.876131 1.113885 +6.374593 4.876131 1.113885 +0 5.575266 1.113885 +0 5.575266 1.113885 +0 5.575266 1.113885 +0.002268731 5.575266 1.113885 +0.07076883 5.575266 1.113885 +0.1119241 5.575266 1.113885 +0.1475052 5.575266 1.113885 +0.1846606 5.575266 1.113885 +0.2245119 5.575266 1.113885 +0.2679612 5.575266 1.113885 +0.3158431 5.575266 1.113885 +0.3689944 5.575266 1.113885 +0.4282948 5.575266 1.113885 +0.494694 5.575266 1.113885 +0.5692344 5.575266 1.113885 +0.6530715 5.575266 1.113885 +0.7474945 5.575266 1.113885 +0.8539475 5.575266 1.113885 +0.974052 5.575266 1.113885 +1.113885 5.575266 1.113885 +1.27456 5.575266 1.113885 +1.458117 5.575266 1.113885 +1.667858 5.575266 1.113885 +1.907556 5.575266 1.113885 +2.181521 5.575266 1.113885 +2.494678 5.575266 1.113885 +2.852659 5.575266 1.113885 +3.261896 5.575266 1.113885 +3.729748 5.575266 1.113885 +4.264621 5.575266 1.113885 +4.876131 5.575266 1.113885 +5.575266 5.575266 1.113885 +6.374593 5.575266 1.113885 +0 6.374593 1.113885 +0 6.374593 1.113885 +0 6.374593 1.113885 +0.002268731 6.374593 1.113885 +0.07076883 6.374593 1.113885 +0.1119241 6.374593 1.113885 +0.1475052 6.374593 1.113885 +0.1846606 6.374593 1.113885 +0.2245119 6.374593 1.113885 +0.2679612 6.374593 1.113885 +0.3158431 6.374593 1.113885 +0.3689944 6.374593 1.113885 +0.4282948 6.374593 1.113885 +0.494694 6.374593 1.113885 +0.5692344 6.374593 1.113885 +0.6530715 6.374593 1.113885 +0.7474945 6.374593 1.113885 +0.8539475 6.374593 1.113885 +0.974052 6.374593 1.113885 +1.113885 6.374593 1.113885 +1.27456 6.374593 1.113885 +1.458117 6.374593 1.113885 +1.667858 6.374593 1.113885 +1.907556 6.374593 1.113885 +2.181521 6.374593 1.113885 +2.494678 6.374593 1.113885 +2.852659 6.374593 1.113885 +3.261896 6.374593 1.113885 +3.729748 6.374593 1.113885 +4.264621 6.374593 1.113885 +4.876131 6.374593 1.113885 +5.575266 6.374593 1.113885 +6.374593 6.374593 1.113885 +0 0 1.27456 +0 0 1.27456 +0 0 1.27456 +0.002268731 0 1.27456 +0.07076883 0 1.27456 +0.1119241 0 1.27456 +0.1475052 0 1.27456 +0.1846606 0 1.27456 +0.2245119 0 1.27456 +0.2679612 0 1.27456 +0.3158431 0 1.27456 +0.3689944 0 1.27456 +0.4282948 0 1.27456 +0.494694 0 1.27456 +0.5692344 0 1.27456 +0.6530715 0 1.27456 +0.7474945 0 1.27456 +0.8539475 0 1.27456 +0.974052 0 1.27456 +1.113885 0 1.27456 +1.27456 0 1.27456 +1.458117 0 1.27456 +1.667858 0 1.27456 +1.907556 0 1.27456 +2.181521 0 1.27456 +2.494678 0 1.27456 +2.852659 0 1.27456 +3.261896 0 1.27456 +3.729748 0 1.27456 +4.264621 0 1.27456 +4.876131 0 1.27456 +5.575266 0 1.27456 +6.374593 0 1.27456 +0 0 1.27456 +0 0 1.27456 +0 0 1.27456 +0.002268731 0 1.27456 +0.07076883 0 1.27456 +0.1119241 0 1.27456 +0.1475052 0 1.27456 +0.1846606 0 1.27456 +0.2245119 0 1.27456 +0.2679612 0 1.27456 +0.3158431 0 1.27456 +0.3689944 0 1.27456 +0.4282948 0 1.27456 +0.494694 0 1.27456 +0.5692344 0 1.27456 +0.6530715 0 1.27456 +0.7474945 0 1.27456 +0.8539475 0 1.27456 +0.974052 0 1.27456 +1.113885 0 1.27456 +1.27456 0 1.27456 +1.458117 0 1.27456 +1.667858 0 1.27456 +1.907556 0 1.27456 +2.181521 0 1.27456 +2.494678 0 1.27456 +2.852659 0 1.27456 +3.261896 0 1.27456 +3.729748 0 1.27456 +4.264621 0 1.27456 +4.876131 0 1.27456 +5.575266 0 1.27456 +6.374593 0 1.27456 +0 0 1.27456 +0 0 1.27456 +0 0 1.27456 +0.002268731 0 1.27456 +0.07076883 0 1.27456 +0.1119241 0 1.27456 +0.1475052 0 1.27456 +0.1846606 0 1.27456 +0.2245119 0 1.27456 +0.2679612 0 1.27456 +0.3158431 0 1.27456 +0.3689944 0 1.27456 +0.4282948 0 1.27456 +0.494694 0 1.27456 +0.5692344 0 1.27456 +0.6530715 0 1.27456 +0.7474945 0 1.27456 +0.8539475 0 1.27456 +0.974052 0 1.27456 +1.113885 0 1.27456 +1.27456 0 1.27456 +1.458117 0 1.27456 +1.667858 0 1.27456 +1.907556 0 1.27456 +2.181521 0 1.27456 +2.494678 0 1.27456 +2.852659 0 1.27456 +3.261896 0 1.27456 +3.729748 0 1.27456 +4.264621 0 1.27456 +4.876131 0 1.27456 +5.575266 0 1.27456 +6.374593 0 1.27456 +0 0.002268731 1.27456 +0 0.002268731 1.27456 +0 0.002268731 1.27456 +0.002268731 0.002268731 1.27456 +0.07076883 0.002268731 1.27456 +0.1119241 0.002268731 1.27456 +0.1475052 0.002268731 1.27456 +0.1846606 0.002268731 1.27456 +0.2245119 0.002268731 1.27456 +0.2679612 0.002268731 1.27456 +0.3158431 0.002268731 1.27456 +0.3689944 0.002268731 1.27456 +0.4282948 0.002268731 1.27456 +0.494694 0.002268731 1.27456 +0.5692344 0.002268731 1.27456 +0.6530715 0.002268731 1.27456 +0.7474945 0.002268731 1.27456 +0.8539475 0.002268731 1.27456 +0.974052 0.002268731 1.27456 +1.113885 0.002268731 1.27456 +1.27456 0.002268731 1.27456 +1.458117 0.002268731 1.27456 +1.667858 0.002268731 1.27456 +1.907556 0.002268731 1.27456 +2.181521 0.002268731 1.27456 +2.494678 0.002268731 1.27456 +2.852659 0.002268731 1.27456 +3.261896 0.002268731 1.27456 +3.729748 0.002268731 1.27456 +4.264621 0.002268731 1.27456 +4.876131 0.002268731 1.27456 +5.575266 0.002268731 1.27456 +6.374593 0.002268731 1.27456 +0 0.07076883 1.27456 +0 0.07076883 1.27456 +0 0.07076883 1.27456 +0.002268731 0.07076883 1.27456 +0.07076883 0.07076883 1.27456 +0.1119241 0.07076883 1.27456 +0.1475052 0.07076883 1.27456 +0.1846606 0.07076883 1.27456 +0.2245119 0.07076883 1.27456 +0.2679612 0.07076883 1.27456 +0.3158431 0.07076883 1.27456 +0.3689944 0.07076883 1.27456 +0.4282948 0.07076883 1.27456 +0.494694 0.07076883 1.27456 +0.5692344 0.07076883 1.27456 +0.6530715 0.07076883 1.27456 +0.7474945 0.07076883 1.27456 +0.8539475 0.07076883 1.27456 +0.974052 0.07076883 1.27456 +1.113885 0.07076883 1.27456 +1.27456 0.07076883 1.27456 +1.458117 0.07076883 1.27456 +1.667858 0.07076883 1.27456 +1.907556 0.07076883 1.27456 +2.181521 0.07076883 1.27456 +2.494678 0.07076883 1.27456 +2.852659 0.07076883 1.27456 +3.261896 0.07076883 1.27456 +3.729748 0.07076883 1.27456 +4.264621 0.07076883 1.27456 +4.876131 0.07076883 1.27456 +5.575266 0.07076883 1.27456 +6.374593 0.07076883 1.27456 +0 0.1119241 1.27456 +0 0.1119241 1.27456 +0 0.1119241 1.27456 +0.002268731 0.1119241 1.27456 +0.07076883 0.1119241 1.27456 +0.1119241 0.1119241 1.27456 +0.1475052 0.1119241 1.27456 +0.1846606 0.1119241 1.27456 +0.2245119 0.1119241 1.27456 +0.2679612 0.1119241 1.27456 +0.3158431 0.1119241 1.27456 +0.3689944 0.1119241 1.27456 +0.4282948 0.1119241 1.27456 +0.494694 0.1119241 1.27456 +0.5692344 0.1119241 1.27456 +0.6530715 0.1119241 1.27456 +0.7474945 0.1119241 1.27456 +0.8539475 0.1119241 1.27456 +0.974052 0.1119241 1.27456 +1.113885 0.1119241 1.27456 +1.27456 0.1119241 1.27456 +1.458117 0.1119241 1.27456 +1.667858 0.1119241 1.27456 +1.907556 0.1119241 1.27456 +2.181521 0.1119241 1.27456 +2.494678 0.1119241 1.27456 +2.852659 0.1119241 1.27456 +3.261896 0.1119241 1.27456 +3.729748 0.1119241 1.27456 +4.264621 0.1119241 1.27456 +4.876131 0.1119241 1.27456 +5.575266 0.1119241 1.27456 +6.374593 0.1119241 1.27456 +0 0.1475052 1.27456 +0 0.1475052 1.27456 +0 0.1475052 1.27456 +0.002268731 0.1475052 1.27456 +0.07076883 0.1475052 1.27456 +0.1119241 0.1475052 1.27456 +0.1475052 0.1475052 1.27456 +0.1846606 0.1475052 1.27456 +0.2245119 0.1475052 1.27456 +0.2679612 0.1475052 1.27456 +0.3158431 0.1475052 1.27456 +0.3689944 0.1475052 1.27456 +0.4282948 0.1475052 1.27456 +0.494694 0.1475052 1.27456 +0.5692344 0.1475052 1.27456 +0.6530715 0.1475052 1.27456 +0.7474945 0.1475052 1.27456 +0.8539475 0.1475052 1.27456 +0.974052 0.1475052 1.27456 +1.113885 0.1475052 1.27456 +1.27456 0.1475052 1.27456 +1.458117 0.1475052 1.27456 +1.667858 0.1475052 1.27456 +1.907556 0.1475052 1.27456 +2.181521 0.1475052 1.27456 +2.494678 0.1475052 1.27456 +2.852659 0.1475052 1.27456 +3.261896 0.1475052 1.27456 +3.729748 0.1475052 1.27456 +4.264621 0.1475052 1.27456 +4.876131 0.1475052 1.27456 +5.575266 0.1475052 1.27456 +6.374593 0.1475052 1.27456 +0 0.1846606 1.27456 +0 0.1846606 1.27456 +0 0.1846606 1.27456 +0.002268731 0.1846606 1.27456 +0.07076883 0.1846606 1.27456 +0.1119241 0.1846606 1.27456 +0.1475052 0.1846606 1.27456 +0.1846606 0.1846606 1.27456 +0.2245119 0.1846606 1.27456 +0.2679612 0.1846606 1.27456 +0.3158431 0.1846606 1.27456 +0.3689944 0.1846606 1.27456 +0.4282948 0.1846606 1.27456 +0.494694 0.1846606 1.27456 +0.5692344 0.1846606 1.27456 +0.6530715 0.1846606 1.27456 +0.7474945 0.1846606 1.27456 +0.8539475 0.1846606 1.27456 +0.974052 0.1846606 1.27456 +1.113885 0.1846606 1.27456 +1.27456 0.1846606 1.27456 +1.458117 0.1846606 1.27456 +1.667858 0.1846606 1.27456 +1.907556 0.1846606 1.27456 +2.181521 0.1846606 1.27456 +2.494678 0.1846606 1.27456 +2.852659 0.1846606 1.27456 +3.261896 0.1846606 1.27456 +3.729748 0.1846606 1.27456 +4.264621 0.1846606 1.27456 +4.876131 0.1846606 1.27456 +5.575266 0.1846606 1.27456 +6.374593 0.1846606 1.27456 +0 0.2245119 1.27456 +0 0.2245119 1.27456 +0 0.2245119 1.27456 +0.002268731 0.2245119 1.27456 +0.07076883 0.2245119 1.27456 +0.1119241 0.2245119 1.27456 +0.1475052 0.2245119 1.27456 +0.1846606 0.2245119 1.27456 +0.2245119 0.2245119 1.27456 +0.2679612 0.2245119 1.27456 +0.3158431 0.2245119 1.27456 +0.3689944 0.2245119 1.27456 +0.4282948 0.2245119 1.27456 +0.494694 0.2245119 1.27456 +0.5692344 0.2245119 1.27456 +0.6530715 0.2245119 1.27456 +0.7474945 0.2245119 1.27456 +0.8539475 0.2245119 1.27456 +0.974052 0.2245119 1.27456 +1.113885 0.2245119 1.27456 +1.27456 0.2245119 1.27456 +1.458117 0.2245119 1.27456 +1.667858 0.2245119 1.27456 +1.907556 0.2245119 1.27456 +2.181521 0.2245119 1.27456 +2.494678 0.2245119 1.27456 +2.852659 0.2245119 1.27456 +3.261896 0.2245119 1.27456 +3.729748 0.2245119 1.27456 +4.264621 0.2245119 1.27456 +4.876131 0.2245119 1.27456 +5.575266 0.2245119 1.27456 +6.374593 0.2245119 1.27456 +0 0.2679612 1.27456 +0 0.2679612 1.27456 +0 0.2679612 1.27456 +0.002268731 0.2679612 1.27456 +0.07076883 0.2679612 1.27456 +0.1119241 0.2679612 1.27456 +0.1475052 0.2679612 1.27456 +0.1846606 0.2679612 1.27456 +0.2245119 0.2679612 1.27456 +0.2679612 0.2679612 1.27456 +0.3158431 0.2679612 1.27456 +0.3689944 0.2679612 1.27456 +0.4282948 0.2679612 1.27456 +0.494694 0.2679612 1.27456 +0.5692344 0.2679612 1.27456 +0.6530715 0.2679612 1.27456 +0.7474945 0.2679612 1.27456 +0.8539475 0.2679612 1.27456 +0.974052 0.2679612 1.27456 +1.113885 0.2679612 1.27456 +1.27456 0.2679612 1.27456 +1.458117 0.2679612 1.27456 +1.667858 0.2679612 1.27456 +1.907556 0.2679612 1.27456 +2.181521 0.2679612 1.27456 +2.494678 0.2679612 1.27456 +2.852659 0.2679612 1.27456 +3.261896 0.2679612 1.27456 +3.729748 0.2679612 1.27456 +4.264621 0.2679612 1.27456 +4.876131 0.2679612 1.27456 +5.575266 0.2679612 1.27456 +6.374593 0.2679612 1.27456 +0 0.3158431 1.27456 +0 0.3158431 1.27456 +0 0.3158431 1.27456 +0.002268731 0.3158431 1.27456 +0.07076883 0.3158431 1.27456 +0.1119241 0.3158431 1.27456 +0.1475052 0.3158431 1.27456 +0.1846606 0.3158431 1.27456 +0.2245119 0.3158431 1.27456 +0.2679612 0.3158431 1.27456 +0.3158431 0.3158431 1.27456 +0.3689944 0.3158431 1.27456 +0.4282948 0.3158431 1.27456 +0.494694 0.3158431 1.27456 +0.5692344 0.3158431 1.27456 +0.6530715 0.3158431 1.27456 +0.7474945 0.3158431 1.27456 +0.8539475 0.3158431 1.27456 +0.974052 0.3158431 1.27456 +1.113885 0.3158431 1.27456 +1.27456 0.3158431 1.27456 +1.458117 0.3158431 1.27456 +1.667858 0.3158431 1.27456 +1.907556 0.3158431 1.27456 +2.181521 0.3158431 1.27456 +2.494678 0.3158431 1.27456 +2.852659 0.3158431 1.27456 +3.261896 0.3158431 1.27456 +3.729748 0.3158431 1.27456 +4.264621 0.3158431 1.27456 +4.876131 0.3158431 1.27456 +5.575266 0.3158431 1.27456 +6.374593 0.3158431 1.27456 +0 0.3689944 1.27456 +0 0.3689944 1.27456 +0 0.3689944 1.27456 +0.002268731 0.3689944 1.27456 +0.07076883 0.3689944 1.27456 +0.1119241 0.3689944 1.27456 +0.1475052 0.3689944 1.27456 +0.1846606 0.3689944 1.27456 +0.2245119 0.3689944 1.27456 +0.2679612 0.3689944 1.27456 +0.3158431 0.3689944 1.27456 +0.3689944 0.3689944 1.27456 +0.4282948 0.3689944 1.27456 +0.494694 0.3689944 1.27456 +0.5692344 0.3689944 1.27456 +0.6530715 0.3689944 1.27456 +0.7474945 0.3689944 1.27456 +0.8539475 0.3689944 1.27456 +0.974052 0.3689944 1.27456 +1.113885 0.3689944 1.27456 +1.27456 0.3689944 1.27456 +1.458117 0.3689944 1.27456 +1.667858 0.3689944 1.27456 +1.907556 0.3689944 1.27456 +2.181521 0.3689944 1.27456 +2.494678 0.3689944 1.27456 +2.852659 0.3689944 1.27456 +3.261896 0.3689944 1.27456 +3.729748 0.3689944 1.27456 +4.264621 0.3689944 1.27456 +4.876131 0.3689944 1.27456 +5.575266 0.3689944 1.27456 +6.374593 0.3689944 1.27456 +0 0.4282948 1.27456 +0 0.4282948 1.27456 +0 0.4282948 1.27456 +0.002268731 0.4282948 1.27456 +0.07076883 0.4282948 1.27456 +0.1119241 0.4282948 1.27456 +0.1475052 0.4282948 1.27456 +0.1846606 0.4282948 1.27456 +0.2245119 0.4282948 1.27456 +0.2679612 0.4282948 1.27456 +0.3158431 0.4282948 1.27456 +0.3689944 0.4282948 1.27456 +0.4282948 0.4282948 1.27456 +0.494694 0.4282948 1.27456 +0.5692344 0.4282948 1.27456 +0.6530715 0.4282948 1.27456 +0.7474945 0.4282948 1.27456 +0.8539475 0.4282948 1.27456 +0.974052 0.4282948 1.27456 +1.113885 0.4282948 1.27456 +1.27456 0.4282948 1.27456 +1.458117 0.4282948 1.27456 +1.667858 0.4282948 1.27456 +1.907556 0.4282948 1.27456 +2.181521 0.4282948 1.27456 +2.494678 0.4282948 1.27456 +2.852659 0.4282948 1.27456 +3.261896 0.4282948 1.27456 +3.729748 0.4282948 1.27456 +4.264621 0.4282948 1.27456 +4.876131 0.4282948 1.27456 +5.575266 0.4282948 1.27456 +6.374593 0.4282948 1.27456 +0 0.494694 1.27456 +0 0.494694 1.27456 +0 0.494694 1.27456 +0.002268731 0.494694 1.27456 +0.07076883 0.494694 1.27456 +0.1119241 0.494694 1.27456 +0.1475052 0.494694 1.27456 +0.1846606 0.494694 1.27456 +0.2245119 0.494694 1.27456 +0.2679612 0.494694 1.27456 +0.3158431 0.494694 1.27456 +0.3689944 0.494694 1.27456 +0.4282948 0.494694 1.27456 +0.494694 0.494694 1.27456 +0.5692344 0.494694 1.27456 +0.6530715 0.494694 1.27456 +0.7474945 0.494694 1.27456 +0.8539475 0.494694 1.27456 +0.974052 0.494694 1.27456 +1.113885 0.494694 1.27456 +1.27456 0.494694 1.27456 +1.458117 0.494694 1.27456 +1.667858 0.494694 1.27456 +1.907556 0.494694 1.27456 +2.181521 0.494694 1.27456 +2.494678 0.494694 1.27456 +2.852659 0.494694 1.27456 +3.261896 0.494694 1.27456 +3.729748 0.494694 1.27456 +4.264621 0.494694 1.27456 +4.876131 0.494694 1.27456 +5.575266 0.494694 1.27456 +6.374593 0.494694 1.27456 +0 0.5692344 1.27456 +0 0.5692344 1.27456 +0 0.5692344 1.27456 +0.002268731 0.5692344 1.27456 +0.07076883 0.5692344 1.27456 +0.1119241 0.5692344 1.27456 +0.1475052 0.5692344 1.27456 +0.1846606 0.5692344 1.27456 +0.2245119 0.5692344 1.27456 +0.2679612 0.5692344 1.27456 +0.3158431 0.5692344 1.27456 +0.3689944 0.5692344 1.27456 +0.4282948 0.5692344 1.27456 +0.494694 0.5692344 1.27456 +0.5692344 0.5692344 1.27456 +0.6530715 0.5692344 1.27456 +0.7474945 0.5692344 1.27456 +0.8539475 0.5692344 1.27456 +0.974052 0.5692344 1.27456 +1.113885 0.5692344 1.27456 +1.27456 0.5692344 1.27456 +1.458117 0.5692344 1.27456 +1.667858 0.5692344 1.27456 +1.907556 0.5692344 1.27456 +2.181521 0.5692344 1.27456 +2.494678 0.5692344 1.27456 +2.852659 0.5692344 1.27456 +3.261896 0.5692344 1.27456 +3.729748 0.5692344 1.27456 +4.264621 0.5692344 1.27456 +4.876131 0.5692344 1.27456 +5.575266 0.5692344 1.27456 +6.374593 0.5692344 1.27456 +0 0.6530715 1.27456 +0 0.6530715 1.27456 +0 0.6530715 1.27456 +0.002268731 0.6530715 1.27456 +0.07076883 0.6530715 1.27456 +0.1119241 0.6530715 1.27456 +0.1475052 0.6530715 1.27456 +0.1846606 0.6530715 1.27456 +0.2245119 0.6530715 1.27456 +0.2679612 0.6530715 1.27456 +0.3158431 0.6530715 1.27456 +0.3689944 0.6530715 1.27456 +0.4282948 0.6530715 1.27456 +0.494694 0.6530715 1.27456 +0.5692344 0.6530715 1.27456 +0.6530715 0.6530715 1.27456 +0.7474945 0.6530715 1.27456 +0.8539475 0.6530715 1.27456 +0.974052 0.6530715 1.27456 +1.113885 0.6530715 1.27456 +1.27456 0.6530715 1.27456 +1.458117 0.6530715 1.27456 +1.667858 0.6530715 1.27456 +1.907556 0.6530715 1.27456 +2.181521 0.6530715 1.27456 +2.494678 0.6530715 1.27456 +2.852659 0.6530715 1.27456 +3.261896 0.6530715 1.27456 +3.729748 0.6530715 1.27456 +4.264621 0.6530715 1.27456 +4.876131 0.6530715 1.27456 +5.575266 0.6530715 1.27456 +6.374593 0.6530715 1.27456 +0 0.7474945 1.27456 +0 0.7474945 1.27456 +0 0.7474945 1.27456 +0.002268731 0.7474945 1.27456 +0.07076883 0.7474945 1.27456 +0.1119241 0.7474945 1.27456 +0.1475052 0.7474945 1.27456 +0.1846606 0.7474945 1.27456 +0.2245119 0.7474945 1.27456 +0.2679612 0.7474945 1.27456 +0.3158431 0.7474945 1.27456 +0.3689944 0.7474945 1.27456 +0.4282948 0.7474945 1.27456 +0.494694 0.7474945 1.27456 +0.5692344 0.7474945 1.27456 +0.6530715 0.7474945 1.27456 +0.7474945 0.7474945 1.27456 +0.8539475 0.7474945 1.27456 +0.974052 0.7474945 1.27456 +1.113885 0.7474945 1.27456 +1.27456 0.7474945 1.27456 +1.458117 0.7474945 1.27456 +1.667858 0.7474945 1.27456 +1.907556 0.7474945 1.27456 +2.181521 0.7474945 1.27456 +2.494678 0.7474945 1.27456 +2.852659 0.7474945 1.27456 +3.261896 0.7474945 1.27456 +3.729748 0.7474945 1.27456 +4.264621 0.7474945 1.27456 +4.876131 0.7474945 1.27456 +5.575266 0.7474945 1.27456 +6.374593 0.7474945 1.27456 +0 0.8539475 1.27456 +0 0.8539475 1.27456 +0 0.8539475 1.27456 +0.002268731 0.8539475 1.27456 +0.07076883 0.8539475 1.27456 +0.1119241 0.8539475 1.27456 +0.1475052 0.8539475 1.27456 +0.1846606 0.8539475 1.27456 +0.2245119 0.8539475 1.27456 +0.2679612 0.8539475 1.27456 +0.3158431 0.8539475 1.27456 +0.3689944 0.8539475 1.27456 +0.4282948 0.8539475 1.27456 +0.494694 0.8539475 1.27456 +0.5692344 0.8539475 1.27456 +0.6530715 0.8539475 1.27456 +0.7474945 0.8539475 1.27456 +0.8539475 0.8539475 1.27456 +0.974052 0.8539475 1.27456 +1.113885 0.8539475 1.27456 +1.27456 0.8539475 1.27456 +1.458117 0.8539475 1.27456 +1.667858 0.8539475 1.27456 +1.907556 0.8539475 1.27456 +2.181521 0.8539475 1.27456 +2.494678 0.8539475 1.27456 +2.852659 0.8539475 1.27456 +3.261896 0.8539475 1.27456 +3.729748 0.8539475 1.27456 +4.264621 0.8539475 1.27456 +4.876131 0.8539475 1.27456 +5.575266 0.8539475 1.27456 +6.374593 0.8539475 1.27456 +0 0.974052 1.27456 +0 0.974052 1.27456 +0 0.974052 1.27456 +0.002268731 0.974052 1.27456 +0.07076883 0.974052 1.27456 +0.1119241 0.974052 1.27456 +0.1475052 0.974052 1.27456 +0.1846606 0.974052 1.27456 +0.2245119 0.974052 1.27456 +0.2679612 0.974052 1.27456 +0.3158431 0.974052 1.27456 +0.3689944 0.974052 1.27456 +0.4282948 0.974052 1.27456 +0.494694 0.974052 1.27456 +0.5692344 0.974052 1.27456 +0.6530715 0.974052 1.27456 +0.7474945 0.974052 1.27456 +0.8539475 0.974052 1.27456 +0.974052 0.974052 1.27456 +1.113885 0.974052 1.27456 +1.27456 0.974052 1.27456 +1.458117 0.974052 1.27456 +1.667858 0.974052 1.27456 +1.907556 0.974052 1.27456 +2.181521 0.974052 1.27456 +2.494678 0.974052 1.27456 +2.852659 0.974052 1.27456 +3.261896 0.974052 1.27456 +3.729748 0.974052 1.27456 +4.264621 0.974052 1.27456 +4.876131 0.974052 1.27456 +5.575266 0.974052 1.27456 +6.374593 0.974052 1.27456 +0 1.113885 1.27456 +0 1.113885 1.27456 +0 1.113885 1.27456 +0.002268731 1.113885 1.27456 +0.07076883 1.113885 1.27456 +0.1119241 1.113885 1.27456 +0.1475052 1.113885 1.27456 +0.1846606 1.113885 1.27456 +0.2245119 1.113885 1.27456 +0.2679612 1.113885 1.27456 +0.3158431 1.113885 1.27456 +0.3689944 1.113885 1.27456 +0.4282948 1.113885 1.27456 +0.494694 1.113885 1.27456 +0.5692344 1.113885 1.27456 +0.6530715 1.113885 1.27456 +0.7474945 1.113885 1.27456 +0.8539475 1.113885 1.27456 +0.974052 1.113885 1.27456 +1.113885 1.113885 1.27456 +1.27456 1.113885 1.27456 +1.458117 1.113885 1.27456 +1.667858 1.113885 1.27456 +1.907556 1.113885 1.27456 +2.181521 1.113885 1.27456 +2.494678 1.113885 1.27456 +2.852659 1.113885 1.27456 +3.261896 1.113885 1.27456 +3.729748 1.113885 1.27456 +4.264621 1.113885 1.27456 +4.876131 1.113885 1.27456 +5.575266 1.113885 1.27456 +6.374593 1.113885 1.27456 +0 1.27456 1.27456 +0 1.27456 1.27456 +0 1.27456 1.27456 +0.002268731 1.27456 1.27456 +0.07076883 1.27456 1.27456 +0.1119241 1.27456 1.27456 +0.1475052 1.27456 1.27456 +0.1846606 1.27456 1.27456 +0.2245119 1.27456 1.27456 +0.2679612 1.27456 1.27456 +0.3158431 1.27456 1.27456 +0.3689944 1.27456 1.27456 +0.4282948 1.27456 1.27456 +0.494694 1.27456 1.27456 +0.5692344 1.27456 1.27456 +0.6530715 1.27456 1.27456 +0.7474945 1.27456 1.27456 +0.8539475 1.27456 1.27456 +0.974052 1.27456 1.27456 +1.113885 1.27456 1.27456 +1.27456 1.27456 1.27456 +1.458117 1.27456 1.27456 +1.667858 1.27456 1.27456 +1.907556 1.27456 1.27456 +2.181521 1.27456 1.27456 +2.494678 1.27456 1.27456 +2.852659 1.27456 1.27456 +3.261896 1.27456 1.27456 +3.729748 1.27456 1.27456 +4.264621 1.27456 1.27456 +4.876131 1.27456 1.27456 +5.575266 1.27456 1.27456 +6.374593 1.27456 1.27456 +0 1.458117 1.27456 +0 1.458117 1.27456 +0 1.458117 1.27456 +0.002268731 1.458117 1.27456 +0.07076883 1.458117 1.27456 +0.1119241 1.458117 1.27456 +0.1475052 1.458117 1.27456 +0.1846606 1.458117 1.27456 +0.2245119 1.458117 1.27456 +0.2679612 1.458117 1.27456 +0.3158431 1.458117 1.27456 +0.3689944 1.458117 1.27456 +0.4282948 1.458117 1.27456 +0.494694 1.458117 1.27456 +0.5692344 1.458117 1.27456 +0.6530715 1.458117 1.27456 +0.7474945 1.458117 1.27456 +0.8539475 1.458117 1.27456 +0.974052 1.458117 1.27456 +1.113885 1.458117 1.27456 +1.27456 1.458117 1.27456 +1.458117 1.458117 1.27456 +1.667858 1.458117 1.27456 +1.907556 1.458117 1.27456 +2.181521 1.458117 1.27456 +2.494678 1.458117 1.27456 +2.852659 1.458117 1.27456 +3.261896 1.458117 1.27456 +3.729748 1.458117 1.27456 +4.264621 1.458117 1.27456 +4.876131 1.458117 1.27456 +5.575266 1.458117 1.27456 +6.374593 1.458117 1.27456 +0 1.667858 1.27456 +0 1.667858 1.27456 +0 1.667858 1.27456 +0.002268731 1.667858 1.27456 +0.07076883 1.667858 1.27456 +0.1119241 1.667858 1.27456 +0.1475052 1.667858 1.27456 +0.1846606 1.667858 1.27456 +0.2245119 1.667858 1.27456 +0.2679612 1.667858 1.27456 +0.3158431 1.667858 1.27456 +0.3689944 1.667858 1.27456 +0.4282948 1.667858 1.27456 +0.494694 1.667858 1.27456 +0.5692344 1.667858 1.27456 +0.6530715 1.667858 1.27456 +0.7474945 1.667858 1.27456 +0.8539475 1.667858 1.27456 +0.974052 1.667858 1.27456 +1.113885 1.667858 1.27456 +1.27456 1.667858 1.27456 +1.458117 1.667858 1.27456 +1.667858 1.667858 1.27456 +1.907556 1.667858 1.27456 +2.181521 1.667858 1.27456 +2.494678 1.667858 1.27456 +2.852659 1.667858 1.27456 +3.261896 1.667858 1.27456 +3.729748 1.667858 1.27456 +4.264621 1.667858 1.27456 +4.876131 1.667858 1.27456 +5.575266 1.667858 1.27456 +6.374593 1.667858 1.27456 +0 1.907556 1.27456 +0 1.907556 1.27456 +0 1.907556 1.27456 +0.002268731 1.907556 1.27456 +0.07076883 1.907556 1.27456 +0.1119241 1.907556 1.27456 +0.1475052 1.907556 1.27456 +0.1846606 1.907556 1.27456 +0.2245119 1.907556 1.27456 +0.2679612 1.907556 1.27456 +0.3158431 1.907556 1.27456 +0.3689944 1.907556 1.27456 +0.4282948 1.907556 1.27456 +0.494694 1.907556 1.27456 +0.5692344 1.907556 1.27456 +0.6530715 1.907556 1.27456 +0.7474945 1.907556 1.27456 +0.8539475 1.907556 1.27456 +0.974052 1.907556 1.27456 +1.113885 1.907556 1.27456 +1.27456 1.907556 1.27456 +1.458117 1.907556 1.27456 +1.667858 1.907556 1.27456 +1.907556 1.907556 1.27456 +2.181521 1.907556 1.27456 +2.494678 1.907556 1.27456 +2.852659 1.907556 1.27456 +3.261896 1.907556 1.27456 +3.729748 1.907556 1.27456 +4.264621 1.907556 1.27456 +4.876131 1.907556 1.27456 +5.575266 1.907556 1.27456 +6.374593 1.907556 1.27456 +0 2.181521 1.27456 +0 2.181521 1.27456 +0 2.181521 1.27456 +0.002268731 2.181521 1.27456 +0.07076883 2.181521 1.27456 +0.1119241 2.181521 1.27456 +0.1475052 2.181521 1.27456 +0.1846606 2.181521 1.27456 +0.2245119 2.181521 1.27456 +0.2679612 2.181521 1.27456 +0.3158431 2.181521 1.27456 +0.3689944 2.181521 1.27456 +0.4282948 2.181521 1.27456 +0.494694 2.181521 1.27456 +0.5692344 2.181521 1.27456 +0.6530715 2.181521 1.27456 +0.7474945 2.181521 1.27456 +0.8539475 2.181521 1.27456 +0.974052 2.181521 1.27456 +1.113885 2.181521 1.27456 +1.27456 2.181521 1.27456 +1.458117 2.181521 1.27456 +1.667858 2.181521 1.27456 +1.907556 2.181521 1.27456 +2.181521 2.181521 1.27456 +2.494678 2.181521 1.27456 +2.852659 2.181521 1.27456 +3.261896 2.181521 1.27456 +3.729748 2.181521 1.27456 +4.264621 2.181521 1.27456 +4.876131 2.181521 1.27456 +5.575266 2.181521 1.27456 +6.374593 2.181521 1.27456 +0 2.494678 1.27456 +0 2.494678 1.27456 +0 2.494678 1.27456 +0.002268731 2.494678 1.27456 +0.07076883 2.494678 1.27456 +0.1119241 2.494678 1.27456 +0.1475052 2.494678 1.27456 +0.1846606 2.494678 1.27456 +0.2245119 2.494678 1.27456 +0.2679612 2.494678 1.27456 +0.3158431 2.494678 1.27456 +0.3689944 2.494678 1.27456 +0.4282948 2.494678 1.27456 +0.494694 2.494678 1.27456 +0.5692344 2.494678 1.27456 +0.6530715 2.494678 1.27456 +0.7474945 2.494678 1.27456 +0.8539475 2.494678 1.27456 +0.974052 2.494678 1.27456 +1.113885 2.494678 1.27456 +1.27456 2.494678 1.27456 +1.458117 2.494678 1.27456 +1.667858 2.494678 1.27456 +1.907556 2.494678 1.27456 +2.181521 2.494678 1.27456 +2.494678 2.494678 1.27456 +2.852659 2.494678 1.27456 +3.261896 2.494678 1.27456 +3.729748 2.494678 1.27456 +4.264621 2.494678 1.27456 +4.876131 2.494678 1.27456 +5.575266 2.494678 1.27456 +6.374593 2.494678 1.27456 +0 2.852659 1.27456 +0 2.852659 1.27456 +0 2.852659 1.27456 +0.002268731 2.852659 1.27456 +0.07076883 2.852659 1.27456 +0.1119241 2.852659 1.27456 +0.1475052 2.852659 1.27456 +0.1846606 2.852659 1.27456 +0.2245119 2.852659 1.27456 +0.2679612 2.852659 1.27456 +0.3158431 2.852659 1.27456 +0.3689944 2.852659 1.27456 +0.4282948 2.852659 1.27456 +0.494694 2.852659 1.27456 +0.5692344 2.852659 1.27456 +0.6530715 2.852659 1.27456 +0.7474945 2.852659 1.27456 +0.8539475 2.852659 1.27456 +0.974052 2.852659 1.27456 +1.113885 2.852659 1.27456 +1.27456 2.852659 1.27456 +1.458117 2.852659 1.27456 +1.667858 2.852659 1.27456 +1.907556 2.852659 1.27456 +2.181521 2.852659 1.27456 +2.494678 2.852659 1.27456 +2.852659 2.852659 1.27456 +3.261896 2.852659 1.27456 +3.729748 2.852659 1.27456 +4.264621 2.852659 1.27456 +4.876131 2.852659 1.27456 +5.575266 2.852659 1.27456 +6.374593 2.852659 1.27456 +0 3.261896 1.27456 +0 3.261896 1.27456 +0 3.261896 1.27456 +0.002268731 3.261896 1.27456 +0.07076883 3.261896 1.27456 +0.1119241 3.261896 1.27456 +0.1475052 3.261896 1.27456 +0.1846606 3.261896 1.27456 +0.2245119 3.261896 1.27456 +0.2679612 3.261896 1.27456 +0.3158431 3.261896 1.27456 +0.3689944 3.261896 1.27456 +0.4282948 3.261896 1.27456 +0.494694 3.261896 1.27456 +0.5692344 3.261896 1.27456 +0.6530715 3.261896 1.27456 +0.7474945 3.261896 1.27456 +0.8539475 3.261896 1.27456 +0.974052 3.261896 1.27456 +1.113885 3.261896 1.27456 +1.27456 3.261896 1.27456 +1.458117 3.261896 1.27456 +1.667858 3.261896 1.27456 +1.907556 3.261896 1.27456 +2.181521 3.261896 1.27456 +2.494678 3.261896 1.27456 +2.852659 3.261896 1.27456 +3.261896 3.261896 1.27456 +3.729748 3.261896 1.27456 +4.264621 3.261896 1.27456 +4.876131 3.261896 1.27456 +5.575266 3.261896 1.27456 +6.374593 3.261896 1.27456 +0 3.729748 1.27456 +0 3.729748 1.27456 +0 3.729748 1.27456 +0.002268731 3.729748 1.27456 +0.07076883 3.729748 1.27456 +0.1119241 3.729748 1.27456 +0.1475052 3.729748 1.27456 +0.1846606 3.729748 1.27456 +0.2245119 3.729748 1.27456 +0.2679612 3.729748 1.27456 +0.3158431 3.729748 1.27456 +0.3689944 3.729748 1.27456 +0.4282948 3.729748 1.27456 +0.494694 3.729748 1.27456 +0.5692344 3.729748 1.27456 +0.6530715 3.729748 1.27456 +0.7474945 3.729748 1.27456 +0.8539475 3.729748 1.27456 +0.974052 3.729748 1.27456 +1.113885 3.729748 1.27456 +1.27456 3.729748 1.27456 +1.458117 3.729748 1.27456 +1.667858 3.729748 1.27456 +1.907556 3.729748 1.27456 +2.181521 3.729748 1.27456 +2.494678 3.729748 1.27456 +2.852659 3.729748 1.27456 +3.261896 3.729748 1.27456 +3.729748 3.729748 1.27456 +4.264621 3.729748 1.27456 +4.876131 3.729748 1.27456 +5.575266 3.729748 1.27456 +6.374593 3.729748 1.27456 +0 4.264621 1.27456 +0 4.264621 1.27456 +0 4.264621 1.27456 +0.002268731 4.264621 1.27456 +0.07076883 4.264621 1.27456 +0.1119241 4.264621 1.27456 +0.1475052 4.264621 1.27456 +0.1846606 4.264621 1.27456 +0.2245119 4.264621 1.27456 +0.2679612 4.264621 1.27456 +0.3158431 4.264621 1.27456 +0.3689944 4.264621 1.27456 +0.4282948 4.264621 1.27456 +0.494694 4.264621 1.27456 +0.5692344 4.264621 1.27456 +0.6530715 4.264621 1.27456 +0.7474945 4.264621 1.27456 +0.8539475 4.264621 1.27456 +0.974052 4.264621 1.27456 +1.113885 4.264621 1.27456 +1.27456 4.264621 1.27456 +1.458117 4.264621 1.27456 +1.667858 4.264621 1.27456 +1.907556 4.264621 1.27456 +2.181521 4.264621 1.27456 +2.494678 4.264621 1.27456 +2.852659 4.264621 1.27456 +3.261896 4.264621 1.27456 +3.729748 4.264621 1.27456 +4.264621 4.264621 1.27456 +4.876131 4.264621 1.27456 +5.575266 4.264621 1.27456 +6.374593 4.264621 1.27456 +0 4.876131 1.27456 +0 4.876131 1.27456 +0 4.876131 1.27456 +0.002268731 4.876131 1.27456 +0.07076883 4.876131 1.27456 +0.1119241 4.876131 1.27456 +0.1475052 4.876131 1.27456 +0.1846606 4.876131 1.27456 +0.2245119 4.876131 1.27456 +0.2679612 4.876131 1.27456 +0.3158431 4.876131 1.27456 +0.3689944 4.876131 1.27456 +0.4282948 4.876131 1.27456 +0.494694 4.876131 1.27456 +0.5692344 4.876131 1.27456 +0.6530715 4.876131 1.27456 +0.7474945 4.876131 1.27456 +0.8539475 4.876131 1.27456 +0.974052 4.876131 1.27456 +1.113885 4.876131 1.27456 +1.27456 4.876131 1.27456 +1.458117 4.876131 1.27456 +1.667858 4.876131 1.27456 +1.907556 4.876131 1.27456 +2.181521 4.876131 1.27456 +2.494678 4.876131 1.27456 +2.852659 4.876131 1.27456 +3.261896 4.876131 1.27456 +3.729748 4.876131 1.27456 +4.264621 4.876131 1.27456 +4.876131 4.876131 1.27456 +5.575266 4.876131 1.27456 +6.374593 4.876131 1.27456 +0 5.575266 1.27456 +0 5.575266 1.27456 +0 5.575266 1.27456 +0.002268731 5.575266 1.27456 +0.07076883 5.575266 1.27456 +0.1119241 5.575266 1.27456 +0.1475052 5.575266 1.27456 +0.1846606 5.575266 1.27456 +0.2245119 5.575266 1.27456 +0.2679612 5.575266 1.27456 +0.3158431 5.575266 1.27456 +0.3689944 5.575266 1.27456 +0.4282948 5.575266 1.27456 +0.494694 5.575266 1.27456 +0.5692344 5.575266 1.27456 +0.6530715 5.575266 1.27456 +0.7474945 5.575266 1.27456 +0.8539475 5.575266 1.27456 +0.974052 5.575266 1.27456 +1.113885 5.575266 1.27456 +1.27456 5.575266 1.27456 +1.458117 5.575266 1.27456 +1.667858 5.575266 1.27456 +1.907556 5.575266 1.27456 +2.181521 5.575266 1.27456 +2.494678 5.575266 1.27456 +2.852659 5.575266 1.27456 +3.261896 5.575266 1.27456 +3.729748 5.575266 1.27456 +4.264621 5.575266 1.27456 +4.876131 5.575266 1.27456 +5.575266 5.575266 1.27456 +6.374593 5.575266 1.27456 +0 6.374593 1.27456 +0 6.374593 1.27456 +0 6.374593 1.27456 +0.002268731 6.374593 1.27456 +0.07076883 6.374593 1.27456 +0.1119241 6.374593 1.27456 +0.1475052 6.374593 1.27456 +0.1846606 6.374593 1.27456 +0.2245119 6.374593 1.27456 +0.2679612 6.374593 1.27456 +0.3158431 6.374593 1.27456 +0.3689944 6.374593 1.27456 +0.4282948 6.374593 1.27456 +0.494694 6.374593 1.27456 +0.5692344 6.374593 1.27456 +0.6530715 6.374593 1.27456 +0.7474945 6.374593 1.27456 +0.8539475 6.374593 1.27456 +0.974052 6.374593 1.27456 +1.113885 6.374593 1.27456 +1.27456 6.374593 1.27456 +1.458117 6.374593 1.27456 +1.667858 6.374593 1.27456 +1.907556 6.374593 1.27456 +2.181521 6.374593 1.27456 +2.494678 6.374593 1.27456 +2.852659 6.374593 1.27456 +3.261896 6.374593 1.27456 +3.729748 6.374593 1.27456 +4.264621 6.374593 1.27456 +4.876131 6.374593 1.27456 +5.575266 6.374593 1.27456 +6.374593 6.374593 1.27456 +0 0 1.458117 +0 0 1.458117 +0 0 1.458117 +0.002268731 0 1.458117 +0.07076883 0 1.458117 +0.1119241 0 1.458117 +0.1475052 0 1.458117 +0.1846606 0 1.458117 +0.2245119 0 1.458117 +0.2679612 0 1.458117 +0.3158431 0 1.458117 +0.3689944 0 1.458117 +0.4282948 0 1.458117 +0.494694 0 1.458117 +0.5692344 0 1.458117 +0.6530715 0 1.458117 +0.7474945 0 1.458117 +0.8539475 0 1.458117 +0.974052 0 1.458117 +1.113885 0 1.458117 +1.27456 0 1.458117 +1.458117 0 1.458117 +1.667858 0 1.458117 +1.907556 0 1.458117 +2.181521 0 1.458117 +2.494678 0 1.458117 +2.852659 0 1.458117 +3.261896 0 1.458117 +3.729748 0 1.458117 +4.264621 0 1.458117 +4.876131 0 1.458117 +5.575266 0 1.458117 +6.374593 0 1.458117 +0 0 1.458117 +0 0 1.458117 +0 0 1.458117 +0.002268731 0 1.458117 +0.07076883 0 1.458117 +0.1119241 0 1.458117 +0.1475052 0 1.458117 +0.1846606 0 1.458117 +0.2245119 0 1.458117 +0.2679612 0 1.458117 +0.3158431 0 1.458117 +0.3689944 0 1.458117 +0.4282948 0 1.458117 +0.494694 0 1.458117 +0.5692344 0 1.458117 +0.6530715 0 1.458117 +0.7474945 0 1.458117 +0.8539475 0 1.458117 +0.974052 0 1.458117 +1.113885 0 1.458117 +1.27456 0 1.458117 +1.458117 0 1.458117 +1.667858 0 1.458117 +1.907556 0 1.458117 +2.181521 0 1.458117 +2.494678 0 1.458117 +2.852659 0 1.458117 +3.261896 0 1.458117 +3.729748 0 1.458117 +4.264621 0 1.458117 +4.876131 0 1.458117 +5.575266 0 1.458117 +6.374593 0 1.458117 +0 0 1.458117 +0 0 1.458117 +0 0 1.458117 +0.002268731 0 1.458117 +0.07076883 0 1.458117 +0.1119241 0 1.458117 +0.1475052 0 1.458117 +0.1846606 0 1.458117 +0.2245119 0 1.458117 +0.2679612 0 1.458117 +0.3158431 0 1.458117 +0.3689944 0 1.458117 +0.4282948 0 1.458117 +0.494694 0 1.458117 +0.5692344 0 1.458117 +0.6530715 0 1.458117 +0.7474945 0 1.458117 +0.8539475 0 1.458117 +0.974052 0 1.458117 +1.113885 0 1.458117 +1.27456 0 1.458117 +1.458117 0 1.458117 +1.667858 0 1.458117 +1.907556 0 1.458117 +2.181521 0 1.458117 +2.494678 0 1.458117 +2.852659 0 1.458117 +3.261896 0 1.458117 +3.729748 0 1.458117 +4.264621 0 1.458117 +4.876131 0 1.458117 +5.575266 0 1.458117 +6.374593 0 1.458117 +0 0.002268731 1.458117 +0 0.002268731 1.458117 +0 0.002268731 1.458117 +0.002268731 0.002268731 1.458117 +0.07076883 0.002268731 1.458117 +0.1119241 0.002268731 1.458117 +0.1475052 0.002268731 1.458117 +0.1846606 0.002268731 1.458117 +0.2245119 0.002268731 1.458117 +0.2679612 0.002268731 1.458117 +0.3158431 0.002268731 1.458117 +0.3689944 0.002268731 1.458117 +0.4282948 0.002268731 1.458117 +0.494694 0.002268731 1.458117 +0.5692344 0.002268731 1.458117 +0.6530715 0.002268731 1.458117 +0.7474945 0.002268731 1.458117 +0.8539475 0.002268731 1.458117 +0.974052 0.002268731 1.458117 +1.113885 0.002268731 1.458117 +1.27456 0.002268731 1.458117 +1.458117 0.002268731 1.458117 +1.667858 0.002268731 1.458117 +1.907556 0.002268731 1.458117 +2.181521 0.002268731 1.458117 +2.494678 0.002268731 1.458117 +2.852659 0.002268731 1.458117 +3.261896 0.002268731 1.458117 +3.729748 0.002268731 1.458117 +4.264621 0.002268731 1.458117 +4.876131 0.002268731 1.458117 +5.575266 0.002268731 1.458117 +6.374593 0.002268731 1.458117 +0 0.07076883 1.458117 +0 0.07076883 1.458117 +0 0.07076883 1.458117 +0.002268731 0.07076883 1.458117 +0.07076883 0.07076883 1.458117 +0.1119241 0.07076883 1.458117 +0.1475052 0.07076883 1.458117 +0.1846606 0.07076883 1.458117 +0.2245119 0.07076883 1.458117 +0.2679612 0.07076883 1.458117 +0.3158431 0.07076883 1.458117 +0.3689944 0.07076883 1.458117 +0.4282948 0.07076883 1.458117 +0.494694 0.07076883 1.458117 +0.5692344 0.07076883 1.458117 +0.6530715 0.07076883 1.458117 +0.7474945 0.07076883 1.458117 +0.8539475 0.07076883 1.458117 +0.974052 0.07076883 1.458117 +1.113885 0.07076883 1.458117 +1.27456 0.07076883 1.458117 +1.458117 0.07076883 1.458117 +1.667858 0.07076883 1.458117 +1.907556 0.07076883 1.458117 +2.181521 0.07076883 1.458117 +2.494678 0.07076883 1.458117 +2.852659 0.07076883 1.458117 +3.261896 0.07076883 1.458117 +3.729748 0.07076883 1.458117 +4.264621 0.07076883 1.458117 +4.876131 0.07076883 1.458117 +5.575266 0.07076883 1.458117 +6.374593 0.07076883 1.458117 +0 0.1119241 1.458117 +0 0.1119241 1.458117 +0 0.1119241 1.458117 +0.002268731 0.1119241 1.458117 +0.07076883 0.1119241 1.458117 +0.1119241 0.1119241 1.458117 +0.1475052 0.1119241 1.458117 +0.1846606 0.1119241 1.458117 +0.2245119 0.1119241 1.458117 +0.2679612 0.1119241 1.458117 +0.3158431 0.1119241 1.458117 +0.3689944 0.1119241 1.458117 +0.4282948 0.1119241 1.458117 +0.494694 0.1119241 1.458117 +0.5692344 0.1119241 1.458117 +0.6530715 0.1119241 1.458117 +0.7474945 0.1119241 1.458117 +0.8539475 0.1119241 1.458117 +0.974052 0.1119241 1.458117 +1.113885 0.1119241 1.458117 +1.27456 0.1119241 1.458117 +1.458117 0.1119241 1.458117 +1.667858 0.1119241 1.458117 +1.907556 0.1119241 1.458117 +2.181521 0.1119241 1.458117 +2.494678 0.1119241 1.458117 +2.852659 0.1119241 1.458117 +3.261896 0.1119241 1.458117 +3.729748 0.1119241 1.458117 +4.264621 0.1119241 1.458117 +4.876131 0.1119241 1.458117 +5.575266 0.1119241 1.458117 +6.374593 0.1119241 1.458117 +0 0.1475052 1.458117 +0 0.1475052 1.458117 +0 0.1475052 1.458117 +0.002268731 0.1475052 1.458117 +0.07076883 0.1475052 1.458117 +0.1119241 0.1475052 1.458117 +0.1475052 0.1475052 1.458117 +0.1846606 0.1475052 1.458117 +0.2245119 0.1475052 1.458117 +0.2679612 0.1475052 1.458117 +0.3158431 0.1475052 1.458117 +0.3689944 0.1475052 1.458117 +0.4282948 0.1475052 1.458117 +0.494694 0.1475052 1.458117 +0.5692344 0.1475052 1.458117 +0.6530715 0.1475052 1.458117 +0.7474945 0.1475052 1.458117 +0.8539475 0.1475052 1.458117 +0.974052 0.1475052 1.458117 +1.113885 0.1475052 1.458117 +1.27456 0.1475052 1.458117 +1.458117 0.1475052 1.458117 +1.667858 0.1475052 1.458117 +1.907556 0.1475052 1.458117 +2.181521 0.1475052 1.458117 +2.494678 0.1475052 1.458117 +2.852659 0.1475052 1.458117 +3.261896 0.1475052 1.458117 +3.729748 0.1475052 1.458117 +4.264621 0.1475052 1.458117 +4.876131 0.1475052 1.458117 +5.575266 0.1475052 1.458117 +6.374593 0.1475052 1.458117 +0 0.1846606 1.458117 +0 0.1846606 1.458117 +0 0.1846606 1.458117 +0.002268731 0.1846606 1.458117 +0.07076883 0.1846606 1.458117 +0.1119241 0.1846606 1.458117 +0.1475052 0.1846606 1.458117 +0.1846606 0.1846606 1.458117 +0.2245119 0.1846606 1.458117 +0.2679612 0.1846606 1.458117 +0.3158431 0.1846606 1.458117 +0.3689944 0.1846606 1.458117 +0.4282948 0.1846606 1.458117 +0.494694 0.1846606 1.458117 +0.5692344 0.1846606 1.458117 +0.6530715 0.1846606 1.458117 +0.7474945 0.1846606 1.458117 +0.8539475 0.1846606 1.458117 +0.974052 0.1846606 1.458117 +1.113885 0.1846606 1.458117 +1.27456 0.1846606 1.458117 +1.458117 0.1846606 1.458117 +1.667858 0.1846606 1.458117 +1.907556 0.1846606 1.458117 +2.181521 0.1846606 1.458117 +2.494678 0.1846606 1.458117 +2.852659 0.1846606 1.458117 +3.261896 0.1846606 1.458117 +3.729748 0.1846606 1.458117 +4.264621 0.1846606 1.458117 +4.876131 0.1846606 1.458117 +5.575266 0.1846606 1.458117 +6.374593 0.1846606 1.458117 +0 0.2245119 1.458117 +0 0.2245119 1.458117 +0 0.2245119 1.458117 +0.002268731 0.2245119 1.458117 +0.07076883 0.2245119 1.458117 +0.1119241 0.2245119 1.458117 +0.1475052 0.2245119 1.458117 +0.1846606 0.2245119 1.458117 +0.2245119 0.2245119 1.458117 +0.2679612 0.2245119 1.458117 +0.3158431 0.2245119 1.458117 +0.3689944 0.2245119 1.458117 +0.4282948 0.2245119 1.458117 +0.494694 0.2245119 1.458117 +0.5692344 0.2245119 1.458117 +0.6530715 0.2245119 1.458117 +0.7474945 0.2245119 1.458117 +0.8539475 0.2245119 1.458117 +0.974052 0.2245119 1.458117 +1.113885 0.2245119 1.458117 +1.27456 0.2245119 1.458117 +1.458117 0.2245119 1.458117 +1.667858 0.2245119 1.458117 +1.907556 0.2245119 1.458117 +2.181521 0.2245119 1.458117 +2.494678 0.2245119 1.458117 +2.852659 0.2245119 1.458117 +3.261896 0.2245119 1.458117 +3.729748 0.2245119 1.458117 +4.264621 0.2245119 1.458117 +4.876131 0.2245119 1.458117 +5.575266 0.2245119 1.458117 +6.374593 0.2245119 1.458117 +0 0.2679612 1.458117 +0 0.2679612 1.458117 +0 0.2679612 1.458117 +0.002268731 0.2679612 1.458117 +0.07076883 0.2679612 1.458117 +0.1119241 0.2679612 1.458117 +0.1475052 0.2679612 1.458117 +0.1846606 0.2679612 1.458117 +0.2245119 0.2679612 1.458117 +0.2679612 0.2679612 1.458117 +0.3158431 0.2679612 1.458117 +0.3689944 0.2679612 1.458117 +0.4282948 0.2679612 1.458117 +0.494694 0.2679612 1.458117 +0.5692344 0.2679612 1.458117 +0.6530715 0.2679612 1.458117 +0.7474945 0.2679612 1.458117 +0.8539475 0.2679612 1.458117 +0.974052 0.2679612 1.458117 +1.113885 0.2679612 1.458117 +1.27456 0.2679612 1.458117 +1.458117 0.2679612 1.458117 +1.667858 0.2679612 1.458117 +1.907556 0.2679612 1.458117 +2.181521 0.2679612 1.458117 +2.494678 0.2679612 1.458117 +2.852659 0.2679612 1.458117 +3.261896 0.2679612 1.458117 +3.729748 0.2679612 1.458117 +4.264621 0.2679612 1.458117 +4.876131 0.2679612 1.458117 +5.575266 0.2679612 1.458117 +6.374593 0.2679612 1.458117 +0 0.3158431 1.458117 +0 0.3158431 1.458117 +0 0.3158431 1.458117 +0.002268731 0.3158431 1.458117 +0.07076883 0.3158431 1.458117 +0.1119241 0.3158431 1.458117 +0.1475052 0.3158431 1.458117 +0.1846606 0.3158431 1.458117 +0.2245119 0.3158431 1.458117 +0.2679612 0.3158431 1.458117 +0.3158431 0.3158431 1.458117 +0.3689944 0.3158431 1.458117 +0.4282948 0.3158431 1.458117 +0.494694 0.3158431 1.458117 +0.5692344 0.3158431 1.458117 +0.6530715 0.3158431 1.458117 +0.7474945 0.3158431 1.458117 +0.8539475 0.3158431 1.458117 +0.974052 0.3158431 1.458117 +1.113885 0.3158431 1.458117 +1.27456 0.3158431 1.458117 +1.458117 0.3158431 1.458117 +1.667858 0.3158431 1.458117 +1.907556 0.3158431 1.458117 +2.181521 0.3158431 1.458117 +2.494678 0.3158431 1.458117 +2.852659 0.3158431 1.458117 +3.261896 0.3158431 1.458117 +3.729748 0.3158431 1.458117 +4.264621 0.3158431 1.458117 +4.876131 0.3158431 1.458117 +5.575266 0.3158431 1.458117 +6.374593 0.3158431 1.458117 +0 0.3689944 1.458117 +0 0.3689944 1.458117 +0 0.3689944 1.458117 +0.002268731 0.3689944 1.458117 +0.07076883 0.3689944 1.458117 +0.1119241 0.3689944 1.458117 +0.1475052 0.3689944 1.458117 +0.1846606 0.3689944 1.458117 +0.2245119 0.3689944 1.458117 +0.2679612 0.3689944 1.458117 +0.3158431 0.3689944 1.458117 +0.3689944 0.3689944 1.458117 +0.4282948 0.3689944 1.458117 +0.494694 0.3689944 1.458117 +0.5692344 0.3689944 1.458117 +0.6530715 0.3689944 1.458117 +0.7474945 0.3689944 1.458117 +0.8539475 0.3689944 1.458117 +0.974052 0.3689944 1.458117 +1.113885 0.3689944 1.458117 +1.27456 0.3689944 1.458117 +1.458117 0.3689944 1.458117 +1.667858 0.3689944 1.458117 +1.907556 0.3689944 1.458117 +2.181521 0.3689944 1.458117 +2.494678 0.3689944 1.458117 +2.852659 0.3689944 1.458117 +3.261896 0.3689944 1.458117 +3.729748 0.3689944 1.458117 +4.264621 0.3689944 1.458117 +4.876131 0.3689944 1.458117 +5.575266 0.3689944 1.458117 +6.374593 0.3689944 1.458117 +0 0.4282948 1.458117 +0 0.4282948 1.458117 +0 0.4282948 1.458117 +0.002268731 0.4282948 1.458117 +0.07076883 0.4282948 1.458117 +0.1119241 0.4282948 1.458117 +0.1475052 0.4282948 1.458117 +0.1846606 0.4282948 1.458117 +0.2245119 0.4282948 1.458117 +0.2679612 0.4282948 1.458117 +0.3158431 0.4282948 1.458117 +0.3689944 0.4282948 1.458117 +0.4282948 0.4282948 1.458117 +0.494694 0.4282948 1.458117 +0.5692344 0.4282948 1.458117 +0.6530715 0.4282948 1.458117 +0.7474945 0.4282948 1.458117 +0.8539475 0.4282948 1.458117 +0.974052 0.4282948 1.458117 +1.113885 0.4282948 1.458117 +1.27456 0.4282948 1.458117 +1.458117 0.4282948 1.458117 +1.667858 0.4282948 1.458117 +1.907556 0.4282948 1.458117 +2.181521 0.4282948 1.458117 +2.494678 0.4282948 1.458117 +2.852659 0.4282948 1.458117 +3.261896 0.4282948 1.458117 +3.729748 0.4282948 1.458117 +4.264621 0.4282948 1.458117 +4.876131 0.4282948 1.458117 +5.575266 0.4282948 1.458117 +6.374593 0.4282948 1.458117 +0 0.494694 1.458117 +0 0.494694 1.458117 +0 0.494694 1.458117 +0.002268731 0.494694 1.458117 +0.07076883 0.494694 1.458117 +0.1119241 0.494694 1.458117 +0.1475052 0.494694 1.458117 +0.1846606 0.494694 1.458117 +0.2245119 0.494694 1.458117 +0.2679612 0.494694 1.458117 +0.3158431 0.494694 1.458117 +0.3689944 0.494694 1.458117 +0.4282948 0.494694 1.458117 +0.494694 0.494694 1.458117 +0.5692344 0.494694 1.458117 +0.6530715 0.494694 1.458117 +0.7474945 0.494694 1.458117 +0.8539475 0.494694 1.458117 +0.974052 0.494694 1.458117 +1.113885 0.494694 1.458117 +1.27456 0.494694 1.458117 +1.458117 0.494694 1.458117 +1.667858 0.494694 1.458117 +1.907556 0.494694 1.458117 +2.181521 0.494694 1.458117 +2.494678 0.494694 1.458117 +2.852659 0.494694 1.458117 +3.261896 0.494694 1.458117 +3.729748 0.494694 1.458117 +4.264621 0.494694 1.458117 +4.876131 0.494694 1.458117 +5.575266 0.494694 1.458117 +6.374593 0.494694 1.458117 +0 0.5692344 1.458117 +0 0.5692344 1.458117 +0 0.5692344 1.458117 +0.002268731 0.5692344 1.458117 +0.07076883 0.5692344 1.458117 +0.1119241 0.5692344 1.458117 +0.1475052 0.5692344 1.458117 +0.1846606 0.5692344 1.458117 +0.2245119 0.5692344 1.458117 +0.2679612 0.5692344 1.458117 +0.3158431 0.5692344 1.458117 +0.3689944 0.5692344 1.458117 +0.4282948 0.5692344 1.458117 +0.494694 0.5692344 1.458117 +0.5692344 0.5692344 1.458117 +0.6530715 0.5692344 1.458117 +0.7474945 0.5692344 1.458117 +0.8539475 0.5692344 1.458117 +0.974052 0.5692344 1.458117 +1.113885 0.5692344 1.458117 +1.27456 0.5692344 1.458117 +1.458117 0.5692344 1.458117 +1.667858 0.5692344 1.458117 +1.907556 0.5692344 1.458117 +2.181521 0.5692344 1.458117 +2.494678 0.5692344 1.458117 +2.852659 0.5692344 1.458117 +3.261896 0.5692344 1.458117 +3.729748 0.5692344 1.458117 +4.264621 0.5692344 1.458117 +4.876131 0.5692344 1.458117 +5.575266 0.5692344 1.458117 +6.374593 0.5692344 1.458117 +0 0.6530715 1.458117 +0 0.6530715 1.458117 +0 0.6530715 1.458117 +0.002268731 0.6530715 1.458117 +0.07076883 0.6530715 1.458117 +0.1119241 0.6530715 1.458117 +0.1475052 0.6530715 1.458117 +0.1846606 0.6530715 1.458117 +0.2245119 0.6530715 1.458117 +0.2679612 0.6530715 1.458117 +0.3158431 0.6530715 1.458117 +0.3689944 0.6530715 1.458117 +0.4282948 0.6530715 1.458117 +0.494694 0.6530715 1.458117 +0.5692344 0.6530715 1.458117 +0.6530715 0.6530715 1.458117 +0.7474945 0.6530715 1.458117 +0.8539475 0.6530715 1.458117 +0.974052 0.6530715 1.458117 +1.113885 0.6530715 1.458117 +1.27456 0.6530715 1.458117 +1.458117 0.6530715 1.458117 +1.667858 0.6530715 1.458117 +1.907556 0.6530715 1.458117 +2.181521 0.6530715 1.458117 +2.494678 0.6530715 1.458117 +2.852659 0.6530715 1.458117 +3.261896 0.6530715 1.458117 +3.729748 0.6530715 1.458117 +4.264621 0.6530715 1.458117 +4.876131 0.6530715 1.458117 +5.575266 0.6530715 1.458117 +6.374593 0.6530715 1.458117 +0 0.7474945 1.458117 +0 0.7474945 1.458117 +0 0.7474945 1.458117 +0.002268731 0.7474945 1.458117 +0.07076883 0.7474945 1.458117 +0.1119241 0.7474945 1.458117 +0.1475052 0.7474945 1.458117 +0.1846606 0.7474945 1.458117 +0.2245119 0.7474945 1.458117 +0.2679612 0.7474945 1.458117 +0.3158431 0.7474945 1.458117 +0.3689944 0.7474945 1.458117 +0.4282948 0.7474945 1.458117 +0.494694 0.7474945 1.458117 +0.5692344 0.7474945 1.458117 +0.6530715 0.7474945 1.458117 +0.7474945 0.7474945 1.458117 +0.8539475 0.7474945 1.458117 +0.974052 0.7474945 1.458117 +1.113885 0.7474945 1.458117 +1.27456 0.7474945 1.458117 +1.458117 0.7474945 1.458117 +1.667858 0.7474945 1.458117 +1.907556 0.7474945 1.458117 +2.181521 0.7474945 1.458117 +2.494678 0.7474945 1.458117 +2.852659 0.7474945 1.458117 +3.261896 0.7474945 1.458117 +3.729748 0.7474945 1.458117 +4.264621 0.7474945 1.458117 +4.876131 0.7474945 1.458117 +5.575266 0.7474945 1.458117 +6.374593 0.7474945 1.458117 +0 0.8539475 1.458117 +0 0.8539475 1.458117 +0 0.8539475 1.458117 +0.002268731 0.8539475 1.458117 +0.07076883 0.8539475 1.458117 +0.1119241 0.8539475 1.458117 +0.1475052 0.8539475 1.458117 +0.1846606 0.8539475 1.458117 +0.2245119 0.8539475 1.458117 +0.2679612 0.8539475 1.458117 +0.3158431 0.8539475 1.458117 +0.3689944 0.8539475 1.458117 +0.4282948 0.8539475 1.458117 +0.494694 0.8539475 1.458117 +0.5692344 0.8539475 1.458117 +0.6530715 0.8539475 1.458117 +0.7474945 0.8539475 1.458117 +0.8539475 0.8539475 1.458117 +0.974052 0.8539475 1.458117 +1.113885 0.8539475 1.458117 +1.27456 0.8539475 1.458117 +1.458117 0.8539475 1.458117 +1.667858 0.8539475 1.458117 +1.907556 0.8539475 1.458117 +2.181521 0.8539475 1.458117 +2.494678 0.8539475 1.458117 +2.852659 0.8539475 1.458117 +3.261896 0.8539475 1.458117 +3.729748 0.8539475 1.458117 +4.264621 0.8539475 1.458117 +4.876131 0.8539475 1.458117 +5.575266 0.8539475 1.458117 +6.374593 0.8539475 1.458117 +0 0.974052 1.458117 +0 0.974052 1.458117 +0 0.974052 1.458117 +0.002268731 0.974052 1.458117 +0.07076883 0.974052 1.458117 +0.1119241 0.974052 1.458117 +0.1475052 0.974052 1.458117 +0.1846606 0.974052 1.458117 +0.2245119 0.974052 1.458117 +0.2679612 0.974052 1.458117 +0.3158431 0.974052 1.458117 +0.3689944 0.974052 1.458117 +0.4282948 0.974052 1.458117 +0.494694 0.974052 1.458117 +0.5692344 0.974052 1.458117 +0.6530715 0.974052 1.458117 +0.7474945 0.974052 1.458117 +0.8539475 0.974052 1.458117 +0.974052 0.974052 1.458117 +1.113885 0.974052 1.458117 +1.27456 0.974052 1.458117 +1.458117 0.974052 1.458117 +1.667858 0.974052 1.458117 +1.907556 0.974052 1.458117 +2.181521 0.974052 1.458117 +2.494678 0.974052 1.458117 +2.852659 0.974052 1.458117 +3.261896 0.974052 1.458117 +3.729748 0.974052 1.458117 +4.264621 0.974052 1.458117 +4.876131 0.974052 1.458117 +5.575266 0.974052 1.458117 +6.374593 0.974052 1.458117 +0 1.113885 1.458117 +0 1.113885 1.458117 +0 1.113885 1.458117 +0.002268731 1.113885 1.458117 +0.07076883 1.113885 1.458117 +0.1119241 1.113885 1.458117 +0.1475052 1.113885 1.458117 +0.1846606 1.113885 1.458117 +0.2245119 1.113885 1.458117 +0.2679612 1.113885 1.458117 +0.3158431 1.113885 1.458117 +0.3689944 1.113885 1.458117 +0.4282948 1.113885 1.458117 +0.494694 1.113885 1.458117 +0.5692344 1.113885 1.458117 +0.6530715 1.113885 1.458117 +0.7474945 1.113885 1.458117 +0.8539475 1.113885 1.458117 +0.974052 1.113885 1.458117 +1.113885 1.113885 1.458117 +1.27456 1.113885 1.458117 +1.458117 1.113885 1.458117 +1.667858 1.113885 1.458117 +1.907556 1.113885 1.458117 +2.181521 1.113885 1.458117 +2.494678 1.113885 1.458117 +2.852659 1.113885 1.458117 +3.261896 1.113885 1.458117 +3.729748 1.113885 1.458117 +4.264621 1.113885 1.458117 +4.876131 1.113885 1.458117 +5.575266 1.113885 1.458117 +6.374593 1.113885 1.458117 +0 1.27456 1.458117 +0 1.27456 1.458117 +0 1.27456 1.458117 +0.002268731 1.27456 1.458117 +0.07076883 1.27456 1.458117 +0.1119241 1.27456 1.458117 +0.1475052 1.27456 1.458117 +0.1846606 1.27456 1.458117 +0.2245119 1.27456 1.458117 +0.2679612 1.27456 1.458117 +0.3158431 1.27456 1.458117 +0.3689944 1.27456 1.458117 +0.4282948 1.27456 1.458117 +0.494694 1.27456 1.458117 +0.5692344 1.27456 1.458117 +0.6530715 1.27456 1.458117 +0.7474945 1.27456 1.458117 +0.8539475 1.27456 1.458117 +0.974052 1.27456 1.458117 +1.113885 1.27456 1.458117 +1.27456 1.27456 1.458117 +1.458117 1.27456 1.458117 +1.667858 1.27456 1.458117 +1.907556 1.27456 1.458117 +2.181521 1.27456 1.458117 +2.494678 1.27456 1.458117 +2.852659 1.27456 1.458117 +3.261896 1.27456 1.458117 +3.729748 1.27456 1.458117 +4.264621 1.27456 1.458117 +4.876131 1.27456 1.458117 +5.575266 1.27456 1.458117 +6.374593 1.27456 1.458117 +0 1.458117 1.458117 +0 1.458117 1.458117 +0 1.458117 1.458117 +0.002268731 1.458117 1.458117 +0.07076883 1.458117 1.458117 +0.1119241 1.458117 1.458117 +0.1475052 1.458117 1.458117 +0.1846606 1.458117 1.458117 +0.2245119 1.458117 1.458117 +0.2679612 1.458117 1.458117 +0.3158431 1.458117 1.458117 +0.3689944 1.458117 1.458117 +0.4282948 1.458117 1.458117 +0.494694 1.458117 1.458117 +0.5692344 1.458117 1.458117 +0.6530715 1.458117 1.458117 +0.7474945 1.458117 1.458117 +0.8539475 1.458117 1.458117 +0.974052 1.458117 1.458117 +1.113885 1.458117 1.458117 +1.27456 1.458117 1.458117 +1.458117 1.458117 1.458117 +1.667858 1.458117 1.458117 +1.907556 1.458117 1.458117 +2.181521 1.458117 1.458117 +2.494678 1.458117 1.458117 +2.852659 1.458117 1.458117 +3.261896 1.458117 1.458117 +3.729748 1.458117 1.458117 +4.264621 1.458117 1.458117 +4.876131 1.458117 1.458117 +5.575266 1.458117 1.458117 +6.374593 1.458117 1.458117 +0 1.667858 1.458117 +0 1.667858 1.458117 +0 1.667858 1.458117 +0.002268731 1.667858 1.458117 +0.07076883 1.667858 1.458117 +0.1119241 1.667858 1.458117 +0.1475052 1.667858 1.458117 +0.1846606 1.667858 1.458117 +0.2245119 1.667858 1.458117 +0.2679612 1.667858 1.458117 +0.3158431 1.667858 1.458117 +0.3689944 1.667858 1.458117 +0.4282948 1.667858 1.458117 +0.494694 1.667858 1.458117 +0.5692344 1.667858 1.458117 +0.6530715 1.667858 1.458117 +0.7474945 1.667858 1.458117 +0.8539475 1.667858 1.458117 +0.974052 1.667858 1.458117 +1.113885 1.667858 1.458117 +1.27456 1.667858 1.458117 +1.458117 1.667858 1.458117 +1.667858 1.667858 1.458117 +1.907556 1.667858 1.458117 +2.181521 1.667858 1.458117 +2.494678 1.667858 1.458117 +2.852659 1.667858 1.458117 +3.261896 1.667858 1.458117 +3.729748 1.667858 1.458117 +4.264621 1.667858 1.458117 +4.876131 1.667858 1.458117 +5.575266 1.667858 1.458117 +6.374593 1.667858 1.458117 +0 1.907556 1.458117 +0 1.907556 1.458117 +0 1.907556 1.458117 +0.002268731 1.907556 1.458117 +0.07076883 1.907556 1.458117 +0.1119241 1.907556 1.458117 +0.1475052 1.907556 1.458117 +0.1846606 1.907556 1.458117 +0.2245119 1.907556 1.458117 +0.2679612 1.907556 1.458117 +0.3158431 1.907556 1.458117 +0.3689944 1.907556 1.458117 +0.4282948 1.907556 1.458117 +0.494694 1.907556 1.458117 +0.5692344 1.907556 1.458117 +0.6530715 1.907556 1.458117 +0.7474945 1.907556 1.458117 +0.8539475 1.907556 1.458117 +0.974052 1.907556 1.458117 +1.113885 1.907556 1.458117 +1.27456 1.907556 1.458117 +1.458117 1.907556 1.458117 +1.667858 1.907556 1.458117 +1.907556 1.907556 1.458117 +2.181521 1.907556 1.458117 +2.494678 1.907556 1.458117 +2.852659 1.907556 1.458117 +3.261896 1.907556 1.458117 +3.729748 1.907556 1.458117 +4.264621 1.907556 1.458117 +4.876131 1.907556 1.458117 +5.575266 1.907556 1.458117 +6.374593 1.907556 1.458117 +0 2.181521 1.458117 +0 2.181521 1.458117 +0 2.181521 1.458117 +0.002268731 2.181521 1.458117 +0.07076883 2.181521 1.458117 +0.1119241 2.181521 1.458117 +0.1475052 2.181521 1.458117 +0.1846606 2.181521 1.458117 +0.2245119 2.181521 1.458117 +0.2679612 2.181521 1.458117 +0.3158431 2.181521 1.458117 +0.3689944 2.181521 1.458117 +0.4282948 2.181521 1.458117 +0.494694 2.181521 1.458117 +0.5692344 2.181521 1.458117 +0.6530715 2.181521 1.458117 +0.7474945 2.181521 1.458117 +0.8539475 2.181521 1.458117 +0.974052 2.181521 1.458117 +1.113885 2.181521 1.458117 +1.27456 2.181521 1.458117 +1.458117 2.181521 1.458117 +1.667858 2.181521 1.458117 +1.907556 2.181521 1.458117 +2.181521 2.181521 1.458117 +2.494678 2.181521 1.458117 +2.852659 2.181521 1.458117 +3.261896 2.181521 1.458117 +3.729748 2.181521 1.458117 +4.264621 2.181521 1.458117 +4.876131 2.181521 1.458117 +5.575266 2.181521 1.458117 +6.374593 2.181521 1.458117 +0 2.494678 1.458117 +0 2.494678 1.458117 +0 2.494678 1.458117 +0.002268731 2.494678 1.458117 +0.07076883 2.494678 1.458117 +0.1119241 2.494678 1.458117 +0.1475052 2.494678 1.458117 +0.1846606 2.494678 1.458117 +0.2245119 2.494678 1.458117 +0.2679612 2.494678 1.458117 +0.3158431 2.494678 1.458117 +0.3689944 2.494678 1.458117 +0.4282948 2.494678 1.458117 +0.494694 2.494678 1.458117 +0.5692344 2.494678 1.458117 +0.6530715 2.494678 1.458117 +0.7474945 2.494678 1.458117 +0.8539475 2.494678 1.458117 +0.974052 2.494678 1.458117 +1.113885 2.494678 1.458117 +1.27456 2.494678 1.458117 +1.458117 2.494678 1.458117 +1.667858 2.494678 1.458117 +1.907556 2.494678 1.458117 +2.181521 2.494678 1.458117 +2.494678 2.494678 1.458117 +2.852659 2.494678 1.458117 +3.261896 2.494678 1.458117 +3.729748 2.494678 1.458117 +4.264621 2.494678 1.458117 +4.876131 2.494678 1.458117 +5.575266 2.494678 1.458117 +6.374593 2.494678 1.458117 +0 2.852659 1.458117 +0 2.852659 1.458117 +0 2.852659 1.458117 +0.002268731 2.852659 1.458117 +0.07076883 2.852659 1.458117 +0.1119241 2.852659 1.458117 +0.1475052 2.852659 1.458117 +0.1846606 2.852659 1.458117 +0.2245119 2.852659 1.458117 +0.2679612 2.852659 1.458117 +0.3158431 2.852659 1.458117 +0.3689944 2.852659 1.458117 +0.4282948 2.852659 1.458117 +0.494694 2.852659 1.458117 +0.5692344 2.852659 1.458117 +0.6530715 2.852659 1.458117 +0.7474945 2.852659 1.458117 +0.8539475 2.852659 1.458117 +0.974052 2.852659 1.458117 +1.113885 2.852659 1.458117 +1.27456 2.852659 1.458117 +1.458117 2.852659 1.458117 +1.667858 2.852659 1.458117 +1.907556 2.852659 1.458117 +2.181521 2.852659 1.458117 +2.494678 2.852659 1.458117 +2.852659 2.852659 1.458117 +3.261896 2.852659 1.458117 +3.729748 2.852659 1.458117 +4.264621 2.852659 1.458117 +4.876131 2.852659 1.458117 +5.575266 2.852659 1.458117 +6.374593 2.852659 1.458117 +0 3.261896 1.458117 +0 3.261896 1.458117 +0 3.261896 1.458117 +0.002268731 3.261896 1.458117 +0.07076883 3.261896 1.458117 +0.1119241 3.261896 1.458117 +0.1475052 3.261896 1.458117 +0.1846606 3.261896 1.458117 +0.2245119 3.261896 1.458117 +0.2679612 3.261896 1.458117 +0.3158431 3.261896 1.458117 +0.3689944 3.261896 1.458117 +0.4282948 3.261896 1.458117 +0.494694 3.261896 1.458117 +0.5692344 3.261896 1.458117 +0.6530715 3.261896 1.458117 +0.7474945 3.261896 1.458117 +0.8539475 3.261896 1.458117 +0.974052 3.261896 1.458117 +1.113885 3.261896 1.458117 +1.27456 3.261896 1.458117 +1.458117 3.261896 1.458117 +1.667858 3.261896 1.458117 +1.907556 3.261896 1.458117 +2.181521 3.261896 1.458117 +2.494678 3.261896 1.458117 +2.852659 3.261896 1.458117 +3.261896 3.261896 1.458117 +3.729748 3.261896 1.458117 +4.264621 3.261896 1.458117 +4.876131 3.261896 1.458117 +5.575266 3.261896 1.458117 +6.374593 3.261896 1.458117 +0 3.729748 1.458117 +0 3.729748 1.458117 +0 3.729748 1.458117 +0.002268731 3.729748 1.458117 +0.07076883 3.729748 1.458117 +0.1119241 3.729748 1.458117 +0.1475052 3.729748 1.458117 +0.1846606 3.729748 1.458117 +0.2245119 3.729748 1.458117 +0.2679612 3.729748 1.458117 +0.3158431 3.729748 1.458117 +0.3689944 3.729748 1.458117 +0.4282948 3.729748 1.458117 +0.494694 3.729748 1.458117 +0.5692344 3.729748 1.458117 +0.6530715 3.729748 1.458117 +0.7474945 3.729748 1.458117 +0.8539475 3.729748 1.458117 +0.974052 3.729748 1.458117 +1.113885 3.729748 1.458117 +1.27456 3.729748 1.458117 +1.458117 3.729748 1.458117 +1.667858 3.729748 1.458117 +1.907556 3.729748 1.458117 +2.181521 3.729748 1.458117 +2.494678 3.729748 1.458117 +2.852659 3.729748 1.458117 +3.261896 3.729748 1.458117 +3.729748 3.729748 1.458117 +4.264621 3.729748 1.458117 +4.876131 3.729748 1.458117 +5.575266 3.729748 1.458117 +6.374593 3.729748 1.458117 +0 4.264621 1.458117 +0 4.264621 1.458117 +0 4.264621 1.458117 +0.002268731 4.264621 1.458117 +0.07076883 4.264621 1.458117 +0.1119241 4.264621 1.458117 +0.1475052 4.264621 1.458117 +0.1846606 4.264621 1.458117 +0.2245119 4.264621 1.458117 +0.2679612 4.264621 1.458117 +0.3158431 4.264621 1.458117 +0.3689944 4.264621 1.458117 +0.4282948 4.264621 1.458117 +0.494694 4.264621 1.458117 +0.5692344 4.264621 1.458117 +0.6530715 4.264621 1.458117 +0.7474945 4.264621 1.458117 +0.8539475 4.264621 1.458117 +0.974052 4.264621 1.458117 +1.113885 4.264621 1.458117 +1.27456 4.264621 1.458117 +1.458117 4.264621 1.458117 +1.667858 4.264621 1.458117 +1.907556 4.264621 1.458117 +2.181521 4.264621 1.458117 +2.494678 4.264621 1.458117 +2.852659 4.264621 1.458117 +3.261896 4.264621 1.458117 +3.729748 4.264621 1.458117 +4.264621 4.264621 1.458117 +4.876131 4.264621 1.458117 +5.575266 4.264621 1.458117 +6.374593 4.264621 1.458117 +0 4.876131 1.458117 +0 4.876131 1.458117 +0 4.876131 1.458117 +0.002268731 4.876131 1.458117 +0.07076883 4.876131 1.458117 +0.1119241 4.876131 1.458117 +0.1475052 4.876131 1.458117 +0.1846606 4.876131 1.458117 +0.2245119 4.876131 1.458117 +0.2679612 4.876131 1.458117 +0.3158431 4.876131 1.458117 +0.3689944 4.876131 1.458117 +0.4282948 4.876131 1.458117 +0.494694 4.876131 1.458117 +0.5692344 4.876131 1.458117 +0.6530715 4.876131 1.458117 +0.7474945 4.876131 1.458117 +0.8539475 4.876131 1.458117 +0.974052 4.876131 1.458117 +1.113885 4.876131 1.458117 +1.27456 4.876131 1.458117 +1.458117 4.876131 1.458117 +1.667858 4.876131 1.458117 +1.907556 4.876131 1.458117 +2.181521 4.876131 1.458117 +2.494678 4.876131 1.458117 +2.852659 4.876131 1.458117 +3.261896 4.876131 1.458117 +3.729748 4.876131 1.458117 +4.264621 4.876131 1.458117 +4.876131 4.876131 1.458117 +5.575266 4.876131 1.458117 +6.374593 4.876131 1.458117 +0 5.575266 1.458117 +0 5.575266 1.458117 +0 5.575266 1.458117 +0.002268731 5.575266 1.458117 +0.07076883 5.575266 1.458117 +0.1119241 5.575266 1.458117 +0.1475052 5.575266 1.458117 +0.1846606 5.575266 1.458117 +0.2245119 5.575266 1.458117 +0.2679612 5.575266 1.458117 +0.3158431 5.575266 1.458117 +0.3689944 5.575266 1.458117 +0.4282948 5.575266 1.458117 +0.494694 5.575266 1.458117 +0.5692344 5.575266 1.458117 +0.6530715 5.575266 1.458117 +0.7474945 5.575266 1.458117 +0.8539475 5.575266 1.458117 +0.974052 5.575266 1.458117 +1.113885 5.575266 1.458117 +1.27456 5.575266 1.458117 +1.458117 5.575266 1.458117 +1.667858 5.575266 1.458117 +1.907556 5.575266 1.458117 +2.181521 5.575266 1.458117 +2.494678 5.575266 1.458117 +2.852659 5.575266 1.458117 +3.261896 5.575266 1.458117 +3.729748 5.575266 1.458117 +4.264621 5.575266 1.458117 +4.876131 5.575266 1.458117 +5.575266 5.575266 1.458117 +6.374593 5.575266 1.458117 +0 6.374593 1.458117 +0 6.374593 1.458117 +0 6.374593 1.458117 +0.002268731 6.374593 1.458117 +0.07076883 6.374593 1.458117 +0.1119241 6.374593 1.458117 +0.1475052 6.374593 1.458117 +0.1846606 6.374593 1.458117 +0.2245119 6.374593 1.458117 +0.2679612 6.374593 1.458117 +0.3158431 6.374593 1.458117 +0.3689944 6.374593 1.458117 +0.4282948 6.374593 1.458117 +0.494694 6.374593 1.458117 +0.5692344 6.374593 1.458117 +0.6530715 6.374593 1.458117 +0.7474945 6.374593 1.458117 +0.8539475 6.374593 1.458117 +0.974052 6.374593 1.458117 +1.113885 6.374593 1.458117 +1.27456 6.374593 1.458117 +1.458117 6.374593 1.458117 +1.667858 6.374593 1.458117 +1.907556 6.374593 1.458117 +2.181521 6.374593 1.458117 +2.494678 6.374593 1.458117 +2.852659 6.374593 1.458117 +3.261896 6.374593 1.458117 +3.729748 6.374593 1.458117 +4.264621 6.374593 1.458117 +4.876131 6.374593 1.458117 +5.575266 6.374593 1.458117 +6.374593 6.374593 1.458117 +0 0 1.667858 +0 0 1.667858 +0 0 1.667858 +0.002268731 0 1.667858 +0.07076883 0 1.667858 +0.1119241 0 1.667858 +0.1475052 0 1.667858 +0.1846606 0 1.667858 +0.2245119 0 1.667858 +0.2679612 0 1.667858 +0.3158431 0 1.667858 +0.3689944 0 1.667858 +0.4282948 0 1.667858 +0.494694 0 1.667858 +0.5692344 0 1.667858 +0.6530715 0 1.667858 +0.7474945 0 1.667858 +0.8539475 0 1.667858 +0.974052 0 1.667858 +1.113885 0 1.667858 +1.27456 0 1.667858 +1.458117 0 1.667858 +1.667858 0 1.667858 +1.907556 0 1.667858 +2.181521 0 1.667858 +2.494678 0 1.667858 +2.852659 0 1.667858 +3.261896 0 1.667858 +3.729748 0 1.667858 +4.264621 0 1.667858 +4.876131 0 1.667858 +5.575266 0 1.667858 +6.374593 0 1.667858 +0 0 1.667858 +0 0 1.667858 +0 0 1.667858 +0.002268731 0 1.667858 +0.07076883 0 1.667858 +0.1119241 0 1.667858 +0.1475052 0 1.667858 +0.1846606 0 1.667858 +0.2245119 0 1.667858 +0.2679612 0 1.667858 +0.3158431 0 1.667858 +0.3689944 0 1.667858 +0.4282948 0 1.667858 +0.494694 0 1.667858 +0.5692344 0 1.667858 +0.6530715 0 1.667858 +0.7474945 0 1.667858 +0.8539475 0 1.667858 +0.974052 0 1.667858 +1.113885 0 1.667858 +1.27456 0 1.667858 +1.458117 0 1.667858 +1.667858 0 1.667858 +1.907556 0 1.667858 +2.181521 0 1.667858 +2.494678 0 1.667858 +2.852659 0 1.667858 +3.261896 0 1.667858 +3.729748 0 1.667858 +4.264621 0 1.667858 +4.876131 0 1.667858 +5.575266 0 1.667858 +6.374593 0 1.667858 +0 0 1.667858 +0 0 1.667858 +0 0 1.667858 +0.002268731 0 1.667858 +0.07076883 0 1.667858 +0.1119241 0 1.667858 +0.1475052 0 1.667858 +0.1846606 0 1.667858 +0.2245119 0 1.667858 +0.2679612 0 1.667858 +0.3158431 0 1.667858 +0.3689944 0 1.667858 +0.4282948 0 1.667858 +0.494694 0 1.667858 +0.5692344 0 1.667858 +0.6530715 0 1.667858 +0.7474945 0 1.667858 +0.8539475 0 1.667858 +0.974052 0 1.667858 +1.113885 0 1.667858 +1.27456 0 1.667858 +1.458117 0 1.667858 +1.667858 0 1.667858 +1.907556 0 1.667858 +2.181521 0 1.667858 +2.494678 0 1.667858 +2.852659 0 1.667858 +3.261896 0 1.667858 +3.729748 0 1.667858 +4.264621 0 1.667858 +4.876131 0 1.667858 +5.575266 0 1.667858 +6.374593 0 1.667858 +0 0.002268731 1.667858 +0 0.002268731 1.667858 +0 0.002268731 1.667858 +0.002268731 0.002268731 1.667858 +0.07076883 0.002268731 1.667858 +0.1119241 0.002268731 1.667858 +0.1475052 0.002268731 1.667858 +0.1846606 0.002268731 1.667858 +0.2245119 0.002268731 1.667858 +0.2679612 0.002268731 1.667858 +0.3158431 0.002268731 1.667858 +0.3689944 0.002268731 1.667858 +0.4282948 0.002268731 1.667858 +0.494694 0.002268731 1.667858 +0.5692344 0.002268731 1.667858 +0.6530715 0.002268731 1.667858 +0.7474945 0.002268731 1.667858 +0.8539475 0.002268731 1.667858 +0.974052 0.002268731 1.667858 +1.113885 0.002268731 1.667858 +1.27456 0.002268731 1.667858 +1.458117 0.002268731 1.667858 +1.667858 0.002268731 1.667858 +1.907556 0.002268731 1.667858 +2.181521 0.002268731 1.667858 +2.494678 0.002268731 1.667858 +2.852659 0.002268731 1.667858 +3.261896 0.002268731 1.667858 +3.729748 0.002268731 1.667858 +4.264621 0.002268731 1.667858 +4.876131 0.002268731 1.667858 +5.575266 0.002268731 1.667858 +6.374593 0.002268731 1.667858 +0 0.07076883 1.667858 +0 0.07076883 1.667858 +0 0.07076883 1.667858 +0.002268731 0.07076883 1.667858 +0.07076883 0.07076883 1.667858 +0.1119241 0.07076883 1.667858 +0.1475052 0.07076883 1.667858 +0.1846606 0.07076883 1.667858 +0.2245119 0.07076883 1.667858 +0.2679612 0.07076883 1.667858 +0.3158431 0.07076883 1.667858 +0.3689944 0.07076883 1.667858 +0.4282948 0.07076883 1.667858 +0.494694 0.07076883 1.667858 +0.5692344 0.07076883 1.667858 +0.6530715 0.07076883 1.667858 +0.7474945 0.07076883 1.667858 +0.8539475 0.07076883 1.667858 +0.974052 0.07076883 1.667858 +1.113885 0.07076883 1.667858 +1.27456 0.07076883 1.667858 +1.458117 0.07076883 1.667858 +1.667858 0.07076883 1.667858 +1.907556 0.07076883 1.667858 +2.181521 0.07076883 1.667858 +2.494678 0.07076883 1.667858 +2.852659 0.07076883 1.667858 +3.261896 0.07076883 1.667858 +3.729748 0.07076883 1.667858 +4.264621 0.07076883 1.667858 +4.876131 0.07076883 1.667858 +5.575266 0.07076883 1.667858 +6.374593 0.07076883 1.667858 +0 0.1119241 1.667858 +0 0.1119241 1.667858 +0 0.1119241 1.667858 +0.002268731 0.1119241 1.667858 +0.07076883 0.1119241 1.667858 +0.1119241 0.1119241 1.667858 +0.1475052 0.1119241 1.667858 +0.1846606 0.1119241 1.667858 +0.2245119 0.1119241 1.667858 +0.2679612 0.1119241 1.667858 +0.3158431 0.1119241 1.667858 +0.3689944 0.1119241 1.667858 +0.4282948 0.1119241 1.667858 +0.494694 0.1119241 1.667858 +0.5692344 0.1119241 1.667858 +0.6530715 0.1119241 1.667858 +0.7474945 0.1119241 1.667858 +0.8539475 0.1119241 1.667858 +0.974052 0.1119241 1.667858 +1.113885 0.1119241 1.667858 +1.27456 0.1119241 1.667858 +1.458117 0.1119241 1.667858 +1.667858 0.1119241 1.667858 +1.907556 0.1119241 1.667858 +2.181521 0.1119241 1.667858 +2.494678 0.1119241 1.667858 +2.852659 0.1119241 1.667858 +3.261896 0.1119241 1.667858 +3.729748 0.1119241 1.667858 +4.264621 0.1119241 1.667858 +4.876131 0.1119241 1.667858 +5.575266 0.1119241 1.667858 +6.374593 0.1119241 1.667858 +0 0.1475052 1.667858 +0 0.1475052 1.667858 +0 0.1475052 1.667858 +0.002268731 0.1475052 1.667858 +0.07076883 0.1475052 1.667858 +0.1119241 0.1475052 1.667858 +0.1475052 0.1475052 1.667858 +0.1846606 0.1475052 1.667858 +0.2245119 0.1475052 1.667858 +0.2679612 0.1475052 1.667858 +0.3158431 0.1475052 1.667858 +0.3689944 0.1475052 1.667858 +0.4282948 0.1475052 1.667858 +0.494694 0.1475052 1.667858 +0.5692344 0.1475052 1.667858 +0.6530715 0.1475052 1.667858 +0.7474945 0.1475052 1.667858 +0.8539475 0.1475052 1.667858 +0.974052 0.1475052 1.667858 +1.113885 0.1475052 1.667858 +1.27456 0.1475052 1.667858 +1.458117 0.1475052 1.667858 +1.667858 0.1475052 1.667858 +1.907556 0.1475052 1.667858 +2.181521 0.1475052 1.667858 +2.494678 0.1475052 1.667858 +2.852659 0.1475052 1.667858 +3.261896 0.1475052 1.667858 +3.729748 0.1475052 1.667858 +4.264621 0.1475052 1.667858 +4.876131 0.1475052 1.667858 +5.575266 0.1475052 1.667858 +6.374593 0.1475052 1.667858 +0 0.1846606 1.667858 +0 0.1846606 1.667858 +0 0.1846606 1.667858 +0.002268731 0.1846606 1.667858 +0.07076883 0.1846606 1.667858 +0.1119241 0.1846606 1.667858 +0.1475052 0.1846606 1.667858 +0.1846606 0.1846606 1.667858 +0.2245119 0.1846606 1.667858 +0.2679612 0.1846606 1.667858 +0.3158431 0.1846606 1.667858 +0.3689944 0.1846606 1.667858 +0.4282948 0.1846606 1.667858 +0.494694 0.1846606 1.667858 +0.5692344 0.1846606 1.667858 +0.6530715 0.1846606 1.667858 +0.7474945 0.1846606 1.667858 +0.8539475 0.1846606 1.667858 +0.974052 0.1846606 1.667858 +1.113885 0.1846606 1.667858 +1.27456 0.1846606 1.667858 +1.458117 0.1846606 1.667858 +1.667858 0.1846606 1.667858 +1.907556 0.1846606 1.667858 +2.181521 0.1846606 1.667858 +2.494678 0.1846606 1.667858 +2.852659 0.1846606 1.667858 +3.261896 0.1846606 1.667858 +3.729748 0.1846606 1.667858 +4.264621 0.1846606 1.667858 +4.876131 0.1846606 1.667858 +5.575266 0.1846606 1.667858 +6.374593 0.1846606 1.667858 +0 0.2245119 1.667858 +0 0.2245119 1.667858 +0 0.2245119 1.667858 +0.002268731 0.2245119 1.667858 +0.07076883 0.2245119 1.667858 +0.1119241 0.2245119 1.667858 +0.1475052 0.2245119 1.667858 +0.1846606 0.2245119 1.667858 +0.2245119 0.2245119 1.667858 +0.2679612 0.2245119 1.667858 +0.3158431 0.2245119 1.667858 +0.3689944 0.2245119 1.667858 +0.4282948 0.2245119 1.667858 +0.494694 0.2245119 1.667858 +0.5692344 0.2245119 1.667858 +0.6530715 0.2245119 1.667858 +0.7474945 0.2245119 1.667858 +0.8539475 0.2245119 1.667858 +0.974052 0.2245119 1.667858 +1.113885 0.2245119 1.667858 +1.27456 0.2245119 1.667858 +1.458117 0.2245119 1.667858 +1.667858 0.2245119 1.667858 +1.907556 0.2245119 1.667858 +2.181521 0.2245119 1.667858 +2.494678 0.2245119 1.667858 +2.852659 0.2245119 1.667858 +3.261896 0.2245119 1.667858 +3.729748 0.2245119 1.667858 +4.264621 0.2245119 1.667858 +4.876131 0.2245119 1.667858 +5.575266 0.2245119 1.667858 +6.374593 0.2245119 1.667858 +0 0.2679612 1.667858 +0 0.2679612 1.667858 +0 0.2679612 1.667858 +0.002268731 0.2679612 1.667858 +0.07076883 0.2679612 1.667858 +0.1119241 0.2679612 1.667858 +0.1475052 0.2679612 1.667858 +0.1846606 0.2679612 1.667858 +0.2245119 0.2679612 1.667858 +0.2679612 0.2679612 1.667858 +0.3158431 0.2679612 1.667858 +0.3689944 0.2679612 1.667858 +0.4282948 0.2679612 1.667858 +0.494694 0.2679612 1.667858 +0.5692344 0.2679612 1.667858 +0.6530715 0.2679612 1.667858 +0.7474945 0.2679612 1.667858 +0.8539475 0.2679612 1.667858 +0.974052 0.2679612 1.667858 +1.113885 0.2679612 1.667858 +1.27456 0.2679612 1.667858 +1.458117 0.2679612 1.667858 +1.667858 0.2679612 1.667858 +1.907556 0.2679612 1.667858 +2.181521 0.2679612 1.667858 +2.494678 0.2679612 1.667858 +2.852659 0.2679612 1.667858 +3.261896 0.2679612 1.667858 +3.729748 0.2679612 1.667858 +4.264621 0.2679612 1.667858 +4.876131 0.2679612 1.667858 +5.575266 0.2679612 1.667858 +6.374593 0.2679612 1.667858 +0 0.3158431 1.667858 +0 0.3158431 1.667858 +0 0.3158431 1.667858 +0.002268731 0.3158431 1.667858 +0.07076883 0.3158431 1.667858 +0.1119241 0.3158431 1.667858 +0.1475052 0.3158431 1.667858 +0.1846606 0.3158431 1.667858 +0.2245119 0.3158431 1.667858 +0.2679612 0.3158431 1.667858 +0.3158431 0.3158431 1.667858 +0.3689944 0.3158431 1.667858 +0.4282948 0.3158431 1.667858 +0.494694 0.3158431 1.667858 +0.5692344 0.3158431 1.667858 +0.6530715 0.3158431 1.667858 +0.7474945 0.3158431 1.667858 +0.8539475 0.3158431 1.667858 +0.974052 0.3158431 1.667858 +1.113885 0.3158431 1.667858 +1.27456 0.3158431 1.667858 +1.458117 0.3158431 1.667858 +1.667858 0.3158431 1.667858 +1.907556 0.3158431 1.667858 +2.181521 0.3158431 1.667858 +2.494678 0.3158431 1.667858 +2.852659 0.3158431 1.667858 +3.261896 0.3158431 1.667858 +3.729748 0.3158431 1.667858 +4.264621 0.3158431 1.667858 +4.876131 0.3158431 1.667858 +5.575266 0.3158431 1.667858 +6.374593 0.3158431 1.667858 +0 0.3689944 1.667858 +0 0.3689944 1.667858 +0 0.3689944 1.667858 +0.002268731 0.3689944 1.667858 +0.07076883 0.3689944 1.667858 +0.1119241 0.3689944 1.667858 +0.1475052 0.3689944 1.667858 +0.1846606 0.3689944 1.667858 +0.2245119 0.3689944 1.667858 +0.2679612 0.3689944 1.667858 +0.3158431 0.3689944 1.667858 +0.3689944 0.3689944 1.667858 +0.4282948 0.3689944 1.667858 +0.494694 0.3689944 1.667858 +0.5692344 0.3689944 1.667858 +0.6530715 0.3689944 1.667858 +0.7474945 0.3689944 1.667858 +0.8539475 0.3689944 1.667858 +0.974052 0.3689944 1.667858 +1.113885 0.3689944 1.667858 +1.27456 0.3689944 1.667858 +1.458117 0.3689944 1.667858 +1.667858 0.3689944 1.667858 +1.907556 0.3689944 1.667858 +2.181521 0.3689944 1.667858 +2.494678 0.3689944 1.667858 +2.852659 0.3689944 1.667858 +3.261896 0.3689944 1.667858 +3.729748 0.3689944 1.667858 +4.264621 0.3689944 1.667858 +4.876131 0.3689944 1.667858 +5.575266 0.3689944 1.667858 +6.374593 0.3689944 1.667858 +0 0.4282948 1.667858 +0 0.4282948 1.667858 +0 0.4282948 1.667858 +0.002268731 0.4282948 1.667858 +0.07076883 0.4282948 1.667858 +0.1119241 0.4282948 1.667858 +0.1475052 0.4282948 1.667858 +0.1846606 0.4282948 1.667858 +0.2245119 0.4282948 1.667858 +0.2679612 0.4282948 1.667858 +0.3158431 0.4282948 1.667858 +0.3689944 0.4282948 1.667858 +0.4282948 0.4282948 1.667858 +0.494694 0.4282948 1.667858 +0.5692344 0.4282948 1.667858 +0.6530715 0.4282948 1.667858 +0.7474945 0.4282948 1.667858 +0.8539475 0.4282948 1.667858 +0.974052 0.4282948 1.667858 +1.113885 0.4282948 1.667858 +1.27456 0.4282948 1.667858 +1.458117 0.4282948 1.667858 +1.667858 0.4282948 1.667858 +1.907556 0.4282948 1.667858 +2.181521 0.4282948 1.667858 +2.494678 0.4282948 1.667858 +2.852659 0.4282948 1.667858 +3.261896 0.4282948 1.667858 +3.729748 0.4282948 1.667858 +4.264621 0.4282948 1.667858 +4.876131 0.4282948 1.667858 +5.575266 0.4282948 1.667858 +6.374593 0.4282948 1.667858 +0 0.494694 1.667858 +0 0.494694 1.667858 +0 0.494694 1.667858 +0.002268731 0.494694 1.667858 +0.07076883 0.494694 1.667858 +0.1119241 0.494694 1.667858 +0.1475052 0.494694 1.667858 +0.1846606 0.494694 1.667858 +0.2245119 0.494694 1.667858 +0.2679612 0.494694 1.667858 +0.3158431 0.494694 1.667858 +0.3689944 0.494694 1.667858 +0.4282948 0.494694 1.667858 +0.494694 0.494694 1.667858 +0.5692344 0.494694 1.667858 +0.6530715 0.494694 1.667858 +0.7474945 0.494694 1.667858 +0.8539475 0.494694 1.667858 +0.974052 0.494694 1.667858 +1.113885 0.494694 1.667858 +1.27456 0.494694 1.667858 +1.458117 0.494694 1.667858 +1.667858 0.494694 1.667858 +1.907556 0.494694 1.667858 +2.181521 0.494694 1.667858 +2.494678 0.494694 1.667858 +2.852659 0.494694 1.667858 +3.261896 0.494694 1.667858 +3.729748 0.494694 1.667858 +4.264621 0.494694 1.667858 +4.876131 0.494694 1.667858 +5.575266 0.494694 1.667858 +6.374593 0.494694 1.667858 +0 0.5692344 1.667858 +0 0.5692344 1.667858 +0 0.5692344 1.667858 +0.002268731 0.5692344 1.667858 +0.07076883 0.5692344 1.667858 +0.1119241 0.5692344 1.667858 +0.1475052 0.5692344 1.667858 +0.1846606 0.5692344 1.667858 +0.2245119 0.5692344 1.667858 +0.2679612 0.5692344 1.667858 +0.3158431 0.5692344 1.667858 +0.3689944 0.5692344 1.667858 +0.4282948 0.5692344 1.667858 +0.494694 0.5692344 1.667858 +0.5692344 0.5692344 1.667858 +0.6530715 0.5692344 1.667858 +0.7474945 0.5692344 1.667858 +0.8539475 0.5692344 1.667858 +0.974052 0.5692344 1.667858 +1.113885 0.5692344 1.667858 +1.27456 0.5692344 1.667858 +1.458117 0.5692344 1.667858 +1.667858 0.5692344 1.667858 +1.907556 0.5692344 1.667858 +2.181521 0.5692344 1.667858 +2.494678 0.5692344 1.667858 +2.852659 0.5692344 1.667858 +3.261896 0.5692344 1.667858 +3.729748 0.5692344 1.667858 +4.264621 0.5692344 1.667858 +4.876131 0.5692344 1.667858 +5.575266 0.5692344 1.667858 +6.374593 0.5692344 1.667858 +0 0.6530715 1.667858 +0 0.6530715 1.667858 +0 0.6530715 1.667858 +0.002268731 0.6530715 1.667858 +0.07076883 0.6530715 1.667858 +0.1119241 0.6530715 1.667858 +0.1475052 0.6530715 1.667858 +0.1846606 0.6530715 1.667858 +0.2245119 0.6530715 1.667858 +0.2679612 0.6530715 1.667858 +0.3158431 0.6530715 1.667858 +0.3689944 0.6530715 1.667858 +0.4282948 0.6530715 1.667858 +0.494694 0.6530715 1.667858 +0.5692344 0.6530715 1.667858 +0.6530715 0.6530715 1.667858 +0.7474945 0.6530715 1.667858 +0.8539475 0.6530715 1.667858 +0.974052 0.6530715 1.667858 +1.113885 0.6530715 1.667858 +1.27456 0.6530715 1.667858 +1.458117 0.6530715 1.667858 +1.667858 0.6530715 1.667858 +1.907556 0.6530715 1.667858 +2.181521 0.6530715 1.667858 +2.494678 0.6530715 1.667858 +2.852659 0.6530715 1.667858 +3.261896 0.6530715 1.667858 +3.729748 0.6530715 1.667858 +4.264621 0.6530715 1.667858 +4.876131 0.6530715 1.667858 +5.575266 0.6530715 1.667858 +6.374593 0.6530715 1.667858 +0 0.7474945 1.667858 +0 0.7474945 1.667858 +0 0.7474945 1.667858 +0.002268731 0.7474945 1.667858 +0.07076883 0.7474945 1.667858 +0.1119241 0.7474945 1.667858 +0.1475052 0.7474945 1.667858 +0.1846606 0.7474945 1.667858 +0.2245119 0.7474945 1.667858 +0.2679612 0.7474945 1.667858 +0.3158431 0.7474945 1.667858 +0.3689944 0.7474945 1.667858 +0.4282948 0.7474945 1.667858 +0.494694 0.7474945 1.667858 +0.5692344 0.7474945 1.667858 +0.6530715 0.7474945 1.667858 +0.7474945 0.7474945 1.667858 +0.8539475 0.7474945 1.667858 +0.974052 0.7474945 1.667858 +1.113885 0.7474945 1.667858 +1.27456 0.7474945 1.667858 +1.458117 0.7474945 1.667858 +1.667858 0.7474945 1.667858 +1.907556 0.7474945 1.667858 +2.181521 0.7474945 1.667858 +2.494678 0.7474945 1.667858 +2.852659 0.7474945 1.667858 +3.261896 0.7474945 1.667858 +3.729748 0.7474945 1.667858 +4.264621 0.7474945 1.667858 +4.876131 0.7474945 1.667858 +5.575266 0.7474945 1.667858 +6.374593 0.7474945 1.667858 +0 0.8539475 1.667858 +0 0.8539475 1.667858 +0 0.8539475 1.667858 +0.002268731 0.8539475 1.667858 +0.07076883 0.8539475 1.667858 +0.1119241 0.8539475 1.667858 +0.1475052 0.8539475 1.667858 +0.1846606 0.8539475 1.667858 +0.2245119 0.8539475 1.667858 +0.2679612 0.8539475 1.667858 +0.3158431 0.8539475 1.667858 +0.3689944 0.8539475 1.667858 +0.4282948 0.8539475 1.667858 +0.494694 0.8539475 1.667858 +0.5692344 0.8539475 1.667858 +0.6530715 0.8539475 1.667858 +0.7474945 0.8539475 1.667858 +0.8539475 0.8539475 1.667858 +0.974052 0.8539475 1.667858 +1.113885 0.8539475 1.667858 +1.27456 0.8539475 1.667858 +1.458117 0.8539475 1.667858 +1.667858 0.8539475 1.667858 +1.907556 0.8539475 1.667858 +2.181521 0.8539475 1.667858 +2.494678 0.8539475 1.667858 +2.852659 0.8539475 1.667858 +3.261896 0.8539475 1.667858 +3.729748 0.8539475 1.667858 +4.264621 0.8539475 1.667858 +4.876131 0.8539475 1.667858 +5.575266 0.8539475 1.667858 +6.374593 0.8539475 1.667858 +0 0.974052 1.667858 +0 0.974052 1.667858 +0 0.974052 1.667858 +0.002268731 0.974052 1.667858 +0.07076883 0.974052 1.667858 +0.1119241 0.974052 1.667858 +0.1475052 0.974052 1.667858 +0.1846606 0.974052 1.667858 +0.2245119 0.974052 1.667858 +0.2679612 0.974052 1.667858 +0.3158431 0.974052 1.667858 +0.3689944 0.974052 1.667858 +0.4282948 0.974052 1.667858 +0.494694 0.974052 1.667858 +0.5692344 0.974052 1.667858 +0.6530715 0.974052 1.667858 +0.7474945 0.974052 1.667858 +0.8539475 0.974052 1.667858 +0.974052 0.974052 1.667858 +1.113885 0.974052 1.667858 +1.27456 0.974052 1.667858 +1.458117 0.974052 1.667858 +1.667858 0.974052 1.667858 +1.907556 0.974052 1.667858 +2.181521 0.974052 1.667858 +2.494678 0.974052 1.667858 +2.852659 0.974052 1.667858 +3.261896 0.974052 1.667858 +3.729748 0.974052 1.667858 +4.264621 0.974052 1.667858 +4.876131 0.974052 1.667858 +5.575266 0.974052 1.667858 +6.374593 0.974052 1.667858 +0 1.113885 1.667858 +0 1.113885 1.667858 +0 1.113885 1.667858 +0.002268731 1.113885 1.667858 +0.07076883 1.113885 1.667858 +0.1119241 1.113885 1.667858 +0.1475052 1.113885 1.667858 +0.1846606 1.113885 1.667858 +0.2245119 1.113885 1.667858 +0.2679612 1.113885 1.667858 +0.3158431 1.113885 1.667858 +0.3689944 1.113885 1.667858 +0.4282948 1.113885 1.667858 +0.494694 1.113885 1.667858 +0.5692344 1.113885 1.667858 +0.6530715 1.113885 1.667858 +0.7474945 1.113885 1.667858 +0.8539475 1.113885 1.667858 +0.974052 1.113885 1.667858 +1.113885 1.113885 1.667858 +1.27456 1.113885 1.667858 +1.458117 1.113885 1.667858 +1.667858 1.113885 1.667858 +1.907556 1.113885 1.667858 +2.181521 1.113885 1.667858 +2.494678 1.113885 1.667858 +2.852659 1.113885 1.667858 +3.261896 1.113885 1.667858 +3.729748 1.113885 1.667858 +4.264621 1.113885 1.667858 +4.876131 1.113885 1.667858 +5.575266 1.113885 1.667858 +6.374593 1.113885 1.667858 +0 1.27456 1.667858 +0 1.27456 1.667858 +0 1.27456 1.667858 +0.002268731 1.27456 1.667858 +0.07076883 1.27456 1.667858 +0.1119241 1.27456 1.667858 +0.1475052 1.27456 1.667858 +0.1846606 1.27456 1.667858 +0.2245119 1.27456 1.667858 +0.2679612 1.27456 1.667858 +0.3158431 1.27456 1.667858 +0.3689944 1.27456 1.667858 +0.4282948 1.27456 1.667858 +0.494694 1.27456 1.667858 +0.5692344 1.27456 1.667858 +0.6530715 1.27456 1.667858 +0.7474945 1.27456 1.667858 +0.8539475 1.27456 1.667858 +0.974052 1.27456 1.667858 +1.113885 1.27456 1.667858 +1.27456 1.27456 1.667858 +1.458117 1.27456 1.667858 +1.667858 1.27456 1.667858 +1.907556 1.27456 1.667858 +2.181521 1.27456 1.667858 +2.494678 1.27456 1.667858 +2.852659 1.27456 1.667858 +3.261896 1.27456 1.667858 +3.729748 1.27456 1.667858 +4.264621 1.27456 1.667858 +4.876131 1.27456 1.667858 +5.575266 1.27456 1.667858 +6.374593 1.27456 1.667858 +0 1.458117 1.667858 +0 1.458117 1.667858 +0 1.458117 1.667858 +0.002268731 1.458117 1.667858 +0.07076883 1.458117 1.667858 +0.1119241 1.458117 1.667858 +0.1475052 1.458117 1.667858 +0.1846606 1.458117 1.667858 +0.2245119 1.458117 1.667858 +0.2679612 1.458117 1.667858 +0.3158431 1.458117 1.667858 +0.3689944 1.458117 1.667858 +0.4282948 1.458117 1.667858 +0.494694 1.458117 1.667858 +0.5692344 1.458117 1.667858 +0.6530715 1.458117 1.667858 +0.7474945 1.458117 1.667858 +0.8539475 1.458117 1.667858 +0.974052 1.458117 1.667858 +1.113885 1.458117 1.667858 +1.27456 1.458117 1.667858 +1.458117 1.458117 1.667858 +1.667858 1.458117 1.667858 +1.907556 1.458117 1.667858 +2.181521 1.458117 1.667858 +2.494678 1.458117 1.667858 +2.852659 1.458117 1.667858 +3.261896 1.458117 1.667858 +3.729748 1.458117 1.667858 +4.264621 1.458117 1.667858 +4.876131 1.458117 1.667858 +5.575266 1.458117 1.667858 +6.374593 1.458117 1.667858 +0 1.667858 1.667858 +0 1.667858 1.667858 +0 1.667858 1.667858 +0.002268731 1.667858 1.667858 +0.07076883 1.667858 1.667858 +0.1119241 1.667858 1.667858 +0.1475052 1.667858 1.667858 +0.1846606 1.667858 1.667858 +0.2245119 1.667858 1.667858 +0.2679612 1.667858 1.667858 +0.3158431 1.667858 1.667858 +0.3689944 1.667858 1.667858 +0.4282948 1.667858 1.667858 +0.494694 1.667858 1.667858 +0.5692344 1.667858 1.667858 +0.6530715 1.667858 1.667858 +0.7474945 1.667858 1.667858 +0.8539475 1.667858 1.667858 +0.974052 1.667858 1.667858 +1.113885 1.667858 1.667858 +1.27456 1.667858 1.667858 +1.458117 1.667858 1.667858 +1.667858 1.667858 1.667858 +1.907556 1.667858 1.667858 +2.181521 1.667858 1.667858 +2.494678 1.667858 1.667858 +2.852659 1.667858 1.667858 +3.261896 1.667858 1.667858 +3.729748 1.667858 1.667858 +4.264621 1.667858 1.667858 +4.876131 1.667858 1.667858 +5.575266 1.667858 1.667858 +6.374593 1.667858 1.667858 +0 1.907556 1.667858 +0 1.907556 1.667858 +0 1.907556 1.667858 +0.002268731 1.907556 1.667858 +0.07076883 1.907556 1.667858 +0.1119241 1.907556 1.667858 +0.1475052 1.907556 1.667858 +0.1846606 1.907556 1.667858 +0.2245119 1.907556 1.667858 +0.2679612 1.907556 1.667858 +0.3158431 1.907556 1.667858 +0.3689944 1.907556 1.667858 +0.4282948 1.907556 1.667858 +0.494694 1.907556 1.667858 +0.5692344 1.907556 1.667858 +0.6530715 1.907556 1.667858 +0.7474945 1.907556 1.667858 +0.8539475 1.907556 1.667858 +0.974052 1.907556 1.667858 +1.113885 1.907556 1.667858 +1.27456 1.907556 1.667858 +1.458117 1.907556 1.667858 +1.667858 1.907556 1.667858 +1.907556 1.907556 1.667858 +2.181521 1.907556 1.667858 +2.494678 1.907556 1.667858 +2.852659 1.907556 1.667858 +3.261896 1.907556 1.667858 +3.729748 1.907556 1.667858 +4.264621 1.907556 1.667858 +4.876131 1.907556 1.667858 +5.575266 1.907556 1.667858 +6.374593 1.907556 1.667858 +0 2.181521 1.667858 +0 2.181521 1.667858 +0 2.181521 1.667858 +0.002268731 2.181521 1.667858 +0.07076883 2.181521 1.667858 +0.1119241 2.181521 1.667858 +0.1475052 2.181521 1.667858 +0.1846606 2.181521 1.667858 +0.2245119 2.181521 1.667858 +0.2679612 2.181521 1.667858 +0.3158431 2.181521 1.667858 +0.3689944 2.181521 1.667858 +0.4282948 2.181521 1.667858 +0.494694 2.181521 1.667858 +0.5692344 2.181521 1.667858 +0.6530715 2.181521 1.667858 +0.7474945 2.181521 1.667858 +0.8539475 2.181521 1.667858 +0.974052 2.181521 1.667858 +1.113885 2.181521 1.667858 +1.27456 2.181521 1.667858 +1.458117 2.181521 1.667858 +1.667858 2.181521 1.667858 +1.907556 2.181521 1.667858 +2.181521 2.181521 1.667858 +2.494678 2.181521 1.667858 +2.852659 2.181521 1.667858 +3.261896 2.181521 1.667858 +3.729748 2.181521 1.667858 +4.264621 2.181521 1.667858 +4.876131 2.181521 1.667858 +5.575266 2.181521 1.667858 +6.374593 2.181521 1.667858 +0 2.494678 1.667858 +0 2.494678 1.667858 +0 2.494678 1.667858 +0.002268731 2.494678 1.667858 +0.07076883 2.494678 1.667858 +0.1119241 2.494678 1.667858 +0.1475052 2.494678 1.667858 +0.1846606 2.494678 1.667858 +0.2245119 2.494678 1.667858 +0.2679612 2.494678 1.667858 +0.3158431 2.494678 1.667858 +0.3689944 2.494678 1.667858 +0.4282948 2.494678 1.667858 +0.494694 2.494678 1.667858 +0.5692344 2.494678 1.667858 +0.6530715 2.494678 1.667858 +0.7474945 2.494678 1.667858 +0.8539475 2.494678 1.667858 +0.974052 2.494678 1.667858 +1.113885 2.494678 1.667858 +1.27456 2.494678 1.667858 +1.458117 2.494678 1.667858 +1.667858 2.494678 1.667858 +1.907556 2.494678 1.667858 +2.181521 2.494678 1.667858 +2.494678 2.494678 1.667858 +2.852659 2.494678 1.667858 +3.261896 2.494678 1.667858 +3.729748 2.494678 1.667858 +4.264621 2.494678 1.667858 +4.876131 2.494678 1.667858 +5.575266 2.494678 1.667858 +6.374593 2.494678 1.667858 +0 2.852659 1.667858 +0 2.852659 1.667858 +0 2.852659 1.667858 +0.002268731 2.852659 1.667858 +0.07076883 2.852659 1.667858 +0.1119241 2.852659 1.667858 +0.1475052 2.852659 1.667858 +0.1846606 2.852659 1.667858 +0.2245119 2.852659 1.667858 +0.2679612 2.852659 1.667858 +0.3158431 2.852659 1.667858 +0.3689944 2.852659 1.667858 +0.4282948 2.852659 1.667858 +0.494694 2.852659 1.667858 +0.5692344 2.852659 1.667858 +0.6530715 2.852659 1.667858 +0.7474945 2.852659 1.667858 +0.8539475 2.852659 1.667858 +0.974052 2.852659 1.667858 +1.113885 2.852659 1.667858 +1.27456 2.852659 1.667858 +1.458117 2.852659 1.667858 +1.667858 2.852659 1.667858 +1.907556 2.852659 1.667858 +2.181521 2.852659 1.667858 +2.494678 2.852659 1.667858 +2.852659 2.852659 1.667858 +3.261896 2.852659 1.667858 +3.729748 2.852659 1.667858 +4.264621 2.852659 1.667858 +4.876131 2.852659 1.667858 +5.575266 2.852659 1.667858 +6.374593 2.852659 1.667858 +0 3.261896 1.667858 +0 3.261896 1.667858 +0 3.261896 1.667858 +0.002268731 3.261896 1.667858 +0.07076883 3.261896 1.667858 +0.1119241 3.261896 1.667858 +0.1475052 3.261896 1.667858 +0.1846606 3.261896 1.667858 +0.2245119 3.261896 1.667858 +0.2679612 3.261896 1.667858 +0.3158431 3.261896 1.667858 +0.3689944 3.261896 1.667858 +0.4282948 3.261896 1.667858 +0.494694 3.261896 1.667858 +0.5692344 3.261896 1.667858 +0.6530715 3.261896 1.667858 +0.7474945 3.261896 1.667858 +0.8539475 3.261896 1.667858 +0.974052 3.261896 1.667858 +1.113885 3.261896 1.667858 +1.27456 3.261896 1.667858 +1.458117 3.261896 1.667858 +1.667858 3.261896 1.667858 +1.907556 3.261896 1.667858 +2.181521 3.261896 1.667858 +2.494678 3.261896 1.667858 +2.852659 3.261896 1.667858 +3.261896 3.261896 1.667858 +3.729748 3.261896 1.667858 +4.264621 3.261896 1.667858 +4.876131 3.261896 1.667858 +5.575266 3.261896 1.667858 +6.374593 3.261896 1.667858 +0 3.729748 1.667858 +0 3.729748 1.667858 +0 3.729748 1.667858 +0.002268731 3.729748 1.667858 +0.07076883 3.729748 1.667858 +0.1119241 3.729748 1.667858 +0.1475052 3.729748 1.667858 +0.1846606 3.729748 1.667858 +0.2245119 3.729748 1.667858 +0.2679612 3.729748 1.667858 +0.3158431 3.729748 1.667858 +0.3689944 3.729748 1.667858 +0.4282948 3.729748 1.667858 +0.494694 3.729748 1.667858 +0.5692344 3.729748 1.667858 +0.6530715 3.729748 1.667858 +0.7474945 3.729748 1.667858 +0.8539475 3.729748 1.667858 +0.974052 3.729748 1.667858 +1.113885 3.729748 1.667858 +1.27456 3.729748 1.667858 +1.458117 3.729748 1.667858 +1.667858 3.729748 1.667858 +1.907556 3.729748 1.667858 +2.181521 3.729748 1.667858 +2.494678 3.729748 1.667858 +2.852659 3.729748 1.667858 +3.261896 3.729748 1.667858 +3.729748 3.729748 1.667858 +4.264621 3.729748 1.667858 +4.876131 3.729748 1.667858 +5.575266 3.729748 1.667858 +6.374593 3.729748 1.667858 +0 4.264621 1.667858 +0 4.264621 1.667858 +0 4.264621 1.667858 +0.002268731 4.264621 1.667858 +0.07076883 4.264621 1.667858 +0.1119241 4.264621 1.667858 +0.1475052 4.264621 1.667858 +0.1846606 4.264621 1.667858 +0.2245119 4.264621 1.667858 +0.2679612 4.264621 1.667858 +0.3158431 4.264621 1.667858 +0.3689944 4.264621 1.667858 +0.4282948 4.264621 1.667858 +0.494694 4.264621 1.667858 +0.5692344 4.264621 1.667858 +0.6530715 4.264621 1.667858 +0.7474945 4.264621 1.667858 +0.8539475 4.264621 1.667858 +0.974052 4.264621 1.667858 +1.113885 4.264621 1.667858 +1.27456 4.264621 1.667858 +1.458117 4.264621 1.667858 +1.667858 4.264621 1.667858 +1.907556 4.264621 1.667858 +2.181521 4.264621 1.667858 +2.494678 4.264621 1.667858 +2.852659 4.264621 1.667858 +3.261896 4.264621 1.667858 +3.729748 4.264621 1.667858 +4.264621 4.264621 1.667858 +4.876131 4.264621 1.667858 +5.575266 4.264621 1.667858 +6.374593 4.264621 1.667858 +0 4.876131 1.667858 +0 4.876131 1.667858 +0 4.876131 1.667858 +0.002268731 4.876131 1.667858 +0.07076883 4.876131 1.667858 +0.1119241 4.876131 1.667858 +0.1475052 4.876131 1.667858 +0.1846606 4.876131 1.667858 +0.2245119 4.876131 1.667858 +0.2679612 4.876131 1.667858 +0.3158431 4.876131 1.667858 +0.3689944 4.876131 1.667858 +0.4282948 4.876131 1.667858 +0.494694 4.876131 1.667858 +0.5692344 4.876131 1.667858 +0.6530715 4.876131 1.667858 +0.7474945 4.876131 1.667858 +0.8539475 4.876131 1.667858 +0.974052 4.876131 1.667858 +1.113885 4.876131 1.667858 +1.27456 4.876131 1.667858 +1.458117 4.876131 1.667858 +1.667858 4.876131 1.667858 +1.907556 4.876131 1.667858 +2.181521 4.876131 1.667858 +2.494678 4.876131 1.667858 +2.852659 4.876131 1.667858 +3.261896 4.876131 1.667858 +3.729748 4.876131 1.667858 +4.264621 4.876131 1.667858 +4.876131 4.876131 1.667858 +5.575266 4.876131 1.667858 +6.374593 4.876131 1.667858 +0 5.575266 1.667858 +0 5.575266 1.667858 +0 5.575266 1.667858 +0.002268731 5.575266 1.667858 +0.07076883 5.575266 1.667858 +0.1119241 5.575266 1.667858 +0.1475052 5.575266 1.667858 +0.1846606 5.575266 1.667858 +0.2245119 5.575266 1.667858 +0.2679612 5.575266 1.667858 +0.3158431 5.575266 1.667858 +0.3689944 5.575266 1.667858 +0.4282948 5.575266 1.667858 +0.494694 5.575266 1.667858 +0.5692344 5.575266 1.667858 +0.6530715 5.575266 1.667858 +0.7474945 5.575266 1.667858 +0.8539475 5.575266 1.667858 +0.974052 5.575266 1.667858 +1.113885 5.575266 1.667858 +1.27456 5.575266 1.667858 +1.458117 5.575266 1.667858 +1.667858 5.575266 1.667858 +1.907556 5.575266 1.667858 +2.181521 5.575266 1.667858 +2.494678 5.575266 1.667858 +2.852659 5.575266 1.667858 +3.261896 5.575266 1.667858 +3.729748 5.575266 1.667858 +4.264621 5.575266 1.667858 +4.876131 5.575266 1.667858 +5.575266 5.575266 1.667858 +6.374593 5.575266 1.667858 +0 6.374593 1.667858 +0 6.374593 1.667858 +0 6.374593 1.667858 +0.002268731 6.374593 1.667858 +0.07076883 6.374593 1.667858 +0.1119241 6.374593 1.667858 +0.1475052 6.374593 1.667858 +0.1846606 6.374593 1.667858 +0.2245119 6.374593 1.667858 +0.2679612 6.374593 1.667858 +0.3158431 6.374593 1.667858 +0.3689944 6.374593 1.667858 +0.4282948 6.374593 1.667858 +0.494694 6.374593 1.667858 +0.5692344 6.374593 1.667858 +0.6530715 6.374593 1.667858 +0.7474945 6.374593 1.667858 +0.8539475 6.374593 1.667858 +0.974052 6.374593 1.667858 +1.113885 6.374593 1.667858 +1.27456 6.374593 1.667858 +1.458117 6.374593 1.667858 +1.667858 6.374593 1.667858 +1.907556 6.374593 1.667858 +2.181521 6.374593 1.667858 +2.494678 6.374593 1.667858 +2.852659 6.374593 1.667858 +3.261896 6.374593 1.667858 +3.729748 6.374593 1.667858 +4.264621 6.374593 1.667858 +4.876131 6.374593 1.667858 +5.575266 6.374593 1.667858 +6.374593 6.374593 1.667858 +0 0 1.907556 +0 0 1.907556 +0 0 1.907556 +0.002268731 0 1.907556 +0.07076883 0 1.907556 +0.1119241 0 1.907556 +0.1475052 0 1.907556 +0.1846606 0 1.907556 +0.2245119 0 1.907556 +0.2679612 0 1.907556 +0.3158431 0 1.907556 +0.3689944 0 1.907556 +0.4282948 0 1.907556 +0.494694 0 1.907556 +0.5692344 0 1.907556 +0.6530715 0 1.907556 +0.7474945 0 1.907556 +0.8539475 0 1.907556 +0.974052 0 1.907556 +1.113885 0 1.907556 +1.27456 0 1.907556 +1.458117 0 1.907556 +1.667858 0 1.907556 +1.907556 0 1.907556 +2.181521 0 1.907556 +2.494678 0 1.907556 +2.852659 0 1.907556 +3.261896 0 1.907556 +3.729748 0 1.907556 +4.264621 0 1.907556 +4.876131 0 1.907556 +5.575266 0 1.907556 +6.374593 0 1.907556 +0 0 1.907556 +0 0 1.907556 +0 0 1.907556 +0.002268731 0 1.907556 +0.07076883 0 1.907556 +0.1119241 0 1.907556 +0.1475052 0 1.907556 +0.1846606 0 1.907556 +0.2245119 0 1.907556 +0.2679612 0 1.907556 +0.3158431 0 1.907556 +0.3689944 0 1.907556 +0.4282948 0 1.907556 +0.494694 0 1.907556 +0.5692344 0 1.907556 +0.6530715 0 1.907556 +0.7474945 0 1.907556 +0.8539475 0 1.907556 +0.974052 0 1.907556 +1.113885 0 1.907556 +1.27456 0 1.907556 +1.458117 0 1.907556 +1.667858 0 1.907556 +1.907556 0 1.907556 +2.181521 0 1.907556 +2.494678 0 1.907556 +2.852659 0 1.907556 +3.261896 0 1.907556 +3.729748 0 1.907556 +4.264621 0 1.907556 +4.876131 0 1.907556 +5.575266 0 1.907556 +6.374593 0 1.907556 +0 0 1.907556 +0 0 1.907556 +0 0 1.907556 +0.002268731 0 1.907556 +0.07076883 0 1.907556 +0.1119241 0 1.907556 +0.1475052 0 1.907556 +0.1846606 0 1.907556 +0.2245119 0 1.907556 +0.2679612 0 1.907556 +0.3158431 0 1.907556 +0.3689944 0 1.907556 +0.4282948 0 1.907556 +0.494694 0 1.907556 +0.5692344 0 1.907556 +0.6530715 0 1.907556 +0.7474945 0 1.907556 +0.8539475 0 1.907556 +0.974052 0 1.907556 +1.113885 0 1.907556 +1.27456 0 1.907556 +1.458117 0 1.907556 +1.667858 0 1.907556 +1.907556 0 1.907556 +2.181521 0 1.907556 +2.494678 0 1.907556 +2.852659 0 1.907556 +3.261896 0 1.907556 +3.729748 0 1.907556 +4.264621 0 1.907556 +4.876131 0 1.907556 +5.575266 0 1.907556 +6.374593 0 1.907556 +0 0.002268731 1.907556 +0 0.002268731 1.907556 +0 0.002268731 1.907556 +0.002268731 0.002268731 1.907556 +0.07076883 0.002268731 1.907556 +0.1119241 0.002268731 1.907556 +0.1475052 0.002268731 1.907556 +0.1846606 0.002268731 1.907556 +0.2245119 0.002268731 1.907556 +0.2679612 0.002268731 1.907556 +0.3158431 0.002268731 1.907556 +0.3689944 0.002268731 1.907556 +0.4282948 0.002268731 1.907556 +0.494694 0.002268731 1.907556 +0.5692344 0.002268731 1.907556 +0.6530715 0.002268731 1.907556 +0.7474945 0.002268731 1.907556 +0.8539475 0.002268731 1.907556 +0.974052 0.002268731 1.907556 +1.113885 0.002268731 1.907556 +1.27456 0.002268731 1.907556 +1.458117 0.002268731 1.907556 +1.667858 0.002268731 1.907556 +1.907556 0.002268731 1.907556 +2.181521 0.002268731 1.907556 +2.494678 0.002268731 1.907556 +2.852659 0.002268731 1.907556 +3.261896 0.002268731 1.907556 +3.729748 0.002268731 1.907556 +4.264621 0.002268731 1.907556 +4.876131 0.002268731 1.907556 +5.575266 0.002268731 1.907556 +6.374593 0.002268731 1.907556 +0 0.07076883 1.907556 +0 0.07076883 1.907556 +0 0.07076883 1.907556 +0.002268731 0.07076883 1.907556 +0.07076883 0.07076883 1.907556 +0.1119241 0.07076883 1.907556 +0.1475052 0.07076883 1.907556 +0.1846606 0.07076883 1.907556 +0.2245119 0.07076883 1.907556 +0.2679612 0.07076883 1.907556 +0.3158431 0.07076883 1.907556 +0.3689944 0.07076883 1.907556 +0.4282948 0.07076883 1.907556 +0.494694 0.07076883 1.907556 +0.5692344 0.07076883 1.907556 +0.6530715 0.07076883 1.907556 +0.7474945 0.07076883 1.907556 +0.8539475 0.07076883 1.907556 +0.974052 0.07076883 1.907556 +1.113885 0.07076883 1.907556 +1.27456 0.07076883 1.907556 +1.458117 0.07076883 1.907556 +1.667858 0.07076883 1.907556 +1.907556 0.07076883 1.907556 +2.181521 0.07076883 1.907556 +2.494678 0.07076883 1.907556 +2.852659 0.07076883 1.907556 +3.261896 0.07076883 1.907556 +3.729748 0.07076883 1.907556 +4.264621 0.07076883 1.907556 +4.876131 0.07076883 1.907556 +5.575266 0.07076883 1.907556 +6.374593 0.07076883 1.907556 +0 0.1119241 1.907556 +0 0.1119241 1.907556 +0 0.1119241 1.907556 +0.002268731 0.1119241 1.907556 +0.07076883 0.1119241 1.907556 +0.1119241 0.1119241 1.907556 +0.1475052 0.1119241 1.907556 +0.1846606 0.1119241 1.907556 +0.2245119 0.1119241 1.907556 +0.2679612 0.1119241 1.907556 +0.3158431 0.1119241 1.907556 +0.3689944 0.1119241 1.907556 +0.4282948 0.1119241 1.907556 +0.494694 0.1119241 1.907556 +0.5692344 0.1119241 1.907556 +0.6530715 0.1119241 1.907556 +0.7474945 0.1119241 1.907556 +0.8539475 0.1119241 1.907556 +0.974052 0.1119241 1.907556 +1.113885 0.1119241 1.907556 +1.27456 0.1119241 1.907556 +1.458117 0.1119241 1.907556 +1.667858 0.1119241 1.907556 +1.907556 0.1119241 1.907556 +2.181521 0.1119241 1.907556 +2.494678 0.1119241 1.907556 +2.852659 0.1119241 1.907556 +3.261896 0.1119241 1.907556 +3.729748 0.1119241 1.907556 +4.264621 0.1119241 1.907556 +4.876131 0.1119241 1.907556 +5.575266 0.1119241 1.907556 +6.374593 0.1119241 1.907556 +0 0.1475052 1.907556 +0 0.1475052 1.907556 +0 0.1475052 1.907556 +0.002268731 0.1475052 1.907556 +0.07076883 0.1475052 1.907556 +0.1119241 0.1475052 1.907556 +0.1475052 0.1475052 1.907556 +0.1846606 0.1475052 1.907556 +0.2245119 0.1475052 1.907556 +0.2679612 0.1475052 1.907556 +0.3158431 0.1475052 1.907556 +0.3689944 0.1475052 1.907556 +0.4282948 0.1475052 1.907556 +0.494694 0.1475052 1.907556 +0.5692344 0.1475052 1.907556 +0.6530715 0.1475052 1.907556 +0.7474945 0.1475052 1.907556 +0.8539475 0.1475052 1.907556 +0.974052 0.1475052 1.907556 +1.113885 0.1475052 1.907556 +1.27456 0.1475052 1.907556 +1.458117 0.1475052 1.907556 +1.667858 0.1475052 1.907556 +1.907556 0.1475052 1.907556 +2.181521 0.1475052 1.907556 +2.494678 0.1475052 1.907556 +2.852659 0.1475052 1.907556 +3.261896 0.1475052 1.907556 +3.729748 0.1475052 1.907556 +4.264621 0.1475052 1.907556 +4.876131 0.1475052 1.907556 +5.575266 0.1475052 1.907556 +6.374593 0.1475052 1.907556 +0 0.1846606 1.907556 +0 0.1846606 1.907556 +0 0.1846606 1.907556 +0.002268731 0.1846606 1.907556 +0.07076883 0.1846606 1.907556 +0.1119241 0.1846606 1.907556 +0.1475052 0.1846606 1.907556 +0.1846606 0.1846606 1.907556 +0.2245119 0.1846606 1.907556 +0.2679612 0.1846606 1.907556 +0.3158431 0.1846606 1.907556 +0.3689944 0.1846606 1.907556 +0.4282948 0.1846606 1.907556 +0.494694 0.1846606 1.907556 +0.5692344 0.1846606 1.907556 +0.6530715 0.1846606 1.907556 +0.7474945 0.1846606 1.907556 +0.8539475 0.1846606 1.907556 +0.974052 0.1846606 1.907556 +1.113885 0.1846606 1.907556 +1.27456 0.1846606 1.907556 +1.458117 0.1846606 1.907556 +1.667858 0.1846606 1.907556 +1.907556 0.1846606 1.907556 +2.181521 0.1846606 1.907556 +2.494678 0.1846606 1.907556 +2.852659 0.1846606 1.907556 +3.261896 0.1846606 1.907556 +3.729748 0.1846606 1.907556 +4.264621 0.1846606 1.907556 +4.876131 0.1846606 1.907556 +5.575266 0.1846606 1.907556 +6.374593 0.1846606 1.907556 +0 0.2245119 1.907556 +0 0.2245119 1.907556 +0 0.2245119 1.907556 +0.002268731 0.2245119 1.907556 +0.07076883 0.2245119 1.907556 +0.1119241 0.2245119 1.907556 +0.1475052 0.2245119 1.907556 +0.1846606 0.2245119 1.907556 +0.2245119 0.2245119 1.907556 +0.2679612 0.2245119 1.907556 +0.3158431 0.2245119 1.907556 +0.3689944 0.2245119 1.907556 +0.4282948 0.2245119 1.907556 +0.494694 0.2245119 1.907556 +0.5692344 0.2245119 1.907556 +0.6530715 0.2245119 1.907556 +0.7474945 0.2245119 1.907556 +0.8539475 0.2245119 1.907556 +0.974052 0.2245119 1.907556 +1.113885 0.2245119 1.907556 +1.27456 0.2245119 1.907556 +1.458117 0.2245119 1.907556 +1.667858 0.2245119 1.907556 +1.907556 0.2245119 1.907556 +2.181521 0.2245119 1.907556 +2.494678 0.2245119 1.907556 +2.852659 0.2245119 1.907556 +3.261896 0.2245119 1.907556 +3.729748 0.2245119 1.907556 +4.264621 0.2245119 1.907556 +4.876131 0.2245119 1.907556 +5.575266 0.2245119 1.907556 +6.374593 0.2245119 1.907556 +0 0.2679612 1.907556 +0 0.2679612 1.907556 +0 0.2679612 1.907556 +0.002268731 0.2679612 1.907556 +0.07076883 0.2679612 1.907556 +0.1119241 0.2679612 1.907556 +0.1475052 0.2679612 1.907556 +0.1846606 0.2679612 1.907556 +0.2245119 0.2679612 1.907556 +0.2679612 0.2679612 1.907556 +0.3158431 0.2679612 1.907556 +0.3689944 0.2679612 1.907556 +0.4282948 0.2679612 1.907556 +0.494694 0.2679612 1.907556 +0.5692344 0.2679612 1.907556 +0.6530715 0.2679612 1.907556 +0.7474945 0.2679612 1.907556 +0.8539475 0.2679612 1.907556 +0.974052 0.2679612 1.907556 +1.113885 0.2679612 1.907556 +1.27456 0.2679612 1.907556 +1.458117 0.2679612 1.907556 +1.667858 0.2679612 1.907556 +1.907556 0.2679612 1.907556 +2.181521 0.2679612 1.907556 +2.494678 0.2679612 1.907556 +2.852659 0.2679612 1.907556 +3.261896 0.2679612 1.907556 +3.729748 0.2679612 1.907556 +4.264621 0.2679612 1.907556 +4.876131 0.2679612 1.907556 +5.575266 0.2679612 1.907556 +6.374593 0.2679612 1.907556 +0 0.3158431 1.907556 +0 0.3158431 1.907556 +0 0.3158431 1.907556 +0.002268731 0.3158431 1.907556 +0.07076883 0.3158431 1.907556 +0.1119241 0.3158431 1.907556 +0.1475052 0.3158431 1.907556 +0.1846606 0.3158431 1.907556 +0.2245119 0.3158431 1.907556 +0.2679612 0.3158431 1.907556 +0.3158431 0.3158431 1.907556 +0.3689944 0.3158431 1.907556 +0.4282948 0.3158431 1.907556 +0.494694 0.3158431 1.907556 +0.5692344 0.3158431 1.907556 +0.6530715 0.3158431 1.907556 +0.7474945 0.3158431 1.907556 +0.8539475 0.3158431 1.907556 +0.974052 0.3158431 1.907556 +1.113885 0.3158431 1.907556 +1.27456 0.3158431 1.907556 +1.458117 0.3158431 1.907556 +1.667858 0.3158431 1.907556 +1.907556 0.3158431 1.907556 +2.181521 0.3158431 1.907556 +2.494678 0.3158431 1.907556 +2.852659 0.3158431 1.907556 +3.261896 0.3158431 1.907556 +3.729748 0.3158431 1.907556 +4.264621 0.3158431 1.907556 +4.876131 0.3158431 1.907556 +5.575266 0.3158431 1.907556 +6.374593 0.3158431 1.907556 +0 0.3689944 1.907556 +0 0.3689944 1.907556 +0 0.3689944 1.907556 +0.002268731 0.3689944 1.907556 +0.07076883 0.3689944 1.907556 +0.1119241 0.3689944 1.907556 +0.1475052 0.3689944 1.907556 +0.1846606 0.3689944 1.907556 +0.2245119 0.3689944 1.907556 +0.2679612 0.3689944 1.907556 +0.3158431 0.3689944 1.907556 +0.3689944 0.3689944 1.907556 +0.4282948 0.3689944 1.907556 +0.494694 0.3689944 1.907556 +0.5692344 0.3689944 1.907556 +0.6530715 0.3689944 1.907556 +0.7474945 0.3689944 1.907556 +0.8539475 0.3689944 1.907556 +0.974052 0.3689944 1.907556 +1.113885 0.3689944 1.907556 +1.27456 0.3689944 1.907556 +1.458117 0.3689944 1.907556 +1.667858 0.3689944 1.907556 +1.907556 0.3689944 1.907556 +2.181521 0.3689944 1.907556 +2.494678 0.3689944 1.907556 +2.852659 0.3689944 1.907556 +3.261896 0.3689944 1.907556 +3.729748 0.3689944 1.907556 +4.264621 0.3689944 1.907556 +4.876131 0.3689944 1.907556 +5.575266 0.3689944 1.907556 +6.374593 0.3689944 1.907556 +0 0.4282948 1.907556 +0 0.4282948 1.907556 +0 0.4282948 1.907556 +0.002268731 0.4282948 1.907556 +0.07076883 0.4282948 1.907556 +0.1119241 0.4282948 1.907556 +0.1475052 0.4282948 1.907556 +0.1846606 0.4282948 1.907556 +0.2245119 0.4282948 1.907556 +0.2679612 0.4282948 1.907556 +0.3158431 0.4282948 1.907556 +0.3689944 0.4282948 1.907556 +0.4282948 0.4282948 1.907556 +0.494694 0.4282948 1.907556 +0.5692344 0.4282948 1.907556 +0.6530715 0.4282948 1.907556 +0.7474945 0.4282948 1.907556 +0.8539475 0.4282948 1.907556 +0.974052 0.4282948 1.907556 +1.113885 0.4282948 1.907556 +1.27456 0.4282948 1.907556 +1.458117 0.4282948 1.907556 +1.667858 0.4282948 1.907556 +1.907556 0.4282948 1.907556 +2.181521 0.4282948 1.907556 +2.494678 0.4282948 1.907556 +2.852659 0.4282948 1.907556 +3.261896 0.4282948 1.907556 +3.729748 0.4282948 1.907556 +4.264621 0.4282948 1.907556 +4.876131 0.4282948 1.907556 +5.575266 0.4282948 1.907556 +6.374593 0.4282948 1.907556 +0 0.494694 1.907556 +0 0.494694 1.907556 +0 0.494694 1.907556 +0.002268731 0.494694 1.907556 +0.07076883 0.494694 1.907556 +0.1119241 0.494694 1.907556 +0.1475052 0.494694 1.907556 +0.1846606 0.494694 1.907556 +0.2245119 0.494694 1.907556 +0.2679612 0.494694 1.907556 +0.3158431 0.494694 1.907556 +0.3689944 0.494694 1.907556 +0.4282948 0.494694 1.907556 +0.494694 0.494694 1.907556 +0.5692344 0.494694 1.907556 +0.6530715 0.494694 1.907556 +0.7474945 0.494694 1.907556 +0.8539475 0.494694 1.907556 +0.974052 0.494694 1.907556 +1.113885 0.494694 1.907556 +1.27456 0.494694 1.907556 +1.458117 0.494694 1.907556 +1.667858 0.494694 1.907556 +1.907556 0.494694 1.907556 +2.181521 0.494694 1.907556 +2.494678 0.494694 1.907556 +2.852659 0.494694 1.907556 +3.261896 0.494694 1.907556 +3.729748 0.494694 1.907556 +4.264621 0.494694 1.907556 +4.876131 0.494694 1.907556 +5.575266 0.494694 1.907556 +6.374593 0.494694 1.907556 +0 0.5692344 1.907556 +0 0.5692344 1.907556 +0 0.5692344 1.907556 +0.002268731 0.5692344 1.907556 +0.07076883 0.5692344 1.907556 +0.1119241 0.5692344 1.907556 +0.1475052 0.5692344 1.907556 +0.1846606 0.5692344 1.907556 +0.2245119 0.5692344 1.907556 +0.2679612 0.5692344 1.907556 +0.3158431 0.5692344 1.907556 +0.3689944 0.5692344 1.907556 +0.4282948 0.5692344 1.907556 +0.494694 0.5692344 1.907556 +0.5692344 0.5692344 1.907556 +0.6530715 0.5692344 1.907556 +0.7474945 0.5692344 1.907556 +0.8539475 0.5692344 1.907556 +0.974052 0.5692344 1.907556 +1.113885 0.5692344 1.907556 +1.27456 0.5692344 1.907556 +1.458117 0.5692344 1.907556 +1.667858 0.5692344 1.907556 +1.907556 0.5692344 1.907556 +2.181521 0.5692344 1.907556 +2.494678 0.5692344 1.907556 +2.852659 0.5692344 1.907556 +3.261896 0.5692344 1.907556 +3.729748 0.5692344 1.907556 +4.264621 0.5692344 1.907556 +4.876131 0.5692344 1.907556 +5.575266 0.5692344 1.907556 +6.374593 0.5692344 1.907556 +0 0.6530715 1.907556 +0 0.6530715 1.907556 +0 0.6530715 1.907556 +0.002268731 0.6530715 1.907556 +0.07076883 0.6530715 1.907556 +0.1119241 0.6530715 1.907556 +0.1475052 0.6530715 1.907556 +0.1846606 0.6530715 1.907556 +0.2245119 0.6530715 1.907556 +0.2679612 0.6530715 1.907556 +0.3158431 0.6530715 1.907556 +0.3689944 0.6530715 1.907556 +0.4282948 0.6530715 1.907556 +0.494694 0.6530715 1.907556 +0.5692344 0.6530715 1.907556 +0.6530715 0.6530715 1.907556 +0.7474945 0.6530715 1.907556 +0.8539475 0.6530715 1.907556 +0.974052 0.6530715 1.907556 +1.113885 0.6530715 1.907556 +1.27456 0.6530715 1.907556 +1.458117 0.6530715 1.907556 +1.667858 0.6530715 1.907556 +1.907556 0.6530715 1.907556 +2.181521 0.6530715 1.907556 +2.494678 0.6530715 1.907556 +2.852659 0.6530715 1.907556 +3.261896 0.6530715 1.907556 +3.729748 0.6530715 1.907556 +4.264621 0.6530715 1.907556 +4.876131 0.6530715 1.907556 +5.575266 0.6530715 1.907556 +6.374593 0.6530715 1.907556 +0 0.7474945 1.907556 +0 0.7474945 1.907556 +0 0.7474945 1.907556 +0.002268731 0.7474945 1.907556 +0.07076883 0.7474945 1.907556 +0.1119241 0.7474945 1.907556 +0.1475052 0.7474945 1.907556 +0.1846606 0.7474945 1.907556 +0.2245119 0.7474945 1.907556 +0.2679612 0.7474945 1.907556 +0.3158431 0.7474945 1.907556 +0.3689944 0.7474945 1.907556 +0.4282948 0.7474945 1.907556 +0.494694 0.7474945 1.907556 +0.5692344 0.7474945 1.907556 +0.6530715 0.7474945 1.907556 +0.7474945 0.7474945 1.907556 +0.8539475 0.7474945 1.907556 +0.974052 0.7474945 1.907556 +1.113885 0.7474945 1.907556 +1.27456 0.7474945 1.907556 +1.458117 0.7474945 1.907556 +1.667858 0.7474945 1.907556 +1.907556 0.7474945 1.907556 +2.181521 0.7474945 1.907556 +2.494678 0.7474945 1.907556 +2.852659 0.7474945 1.907556 +3.261896 0.7474945 1.907556 +3.729748 0.7474945 1.907556 +4.264621 0.7474945 1.907556 +4.876131 0.7474945 1.907556 +5.575266 0.7474945 1.907556 +6.374593 0.7474945 1.907556 +0 0.8539475 1.907556 +0 0.8539475 1.907556 +0 0.8539475 1.907556 +0.002268731 0.8539475 1.907556 +0.07076883 0.8539475 1.907556 +0.1119241 0.8539475 1.907556 +0.1475052 0.8539475 1.907556 +0.1846606 0.8539475 1.907556 +0.2245119 0.8539475 1.907556 +0.2679612 0.8539475 1.907556 +0.3158431 0.8539475 1.907556 +0.3689944 0.8539475 1.907556 +0.4282948 0.8539475 1.907556 +0.494694 0.8539475 1.907556 +0.5692344 0.8539475 1.907556 +0.6530715 0.8539475 1.907556 +0.7474945 0.8539475 1.907556 +0.8539475 0.8539475 1.907556 +0.974052 0.8539475 1.907556 +1.113885 0.8539475 1.907556 +1.27456 0.8539475 1.907556 +1.458117 0.8539475 1.907556 +1.667858 0.8539475 1.907556 +1.907556 0.8539475 1.907556 +2.181521 0.8539475 1.907556 +2.494678 0.8539475 1.907556 +2.852659 0.8539475 1.907556 +3.261896 0.8539475 1.907556 +3.729748 0.8539475 1.907556 +4.264621 0.8539475 1.907556 +4.876131 0.8539475 1.907556 +5.575266 0.8539475 1.907556 +6.374593 0.8539475 1.907556 +0 0.974052 1.907556 +0 0.974052 1.907556 +0 0.974052 1.907556 +0.002268731 0.974052 1.907556 +0.07076883 0.974052 1.907556 +0.1119241 0.974052 1.907556 +0.1475052 0.974052 1.907556 +0.1846606 0.974052 1.907556 +0.2245119 0.974052 1.907556 +0.2679612 0.974052 1.907556 +0.3158431 0.974052 1.907556 +0.3689944 0.974052 1.907556 +0.4282948 0.974052 1.907556 +0.494694 0.974052 1.907556 +0.5692344 0.974052 1.907556 +0.6530715 0.974052 1.907556 +0.7474945 0.974052 1.907556 +0.8539475 0.974052 1.907556 +0.974052 0.974052 1.907556 +1.113885 0.974052 1.907556 +1.27456 0.974052 1.907556 +1.458117 0.974052 1.907556 +1.667858 0.974052 1.907556 +1.907556 0.974052 1.907556 +2.181521 0.974052 1.907556 +2.494678 0.974052 1.907556 +2.852659 0.974052 1.907556 +3.261896 0.974052 1.907556 +3.729748 0.974052 1.907556 +4.264621 0.974052 1.907556 +4.876131 0.974052 1.907556 +5.575266 0.974052 1.907556 +6.374593 0.974052 1.907556 +0 1.113885 1.907556 +0 1.113885 1.907556 +0 1.113885 1.907556 +0.002268731 1.113885 1.907556 +0.07076883 1.113885 1.907556 +0.1119241 1.113885 1.907556 +0.1475052 1.113885 1.907556 +0.1846606 1.113885 1.907556 +0.2245119 1.113885 1.907556 +0.2679612 1.113885 1.907556 +0.3158431 1.113885 1.907556 +0.3689944 1.113885 1.907556 +0.4282948 1.113885 1.907556 +0.494694 1.113885 1.907556 +0.5692344 1.113885 1.907556 +0.6530715 1.113885 1.907556 +0.7474945 1.113885 1.907556 +0.8539475 1.113885 1.907556 +0.974052 1.113885 1.907556 +1.113885 1.113885 1.907556 +1.27456 1.113885 1.907556 +1.458117 1.113885 1.907556 +1.667858 1.113885 1.907556 +1.907556 1.113885 1.907556 +2.181521 1.113885 1.907556 +2.494678 1.113885 1.907556 +2.852659 1.113885 1.907556 +3.261896 1.113885 1.907556 +3.729748 1.113885 1.907556 +4.264621 1.113885 1.907556 +4.876131 1.113885 1.907556 +5.575266 1.113885 1.907556 +6.374593 1.113885 1.907556 +0 1.27456 1.907556 +0 1.27456 1.907556 +0 1.27456 1.907556 +0.002268731 1.27456 1.907556 +0.07076883 1.27456 1.907556 +0.1119241 1.27456 1.907556 +0.1475052 1.27456 1.907556 +0.1846606 1.27456 1.907556 +0.2245119 1.27456 1.907556 +0.2679612 1.27456 1.907556 +0.3158431 1.27456 1.907556 +0.3689944 1.27456 1.907556 +0.4282948 1.27456 1.907556 +0.494694 1.27456 1.907556 +0.5692344 1.27456 1.907556 +0.6530715 1.27456 1.907556 +0.7474945 1.27456 1.907556 +0.8539475 1.27456 1.907556 +0.974052 1.27456 1.907556 +1.113885 1.27456 1.907556 +1.27456 1.27456 1.907556 +1.458117 1.27456 1.907556 +1.667858 1.27456 1.907556 +1.907556 1.27456 1.907556 +2.181521 1.27456 1.907556 +2.494678 1.27456 1.907556 +2.852659 1.27456 1.907556 +3.261896 1.27456 1.907556 +3.729748 1.27456 1.907556 +4.264621 1.27456 1.907556 +4.876131 1.27456 1.907556 +5.575266 1.27456 1.907556 +6.374593 1.27456 1.907556 +0 1.458117 1.907556 +0 1.458117 1.907556 +0 1.458117 1.907556 +0.002268731 1.458117 1.907556 +0.07076883 1.458117 1.907556 +0.1119241 1.458117 1.907556 +0.1475052 1.458117 1.907556 +0.1846606 1.458117 1.907556 +0.2245119 1.458117 1.907556 +0.2679612 1.458117 1.907556 +0.3158431 1.458117 1.907556 +0.3689944 1.458117 1.907556 +0.4282948 1.458117 1.907556 +0.494694 1.458117 1.907556 +0.5692344 1.458117 1.907556 +0.6530715 1.458117 1.907556 +0.7474945 1.458117 1.907556 +0.8539475 1.458117 1.907556 +0.974052 1.458117 1.907556 +1.113885 1.458117 1.907556 +1.27456 1.458117 1.907556 +1.458117 1.458117 1.907556 +1.667858 1.458117 1.907556 +1.907556 1.458117 1.907556 +2.181521 1.458117 1.907556 +2.494678 1.458117 1.907556 +2.852659 1.458117 1.907556 +3.261896 1.458117 1.907556 +3.729748 1.458117 1.907556 +4.264621 1.458117 1.907556 +4.876131 1.458117 1.907556 +5.575266 1.458117 1.907556 +6.374593 1.458117 1.907556 +0 1.667858 1.907556 +0 1.667858 1.907556 +0 1.667858 1.907556 +0.002268731 1.667858 1.907556 +0.07076883 1.667858 1.907556 +0.1119241 1.667858 1.907556 +0.1475052 1.667858 1.907556 +0.1846606 1.667858 1.907556 +0.2245119 1.667858 1.907556 +0.2679612 1.667858 1.907556 +0.3158431 1.667858 1.907556 +0.3689944 1.667858 1.907556 +0.4282948 1.667858 1.907556 +0.494694 1.667858 1.907556 +0.5692344 1.667858 1.907556 +0.6530715 1.667858 1.907556 +0.7474945 1.667858 1.907556 +0.8539475 1.667858 1.907556 +0.974052 1.667858 1.907556 +1.113885 1.667858 1.907556 +1.27456 1.667858 1.907556 +1.458117 1.667858 1.907556 +1.667858 1.667858 1.907556 +1.907556 1.667858 1.907556 +2.181521 1.667858 1.907556 +2.494678 1.667858 1.907556 +2.852659 1.667858 1.907556 +3.261896 1.667858 1.907556 +3.729748 1.667858 1.907556 +4.264621 1.667858 1.907556 +4.876131 1.667858 1.907556 +5.575266 1.667858 1.907556 +6.374593 1.667858 1.907556 +0 1.907556 1.907556 +0 1.907556 1.907556 +0 1.907556 1.907556 +0.002268731 1.907556 1.907556 +0.07076883 1.907556 1.907556 +0.1119241 1.907556 1.907556 +0.1475052 1.907556 1.907556 +0.1846606 1.907556 1.907556 +0.2245119 1.907556 1.907556 +0.2679612 1.907556 1.907556 +0.3158431 1.907556 1.907556 +0.3689944 1.907556 1.907556 +0.4282948 1.907556 1.907556 +0.494694 1.907556 1.907556 +0.5692344 1.907556 1.907556 +0.6530715 1.907556 1.907556 +0.7474945 1.907556 1.907556 +0.8539475 1.907556 1.907556 +0.974052 1.907556 1.907556 +1.113885 1.907556 1.907556 +1.27456 1.907556 1.907556 +1.458117 1.907556 1.907556 +1.667858 1.907556 1.907556 +1.907556 1.907556 1.907556 +2.181521 1.907556 1.907556 +2.494678 1.907556 1.907556 +2.852659 1.907556 1.907556 +3.261896 1.907556 1.907556 +3.729748 1.907556 1.907556 +4.264621 1.907556 1.907556 +4.876131 1.907556 1.907556 +5.575266 1.907556 1.907556 +6.374593 1.907556 1.907556 +0 2.181521 1.907556 +0 2.181521 1.907556 +0 2.181521 1.907556 +0.002268731 2.181521 1.907556 +0.07076883 2.181521 1.907556 +0.1119241 2.181521 1.907556 +0.1475052 2.181521 1.907556 +0.1846606 2.181521 1.907556 +0.2245119 2.181521 1.907556 +0.2679612 2.181521 1.907556 +0.3158431 2.181521 1.907556 +0.3689944 2.181521 1.907556 +0.4282948 2.181521 1.907556 +0.494694 2.181521 1.907556 +0.5692344 2.181521 1.907556 +0.6530715 2.181521 1.907556 +0.7474945 2.181521 1.907556 +0.8539475 2.181521 1.907556 +0.974052 2.181521 1.907556 +1.113885 2.181521 1.907556 +1.27456 2.181521 1.907556 +1.458117 2.181521 1.907556 +1.667858 2.181521 1.907556 +1.907556 2.181521 1.907556 +2.181521 2.181521 1.907556 +2.494678 2.181521 1.907556 +2.852659 2.181521 1.907556 +3.261896 2.181521 1.907556 +3.729748 2.181521 1.907556 +4.264621 2.181521 1.907556 +4.876131 2.181521 1.907556 +5.575266 2.181521 1.907556 +6.374593 2.181521 1.907556 +0 2.494678 1.907556 +0 2.494678 1.907556 +0 2.494678 1.907556 +0.002268731 2.494678 1.907556 +0.07076883 2.494678 1.907556 +0.1119241 2.494678 1.907556 +0.1475052 2.494678 1.907556 +0.1846606 2.494678 1.907556 +0.2245119 2.494678 1.907556 +0.2679612 2.494678 1.907556 +0.3158431 2.494678 1.907556 +0.3689944 2.494678 1.907556 +0.4282948 2.494678 1.907556 +0.494694 2.494678 1.907556 +0.5692344 2.494678 1.907556 +0.6530715 2.494678 1.907556 +0.7474945 2.494678 1.907556 +0.8539475 2.494678 1.907556 +0.974052 2.494678 1.907556 +1.113885 2.494678 1.907556 +1.27456 2.494678 1.907556 +1.458117 2.494678 1.907556 +1.667858 2.494678 1.907556 +1.907556 2.494678 1.907556 +2.181521 2.494678 1.907556 +2.494678 2.494678 1.907556 +2.852659 2.494678 1.907556 +3.261896 2.494678 1.907556 +3.729748 2.494678 1.907556 +4.264621 2.494678 1.907556 +4.876131 2.494678 1.907556 +5.575266 2.494678 1.907556 +6.374593 2.494678 1.907556 +0 2.852659 1.907556 +0 2.852659 1.907556 +0 2.852659 1.907556 +0.002268731 2.852659 1.907556 +0.07076883 2.852659 1.907556 +0.1119241 2.852659 1.907556 +0.1475052 2.852659 1.907556 +0.1846606 2.852659 1.907556 +0.2245119 2.852659 1.907556 +0.2679612 2.852659 1.907556 +0.3158431 2.852659 1.907556 +0.3689944 2.852659 1.907556 +0.4282948 2.852659 1.907556 +0.494694 2.852659 1.907556 +0.5692344 2.852659 1.907556 +0.6530715 2.852659 1.907556 +0.7474945 2.852659 1.907556 +0.8539475 2.852659 1.907556 +0.974052 2.852659 1.907556 +1.113885 2.852659 1.907556 +1.27456 2.852659 1.907556 +1.458117 2.852659 1.907556 +1.667858 2.852659 1.907556 +1.907556 2.852659 1.907556 +2.181521 2.852659 1.907556 +2.494678 2.852659 1.907556 +2.852659 2.852659 1.907556 +3.261896 2.852659 1.907556 +3.729748 2.852659 1.907556 +4.264621 2.852659 1.907556 +4.876131 2.852659 1.907556 +5.575266 2.852659 1.907556 +6.374593 2.852659 1.907556 +0 3.261896 1.907556 +0 3.261896 1.907556 +0 3.261896 1.907556 +0.002268731 3.261896 1.907556 +0.07076883 3.261896 1.907556 +0.1119241 3.261896 1.907556 +0.1475052 3.261896 1.907556 +0.1846606 3.261896 1.907556 +0.2245119 3.261896 1.907556 +0.2679612 3.261896 1.907556 +0.3158431 3.261896 1.907556 +0.3689944 3.261896 1.907556 +0.4282948 3.261896 1.907556 +0.494694 3.261896 1.907556 +0.5692344 3.261896 1.907556 +0.6530715 3.261896 1.907556 +0.7474945 3.261896 1.907556 +0.8539475 3.261896 1.907556 +0.974052 3.261896 1.907556 +1.113885 3.261896 1.907556 +1.27456 3.261896 1.907556 +1.458117 3.261896 1.907556 +1.667858 3.261896 1.907556 +1.907556 3.261896 1.907556 +2.181521 3.261896 1.907556 +2.494678 3.261896 1.907556 +2.852659 3.261896 1.907556 +3.261896 3.261896 1.907556 +3.729748 3.261896 1.907556 +4.264621 3.261896 1.907556 +4.876131 3.261896 1.907556 +5.575266 3.261896 1.907556 +6.374593 3.261896 1.907556 +0 3.729748 1.907556 +0 3.729748 1.907556 +0 3.729748 1.907556 +0.002268731 3.729748 1.907556 +0.07076883 3.729748 1.907556 +0.1119241 3.729748 1.907556 +0.1475052 3.729748 1.907556 +0.1846606 3.729748 1.907556 +0.2245119 3.729748 1.907556 +0.2679612 3.729748 1.907556 +0.3158431 3.729748 1.907556 +0.3689944 3.729748 1.907556 +0.4282948 3.729748 1.907556 +0.494694 3.729748 1.907556 +0.5692344 3.729748 1.907556 +0.6530715 3.729748 1.907556 +0.7474945 3.729748 1.907556 +0.8539475 3.729748 1.907556 +0.974052 3.729748 1.907556 +1.113885 3.729748 1.907556 +1.27456 3.729748 1.907556 +1.458117 3.729748 1.907556 +1.667858 3.729748 1.907556 +1.907556 3.729748 1.907556 +2.181521 3.729748 1.907556 +2.494678 3.729748 1.907556 +2.852659 3.729748 1.907556 +3.261896 3.729748 1.907556 +3.729748 3.729748 1.907556 +4.264621 3.729748 1.907556 +4.876131 3.729748 1.907556 +5.575266 3.729748 1.907556 +6.374593 3.729748 1.907556 +0 4.264621 1.907556 +0 4.264621 1.907556 +0 4.264621 1.907556 +0.002268731 4.264621 1.907556 +0.07076883 4.264621 1.907556 +0.1119241 4.264621 1.907556 +0.1475052 4.264621 1.907556 +0.1846606 4.264621 1.907556 +0.2245119 4.264621 1.907556 +0.2679612 4.264621 1.907556 +0.3158431 4.264621 1.907556 +0.3689944 4.264621 1.907556 +0.4282948 4.264621 1.907556 +0.494694 4.264621 1.907556 +0.5692344 4.264621 1.907556 +0.6530715 4.264621 1.907556 +0.7474945 4.264621 1.907556 +0.8539475 4.264621 1.907556 +0.974052 4.264621 1.907556 +1.113885 4.264621 1.907556 +1.27456 4.264621 1.907556 +1.458117 4.264621 1.907556 +1.667858 4.264621 1.907556 +1.907556 4.264621 1.907556 +2.181521 4.264621 1.907556 +2.494678 4.264621 1.907556 +2.852659 4.264621 1.907556 +3.261896 4.264621 1.907556 +3.729748 4.264621 1.907556 +4.264621 4.264621 1.907556 +4.876131 4.264621 1.907556 +5.575266 4.264621 1.907556 +6.374593 4.264621 1.907556 +0 4.876131 1.907556 +0 4.876131 1.907556 +0 4.876131 1.907556 +0.002268731 4.876131 1.907556 +0.07076883 4.876131 1.907556 +0.1119241 4.876131 1.907556 +0.1475052 4.876131 1.907556 +0.1846606 4.876131 1.907556 +0.2245119 4.876131 1.907556 +0.2679612 4.876131 1.907556 +0.3158431 4.876131 1.907556 +0.3689944 4.876131 1.907556 +0.4282948 4.876131 1.907556 +0.494694 4.876131 1.907556 +0.5692344 4.876131 1.907556 +0.6530715 4.876131 1.907556 +0.7474945 4.876131 1.907556 +0.8539475 4.876131 1.907556 +0.974052 4.876131 1.907556 +1.113885 4.876131 1.907556 +1.27456 4.876131 1.907556 +1.458117 4.876131 1.907556 +1.667858 4.876131 1.907556 +1.907556 4.876131 1.907556 +2.181521 4.876131 1.907556 +2.494678 4.876131 1.907556 +2.852659 4.876131 1.907556 +3.261896 4.876131 1.907556 +3.729748 4.876131 1.907556 +4.264621 4.876131 1.907556 +4.876131 4.876131 1.907556 +5.575266 4.876131 1.907556 +6.374593 4.876131 1.907556 +0 5.575266 1.907556 +0 5.575266 1.907556 +0 5.575266 1.907556 +0.002268731 5.575266 1.907556 +0.07076883 5.575266 1.907556 +0.1119241 5.575266 1.907556 +0.1475052 5.575266 1.907556 +0.1846606 5.575266 1.907556 +0.2245119 5.575266 1.907556 +0.2679612 5.575266 1.907556 +0.3158431 5.575266 1.907556 +0.3689944 5.575266 1.907556 +0.4282948 5.575266 1.907556 +0.494694 5.575266 1.907556 +0.5692344 5.575266 1.907556 +0.6530715 5.575266 1.907556 +0.7474945 5.575266 1.907556 +0.8539475 5.575266 1.907556 +0.974052 5.575266 1.907556 +1.113885 5.575266 1.907556 +1.27456 5.575266 1.907556 +1.458117 5.575266 1.907556 +1.667858 5.575266 1.907556 +1.907556 5.575266 1.907556 +2.181521 5.575266 1.907556 +2.494678 5.575266 1.907556 +2.852659 5.575266 1.907556 +3.261896 5.575266 1.907556 +3.729748 5.575266 1.907556 +4.264621 5.575266 1.907556 +4.876131 5.575266 1.907556 +5.575266 5.575266 1.907556 +6.374593 5.575266 1.907556 +0 6.374593 1.907556 +0 6.374593 1.907556 +0 6.374593 1.907556 +0.002268731 6.374593 1.907556 +0.07076883 6.374593 1.907556 +0.1119241 6.374593 1.907556 +0.1475052 6.374593 1.907556 +0.1846606 6.374593 1.907556 +0.2245119 6.374593 1.907556 +0.2679612 6.374593 1.907556 +0.3158431 6.374593 1.907556 +0.3689944 6.374593 1.907556 +0.4282948 6.374593 1.907556 +0.494694 6.374593 1.907556 +0.5692344 6.374593 1.907556 +0.6530715 6.374593 1.907556 +0.7474945 6.374593 1.907556 +0.8539475 6.374593 1.907556 +0.974052 6.374593 1.907556 +1.113885 6.374593 1.907556 +1.27456 6.374593 1.907556 +1.458117 6.374593 1.907556 +1.667858 6.374593 1.907556 +1.907556 6.374593 1.907556 +2.181521 6.374593 1.907556 +2.494678 6.374593 1.907556 +2.852659 6.374593 1.907556 +3.261896 6.374593 1.907556 +3.729748 6.374593 1.907556 +4.264621 6.374593 1.907556 +4.876131 6.374593 1.907556 +5.575266 6.374593 1.907556 +6.374593 6.374593 1.907556 +0 0 2.181521 +0 0 2.181521 +0 0 2.181521 +0.002268731 0 2.181521 +0.07076883 0 2.181521 +0.1119241 0 2.181521 +0.1475052 0 2.181521 +0.1846606 0 2.181521 +0.2245119 0 2.181521 +0.2679612 0 2.181521 +0.3158431 0 2.181521 +0.3689944 0 2.181521 +0.4282948 0 2.181521 +0.494694 0 2.181521 +0.5692344 0 2.181521 +0.6530715 0 2.181521 +0.7474945 0 2.181521 +0.8539475 0 2.181521 +0.974052 0 2.181521 +1.113885 0 2.181521 +1.27456 0 2.181521 +1.458117 0 2.181521 +1.667858 0 2.181521 +1.907556 0 2.181521 +2.181521 0 2.181521 +2.494678 0 2.181521 +2.852659 0 2.181521 +3.261896 0 2.181521 +3.729748 0 2.181521 +4.264621 0 2.181521 +4.876131 0 2.181521 +5.575266 0 2.181521 +6.374593 0 2.181521 +0 0 2.181521 +0 0 2.181521 +0 0 2.181521 +0.002268731 0 2.181521 +0.07076883 0 2.181521 +0.1119241 0 2.181521 +0.1475052 0 2.181521 +0.1846606 0 2.181521 +0.2245119 0 2.181521 +0.2679612 0 2.181521 +0.3158431 0 2.181521 +0.3689944 0 2.181521 +0.4282948 0 2.181521 +0.494694 0 2.181521 +0.5692344 0 2.181521 +0.6530715 0 2.181521 +0.7474945 0 2.181521 +0.8539475 0 2.181521 +0.974052 0 2.181521 +1.113885 0 2.181521 +1.27456 0 2.181521 +1.458117 0 2.181521 +1.667858 0 2.181521 +1.907556 0 2.181521 +2.181521 0 2.181521 +2.494678 0 2.181521 +2.852659 0 2.181521 +3.261896 0 2.181521 +3.729748 0 2.181521 +4.264621 0 2.181521 +4.876131 0 2.181521 +5.575266 0 2.181521 +6.374593 0 2.181521 +0 0 2.181521 +0 0 2.181521 +0 0 2.181521 +0.002268731 0 2.181521 +0.07076883 0 2.181521 +0.1119241 0 2.181521 +0.1475052 0 2.181521 +0.1846606 0 2.181521 +0.2245119 0 2.181521 +0.2679612 0 2.181521 +0.3158431 0 2.181521 +0.3689944 0 2.181521 +0.4282948 0 2.181521 +0.494694 0 2.181521 +0.5692344 0 2.181521 +0.6530715 0 2.181521 +0.7474945 0 2.181521 +0.8539475 0 2.181521 +0.974052 0 2.181521 +1.113885 0 2.181521 +1.27456 0 2.181521 +1.458117 0 2.181521 +1.667858 0 2.181521 +1.907556 0 2.181521 +2.181521 0 2.181521 +2.494678 0 2.181521 +2.852659 0 2.181521 +3.261896 0 2.181521 +3.729748 0 2.181521 +4.264621 0 2.181521 +4.876131 0 2.181521 +5.575266 0 2.181521 +6.374593 0 2.181521 +0 0.002268731 2.181521 +0 0.002268731 2.181521 +0 0.002268731 2.181521 +0.002268731 0.002268731 2.181521 +0.07076883 0.002268731 2.181521 +0.1119241 0.002268731 2.181521 +0.1475052 0.002268731 2.181521 +0.1846606 0.002268731 2.181521 +0.2245119 0.002268731 2.181521 +0.2679612 0.002268731 2.181521 +0.3158431 0.002268731 2.181521 +0.3689944 0.002268731 2.181521 +0.4282948 0.002268731 2.181521 +0.494694 0.002268731 2.181521 +0.5692344 0.002268731 2.181521 +0.6530715 0.002268731 2.181521 +0.7474945 0.002268731 2.181521 +0.8539475 0.002268731 2.181521 +0.974052 0.002268731 2.181521 +1.113885 0.002268731 2.181521 +1.27456 0.002268731 2.181521 +1.458117 0.002268731 2.181521 +1.667858 0.002268731 2.181521 +1.907556 0.002268731 2.181521 +2.181521 0.002268731 2.181521 +2.494678 0.002268731 2.181521 +2.852659 0.002268731 2.181521 +3.261896 0.002268731 2.181521 +3.729748 0.002268731 2.181521 +4.264621 0.002268731 2.181521 +4.876131 0.002268731 2.181521 +5.575266 0.002268731 2.181521 +6.374593 0.002268731 2.181521 +0 0.07076883 2.181521 +0 0.07076883 2.181521 +0 0.07076883 2.181521 +0.002268731 0.07076883 2.181521 +0.07076883 0.07076883 2.181521 +0.1119241 0.07076883 2.181521 +0.1475052 0.07076883 2.181521 +0.1846606 0.07076883 2.181521 +0.2245119 0.07076883 2.181521 +0.2679612 0.07076883 2.181521 +0.3158431 0.07076883 2.181521 +0.3689944 0.07076883 2.181521 +0.4282948 0.07076883 2.181521 +0.494694 0.07076883 2.181521 +0.5692344 0.07076883 2.181521 +0.6530715 0.07076883 2.181521 +0.7474945 0.07076883 2.181521 +0.8539475 0.07076883 2.181521 +0.974052 0.07076883 2.181521 +1.113885 0.07076883 2.181521 +1.27456 0.07076883 2.181521 +1.458117 0.07076883 2.181521 +1.667858 0.07076883 2.181521 +1.907556 0.07076883 2.181521 +2.181521 0.07076883 2.181521 +2.494678 0.07076883 2.181521 +2.852659 0.07076883 2.181521 +3.261896 0.07076883 2.181521 +3.729748 0.07076883 2.181521 +4.264621 0.07076883 2.181521 +4.876131 0.07076883 2.181521 +5.575266 0.07076883 2.181521 +6.374593 0.07076883 2.181521 +0 0.1119241 2.181521 +0 0.1119241 2.181521 +0 0.1119241 2.181521 +0.002268731 0.1119241 2.181521 +0.07076883 0.1119241 2.181521 +0.1119241 0.1119241 2.181521 +0.1475052 0.1119241 2.181521 +0.1846606 0.1119241 2.181521 +0.2245119 0.1119241 2.181521 +0.2679612 0.1119241 2.181521 +0.3158431 0.1119241 2.181521 +0.3689944 0.1119241 2.181521 +0.4282948 0.1119241 2.181521 +0.494694 0.1119241 2.181521 +0.5692344 0.1119241 2.181521 +0.6530715 0.1119241 2.181521 +0.7474945 0.1119241 2.181521 +0.8539475 0.1119241 2.181521 +0.974052 0.1119241 2.181521 +1.113885 0.1119241 2.181521 +1.27456 0.1119241 2.181521 +1.458117 0.1119241 2.181521 +1.667858 0.1119241 2.181521 +1.907556 0.1119241 2.181521 +2.181521 0.1119241 2.181521 +2.494678 0.1119241 2.181521 +2.852659 0.1119241 2.181521 +3.261896 0.1119241 2.181521 +3.729748 0.1119241 2.181521 +4.264621 0.1119241 2.181521 +4.876131 0.1119241 2.181521 +5.575266 0.1119241 2.181521 +6.374593 0.1119241 2.181521 +0 0.1475052 2.181521 +0 0.1475052 2.181521 +0 0.1475052 2.181521 +0.002268731 0.1475052 2.181521 +0.07076883 0.1475052 2.181521 +0.1119241 0.1475052 2.181521 +0.1475052 0.1475052 2.181521 +0.1846606 0.1475052 2.181521 +0.2245119 0.1475052 2.181521 +0.2679612 0.1475052 2.181521 +0.3158431 0.1475052 2.181521 +0.3689944 0.1475052 2.181521 +0.4282948 0.1475052 2.181521 +0.494694 0.1475052 2.181521 +0.5692344 0.1475052 2.181521 +0.6530715 0.1475052 2.181521 +0.7474945 0.1475052 2.181521 +0.8539475 0.1475052 2.181521 +0.974052 0.1475052 2.181521 +1.113885 0.1475052 2.181521 +1.27456 0.1475052 2.181521 +1.458117 0.1475052 2.181521 +1.667858 0.1475052 2.181521 +1.907556 0.1475052 2.181521 +2.181521 0.1475052 2.181521 +2.494678 0.1475052 2.181521 +2.852659 0.1475052 2.181521 +3.261896 0.1475052 2.181521 +3.729748 0.1475052 2.181521 +4.264621 0.1475052 2.181521 +4.876131 0.1475052 2.181521 +5.575266 0.1475052 2.181521 +6.374593 0.1475052 2.181521 +0 0.1846606 2.181521 +0 0.1846606 2.181521 +0 0.1846606 2.181521 +0.002268731 0.1846606 2.181521 +0.07076883 0.1846606 2.181521 +0.1119241 0.1846606 2.181521 +0.1475052 0.1846606 2.181521 +0.1846606 0.1846606 2.181521 +0.2245119 0.1846606 2.181521 +0.2679612 0.1846606 2.181521 +0.3158431 0.1846606 2.181521 +0.3689944 0.1846606 2.181521 +0.4282948 0.1846606 2.181521 +0.494694 0.1846606 2.181521 +0.5692344 0.1846606 2.181521 +0.6530715 0.1846606 2.181521 +0.7474945 0.1846606 2.181521 +0.8539475 0.1846606 2.181521 +0.974052 0.1846606 2.181521 +1.113885 0.1846606 2.181521 +1.27456 0.1846606 2.181521 +1.458117 0.1846606 2.181521 +1.667858 0.1846606 2.181521 +1.907556 0.1846606 2.181521 +2.181521 0.1846606 2.181521 +2.494678 0.1846606 2.181521 +2.852659 0.1846606 2.181521 +3.261896 0.1846606 2.181521 +3.729748 0.1846606 2.181521 +4.264621 0.1846606 2.181521 +4.876131 0.1846606 2.181521 +5.575266 0.1846606 2.181521 +6.374593 0.1846606 2.181521 +0 0.2245119 2.181521 +0 0.2245119 2.181521 +0 0.2245119 2.181521 +0.002268731 0.2245119 2.181521 +0.07076883 0.2245119 2.181521 +0.1119241 0.2245119 2.181521 +0.1475052 0.2245119 2.181521 +0.1846606 0.2245119 2.181521 +0.2245119 0.2245119 2.181521 +0.2679612 0.2245119 2.181521 +0.3158431 0.2245119 2.181521 +0.3689944 0.2245119 2.181521 +0.4282948 0.2245119 2.181521 +0.494694 0.2245119 2.181521 +0.5692344 0.2245119 2.181521 +0.6530715 0.2245119 2.181521 +0.7474945 0.2245119 2.181521 +0.8539475 0.2245119 2.181521 +0.974052 0.2245119 2.181521 +1.113885 0.2245119 2.181521 +1.27456 0.2245119 2.181521 +1.458117 0.2245119 2.181521 +1.667858 0.2245119 2.181521 +1.907556 0.2245119 2.181521 +2.181521 0.2245119 2.181521 +2.494678 0.2245119 2.181521 +2.852659 0.2245119 2.181521 +3.261896 0.2245119 2.181521 +3.729748 0.2245119 2.181521 +4.264621 0.2245119 2.181521 +4.876131 0.2245119 2.181521 +5.575266 0.2245119 2.181521 +6.374593 0.2245119 2.181521 +0 0.2679612 2.181521 +0 0.2679612 2.181521 +0 0.2679612 2.181521 +0.002268731 0.2679612 2.181521 +0.07076883 0.2679612 2.181521 +0.1119241 0.2679612 2.181521 +0.1475052 0.2679612 2.181521 +0.1846606 0.2679612 2.181521 +0.2245119 0.2679612 2.181521 +0.2679612 0.2679612 2.181521 +0.3158431 0.2679612 2.181521 +0.3689944 0.2679612 2.181521 +0.4282948 0.2679612 2.181521 +0.494694 0.2679612 2.181521 +0.5692344 0.2679612 2.181521 +0.6530715 0.2679612 2.181521 +0.7474945 0.2679612 2.181521 +0.8539475 0.2679612 2.181521 +0.974052 0.2679612 2.181521 +1.113885 0.2679612 2.181521 +1.27456 0.2679612 2.181521 +1.458117 0.2679612 2.181521 +1.667858 0.2679612 2.181521 +1.907556 0.2679612 2.181521 +2.181521 0.2679612 2.181521 +2.494678 0.2679612 2.181521 +2.852659 0.2679612 2.181521 +3.261896 0.2679612 2.181521 +3.729748 0.2679612 2.181521 +4.264621 0.2679612 2.181521 +4.876131 0.2679612 2.181521 +5.575266 0.2679612 2.181521 +6.374593 0.2679612 2.181521 +0 0.3158431 2.181521 +0 0.3158431 2.181521 +0 0.3158431 2.181521 +0.002268731 0.3158431 2.181521 +0.07076883 0.3158431 2.181521 +0.1119241 0.3158431 2.181521 +0.1475052 0.3158431 2.181521 +0.1846606 0.3158431 2.181521 +0.2245119 0.3158431 2.181521 +0.2679612 0.3158431 2.181521 +0.3158431 0.3158431 2.181521 +0.3689944 0.3158431 2.181521 +0.4282948 0.3158431 2.181521 +0.494694 0.3158431 2.181521 +0.5692344 0.3158431 2.181521 +0.6530715 0.3158431 2.181521 +0.7474945 0.3158431 2.181521 +0.8539475 0.3158431 2.181521 +0.974052 0.3158431 2.181521 +1.113885 0.3158431 2.181521 +1.27456 0.3158431 2.181521 +1.458117 0.3158431 2.181521 +1.667858 0.3158431 2.181521 +1.907556 0.3158431 2.181521 +2.181521 0.3158431 2.181521 +2.494678 0.3158431 2.181521 +2.852659 0.3158431 2.181521 +3.261896 0.3158431 2.181521 +3.729748 0.3158431 2.181521 +4.264621 0.3158431 2.181521 +4.876131 0.3158431 2.181521 +5.575266 0.3158431 2.181521 +6.374593 0.3158431 2.181521 +0 0.3689944 2.181521 +0 0.3689944 2.181521 +0 0.3689944 2.181521 +0.002268731 0.3689944 2.181521 +0.07076883 0.3689944 2.181521 +0.1119241 0.3689944 2.181521 +0.1475052 0.3689944 2.181521 +0.1846606 0.3689944 2.181521 +0.2245119 0.3689944 2.181521 +0.2679612 0.3689944 2.181521 +0.3158431 0.3689944 2.181521 +0.3689944 0.3689944 2.181521 +0.4282948 0.3689944 2.181521 +0.494694 0.3689944 2.181521 +0.5692344 0.3689944 2.181521 +0.6530715 0.3689944 2.181521 +0.7474945 0.3689944 2.181521 +0.8539475 0.3689944 2.181521 +0.974052 0.3689944 2.181521 +1.113885 0.3689944 2.181521 +1.27456 0.3689944 2.181521 +1.458117 0.3689944 2.181521 +1.667858 0.3689944 2.181521 +1.907556 0.3689944 2.181521 +2.181521 0.3689944 2.181521 +2.494678 0.3689944 2.181521 +2.852659 0.3689944 2.181521 +3.261896 0.3689944 2.181521 +3.729748 0.3689944 2.181521 +4.264621 0.3689944 2.181521 +4.876131 0.3689944 2.181521 +5.575266 0.3689944 2.181521 +6.374593 0.3689944 2.181521 +0 0.4282948 2.181521 +0 0.4282948 2.181521 +0 0.4282948 2.181521 +0.002268731 0.4282948 2.181521 +0.07076883 0.4282948 2.181521 +0.1119241 0.4282948 2.181521 +0.1475052 0.4282948 2.181521 +0.1846606 0.4282948 2.181521 +0.2245119 0.4282948 2.181521 +0.2679612 0.4282948 2.181521 +0.3158431 0.4282948 2.181521 +0.3689944 0.4282948 2.181521 +0.4282948 0.4282948 2.181521 +0.494694 0.4282948 2.181521 +0.5692344 0.4282948 2.181521 +0.6530715 0.4282948 2.181521 +0.7474945 0.4282948 2.181521 +0.8539475 0.4282948 2.181521 +0.974052 0.4282948 2.181521 +1.113885 0.4282948 2.181521 +1.27456 0.4282948 2.181521 +1.458117 0.4282948 2.181521 +1.667858 0.4282948 2.181521 +1.907556 0.4282948 2.181521 +2.181521 0.4282948 2.181521 +2.494678 0.4282948 2.181521 +2.852659 0.4282948 2.181521 +3.261896 0.4282948 2.181521 +3.729748 0.4282948 2.181521 +4.264621 0.4282948 2.181521 +4.876131 0.4282948 2.181521 +5.575266 0.4282948 2.181521 +6.374593 0.4282948 2.181521 +0 0.494694 2.181521 +0 0.494694 2.181521 +0 0.494694 2.181521 +0.002268731 0.494694 2.181521 +0.07076883 0.494694 2.181521 +0.1119241 0.494694 2.181521 +0.1475052 0.494694 2.181521 +0.1846606 0.494694 2.181521 +0.2245119 0.494694 2.181521 +0.2679612 0.494694 2.181521 +0.3158431 0.494694 2.181521 +0.3689944 0.494694 2.181521 +0.4282948 0.494694 2.181521 +0.494694 0.494694 2.181521 +0.5692344 0.494694 2.181521 +0.6530715 0.494694 2.181521 +0.7474945 0.494694 2.181521 +0.8539475 0.494694 2.181521 +0.974052 0.494694 2.181521 +1.113885 0.494694 2.181521 +1.27456 0.494694 2.181521 +1.458117 0.494694 2.181521 +1.667858 0.494694 2.181521 +1.907556 0.494694 2.181521 +2.181521 0.494694 2.181521 +2.494678 0.494694 2.181521 +2.852659 0.494694 2.181521 +3.261896 0.494694 2.181521 +3.729748 0.494694 2.181521 +4.264621 0.494694 2.181521 +4.876131 0.494694 2.181521 +5.575266 0.494694 2.181521 +6.374593 0.494694 2.181521 +0 0.5692344 2.181521 +0 0.5692344 2.181521 +0 0.5692344 2.181521 +0.002268731 0.5692344 2.181521 +0.07076883 0.5692344 2.181521 +0.1119241 0.5692344 2.181521 +0.1475052 0.5692344 2.181521 +0.1846606 0.5692344 2.181521 +0.2245119 0.5692344 2.181521 +0.2679612 0.5692344 2.181521 +0.3158431 0.5692344 2.181521 +0.3689944 0.5692344 2.181521 +0.4282948 0.5692344 2.181521 +0.494694 0.5692344 2.181521 +0.5692344 0.5692344 2.181521 +0.6530715 0.5692344 2.181521 +0.7474945 0.5692344 2.181521 +0.8539475 0.5692344 2.181521 +0.974052 0.5692344 2.181521 +1.113885 0.5692344 2.181521 +1.27456 0.5692344 2.181521 +1.458117 0.5692344 2.181521 +1.667858 0.5692344 2.181521 +1.907556 0.5692344 2.181521 +2.181521 0.5692344 2.181521 +2.494678 0.5692344 2.181521 +2.852659 0.5692344 2.181521 +3.261896 0.5692344 2.181521 +3.729748 0.5692344 2.181521 +4.264621 0.5692344 2.181521 +4.876131 0.5692344 2.181521 +5.575266 0.5692344 2.181521 +6.374593 0.5692344 2.181521 +0 0.6530715 2.181521 +0 0.6530715 2.181521 +0 0.6530715 2.181521 +0.002268731 0.6530715 2.181521 +0.07076883 0.6530715 2.181521 +0.1119241 0.6530715 2.181521 +0.1475052 0.6530715 2.181521 +0.1846606 0.6530715 2.181521 +0.2245119 0.6530715 2.181521 +0.2679612 0.6530715 2.181521 +0.3158431 0.6530715 2.181521 +0.3689944 0.6530715 2.181521 +0.4282948 0.6530715 2.181521 +0.494694 0.6530715 2.181521 +0.5692344 0.6530715 2.181521 +0.6530715 0.6530715 2.181521 +0.7474945 0.6530715 2.181521 +0.8539475 0.6530715 2.181521 +0.974052 0.6530715 2.181521 +1.113885 0.6530715 2.181521 +1.27456 0.6530715 2.181521 +1.458117 0.6530715 2.181521 +1.667858 0.6530715 2.181521 +1.907556 0.6530715 2.181521 +2.181521 0.6530715 2.181521 +2.494678 0.6530715 2.181521 +2.852659 0.6530715 2.181521 +3.261896 0.6530715 2.181521 +3.729748 0.6530715 2.181521 +4.264621 0.6530715 2.181521 +4.876131 0.6530715 2.181521 +5.575266 0.6530715 2.181521 +6.374593 0.6530715 2.181521 +0 0.7474945 2.181521 +0 0.7474945 2.181521 +0 0.7474945 2.181521 +0.002268731 0.7474945 2.181521 +0.07076883 0.7474945 2.181521 +0.1119241 0.7474945 2.181521 +0.1475052 0.7474945 2.181521 +0.1846606 0.7474945 2.181521 +0.2245119 0.7474945 2.181521 +0.2679612 0.7474945 2.181521 +0.3158431 0.7474945 2.181521 +0.3689944 0.7474945 2.181521 +0.4282948 0.7474945 2.181521 +0.494694 0.7474945 2.181521 +0.5692344 0.7474945 2.181521 +0.6530715 0.7474945 2.181521 +0.7474945 0.7474945 2.181521 +0.8539475 0.7474945 2.181521 +0.974052 0.7474945 2.181521 +1.113885 0.7474945 2.181521 +1.27456 0.7474945 2.181521 +1.458117 0.7474945 2.181521 +1.667858 0.7474945 2.181521 +1.907556 0.7474945 2.181521 +2.181521 0.7474945 2.181521 +2.494678 0.7474945 2.181521 +2.852659 0.7474945 2.181521 +3.261896 0.7474945 2.181521 +3.729748 0.7474945 2.181521 +4.264621 0.7474945 2.181521 +4.876131 0.7474945 2.181521 +5.575266 0.7474945 2.181521 +6.374593 0.7474945 2.181521 +0 0.8539475 2.181521 +0 0.8539475 2.181521 +0 0.8539475 2.181521 +0.002268731 0.8539475 2.181521 +0.07076883 0.8539475 2.181521 +0.1119241 0.8539475 2.181521 +0.1475052 0.8539475 2.181521 +0.1846606 0.8539475 2.181521 +0.2245119 0.8539475 2.181521 +0.2679612 0.8539475 2.181521 +0.3158431 0.8539475 2.181521 +0.3689944 0.8539475 2.181521 +0.4282948 0.8539475 2.181521 +0.494694 0.8539475 2.181521 +0.5692344 0.8539475 2.181521 +0.6530715 0.8539475 2.181521 +0.7474945 0.8539475 2.181521 +0.8539475 0.8539475 2.181521 +0.974052 0.8539475 2.181521 +1.113885 0.8539475 2.181521 +1.27456 0.8539475 2.181521 +1.458117 0.8539475 2.181521 +1.667858 0.8539475 2.181521 +1.907556 0.8539475 2.181521 +2.181521 0.8539475 2.181521 +2.494678 0.8539475 2.181521 +2.852659 0.8539475 2.181521 +3.261896 0.8539475 2.181521 +3.729748 0.8539475 2.181521 +4.264621 0.8539475 2.181521 +4.876131 0.8539475 2.181521 +5.575266 0.8539475 2.181521 +6.374593 0.8539475 2.181521 +0 0.974052 2.181521 +0 0.974052 2.181521 +0 0.974052 2.181521 +0.002268731 0.974052 2.181521 +0.07076883 0.974052 2.181521 +0.1119241 0.974052 2.181521 +0.1475052 0.974052 2.181521 +0.1846606 0.974052 2.181521 +0.2245119 0.974052 2.181521 +0.2679612 0.974052 2.181521 +0.3158431 0.974052 2.181521 +0.3689944 0.974052 2.181521 +0.4282948 0.974052 2.181521 +0.494694 0.974052 2.181521 +0.5692344 0.974052 2.181521 +0.6530715 0.974052 2.181521 +0.7474945 0.974052 2.181521 +0.8539475 0.974052 2.181521 +0.974052 0.974052 2.181521 +1.113885 0.974052 2.181521 +1.27456 0.974052 2.181521 +1.458117 0.974052 2.181521 +1.667858 0.974052 2.181521 +1.907556 0.974052 2.181521 +2.181521 0.974052 2.181521 +2.494678 0.974052 2.181521 +2.852659 0.974052 2.181521 +3.261896 0.974052 2.181521 +3.729748 0.974052 2.181521 +4.264621 0.974052 2.181521 +4.876131 0.974052 2.181521 +5.575266 0.974052 2.181521 +6.374593 0.974052 2.181521 +0 1.113885 2.181521 +0 1.113885 2.181521 +0 1.113885 2.181521 +0.002268731 1.113885 2.181521 +0.07076883 1.113885 2.181521 +0.1119241 1.113885 2.181521 +0.1475052 1.113885 2.181521 +0.1846606 1.113885 2.181521 +0.2245119 1.113885 2.181521 +0.2679612 1.113885 2.181521 +0.3158431 1.113885 2.181521 +0.3689944 1.113885 2.181521 +0.4282948 1.113885 2.181521 +0.494694 1.113885 2.181521 +0.5692344 1.113885 2.181521 +0.6530715 1.113885 2.181521 +0.7474945 1.113885 2.181521 +0.8539475 1.113885 2.181521 +0.974052 1.113885 2.181521 +1.113885 1.113885 2.181521 +1.27456 1.113885 2.181521 +1.458117 1.113885 2.181521 +1.667858 1.113885 2.181521 +1.907556 1.113885 2.181521 +2.181521 1.113885 2.181521 +2.494678 1.113885 2.181521 +2.852659 1.113885 2.181521 +3.261896 1.113885 2.181521 +3.729748 1.113885 2.181521 +4.264621 1.113885 2.181521 +4.876131 1.113885 2.181521 +5.575266 1.113885 2.181521 +6.374593 1.113885 2.181521 +0 1.27456 2.181521 +0 1.27456 2.181521 +0 1.27456 2.181521 +0.002268731 1.27456 2.181521 +0.07076883 1.27456 2.181521 +0.1119241 1.27456 2.181521 +0.1475052 1.27456 2.181521 +0.1846606 1.27456 2.181521 +0.2245119 1.27456 2.181521 +0.2679612 1.27456 2.181521 +0.3158431 1.27456 2.181521 +0.3689944 1.27456 2.181521 +0.4282948 1.27456 2.181521 +0.494694 1.27456 2.181521 +0.5692344 1.27456 2.181521 +0.6530715 1.27456 2.181521 +0.7474945 1.27456 2.181521 +0.8539475 1.27456 2.181521 +0.974052 1.27456 2.181521 +1.113885 1.27456 2.181521 +1.27456 1.27456 2.181521 +1.458117 1.27456 2.181521 +1.667858 1.27456 2.181521 +1.907556 1.27456 2.181521 +2.181521 1.27456 2.181521 +2.494678 1.27456 2.181521 +2.852659 1.27456 2.181521 +3.261896 1.27456 2.181521 +3.729748 1.27456 2.181521 +4.264621 1.27456 2.181521 +4.876131 1.27456 2.181521 +5.575266 1.27456 2.181521 +6.374593 1.27456 2.181521 +0 1.458117 2.181521 +0 1.458117 2.181521 +0 1.458117 2.181521 +0.002268731 1.458117 2.181521 +0.07076883 1.458117 2.181521 +0.1119241 1.458117 2.181521 +0.1475052 1.458117 2.181521 +0.1846606 1.458117 2.181521 +0.2245119 1.458117 2.181521 +0.2679612 1.458117 2.181521 +0.3158431 1.458117 2.181521 +0.3689944 1.458117 2.181521 +0.4282948 1.458117 2.181521 +0.494694 1.458117 2.181521 +0.5692344 1.458117 2.181521 +0.6530715 1.458117 2.181521 +0.7474945 1.458117 2.181521 +0.8539475 1.458117 2.181521 +0.974052 1.458117 2.181521 +1.113885 1.458117 2.181521 +1.27456 1.458117 2.181521 +1.458117 1.458117 2.181521 +1.667858 1.458117 2.181521 +1.907556 1.458117 2.181521 +2.181521 1.458117 2.181521 +2.494678 1.458117 2.181521 +2.852659 1.458117 2.181521 +3.261896 1.458117 2.181521 +3.729748 1.458117 2.181521 +4.264621 1.458117 2.181521 +4.876131 1.458117 2.181521 +5.575266 1.458117 2.181521 +6.374593 1.458117 2.181521 +0 1.667858 2.181521 +0 1.667858 2.181521 +0 1.667858 2.181521 +0.002268731 1.667858 2.181521 +0.07076883 1.667858 2.181521 +0.1119241 1.667858 2.181521 +0.1475052 1.667858 2.181521 +0.1846606 1.667858 2.181521 +0.2245119 1.667858 2.181521 +0.2679612 1.667858 2.181521 +0.3158431 1.667858 2.181521 +0.3689944 1.667858 2.181521 +0.4282948 1.667858 2.181521 +0.494694 1.667858 2.181521 +0.5692344 1.667858 2.181521 +0.6530715 1.667858 2.181521 +0.7474945 1.667858 2.181521 +0.8539475 1.667858 2.181521 +0.974052 1.667858 2.181521 +1.113885 1.667858 2.181521 +1.27456 1.667858 2.181521 +1.458117 1.667858 2.181521 +1.667858 1.667858 2.181521 +1.907556 1.667858 2.181521 +2.181521 1.667858 2.181521 +2.494678 1.667858 2.181521 +2.852659 1.667858 2.181521 +3.261896 1.667858 2.181521 +3.729748 1.667858 2.181521 +4.264621 1.667858 2.181521 +4.876131 1.667858 2.181521 +5.575266 1.667858 2.181521 +6.374593 1.667858 2.181521 +0 1.907556 2.181521 +0 1.907556 2.181521 +0 1.907556 2.181521 +0.002268731 1.907556 2.181521 +0.07076883 1.907556 2.181521 +0.1119241 1.907556 2.181521 +0.1475052 1.907556 2.181521 +0.1846606 1.907556 2.181521 +0.2245119 1.907556 2.181521 +0.2679612 1.907556 2.181521 +0.3158431 1.907556 2.181521 +0.3689944 1.907556 2.181521 +0.4282948 1.907556 2.181521 +0.494694 1.907556 2.181521 +0.5692344 1.907556 2.181521 +0.6530715 1.907556 2.181521 +0.7474945 1.907556 2.181521 +0.8539475 1.907556 2.181521 +0.974052 1.907556 2.181521 +1.113885 1.907556 2.181521 +1.27456 1.907556 2.181521 +1.458117 1.907556 2.181521 +1.667858 1.907556 2.181521 +1.907556 1.907556 2.181521 +2.181521 1.907556 2.181521 +2.494678 1.907556 2.181521 +2.852659 1.907556 2.181521 +3.261896 1.907556 2.181521 +3.729748 1.907556 2.181521 +4.264621 1.907556 2.181521 +4.876131 1.907556 2.181521 +5.575266 1.907556 2.181521 +6.374593 1.907556 2.181521 +0 2.181521 2.181521 +0 2.181521 2.181521 +0 2.181521 2.181521 +0.002268731 2.181521 2.181521 +0.07076883 2.181521 2.181521 +0.1119241 2.181521 2.181521 +0.1475052 2.181521 2.181521 +0.1846606 2.181521 2.181521 +0.2245119 2.181521 2.181521 +0.2679612 2.181521 2.181521 +0.3158431 2.181521 2.181521 +0.3689944 2.181521 2.181521 +0.4282948 2.181521 2.181521 +0.494694 2.181521 2.181521 +0.5692344 2.181521 2.181521 +0.6530715 2.181521 2.181521 +0.7474945 2.181521 2.181521 +0.8539475 2.181521 2.181521 +0.974052 2.181521 2.181521 +1.113885 2.181521 2.181521 +1.27456 2.181521 2.181521 +1.458117 2.181521 2.181521 +1.667858 2.181521 2.181521 +1.907556 2.181521 2.181521 +2.181521 2.181521 2.181521 +2.494678 2.181521 2.181521 +2.852659 2.181521 2.181521 +3.261896 2.181521 2.181521 +3.729748 2.181521 2.181521 +4.264621 2.181521 2.181521 +4.876131 2.181521 2.181521 +5.575266 2.181521 2.181521 +6.374593 2.181521 2.181521 +0 2.494678 2.181521 +0 2.494678 2.181521 +0 2.494678 2.181521 +0.002268731 2.494678 2.181521 +0.07076883 2.494678 2.181521 +0.1119241 2.494678 2.181521 +0.1475052 2.494678 2.181521 +0.1846606 2.494678 2.181521 +0.2245119 2.494678 2.181521 +0.2679612 2.494678 2.181521 +0.3158431 2.494678 2.181521 +0.3689944 2.494678 2.181521 +0.4282948 2.494678 2.181521 +0.494694 2.494678 2.181521 +0.5692344 2.494678 2.181521 +0.6530715 2.494678 2.181521 +0.7474945 2.494678 2.181521 +0.8539475 2.494678 2.181521 +0.974052 2.494678 2.181521 +1.113885 2.494678 2.181521 +1.27456 2.494678 2.181521 +1.458117 2.494678 2.181521 +1.667858 2.494678 2.181521 +1.907556 2.494678 2.181521 +2.181521 2.494678 2.181521 +2.494678 2.494678 2.181521 +2.852659 2.494678 2.181521 +3.261896 2.494678 2.181521 +3.729748 2.494678 2.181521 +4.264621 2.494678 2.181521 +4.876131 2.494678 2.181521 +5.575266 2.494678 2.181521 +6.374593 2.494678 2.181521 +0 2.852659 2.181521 +0 2.852659 2.181521 +0 2.852659 2.181521 +0.002268731 2.852659 2.181521 +0.07076883 2.852659 2.181521 +0.1119241 2.852659 2.181521 +0.1475052 2.852659 2.181521 +0.1846606 2.852659 2.181521 +0.2245119 2.852659 2.181521 +0.2679612 2.852659 2.181521 +0.3158431 2.852659 2.181521 +0.3689944 2.852659 2.181521 +0.4282948 2.852659 2.181521 +0.494694 2.852659 2.181521 +0.5692344 2.852659 2.181521 +0.6530715 2.852659 2.181521 +0.7474945 2.852659 2.181521 +0.8539475 2.852659 2.181521 +0.974052 2.852659 2.181521 +1.113885 2.852659 2.181521 +1.27456 2.852659 2.181521 +1.458117 2.852659 2.181521 +1.667858 2.852659 2.181521 +1.907556 2.852659 2.181521 +2.181521 2.852659 2.181521 +2.494678 2.852659 2.181521 +2.852659 2.852659 2.181521 +3.261896 2.852659 2.181521 +3.729748 2.852659 2.181521 +4.264621 2.852659 2.181521 +4.876131 2.852659 2.181521 +5.575266 2.852659 2.181521 +6.374593 2.852659 2.181521 +0 3.261896 2.181521 +0 3.261896 2.181521 +0 3.261896 2.181521 +0.002268731 3.261896 2.181521 +0.07076883 3.261896 2.181521 +0.1119241 3.261896 2.181521 +0.1475052 3.261896 2.181521 +0.1846606 3.261896 2.181521 +0.2245119 3.261896 2.181521 +0.2679612 3.261896 2.181521 +0.3158431 3.261896 2.181521 +0.3689944 3.261896 2.181521 +0.4282948 3.261896 2.181521 +0.494694 3.261896 2.181521 +0.5692344 3.261896 2.181521 +0.6530715 3.261896 2.181521 +0.7474945 3.261896 2.181521 +0.8539475 3.261896 2.181521 +0.974052 3.261896 2.181521 +1.113885 3.261896 2.181521 +1.27456 3.261896 2.181521 +1.458117 3.261896 2.181521 +1.667858 3.261896 2.181521 +1.907556 3.261896 2.181521 +2.181521 3.261896 2.181521 +2.494678 3.261896 2.181521 +2.852659 3.261896 2.181521 +3.261896 3.261896 2.181521 +3.729748 3.261896 2.181521 +4.264621 3.261896 2.181521 +4.876131 3.261896 2.181521 +5.575266 3.261896 2.181521 +6.374593 3.261896 2.181521 +0 3.729748 2.181521 +0 3.729748 2.181521 +0 3.729748 2.181521 +0.002268731 3.729748 2.181521 +0.07076883 3.729748 2.181521 +0.1119241 3.729748 2.181521 +0.1475052 3.729748 2.181521 +0.1846606 3.729748 2.181521 +0.2245119 3.729748 2.181521 +0.2679612 3.729748 2.181521 +0.3158431 3.729748 2.181521 +0.3689944 3.729748 2.181521 +0.4282948 3.729748 2.181521 +0.494694 3.729748 2.181521 +0.5692344 3.729748 2.181521 +0.6530715 3.729748 2.181521 +0.7474945 3.729748 2.181521 +0.8539475 3.729748 2.181521 +0.974052 3.729748 2.181521 +1.113885 3.729748 2.181521 +1.27456 3.729748 2.181521 +1.458117 3.729748 2.181521 +1.667858 3.729748 2.181521 +1.907556 3.729748 2.181521 +2.181521 3.729748 2.181521 +2.494678 3.729748 2.181521 +2.852659 3.729748 2.181521 +3.261896 3.729748 2.181521 +3.729748 3.729748 2.181521 +4.264621 3.729748 2.181521 +4.876131 3.729748 2.181521 +5.575266 3.729748 2.181521 +6.374593 3.729748 2.181521 +0 4.264621 2.181521 +0 4.264621 2.181521 +0 4.264621 2.181521 +0.002268731 4.264621 2.181521 +0.07076883 4.264621 2.181521 +0.1119241 4.264621 2.181521 +0.1475052 4.264621 2.181521 +0.1846606 4.264621 2.181521 +0.2245119 4.264621 2.181521 +0.2679612 4.264621 2.181521 +0.3158431 4.264621 2.181521 +0.3689944 4.264621 2.181521 +0.4282948 4.264621 2.181521 +0.494694 4.264621 2.181521 +0.5692344 4.264621 2.181521 +0.6530715 4.264621 2.181521 +0.7474945 4.264621 2.181521 +0.8539475 4.264621 2.181521 +0.974052 4.264621 2.181521 +1.113885 4.264621 2.181521 +1.27456 4.264621 2.181521 +1.458117 4.264621 2.181521 +1.667858 4.264621 2.181521 +1.907556 4.264621 2.181521 +2.181521 4.264621 2.181521 +2.494678 4.264621 2.181521 +2.852659 4.264621 2.181521 +3.261896 4.264621 2.181521 +3.729748 4.264621 2.181521 +4.264621 4.264621 2.181521 +4.876131 4.264621 2.181521 +5.575266 4.264621 2.181521 +6.374593 4.264621 2.181521 +0 4.876131 2.181521 +0 4.876131 2.181521 +0 4.876131 2.181521 +0.002268731 4.876131 2.181521 +0.07076883 4.876131 2.181521 +0.1119241 4.876131 2.181521 +0.1475052 4.876131 2.181521 +0.1846606 4.876131 2.181521 +0.2245119 4.876131 2.181521 +0.2679612 4.876131 2.181521 +0.3158431 4.876131 2.181521 +0.3689944 4.876131 2.181521 +0.4282948 4.876131 2.181521 +0.494694 4.876131 2.181521 +0.5692344 4.876131 2.181521 +0.6530715 4.876131 2.181521 +0.7474945 4.876131 2.181521 +0.8539475 4.876131 2.181521 +0.974052 4.876131 2.181521 +1.113885 4.876131 2.181521 +1.27456 4.876131 2.181521 +1.458117 4.876131 2.181521 +1.667858 4.876131 2.181521 +1.907556 4.876131 2.181521 +2.181521 4.876131 2.181521 +2.494678 4.876131 2.181521 +2.852659 4.876131 2.181521 +3.261896 4.876131 2.181521 +3.729748 4.876131 2.181521 +4.264621 4.876131 2.181521 +4.876131 4.876131 2.181521 +5.575266 4.876131 2.181521 +6.374593 4.876131 2.181521 +0 5.575266 2.181521 +0 5.575266 2.181521 +0 5.575266 2.181521 +0.002268731 5.575266 2.181521 +0.07076883 5.575266 2.181521 +0.1119241 5.575266 2.181521 +0.1475052 5.575266 2.181521 +0.1846606 5.575266 2.181521 +0.2245119 5.575266 2.181521 +0.2679612 5.575266 2.181521 +0.3158431 5.575266 2.181521 +0.3689944 5.575266 2.181521 +0.4282948 5.575266 2.181521 +0.494694 5.575266 2.181521 +0.5692344 5.575266 2.181521 +0.6530715 5.575266 2.181521 +0.7474945 5.575266 2.181521 +0.8539475 5.575266 2.181521 +0.974052 5.575266 2.181521 +1.113885 5.575266 2.181521 +1.27456 5.575266 2.181521 +1.458117 5.575266 2.181521 +1.667858 5.575266 2.181521 +1.907556 5.575266 2.181521 +2.181521 5.575266 2.181521 +2.494678 5.575266 2.181521 +2.852659 5.575266 2.181521 +3.261896 5.575266 2.181521 +3.729748 5.575266 2.181521 +4.264621 5.575266 2.181521 +4.876131 5.575266 2.181521 +5.575266 5.575266 2.181521 +6.374593 5.575266 2.181521 +0 6.374593 2.181521 +0 6.374593 2.181521 +0 6.374593 2.181521 +0.002268731 6.374593 2.181521 +0.07076883 6.374593 2.181521 +0.1119241 6.374593 2.181521 +0.1475052 6.374593 2.181521 +0.1846606 6.374593 2.181521 +0.2245119 6.374593 2.181521 +0.2679612 6.374593 2.181521 +0.3158431 6.374593 2.181521 +0.3689944 6.374593 2.181521 +0.4282948 6.374593 2.181521 +0.494694 6.374593 2.181521 +0.5692344 6.374593 2.181521 +0.6530715 6.374593 2.181521 +0.7474945 6.374593 2.181521 +0.8539475 6.374593 2.181521 +0.974052 6.374593 2.181521 +1.113885 6.374593 2.181521 +1.27456 6.374593 2.181521 +1.458117 6.374593 2.181521 +1.667858 6.374593 2.181521 +1.907556 6.374593 2.181521 +2.181521 6.374593 2.181521 +2.494678 6.374593 2.181521 +2.852659 6.374593 2.181521 +3.261896 6.374593 2.181521 +3.729748 6.374593 2.181521 +4.264621 6.374593 2.181521 +4.876131 6.374593 2.181521 +5.575266 6.374593 2.181521 +6.374593 6.374593 2.181521 +0 0 2.494678 +0 0 2.494678 +0 0 2.494678 +0.002268731 0 2.494678 +0.07076883 0 2.494678 +0.1119241 0 2.494678 +0.1475052 0 2.494678 +0.1846606 0 2.494678 +0.2245119 0 2.494678 +0.2679612 0 2.494678 +0.3158431 0 2.494678 +0.3689944 0 2.494678 +0.4282948 0 2.494678 +0.494694 0 2.494678 +0.5692344 0 2.494678 +0.6530715 0 2.494678 +0.7474945 0 2.494678 +0.8539475 0 2.494678 +0.974052 0 2.494678 +1.113885 0 2.494678 +1.27456 0 2.494678 +1.458117 0 2.494678 +1.667858 0 2.494678 +1.907556 0 2.494678 +2.181521 0 2.494678 +2.494678 0 2.494678 +2.852659 0 2.494678 +3.261896 0 2.494678 +3.729748 0 2.494678 +4.264621 0 2.494678 +4.876131 0 2.494678 +5.575266 0 2.494678 +6.374593 0 2.494678 +0 0 2.494678 +0 0 2.494678 +0 0 2.494678 +0.002268731 0 2.494678 +0.07076883 0 2.494678 +0.1119241 0 2.494678 +0.1475052 0 2.494678 +0.1846606 0 2.494678 +0.2245119 0 2.494678 +0.2679612 0 2.494678 +0.3158431 0 2.494678 +0.3689944 0 2.494678 +0.4282948 0 2.494678 +0.494694 0 2.494678 +0.5692344 0 2.494678 +0.6530715 0 2.494678 +0.7474945 0 2.494678 +0.8539475 0 2.494678 +0.974052 0 2.494678 +1.113885 0 2.494678 +1.27456 0 2.494678 +1.458117 0 2.494678 +1.667858 0 2.494678 +1.907556 0 2.494678 +2.181521 0 2.494678 +2.494678 0 2.494678 +2.852659 0 2.494678 +3.261896 0 2.494678 +3.729748 0 2.494678 +4.264621 0 2.494678 +4.876131 0 2.494678 +5.575266 0 2.494678 +6.374593 0 2.494678 +0 0 2.494678 +0 0 2.494678 +0 0 2.494678 +0.002268731 0 2.494678 +0.07076883 0 2.494678 +0.1119241 0 2.494678 +0.1475052 0 2.494678 +0.1846606 0 2.494678 +0.2245119 0 2.494678 +0.2679612 0 2.494678 +0.3158431 0 2.494678 +0.3689944 0 2.494678 +0.4282948 0 2.494678 +0.494694 0 2.494678 +0.5692344 0 2.494678 +0.6530715 0 2.494678 +0.7474945 0 2.494678 +0.8539475 0 2.494678 +0.974052 0 2.494678 +1.113885 0 2.494678 +1.27456 0 2.494678 +1.458117 0 2.494678 +1.667858 0 2.494678 +1.907556 0 2.494678 +2.181521 0 2.494678 +2.494678 0 2.494678 +2.852659 0 2.494678 +3.261896 0 2.494678 +3.729748 0 2.494678 +4.264621 0 2.494678 +4.876131 0 2.494678 +5.575266 0 2.494678 +6.374593 0 2.494678 +0 0.002268731 2.494678 +0 0.002268731 2.494678 +0 0.002268731 2.494678 +0.002268731 0.002268731 2.494678 +0.07076883 0.002268731 2.494678 +0.1119241 0.002268731 2.494678 +0.1475052 0.002268731 2.494678 +0.1846606 0.002268731 2.494678 +0.2245119 0.002268731 2.494678 +0.2679612 0.002268731 2.494678 +0.3158431 0.002268731 2.494678 +0.3689944 0.002268731 2.494678 +0.4282948 0.002268731 2.494678 +0.494694 0.002268731 2.494678 +0.5692344 0.002268731 2.494678 +0.6530715 0.002268731 2.494678 +0.7474945 0.002268731 2.494678 +0.8539475 0.002268731 2.494678 +0.974052 0.002268731 2.494678 +1.113885 0.002268731 2.494678 +1.27456 0.002268731 2.494678 +1.458117 0.002268731 2.494678 +1.667858 0.002268731 2.494678 +1.907556 0.002268731 2.494678 +2.181521 0.002268731 2.494678 +2.494678 0.002268731 2.494678 +2.852659 0.002268731 2.494678 +3.261896 0.002268731 2.494678 +3.729748 0.002268731 2.494678 +4.264621 0.002268731 2.494678 +4.876131 0.002268731 2.494678 +5.575266 0.002268731 2.494678 +6.374593 0.002268731 2.494678 +0 0.07076883 2.494678 +0 0.07076883 2.494678 +0 0.07076883 2.494678 +0.002268731 0.07076883 2.494678 +0.07076883 0.07076883 2.494678 +0.1119241 0.07076883 2.494678 +0.1475052 0.07076883 2.494678 +0.1846606 0.07076883 2.494678 +0.2245119 0.07076883 2.494678 +0.2679612 0.07076883 2.494678 +0.3158431 0.07076883 2.494678 +0.3689944 0.07076883 2.494678 +0.4282948 0.07076883 2.494678 +0.494694 0.07076883 2.494678 +0.5692344 0.07076883 2.494678 +0.6530715 0.07076883 2.494678 +0.7474945 0.07076883 2.494678 +0.8539475 0.07076883 2.494678 +0.974052 0.07076883 2.494678 +1.113885 0.07076883 2.494678 +1.27456 0.07076883 2.494678 +1.458117 0.07076883 2.494678 +1.667858 0.07076883 2.494678 +1.907556 0.07076883 2.494678 +2.181521 0.07076883 2.494678 +2.494678 0.07076883 2.494678 +2.852659 0.07076883 2.494678 +3.261896 0.07076883 2.494678 +3.729748 0.07076883 2.494678 +4.264621 0.07076883 2.494678 +4.876131 0.07076883 2.494678 +5.575266 0.07076883 2.494678 +6.374593 0.07076883 2.494678 +0 0.1119241 2.494678 +0 0.1119241 2.494678 +0 0.1119241 2.494678 +0.002268731 0.1119241 2.494678 +0.07076883 0.1119241 2.494678 +0.1119241 0.1119241 2.494678 +0.1475052 0.1119241 2.494678 +0.1846606 0.1119241 2.494678 +0.2245119 0.1119241 2.494678 +0.2679612 0.1119241 2.494678 +0.3158431 0.1119241 2.494678 +0.3689944 0.1119241 2.494678 +0.4282948 0.1119241 2.494678 +0.494694 0.1119241 2.494678 +0.5692344 0.1119241 2.494678 +0.6530715 0.1119241 2.494678 +0.7474945 0.1119241 2.494678 +0.8539475 0.1119241 2.494678 +0.974052 0.1119241 2.494678 +1.113885 0.1119241 2.494678 +1.27456 0.1119241 2.494678 +1.458117 0.1119241 2.494678 +1.667858 0.1119241 2.494678 +1.907556 0.1119241 2.494678 +2.181521 0.1119241 2.494678 +2.494678 0.1119241 2.494678 +2.852659 0.1119241 2.494678 +3.261896 0.1119241 2.494678 +3.729748 0.1119241 2.494678 +4.264621 0.1119241 2.494678 +4.876131 0.1119241 2.494678 +5.575266 0.1119241 2.494678 +6.374593 0.1119241 2.494678 +0 0.1475052 2.494678 +0 0.1475052 2.494678 +0 0.1475052 2.494678 +0.002268731 0.1475052 2.494678 +0.07076883 0.1475052 2.494678 +0.1119241 0.1475052 2.494678 +0.1475052 0.1475052 2.494678 +0.1846606 0.1475052 2.494678 +0.2245119 0.1475052 2.494678 +0.2679612 0.1475052 2.494678 +0.3158431 0.1475052 2.494678 +0.3689944 0.1475052 2.494678 +0.4282948 0.1475052 2.494678 +0.494694 0.1475052 2.494678 +0.5692344 0.1475052 2.494678 +0.6530715 0.1475052 2.494678 +0.7474945 0.1475052 2.494678 +0.8539475 0.1475052 2.494678 +0.974052 0.1475052 2.494678 +1.113885 0.1475052 2.494678 +1.27456 0.1475052 2.494678 +1.458117 0.1475052 2.494678 +1.667858 0.1475052 2.494678 +1.907556 0.1475052 2.494678 +2.181521 0.1475052 2.494678 +2.494678 0.1475052 2.494678 +2.852659 0.1475052 2.494678 +3.261896 0.1475052 2.494678 +3.729748 0.1475052 2.494678 +4.264621 0.1475052 2.494678 +4.876131 0.1475052 2.494678 +5.575266 0.1475052 2.494678 +6.374593 0.1475052 2.494678 +0 0.1846606 2.494678 +0 0.1846606 2.494678 +0 0.1846606 2.494678 +0.002268731 0.1846606 2.494678 +0.07076883 0.1846606 2.494678 +0.1119241 0.1846606 2.494678 +0.1475052 0.1846606 2.494678 +0.1846606 0.1846606 2.494678 +0.2245119 0.1846606 2.494678 +0.2679612 0.1846606 2.494678 +0.3158431 0.1846606 2.494678 +0.3689944 0.1846606 2.494678 +0.4282948 0.1846606 2.494678 +0.494694 0.1846606 2.494678 +0.5692344 0.1846606 2.494678 +0.6530715 0.1846606 2.494678 +0.7474945 0.1846606 2.494678 +0.8539475 0.1846606 2.494678 +0.974052 0.1846606 2.494678 +1.113885 0.1846606 2.494678 +1.27456 0.1846606 2.494678 +1.458117 0.1846606 2.494678 +1.667858 0.1846606 2.494678 +1.907556 0.1846606 2.494678 +2.181521 0.1846606 2.494678 +2.494678 0.1846606 2.494678 +2.852659 0.1846606 2.494678 +3.261896 0.1846606 2.494678 +3.729748 0.1846606 2.494678 +4.264621 0.1846606 2.494678 +4.876131 0.1846606 2.494678 +5.575266 0.1846606 2.494678 +6.374593 0.1846606 2.494678 +0 0.2245119 2.494678 +0 0.2245119 2.494678 +0 0.2245119 2.494678 +0.002268731 0.2245119 2.494678 +0.07076883 0.2245119 2.494678 +0.1119241 0.2245119 2.494678 +0.1475052 0.2245119 2.494678 +0.1846606 0.2245119 2.494678 +0.2245119 0.2245119 2.494678 +0.2679612 0.2245119 2.494678 +0.3158431 0.2245119 2.494678 +0.3689944 0.2245119 2.494678 +0.4282948 0.2245119 2.494678 +0.494694 0.2245119 2.494678 +0.5692344 0.2245119 2.494678 +0.6530715 0.2245119 2.494678 +0.7474945 0.2245119 2.494678 +0.8539475 0.2245119 2.494678 +0.974052 0.2245119 2.494678 +1.113885 0.2245119 2.494678 +1.27456 0.2245119 2.494678 +1.458117 0.2245119 2.494678 +1.667858 0.2245119 2.494678 +1.907556 0.2245119 2.494678 +2.181521 0.2245119 2.494678 +2.494678 0.2245119 2.494678 +2.852659 0.2245119 2.494678 +3.261896 0.2245119 2.494678 +3.729748 0.2245119 2.494678 +4.264621 0.2245119 2.494678 +4.876131 0.2245119 2.494678 +5.575266 0.2245119 2.494678 +6.374593 0.2245119 2.494678 +0 0.2679612 2.494678 +0 0.2679612 2.494678 +0 0.2679612 2.494678 +0.002268731 0.2679612 2.494678 +0.07076883 0.2679612 2.494678 +0.1119241 0.2679612 2.494678 +0.1475052 0.2679612 2.494678 +0.1846606 0.2679612 2.494678 +0.2245119 0.2679612 2.494678 +0.2679612 0.2679612 2.494678 +0.3158431 0.2679612 2.494678 +0.3689944 0.2679612 2.494678 +0.4282948 0.2679612 2.494678 +0.494694 0.2679612 2.494678 +0.5692344 0.2679612 2.494678 +0.6530715 0.2679612 2.494678 +0.7474945 0.2679612 2.494678 +0.8539475 0.2679612 2.494678 +0.974052 0.2679612 2.494678 +1.113885 0.2679612 2.494678 +1.27456 0.2679612 2.494678 +1.458117 0.2679612 2.494678 +1.667858 0.2679612 2.494678 +1.907556 0.2679612 2.494678 +2.181521 0.2679612 2.494678 +2.494678 0.2679612 2.494678 +2.852659 0.2679612 2.494678 +3.261896 0.2679612 2.494678 +3.729748 0.2679612 2.494678 +4.264621 0.2679612 2.494678 +4.876131 0.2679612 2.494678 +5.575266 0.2679612 2.494678 +6.374593 0.2679612 2.494678 +0 0.3158431 2.494678 +0 0.3158431 2.494678 +0 0.3158431 2.494678 +0.002268731 0.3158431 2.494678 +0.07076883 0.3158431 2.494678 +0.1119241 0.3158431 2.494678 +0.1475052 0.3158431 2.494678 +0.1846606 0.3158431 2.494678 +0.2245119 0.3158431 2.494678 +0.2679612 0.3158431 2.494678 +0.3158431 0.3158431 2.494678 +0.3689944 0.3158431 2.494678 +0.4282948 0.3158431 2.494678 +0.494694 0.3158431 2.494678 +0.5692344 0.3158431 2.494678 +0.6530715 0.3158431 2.494678 +0.7474945 0.3158431 2.494678 +0.8539475 0.3158431 2.494678 +0.974052 0.3158431 2.494678 +1.113885 0.3158431 2.494678 +1.27456 0.3158431 2.494678 +1.458117 0.3158431 2.494678 +1.667858 0.3158431 2.494678 +1.907556 0.3158431 2.494678 +2.181521 0.3158431 2.494678 +2.494678 0.3158431 2.494678 +2.852659 0.3158431 2.494678 +3.261896 0.3158431 2.494678 +3.729748 0.3158431 2.494678 +4.264621 0.3158431 2.494678 +4.876131 0.3158431 2.494678 +5.575266 0.3158431 2.494678 +6.374593 0.3158431 2.494678 +0 0.3689944 2.494678 +0 0.3689944 2.494678 +0 0.3689944 2.494678 +0.002268731 0.3689944 2.494678 +0.07076883 0.3689944 2.494678 +0.1119241 0.3689944 2.494678 +0.1475052 0.3689944 2.494678 +0.1846606 0.3689944 2.494678 +0.2245119 0.3689944 2.494678 +0.2679612 0.3689944 2.494678 +0.3158431 0.3689944 2.494678 +0.3689944 0.3689944 2.494678 +0.4282948 0.3689944 2.494678 +0.494694 0.3689944 2.494678 +0.5692344 0.3689944 2.494678 +0.6530715 0.3689944 2.494678 +0.7474945 0.3689944 2.494678 +0.8539475 0.3689944 2.494678 +0.974052 0.3689944 2.494678 +1.113885 0.3689944 2.494678 +1.27456 0.3689944 2.494678 +1.458117 0.3689944 2.494678 +1.667858 0.3689944 2.494678 +1.907556 0.3689944 2.494678 +2.181521 0.3689944 2.494678 +2.494678 0.3689944 2.494678 +2.852659 0.3689944 2.494678 +3.261896 0.3689944 2.494678 +3.729748 0.3689944 2.494678 +4.264621 0.3689944 2.494678 +4.876131 0.3689944 2.494678 +5.575266 0.3689944 2.494678 +6.374593 0.3689944 2.494678 +0 0.4282948 2.494678 +0 0.4282948 2.494678 +0 0.4282948 2.494678 +0.002268731 0.4282948 2.494678 +0.07076883 0.4282948 2.494678 +0.1119241 0.4282948 2.494678 +0.1475052 0.4282948 2.494678 +0.1846606 0.4282948 2.494678 +0.2245119 0.4282948 2.494678 +0.2679612 0.4282948 2.494678 +0.3158431 0.4282948 2.494678 +0.3689944 0.4282948 2.494678 +0.4282948 0.4282948 2.494678 +0.494694 0.4282948 2.494678 +0.5692344 0.4282948 2.494678 +0.6530715 0.4282948 2.494678 +0.7474945 0.4282948 2.494678 +0.8539475 0.4282948 2.494678 +0.974052 0.4282948 2.494678 +1.113885 0.4282948 2.494678 +1.27456 0.4282948 2.494678 +1.458117 0.4282948 2.494678 +1.667858 0.4282948 2.494678 +1.907556 0.4282948 2.494678 +2.181521 0.4282948 2.494678 +2.494678 0.4282948 2.494678 +2.852659 0.4282948 2.494678 +3.261896 0.4282948 2.494678 +3.729748 0.4282948 2.494678 +4.264621 0.4282948 2.494678 +4.876131 0.4282948 2.494678 +5.575266 0.4282948 2.494678 +6.374593 0.4282948 2.494678 +0 0.494694 2.494678 +0 0.494694 2.494678 +0 0.494694 2.494678 +0.002268731 0.494694 2.494678 +0.07076883 0.494694 2.494678 +0.1119241 0.494694 2.494678 +0.1475052 0.494694 2.494678 +0.1846606 0.494694 2.494678 +0.2245119 0.494694 2.494678 +0.2679612 0.494694 2.494678 +0.3158431 0.494694 2.494678 +0.3689944 0.494694 2.494678 +0.4282948 0.494694 2.494678 +0.494694 0.494694 2.494678 +0.5692344 0.494694 2.494678 +0.6530715 0.494694 2.494678 +0.7474945 0.494694 2.494678 +0.8539475 0.494694 2.494678 +0.974052 0.494694 2.494678 +1.113885 0.494694 2.494678 +1.27456 0.494694 2.494678 +1.458117 0.494694 2.494678 +1.667858 0.494694 2.494678 +1.907556 0.494694 2.494678 +2.181521 0.494694 2.494678 +2.494678 0.494694 2.494678 +2.852659 0.494694 2.494678 +3.261896 0.494694 2.494678 +3.729748 0.494694 2.494678 +4.264621 0.494694 2.494678 +4.876131 0.494694 2.494678 +5.575266 0.494694 2.494678 +6.374593 0.494694 2.494678 +0 0.5692344 2.494678 +0 0.5692344 2.494678 +0 0.5692344 2.494678 +0.002268731 0.5692344 2.494678 +0.07076883 0.5692344 2.494678 +0.1119241 0.5692344 2.494678 +0.1475052 0.5692344 2.494678 +0.1846606 0.5692344 2.494678 +0.2245119 0.5692344 2.494678 +0.2679612 0.5692344 2.494678 +0.3158431 0.5692344 2.494678 +0.3689944 0.5692344 2.494678 +0.4282948 0.5692344 2.494678 +0.494694 0.5692344 2.494678 +0.5692344 0.5692344 2.494678 +0.6530715 0.5692344 2.494678 +0.7474945 0.5692344 2.494678 +0.8539475 0.5692344 2.494678 +0.974052 0.5692344 2.494678 +1.113885 0.5692344 2.494678 +1.27456 0.5692344 2.494678 +1.458117 0.5692344 2.494678 +1.667858 0.5692344 2.494678 +1.907556 0.5692344 2.494678 +2.181521 0.5692344 2.494678 +2.494678 0.5692344 2.494678 +2.852659 0.5692344 2.494678 +3.261896 0.5692344 2.494678 +3.729748 0.5692344 2.494678 +4.264621 0.5692344 2.494678 +4.876131 0.5692344 2.494678 +5.575266 0.5692344 2.494678 +6.374593 0.5692344 2.494678 +0 0.6530715 2.494678 +0 0.6530715 2.494678 +0 0.6530715 2.494678 +0.002268731 0.6530715 2.494678 +0.07076883 0.6530715 2.494678 +0.1119241 0.6530715 2.494678 +0.1475052 0.6530715 2.494678 +0.1846606 0.6530715 2.494678 +0.2245119 0.6530715 2.494678 +0.2679612 0.6530715 2.494678 +0.3158431 0.6530715 2.494678 +0.3689944 0.6530715 2.494678 +0.4282948 0.6530715 2.494678 +0.494694 0.6530715 2.494678 +0.5692344 0.6530715 2.494678 +0.6530715 0.6530715 2.494678 +0.7474945 0.6530715 2.494678 +0.8539475 0.6530715 2.494678 +0.974052 0.6530715 2.494678 +1.113885 0.6530715 2.494678 +1.27456 0.6530715 2.494678 +1.458117 0.6530715 2.494678 +1.667858 0.6530715 2.494678 +1.907556 0.6530715 2.494678 +2.181521 0.6530715 2.494678 +2.494678 0.6530715 2.494678 +2.852659 0.6530715 2.494678 +3.261896 0.6530715 2.494678 +3.729748 0.6530715 2.494678 +4.264621 0.6530715 2.494678 +4.876131 0.6530715 2.494678 +5.575266 0.6530715 2.494678 +6.374593 0.6530715 2.494678 +0 0.7474945 2.494678 +0 0.7474945 2.494678 +0 0.7474945 2.494678 +0.002268731 0.7474945 2.494678 +0.07076883 0.7474945 2.494678 +0.1119241 0.7474945 2.494678 +0.1475052 0.7474945 2.494678 +0.1846606 0.7474945 2.494678 +0.2245119 0.7474945 2.494678 +0.2679612 0.7474945 2.494678 +0.3158431 0.7474945 2.494678 +0.3689944 0.7474945 2.494678 +0.4282948 0.7474945 2.494678 +0.494694 0.7474945 2.494678 +0.5692344 0.7474945 2.494678 +0.6530715 0.7474945 2.494678 +0.7474945 0.7474945 2.494678 +0.8539475 0.7474945 2.494678 +0.974052 0.7474945 2.494678 +1.113885 0.7474945 2.494678 +1.27456 0.7474945 2.494678 +1.458117 0.7474945 2.494678 +1.667858 0.7474945 2.494678 +1.907556 0.7474945 2.494678 +2.181521 0.7474945 2.494678 +2.494678 0.7474945 2.494678 +2.852659 0.7474945 2.494678 +3.261896 0.7474945 2.494678 +3.729748 0.7474945 2.494678 +4.264621 0.7474945 2.494678 +4.876131 0.7474945 2.494678 +5.575266 0.7474945 2.494678 +6.374593 0.7474945 2.494678 +0 0.8539475 2.494678 +0 0.8539475 2.494678 +0 0.8539475 2.494678 +0.002268731 0.8539475 2.494678 +0.07076883 0.8539475 2.494678 +0.1119241 0.8539475 2.494678 +0.1475052 0.8539475 2.494678 +0.1846606 0.8539475 2.494678 +0.2245119 0.8539475 2.494678 +0.2679612 0.8539475 2.494678 +0.3158431 0.8539475 2.494678 +0.3689944 0.8539475 2.494678 +0.4282948 0.8539475 2.494678 +0.494694 0.8539475 2.494678 +0.5692344 0.8539475 2.494678 +0.6530715 0.8539475 2.494678 +0.7474945 0.8539475 2.494678 +0.8539475 0.8539475 2.494678 +0.974052 0.8539475 2.494678 +1.113885 0.8539475 2.494678 +1.27456 0.8539475 2.494678 +1.458117 0.8539475 2.494678 +1.667858 0.8539475 2.494678 +1.907556 0.8539475 2.494678 +2.181521 0.8539475 2.494678 +2.494678 0.8539475 2.494678 +2.852659 0.8539475 2.494678 +3.261896 0.8539475 2.494678 +3.729748 0.8539475 2.494678 +4.264621 0.8539475 2.494678 +4.876131 0.8539475 2.494678 +5.575266 0.8539475 2.494678 +6.374593 0.8539475 2.494678 +0 0.974052 2.494678 +0 0.974052 2.494678 +0 0.974052 2.494678 +0.002268731 0.974052 2.494678 +0.07076883 0.974052 2.494678 +0.1119241 0.974052 2.494678 +0.1475052 0.974052 2.494678 +0.1846606 0.974052 2.494678 +0.2245119 0.974052 2.494678 +0.2679612 0.974052 2.494678 +0.3158431 0.974052 2.494678 +0.3689944 0.974052 2.494678 +0.4282948 0.974052 2.494678 +0.494694 0.974052 2.494678 +0.5692344 0.974052 2.494678 +0.6530715 0.974052 2.494678 +0.7474945 0.974052 2.494678 +0.8539475 0.974052 2.494678 +0.974052 0.974052 2.494678 +1.113885 0.974052 2.494678 +1.27456 0.974052 2.494678 +1.458117 0.974052 2.494678 +1.667858 0.974052 2.494678 +1.907556 0.974052 2.494678 +2.181521 0.974052 2.494678 +2.494678 0.974052 2.494678 +2.852659 0.974052 2.494678 +3.261896 0.974052 2.494678 +3.729748 0.974052 2.494678 +4.264621 0.974052 2.494678 +4.876131 0.974052 2.494678 +5.575266 0.974052 2.494678 +6.374593 0.974052 2.494678 +0 1.113885 2.494678 +0 1.113885 2.494678 +0 1.113885 2.494678 +0.002268731 1.113885 2.494678 +0.07076883 1.113885 2.494678 +0.1119241 1.113885 2.494678 +0.1475052 1.113885 2.494678 +0.1846606 1.113885 2.494678 +0.2245119 1.113885 2.494678 +0.2679612 1.113885 2.494678 +0.3158431 1.113885 2.494678 +0.3689944 1.113885 2.494678 +0.4282948 1.113885 2.494678 +0.494694 1.113885 2.494678 +0.5692344 1.113885 2.494678 +0.6530715 1.113885 2.494678 +0.7474945 1.113885 2.494678 +0.8539475 1.113885 2.494678 +0.974052 1.113885 2.494678 +1.113885 1.113885 2.494678 +1.27456 1.113885 2.494678 +1.458117 1.113885 2.494678 +1.667858 1.113885 2.494678 +1.907556 1.113885 2.494678 +2.181521 1.113885 2.494678 +2.494678 1.113885 2.494678 +2.852659 1.113885 2.494678 +3.261896 1.113885 2.494678 +3.729748 1.113885 2.494678 +4.264621 1.113885 2.494678 +4.876131 1.113885 2.494678 +5.575266 1.113885 2.494678 +6.374593 1.113885 2.494678 +0 1.27456 2.494678 +0 1.27456 2.494678 +0 1.27456 2.494678 +0.002268731 1.27456 2.494678 +0.07076883 1.27456 2.494678 +0.1119241 1.27456 2.494678 +0.1475052 1.27456 2.494678 +0.1846606 1.27456 2.494678 +0.2245119 1.27456 2.494678 +0.2679612 1.27456 2.494678 +0.3158431 1.27456 2.494678 +0.3689944 1.27456 2.494678 +0.4282948 1.27456 2.494678 +0.494694 1.27456 2.494678 +0.5692344 1.27456 2.494678 +0.6530715 1.27456 2.494678 +0.7474945 1.27456 2.494678 +0.8539475 1.27456 2.494678 +0.974052 1.27456 2.494678 +1.113885 1.27456 2.494678 +1.27456 1.27456 2.494678 +1.458117 1.27456 2.494678 +1.667858 1.27456 2.494678 +1.907556 1.27456 2.494678 +2.181521 1.27456 2.494678 +2.494678 1.27456 2.494678 +2.852659 1.27456 2.494678 +3.261896 1.27456 2.494678 +3.729748 1.27456 2.494678 +4.264621 1.27456 2.494678 +4.876131 1.27456 2.494678 +5.575266 1.27456 2.494678 +6.374593 1.27456 2.494678 +0 1.458117 2.494678 +0 1.458117 2.494678 +0 1.458117 2.494678 +0.002268731 1.458117 2.494678 +0.07076883 1.458117 2.494678 +0.1119241 1.458117 2.494678 +0.1475052 1.458117 2.494678 +0.1846606 1.458117 2.494678 +0.2245119 1.458117 2.494678 +0.2679612 1.458117 2.494678 +0.3158431 1.458117 2.494678 +0.3689944 1.458117 2.494678 +0.4282948 1.458117 2.494678 +0.494694 1.458117 2.494678 +0.5692344 1.458117 2.494678 +0.6530715 1.458117 2.494678 +0.7474945 1.458117 2.494678 +0.8539475 1.458117 2.494678 +0.974052 1.458117 2.494678 +1.113885 1.458117 2.494678 +1.27456 1.458117 2.494678 +1.458117 1.458117 2.494678 +1.667858 1.458117 2.494678 +1.907556 1.458117 2.494678 +2.181521 1.458117 2.494678 +2.494678 1.458117 2.494678 +2.852659 1.458117 2.494678 +3.261896 1.458117 2.494678 +3.729748 1.458117 2.494678 +4.264621 1.458117 2.494678 +4.876131 1.458117 2.494678 +5.575266 1.458117 2.494678 +6.374593 1.458117 2.494678 +0 1.667858 2.494678 +0 1.667858 2.494678 +0 1.667858 2.494678 +0.002268731 1.667858 2.494678 +0.07076883 1.667858 2.494678 +0.1119241 1.667858 2.494678 +0.1475052 1.667858 2.494678 +0.1846606 1.667858 2.494678 +0.2245119 1.667858 2.494678 +0.2679612 1.667858 2.494678 +0.3158431 1.667858 2.494678 +0.3689944 1.667858 2.494678 +0.4282948 1.667858 2.494678 +0.494694 1.667858 2.494678 +0.5692344 1.667858 2.494678 +0.6530715 1.667858 2.494678 +0.7474945 1.667858 2.494678 +0.8539475 1.667858 2.494678 +0.974052 1.667858 2.494678 +1.113885 1.667858 2.494678 +1.27456 1.667858 2.494678 +1.458117 1.667858 2.494678 +1.667858 1.667858 2.494678 +1.907556 1.667858 2.494678 +2.181521 1.667858 2.494678 +2.494678 1.667858 2.494678 +2.852659 1.667858 2.494678 +3.261896 1.667858 2.494678 +3.729748 1.667858 2.494678 +4.264621 1.667858 2.494678 +4.876131 1.667858 2.494678 +5.575266 1.667858 2.494678 +6.374593 1.667858 2.494678 +0 1.907556 2.494678 +0 1.907556 2.494678 +0 1.907556 2.494678 +0.002268731 1.907556 2.494678 +0.07076883 1.907556 2.494678 +0.1119241 1.907556 2.494678 +0.1475052 1.907556 2.494678 +0.1846606 1.907556 2.494678 +0.2245119 1.907556 2.494678 +0.2679612 1.907556 2.494678 +0.3158431 1.907556 2.494678 +0.3689944 1.907556 2.494678 +0.4282948 1.907556 2.494678 +0.494694 1.907556 2.494678 +0.5692344 1.907556 2.494678 +0.6530715 1.907556 2.494678 +0.7474945 1.907556 2.494678 +0.8539475 1.907556 2.494678 +0.974052 1.907556 2.494678 +1.113885 1.907556 2.494678 +1.27456 1.907556 2.494678 +1.458117 1.907556 2.494678 +1.667858 1.907556 2.494678 +1.907556 1.907556 2.494678 +2.181521 1.907556 2.494678 +2.494678 1.907556 2.494678 +2.852659 1.907556 2.494678 +3.261896 1.907556 2.494678 +3.729748 1.907556 2.494678 +4.264621 1.907556 2.494678 +4.876131 1.907556 2.494678 +5.575266 1.907556 2.494678 +6.374593 1.907556 2.494678 +0 2.181521 2.494678 +0 2.181521 2.494678 +0 2.181521 2.494678 +0.002268731 2.181521 2.494678 +0.07076883 2.181521 2.494678 +0.1119241 2.181521 2.494678 +0.1475052 2.181521 2.494678 +0.1846606 2.181521 2.494678 +0.2245119 2.181521 2.494678 +0.2679612 2.181521 2.494678 +0.3158431 2.181521 2.494678 +0.3689944 2.181521 2.494678 +0.4282948 2.181521 2.494678 +0.494694 2.181521 2.494678 +0.5692344 2.181521 2.494678 +0.6530715 2.181521 2.494678 +0.7474945 2.181521 2.494678 +0.8539475 2.181521 2.494678 +0.974052 2.181521 2.494678 +1.113885 2.181521 2.494678 +1.27456 2.181521 2.494678 +1.458117 2.181521 2.494678 +1.667858 2.181521 2.494678 +1.907556 2.181521 2.494678 +2.181521 2.181521 2.494678 +2.494678 2.181521 2.494678 +2.852659 2.181521 2.494678 +3.261896 2.181521 2.494678 +3.729748 2.181521 2.494678 +4.264621 2.181521 2.494678 +4.876131 2.181521 2.494678 +5.575266 2.181521 2.494678 +6.374593 2.181521 2.494678 +0 2.494678 2.494678 +0 2.494678 2.494678 +0 2.494678 2.494678 +0.002268731 2.494678 2.494678 +0.07076883 2.494678 2.494678 +0.1119241 2.494678 2.494678 +0.1475052 2.494678 2.494678 +0.1846606 2.494678 2.494678 +0.2245119 2.494678 2.494678 +0.2679612 2.494678 2.494678 +0.3158431 2.494678 2.494678 +0.3689944 2.494678 2.494678 +0.4282948 2.494678 2.494678 +0.494694 2.494678 2.494678 +0.5692344 2.494678 2.494678 +0.6530715 2.494678 2.494678 +0.7474945 2.494678 2.494678 +0.8539475 2.494678 2.494678 +0.974052 2.494678 2.494678 +1.113885 2.494678 2.494678 +1.27456 2.494678 2.494678 +1.458117 2.494678 2.494678 +1.667858 2.494678 2.494678 +1.907556 2.494678 2.494678 +2.181521 2.494678 2.494678 +2.494678 2.494678 2.494678 +2.852659 2.494678 2.494678 +3.261896 2.494678 2.494678 +3.729748 2.494678 2.494678 +4.264621 2.494678 2.494678 +4.876131 2.494678 2.494678 +5.575266 2.494678 2.494678 +6.374593 2.494678 2.494678 +0 2.852659 2.494678 +0 2.852659 2.494678 +0 2.852659 2.494678 +0.002268731 2.852659 2.494678 +0.07076883 2.852659 2.494678 +0.1119241 2.852659 2.494678 +0.1475052 2.852659 2.494678 +0.1846606 2.852659 2.494678 +0.2245119 2.852659 2.494678 +0.2679612 2.852659 2.494678 +0.3158431 2.852659 2.494678 +0.3689944 2.852659 2.494678 +0.4282948 2.852659 2.494678 +0.494694 2.852659 2.494678 +0.5692344 2.852659 2.494678 +0.6530715 2.852659 2.494678 +0.7474945 2.852659 2.494678 +0.8539475 2.852659 2.494678 +0.974052 2.852659 2.494678 +1.113885 2.852659 2.494678 +1.27456 2.852659 2.494678 +1.458117 2.852659 2.494678 +1.667858 2.852659 2.494678 +1.907556 2.852659 2.494678 +2.181521 2.852659 2.494678 +2.494678 2.852659 2.494678 +2.852659 2.852659 2.494678 +3.261896 2.852659 2.494678 +3.729748 2.852659 2.494678 +4.264621 2.852659 2.494678 +4.876131 2.852659 2.494678 +5.575266 2.852659 2.494678 +6.374593 2.852659 2.494678 +0 3.261896 2.494678 +0 3.261896 2.494678 +0 3.261896 2.494678 +0.002268731 3.261896 2.494678 +0.07076883 3.261896 2.494678 +0.1119241 3.261896 2.494678 +0.1475052 3.261896 2.494678 +0.1846606 3.261896 2.494678 +0.2245119 3.261896 2.494678 +0.2679612 3.261896 2.494678 +0.3158431 3.261896 2.494678 +0.3689944 3.261896 2.494678 +0.4282948 3.261896 2.494678 +0.494694 3.261896 2.494678 +0.5692344 3.261896 2.494678 +0.6530715 3.261896 2.494678 +0.7474945 3.261896 2.494678 +0.8539475 3.261896 2.494678 +0.974052 3.261896 2.494678 +1.113885 3.261896 2.494678 +1.27456 3.261896 2.494678 +1.458117 3.261896 2.494678 +1.667858 3.261896 2.494678 +1.907556 3.261896 2.494678 +2.181521 3.261896 2.494678 +2.494678 3.261896 2.494678 +2.852659 3.261896 2.494678 +3.261896 3.261896 2.494678 +3.729748 3.261896 2.494678 +4.264621 3.261896 2.494678 +4.876131 3.261896 2.494678 +5.575266 3.261896 2.494678 +6.374593 3.261896 2.494678 +0 3.729748 2.494678 +0 3.729748 2.494678 +0 3.729748 2.494678 +0.002268731 3.729748 2.494678 +0.07076883 3.729748 2.494678 +0.1119241 3.729748 2.494678 +0.1475052 3.729748 2.494678 +0.1846606 3.729748 2.494678 +0.2245119 3.729748 2.494678 +0.2679612 3.729748 2.494678 +0.3158431 3.729748 2.494678 +0.3689944 3.729748 2.494678 +0.4282948 3.729748 2.494678 +0.494694 3.729748 2.494678 +0.5692344 3.729748 2.494678 +0.6530715 3.729748 2.494678 +0.7474945 3.729748 2.494678 +0.8539475 3.729748 2.494678 +0.974052 3.729748 2.494678 +1.113885 3.729748 2.494678 +1.27456 3.729748 2.494678 +1.458117 3.729748 2.494678 +1.667858 3.729748 2.494678 +1.907556 3.729748 2.494678 +2.181521 3.729748 2.494678 +2.494678 3.729748 2.494678 +2.852659 3.729748 2.494678 +3.261896 3.729748 2.494678 +3.729748 3.729748 2.494678 +4.264621 3.729748 2.494678 +4.876131 3.729748 2.494678 +5.575266 3.729748 2.494678 +6.374593 3.729748 2.494678 +0 4.264621 2.494678 +0 4.264621 2.494678 +0 4.264621 2.494678 +0.002268731 4.264621 2.494678 +0.07076883 4.264621 2.494678 +0.1119241 4.264621 2.494678 +0.1475052 4.264621 2.494678 +0.1846606 4.264621 2.494678 +0.2245119 4.264621 2.494678 +0.2679612 4.264621 2.494678 +0.3158431 4.264621 2.494678 +0.3689944 4.264621 2.494678 +0.4282948 4.264621 2.494678 +0.494694 4.264621 2.494678 +0.5692344 4.264621 2.494678 +0.6530715 4.264621 2.494678 +0.7474945 4.264621 2.494678 +0.8539475 4.264621 2.494678 +0.974052 4.264621 2.494678 +1.113885 4.264621 2.494678 +1.27456 4.264621 2.494678 +1.458117 4.264621 2.494678 +1.667858 4.264621 2.494678 +1.907556 4.264621 2.494678 +2.181521 4.264621 2.494678 +2.494678 4.264621 2.494678 +2.852659 4.264621 2.494678 +3.261896 4.264621 2.494678 +3.729748 4.264621 2.494678 +4.264621 4.264621 2.494678 +4.876131 4.264621 2.494678 +5.575266 4.264621 2.494678 +6.374593 4.264621 2.494678 +0 4.876131 2.494678 +0 4.876131 2.494678 +0 4.876131 2.494678 +0.002268731 4.876131 2.494678 +0.07076883 4.876131 2.494678 +0.1119241 4.876131 2.494678 +0.1475052 4.876131 2.494678 +0.1846606 4.876131 2.494678 +0.2245119 4.876131 2.494678 +0.2679612 4.876131 2.494678 +0.3158431 4.876131 2.494678 +0.3689944 4.876131 2.494678 +0.4282948 4.876131 2.494678 +0.494694 4.876131 2.494678 +0.5692344 4.876131 2.494678 +0.6530715 4.876131 2.494678 +0.7474945 4.876131 2.494678 +0.8539475 4.876131 2.494678 +0.974052 4.876131 2.494678 +1.113885 4.876131 2.494678 +1.27456 4.876131 2.494678 +1.458117 4.876131 2.494678 +1.667858 4.876131 2.494678 +1.907556 4.876131 2.494678 +2.181521 4.876131 2.494678 +2.494678 4.876131 2.494678 +2.852659 4.876131 2.494678 +3.261896 4.876131 2.494678 +3.729748 4.876131 2.494678 +4.264621 4.876131 2.494678 +4.876131 4.876131 2.494678 +5.575266 4.876131 2.494678 +6.374593 4.876131 2.494678 +0 5.575266 2.494678 +0 5.575266 2.494678 +0 5.575266 2.494678 +0.002268731 5.575266 2.494678 +0.07076883 5.575266 2.494678 +0.1119241 5.575266 2.494678 +0.1475052 5.575266 2.494678 +0.1846606 5.575266 2.494678 +0.2245119 5.575266 2.494678 +0.2679612 5.575266 2.494678 +0.3158431 5.575266 2.494678 +0.3689944 5.575266 2.494678 +0.4282948 5.575266 2.494678 +0.494694 5.575266 2.494678 +0.5692344 5.575266 2.494678 +0.6530715 5.575266 2.494678 +0.7474945 5.575266 2.494678 +0.8539475 5.575266 2.494678 +0.974052 5.575266 2.494678 +1.113885 5.575266 2.494678 +1.27456 5.575266 2.494678 +1.458117 5.575266 2.494678 +1.667858 5.575266 2.494678 +1.907556 5.575266 2.494678 +2.181521 5.575266 2.494678 +2.494678 5.575266 2.494678 +2.852659 5.575266 2.494678 +3.261896 5.575266 2.494678 +3.729748 5.575266 2.494678 +4.264621 5.575266 2.494678 +4.876131 5.575266 2.494678 +5.575266 5.575266 2.494678 +6.374593 5.575266 2.494678 +0 6.374593 2.494678 +0 6.374593 2.494678 +0 6.374593 2.494678 +0.002268731 6.374593 2.494678 +0.07076883 6.374593 2.494678 +0.1119241 6.374593 2.494678 +0.1475052 6.374593 2.494678 +0.1846606 6.374593 2.494678 +0.2245119 6.374593 2.494678 +0.2679612 6.374593 2.494678 +0.3158431 6.374593 2.494678 +0.3689944 6.374593 2.494678 +0.4282948 6.374593 2.494678 +0.494694 6.374593 2.494678 +0.5692344 6.374593 2.494678 +0.6530715 6.374593 2.494678 +0.7474945 6.374593 2.494678 +0.8539475 6.374593 2.494678 +0.974052 6.374593 2.494678 +1.113885 6.374593 2.494678 +1.27456 6.374593 2.494678 +1.458117 6.374593 2.494678 +1.667858 6.374593 2.494678 +1.907556 6.374593 2.494678 +2.181521 6.374593 2.494678 +2.494678 6.374593 2.494678 +2.852659 6.374593 2.494678 +3.261896 6.374593 2.494678 +3.729748 6.374593 2.494678 +4.264621 6.374593 2.494678 +4.876131 6.374593 2.494678 +5.575266 6.374593 2.494678 +6.374593 6.374593 2.494678 +0 0 2.852659 +0 0 2.852659 +0 0 2.852659 +0.002268731 0 2.852659 +0.07076883 0 2.852659 +0.1119241 0 2.852659 +0.1475052 0 2.852659 +0.1846606 0 2.852659 +0.2245119 0 2.852659 +0.2679612 0 2.852659 +0.3158431 0 2.852659 +0.3689944 0 2.852659 +0.4282948 0 2.852659 +0.494694 0 2.852659 +0.5692344 0 2.852659 +0.6530715 0 2.852659 +0.7474945 0 2.852659 +0.8539475 0 2.852659 +0.974052 0 2.852659 +1.113885 0 2.852659 +1.27456 0 2.852659 +1.458117 0 2.852659 +1.667858 0 2.852659 +1.907556 0 2.852659 +2.181521 0 2.852659 +2.494678 0 2.852659 +2.852659 0 2.852659 +3.261896 0 2.852659 +3.729748 0 2.852659 +4.264621 0 2.852659 +4.876131 0 2.852659 +5.575266 0 2.852659 +6.374593 0 2.852659 +0 0 2.852659 +0 0 2.852659 +0 0 2.852659 +0.002268731 0 2.852659 +0.07076883 0 2.852659 +0.1119241 0 2.852659 +0.1475052 0 2.852659 +0.1846606 0 2.852659 +0.2245119 0 2.852659 +0.2679612 0 2.852659 +0.3158431 0 2.852659 +0.3689944 0 2.852659 +0.4282948 0 2.852659 +0.494694 0 2.852659 +0.5692344 0 2.852659 +0.6530715 0 2.852659 +0.7474945 0 2.852659 +0.8539475 0 2.852659 +0.974052 0 2.852659 +1.113885 0 2.852659 +1.27456 0 2.852659 +1.458117 0 2.852659 +1.667858 0 2.852659 +1.907556 0 2.852659 +2.181521 0 2.852659 +2.494678 0 2.852659 +2.852659 0 2.852659 +3.261896 0 2.852659 +3.729748 0 2.852659 +4.264621 0 2.852659 +4.876131 0 2.852659 +5.575266 0 2.852659 +6.374593 0 2.852659 +0 0 2.852659 +0 0 2.852659 +0 0 2.852659 +0.002268731 0 2.852659 +0.07076883 0 2.852659 +0.1119241 0 2.852659 +0.1475052 0 2.852659 +0.1846606 0 2.852659 +0.2245119 0 2.852659 +0.2679612 0 2.852659 +0.3158431 0 2.852659 +0.3689944 0 2.852659 +0.4282948 0 2.852659 +0.494694 0 2.852659 +0.5692344 0 2.852659 +0.6530715 0 2.852659 +0.7474945 0 2.852659 +0.8539475 0 2.852659 +0.974052 0 2.852659 +1.113885 0 2.852659 +1.27456 0 2.852659 +1.458117 0 2.852659 +1.667858 0 2.852659 +1.907556 0 2.852659 +2.181521 0 2.852659 +2.494678 0 2.852659 +2.852659 0 2.852659 +3.261896 0 2.852659 +3.729748 0 2.852659 +4.264621 0 2.852659 +4.876131 0 2.852659 +5.575266 0 2.852659 +6.374593 0 2.852659 +0 0.002268731 2.852659 +0 0.002268731 2.852659 +0 0.002268731 2.852659 +0.002268731 0.002268731 2.852659 +0.07076883 0.002268731 2.852659 +0.1119241 0.002268731 2.852659 +0.1475052 0.002268731 2.852659 +0.1846606 0.002268731 2.852659 +0.2245119 0.002268731 2.852659 +0.2679612 0.002268731 2.852659 +0.3158431 0.002268731 2.852659 +0.3689944 0.002268731 2.852659 +0.4282948 0.002268731 2.852659 +0.494694 0.002268731 2.852659 +0.5692344 0.002268731 2.852659 +0.6530715 0.002268731 2.852659 +0.7474945 0.002268731 2.852659 +0.8539475 0.002268731 2.852659 +0.974052 0.002268731 2.852659 +1.113885 0.002268731 2.852659 +1.27456 0.002268731 2.852659 +1.458117 0.002268731 2.852659 +1.667858 0.002268731 2.852659 +1.907556 0.002268731 2.852659 +2.181521 0.002268731 2.852659 +2.494678 0.002268731 2.852659 +2.852659 0.002268731 2.852659 +3.261896 0.002268731 2.852659 +3.729748 0.002268731 2.852659 +4.264621 0.002268731 2.852659 +4.876131 0.002268731 2.852659 +5.575266 0.002268731 2.852659 +6.374593 0.002268731 2.852659 +0 0.07076883 2.852659 +0 0.07076883 2.852659 +0 0.07076883 2.852659 +0.002268731 0.07076883 2.852659 +0.07076883 0.07076883 2.852659 +0.1119241 0.07076883 2.852659 +0.1475052 0.07076883 2.852659 +0.1846606 0.07076883 2.852659 +0.2245119 0.07076883 2.852659 +0.2679612 0.07076883 2.852659 +0.3158431 0.07076883 2.852659 +0.3689944 0.07076883 2.852659 +0.4282948 0.07076883 2.852659 +0.494694 0.07076883 2.852659 +0.5692344 0.07076883 2.852659 +0.6530715 0.07076883 2.852659 +0.7474945 0.07076883 2.852659 +0.8539475 0.07076883 2.852659 +0.974052 0.07076883 2.852659 +1.113885 0.07076883 2.852659 +1.27456 0.07076883 2.852659 +1.458117 0.07076883 2.852659 +1.667858 0.07076883 2.852659 +1.907556 0.07076883 2.852659 +2.181521 0.07076883 2.852659 +2.494678 0.07076883 2.852659 +2.852659 0.07076883 2.852659 +3.261896 0.07076883 2.852659 +3.729748 0.07076883 2.852659 +4.264621 0.07076883 2.852659 +4.876131 0.07076883 2.852659 +5.575266 0.07076883 2.852659 +6.374593 0.07076883 2.852659 +0 0.1119241 2.852659 +0 0.1119241 2.852659 +0 0.1119241 2.852659 +0.002268731 0.1119241 2.852659 +0.07076883 0.1119241 2.852659 +0.1119241 0.1119241 2.852659 +0.1475052 0.1119241 2.852659 +0.1846606 0.1119241 2.852659 +0.2245119 0.1119241 2.852659 +0.2679612 0.1119241 2.852659 +0.3158431 0.1119241 2.852659 +0.3689944 0.1119241 2.852659 +0.4282948 0.1119241 2.852659 +0.494694 0.1119241 2.852659 +0.5692344 0.1119241 2.852659 +0.6530715 0.1119241 2.852659 +0.7474945 0.1119241 2.852659 +0.8539475 0.1119241 2.852659 +0.974052 0.1119241 2.852659 +1.113885 0.1119241 2.852659 +1.27456 0.1119241 2.852659 +1.458117 0.1119241 2.852659 +1.667858 0.1119241 2.852659 +1.907556 0.1119241 2.852659 +2.181521 0.1119241 2.852659 +2.494678 0.1119241 2.852659 +2.852659 0.1119241 2.852659 +3.261896 0.1119241 2.852659 +3.729748 0.1119241 2.852659 +4.264621 0.1119241 2.852659 +4.876131 0.1119241 2.852659 +5.575266 0.1119241 2.852659 +6.374593 0.1119241 2.852659 +0 0.1475052 2.852659 +0 0.1475052 2.852659 +0 0.1475052 2.852659 +0.002268731 0.1475052 2.852659 +0.07076883 0.1475052 2.852659 +0.1119241 0.1475052 2.852659 +0.1475052 0.1475052 2.852659 +0.1846606 0.1475052 2.852659 +0.2245119 0.1475052 2.852659 +0.2679612 0.1475052 2.852659 +0.3158431 0.1475052 2.852659 +0.3689944 0.1475052 2.852659 +0.4282948 0.1475052 2.852659 +0.494694 0.1475052 2.852659 +0.5692344 0.1475052 2.852659 +0.6530715 0.1475052 2.852659 +0.7474945 0.1475052 2.852659 +0.8539475 0.1475052 2.852659 +0.974052 0.1475052 2.852659 +1.113885 0.1475052 2.852659 +1.27456 0.1475052 2.852659 +1.458117 0.1475052 2.852659 +1.667858 0.1475052 2.852659 +1.907556 0.1475052 2.852659 +2.181521 0.1475052 2.852659 +2.494678 0.1475052 2.852659 +2.852659 0.1475052 2.852659 +3.261896 0.1475052 2.852659 +3.729748 0.1475052 2.852659 +4.264621 0.1475052 2.852659 +4.876131 0.1475052 2.852659 +5.575266 0.1475052 2.852659 +6.374593 0.1475052 2.852659 +0 0.1846606 2.852659 +0 0.1846606 2.852659 +0 0.1846606 2.852659 +0.002268731 0.1846606 2.852659 +0.07076883 0.1846606 2.852659 +0.1119241 0.1846606 2.852659 +0.1475052 0.1846606 2.852659 +0.1846606 0.1846606 2.852659 +0.2245119 0.1846606 2.852659 +0.2679612 0.1846606 2.852659 +0.3158431 0.1846606 2.852659 +0.3689944 0.1846606 2.852659 +0.4282948 0.1846606 2.852659 +0.494694 0.1846606 2.852659 +0.5692344 0.1846606 2.852659 +0.6530715 0.1846606 2.852659 +0.7474945 0.1846606 2.852659 +0.8539475 0.1846606 2.852659 +0.974052 0.1846606 2.852659 +1.113885 0.1846606 2.852659 +1.27456 0.1846606 2.852659 +1.458117 0.1846606 2.852659 +1.667858 0.1846606 2.852659 +1.907556 0.1846606 2.852659 +2.181521 0.1846606 2.852659 +2.494678 0.1846606 2.852659 +2.852659 0.1846606 2.852659 +3.261896 0.1846606 2.852659 +3.729748 0.1846606 2.852659 +4.264621 0.1846606 2.852659 +4.876131 0.1846606 2.852659 +5.575266 0.1846606 2.852659 +6.374593 0.1846606 2.852659 +0 0.2245119 2.852659 +0 0.2245119 2.852659 +0 0.2245119 2.852659 +0.002268731 0.2245119 2.852659 +0.07076883 0.2245119 2.852659 +0.1119241 0.2245119 2.852659 +0.1475052 0.2245119 2.852659 +0.1846606 0.2245119 2.852659 +0.2245119 0.2245119 2.852659 +0.2679612 0.2245119 2.852659 +0.3158431 0.2245119 2.852659 +0.3689944 0.2245119 2.852659 +0.4282948 0.2245119 2.852659 +0.494694 0.2245119 2.852659 +0.5692344 0.2245119 2.852659 +0.6530715 0.2245119 2.852659 +0.7474945 0.2245119 2.852659 +0.8539475 0.2245119 2.852659 +0.974052 0.2245119 2.852659 +1.113885 0.2245119 2.852659 +1.27456 0.2245119 2.852659 +1.458117 0.2245119 2.852659 +1.667858 0.2245119 2.852659 +1.907556 0.2245119 2.852659 +2.181521 0.2245119 2.852659 +2.494678 0.2245119 2.852659 +2.852659 0.2245119 2.852659 +3.261896 0.2245119 2.852659 +3.729748 0.2245119 2.852659 +4.264621 0.2245119 2.852659 +4.876131 0.2245119 2.852659 +5.575266 0.2245119 2.852659 +6.374593 0.2245119 2.852659 +0 0.2679612 2.852659 +0 0.2679612 2.852659 +0 0.2679612 2.852659 +0.002268731 0.2679612 2.852659 +0.07076883 0.2679612 2.852659 +0.1119241 0.2679612 2.852659 +0.1475052 0.2679612 2.852659 +0.1846606 0.2679612 2.852659 +0.2245119 0.2679612 2.852659 +0.2679612 0.2679612 2.852659 +0.3158431 0.2679612 2.852659 +0.3689944 0.2679612 2.852659 +0.4282948 0.2679612 2.852659 +0.494694 0.2679612 2.852659 +0.5692344 0.2679612 2.852659 +0.6530715 0.2679612 2.852659 +0.7474945 0.2679612 2.852659 +0.8539475 0.2679612 2.852659 +0.974052 0.2679612 2.852659 +1.113885 0.2679612 2.852659 +1.27456 0.2679612 2.852659 +1.458117 0.2679612 2.852659 +1.667858 0.2679612 2.852659 +1.907556 0.2679612 2.852659 +2.181521 0.2679612 2.852659 +2.494678 0.2679612 2.852659 +2.852659 0.2679612 2.852659 +3.261896 0.2679612 2.852659 +3.729748 0.2679612 2.852659 +4.264621 0.2679612 2.852659 +4.876131 0.2679612 2.852659 +5.575266 0.2679612 2.852659 +6.374593 0.2679612 2.852659 +0 0.3158431 2.852659 +0 0.3158431 2.852659 +0 0.3158431 2.852659 +0.002268731 0.3158431 2.852659 +0.07076883 0.3158431 2.852659 +0.1119241 0.3158431 2.852659 +0.1475052 0.3158431 2.852659 +0.1846606 0.3158431 2.852659 +0.2245119 0.3158431 2.852659 +0.2679612 0.3158431 2.852659 +0.3158431 0.3158431 2.852659 +0.3689944 0.3158431 2.852659 +0.4282948 0.3158431 2.852659 +0.494694 0.3158431 2.852659 +0.5692344 0.3158431 2.852659 +0.6530715 0.3158431 2.852659 +0.7474945 0.3158431 2.852659 +0.8539475 0.3158431 2.852659 +0.974052 0.3158431 2.852659 +1.113885 0.3158431 2.852659 +1.27456 0.3158431 2.852659 +1.458117 0.3158431 2.852659 +1.667858 0.3158431 2.852659 +1.907556 0.3158431 2.852659 +2.181521 0.3158431 2.852659 +2.494678 0.3158431 2.852659 +2.852659 0.3158431 2.852659 +3.261896 0.3158431 2.852659 +3.729748 0.3158431 2.852659 +4.264621 0.3158431 2.852659 +4.876131 0.3158431 2.852659 +5.575266 0.3158431 2.852659 +6.374593 0.3158431 2.852659 +0 0.3689944 2.852659 +0 0.3689944 2.852659 +0 0.3689944 2.852659 +0.002268731 0.3689944 2.852659 +0.07076883 0.3689944 2.852659 +0.1119241 0.3689944 2.852659 +0.1475052 0.3689944 2.852659 +0.1846606 0.3689944 2.852659 +0.2245119 0.3689944 2.852659 +0.2679612 0.3689944 2.852659 +0.3158431 0.3689944 2.852659 +0.3689944 0.3689944 2.852659 +0.4282948 0.3689944 2.852659 +0.494694 0.3689944 2.852659 +0.5692344 0.3689944 2.852659 +0.6530715 0.3689944 2.852659 +0.7474945 0.3689944 2.852659 +0.8539475 0.3689944 2.852659 +0.974052 0.3689944 2.852659 +1.113885 0.3689944 2.852659 +1.27456 0.3689944 2.852659 +1.458117 0.3689944 2.852659 +1.667858 0.3689944 2.852659 +1.907556 0.3689944 2.852659 +2.181521 0.3689944 2.852659 +2.494678 0.3689944 2.852659 +2.852659 0.3689944 2.852659 +3.261896 0.3689944 2.852659 +3.729748 0.3689944 2.852659 +4.264621 0.3689944 2.852659 +4.876131 0.3689944 2.852659 +5.575266 0.3689944 2.852659 +6.374593 0.3689944 2.852659 +0 0.4282948 2.852659 +0 0.4282948 2.852659 +0 0.4282948 2.852659 +0.002268731 0.4282948 2.852659 +0.07076883 0.4282948 2.852659 +0.1119241 0.4282948 2.852659 +0.1475052 0.4282948 2.852659 +0.1846606 0.4282948 2.852659 +0.2245119 0.4282948 2.852659 +0.2679612 0.4282948 2.852659 +0.3158431 0.4282948 2.852659 +0.3689944 0.4282948 2.852659 +0.4282948 0.4282948 2.852659 +0.494694 0.4282948 2.852659 +0.5692344 0.4282948 2.852659 +0.6530715 0.4282948 2.852659 +0.7474945 0.4282948 2.852659 +0.8539475 0.4282948 2.852659 +0.974052 0.4282948 2.852659 +1.113885 0.4282948 2.852659 +1.27456 0.4282948 2.852659 +1.458117 0.4282948 2.852659 +1.667858 0.4282948 2.852659 +1.907556 0.4282948 2.852659 +2.181521 0.4282948 2.852659 +2.494678 0.4282948 2.852659 +2.852659 0.4282948 2.852659 +3.261896 0.4282948 2.852659 +3.729748 0.4282948 2.852659 +4.264621 0.4282948 2.852659 +4.876131 0.4282948 2.852659 +5.575266 0.4282948 2.852659 +6.374593 0.4282948 2.852659 +0 0.494694 2.852659 +0 0.494694 2.852659 +0 0.494694 2.852659 +0.002268731 0.494694 2.852659 +0.07076883 0.494694 2.852659 +0.1119241 0.494694 2.852659 +0.1475052 0.494694 2.852659 +0.1846606 0.494694 2.852659 +0.2245119 0.494694 2.852659 +0.2679612 0.494694 2.852659 +0.3158431 0.494694 2.852659 +0.3689944 0.494694 2.852659 +0.4282948 0.494694 2.852659 +0.494694 0.494694 2.852659 +0.5692344 0.494694 2.852659 +0.6530715 0.494694 2.852659 +0.7474945 0.494694 2.852659 +0.8539475 0.494694 2.852659 +0.974052 0.494694 2.852659 +1.113885 0.494694 2.852659 +1.27456 0.494694 2.852659 +1.458117 0.494694 2.852659 +1.667858 0.494694 2.852659 +1.907556 0.494694 2.852659 +2.181521 0.494694 2.852659 +2.494678 0.494694 2.852659 +2.852659 0.494694 2.852659 +3.261896 0.494694 2.852659 +3.729748 0.494694 2.852659 +4.264621 0.494694 2.852659 +4.876131 0.494694 2.852659 +5.575266 0.494694 2.852659 +6.374593 0.494694 2.852659 +0 0.5692344 2.852659 +0 0.5692344 2.852659 +0 0.5692344 2.852659 +0.002268731 0.5692344 2.852659 +0.07076883 0.5692344 2.852659 +0.1119241 0.5692344 2.852659 +0.1475052 0.5692344 2.852659 +0.1846606 0.5692344 2.852659 +0.2245119 0.5692344 2.852659 +0.2679612 0.5692344 2.852659 +0.3158431 0.5692344 2.852659 +0.3689944 0.5692344 2.852659 +0.4282948 0.5692344 2.852659 +0.494694 0.5692344 2.852659 +0.5692344 0.5692344 2.852659 +0.6530715 0.5692344 2.852659 +0.7474945 0.5692344 2.852659 +0.8539475 0.5692344 2.852659 +0.974052 0.5692344 2.852659 +1.113885 0.5692344 2.852659 +1.27456 0.5692344 2.852659 +1.458117 0.5692344 2.852659 +1.667858 0.5692344 2.852659 +1.907556 0.5692344 2.852659 +2.181521 0.5692344 2.852659 +2.494678 0.5692344 2.852659 +2.852659 0.5692344 2.852659 +3.261896 0.5692344 2.852659 +3.729748 0.5692344 2.852659 +4.264621 0.5692344 2.852659 +4.876131 0.5692344 2.852659 +5.575266 0.5692344 2.852659 +6.374593 0.5692344 2.852659 +0 0.6530715 2.852659 +0 0.6530715 2.852659 +0 0.6530715 2.852659 +0.002268731 0.6530715 2.852659 +0.07076883 0.6530715 2.852659 +0.1119241 0.6530715 2.852659 +0.1475052 0.6530715 2.852659 +0.1846606 0.6530715 2.852659 +0.2245119 0.6530715 2.852659 +0.2679612 0.6530715 2.852659 +0.3158431 0.6530715 2.852659 +0.3689944 0.6530715 2.852659 +0.4282948 0.6530715 2.852659 +0.494694 0.6530715 2.852659 +0.5692344 0.6530715 2.852659 +0.6530715 0.6530715 2.852659 +0.7474945 0.6530715 2.852659 +0.8539475 0.6530715 2.852659 +0.974052 0.6530715 2.852659 +1.113885 0.6530715 2.852659 +1.27456 0.6530715 2.852659 +1.458117 0.6530715 2.852659 +1.667858 0.6530715 2.852659 +1.907556 0.6530715 2.852659 +2.181521 0.6530715 2.852659 +2.494678 0.6530715 2.852659 +2.852659 0.6530715 2.852659 +3.261896 0.6530715 2.852659 +3.729748 0.6530715 2.852659 +4.264621 0.6530715 2.852659 +4.876131 0.6530715 2.852659 +5.575266 0.6530715 2.852659 +6.374593 0.6530715 2.852659 +0 0.7474945 2.852659 +0 0.7474945 2.852659 +0 0.7474945 2.852659 +0.002268731 0.7474945 2.852659 +0.07076883 0.7474945 2.852659 +0.1119241 0.7474945 2.852659 +0.1475052 0.7474945 2.852659 +0.1846606 0.7474945 2.852659 +0.2245119 0.7474945 2.852659 +0.2679612 0.7474945 2.852659 +0.3158431 0.7474945 2.852659 +0.3689944 0.7474945 2.852659 +0.4282948 0.7474945 2.852659 +0.494694 0.7474945 2.852659 +0.5692344 0.7474945 2.852659 +0.6530715 0.7474945 2.852659 +0.7474945 0.7474945 2.852659 +0.8539475 0.7474945 2.852659 +0.974052 0.7474945 2.852659 +1.113885 0.7474945 2.852659 +1.27456 0.7474945 2.852659 +1.458117 0.7474945 2.852659 +1.667858 0.7474945 2.852659 +1.907556 0.7474945 2.852659 +2.181521 0.7474945 2.852659 +2.494678 0.7474945 2.852659 +2.852659 0.7474945 2.852659 +3.261896 0.7474945 2.852659 +3.729748 0.7474945 2.852659 +4.264621 0.7474945 2.852659 +4.876131 0.7474945 2.852659 +5.575266 0.7474945 2.852659 +6.374593 0.7474945 2.852659 +0 0.8539475 2.852659 +0 0.8539475 2.852659 +0 0.8539475 2.852659 +0.002268731 0.8539475 2.852659 +0.07076883 0.8539475 2.852659 +0.1119241 0.8539475 2.852659 +0.1475052 0.8539475 2.852659 +0.1846606 0.8539475 2.852659 +0.2245119 0.8539475 2.852659 +0.2679612 0.8539475 2.852659 +0.3158431 0.8539475 2.852659 +0.3689944 0.8539475 2.852659 +0.4282948 0.8539475 2.852659 +0.494694 0.8539475 2.852659 +0.5692344 0.8539475 2.852659 +0.6530715 0.8539475 2.852659 +0.7474945 0.8539475 2.852659 +0.8539475 0.8539475 2.852659 +0.974052 0.8539475 2.852659 +1.113885 0.8539475 2.852659 +1.27456 0.8539475 2.852659 +1.458117 0.8539475 2.852659 +1.667858 0.8539475 2.852659 +1.907556 0.8539475 2.852659 +2.181521 0.8539475 2.852659 +2.494678 0.8539475 2.852659 +2.852659 0.8539475 2.852659 +3.261896 0.8539475 2.852659 +3.729748 0.8539475 2.852659 +4.264621 0.8539475 2.852659 +4.876131 0.8539475 2.852659 +5.575266 0.8539475 2.852659 +6.374593 0.8539475 2.852659 +0 0.974052 2.852659 +0 0.974052 2.852659 +0 0.974052 2.852659 +0.002268731 0.974052 2.852659 +0.07076883 0.974052 2.852659 +0.1119241 0.974052 2.852659 +0.1475052 0.974052 2.852659 +0.1846606 0.974052 2.852659 +0.2245119 0.974052 2.852659 +0.2679612 0.974052 2.852659 +0.3158431 0.974052 2.852659 +0.3689944 0.974052 2.852659 +0.4282948 0.974052 2.852659 +0.494694 0.974052 2.852659 +0.5692344 0.974052 2.852659 +0.6530715 0.974052 2.852659 +0.7474945 0.974052 2.852659 +0.8539475 0.974052 2.852659 +0.974052 0.974052 2.852659 +1.113885 0.974052 2.852659 +1.27456 0.974052 2.852659 +1.458117 0.974052 2.852659 +1.667858 0.974052 2.852659 +1.907556 0.974052 2.852659 +2.181521 0.974052 2.852659 +2.494678 0.974052 2.852659 +2.852659 0.974052 2.852659 +3.261896 0.974052 2.852659 +3.729748 0.974052 2.852659 +4.264621 0.974052 2.852659 +4.876131 0.974052 2.852659 +5.575266 0.974052 2.852659 +6.374593 0.974052 2.852659 +0 1.113885 2.852659 +0 1.113885 2.852659 +0 1.113885 2.852659 +0.002268731 1.113885 2.852659 +0.07076883 1.113885 2.852659 +0.1119241 1.113885 2.852659 +0.1475052 1.113885 2.852659 +0.1846606 1.113885 2.852659 +0.2245119 1.113885 2.852659 +0.2679612 1.113885 2.852659 +0.3158431 1.113885 2.852659 +0.3689944 1.113885 2.852659 +0.4282948 1.113885 2.852659 +0.494694 1.113885 2.852659 +0.5692344 1.113885 2.852659 +0.6530715 1.113885 2.852659 +0.7474945 1.113885 2.852659 +0.8539475 1.113885 2.852659 +0.974052 1.113885 2.852659 +1.113885 1.113885 2.852659 +1.27456 1.113885 2.852659 +1.458117 1.113885 2.852659 +1.667858 1.113885 2.852659 +1.907556 1.113885 2.852659 +2.181521 1.113885 2.852659 +2.494678 1.113885 2.852659 +2.852659 1.113885 2.852659 +3.261896 1.113885 2.852659 +3.729748 1.113885 2.852659 +4.264621 1.113885 2.852659 +4.876131 1.113885 2.852659 +5.575266 1.113885 2.852659 +6.374593 1.113885 2.852659 +0 1.27456 2.852659 +0 1.27456 2.852659 +0 1.27456 2.852659 +0.002268731 1.27456 2.852659 +0.07076883 1.27456 2.852659 +0.1119241 1.27456 2.852659 +0.1475052 1.27456 2.852659 +0.1846606 1.27456 2.852659 +0.2245119 1.27456 2.852659 +0.2679612 1.27456 2.852659 +0.3158431 1.27456 2.852659 +0.3689944 1.27456 2.852659 +0.4282948 1.27456 2.852659 +0.494694 1.27456 2.852659 +0.5692344 1.27456 2.852659 +0.6530715 1.27456 2.852659 +0.7474945 1.27456 2.852659 +0.8539475 1.27456 2.852659 +0.974052 1.27456 2.852659 +1.113885 1.27456 2.852659 +1.27456 1.27456 2.852659 +1.458117 1.27456 2.852659 +1.667858 1.27456 2.852659 +1.907556 1.27456 2.852659 +2.181521 1.27456 2.852659 +2.494678 1.27456 2.852659 +2.852659 1.27456 2.852659 +3.261896 1.27456 2.852659 +3.729748 1.27456 2.852659 +4.264621 1.27456 2.852659 +4.876131 1.27456 2.852659 +5.575266 1.27456 2.852659 +6.374593 1.27456 2.852659 +0 1.458117 2.852659 +0 1.458117 2.852659 +0 1.458117 2.852659 +0.002268731 1.458117 2.852659 +0.07076883 1.458117 2.852659 +0.1119241 1.458117 2.852659 +0.1475052 1.458117 2.852659 +0.1846606 1.458117 2.852659 +0.2245119 1.458117 2.852659 +0.2679612 1.458117 2.852659 +0.3158431 1.458117 2.852659 +0.3689944 1.458117 2.852659 +0.4282948 1.458117 2.852659 +0.494694 1.458117 2.852659 +0.5692344 1.458117 2.852659 +0.6530715 1.458117 2.852659 +0.7474945 1.458117 2.852659 +0.8539475 1.458117 2.852659 +0.974052 1.458117 2.852659 +1.113885 1.458117 2.852659 +1.27456 1.458117 2.852659 +1.458117 1.458117 2.852659 +1.667858 1.458117 2.852659 +1.907556 1.458117 2.852659 +2.181521 1.458117 2.852659 +2.494678 1.458117 2.852659 +2.852659 1.458117 2.852659 +3.261896 1.458117 2.852659 +3.729748 1.458117 2.852659 +4.264621 1.458117 2.852659 +4.876131 1.458117 2.852659 +5.575266 1.458117 2.852659 +6.374593 1.458117 2.852659 +0 1.667858 2.852659 +0 1.667858 2.852659 +0 1.667858 2.852659 +0.002268731 1.667858 2.852659 +0.07076883 1.667858 2.852659 +0.1119241 1.667858 2.852659 +0.1475052 1.667858 2.852659 +0.1846606 1.667858 2.852659 +0.2245119 1.667858 2.852659 +0.2679612 1.667858 2.852659 +0.3158431 1.667858 2.852659 +0.3689944 1.667858 2.852659 +0.4282948 1.667858 2.852659 +0.494694 1.667858 2.852659 +0.5692344 1.667858 2.852659 +0.6530715 1.667858 2.852659 +0.7474945 1.667858 2.852659 +0.8539475 1.667858 2.852659 +0.974052 1.667858 2.852659 +1.113885 1.667858 2.852659 +1.27456 1.667858 2.852659 +1.458117 1.667858 2.852659 +1.667858 1.667858 2.852659 +1.907556 1.667858 2.852659 +2.181521 1.667858 2.852659 +2.494678 1.667858 2.852659 +2.852659 1.667858 2.852659 +3.261896 1.667858 2.852659 +3.729748 1.667858 2.852659 +4.264621 1.667858 2.852659 +4.876131 1.667858 2.852659 +5.575266 1.667858 2.852659 +6.374593 1.667858 2.852659 +0 1.907556 2.852659 +0 1.907556 2.852659 +0 1.907556 2.852659 +0.002268731 1.907556 2.852659 +0.07076883 1.907556 2.852659 +0.1119241 1.907556 2.852659 +0.1475052 1.907556 2.852659 +0.1846606 1.907556 2.852659 +0.2245119 1.907556 2.852659 +0.2679612 1.907556 2.852659 +0.3158431 1.907556 2.852659 +0.3689944 1.907556 2.852659 +0.4282948 1.907556 2.852659 +0.494694 1.907556 2.852659 +0.5692344 1.907556 2.852659 +0.6530715 1.907556 2.852659 +0.7474945 1.907556 2.852659 +0.8539475 1.907556 2.852659 +0.974052 1.907556 2.852659 +1.113885 1.907556 2.852659 +1.27456 1.907556 2.852659 +1.458117 1.907556 2.852659 +1.667858 1.907556 2.852659 +1.907556 1.907556 2.852659 +2.181521 1.907556 2.852659 +2.494678 1.907556 2.852659 +2.852659 1.907556 2.852659 +3.261896 1.907556 2.852659 +3.729748 1.907556 2.852659 +4.264621 1.907556 2.852659 +4.876131 1.907556 2.852659 +5.575266 1.907556 2.852659 +6.374593 1.907556 2.852659 +0 2.181521 2.852659 +0 2.181521 2.852659 +0 2.181521 2.852659 +0.002268731 2.181521 2.852659 +0.07076883 2.181521 2.852659 +0.1119241 2.181521 2.852659 +0.1475052 2.181521 2.852659 +0.1846606 2.181521 2.852659 +0.2245119 2.181521 2.852659 +0.2679612 2.181521 2.852659 +0.3158431 2.181521 2.852659 +0.3689944 2.181521 2.852659 +0.4282948 2.181521 2.852659 +0.494694 2.181521 2.852659 +0.5692344 2.181521 2.852659 +0.6530715 2.181521 2.852659 +0.7474945 2.181521 2.852659 +0.8539475 2.181521 2.852659 +0.974052 2.181521 2.852659 +1.113885 2.181521 2.852659 +1.27456 2.181521 2.852659 +1.458117 2.181521 2.852659 +1.667858 2.181521 2.852659 +1.907556 2.181521 2.852659 +2.181521 2.181521 2.852659 +2.494678 2.181521 2.852659 +2.852659 2.181521 2.852659 +3.261896 2.181521 2.852659 +3.729748 2.181521 2.852659 +4.264621 2.181521 2.852659 +4.876131 2.181521 2.852659 +5.575266 2.181521 2.852659 +6.374593 2.181521 2.852659 +0 2.494678 2.852659 +0 2.494678 2.852659 +0 2.494678 2.852659 +0.002268731 2.494678 2.852659 +0.07076883 2.494678 2.852659 +0.1119241 2.494678 2.852659 +0.1475052 2.494678 2.852659 +0.1846606 2.494678 2.852659 +0.2245119 2.494678 2.852659 +0.2679612 2.494678 2.852659 +0.3158431 2.494678 2.852659 +0.3689944 2.494678 2.852659 +0.4282948 2.494678 2.852659 +0.494694 2.494678 2.852659 +0.5692344 2.494678 2.852659 +0.6530715 2.494678 2.852659 +0.7474945 2.494678 2.852659 +0.8539475 2.494678 2.852659 +0.974052 2.494678 2.852659 +1.113885 2.494678 2.852659 +1.27456 2.494678 2.852659 +1.458117 2.494678 2.852659 +1.667858 2.494678 2.852659 +1.907556 2.494678 2.852659 +2.181521 2.494678 2.852659 +2.494678 2.494678 2.852659 +2.852659 2.494678 2.852659 +3.261896 2.494678 2.852659 +3.729748 2.494678 2.852659 +4.264621 2.494678 2.852659 +4.876131 2.494678 2.852659 +5.575266 2.494678 2.852659 +6.374593 2.494678 2.852659 +0 2.852659 2.852659 +0 2.852659 2.852659 +0 2.852659 2.852659 +0.002268731 2.852659 2.852659 +0.07076883 2.852659 2.852659 +0.1119241 2.852659 2.852659 +0.1475052 2.852659 2.852659 +0.1846606 2.852659 2.852659 +0.2245119 2.852659 2.852659 +0.2679612 2.852659 2.852659 +0.3158431 2.852659 2.852659 +0.3689944 2.852659 2.852659 +0.4282948 2.852659 2.852659 +0.494694 2.852659 2.852659 +0.5692344 2.852659 2.852659 +0.6530715 2.852659 2.852659 +0.7474945 2.852659 2.852659 +0.8539475 2.852659 2.852659 +0.974052 2.852659 2.852659 +1.113885 2.852659 2.852659 +1.27456 2.852659 2.852659 +1.458117 2.852659 2.852659 +1.667858 2.852659 2.852659 +1.907556 2.852659 2.852659 +2.181521 2.852659 2.852659 +2.494678 2.852659 2.852659 +2.852659 2.852659 2.852659 +3.261896 2.852659 2.852659 +3.729748 2.852659 2.852659 +4.264621 2.852659 2.852659 +4.876131 2.852659 2.852659 +5.575266 2.852659 2.852659 +6.374593 2.852659 2.852659 +0 3.261896 2.852659 +0 3.261896 2.852659 +0 3.261896 2.852659 +0.002268731 3.261896 2.852659 +0.07076883 3.261896 2.852659 +0.1119241 3.261896 2.852659 +0.1475052 3.261896 2.852659 +0.1846606 3.261896 2.852659 +0.2245119 3.261896 2.852659 +0.2679612 3.261896 2.852659 +0.3158431 3.261896 2.852659 +0.3689944 3.261896 2.852659 +0.4282948 3.261896 2.852659 +0.494694 3.261896 2.852659 +0.5692344 3.261896 2.852659 +0.6530715 3.261896 2.852659 +0.7474945 3.261896 2.852659 +0.8539475 3.261896 2.852659 +0.974052 3.261896 2.852659 +1.113885 3.261896 2.852659 +1.27456 3.261896 2.852659 +1.458117 3.261896 2.852659 +1.667858 3.261896 2.852659 +1.907556 3.261896 2.852659 +2.181521 3.261896 2.852659 +2.494678 3.261896 2.852659 +2.852659 3.261896 2.852659 +3.261896 3.261896 2.852659 +3.729748 3.261896 2.852659 +4.264621 3.261896 2.852659 +4.876131 3.261896 2.852659 +5.575266 3.261896 2.852659 +6.374593 3.261896 2.852659 +0 3.729748 2.852659 +0 3.729748 2.852659 +0 3.729748 2.852659 +0.002268731 3.729748 2.852659 +0.07076883 3.729748 2.852659 +0.1119241 3.729748 2.852659 +0.1475052 3.729748 2.852659 +0.1846606 3.729748 2.852659 +0.2245119 3.729748 2.852659 +0.2679612 3.729748 2.852659 +0.3158431 3.729748 2.852659 +0.3689944 3.729748 2.852659 +0.4282948 3.729748 2.852659 +0.494694 3.729748 2.852659 +0.5692344 3.729748 2.852659 +0.6530715 3.729748 2.852659 +0.7474945 3.729748 2.852659 +0.8539475 3.729748 2.852659 +0.974052 3.729748 2.852659 +1.113885 3.729748 2.852659 +1.27456 3.729748 2.852659 +1.458117 3.729748 2.852659 +1.667858 3.729748 2.852659 +1.907556 3.729748 2.852659 +2.181521 3.729748 2.852659 +2.494678 3.729748 2.852659 +2.852659 3.729748 2.852659 +3.261896 3.729748 2.852659 +3.729748 3.729748 2.852659 +4.264621 3.729748 2.852659 +4.876131 3.729748 2.852659 +5.575266 3.729748 2.852659 +6.374593 3.729748 2.852659 +0 4.264621 2.852659 +0 4.264621 2.852659 +0 4.264621 2.852659 +0.002268731 4.264621 2.852659 +0.07076883 4.264621 2.852659 +0.1119241 4.264621 2.852659 +0.1475052 4.264621 2.852659 +0.1846606 4.264621 2.852659 +0.2245119 4.264621 2.852659 +0.2679612 4.264621 2.852659 +0.3158431 4.264621 2.852659 +0.3689944 4.264621 2.852659 +0.4282948 4.264621 2.852659 +0.494694 4.264621 2.852659 +0.5692344 4.264621 2.852659 +0.6530715 4.264621 2.852659 +0.7474945 4.264621 2.852659 +0.8539475 4.264621 2.852659 +0.974052 4.264621 2.852659 +1.113885 4.264621 2.852659 +1.27456 4.264621 2.852659 +1.458117 4.264621 2.852659 +1.667858 4.264621 2.852659 +1.907556 4.264621 2.852659 +2.181521 4.264621 2.852659 +2.494678 4.264621 2.852659 +2.852659 4.264621 2.852659 +3.261896 4.264621 2.852659 +3.729748 4.264621 2.852659 +4.264621 4.264621 2.852659 +4.876131 4.264621 2.852659 +5.575266 4.264621 2.852659 +6.374593 4.264621 2.852659 +0 4.876131 2.852659 +0 4.876131 2.852659 +0 4.876131 2.852659 +0.002268731 4.876131 2.852659 +0.07076883 4.876131 2.852659 +0.1119241 4.876131 2.852659 +0.1475052 4.876131 2.852659 +0.1846606 4.876131 2.852659 +0.2245119 4.876131 2.852659 +0.2679612 4.876131 2.852659 +0.3158431 4.876131 2.852659 +0.3689944 4.876131 2.852659 +0.4282948 4.876131 2.852659 +0.494694 4.876131 2.852659 +0.5692344 4.876131 2.852659 +0.6530715 4.876131 2.852659 +0.7474945 4.876131 2.852659 +0.8539475 4.876131 2.852659 +0.974052 4.876131 2.852659 +1.113885 4.876131 2.852659 +1.27456 4.876131 2.852659 +1.458117 4.876131 2.852659 +1.667858 4.876131 2.852659 +1.907556 4.876131 2.852659 +2.181521 4.876131 2.852659 +2.494678 4.876131 2.852659 +2.852659 4.876131 2.852659 +3.261896 4.876131 2.852659 +3.729748 4.876131 2.852659 +4.264621 4.876131 2.852659 +4.876131 4.876131 2.852659 +5.575266 4.876131 2.852659 +6.374593 4.876131 2.852659 +0 5.575266 2.852659 +0 5.575266 2.852659 +0 5.575266 2.852659 +0.002268731 5.575266 2.852659 +0.07076883 5.575266 2.852659 +0.1119241 5.575266 2.852659 +0.1475052 5.575266 2.852659 +0.1846606 5.575266 2.852659 +0.2245119 5.575266 2.852659 +0.2679612 5.575266 2.852659 +0.3158431 5.575266 2.852659 +0.3689944 5.575266 2.852659 +0.4282948 5.575266 2.852659 +0.494694 5.575266 2.852659 +0.5692344 5.575266 2.852659 +0.6530715 5.575266 2.852659 +0.7474945 5.575266 2.852659 +0.8539475 5.575266 2.852659 +0.974052 5.575266 2.852659 +1.113885 5.575266 2.852659 +1.27456 5.575266 2.852659 +1.458117 5.575266 2.852659 +1.667858 5.575266 2.852659 +1.907556 5.575266 2.852659 +2.181521 5.575266 2.852659 +2.494678 5.575266 2.852659 +2.852659 5.575266 2.852659 +3.261896 5.575266 2.852659 +3.729748 5.575266 2.852659 +4.264621 5.575266 2.852659 +4.876131 5.575266 2.852659 +5.575266 5.575266 2.852659 +6.374593 5.575266 2.852659 +0 6.374593 2.852659 +0 6.374593 2.852659 +0 6.374593 2.852659 +0.002268731 6.374593 2.852659 +0.07076883 6.374593 2.852659 +0.1119241 6.374593 2.852659 +0.1475052 6.374593 2.852659 +0.1846606 6.374593 2.852659 +0.2245119 6.374593 2.852659 +0.2679612 6.374593 2.852659 +0.3158431 6.374593 2.852659 +0.3689944 6.374593 2.852659 +0.4282948 6.374593 2.852659 +0.494694 6.374593 2.852659 +0.5692344 6.374593 2.852659 +0.6530715 6.374593 2.852659 +0.7474945 6.374593 2.852659 +0.8539475 6.374593 2.852659 +0.974052 6.374593 2.852659 +1.113885 6.374593 2.852659 +1.27456 6.374593 2.852659 +1.458117 6.374593 2.852659 +1.667858 6.374593 2.852659 +1.907556 6.374593 2.852659 +2.181521 6.374593 2.852659 +2.494678 6.374593 2.852659 +2.852659 6.374593 2.852659 +3.261896 6.374593 2.852659 +3.729748 6.374593 2.852659 +4.264621 6.374593 2.852659 +4.876131 6.374593 2.852659 +5.575266 6.374593 2.852659 +6.374593 6.374593 2.852659 +0 0 3.261896 +0 0 3.261896 +0 0 3.261896 +0.002268731 0 3.261896 +0.07076883 0 3.261896 +0.1119241 0 3.261896 +0.1475052 0 3.261896 +0.1846606 0 3.261896 +0.2245119 0 3.261896 +0.2679612 0 3.261896 +0.3158431 0 3.261896 +0.3689944 0 3.261896 +0.4282948 0 3.261896 +0.494694 0 3.261896 +0.5692344 0 3.261896 +0.6530715 0 3.261896 +0.7474945 0 3.261896 +0.8539475 0 3.261896 +0.974052 0 3.261896 +1.113885 0 3.261896 +1.27456 0 3.261896 +1.458117 0 3.261896 +1.667858 0 3.261896 +1.907556 0 3.261896 +2.181521 0 3.261896 +2.494678 0 3.261896 +2.852659 0 3.261896 +3.261896 0 3.261896 +3.729748 0 3.261896 +4.264621 0 3.261896 +4.876131 0 3.261896 +5.575266 0 3.261896 +6.374593 0 3.261896 +0 0 3.261896 +0 0 3.261896 +0 0 3.261896 +0.002268731 0 3.261896 +0.07076883 0 3.261896 +0.1119241 0 3.261896 +0.1475052 0 3.261896 +0.1846606 0 3.261896 +0.2245119 0 3.261896 +0.2679612 0 3.261896 +0.3158431 0 3.261896 +0.3689944 0 3.261896 +0.4282948 0 3.261896 +0.494694 0 3.261896 +0.5692344 0 3.261896 +0.6530715 0 3.261896 +0.7474945 0 3.261896 +0.8539475 0 3.261896 +0.974052 0 3.261896 +1.113885 0 3.261896 +1.27456 0 3.261896 +1.458117 0 3.261896 +1.667858 0 3.261896 +1.907556 0 3.261896 +2.181521 0 3.261896 +2.494678 0 3.261896 +2.852659 0 3.261896 +3.261896 0 3.261896 +3.729748 0 3.261896 +4.264621 0 3.261896 +4.876131 0 3.261896 +5.575266 0 3.261896 +6.374593 0 3.261896 +0 0 3.261896 +0 0 3.261896 +0 0 3.261896 +0.002268731 0 3.261896 +0.07076883 0 3.261896 +0.1119241 0 3.261896 +0.1475052 0 3.261896 +0.1846606 0 3.261896 +0.2245119 0 3.261896 +0.2679612 0 3.261896 +0.3158431 0 3.261896 +0.3689944 0 3.261896 +0.4282948 0 3.261896 +0.494694 0 3.261896 +0.5692344 0 3.261896 +0.6530715 0 3.261896 +0.7474945 0 3.261896 +0.8539475 0 3.261896 +0.974052 0 3.261896 +1.113885 0 3.261896 +1.27456 0 3.261896 +1.458117 0 3.261896 +1.667858 0 3.261896 +1.907556 0 3.261896 +2.181521 0 3.261896 +2.494678 0 3.261896 +2.852659 0 3.261896 +3.261896 0 3.261896 +3.729748 0 3.261896 +4.264621 0 3.261896 +4.876131 0 3.261896 +5.575266 0 3.261896 +6.374593 0 3.261896 +0 0.002268731 3.261896 +0 0.002268731 3.261896 +0 0.002268731 3.261896 +0.002268731 0.002268731 3.261896 +0.07076883 0.002268731 3.261896 +0.1119241 0.002268731 3.261896 +0.1475052 0.002268731 3.261896 +0.1846606 0.002268731 3.261896 +0.2245119 0.002268731 3.261896 +0.2679612 0.002268731 3.261896 +0.3158431 0.002268731 3.261896 +0.3689944 0.002268731 3.261896 +0.4282948 0.002268731 3.261896 +0.494694 0.002268731 3.261896 +0.5692344 0.002268731 3.261896 +0.6530715 0.002268731 3.261896 +0.7474945 0.002268731 3.261896 +0.8539475 0.002268731 3.261896 +0.974052 0.002268731 3.261896 +1.113885 0.002268731 3.261896 +1.27456 0.002268731 3.261896 +1.458117 0.002268731 3.261896 +1.667858 0.002268731 3.261896 +1.907556 0.002268731 3.261896 +2.181521 0.002268731 3.261896 +2.494678 0.002268731 3.261896 +2.852659 0.002268731 3.261896 +3.261896 0.002268731 3.261896 +3.729748 0.002268731 3.261896 +4.264621 0.002268731 3.261896 +4.876131 0.002268731 3.261896 +5.575266 0.002268731 3.261896 +6.374593 0.002268731 3.261896 +0 0.07076883 3.261896 +0 0.07076883 3.261896 +0 0.07076883 3.261896 +0.002268731 0.07076883 3.261896 +0.07076883 0.07076883 3.261896 +0.1119241 0.07076883 3.261896 +0.1475052 0.07076883 3.261896 +0.1846606 0.07076883 3.261896 +0.2245119 0.07076883 3.261896 +0.2679612 0.07076883 3.261896 +0.3158431 0.07076883 3.261896 +0.3689944 0.07076883 3.261896 +0.4282948 0.07076883 3.261896 +0.494694 0.07076883 3.261896 +0.5692344 0.07076883 3.261896 +0.6530715 0.07076883 3.261896 +0.7474945 0.07076883 3.261896 +0.8539475 0.07076883 3.261896 +0.974052 0.07076883 3.261896 +1.113885 0.07076883 3.261896 +1.27456 0.07076883 3.261896 +1.458117 0.07076883 3.261896 +1.667858 0.07076883 3.261896 +1.907556 0.07076883 3.261896 +2.181521 0.07076883 3.261896 +2.494678 0.07076883 3.261896 +2.852659 0.07076883 3.261896 +3.261896 0.07076883 3.261896 +3.729748 0.07076883 3.261896 +4.264621 0.07076883 3.261896 +4.876131 0.07076883 3.261896 +5.575266 0.07076883 3.261896 +6.374593 0.07076883 3.261896 +0 0.1119241 3.261896 +0 0.1119241 3.261896 +0 0.1119241 3.261896 +0.002268731 0.1119241 3.261896 +0.07076883 0.1119241 3.261896 +0.1119241 0.1119241 3.261896 +0.1475052 0.1119241 3.261896 +0.1846606 0.1119241 3.261896 +0.2245119 0.1119241 3.261896 +0.2679612 0.1119241 3.261896 +0.3158431 0.1119241 3.261896 +0.3689944 0.1119241 3.261896 +0.4282948 0.1119241 3.261896 +0.494694 0.1119241 3.261896 +0.5692344 0.1119241 3.261896 +0.6530715 0.1119241 3.261896 +0.7474945 0.1119241 3.261896 +0.8539475 0.1119241 3.261896 +0.974052 0.1119241 3.261896 +1.113885 0.1119241 3.261896 +1.27456 0.1119241 3.261896 +1.458117 0.1119241 3.261896 +1.667858 0.1119241 3.261896 +1.907556 0.1119241 3.261896 +2.181521 0.1119241 3.261896 +2.494678 0.1119241 3.261896 +2.852659 0.1119241 3.261896 +3.261896 0.1119241 3.261896 +3.729748 0.1119241 3.261896 +4.264621 0.1119241 3.261896 +4.876131 0.1119241 3.261896 +5.575266 0.1119241 3.261896 +6.374593 0.1119241 3.261896 +0 0.1475052 3.261896 +0 0.1475052 3.261896 +0 0.1475052 3.261896 +0.002268731 0.1475052 3.261896 +0.07076883 0.1475052 3.261896 +0.1119241 0.1475052 3.261896 +0.1475052 0.1475052 3.261896 +0.1846606 0.1475052 3.261896 +0.2245119 0.1475052 3.261896 +0.2679612 0.1475052 3.261896 +0.3158431 0.1475052 3.261896 +0.3689944 0.1475052 3.261896 +0.4282948 0.1475052 3.261896 +0.494694 0.1475052 3.261896 +0.5692344 0.1475052 3.261896 +0.6530715 0.1475052 3.261896 +0.7474945 0.1475052 3.261896 +0.8539475 0.1475052 3.261896 +0.974052 0.1475052 3.261896 +1.113885 0.1475052 3.261896 +1.27456 0.1475052 3.261896 +1.458117 0.1475052 3.261896 +1.667858 0.1475052 3.261896 +1.907556 0.1475052 3.261896 +2.181521 0.1475052 3.261896 +2.494678 0.1475052 3.261896 +2.852659 0.1475052 3.261896 +3.261896 0.1475052 3.261896 +3.729748 0.1475052 3.261896 +4.264621 0.1475052 3.261896 +4.876131 0.1475052 3.261896 +5.575266 0.1475052 3.261896 +6.374593 0.1475052 3.261896 +0 0.1846606 3.261896 +0 0.1846606 3.261896 +0 0.1846606 3.261896 +0.002268731 0.1846606 3.261896 +0.07076883 0.1846606 3.261896 +0.1119241 0.1846606 3.261896 +0.1475052 0.1846606 3.261896 +0.1846606 0.1846606 3.261896 +0.2245119 0.1846606 3.261896 +0.2679612 0.1846606 3.261896 +0.3158431 0.1846606 3.261896 +0.3689944 0.1846606 3.261896 +0.4282948 0.1846606 3.261896 +0.494694 0.1846606 3.261896 +0.5692344 0.1846606 3.261896 +0.6530715 0.1846606 3.261896 +0.7474945 0.1846606 3.261896 +0.8539475 0.1846606 3.261896 +0.974052 0.1846606 3.261896 +1.113885 0.1846606 3.261896 +1.27456 0.1846606 3.261896 +1.458117 0.1846606 3.261896 +1.667858 0.1846606 3.261896 +1.907556 0.1846606 3.261896 +2.181521 0.1846606 3.261896 +2.494678 0.1846606 3.261896 +2.852659 0.1846606 3.261896 +3.261896 0.1846606 3.261896 +3.729748 0.1846606 3.261896 +4.264621 0.1846606 3.261896 +4.876131 0.1846606 3.261896 +5.575266 0.1846606 3.261896 +6.374593 0.1846606 3.261896 +0 0.2245119 3.261896 +0 0.2245119 3.261896 +0 0.2245119 3.261896 +0.002268731 0.2245119 3.261896 +0.07076883 0.2245119 3.261896 +0.1119241 0.2245119 3.261896 +0.1475052 0.2245119 3.261896 +0.1846606 0.2245119 3.261896 +0.2245119 0.2245119 3.261896 +0.2679612 0.2245119 3.261896 +0.3158431 0.2245119 3.261896 +0.3689944 0.2245119 3.261896 +0.4282948 0.2245119 3.261896 +0.494694 0.2245119 3.261896 +0.5692344 0.2245119 3.261896 +0.6530715 0.2245119 3.261896 +0.7474945 0.2245119 3.261896 +0.8539475 0.2245119 3.261896 +0.974052 0.2245119 3.261896 +1.113885 0.2245119 3.261896 +1.27456 0.2245119 3.261896 +1.458117 0.2245119 3.261896 +1.667858 0.2245119 3.261896 +1.907556 0.2245119 3.261896 +2.181521 0.2245119 3.261896 +2.494678 0.2245119 3.261896 +2.852659 0.2245119 3.261896 +3.261896 0.2245119 3.261896 +3.729748 0.2245119 3.261896 +4.264621 0.2245119 3.261896 +4.876131 0.2245119 3.261896 +5.575266 0.2245119 3.261896 +6.374593 0.2245119 3.261896 +0 0.2679612 3.261896 +0 0.2679612 3.261896 +0 0.2679612 3.261896 +0.002268731 0.2679612 3.261896 +0.07076883 0.2679612 3.261896 +0.1119241 0.2679612 3.261896 +0.1475052 0.2679612 3.261896 +0.1846606 0.2679612 3.261896 +0.2245119 0.2679612 3.261896 +0.2679612 0.2679612 3.261896 +0.3158431 0.2679612 3.261896 +0.3689944 0.2679612 3.261896 +0.4282948 0.2679612 3.261896 +0.494694 0.2679612 3.261896 +0.5692344 0.2679612 3.261896 +0.6530715 0.2679612 3.261896 +0.7474945 0.2679612 3.261896 +0.8539475 0.2679612 3.261896 +0.974052 0.2679612 3.261896 +1.113885 0.2679612 3.261896 +1.27456 0.2679612 3.261896 +1.458117 0.2679612 3.261896 +1.667858 0.2679612 3.261896 +1.907556 0.2679612 3.261896 +2.181521 0.2679612 3.261896 +2.494678 0.2679612 3.261896 +2.852659 0.2679612 3.261896 +3.261896 0.2679612 3.261896 +3.729748 0.2679612 3.261896 +4.264621 0.2679612 3.261896 +4.876131 0.2679612 3.261896 +5.575266 0.2679612 3.261896 +6.374593 0.2679612 3.261896 +0 0.3158431 3.261896 +0 0.3158431 3.261896 +0 0.3158431 3.261896 +0.002268731 0.3158431 3.261896 +0.07076883 0.3158431 3.261896 +0.1119241 0.3158431 3.261896 +0.1475052 0.3158431 3.261896 +0.1846606 0.3158431 3.261896 +0.2245119 0.3158431 3.261896 +0.2679612 0.3158431 3.261896 +0.3158431 0.3158431 3.261896 +0.3689944 0.3158431 3.261896 +0.4282948 0.3158431 3.261896 +0.494694 0.3158431 3.261896 +0.5692344 0.3158431 3.261896 +0.6530715 0.3158431 3.261896 +0.7474945 0.3158431 3.261896 +0.8539475 0.3158431 3.261896 +0.974052 0.3158431 3.261896 +1.113885 0.3158431 3.261896 +1.27456 0.3158431 3.261896 +1.458117 0.3158431 3.261896 +1.667858 0.3158431 3.261896 +1.907556 0.3158431 3.261896 +2.181521 0.3158431 3.261896 +2.494678 0.3158431 3.261896 +2.852659 0.3158431 3.261896 +3.261896 0.3158431 3.261896 +3.729748 0.3158431 3.261896 +4.264621 0.3158431 3.261896 +4.876131 0.3158431 3.261896 +5.575266 0.3158431 3.261896 +6.374593 0.3158431 3.261896 +0 0.3689944 3.261896 +0 0.3689944 3.261896 +0 0.3689944 3.261896 +0.002268731 0.3689944 3.261896 +0.07076883 0.3689944 3.261896 +0.1119241 0.3689944 3.261896 +0.1475052 0.3689944 3.261896 +0.1846606 0.3689944 3.261896 +0.2245119 0.3689944 3.261896 +0.2679612 0.3689944 3.261896 +0.3158431 0.3689944 3.261896 +0.3689944 0.3689944 3.261896 +0.4282948 0.3689944 3.261896 +0.494694 0.3689944 3.261896 +0.5692344 0.3689944 3.261896 +0.6530715 0.3689944 3.261896 +0.7474945 0.3689944 3.261896 +0.8539475 0.3689944 3.261896 +0.974052 0.3689944 3.261896 +1.113885 0.3689944 3.261896 +1.27456 0.3689944 3.261896 +1.458117 0.3689944 3.261896 +1.667858 0.3689944 3.261896 +1.907556 0.3689944 3.261896 +2.181521 0.3689944 3.261896 +2.494678 0.3689944 3.261896 +2.852659 0.3689944 3.261896 +3.261896 0.3689944 3.261896 +3.729748 0.3689944 3.261896 +4.264621 0.3689944 3.261896 +4.876131 0.3689944 3.261896 +5.575266 0.3689944 3.261896 +6.374593 0.3689944 3.261896 +0 0.4282948 3.261896 +0 0.4282948 3.261896 +0 0.4282948 3.261896 +0.002268731 0.4282948 3.261896 +0.07076883 0.4282948 3.261896 +0.1119241 0.4282948 3.261896 +0.1475052 0.4282948 3.261896 +0.1846606 0.4282948 3.261896 +0.2245119 0.4282948 3.261896 +0.2679612 0.4282948 3.261896 +0.3158431 0.4282948 3.261896 +0.3689944 0.4282948 3.261896 +0.4282948 0.4282948 3.261896 +0.494694 0.4282948 3.261896 +0.5692344 0.4282948 3.261896 +0.6530715 0.4282948 3.261896 +0.7474945 0.4282948 3.261896 +0.8539475 0.4282948 3.261896 +0.974052 0.4282948 3.261896 +1.113885 0.4282948 3.261896 +1.27456 0.4282948 3.261896 +1.458117 0.4282948 3.261896 +1.667858 0.4282948 3.261896 +1.907556 0.4282948 3.261896 +2.181521 0.4282948 3.261896 +2.494678 0.4282948 3.261896 +2.852659 0.4282948 3.261896 +3.261896 0.4282948 3.261896 +3.729748 0.4282948 3.261896 +4.264621 0.4282948 3.261896 +4.876131 0.4282948 3.261896 +5.575266 0.4282948 3.261896 +6.374593 0.4282948 3.261896 +0 0.494694 3.261896 +0 0.494694 3.261896 +0 0.494694 3.261896 +0.002268731 0.494694 3.261896 +0.07076883 0.494694 3.261896 +0.1119241 0.494694 3.261896 +0.1475052 0.494694 3.261896 +0.1846606 0.494694 3.261896 +0.2245119 0.494694 3.261896 +0.2679612 0.494694 3.261896 +0.3158431 0.494694 3.261896 +0.3689944 0.494694 3.261896 +0.4282948 0.494694 3.261896 +0.494694 0.494694 3.261896 +0.5692344 0.494694 3.261896 +0.6530715 0.494694 3.261896 +0.7474945 0.494694 3.261896 +0.8539475 0.494694 3.261896 +0.974052 0.494694 3.261896 +1.113885 0.494694 3.261896 +1.27456 0.494694 3.261896 +1.458117 0.494694 3.261896 +1.667858 0.494694 3.261896 +1.907556 0.494694 3.261896 +2.181521 0.494694 3.261896 +2.494678 0.494694 3.261896 +2.852659 0.494694 3.261896 +3.261896 0.494694 3.261896 +3.729748 0.494694 3.261896 +4.264621 0.494694 3.261896 +4.876131 0.494694 3.261896 +5.575266 0.494694 3.261896 +6.374593 0.494694 3.261896 +0 0.5692344 3.261896 +0 0.5692344 3.261896 +0 0.5692344 3.261896 +0.002268731 0.5692344 3.261896 +0.07076883 0.5692344 3.261896 +0.1119241 0.5692344 3.261896 +0.1475052 0.5692344 3.261896 +0.1846606 0.5692344 3.261896 +0.2245119 0.5692344 3.261896 +0.2679612 0.5692344 3.261896 +0.3158431 0.5692344 3.261896 +0.3689944 0.5692344 3.261896 +0.4282948 0.5692344 3.261896 +0.494694 0.5692344 3.261896 +0.5692344 0.5692344 3.261896 +0.6530715 0.5692344 3.261896 +0.7474945 0.5692344 3.261896 +0.8539475 0.5692344 3.261896 +0.974052 0.5692344 3.261896 +1.113885 0.5692344 3.261896 +1.27456 0.5692344 3.261896 +1.458117 0.5692344 3.261896 +1.667858 0.5692344 3.261896 +1.907556 0.5692344 3.261896 +2.181521 0.5692344 3.261896 +2.494678 0.5692344 3.261896 +2.852659 0.5692344 3.261896 +3.261896 0.5692344 3.261896 +3.729748 0.5692344 3.261896 +4.264621 0.5692344 3.261896 +4.876131 0.5692344 3.261896 +5.575266 0.5692344 3.261896 +6.374593 0.5692344 3.261896 +0 0.6530715 3.261896 +0 0.6530715 3.261896 +0 0.6530715 3.261896 +0.002268731 0.6530715 3.261896 +0.07076883 0.6530715 3.261896 +0.1119241 0.6530715 3.261896 +0.1475052 0.6530715 3.261896 +0.1846606 0.6530715 3.261896 +0.2245119 0.6530715 3.261896 +0.2679612 0.6530715 3.261896 +0.3158431 0.6530715 3.261896 +0.3689944 0.6530715 3.261896 +0.4282948 0.6530715 3.261896 +0.494694 0.6530715 3.261896 +0.5692344 0.6530715 3.261896 +0.6530715 0.6530715 3.261896 +0.7474945 0.6530715 3.261896 +0.8539475 0.6530715 3.261896 +0.974052 0.6530715 3.261896 +1.113885 0.6530715 3.261896 +1.27456 0.6530715 3.261896 +1.458117 0.6530715 3.261896 +1.667858 0.6530715 3.261896 +1.907556 0.6530715 3.261896 +2.181521 0.6530715 3.261896 +2.494678 0.6530715 3.261896 +2.852659 0.6530715 3.261896 +3.261896 0.6530715 3.261896 +3.729748 0.6530715 3.261896 +4.264621 0.6530715 3.261896 +4.876131 0.6530715 3.261896 +5.575266 0.6530715 3.261896 +6.374593 0.6530715 3.261896 +0 0.7474945 3.261896 +0 0.7474945 3.261896 +0 0.7474945 3.261896 +0.002268731 0.7474945 3.261896 +0.07076883 0.7474945 3.261896 +0.1119241 0.7474945 3.261896 +0.1475052 0.7474945 3.261896 +0.1846606 0.7474945 3.261896 +0.2245119 0.7474945 3.261896 +0.2679612 0.7474945 3.261896 +0.3158431 0.7474945 3.261896 +0.3689944 0.7474945 3.261896 +0.4282948 0.7474945 3.261896 +0.494694 0.7474945 3.261896 +0.5692344 0.7474945 3.261896 +0.6530715 0.7474945 3.261896 +0.7474945 0.7474945 3.261896 +0.8539475 0.7474945 3.261896 +0.974052 0.7474945 3.261896 +1.113885 0.7474945 3.261896 +1.27456 0.7474945 3.261896 +1.458117 0.7474945 3.261896 +1.667858 0.7474945 3.261896 +1.907556 0.7474945 3.261896 +2.181521 0.7474945 3.261896 +2.494678 0.7474945 3.261896 +2.852659 0.7474945 3.261896 +3.261896 0.7474945 3.261896 +3.729748 0.7474945 3.261896 +4.264621 0.7474945 3.261896 +4.876131 0.7474945 3.261896 +5.575266 0.7474945 3.261896 +6.374593 0.7474945 3.261896 +0 0.8539475 3.261896 +0 0.8539475 3.261896 +0 0.8539475 3.261896 +0.002268731 0.8539475 3.261896 +0.07076883 0.8539475 3.261896 +0.1119241 0.8539475 3.261896 +0.1475052 0.8539475 3.261896 +0.1846606 0.8539475 3.261896 +0.2245119 0.8539475 3.261896 +0.2679612 0.8539475 3.261896 +0.3158431 0.8539475 3.261896 +0.3689944 0.8539475 3.261896 +0.4282948 0.8539475 3.261896 +0.494694 0.8539475 3.261896 +0.5692344 0.8539475 3.261896 +0.6530715 0.8539475 3.261896 +0.7474945 0.8539475 3.261896 +0.8539475 0.8539475 3.261896 +0.974052 0.8539475 3.261896 +1.113885 0.8539475 3.261896 +1.27456 0.8539475 3.261896 +1.458117 0.8539475 3.261896 +1.667858 0.8539475 3.261896 +1.907556 0.8539475 3.261896 +2.181521 0.8539475 3.261896 +2.494678 0.8539475 3.261896 +2.852659 0.8539475 3.261896 +3.261896 0.8539475 3.261896 +3.729748 0.8539475 3.261896 +4.264621 0.8539475 3.261896 +4.876131 0.8539475 3.261896 +5.575266 0.8539475 3.261896 +6.374593 0.8539475 3.261896 +0 0.974052 3.261896 +0 0.974052 3.261896 +0 0.974052 3.261896 +0.002268731 0.974052 3.261896 +0.07076883 0.974052 3.261896 +0.1119241 0.974052 3.261896 +0.1475052 0.974052 3.261896 +0.1846606 0.974052 3.261896 +0.2245119 0.974052 3.261896 +0.2679612 0.974052 3.261896 +0.3158431 0.974052 3.261896 +0.3689944 0.974052 3.261896 +0.4282948 0.974052 3.261896 +0.494694 0.974052 3.261896 +0.5692344 0.974052 3.261896 +0.6530715 0.974052 3.261896 +0.7474945 0.974052 3.261896 +0.8539475 0.974052 3.261896 +0.974052 0.974052 3.261896 +1.113885 0.974052 3.261896 +1.27456 0.974052 3.261896 +1.458117 0.974052 3.261896 +1.667858 0.974052 3.261896 +1.907556 0.974052 3.261896 +2.181521 0.974052 3.261896 +2.494678 0.974052 3.261896 +2.852659 0.974052 3.261896 +3.261896 0.974052 3.261896 +3.729748 0.974052 3.261896 +4.264621 0.974052 3.261896 +4.876131 0.974052 3.261896 +5.575266 0.974052 3.261896 +6.374593 0.974052 3.261896 +0 1.113885 3.261896 +0 1.113885 3.261896 +0 1.113885 3.261896 +0.002268731 1.113885 3.261896 +0.07076883 1.113885 3.261896 +0.1119241 1.113885 3.261896 +0.1475052 1.113885 3.261896 +0.1846606 1.113885 3.261896 +0.2245119 1.113885 3.261896 +0.2679612 1.113885 3.261896 +0.3158431 1.113885 3.261896 +0.3689944 1.113885 3.261896 +0.4282948 1.113885 3.261896 +0.494694 1.113885 3.261896 +0.5692344 1.113885 3.261896 +0.6530715 1.113885 3.261896 +0.7474945 1.113885 3.261896 +0.8539475 1.113885 3.261896 +0.974052 1.113885 3.261896 +1.113885 1.113885 3.261896 +1.27456 1.113885 3.261896 +1.458117 1.113885 3.261896 +1.667858 1.113885 3.261896 +1.907556 1.113885 3.261896 +2.181521 1.113885 3.261896 +2.494678 1.113885 3.261896 +2.852659 1.113885 3.261896 +3.261896 1.113885 3.261896 +3.729748 1.113885 3.261896 +4.264621 1.113885 3.261896 +4.876131 1.113885 3.261896 +5.575266 1.113885 3.261896 +6.374593 1.113885 3.261896 +0 1.27456 3.261896 +0 1.27456 3.261896 +0 1.27456 3.261896 +0.002268731 1.27456 3.261896 +0.07076883 1.27456 3.261896 +0.1119241 1.27456 3.261896 +0.1475052 1.27456 3.261896 +0.1846606 1.27456 3.261896 +0.2245119 1.27456 3.261896 +0.2679612 1.27456 3.261896 +0.3158431 1.27456 3.261896 +0.3689944 1.27456 3.261896 +0.4282948 1.27456 3.261896 +0.494694 1.27456 3.261896 +0.5692344 1.27456 3.261896 +0.6530715 1.27456 3.261896 +0.7474945 1.27456 3.261896 +0.8539475 1.27456 3.261896 +0.974052 1.27456 3.261896 +1.113885 1.27456 3.261896 +1.27456 1.27456 3.261896 +1.458117 1.27456 3.261896 +1.667858 1.27456 3.261896 +1.907556 1.27456 3.261896 +2.181521 1.27456 3.261896 +2.494678 1.27456 3.261896 +2.852659 1.27456 3.261896 +3.261896 1.27456 3.261896 +3.729748 1.27456 3.261896 +4.264621 1.27456 3.261896 +4.876131 1.27456 3.261896 +5.575266 1.27456 3.261896 +6.374593 1.27456 3.261896 +0 1.458117 3.261896 +0 1.458117 3.261896 +0 1.458117 3.261896 +0.002268731 1.458117 3.261896 +0.07076883 1.458117 3.261896 +0.1119241 1.458117 3.261896 +0.1475052 1.458117 3.261896 +0.1846606 1.458117 3.261896 +0.2245119 1.458117 3.261896 +0.2679612 1.458117 3.261896 +0.3158431 1.458117 3.261896 +0.3689944 1.458117 3.261896 +0.4282948 1.458117 3.261896 +0.494694 1.458117 3.261896 +0.5692344 1.458117 3.261896 +0.6530715 1.458117 3.261896 +0.7474945 1.458117 3.261896 +0.8539475 1.458117 3.261896 +0.974052 1.458117 3.261896 +1.113885 1.458117 3.261896 +1.27456 1.458117 3.261896 +1.458117 1.458117 3.261896 +1.667858 1.458117 3.261896 +1.907556 1.458117 3.261896 +2.181521 1.458117 3.261896 +2.494678 1.458117 3.261896 +2.852659 1.458117 3.261896 +3.261896 1.458117 3.261896 +3.729748 1.458117 3.261896 +4.264621 1.458117 3.261896 +4.876131 1.458117 3.261896 +5.575266 1.458117 3.261896 +6.374593 1.458117 3.261896 +0 1.667858 3.261896 +0 1.667858 3.261896 +0 1.667858 3.261896 +0.002268731 1.667858 3.261896 +0.07076883 1.667858 3.261896 +0.1119241 1.667858 3.261896 +0.1475052 1.667858 3.261896 +0.1846606 1.667858 3.261896 +0.2245119 1.667858 3.261896 +0.2679612 1.667858 3.261896 +0.3158431 1.667858 3.261896 +0.3689944 1.667858 3.261896 +0.4282948 1.667858 3.261896 +0.494694 1.667858 3.261896 +0.5692344 1.667858 3.261896 +0.6530715 1.667858 3.261896 +0.7474945 1.667858 3.261896 +0.8539475 1.667858 3.261896 +0.974052 1.667858 3.261896 +1.113885 1.667858 3.261896 +1.27456 1.667858 3.261896 +1.458117 1.667858 3.261896 +1.667858 1.667858 3.261896 +1.907556 1.667858 3.261896 +2.181521 1.667858 3.261896 +2.494678 1.667858 3.261896 +2.852659 1.667858 3.261896 +3.261896 1.667858 3.261896 +3.729748 1.667858 3.261896 +4.264621 1.667858 3.261896 +4.876131 1.667858 3.261896 +5.575266 1.667858 3.261896 +6.374593 1.667858 3.261896 +0 1.907556 3.261896 +0 1.907556 3.261896 +0 1.907556 3.261896 +0.002268731 1.907556 3.261896 +0.07076883 1.907556 3.261896 +0.1119241 1.907556 3.261896 +0.1475052 1.907556 3.261896 +0.1846606 1.907556 3.261896 +0.2245119 1.907556 3.261896 +0.2679612 1.907556 3.261896 +0.3158431 1.907556 3.261896 +0.3689944 1.907556 3.261896 +0.4282948 1.907556 3.261896 +0.494694 1.907556 3.261896 +0.5692344 1.907556 3.261896 +0.6530715 1.907556 3.261896 +0.7474945 1.907556 3.261896 +0.8539475 1.907556 3.261896 +0.974052 1.907556 3.261896 +1.113885 1.907556 3.261896 +1.27456 1.907556 3.261896 +1.458117 1.907556 3.261896 +1.667858 1.907556 3.261896 +1.907556 1.907556 3.261896 +2.181521 1.907556 3.261896 +2.494678 1.907556 3.261896 +2.852659 1.907556 3.261896 +3.261896 1.907556 3.261896 +3.729748 1.907556 3.261896 +4.264621 1.907556 3.261896 +4.876131 1.907556 3.261896 +5.575266 1.907556 3.261896 +6.374593 1.907556 3.261896 +0 2.181521 3.261896 +0 2.181521 3.261896 +0 2.181521 3.261896 +0.002268731 2.181521 3.261896 +0.07076883 2.181521 3.261896 +0.1119241 2.181521 3.261896 +0.1475052 2.181521 3.261896 +0.1846606 2.181521 3.261896 +0.2245119 2.181521 3.261896 +0.2679612 2.181521 3.261896 +0.3158431 2.181521 3.261896 +0.3689944 2.181521 3.261896 +0.4282948 2.181521 3.261896 +0.494694 2.181521 3.261896 +0.5692344 2.181521 3.261896 +0.6530715 2.181521 3.261896 +0.7474945 2.181521 3.261896 +0.8539475 2.181521 3.261896 +0.974052 2.181521 3.261896 +1.113885 2.181521 3.261896 +1.27456 2.181521 3.261896 +1.458117 2.181521 3.261896 +1.667858 2.181521 3.261896 +1.907556 2.181521 3.261896 +2.181521 2.181521 3.261896 +2.494678 2.181521 3.261896 +2.852659 2.181521 3.261896 +3.261896 2.181521 3.261896 +3.729748 2.181521 3.261896 +4.264621 2.181521 3.261896 +4.876131 2.181521 3.261896 +5.575266 2.181521 3.261896 +6.374593 2.181521 3.261896 +0 2.494678 3.261896 +0 2.494678 3.261896 +0 2.494678 3.261896 +0.002268731 2.494678 3.261896 +0.07076883 2.494678 3.261896 +0.1119241 2.494678 3.261896 +0.1475052 2.494678 3.261896 +0.1846606 2.494678 3.261896 +0.2245119 2.494678 3.261896 +0.2679612 2.494678 3.261896 +0.3158431 2.494678 3.261896 +0.3689944 2.494678 3.261896 +0.4282948 2.494678 3.261896 +0.494694 2.494678 3.261896 +0.5692344 2.494678 3.261896 +0.6530715 2.494678 3.261896 +0.7474945 2.494678 3.261896 +0.8539475 2.494678 3.261896 +0.974052 2.494678 3.261896 +1.113885 2.494678 3.261896 +1.27456 2.494678 3.261896 +1.458117 2.494678 3.261896 +1.667858 2.494678 3.261896 +1.907556 2.494678 3.261896 +2.181521 2.494678 3.261896 +2.494678 2.494678 3.261896 +2.852659 2.494678 3.261896 +3.261896 2.494678 3.261896 +3.729748 2.494678 3.261896 +4.264621 2.494678 3.261896 +4.876131 2.494678 3.261896 +5.575266 2.494678 3.261896 +6.374593 2.494678 3.261896 +0 2.852659 3.261896 +0 2.852659 3.261896 +0 2.852659 3.261896 +0.002268731 2.852659 3.261896 +0.07076883 2.852659 3.261896 +0.1119241 2.852659 3.261896 +0.1475052 2.852659 3.261896 +0.1846606 2.852659 3.261896 +0.2245119 2.852659 3.261896 +0.2679612 2.852659 3.261896 +0.3158431 2.852659 3.261896 +0.3689944 2.852659 3.261896 +0.4282948 2.852659 3.261896 +0.494694 2.852659 3.261896 +0.5692344 2.852659 3.261896 +0.6530715 2.852659 3.261896 +0.7474945 2.852659 3.261896 +0.8539475 2.852659 3.261896 +0.974052 2.852659 3.261896 +1.113885 2.852659 3.261896 +1.27456 2.852659 3.261896 +1.458117 2.852659 3.261896 +1.667858 2.852659 3.261896 +1.907556 2.852659 3.261896 +2.181521 2.852659 3.261896 +2.494678 2.852659 3.261896 +2.852659 2.852659 3.261896 +3.261896 2.852659 3.261896 +3.729748 2.852659 3.261896 +4.264621 2.852659 3.261896 +4.876131 2.852659 3.261896 +5.575266 2.852659 3.261896 +6.374593 2.852659 3.261896 +0 3.261896 3.261896 +0 3.261896 3.261896 +0 3.261896 3.261896 +0.002268731 3.261896 3.261896 +0.07076883 3.261896 3.261896 +0.1119241 3.261896 3.261896 +0.1475052 3.261896 3.261896 +0.1846606 3.261896 3.261896 +0.2245119 3.261896 3.261896 +0.2679612 3.261896 3.261896 +0.3158431 3.261896 3.261896 +0.3689944 3.261896 3.261896 +0.4282948 3.261896 3.261896 +0.494694 3.261896 3.261896 +0.5692344 3.261896 3.261896 +0.6530715 3.261896 3.261896 +0.7474945 3.261896 3.261896 +0.8539475 3.261896 3.261896 +0.974052 3.261896 3.261896 +1.113885 3.261896 3.261896 +1.27456 3.261896 3.261896 +1.458117 3.261896 3.261896 +1.667858 3.261896 3.261896 +1.907556 3.261896 3.261896 +2.181521 3.261896 3.261896 +2.494678 3.261896 3.261896 +2.852659 3.261896 3.261896 +3.261896 3.261896 3.261896 +3.729748 3.261896 3.261896 +4.264621 3.261896 3.261896 +4.876131 3.261896 3.261896 +5.575266 3.261896 3.261896 +6.374593 3.261896 3.261896 +0 3.729748 3.261896 +0 3.729748 3.261896 +0 3.729748 3.261896 +0.002268731 3.729748 3.261896 +0.07076883 3.729748 3.261896 +0.1119241 3.729748 3.261896 +0.1475052 3.729748 3.261896 +0.1846606 3.729748 3.261896 +0.2245119 3.729748 3.261896 +0.2679612 3.729748 3.261896 +0.3158431 3.729748 3.261896 +0.3689944 3.729748 3.261896 +0.4282948 3.729748 3.261896 +0.494694 3.729748 3.261896 +0.5692344 3.729748 3.261896 +0.6530715 3.729748 3.261896 +0.7474945 3.729748 3.261896 +0.8539475 3.729748 3.261896 +0.974052 3.729748 3.261896 +1.113885 3.729748 3.261896 +1.27456 3.729748 3.261896 +1.458117 3.729748 3.261896 +1.667858 3.729748 3.261896 +1.907556 3.729748 3.261896 +2.181521 3.729748 3.261896 +2.494678 3.729748 3.261896 +2.852659 3.729748 3.261896 +3.261896 3.729748 3.261896 +3.729748 3.729748 3.261896 +4.264621 3.729748 3.261896 +4.876131 3.729748 3.261896 +5.575266 3.729748 3.261896 +6.374593 3.729748 3.261896 +0 4.264621 3.261896 +0 4.264621 3.261896 +0 4.264621 3.261896 +0.002268731 4.264621 3.261896 +0.07076883 4.264621 3.261896 +0.1119241 4.264621 3.261896 +0.1475052 4.264621 3.261896 +0.1846606 4.264621 3.261896 +0.2245119 4.264621 3.261896 +0.2679612 4.264621 3.261896 +0.3158431 4.264621 3.261896 +0.3689944 4.264621 3.261896 +0.4282948 4.264621 3.261896 +0.494694 4.264621 3.261896 +0.5692344 4.264621 3.261896 +0.6530715 4.264621 3.261896 +0.7474945 4.264621 3.261896 +0.8539475 4.264621 3.261896 +0.974052 4.264621 3.261896 +1.113885 4.264621 3.261896 +1.27456 4.264621 3.261896 +1.458117 4.264621 3.261896 +1.667858 4.264621 3.261896 +1.907556 4.264621 3.261896 +2.181521 4.264621 3.261896 +2.494678 4.264621 3.261896 +2.852659 4.264621 3.261896 +3.261896 4.264621 3.261896 +3.729748 4.264621 3.261896 +4.264621 4.264621 3.261896 +4.876131 4.264621 3.261896 +5.575266 4.264621 3.261896 +6.374593 4.264621 3.261896 +0 4.876131 3.261896 +0 4.876131 3.261896 +0 4.876131 3.261896 +0.002268731 4.876131 3.261896 +0.07076883 4.876131 3.261896 +0.1119241 4.876131 3.261896 +0.1475052 4.876131 3.261896 +0.1846606 4.876131 3.261896 +0.2245119 4.876131 3.261896 +0.2679612 4.876131 3.261896 +0.3158431 4.876131 3.261896 +0.3689944 4.876131 3.261896 +0.4282948 4.876131 3.261896 +0.494694 4.876131 3.261896 +0.5692344 4.876131 3.261896 +0.6530715 4.876131 3.261896 +0.7474945 4.876131 3.261896 +0.8539475 4.876131 3.261896 +0.974052 4.876131 3.261896 +1.113885 4.876131 3.261896 +1.27456 4.876131 3.261896 +1.458117 4.876131 3.261896 +1.667858 4.876131 3.261896 +1.907556 4.876131 3.261896 +2.181521 4.876131 3.261896 +2.494678 4.876131 3.261896 +2.852659 4.876131 3.261896 +3.261896 4.876131 3.261896 +3.729748 4.876131 3.261896 +4.264621 4.876131 3.261896 +4.876131 4.876131 3.261896 +5.575266 4.876131 3.261896 +6.374593 4.876131 3.261896 +0 5.575266 3.261896 +0 5.575266 3.261896 +0 5.575266 3.261896 +0.002268731 5.575266 3.261896 +0.07076883 5.575266 3.261896 +0.1119241 5.575266 3.261896 +0.1475052 5.575266 3.261896 +0.1846606 5.575266 3.261896 +0.2245119 5.575266 3.261896 +0.2679612 5.575266 3.261896 +0.3158431 5.575266 3.261896 +0.3689944 5.575266 3.261896 +0.4282948 5.575266 3.261896 +0.494694 5.575266 3.261896 +0.5692344 5.575266 3.261896 +0.6530715 5.575266 3.261896 +0.7474945 5.575266 3.261896 +0.8539475 5.575266 3.261896 +0.974052 5.575266 3.261896 +1.113885 5.575266 3.261896 +1.27456 5.575266 3.261896 +1.458117 5.575266 3.261896 +1.667858 5.575266 3.261896 +1.907556 5.575266 3.261896 +2.181521 5.575266 3.261896 +2.494678 5.575266 3.261896 +2.852659 5.575266 3.261896 +3.261896 5.575266 3.261896 +3.729748 5.575266 3.261896 +4.264621 5.575266 3.261896 +4.876131 5.575266 3.261896 +5.575266 5.575266 3.261896 +6.374593 5.575266 3.261896 +0 6.374593 3.261896 +0 6.374593 3.261896 +0 6.374593 3.261896 +0.002268731 6.374593 3.261896 +0.07076883 6.374593 3.261896 +0.1119241 6.374593 3.261896 +0.1475052 6.374593 3.261896 +0.1846606 6.374593 3.261896 +0.2245119 6.374593 3.261896 +0.2679612 6.374593 3.261896 +0.3158431 6.374593 3.261896 +0.3689944 6.374593 3.261896 +0.4282948 6.374593 3.261896 +0.494694 6.374593 3.261896 +0.5692344 6.374593 3.261896 +0.6530715 6.374593 3.261896 +0.7474945 6.374593 3.261896 +0.8539475 6.374593 3.261896 +0.974052 6.374593 3.261896 +1.113885 6.374593 3.261896 +1.27456 6.374593 3.261896 +1.458117 6.374593 3.261896 +1.667858 6.374593 3.261896 +1.907556 6.374593 3.261896 +2.181521 6.374593 3.261896 +2.494678 6.374593 3.261896 +2.852659 6.374593 3.261896 +3.261896 6.374593 3.261896 +3.729748 6.374593 3.261896 +4.264621 6.374593 3.261896 +4.876131 6.374593 3.261896 +5.575266 6.374593 3.261896 +6.374593 6.374593 3.261896 +0 0 3.729748 +0 0 3.729748 +0 0 3.729748 +0.002268731 0 3.729748 +0.07076883 0 3.729748 +0.1119241 0 3.729748 +0.1475052 0 3.729748 +0.1846606 0 3.729748 +0.2245119 0 3.729748 +0.2679612 0 3.729748 +0.3158431 0 3.729748 +0.3689944 0 3.729748 +0.4282948 0 3.729748 +0.494694 0 3.729748 +0.5692344 0 3.729748 +0.6530715 0 3.729748 +0.7474945 0 3.729748 +0.8539475 0 3.729748 +0.974052 0 3.729748 +1.113885 0 3.729748 +1.27456 0 3.729748 +1.458117 0 3.729748 +1.667858 0 3.729748 +1.907556 0 3.729748 +2.181521 0 3.729748 +2.494678 0 3.729748 +2.852659 0 3.729748 +3.261896 0 3.729748 +3.729748 0 3.729748 +4.264621 0 3.729748 +4.876131 0 3.729748 +5.575266 0 3.729748 +6.374593 0 3.729748 +0 0 3.729748 +0 0 3.729748 +0 0 3.729748 +0.002268731 0 3.729748 +0.07076883 0 3.729748 +0.1119241 0 3.729748 +0.1475052 0 3.729748 +0.1846606 0 3.729748 +0.2245119 0 3.729748 +0.2679612 0 3.729748 +0.3158431 0 3.729748 +0.3689944 0 3.729748 +0.4282948 0 3.729748 +0.494694 0 3.729748 +0.5692344 0 3.729748 +0.6530715 0 3.729748 +0.7474945 0 3.729748 +0.8539475 0 3.729748 +0.974052 0 3.729748 +1.113885 0 3.729748 +1.27456 0 3.729748 +1.458117 0 3.729748 +1.667858 0 3.729748 +1.907556 0 3.729748 +2.181521 0 3.729748 +2.494678 0 3.729748 +2.852659 0 3.729748 +3.261896 0 3.729748 +3.729748 0 3.729748 +4.264621 0 3.729748 +4.876131 0 3.729748 +5.575266 0 3.729748 +6.374593 0 3.729748 +0 0 3.729748 +0 0 3.729748 +0 0 3.729748 +0.002268731 0 3.729748 +0.07076883 0 3.729748 +0.1119241 0 3.729748 +0.1475052 0 3.729748 +0.1846606 0 3.729748 +0.2245119 0 3.729748 +0.2679612 0 3.729748 +0.3158431 0 3.729748 +0.3689944 0 3.729748 +0.4282948 0 3.729748 +0.494694 0 3.729748 +0.5692344 0 3.729748 +0.6530715 0 3.729748 +0.7474945 0 3.729748 +0.8539475 0 3.729748 +0.974052 0 3.729748 +1.113885 0 3.729748 +1.27456 0 3.729748 +1.458117 0 3.729748 +1.667858 0 3.729748 +1.907556 0 3.729748 +2.181521 0 3.729748 +2.494678 0 3.729748 +2.852659 0 3.729748 +3.261896 0 3.729748 +3.729748 0 3.729748 +4.264621 0 3.729748 +4.876131 0 3.729748 +5.575266 0 3.729748 +6.374593 0 3.729748 +0 0.002268731 3.729748 +0 0.002268731 3.729748 +0 0.002268731 3.729748 +0.002268731 0.002268731 3.729748 +0.07076883 0.002268731 3.729748 +0.1119241 0.002268731 3.729748 +0.1475052 0.002268731 3.729748 +0.1846606 0.002268731 3.729748 +0.2245119 0.002268731 3.729748 +0.2679612 0.002268731 3.729748 +0.3158431 0.002268731 3.729748 +0.3689944 0.002268731 3.729748 +0.4282948 0.002268731 3.729748 +0.494694 0.002268731 3.729748 +0.5692344 0.002268731 3.729748 +0.6530715 0.002268731 3.729748 +0.7474945 0.002268731 3.729748 +0.8539475 0.002268731 3.729748 +0.974052 0.002268731 3.729748 +1.113885 0.002268731 3.729748 +1.27456 0.002268731 3.729748 +1.458117 0.002268731 3.729748 +1.667858 0.002268731 3.729748 +1.907556 0.002268731 3.729748 +2.181521 0.002268731 3.729748 +2.494678 0.002268731 3.729748 +2.852659 0.002268731 3.729748 +3.261896 0.002268731 3.729748 +3.729748 0.002268731 3.729748 +4.264621 0.002268731 3.729748 +4.876131 0.002268731 3.729748 +5.575266 0.002268731 3.729748 +6.374593 0.002268731 3.729748 +0 0.07076883 3.729748 +0 0.07076883 3.729748 +0 0.07076883 3.729748 +0.002268731 0.07076883 3.729748 +0.07076883 0.07076883 3.729748 +0.1119241 0.07076883 3.729748 +0.1475052 0.07076883 3.729748 +0.1846606 0.07076883 3.729748 +0.2245119 0.07076883 3.729748 +0.2679612 0.07076883 3.729748 +0.3158431 0.07076883 3.729748 +0.3689944 0.07076883 3.729748 +0.4282948 0.07076883 3.729748 +0.494694 0.07076883 3.729748 +0.5692344 0.07076883 3.729748 +0.6530715 0.07076883 3.729748 +0.7474945 0.07076883 3.729748 +0.8539475 0.07076883 3.729748 +0.974052 0.07076883 3.729748 +1.113885 0.07076883 3.729748 +1.27456 0.07076883 3.729748 +1.458117 0.07076883 3.729748 +1.667858 0.07076883 3.729748 +1.907556 0.07076883 3.729748 +2.181521 0.07076883 3.729748 +2.494678 0.07076883 3.729748 +2.852659 0.07076883 3.729748 +3.261896 0.07076883 3.729748 +3.729748 0.07076883 3.729748 +4.264621 0.07076883 3.729748 +4.876131 0.07076883 3.729748 +5.575266 0.07076883 3.729748 +6.374593 0.07076883 3.729748 +0 0.1119241 3.729748 +0 0.1119241 3.729748 +0 0.1119241 3.729748 +0.002268731 0.1119241 3.729748 +0.07076883 0.1119241 3.729748 +0.1119241 0.1119241 3.729748 +0.1475052 0.1119241 3.729748 +0.1846606 0.1119241 3.729748 +0.2245119 0.1119241 3.729748 +0.2679612 0.1119241 3.729748 +0.3158431 0.1119241 3.729748 +0.3689944 0.1119241 3.729748 +0.4282948 0.1119241 3.729748 +0.494694 0.1119241 3.729748 +0.5692344 0.1119241 3.729748 +0.6530715 0.1119241 3.729748 +0.7474945 0.1119241 3.729748 +0.8539475 0.1119241 3.729748 +0.974052 0.1119241 3.729748 +1.113885 0.1119241 3.729748 +1.27456 0.1119241 3.729748 +1.458117 0.1119241 3.729748 +1.667858 0.1119241 3.729748 +1.907556 0.1119241 3.729748 +2.181521 0.1119241 3.729748 +2.494678 0.1119241 3.729748 +2.852659 0.1119241 3.729748 +3.261896 0.1119241 3.729748 +3.729748 0.1119241 3.729748 +4.264621 0.1119241 3.729748 +4.876131 0.1119241 3.729748 +5.575266 0.1119241 3.729748 +6.374593 0.1119241 3.729748 +0 0.1475052 3.729748 +0 0.1475052 3.729748 +0 0.1475052 3.729748 +0.002268731 0.1475052 3.729748 +0.07076883 0.1475052 3.729748 +0.1119241 0.1475052 3.729748 +0.1475052 0.1475052 3.729748 +0.1846606 0.1475052 3.729748 +0.2245119 0.1475052 3.729748 +0.2679612 0.1475052 3.729748 +0.3158431 0.1475052 3.729748 +0.3689944 0.1475052 3.729748 +0.4282948 0.1475052 3.729748 +0.494694 0.1475052 3.729748 +0.5692344 0.1475052 3.729748 +0.6530715 0.1475052 3.729748 +0.7474945 0.1475052 3.729748 +0.8539475 0.1475052 3.729748 +0.974052 0.1475052 3.729748 +1.113885 0.1475052 3.729748 +1.27456 0.1475052 3.729748 +1.458117 0.1475052 3.729748 +1.667858 0.1475052 3.729748 +1.907556 0.1475052 3.729748 +2.181521 0.1475052 3.729748 +2.494678 0.1475052 3.729748 +2.852659 0.1475052 3.729748 +3.261896 0.1475052 3.729748 +3.729748 0.1475052 3.729748 +4.264621 0.1475052 3.729748 +4.876131 0.1475052 3.729748 +5.575266 0.1475052 3.729748 +6.374593 0.1475052 3.729748 +0 0.1846606 3.729748 +0 0.1846606 3.729748 +0 0.1846606 3.729748 +0.002268731 0.1846606 3.729748 +0.07076883 0.1846606 3.729748 +0.1119241 0.1846606 3.729748 +0.1475052 0.1846606 3.729748 +0.1846606 0.1846606 3.729748 +0.2245119 0.1846606 3.729748 +0.2679612 0.1846606 3.729748 +0.3158431 0.1846606 3.729748 +0.3689944 0.1846606 3.729748 +0.4282948 0.1846606 3.729748 +0.494694 0.1846606 3.729748 +0.5692344 0.1846606 3.729748 +0.6530715 0.1846606 3.729748 +0.7474945 0.1846606 3.729748 +0.8539475 0.1846606 3.729748 +0.974052 0.1846606 3.729748 +1.113885 0.1846606 3.729748 +1.27456 0.1846606 3.729748 +1.458117 0.1846606 3.729748 +1.667858 0.1846606 3.729748 +1.907556 0.1846606 3.729748 +2.181521 0.1846606 3.729748 +2.494678 0.1846606 3.729748 +2.852659 0.1846606 3.729748 +3.261896 0.1846606 3.729748 +3.729748 0.1846606 3.729748 +4.264621 0.1846606 3.729748 +4.876131 0.1846606 3.729748 +5.575266 0.1846606 3.729748 +6.374593 0.1846606 3.729748 +0 0.2245119 3.729748 +0 0.2245119 3.729748 +0 0.2245119 3.729748 +0.002268731 0.2245119 3.729748 +0.07076883 0.2245119 3.729748 +0.1119241 0.2245119 3.729748 +0.1475052 0.2245119 3.729748 +0.1846606 0.2245119 3.729748 +0.2245119 0.2245119 3.729748 +0.2679612 0.2245119 3.729748 +0.3158431 0.2245119 3.729748 +0.3689944 0.2245119 3.729748 +0.4282948 0.2245119 3.729748 +0.494694 0.2245119 3.729748 +0.5692344 0.2245119 3.729748 +0.6530715 0.2245119 3.729748 +0.7474945 0.2245119 3.729748 +0.8539475 0.2245119 3.729748 +0.974052 0.2245119 3.729748 +1.113885 0.2245119 3.729748 +1.27456 0.2245119 3.729748 +1.458117 0.2245119 3.729748 +1.667858 0.2245119 3.729748 +1.907556 0.2245119 3.729748 +2.181521 0.2245119 3.729748 +2.494678 0.2245119 3.729748 +2.852659 0.2245119 3.729748 +3.261896 0.2245119 3.729748 +3.729748 0.2245119 3.729748 +4.264621 0.2245119 3.729748 +4.876131 0.2245119 3.729748 +5.575266 0.2245119 3.729748 +6.374593 0.2245119 3.729748 +0 0.2679612 3.729748 +0 0.2679612 3.729748 +0 0.2679612 3.729748 +0.002268731 0.2679612 3.729748 +0.07076883 0.2679612 3.729748 +0.1119241 0.2679612 3.729748 +0.1475052 0.2679612 3.729748 +0.1846606 0.2679612 3.729748 +0.2245119 0.2679612 3.729748 +0.2679612 0.2679612 3.729748 +0.3158431 0.2679612 3.729748 +0.3689944 0.2679612 3.729748 +0.4282948 0.2679612 3.729748 +0.494694 0.2679612 3.729748 +0.5692344 0.2679612 3.729748 +0.6530715 0.2679612 3.729748 +0.7474945 0.2679612 3.729748 +0.8539475 0.2679612 3.729748 +0.974052 0.2679612 3.729748 +1.113885 0.2679612 3.729748 +1.27456 0.2679612 3.729748 +1.458117 0.2679612 3.729748 +1.667858 0.2679612 3.729748 +1.907556 0.2679612 3.729748 +2.181521 0.2679612 3.729748 +2.494678 0.2679612 3.729748 +2.852659 0.2679612 3.729748 +3.261896 0.2679612 3.729748 +3.729748 0.2679612 3.729748 +4.264621 0.2679612 3.729748 +4.876131 0.2679612 3.729748 +5.575266 0.2679612 3.729748 +6.374593 0.2679612 3.729748 +0 0.3158431 3.729748 +0 0.3158431 3.729748 +0 0.3158431 3.729748 +0.002268731 0.3158431 3.729748 +0.07076883 0.3158431 3.729748 +0.1119241 0.3158431 3.729748 +0.1475052 0.3158431 3.729748 +0.1846606 0.3158431 3.729748 +0.2245119 0.3158431 3.729748 +0.2679612 0.3158431 3.729748 +0.3158431 0.3158431 3.729748 +0.3689944 0.3158431 3.729748 +0.4282948 0.3158431 3.729748 +0.494694 0.3158431 3.729748 +0.5692344 0.3158431 3.729748 +0.6530715 0.3158431 3.729748 +0.7474945 0.3158431 3.729748 +0.8539475 0.3158431 3.729748 +0.974052 0.3158431 3.729748 +1.113885 0.3158431 3.729748 +1.27456 0.3158431 3.729748 +1.458117 0.3158431 3.729748 +1.667858 0.3158431 3.729748 +1.907556 0.3158431 3.729748 +2.181521 0.3158431 3.729748 +2.494678 0.3158431 3.729748 +2.852659 0.3158431 3.729748 +3.261896 0.3158431 3.729748 +3.729748 0.3158431 3.729748 +4.264621 0.3158431 3.729748 +4.876131 0.3158431 3.729748 +5.575266 0.3158431 3.729748 +6.374593 0.3158431 3.729748 +0 0.3689944 3.729748 +0 0.3689944 3.729748 +0 0.3689944 3.729748 +0.002268731 0.3689944 3.729748 +0.07076883 0.3689944 3.729748 +0.1119241 0.3689944 3.729748 +0.1475052 0.3689944 3.729748 +0.1846606 0.3689944 3.729748 +0.2245119 0.3689944 3.729748 +0.2679612 0.3689944 3.729748 +0.3158431 0.3689944 3.729748 +0.3689944 0.3689944 3.729748 +0.4282948 0.3689944 3.729748 +0.494694 0.3689944 3.729748 +0.5692344 0.3689944 3.729748 +0.6530715 0.3689944 3.729748 +0.7474945 0.3689944 3.729748 +0.8539475 0.3689944 3.729748 +0.974052 0.3689944 3.729748 +1.113885 0.3689944 3.729748 +1.27456 0.3689944 3.729748 +1.458117 0.3689944 3.729748 +1.667858 0.3689944 3.729748 +1.907556 0.3689944 3.729748 +2.181521 0.3689944 3.729748 +2.494678 0.3689944 3.729748 +2.852659 0.3689944 3.729748 +3.261896 0.3689944 3.729748 +3.729748 0.3689944 3.729748 +4.264621 0.3689944 3.729748 +4.876131 0.3689944 3.729748 +5.575266 0.3689944 3.729748 +6.374593 0.3689944 3.729748 +0 0.4282948 3.729748 +0 0.4282948 3.729748 +0 0.4282948 3.729748 +0.002268731 0.4282948 3.729748 +0.07076883 0.4282948 3.729748 +0.1119241 0.4282948 3.729748 +0.1475052 0.4282948 3.729748 +0.1846606 0.4282948 3.729748 +0.2245119 0.4282948 3.729748 +0.2679612 0.4282948 3.729748 +0.3158431 0.4282948 3.729748 +0.3689944 0.4282948 3.729748 +0.4282948 0.4282948 3.729748 +0.494694 0.4282948 3.729748 +0.5692344 0.4282948 3.729748 +0.6530715 0.4282948 3.729748 +0.7474945 0.4282948 3.729748 +0.8539475 0.4282948 3.729748 +0.974052 0.4282948 3.729748 +1.113885 0.4282948 3.729748 +1.27456 0.4282948 3.729748 +1.458117 0.4282948 3.729748 +1.667858 0.4282948 3.729748 +1.907556 0.4282948 3.729748 +2.181521 0.4282948 3.729748 +2.494678 0.4282948 3.729748 +2.852659 0.4282948 3.729748 +3.261896 0.4282948 3.729748 +3.729748 0.4282948 3.729748 +4.264621 0.4282948 3.729748 +4.876131 0.4282948 3.729748 +5.575266 0.4282948 3.729748 +6.374593 0.4282948 3.729748 +0 0.494694 3.729748 +0 0.494694 3.729748 +0 0.494694 3.729748 +0.002268731 0.494694 3.729748 +0.07076883 0.494694 3.729748 +0.1119241 0.494694 3.729748 +0.1475052 0.494694 3.729748 +0.1846606 0.494694 3.729748 +0.2245119 0.494694 3.729748 +0.2679612 0.494694 3.729748 +0.3158431 0.494694 3.729748 +0.3689944 0.494694 3.729748 +0.4282948 0.494694 3.729748 +0.494694 0.494694 3.729748 +0.5692344 0.494694 3.729748 +0.6530715 0.494694 3.729748 +0.7474945 0.494694 3.729748 +0.8539475 0.494694 3.729748 +0.974052 0.494694 3.729748 +1.113885 0.494694 3.729748 +1.27456 0.494694 3.729748 +1.458117 0.494694 3.729748 +1.667858 0.494694 3.729748 +1.907556 0.494694 3.729748 +2.181521 0.494694 3.729748 +2.494678 0.494694 3.729748 +2.852659 0.494694 3.729748 +3.261896 0.494694 3.729748 +3.729748 0.494694 3.729748 +4.264621 0.494694 3.729748 +4.876131 0.494694 3.729748 +5.575266 0.494694 3.729748 +6.374593 0.494694 3.729748 +0 0.5692344 3.729748 +0 0.5692344 3.729748 +0 0.5692344 3.729748 +0.002268731 0.5692344 3.729748 +0.07076883 0.5692344 3.729748 +0.1119241 0.5692344 3.729748 +0.1475052 0.5692344 3.729748 +0.1846606 0.5692344 3.729748 +0.2245119 0.5692344 3.729748 +0.2679612 0.5692344 3.729748 +0.3158431 0.5692344 3.729748 +0.3689944 0.5692344 3.729748 +0.4282948 0.5692344 3.729748 +0.494694 0.5692344 3.729748 +0.5692344 0.5692344 3.729748 +0.6530715 0.5692344 3.729748 +0.7474945 0.5692344 3.729748 +0.8539475 0.5692344 3.729748 +0.974052 0.5692344 3.729748 +1.113885 0.5692344 3.729748 +1.27456 0.5692344 3.729748 +1.458117 0.5692344 3.729748 +1.667858 0.5692344 3.729748 +1.907556 0.5692344 3.729748 +2.181521 0.5692344 3.729748 +2.494678 0.5692344 3.729748 +2.852659 0.5692344 3.729748 +3.261896 0.5692344 3.729748 +3.729748 0.5692344 3.729748 +4.264621 0.5692344 3.729748 +4.876131 0.5692344 3.729748 +5.575266 0.5692344 3.729748 +6.374593 0.5692344 3.729748 +0 0.6530715 3.729748 +0 0.6530715 3.729748 +0 0.6530715 3.729748 +0.002268731 0.6530715 3.729748 +0.07076883 0.6530715 3.729748 +0.1119241 0.6530715 3.729748 +0.1475052 0.6530715 3.729748 +0.1846606 0.6530715 3.729748 +0.2245119 0.6530715 3.729748 +0.2679612 0.6530715 3.729748 +0.3158431 0.6530715 3.729748 +0.3689944 0.6530715 3.729748 +0.4282948 0.6530715 3.729748 +0.494694 0.6530715 3.729748 +0.5692344 0.6530715 3.729748 +0.6530715 0.6530715 3.729748 +0.7474945 0.6530715 3.729748 +0.8539475 0.6530715 3.729748 +0.974052 0.6530715 3.729748 +1.113885 0.6530715 3.729748 +1.27456 0.6530715 3.729748 +1.458117 0.6530715 3.729748 +1.667858 0.6530715 3.729748 +1.907556 0.6530715 3.729748 +2.181521 0.6530715 3.729748 +2.494678 0.6530715 3.729748 +2.852659 0.6530715 3.729748 +3.261896 0.6530715 3.729748 +3.729748 0.6530715 3.729748 +4.264621 0.6530715 3.729748 +4.876131 0.6530715 3.729748 +5.575266 0.6530715 3.729748 +6.374593 0.6530715 3.729748 +0 0.7474945 3.729748 +0 0.7474945 3.729748 +0 0.7474945 3.729748 +0.002268731 0.7474945 3.729748 +0.07076883 0.7474945 3.729748 +0.1119241 0.7474945 3.729748 +0.1475052 0.7474945 3.729748 +0.1846606 0.7474945 3.729748 +0.2245119 0.7474945 3.729748 +0.2679612 0.7474945 3.729748 +0.3158431 0.7474945 3.729748 +0.3689944 0.7474945 3.729748 +0.4282948 0.7474945 3.729748 +0.494694 0.7474945 3.729748 +0.5692344 0.7474945 3.729748 +0.6530715 0.7474945 3.729748 +0.7474945 0.7474945 3.729748 +0.8539475 0.7474945 3.729748 +0.974052 0.7474945 3.729748 +1.113885 0.7474945 3.729748 +1.27456 0.7474945 3.729748 +1.458117 0.7474945 3.729748 +1.667858 0.7474945 3.729748 +1.907556 0.7474945 3.729748 +2.181521 0.7474945 3.729748 +2.494678 0.7474945 3.729748 +2.852659 0.7474945 3.729748 +3.261896 0.7474945 3.729748 +3.729748 0.7474945 3.729748 +4.264621 0.7474945 3.729748 +4.876131 0.7474945 3.729748 +5.575266 0.7474945 3.729748 +6.374593 0.7474945 3.729748 +0 0.8539475 3.729748 +0 0.8539475 3.729748 +0 0.8539475 3.729748 +0.002268731 0.8539475 3.729748 +0.07076883 0.8539475 3.729748 +0.1119241 0.8539475 3.729748 +0.1475052 0.8539475 3.729748 +0.1846606 0.8539475 3.729748 +0.2245119 0.8539475 3.729748 +0.2679612 0.8539475 3.729748 +0.3158431 0.8539475 3.729748 +0.3689944 0.8539475 3.729748 +0.4282948 0.8539475 3.729748 +0.494694 0.8539475 3.729748 +0.5692344 0.8539475 3.729748 +0.6530715 0.8539475 3.729748 +0.7474945 0.8539475 3.729748 +0.8539475 0.8539475 3.729748 +0.974052 0.8539475 3.729748 +1.113885 0.8539475 3.729748 +1.27456 0.8539475 3.729748 +1.458117 0.8539475 3.729748 +1.667858 0.8539475 3.729748 +1.907556 0.8539475 3.729748 +2.181521 0.8539475 3.729748 +2.494678 0.8539475 3.729748 +2.852659 0.8539475 3.729748 +3.261896 0.8539475 3.729748 +3.729748 0.8539475 3.729748 +4.264621 0.8539475 3.729748 +4.876131 0.8539475 3.729748 +5.575266 0.8539475 3.729748 +6.374593 0.8539475 3.729748 +0 0.974052 3.729748 +0 0.974052 3.729748 +0 0.974052 3.729748 +0.002268731 0.974052 3.729748 +0.07076883 0.974052 3.729748 +0.1119241 0.974052 3.729748 +0.1475052 0.974052 3.729748 +0.1846606 0.974052 3.729748 +0.2245119 0.974052 3.729748 +0.2679612 0.974052 3.729748 +0.3158431 0.974052 3.729748 +0.3689944 0.974052 3.729748 +0.4282948 0.974052 3.729748 +0.494694 0.974052 3.729748 +0.5692344 0.974052 3.729748 +0.6530715 0.974052 3.729748 +0.7474945 0.974052 3.729748 +0.8539475 0.974052 3.729748 +0.974052 0.974052 3.729748 +1.113885 0.974052 3.729748 +1.27456 0.974052 3.729748 +1.458117 0.974052 3.729748 +1.667858 0.974052 3.729748 +1.907556 0.974052 3.729748 +2.181521 0.974052 3.729748 +2.494678 0.974052 3.729748 +2.852659 0.974052 3.729748 +3.261896 0.974052 3.729748 +3.729748 0.974052 3.729748 +4.264621 0.974052 3.729748 +4.876131 0.974052 3.729748 +5.575266 0.974052 3.729748 +6.374593 0.974052 3.729748 +0 1.113885 3.729748 +0 1.113885 3.729748 +0 1.113885 3.729748 +0.002268731 1.113885 3.729748 +0.07076883 1.113885 3.729748 +0.1119241 1.113885 3.729748 +0.1475052 1.113885 3.729748 +0.1846606 1.113885 3.729748 +0.2245119 1.113885 3.729748 +0.2679612 1.113885 3.729748 +0.3158431 1.113885 3.729748 +0.3689944 1.113885 3.729748 +0.4282948 1.113885 3.729748 +0.494694 1.113885 3.729748 +0.5692344 1.113885 3.729748 +0.6530715 1.113885 3.729748 +0.7474945 1.113885 3.729748 +0.8539475 1.113885 3.729748 +0.974052 1.113885 3.729748 +1.113885 1.113885 3.729748 +1.27456 1.113885 3.729748 +1.458117 1.113885 3.729748 +1.667858 1.113885 3.729748 +1.907556 1.113885 3.729748 +2.181521 1.113885 3.729748 +2.494678 1.113885 3.729748 +2.852659 1.113885 3.729748 +3.261896 1.113885 3.729748 +3.729748 1.113885 3.729748 +4.264621 1.113885 3.729748 +4.876131 1.113885 3.729748 +5.575266 1.113885 3.729748 +6.374593 1.113885 3.729748 +0 1.27456 3.729748 +0 1.27456 3.729748 +0 1.27456 3.729748 +0.002268731 1.27456 3.729748 +0.07076883 1.27456 3.729748 +0.1119241 1.27456 3.729748 +0.1475052 1.27456 3.729748 +0.1846606 1.27456 3.729748 +0.2245119 1.27456 3.729748 +0.2679612 1.27456 3.729748 +0.3158431 1.27456 3.729748 +0.3689944 1.27456 3.729748 +0.4282948 1.27456 3.729748 +0.494694 1.27456 3.729748 +0.5692344 1.27456 3.729748 +0.6530715 1.27456 3.729748 +0.7474945 1.27456 3.729748 +0.8539475 1.27456 3.729748 +0.974052 1.27456 3.729748 +1.113885 1.27456 3.729748 +1.27456 1.27456 3.729748 +1.458117 1.27456 3.729748 +1.667858 1.27456 3.729748 +1.907556 1.27456 3.729748 +2.181521 1.27456 3.729748 +2.494678 1.27456 3.729748 +2.852659 1.27456 3.729748 +3.261896 1.27456 3.729748 +3.729748 1.27456 3.729748 +4.264621 1.27456 3.729748 +4.876131 1.27456 3.729748 +5.575266 1.27456 3.729748 +6.374593 1.27456 3.729748 +0 1.458117 3.729748 +0 1.458117 3.729748 +0 1.458117 3.729748 +0.002268731 1.458117 3.729748 +0.07076883 1.458117 3.729748 +0.1119241 1.458117 3.729748 +0.1475052 1.458117 3.729748 +0.1846606 1.458117 3.729748 +0.2245119 1.458117 3.729748 +0.2679612 1.458117 3.729748 +0.3158431 1.458117 3.729748 +0.3689944 1.458117 3.729748 +0.4282948 1.458117 3.729748 +0.494694 1.458117 3.729748 +0.5692344 1.458117 3.729748 +0.6530715 1.458117 3.729748 +0.7474945 1.458117 3.729748 +0.8539475 1.458117 3.729748 +0.974052 1.458117 3.729748 +1.113885 1.458117 3.729748 +1.27456 1.458117 3.729748 +1.458117 1.458117 3.729748 +1.667858 1.458117 3.729748 +1.907556 1.458117 3.729748 +2.181521 1.458117 3.729748 +2.494678 1.458117 3.729748 +2.852659 1.458117 3.729748 +3.261896 1.458117 3.729748 +3.729748 1.458117 3.729748 +4.264621 1.458117 3.729748 +4.876131 1.458117 3.729748 +5.575266 1.458117 3.729748 +6.374593 1.458117 3.729748 +0 1.667858 3.729748 +0 1.667858 3.729748 +0 1.667858 3.729748 +0.002268731 1.667858 3.729748 +0.07076883 1.667858 3.729748 +0.1119241 1.667858 3.729748 +0.1475052 1.667858 3.729748 +0.1846606 1.667858 3.729748 +0.2245119 1.667858 3.729748 +0.2679612 1.667858 3.729748 +0.3158431 1.667858 3.729748 +0.3689944 1.667858 3.729748 +0.4282948 1.667858 3.729748 +0.494694 1.667858 3.729748 +0.5692344 1.667858 3.729748 +0.6530715 1.667858 3.729748 +0.7474945 1.667858 3.729748 +0.8539475 1.667858 3.729748 +0.974052 1.667858 3.729748 +1.113885 1.667858 3.729748 +1.27456 1.667858 3.729748 +1.458117 1.667858 3.729748 +1.667858 1.667858 3.729748 +1.907556 1.667858 3.729748 +2.181521 1.667858 3.729748 +2.494678 1.667858 3.729748 +2.852659 1.667858 3.729748 +3.261896 1.667858 3.729748 +3.729748 1.667858 3.729748 +4.264621 1.667858 3.729748 +4.876131 1.667858 3.729748 +5.575266 1.667858 3.729748 +6.374593 1.667858 3.729748 +0 1.907556 3.729748 +0 1.907556 3.729748 +0 1.907556 3.729748 +0.002268731 1.907556 3.729748 +0.07076883 1.907556 3.729748 +0.1119241 1.907556 3.729748 +0.1475052 1.907556 3.729748 +0.1846606 1.907556 3.729748 +0.2245119 1.907556 3.729748 +0.2679612 1.907556 3.729748 +0.3158431 1.907556 3.729748 +0.3689944 1.907556 3.729748 +0.4282948 1.907556 3.729748 +0.494694 1.907556 3.729748 +0.5692344 1.907556 3.729748 +0.6530715 1.907556 3.729748 +0.7474945 1.907556 3.729748 +0.8539475 1.907556 3.729748 +0.974052 1.907556 3.729748 +1.113885 1.907556 3.729748 +1.27456 1.907556 3.729748 +1.458117 1.907556 3.729748 +1.667858 1.907556 3.729748 +1.907556 1.907556 3.729748 +2.181521 1.907556 3.729748 +2.494678 1.907556 3.729748 +2.852659 1.907556 3.729748 +3.261896 1.907556 3.729748 +3.729748 1.907556 3.729748 +4.264621 1.907556 3.729748 +4.876131 1.907556 3.729748 +5.575266 1.907556 3.729748 +6.374593 1.907556 3.729748 +0 2.181521 3.729748 +0 2.181521 3.729748 +0 2.181521 3.729748 +0.002268731 2.181521 3.729748 +0.07076883 2.181521 3.729748 +0.1119241 2.181521 3.729748 +0.1475052 2.181521 3.729748 +0.1846606 2.181521 3.729748 +0.2245119 2.181521 3.729748 +0.2679612 2.181521 3.729748 +0.3158431 2.181521 3.729748 +0.3689944 2.181521 3.729748 +0.4282948 2.181521 3.729748 +0.494694 2.181521 3.729748 +0.5692344 2.181521 3.729748 +0.6530715 2.181521 3.729748 +0.7474945 2.181521 3.729748 +0.8539475 2.181521 3.729748 +0.974052 2.181521 3.729748 +1.113885 2.181521 3.729748 +1.27456 2.181521 3.729748 +1.458117 2.181521 3.729748 +1.667858 2.181521 3.729748 +1.907556 2.181521 3.729748 +2.181521 2.181521 3.729748 +2.494678 2.181521 3.729748 +2.852659 2.181521 3.729748 +3.261896 2.181521 3.729748 +3.729748 2.181521 3.729748 +4.264621 2.181521 3.729748 +4.876131 2.181521 3.729748 +5.575266 2.181521 3.729748 +6.374593 2.181521 3.729748 +0 2.494678 3.729748 +0 2.494678 3.729748 +0 2.494678 3.729748 +0.002268731 2.494678 3.729748 +0.07076883 2.494678 3.729748 +0.1119241 2.494678 3.729748 +0.1475052 2.494678 3.729748 +0.1846606 2.494678 3.729748 +0.2245119 2.494678 3.729748 +0.2679612 2.494678 3.729748 +0.3158431 2.494678 3.729748 +0.3689944 2.494678 3.729748 +0.4282948 2.494678 3.729748 +0.494694 2.494678 3.729748 +0.5692344 2.494678 3.729748 +0.6530715 2.494678 3.729748 +0.7474945 2.494678 3.729748 +0.8539475 2.494678 3.729748 +0.974052 2.494678 3.729748 +1.113885 2.494678 3.729748 +1.27456 2.494678 3.729748 +1.458117 2.494678 3.729748 +1.667858 2.494678 3.729748 +1.907556 2.494678 3.729748 +2.181521 2.494678 3.729748 +2.494678 2.494678 3.729748 +2.852659 2.494678 3.729748 +3.261896 2.494678 3.729748 +3.729748 2.494678 3.729748 +4.264621 2.494678 3.729748 +4.876131 2.494678 3.729748 +5.575266 2.494678 3.729748 +6.374593 2.494678 3.729748 +0 2.852659 3.729748 +0 2.852659 3.729748 +0 2.852659 3.729748 +0.002268731 2.852659 3.729748 +0.07076883 2.852659 3.729748 +0.1119241 2.852659 3.729748 +0.1475052 2.852659 3.729748 +0.1846606 2.852659 3.729748 +0.2245119 2.852659 3.729748 +0.2679612 2.852659 3.729748 +0.3158431 2.852659 3.729748 +0.3689944 2.852659 3.729748 +0.4282948 2.852659 3.729748 +0.494694 2.852659 3.729748 +0.5692344 2.852659 3.729748 +0.6530715 2.852659 3.729748 +0.7474945 2.852659 3.729748 +0.8539475 2.852659 3.729748 +0.974052 2.852659 3.729748 +1.113885 2.852659 3.729748 +1.27456 2.852659 3.729748 +1.458117 2.852659 3.729748 +1.667858 2.852659 3.729748 +1.907556 2.852659 3.729748 +2.181521 2.852659 3.729748 +2.494678 2.852659 3.729748 +2.852659 2.852659 3.729748 +3.261896 2.852659 3.729748 +3.729748 2.852659 3.729748 +4.264621 2.852659 3.729748 +4.876131 2.852659 3.729748 +5.575266 2.852659 3.729748 +6.374593 2.852659 3.729748 +0 3.261896 3.729748 +0 3.261896 3.729748 +0 3.261896 3.729748 +0.002268731 3.261896 3.729748 +0.07076883 3.261896 3.729748 +0.1119241 3.261896 3.729748 +0.1475052 3.261896 3.729748 +0.1846606 3.261896 3.729748 +0.2245119 3.261896 3.729748 +0.2679612 3.261896 3.729748 +0.3158431 3.261896 3.729748 +0.3689944 3.261896 3.729748 +0.4282948 3.261896 3.729748 +0.494694 3.261896 3.729748 +0.5692344 3.261896 3.729748 +0.6530715 3.261896 3.729748 +0.7474945 3.261896 3.729748 +0.8539475 3.261896 3.729748 +0.974052 3.261896 3.729748 +1.113885 3.261896 3.729748 +1.27456 3.261896 3.729748 +1.458117 3.261896 3.729748 +1.667858 3.261896 3.729748 +1.907556 3.261896 3.729748 +2.181521 3.261896 3.729748 +2.494678 3.261896 3.729748 +2.852659 3.261896 3.729748 +3.261896 3.261896 3.729748 +3.729748 3.261896 3.729748 +4.264621 3.261896 3.729748 +4.876131 3.261896 3.729748 +5.575266 3.261896 3.729748 +6.374593 3.261896 3.729748 +0 3.729748 3.729748 +0 3.729748 3.729748 +0 3.729748 3.729748 +0.002268731 3.729748 3.729748 +0.07076883 3.729748 3.729748 +0.1119241 3.729748 3.729748 +0.1475052 3.729748 3.729748 +0.1846606 3.729748 3.729748 +0.2245119 3.729748 3.729748 +0.2679612 3.729748 3.729748 +0.3158431 3.729748 3.729748 +0.3689944 3.729748 3.729748 +0.4282948 3.729748 3.729748 +0.494694 3.729748 3.729748 +0.5692344 3.729748 3.729748 +0.6530715 3.729748 3.729748 +0.7474945 3.729748 3.729748 +0.8539475 3.729748 3.729748 +0.974052 3.729748 3.729748 +1.113885 3.729748 3.729748 +1.27456 3.729748 3.729748 +1.458117 3.729748 3.729748 +1.667858 3.729748 3.729748 +1.907556 3.729748 3.729748 +2.181521 3.729748 3.729748 +2.494678 3.729748 3.729748 +2.852659 3.729748 3.729748 +3.261896 3.729748 3.729748 +3.729748 3.729748 3.729748 +4.264621 3.729748 3.729748 +4.876131 3.729748 3.729748 +5.575266 3.729748 3.729748 +6.374593 3.729748 3.729748 +0 4.264621 3.729748 +0 4.264621 3.729748 +0 4.264621 3.729748 +0.002268731 4.264621 3.729748 +0.07076883 4.264621 3.729748 +0.1119241 4.264621 3.729748 +0.1475052 4.264621 3.729748 +0.1846606 4.264621 3.729748 +0.2245119 4.264621 3.729748 +0.2679612 4.264621 3.729748 +0.3158431 4.264621 3.729748 +0.3689944 4.264621 3.729748 +0.4282948 4.264621 3.729748 +0.494694 4.264621 3.729748 +0.5692344 4.264621 3.729748 +0.6530715 4.264621 3.729748 +0.7474945 4.264621 3.729748 +0.8539475 4.264621 3.729748 +0.974052 4.264621 3.729748 +1.113885 4.264621 3.729748 +1.27456 4.264621 3.729748 +1.458117 4.264621 3.729748 +1.667858 4.264621 3.729748 +1.907556 4.264621 3.729748 +2.181521 4.264621 3.729748 +2.494678 4.264621 3.729748 +2.852659 4.264621 3.729748 +3.261896 4.264621 3.729748 +3.729748 4.264621 3.729748 +4.264621 4.264621 3.729748 +4.876131 4.264621 3.729748 +5.575266 4.264621 3.729748 +6.374593 4.264621 3.729748 +0 4.876131 3.729748 +0 4.876131 3.729748 +0 4.876131 3.729748 +0.002268731 4.876131 3.729748 +0.07076883 4.876131 3.729748 +0.1119241 4.876131 3.729748 +0.1475052 4.876131 3.729748 +0.1846606 4.876131 3.729748 +0.2245119 4.876131 3.729748 +0.2679612 4.876131 3.729748 +0.3158431 4.876131 3.729748 +0.3689944 4.876131 3.729748 +0.4282948 4.876131 3.729748 +0.494694 4.876131 3.729748 +0.5692344 4.876131 3.729748 +0.6530715 4.876131 3.729748 +0.7474945 4.876131 3.729748 +0.8539475 4.876131 3.729748 +0.974052 4.876131 3.729748 +1.113885 4.876131 3.729748 +1.27456 4.876131 3.729748 +1.458117 4.876131 3.729748 +1.667858 4.876131 3.729748 +1.907556 4.876131 3.729748 +2.181521 4.876131 3.729748 +2.494678 4.876131 3.729748 +2.852659 4.876131 3.729748 +3.261896 4.876131 3.729748 +3.729748 4.876131 3.729748 +4.264621 4.876131 3.729748 +4.876131 4.876131 3.729748 +5.575266 4.876131 3.729748 +6.374593 4.876131 3.729748 +0 5.575266 3.729748 +0 5.575266 3.729748 +0 5.575266 3.729748 +0.002268731 5.575266 3.729748 +0.07076883 5.575266 3.729748 +0.1119241 5.575266 3.729748 +0.1475052 5.575266 3.729748 +0.1846606 5.575266 3.729748 +0.2245119 5.575266 3.729748 +0.2679612 5.575266 3.729748 +0.3158431 5.575266 3.729748 +0.3689944 5.575266 3.729748 +0.4282948 5.575266 3.729748 +0.494694 5.575266 3.729748 +0.5692344 5.575266 3.729748 +0.6530715 5.575266 3.729748 +0.7474945 5.575266 3.729748 +0.8539475 5.575266 3.729748 +0.974052 5.575266 3.729748 +1.113885 5.575266 3.729748 +1.27456 5.575266 3.729748 +1.458117 5.575266 3.729748 +1.667858 5.575266 3.729748 +1.907556 5.575266 3.729748 +2.181521 5.575266 3.729748 +2.494678 5.575266 3.729748 +2.852659 5.575266 3.729748 +3.261896 5.575266 3.729748 +3.729748 5.575266 3.729748 +4.264621 5.575266 3.729748 +4.876131 5.575266 3.729748 +5.575266 5.575266 3.729748 +6.374593 5.575266 3.729748 +0 6.374593 3.729748 +0 6.374593 3.729748 +0 6.374593 3.729748 +0.002268731 6.374593 3.729748 +0.07076883 6.374593 3.729748 +0.1119241 6.374593 3.729748 +0.1475052 6.374593 3.729748 +0.1846606 6.374593 3.729748 +0.2245119 6.374593 3.729748 +0.2679612 6.374593 3.729748 +0.3158431 6.374593 3.729748 +0.3689944 6.374593 3.729748 +0.4282948 6.374593 3.729748 +0.494694 6.374593 3.729748 +0.5692344 6.374593 3.729748 +0.6530715 6.374593 3.729748 +0.7474945 6.374593 3.729748 +0.8539475 6.374593 3.729748 +0.974052 6.374593 3.729748 +1.113885 6.374593 3.729748 +1.27456 6.374593 3.729748 +1.458117 6.374593 3.729748 +1.667858 6.374593 3.729748 +1.907556 6.374593 3.729748 +2.181521 6.374593 3.729748 +2.494678 6.374593 3.729748 +2.852659 6.374593 3.729748 +3.261896 6.374593 3.729748 +3.729748 6.374593 3.729748 +4.264621 6.374593 3.729748 +4.876131 6.374593 3.729748 +5.575266 6.374593 3.729748 +6.374593 6.374593 3.729748 +0 0 4.264621 +0 0 4.264621 +0 0 4.264621 +0.002268731 0 4.264621 +0.07076883 0 4.264621 +0.1119241 0 4.264621 +0.1475052 0 4.264621 +0.1846606 0 4.264621 +0.2245119 0 4.264621 +0.2679612 0 4.264621 +0.3158431 0 4.264621 +0.3689944 0 4.264621 +0.4282948 0 4.264621 +0.494694 0 4.264621 +0.5692344 0 4.264621 +0.6530715 0 4.264621 +0.7474945 0 4.264621 +0.8539475 0 4.264621 +0.974052 0 4.264621 +1.113885 0 4.264621 +1.27456 0 4.264621 +1.458117 0 4.264621 +1.667858 0 4.264621 +1.907556 0 4.264621 +2.181521 0 4.264621 +2.494678 0 4.264621 +2.852659 0 4.264621 +3.261896 0 4.264621 +3.729748 0 4.264621 +4.264621 0 4.264621 +4.876131 0 4.264621 +5.575266 0 4.264621 +6.374593 0 4.264621 +0 0 4.264621 +0 0 4.264621 +0 0 4.264621 +0.002268731 0 4.264621 +0.07076883 0 4.264621 +0.1119241 0 4.264621 +0.1475052 0 4.264621 +0.1846606 0 4.264621 +0.2245119 0 4.264621 +0.2679612 0 4.264621 +0.3158431 0 4.264621 +0.3689944 0 4.264621 +0.4282948 0 4.264621 +0.494694 0 4.264621 +0.5692344 0 4.264621 +0.6530715 0 4.264621 +0.7474945 0 4.264621 +0.8539475 0 4.264621 +0.974052 0 4.264621 +1.113885 0 4.264621 +1.27456 0 4.264621 +1.458117 0 4.264621 +1.667858 0 4.264621 +1.907556 0 4.264621 +2.181521 0 4.264621 +2.494678 0 4.264621 +2.852659 0 4.264621 +3.261896 0 4.264621 +3.729748 0 4.264621 +4.264621 0 4.264621 +4.876131 0 4.264621 +5.575266 0 4.264621 +6.374593 0 4.264621 +0 0 4.264621 +0 0 4.264621 +0 0 4.264621 +0.002268731 0 4.264621 +0.07076883 0 4.264621 +0.1119241 0 4.264621 +0.1475052 0 4.264621 +0.1846606 0 4.264621 +0.2245119 0 4.264621 +0.2679612 0 4.264621 +0.3158431 0 4.264621 +0.3689944 0 4.264621 +0.4282948 0 4.264621 +0.494694 0 4.264621 +0.5692344 0 4.264621 +0.6530715 0 4.264621 +0.7474945 0 4.264621 +0.8539475 0 4.264621 +0.974052 0 4.264621 +1.113885 0 4.264621 +1.27456 0 4.264621 +1.458117 0 4.264621 +1.667858 0 4.264621 +1.907556 0 4.264621 +2.181521 0 4.264621 +2.494678 0 4.264621 +2.852659 0 4.264621 +3.261896 0 4.264621 +3.729748 0 4.264621 +4.264621 0 4.264621 +4.876131 0 4.264621 +5.575266 0 4.264621 +6.374593 0 4.264621 +0 0.002268731 4.264621 +0 0.002268731 4.264621 +0 0.002268731 4.264621 +0.002268731 0.002268731 4.264621 +0.07076883 0.002268731 4.264621 +0.1119241 0.002268731 4.264621 +0.1475052 0.002268731 4.264621 +0.1846606 0.002268731 4.264621 +0.2245119 0.002268731 4.264621 +0.2679612 0.002268731 4.264621 +0.3158431 0.002268731 4.264621 +0.3689944 0.002268731 4.264621 +0.4282948 0.002268731 4.264621 +0.494694 0.002268731 4.264621 +0.5692344 0.002268731 4.264621 +0.6530715 0.002268731 4.264621 +0.7474945 0.002268731 4.264621 +0.8539475 0.002268731 4.264621 +0.974052 0.002268731 4.264621 +1.113885 0.002268731 4.264621 +1.27456 0.002268731 4.264621 +1.458117 0.002268731 4.264621 +1.667858 0.002268731 4.264621 +1.907556 0.002268731 4.264621 +2.181521 0.002268731 4.264621 +2.494678 0.002268731 4.264621 +2.852659 0.002268731 4.264621 +3.261896 0.002268731 4.264621 +3.729748 0.002268731 4.264621 +4.264621 0.002268731 4.264621 +4.876131 0.002268731 4.264621 +5.575266 0.002268731 4.264621 +6.374593 0.002268731 4.264621 +0 0.07076883 4.264621 +0 0.07076883 4.264621 +0 0.07076883 4.264621 +0.002268731 0.07076883 4.264621 +0.07076883 0.07076883 4.264621 +0.1119241 0.07076883 4.264621 +0.1475052 0.07076883 4.264621 +0.1846606 0.07076883 4.264621 +0.2245119 0.07076883 4.264621 +0.2679612 0.07076883 4.264621 +0.3158431 0.07076883 4.264621 +0.3689944 0.07076883 4.264621 +0.4282948 0.07076883 4.264621 +0.494694 0.07076883 4.264621 +0.5692344 0.07076883 4.264621 +0.6530715 0.07076883 4.264621 +0.7474945 0.07076883 4.264621 +0.8539475 0.07076883 4.264621 +0.974052 0.07076883 4.264621 +1.113885 0.07076883 4.264621 +1.27456 0.07076883 4.264621 +1.458117 0.07076883 4.264621 +1.667858 0.07076883 4.264621 +1.907556 0.07076883 4.264621 +2.181521 0.07076883 4.264621 +2.494678 0.07076883 4.264621 +2.852659 0.07076883 4.264621 +3.261896 0.07076883 4.264621 +3.729748 0.07076883 4.264621 +4.264621 0.07076883 4.264621 +4.876131 0.07076883 4.264621 +5.575266 0.07076883 4.264621 +6.374593 0.07076883 4.264621 +0 0.1119241 4.264621 +0 0.1119241 4.264621 +0 0.1119241 4.264621 +0.002268731 0.1119241 4.264621 +0.07076883 0.1119241 4.264621 +0.1119241 0.1119241 4.264621 +0.1475052 0.1119241 4.264621 +0.1846606 0.1119241 4.264621 +0.2245119 0.1119241 4.264621 +0.2679612 0.1119241 4.264621 +0.3158431 0.1119241 4.264621 +0.3689944 0.1119241 4.264621 +0.4282948 0.1119241 4.264621 +0.494694 0.1119241 4.264621 +0.5692344 0.1119241 4.264621 +0.6530715 0.1119241 4.264621 +0.7474945 0.1119241 4.264621 +0.8539475 0.1119241 4.264621 +0.974052 0.1119241 4.264621 +1.113885 0.1119241 4.264621 +1.27456 0.1119241 4.264621 +1.458117 0.1119241 4.264621 +1.667858 0.1119241 4.264621 +1.907556 0.1119241 4.264621 +2.181521 0.1119241 4.264621 +2.494678 0.1119241 4.264621 +2.852659 0.1119241 4.264621 +3.261896 0.1119241 4.264621 +3.729748 0.1119241 4.264621 +4.264621 0.1119241 4.264621 +4.876131 0.1119241 4.264621 +5.575266 0.1119241 4.264621 +6.374593 0.1119241 4.264621 +0 0.1475052 4.264621 +0 0.1475052 4.264621 +0 0.1475052 4.264621 +0.002268731 0.1475052 4.264621 +0.07076883 0.1475052 4.264621 +0.1119241 0.1475052 4.264621 +0.1475052 0.1475052 4.264621 +0.1846606 0.1475052 4.264621 +0.2245119 0.1475052 4.264621 +0.2679612 0.1475052 4.264621 +0.3158431 0.1475052 4.264621 +0.3689944 0.1475052 4.264621 +0.4282948 0.1475052 4.264621 +0.494694 0.1475052 4.264621 +0.5692344 0.1475052 4.264621 +0.6530715 0.1475052 4.264621 +0.7474945 0.1475052 4.264621 +0.8539475 0.1475052 4.264621 +0.974052 0.1475052 4.264621 +1.113885 0.1475052 4.264621 +1.27456 0.1475052 4.264621 +1.458117 0.1475052 4.264621 +1.667858 0.1475052 4.264621 +1.907556 0.1475052 4.264621 +2.181521 0.1475052 4.264621 +2.494678 0.1475052 4.264621 +2.852659 0.1475052 4.264621 +3.261896 0.1475052 4.264621 +3.729748 0.1475052 4.264621 +4.264621 0.1475052 4.264621 +4.876131 0.1475052 4.264621 +5.575266 0.1475052 4.264621 +6.374593 0.1475052 4.264621 +0 0.1846606 4.264621 +0 0.1846606 4.264621 +0 0.1846606 4.264621 +0.002268731 0.1846606 4.264621 +0.07076883 0.1846606 4.264621 +0.1119241 0.1846606 4.264621 +0.1475052 0.1846606 4.264621 +0.1846606 0.1846606 4.264621 +0.2245119 0.1846606 4.264621 +0.2679612 0.1846606 4.264621 +0.3158431 0.1846606 4.264621 +0.3689944 0.1846606 4.264621 +0.4282948 0.1846606 4.264621 +0.494694 0.1846606 4.264621 +0.5692344 0.1846606 4.264621 +0.6530715 0.1846606 4.264621 +0.7474945 0.1846606 4.264621 +0.8539475 0.1846606 4.264621 +0.974052 0.1846606 4.264621 +1.113885 0.1846606 4.264621 +1.27456 0.1846606 4.264621 +1.458117 0.1846606 4.264621 +1.667858 0.1846606 4.264621 +1.907556 0.1846606 4.264621 +2.181521 0.1846606 4.264621 +2.494678 0.1846606 4.264621 +2.852659 0.1846606 4.264621 +3.261896 0.1846606 4.264621 +3.729748 0.1846606 4.264621 +4.264621 0.1846606 4.264621 +4.876131 0.1846606 4.264621 +5.575266 0.1846606 4.264621 +6.374593 0.1846606 4.264621 +0 0.2245119 4.264621 +0 0.2245119 4.264621 +0 0.2245119 4.264621 +0.002268731 0.2245119 4.264621 +0.07076883 0.2245119 4.264621 +0.1119241 0.2245119 4.264621 +0.1475052 0.2245119 4.264621 +0.1846606 0.2245119 4.264621 +0.2245119 0.2245119 4.264621 +0.2679612 0.2245119 4.264621 +0.3158431 0.2245119 4.264621 +0.3689944 0.2245119 4.264621 +0.4282948 0.2245119 4.264621 +0.494694 0.2245119 4.264621 +0.5692344 0.2245119 4.264621 +0.6530715 0.2245119 4.264621 +0.7474945 0.2245119 4.264621 +0.8539475 0.2245119 4.264621 +0.974052 0.2245119 4.264621 +1.113885 0.2245119 4.264621 +1.27456 0.2245119 4.264621 +1.458117 0.2245119 4.264621 +1.667858 0.2245119 4.264621 +1.907556 0.2245119 4.264621 +2.181521 0.2245119 4.264621 +2.494678 0.2245119 4.264621 +2.852659 0.2245119 4.264621 +3.261896 0.2245119 4.264621 +3.729748 0.2245119 4.264621 +4.264621 0.2245119 4.264621 +4.876131 0.2245119 4.264621 +5.575266 0.2245119 4.264621 +6.374593 0.2245119 4.264621 +0 0.2679612 4.264621 +0 0.2679612 4.264621 +0 0.2679612 4.264621 +0.002268731 0.2679612 4.264621 +0.07076883 0.2679612 4.264621 +0.1119241 0.2679612 4.264621 +0.1475052 0.2679612 4.264621 +0.1846606 0.2679612 4.264621 +0.2245119 0.2679612 4.264621 +0.2679612 0.2679612 4.264621 +0.3158431 0.2679612 4.264621 +0.3689944 0.2679612 4.264621 +0.4282948 0.2679612 4.264621 +0.494694 0.2679612 4.264621 +0.5692344 0.2679612 4.264621 +0.6530715 0.2679612 4.264621 +0.7474945 0.2679612 4.264621 +0.8539475 0.2679612 4.264621 +0.974052 0.2679612 4.264621 +1.113885 0.2679612 4.264621 +1.27456 0.2679612 4.264621 +1.458117 0.2679612 4.264621 +1.667858 0.2679612 4.264621 +1.907556 0.2679612 4.264621 +2.181521 0.2679612 4.264621 +2.494678 0.2679612 4.264621 +2.852659 0.2679612 4.264621 +3.261896 0.2679612 4.264621 +3.729748 0.2679612 4.264621 +4.264621 0.2679612 4.264621 +4.876131 0.2679612 4.264621 +5.575266 0.2679612 4.264621 +6.374593 0.2679612 4.264621 +0 0.3158431 4.264621 +0 0.3158431 4.264621 +0 0.3158431 4.264621 +0.002268731 0.3158431 4.264621 +0.07076883 0.3158431 4.264621 +0.1119241 0.3158431 4.264621 +0.1475052 0.3158431 4.264621 +0.1846606 0.3158431 4.264621 +0.2245119 0.3158431 4.264621 +0.2679612 0.3158431 4.264621 +0.3158431 0.3158431 4.264621 +0.3689944 0.3158431 4.264621 +0.4282948 0.3158431 4.264621 +0.494694 0.3158431 4.264621 +0.5692344 0.3158431 4.264621 +0.6530715 0.3158431 4.264621 +0.7474945 0.3158431 4.264621 +0.8539475 0.3158431 4.264621 +0.974052 0.3158431 4.264621 +1.113885 0.3158431 4.264621 +1.27456 0.3158431 4.264621 +1.458117 0.3158431 4.264621 +1.667858 0.3158431 4.264621 +1.907556 0.3158431 4.264621 +2.181521 0.3158431 4.264621 +2.494678 0.3158431 4.264621 +2.852659 0.3158431 4.264621 +3.261896 0.3158431 4.264621 +3.729748 0.3158431 4.264621 +4.264621 0.3158431 4.264621 +4.876131 0.3158431 4.264621 +5.575266 0.3158431 4.264621 +6.374593 0.3158431 4.264621 +0 0.3689944 4.264621 +0 0.3689944 4.264621 +0 0.3689944 4.264621 +0.002268731 0.3689944 4.264621 +0.07076883 0.3689944 4.264621 +0.1119241 0.3689944 4.264621 +0.1475052 0.3689944 4.264621 +0.1846606 0.3689944 4.264621 +0.2245119 0.3689944 4.264621 +0.2679612 0.3689944 4.264621 +0.3158431 0.3689944 4.264621 +0.3689944 0.3689944 4.264621 +0.4282948 0.3689944 4.264621 +0.494694 0.3689944 4.264621 +0.5692344 0.3689944 4.264621 +0.6530715 0.3689944 4.264621 +0.7474945 0.3689944 4.264621 +0.8539475 0.3689944 4.264621 +0.974052 0.3689944 4.264621 +1.113885 0.3689944 4.264621 +1.27456 0.3689944 4.264621 +1.458117 0.3689944 4.264621 +1.667858 0.3689944 4.264621 +1.907556 0.3689944 4.264621 +2.181521 0.3689944 4.264621 +2.494678 0.3689944 4.264621 +2.852659 0.3689944 4.264621 +3.261896 0.3689944 4.264621 +3.729748 0.3689944 4.264621 +4.264621 0.3689944 4.264621 +4.876131 0.3689944 4.264621 +5.575266 0.3689944 4.264621 +6.374593 0.3689944 4.264621 +0 0.4282948 4.264621 +0 0.4282948 4.264621 +0 0.4282948 4.264621 +0.002268731 0.4282948 4.264621 +0.07076883 0.4282948 4.264621 +0.1119241 0.4282948 4.264621 +0.1475052 0.4282948 4.264621 +0.1846606 0.4282948 4.264621 +0.2245119 0.4282948 4.264621 +0.2679612 0.4282948 4.264621 +0.3158431 0.4282948 4.264621 +0.3689944 0.4282948 4.264621 +0.4282948 0.4282948 4.264621 +0.494694 0.4282948 4.264621 +0.5692344 0.4282948 4.264621 +0.6530715 0.4282948 4.264621 +0.7474945 0.4282948 4.264621 +0.8539475 0.4282948 4.264621 +0.974052 0.4282948 4.264621 +1.113885 0.4282948 4.264621 +1.27456 0.4282948 4.264621 +1.458117 0.4282948 4.264621 +1.667858 0.4282948 4.264621 +1.907556 0.4282948 4.264621 +2.181521 0.4282948 4.264621 +2.494678 0.4282948 4.264621 +2.852659 0.4282948 4.264621 +3.261896 0.4282948 4.264621 +3.729748 0.4282948 4.264621 +4.264621 0.4282948 4.264621 +4.876131 0.4282948 4.264621 +5.575266 0.4282948 4.264621 +6.374593 0.4282948 4.264621 +0 0.494694 4.264621 +0 0.494694 4.264621 +0 0.494694 4.264621 +0.002268731 0.494694 4.264621 +0.07076883 0.494694 4.264621 +0.1119241 0.494694 4.264621 +0.1475052 0.494694 4.264621 +0.1846606 0.494694 4.264621 +0.2245119 0.494694 4.264621 +0.2679612 0.494694 4.264621 +0.3158431 0.494694 4.264621 +0.3689944 0.494694 4.264621 +0.4282948 0.494694 4.264621 +0.494694 0.494694 4.264621 +0.5692344 0.494694 4.264621 +0.6530715 0.494694 4.264621 +0.7474945 0.494694 4.264621 +0.8539475 0.494694 4.264621 +0.974052 0.494694 4.264621 +1.113885 0.494694 4.264621 +1.27456 0.494694 4.264621 +1.458117 0.494694 4.264621 +1.667858 0.494694 4.264621 +1.907556 0.494694 4.264621 +2.181521 0.494694 4.264621 +2.494678 0.494694 4.264621 +2.852659 0.494694 4.264621 +3.261896 0.494694 4.264621 +3.729748 0.494694 4.264621 +4.264621 0.494694 4.264621 +4.876131 0.494694 4.264621 +5.575266 0.494694 4.264621 +6.374593 0.494694 4.264621 +0 0.5692344 4.264621 +0 0.5692344 4.264621 +0 0.5692344 4.264621 +0.002268731 0.5692344 4.264621 +0.07076883 0.5692344 4.264621 +0.1119241 0.5692344 4.264621 +0.1475052 0.5692344 4.264621 +0.1846606 0.5692344 4.264621 +0.2245119 0.5692344 4.264621 +0.2679612 0.5692344 4.264621 +0.3158431 0.5692344 4.264621 +0.3689944 0.5692344 4.264621 +0.4282948 0.5692344 4.264621 +0.494694 0.5692344 4.264621 +0.5692344 0.5692344 4.264621 +0.6530715 0.5692344 4.264621 +0.7474945 0.5692344 4.264621 +0.8539475 0.5692344 4.264621 +0.974052 0.5692344 4.264621 +1.113885 0.5692344 4.264621 +1.27456 0.5692344 4.264621 +1.458117 0.5692344 4.264621 +1.667858 0.5692344 4.264621 +1.907556 0.5692344 4.264621 +2.181521 0.5692344 4.264621 +2.494678 0.5692344 4.264621 +2.852659 0.5692344 4.264621 +3.261896 0.5692344 4.264621 +3.729748 0.5692344 4.264621 +4.264621 0.5692344 4.264621 +4.876131 0.5692344 4.264621 +5.575266 0.5692344 4.264621 +6.374593 0.5692344 4.264621 +0 0.6530715 4.264621 +0 0.6530715 4.264621 +0 0.6530715 4.264621 +0.002268731 0.6530715 4.264621 +0.07076883 0.6530715 4.264621 +0.1119241 0.6530715 4.264621 +0.1475052 0.6530715 4.264621 +0.1846606 0.6530715 4.264621 +0.2245119 0.6530715 4.264621 +0.2679612 0.6530715 4.264621 +0.3158431 0.6530715 4.264621 +0.3689944 0.6530715 4.264621 +0.4282948 0.6530715 4.264621 +0.494694 0.6530715 4.264621 +0.5692344 0.6530715 4.264621 +0.6530715 0.6530715 4.264621 +0.7474945 0.6530715 4.264621 +0.8539475 0.6530715 4.264621 +0.974052 0.6530715 4.264621 +1.113885 0.6530715 4.264621 +1.27456 0.6530715 4.264621 +1.458117 0.6530715 4.264621 +1.667858 0.6530715 4.264621 +1.907556 0.6530715 4.264621 +2.181521 0.6530715 4.264621 +2.494678 0.6530715 4.264621 +2.852659 0.6530715 4.264621 +3.261896 0.6530715 4.264621 +3.729748 0.6530715 4.264621 +4.264621 0.6530715 4.264621 +4.876131 0.6530715 4.264621 +5.575266 0.6530715 4.264621 +6.374593 0.6530715 4.264621 +0 0.7474945 4.264621 +0 0.7474945 4.264621 +0 0.7474945 4.264621 +0.002268731 0.7474945 4.264621 +0.07076883 0.7474945 4.264621 +0.1119241 0.7474945 4.264621 +0.1475052 0.7474945 4.264621 +0.1846606 0.7474945 4.264621 +0.2245119 0.7474945 4.264621 +0.2679612 0.7474945 4.264621 +0.3158431 0.7474945 4.264621 +0.3689944 0.7474945 4.264621 +0.4282948 0.7474945 4.264621 +0.494694 0.7474945 4.264621 +0.5692344 0.7474945 4.264621 +0.6530715 0.7474945 4.264621 +0.7474945 0.7474945 4.264621 +0.8539475 0.7474945 4.264621 +0.974052 0.7474945 4.264621 +1.113885 0.7474945 4.264621 +1.27456 0.7474945 4.264621 +1.458117 0.7474945 4.264621 +1.667858 0.7474945 4.264621 +1.907556 0.7474945 4.264621 +2.181521 0.7474945 4.264621 +2.494678 0.7474945 4.264621 +2.852659 0.7474945 4.264621 +3.261896 0.7474945 4.264621 +3.729748 0.7474945 4.264621 +4.264621 0.7474945 4.264621 +4.876131 0.7474945 4.264621 +5.575266 0.7474945 4.264621 +6.374593 0.7474945 4.264621 +0 0.8539475 4.264621 +0 0.8539475 4.264621 +0 0.8539475 4.264621 +0.002268731 0.8539475 4.264621 +0.07076883 0.8539475 4.264621 +0.1119241 0.8539475 4.264621 +0.1475052 0.8539475 4.264621 +0.1846606 0.8539475 4.264621 +0.2245119 0.8539475 4.264621 +0.2679612 0.8539475 4.264621 +0.3158431 0.8539475 4.264621 +0.3689944 0.8539475 4.264621 +0.4282948 0.8539475 4.264621 +0.494694 0.8539475 4.264621 +0.5692344 0.8539475 4.264621 +0.6530715 0.8539475 4.264621 +0.7474945 0.8539475 4.264621 +0.8539475 0.8539475 4.264621 +0.974052 0.8539475 4.264621 +1.113885 0.8539475 4.264621 +1.27456 0.8539475 4.264621 +1.458117 0.8539475 4.264621 +1.667858 0.8539475 4.264621 +1.907556 0.8539475 4.264621 +2.181521 0.8539475 4.264621 +2.494678 0.8539475 4.264621 +2.852659 0.8539475 4.264621 +3.261896 0.8539475 4.264621 +3.729748 0.8539475 4.264621 +4.264621 0.8539475 4.264621 +4.876131 0.8539475 4.264621 +5.575266 0.8539475 4.264621 +6.374593 0.8539475 4.264621 +0 0.974052 4.264621 +0 0.974052 4.264621 +0 0.974052 4.264621 +0.002268731 0.974052 4.264621 +0.07076883 0.974052 4.264621 +0.1119241 0.974052 4.264621 +0.1475052 0.974052 4.264621 +0.1846606 0.974052 4.264621 +0.2245119 0.974052 4.264621 +0.2679612 0.974052 4.264621 +0.3158431 0.974052 4.264621 +0.3689944 0.974052 4.264621 +0.4282948 0.974052 4.264621 +0.494694 0.974052 4.264621 +0.5692344 0.974052 4.264621 +0.6530715 0.974052 4.264621 +0.7474945 0.974052 4.264621 +0.8539475 0.974052 4.264621 +0.974052 0.974052 4.264621 +1.113885 0.974052 4.264621 +1.27456 0.974052 4.264621 +1.458117 0.974052 4.264621 +1.667858 0.974052 4.264621 +1.907556 0.974052 4.264621 +2.181521 0.974052 4.264621 +2.494678 0.974052 4.264621 +2.852659 0.974052 4.264621 +3.261896 0.974052 4.264621 +3.729748 0.974052 4.264621 +4.264621 0.974052 4.264621 +4.876131 0.974052 4.264621 +5.575266 0.974052 4.264621 +6.374593 0.974052 4.264621 +0 1.113885 4.264621 +0 1.113885 4.264621 +0 1.113885 4.264621 +0.002268731 1.113885 4.264621 +0.07076883 1.113885 4.264621 +0.1119241 1.113885 4.264621 +0.1475052 1.113885 4.264621 +0.1846606 1.113885 4.264621 +0.2245119 1.113885 4.264621 +0.2679612 1.113885 4.264621 +0.3158431 1.113885 4.264621 +0.3689944 1.113885 4.264621 +0.4282948 1.113885 4.264621 +0.494694 1.113885 4.264621 +0.5692344 1.113885 4.264621 +0.6530715 1.113885 4.264621 +0.7474945 1.113885 4.264621 +0.8539475 1.113885 4.264621 +0.974052 1.113885 4.264621 +1.113885 1.113885 4.264621 +1.27456 1.113885 4.264621 +1.458117 1.113885 4.264621 +1.667858 1.113885 4.264621 +1.907556 1.113885 4.264621 +2.181521 1.113885 4.264621 +2.494678 1.113885 4.264621 +2.852659 1.113885 4.264621 +3.261896 1.113885 4.264621 +3.729748 1.113885 4.264621 +4.264621 1.113885 4.264621 +4.876131 1.113885 4.264621 +5.575266 1.113885 4.264621 +6.374593 1.113885 4.264621 +0 1.27456 4.264621 +0 1.27456 4.264621 +0 1.27456 4.264621 +0.002268731 1.27456 4.264621 +0.07076883 1.27456 4.264621 +0.1119241 1.27456 4.264621 +0.1475052 1.27456 4.264621 +0.1846606 1.27456 4.264621 +0.2245119 1.27456 4.264621 +0.2679612 1.27456 4.264621 +0.3158431 1.27456 4.264621 +0.3689944 1.27456 4.264621 +0.4282948 1.27456 4.264621 +0.494694 1.27456 4.264621 +0.5692344 1.27456 4.264621 +0.6530715 1.27456 4.264621 +0.7474945 1.27456 4.264621 +0.8539475 1.27456 4.264621 +0.974052 1.27456 4.264621 +1.113885 1.27456 4.264621 +1.27456 1.27456 4.264621 +1.458117 1.27456 4.264621 +1.667858 1.27456 4.264621 +1.907556 1.27456 4.264621 +2.181521 1.27456 4.264621 +2.494678 1.27456 4.264621 +2.852659 1.27456 4.264621 +3.261896 1.27456 4.264621 +3.729748 1.27456 4.264621 +4.264621 1.27456 4.264621 +4.876131 1.27456 4.264621 +5.575266 1.27456 4.264621 +6.374593 1.27456 4.264621 +0 1.458117 4.264621 +0 1.458117 4.264621 +0 1.458117 4.264621 +0.002268731 1.458117 4.264621 +0.07076883 1.458117 4.264621 +0.1119241 1.458117 4.264621 +0.1475052 1.458117 4.264621 +0.1846606 1.458117 4.264621 +0.2245119 1.458117 4.264621 +0.2679612 1.458117 4.264621 +0.3158431 1.458117 4.264621 +0.3689944 1.458117 4.264621 +0.4282948 1.458117 4.264621 +0.494694 1.458117 4.264621 +0.5692344 1.458117 4.264621 +0.6530715 1.458117 4.264621 +0.7474945 1.458117 4.264621 +0.8539475 1.458117 4.264621 +0.974052 1.458117 4.264621 +1.113885 1.458117 4.264621 +1.27456 1.458117 4.264621 +1.458117 1.458117 4.264621 +1.667858 1.458117 4.264621 +1.907556 1.458117 4.264621 +2.181521 1.458117 4.264621 +2.494678 1.458117 4.264621 +2.852659 1.458117 4.264621 +3.261896 1.458117 4.264621 +3.729748 1.458117 4.264621 +4.264621 1.458117 4.264621 +4.876131 1.458117 4.264621 +5.575266 1.458117 4.264621 +6.374593 1.458117 4.264621 +0 1.667858 4.264621 +0 1.667858 4.264621 +0 1.667858 4.264621 +0.002268731 1.667858 4.264621 +0.07076883 1.667858 4.264621 +0.1119241 1.667858 4.264621 +0.1475052 1.667858 4.264621 +0.1846606 1.667858 4.264621 +0.2245119 1.667858 4.264621 +0.2679612 1.667858 4.264621 +0.3158431 1.667858 4.264621 +0.3689944 1.667858 4.264621 +0.4282948 1.667858 4.264621 +0.494694 1.667858 4.264621 +0.5692344 1.667858 4.264621 +0.6530715 1.667858 4.264621 +0.7474945 1.667858 4.264621 +0.8539475 1.667858 4.264621 +0.974052 1.667858 4.264621 +1.113885 1.667858 4.264621 +1.27456 1.667858 4.264621 +1.458117 1.667858 4.264621 +1.667858 1.667858 4.264621 +1.907556 1.667858 4.264621 +2.181521 1.667858 4.264621 +2.494678 1.667858 4.264621 +2.852659 1.667858 4.264621 +3.261896 1.667858 4.264621 +3.729748 1.667858 4.264621 +4.264621 1.667858 4.264621 +4.876131 1.667858 4.264621 +5.575266 1.667858 4.264621 +6.374593 1.667858 4.264621 +0 1.907556 4.264621 +0 1.907556 4.264621 +0 1.907556 4.264621 +0.002268731 1.907556 4.264621 +0.07076883 1.907556 4.264621 +0.1119241 1.907556 4.264621 +0.1475052 1.907556 4.264621 +0.1846606 1.907556 4.264621 +0.2245119 1.907556 4.264621 +0.2679612 1.907556 4.264621 +0.3158431 1.907556 4.264621 +0.3689944 1.907556 4.264621 +0.4282948 1.907556 4.264621 +0.494694 1.907556 4.264621 +0.5692344 1.907556 4.264621 +0.6530715 1.907556 4.264621 +0.7474945 1.907556 4.264621 +0.8539475 1.907556 4.264621 +0.974052 1.907556 4.264621 +1.113885 1.907556 4.264621 +1.27456 1.907556 4.264621 +1.458117 1.907556 4.264621 +1.667858 1.907556 4.264621 +1.907556 1.907556 4.264621 +2.181521 1.907556 4.264621 +2.494678 1.907556 4.264621 +2.852659 1.907556 4.264621 +3.261896 1.907556 4.264621 +3.729748 1.907556 4.264621 +4.264621 1.907556 4.264621 +4.876131 1.907556 4.264621 +5.575266 1.907556 4.264621 +6.374593 1.907556 4.264621 +0 2.181521 4.264621 +0 2.181521 4.264621 +0 2.181521 4.264621 +0.002268731 2.181521 4.264621 +0.07076883 2.181521 4.264621 +0.1119241 2.181521 4.264621 +0.1475052 2.181521 4.264621 +0.1846606 2.181521 4.264621 +0.2245119 2.181521 4.264621 +0.2679612 2.181521 4.264621 +0.3158431 2.181521 4.264621 +0.3689944 2.181521 4.264621 +0.4282948 2.181521 4.264621 +0.494694 2.181521 4.264621 +0.5692344 2.181521 4.264621 +0.6530715 2.181521 4.264621 +0.7474945 2.181521 4.264621 +0.8539475 2.181521 4.264621 +0.974052 2.181521 4.264621 +1.113885 2.181521 4.264621 +1.27456 2.181521 4.264621 +1.458117 2.181521 4.264621 +1.667858 2.181521 4.264621 +1.907556 2.181521 4.264621 +2.181521 2.181521 4.264621 +2.494678 2.181521 4.264621 +2.852659 2.181521 4.264621 +3.261896 2.181521 4.264621 +3.729748 2.181521 4.264621 +4.264621 2.181521 4.264621 +4.876131 2.181521 4.264621 +5.575266 2.181521 4.264621 +6.374593 2.181521 4.264621 +0 2.494678 4.264621 +0 2.494678 4.264621 +0 2.494678 4.264621 +0.002268731 2.494678 4.264621 +0.07076883 2.494678 4.264621 +0.1119241 2.494678 4.264621 +0.1475052 2.494678 4.264621 +0.1846606 2.494678 4.264621 +0.2245119 2.494678 4.264621 +0.2679612 2.494678 4.264621 +0.3158431 2.494678 4.264621 +0.3689944 2.494678 4.264621 +0.4282948 2.494678 4.264621 +0.494694 2.494678 4.264621 +0.5692344 2.494678 4.264621 +0.6530715 2.494678 4.264621 +0.7474945 2.494678 4.264621 +0.8539475 2.494678 4.264621 +0.974052 2.494678 4.264621 +1.113885 2.494678 4.264621 +1.27456 2.494678 4.264621 +1.458117 2.494678 4.264621 +1.667858 2.494678 4.264621 +1.907556 2.494678 4.264621 +2.181521 2.494678 4.264621 +2.494678 2.494678 4.264621 +2.852659 2.494678 4.264621 +3.261896 2.494678 4.264621 +3.729748 2.494678 4.264621 +4.264621 2.494678 4.264621 +4.876131 2.494678 4.264621 +5.575266 2.494678 4.264621 +6.374593 2.494678 4.264621 +0 2.852659 4.264621 +0 2.852659 4.264621 +0 2.852659 4.264621 +0.002268731 2.852659 4.264621 +0.07076883 2.852659 4.264621 +0.1119241 2.852659 4.264621 +0.1475052 2.852659 4.264621 +0.1846606 2.852659 4.264621 +0.2245119 2.852659 4.264621 +0.2679612 2.852659 4.264621 +0.3158431 2.852659 4.264621 +0.3689944 2.852659 4.264621 +0.4282948 2.852659 4.264621 +0.494694 2.852659 4.264621 +0.5692344 2.852659 4.264621 +0.6530715 2.852659 4.264621 +0.7474945 2.852659 4.264621 +0.8539475 2.852659 4.264621 +0.974052 2.852659 4.264621 +1.113885 2.852659 4.264621 +1.27456 2.852659 4.264621 +1.458117 2.852659 4.264621 +1.667858 2.852659 4.264621 +1.907556 2.852659 4.264621 +2.181521 2.852659 4.264621 +2.494678 2.852659 4.264621 +2.852659 2.852659 4.264621 +3.261896 2.852659 4.264621 +3.729748 2.852659 4.264621 +4.264621 2.852659 4.264621 +4.876131 2.852659 4.264621 +5.575266 2.852659 4.264621 +6.374593 2.852659 4.264621 +0 3.261896 4.264621 +0 3.261896 4.264621 +0 3.261896 4.264621 +0.002268731 3.261896 4.264621 +0.07076883 3.261896 4.264621 +0.1119241 3.261896 4.264621 +0.1475052 3.261896 4.264621 +0.1846606 3.261896 4.264621 +0.2245119 3.261896 4.264621 +0.2679612 3.261896 4.264621 +0.3158431 3.261896 4.264621 +0.3689944 3.261896 4.264621 +0.4282948 3.261896 4.264621 +0.494694 3.261896 4.264621 +0.5692344 3.261896 4.264621 +0.6530715 3.261896 4.264621 +0.7474945 3.261896 4.264621 +0.8539475 3.261896 4.264621 +0.974052 3.261896 4.264621 +1.113885 3.261896 4.264621 +1.27456 3.261896 4.264621 +1.458117 3.261896 4.264621 +1.667858 3.261896 4.264621 +1.907556 3.261896 4.264621 +2.181521 3.261896 4.264621 +2.494678 3.261896 4.264621 +2.852659 3.261896 4.264621 +3.261896 3.261896 4.264621 +3.729748 3.261896 4.264621 +4.264621 3.261896 4.264621 +4.876131 3.261896 4.264621 +5.575266 3.261896 4.264621 +6.374593 3.261896 4.264621 +0 3.729748 4.264621 +0 3.729748 4.264621 +0 3.729748 4.264621 +0.002268731 3.729748 4.264621 +0.07076883 3.729748 4.264621 +0.1119241 3.729748 4.264621 +0.1475052 3.729748 4.264621 +0.1846606 3.729748 4.264621 +0.2245119 3.729748 4.264621 +0.2679612 3.729748 4.264621 +0.3158431 3.729748 4.264621 +0.3689944 3.729748 4.264621 +0.4282948 3.729748 4.264621 +0.494694 3.729748 4.264621 +0.5692344 3.729748 4.264621 +0.6530715 3.729748 4.264621 +0.7474945 3.729748 4.264621 +0.8539475 3.729748 4.264621 +0.974052 3.729748 4.264621 +1.113885 3.729748 4.264621 +1.27456 3.729748 4.264621 +1.458117 3.729748 4.264621 +1.667858 3.729748 4.264621 +1.907556 3.729748 4.264621 +2.181521 3.729748 4.264621 +2.494678 3.729748 4.264621 +2.852659 3.729748 4.264621 +3.261896 3.729748 4.264621 +3.729748 3.729748 4.264621 +4.264621 3.729748 4.264621 +4.876131 3.729748 4.264621 +5.575266 3.729748 4.264621 +6.374593 3.729748 4.264621 +0 4.264621 4.264621 +0 4.264621 4.264621 +0 4.264621 4.264621 +0.002268731 4.264621 4.264621 +0.07076883 4.264621 4.264621 +0.1119241 4.264621 4.264621 +0.1475052 4.264621 4.264621 +0.1846606 4.264621 4.264621 +0.2245119 4.264621 4.264621 +0.2679612 4.264621 4.264621 +0.3158431 4.264621 4.264621 +0.3689944 4.264621 4.264621 +0.4282948 4.264621 4.264621 +0.494694 4.264621 4.264621 +0.5692344 4.264621 4.264621 +0.6530715 4.264621 4.264621 +0.7474945 4.264621 4.264621 +0.8539475 4.264621 4.264621 +0.974052 4.264621 4.264621 +1.113885 4.264621 4.264621 +1.27456 4.264621 4.264621 +1.458117 4.264621 4.264621 +1.667858 4.264621 4.264621 +1.907556 4.264621 4.264621 +2.181521 4.264621 4.264621 +2.494678 4.264621 4.264621 +2.852659 4.264621 4.264621 +3.261896 4.264621 4.264621 +3.729748 4.264621 4.264621 +4.264621 4.264621 4.264621 +4.876131 4.264621 4.264621 +5.575266 4.264621 4.264621 +6.374593 4.264621 4.264621 +0 4.876131 4.264621 +0 4.876131 4.264621 +0 4.876131 4.264621 +0.002268731 4.876131 4.264621 +0.07076883 4.876131 4.264621 +0.1119241 4.876131 4.264621 +0.1475052 4.876131 4.264621 +0.1846606 4.876131 4.264621 +0.2245119 4.876131 4.264621 +0.2679612 4.876131 4.264621 +0.3158431 4.876131 4.264621 +0.3689944 4.876131 4.264621 +0.4282948 4.876131 4.264621 +0.494694 4.876131 4.264621 +0.5692344 4.876131 4.264621 +0.6530715 4.876131 4.264621 +0.7474945 4.876131 4.264621 +0.8539475 4.876131 4.264621 +0.974052 4.876131 4.264621 +1.113885 4.876131 4.264621 +1.27456 4.876131 4.264621 +1.458117 4.876131 4.264621 +1.667858 4.876131 4.264621 +1.907556 4.876131 4.264621 +2.181521 4.876131 4.264621 +2.494678 4.876131 4.264621 +2.852659 4.876131 4.264621 +3.261896 4.876131 4.264621 +3.729748 4.876131 4.264621 +4.264621 4.876131 4.264621 +4.876131 4.876131 4.264621 +5.575266 4.876131 4.264621 +6.374593 4.876131 4.264621 +0 5.575266 4.264621 +0 5.575266 4.264621 +0 5.575266 4.264621 +0.002268731 5.575266 4.264621 +0.07076883 5.575266 4.264621 +0.1119241 5.575266 4.264621 +0.1475052 5.575266 4.264621 +0.1846606 5.575266 4.264621 +0.2245119 5.575266 4.264621 +0.2679612 5.575266 4.264621 +0.3158431 5.575266 4.264621 +0.3689944 5.575266 4.264621 +0.4282948 5.575266 4.264621 +0.494694 5.575266 4.264621 +0.5692344 5.575266 4.264621 +0.6530715 5.575266 4.264621 +0.7474945 5.575266 4.264621 +0.8539475 5.575266 4.264621 +0.974052 5.575266 4.264621 +1.113885 5.575266 4.264621 +1.27456 5.575266 4.264621 +1.458117 5.575266 4.264621 +1.667858 5.575266 4.264621 +1.907556 5.575266 4.264621 +2.181521 5.575266 4.264621 +2.494678 5.575266 4.264621 +2.852659 5.575266 4.264621 +3.261896 5.575266 4.264621 +3.729748 5.575266 4.264621 +4.264621 5.575266 4.264621 +4.876131 5.575266 4.264621 +5.575266 5.575266 4.264621 +6.374593 5.575266 4.264621 +0 6.374593 4.264621 +0 6.374593 4.264621 +0 6.374593 4.264621 +0.002268731 6.374593 4.264621 +0.07076883 6.374593 4.264621 +0.1119241 6.374593 4.264621 +0.1475052 6.374593 4.264621 +0.1846606 6.374593 4.264621 +0.2245119 6.374593 4.264621 +0.2679612 6.374593 4.264621 +0.3158431 6.374593 4.264621 +0.3689944 6.374593 4.264621 +0.4282948 6.374593 4.264621 +0.494694 6.374593 4.264621 +0.5692344 6.374593 4.264621 +0.6530715 6.374593 4.264621 +0.7474945 6.374593 4.264621 +0.8539475 6.374593 4.264621 +0.974052 6.374593 4.264621 +1.113885 6.374593 4.264621 +1.27456 6.374593 4.264621 +1.458117 6.374593 4.264621 +1.667858 6.374593 4.264621 +1.907556 6.374593 4.264621 +2.181521 6.374593 4.264621 +2.494678 6.374593 4.264621 +2.852659 6.374593 4.264621 +3.261896 6.374593 4.264621 +3.729748 6.374593 4.264621 +4.264621 6.374593 4.264621 +4.876131 6.374593 4.264621 +5.575266 6.374593 4.264621 +6.374593 6.374593 4.264621 +0 0 4.876131 +0 0 4.876131 +0 0 4.876131 +0.002268731 0 4.876131 +0.07076883 0 4.876131 +0.1119241 0 4.876131 +0.1475052 0 4.876131 +0.1846606 0 4.876131 +0.2245119 0 4.876131 +0.2679612 0 4.876131 +0.3158431 0 4.876131 +0.3689944 0 4.876131 +0.4282948 0 4.876131 +0.494694 0 4.876131 +0.5692344 0 4.876131 +0.6530715 0 4.876131 +0.7474945 0 4.876131 +0.8539475 0 4.876131 +0.974052 0 4.876131 +1.113885 0 4.876131 +1.27456 0 4.876131 +1.458117 0 4.876131 +1.667858 0 4.876131 +1.907556 0 4.876131 +2.181521 0 4.876131 +2.494678 0 4.876131 +2.852659 0 4.876131 +3.261896 0 4.876131 +3.729748 0 4.876131 +4.264621 0 4.876131 +4.876131 0 4.876131 +5.575266 0 4.876131 +6.374593 0 4.876131 +0 0 4.876131 +0 0 4.876131 +0 0 4.876131 +0.002268731 0 4.876131 +0.07076883 0 4.876131 +0.1119241 0 4.876131 +0.1475052 0 4.876131 +0.1846606 0 4.876131 +0.2245119 0 4.876131 +0.2679612 0 4.876131 +0.3158431 0 4.876131 +0.3689944 0 4.876131 +0.4282948 0 4.876131 +0.494694 0 4.876131 +0.5692344 0 4.876131 +0.6530715 0 4.876131 +0.7474945 0 4.876131 +0.8539475 0 4.876131 +0.974052 0 4.876131 +1.113885 0 4.876131 +1.27456 0 4.876131 +1.458117 0 4.876131 +1.667858 0 4.876131 +1.907556 0 4.876131 +2.181521 0 4.876131 +2.494678 0 4.876131 +2.852659 0 4.876131 +3.261896 0 4.876131 +3.729748 0 4.876131 +4.264621 0 4.876131 +4.876131 0 4.876131 +5.575266 0 4.876131 +6.374593 0 4.876131 +0 0 4.876131 +0 0 4.876131 +0 0 4.876131 +0.002268731 0 4.876131 +0.07076883 0 4.876131 +0.1119241 0 4.876131 +0.1475052 0 4.876131 +0.1846606 0 4.876131 +0.2245119 0 4.876131 +0.2679612 0 4.876131 +0.3158431 0 4.876131 +0.3689944 0 4.876131 +0.4282948 0 4.876131 +0.494694 0 4.876131 +0.5692344 0 4.876131 +0.6530715 0 4.876131 +0.7474945 0 4.876131 +0.8539475 0 4.876131 +0.974052 0 4.876131 +1.113885 0 4.876131 +1.27456 0 4.876131 +1.458117 0 4.876131 +1.667858 0 4.876131 +1.907556 0 4.876131 +2.181521 0 4.876131 +2.494678 0 4.876131 +2.852659 0 4.876131 +3.261896 0 4.876131 +3.729748 0 4.876131 +4.264621 0 4.876131 +4.876131 0 4.876131 +5.575266 0 4.876131 +6.374593 0 4.876131 +0 0.002268731 4.876131 +0 0.002268731 4.876131 +0 0.002268731 4.876131 +0.002268731 0.002268731 4.876131 +0.07076883 0.002268731 4.876131 +0.1119241 0.002268731 4.876131 +0.1475052 0.002268731 4.876131 +0.1846606 0.002268731 4.876131 +0.2245119 0.002268731 4.876131 +0.2679612 0.002268731 4.876131 +0.3158431 0.002268731 4.876131 +0.3689944 0.002268731 4.876131 +0.4282948 0.002268731 4.876131 +0.494694 0.002268731 4.876131 +0.5692344 0.002268731 4.876131 +0.6530715 0.002268731 4.876131 +0.7474945 0.002268731 4.876131 +0.8539475 0.002268731 4.876131 +0.974052 0.002268731 4.876131 +1.113885 0.002268731 4.876131 +1.27456 0.002268731 4.876131 +1.458117 0.002268731 4.876131 +1.667858 0.002268731 4.876131 +1.907556 0.002268731 4.876131 +2.181521 0.002268731 4.876131 +2.494678 0.002268731 4.876131 +2.852659 0.002268731 4.876131 +3.261896 0.002268731 4.876131 +3.729748 0.002268731 4.876131 +4.264621 0.002268731 4.876131 +4.876131 0.002268731 4.876131 +5.575266 0.002268731 4.876131 +6.374593 0.002268731 4.876131 +0 0.07076883 4.876131 +0 0.07076883 4.876131 +0 0.07076883 4.876131 +0.002268731 0.07076883 4.876131 +0.07076883 0.07076883 4.876131 +0.1119241 0.07076883 4.876131 +0.1475052 0.07076883 4.876131 +0.1846606 0.07076883 4.876131 +0.2245119 0.07076883 4.876131 +0.2679612 0.07076883 4.876131 +0.3158431 0.07076883 4.876131 +0.3689944 0.07076883 4.876131 +0.4282948 0.07076883 4.876131 +0.494694 0.07076883 4.876131 +0.5692344 0.07076883 4.876131 +0.6530715 0.07076883 4.876131 +0.7474945 0.07076883 4.876131 +0.8539475 0.07076883 4.876131 +0.974052 0.07076883 4.876131 +1.113885 0.07076883 4.876131 +1.27456 0.07076883 4.876131 +1.458117 0.07076883 4.876131 +1.667858 0.07076883 4.876131 +1.907556 0.07076883 4.876131 +2.181521 0.07076883 4.876131 +2.494678 0.07076883 4.876131 +2.852659 0.07076883 4.876131 +3.261896 0.07076883 4.876131 +3.729748 0.07076883 4.876131 +4.264621 0.07076883 4.876131 +4.876131 0.07076883 4.876131 +5.575266 0.07076883 4.876131 +6.374593 0.07076883 4.876131 +0 0.1119241 4.876131 +0 0.1119241 4.876131 +0 0.1119241 4.876131 +0.002268731 0.1119241 4.876131 +0.07076883 0.1119241 4.876131 +0.1119241 0.1119241 4.876131 +0.1475052 0.1119241 4.876131 +0.1846606 0.1119241 4.876131 +0.2245119 0.1119241 4.876131 +0.2679612 0.1119241 4.876131 +0.3158431 0.1119241 4.876131 +0.3689944 0.1119241 4.876131 +0.4282948 0.1119241 4.876131 +0.494694 0.1119241 4.876131 +0.5692344 0.1119241 4.876131 +0.6530715 0.1119241 4.876131 +0.7474945 0.1119241 4.876131 +0.8539475 0.1119241 4.876131 +0.974052 0.1119241 4.876131 +1.113885 0.1119241 4.876131 +1.27456 0.1119241 4.876131 +1.458117 0.1119241 4.876131 +1.667858 0.1119241 4.876131 +1.907556 0.1119241 4.876131 +2.181521 0.1119241 4.876131 +2.494678 0.1119241 4.876131 +2.852659 0.1119241 4.876131 +3.261896 0.1119241 4.876131 +3.729748 0.1119241 4.876131 +4.264621 0.1119241 4.876131 +4.876131 0.1119241 4.876131 +5.575266 0.1119241 4.876131 +6.374593 0.1119241 4.876131 +0 0.1475052 4.876131 +0 0.1475052 4.876131 +0 0.1475052 4.876131 +0.002268731 0.1475052 4.876131 +0.07076883 0.1475052 4.876131 +0.1119241 0.1475052 4.876131 +0.1475052 0.1475052 4.876131 +0.1846606 0.1475052 4.876131 +0.2245119 0.1475052 4.876131 +0.2679612 0.1475052 4.876131 +0.3158431 0.1475052 4.876131 +0.3689944 0.1475052 4.876131 +0.4282948 0.1475052 4.876131 +0.494694 0.1475052 4.876131 +0.5692344 0.1475052 4.876131 +0.6530715 0.1475052 4.876131 +0.7474945 0.1475052 4.876131 +0.8539475 0.1475052 4.876131 +0.974052 0.1475052 4.876131 +1.113885 0.1475052 4.876131 +1.27456 0.1475052 4.876131 +1.458117 0.1475052 4.876131 +1.667858 0.1475052 4.876131 +1.907556 0.1475052 4.876131 +2.181521 0.1475052 4.876131 +2.494678 0.1475052 4.876131 +2.852659 0.1475052 4.876131 +3.261896 0.1475052 4.876131 +3.729748 0.1475052 4.876131 +4.264621 0.1475052 4.876131 +4.876131 0.1475052 4.876131 +5.575266 0.1475052 4.876131 +6.374593 0.1475052 4.876131 +0 0.1846606 4.876131 +0 0.1846606 4.876131 +0 0.1846606 4.876131 +0.002268731 0.1846606 4.876131 +0.07076883 0.1846606 4.876131 +0.1119241 0.1846606 4.876131 +0.1475052 0.1846606 4.876131 +0.1846606 0.1846606 4.876131 +0.2245119 0.1846606 4.876131 +0.2679612 0.1846606 4.876131 +0.3158431 0.1846606 4.876131 +0.3689944 0.1846606 4.876131 +0.4282948 0.1846606 4.876131 +0.494694 0.1846606 4.876131 +0.5692344 0.1846606 4.876131 +0.6530715 0.1846606 4.876131 +0.7474945 0.1846606 4.876131 +0.8539475 0.1846606 4.876131 +0.974052 0.1846606 4.876131 +1.113885 0.1846606 4.876131 +1.27456 0.1846606 4.876131 +1.458117 0.1846606 4.876131 +1.667858 0.1846606 4.876131 +1.907556 0.1846606 4.876131 +2.181521 0.1846606 4.876131 +2.494678 0.1846606 4.876131 +2.852659 0.1846606 4.876131 +3.261896 0.1846606 4.876131 +3.729748 0.1846606 4.876131 +4.264621 0.1846606 4.876131 +4.876131 0.1846606 4.876131 +5.575266 0.1846606 4.876131 +6.374593 0.1846606 4.876131 +0 0.2245119 4.876131 +0 0.2245119 4.876131 +0 0.2245119 4.876131 +0.002268731 0.2245119 4.876131 +0.07076883 0.2245119 4.876131 +0.1119241 0.2245119 4.876131 +0.1475052 0.2245119 4.876131 +0.1846606 0.2245119 4.876131 +0.2245119 0.2245119 4.876131 +0.2679612 0.2245119 4.876131 +0.3158431 0.2245119 4.876131 +0.3689944 0.2245119 4.876131 +0.4282948 0.2245119 4.876131 +0.494694 0.2245119 4.876131 +0.5692344 0.2245119 4.876131 +0.6530715 0.2245119 4.876131 +0.7474945 0.2245119 4.876131 +0.8539475 0.2245119 4.876131 +0.974052 0.2245119 4.876131 +1.113885 0.2245119 4.876131 +1.27456 0.2245119 4.876131 +1.458117 0.2245119 4.876131 +1.667858 0.2245119 4.876131 +1.907556 0.2245119 4.876131 +2.181521 0.2245119 4.876131 +2.494678 0.2245119 4.876131 +2.852659 0.2245119 4.876131 +3.261896 0.2245119 4.876131 +3.729748 0.2245119 4.876131 +4.264621 0.2245119 4.876131 +4.876131 0.2245119 4.876131 +5.575266 0.2245119 4.876131 +6.374593 0.2245119 4.876131 +0 0.2679612 4.876131 +0 0.2679612 4.876131 +0 0.2679612 4.876131 +0.002268731 0.2679612 4.876131 +0.07076883 0.2679612 4.876131 +0.1119241 0.2679612 4.876131 +0.1475052 0.2679612 4.876131 +0.1846606 0.2679612 4.876131 +0.2245119 0.2679612 4.876131 +0.2679612 0.2679612 4.876131 +0.3158431 0.2679612 4.876131 +0.3689944 0.2679612 4.876131 +0.4282948 0.2679612 4.876131 +0.494694 0.2679612 4.876131 +0.5692344 0.2679612 4.876131 +0.6530715 0.2679612 4.876131 +0.7474945 0.2679612 4.876131 +0.8539475 0.2679612 4.876131 +0.974052 0.2679612 4.876131 +1.113885 0.2679612 4.876131 +1.27456 0.2679612 4.876131 +1.458117 0.2679612 4.876131 +1.667858 0.2679612 4.876131 +1.907556 0.2679612 4.876131 +2.181521 0.2679612 4.876131 +2.494678 0.2679612 4.876131 +2.852659 0.2679612 4.876131 +3.261896 0.2679612 4.876131 +3.729748 0.2679612 4.876131 +4.264621 0.2679612 4.876131 +4.876131 0.2679612 4.876131 +5.575266 0.2679612 4.876131 +6.374593 0.2679612 4.876131 +0 0.3158431 4.876131 +0 0.3158431 4.876131 +0 0.3158431 4.876131 +0.002268731 0.3158431 4.876131 +0.07076883 0.3158431 4.876131 +0.1119241 0.3158431 4.876131 +0.1475052 0.3158431 4.876131 +0.1846606 0.3158431 4.876131 +0.2245119 0.3158431 4.876131 +0.2679612 0.3158431 4.876131 +0.3158431 0.3158431 4.876131 +0.3689944 0.3158431 4.876131 +0.4282948 0.3158431 4.876131 +0.494694 0.3158431 4.876131 +0.5692344 0.3158431 4.876131 +0.6530715 0.3158431 4.876131 +0.7474945 0.3158431 4.876131 +0.8539475 0.3158431 4.876131 +0.974052 0.3158431 4.876131 +1.113885 0.3158431 4.876131 +1.27456 0.3158431 4.876131 +1.458117 0.3158431 4.876131 +1.667858 0.3158431 4.876131 +1.907556 0.3158431 4.876131 +2.181521 0.3158431 4.876131 +2.494678 0.3158431 4.876131 +2.852659 0.3158431 4.876131 +3.261896 0.3158431 4.876131 +3.729748 0.3158431 4.876131 +4.264621 0.3158431 4.876131 +4.876131 0.3158431 4.876131 +5.575266 0.3158431 4.876131 +6.374593 0.3158431 4.876131 +0 0.3689944 4.876131 +0 0.3689944 4.876131 +0 0.3689944 4.876131 +0.002268731 0.3689944 4.876131 +0.07076883 0.3689944 4.876131 +0.1119241 0.3689944 4.876131 +0.1475052 0.3689944 4.876131 +0.1846606 0.3689944 4.876131 +0.2245119 0.3689944 4.876131 +0.2679612 0.3689944 4.876131 +0.3158431 0.3689944 4.876131 +0.3689944 0.3689944 4.876131 +0.4282948 0.3689944 4.876131 +0.494694 0.3689944 4.876131 +0.5692344 0.3689944 4.876131 +0.6530715 0.3689944 4.876131 +0.7474945 0.3689944 4.876131 +0.8539475 0.3689944 4.876131 +0.974052 0.3689944 4.876131 +1.113885 0.3689944 4.876131 +1.27456 0.3689944 4.876131 +1.458117 0.3689944 4.876131 +1.667858 0.3689944 4.876131 +1.907556 0.3689944 4.876131 +2.181521 0.3689944 4.876131 +2.494678 0.3689944 4.876131 +2.852659 0.3689944 4.876131 +3.261896 0.3689944 4.876131 +3.729748 0.3689944 4.876131 +4.264621 0.3689944 4.876131 +4.876131 0.3689944 4.876131 +5.575266 0.3689944 4.876131 +6.374593 0.3689944 4.876131 +0 0.4282948 4.876131 +0 0.4282948 4.876131 +0 0.4282948 4.876131 +0.002268731 0.4282948 4.876131 +0.07076883 0.4282948 4.876131 +0.1119241 0.4282948 4.876131 +0.1475052 0.4282948 4.876131 +0.1846606 0.4282948 4.876131 +0.2245119 0.4282948 4.876131 +0.2679612 0.4282948 4.876131 +0.3158431 0.4282948 4.876131 +0.3689944 0.4282948 4.876131 +0.4282948 0.4282948 4.876131 +0.494694 0.4282948 4.876131 +0.5692344 0.4282948 4.876131 +0.6530715 0.4282948 4.876131 +0.7474945 0.4282948 4.876131 +0.8539475 0.4282948 4.876131 +0.974052 0.4282948 4.876131 +1.113885 0.4282948 4.876131 +1.27456 0.4282948 4.876131 +1.458117 0.4282948 4.876131 +1.667858 0.4282948 4.876131 +1.907556 0.4282948 4.876131 +2.181521 0.4282948 4.876131 +2.494678 0.4282948 4.876131 +2.852659 0.4282948 4.876131 +3.261896 0.4282948 4.876131 +3.729748 0.4282948 4.876131 +4.264621 0.4282948 4.876131 +4.876131 0.4282948 4.876131 +5.575266 0.4282948 4.876131 +6.374593 0.4282948 4.876131 +0 0.494694 4.876131 +0 0.494694 4.876131 +0 0.494694 4.876131 +0.002268731 0.494694 4.876131 +0.07076883 0.494694 4.876131 +0.1119241 0.494694 4.876131 +0.1475052 0.494694 4.876131 +0.1846606 0.494694 4.876131 +0.2245119 0.494694 4.876131 +0.2679612 0.494694 4.876131 +0.3158431 0.494694 4.876131 +0.3689944 0.494694 4.876131 +0.4282948 0.494694 4.876131 +0.494694 0.494694 4.876131 +0.5692344 0.494694 4.876131 +0.6530715 0.494694 4.876131 +0.7474945 0.494694 4.876131 +0.8539475 0.494694 4.876131 +0.974052 0.494694 4.876131 +1.113885 0.494694 4.876131 +1.27456 0.494694 4.876131 +1.458117 0.494694 4.876131 +1.667858 0.494694 4.876131 +1.907556 0.494694 4.876131 +2.181521 0.494694 4.876131 +2.494678 0.494694 4.876131 +2.852659 0.494694 4.876131 +3.261896 0.494694 4.876131 +3.729748 0.494694 4.876131 +4.264621 0.494694 4.876131 +4.876131 0.494694 4.876131 +5.575266 0.494694 4.876131 +6.374593 0.494694 4.876131 +0 0.5692344 4.876131 +0 0.5692344 4.876131 +0 0.5692344 4.876131 +0.002268731 0.5692344 4.876131 +0.07076883 0.5692344 4.876131 +0.1119241 0.5692344 4.876131 +0.1475052 0.5692344 4.876131 +0.1846606 0.5692344 4.876131 +0.2245119 0.5692344 4.876131 +0.2679612 0.5692344 4.876131 +0.3158431 0.5692344 4.876131 +0.3689944 0.5692344 4.876131 +0.4282948 0.5692344 4.876131 +0.494694 0.5692344 4.876131 +0.5692344 0.5692344 4.876131 +0.6530715 0.5692344 4.876131 +0.7474945 0.5692344 4.876131 +0.8539475 0.5692344 4.876131 +0.974052 0.5692344 4.876131 +1.113885 0.5692344 4.876131 +1.27456 0.5692344 4.876131 +1.458117 0.5692344 4.876131 +1.667858 0.5692344 4.876131 +1.907556 0.5692344 4.876131 +2.181521 0.5692344 4.876131 +2.494678 0.5692344 4.876131 +2.852659 0.5692344 4.876131 +3.261896 0.5692344 4.876131 +3.729748 0.5692344 4.876131 +4.264621 0.5692344 4.876131 +4.876131 0.5692344 4.876131 +5.575266 0.5692344 4.876131 +6.374593 0.5692344 4.876131 +0 0.6530715 4.876131 +0 0.6530715 4.876131 +0 0.6530715 4.876131 +0.002268731 0.6530715 4.876131 +0.07076883 0.6530715 4.876131 +0.1119241 0.6530715 4.876131 +0.1475052 0.6530715 4.876131 +0.1846606 0.6530715 4.876131 +0.2245119 0.6530715 4.876131 +0.2679612 0.6530715 4.876131 +0.3158431 0.6530715 4.876131 +0.3689944 0.6530715 4.876131 +0.4282948 0.6530715 4.876131 +0.494694 0.6530715 4.876131 +0.5692344 0.6530715 4.876131 +0.6530715 0.6530715 4.876131 +0.7474945 0.6530715 4.876131 +0.8539475 0.6530715 4.876131 +0.974052 0.6530715 4.876131 +1.113885 0.6530715 4.876131 +1.27456 0.6530715 4.876131 +1.458117 0.6530715 4.876131 +1.667858 0.6530715 4.876131 +1.907556 0.6530715 4.876131 +2.181521 0.6530715 4.876131 +2.494678 0.6530715 4.876131 +2.852659 0.6530715 4.876131 +3.261896 0.6530715 4.876131 +3.729748 0.6530715 4.876131 +4.264621 0.6530715 4.876131 +4.876131 0.6530715 4.876131 +5.575266 0.6530715 4.876131 +6.374593 0.6530715 4.876131 +0 0.7474945 4.876131 +0 0.7474945 4.876131 +0 0.7474945 4.876131 +0.002268731 0.7474945 4.876131 +0.07076883 0.7474945 4.876131 +0.1119241 0.7474945 4.876131 +0.1475052 0.7474945 4.876131 +0.1846606 0.7474945 4.876131 +0.2245119 0.7474945 4.876131 +0.2679612 0.7474945 4.876131 +0.3158431 0.7474945 4.876131 +0.3689944 0.7474945 4.876131 +0.4282948 0.7474945 4.876131 +0.494694 0.7474945 4.876131 +0.5692344 0.7474945 4.876131 +0.6530715 0.7474945 4.876131 +0.7474945 0.7474945 4.876131 +0.8539475 0.7474945 4.876131 +0.974052 0.7474945 4.876131 +1.113885 0.7474945 4.876131 +1.27456 0.7474945 4.876131 +1.458117 0.7474945 4.876131 +1.667858 0.7474945 4.876131 +1.907556 0.7474945 4.876131 +2.181521 0.7474945 4.876131 +2.494678 0.7474945 4.876131 +2.852659 0.7474945 4.876131 +3.261896 0.7474945 4.876131 +3.729748 0.7474945 4.876131 +4.264621 0.7474945 4.876131 +4.876131 0.7474945 4.876131 +5.575266 0.7474945 4.876131 +6.374593 0.7474945 4.876131 +0 0.8539475 4.876131 +0 0.8539475 4.876131 +0 0.8539475 4.876131 +0.002268731 0.8539475 4.876131 +0.07076883 0.8539475 4.876131 +0.1119241 0.8539475 4.876131 +0.1475052 0.8539475 4.876131 +0.1846606 0.8539475 4.876131 +0.2245119 0.8539475 4.876131 +0.2679612 0.8539475 4.876131 +0.3158431 0.8539475 4.876131 +0.3689944 0.8539475 4.876131 +0.4282948 0.8539475 4.876131 +0.494694 0.8539475 4.876131 +0.5692344 0.8539475 4.876131 +0.6530715 0.8539475 4.876131 +0.7474945 0.8539475 4.876131 +0.8539475 0.8539475 4.876131 +0.974052 0.8539475 4.876131 +1.113885 0.8539475 4.876131 +1.27456 0.8539475 4.876131 +1.458117 0.8539475 4.876131 +1.667858 0.8539475 4.876131 +1.907556 0.8539475 4.876131 +2.181521 0.8539475 4.876131 +2.494678 0.8539475 4.876131 +2.852659 0.8539475 4.876131 +3.261896 0.8539475 4.876131 +3.729748 0.8539475 4.876131 +4.264621 0.8539475 4.876131 +4.876131 0.8539475 4.876131 +5.575266 0.8539475 4.876131 +6.374593 0.8539475 4.876131 +0 0.974052 4.876131 +0 0.974052 4.876131 +0 0.974052 4.876131 +0.002268731 0.974052 4.876131 +0.07076883 0.974052 4.876131 +0.1119241 0.974052 4.876131 +0.1475052 0.974052 4.876131 +0.1846606 0.974052 4.876131 +0.2245119 0.974052 4.876131 +0.2679612 0.974052 4.876131 +0.3158431 0.974052 4.876131 +0.3689944 0.974052 4.876131 +0.4282948 0.974052 4.876131 +0.494694 0.974052 4.876131 +0.5692344 0.974052 4.876131 +0.6530715 0.974052 4.876131 +0.7474945 0.974052 4.876131 +0.8539475 0.974052 4.876131 +0.974052 0.974052 4.876131 +1.113885 0.974052 4.876131 +1.27456 0.974052 4.876131 +1.458117 0.974052 4.876131 +1.667858 0.974052 4.876131 +1.907556 0.974052 4.876131 +2.181521 0.974052 4.876131 +2.494678 0.974052 4.876131 +2.852659 0.974052 4.876131 +3.261896 0.974052 4.876131 +3.729748 0.974052 4.876131 +4.264621 0.974052 4.876131 +4.876131 0.974052 4.876131 +5.575266 0.974052 4.876131 +6.374593 0.974052 4.876131 +0 1.113885 4.876131 +0 1.113885 4.876131 +0 1.113885 4.876131 +0.002268731 1.113885 4.876131 +0.07076883 1.113885 4.876131 +0.1119241 1.113885 4.876131 +0.1475052 1.113885 4.876131 +0.1846606 1.113885 4.876131 +0.2245119 1.113885 4.876131 +0.2679612 1.113885 4.876131 +0.3158431 1.113885 4.876131 +0.3689944 1.113885 4.876131 +0.4282948 1.113885 4.876131 +0.494694 1.113885 4.876131 +0.5692344 1.113885 4.876131 +0.6530715 1.113885 4.876131 +0.7474945 1.113885 4.876131 +0.8539475 1.113885 4.876131 +0.974052 1.113885 4.876131 +1.113885 1.113885 4.876131 +1.27456 1.113885 4.876131 +1.458117 1.113885 4.876131 +1.667858 1.113885 4.876131 +1.907556 1.113885 4.876131 +2.181521 1.113885 4.876131 +2.494678 1.113885 4.876131 +2.852659 1.113885 4.876131 +3.261896 1.113885 4.876131 +3.729748 1.113885 4.876131 +4.264621 1.113885 4.876131 +4.876131 1.113885 4.876131 +5.575266 1.113885 4.876131 +6.374593 1.113885 4.876131 +0 1.27456 4.876131 +0 1.27456 4.876131 +0 1.27456 4.876131 +0.002268731 1.27456 4.876131 +0.07076883 1.27456 4.876131 +0.1119241 1.27456 4.876131 +0.1475052 1.27456 4.876131 +0.1846606 1.27456 4.876131 +0.2245119 1.27456 4.876131 +0.2679612 1.27456 4.876131 +0.3158431 1.27456 4.876131 +0.3689944 1.27456 4.876131 +0.4282948 1.27456 4.876131 +0.494694 1.27456 4.876131 +0.5692344 1.27456 4.876131 +0.6530715 1.27456 4.876131 +0.7474945 1.27456 4.876131 +0.8539475 1.27456 4.876131 +0.974052 1.27456 4.876131 +1.113885 1.27456 4.876131 +1.27456 1.27456 4.876131 +1.458117 1.27456 4.876131 +1.667858 1.27456 4.876131 +1.907556 1.27456 4.876131 +2.181521 1.27456 4.876131 +2.494678 1.27456 4.876131 +2.852659 1.27456 4.876131 +3.261896 1.27456 4.876131 +3.729748 1.27456 4.876131 +4.264621 1.27456 4.876131 +4.876131 1.27456 4.876131 +5.575266 1.27456 4.876131 +6.374593 1.27456 4.876131 +0 1.458117 4.876131 +0 1.458117 4.876131 +0 1.458117 4.876131 +0.002268731 1.458117 4.876131 +0.07076883 1.458117 4.876131 +0.1119241 1.458117 4.876131 +0.1475052 1.458117 4.876131 +0.1846606 1.458117 4.876131 +0.2245119 1.458117 4.876131 +0.2679612 1.458117 4.876131 +0.3158431 1.458117 4.876131 +0.3689944 1.458117 4.876131 +0.4282948 1.458117 4.876131 +0.494694 1.458117 4.876131 +0.5692344 1.458117 4.876131 +0.6530715 1.458117 4.876131 +0.7474945 1.458117 4.876131 +0.8539475 1.458117 4.876131 +0.974052 1.458117 4.876131 +1.113885 1.458117 4.876131 +1.27456 1.458117 4.876131 +1.458117 1.458117 4.876131 +1.667858 1.458117 4.876131 +1.907556 1.458117 4.876131 +2.181521 1.458117 4.876131 +2.494678 1.458117 4.876131 +2.852659 1.458117 4.876131 +3.261896 1.458117 4.876131 +3.729748 1.458117 4.876131 +4.264621 1.458117 4.876131 +4.876131 1.458117 4.876131 +5.575266 1.458117 4.876131 +6.374593 1.458117 4.876131 +0 1.667858 4.876131 +0 1.667858 4.876131 +0 1.667858 4.876131 +0.002268731 1.667858 4.876131 +0.07076883 1.667858 4.876131 +0.1119241 1.667858 4.876131 +0.1475052 1.667858 4.876131 +0.1846606 1.667858 4.876131 +0.2245119 1.667858 4.876131 +0.2679612 1.667858 4.876131 +0.3158431 1.667858 4.876131 +0.3689944 1.667858 4.876131 +0.4282948 1.667858 4.876131 +0.494694 1.667858 4.876131 +0.5692344 1.667858 4.876131 +0.6530715 1.667858 4.876131 +0.7474945 1.667858 4.876131 +0.8539475 1.667858 4.876131 +0.974052 1.667858 4.876131 +1.113885 1.667858 4.876131 +1.27456 1.667858 4.876131 +1.458117 1.667858 4.876131 +1.667858 1.667858 4.876131 +1.907556 1.667858 4.876131 +2.181521 1.667858 4.876131 +2.494678 1.667858 4.876131 +2.852659 1.667858 4.876131 +3.261896 1.667858 4.876131 +3.729748 1.667858 4.876131 +4.264621 1.667858 4.876131 +4.876131 1.667858 4.876131 +5.575266 1.667858 4.876131 +6.374593 1.667858 4.876131 +0 1.907556 4.876131 +0 1.907556 4.876131 +0 1.907556 4.876131 +0.002268731 1.907556 4.876131 +0.07076883 1.907556 4.876131 +0.1119241 1.907556 4.876131 +0.1475052 1.907556 4.876131 +0.1846606 1.907556 4.876131 +0.2245119 1.907556 4.876131 +0.2679612 1.907556 4.876131 +0.3158431 1.907556 4.876131 +0.3689944 1.907556 4.876131 +0.4282948 1.907556 4.876131 +0.494694 1.907556 4.876131 +0.5692344 1.907556 4.876131 +0.6530715 1.907556 4.876131 +0.7474945 1.907556 4.876131 +0.8539475 1.907556 4.876131 +0.974052 1.907556 4.876131 +1.113885 1.907556 4.876131 +1.27456 1.907556 4.876131 +1.458117 1.907556 4.876131 +1.667858 1.907556 4.876131 +1.907556 1.907556 4.876131 +2.181521 1.907556 4.876131 +2.494678 1.907556 4.876131 +2.852659 1.907556 4.876131 +3.261896 1.907556 4.876131 +3.729748 1.907556 4.876131 +4.264621 1.907556 4.876131 +4.876131 1.907556 4.876131 +5.575266 1.907556 4.876131 +6.374593 1.907556 4.876131 +0 2.181521 4.876131 +0 2.181521 4.876131 +0 2.181521 4.876131 +0.002268731 2.181521 4.876131 +0.07076883 2.181521 4.876131 +0.1119241 2.181521 4.876131 +0.1475052 2.181521 4.876131 +0.1846606 2.181521 4.876131 +0.2245119 2.181521 4.876131 +0.2679612 2.181521 4.876131 +0.3158431 2.181521 4.876131 +0.3689944 2.181521 4.876131 +0.4282948 2.181521 4.876131 +0.494694 2.181521 4.876131 +0.5692344 2.181521 4.876131 +0.6530715 2.181521 4.876131 +0.7474945 2.181521 4.876131 +0.8539475 2.181521 4.876131 +0.974052 2.181521 4.876131 +1.113885 2.181521 4.876131 +1.27456 2.181521 4.876131 +1.458117 2.181521 4.876131 +1.667858 2.181521 4.876131 +1.907556 2.181521 4.876131 +2.181521 2.181521 4.876131 +2.494678 2.181521 4.876131 +2.852659 2.181521 4.876131 +3.261896 2.181521 4.876131 +3.729748 2.181521 4.876131 +4.264621 2.181521 4.876131 +4.876131 2.181521 4.876131 +5.575266 2.181521 4.876131 +6.374593 2.181521 4.876131 +0 2.494678 4.876131 +0 2.494678 4.876131 +0 2.494678 4.876131 +0.002268731 2.494678 4.876131 +0.07076883 2.494678 4.876131 +0.1119241 2.494678 4.876131 +0.1475052 2.494678 4.876131 +0.1846606 2.494678 4.876131 +0.2245119 2.494678 4.876131 +0.2679612 2.494678 4.876131 +0.3158431 2.494678 4.876131 +0.3689944 2.494678 4.876131 +0.4282948 2.494678 4.876131 +0.494694 2.494678 4.876131 +0.5692344 2.494678 4.876131 +0.6530715 2.494678 4.876131 +0.7474945 2.494678 4.876131 +0.8539475 2.494678 4.876131 +0.974052 2.494678 4.876131 +1.113885 2.494678 4.876131 +1.27456 2.494678 4.876131 +1.458117 2.494678 4.876131 +1.667858 2.494678 4.876131 +1.907556 2.494678 4.876131 +2.181521 2.494678 4.876131 +2.494678 2.494678 4.876131 +2.852659 2.494678 4.876131 +3.261896 2.494678 4.876131 +3.729748 2.494678 4.876131 +4.264621 2.494678 4.876131 +4.876131 2.494678 4.876131 +5.575266 2.494678 4.876131 +6.374593 2.494678 4.876131 +0 2.852659 4.876131 +0 2.852659 4.876131 +0 2.852659 4.876131 +0.002268731 2.852659 4.876131 +0.07076883 2.852659 4.876131 +0.1119241 2.852659 4.876131 +0.1475052 2.852659 4.876131 +0.1846606 2.852659 4.876131 +0.2245119 2.852659 4.876131 +0.2679612 2.852659 4.876131 +0.3158431 2.852659 4.876131 +0.3689944 2.852659 4.876131 +0.4282948 2.852659 4.876131 +0.494694 2.852659 4.876131 +0.5692344 2.852659 4.876131 +0.6530715 2.852659 4.876131 +0.7474945 2.852659 4.876131 +0.8539475 2.852659 4.876131 +0.974052 2.852659 4.876131 +1.113885 2.852659 4.876131 +1.27456 2.852659 4.876131 +1.458117 2.852659 4.876131 +1.667858 2.852659 4.876131 +1.907556 2.852659 4.876131 +2.181521 2.852659 4.876131 +2.494678 2.852659 4.876131 +2.852659 2.852659 4.876131 +3.261896 2.852659 4.876131 +3.729748 2.852659 4.876131 +4.264621 2.852659 4.876131 +4.876131 2.852659 4.876131 +5.575266 2.852659 4.876131 +6.374593 2.852659 4.876131 +0 3.261896 4.876131 +0 3.261896 4.876131 +0 3.261896 4.876131 +0.002268731 3.261896 4.876131 +0.07076883 3.261896 4.876131 +0.1119241 3.261896 4.876131 +0.1475052 3.261896 4.876131 +0.1846606 3.261896 4.876131 +0.2245119 3.261896 4.876131 +0.2679612 3.261896 4.876131 +0.3158431 3.261896 4.876131 +0.3689944 3.261896 4.876131 +0.4282948 3.261896 4.876131 +0.494694 3.261896 4.876131 +0.5692344 3.261896 4.876131 +0.6530715 3.261896 4.876131 +0.7474945 3.261896 4.876131 +0.8539475 3.261896 4.876131 +0.974052 3.261896 4.876131 +1.113885 3.261896 4.876131 +1.27456 3.261896 4.876131 +1.458117 3.261896 4.876131 +1.667858 3.261896 4.876131 +1.907556 3.261896 4.876131 +2.181521 3.261896 4.876131 +2.494678 3.261896 4.876131 +2.852659 3.261896 4.876131 +3.261896 3.261896 4.876131 +3.729748 3.261896 4.876131 +4.264621 3.261896 4.876131 +4.876131 3.261896 4.876131 +5.575266 3.261896 4.876131 +6.374593 3.261896 4.876131 +0 3.729748 4.876131 +0 3.729748 4.876131 +0 3.729748 4.876131 +0.002268731 3.729748 4.876131 +0.07076883 3.729748 4.876131 +0.1119241 3.729748 4.876131 +0.1475052 3.729748 4.876131 +0.1846606 3.729748 4.876131 +0.2245119 3.729748 4.876131 +0.2679612 3.729748 4.876131 +0.3158431 3.729748 4.876131 +0.3689944 3.729748 4.876131 +0.4282948 3.729748 4.876131 +0.494694 3.729748 4.876131 +0.5692344 3.729748 4.876131 +0.6530715 3.729748 4.876131 +0.7474945 3.729748 4.876131 +0.8539475 3.729748 4.876131 +0.974052 3.729748 4.876131 +1.113885 3.729748 4.876131 +1.27456 3.729748 4.876131 +1.458117 3.729748 4.876131 +1.667858 3.729748 4.876131 +1.907556 3.729748 4.876131 +2.181521 3.729748 4.876131 +2.494678 3.729748 4.876131 +2.852659 3.729748 4.876131 +3.261896 3.729748 4.876131 +3.729748 3.729748 4.876131 +4.264621 3.729748 4.876131 +4.876131 3.729748 4.876131 +5.575266 3.729748 4.876131 +6.374593 3.729748 4.876131 +0 4.264621 4.876131 +0 4.264621 4.876131 +0 4.264621 4.876131 +0.002268731 4.264621 4.876131 +0.07076883 4.264621 4.876131 +0.1119241 4.264621 4.876131 +0.1475052 4.264621 4.876131 +0.1846606 4.264621 4.876131 +0.2245119 4.264621 4.876131 +0.2679612 4.264621 4.876131 +0.3158431 4.264621 4.876131 +0.3689944 4.264621 4.876131 +0.4282948 4.264621 4.876131 +0.494694 4.264621 4.876131 +0.5692344 4.264621 4.876131 +0.6530715 4.264621 4.876131 +0.7474945 4.264621 4.876131 +0.8539475 4.264621 4.876131 +0.974052 4.264621 4.876131 +1.113885 4.264621 4.876131 +1.27456 4.264621 4.876131 +1.458117 4.264621 4.876131 +1.667858 4.264621 4.876131 +1.907556 4.264621 4.876131 +2.181521 4.264621 4.876131 +2.494678 4.264621 4.876131 +2.852659 4.264621 4.876131 +3.261896 4.264621 4.876131 +3.729748 4.264621 4.876131 +4.264621 4.264621 4.876131 +4.876131 4.264621 4.876131 +5.575266 4.264621 4.876131 +6.374593 4.264621 4.876131 +0 4.876131 4.876131 +0 4.876131 4.876131 +0 4.876131 4.876131 +0.002268731 4.876131 4.876131 +0.07076883 4.876131 4.876131 +0.1119241 4.876131 4.876131 +0.1475052 4.876131 4.876131 +0.1846606 4.876131 4.876131 +0.2245119 4.876131 4.876131 +0.2679612 4.876131 4.876131 +0.3158431 4.876131 4.876131 +0.3689944 4.876131 4.876131 +0.4282948 4.876131 4.876131 +0.494694 4.876131 4.876131 +0.5692344 4.876131 4.876131 +0.6530715 4.876131 4.876131 +0.7474945 4.876131 4.876131 +0.8539475 4.876131 4.876131 +0.974052 4.876131 4.876131 +1.113885 4.876131 4.876131 +1.27456 4.876131 4.876131 +1.458117 4.876131 4.876131 +1.667858 4.876131 4.876131 +1.907556 4.876131 4.876131 +2.181521 4.876131 4.876131 +2.494678 4.876131 4.876131 +2.852659 4.876131 4.876131 +3.261896 4.876131 4.876131 +3.729748 4.876131 4.876131 +4.264621 4.876131 4.876131 +4.876131 4.876131 4.876131 +5.575266 4.876131 4.876131 +6.374593 4.876131 4.876131 +0 5.575266 4.876131 +0 5.575266 4.876131 +0 5.575266 4.876131 +0.002268731 5.575266 4.876131 +0.07076883 5.575266 4.876131 +0.1119241 5.575266 4.876131 +0.1475052 5.575266 4.876131 +0.1846606 5.575266 4.876131 +0.2245119 5.575266 4.876131 +0.2679612 5.575266 4.876131 +0.3158431 5.575266 4.876131 +0.3689944 5.575266 4.876131 +0.4282948 5.575266 4.876131 +0.494694 5.575266 4.876131 +0.5692344 5.575266 4.876131 +0.6530715 5.575266 4.876131 +0.7474945 5.575266 4.876131 +0.8539475 5.575266 4.876131 +0.974052 5.575266 4.876131 +1.113885 5.575266 4.876131 +1.27456 5.575266 4.876131 +1.458117 5.575266 4.876131 +1.667858 5.575266 4.876131 +1.907556 5.575266 4.876131 +2.181521 5.575266 4.876131 +2.494678 5.575266 4.876131 +2.852659 5.575266 4.876131 +3.261896 5.575266 4.876131 +3.729748 5.575266 4.876131 +4.264621 5.575266 4.876131 +4.876131 5.575266 4.876131 +5.575266 5.575266 4.876131 +6.374593 5.575266 4.876131 +0 6.374593 4.876131 +0 6.374593 4.876131 +0 6.374593 4.876131 +0.002268731 6.374593 4.876131 +0.07076883 6.374593 4.876131 +0.1119241 6.374593 4.876131 +0.1475052 6.374593 4.876131 +0.1846606 6.374593 4.876131 +0.2245119 6.374593 4.876131 +0.2679612 6.374593 4.876131 +0.3158431 6.374593 4.876131 +0.3689944 6.374593 4.876131 +0.4282948 6.374593 4.876131 +0.494694 6.374593 4.876131 +0.5692344 6.374593 4.876131 +0.6530715 6.374593 4.876131 +0.7474945 6.374593 4.876131 +0.8539475 6.374593 4.876131 +0.974052 6.374593 4.876131 +1.113885 6.374593 4.876131 +1.27456 6.374593 4.876131 +1.458117 6.374593 4.876131 +1.667858 6.374593 4.876131 +1.907556 6.374593 4.876131 +2.181521 6.374593 4.876131 +2.494678 6.374593 4.876131 +2.852659 6.374593 4.876131 +3.261896 6.374593 4.876131 +3.729748 6.374593 4.876131 +4.264621 6.374593 4.876131 +4.876131 6.374593 4.876131 +5.575266 6.374593 4.876131 +6.374593 6.374593 4.876131 +0 0 5.575266 +0 0 5.575266 +0 0 5.575266 +0.002268731 0 5.575266 +0.07076883 0 5.575266 +0.1119241 0 5.575266 +0.1475052 0 5.575266 +0.1846606 0 5.575266 +0.2245119 0 5.575266 +0.2679612 0 5.575266 +0.3158431 0 5.575266 +0.3689944 0 5.575266 +0.4282948 0 5.575266 +0.494694 0 5.575266 +0.5692344 0 5.575266 +0.6530715 0 5.575266 +0.7474945 0 5.575266 +0.8539475 0 5.575266 +0.974052 0 5.575266 +1.113885 0 5.575266 +1.27456 0 5.575266 +1.458117 0 5.575266 +1.667858 0 5.575266 +1.907556 0 5.575266 +2.181521 0 5.575266 +2.494678 0 5.575266 +2.852659 0 5.575266 +3.261896 0 5.575266 +3.729748 0 5.575266 +4.264621 0 5.575266 +4.876131 0 5.575266 +5.575266 0 5.575266 +6.374593 0 5.575266 +0 0 5.575266 +0 0 5.575266 +0 0 5.575266 +0.002268731 0 5.575266 +0.07076883 0 5.575266 +0.1119241 0 5.575266 +0.1475052 0 5.575266 +0.1846606 0 5.575266 +0.2245119 0 5.575266 +0.2679612 0 5.575266 +0.3158431 0 5.575266 +0.3689944 0 5.575266 +0.4282948 0 5.575266 +0.494694 0 5.575266 +0.5692344 0 5.575266 +0.6530715 0 5.575266 +0.7474945 0 5.575266 +0.8539475 0 5.575266 +0.974052 0 5.575266 +1.113885 0 5.575266 +1.27456 0 5.575266 +1.458117 0 5.575266 +1.667858 0 5.575266 +1.907556 0 5.575266 +2.181521 0 5.575266 +2.494678 0 5.575266 +2.852659 0 5.575266 +3.261896 0 5.575266 +3.729748 0 5.575266 +4.264621 0 5.575266 +4.876131 0 5.575266 +5.575266 0 5.575266 +6.374593 0 5.575266 +0 0 5.575266 +0 0 5.575266 +0 0 5.575266 +0.002268731 0 5.575266 +0.07076883 0 5.575266 +0.1119241 0 5.575266 +0.1475052 0 5.575266 +0.1846606 0 5.575266 +0.2245119 0 5.575266 +0.2679612 0 5.575266 +0.3158431 0 5.575266 +0.3689944 0 5.575266 +0.4282948 0 5.575266 +0.494694 0 5.575266 +0.5692344 0 5.575266 +0.6530715 0 5.575266 +0.7474945 0 5.575266 +0.8539475 0 5.575266 +0.974052 0 5.575266 +1.113885 0 5.575266 +1.27456 0 5.575266 +1.458117 0 5.575266 +1.667858 0 5.575266 +1.907556 0 5.575266 +2.181521 0 5.575266 +2.494678 0 5.575266 +2.852659 0 5.575266 +3.261896 0 5.575266 +3.729748 0 5.575266 +4.264621 0 5.575266 +4.876131 0 5.575266 +5.575266 0 5.575266 +6.374593 0 5.575266 +0 0.002268731 5.575266 +0 0.002268731 5.575266 +0 0.002268731 5.575266 +0.002268731 0.002268731 5.575266 +0.07076883 0.002268731 5.575266 +0.1119241 0.002268731 5.575266 +0.1475052 0.002268731 5.575266 +0.1846606 0.002268731 5.575266 +0.2245119 0.002268731 5.575266 +0.2679612 0.002268731 5.575266 +0.3158431 0.002268731 5.575266 +0.3689944 0.002268731 5.575266 +0.4282948 0.002268731 5.575266 +0.494694 0.002268731 5.575266 +0.5692344 0.002268731 5.575266 +0.6530715 0.002268731 5.575266 +0.7474945 0.002268731 5.575266 +0.8539475 0.002268731 5.575266 +0.974052 0.002268731 5.575266 +1.113885 0.002268731 5.575266 +1.27456 0.002268731 5.575266 +1.458117 0.002268731 5.575266 +1.667858 0.002268731 5.575266 +1.907556 0.002268731 5.575266 +2.181521 0.002268731 5.575266 +2.494678 0.002268731 5.575266 +2.852659 0.002268731 5.575266 +3.261896 0.002268731 5.575266 +3.729748 0.002268731 5.575266 +4.264621 0.002268731 5.575266 +4.876131 0.002268731 5.575266 +5.575266 0.002268731 5.575266 +6.374593 0.002268731 5.575266 +0 0.07076883 5.575266 +0 0.07076883 5.575266 +0 0.07076883 5.575266 +0.002268731 0.07076883 5.575266 +0.07076883 0.07076883 5.575266 +0.1119241 0.07076883 5.575266 +0.1475052 0.07076883 5.575266 +0.1846606 0.07076883 5.575266 +0.2245119 0.07076883 5.575266 +0.2679612 0.07076883 5.575266 +0.3158431 0.07076883 5.575266 +0.3689944 0.07076883 5.575266 +0.4282948 0.07076883 5.575266 +0.494694 0.07076883 5.575266 +0.5692344 0.07076883 5.575266 +0.6530715 0.07076883 5.575266 +0.7474945 0.07076883 5.575266 +0.8539475 0.07076883 5.575266 +0.974052 0.07076883 5.575266 +1.113885 0.07076883 5.575266 +1.27456 0.07076883 5.575266 +1.458117 0.07076883 5.575266 +1.667858 0.07076883 5.575266 +1.907556 0.07076883 5.575266 +2.181521 0.07076883 5.575266 +2.494678 0.07076883 5.575266 +2.852659 0.07076883 5.575266 +3.261896 0.07076883 5.575266 +3.729748 0.07076883 5.575266 +4.264621 0.07076883 5.575266 +4.876131 0.07076883 5.575266 +5.575266 0.07076883 5.575266 +6.374593 0.07076883 5.575266 +0 0.1119241 5.575266 +0 0.1119241 5.575266 +0 0.1119241 5.575266 +0.002268731 0.1119241 5.575266 +0.07076883 0.1119241 5.575266 +0.1119241 0.1119241 5.575266 +0.1475052 0.1119241 5.575266 +0.1846606 0.1119241 5.575266 +0.2245119 0.1119241 5.575266 +0.2679612 0.1119241 5.575266 +0.3158431 0.1119241 5.575266 +0.3689944 0.1119241 5.575266 +0.4282948 0.1119241 5.575266 +0.494694 0.1119241 5.575266 +0.5692344 0.1119241 5.575266 +0.6530715 0.1119241 5.575266 +0.7474945 0.1119241 5.575266 +0.8539475 0.1119241 5.575266 +0.974052 0.1119241 5.575266 +1.113885 0.1119241 5.575266 +1.27456 0.1119241 5.575266 +1.458117 0.1119241 5.575266 +1.667858 0.1119241 5.575266 +1.907556 0.1119241 5.575266 +2.181521 0.1119241 5.575266 +2.494678 0.1119241 5.575266 +2.852659 0.1119241 5.575266 +3.261896 0.1119241 5.575266 +3.729748 0.1119241 5.575266 +4.264621 0.1119241 5.575266 +4.876131 0.1119241 5.575266 +5.575266 0.1119241 5.575266 +6.374593 0.1119241 5.575266 +0 0.1475052 5.575266 +0 0.1475052 5.575266 +0 0.1475052 5.575266 +0.002268731 0.1475052 5.575266 +0.07076883 0.1475052 5.575266 +0.1119241 0.1475052 5.575266 +0.1475052 0.1475052 5.575266 +0.1846606 0.1475052 5.575266 +0.2245119 0.1475052 5.575266 +0.2679612 0.1475052 5.575266 +0.3158431 0.1475052 5.575266 +0.3689944 0.1475052 5.575266 +0.4282948 0.1475052 5.575266 +0.494694 0.1475052 5.575266 +0.5692344 0.1475052 5.575266 +0.6530715 0.1475052 5.575266 +0.7474945 0.1475052 5.575266 +0.8539475 0.1475052 5.575266 +0.974052 0.1475052 5.575266 +1.113885 0.1475052 5.575266 +1.27456 0.1475052 5.575266 +1.458117 0.1475052 5.575266 +1.667858 0.1475052 5.575266 +1.907556 0.1475052 5.575266 +2.181521 0.1475052 5.575266 +2.494678 0.1475052 5.575266 +2.852659 0.1475052 5.575266 +3.261896 0.1475052 5.575266 +3.729748 0.1475052 5.575266 +4.264621 0.1475052 5.575266 +4.876131 0.1475052 5.575266 +5.575266 0.1475052 5.575266 +6.374593 0.1475052 5.575266 +0 0.1846606 5.575266 +0 0.1846606 5.575266 +0 0.1846606 5.575266 +0.002268731 0.1846606 5.575266 +0.07076883 0.1846606 5.575266 +0.1119241 0.1846606 5.575266 +0.1475052 0.1846606 5.575266 +0.1846606 0.1846606 5.575266 +0.2245119 0.1846606 5.575266 +0.2679612 0.1846606 5.575266 +0.3158431 0.1846606 5.575266 +0.3689944 0.1846606 5.575266 +0.4282948 0.1846606 5.575266 +0.494694 0.1846606 5.575266 +0.5692344 0.1846606 5.575266 +0.6530715 0.1846606 5.575266 +0.7474945 0.1846606 5.575266 +0.8539475 0.1846606 5.575266 +0.974052 0.1846606 5.575266 +1.113885 0.1846606 5.575266 +1.27456 0.1846606 5.575266 +1.458117 0.1846606 5.575266 +1.667858 0.1846606 5.575266 +1.907556 0.1846606 5.575266 +2.181521 0.1846606 5.575266 +2.494678 0.1846606 5.575266 +2.852659 0.1846606 5.575266 +3.261896 0.1846606 5.575266 +3.729748 0.1846606 5.575266 +4.264621 0.1846606 5.575266 +4.876131 0.1846606 5.575266 +5.575266 0.1846606 5.575266 +6.374593 0.1846606 5.575266 +0 0.2245119 5.575266 +0 0.2245119 5.575266 +0 0.2245119 5.575266 +0.002268731 0.2245119 5.575266 +0.07076883 0.2245119 5.575266 +0.1119241 0.2245119 5.575266 +0.1475052 0.2245119 5.575266 +0.1846606 0.2245119 5.575266 +0.2245119 0.2245119 5.575266 +0.2679612 0.2245119 5.575266 +0.3158431 0.2245119 5.575266 +0.3689944 0.2245119 5.575266 +0.4282948 0.2245119 5.575266 +0.494694 0.2245119 5.575266 +0.5692344 0.2245119 5.575266 +0.6530715 0.2245119 5.575266 +0.7474945 0.2245119 5.575266 +0.8539475 0.2245119 5.575266 +0.974052 0.2245119 5.575266 +1.113885 0.2245119 5.575266 +1.27456 0.2245119 5.575266 +1.458117 0.2245119 5.575266 +1.667858 0.2245119 5.575266 +1.907556 0.2245119 5.575266 +2.181521 0.2245119 5.575266 +2.494678 0.2245119 5.575266 +2.852659 0.2245119 5.575266 +3.261896 0.2245119 5.575266 +3.729748 0.2245119 5.575266 +4.264621 0.2245119 5.575266 +4.876131 0.2245119 5.575266 +5.575266 0.2245119 5.575266 +6.374593 0.2245119 5.575266 +0 0.2679612 5.575266 +0 0.2679612 5.575266 +0 0.2679612 5.575266 +0.002268731 0.2679612 5.575266 +0.07076883 0.2679612 5.575266 +0.1119241 0.2679612 5.575266 +0.1475052 0.2679612 5.575266 +0.1846606 0.2679612 5.575266 +0.2245119 0.2679612 5.575266 +0.2679612 0.2679612 5.575266 +0.3158431 0.2679612 5.575266 +0.3689944 0.2679612 5.575266 +0.4282948 0.2679612 5.575266 +0.494694 0.2679612 5.575266 +0.5692344 0.2679612 5.575266 +0.6530715 0.2679612 5.575266 +0.7474945 0.2679612 5.575266 +0.8539475 0.2679612 5.575266 +0.974052 0.2679612 5.575266 +1.113885 0.2679612 5.575266 +1.27456 0.2679612 5.575266 +1.458117 0.2679612 5.575266 +1.667858 0.2679612 5.575266 +1.907556 0.2679612 5.575266 +2.181521 0.2679612 5.575266 +2.494678 0.2679612 5.575266 +2.852659 0.2679612 5.575266 +3.261896 0.2679612 5.575266 +3.729748 0.2679612 5.575266 +4.264621 0.2679612 5.575266 +4.876131 0.2679612 5.575266 +5.575266 0.2679612 5.575266 +6.374593 0.2679612 5.575266 +0 0.3158431 5.575266 +0 0.3158431 5.575266 +0 0.3158431 5.575266 +0.002268731 0.3158431 5.575266 +0.07076883 0.3158431 5.575266 +0.1119241 0.3158431 5.575266 +0.1475052 0.3158431 5.575266 +0.1846606 0.3158431 5.575266 +0.2245119 0.3158431 5.575266 +0.2679612 0.3158431 5.575266 +0.3158431 0.3158431 5.575266 +0.3689944 0.3158431 5.575266 +0.4282948 0.3158431 5.575266 +0.494694 0.3158431 5.575266 +0.5692344 0.3158431 5.575266 +0.6530715 0.3158431 5.575266 +0.7474945 0.3158431 5.575266 +0.8539475 0.3158431 5.575266 +0.974052 0.3158431 5.575266 +1.113885 0.3158431 5.575266 +1.27456 0.3158431 5.575266 +1.458117 0.3158431 5.575266 +1.667858 0.3158431 5.575266 +1.907556 0.3158431 5.575266 +2.181521 0.3158431 5.575266 +2.494678 0.3158431 5.575266 +2.852659 0.3158431 5.575266 +3.261896 0.3158431 5.575266 +3.729748 0.3158431 5.575266 +4.264621 0.3158431 5.575266 +4.876131 0.3158431 5.575266 +5.575266 0.3158431 5.575266 +6.374593 0.3158431 5.575266 +0 0.3689944 5.575266 +0 0.3689944 5.575266 +0 0.3689944 5.575266 +0.002268731 0.3689944 5.575266 +0.07076883 0.3689944 5.575266 +0.1119241 0.3689944 5.575266 +0.1475052 0.3689944 5.575266 +0.1846606 0.3689944 5.575266 +0.2245119 0.3689944 5.575266 +0.2679612 0.3689944 5.575266 +0.3158431 0.3689944 5.575266 +0.3689944 0.3689944 5.575266 +0.4282948 0.3689944 5.575266 +0.494694 0.3689944 5.575266 +0.5692344 0.3689944 5.575266 +0.6530715 0.3689944 5.575266 +0.7474945 0.3689944 5.575266 +0.8539475 0.3689944 5.575266 +0.974052 0.3689944 5.575266 +1.113885 0.3689944 5.575266 +1.27456 0.3689944 5.575266 +1.458117 0.3689944 5.575266 +1.667858 0.3689944 5.575266 +1.907556 0.3689944 5.575266 +2.181521 0.3689944 5.575266 +2.494678 0.3689944 5.575266 +2.852659 0.3689944 5.575266 +3.261896 0.3689944 5.575266 +3.729748 0.3689944 5.575266 +4.264621 0.3689944 5.575266 +4.876131 0.3689944 5.575266 +5.575266 0.3689944 5.575266 +6.374593 0.3689944 5.575266 +0 0.4282948 5.575266 +0 0.4282948 5.575266 +0 0.4282948 5.575266 +0.002268731 0.4282948 5.575266 +0.07076883 0.4282948 5.575266 +0.1119241 0.4282948 5.575266 +0.1475052 0.4282948 5.575266 +0.1846606 0.4282948 5.575266 +0.2245119 0.4282948 5.575266 +0.2679612 0.4282948 5.575266 +0.3158431 0.4282948 5.575266 +0.3689944 0.4282948 5.575266 +0.4282948 0.4282948 5.575266 +0.494694 0.4282948 5.575266 +0.5692344 0.4282948 5.575266 +0.6530715 0.4282948 5.575266 +0.7474945 0.4282948 5.575266 +0.8539475 0.4282948 5.575266 +0.974052 0.4282948 5.575266 +1.113885 0.4282948 5.575266 +1.27456 0.4282948 5.575266 +1.458117 0.4282948 5.575266 +1.667858 0.4282948 5.575266 +1.907556 0.4282948 5.575266 +2.181521 0.4282948 5.575266 +2.494678 0.4282948 5.575266 +2.852659 0.4282948 5.575266 +3.261896 0.4282948 5.575266 +3.729748 0.4282948 5.575266 +4.264621 0.4282948 5.575266 +4.876131 0.4282948 5.575266 +5.575266 0.4282948 5.575266 +6.374593 0.4282948 5.575266 +0 0.494694 5.575266 +0 0.494694 5.575266 +0 0.494694 5.575266 +0.002268731 0.494694 5.575266 +0.07076883 0.494694 5.575266 +0.1119241 0.494694 5.575266 +0.1475052 0.494694 5.575266 +0.1846606 0.494694 5.575266 +0.2245119 0.494694 5.575266 +0.2679612 0.494694 5.575266 +0.3158431 0.494694 5.575266 +0.3689944 0.494694 5.575266 +0.4282948 0.494694 5.575266 +0.494694 0.494694 5.575266 +0.5692344 0.494694 5.575266 +0.6530715 0.494694 5.575266 +0.7474945 0.494694 5.575266 +0.8539475 0.494694 5.575266 +0.974052 0.494694 5.575266 +1.113885 0.494694 5.575266 +1.27456 0.494694 5.575266 +1.458117 0.494694 5.575266 +1.667858 0.494694 5.575266 +1.907556 0.494694 5.575266 +2.181521 0.494694 5.575266 +2.494678 0.494694 5.575266 +2.852659 0.494694 5.575266 +3.261896 0.494694 5.575266 +3.729748 0.494694 5.575266 +4.264621 0.494694 5.575266 +4.876131 0.494694 5.575266 +5.575266 0.494694 5.575266 +6.374593 0.494694 5.575266 +0 0.5692344 5.575266 +0 0.5692344 5.575266 +0 0.5692344 5.575266 +0.002268731 0.5692344 5.575266 +0.07076883 0.5692344 5.575266 +0.1119241 0.5692344 5.575266 +0.1475052 0.5692344 5.575266 +0.1846606 0.5692344 5.575266 +0.2245119 0.5692344 5.575266 +0.2679612 0.5692344 5.575266 +0.3158431 0.5692344 5.575266 +0.3689944 0.5692344 5.575266 +0.4282948 0.5692344 5.575266 +0.494694 0.5692344 5.575266 +0.5692344 0.5692344 5.575266 +0.6530715 0.5692344 5.575266 +0.7474945 0.5692344 5.575266 +0.8539475 0.5692344 5.575266 +0.974052 0.5692344 5.575266 +1.113885 0.5692344 5.575266 +1.27456 0.5692344 5.575266 +1.458117 0.5692344 5.575266 +1.667858 0.5692344 5.575266 +1.907556 0.5692344 5.575266 +2.181521 0.5692344 5.575266 +2.494678 0.5692344 5.575266 +2.852659 0.5692344 5.575266 +3.261896 0.5692344 5.575266 +3.729748 0.5692344 5.575266 +4.264621 0.5692344 5.575266 +4.876131 0.5692344 5.575266 +5.575266 0.5692344 5.575266 +6.374593 0.5692344 5.575266 +0 0.6530715 5.575266 +0 0.6530715 5.575266 +0 0.6530715 5.575266 +0.002268731 0.6530715 5.575266 +0.07076883 0.6530715 5.575266 +0.1119241 0.6530715 5.575266 +0.1475052 0.6530715 5.575266 +0.1846606 0.6530715 5.575266 +0.2245119 0.6530715 5.575266 +0.2679612 0.6530715 5.575266 +0.3158431 0.6530715 5.575266 +0.3689944 0.6530715 5.575266 +0.4282948 0.6530715 5.575266 +0.494694 0.6530715 5.575266 +0.5692344 0.6530715 5.575266 +0.6530715 0.6530715 5.575266 +0.7474945 0.6530715 5.575266 +0.8539475 0.6530715 5.575266 +0.974052 0.6530715 5.575266 +1.113885 0.6530715 5.575266 +1.27456 0.6530715 5.575266 +1.458117 0.6530715 5.575266 +1.667858 0.6530715 5.575266 +1.907556 0.6530715 5.575266 +2.181521 0.6530715 5.575266 +2.494678 0.6530715 5.575266 +2.852659 0.6530715 5.575266 +3.261896 0.6530715 5.575266 +3.729748 0.6530715 5.575266 +4.264621 0.6530715 5.575266 +4.876131 0.6530715 5.575266 +5.575266 0.6530715 5.575266 +6.374593 0.6530715 5.575266 +0 0.7474945 5.575266 +0 0.7474945 5.575266 +0 0.7474945 5.575266 +0.002268731 0.7474945 5.575266 +0.07076883 0.7474945 5.575266 +0.1119241 0.7474945 5.575266 +0.1475052 0.7474945 5.575266 +0.1846606 0.7474945 5.575266 +0.2245119 0.7474945 5.575266 +0.2679612 0.7474945 5.575266 +0.3158431 0.7474945 5.575266 +0.3689944 0.7474945 5.575266 +0.4282948 0.7474945 5.575266 +0.494694 0.7474945 5.575266 +0.5692344 0.7474945 5.575266 +0.6530715 0.7474945 5.575266 +0.7474945 0.7474945 5.575266 +0.8539475 0.7474945 5.575266 +0.974052 0.7474945 5.575266 +1.113885 0.7474945 5.575266 +1.27456 0.7474945 5.575266 +1.458117 0.7474945 5.575266 +1.667858 0.7474945 5.575266 +1.907556 0.7474945 5.575266 +2.181521 0.7474945 5.575266 +2.494678 0.7474945 5.575266 +2.852659 0.7474945 5.575266 +3.261896 0.7474945 5.575266 +3.729748 0.7474945 5.575266 +4.264621 0.7474945 5.575266 +4.876131 0.7474945 5.575266 +5.575266 0.7474945 5.575266 +6.374593 0.7474945 5.575266 +0 0.8539475 5.575266 +0 0.8539475 5.575266 +0 0.8539475 5.575266 +0.002268731 0.8539475 5.575266 +0.07076883 0.8539475 5.575266 +0.1119241 0.8539475 5.575266 +0.1475052 0.8539475 5.575266 +0.1846606 0.8539475 5.575266 +0.2245119 0.8539475 5.575266 +0.2679612 0.8539475 5.575266 +0.3158431 0.8539475 5.575266 +0.3689944 0.8539475 5.575266 +0.4282948 0.8539475 5.575266 +0.494694 0.8539475 5.575266 +0.5692344 0.8539475 5.575266 +0.6530715 0.8539475 5.575266 +0.7474945 0.8539475 5.575266 +0.8539475 0.8539475 5.575266 +0.974052 0.8539475 5.575266 +1.113885 0.8539475 5.575266 +1.27456 0.8539475 5.575266 +1.458117 0.8539475 5.575266 +1.667858 0.8539475 5.575266 +1.907556 0.8539475 5.575266 +2.181521 0.8539475 5.575266 +2.494678 0.8539475 5.575266 +2.852659 0.8539475 5.575266 +3.261896 0.8539475 5.575266 +3.729748 0.8539475 5.575266 +4.264621 0.8539475 5.575266 +4.876131 0.8539475 5.575266 +5.575266 0.8539475 5.575266 +6.374593 0.8539475 5.575266 +0 0.974052 5.575266 +0 0.974052 5.575266 +0 0.974052 5.575266 +0.002268731 0.974052 5.575266 +0.07076883 0.974052 5.575266 +0.1119241 0.974052 5.575266 +0.1475052 0.974052 5.575266 +0.1846606 0.974052 5.575266 +0.2245119 0.974052 5.575266 +0.2679612 0.974052 5.575266 +0.3158431 0.974052 5.575266 +0.3689944 0.974052 5.575266 +0.4282948 0.974052 5.575266 +0.494694 0.974052 5.575266 +0.5692344 0.974052 5.575266 +0.6530715 0.974052 5.575266 +0.7474945 0.974052 5.575266 +0.8539475 0.974052 5.575266 +0.974052 0.974052 5.575266 +1.113885 0.974052 5.575266 +1.27456 0.974052 5.575266 +1.458117 0.974052 5.575266 +1.667858 0.974052 5.575266 +1.907556 0.974052 5.575266 +2.181521 0.974052 5.575266 +2.494678 0.974052 5.575266 +2.852659 0.974052 5.575266 +3.261896 0.974052 5.575266 +3.729748 0.974052 5.575266 +4.264621 0.974052 5.575266 +4.876131 0.974052 5.575266 +5.575266 0.974052 5.575266 +6.374593 0.974052 5.575266 +0 1.113885 5.575266 +0 1.113885 5.575266 +0 1.113885 5.575266 +0.002268731 1.113885 5.575266 +0.07076883 1.113885 5.575266 +0.1119241 1.113885 5.575266 +0.1475052 1.113885 5.575266 +0.1846606 1.113885 5.575266 +0.2245119 1.113885 5.575266 +0.2679612 1.113885 5.575266 +0.3158431 1.113885 5.575266 +0.3689944 1.113885 5.575266 +0.4282948 1.113885 5.575266 +0.494694 1.113885 5.575266 +0.5692344 1.113885 5.575266 +0.6530715 1.113885 5.575266 +0.7474945 1.113885 5.575266 +0.8539475 1.113885 5.575266 +0.974052 1.113885 5.575266 +1.113885 1.113885 5.575266 +1.27456 1.113885 5.575266 +1.458117 1.113885 5.575266 +1.667858 1.113885 5.575266 +1.907556 1.113885 5.575266 +2.181521 1.113885 5.575266 +2.494678 1.113885 5.575266 +2.852659 1.113885 5.575266 +3.261896 1.113885 5.575266 +3.729748 1.113885 5.575266 +4.264621 1.113885 5.575266 +4.876131 1.113885 5.575266 +5.575266 1.113885 5.575266 +6.374593 1.113885 5.575266 +0 1.27456 5.575266 +0 1.27456 5.575266 +0 1.27456 5.575266 +0.002268731 1.27456 5.575266 +0.07076883 1.27456 5.575266 +0.1119241 1.27456 5.575266 +0.1475052 1.27456 5.575266 +0.1846606 1.27456 5.575266 +0.2245119 1.27456 5.575266 +0.2679612 1.27456 5.575266 +0.3158431 1.27456 5.575266 +0.3689944 1.27456 5.575266 +0.4282948 1.27456 5.575266 +0.494694 1.27456 5.575266 +0.5692344 1.27456 5.575266 +0.6530715 1.27456 5.575266 +0.7474945 1.27456 5.575266 +0.8539475 1.27456 5.575266 +0.974052 1.27456 5.575266 +1.113885 1.27456 5.575266 +1.27456 1.27456 5.575266 +1.458117 1.27456 5.575266 +1.667858 1.27456 5.575266 +1.907556 1.27456 5.575266 +2.181521 1.27456 5.575266 +2.494678 1.27456 5.575266 +2.852659 1.27456 5.575266 +3.261896 1.27456 5.575266 +3.729748 1.27456 5.575266 +4.264621 1.27456 5.575266 +4.876131 1.27456 5.575266 +5.575266 1.27456 5.575266 +6.374593 1.27456 5.575266 +0 1.458117 5.575266 +0 1.458117 5.575266 +0 1.458117 5.575266 +0.002268731 1.458117 5.575266 +0.07076883 1.458117 5.575266 +0.1119241 1.458117 5.575266 +0.1475052 1.458117 5.575266 +0.1846606 1.458117 5.575266 +0.2245119 1.458117 5.575266 +0.2679612 1.458117 5.575266 +0.3158431 1.458117 5.575266 +0.3689944 1.458117 5.575266 +0.4282948 1.458117 5.575266 +0.494694 1.458117 5.575266 +0.5692344 1.458117 5.575266 +0.6530715 1.458117 5.575266 +0.7474945 1.458117 5.575266 +0.8539475 1.458117 5.575266 +0.974052 1.458117 5.575266 +1.113885 1.458117 5.575266 +1.27456 1.458117 5.575266 +1.458117 1.458117 5.575266 +1.667858 1.458117 5.575266 +1.907556 1.458117 5.575266 +2.181521 1.458117 5.575266 +2.494678 1.458117 5.575266 +2.852659 1.458117 5.575266 +3.261896 1.458117 5.575266 +3.729748 1.458117 5.575266 +4.264621 1.458117 5.575266 +4.876131 1.458117 5.575266 +5.575266 1.458117 5.575266 +6.374593 1.458117 5.575266 +0 1.667858 5.575266 +0 1.667858 5.575266 +0 1.667858 5.575266 +0.002268731 1.667858 5.575266 +0.07076883 1.667858 5.575266 +0.1119241 1.667858 5.575266 +0.1475052 1.667858 5.575266 +0.1846606 1.667858 5.575266 +0.2245119 1.667858 5.575266 +0.2679612 1.667858 5.575266 +0.3158431 1.667858 5.575266 +0.3689944 1.667858 5.575266 +0.4282948 1.667858 5.575266 +0.494694 1.667858 5.575266 +0.5692344 1.667858 5.575266 +0.6530715 1.667858 5.575266 +0.7474945 1.667858 5.575266 +0.8539475 1.667858 5.575266 +0.974052 1.667858 5.575266 +1.113885 1.667858 5.575266 +1.27456 1.667858 5.575266 +1.458117 1.667858 5.575266 +1.667858 1.667858 5.575266 +1.907556 1.667858 5.575266 +2.181521 1.667858 5.575266 +2.494678 1.667858 5.575266 +2.852659 1.667858 5.575266 +3.261896 1.667858 5.575266 +3.729748 1.667858 5.575266 +4.264621 1.667858 5.575266 +4.876131 1.667858 5.575266 +5.575266 1.667858 5.575266 +6.374593 1.667858 5.575266 +0 1.907556 5.575266 +0 1.907556 5.575266 +0 1.907556 5.575266 +0.002268731 1.907556 5.575266 +0.07076883 1.907556 5.575266 +0.1119241 1.907556 5.575266 +0.1475052 1.907556 5.575266 +0.1846606 1.907556 5.575266 +0.2245119 1.907556 5.575266 +0.2679612 1.907556 5.575266 +0.3158431 1.907556 5.575266 +0.3689944 1.907556 5.575266 +0.4282948 1.907556 5.575266 +0.494694 1.907556 5.575266 +0.5692344 1.907556 5.575266 +0.6530715 1.907556 5.575266 +0.7474945 1.907556 5.575266 +0.8539475 1.907556 5.575266 +0.974052 1.907556 5.575266 +1.113885 1.907556 5.575266 +1.27456 1.907556 5.575266 +1.458117 1.907556 5.575266 +1.667858 1.907556 5.575266 +1.907556 1.907556 5.575266 +2.181521 1.907556 5.575266 +2.494678 1.907556 5.575266 +2.852659 1.907556 5.575266 +3.261896 1.907556 5.575266 +3.729748 1.907556 5.575266 +4.264621 1.907556 5.575266 +4.876131 1.907556 5.575266 +5.575266 1.907556 5.575266 +6.374593 1.907556 5.575266 +0 2.181521 5.575266 +0 2.181521 5.575266 +0 2.181521 5.575266 +0.002268731 2.181521 5.575266 +0.07076883 2.181521 5.575266 +0.1119241 2.181521 5.575266 +0.1475052 2.181521 5.575266 +0.1846606 2.181521 5.575266 +0.2245119 2.181521 5.575266 +0.2679612 2.181521 5.575266 +0.3158431 2.181521 5.575266 +0.3689944 2.181521 5.575266 +0.4282948 2.181521 5.575266 +0.494694 2.181521 5.575266 +0.5692344 2.181521 5.575266 +0.6530715 2.181521 5.575266 +0.7474945 2.181521 5.575266 +0.8539475 2.181521 5.575266 +0.974052 2.181521 5.575266 +1.113885 2.181521 5.575266 +1.27456 2.181521 5.575266 +1.458117 2.181521 5.575266 +1.667858 2.181521 5.575266 +1.907556 2.181521 5.575266 +2.181521 2.181521 5.575266 +2.494678 2.181521 5.575266 +2.852659 2.181521 5.575266 +3.261896 2.181521 5.575266 +3.729748 2.181521 5.575266 +4.264621 2.181521 5.575266 +4.876131 2.181521 5.575266 +5.575266 2.181521 5.575266 +6.374593 2.181521 5.575266 +0 2.494678 5.575266 +0 2.494678 5.575266 +0 2.494678 5.575266 +0.002268731 2.494678 5.575266 +0.07076883 2.494678 5.575266 +0.1119241 2.494678 5.575266 +0.1475052 2.494678 5.575266 +0.1846606 2.494678 5.575266 +0.2245119 2.494678 5.575266 +0.2679612 2.494678 5.575266 +0.3158431 2.494678 5.575266 +0.3689944 2.494678 5.575266 +0.4282948 2.494678 5.575266 +0.494694 2.494678 5.575266 +0.5692344 2.494678 5.575266 +0.6530715 2.494678 5.575266 +0.7474945 2.494678 5.575266 +0.8539475 2.494678 5.575266 +0.974052 2.494678 5.575266 +1.113885 2.494678 5.575266 +1.27456 2.494678 5.575266 +1.458117 2.494678 5.575266 +1.667858 2.494678 5.575266 +1.907556 2.494678 5.575266 +2.181521 2.494678 5.575266 +2.494678 2.494678 5.575266 +2.852659 2.494678 5.575266 +3.261896 2.494678 5.575266 +3.729748 2.494678 5.575266 +4.264621 2.494678 5.575266 +4.876131 2.494678 5.575266 +5.575266 2.494678 5.575266 +6.374593 2.494678 5.575266 +0 2.852659 5.575266 +0 2.852659 5.575266 +0 2.852659 5.575266 +0.002268731 2.852659 5.575266 +0.07076883 2.852659 5.575266 +0.1119241 2.852659 5.575266 +0.1475052 2.852659 5.575266 +0.1846606 2.852659 5.575266 +0.2245119 2.852659 5.575266 +0.2679612 2.852659 5.575266 +0.3158431 2.852659 5.575266 +0.3689944 2.852659 5.575266 +0.4282948 2.852659 5.575266 +0.494694 2.852659 5.575266 +0.5692344 2.852659 5.575266 +0.6530715 2.852659 5.575266 +0.7474945 2.852659 5.575266 +0.8539475 2.852659 5.575266 +0.974052 2.852659 5.575266 +1.113885 2.852659 5.575266 +1.27456 2.852659 5.575266 +1.458117 2.852659 5.575266 +1.667858 2.852659 5.575266 +1.907556 2.852659 5.575266 +2.181521 2.852659 5.575266 +2.494678 2.852659 5.575266 +2.852659 2.852659 5.575266 +3.261896 2.852659 5.575266 +3.729748 2.852659 5.575266 +4.264621 2.852659 5.575266 +4.876131 2.852659 5.575266 +5.575266 2.852659 5.575266 +6.374593 2.852659 5.575266 +0 3.261896 5.575266 +0 3.261896 5.575266 +0 3.261896 5.575266 +0.002268731 3.261896 5.575266 +0.07076883 3.261896 5.575266 +0.1119241 3.261896 5.575266 +0.1475052 3.261896 5.575266 +0.1846606 3.261896 5.575266 +0.2245119 3.261896 5.575266 +0.2679612 3.261896 5.575266 +0.3158431 3.261896 5.575266 +0.3689944 3.261896 5.575266 +0.4282948 3.261896 5.575266 +0.494694 3.261896 5.575266 +0.5692344 3.261896 5.575266 +0.6530715 3.261896 5.575266 +0.7474945 3.261896 5.575266 +0.8539475 3.261896 5.575266 +0.974052 3.261896 5.575266 +1.113885 3.261896 5.575266 +1.27456 3.261896 5.575266 +1.458117 3.261896 5.575266 +1.667858 3.261896 5.575266 +1.907556 3.261896 5.575266 +2.181521 3.261896 5.575266 +2.494678 3.261896 5.575266 +2.852659 3.261896 5.575266 +3.261896 3.261896 5.575266 +3.729748 3.261896 5.575266 +4.264621 3.261896 5.575266 +4.876131 3.261896 5.575266 +5.575266 3.261896 5.575266 +6.374593 3.261896 5.575266 +0 3.729748 5.575266 +0 3.729748 5.575266 +0 3.729748 5.575266 +0.002268731 3.729748 5.575266 +0.07076883 3.729748 5.575266 +0.1119241 3.729748 5.575266 +0.1475052 3.729748 5.575266 +0.1846606 3.729748 5.575266 +0.2245119 3.729748 5.575266 +0.2679612 3.729748 5.575266 +0.3158431 3.729748 5.575266 +0.3689944 3.729748 5.575266 +0.4282948 3.729748 5.575266 +0.494694 3.729748 5.575266 +0.5692344 3.729748 5.575266 +0.6530715 3.729748 5.575266 +0.7474945 3.729748 5.575266 +0.8539475 3.729748 5.575266 +0.974052 3.729748 5.575266 +1.113885 3.729748 5.575266 +1.27456 3.729748 5.575266 +1.458117 3.729748 5.575266 +1.667858 3.729748 5.575266 +1.907556 3.729748 5.575266 +2.181521 3.729748 5.575266 +2.494678 3.729748 5.575266 +2.852659 3.729748 5.575266 +3.261896 3.729748 5.575266 +3.729748 3.729748 5.575266 +4.264621 3.729748 5.575266 +4.876131 3.729748 5.575266 +5.575266 3.729748 5.575266 +6.374593 3.729748 5.575266 +0 4.264621 5.575266 +0 4.264621 5.575266 +0 4.264621 5.575266 +0.002268731 4.264621 5.575266 +0.07076883 4.264621 5.575266 +0.1119241 4.264621 5.575266 +0.1475052 4.264621 5.575266 +0.1846606 4.264621 5.575266 +0.2245119 4.264621 5.575266 +0.2679612 4.264621 5.575266 +0.3158431 4.264621 5.575266 +0.3689944 4.264621 5.575266 +0.4282948 4.264621 5.575266 +0.494694 4.264621 5.575266 +0.5692344 4.264621 5.575266 +0.6530715 4.264621 5.575266 +0.7474945 4.264621 5.575266 +0.8539475 4.264621 5.575266 +0.974052 4.264621 5.575266 +1.113885 4.264621 5.575266 +1.27456 4.264621 5.575266 +1.458117 4.264621 5.575266 +1.667858 4.264621 5.575266 +1.907556 4.264621 5.575266 +2.181521 4.264621 5.575266 +2.494678 4.264621 5.575266 +2.852659 4.264621 5.575266 +3.261896 4.264621 5.575266 +3.729748 4.264621 5.575266 +4.264621 4.264621 5.575266 +4.876131 4.264621 5.575266 +5.575266 4.264621 5.575266 +6.374593 4.264621 5.575266 +0 4.876131 5.575266 +0 4.876131 5.575266 +0 4.876131 5.575266 +0.002268731 4.876131 5.575266 +0.07076883 4.876131 5.575266 +0.1119241 4.876131 5.575266 +0.1475052 4.876131 5.575266 +0.1846606 4.876131 5.575266 +0.2245119 4.876131 5.575266 +0.2679612 4.876131 5.575266 +0.3158431 4.876131 5.575266 +0.3689944 4.876131 5.575266 +0.4282948 4.876131 5.575266 +0.494694 4.876131 5.575266 +0.5692344 4.876131 5.575266 +0.6530715 4.876131 5.575266 +0.7474945 4.876131 5.575266 +0.8539475 4.876131 5.575266 +0.974052 4.876131 5.575266 +1.113885 4.876131 5.575266 +1.27456 4.876131 5.575266 +1.458117 4.876131 5.575266 +1.667858 4.876131 5.575266 +1.907556 4.876131 5.575266 +2.181521 4.876131 5.575266 +2.494678 4.876131 5.575266 +2.852659 4.876131 5.575266 +3.261896 4.876131 5.575266 +3.729748 4.876131 5.575266 +4.264621 4.876131 5.575266 +4.876131 4.876131 5.575266 +5.575266 4.876131 5.575266 +6.374593 4.876131 5.575266 +0 5.575266 5.575266 +0 5.575266 5.575266 +0 5.575266 5.575266 +0.002268731 5.575266 5.575266 +0.07076883 5.575266 5.575266 +0.1119241 5.575266 5.575266 +0.1475052 5.575266 5.575266 +0.1846606 5.575266 5.575266 +0.2245119 5.575266 5.575266 +0.2679612 5.575266 5.575266 +0.3158431 5.575266 5.575266 +0.3689944 5.575266 5.575266 +0.4282948 5.575266 5.575266 +0.494694 5.575266 5.575266 +0.5692344 5.575266 5.575266 +0.6530715 5.575266 5.575266 +0.7474945 5.575266 5.575266 +0.8539475 5.575266 5.575266 +0.974052 5.575266 5.575266 +1.113885 5.575266 5.575266 +1.27456 5.575266 5.575266 +1.458117 5.575266 5.575266 +1.667858 5.575266 5.575266 +1.907556 5.575266 5.575266 +2.181521 5.575266 5.575266 +2.494678 5.575266 5.575266 +2.852659 5.575266 5.575266 +3.261896 5.575266 5.575266 +3.729748 5.575266 5.575266 +4.264621 5.575266 5.575266 +4.876131 5.575266 5.575266 +5.575266 5.575266 5.575266 +6.374593 5.575266 5.575266 +0 6.374593 5.575266 +0 6.374593 5.575266 +0 6.374593 5.575266 +0.002268731 6.374593 5.575266 +0.07076883 6.374593 5.575266 +0.1119241 6.374593 5.575266 +0.1475052 6.374593 5.575266 +0.1846606 6.374593 5.575266 +0.2245119 6.374593 5.575266 +0.2679612 6.374593 5.575266 +0.3158431 6.374593 5.575266 +0.3689944 6.374593 5.575266 +0.4282948 6.374593 5.575266 +0.494694 6.374593 5.575266 +0.5692344 6.374593 5.575266 +0.6530715 6.374593 5.575266 +0.7474945 6.374593 5.575266 +0.8539475 6.374593 5.575266 +0.974052 6.374593 5.575266 +1.113885 6.374593 5.575266 +1.27456 6.374593 5.575266 +1.458117 6.374593 5.575266 +1.667858 6.374593 5.575266 +1.907556 6.374593 5.575266 +2.181521 6.374593 5.575266 +2.494678 6.374593 5.575266 +2.852659 6.374593 5.575266 +3.261896 6.374593 5.575266 +3.729748 6.374593 5.575266 +4.264621 6.374593 5.575266 +4.876131 6.374593 5.575266 +5.575266 6.374593 5.575266 +6.374593 6.374593 5.575266 +0 0 6.374593 +0 0 6.374593 +0 0 6.374593 +0.002268731 0 6.374593 +0.07076883 0 6.374593 +0.1119241 0 6.374593 +0.1475052 0 6.374593 +0.1846606 0 6.374593 +0.2245119 0 6.374593 +0.2679612 0 6.374593 +0.3158431 0 6.374593 +0.3689944 0 6.374593 +0.4282948 0 6.374593 +0.494694 0 6.374593 +0.5692344 0 6.374593 +0.6530715 0 6.374593 +0.7474945 0 6.374593 +0.8539475 0 6.374593 +0.974052 0 6.374593 +1.113885 0 6.374593 +1.27456 0 6.374593 +1.458117 0 6.374593 +1.667858 0 6.374593 +1.907556 0 6.374593 +2.181521 0 6.374593 +2.494678 0 6.374593 +2.852659 0 6.374593 +3.261896 0 6.374593 +3.729748 0 6.374593 +4.264621 0 6.374593 +4.876131 0 6.374593 +5.575266 0 6.374593 +6.374593 0 6.374593 +0 0 6.374593 +0 0 6.374593 +0 0 6.374593 +0.002268731 0 6.374593 +0.07076883 0 6.374593 +0.1119241 0 6.374593 +0.1475052 0 6.374593 +0.1846606 0 6.374593 +0.2245119 0 6.374593 +0.2679612 0 6.374593 +0.3158431 0 6.374593 +0.3689944 0 6.374593 +0.4282948 0 6.374593 +0.494694 0 6.374593 +0.5692344 0 6.374593 +0.6530715 0 6.374593 +0.7474945 0 6.374593 +0.8539475 0 6.374593 +0.974052 0 6.374593 +1.113885 0 6.374593 +1.27456 0 6.374593 +1.458117 0 6.374593 +1.667858 0 6.374593 +1.907556 0 6.374593 +2.181521 0 6.374593 +2.494678 0 6.374593 +2.852659 0 6.374593 +3.261896 0 6.374593 +3.729748 0 6.374593 +4.264621 0 6.374593 +4.876131 0 6.374593 +5.575266 0 6.374593 +6.374593 0 6.374593 +0 0 6.374593 +0 0 6.374593 +0 0 6.374593 +0.002268731 0 6.374593 +0.07076883 0 6.374593 +0.1119241 0 6.374593 +0.1475052 0 6.374593 +0.1846606 0 6.374593 +0.2245119 0 6.374593 +0.2679612 0 6.374593 +0.3158431 0 6.374593 +0.3689944 0 6.374593 +0.4282948 0 6.374593 +0.494694 0 6.374593 +0.5692344 0 6.374593 +0.6530715 0 6.374593 +0.7474945 0 6.374593 +0.8539475 0 6.374593 +0.974052 0 6.374593 +1.113885 0 6.374593 +1.27456 0 6.374593 +1.458117 0 6.374593 +1.667858 0 6.374593 +1.907556 0 6.374593 +2.181521 0 6.374593 +2.494678 0 6.374593 +2.852659 0 6.374593 +3.261896 0 6.374593 +3.729748 0 6.374593 +4.264621 0 6.374593 +4.876131 0 6.374593 +5.575266 0 6.374593 +6.374593 0 6.374593 +0 0.002268731 6.374593 +0 0.002268731 6.374593 +0 0.002268731 6.374593 +0.002268731 0.002268731 6.374593 +0.07076883 0.002268731 6.374593 +0.1119241 0.002268731 6.374593 +0.1475052 0.002268731 6.374593 +0.1846606 0.002268731 6.374593 +0.2245119 0.002268731 6.374593 +0.2679612 0.002268731 6.374593 +0.3158431 0.002268731 6.374593 +0.3689944 0.002268731 6.374593 +0.4282948 0.002268731 6.374593 +0.494694 0.002268731 6.374593 +0.5692344 0.002268731 6.374593 +0.6530715 0.002268731 6.374593 +0.7474945 0.002268731 6.374593 +0.8539475 0.002268731 6.374593 +0.974052 0.002268731 6.374593 +1.113885 0.002268731 6.374593 +1.27456 0.002268731 6.374593 +1.458117 0.002268731 6.374593 +1.667858 0.002268731 6.374593 +1.907556 0.002268731 6.374593 +2.181521 0.002268731 6.374593 +2.494678 0.002268731 6.374593 +2.852659 0.002268731 6.374593 +3.261896 0.002268731 6.374593 +3.729748 0.002268731 6.374593 +4.264621 0.002268731 6.374593 +4.876131 0.002268731 6.374593 +5.575266 0.002268731 6.374593 +6.374593 0.002268731 6.374593 +0 0.07076883 6.374593 +0 0.07076883 6.374593 +0 0.07076883 6.374593 +0.002268731 0.07076883 6.374593 +0.07076883 0.07076883 6.374593 +0.1119241 0.07076883 6.374593 +0.1475052 0.07076883 6.374593 +0.1846606 0.07076883 6.374593 +0.2245119 0.07076883 6.374593 +0.2679612 0.07076883 6.374593 +0.3158431 0.07076883 6.374593 +0.3689944 0.07076883 6.374593 +0.4282948 0.07076883 6.374593 +0.494694 0.07076883 6.374593 +0.5692344 0.07076883 6.374593 +0.6530715 0.07076883 6.374593 +0.7474945 0.07076883 6.374593 +0.8539475 0.07076883 6.374593 +0.974052 0.07076883 6.374593 +1.113885 0.07076883 6.374593 +1.27456 0.07076883 6.374593 +1.458117 0.07076883 6.374593 +1.667858 0.07076883 6.374593 +1.907556 0.07076883 6.374593 +2.181521 0.07076883 6.374593 +2.494678 0.07076883 6.374593 +2.852659 0.07076883 6.374593 +3.261896 0.07076883 6.374593 +3.729748 0.07076883 6.374593 +4.264621 0.07076883 6.374593 +4.876131 0.07076883 6.374593 +5.575266 0.07076883 6.374593 +6.374593 0.07076883 6.374593 +0 0.1119241 6.374593 +0 0.1119241 6.374593 +0 0.1119241 6.374593 +0.002268731 0.1119241 6.374593 +0.07076883 0.1119241 6.374593 +0.1119241 0.1119241 6.374593 +0.1475052 0.1119241 6.374593 +0.1846606 0.1119241 6.374593 +0.2245119 0.1119241 6.374593 +0.2679612 0.1119241 6.374593 +0.3158431 0.1119241 6.374593 +0.3689944 0.1119241 6.374593 +0.4282948 0.1119241 6.374593 +0.494694 0.1119241 6.374593 +0.5692344 0.1119241 6.374593 +0.6530715 0.1119241 6.374593 +0.7474945 0.1119241 6.374593 +0.8539475 0.1119241 6.374593 +0.974052 0.1119241 6.374593 +1.113885 0.1119241 6.374593 +1.27456 0.1119241 6.374593 +1.458117 0.1119241 6.374593 +1.667858 0.1119241 6.374593 +1.907556 0.1119241 6.374593 +2.181521 0.1119241 6.374593 +2.494678 0.1119241 6.374593 +2.852659 0.1119241 6.374593 +3.261896 0.1119241 6.374593 +3.729748 0.1119241 6.374593 +4.264621 0.1119241 6.374593 +4.876131 0.1119241 6.374593 +5.575266 0.1119241 6.374593 +6.374593 0.1119241 6.374593 +0 0.1475052 6.374593 +0 0.1475052 6.374593 +0 0.1475052 6.374593 +0.002268731 0.1475052 6.374593 +0.07076883 0.1475052 6.374593 +0.1119241 0.1475052 6.374593 +0.1475052 0.1475052 6.374593 +0.1846606 0.1475052 6.374593 +0.2245119 0.1475052 6.374593 +0.2679612 0.1475052 6.374593 +0.3158431 0.1475052 6.374593 +0.3689944 0.1475052 6.374593 +0.4282948 0.1475052 6.374593 +0.494694 0.1475052 6.374593 +0.5692344 0.1475052 6.374593 +0.6530715 0.1475052 6.374593 +0.7474945 0.1475052 6.374593 +0.8539475 0.1475052 6.374593 +0.974052 0.1475052 6.374593 +1.113885 0.1475052 6.374593 +1.27456 0.1475052 6.374593 +1.458117 0.1475052 6.374593 +1.667858 0.1475052 6.374593 +1.907556 0.1475052 6.374593 +2.181521 0.1475052 6.374593 +2.494678 0.1475052 6.374593 +2.852659 0.1475052 6.374593 +3.261896 0.1475052 6.374593 +3.729748 0.1475052 6.374593 +4.264621 0.1475052 6.374593 +4.876131 0.1475052 6.374593 +5.575266 0.1475052 6.374593 +6.374593 0.1475052 6.374593 +0 0.1846606 6.374593 +0 0.1846606 6.374593 +0 0.1846606 6.374593 +0.002268731 0.1846606 6.374593 +0.07076883 0.1846606 6.374593 +0.1119241 0.1846606 6.374593 +0.1475052 0.1846606 6.374593 +0.1846606 0.1846606 6.374593 +0.2245119 0.1846606 6.374593 +0.2679612 0.1846606 6.374593 +0.3158431 0.1846606 6.374593 +0.3689944 0.1846606 6.374593 +0.4282948 0.1846606 6.374593 +0.494694 0.1846606 6.374593 +0.5692344 0.1846606 6.374593 +0.6530715 0.1846606 6.374593 +0.7474945 0.1846606 6.374593 +0.8539475 0.1846606 6.374593 +0.974052 0.1846606 6.374593 +1.113885 0.1846606 6.374593 +1.27456 0.1846606 6.374593 +1.458117 0.1846606 6.374593 +1.667858 0.1846606 6.374593 +1.907556 0.1846606 6.374593 +2.181521 0.1846606 6.374593 +2.494678 0.1846606 6.374593 +2.852659 0.1846606 6.374593 +3.261896 0.1846606 6.374593 +3.729748 0.1846606 6.374593 +4.264621 0.1846606 6.374593 +4.876131 0.1846606 6.374593 +5.575266 0.1846606 6.374593 +6.374593 0.1846606 6.374593 +0 0.2245119 6.374593 +0 0.2245119 6.374593 +0 0.2245119 6.374593 +0.002268731 0.2245119 6.374593 +0.07076883 0.2245119 6.374593 +0.1119241 0.2245119 6.374593 +0.1475052 0.2245119 6.374593 +0.1846606 0.2245119 6.374593 +0.2245119 0.2245119 6.374593 +0.2679612 0.2245119 6.374593 +0.3158431 0.2245119 6.374593 +0.3689944 0.2245119 6.374593 +0.4282948 0.2245119 6.374593 +0.494694 0.2245119 6.374593 +0.5692344 0.2245119 6.374593 +0.6530715 0.2245119 6.374593 +0.7474945 0.2245119 6.374593 +0.8539475 0.2245119 6.374593 +0.974052 0.2245119 6.374593 +1.113885 0.2245119 6.374593 +1.27456 0.2245119 6.374593 +1.458117 0.2245119 6.374593 +1.667858 0.2245119 6.374593 +1.907556 0.2245119 6.374593 +2.181521 0.2245119 6.374593 +2.494678 0.2245119 6.374593 +2.852659 0.2245119 6.374593 +3.261896 0.2245119 6.374593 +3.729748 0.2245119 6.374593 +4.264621 0.2245119 6.374593 +4.876131 0.2245119 6.374593 +5.575266 0.2245119 6.374593 +6.374593 0.2245119 6.374593 +0 0.2679612 6.374593 +0 0.2679612 6.374593 +0 0.2679612 6.374593 +0.002268731 0.2679612 6.374593 +0.07076883 0.2679612 6.374593 +0.1119241 0.2679612 6.374593 +0.1475052 0.2679612 6.374593 +0.1846606 0.2679612 6.374593 +0.2245119 0.2679612 6.374593 +0.2679612 0.2679612 6.374593 +0.3158431 0.2679612 6.374593 +0.3689944 0.2679612 6.374593 +0.4282948 0.2679612 6.374593 +0.494694 0.2679612 6.374593 +0.5692344 0.2679612 6.374593 +0.6530715 0.2679612 6.374593 +0.7474945 0.2679612 6.374593 +0.8539475 0.2679612 6.374593 +0.974052 0.2679612 6.374593 +1.113885 0.2679612 6.374593 +1.27456 0.2679612 6.374593 +1.458117 0.2679612 6.374593 +1.667858 0.2679612 6.374593 +1.907556 0.2679612 6.374593 +2.181521 0.2679612 6.374593 +2.494678 0.2679612 6.374593 +2.852659 0.2679612 6.374593 +3.261896 0.2679612 6.374593 +3.729748 0.2679612 6.374593 +4.264621 0.2679612 6.374593 +4.876131 0.2679612 6.374593 +5.575266 0.2679612 6.374593 +6.374593 0.2679612 6.374593 +0 0.3158431 6.374593 +0 0.3158431 6.374593 +0 0.3158431 6.374593 +0.002268731 0.3158431 6.374593 +0.07076883 0.3158431 6.374593 +0.1119241 0.3158431 6.374593 +0.1475052 0.3158431 6.374593 +0.1846606 0.3158431 6.374593 +0.2245119 0.3158431 6.374593 +0.2679612 0.3158431 6.374593 +0.3158431 0.3158431 6.374593 +0.3689944 0.3158431 6.374593 +0.4282948 0.3158431 6.374593 +0.494694 0.3158431 6.374593 +0.5692344 0.3158431 6.374593 +0.6530715 0.3158431 6.374593 +0.7474945 0.3158431 6.374593 +0.8539475 0.3158431 6.374593 +0.974052 0.3158431 6.374593 +1.113885 0.3158431 6.374593 +1.27456 0.3158431 6.374593 +1.458117 0.3158431 6.374593 +1.667858 0.3158431 6.374593 +1.907556 0.3158431 6.374593 +2.181521 0.3158431 6.374593 +2.494678 0.3158431 6.374593 +2.852659 0.3158431 6.374593 +3.261896 0.3158431 6.374593 +3.729748 0.3158431 6.374593 +4.264621 0.3158431 6.374593 +4.876131 0.3158431 6.374593 +5.575266 0.3158431 6.374593 +6.374593 0.3158431 6.374593 +0 0.3689944 6.374593 +0 0.3689944 6.374593 +0 0.3689944 6.374593 +0.002268731 0.3689944 6.374593 +0.07076883 0.3689944 6.374593 +0.1119241 0.3689944 6.374593 +0.1475052 0.3689944 6.374593 +0.1846606 0.3689944 6.374593 +0.2245119 0.3689944 6.374593 +0.2679612 0.3689944 6.374593 +0.3158431 0.3689944 6.374593 +0.3689944 0.3689944 6.374593 +0.4282948 0.3689944 6.374593 +0.494694 0.3689944 6.374593 +0.5692344 0.3689944 6.374593 +0.6530715 0.3689944 6.374593 +0.7474945 0.3689944 6.374593 +0.8539475 0.3689944 6.374593 +0.974052 0.3689944 6.374593 +1.113885 0.3689944 6.374593 +1.27456 0.3689944 6.374593 +1.458117 0.3689944 6.374593 +1.667858 0.3689944 6.374593 +1.907556 0.3689944 6.374593 +2.181521 0.3689944 6.374593 +2.494678 0.3689944 6.374593 +2.852659 0.3689944 6.374593 +3.261896 0.3689944 6.374593 +3.729748 0.3689944 6.374593 +4.264621 0.3689944 6.374593 +4.876131 0.3689944 6.374593 +5.575266 0.3689944 6.374593 +6.374593 0.3689944 6.374593 +0 0.4282948 6.374593 +0 0.4282948 6.374593 +0 0.4282948 6.374593 +0.002268731 0.4282948 6.374593 +0.07076883 0.4282948 6.374593 +0.1119241 0.4282948 6.374593 +0.1475052 0.4282948 6.374593 +0.1846606 0.4282948 6.374593 +0.2245119 0.4282948 6.374593 +0.2679612 0.4282948 6.374593 +0.3158431 0.4282948 6.374593 +0.3689944 0.4282948 6.374593 +0.4282948 0.4282948 6.374593 +0.494694 0.4282948 6.374593 +0.5692344 0.4282948 6.374593 +0.6530715 0.4282948 6.374593 +0.7474945 0.4282948 6.374593 +0.8539475 0.4282948 6.374593 +0.974052 0.4282948 6.374593 +1.113885 0.4282948 6.374593 +1.27456 0.4282948 6.374593 +1.458117 0.4282948 6.374593 +1.667858 0.4282948 6.374593 +1.907556 0.4282948 6.374593 +2.181521 0.4282948 6.374593 +2.494678 0.4282948 6.374593 +2.852659 0.4282948 6.374593 +3.261896 0.4282948 6.374593 +3.729748 0.4282948 6.374593 +4.264621 0.4282948 6.374593 +4.876131 0.4282948 6.374593 +5.575266 0.4282948 6.374593 +6.374593 0.4282948 6.374593 +0 0.494694 6.374593 +0 0.494694 6.374593 +0 0.494694 6.374593 +0.002268731 0.494694 6.374593 +0.07076883 0.494694 6.374593 +0.1119241 0.494694 6.374593 +0.1475052 0.494694 6.374593 +0.1846606 0.494694 6.374593 +0.2245119 0.494694 6.374593 +0.2679612 0.494694 6.374593 +0.3158431 0.494694 6.374593 +0.3689944 0.494694 6.374593 +0.4282948 0.494694 6.374593 +0.494694 0.494694 6.374593 +0.5692344 0.494694 6.374593 +0.6530715 0.494694 6.374593 +0.7474945 0.494694 6.374593 +0.8539475 0.494694 6.374593 +0.974052 0.494694 6.374593 +1.113885 0.494694 6.374593 +1.27456 0.494694 6.374593 +1.458117 0.494694 6.374593 +1.667858 0.494694 6.374593 +1.907556 0.494694 6.374593 +2.181521 0.494694 6.374593 +2.494678 0.494694 6.374593 +2.852659 0.494694 6.374593 +3.261896 0.494694 6.374593 +3.729748 0.494694 6.374593 +4.264621 0.494694 6.374593 +4.876131 0.494694 6.374593 +5.575266 0.494694 6.374593 +6.374593 0.494694 6.374593 +0 0.5692344 6.374593 +0 0.5692344 6.374593 +0 0.5692344 6.374593 +0.002268731 0.5692344 6.374593 +0.07076883 0.5692344 6.374593 +0.1119241 0.5692344 6.374593 +0.1475052 0.5692344 6.374593 +0.1846606 0.5692344 6.374593 +0.2245119 0.5692344 6.374593 +0.2679612 0.5692344 6.374593 +0.3158431 0.5692344 6.374593 +0.3689944 0.5692344 6.374593 +0.4282948 0.5692344 6.374593 +0.494694 0.5692344 6.374593 +0.5692344 0.5692344 6.374593 +0.6530715 0.5692344 6.374593 +0.7474945 0.5692344 6.374593 +0.8539475 0.5692344 6.374593 +0.974052 0.5692344 6.374593 +1.113885 0.5692344 6.374593 +1.27456 0.5692344 6.374593 +1.458117 0.5692344 6.374593 +1.667858 0.5692344 6.374593 +1.907556 0.5692344 6.374593 +2.181521 0.5692344 6.374593 +2.494678 0.5692344 6.374593 +2.852659 0.5692344 6.374593 +3.261896 0.5692344 6.374593 +3.729748 0.5692344 6.374593 +4.264621 0.5692344 6.374593 +4.876131 0.5692344 6.374593 +5.575266 0.5692344 6.374593 +6.374593 0.5692344 6.374593 +0 0.6530715 6.374593 +0 0.6530715 6.374593 +0 0.6530715 6.374593 +0.002268731 0.6530715 6.374593 +0.07076883 0.6530715 6.374593 +0.1119241 0.6530715 6.374593 +0.1475052 0.6530715 6.374593 +0.1846606 0.6530715 6.374593 +0.2245119 0.6530715 6.374593 +0.2679612 0.6530715 6.374593 +0.3158431 0.6530715 6.374593 +0.3689944 0.6530715 6.374593 +0.4282948 0.6530715 6.374593 +0.494694 0.6530715 6.374593 +0.5692344 0.6530715 6.374593 +0.6530715 0.6530715 6.374593 +0.7474945 0.6530715 6.374593 +0.8539475 0.6530715 6.374593 +0.974052 0.6530715 6.374593 +1.113885 0.6530715 6.374593 +1.27456 0.6530715 6.374593 +1.458117 0.6530715 6.374593 +1.667858 0.6530715 6.374593 +1.907556 0.6530715 6.374593 +2.181521 0.6530715 6.374593 +2.494678 0.6530715 6.374593 +2.852659 0.6530715 6.374593 +3.261896 0.6530715 6.374593 +3.729748 0.6530715 6.374593 +4.264621 0.6530715 6.374593 +4.876131 0.6530715 6.374593 +5.575266 0.6530715 6.374593 +6.374593 0.6530715 6.374593 +0 0.7474945 6.374593 +0 0.7474945 6.374593 +0 0.7474945 6.374593 +0.002268731 0.7474945 6.374593 +0.07076883 0.7474945 6.374593 +0.1119241 0.7474945 6.374593 +0.1475052 0.7474945 6.374593 +0.1846606 0.7474945 6.374593 +0.2245119 0.7474945 6.374593 +0.2679612 0.7474945 6.374593 +0.3158431 0.7474945 6.374593 +0.3689944 0.7474945 6.374593 +0.4282948 0.7474945 6.374593 +0.494694 0.7474945 6.374593 +0.5692344 0.7474945 6.374593 +0.6530715 0.7474945 6.374593 +0.7474945 0.7474945 6.374593 +0.8539475 0.7474945 6.374593 +0.974052 0.7474945 6.374593 +1.113885 0.7474945 6.374593 +1.27456 0.7474945 6.374593 +1.458117 0.7474945 6.374593 +1.667858 0.7474945 6.374593 +1.907556 0.7474945 6.374593 +2.181521 0.7474945 6.374593 +2.494678 0.7474945 6.374593 +2.852659 0.7474945 6.374593 +3.261896 0.7474945 6.374593 +3.729748 0.7474945 6.374593 +4.264621 0.7474945 6.374593 +4.876131 0.7474945 6.374593 +5.575266 0.7474945 6.374593 +6.374593 0.7474945 6.374593 +0 0.8539475 6.374593 +0 0.8539475 6.374593 +0 0.8539475 6.374593 +0.002268731 0.8539475 6.374593 +0.07076883 0.8539475 6.374593 +0.1119241 0.8539475 6.374593 +0.1475052 0.8539475 6.374593 +0.1846606 0.8539475 6.374593 +0.2245119 0.8539475 6.374593 +0.2679612 0.8539475 6.374593 +0.3158431 0.8539475 6.374593 +0.3689944 0.8539475 6.374593 +0.4282948 0.8539475 6.374593 +0.494694 0.8539475 6.374593 +0.5692344 0.8539475 6.374593 +0.6530715 0.8539475 6.374593 +0.7474945 0.8539475 6.374593 +0.8539475 0.8539475 6.374593 +0.974052 0.8539475 6.374593 +1.113885 0.8539475 6.374593 +1.27456 0.8539475 6.374593 +1.458117 0.8539475 6.374593 +1.667858 0.8539475 6.374593 +1.907556 0.8539475 6.374593 +2.181521 0.8539475 6.374593 +2.494678 0.8539475 6.374593 +2.852659 0.8539475 6.374593 +3.261896 0.8539475 6.374593 +3.729748 0.8539475 6.374593 +4.264621 0.8539475 6.374593 +4.876131 0.8539475 6.374593 +5.575266 0.8539475 6.374593 +6.374593 0.8539475 6.374593 +0 0.974052 6.374593 +0 0.974052 6.374593 +0 0.974052 6.374593 +0.002268731 0.974052 6.374593 +0.07076883 0.974052 6.374593 +0.1119241 0.974052 6.374593 +0.1475052 0.974052 6.374593 +0.1846606 0.974052 6.374593 +0.2245119 0.974052 6.374593 +0.2679612 0.974052 6.374593 +0.3158431 0.974052 6.374593 +0.3689944 0.974052 6.374593 +0.4282948 0.974052 6.374593 +0.494694 0.974052 6.374593 +0.5692344 0.974052 6.374593 +0.6530715 0.974052 6.374593 +0.7474945 0.974052 6.374593 +0.8539475 0.974052 6.374593 +0.974052 0.974052 6.374593 +1.113885 0.974052 6.374593 +1.27456 0.974052 6.374593 +1.458117 0.974052 6.374593 +1.667858 0.974052 6.374593 +1.907556 0.974052 6.374593 +2.181521 0.974052 6.374593 +2.494678 0.974052 6.374593 +2.852659 0.974052 6.374593 +3.261896 0.974052 6.374593 +3.729748 0.974052 6.374593 +4.264621 0.974052 6.374593 +4.876131 0.974052 6.374593 +5.575266 0.974052 6.374593 +6.374593 0.974052 6.374593 +0 1.113885 6.374593 +0 1.113885 6.374593 +0 1.113885 6.374593 +0.002268731 1.113885 6.374593 +0.07076883 1.113885 6.374593 +0.1119241 1.113885 6.374593 +0.1475052 1.113885 6.374593 +0.1846606 1.113885 6.374593 +0.2245119 1.113885 6.374593 +0.2679612 1.113885 6.374593 +0.3158431 1.113885 6.374593 +0.3689944 1.113885 6.374593 +0.4282948 1.113885 6.374593 +0.494694 1.113885 6.374593 +0.5692344 1.113885 6.374593 +0.6530715 1.113885 6.374593 +0.7474945 1.113885 6.374593 +0.8539475 1.113885 6.374593 +0.974052 1.113885 6.374593 +1.113885 1.113885 6.374593 +1.27456 1.113885 6.374593 +1.458117 1.113885 6.374593 +1.667858 1.113885 6.374593 +1.907556 1.113885 6.374593 +2.181521 1.113885 6.374593 +2.494678 1.113885 6.374593 +2.852659 1.113885 6.374593 +3.261896 1.113885 6.374593 +3.729748 1.113885 6.374593 +4.264621 1.113885 6.374593 +4.876131 1.113885 6.374593 +5.575266 1.113885 6.374593 +6.374593 1.113885 6.374593 +0 1.27456 6.374593 +0 1.27456 6.374593 +0 1.27456 6.374593 +0.002268731 1.27456 6.374593 +0.07076883 1.27456 6.374593 +0.1119241 1.27456 6.374593 +0.1475052 1.27456 6.374593 +0.1846606 1.27456 6.374593 +0.2245119 1.27456 6.374593 +0.2679612 1.27456 6.374593 +0.3158431 1.27456 6.374593 +0.3689944 1.27456 6.374593 +0.4282948 1.27456 6.374593 +0.494694 1.27456 6.374593 +0.5692344 1.27456 6.374593 +0.6530715 1.27456 6.374593 +0.7474945 1.27456 6.374593 +0.8539475 1.27456 6.374593 +0.974052 1.27456 6.374593 +1.113885 1.27456 6.374593 +1.27456 1.27456 6.374593 +1.458117 1.27456 6.374593 +1.667858 1.27456 6.374593 +1.907556 1.27456 6.374593 +2.181521 1.27456 6.374593 +2.494678 1.27456 6.374593 +2.852659 1.27456 6.374593 +3.261896 1.27456 6.374593 +3.729748 1.27456 6.374593 +4.264621 1.27456 6.374593 +4.876131 1.27456 6.374593 +5.575266 1.27456 6.374593 +6.374593 1.27456 6.374593 +0 1.458117 6.374593 +0 1.458117 6.374593 +0 1.458117 6.374593 +0.002268731 1.458117 6.374593 +0.07076883 1.458117 6.374593 +0.1119241 1.458117 6.374593 +0.1475052 1.458117 6.374593 +0.1846606 1.458117 6.374593 +0.2245119 1.458117 6.374593 +0.2679612 1.458117 6.374593 +0.3158431 1.458117 6.374593 +0.3689944 1.458117 6.374593 +0.4282948 1.458117 6.374593 +0.494694 1.458117 6.374593 +0.5692344 1.458117 6.374593 +0.6530715 1.458117 6.374593 +0.7474945 1.458117 6.374593 +0.8539475 1.458117 6.374593 +0.974052 1.458117 6.374593 +1.113885 1.458117 6.374593 +1.27456 1.458117 6.374593 +1.458117 1.458117 6.374593 +1.667858 1.458117 6.374593 +1.907556 1.458117 6.374593 +2.181521 1.458117 6.374593 +2.494678 1.458117 6.374593 +2.852659 1.458117 6.374593 +3.261896 1.458117 6.374593 +3.729748 1.458117 6.374593 +4.264621 1.458117 6.374593 +4.876131 1.458117 6.374593 +5.575266 1.458117 6.374593 +6.374593 1.458117 6.374593 +0 1.667858 6.374593 +0 1.667858 6.374593 +0 1.667858 6.374593 +0.002268731 1.667858 6.374593 +0.07076883 1.667858 6.374593 +0.1119241 1.667858 6.374593 +0.1475052 1.667858 6.374593 +0.1846606 1.667858 6.374593 +0.2245119 1.667858 6.374593 +0.2679612 1.667858 6.374593 +0.3158431 1.667858 6.374593 +0.3689944 1.667858 6.374593 +0.4282948 1.667858 6.374593 +0.494694 1.667858 6.374593 +0.5692344 1.667858 6.374593 +0.6530715 1.667858 6.374593 +0.7474945 1.667858 6.374593 +0.8539475 1.667858 6.374593 +0.974052 1.667858 6.374593 +1.113885 1.667858 6.374593 +1.27456 1.667858 6.374593 +1.458117 1.667858 6.374593 +1.667858 1.667858 6.374593 +1.907556 1.667858 6.374593 +2.181521 1.667858 6.374593 +2.494678 1.667858 6.374593 +2.852659 1.667858 6.374593 +3.261896 1.667858 6.374593 +3.729748 1.667858 6.374593 +4.264621 1.667858 6.374593 +4.876131 1.667858 6.374593 +5.575266 1.667858 6.374593 +6.374593 1.667858 6.374593 +0 1.907556 6.374593 +0 1.907556 6.374593 +0 1.907556 6.374593 +0.002268731 1.907556 6.374593 +0.07076883 1.907556 6.374593 +0.1119241 1.907556 6.374593 +0.1475052 1.907556 6.374593 +0.1846606 1.907556 6.374593 +0.2245119 1.907556 6.374593 +0.2679612 1.907556 6.374593 +0.3158431 1.907556 6.374593 +0.3689944 1.907556 6.374593 +0.4282948 1.907556 6.374593 +0.494694 1.907556 6.374593 +0.5692344 1.907556 6.374593 +0.6530715 1.907556 6.374593 +0.7474945 1.907556 6.374593 +0.8539475 1.907556 6.374593 +0.974052 1.907556 6.374593 +1.113885 1.907556 6.374593 +1.27456 1.907556 6.374593 +1.458117 1.907556 6.374593 +1.667858 1.907556 6.374593 +1.907556 1.907556 6.374593 +2.181521 1.907556 6.374593 +2.494678 1.907556 6.374593 +2.852659 1.907556 6.374593 +3.261896 1.907556 6.374593 +3.729748 1.907556 6.374593 +4.264621 1.907556 6.374593 +4.876131 1.907556 6.374593 +5.575266 1.907556 6.374593 +6.374593 1.907556 6.374593 +0 2.181521 6.374593 +0 2.181521 6.374593 +0 2.181521 6.374593 +0.002268731 2.181521 6.374593 +0.07076883 2.181521 6.374593 +0.1119241 2.181521 6.374593 +0.1475052 2.181521 6.374593 +0.1846606 2.181521 6.374593 +0.2245119 2.181521 6.374593 +0.2679612 2.181521 6.374593 +0.3158431 2.181521 6.374593 +0.3689944 2.181521 6.374593 +0.4282948 2.181521 6.374593 +0.494694 2.181521 6.374593 +0.5692344 2.181521 6.374593 +0.6530715 2.181521 6.374593 +0.7474945 2.181521 6.374593 +0.8539475 2.181521 6.374593 +0.974052 2.181521 6.374593 +1.113885 2.181521 6.374593 +1.27456 2.181521 6.374593 +1.458117 2.181521 6.374593 +1.667858 2.181521 6.374593 +1.907556 2.181521 6.374593 +2.181521 2.181521 6.374593 +2.494678 2.181521 6.374593 +2.852659 2.181521 6.374593 +3.261896 2.181521 6.374593 +3.729748 2.181521 6.374593 +4.264621 2.181521 6.374593 +4.876131 2.181521 6.374593 +5.575266 2.181521 6.374593 +6.374593 2.181521 6.374593 +0 2.494678 6.374593 +0 2.494678 6.374593 +0 2.494678 6.374593 +0.002268731 2.494678 6.374593 +0.07076883 2.494678 6.374593 +0.1119241 2.494678 6.374593 +0.1475052 2.494678 6.374593 +0.1846606 2.494678 6.374593 +0.2245119 2.494678 6.374593 +0.2679612 2.494678 6.374593 +0.3158431 2.494678 6.374593 +0.3689944 2.494678 6.374593 +0.4282948 2.494678 6.374593 +0.494694 2.494678 6.374593 +0.5692344 2.494678 6.374593 +0.6530715 2.494678 6.374593 +0.7474945 2.494678 6.374593 +0.8539475 2.494678 6.374593 +0.974052 2.494678 6.374593 +1.113885 2.494678 6.374593 +1.27456 2.494678 6.374593 +1.458117 2.494678 6.374593 +1.667858 2.494678 6.374593 +1.907556 2.494678 6.374593 +2.181521 2.494678 6.374593 +2.494678 2.494678 6.374593 +2.852659 2.494678 6.374593 +3.261896 2.494678 6.374593 +3.729748 2.494678 6.374593 +4.264621 2.494678 6.374593 +4.876131 2.494678 6.374593 +5.575266 2.494678 6.374593 +6.374593 2.494678 6.374593 +0 2.852659 6.374593 +0 2.852659 6.374593 +0 2.852659 6.374593 +0.002268731 2.852659 6.374593 +0.07076883 2.852659 6.374593 +0.1119241 2.852659 6.374593 +0.1475052 2.852659 6.374593 +0.1846606 2.852659 6.374593 +0.2245119 2.852659 6.374593 +0.2679612 2.852659 6.374593 +0.3158431 2.852659 6.374593 +0.3689944 2.852659 6.374593 +0.4282948 2.852659 6.374593 +0.494694 2.852659 6.374593 +0.5692344 2.852659 6.374593 +0.6530715 2.852659 6.374593 +0.7474945 2.852659 6.374593 +0.8539475 2.852659 6.374593 +0.974052 2.852659 6.374593 +1.113885 2.852659 6.374593 +1.27456 2.852659 6.374593 +1.458117 2.852659 6.374593 +1.667858 2.852659 6.374593 +1.907556 2.852659 6.374593 +2.181521 2.852659 6.374593 +2.494678 2.852659 6.374593 +2.852659 2.852659 6.374593 +3.261896 2.852659 6.374593 +3.729748 2.852659 6.374593 +4.264621 2.852659 6.374593 +4.876131 2.852659 6.374593 +5.575266 2.852659 6.374593 +6.374593 2.852659 6.374593 +0 3.261896 6.374593 +0 3.261896 6.374593 +0 3.261896 6.374593 +0.002268731 3.261896 6.374593 +0.07076883 3.261896 6.374593 +0.1119241 3.261896 6.374593 +0.1475052 3.261896 6.374593 +0.1846606 3.261896 6.374593 +0.2245119 3.261896 6.374593 +0.2679612 3.261896 6.374593 +0.3158431 3.261896 6.374593 +0.3689944 3.261896 6.374593 +0.4282948 3.261896 6.374593 +0.494694 3.261896 6.374593 +0.5692344 3.261896 6.374593 +0.6530715 3.261896 6.374593 +0.7474945 3.261896 6.374593 +0.8539475 3.261896 6.374593 +0.974052 3.261896 6.374593 +1.113885 3.261896 6.374593 +1.27456 3.261896 6.374593 +1.458117 3.261896 6.374593 +1.667858 3.261896 6.374593 +1.907556 3.261896 6.374593 +2.181521 3.261896 6.374593 +2.494678 3.261896 6.374593 +2.852659 3.261896 6.374593 +3.261896 3.261896 6.374593 +3.729748 3.261896 6.374593 +4.264621 3.261896 6.374593 +4.876131 3.261896 6.374593 +5.575266 3.261896 6.374593 +6.374593 3.261896 6.374593 +0 3.729748 6.374593 +0 3.729748 6.374593 +0 3.729748 6.374593 +0.002268731 3.729748 6.374593 +0.07076883 3.729748 6.374593 +0.1119241 3.729748 6.374593 +0.1475052 3.729748 6.374593 +0.1846606 3.729748 6.374593 +0.2245119 3.729748 6.374593 +0.2679612 3.729748 6.374593 +0.3158431 3.729748 6.374593 +0.3689944 3.729748 6.374593 +0.4282948 3.729748 6.374593 +0.494694 3.729748 6.374593 +0.5692344 3.729748 6.374593 +0.6530715 3.729748 6.374593 +0.7474945 3.729748 6.374593 +0.8539475 3.729748 6.374593 +0.974052 3.729748 6.374593 +1.113885 3.729748 6.374593 +1.27456 3.729748 6.374593 +1.458117 3.729748 6.374593 +1.667858 3.729748 6.374593 +1.907556 3.729748 6.374593 +2.181521 3.729748 6.374593 +2.494678 3.729748 6.374593 +2.852659 3.729748 6.374593 +3.261896 3.729748 6.374593 +3.729748 3.729748 6.374593 +4.264621 3.729748 6.374593 +4.876131 3.729748 6.374593 +5.575266 3.729748 6.374593 +6.374593 3.729748 6.374593 +0 4.264621 6.374593 +0 4.264621 6.374593 +0 4.264621 6.374593 +0.002268731 4.264621 6.374593 +0.07076883 4.264621 6.374593 +0.1119241 4.264621 6.374593 +0.1475052 4.264621 6.374593 +0.1846606 4.264621 6.374593 +0.2245119 4.264621 6.374593 +0.2679612 4.264621 6.374593 +0.3158431 4.264621 6.374593 +0.3689944 4.264621 6.374593 +0.4282948 4.264621 6.374593 +0.494694 4.264621 6.374593 +0.5692344 4.264621 6.374593 +0.6530715 4.264621 6.374593 +0.7474945 4.264621 6.374593 +0.8539475 4.264621 6.374593 +0.974052 4.264621 6.374593 +1.113885 4.264621 6.374593 +1.27456 4.264621 6.374593 +1.458117 4.264621 6.374593 +1.667858 4.264621 6.374593 +1.907556 4.264621 6.374593 +2.181521 4.264621 6.374593 +2.494678 4.264621 6.374593 +2.852659 4.264621 6.374593 +3.261896 4.264621 6.374593 +3.729748 4.264621 6.374593 +4.264621 4.264621 6.374593 +4.876131 4.264621 6.374593 +5.575266 4.264621 6.374593 +6.374593 4.264621 6.374593 +0 4.876131 6.374593 +0 4.876131 6.374593 +0 4.876131 6.374593 +0.002268731 4.876131 6.374593 +0.07076883 4.876131 6.374593 +0.1119241 4.876131 6.374593 +0.1475052 4.876131 6.374593 +0.1846606 4.876131 6.374593 +0.2245119 4.876131 6.374593 +0.2679612 4.876131 6.374593 +0.3158431 4.876131 6.374593 +0.3689944 4.876131 6.374593 +0.4282948 4.876131 6.374593 +0.494694 4.876131 6.374593 +0.5692344 4.876131 6.374593 +0.6530715 4.876131 6.374593 +0.7474945 4.876131 6.374593 +0.8539475 4.876131 6.374593 +0.974052 4.876131 6.374593 +1.113885 4.876131 6.374593 +1.27456 4.876131 6.374593 +1.458117 4.876131 6.374593 +1.667858 4.876131 6.374593 +1.907556 4.876131 6.374593 +2.181521 4.876131 6.374593 +2.494678 4.876131 6.374593 +2.852659 4.876131 6.374593 +3.261896 4.876131 6.374593 +3.729748 4.876131 6.374593 +4.264621 4.876131 6.374593 +4.876131 4.876131 6.374593 +5.575266 4.876131 6.374593 +6.374593 4.876131 6.374593 +0 5.575266 6.374593 +0 5.575266 6.374593 +0 5.575266 6.374593 +0.002268731 5.575266 6.374593 +0.07076883 5.575266 6.374593 +0.1119241 5.575266 6.374593 +0.1475052 5.575266 6.374593 +0.1846606 5.575266 6.374593 +0.2245119 5.575266 6.374593 +0.2679612 5.575266 6.374593 +0.3158431 5.575266 6.374593 +0.3689944 5.575266 6.374593 +0.4282948 5.575266 6.374593 +0.494694 5.575266 6.374593 +0.5692344 5.575266 6.374593 +0.6530715 5.575266 6.374593 +0.7474945 5.575266 6.374593 +0.8539475 5.575266 6.374593 +0.974052 5.575266 6.374593 +1.113885 5.575266 6.374593 +1.27456 5.575266 6.374593 +1.458117 5.575266 6.374593 +1.667858 5.575266 6.374593 +1.907556 5.575266 6.374593 +2.181521 5.575266 6.374593 +2.494678 5.575266 6.374593 +2.852659 5.575266 6.374593 +3.261896 5.575266 6.374593 +3.729748 5.575266 6.374593 +4.264621 5.575266 6.374593 +4.876131 5.575266 6.374593 +5.575266 5.575266 6.374593 +6.374593 5.575266 6.374593 +0 6.374593 6.374593 +0 6.374593 6.374593 +0 6.374593 6.374593 +0.002268731 6.374593 6.374593 +0.07076883 6.374593 6.374593 +0.1119241 6.374593 6.374593 +0.1475052 6.374593 6.374593 +0.1846606 6.374593 6.374593 +0.2245119 6.374593 6.374593 +0.2679612 6.374593 6.374593 +0.3158431 6.374593 6.374593 +0.3689944 6.374593 6.374593 +0.4282948 6.374593 6.374593 +0.494694 6.374593 6.374593 +0.5692344 6.374593 6.374593 +0.6530715 6.374593 6.374593 +0.7474945 6.374593 6.374593 +0.8539475 6.374593 6.374593 +0.974052 6.374593 6.374593 +1.113885 6.374593 6.374593 +1.27456 6.374593 6.374593 +1.458117 6.374593 6.374593 +1.667858 6.374593 6.374593 +1.907556 6.374593 6.374593 +2.181521 6.374593 6.374593 +2.494678 6.374593 6.374593 +2.852659 6.374593 6.374593 +3.261896 6.374593 6.374593 +3.729748 6.374593 6.374593 +4.264621 6.374593 6.374593 +4.876131 6.374593 6.374593 +5.575266 6.374593 6.374593 +6.374593 6.374593 6.374593 diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Unity Log to sRGB r1.cube.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Unity Log to sRGB r1.cube.meta new file mode 100644 index 0000000..3431857 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/Unity Log to sRGB r1.cube.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 302dae2302d23ac49bbec3e17c0530b9 +timeCreated: 1496826837 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/sRGB to Linear r1.cube b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/sRGB to Linear r1.cube new file mode 100644 index 0000000..972592d --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/sRGB to Linear r1.cube @@ -0,0 +1,35941 @@ +TITLE "sRGB to Linear r1" +LUT_3D_SIZE 33 +DOMAIN_MIN 0 0 0 +DOMAIN_MAX 1 1 1 +0 0 0 +0.002418731 0 0 +0.005155668 0 0 +0.009080105 0 0 +0.01434988 0 0 +0.02107202 0 0 +0.02934285 0 0 +0.03925039 0 0 +0.05087609 0 0 +0.06429595 0 0 +0.07958143 0 0 +0.0968001 0 0 +0.1160161 0 0 +0.1372908 0 0 +0.1606827 0 0 +0.1862481 0 0 +0.2140411 0 0 +0.2441142 0 0 +0.2765176 0 0 +0.3113005 0 0 +0.3485102 0 0 +0.388193 0 0 +0.4303934 0 0 +0.4751555 0 0 +0.5225216 0 0 +0.5725335 0 0 +0.6252316 0 0 +0.6806558 0 0 +0.7388448 0 0 +0.7998369 0 0 +0.8636691 0 0 +0.9303782 0 0 +1 0 0 +0 0.002418731 0 +0.002418731 0.002418731 0 +0.005155668 0.002418731 0 +0.009080105 0.002418731 0 +0.01434988 0.002418731 0 +0.02107202 0.002418731 0 +0.02934285 0.002418731 0 +0.03925039 0.002418731 0 +0.05087609 0.002418731 0 +0.06429595 0.002418731 0 +0.07958143 0.002418731 0 +0.0968001 0.002418731 0 +0.1160161 0.002418731 0 +0.1372908 0.002418731 0 +0.1606827 0.002418731 0 +0.1862481 0.002418731 0 +0.2140411 0.002418731 0 +0.2441142 0.002418731 0 +0.2765176 0.002418731 0 +0.3113005 0.002418731 0 +0.3485102 0.002418731 0 +0.388193 0.002418731 0 +0.4303934 0.002418731 0 +0.4751555 0.002418731 0 +0.5225216 0.002418731 0 +0.5725335 0.002418731 0 +0.6252316 0.002418731 0 +0.6806558 0.002418731 0 +0.7388448 0.002418731 0 +0.7998369 0.002418731 0 +0.8636691 0.002418731 0 +0.9303782 0.002418731 0 +1 0.002418731 0 +0 0.005155668 0 +0.002418731 0.005155668 0 +0.005155668 0.005155668 0 +0.009080105 0.005155668 0 +0.01434988 0.005155668 0 +0.02107202 0.005155668 0 +0.02934285 0.005155668 0 +0.03925039 0.005155668 0 +0.05087609 0.005155668 0 +0.06429595 0.005155668 0 +0.07958143 0.005155668 0 +0.0968001 0.005155668 0 +0.1160161 0.005155668 0 +0.1372908 0.005155668 0 +0.1606827 0.005155668 0 +0.1862481 0.005155668 0 +0.2140411 0.005155668 0 +0.2441142 0.005155668 0 +0.2765176 0.005155668 0 +0.3113005 0.005155668 0 +0.3485102 0.005155668 0 +0.388193 0.005155668 0 +0.4303934 0.005155668 0 +0.4751555 0.005155668 0 +0.5225216 0.005155668 0 +0.5725335 0.005155668 0 +0.6252316 0.005155668 0 +0.6806558 0.005155668 0 +0.7388448 0.005155668 0 +0.7998369 0.005155668 0 +0.8636691 0.005155668 0 +0.9303782 0.005155668 0 +1 0.005155668 0 +0 0.009080105 0 +0.002418731 0.009080105 0 +0.005155668 0.009080105 0 +0.009080105 0.009080105 0 +0.01434988 0.009080105 0 +0.02107202 0.009080105 0 +0.02934285 0.009080105 0 +0.03925039 0.009080105 0 +0.05087609 0.009080105 0 +0.06429595 0.009080105 0 +0.07958143 0.009080105 0 +0.0968001 0.009080105 0 +0.1160161 0.009080105 0 +0.1372908 0.009080105 0 +0.1606827 0.009080105 0 +0.1862481 0.009080105 0 +0.2140411 0.009080105 0 +0.2441142 0.009080105 0 +0.2765176 0.009080105 0 +0.3113005 0.009080105 0 +0.3485102 0.009080105 0 +0.388193 0.009080105 0 +0.4303934 0.009080105 0 +0.4751555 0.009080105 0 +0.5225216 0.009080105 0 +0.5725335 0.009080105 0 +0.6252316 0.009080105 0 +0.6806558 0.009080105 0 +0.7388448 0.009080105 0 +0.7998369 0.009080105 0 +0.8636691 0.009080105 0 +0.9303782 0.009080105 0 +1 0.009080105 0 +0 0.01434988 0 +0.002418731 0.01434988 0 +0.005155668 0.01434988 0 +0.009080105 0.01434988 0 +0.01434988 0.01434988 0 +0.02107202 0.01434988 0 +0.02934285 0.01434988 0 +0.03925039 0.01434988 0 +0.05087609 0.01434988 0 +0.06429595 0.01434988 0 +0.07958143 0.01434988 0 +0.0968001 0.01434988 0 +0.1160161 0.01434988 0 +0.1372908 0.01434988 0 +0.1606827 0.01434988 0 +0.1862481 0.01434988 0 +0.2140411 0.01434988 0 +0.2441142 0.01434988 0 +0.2765176 0.01434988 0 +0.3113005 0.01434988 0 +0.3485102 0.01434988 0 +0.388193 0.01434988 0 +0.4303934 0.01434988 0 +0.4751555 0.01434988 0 +0.5225216 0.01434988 0 +0.5725335 0.01434988 0 +0.6252316 0.01434988 0 +0.6806558 0.01434988 0 +0.7388448 0.01434988 0 +0.7998369 0.01434988 0 +0.8636691 0.01434988 0 +0.9303782 0.01434988 0 +1 0.01434988 0 +0 0.02107202 0 +0.002418731 0.02107202 0 +0.005155668 0.02107202 0 +0.009080105 0.02107202 0 +0.01434988 0.02107202 0 +0.02107202 0.02107202 0 +0.02934285 0.02107202 0 +0.03925039 0.02107202 0 +0.05087609 0.02107202 0 +0.06429595 0.02107202 0 +0.07958143 0.02107202 0 +0.0968001 0.02107202 0 +0.1160161 0.02107202 0 +0.1372908 0.02107202 0 +0.1606827 0.02107202 0 +0.1862481 0.02107202 0 +0.2140411 0.02107202 0 +0.2441142 0.02107202 0 +0.2765176 0.02107202 0 +0.3113005 0.02107202 0 +0.3485102 0.02107202 0 +0.388193 0.02107202 0 +0.4303934 0.02107202 0 +0.4751555 0.02107202 0 +0.5225216 0.02107202 0 +0.5725335 0.02107202 0 +0.6252316 0.02107202 0 +0.6806558 0.02107202 0 +0.7388448 0.02107202 0 +0.7998369 0.02107202 0 +0.8636691 0.02107202 0 +0.9303782 0.02107202 0 +1 0.02107202 0 +0 0.02934285 0 +0.002418731 0.02934285 0 +0.005155668 0.02934285 0 +0.009080105 0.02934285 0 +0.01434988 0.02934285 0 +0.02107202 0.02934285 0 +0.02934285 0.02934285 0 +0.03925039 0.02934285 0 +0.05087609 0.02934285 0 +0.06429595 0.02934285 0 +0.07958143 0.02934285 0 +0.0968001 0.02934285 0 +0.1160161 0.02934285 0 +0.1372908 0.02934285 0 +0.1606827 0.02934285 0 +0.1862481 0.02934285 0 +0.2140411 0.02934285 0 +0.2441142 0.02934285 0 +0.2765176 0.02934285 0 +0.3113005 0.02934285 0 +0.3485102 0.02934285 0 +0.388193 0.02934285 0 +0.4303934 0.02934285 0 +0.4751555 0.02934285 0 +0.5225216 0.02934285 0 +0.5725335 0.02934285 0 +0.6252316 0.02934285 0 +0.6806558 0.02934285 0 +0.7388448 0.02934285 0 +0.7998369 0.02934285 0 +0.8636691 0.02934285 0 +0.9303782 0.02934285 0 +1 0.02934285 0 +0 0.03925039 0 +0.002418731 0.03925039 0 +0.005155668 0.03925039 0 +0.009080105 0.03925039 0 +0.01434988 0.03925039 0 +0.02107202 0.03925039 0 +0.02934285 0.03925039 0 +0.03925039 0.03925039 0 +0.05087609 0.03925039 0 +0.06429595 0.03925039 0 +0.07958143 0.03925039 0 +0.0968001 0.03925039 0 +0.1160161 0.03925039 0 +0.1372908 0.03925039 0 +0.1606827 0.03925039 0 +0.1862481 0.03925039 0 +0.2140411 0.03925039 0 +0.2441142 0.03925039 0 +0.2765176 0.03925039 0 +0.3113005 0.03925039 0 +0.3485102 0.03925039 0 +0.388193 0.03925039 0 +0.4303934 0.03925039 0 +0.4751555 0.03925039 0 +0.5225216 0.03925039 0 +0.5725335 0.03925039 0 +0.6252316 0.03925039 0 +0.6806558 0.03925039 0 +0.7388448 0.03925039 0 +0.7998369 0.03925039 0 +0.8636691 0.03925039 0 +0.9303782 0.03925039 0 +1 0.03925039 0 +0 0.05087609 0 +0.002418731 0.05087609 0 +0.005155668 0.05087609 0 +0.009080105 0.05087609 0 +0.01434988 0.05087609 0 +0.02107202 0.05087609 0 +0.02934285 0.05087609 0 +0.03925039 0.05087609 0 +0.05087609 0.05087609 0 +0.06429595 0.05087609 0 +0.07958143 0.05087609 0 +0.0968001 0.05087609 0 +0.1160161 0.05087609 0 +0.1372908 0.05087609 0 +0.1606827 0.05087609 0 +0.1862481 0.05087609 0 +0.2140411 0.05087609 0 +0.2441142 0.05087609 0 +0.2765176 0.05087609 0 +0.3113005 0.05087609 0 +0.3485102 0.05087609 0 +0.388193 0.05087609 0 +0.4303934 0.05087609 0 +0.4751555 0.05087609 0 +0.5225216 0.05087609 0 +0.5725335 0.05087609 0 +0.6252316 0.05087609 0 +0.6806558 0.05087609 0 +0.7388448 0.05087609 0 +0.7998369 0.05087609 0 +0.8636691 0.05087609 0 +0.9303782 0.05087609 0 +1 0.05087609 0 +0 0.06429595 0 +0.002418731 0.06429595 0 +0.005155668 0.06429595 0 +0.009080105 0.06429595 0 +0.01434988 0.06429595 0 +0.02107202 0.06429595 0 +0.02934285 0.06429595 0 +0.03925039 0.06429595 0 +0.05087609 0.06429595 0 +0.06429595 0.06429595 0 +0.07958143 0.06429595 0 +0.0968001 0.06429595 0 +0.1160161 0.06429595 0 +0.1372908 0.06429595 0 +0.1606827 0.06429595 0 +0.1862481 0.06429595 0 +0.2140411 0.06429595 0 +0.2441142 0.06429595 0 +0.2765176 0.06429595 0 +0.3113005 0.06429595 0 +0.3485102 0.06429595 0 +0.388193 0.06429595 0 +0.4303934 0.06429595 0 +0.4751555 0.06429595 0 +0.5225216 0.06429595 0 +0.5725335 0.06429595 0 +0.6252316 0.06429595 0 +0.6806558 0.06429595 0 +0.7388448 0.06429595 0 +0.7998369 0.06429595 0 +0.8636691 0.06429595 0 +0.9303782 0.06429595 0 +1 0.06429595 0 +0 0.07958143 0 +0.002418731 0.07958143 0 +0.005155668 0.07958143 0 +0.009080105 0.07958143 0 +0.01434988 0.07958143 0 +0.02107202 0.07958143 0 +0.02934285 0.07958143 0 +0.03925039 0.07958143 0 +0.05087609 0.07958143 0 +0.06429595 0.07958143 0 +0.07958143 0.07958143 0 +0.0968001 0.07958143 0 +0.1160161 0.07958143 0 +0.1372908 0.07958143 0 +0.1606827 0.07958143 0 +0.1862481 0.07958143 0 +0.2140411 0.07958143 0 +0.2441142 0.07958143 0 +0.2765176 0.07958143 0 +0.3113005 0.07958143 0 +0.3485102 0.07958143 0 +0.388193 0.07958143 0 +0.4303934 0.07958143 0 +0.4751555 0.07958143 0 +0.5225216 0.07958143 0 +0.5725335 0.07958143 0 +0.6252316 0.07958143 0 +0.6806558 0.07958143 0 +0.7388448 0.07958143 0 +0.7998369 0.07958143 0 +0.8636691 0.07958143 0 +0.9303782 0.07958143 0 +1 0.07958143 0 +0 0.0968001 0 +0.002418731 0.0968001 0 +0.005155668 0.0968001 0 +0.009080105 0.0968001 0 +0.01434988 0.0968001 0 +0.02107202 0.0968001 0 +0.02934285 0.0968001 0 +0.03925039 0.0968001 0 +0.05087609 0.0968001 0 +0.06429595 0.0968001 0 +0.07958143 0.0968001 0 +0.0968001 0.0968001 0 +0.1160161 0.0968001 0 +0.1372908 0.0968001 0 +0.1606827 0.0968001 0 +0.1862481 0.0968001 0 +0.2140411 0.0968001 0 +0.2441142 0.0968001 0 +0.2765176 0.0968001 0 +0.3113005 0.0968001 0 +0.3485102 0.0968001 0 +0.388193 0.0968001 0 +0.4303934 0.0968001 0 +0.4751555 0.0968001 0 +0.5225216 0.0968001 0 +0.5725335 0.0968001 0 +0.6252316 0.0968001 0 +0.6806558 0.0968001 0 +0.7388448 0.0968001 0 +0.7998369 0.0968001 0 +0.8636691 0.0968001 0 +0.9303782 0.0968001 0 +1 0.0968001 0 +0 0.1160161 0 +0.002418731 0.1160161 0 +0.005155668 0.1160161 0 +0.009080105 0.1160161 0 +0.01434988 0.1160161 0 +0.02107202 0.1160161 0 +0.02934285 0.1160161 0 +0.03925039 0.1160161 0 +0.05087609 0.1160161 0 +0.06429595 0.1160161 0 +0.07958143 0.1160161 0 +0.0968001 0.1160161 0 +0.1160161 0.1160161 0 +0.1372908 0.1160161 0 +0.1606827 0.1160161 0 +0.1862481 0.1160161 0 +0.2140411 0.1160161 0 +0.2441142 0.1160161 0 +0.2765176 0.1160161 0 +0.3113005 0.1160161 0 +0.3485102 0.1160161 0 +0.388193 0.1160161 0 +0.4303934 0.1160161 0 +0.4751555 0.1160161 0 +0.5225216 0.1160161 0 +0.5725335 0.1160161 0 +0.6252316 0.1160161 0 +0.6806558 0.1160161 0 +0.7388448 0.1160161 0 +0.7998369 0.1160161 0 +0.8636691 0.1160161 0 +0.9303782 0.1160161 0 +1 0.1160161 0 +0 0.1372908 0 +0.002418731 0.1372908 0 +0.005155668 0.1372908 0 +0.009080105 0.1372908 0 +0.01434988 0.1372908 0 +0.02107202 0.1372908 0 +0.02934285 0.1372908 0 +0.03925039 0.1372908 0 +0.05087609 0.1372908 0 +0.06429595 0.1372908 0 +0.07958143 0.1372908 0 +0.0968001 0.1372908 0 +0.1160161 0.1372908 0 +0.1372908 0.1372908 0 +0.1606827 0.1372908 0 +0.1862481 0.1372908 0 +0.2140411 0.1372908 0 +0.2441142 0.1372908 0 +0.2765176 0.1372908 0 +0.3113005 0.1372908 0 +0.3485102 0.1372908 0 +0.388193 0.1372908 0 +0.4303934 0.1372908 0 +0.4751555 0.1372908 0 +0.5225216 0.1372908 0 +0.5725335 0.1372908 0 +0.6252316 0.1372908 0 +0.6806558 0.1372908 0 +0.7388448 0.1372908 0 +0.7998369 0.1372908 0 +0.8636691 0.1372908 0 +0.9303782 0.1372908 0 +1 0.1372908 0 +0 0.1606827 0 +0.002418731 0.1606827 0 +0.005155668 0.1606827 0 +0.009080105 0.1606827 0 +0.01434988 0.1606827 0 +0.02107202 0.1606827 0 +0.02934285 0.1606827 0 +0.03925039 0.1606827 0 +0.05087609 0.1606827 0 +0.06429595 0.1606827 0 +0.07958143 0.1606827 0 +0.0968001 0.1606827 0 +0.1160161 0.1606827 0 +0.1372908 0.1606827 0 +0.1606827 0.1606827 0 +0.1862481 0.1606827 0 +0.2140411 0.1606827 0 +0.2441142 0.1606827 0 +0.2765176 0.1606827 0 +0.3113005 0.1606827 0 +0.3485102 0.1606827 0 +0.388193 0.1606827 0 +0.4303934 0.1606827 0 +0.4751555 0.1606827 0 +0.5225216 0.1606827 0 +0.5725335 0.1606827 0 +0.6252316 0.1606827 0 +0.6806558 0.1606827 0 +0.7388448 0.1606827 0 +0.7998369 0.1606827 0 +0.8636691 0.1606827 0 +0.9303782 0.1606827 0 +1 0.1606827 0 +0 0.1862481 0 +0.002418731 0.1862481 0 +0.005155668 0.1862481 0 +0.009080105 0.1862481 0 +0.01434988 0.1862481 0 +0.02107202 0.1862481 0 +0.02934285 0.1862481 0 +0.03925039 0.1862481 0 +0.05087609 0.1862481 0 +0.06429595 0.1862481 0 +0.07958143 0.1862481 0 +0.0968001 0.1862481 0 +0.1160161 0.1862481 0 +0.1372908 0.1862481 0 +0.1606827 0.1862481 0 +0.1862481 0.1862481 0 +0.2140411 0.1862481 0 +0.2441142 0.1862481 0 +0.2765176 0.1862481 0 +0.3113005 0.1862481 0 +0.3485102 0.1862481 0 +0.388193 0.1862481 0 +0.4303934 0.1862481 0 +0.4751555 0.1862481 0 +0.5225216 0.1862481 0 +0.5725335 0.1862481 0 +0.6252316 0.1862481 0 +0.6806558 0.1862481 0 +0.7388448 0.1862481 0 +0.7998369 0.1862481 0 +0.8636691 0.1862481 0 +0.9303782 0.1862481 0 +1 0.1862481 0 +0 0.2140411 0 +0.002418731 0.2140411 0 +0.005155668 0.2140411 0 +0.009080105 0.2140411 0 +0.01434988 0.2140411 0 +0.02107202 0.2140411 0 +0.02934285 0.2140411 0 +0.03925039 0.2140411 0 +0.05087609 0.2140411 0 +0.06429595 0.2140411 0 +0.07958143 0.2140411 0 +0.0968001 0.2140411 0 +0.1160161 0.2140411 0 +0.1372908 0.2140411 0 +0.1606827 0.2140411 0 +0.1862481 0.2140411 0 +0.2140411 0.2140411 0 +0.2441142 0.2140411 0 +0.2765176 0.2140411 0 +0.3113005 0.2140411 0 +0.3485102 0.2140411 0 +0.388193 0.2140411 0 +0.4303934 0.2140411 0 +0.4751555 0.2140411 0 +0.5225216 0.2140411 0 +0.5725335 0.2140411 0 +0.6252316 0.2140411 0 +0.6806558 0.2140411 0 +0.7388448 0.2140411 0 +0.7998369 0.2140411 0 +0.8636691 0.2140411 0 +0.9303782 0.2140411 0 +1 0.2140411 0 +0 0.2441142 0 +0.002418731 0.2441142 0 +0.005155668 0.2441142 0 +0.009080105 0.2441142 0 +0.01434988 0.2441142 0 +0.02107202 0.2441142 0 +0.02934285 0.2441142 0 +0.03925039 0.2441142 0 +0.05087609 0.2441142 0 +0.06429595 0.2441142 0 +0.07958143 0.2441142 0 +0.0968001 0.2441142 0 +0.1160161 0.2441142 0 +0.1372908 0.2441142 0 +0.1606827 0.2441142 0 +0.1862481 0.2441142 0 +0.2140411 0.2441142 0 +0.2441142 0.2441142 0 +0.2765176 0.2441142 0 +0.3113005 0.2441142 0 +0.3485102 0.2441142 0 +0.388193 0.2441142 0 +0.4303934 0.2441142 0 +0.4751555 0.2441142 0 +0.5225216 0.2441142 0 +0.5725335 0.2441142 0 +0.6252316 0.2441142 0 +0.6806558 0.2441142 0 +0.7388448 0.2441142 0 +0.7998369 0.2441142 0 +0.8636691 0.2441142 0 +0.9303782 0.2441142 0 +1 0.2441142 0 +0 0.2765176 0 +0.002418731 0.2765176 0 +0.005155668 0.2765176 0 +0.009080105 0.2765176 0 +0.01434988 0.2765176 0 +0.02107202 0.2765176 0 +0.02934285 0.2765176 0 +0.03925039 0.2765176 0 +0.05087609 0.2765176 0 +0.06429595 0.2765176 0 +0.07958143 0.2765176 0 +0.0968001 0.2765176 0 +0.1160161 0.2765176 0 +0.1372908 0.2765176 0 +0.1606827 0.2765176 0 +0.1862481 0.2765176 0 +0.2140411 0.2765176 0 +0.2441142 0.2765176 0 +0.2765176 0.2765176 0 +0.3113005 0.2765176 0 +0.3485102 0.2765176 0 +0.388193 0.2765176 0 +0.4303934 0.2765176 0 +0.4751555 0.2765176 0 +0.5225216 0.2765176 0 +0.5725335 0.2765176 0 +0.6252316 0.2765176 0 +0.6806558 0.2765176 0 +0.7388448 0.2765176 0 +0.7998369 0.2765176 0 +0.8636691 0.2765176 0 +0.9303782 0.2765176 0 +1 0.2765176 0 +0 0.3113005 0 +0.002418731 0.3113005 0 +0.005155668 0.3113005 0 +0.009080105 0.3113005 0 +0.01434988 0.3113005 0 +0.02107202 0.3113005 0 +0.02934285 0.3113005 0 +0.03925039 0.3113005 0 +0.05087609 0.3113005 0 +0.06429595 0.3113005 0 +0.07958143 0.3113005 0 +0.0968001 0.3113005 0 +0.1160161 0.3113005 0 +0.1372908 0.3113005 0 +0.1606827 0.3113005 0 +0.1862481 0.3113005 0 +0.2140411 0.3113005 0 +0.2441142 0.3113005 0 +0.2765176 0.3113005 0 +0.3113005 0.3113005 0 +0.3485102 0.3113005 0 +0.388193 0.3113005 0 +0.4303934 0.3113005 0 +0.4751555 0.3113005 0 +0.5225216 0.3113005 0 +0.5725335 0.3113005 0 +0.6252316 0.3113005 0 +0.6806558 0.3113005 0 +0.7388448 0.3113005 0 +0.7998369 0.3113005 0 +0.8636691 0.3113005 0 +0.9303782 0.3113005 0 +1 0.3113005 0 +0 0.3485102 0 +0.002418731 0.3485102 0 +0.005155668 0.3485102 0 +0.009080105 0.3485102 0 +0.01434988 0.3485102 0 +0.02107202 0.3485102 0 +0.02934285 0.3485102 0 +0.03925039 0.3485102 0 +0.05087609 0.3485102 0 +0.06429595 0.3485102 0 +0.07958143 0.3485102 0 +0.0968001 0.3485102 0 +0.1160161 0.3485102 0 +0.1372908 0.3485102 0 +0.1606827 0.3485102 0 +0.1862481 0.3485102 0 +0.2140411 0.3485102 0 +0.2441142 0.3485102 0 +0.2765176 0.3485102 0 +0.3113005 0.3485102 0 +0.3485102 0.3485102 0 +0.388193 0.3485102 0 +0.4303934 0.3485102 0 +0.4751555 0.3485102 0 +0.5225216 0.3485102 0 +0.5725335 0.3485102 0 +0.6252316 0.3485102 0 +0.6806558 0.3485102 0 +0.7388448 0.3485102 0 +0.7998369 0.3485102 0 +0.8636691 0.3485102 0 +0.9303782 0.3485102 0 +1 0.3485102 0 +0 0.388193 0 +0.002418731 0.388193 0 +0.005155668 0.388193 0 +0.009080105 0.388193 0 +0.01434988 0.388193 0 +0.02107202 0.388193 0 +0.02934285 0.388193 0 +0.03925039 0.388193 0 +0.05087609 0.388193 0 +0.06429595 0.388193 0 +0.07958143 0.388193 0 +0.0968001 0.388193 0 +0.1160161 0.388193 0 +0.1372908 0.388193 0 +0.1606827 0.388193 0 +0.1862481 0.388193 0 +0.2140411 0.388193 0 +0.2441142 0.388193 0 +0.2765176 0.388193 0 +0.3113005 0.388193 0 +0.3485102 0.388193 0 +0.388193 0.388193 0 +0.4303934 0.388193 0 +0.4751555 0.388193 0 +0.5225216 0.388193 0 +0.5725335 0.388193 0 +0.6252316 0.388193 0 +0.6806558 0.388193 0 +0.7388448 0.388193 0 +0.7998369 0.388193 0 +0.8636691 0.388193 0 +0.9303782 0.388193 0 +1 0.388193 0 +0 0.4303934 0 +0.002418731 0.4303934 0 +0.005155668 0.4303934 0 +0.009080105 0.4303934 0 +0.01434988 0.4303934 0 +0.02107202 0.4303934 0 +0.02934285 0.4303934 0 +0.03925039 0.4303934 0 +0.05087609 0.4303934 0 +0.06429595 0.4303934 0 +0.07958143 0.4303934 0 +0.0968001 0.4303934 0 +0.1160161 0.4303934 0 +0.1372908 0.4303934 0 +0.1606827 0.4303934 0 +0.1862481 0.4303934 0 +0.2140411 0.4303934 0 +0.2441142 0.4303934 0 +0.2765176 0.4303934 0 +0.3113005 0.4303934 0 +0.3485102 0.4303934 0 +0.388193 0.4303934 0 +0.4303934 0.4303934 0 +0.4751555 0.4303934 0 +0.5225216 0.4303934 0 +0.5725335 0.4303934 0 +0.6252316 0.4303934 0 +0.6806558 0.4303934 0 +0.7388448 0.4303934 0 +0.7998369 0.4303934 0 +0.8636691 0.4303934 0 +0.9303782 0.4303934 0 +1 0.4303934 0 +0 0.4751555 0 +0.002418731 0.4751555 0 +0.005155668 0.4751555 0 +0.009080105 0.4751555 0 +0.01434988 0.4751555 0 +0.02107202 0.4751555 0 +0.02934285 0.4751555 0 +0.03925039 0.4751555 0 +0.05087609 0.4751555 0 +0.06429595 0.4751555 0 +0.07958143 0.4751555 0 +0.0968001 0.4751555 0 +0.1160161 0.4751555 0 +0.1372908 0.4751555 0 +0.1606827 0.4751555 0 +0.1862481 0.4751555 0 +0.2140411 0.4751555 0 +0.2441142 0.4751555 0 +0.2765176 0.4751555 0 +0.3113005 0.4751555 0 +0.3485102 0.4751555 0 +0.388193 0.4751555 0 +0.4303934 0.4751555 0 +0.4751555 0.4751555 0 +0.5225216 0.4751555 0 +0.5725335 0.4751555 0 +0.6252316 0.4751555 0 +0.6806558 0.4751555 0 +0.7388448 0.4751555 0 +0.7998369 0.4751555 0 +0.8636691 0.4751555 0 +0.9303782 0.4751555 0 +1 0.4751555 0 +0 0.5225216 0 +0.002418731 0.5225216 0 +0.005155668 0.5225216 0 +0.009080105 0.5225216 0 +0.01434988 0.5225216 0 +0.02107202 0.5225216 0 +0.02934285 0.5225216 0 +0.03925039 0.5225216 0 +0.05087609 0.5225216 0 +0.06429595 0.5225216 0 +0.07958143 0.5225216 0 +0.0968001 0.5225216 0 +0.1160161 0.5225216 0 +0.1372908 0.5225216 0 +0.1606827 0.5225216 0 +0.1862481 0.5225216 0 +0.2140411 0.5225216 0 +0.2441142 0.5225216 0 +0.2765176 0.5225216 0 +0.3113005 0.5225216 0 +0.3485102 0.5225216 0 +0.388193 0.5225216 0 +0.4303934 0.5225216 0 +0.4751555 0.5225216 0 +0.5225216 0.5225216 0 +0.5725335 0.5225216 0 +0.6252316 0.5225216 0 +0.6806558 0.5225216 0 +0.7388448 0.5225216 0 +0.7998369 0.5225216 0 +0.8636691 0.5225216 0 +0.9303782 0.5225216 0 +1 0.5225216 0 +0 0.5725335 0 +0.002418731 0.5725335 0 +0.005155668 0.5725335 0 +0.009080105 0.5725335 0 +0.01434988 0.5725335 0 +0.02107202 0.5725335 0 +0.02934285 0.5725335 0 +0.03925039 0.5725335 0 +0.05087609 0.5725335 0 +0.06429595 0.5725335 0 +0.07958143 0.5725335 0 +0.0968001 0.5725335 0 +0.1160161 0.5725335 0 +0.1372908 0.5725335 0 +0.1606827 0.5725335 0 +0.1862481 0.5725335 0 +0.2140411 0.5725335 0 +0.2441142 0.5725335 0 +0.2765176 0.5725335 0 +0.3113005 0.5725335 0 +0.3485102 0.5725335 0 +0.388193 0.5725335 0 +0.4303934 0.5725335 0 +0.4751555 0.5725335 0 +0.5225216 0.5725335 0 +0.5725335 0.5725335 0 +0.6252316 0.5725335 0 +0.6806558 0.5725335 0 +0.7388448 0.5725335 0 +0.7998369 0.5725335 0 +0.8636691 0.5725335 0 +0.9303782 0.5725335 0 +1 0.5725335 0 +0 0.6252316 0 +0.002418731 0.6252316 0 +0.005155668 0.6252316 0 +0.009080105 0.6252316 0 +0.01434988 0.6252316 0 +0.02107202 0.6252316 0 +0.02934285 0.6252316 0 +0.03925039 0.6252316 0 +0.05087609 0.6252316 0 +0.06429595 0.6252316 0 +0.07958143 0.6252316 0 +0.0968001 0.6252316 0 +0.1160161 0.6252316 0 +0.1372908 0.6252316 0 +0.1606827 0.6252316 0 +0.1862481 0.6252316 0 +0.2140411 0.6252316 0 +0.2441142 0.6252316 0 +0.2765176 0.6252316 0 +0.3113005 0.6252316 0 +0.3485102 0.6252316 0 +0.388193 0.6252316 0 +0.4303934 0.6252316 0 +0.4751555 0.6252316 0 +0.5225216 0.6252316 0 +0.5725335 0.6252316 0 +0.6252316 0.6252316 0 +0.6806558 0.6252316 0 +0.7388448 0.6252316 0 +0.7998369 0.6252316 0 +0.8636691 0.6252316 0 +0.9303782 0.6252316 0 +1 0.6252316 0 +0 0.6806558 0 +0.002418731 0.6806558 0 +0.005155668 0.6806558 0 +0.009080105 0.6806558 0 +0.01434988 0.6806558 0 +0.02107202 0.6806558 0 +0.02934285 0.6806558 0 +0.03925039 0.6806558 0 +0.05087609 0.6806558 0 +0.06429595 0.6806558 0 +0.07958143 0.6806558 0 +0.0968001 0.6806558 0 +0.1160161 0.6806558 0 +0.1372908 0.6806558 0 +0.1606827 0.6806558 0 +0.1862481 0.6806558 0 +0.2140411 0.6806558 0 +0.2441142 0.6806558 0 +0.2765176 0.6806558 0 +0.3113005 0.6806558 0 +0.3485102 0.6806558 0 +0.388193 0.6806558 0 +0.4303934 0.6806558 0 +0.4751555 0.6806558 0 +0.5225216 0.6806558 0 +0.5725335 0.6806558 0 +0.6252316 0.6806558 0 +0.6806558 0.6806558 0 +0.7388448 0.6806558 0 +0.7998369 0.6806558 0 +0.8636691 0.6806558 0 +0.9303782 0.6806558 0 +1 0.6806558 0 +0 0.7388448 0 +0.002418731 0.7388448 0 +0.005155668 0.7388448 0 +0.009080105 0.7388448 0 +0.01434988 0.7388448 0 +0.02107202 0.7388448 0 +0.02934285 0.7388448 0 +0.03925039 0.7388448 0 +0.05087609 0.7388448 0 +0.06429595 0.7388448 0 +0.07958143 0.7388448 0 +0.0968001 0.7388448 0 +0.1160161 0.7388448 0 +0.1372908 0.7388448 0 +0.1606827 0.7388448 0 +0.1862481 0.7388448 0 +0.2140411 0.7388448 0 +0.2441142 0.7388448 0 +0.2765176 0.7388448 0 +0.3113005 0.7388448 0 +0.3485102 0.7388448 0 +0.388193 0.7388448 0 +0.4303934 0.7388448 0 +0.4751555 0.7388448 0 +0.5225216 0.7388448 0 +0.5725335 0.7388448 0 +0.6252316 0.7388448 0 +0.6806558 0.7388448 0 +0.7388448 0.7388448 0 +0.7998369 0.7388448 0 +0.8636691 0.7388448 0 +0.9303782 0.7388448 0 +1 0.7388448 0 +0 0.7998369 0 +0.002418731 0.7998369 0 +0.005155668 0.7998369 0 +0.009080105 0.7998369 0 +0.01434988 0.7998369 0 +0.02107202 0.7998369 0 +0.02934285 0.7998369 0 +0.03925039 0.7998369 0 +0.05087609 0.7998369 0 +0.06429595 0.7998369 0 +0.07958143 0.7998369 0 +0.0968001 0.7998369 0 +0.1160161 0.7998369 0 +0.1372908 0.7998369 0 +0.1606827 0.7998369 0 +0.1862481 0.7998369 0 +0.2140411 0.7998369 0 +0.2441142 0.7998369 0 +0.2765176 0.7998369 0 +0.3113005 0.7998369 0 +0.3485102 0.7998369 0 +0.388193 0.7998369 0 +0.4303934 0.7998369 0 +0.4751555 0.7998369 0 +0.5225216 0.7998369 0 +0.5725335 0.7998369 0 +0.6252316 0.7998369 0 +0.6806558 0.7998369 0 +0.7388448 0.7998369 0 +0.7998369 0.7998369 0 +0.8636691 0.7998369 0 +0.9303782 0.7998369 0 +1 0.7998369 0 +0 0.8636691 0 +0.002418731 0.8636691 0 +0.005155668 0.8636691 0 +0.009080105 0.8636691 0 +0.01434988 0.8636691 0 +0.02107202 0.8636691 0 +0.02934285 0.8636691 0 +0.03925039 0.8636691 0 +0.05087609 0.8636691 0 +0.06429595 0.8636691 0 +0.07958143 0.8636691 0 +0.0968001 0.8636691 0 +0.1160161 0.8636691 0 +0.1372908 0.8636691 0 +0.1606827 0.8636691 0 +0.1862481 0.8636691 0 +0.2140411 0.8636691 0 +0.2441142 0.8636691 0 +0.2765176 0.8636691 0 +0.3113005 0.8636691 0 +0.3485102 0.8636691 0 +0.388193 0.8636691 0 +0.4303934 0.8636691 0 +0.4751555 0.8636691 0 +0.5225216 0.8636691 0 +0.5725335 0.8636691 0 +0.6252316 0.8636691 0 +0.6806558 0.8636691 0 +0.7388448 0.8636691 0 +0.7998369 0.8636691 0 +0.8636691 0.8636691 0 +0.9303782 0.8636691 0 +1 0.8636691 0 +0 0.9303782 0 +0.002418731 0.9303782 0 +0.005155668 0.9303782 0 +0.009080105 0.9303782 0 +0.01434988 0.9303782 0 +0.02107202 0.9303782 0 +0.02934285 0.9303782 0 +0.03925039 0.9303782 0 +0.05087609 0.9303782 0 +0.06429595 0.9303782 0 +0.07958143 0.9303782 0 +0.0968001 0.9303782 0 +0.1160161 0.9303782 0 +0.1372908 0.9303782 0 +0.1606827 0.9303782 0 +0.1862481 0.9303782 0 +0.2140411 0.9303782 0 +0.2441142 0.9303782 0 +0.2765176 0.9303782 0 +0.3113005 0.9303782 0 +0.3485102 0.9303782 0 +0.388193 0.9303782 0 +0.4303934 0.9303782 0 +0.4751555 0.9303782 0 +0.5225216 0.9303782 0 +0.5725335 0.9303782 0 +0.6252316 0.9303782 0 +0.6806558 0.9303782 0 +0.7388448 0.9303782 0 +0.7998369 0.9303782 0 +0.8636691 0.9303782 0 +0.9303782 0.9303782 0 +1 0.9303782 0 +0 1 0 +0.002418731 1 0 +0.005155668 1 0 +0.009080105 1 0 +0.01434988 1 0 +0.02107202 1 0 +0.02934285 1 0 +0.03925039 1 0 +0.05087609 1 0 +0.06429595 1 0 +0.07958143 1 0 +0.0968001 1 0 +0.1160161 1 0 +0.1372908 1 0 +0.1606827 1 0 +0.1862481 1 0 +0.2140411 1 0 +0.2441142 1 0 +0.2765176 1 0 +0.3113005 1 0 +0.3485102 1 0 +0.388193 1 0 +0.4303934 1 0 +0.4751555 1 0 +0.5225216 1 0 +0.5725335 1 0 +0.6252316 1 0 +0.6806558 1 0 +0.7388448 1 0 +0.7998369 1 0 +0.8636691 1 0 +0.9303782 1 0 +1 1 0 +0 0 0.002418731 +0.002418731 0 0.002418731 +0.005155668 0 0.002418731 +0.009080105 0 0.002418731 +0.01434988 0 0.002418731 +0.02107202 0 0.002418731 +0.02934285 0 0.002418731 +0.03925039 0 0.002418731 +0.05087609 0 0.002418731 +0.06429595 0 0.002418731 +0.07958143 0 0.002418731 +0.0968001 0 0.002418731 +0.1160161 0 0.002418731 +0.1372908 0 0.002418731 +0.1606827 0 0.002418731 +0.1862481 0 0.002418731 +0.2140411 0 0.002418731 +0.2441142 0 0.002418731 +0.2765176 0 0.002418731 +0.3113005 0 0.002418731 +0.3485102 0 0.002418731 +0.388193 0 0.002418731 +0.4303934 0 0.002418731 +0.4751555 0 0.002418731 +0.5225216 0 0.002418731 +0.5725335 0 0.002418731 +0.6252316 0 0.002418731 +0.6806558 0 0.002418731 +0.7388448 0 0.002418731 +0.7998369 0 0.002418731 +0.8636691 0 0.002418731 +0.9303782 0 0.002418731 +1 0 0.002418731 +0 0.002418731 0.002418731 +0.002418731 0.002418731 0.002418731 +0.005155668 0.002418731 0.002418731 +0.009080105 0.002418731 0.002418731 +0.01434988 0.002418731 0.002418731 +0.02107202 0.002418731 0.002418731 +0.02934285 0.002418731 0.002418731 +0.03925039 0.002418731 0.002418731 +0.05087609 0.002418731 0.002418731 +0.06429595 0.002418731 0.002418731 +0.07958143 0.002418731 0.002418731 +0.0968001 0.002418731 0.002418731 +0.1160161 0.002418731 0.002418731 +0.1372908 0.002418731 0.002418731 +0.1606827 0.002418731 0.002418731 +0.1862481 0.002418731 0.002418731 +0.2140411 0.002418731 0.002418731 +0.2441142 0.002418731 0.002418731 +0.2765176 0.002418731 0.002418731 +0.3113005 0.002418731 0.002418731 +0.3485102 0.002418731 0.002418731 +0.388193 0.002418731 0.002418731 +0.4303934 0.002418731 0.002418731 +0.4751555 0.002418731 0.002418731 +0.5225216 0.002418731 0.002418731 +0.5725335 0.002418731 0.002418731 +0.6252316 0.002418731 0.002418731 +0.6806558 0.002418731 0.002418731 +0.7388448 0.002418731 0.002418731 +0.7998369 0.002418731 0.002418731 +0.8636691 0.002418731 0.002418731 +0.9303782 0.002418731 0.002418731 +1 0.002418731 0.002418731 +0 0.005155668 0.002418731 +0.002418731 0.005155668 0.002418731 +0.005155668 0.005155668 0.002418731 +0.009080105 0.005155668 0.002418731 +0.01434988 0.005155668 0.002418731 +0.02107202 0.005155668 0.002418731 +0.02934285 0.005155668 0.002418731 +0.03925039 0.005155668 0.002418731 +0.05087609 0.005155668 0.002418731 +0.06429595 0.005155668 0.002418731 +0.07958143 0.005155668 0.002418731 +0.0968001 0.005155668 0.002418731 +0.1160161 0.005155668 0.002418731 +0.1372908 0.005155668 0.002418731 +0.1606827 0.005155668 0.002418731 +0.1862481 0.005155668 0.002418731 +0.2140411 0.005155668 0.002418731 +0.2441142 0.005155668 0.002418731 +0.2765176 0.005155668 0.002418731 +0.3113005 0.005155668 0.002418731 +0.3485102 0.005155668 0.002418731 +0.388193 0.005155668 0.002418731 +0.4303934 0.005155668 0.002418731 +0.4751555 0.005155668 0.002418731 +0.5225216 0.005155668 0.002418731 +0.5725335 0.005155668 0.002418731 +0.6252316 0.005155668 0.002418731 +0.6806558 0.005155668 0.002418731 +0.7388448 0.005155668 0.002418731 +0.7998369 0.005155668 0.002418731 +0.8636691 0.005155668 0.002418731 +0.9303782 0.005155668 0.002418731 +1 0.005155668 0.002418731 +0 0.009080105 0.002418731 +0.002418731 0.009080105 0.002418731 +0.005155668 0.009080105 0.002418731 +0.009080105 0.009080105 0.002418731 +0.01434988 0.009080105 0.002418731 +0.02107202 0.009080105 0.002418731 +0.02934285 0.009080105 0.002418731 +0.03925039 0.009080105 0.002418731 +0.05087609 0.009080105 0.002418731 +0.06429595 0.009080105 0.002418731 +0.07958143 0.009080105 0.002418731 +0.0968001 0.009080105 0.002418731 +0.1160161 0.009080105 0.002418731 +0.1372908 0.009080105 0.002418731 +0.1606827 0.009080105 0.002418731 +0.1862481 0.009080105 0.002418731 +0.2140411 0.009080105 0.002418731 +0.2441142 0.009080105 0.002418731 +0.2765176 0.009080105 0.002418731 +0.3113005 0.009080105 0.002418731 +0.3485102 0.009080105 0.002418731 +0.388193 0.009080105 0.002418731 +0.4303934 0.009080105 0.002418731 +0.4751555 0.009080105 0.002418731 +0.5225216 0.009080105 0.002418731 +0.5725335 0.009080105 0.002418731 +0.6252316 0.009080105 0.002418731 +0.6806558 0.009080105 0.002418731 +0.7388448 0.009080105 0.002418731 +0.7998369 0.009080105 0.002418731 +0.8636691 0.009080105 0.002418731 +0.9303782 0.009080105 0.002418731 +1 0.009080105 0.002418731 +0 0.01434988 0.002418731 +0.002418731 0.01434988 0.002418731 +0.005155668 0.01434988 0.002418731 +0.009080105 0.01434988 0.002418731 +0.01434988 0.01434988 0.002418731 +0.02107202 0.01434988 0.002418731 +0.02934285 0.01434988 0.002418731 +0.03925039 0.01434988 0.002418731 +0.05087609 0.01434988 0.002418731 +0.06429595 0.01434988 0.002418731 +0.07958143 0.01434988 0.002418731 +0.0968001 0.01434988 0.002418731 +0.1160161 0.01434988 0.002418731 +0.1372908 0.01434988 0.002418731 +0.1606827 0.01434988 0.002418731 +0.1862481 0.01434988 0.002418731 +0.2140411 0.01434988 0.002418731 +0.2441142 0.01434988 0.002418731 +0.2765176 0.01434988 0.002418731 +0.3113005 0.01434988 0.002418731 +0.3485102 0.01434988 0.002418731 +0.388193 0.01434988 0.002418731 +0.4303934 0.01434988 0.002418731 +0.4751555 0.01434988 0.002418731 +0.5225216 0.01434988 0.002418731 +0.5725335 0.01434988 0.002418731 +0.6252316 0.01434988 0.002418731 +0.6806558 0.01434988 0.002418731 +0.7388448 0.01434988 0.002418731 +0.7998369 0.01434988 0.002418731 +0.8636691 0.01434988 0.002418731 +0.9303782 0.01434988 0.002418731 +1 0.01434988 0.002418731 +0 0.02107202 0.002418731 +0.002418731 0.02107202 0.002418731 +0.005155668 0.02107202 0.002418731 +0.009080105 0.02107202 0.002418731 +0.01434988 0.02107202 0.002418731 +0.02107202 0.02107202 0.002418731 +0.02934285 0.02107202 0.002418731 +0.03925039 0.02107202 0.002418731 +0.05087609 0.02107202 0.002418731 +0.06429595 0.02107202 0.002418731 +0.07958143 0.02107202 0.002418731 +0.0968001 0.02107202 0.002418731 +0.1160161 0.02107202 0.002418731 +0.1372908 0.02107202 0.002418731 +0.1606827 0.02107202 0.002418731 +0.1862481 0.02107202 0.002418731 +0.2140411 0.02107202 0.002418731 +0.2441142 0.02107202 0.002418731 +0.2765176 0.02107202 0.002418731 +0.3113005 0.02107202 0.002418731 +0.3485102 0.02107202 0.002418731 +0.388193 0.02107202 0.002418731 +0.4303934 0.02107202 0.002418731 +0.4751555 0.02107202 0.002418731 +0.5225216 0.02107202 0.002418731 +0.5725335 0.02107202 0.002418731 +0.6252316 0.02107202 0.002418731 +0.6806558 0.02107202 0.002418731 +0.7388448 0.02107202 0.002418731 +0.7998369 0.02107202 0.002418731 +0.8636691 0.02107202 0.002418731 +0.9303782 0.02107202 0.002418731 +1 0.02107202 0.002418731 +0 0.02934285 0.002418731 +0.002418731 0.02934285 0.002418731 +0.005155668 0.02934285 0.002418731 +0.009080105 0.02934285 0.002418731 +0.01434988 0.02934285 0.002418731 +0.02107202 0.02934285 0.002418731 +0.02934285 0.02934285 0.002418731 +0.03925039 0.02934285 0.002418731 +0.05087609 0.02934285 0.002418731 +0.06429595 0.02934285 0.002418731 +0.07958143 0.02934285 0.002418731 +0.0968001 0.02934285 0.002418731 +0.1160161 0.02934285 0.002418731 +0.1372908 0.02934285 0.002418731 +0.1606827 0.02934285 0.002418731 +0.1862481 0.02934285 0.002418731 +0.2140411 0.02934285 0.002418731 +0.2441142 0.02934285 0.002418731 +0.2765176 0.02934285 0.002418731 +0.3113005 0.02934285 0.002418731 +0.3485102 0.02934285 0.002418731 +0.388193 0.02934285 0.002418731 +0.4303934 0.02934285 0.002418731 +0.4751555 0.02934285 0.002418731 +0.5225216 0.02934285 0.002418731 +0.5725335 0.02934285 0.002418731 +0.6252316 0.02934285 0.002418731 +0.6806558 0.02934285 0.002418731 +0.7388448 0.02934285 0.002418731 +0.7998369 0.02934285 0.002418731 +0.8636691 0.02934285 0.002418731 +0.9303782 0.02934285 0.002418731 +1 0.02934285 0.002418731 +0 0.03925039 0.002418731 +0.002418731 0.03925039 0.002418731 +0.005155668 0.03925039 0.002418731 +0.009080105 0.03925039 0.002418731 +0.01434988 0.03925039 0.002418731 +0.02107202 0.03925039 0.002418731 +0.02934285 0.03925039 0.002418731 +0.03925039 0.03925039 0.002418731 +0.05087609 0.03925039 0.002418731 +0.06429595 0.03925039 0.002418731 +0.07958143 0.03925039 0.002418731 +0.0968001 0.03925039 0.002418731 +0.1160161 0.03925039 0.002418731 +0.1372908 0.03925039 0.002418731 +0.1606827 0.03925039 0.002418731 +0.1862481 0.03925039 0.002418731 +0.2140411 0.03925039 0.002418731 +0.2441142 0.03925039 0.002418731 +0.2765176 0.03925039 0.002418731 +0.3113005 0.03925039 0.002418731 +0.3485102 0.03925039 0.002418731 +0.388193 0.03925039 0.002418731 +0.4303934 0.03925039 0.002418731 +0.4751555 0.03925039 0.002418731 +0.5225216 0.03925039 0.002418731 +0.5725335 0.03925039 0.002418731 +0.6252316 0.03925039 0.002418731 +0.6806558 0.03925039 0.002418731 +0.7388448 0.03925039 0.002418731 +0.7998369 0.03925039 0.002418731 +0.8636691 0.03925039 0.002418731 +0.9303782 0.03925039 0.002418731 +1 0.03925039 0.002418731 +0 0.05087609 0.002418731 +0.002418731 0.05087609 0.002418731 +0.005155668 0.05087609 0.002418731 +0.009080105 0.05087609 0.002418731 +0.01434988 0.05087609 0.002418731 +0.02107202 0.05087609 0.002418731 +0.02934285 0.05087609 0.002418731 +0.03925039 0.05087609 0.002418731 +0.05087609 0.05087609 0.002418731 +0.06429595 0.05087609 0.002418731 +0.07958143 0.05087609 0.002418731 +0.0968001 0.05087609 0.002418731 +0.1160161 0.05087609 0.002418731 +0.1372908 0.05087609 0.002418731 +0.1606827 0.05087609 0.002418731 +0.1862481 0.05087609 0.002418731 +0.2140411 0.05087609 0.002418731 +0.2441142 0.05087609 0.002418731 +0.2765176 0.05087609 0.002418731 +0.3113005 0.05087609 0.002418731 +0.3485102 0.05087609 0.002418731 +0.388193 0.05087609 0.002418731 +0.4303934 0.05087609 0.002418731 +0.4751555 0.05087609 0.002418731 +0.5225216 0.05087609 0.002418731 +0.5725335 0.05087609 0.002418731 +0.6252316 0.05087609 0.002418731 +0.6806558 0.05087609 0.002418731 +0.7388448 0.05087609 0.002418731 +0.7998369 0.05087609 0.002418731 +0.8636691 0.05087609 0.002418731 +0.9303782 0.05087609 0.002418731 +1 0.05087609 0.002418731 +0 0.06429595 0.002418731 +0.002418731 0.06429595 0.002418731 +0.005155668 0.06429595 0.002418731 +0.009080105 0.06429595 0.002418731 +0.01434988 0.06429595 0.002418731 +0.02107202 0.06429595 0.002418731 +0.02934285 0.06429595 0.002418731 +0.03925039 0.06429595 0.002418731 +0.05087609 0.06429595 0.002418731 +0.06429595 0.06429595 0.002418731 +0.07958143 0.06429595 0.002418731 +0.0968001 0.06429595 0.002418731 +0.1160161 0.06429595 0.002418731 +0.1372908 0.06429595 0.002418731 +0.1606827 0.06429595 0.002418731 +0.1862481 0.06429595 0.002418731 +0.2140411 0.06429595 0.002418731 +0.2441142 0.06429595 0.002418731 +0.2765176 0.06429595 0.002418731 +0.3113005 0.06429595 0.002418731 +0.3485102 0.06429595 0.002418731 +0.388193 0.06429595 0.002418731 +0.4303934 0.06429595 0.002418731 +0.4751555 0.06429595 0.002418731 +0.5225216 0.06429595 0.002418731 +0.5725335 0.06429595 0.002418731 +0.6252316 0.06429595 0.002418731 +0.6806558 0.06429595 0.002418731 +0.7388448 0.06429595 0.002418731 +0.7998369 0.06429595 0.002418731 +0.8636691 0.06429595 0.002418731 +0.9303782 0.06429595 0.002418731 +1 0.06429595 0.002418731 +0 0.07958143 0.002418731 +0.002418731 0.07958143 0.002418731 +0.005155668 0.07958143 0.002418731 +0.009080105 0.07958143 0.002418731 +0.01434988 0.07958143 0.002418731 +0.02107202 0.07958143 0.002418731 +0.02934285 0.07958143 0.002418731 +0.03925039 0.07958143 0.002418731 +0.05087609 0.07958143 0.002418731 +0.06429595 0.07958143 0.002418731 +0.07958143 0.07958143 0.002418731 +0.0968001 0.07958143 0.002418731 +0.1160161 0.07958143 0.002418731 +0.1372908 0.07958143 0.002418731 +0.1606827 0.07958143 0.002418731 +0.1862481 0.07958143 0.002418731 +0.2140411 0.07958143 0.002418731 +0.2441142 0.07958143 0.002418731 +0.2765176 0.07958143 0.002418731 +0.3113005 0.07958143 0.002418731 +0.3485102 0.07958143 0.002418731 +0.388193 0.07958143 0.002418731 +0.4303934 0.07958143 0.002418731 +0.4751555 0.07958143 0.002418731 +0.5225216 0.07958143 0.002418731 +0.5725335 0.07958143 0.002418731 +0.6252316 0.07958143 0.002418731 +0.6806558 0.07958143 0.002418731 +0.7388448 0.07958143 0.002418731 +0.7998369 0.07958143 0.002418731 +0.8636691 0.07958143 0.002418731 +0.9303782 0.07958143 0.002418731 +1 0.07958143 0.002418731 +0 0.0968001 0.002418731 +0.002418731 0.0968001 0.002418731 +0.005155668 0.0968001 0.002418731 +0.009080105 0.0968001 0.002418731 +0.01434988 0.0968001 0.002418731 +0.02107202 0.0968001 0.002418731 +0.02934285 0.0968001 0.002418731 +0.03925039 0.0968001 0.002418731 +0.05087609 0.0968001 0.002418731 +0.06429595 0.0968001 0.002418731 +0.07958143 0.0968001 0.002418731 +0.0968001 0.0968001 0.002418731 +0.1160161 0.0968001 0.002418731 +0.1372908 0.0968001 0.002418731 +0.1606827 0.0968001 0.002418731 +0.1862481 0.0968001 0.002418731 +0.2140411 0.0968001 0.002418731 +0.2441142 0.0968001 0.002418731 +0.2765176 0.0968001 0.002418731 +0.3113005 0.0968001 0.002418731 +0.3485102 0.0968001 0.002418731 +0.388193 0.0968001 0.002418731 +0.4303934 0.0968001 0.002418731 +0.4751555 0.0968001 0.002418731 +0.5225216 0.0968001 0.002418731 +0.5725335 0.0968001 0.002418731 +0.6252316 0.0968001 0.002418731 +0.6806558 0.0968001 0.002418731 +0.7388448 0.0968001 0.002418731 +0.7998369 0.0968001 0.002418731 +0.8636691 0.0968001 0.002418731 +0.9303782 0.0968001 0.002418731 +1 0.0968001 0.002418731 +0 0.1160161 0.002418731 +0.002418731 0.1160161 0.002418731 +0.005155668 0.1160161 0.002418731 +0.009080105 0.1160161 0.002418731 +0.01434988 0.1160161 0.002418731 +0.02107202 0.1160161 0.002418731 +0.02934285 0.1160161 0.002418731 +0.03925039 0.1160161 0.002418731 +0.05087609 0.1160161 0.002418731 +0.06429595 0.1160161 0.002418731 +0.07958143 0.1160161 0.002418731 +0.0968001 0.1160161 0.002418731 +0.1160161 0.1160161 0.002418731 +0.1372908 0.1160161 0.002418731 +0.1606827 0.1160161 0.002418731 +0.1862481 0.1160161 0.002418731 +0.2140411 0.1160161 0.002418731 +0.2441142 0.1160161 0.002418731 +0.2765176 0.1160161 0.002418731 +0.3113005 0.1160161 0.002418731 +0.3485102 0.1160161 0.002418731 +0.388193 0.1160161 0.002418731 +0.4303934 0.1160161 0.002418731 +0.4751555 0.1160161 0.002418731 +0.5225216 0.1160161 0.002418731 +0.5725335 0.1160161 0.002418731 +0.6252316 0.1160161 0.002418731 +0.6806558 0.1160161 0.002418731 +0.7388448 0.1160161 0.002418731 +0.7998369 0.1160161 0.002418731 +0.8636691 0.1160161 0.002418731 +0.9303782 0.1160161 0.002418731 +1 0.1160161 0.002418731 +0 0.1372908 0.002418731 +0.002418731 0.1372908 0.002418731 +0.005155668 0.1372908 0.002418731 +0.009080105 0.1372908 0.002418731 +0.01434988 0.1372908 0.002418731 +0.02107202 0.1372908 0.002418731 +0.02934285 0.1372908 0.002418731 +0.03925039 0.1372908 0.002418731 +0.05087609 0.1372908 0.002418731 +0.06429595 0.1372908 0.002418731 +0.07958143 0.1372908 0.002418731 +0.0968001 0.1372908 0.002418731 +0.1160161 0.1372908 0.002418731 +0.1372908 0.1372908 0.002418731 +0.1606827 0.1372908 0.002418731 +0.1862481 0.1372908 0.002418731 +0.2140411 0.1372908 0.002418731 +0.2441142 0.1372908 0.002418731 +0.2765176 0.1372908 0.002418731 +0.3113005 0.1372908 0.002418731 +0.3485102 0.1372908 0.002418731 +0.388193 0.1372908 0.002418731 +0.4303934 0.1372908 0.002418731 +0.4751555 0.1372908 0.002418731 +0.5225216 0.1372908 0.002418731 +0.5725335 0.1372908 0.002418731 +0.6252316 0.1372908 0.002418731 +0.6806558 0.1372908 0.002418731 +0.7388448 0.1372908 0.002418731 +0.7998369 0.1372908 0.002418731 +0.8636691 0.1372908 0.002418731 +0.9303782 0.1372908 0.002418731 +1 0.1372908 0.002418731 +0 0.1606827 0.002418731 +0.002418731 0.1606827 0.002418731 +0.005155668 0.1606827 0.002418731 +0.009080105 0.1606827 0.002418731 +0.01434988 0.1606827 0.002418731 +0.02107202 0.1606827 0.002418731 +0.02934285 0.1606827 0.002418731 +0.03925039 0.1606827 0.002418731 +0.05087609 0.1606827 0.002418731 +0.06429595 0.1606827 0.002418731 +0.07958143 0.1606827 0.002418731 +0.0968001 0.1606827 0.002418731 +0.1160161 0.1606827 0.002418731 +0.1372908 0.1606827 0.002418731 +0.1606827 0.1606827 0.002418731 +0.1862481 0.1606827 0.002418731 +0.2140411 0.1606827 0.002418731 +0.2441142 0.1606827 0.002418731 +0.2765176 0.1606827 0.002418731 +0.3113005 0.1606827 0.002418731 +0.3485102 0.1606827 0.002418731 +0.388193 0.1606827 0.002418731 +0.4303934 0.1606827 0.002418731 +0.4751555 0.1606827 0.002418731 +0.5225216 0.1606827 0.002418731 +0.5725335 0.1606827 0.002418731 +0.6252316 0.1606827 0.002418731 +0.6806558 0.1606827 0.002418731 +0.7388448 0.1606827 0.002418731 +0.7998369 0.1606827 0.002418731 +0.8636691 0.1606827 0.002418731 +0.9303782 0.1606827 0.002418731 +1 0.1606827 0.002418731 +0 0.1862481 0.002418731 +0.002418731 0.1862481 0.002418731 +0.005155668 0.1862481 0.002418731 +0.009080105 0.1862481 0.002418731 +0.01434988 0.1862481 0.002418731 +0.02107202 0.1862481 0.002418731 +0.02934285 0.1862481 0.002418731 +0.03925039 0.1862481 0.002418731 +0.05087609 0.1862481 0.002418731 +0.06429595 0.1862481 0.002418731 +0.07958143 0.1862481 0.002418731 +0.0968001 0.1862481 0.002418731 +0.1160161 0.1862481 0.002418731 +0.1372908 0.1862481 0.002418731 +0.1606827 0.1862481 0.002418731 +0.1862481 0.1862481 0.002418731 +0.2140411 0.1862481 0.002418731 +0.2441142 0.1862481 0.002418731 +0.2765176 0.1862481 0.002418731 +0.3113005 0.1862481 0.002418731 +0.3485102 0.1862481 0.002418731 +0.388193 0.1862481 0.002418731 +0.4303934 0.1862481 0.002418731 +0.4751555 0.1862481 0.002418731 +0.5225216 0.1862481 0.002418731 +0.5725335 0.1862481 0.002418731 +0.6252316 0.1862481 0.002418731 +0.6806558 0.1862481 0.002418731 +0.7388448 0.1862481 0.002418731 +0.7998369 0.1862481 0.002418731 +0.8636691 0.1862481 0.002418731 +0.9303782 0.1862481 0.002418731 +1 0.1862481 0.002418731 +0 0.2140411 0.002418731 +0.002418731 0.2140411 0.002418731 +0.005155668 0.2140411 0.002418731 +0.009080105 0.2140411 0.002418731 +0.01434988 0.2140411 0.002418731 +0.02107202 0.2140411 0.002418731 +0.02934285 0.2140411 0.002418731 +0.03925039 0.2140411 0.002418731 +0.05087609 0.2140411 0.002418731 +0.06429595 0.2140411 0.002418731 +0.07958143 0.2140411 0.002418731 +0.0968001 0.2140411 0.002418731 +0.1160161 0.2140411 0.002418731 +0.1372908 0.2140411 0.002418731 +0.1606827 0.2140411 0.002418731 +0.1862481 0.2140411 0.002418731 +0.2140411 0.2140411 0.002418731 +0.2441142 0.2140411 0.002418731 +0.2765176 0.2140411 0.002418731 +0.3113005 0.2140411 0.002418731 +0.3485102 0.2140411 0.002418731 +0.388193 0.2140411 0.002418731 +0.4303934 0.2140411 0.002418731 +0.4751555 0.2140411 0.002418731 +0.5225216 0.2140411 0.002418731 +0.5725335 0.2140411 0.002418731 +0.6252316 0.2140411 0.002418731 +0.6806558 0.2140411 0.002418731 +0.7388448 0.2140411 0.002418731 +0.7998369 0.2140411 0.002418731 +0.8636691 0.2140411 0.002418731 +0.9303782 0.2140411 0.002418731 +1 0.2140411 0.002418731 +0 0.2441142 0.002418731 +0.002418731 0.2441142 0.002418731 +0.005155668 0.2441142 0.002418731 +0.009080105 0.2441142 0.002418731 +0.01434988 0.2441142 0.002418731 +0.02107202 0.2441142 0.002418731 +0.02934285 0.2441142 0.002418731 +0.03925039 0.2441142 0.002418731 +0.05087609 0.2441142 0.002418731 +0.06429595 0.2441142 0.002418731 +0.07958143 0.2441142 0.002418731 +0.0968001 0.2441142 0.002418731 +0.1160161 0.2441142 0.002418731 +0.1372908 0.2441142 0.002418731 +0.1606827 0.2441142 0.002418731 +0.1862481 0.2441142 0.002418731 +0.2140411 0.2441142 0.002418731 +0.2441142 0.2441142 0.002418731 +0.2765176 0.2441142 0.002418731 +0.3113005 0.2441142 0.002418731 +0.3485102 0.2441142 0.002418731 +0.388193 0.2441142 0.002418731 +0.4303934 0.2441142 0.002418731 +0.4751555 0.2441142 0.002418731 +0.5225216 0.2441142 0.002418731 +0.5725335 0.2441142 0.002418731 +0.6252316 0.2441142 0.002418731 +0.6806558 0.2441142 0.002418731 +0.7388448 0.2441142 0.002418731 +0.7998369 0.2441142 0.002418731 +0.8636691 0.2441142 0.002418731 +0.9303782 0.2441142 0.002418731 +1 0.2441142 0.002418731 +0 0.2765176 0.002418731 +0.002418731 0.2765176 0.002418731 +0.005155668 0.2765176 0.002418731 +0.009080105 0.2765176 0.002418731 +0.01434988 0.2765176 0.002418731 +0.02107202 0.2765176 0.002418731 +0.02934285 0.2765176 0.002418731 +0.03925039 0.2765176 0.002418731 +0.05087609 0.2765176 0.002418731 +0.06429595 0.2765176 0.002418731 +0.07958143 0.2765176 0.002418731 +0.0968001 0.2765176 0.002418731 +0.1160161 0.2765176 0.002418731 +0.1372908 0.2765176 0.002418731 +0.1606827 0.2765176 0.002418731 +0.1862481 0.2765176 0.002418731 +0.2140411 0.2765176 0.002418731 +0.2441142 0.2765176 0.002418731 +0.2765176 0.2765176 0.002418731 +0.3113005 0.2765176 0.002418731 +0.3485102 0.2765176 0.002418731 +0.388193 0.2765176 0.002418731 +0.4303934 0.2765176 0.002418731 +0.4751555 0.2765176 0.002418731 +0.5225216 0.2765176 0.002418731 +0.5725335 0.2765176 0.002418731 +0.6252316 0.2765176 0.002418731 +0.6806558 0.2765176 0.002418731 +0.7388448 0.2765176 0.002418731 +0.7998369 0.2765176 0.002418731 +0.8636691 0.2765176 0.002418731 +0.9303782 0.2765176 0.002418731 +1 0.2765176 0.002418731 +0 0.3113005 0.002418731 +0.002418731 0.3113005 0.002418731 +0.005155668 0.3113005 0.002418731 +0.009080105 0.3113005 0.002418731 +0.01434988 0.3113005 0.002418731 +0.02107202 0.3113005 0.002418731 +0.02934285 0.3113005 0.002418731 +0.03925039 0.3113005 0.002418731 +0.05087609 0.3113005 0.002418731 +0.06429595 0.3113005 0.002418731 +0.07958143 0.3113005 0.002418731 +0.0968001 0.3113005 0.002418731 +0.1160161 0.3113005 0.002418731 +0.1372908 0.3113005 0.002418731 +0.1606827 0.3113005 0.002418731 +0.1862481 0.3113005 0.002418731 +0.2140411 0.3113005 0.002418731 +0.2441142 0.3113005 0.002418731 +0.2765176 0.3113005 0.002418731 +0.3113005 0.3113005 0.002418731 +0.3485102 0.3113005 0.002418731 +0.388193 0.3113005 0.002418731 +0.4303934 0.3113005 0.002418731 +0.4751555 0.3113005 0.002418731 +0.5225216 0.3113005 0.002418731 +0.5725335 0.3113005 0.002418731 +0.6252316 0.3113005 0.002418731 +0.6806558 0.3113005 0.002418731 +0.7388448 0.3113005 0.002418731 +0.7998369 0.3113005 0.002418731 +0.8636691 0.3113005 0.002418731 +0.9303782 0.3113005 0.002418731 +1 0.3113005 0.002418731 +0 0.3485102 0.002418731 +0.002418731 0.3485102 0.002418731 +0.005155668 0.3485102 0.002418731 +0.009080105 0.3485102 0.002418731 +0.01434988 0.3485102 0.002418731 +0.02107202 0.3485102 0.002418731 +0.02934285 0.3485102 0.002418731 +0.03925039 0.3485102 0.002418731 +0.05087609 0.3485102 0.002418731 +0.06429595 0.3485102 0.002418731 +0.07958143 0.3485102 0.002418731 +0.0968001 0.3485102 0.002418731 +0.1160161 0.3485102 0.002418731 +0.1372908 0.3485102 0.002418731 +0.1606827 0.3485102 0.002418731 +0.1862481 0.3485102 0.002418731 +0.2140411 0.3485102 0.002418731 +0.2441142 0.3485102 0.002418731 +0.2765176 0.3485102 0.002418731 +0.3113005 0.3485102 0.002418731 +0.3485102 0.3485102 0.002418731 +0.388193 0.3485102 0.002418731 +0.4303934 0.3485102 0.002418731 +0.4751555 0.3485102 0.002418731 +0.5225216 0.3485102 0.002418731 +0.5725335 0.3485102 0.002418731 +0.6252316 0.3485102 0.002418731 +0.6806558 0.3485102 0.002418731 +0.7388448 0.3485102 0.002418731 +0.7998369 0.3485102 0.002418731 +0.8636691 0.3485102 0.002418731 +0.9303782 0.3485102 0.002418731 +1 0.3485102 0.002418731 +0 0.388193 0.002418731 +0.002418731 0.388193 0.002418731 +0.005155668 0.388193 0.002418731 +0.009080105 0.388193 0.002418731 +0.01434988 0.388193 0.002418731 +0.02107202 0.388193 0.002418731 +0.02934285 0.388193 0.002418731 +0.03925039 0.388193 0.002418731 +0.05087609 0.388193 0.002418731 +0.06429595 0.388193 0.002418731 +0.07958143 0.388193 0.002418731 +0.0968001 0.388193 0.002418731 +0.1160161 0.388193 0.002418731 +0.1372908 0.388193 0.002418731 +0.1606827 0.388193 0.002418731 +0.1862481 0.388193 0.002418731 +0.2140411 0.388193 0.002418731 +0.2441142 0.388193 0.002418731 +0.2765176 0.388193 0.002418731 +0.3113005 0.388193 0.002418731 +0.3485102 0.388193 0.002418731 +0.388193 0.388193 0.002418731 +0.4303934 0.388193 0.002418731 +0.4751555 0.388193 0.002418731 +0.5225216 0.388193 0.002418731 +0.5725335 0.388193 0.002418731 +0.6252316 0.388193 0.002418731 +0.6806558 0.388193 0.002418731 +0.7388448 0.388193 0.002418731 +0.7998369 0.388193 0.002418731 +0.8636691 0.388193 0.002418731 +0.9303782 0.388193 0.002418731 +1 0.388193 0.002418731 +0 0.4303934 0.002418731 +0.002418731 0.4303934 0.002418731 +0.005155668 0.4303934 0.002418731 +0.009080105 0.4303934 0.002418731 +0.01434988 0.4303934 0.002418731 +0.02107202 0.4303934 0.002418731 +0.02934285 0.4303934 0.002418731 +0.03925039 0.4303934 0.002418731 +0.05087609 0.4303934 0.002418731 +0.06429595 0.4303934 0.002418731 +0.07958143 0.4303934 0.002418731 +0.0968001 0.4303934 0.002418731 +0.1160161 0.4303934 0.002418731 +0.1372908 0.4303934 0.002418731 +0.1606827 0.4303934 0.002418731 +0.1862481 0.4303934 0.002418731 +0.2140411 0.4303934 0.002418731 +0.2441142 0.4303934 0.002418731 +0.2765176 0.4303934 0.002418731 +0.3113005 0.4303934 0.002418731 +0.3485102 0.4303934 0.002418731 +0.388193 0.4303934 0.002418731 +0.4303934 0.4303934 0.002418731 +0.4751555 0.4303934 0.002418731 +0.5225216 0.4303934 0.002418731 +0.5725335 0.4303934 0.002418731 +0.6252316 0.4303934 0.002418731 +0.6806558 0.4303934 0.002418731 +0.7388448 0.4303934 0.002418731 +0.7998369 0.4303934 0.002418731 +0.8636691 0.4303934 0.002418731 +0.9303782 0.4303934 0.002418731 +1 0.4303934 0.002418731 +0 0.4751555 0.002418731 +0.002418731 0.4751555 0.002418731 +0.005155668 0.4751555 0.002418731 +0.009080105 0.4751555 0.002418731 +0.01434988 0.4751555 0.002418731 +0.02107202 0.4751555 0.002418731 +0.02934285 0.4751555 0.002418731 +0.03925039 0.4751555 0.002418731 +0.05087609 0.4751555 0.002418731 +0.06429595 0.4751555 0.002418731 +0.07958143 0.4751555 0.002418731 +0.0968001 0.4751555 0.002418731 +0.1160161 0.4751555 0.002418731 +0.1372908 0.4751555 0.002418731 +0.1606827 0.4751555 0.002418731 +0.1862481 0.4751555 0.002418731 +0.2140411 0.4751555 0.002418731 +0.2441142 0.4751555 0.002418731 +0.2765176 0.4751555 0.002418731 +0.3113005 0.4751555 0.002418731 +0.3485102 0.4751555 0.002418731 +0.388193 0.4751555 0.002418731 +0.4303934 0.4751555 0.002418731 +0.4751555 0.4751555 0.002418731 +0.5225216 0.4751555 0.002418731 +0.5725335 0.4751555 0.002418731 +0.6252316 0.4751555 0.002418731 +0.6806558 0.4751555 0.002418731 +0.7388448 0.4751555 0.002418731 +0.7998369 0.4751555 0.002418731 +0.8636691 0.4751555 0.002418731 +0.9303782 0.4751555 0.002418731 +1 0.4751555 0.002418731 +0 0.5225216 0.002418731 +0.002418731 0.5225216 0.002418731 +0.005155668 0.5225216 0.002418731 +0.009080105 0.5225216 0.002418731 +0.01434988 0.5225216 0.002418731 +0.02107202 0.5225216 0.002418731 +0.02934285 0.5225216 0.002418731 +0.03925039 0.5225216 0.002418731 +0.05087609 0.5225216 0.002418731 +0.06429595 0.5225216 0.002418731 +0.07958143 0.5225216 0.002418731 +0.0968001 0.5225216 0.002418731 +0.1160161 0.5225216 0.002418731 +0.1372908 0.5225216 0.002418731 +0.1606827 0.5225216 0.002418731 +0.1862481 0.5225216 0.002418731 +0.2140411 0.5225216 0.002418731 +0.2441142 0.5225216 0.002418731 +0.2765176 0.5225216 0.002418731 +0.3113005 0.5225216 0.002418731 +0.3485102 0.5225216 0.002418731 +0.388193 0.5225216 0.002418731 +0.4303934 0.5225216 0.002418731 +0.4751555 0.5225216 0.002418731 +0.5225216 0.5225216 0.002418731 +0.5725335 0.5225216 0.002418731 +0.6252316 0.5225216 0.002418731 +0.6806558 0.5225216 0.002418731 +0.7388448 0.5225216 0.002418731 +0.7998369 0.5225216 0.002418731 +0.8636691 0.5225216 0.002418731 +0.9303782 0.5225216 0.002418731 +1 0.5225216 0.002418731 +0 0.5725335 0.002418731 +0.002418731 0.5725335 0.002418731 +0.005155668 0.5725335 0.002418731 +0.009080105 0.5725335 0.002418731 +0.01434988 0.5725335 0.002418731 +0.02107202 0.5725335 0.002418731 +0.02934285 0.5725335 0.002418731 +0.03925039 0.5725335 0.002418731 +0.05087609 0.5725335 0.002418731 +0.06429595 0.5725335 0.002418731 +0.07958143 0.5725335 0.002418731 +0.0968001 0.5725335 0.002418731 +0.1160161 0.5725335 0.002418731 +0.1372908 0.5725335 0.002418731 +0.1606827 0.5725335 0.002418731 +0.1862481 0.5725335 0.002418731 +0.2140411 0.5725335 0.002418731 +0.2441142 0.5725335 0.002418731 +0.2765176 0.5725335 0.002418731 +0.3113005 0.5725335 0.002418731 +0.3485102 0.5725335 0.002418731 +0.388193 0.5725335 0.002418731 +0.4303934 0.5725335 0.002418731 +0.4751555 0.5725335 0.002418731 +0.5225216 0.5725335 0.002418731 +0.5725335 0.5725335 0.002418731 +0.6252316 0.5725335 0.002418731 +0.6806558 0.5725335 0.002418731 +0.7388448 0.5725335 0.002418731 +0.7998369 0.5725335 0.002418731 +0.8636691 0.5725335 0.002418731 +0.9303782 0.5725335 0.002418731 +1 0.5725335 0.002418731 +0 0.6252316 0.002418731 +0.002418731 0.6252316 0.002418731 +0.005155668 0.6252316 0.002418731 +0.009080105 0.6252316 0.002418731 +0.01434988 0.6252316 0.002418731 +0.02107202 0.6252316 0.002418731 +0.02934285 0.6252316 0.002418731 +0.03925039 0.6252316 0.002418731 +0.05087609 0.6252316 0.002418731 +0.06429595 0.6252316 0.002418731 +0.07958143 0.6252316 0.002418731 +0.0968001 0.6252316 0.002418731 +0.1160161 0.6252316 0.002418731 +0.1372908 0.6252316 0.002418731 +0.1606827 0.6252316 0.002418731 +0.1862481 0.6252316 0.002418731 +0.2140411 0.6252316 0.002418731 +0.2441142 0.6252316 0.002418731 +0.2765176 0.6252316 0.002418731 +0.3113005 0.6252316 0.002418731 +0.3485102 0.6252316 0.002418731 +0.388193 0.6252316 0.002418731 +0.4303934 0.6252316 0.002418731 +0.4751555 0.6252316 0.002418731 +0.5225216 0.6252316 0.002418731 +0.5725335 0.6252316 0.002418731 +0.6252316 0.6252316 0.002418731 +0.6806558 0.6252316 0.002418731 +0.7388448 0.6252316 0.002418731 +0.7998369 0.6252316 0.002418731 +0.8636691 0.6252316 0.002418731 +0.9303782 0.6252316 0.002418731 +1 0.6252316 0.002418731 +0 0.6806558 0.002418731 +0.002418731 0.6806558 0.002418731 +0.005155668 0.6806558 0.002418731 +0.009080105 0.6806558 0.002418731 +0.01434988 0.6806558 0.002418731 +0.02107202 0.6806558 0.002418731 +0.02934285 0.6806558 0.002418731 +0.03925039 0.6806558 0.002418731 +0.05087609 0.6806558 0.002418731 +0.06429595 0.6806558 0.002418731 +0.07958143 0.6806558 0.002418731 +0.0968001 0.6806558 0.002418731 +0.1160161 0.6806558 0.002418731 +0.1372908 0.6806558 0.002418731 +0.1606827 0.6806558 0.002418731 +0.1862481 0.6806558 0.002418731 +0.2140411 0.6806558 0.002418731 +0.2441142 0.6806558 0.002418731 +0.2765176 0.6806558 0.002418731 +0.3113005 0.6806558 0.002418731 +0.3485102 0.6806558 0.002418731 +0.388193 0.6806558 0.002418731 +0.4303934 0.6806558 0.002418731 +0.4751555 0.6806558 0.002418731 +0.5225216 0.6806558 0.002418731 +0.5725335 0.6806558 0.002418731 +0.6252316 0.6806558 0.002418731 +0.6806558 0.6806558 0.002418731 +0.7388448 0.6806558 0.002418731 +0.7998369 0.6806558 0.002418731 +0.8636691 0.6806558 0.002418731 +0.9303782 0.6806558 0.002418731 +1 0.6806558 0.002418731 +0 0.7388448 0.002418731 +0.002418731 0.7388448 0.002418731 +0.005155668 0.7388448 0.002418731 +0.009080105 0.7388448 0.002418731 +0.01434988 0.7388448 0.002418731 +0.02107202 0.7388448 0.002418731 +0.02934285 0.7388448 0.002418731 +0.03925039 0.7388448 0.002418731 +0.05087609 0.7388448 0.002418731 +0.06429595 0.7388448 0.002418731 +0.07958143 0.7388448 0.002418731 +0.0968001 0.7388448 0.002418731 +0.1160161 0.7388448 0.002418731 +0.1372908 0.7388448 0.002418731 +0.1606827 0.7388448 0.002418731 +0.1862481 0.7388448 0.002418731 +0.2140411 0.7388448 0.002418731 +0.2441142 0.7388448 0.002418731 +0.2765176 0.7388448 0.002418731 +0.3113005 0.7388448 0.002418731 +0.3485102 0.7388448 0.002418731 +0.388193 0.7388448 0.002418731 +0.4303934 0.7388448 0.002418731 +0.4751555 0.7388448 0.002418731 +0.5225216 0.7388448 0.002418731 +0.5725335 0.7388448 0.002418731 +0.6252316 0.7388448 0.002418731 +0.6806558 0.7388448 0.002418731 +0.7388448 0.7388448 0.002418731 +0.7998369 0.7388448 0.002418731 +0.8636691 0.7388448 0.002418731 +0.9303782 0.7388448 0.002418731 +1 0.7388448 0.002418731 +0 0.7998369 0.002418731 +0.002418731 0.7998369 0.002418731 +0.005155668 0.7998369 0.002418731 +0.009080105 0.7998369 0.002418731 +0.01434988 0.7998369 0.002418731 +0.02107202 0.7998369 0.002418731 +0.02934285 0.7998369 0.002418731 +0.03925039 0.7998369 0.002418731 +0.05087609 0.7998369 0.002418731 +0.06429595 0.7998369 0.002418731 +0.07958143 0.7998369 0.002418731 +0.0968001 0.7998369 0.002418731 +0.1160161 0.7998369 0.002418731 +0.1372908 0.7998369 0.002418731 +0.1606827 0.7998369 0.002418731 +0.1862481 0.7998369 0.002418731 +0.2140411 0.7998369 0.002418731 +0.2441142 0.7998369 0.002418731 +0.2765176 0.7998369 0.002418731 +0.3113005 0.7998369 0.002418731 +0.3485102 0.7998369 0.002418731 +0.388193 0.7998369 0.002418731 +0.4303934 0.7998369 0.002418731 +0.4751555 0.7998369 0.002418731 +0.5225216 0.7998369 0.002418731 +0.5725335 0.7998369 0.002418731 +0.6252316 0.7998369 0.002418731 +0.6806558 0.7998369 0.002418731 +0.7388448 0.7998369 0.002418731 +0.7998369 0.7998369 0.002418731 +0.8636691 0.7998369 0.002418731 +0.9303782 0.7998369 0.002418731 +1 0.7998369 0.002418731 +0 0.8636691 0.002418731 +0.002418731 0.8636691 0.002418731 +0.005155668 0.8636691 0.002418731 +0.009080105 0.8636691 0.002418731 +0.01434988 0.8636691 0.002418731 +0.02107202 0.8636691 0.002418731 +0.02934285 0.8636691 0.002418731 +0.03925039 0.8636691 0.002418731 +0.05087609 0.8636691 0.002418731 +0.06429595 0.8636691 0.002418731 +0.07958143 0.8636691 0.002418731 +0.0968001 0.8636691 0.002418731 +0.1160161 0.8636691 0.002418731 +0.1372908 0.8636691 0.002418731 +0.1606827 0.8636691 0.002418731 +0.1862481 0.8636691 0.002418731 +0.2140411 0.8636691 0.002418731 +0.2441142 0.8636691 0.002418731 +0.2765176 0.8636691 0.002418731 +0.3113005 0.8636691 0.002418731 +0.3485102 0.8636691 0.002418731 +0.388193 0.8636691 0.002418731 +0.4303934 0.8636691 0.002418731 +0.4751555 0.8636691 0.002418731 +0.5225216 0.8636691 0.002418731 +0.5725335 0.8636691 0.002418731 +0.6252316 0.8636691 0.002418731 +0.6806558 0.8636691 0.002418731 +0.7388448 0.8636691 0.002418731 +0.7998369 0.8636691 0.002418731 +0.8636691 0.8636691 0.002418731 +0.9303782 0.8636691 0.002418731 +1 0.8636691 0.002418731 +0 0.9303782 0.002418731 +0.002418731 0.9303782 0.002418731 +0.005155668 0.9303782 0.002418731 +0.009080105 0.9303782 0.002418731 +0.01434988 0.9303782 0.002418731 +0.02107202 0.9303782 0.002418731 +0.02934285 0.9303782 0.002418731 +0.03925039 0.9303782 0.002418731 +0.05087609 0.9303782 0.002418731 +0.06429595 0.9303782 0.002418731 +0.07958143 0.9303782 0.002418731 +0.0968001 0.9303782 0.002418731 +0.1160161 0.9303782 0.002418731 +0.1372908 0.9303782 0.002418731 +0.1606827 0.9303782 0.002418731 +0.1862481 0.9303782 0.002418731 +0.2140411 0.9303782 0.002418731 +0.2441142 0.9303782 0.002418731 +0.2765176 0.9303782 0.002418731 +0.3113005 0.9303782 0.002418731 +0.3485102 0.9303782 0.002418731 +0.388193 0.9303782 0.002418731 +0.4303934 0.9303782 0.002418731 +0.4751555 0.9303782 0.002418731 +0.5225216 0.9303782 0.002418731 +0.5725335 0.9303782 0.002418731 +0.6252316 0.9303782 0.002418731 +0.6806558 0.9303782 0.002418731 +0.7388448 0.9303782 0.002418731 +0.7998369 0.9303782 0.002418731 +0.8636691 0.9303782 0.002418731 +0.9303782 0.9303782 0.002418731 +1 0.9303782 0.002418731 +0 1 0.002418731 +0.002418731 1 0.002418731 +0.005155668 1 0.002418731 +0.009080105 1 0.002418731 +0.01434988 1 0.002418731 +0.02107202 1 0.002418731 +0.02934285 1 0.002418731 +0.03925039 1 0.002418731 +0.05087609 1 0.002418731 +0.06429595 1 0.002418731 +0.07958143 1 0.002418731 +0.0968001 1 0.002418731 +0.1160161 1 0.002418731 +0.1372908 1 0.002418731 +0.1606827 1 0.002418731 +0.1862481 1 0.002418731 +0.2140411 1 0.002418731 +0.2441142 1 0.002418731 +0.2765176 1 0.002418731 +0.3113005 1 0.002418731 +0.3485102 1 0.002418731 +0.388193 1 0.002418731 +0.4303934 1 0.002418731 +0.4751555 1 0.002418731 +0.5225216 1 0.002418731 +0.5725335 1 0.002418731 +0.6252316 1 0.002418731 +0.6806558 1 0.002418731 +0.7388448 1 0.002418731 +0.7998369 1 0.002418731 +0.8636691 1 0.002418731 +0.9303782 1 0.002418731 +1 1 0.002418731 +0 0 0.005155668 +0.002418731 0 0.005155668 +0.005155668 0 0.005155668 +0.009080105 0 0.005155668 +0.01434988 0 0.005155668 +0.02107202 0 0.005155668 +0.02934285 0 0.005155668 +0.03925039 0 0.005155668 +0.05087609 0 0.005155668 +0.06429595 0 0.005155668 +0.07958143 0 0.005155668 +0.0968001 0 0.005155668 +0.1160161 0 0.005155668 +0.1372908 0 0.005155668 +0.1606827 0 0.005155668 +0.1862481 0 0.005155668 +0.2140411 0 0.005155668 +0.2441142 0 0.005155668 +0.2765176 0 0.005155668 +0.3113005 0 0.005155668 +0.3485102 0 0.005155668 +0.388193 0 0.005155668 +0.4303934 0 0.005155668 +0.4751555 0 0.005155668 +0.5225216 0 0.005155668 +0.5725335 0 0.005155668 +0.6252316 0 0.005155668 +0.6806558 0 0.005155668 +0.7388448 0 0.005155668 +0.7998369 0 0.005155668 +0.8636691 0 0.005155668 +0.9303782 0 0.005155668 +1 0 0.005155668 +0 0.002418731 0.005155668 +0.002418731 0.002418731 0.005155668 +0.005155668 0.002418731 0.005155668 +0.009080105 0.002418731 0.005155668 +0.01434988 0.002418731 0.005155668 +0.02107202 0.002418731 0.005155668 +0.02934285 0.002418731 0.005155668 +0.03925039 0.002418731 0.005155668 +0.05087609 0.002418731 0.005155668 +0.06429595 0.002418731 0.005155668 +0.07958143 0.002418731 0.005155668 +0.0968001 0.002418731 0.005155668 +0.1160161 0.002418731 0.005155668 +0.1372908 0.002418731 0.005155668 +0.1606827 0.002418731 0.005155668 +0.1862481 0.002418731 0.005155668 +0.2140411 0.002418731 0.005155668 +0.2441142 0.002418731 0.005155668 +0.2765176 0.002418731 0.005155668 +0.3113005 0.002418731 0.005155668 +0.3485102 0.002418731 0.005155668 +0.388193 0.002418731 0.005155668 +0.4303934 0.002418731 0.005155668 +0.4751555 0.002418731 0.005155668 +0.5225216 0.002418731 0.005155668 +0.5725335 0.002418731 0.005155668 +0.6252316 0.002418731 0.005155668 +0.6806558 0.002418731 0.005155668 +0.7388448 0.002418731 0.005155668 +0.7998369 0.002418731 0.005155668 +0.8636691 0.002418731 0.005155668 +0.9303782 0.002418731 0.005155668 +1 0.002418731 0.005155668 +0 0.005155668 0.005155668 +0.002418731 0.005155668 0.005155668 +0.005155668 0.005155668 0.005155668 +0.009080105 0.005155668 0.005155668 +0.01434988 0.005155668 0.005155668 +0.02107202 0.005155668 0.005155668 +0.02934285 0.005155668 0.005155668 +0.03925039 0.005155668 0.005155668 +0.05087609 0.005155668 0.005155668 +0.06429595 0.005155668 0.005155668 +0.07958143 0.005155668 0.005155668 +0.0968001 0.005155668 0.005155668 +0.1160161 0.005155668 0.005155668 +0.1372908 0.005155668 0.005155668 +0.1606827 0.005155668 0.005155668 +0.1862481 0.005155668 0.005155668 +0.2140411 0.005155668 0.005155668 +0.2441142 0.005155668 0.005155668 +0.2765176 0.005155668 0.005155668 +0.3113005 0.005155668 0.005155668 +0.3485102 0.005155668 0.005155668 +0.388193 0.005155668 0.005155668 +0.4303934 0.005155668 0.005155668 +0.4751555 0.005155668 0.005155668 +0.5225216 0.005155668 0.005155668 +0.5725335 0.005155668 0.005155668 +0.6252316 0.005155668 0.005155668 +0.6806558 0.005155668 0.005155668 +0.7388448 0.005155668 0.005155668 +0.7998369 0.005155668 0.005155668 +0.8636691 0.005155668 0.005155668 +0.9303782 0.005155668 0.005155668 +1 0.005155668 0.005155668 +0 0.009080105 0.005155668 +0.002418731 0.009080105 0.005155668 +0.005155668 0.009080105 0.005155668 +0.009080105 0.009080105 0.005155668 +0.01434988 0.009080105 0.005155668 +0.02107202 0.009080105 0.005155668 +0.02934285 0.009080105 0.005155668 +0.03925039 0.009080105 0.005155668 +0.05087609 0.009080105 0.005155668 +0.06429595 0.009080105 0.005155668 +0.07958143 0.009080105 0.005155668 +0.0968001 0.009080105 0.005155668 +0.1160161 0.009080105 0.005155668 +0.1372908 0.009080105 0.005155668 +0.1606827 0.009080105 0.005155668 +0.1862481 0.009080105 0.005155668 +0.2140411 0.009080105 0.005155668 +0.2441142 0.009080105 0.005155668 +0.2765176 0.009080105 0.005155668 +0.3113005 0.009080105 0.005155668 +0.3485102 0.009080105 0.005155668 +0.388193 0.009080105 0.005155668 +0.4303934 0.009080105 0.005155668 +0.4751555 0.009080105 0.005155668 +0.5225216 0.009080105 0.005155668 +0.5725335 0.009080105 0.005155668 +0.6252316 0.009080105 0.005155668 +0.6806558 0.009080105 0.005155668 +0.7388448 0.009080105 0.005155668 +0.7998369 0.009080105 0.005155668 +0.8636691 0.009080105 0.005155668 +0.9303782 0.009080105 0.005155668 +1 0.009080105 0.005155668 +0 0.01434988 0.005155668 +0.002418731 0.01434988 0.005155668 +0.005155668 0.01434988 0.005155668 +0.009080105 0.01434988 0.005155668 +0.01434988 0.01434988 0.005155668 +0.02107202 0.01434988 0.005155668 +0.02934285 0.01434988 0.005155668 +0.03925039 0.01434988 0.005155668 +0.05087609 0.01434988 0.005155668 +0.06429595 0.01434988 0.005155668 +0.07958143 0.01434988 0.005155668 +0.0968001 0.01434988 0.005155668 +0.1160161 0.01434988 0.005155668 +0.1372908 0.01434988 0.005155668 +0.1606827 0.01434988 0.005155668 +0.1862481 0.01434988 0.005155668 +0.2140411 0.01434988 0.005155668 +0.2441142 0.01434988 0.005155668 +0.2765176 0.01434988 0.005155668 +0.3113005 0.01434988 0.005155668 +0.3485102 0.01434988 0.005155668 +0.388193 0.01434988 0.005155668 +0.4303934 0.01434988 0.005155668 +0.4751555 0.01434988 0.005155668 +0.5225216 0.01434988 0.005155668 +0.5725335 0.01434988 0.005155668 +0.6252316 0.01434988 0.005155668 +0.6806558 0.01434988 0.005155668 +0.7388448 0.01434988 0.005155668 +0.7998369 0.01434988 0.005155668 +0.8636691 0.01434988 0.005155668 +0.9303782 0.01434988 0.005155668 +1 0.01434988 0.005155668 +0 0.02107202 0.005155668 +0.002418731 0.02107202 0.005155668 +0.005155668 0.02107202 0.005155668 +0.009080105 0.02107202 0.005155668 +0.01434988 0.02107202 0.005155668 +0.02107202 0.02107202 0.005155668 +0.02934285 0.02107202 0.005155668 +0.03925039 0.02107202 0.005155668 +0.05087609 0.02107202 0.005155668 +0.06429595 0.02107202 0.005155668 +0.07958143 0.02107202 0.005155668 +0.0968001 0.02107202 0.005155668 +0.1160161 0.02107202 0.005155668 +0.1372908 0.02107202 0.005155668 +0.1606827 0.02107202 0.005155668 +0.1862481 0.02107202 0.005155668 +0.2140411 0.02107202 0.005155668 +0.2441142 0.02107202 0.005155668 +0.2765176 0.02107202 0.005155668 +0.3113005 0.02107202 0.005155668 +0.3485102 0.02107202 0.005155668 +0.388193 0.02107202 0.005155668 +0.4303934 0.02107202 0.005155668 +0.4751555 0.02107202 0.005155668 +0.5225216 0.02107202 0.005155668 +0.5725335 0.02107202 0.005155668 +0.6252316 0.02107202 0.005155668 +0.6806558 0.02107202 0.005155668 +0.7388448 0.02107202 0.005155668 +0.7998369 0.02107202 0.005155668 +0.8636691 0.02107202 0.005155668 +0.9303782 0.02107202 0.005155668 +1 0.02107202 0.005155668 +0 0.02934285 0.005155668 +0.002418731 0.02934285 0.005155668 +0.005155668 0.02934285 0.005155668 +0.009080105 0.02934285 0.005155668 +0.01434988 0.02934285 0.005155668 +0.02107202 0.02934285 0.005155668 +0.02934285 0.02934285 0.005155668 +0.03925039 0.02934285 0.005155668 +0.05087609 0.02934285 0.005155668 +0.06429595 0.02934285 0.005155668 +0.07958143 0.02934285 0.005155668 +0.0968001 0.02934285 0.005155668 +0.1160161 0.02934285 0.005155668 +0.1372908 0.02934285 0.005155668 +0.1606827 0.02934285 0.005155668 +0.1862481 0.02934285 0.005155668 +0.2140411 0.02934285 0.005155668 +0.2441142 0.02934285 0.005155668 +0.2765176 0.02934285 0.005155668 +0.3113005 0.02934285 0.005155668 +0.3485102 0.02934285 0.005155668 +0.388193 0.02934285 0.005155668 +0.4303934 0.02934285 0.005155668 +0.4751555 0.02934285 0.005155668 +0.5225216 0.02934285 0.005155668 +0.5725335 0.02934285 0.005155668 +0.6252316 0.02934285 0.005155668 +0.6806558 0.02934285 0.005155668 +0.7388448 0.02934285 0.005155668 +0.7998369 0.02934285 0.005155668 +0.8636691 0.02934285 0.005155668 +0.9303782 0.02934285 0.005155668 +1 0.02934285 0.005155668 +0 0.03925039 0.005155668 +0.002418731 0.03925039 0.005155668 +0.005155668 0.03925039 0.005155668 +0.009080105 0.03925039 0.005155668 +0.01434988 0.03925039 0.005155668 +0.02107202 0.03925039 0.005155668 +0.02934285 0.03925039 0.005155668 +0.03925039 0.03925039 0.005155668 +0.05087609 0.03925039 0.005155668 +0.06429595 0.03925039 0.005155668 +0.07958143 0.03925039 0.005155668 +0.0968001 0.03925039 0.005155668 +0.1160161 0.03925039 0.005155668 +0.1372908 0.03925039 0.005155668 +0.1606827 0.03925039 0.005155668 +0.1862481 0.03925039 0.005155668 +0.2140411 0.03925039 0.005155668 +0.2441142 0.03925039 0.005155668 +0.2765176 0.03925039 0.005155668 +0.3113005 0.03925039 0.005155668 +0.3485102 0.03925039 0.005155668 +0.388193 0.03925039 0.005155668 +0.4303934 0.03925039 0.005155668 +0.4751555 0.03925039 0.005155668 +0.5225216 0.03925039 0.005155668 +0.5725335 0.03925039 0.005155668 +0.6252316 0.03925039 0.005155668 +0.6806558 0.03925039 0.005155668 +0.7388448 0.03925039 0.005155668 +0.7998369 0.03925039 0.005155668 +0.8636691 0.03925039 0.005155668 +0.9303782 0.03925039 0.005155668 +1 0.03925039 0.005155668 +0 0.05087609 0.005155668 +0.002418731 0.05087609 0.005155668 +0.005155668 0.05087609 0.005155668 +0.009080105 0.05087609 0.005155668 +0.01434988 0.05087609 0.005155668 +0.02107202 0.05087609 0.005155668 +0.02934285 0.05087609 0.005155668 +0.03925039 0.05087609 0.005155668 +0.05087609 0.05087609 0.005155668 +0.06429595 0.05087609 0.005155668 +0.07958143 0.05087609 0.005155668 +0.0968001 0.05087609 0.005155668 +0.1160161 0.05087609 0.005155668 +0.1372908 0.05087609 0.005155668 +0.1606827 0.05087609 0.005155668 +0.1862481 0.05087609 0.005155668 +0.2140411 0.05087609 0.005155668 +0.2441142 0.05087609 0.005155668 +0.2765176 0.05087609 0.005155668 +0.3113005 0.05087609 0.005155668 +0.3485102 0.05087609 0.005155668 +0.388193 0.05087609 0.005155668 +0.4303934 0.05087609 0.005155668 +0.4751555 0.05087609 0.005155668 +0.5225216 0.05087609 0.005155668 +0.5725335 0.05087609 0.005155668 +0.6252316 0.05087609 0.005155668 +0.6806558 0.05087609 0.005155668 +0.7388448 0.05087609 0.005155668 +0.7998369 0.05087609 0.005155668 +0.8636691 0.05087609 0.005155668 +0.9303782 0.05087609 0.005155668 +1 0.05087609 0.005155668 +0 0.06429595 0.005155668 +0.002418731 0.06429595 0.005155668 +0.005155668 0.06429595 0.005155668 +0.009080105 0.06429595 0.005155668 +0.01434988 0.06429595 0.005155668 +0.02107202 0.06429595 0.005155668 +0.02934285 0.06429595 0.005155668 +0.03925039 0.06429595 0.005155668 +0.05087609 0.06429595 0.005155668 +0.06429595 0.06429595 0.005155668 +0.07958143 0.06429595 0.005155668 +0.0968001 0.06429595 0.005155668 +0.1160161 0.06429595 0.005155668 +0.1372908 0.06429595 0.005155668 +0.1606827 0.06429595 0.005155668 +0.1862481 0.06429595 0.005155668 +0.2140411 0.06429595 0.005155668 +0.2441142 0.06429595 0.005155668 +0.2765176 0.06429595 0.005155668 +0.3113005 0.06429595 0.005155668 +0.3485102 0.06429595 0.005155668 +0.388193 0.06429595 0.005155668 +0.4303934 0.06429595 0.005155668 +0.4751555 0.06429595 0.005155668 +0.5225216 0.06429595 0.005155668 +0.5725335 0.06429595 0.005155668 +0.6252316 0.06429595 0.005155668 +0.6806558 0.06429595 0.005155668 +0.7388448 0.06429595 0.005155668 +0.7998369 0.06429595 0.005155668 +0.8636691 0.06429595 0.005155668 +0.9303782 0.06429595 0.005155668 +1 0.06429595 0.005155668 +0 0.07958143 0.005155668 +0.002418731 0.07958143 0.005155668 +0.005155668 0.07958143 0.005155668 +0.009080105 0.07958143 0.005155668 +0.01434988 0.07958143 0.005155668 +0.02107202 0.07958143 0.005155668 +0.02934285 0.07958143 0.005155668 +0.03925039 0.07958143 0.005155668 +0.05087609 0.07958143 0.005155668 +0.06429595 0.07958143 0.005155668 +0.07958143 0.07958143 0.005155668 +0.0968001 0.07958143 0.005155668 +0.1160161 0.07958143 0.005155668 +0.1372908 0.07958143 0.005155668 +0.1606827 0.07958143 0.005155668 +0.1862481 0.07958143 0.005155668 +0.2140411 0.07958143 0.005155668 +0.2441142 0.07958143 0.005155668 +0.2765176 0.07958143 0.005155668 +0.3113005 0.07958143 0.005155668 +0.3485102 0.07958143 0.005155668 +0.388193 0.07958143 0.005155668 +0.4303934 0.07958143 0.005155668 +0.4751555 0.07958143 0.005155668 +0.5225216 0.07958143 0.005155668 +0.5725335 0.07958143 0.005155668 +0.6252316 0.07958143 0.005155668 +0.6806558 0.07958143 0.005155668 +0.7388448 0.07958143 0.005155668 +0.7998369 0.07958143 0.005155668 +0.8636691 0.07958143 0.005155668 +0.9303782 0.07958143 0.005155668 +1 0.07958143 0.005155668 +0 0.0968001 0.005155668 +0.002418731 0.0968001 0.005155668 +0.005155668 0.0968001 0.005155668 +0.009080105 0.0968001 0.005155668 +0.01434988 0.0968001 0.005155668 +0.02107202 0.0968001 0.005155668 +0.02934285 0.0968001 0.005155668 +0.03925039 0.0968001 0.005155668 +0.05087609 0.0968001 0.005155668 +0.06429595 0.0968001 0.005155668 +0.07958143 0.0968001 0.005155668 +0.0968001 0.0968001 0.005155668 +0.1160161 0.0968001 0.005155668 +0.1372908 0.0968001 0.005155668 +0.1606827 0.0968001 0.005155668 +0.1862481 0.0968001 0.005155668 +0.2140411 0.0968001 0.005155668 +0.2441142 0.0968001 0.005155668 +0.2765176 0.0968001 0.005155668 +0.3113005 0.0968001 0.005155668 +0.3485102 0.0968001 0.005155668 +0.388193 0.0968001 0.005155668 +0.4303934 0.0968001 0.005155668 +0.4751555 0.0968001 0.005155668 +0.5225216 0.0968001 0.005155668 +0.5725335 0.0968001 0.005155668 +0.6252316 0.0968001 0.005155668 +0.6806558 0.0968001 0.005155668 +0.7388448 0.0968001 0.005155668 +0.7998369 0.0968001 0.005155668 +0.8636691 0.0968001 0.005155668 +0.9303782 0.0968001 0.005155668 +1 0.0968001 0.005155668 +0 0.1160161 0.005155668 +0.002418731 0.1160161 0.005155668 +0.005155668 0.1160161 0.005155668 +0.009080105 0.1160161 0.005155668 +0.01434988 0.1160161 0.005155668 +0.02107202 0.1160161 0.005155668 +0.02934285 0.1160161 0.005155668 +0.03925039 0.1160161 0.005155668 +0.05087609 0.1160161 0.005155668 +0.06429595 0.1160161 0.005155668 +0.07958143 0.1160161 0.005155668 +0.0968001 0.1160161 0.005155668 +0.1160161 0.1160161 0.005155668 +0.1372908 0.1160161 0.005155668 +0.1606827 0.1160161 0.005155668 +0.1862481 0.1160161 0.005155668 +0.2140411 0.1160161 0.005155668 +0.2441142 0.1160161 0.005155668 +0.2765176 0.1160161 0.005155668 +0.3113005 0.1160161 0.005155668 +0.3485102 0.1160161 0.005155668 +0.388193 0.1160161 0.005155668 +0.4303934 0.1160161 0.005155668 +0.4751555 0.1160161 0.005155668 +0.5225216 0.1160161 0.005155668 +0.5725335 0.1160161 0.005155668 +0.6252316 0.1160161 0.005155668 +0.6806558 0.1160161 0.005155668 +0.7388448 0.1160161 0.005155668 +0.7998369 0.1160161 0.005155668 +0.8636691 0.1160161 0.005155668 +0.9303782 0.1160161 0.005155668 +1 0.1160161 0.005155668 +0 0.1372908 0.005155668 +0.002418731 0.1372908 0.005155668 +0.005155668 0.1372908 0.005155668 +0.009080105 0.1372908 0.005155668 +0.01434988 0.1372908 0.005155668 +0.02107202 0.1372908 0.005155668 +0.02934285 0.1372908 0.005155668 +0.03925039 0.1372908 0.005155668 +0.05087609 0.1372908 0.005155668 +0.06429595 0.1372908 0.005155668 +0.07958143 0.1372908 0.005155668 +0.0968001 0.1372908 0.005155668 +0.1160161 0.1372908 0.005155668 +0.1372908 0.1372908 0.005155668 +0.1606827 0.1372908 0.005155668 +0.1862481 0.1372908 0.005155668 +0.2140411 0.1372908 0.005155668 +0.2441142 0.1372908 0.005155668 +0.2765176 0.1372908 0.005155668 +0.3113005 0.1372908 0.005155668 +0.3485102 0.1372908 0.005155668 +0.388193 0.1372908 0.005155668 +0.4303934 0.1372908 0.005155668 +0.4751555 0.1372908 0.005155668 +0.5225216 0.1372908 0.005155668 +0.5725335 0.1372908 0.005155668 +0.6252316 0.1372908 0.005155668 +0.6806558 0.1372908 0.005155668 +0.7388448 0.1372908 0.005155668 +0.7998369 0.1372908 0.005155668 +0.8636691 0.1372908 0.005155668 +0.9303782 0.1372908 0.005155668 +1 0.1372908 0.005155668 +0 0.1606827 0.005155668 +0.002418731 0.1606827 0.005155668 +0.005155668 0.1606827 0.005155668 +0.009080105 0.1606827 0.005155668 +0.01434988 0.1606827 0.005155668 +0.02107202 0.1606827 0.005155668 +0.02934285 0.1606827 0.005155668 +0.03925039 0.1606827 0.005155668 +0.05087609 0.1606827 0.005155668 +0.06429595 0.1606827 0.005155668 +0.07958143 0.1606827 0.005155668 +0.0968001 0.1606827 0.005155668 +0.1160161 0.1606827 0.005155668 +0.1372908 0.1606827 0.005155668 +0.1606827 0.1606827 0.005155668 +0.1862481 0.1606827 0.005155668 +0.2140411 0.1606827 0.005155668 +0.2441142 0.1606827 0.005155668 +0.2765176 0.1606827 0.005155668 +0.3113005 0.1606827 0.005155668 +0.3485102 0.1606827 0.005155668 +0.388193 0.1606827 0.005155668 +0.4303934 0.1606827 0.005155668 +0.4751555 0.1606827 0.005155668 +0.5225216 0.1606827 0.005155668 +0.5725335 0.1606827 0.005155668 +0.6252316 0.1606827 0.005155668 +0.6806558 0.1606827 0.005155668 +0.7388448 0.1606827 0.005155668 +0.7998369 0.1606827 0.005155668 +0.8636691 0.1606827 0.005155668 +0.9303782 0.1606827 0.005155668 +1 0.1606827 0.005155668 +0 0.1862481 0.005155668 +0.002418731 0.1862481 0.005155668 +0.005155668 0.1862481 0.005155668 +0.009080105 0.1862481 0.005155668 +0.01434988 0.1862481 0.005155668 +0.02107202 0.1862481 0.005155668 +0.02934285 0.1862481 0.005155668 +0.03925039 0.1862481 0.005155668 +0.05087609 0.1862481 0.005155668 +0.06429595 0.1862481 0.005155668 +0.07958143 0.1862481 0.005155668 +0.0968001 0.1862481 0.005155668 +0.1160161 0.1862481 0.005155668 +0.1372908 0.1862481 0.005155668 +0.1606827 0.1862481 0.005155668 +0.1862481 0.1862481 0.005155668 +0.2140411 0.1862481 0.005155668 +0.2441142 0.1862481 0.005155668 +0.2765176 0.1862481 0.005155668 +0.3113005 0.1862481 0.005155668 +0.3485102 0.1862481 0.005155668 +0.388193 0.1862481 0.005155668 +0.4303934 0.1862481 0.005155668 +0.4751555 0.1862481 0.005155668 +0.5225216 0.1862481 0.005155668 +0.5725335 0.1862481 0.005155668 +0.6252316 0.1862481 0.005155668 +0.6806558 0.1862481 0.005155668 +0.7388448 0.1862481 0.005155668 +0.7998369 0.1862481 0.005155668 +0.8636691 0.1862481 0.005155668 +0.9303782 0.1862481 0.005155668 +1 0.1862481 0.005155668 +0 0.2140411 0.005155668 +0.002418731 0.2140411 0.005155668 +0.005155668 0.2140411 0.005155668 +0.009080105 0.2140411 0.005155668 +0.01434988 0.2140411 0.005155668 +0.02107202 0.2140411 0.005155668 +0.02934285 0.2140411 0.005155668 +0.03925039 0.2140411 0.005155668 +0.05087609 0.2140411 0.005155668 +0.06429595 0.2140411 0.005155668 +0.07958143 0.2140411 0.005155668 +0.0968001 0.2140411 0.005155668 +0.1160161 0.2140411 0.005155668 +0.1372908 0.2140411 0.005155668 +0.1606827 0.2140411 0.005155668 +0.1862481 0.2140411 0.005155668 +0.2140411 0.2140411 0.005155668 +0.2441142 0.2140411 0.005155668 +0.2765176 0.2140411 0.005155668 +0.3113005 0.2140411 0.005155668 +0.3485102 0.2140411 0.005155668 +0.388193 0.2140411 0.005155668 +0.4303934 0.2140411 0.005155668 +0.4751555 0.2140411 0.005155668 +0.5225216 0.2140411 0.005155668 +0.5725335 0.2140411 0.005155668 +0.6252316 0.2140411 0.005155668 +0.6806558 0.2140411 0.005155668 +0.7388448 0.2140411 0.005155668 +0.7998369 0.2140411 0.005155668 +0.8636691 0.2140411 0.005155668 +0.9303782 0.2140411 0.005155668 +1 0.2140411 0.005155668 +0 0.2441142 0.005155668 +0.002418731 0.2441142 0.005155668 +0.005155668 0.2441142 0.005155668 +0.009080105 0.2441142 0.005155668 +0.01434988 0.2441142 0.005155668 +0.02107202 0.2441142 0.005155668 +0.02934285 0.2441142 0.005155668 +0.03925039 0.2441142 0.005155668 +0.05087609 0.2441142 0.005155668 +0.06429595 0.2441142 0.005155668 +0.07958143 0.2441142 0.005155668 +0.0968001 0.2441142 0.005155668 +0.1160161 0.2441142 0.005155668 +0.1372908 0.2441142 0.005155668 +0.1606827 0.2441142 0.005155668 +0.1862481 0.2441142 0.005155668 +0.2140411 0.2441142 0.005155668 +0.2441142 0.2441142 0.005155668 +0.2765176 0.2441142 0.005155668 +0.3113005 0.2441142 0.005155668 +0.3485102 0.2441142 0.005155668 +0.388193 0.2441142 0.005155668 +0.4303934 0.2441142 0.005155668 +0.4751555 0.2441142 0.005155668 +0.5225216 0.2441142 0.005155668 +0.5725335 0.2441142 0.005155668 +0.6252316 0.2441142 0.005155668 +0.6806558 0.2441142 0.005155668 +0.7388448 0.2441142 0.005155668 +0.7998369 0.2441142 0.005155668 +0.8636691 0.2441142 0.005155668 +0.9303782 0.2441142 0.005155668 +1 0.2441142 0.005155668 +0 0.2765176 0.005155668 +0.002418731 0.2765176 0.005155668 +0.005155668 0.2765176 0.005155668 +0.009080105 0.2765176 0.005155668 +0.01434988 0.2765176 0.005155668 +0.02107202 0.2765176 0.005155668 +0.02934285 0.2765176 0.005155668 +0.03925039 0.2765176 0.005155668 +0.05087609 0.2765176 0.005155668 +0.06429595 0.2765176 0.005155668 +0.07958143 0.2765176 0.005155668 +0.0968001 0.2765176 0.005155668 +0.1160161 0.2765176 0.005155668 +0.1372908 0.2765176 0.005155668 +0.1606827 0.2765176 0.005155668 +0.1862481 0.2765176 0.005155668 +0.2140411 0.2765176 0.005155668 +0.2441142 0.2765176 0.005155668 +0.2765176 0.2765176 0.005155668 +0.3113005 0.2765176 0.005155668 +0.3485102 0.2765176 0.005155668 +0.388193 0.2765176 0.005155668 +0.4303934 0.2765176 0.005155668 +0.4751555 0.2765176 0.005155668 +0.5225216 0.2765176 0.005155668 +0.5725335 0.2765176 0.005155668 +0.6252316 0.2765176 0.005155668 +0.6806558 0.2765176 0.005155668 +0.7388448 0.2765176 0.005155668 +0.7998369 0.2765176 0.005155668 +0.8636691 0.2765176 0.005155668 +0.9303782 0.2765176 0.005155668 +1 0.2765176 0.005155668 +0 0.3113005 0.005155668 +0.002418731 0.3113005 0.005155668 +0.005155668 0.3113005 0.005155668 +0.009080105 0.3113005 0.005155668 +0.01434988 0.3113005 0.005155668 +0.02107202 0.3113005 0.005155668 +0.02934285 0.3113005 0.005155668 +0.03925039 0.3113005 0.005155668 +0.05087609 0.3113005 0.005155668 +0.06429595 0.3113005 0.005155668 +0.07958143 0.3113005 0.005155668 +0.0968001 0.3113005 0.005155668 +0.1160161 0.3113005 0.005155668 +0.1372908 0.3113005 0.005155668 +0.1606827 0.3113005 0.005155668 +0.1862481 0.3113005 0.005155668 +0.2140411 0.3113005 0.005155668 +0.2441142 0.3113005 0.005155668 +0.2765176 0.3113005 0.005155668 +0.3113005 0.3113005 0.005155668 +0.3485102 0.3113005 0.005155668 +0.388193 0.3113005 0.005155668 +0.4303934 0.3113005 0.005155668 +0.4751555 0.3113005 0.005155668 +0.5225216 0.3113005 0.005155668 +0.5725335 0.3113005 0.005155668 +0.6252316 0.3113005 0.005155668 +0.6806558 0.3113005 0.005155668 +0.7388448 0.3113005 0.005155668 +0.7998369 0.3113005 0.005155668 +0.8636691 0.3113005 0.005155668 +0.9303782 0.3113005 0.005155668 +1 0.3113005 0.005155668 +0 0.3485102 0.005155668 +0.002418731 0.3485102 0.005155668 +0.005155668 0.3485102 0.005155668 +0.009080105 0.3485102 0.005155668 +0.01434988 0.3485102 0.005155668 +0.02107202 0.3485102 0.005155668 +0.02934285 0.3485102 0.005155668 +0.03925039 0.3485102 0.005155668 +0.05087609 0.3485102 0.005155668 +0.06429595 0.3485102 0.005155668 +0.07958143 0.3485102 0.005155668 +0.0968001 0.3485102 0.005155668 +0.1160161 0.3485102 0.005155668 +0.1372908 0.3485102 0.005155668 +0.1606827 0.3485102 0.005155668 +0.1862481 0.3485102 0.005155668 +0.2140411 0.3485102 0.005155668 +0.2441142 0.3485102 0.005155668 +0.2765176 0.3485102 0.005155668 +0.3113005 0.3485102 0.005155668 +0.3485102 0.3485102 0.005155668 +0.388193 0.3485102 0.005155668 +0.4303934 0.3485102 0.005155668 +0.4751555 0.3485102 0.005155668 +0.5225216 0.3485102 0.005155668 +0.5725335 0.3485102 0.005155668 +0.6252316 0.3485102 0.005155668 +0.6806558 0.3485102 0.005155668 +0.7388448 0.3485102 0.005155668 +0.7998369 0.3485102 0.005155668 +0.8636691 0.3485102 0.005155668 +0.9303782 0.3485102 0.005155668 +1 0.3485102 0.005155668 +0 0.388193 0.005155668 +0.002418731 0.388193 0.005155668 +0.005155668 0.388193 0.005155668 +0.009080105 0.388193 0.005155668 +0.01434988 0.388193 0.005155668 +0.02107202 0.388193 0.005155668 +0.02934285 0.388193 0.005155668 +0.03925039 0.388193 0.005155668 +0.05087609 0.388193 0.005155668 +0.06429595 0.388193 0.005155668 +0.07958143 0.388193 0.005155668 +0.0968001 0.388193 0.005155668 +0.1160161 0.388193 0.005155668 +0.1372908 0.388193 0.005155668 +0.1606827 0.388193 0.005155668 +0.1862481 0.388193 0.005155668 +0.2140411 0.388193 0.005155668 +0.2441142 0.388193 0.005155668 +0.2765176 0.388193 0.005155668 +0.3113005 0.388193 0.005155668 +0.3485102 0.388193 0.005155668 +0.388193 0.388193 0.005155668 +0.4303934 0.388193 0.005155668 +0.4751555 0.388193 0.005155668 +0.5225216 0.388193 0.005155668 +0.5725335 0.388193 0.005155668 +0.6252316 0.388193 0.005155668 +0.6806558 0.388193 0.005155668 +0.7388448 0.388193 0.005155668 +0.7998369 0.388193 0.005155668 +0.8636691 0.388193 0.005155668 +0.9303782 0.388193 0.005155668 +1 0.388193 0.005155668 +0 0.4303934 0.005155668 +0.002418731 0.4303934 0.005155668 +0.005155668 0.4303934 0.005155668 +0.009080105 0.4303934 0.005155668 +0.01434988 0.4303934 0.005155668 +0.02107202 0.4303934 0.005155668 +0.02934285 0.4303934 0.005155668 +0.03925039 0.4303934 0.005155668 +0.05087609 0.4303934 0.005155668 +0.06429595 0.4303934 0.005155668 +0.07958143 0.4303934 0.005155668 +0.0968001 0.4303934 0.005155668 +0.1160161 0.4303934 0.005155668 +0.1372908 0.4303934 0.005155668 +0.1606827 0.4303934 0.005155668 +0.1862481 0.4303934 0.005155668 +0.2140411 0.4303934 0.005155668 +0.2441142 0.4303934 0.005155668 +0.2765176 0.4303934 0.005155668 +0.3113005 0.4303934 0.005155668 +0.3485102 0.4303934 0.005155668 +0.388193 0.4303934 0.005155668 +0.4303934 0.4303934 0.005155668 +0.4751555 0.4303934 0.005155668 +0.5225216 0.4303934 0.005155668 +0.5725335 0.4303934 0.005155668 +0.6252316 0.4303934 0.005155668 +0.6806558 0.4303934 0.005155668 +0.7388448 0.4303934 0.005155668 +0.7998369 0.4303934 0.005155668 +0.8636691 0.4303934 0.005155668 +0.9303782 0.4303934 0.005155668 +1 0.4303934 0.005155668 +0 0.4751555 0.005155668 +0.002418731 0.4751555 0.005155668 +0.005155668 0.4751555 0.005155668 +0.009080105 0.4751555 0.005155668 +0.01434988 0.4751555 0.005155668 +0.02107202 0.4751555 0.005155668 +0.02934285 0.4751555 0.005155668 +0.03925039 0.4751555 0.005155668 +0.05087609 0.4751555 0.005155668 +0.06429595 0.4751555 0.005155668 +0.07958143 0.4751555 0.005155668 +0.0968001 0.4751555 0.005155668 +0.1160161 0.4751555 0.005155668 +0.1372908 0.4751555 0.005155668 +0.1606827 0.4751555 0.005155668 +0.1862481 0.4751555 0.005155668 +0.2140411 0.4751555 0.005155668 +0.2441142 0.4751555 0.005155668 +0.2765176 0.4751555 0.005155668 +0.3113005 0.4751555 0.005155668 +0.3485102 0.4751555 0.005155668 +0.388193 0.4751555 0.005155668 +0.4303934 0.4751555 0.005155668 +0.4751555 0.4751555 0.005155668 +0.5225216 0.4751555 0.005155668 +0.5725335 0.4751555 0.005155668 +0.6252316 0.4751555 0.005155668 +0.6806558 0.4751555 0.005155668 +0.7388448 0.4751555 0.005155668 +0.7998369 0.4751555 0.005155668 +0.8636691 0.4751555 0.005155668 +0.9303782 0.4751555 0.005155668 +1 0.4751555 0.005155668 +0 0.5225216 0.005155668 +0.002418731 0.5225216 0.005155668 +0.005155668 0.5225216 0.005155668 +0.009080105 0.5225216 0.005155668 +0.01434988 0.5225216 0.005155668 +0.02107202 0.5225216 0.005155668 +0.02934285 0.5225216 0.005155668 +0.03925039 0.5225216 0.005155668 +0.05087609 0.5225216 0.005155668 +0.06429595 0.5225216 0.005155668 +0.07958143 0.5225216 0.005155668 +0.0968001 0.5225216 0.005155668 +0.1160161 0.5225216 0.005155668 +0.1372908 0.5225216 0.005155668 +0.1606827 0.5225216 0.005155668 +0.1862481 0.5225216 0.005155668 +0.2140411 0.5225216 0.005155668 +0.2441142 0.5225216 0.005155668 +0.2765176 0.5225216 0.005155668 +0.3113005 0.5225216 0.005155668 +0.3485102 0.5225216 0.005155668 +0.388193 0.5225216 0.005155668 +0.4303934 0.5225216 0.005155668 +0.4751555 0.5225216 0.005155668 +0.5225216 0.5225216 0.005155668 +0.5725335 0.5225216 0.005155668 +0.6252316 0.5225216 0.005155668 +0.6806558 0.5225216 0.005155668 +0.7388448 0.5225216 0.005155668 +0.7998369 0.5225216 0.005155668 +0.8636691 0.5225216 0.005155668 +0.9303782 0.5225216 0.005155668 +1 0.5225216 0.005155668 +0 0.5725335 0.005155668 +0.002418731 0.5725335 0.005155668 +0.005155668 0.5725335 0.005155668 +0.009080105 0.5725335 0.005155668 +0.01434988 0.5725335 0.005155668 +0.02107202 0.5725335 0.005155668 +0.02934285 0.5725335 0.005155668 +0.03925039 0.5725335 0.005155668 +0.05087609 0.5725335 0.005155668 +0.06429595 0.5725335 0.005155668 +0.07958143 0.5725335 0.005155668 +0.0968001 0.5725335 0.005155668 +0.1160161 0.5725335 0.005155668 +0.1372908 0.5725335 0.005155668 +0.1606827 0.5725335 0.005155668 +0.1862481 0.5725335 0.005155668 +0.2140411 0.5725335 0.005155668 +0.2441142 0.5725335 0.005155668 +0.2765176 0.5725335 0.005155668 +0.3113005 0.5725335 0.005155668 +0.3485102 0.5725335 0.005155668 +0.388193 0.5725335 0.005155668 +0.4303934 0.5725335 0.005155668 +0.4751555 0.5725335 0.005155668 +0.5225216 0.5725335 0.005155668 +0.5725335 0.5725335 0.005155668 +0.6252316 0.5725335 0.005155668 +0.6806558 0.5725335 0.005155668 +0.7388448 0.5725335 0.005155668 +0.7998369 0.5725335 0.005155668 +0.8636691 0.5725335 0.005155668 +0.9303782 0.5725335 0.005155668 +1 0.5725335 0.005155668 +0 0.6252316 0.005155668 +0.002418731 0.6252316 0.005155668 +0.005155668 0.6252316 0.005155668 +0.009080105 0.6252316 0.005155668 +0.01434988 0.6252316 0.005155668 +0.02107202 0.6252316 0.005155668 +0.02934285 0.6252316 0.005155668 +0.03925039 0.6252316 0.005155668 +0.05087609 0.6252316 0.005155668 +0.06429595 0.6252316 0.005155668 +0.07958143 0.6252316 0.005155668 +0.0968001 0.6252316 0.005155668 +0.1160161 0.6252316 0.005155668 +0.1372908 0.6252316 0.005155668 +0.1606827 0.6252316 0.005155668 +0.1862481 0.6252316 0.005155668 +0.2140411 0.6252316 0.005155668 +0.2441142 0.6252316 0.005155668 +0.2765176 0.6252316 0.005155668 +0.3113005 0.6252316 0.005155668 +0.3485102 0.6252316 0.005155668 +0.388193 0.6252316 0.005155668 +0.4303934 0.6252316 0.005155668 +0.4751555 0.6252316 0.005155668 +0.5225216 0.6252316 0.005155668 +0.5725335 0.6252316 0.005155668 +0.6252316 0.6252316 0.005155668 +0.6806558 0.6252316 0.005155668 +0.7388448 0.6252316 0.005155668 +0.7998369 0.6252316 0.005155668 +0.8636691 0.6252316 0.005155668 +0.9303782 0.6252316 0.005155668 +1 0.6252316 0.005155668 +0 0.6806558 0.005155668 +0.002418731 0.6806558 0.005155668 +0.005155668 0.6806558 0.005155668 +0.009080105 0.6806558 0.005155668 +0.01434988 0.6806558 0.005155668 +0.02107202 0.6806558 0.005155668 +0.02934285 0.6806558 0.005155668 +0.03925039 0.6806558 0.005155668 +0.05087609 0.6806558 0.005155668 +0.06429595 0.6806558 0.005155668 +0.07958143 0.6806558 0.005155668 +0.0968001 0.6806558 0.005155668 +0.1160161 0.6806558 0.005155668 +0.1372908 0.6806558 0.005155668 +0.1606827 0.6806558 0.005155668 +0.1862481 0.6806558 0.005155668 +0.2140411 0.6806558 0.005155668 +0.2441142 0.6806558 0.005155668 +0.2765176 0.6806558 0.005155668 +0.3113005 0.6806558 0.005155668 +0.3485102 0.6806558 0.005155668 +0.388193 0.6806558 0.005155668 +0.4303934 0.6806558 0.005155668 +0.4751555 0.6806558 0.005155668 +0.5225216 0.6806558 0.005155668 +0.5725335 0.6806558 0.005155668 +0.6252316 0.6806558 0.005155668 +0.6806558 0.6806558 0.005155668 +0.7388448 0.6806558 0.005155668 +0.7998369 0.6806558 0.005155668 +0.8636691 0.6806558 0.005155668 +0.9303782 0.6806558 0.005155668 +1 0.6806558 0.005155668 +0 0.7388448 0.005155668 +0.002418731 0.7388448 0.005155668 +0.005155668 0.7388448 0.005155668 +0.009080105 0.7388448 0.005155668 +0.01434988 0.7388448 0.005155668 +0.02107202 0.7388448 0.005155668 +0.02934285 0.7388448 0.005155668 +0.03925039 0.7388448 0.005155668 +0.05087609 0.7388448 0.005155668 +0.06429595 0.7388448 0.005155668 +0.07958143 0.7388448 0.005155668 +0.0968001 0.7388448 0.005155668 +0.1160161 0.7388448 0.005155668 +0.1372908 0.7388448 0.005155668 +0.1606827 0.7388448 0.005155668 +0.1862481 0.7388448 0.005155668 +0.2140411 0.7388448 0.005155668 +0.2441142 0.7388448 0.005155668 +0.2765176 0.7388448 0.005155668 +0.3113005 0.7388448 0.005155668 +0.3485102 0.7388448 0.005155668 +0.388193 0.7388448 0.005155668 +0.4303934 0.7388448 0.005155668 +0.4751555 0.7388448 0.005155668 +0.5225216 0.7388448 0.005155668 +0.5725335 0.7388448 0.005155668 +0.6252316 0.7388448 0.005155668 +0.6806558 0.7388448 0.005155668 +0.7388448 0.7388448 0.005155668 +0.7998369 0.7388448 0.005155668 +0.8636691 0.7388448 0.005155668 +0.9303782 0.7388448 0.005155668 +1 0.7388448 0.005155668 +0 0.7998369 0.005155668 +0.002418731 0.7998369 0.005155668 +0.005155668 0.7998369 0.005155668 +0.009080105 0.7998369 0.005155668 +0.01434988 0.7998369 0.005155668 +0.02107202 0.7998369 0.005155668 +0.02934285 0.7998369 0.005155668 +0.03925039 0.7998369 0.005155668 +0.05087609 0.7998369 0.005155668 +0.06429595 0.7998369 0.005155668 +0.07958143 0.7998369 0.005155668 +0.0968001 0.7998369 0.005155668 +0.1160161 0.7998369 0.005155668 +0.1372908 0.7998369 0.005155668 +0.1606827 0.7998369 0.005155668 +0.1862481 0.7998369 0.005155668 +0.2140411 0.7998369 0.005155668 +0.2441142 0.7998369 0.005155668 +0.2765176 0.7998369 0.005155668 +0.3113005 0.7998369 0.005155668 +0.3485102 0.7998369 0.005155668 +0.388193 0.7998369 0.005155668 +0.4303934 0.7998369 0.005155668 +0.4751555 0.7998369 0.005155668 +0.5225216 0.7998369 0.005155668 +0.5725335 0.7998369 0.005155668 +0.6252316 0.7998369 0.005155668 +0.6806558 0.7998369 0.005155668 +0.7388448 0.7998369 0.005155668 +0.7998369 0.7998369 0.005155668 +0.8636691 0.7998369 0.005155668 +0.9303782 0.7998369 0.005155668 +1 0.7998369 0.005155668 +0 0.8636691 0.005155668 +0.002418731 0.8636691 0.005155668 +0.005155668 0.8636691 0.005155668 +0.009080105 0.8636691 0.005155668 +0.01434988 0.8636691 0.005155668 +0.02107202 0.8636691 0.005155668 +0.02934285 0.8636691 0.005155668 +0.03925039 0.8636691 0.005155668 +0.05087609 0.8636691 0.005155668 +0.06429595 0.8636691 0.005155668 +0.07958143 0.8636691 0.005155668 +0.0968001 0.8636691 0.005155668 +0.1160161 0.8636691 0.005155668 +0.1372908 0.8636691 0.005155668 +0.1606827 0.8636691 0.005155668 +0.1862481 0.8636691 0.005155668 +0.2140411 0.8636691 0.005155668 +0.2441142 0.8636691 0.005155668 +0.2765176 0.8636691 0.005155668 +0.3113005 0.8636691 0.005155668 +0.3485102 0.8636691 0.005155668 +0.388193 0.8636691 0.005155668 +0.4303934 0.8636691 0.005155668 +0.4751555 0.8636691 0.005155668 +0.5225216 0.8636691 0.005155668 +0.5725335 0.8636691 0.005155668 +0.6252316 0.8636691 0.005155668 +0.6806558 0.8636691 0.005155668 +0.7388448 0.8636691 0.005155668 +0.7998369 0.8636691 0.005155668 +0.8636691 0.8636691 0.005155668 +0.9303782 0.8636691 0.005155668 +1 0.8636691 0.005155668 +0 0.9303782 0.005155668 +0.002418731 0.9303782 0.005155668 +0.005155668 0.9303782 0.005155668 +0.009080105 0.9303782 0.005155668 +0.01434988 0.9303782 0.005155668 +0.02107202 0.9303782 0.005155668 +0.02934285 0.9303782 0.005155668 +0.03925039 0.9303782 0.005155668 +0.05087609 0.9303782 0.005155668 +0.06429595 0.9303782 0.005155668 +0.07958143 0.9303782 0.005155668 +0.0968001 0.9303782 0.005155668 +0.1160161 0.9303782 0.005155668 +0.1372908 0.9303782 0.005155668 +0.1606827 0.9303782 0.005155668 +0.1862481 0.9303782 0.005155668 +0.2140411 0.9303782 0.005155668 +0.2441142 0.9303782 0.005155668 +0.2765176 0.9303782 0.005155668 +0.3113005 0.9303782 0.005155668 +0.3485102 0.9303782 0.005155668 +0.388193 0.9303782 0.005155668 +0.4303934 0.9303782 0.005155668 +0.4751555 0.9303782 0.005155668 +0.5225216 0.9303782 0.005155668 +0.5725335 0.9303782 0.005155668 +0.6252316 0.9303782 0.005155668 +0.6806558 0.9303782 0.005155668 +0.7388448 0.9303782 0.005155668 +0.7998369 0.9303782 0.005155668 +0.8636691 0.9303782 0.005155668 +0.9303782 0.9303782 0.005155668 +1 0.9303782 0.005155668 +0 1 0.005155668 +0.002418731 1 0.005155668 +0.005155668 1 0.005155668 +0.009080105 1 0.005155668 +0.01434988 1 0.005155668 +0.02107202 1 0.005155668 +0.02934285 1 0.005155668 +0.03925039 1 0.005155668 +0.05087609 1 0.005155668 +0.06429595 1 0.005155668 +0.07958143 1 0.005155668 +0.0968001 1 0.005155668 +0.1160161 1 0.005155668 +0.1372908 1 0.005155668 +0.1606827 1 0.005155668 +0.1862481 1 0.005155668 +0.2140411 1 0.005155668 +0.2441142 1 0.005155668 +0.2765176 1 0.005155668 +0.3113005 1 0.005155668 +0.3485102 1 0.005155668 +0.388193 1 0.005155668 +0.4303934 1 0.005155668 +0.4751555 1 0.005155668 +0.5225216 1 0.005155668 +0.5725335 1 0.005155668 +0.6252316 1 0.005155668 +0.6806558 1 0.005155668 +0.7388448 1 0.005155668 +0.7998369 1 0.005155668 +0.8636691 1 0.005155668 +0.9303782 1 0.005155668 +1 1 0.005155668 +0 0 0.009080105 +0.002418731 0 0.009080105 +0.005155668 0 0.009080105 +0.009080105 0 0.009080105 +0.01434988 0 0.009080105 +0.02107202 0 0.009080105 +0.02934285 0 0.009080105 +0.03925039 0 0.009080105 +0.05087609 0 0.009080105 +0.06429595 0 0.009080105 +0.07958143 0 0.009080105 +0.0968001 0 0.009080105 +0.1160161 0 0.009080105 +0.1372908 0 0.009080105 +0.1606827 0 0.009080105 +0.1862481 0 0.009080105 +0.2140411 0 0.009080105 +0.2441142 0 0.009080105 +0.2765176 0 0.009080105 +0.3113005 0 0.009080105 +0.3485102 0 0.009080105 +0.388193 0 0.009080105 +0.4303934 0 0.009080105 +0.4751555 0 0.009080105 +0.5225216 0 0.009080105 +0.5725335 0 0.009080105 +0.6252316 0 0.009080105 +0.6806558 0 0.009080105 +0.7388448 0 0.009080105 +0.7998369 0 0.009080105 +0.8636691 0 0.009080105 +0.9303782 0 0.009080105 +1 0 0.009080105 +0 0.002418731 0.009080105 +0.002418731 0.002418731 0.009080105 +0.005155668 0.002418731 0.009080105 +0.009080105 0.002418731 0.009080105 +0.01434988 0.002418731 0.009080105 +0.02107202 0.002418731 0.009080105 +0.02934285 0.002418731 0.009080105 +0.03925039 0.002418731 0.009080105 +0.05087609 0.002418731 0.009080105 +0.06429595 0.002418731 0.009080105 +0.07958143 0.002418731 0.009080105 +0.0968001 0.002418731 0.009080105 +0.1160161 0.002418731 0.009080105 +0.1372908 0.002418731 0.009080105 +0.1606827 0.002418731 0.009080105 +0.1862481 0.002418731 0.009080105 +0.2140411 0.002418731 0.009080105 +0.2441142 0.002418731 0.009080105 +0.2765176 0.002418731 0.009080105 +0.3113005 0.002418731 0.009080105 +0.3485102 0.002418731 0.009080105 +0.388193 0.002418731 0.009080105 +0.4303934 0.002418731 0.009080105 +0.4751555 0.002418731 0.009080105 +0.5225216 0.002418731 0.009080105 +0.5725335 0.002418731 0.009080105 +0.6252316 0.002418731 0.009080105 +0.6806558 0.002418731 0.009080105 +0.7388448 0.002418731 0.009080105 +0.7998369 0.002418731 0.009080105 +0.8636691 0.002418731 0.009080105 +0.9303782 0.002418731 0.009080105 +1 0.002418731 0.009080105 +0 0.005155668 0.009080105 +0.002418731 0.005155668 0.009080105 +0.005155668 0.005155668 0.009080105 +0.009080105 0.005155668 0.009080105 +0.01434988 0.005155668 0.009080105 +0.02107202 0.005155668 0.009080105 +0.02934285 0.005155668 0.009080105 +0.03925039 0.005155668 0.009080105 +0.05087609 0.005155668 0.009080105 +0.06429595 0.005155668 0.009080105 +0.07958143 0.005155668 0.009080105 +0.0968001 0.005155668 0.009080105 +0.1160161 0.005155668 0.009080105 +0.1372908 0.005155668 0.009080105 +0.1606827 0.005155668 0.009080105 +0.1862481 0.005155668 0.009080105 +0.2140411 0.005155668 0.009080105 +0.2441142 0.005155668 0.009080105 +0.2765176 0.005155668 0.009080105 +0.3113005 0.005155668 0.009080105 +0.3485102 0.005155668 0.009080105 +0.388193 0.005155668 0.009080105 +0.4303934 0.005155668 0.009080105 +0.4751555 0.005155668 0.009080105 +0.5225216 0.005155668 0.009080105 +0.5725335 0.005155668 0.009080105 +0.6252316 0.005155668 0.009080105 +0.6806558 0.005155668 0.009080105 +0.7388448 0.005155668 0.009080105 +0.7998369 0.005155668 0.009080105 +0.8636691 0.005155668 0.009080105 +0.9303782 0.005155668 0.009080105 +1 0.005155668 0.009080105 +0 0.009080105 0.009080105 +0.002418731 0.009080105 0.009080105 +0.005155668 0.009080105 0.009080105 +0.009080105 0.009080105 0.009080105 +0.01434988 0.009080105 0.009080105 +0.02107202 0.009080105 0.009080105 +0.02934285 0.009080105 0.009080105 +0.03925039 0.009080105 0.009080105 +0.05087609 0.009080105 0.009080105 +0.06429595 0.009080105 0.009080105 +0.07958143 0.009080105 0.009080105 +0.0968001 0.009080105 0.009080105 +0.1160161 0.009080105 0.009080105 +0.1372908 0.009080105 0.009080105 +0.1606827 0.009080105 0.009080105 +0.1862481 0.009080105 0.009080105 +0.2140411 0.009080105 0.009080105 +0.2441142 0.009080105 0.009080105 +0.2765176 0.009080105 0.009080105 +0.3113005 0.009080105 0.009080105 +0.3485102 0.009080105 0.009080105 +0.388193 0.009080105 0.009080105 +0.4303934 0.009080105 0.009080105 +0.4751555 0.009080105 0.009080105 +0.5225216 0.009080105 0.009080105 +0.5725335 0.009080105 0.009080105 +0.6252316 0.009080105 0.009080105 +0.6806558 0.009080105 0.009080105 +0.7388448 0.009080105 0.009080105 +0.7998369 0.009080105 0.009080105 +0.8636691 0.009080105 0.009080105 +0.9303782 0.009080105 0.009080105 +1 0.009080105 0.009080105 +0 0.01434988 0.009080105 +0.002418731 0.01434988 0.009080105 +0.005155668 0.01434988 0.009080105 +0.009080105 0.01434988 0.009080105 +0.01434988 0.01434988 0.009080105 +0.02107202 0.01434988 0.009080105 +0.02934285 0.01434988 0.009080105 +0.03925039 0.01434988 0.009080105 +0.05087609 0.01434988 0.009080105 +0.06429595 0.01434988 0.009080105 +0.07958143 0.01434988 0.009080105 +0.0968001 0.01434988 0.009080105 +0.1160161 0.01434988 0.009080105 +0.1372908 0.01434988 0.009080105 +0.1606827 0.01434988 0.009080105 +0.1862481 0.01434988 0.009080105 +0.2140411 0.01434988 0.009080105 +0.2441142 0.01434988 0.009080105 +0.2765176 0.01434988 0.009080105 +0.3113005 0.01434988 0.009080105 +0.3485102 0.01434988 0.009080105 +0.388193 0.01434988 0.009080105 +0.4303934 0.01434988 0.009080105 +0.4751555 0.01434988 0.009080105 +0.5225216 0.01434988 0.009080105 +0.5725335 0.01434988 0.009080105 +0.6252316 0.01434988 0.009080105 +0.6806558 0.01434988 0.009080105 +0.7388448 0.01434988 0.009080105 +0.7998369 0.01434988 0.009080105 +0.8636691 0.01434988 0.009080105 +0.9303782 0.01434988 0.009080105 +1 0.01434988 0.009080105 +0 0.02107202 0.009080105 +0.002418731 0.02107202 0.009080105 +0.005155668 0.02107202 0.009080105 +0.009080105 0.02107202 0.009080105 +0.01434988 0.02107202 0.009080105 +0.02107202 0.02107202 0.009080105 +0.02934285 0.02107202 0.009080105 +0.03925039 0.02107202 0.009080105 +0.05087609 0.02107202 0.009080105 +0.06429595 0.02107202 0.009080105 +0.07958143 0.02107202 0.009080105 +0.0968001 0.02107202 0.009080105 +0.1160161 0.02107202 0.009080105 +0.1372908 0.02107202 0.009080105 +0.1606827 0.02107202 0.009080105 +0.1862481 0.02107202 0.009080105 +0.2140411 0.02107202 0.009080105 +0.2441142 0.02107202 0.009080105 +0.2765176 0.02107202 0.009080105 +0.3113005 0.02107202 0.009080105 +0.3485102 0.02107202 0.009080105 +0.388193 0.02107202 0.009080105 +0.4303934 0.02107202 0.009080105 +0.4751555 0.02107202 0.009080105 +0.5225216 0.02107202 0.009080105 +0.5725335 0.02107202 0.009080105 +0.6252316 0.02107202 0.009080105 +0.6806558 0.02107202 0.009080105 +0.7388448 0.02107202 0.009080105 +0.7998369 0.02107202 0.009080105 +0.8636691 0.02107202 0.009080105 +0.9303782 0.02107202 0.009080105 +1 0.02107202 0.009080105 +0 0.02934285 0.009080105 +0.002418731 0.02934285 0.009080105 +0.005155668 0.02934285 0.009080105 +0.009080105 0.02934285 0.009080105 +0.01434988 0.02934285 0.009080105 +0.02107202 0.02934285 0.009080105 +0.02934285 0.02934285 0.009080105 +0.03925039 0.02934285 0.009080105 +0.05087609 0.02934285 0.009080105 +0.06429595 0.02934285 0.009080105 +0.07958143 0.02934285 0.009080105 +0.0968001 0.02934285 0.009080105 +0.1160161 0.02934285 0.009080105 +0.1372908 0.02934285 0.009080105 +0.1606827 0.02934285 0.009080105 +0.1862481 0.02934285 0.009080105 +0.2140411 0.02934285 0.009080105 +0.2441142 0.02934285 0.009080105 +0.2765176 0.02934285 0.009080105 +0.3113005 0.02934285 0.009080105 +0.3485102 0.02934285 0.009080105 +0.388193 0.02934285 0.009080105 +0.4303934 0.02934285 0.009080105 +0.4751555 0.02934285 0.009080105 +0.5225216 0.02934285 0.009080105 +0.5725335 0.02934285 0.009080105 +0.6252316 0.02934285 0.009080105 +0.6806558 0.02934285 0.009080105 +0.7388448 0.02934285 0.009080105 +0.7998369 0.02934285 0.009080105 +0.8636691 0.02934285 0.009080105 +0.9303782 0.02934285 0.009080105 +1 0.02934285 0.009080105 +0 0.03925039 0.009080105 +0.002418731 0.03925039 0.009080105 +0.005155668 0.03925039 0.009080105 +0.009080105 0.03925039 0.009080105 +0.01434988 0.03925039 0.009080105 +0.02107202 0.03925039 0.009080105 +0.02934285 0.03925039 0.009080105 +0.03925039 0.03925039 0.009080105 +0.05087609 0.03925039 0.009080105 +0.06429595 0.03925039 0.009080105 +0.07958143 0.03925039 0.009080105 +0.0968001 0.03925039 0.009080105 +0.1160161 0.03925039 0.009080105 +0.1372908 0.03925039 0.009080105 +0.1606827 0.03925039 0.009080105 +0.1862481 0.03925039 0.009080105 +0.2140411 0.03925039 0.009080105 +0.2441142 0.03925039 0.009080105 +0.2765176 0.03925039 0.009080105 +0.3113005 0.03925039 0.009080105 +0.3485102 0.03925039 0.009080105 +0.388193 0.03925039 0.009080105 +0.4303934 0.03925039 0.009080105 +0.4751555 0.03925039 0.009080105 +0.5225216 0.03925039 0.009080105 +0.5725335 0.03925039 0.009080105 +0.6252316 0.03925039 0.009080105 +0.6806558 0.03925039 0.009080105 +0.7388448 0.03925039 0.009080105 +0.7998369 0.03925039 0.009080105 +0.8636691 0.03925039 0.009080105 +0.9303782 0.03925039 0.009080105 +1 0.03925039 0.009080105 +0 0.05087609 0.009080105 +0.002418731 0.05087609 0.009080105 +0.005155668 0.05087609 0.009080105 +0.009080105 0.05087609 0.009080105 +0.01434988 0.05087609 0.009080105 +0.02107202 0.05087609 0.009080105 +0.02934285 0.05087609 0.009080105 +0.03925039 0.05087609 0.009080105 +0.05087609 0.05087609 0.009080105 +0.06429595 0.05087609 0.009080105 +0.07958143 0.05087609 0.009080105 +0.0968001 0.05087609 0.009080105 +0.1160161 0.05087609 0.009080105 +0.1372908 0.05087609 0.009080105 +0.1606827 0.05087609 0.009080105 +0.1862481 0.05087609 0.009080105 +0.2140411 0.05087609 0.009080105 +0.2441142 0.05087609 0.009080105 +0.2765176 0.05087609 0.009080105 +0.3113005 0.05087609 0.009080105 +0.3485102 0.05087609 0.009080105 +0.388193 0.05087609 0.009080105 +0.4303934 0.05087609 0.009080105 +0.4751555 0.05087609 0.009080105 +0.5225216 0.05087609 0.009080105 +0.5725335 0.05087609 0.009080105 +0.6252316 0.05087609 0.009080105 +0.6806558 0.05087609 0.009080105 +0.7388448 0.05087609 0.009080105 +0.7998369 0.05087609 0.009080105 +0.8636691 0.05087609 0.009080105 +0.9303782 0.05087609 0.009080105 +1 0.05087609 0.009080105 +0 0.06429595 0.009080105 +0.002418731 0.06429595 0.009080105 +0.005155668 0.06429595 0.009080105 +0.009080105 0.06429595 0.009080105 +0.01434988 0.06429595 0.009080105 +0.02107202 0.06429595 0.009080105 +0.02934285 0.06429595 0.009080105 +0.03925039 0.06429595 0.009080105 +0.05087609 0.06429595 0.009080105 +0.06429595 0.06429595 0.009080105 +0.07958143 0.06429595 0.009080105 +0.0968001 0.06429595 0.009080105 +0.1160161 0.06429595 0.009080105 +0.1372908 0.06429595 0.009080105 +0.1606827 0.06429595 0.009080105 +0.1862481 0.06429595 0.009080105 +0.2140411 0.06429595 0.009080105 +0.2441142 0.06429595 0.009080105 +0.2765176 0.06429595 0.009080105 +0.3113005 0.06429595 0.009080105 +0.3485102 0.06429595 0.009080105 +0.388193 0.06429595 0.009080105 +0.4303934 0.06429595 0.009080105 +0.4751555 0.06429595 0.009080105 +0.5225216 0.06429595 0.009080105 +0.5725335 0.06429595 0.009080105 +0.6252316 0.06429595 0.009080105 +0.6806558 0.06429595 0.009080105 +0.7388448 0.06429595 0.009080105 +0.7998369 0.06429595 0.009080105 +0.8636691 0.06429595 0.009080105 +0.9303782 0.06429595 0.009080105 +1 0.06429595 0.009080105 +0 0.07958143 0.009080105 +0.002418731 0.07958143 0.009080105 +0.005155668 0.07958143 0.009080105 +0.009080105 0.07958143 0.009080105 +0.01434988 0.07958143 0.009080105 +0.02107202 0.07958143 0.009080105 +0.02934285 0.07958143 0.009080105 +0.03925039 0.07958143 0.009080105 +0.05087609 0.07958143 0.009080105 +0.06429595 0.07958143 0.009080105 +0.07958143 0.07958143 0.009080105 +0.0968001 0.07958143 0.009080105 +0.1160161 0.07958143 0.009080105 +0.1372908 0.07958143 0.009080105 +0.1606827 0.07958143 0.009080105 +0.1862481 0.07958143 0.009080105 +0.2140411 0.07958143 0.009080105 +0.2441142 0.07958143 0.009080105 +0.2765176 0.07958143 0.009080105 +0.3113005 0.07958143 0.009080105 +0.3485102 0.07958143 0.009080105 +0.388193 0.07958143 0.009080105 +0.4303934 0.07958143 0.009080105 +0.4751555 0.07958143 0.009080105 +0.5225216 0.07958143 0.009080105 +0.5725335 0.07958143 0.009080105 +0.6252316 0.07958143 0.009080105 +0.6806558 0.07958143 0.009080105 +0.7388448 0.07958143 0.009080105 +0.7998369 0.07958143 0.009080105 +0.8636691 0.07958143 0.009080105 +0.9303782 0.07958143 0.009080105 +1 0.07958143 0.009080105 +0 0.0968001 0.009080105 +0.002418731 0.0968001 0.009080105 +0.005155668 0.0968001 0.009080105 +0.009080105 0.0968001 0.009080105 +0.01434988 0.0968001 0.009080105 +0.02107202 0.0968001 0.009080105 +0.02934285 0.0968001 0.009080105 +0.03925039 0.0968001 0.009080105 +0.05087609 0.0968001 0.009080105 +0.06429595 0.0968001 0.009080105 +0.07958143 0.0968001 0.009080105 +0.0968001 0.0968001 0.009080105 +0.1160161 0.0968001 0.009080105 +0.1372908 0.0968001 0.009080105 +0.1606827 0.0968001 0.009080105 +0.1862481 0.0968001 0.009080105 +0.2140411 0.0968001 0.009080105 +0.2441142 0.0968001 0.009080105 +0.2765176 0.0968001 0.009080105 +0.3113005 0.0968001 0.009080105 +0.3485102 0.0968001 0.009080105 +0.388193 0.0968001 0.009080105 +0.4303934 0.0968001 0.009080105 +0.4751555 0.0968001 0.009080105 +0.5225216 0.0968001 0.009080105 +0.5725335 0.0968001 0.009080105 +0.6252316 0.0968001 0.009080105 +0.6806558 0.0968001 0.009080105 +0.7388448 0.0968001 0.009080105 +0.7998369 0.0968001 0.009080105 +0.8636691 0.0968001 0.009080105 +0.9303782 0.0968001 0.009080105 +1 0.0968001 0.009080105 +0 0.1160161 0.009080105 +0.002418731 0.1160161 0.009080105 +0.005155668 0.1160161 0.009080105 +0.009080105 0.1160161 0.009080105 +0.01434988 0.1160161 0.009080105 +0.02107202 0.1160161 0.009080105 +0.02934285 0.1160161 0.009080105 +0.03925039 0.1160161 0.009080105 +0.05087609 0.1160161 0.009080105 +0.06429595 0.1160161 0.009080105 +0.07958143 0.1160161 0.009080105 +0.0968001 0.1160161 0.009080105 +0.1160161 0.1160161 0.009080105 +0.1372908 0.1160161 0.009080105 +0.1606827 0.1160161 0.009080105 +0.1862481 0.1160161 0.009080105 +0.2140411 0.1160161 0.009080105 +0.2441142 0.1160161 0.009080105 +0.2765176 0.1160161 0.009080105 +0.3113005 0.1160161 0.009080105 +0.3485102 0.1160161 0.009080105 +0.388193 0.1160161 0.009080105 +0.4303934 0.1160161 0.009080105 +0.4751555 0.1160161 0.009080105 +0.5225216 0.1160161 0.009080105 +0.5725335 0.1160161 0.009080105 +0.6252316 0.1160161 0.009080105 +0.6806558 0.1160161 0.009080105 +0.7388448 0.1160161 0.009080105 +0.7998369 0.1160161 0.009080105 +0.8636691 0.1160161 0.009080105 +0.9303782 0.1160161 0.009080105 +1 0.1160161 0.009080105 +0 0.1372908 0.009080105 +0.002418731 0.1372908 0.009080105 +0.005155668 0.1372908 0.009080105 +0.009080105 0.1372908 0.009080105 +0.01434988 0.1372908 0.009080105 +0.02107202 0.1372908 0.009080105 +0.02934285 0.1372908 0.009080105 +0.03925039 0.1372908 0.009080105 +0.05087609 0.1372908 0.009080105 +0.06429595 0.1372908 0.009080105 +0.07958143 0.1372908 0.009080105 +0.0968001 0.1372908 0.009080105 +0.1160161 0.1372908 0.009080105 +0.1372908 0.1372908 0.009080105 +0.1606827 0.1372908 0.009080105 +0.1862481 0.1372908 0.009080105 +0.2140411 0.1372908 0.009080105 +0.2441142 0.1372908 0.009080105 +0.2765176 0.1372908 0.009080105 +0.3113005 0.1372908 0.009080105 +0.3485102 0.1372908 0.009080105 +0.388193 0.1372908 0.009080105 +0.4303934 0.1372908 0.009080105 +0.4751555 0.1372908 0.009080105 +0.5225216 0.1372908 0.009080105 +0.5725335 0.1372908 0.009080105 +0.6252316 0.1372908 0.009080105 +0.6806558 0.1372908 0.009080105 +0.7388448 0.1372908 0.009080105 +0.7998369 0.1372908 0.009080105 +0.8636691 0.1372908 0.009080105 +0.9303782 0.1372908 0.009080105 +1 0.1372908 0.009080105 +0 0.1606827 0.009080105 +0.002418731 0.1606827 0.009080105 +0.005155668 0.1606827 0.009080105 +0.009080105 0.1606827 0.009080105 +0.01434988 0.1606827 0.009080105 +0.02107202 0.1606827 0.009080105 +0.02934285 0.1606827 0.009080105 +0.03925039 0.1606827 0.009080105 +0.05087609 0.1606827 0.009080105 +0.06429595 0.1606827 0.009080105 +0.07958143 0.1606827 0.009080105 +0.0968001 0.1606827 0.009080105 +0.1160161 0.1606827 0.009080105 +0.1372908 0.1606827 0.009080105 +0.1606827 0.1606827 0.009080105 +0.1862481 0.1606827 0.009080105 +0.2140411 0.1606827 0.009080105 +0.2441142 0.1606827 0.009080105 +0.2765176 0.1606827 0.009080105 +0.3113005 0.1606827 0.009080105 +0.3485102 0.1606827 0.009080105 +0.388193 0.1606827 0.009080105 +0.4303934 0.1606827 0.009080105 +0.4751555 0.1606827 0.009080105 +0.5225216 0.1606827 0.009080105 +0.5725335 0.1606827 0.009080105 +0.6252316 0.1606827 0.009080105 +0.6806558 0.1606827 0.009080105 +0.7388448 0.1606827 0.009080105 +0.7998369 0.1606827 0.009080105 +0.8636691 0.1606827 0.009080105 +0.9303782 0.1606827 0.009080105 +1 0.1606827 0.009080105 +0 0.1862481 0.009080105 +0.002418731 0.1862481 0.009080105 +0.005155668 0.1862481 0.009080105 +0.009080105 0.1862481 0.009080105 +0.01434988 0.1862481 0.009080105 +0.02107202 0.1862481 0.009080105 +0.02934285 0.1862481 0.009080105 +0.03925039 0.1862481 0.009080105 +0.05087609 0.1862481 0.009080105 +0.06429595 0.1862481 0.009080105 +0.07958143 0.1862481 0.009080105 +0.0968001 0.1862481 0.009080105 +0.1160161 0.1862481 0.009080105 +0.1372908 0.1862481 0.009080105 +0.1606827 0.1862481 0.009080105 +0.1862481 0.1862481 0.009080105 +0.2140411 0.1862481 0.009080105 +0.2441142 0.1862481 0.009080105 +0.2765176 0.1862481 0.009080105 +0.3113005 0.1862481 0.009080105 +0.3485102 0.1862481 0.009080105 +0.388193 0.1862481 0.009080105 +0.4303934 0.1862481 0.009080105 +0.4751555 0.1862481 0.009080105 +0.5225216 0.1862481 0.009080105 +0.5725335 0.1862481 0.009080105 +0.6252316 0.1862481 0.009080105 +0.6806558 0.1862481 0.009080105 +0.7388448 0.1862481 0.009080105 +0.7998369 0.1862481 0.009080105 +0.8636691 0.1862481 0.009080105 +0.9303782 0.1862481 0.009080105 +1 0.1862481 0.009080105 +0 0.2140411 0.009080105 +0.002418731 0.2140411 0.009080105 +0.005155668 0.2140411 0.009080105 +0.009080105 0.2140411 0.009080105 +0.01434988 0.2140411 0.009080105 +0.02107202 0.2140411 0.009080105 +0.02934285 0.2140411 0.009080105 +0.03925039 0.2140411 0.009080105 +0.05087609 0.2140411 0.009080105 +0.06429595 0.2140411 0.009080105 +0.07958143 0.2140411 0.009080105 +0.0968001 0.2140411 0.009080105 +0.1160161 0.2140411 0.009080105 +0.1372908 0.2140411 0.009080105 +0.1606827 0.2140411 0.009080105 +0.1862481 0.2140411 0.009080105 +0.2140411 0.2140411 0.009080105 +0.2441142 0.2140411 0.009080105 +0.2765176 0.2140411 0.009080105 +0.3113005 0.2140411 0.009080105 +0.3485102 0.2140411 0.009080105 +0.388193 0.2140411 0.009080105 +0.4303934 0.2140411 0.009080105 +0.4751555 0.2140411 0.009080105 +0.5225216 0.2140411 0.009080105 +0.5725335 0.2140411 0.009080105 +0.6252316 0.2140411 0.009080105 +0.6806558 0.2140411 0.009080105 +0.7388448 0.2140411 0.009080105 +0.7998369 0.2140411 0.009080105 +0.8636691 0.2140411 0.009080105 +0.9303782 0.2140411 0.009080105 +1 0.2140411 0.009080105 +0 0.2441142 0.009080105 +0.002418731 0.2441142 0.009080105 +0.005155668 0.2441142 0.009080105 +0.009080105 0.2441142 0.009080105 +0.01434988 0.2441142 0.009080105 +0.02107202 0.2441142 0.009080105 +0.02934285 0.2441142 0.009080105 +0.03925039 0.2441142 0.009080105 +0.05087609 0.2441142 0.009080105 +0.06429595 0.2441142 0.009080105 +0.07958143 0.2441142 0.009080105 +0.0968001 0.2441142 0.009080105 +0.1160161 0.2441142 0.009080105 +0.1372908 0.2441142 0.009080105 +0.1606827 0.2441142 0.009080105 +0.1862481 0.2441142 0.009080105 +0.2140411 0.2441142 0.009080105 +0.2441142 0.2441142 0.009080105 +0.2765176 0.2441142 0.009080105 +0.3113005 0.2441142 0.009080105 +0.3485102 0.2441142 0.009080105 +0.388193 0.2441142 0.009080105 +0.4303934 0.2441142 0.009080105 +0.4751555 0.2441142 0.009080105 +0.5225216 0.2441142 0.009080105 +0.5725335 0.2441142 0.009080105 +0.6252316 0.2441142 0.009080105 +0.6806558 0.2441142 0.009080105 +0.7388448 0.2441142 0.009080105 +0.7998369 0.2441142 0.009080105 +0.8636691 0.2441142 0.009080105 +0.9303782 0.2441142 0.009080105 +1 0.2441142 0.009080105 +0 0.2765176 0.009080105 +0.002418731 0.2765176 0.009080105 +0.005155668 0.2765176 0.009080105 +0.009080105 0.2765176 0.009080105 +0.01434988 0.2765176 0.009080105 +0.02107202 0.2765176 0.009080105 +0.02934285 0.2765176 0.009080105 +0.03925039 0.2765176 0.009080105 +0.05087609 0.2765176 0.009080105 +0.06429595 0.2765176 0.009080105 +0.07958143 0.2765176 0.009080105 +0.0968001 0.2765176 0.009080105 +0.1160161 0.2765176 0.009080105 +0.1372908 0.2765176 0.009080105 +0.1606827 0.2765176 0.009080105 +0.1862481 0.2765176 0.009080105 +0.2140411 0.2765176 0.009080105 +0.2441142 0.2765176 0.009080105 +0.2765176 0.2765176 0.009080105 +0.3113005 0.2765176 0.009080105 +0.3485102 0.2765176 0.009080105 +0.388193 0.2765176 0.009080105 +0.4303934 0.2765176 0.009080105 +0.4751555 0.2765176 0.009080105 +0.5225216 0.2765176 0.009080105 +0.5725335 0.2765176 0.009080105 +0.6252316 0.2765176 0.009080105 +0.6806558 0.2765176 0.009080105 +0.7388448 0.2765176 0.009080105 +0.7998369 0.2765176 0.009080105 +0.8636691 0.2765176 0.009080105 +0.9303782 0.2765176 0.009080105 +1 0.2765176 0.009080105 +0 0.3113005 0.009080105 +0.002418731 0.3113005 0.009080105 +0.005155668 0.3113005 0.009080105 +0.009080105 0.3113005 0.009080105 +0.01434988 0.3113005 0.009080105 +0.02107202 0.3113005 0.009080105 +0.02934285 0.3113005 0.009080105 +0.03925039 0.3113005 0.009080105 +0.05087609 0.3113005 0.009080105 +0.06429595 0.3113005 0.009080105 +0.07958143 0.3113005 0.009080105 +0.0968001 0.3113005 0.009080105 +0.1160161 0.3113005 0.009080105 +0.1372908 0.3113005 0.009080105 +0.1606827 0.3113005 0.009080105 +0.1862481 0.3113005 0.009080105 +0.2140411 0.3113005 0.009080105 +0.2441142 0.3113005 0.009080105 +0.2765176 0.3113005 0.009080105 +0.3113005 0.3113005 0.009080105 +0.3485102 0.3113005 0.009080105 +0.388193 0.3113005 0.009080105 +0.4303934 0.3113005 0.009080105 +0.4751555 0.3113005 0.009080105 +0.5225216 0.3113005 0.009080105 +0.5725335 0.3113005 0.009080105 +0.6252316 0.3113005 0.009080105 +0.6806558 0.3113005 0.009080105 +0.7388448 0.3113005 0.009080105 +0.7998369 0.3113005 0.009080105 +0.8636691 0.3113005 0.009080105 +0.9303782 0.3113005 0.009080105 +1 0.3113005 0.009080105 +0 0.3485102 0.009080105 +0.002418731 0.3485102 0.009080105 +0.005155668 0.3485102 0.009080105 +0.009080105 0.3485102 0.009080105 +0.01434988 0.3485102 0.009080105 +0.02107202 0.3485102 0.009080105 +0.02934285 0.3485102 0.009080105 +0.03925039 0.3485102 0.009080105 +0.05087609 0.3485102 0.009080105 +0.06429595 0.3485102 0.009080105 +0.07958143 0.3485102 0.009080105 +0.0968001 0.3485102 0.009080105 +0.1160161 0.3485102 0.009080105 +0.1372908 0.3485102 0.009080105 +0.1606827 0.3485102 0.009080105 +0.1862481 0.3485102 0.009080105 +0.2140411 0.3485102 0.009080105 +0.2441142 0.3485102 0.009080105 +0.2765176 0.3485102 0.009080105 +0.3113005 0.3485102 0.009080105 +0.3485102 0.3485102 0.009080105 +0.388193 0.3485102 0.009080105 +0.4303934 0.3485102 0.009080105 +0.4751555 0.3485102 0.009080105 +0.5225216 0.3485102 0.009080105 +0.5725335 0.3485102 0.009080105 +0.6252316 0.3485102 0.009080105 +0.6806558 0.3485102 0.009080105 +0.7388448 0.3485102 0.009080105 +0.7998369 0.3485102 0.009080105 +0.8636691 0.3485102 0.009080105 +0.9303782 0.3485102 0.009080105 +1 0.3485102 0.009080105 +0 0.388193 0.009080105 +0.002418731 0.388193 0.009080105 +0.005155668 0.388193 0.009080105 +0.009080105 0.388193 0.009080105 +0.01434988 0.388193 0.009080105 +0.02107202 0.388193 0.009080105 +0.02934285 0.388193 0.009080105 +0.03925039 0.388193 0.009080105 +0.05087609 0.388193 0.009080105 +0.06429595 0.388193 0.009080105 +0.07958143 0.388193 0.009080105 +0.0968001 0.388193 0.009080105 +0.1160161 0.388193 0.009080105 +0.1372908 0.388193 0.009080105 +0.1606827 0.388193 0.009080105 +0.1862481 0.388193 0.009080105 +0.2140411 0.388193 0.009080105 +0.2441142 0.388193 0.009080105 +0.2765176 0.388193 0.009080105 +0.3113005 0.388193 0.009080105 +0.3485102 0.388193 0.009080105 +0.388193 0.388193 0.009080105 +0.4303934 0.388193 0.009080105 +0.4751555 0.388193 0.009080105 +0.5225216 0.388193 0.009080105 +0.5725335 0.388193 0.009080105 +0.6252316 0.388193 0.009080105 +0.6806558 0.388193 0.009080105 +0.7388448 0.388193 0.009080105 +0.7998369 0.388193 0.009080105 +0.8636691 0.388193 0.009080105 +0.9303782 0.388193 0.009080105 +1 0.388193 0.009080105 +0 0.4303934 0.009080105 +0.002418731 0.4303934 0.009080105 +0.005155668 0.4303934 0.009080105 +0.009080105 0.4303934 0.009080105 +0.01434988 0.4303934 0.009080105 +0.02107202 0.4303934 0.009080105 +0.02934285 0.4303934 0.009080105 +0.03925039 0.4303934 0.009080105 +0.05087609 0.4303934 0.009080105 +0.06429595 0.4303934 0.009080105 +0.07958143 0.4303934 0.009080105 +0.0968001 0.4303934 0.009080105 +0.1160161 0.4303934 0.009080105 +0.1372908 0.4303934 0.009080105 +0.1606827 0.4303934 0.009080105 +0.1862481 0.4303934 0.009080105 +0.2140411 0.4303934 0.009080105 +0.2441142 0.4303934 0.009080105 +0.2765176 0.4303934 0.009080105 +0.3113005 0.4303934 0.009080105 +0.3485102 0.4303934 0.009080105 +0.388193 0.4303934 0.009080105 +0.4303934 0.4303934 0.009080105 +0.4751555 0.4303934 0.009080105 +0.5225216 0.4303934 0.009080105 +0.5725335 0.4303934 0.009080105 +0.6252316 0.4303934 0.009080105 +0.6806558 0.4303934 0.009080105 +0.7388448 0.4303934 0.009080105 +0.7998369 0.4303934 0.009080105 +0.8636691 0.4303934 0.009080105 +0.9303782 0.4303934 0.009080105 +1 0.4303934 0.009080105 +0 0.4751555 0.009080105 +0.002418731 0.4751555 0.009080105 +0.005155668 0.4751555 0.009080105 +0.009080105 0.4751555 0.009080105 +0.01434988 0.4751555 0.009080105 +0.02107202 0.4751555 0.009080105 +0.02934285 0.4751555 0.009080105 +0.03925039 0.4751555 0.009080105 +0.05087609 0.4751555 0.009080105 +0.06429595 0.4751555 0.009080105 +0.07958143 0.4751555 0.009080105 +0.0968001 0.4751555 0.009080105 +0.1160161 0.4751555 0.009080105 +0.1372908 0.4751555 0.009080105 +0.1606827 0.4751555 0.009080105 +0.1862481 0.4751555 0.009080105 +0.2140411 0.4751555 0.009080105 +0.2441142 0.4751555 0.009080105 +0.2765176 0.4751555 0.009080105 +0.3113005 0.4751555 0.009080105 +0.3485102 0.4751555 0.009080105 +0.388193 0.4751555 0.009080105 +0.4303934 0.4751555 0.009080105 +0.4751555 0.4751555 0.009080105 +0.5225216 0.4751555 0.009080105 +0.5725335 0.4751555 0.009080105 +0.6252316 0.4751555 0.009080105 +0.6806558 0.4751555 0.009080105 +0.7388448 0.4751555 0.009080105 +0.7998369 0.4751555 0.009080105 +0.8636691 0.4751555 0.009080105 +0.9303782 0.4751555 0.009080105 +1 0.4751555 0.009080105 +0 0.5225216 0.009080105 +0.002418731 0.5225216 0.009080105 +0.005155668 0.5225216 0.009080105 +0.009080105 0.5225216 0.009080105 +0.01434988 0.5225216 0.009080105 +0.02107202 0.5225216 0.009080105 +0.02934285 0.5225216 0.009080105 +0.03925039 0.5225216 0.009080105 +0.05087609 0.5225216 0.009080105 +0.06429595 0.5225216 0.009080105 +0.07958143 0.5225216 0.009080105 +0.0968001 0.5225216 0.009080105 +0.1160161 0.5225216 0.009080105 +0.1372908 0.5225216 0.009080105 +0.1606827 0.5225216 0.009080105 +0.1862481 0.5225216 0.009080105 +0.2140411 0.5225216 0.009080105 +0.2441142 0.5225216 0.009080105 +0.2765176 0.5225216 0.009080105 +0.3113005 0.5225216 0.009080105 +0.3485102 0.5225216 0.009080105 +0.388193 0.5225216 0.009080105 +0.4303934 0.5225216 0.009080105 +0.4751555 0.5225216 0.009080105 +0.5225216 0.5225216 0.009080105 +0.5725335 0.5225216 0.009080105 +0.6252316 0.5225216 0.009080105 +0.6806558 0.5225216 0.009080105 +0.7388448 0.5225216 0.009080105 +0.7998369 0.5225216 0.009080105 +0.8636691 0.5225216 0.009080105 +0.9303782 0.5225216 0.009080105 +1 0.5225216 0.009080105 +0 0.5725335 0.009080105 +0.002418731 0.5725335 0.009080105 +0.005155668 0.5725335 0.009080105 +0.009080105 0.5725335 0.009080105 +0.01434988 0.5725335 0.009080105 +0.02107202 0.5725335 0.009080105 +0.02934285 0.5725335 0.009080105 +0.03925039 0.5725335 0.009080105 +0.05087609 0.5725335 0.009080105 +0.06429595 0.5725335 0.009080105 +0.07958143 0.5725335 0.009080105 +0.0968001 0.5725335 0.009080105 +0.1160161 0.5725335 0.009080105 +0.1372908 0.5725335 0.009080105 +0.1606827 0.5725335 0.009080105 +0.1862481 0.5725335 0.009080105 +0.2140411 0.5725335 0.009080105 +0.2441142 0.5725335 0.009080105 +0.2765176 0.5725335 0.009080105 +0.3113005 0.5725335 0.009080105 +0.3485102 0.5725335 0.009080105 +0.388193 0.5725335 0.009080105 +0.4303934 0.5725335 0.009080105 +0.4751555 0.5725335 0.009080105 +0.5225216 0.5725335 0.009080105 +0.5725335 0.5725335 0.009080105 +0.6252316 0.5725335 0.009080105 +0.6806558 0.5725335 0.009080105 +0.7388448 0.5725335 0.009080105 +0.7998369 0.5725335 0.009080105 +0.8636691 0.5725335 0.009080105 +0.9303782 0.5725335 0.009080105 +1 0.5725335 0.009080105 +0 0.6252316 0.009080105 +0.002418731 0.6252316 0.009080105 +0.005155668 0.6252316 0.009080105 +0.009080105 0.6252316 0.009080105 +0.01434988 0.6252316 0.009080105 +0.02107202 0.6252316 0.009080105 +0.02934285 0.6252316 0.009080105 +0.03925039 0.6252316 0.009080105 +0.05087609 0.6252316 0.009080105 +0.06429595 0.6252316 0.009080105 +0.07958143 0.6252316 0.009080105 +0.0968001 0.6252316 0.009080105 +0.1160161 0.6252316 0.009080105 +0.1372908 0.6252316 0.009080105 +0.1606827 0.6252316 0.009080105 +0.1862481 0.6252316 0.009080105 +0.2140411 0.6252316 0.009080105 +0.2441142 0.6252316 0.009080105 +0.2765176 0.6252316 0.009080105 +0.3113005 0.6252316 0.009080105 +0.3485102 0.6252316 0.009080105 +0.388193 0.6252316 0.009080105 +0.4303934 0.6252316 0.009080105 +0.4751555 0.6252316 0.009080105 +0.5225216 0.6252316 0.009080105 +0.5725335 0.6252316 0.009080105 +0.6252316 0.6252316 0.009080105 +0.6806558 0.6252316 0.009080105 +0.7388448 0.6252316 0.009080105 +0.7998369 0.6252316 0.009080105 +0.8636691 0.6252316 0.009080105 +0.9303782 0.6252316 0.009080105 +1 0.6252316 0.009080105 +0 0.6806558 0.009080105 +0.002418731 0.6806558 0.009080105 +0.005155668 0.6806558 0.009080105 +0.009080105 0.6806558 0.009080105 +0.01434988 0.6806558 0.009080105 +0.02107202 0.6806558 0.009080105 +0.02934285 0.6806558 0.009080105 +0.03925039 0.6806558 0.009080105 +0.05087609 0.6806558 0.009080105 +0.06429595 0.6806558 0.009080105 +0.07958143 0.6806558 0.009080105 +0.0968001 0.6806558 0.009080105 +0.1160161 0.6806558 0.009080105 +0.1372908 0.6806558 0.009080105 +0.1606827 0.6806558 0.009080105 +0.1862481 0.6806558 0.009080105 +0.2140411 0.6806558 0.009080105 +0.2441142 0.6806558 0.009080105 +0.2765176 0.6806558 0.009080105 +0.3113005 0.6806558 0.009080105 +0.3485102 0.6806558 0.009080105 +0.388193 0.6806558 0.009080105 +0.4303934 0.6806558 0.009080105 +0.4751555 0.6806558 0.009080105 +0.5225216 0.6806558 0.009080105 +0.5725335 0.6806558 0.009080105 +0.6252316 0.6806558 0.009080105 +0.6806558 0.6806558 0.009080105 +0.7388448 0.6806558 0.009080105 +0.7998369 0.6806558 0.009080105 +0.8636691 0.6806558 0.009080105 +0.9303782 0.6806558 0.009080105 +1 0.6806558 0.009080105 +0 0.7388448 0.009080105 +0.002418731 0.7388448 0.009080105 +0.005155668 0.7388448 0.009080105 +0.009080105 0.7388448 0.009080105 +0.01434988 0.7388448 0.009080105 +0.02107202 0.7388448 0.009080105 +0.02934285 0.7388448 0.009080105 +0.03925039 0.7388448 0.009080105 +0.05087609 0.7388448 0.009080105 +0.06429595 0.7388448 0.009080105 +0.07958143 0.7388448 0.009080105 +0.0968001 0.7388448 0.009080105 +0.1160161 0.7388448 0.009080105 +0.1372908 0.7388448 0.009080105 +0.1606827 0.7388448 0.009080105 +0.1862481 0.7388448 0.009080105 +0.2140411 0.7388448 0.009080105 +0.2441142 0.7388448 0.009080105 +0.2765176 0.7388448 0.009080105 +0.3113005 0.7388448 0.009080105 +0.3485102 0.7388448 0.009080105 +0.388193 0.7388448 0.009080105 +0.4303934 0.7388448 0.009080105 +0.4751555 0.7388448 0.009080105 +0.5225216 0.7388448 0.009080105 +0.5725335 0.7388448 0.009080105 +0.6252316 0.7388448 0.009080105 +0.6806558 0.7388448 0.009080105 +0.7388448 0.7388448 0.009080105 +0.7998369 0.7388448 0.009080105 +0.8636691 0.7388448 0.009080105 +0.9303782 0.7388448 0.009080105 +1 0.7388448 0.009080105 +0 0.7998369 0.009080105 +0.002418731 0.7998369 0.009080105 +0.005155668 0.7998369 0.009080105 +0.009080105 0.7998369 0.009080105 +0.01434988 0.7998369 0.009080105 +0.02107202 0.7998369 0.009080105 +0.02934285 0.7998369 0.009080105 +0.03925039 0.7998369 0.009080105 +0.05087609 0.7998369 0.009080105 +0.06429595 0.7998369 0.009080105 +0.07958143 0.7998369 0.009080105 +0.0968001 0.7998369 0.009080105 +0.1160161 0.7998369 0.009080105 +0.1372908 0.7998369 0.009080105 +0.1606827 0.7998369 0.009080105 +0.1862481 0.7998369 0.009080105 +0.2140411 0.7998369 0.009080105 +0.2441142 0.7998369 0.009080105 +0.2765176 0.7998369 0.009080105 +0.3113005 0.7998369 0.009080105 +0.3485102 0.7998369 0.009080105 +0.388193 0.7998369 0.009080105 +0.4303934 0.7998369 0.009080105 +0.4751555 0.7998369 0.009080105 +0.5225216 0.7998369 0.009080105 +0.5725335 0.7998369 0.009080105 +0.6252316 0.7998369 0.009080105 +0.6806558 0.7998369 0.009080105 +0.7388448 0.7998369 0.009080105 +0.7998369 0.7998369 0.009080105 +0.8636691 0.7998369 0.009080105 +0.9303782 0.7998369 0.009080105 +1 0.7998369 0.009080105 +0 0.8636691 0.009080105 +0.002418731 0.8636691 0.009080105 +0.005155668 0.8636691 0.009080105 +0.009080105 0.8636691 0.009080105 +0.01434988 0.8636691 0.009080105 +0.02107202 0.8636691 0.009080105 +0.02934285 0.8636691 0.009080105 +0.03925039 0.8636691 0.009080105 +0.05087609 0.8636691 0.009080105 +0.06429595 0.8636691 0.009080105 +0.07958143 0.8636691 0.009080105 +0.0968001 0.8636691 0.009080105 +0.1160161 0.8636691 0.009080105 +0.1372908 0.8636691 0.009080105 +0.1606827 0.8636691 0.009080105 +0.1862481 0.8636691 0.009080105 +0.2140411 0.8636691 0.009080105 +0.2441142 0.8636691 0.009080105 +0.2765176 0.8636691 0.009080105 +0.3113005 0.8636691 0.009080105 +0.3485102 0.8636691 0.009080105 +0.388193 0.8636691 0.009080105 +0.4303934 0.8636691 0.009080105 +0.4751555 0.8636691 0.009080105 +0.5225216 0.8636691 0.009080105 +0.5725335 0.8636691 0.009080105 +0.6252316 0.8636691 0.009080105 +0.6806558 0.8636691 0.009080105 +0.7388448 0.8636691 0.009080105 +0.7998369 0.8636691 0.009080105 +0.8636691 0.8636691 0.009080105 +0.9303782 0.8636691 0.009080105 +1 0.8636691 0.009080105 +0 0.9303782 0.009080105 +0.002418731 0.9303782 0.009080105 +0.005155668 0.9303782 0.009080105 +0.009080105 0.9303782 0.009080105 +0.01434988 0.9303782 0.009080105 +0.02107202 0.9303782 0.009080105 +0.02934285 0.9303782 0.009080105 +0.03925039 0.9303782 0.009080105 +0.05087609 0.9303782 0.009080105 +0.06429595 0.9303782 0.009080105 +0.07958143 0.9303782 0.009080105 +0.0968001 0.9303782 0.009080105 +0.1160161 0.9303782 0.009080105 +0.1372908 0.9303782 0.009080105 +0.1606827 0.9303782 0.009080105 +0.1862481 0.9303782 0.009080105 +0.2140411 0.9303782 0.009080105 +0.2441142 0.9303782 0.009080105 +0.2765176 0.9303782 0.009080105 +0.3113005 0.9303782 0.009080105 +0.3485102 0.9303782 0.009080105 +0.388193 0.9303782 0.009080105 +0.4303934 0.9303782 0.009080105 +0.4751555 0.9303782 0.009080105 +0.5225216 0.9303782 0.009080105 +0.5725335 0.9303782 0.009080105 +0.6252316 0.9303782 0.009080105 +0.6806558 0.9303782 0.009080105 +0.7388448 0.9303782 0.009080105 +0.7998369 0.9303782 0.009080105 +0.8636691 0.9303782 0.009080105 +0.9303782 0.9303782 0.009080105 +1 0.9303782 0.009080105 +0 1 0.009080105 +0.002418731 1 0.009080105 +0.005155668 1 0.009080105 +0.009080105 1 0.009080105 +0.01434988 1 0.009080105 +0.02107202 1 0.009080105 +0.02934285 1 0.009080105 +0.03925039 1 0.009080105 +0.05087609 1 0.009080105 +0.06429595 1 0.009080105 +0.07958143 1 0.009080105 +0.0968001 1 0.009080105 +0.1160161 1 0.009080105 +0.1372908 1 0.009080105 +0.1606827 1 0.009080105 +0.1862481 1 0.009080105 +0.2140411 1 0.009080105 +0.2441142 1 0.009080105 +0.2765176 1 0.009080105 +0.3113005 1 0.009080105 +0.3485102 1 0.009080105 +0.388193 1 0.009080105 +0.4303934 1 0.009080105 +0.4751555 1 0.009080105 +0.5225216 1 0.009080105 +0.5725335 1 0.009080105 +0.6252316 1 0.009080105 +0.6806558 1 0.009080105 +0.7388448 1 0.009080105 +0.7998369 1 0.009080105 +0.8636691 1 0.009080105 +0.9303782 1 0.009080105 +1 1 0.009080105 +0 0 0.01434988 +0.002418731 0 0.01434988 +0.005155668 0 0.01434988 +0.009080105 0 0.01434988 +0.01434988 0 0.01434988 +0.02107202 0 0.01434988 +0.02934285 0 0.01434988 +0.03925039 0 0.01434988 +0.05087609 0 0.01434988 +0.06429595 0 0.01434988 +0.07958143 0 0.01434988 +0.0968001 0 0.01434988 +0.1160161 0 0.01434988 +0.1372908 0 0.01434988 +0.1606827 0 0.01434988 +0.1862481 0 0.01434988 +0.2140411 0 0.01434988 +0.2441142 0 0.01434988 +0.2765176 0 0.01434988 +0.3113005 0 0.01434988 +0.3485102 0 0.01434988 +0.388193 0 0.01434988 +0.4303934 0 0.01434988 +0.4751555 0 0.01434988 +0.5225216 0 0.01434988 +0.5725335 0 0.01434988 +0.6252316 0 0.01434988 +0.6806558 0 0.01434988 +0.7388448 0 0.01434988 +0.7998369 0 0.01434988 +0.8636691 0 0.01434988 +0.9303782 0 0.01434988 +1 0 0.01434988 +0 0.002418731 0.01434988 +0.002418731 0.002418731 0.01434988 +0.005155668 0.002418731 0.01434988 +0.009080105 0.002418731 0.01434988 +0.01434988 0.002418731 0.01434988 +0.02107202 0.002418731 0.01434988 +0.02934285 0.002418731 0.01434988 +0.03925039 0.002418731 0.01434988 +0.05087609 0.002418731 0.01434988 +0.06429595 0.002418731 0.01434988 +0.07958143 0.002418731 0.01434988 +0.0968001 0.002418731 0.01434988 +0.1160161 0.002418731 0.01434988 +0.1372908 0.002418731 0.01434988 +0.1606827 0.002418731 0.01434988 +0.1862481 0.002418731 0.01434988 +0.2140411 0.002418731 0.01434988 +0.2441142 0.002418731 0.01434988 +0.2765176 0.002418731 0.01434988 +0.3113005 0.002418731 0.01434988 +0.3485102 0.002418731 0.01434988 +0.388193 0.002418731 0.01434988 +0.4303934 0.002418731 0.01434988 +0.4751555 0.002418731 0.01434988 +0.5225216 0.002418731 0.01434988 +0.5725335 0.002418731 0.01434988 +0.6252316 0.002418731 0.01434988 +0.6806558 0.002418731 0.01434988 +0.7388448 0.002418731 0.01434988 +0.7998369 0.002418731 0.01434988 +0.8636691 0.002418731 0.01434988 +0.9303782 0.002418731 0.01434988 +1 0.002418731 0.01434988 +0 0.005155668 0.01434988 +0.002418731 0.005155668 0.01434988 +0.005155668 0.005155668 0.01434988 +0.009080105 0.005155668 0.01434988 +0.01434988 0.005155668 0.01434988 +0.02107202 0.005155668 0.01434988 +0.02934285 0.005155668 0.01434988 +0.03925039 0.005155668 0.01434988 +0.05087609 0.005155668 0.01434988 +0.06429595 0.005155668 0.01434988 +0.07958143 0.005155668 0.01434988 +0.0968001 0.005155668 0.01434988 +0.1160161 0.005155668 0.01434988 +0.1372908 0.005155668 0.01434988 +0.1606827 0.005155668 0.01434988 +0.1862481 0.005155668 0.01434988 +0.2140411 0.005155668 0.01434988 +0.2441142 0.005155668 0.01434988 +0.2765176 0.005155668 0.01434988 +0.3113005 0.005155668 0.01434988 +0.3485102 0.005155668 0.01434988 +0.388193 0.005155668 0.01434988 +0.4303934 0.005155668 0.01434988 +0.4751555 0.005155668 0.01434988 +0.5225216 0.005155668 0.01434988 +0.5725335 0.005155668 0.01434988 +0.6252316 0.005155668 0.01434988 +0.6806558 0.005155668 0.01434988 +0.7388448 0.005155668 0.01434988 +0.7998369 0.005155668 0.01434988 +0.8636691 0.005155668 0.01434988 +0.9303782 0.005155668 0.01434988 +1 0.005155668 0.01434988 +0 0.009080105 0.01434988 +0.002418731 0.009080105 0.01434988 +0.005155668 0.009080105 0.01434988 +0.009080105 0.009080105 0.01434988 +0.01434988 0.009080105 0.01434988 +0.02107202 0.009080105 0.01434988 +0.02934285 0.009080105 0.01434988 +0.03925039 0.009080105 0.01434988 +0.05087609 0.009080105 0.01434988 +0.06429595 0.009080105 0.01434988 +0.07958143 0.009080105 0.01434988 +0.0968001 0.009080105 0.01434988 +0.1160161 0.009080105 0.01434988 +0.1372908 0.009080105 0.01434988 +0.1606827 0.009080105 0.01434988 +0.1862481 0.009080105 0.01434988 +0.2140411 0.009080105 0.01434988 +0.2441142 0.009080105 0.01434988 +0.2765176 0.009080105 0.01434988 +0.3113005 0.009080105 0.01434988 +0.3485102 0.009080105 0.01434988 +0.388193 0.009080105 0.01434988 +0.4303934 0.009080105 0.01434988 +0.4751555 0.009080105 0.01434988 +0.5225216 0.009080105 0.01434988 +0.5725335 0.009080105 0.01434988 +0.6252316 0.009080105 0.01434988 +0.6806558 0.009080105 0.01434988 +0.7388448 0.009080105 0.01434988 +0.7998369 0.009080105 0.01434988 +0.8636691 0.009080105 0.01434988 +0.9303782 0.009080105 0.01434988 +1 0.009080105 0.01434988 +0 0.01434988 0.01434988 +0.002418731 0.01434988 0.01434988 +0.005155668 0.01434988 0.01434988 +0.009080105 0.01434988 0.01434988 +0.01434988 0.01434988 0.01434988 +0.02107202 0.01434988 0.01434988 +0.02934285 0.01434988 0.01434988 +0.03925039 0.01434988 0.01434988 +0.05087609 0.01434988 0.01434988 +0.06429595 0.01434988 0.01434988 +0.07958143 0.01434988 0.01434988 +0.0968001 0.01434988 0.01434988 +0.1160161 0.01434988 0.01434988 +0.1372908 0.01434988 0.01434988 +0.1606827 0.01434988 0.01434988 +0.1862481 0.01434988 0.01434988 +0.2140411 0.01434988 0.01434988 +0.2441142 0.01434988 0.01434988 +0.2765176 0.01434988 0.01434988 +0.3113005 0.01434988 0.01434988 +0.3485102 0.01434988 0.01434988 +0.388193 0.01434988 0.01434988 +0.4303934 0.01434988 0.01434988 +0.4751555 0.01434988 0.01434988 +0.5225216 0.01434988 0.01434988 +0.5725335 0.01434988 0.01434988 +0.6252316 0.01434988 0.01434988 +0.6806558 0.01434988 0.01434988 +0.7388448 0.01434988 0.01434988 +0.7998369 0.01434988 0.01434988 +0.8636691 0.01434988 0.01434988 +0.9303782 0.01434988 0.01434988 +1 0.01434988 0.01434988 +0 0.02107202 0.01434988 +0.002418731 0.02107202 0.01434988 +0.005155668 0.02107202 0.01434988 +0.009080105 0.02107202 0.01434988 +0.01434988 0.02107202 0.01434988 +0.02107202 0.02107202 0.01434988 +0.02934285 0.02107202 0.01434988 +0.03925039 0.02107202 0.01434988 +0.05087609 0.02107202 0.01434988 +0.06429595 0.02107202 0.01434988 +0.07958143 0.02107202 0.01434988 +0.0968001 0.02107202 0.01434988 +0.1160161 0.02107202 0.01434988 +0.1372908 0.02107202 0.01434988 +0.1606827 0.02107202 0.01434988 +0.1862481 0.02107202 0.01434988 +0.2140411 0.02107202 0.01434988 +0.2441142 0.02107202 0.01434988 +0.2765176 0.02107202 0.01434988 +0.3113005 0.02107202 0.01434988 +0.3485102 0.02107202 0.01434988 +0.388193 0.02107202 0.01434988 +0.4303934 0.02107202 0.01434988 +0.4751555 0.02107202 0.01434988 +0.5225216 0.02107202 0.01434988 +0.5725335 0.02107202 0.01434988 +0.6252316 0.02107202 0.01434988 +0.6806558 0.02107202 0.01434988 +0.7388448 0.02107202 0.01434988 +0.7998369 0.02107202 0.01434988 +0.8636691 0.02107202 0.01434988 +0.9303782 0.02107202 0.01434988 +1 0.02107202 0.01434988 +0 0.02934285 0.01434988 +0.002418731 0.02934285 0.01434988 +0.005155668 0.02934285 0.01434988 +0.009080105 0.02934285 0.01434988 +0.01434988 0.02934285 0.01434988 +0.02107202 0.02934285 0.01434988 +0.02934285 0.02934285 0.01434988 +0.03925039 0.02934285 0.01434988 +0.05087609 0.02934285 0.01434988 +0.06429595 0.02934285 0.01434988 +0.07958143 0.02934285 0.01434988 +0.0968001 0.02934285 0.01434988 +0.1160161 0.02934285 0.01434988 +0.1372908 0.02934285 0.01434988 +0.1606827 0.02934285 0.01434988 +0.1862481 0.02934285 0.01434988 +0.2140411 0.02934285 0.01434988 +0.2441142 0.02934285 0.01434988 +0.2765176 0.02934285 0.01434988 +0.3113005 0.02934285 0.01434988 +0.3485102 0.02934285 0.01434988 +0.388193 0.02934285 0.01434988 +0.4303934 0.02934285 0.01434988 +0.4751555 0.02934285 0.01434988 +0.5225216 0.02934285 0.01434988 +0.5725335 0.02934285 0.01434988 +0.6252316 0.02934285 0.01434988 +0.6806558 0.02934285 0.01434988 +0.7388448 0.02934285 0.01434988 +0.7998369 0.02934285 0.01434988 +0.8636691 0.02934285 0.01434988 +0.9303782 0.02934285 0.01434988 +1 0.02934285 0.01434988 +0 0.03925039 0.01434988 +0.002418731 0.03925039 0.01434988 +0.005155668 0.03925039 0.01434988 +0.009080105 0.03925039 0.01434988 +0.01434988 0.03925039 0.01434988 +0.02107202 0.03925039 0.01434988 +0.02934285 0.03925039 0.01434988 +0.03925039 0.03925039 0.01434988 +0.05087609 0.03925039 0.01434988 +0.06429595 0.03925039 0.01434988 +0.07958143 0.03925039 0.01434988 +0.0968001 0.03925039 0.01434988 +0.1160161 0.03925039 0.01434988 +0.1372908 0.03925039 0.01434988 +0.1606827 0.03925039 0.01434988 +0.1862481 0.03925039 0.01434988 +0.2140411 0.03925039 0.01434988 +0.2441142 0.03925039 0.01434988 +0.2765176 0.03925039 0.01434988 +0.3113005 0.03925039 0.01434988 +0.3485102 0.03925039 0.01434988 +0.388193 0.03925039 0.01434988 +0.4303934 0.03925039 0.01434988 +0.4751555 0.03925039 0.01434988 +0.5225216 0.03925039 0.01434988 +0.5725335 0.03925039 0.01434988 +0.6252316 0.03925039 0.01434988 +0.6806558 0.03925039 0.01434988 +0.7388448 0.03925039 0.01434988 +0.7998369 0.03925039 0.01434988 +0.8636691 0.03925039 0.01434988 +0.9303782 0.03925039 0.01434988 +1 0.03925039 0.01434988 +0 0.05087609 0.01434988 +0.002418731 0.05087609 0.01434988 +0.005155668 0.05087609 0.01434988 +0.009080105 0.05087609 0.01434988 +0.01434988 0.05087609 0.01434988 +0.02107202 0.05087609 0.01434988 +0.02934285 0.05087609 0.01434988 +0.03925039 0.05087609 0.01434988 +0.05087609 0.05087609 0.01434988 +0.06429595 0.05087609 0.01434988 +0.07958143 0.05087609 0.01434988 +0.0968001 0.05087609 0.01434988 +0.1160161 0.05087609 0.01434988 +0.1372908 0.05087609 0.01434988 +0.1606827 0.05087609 0.01434988 +0.1862481 0.05087609 0.01434988 +0.2140411 0.05087609 0.01434988 +0.2441142 0.05087609 0.01434988 +0.2765176 0.05087609 0.01434988 +0.3113005 0.05087609 0.01434988 +0.3485102 0.05087609 0.01434988 +0.388193 0.05087609 0.01434988 +0.4303934 0.05087609 0.01434988 +0.4751555 0.05087609 0.01434988 +0.5225216 0.05087609 0.01434988 +0.5725335 0.05087609 0.01434988 +0.6252316 0.05087609 0.01434988 +0.6806558 0.05087609 0.01434988 +0.7388448 0.05087609 0.01434988 +0.7998369 0.05087609 0.01434988 +0.8636691 0.05087609 0.01434988 +0.9303782 0.05087609 0.01434988 +1 0.05087609 0.01434988 +0 0.06429595 0.01434988 +0.002418731 0.06429595 0.01434988 +0.005155668 0.06429595 0.01434988 +0.009080105 0.06429595 0.01434988 +0.01434988 0.06429595 0.01434988 +0.02107202 0.06429595 0.01434988 +0.02934285 0.06429595 0.01434988 +0.03925039 0.06429595 0.01434988 +0.05087609 0.06429595 0.01434988 +0.06429595 0.06429595 0.01434988 +0.07958143 0.06429595 0.01434988 +0.0968001 0.06429595 0.01434988 +0.1160161 0.06429595 0.01434988 +0.1372908 0.06429595 0.01434988 +0.1606827 0.06429595 0.01434988 +0.1862481 0.06429595 0.01434988 +0.2140411 0.06429595 0.01434988 +0.2441142 0.06429595 0.01434988 +0.2765176 0.06429595 0.01434988 +0.3113005 0.06429595 0.01434988 +0.3485102 0.06429595 0.01434988 +0.388193 0.06429595 0.01434988 +0.4303934 0.06429595 0.01434988 +0.4751555 0.06429595 0.01434988 +0.5225216 0.06429595 0.01434988 +0.5725335 0.06429595 0.01434988 +0.6252316 0.06429595 0.01434988 +0.6806558 0.06429595 0.01434988 +0.7388448 0.06429595 0.01434988 +0.7998369 0.06429595 0.01434988 +0.8636691 0.06429595 0.01434988 +0.9303782 0.06429595 0.01434988 +1 0.06429595 0.01434988 +0 0.07958143 0.01434988 +0.002418731 0.07958143 0.01434988 +0.005155668 0.07958143 0.01434988 +0.009080105 0.07958143 0.01434988 +0.01434988 0.07958143 0.01434988 +0.02107202 0.07958143 0.01434988 +0.02934285 0.07958143 0.01434988 +0.03925039 0.07958143 0.01434988 +0.05087609 0.07958143 0.01434988 +0.06429595 0.07958143 0.01434988 +0.07958143 0.07958143 0.01434988 +0.0968001 0.07958143 0.01434988 +0.1160161 0.07958143 0.01434988 +0.1372908 0.07958143 0.01434988 +0.1606827 0.07958143 0.01434988 +0.1862481 0.07958143 0.01434988 +0.2140411 0.07958143 0.01434988 +0.2441142 0.07958143 0.01434988 +0.2765176 0.07958143 0.01434988 +0.3113005 0.07958143 0.01434988 +0.3485102 0.07958143 0.01434988 +0.388193 0.07958143 0.01434988 +0.4303934 0.07958143 0.01434988 +0.4751555 0.07958143 0.01434988 +0.5225216 0.07958143 0.01434988 +0.5725335 0.07958143 0.01434988 +0.6252316 0.07958143 0.01434988 +0.6806558 0.07958143 0.01434988 +0.7388448 0.07958143 0.01434988 +0.7998369 0.07958143 0.01434988 +0.8636691 0.07958143 0.01434988 +0.9303782 0.07958143 0.01434988 +1 0.07958143 0.01434988 +0 0.0968001 0.01434988 +0.002418731 0.0968001 0.01434988 +0.005155668 0.0968001 0.01434988 +0.009080105 0.0968001 0.01434988 +0.01434988 0.0968001 0.01434988 +0.02107202 0.0968001 0.01434988 +0.02934285 0.0968001 0.01434988 +0.03925039 0.0968001 0.01434988 +0.05087609 0.0968001 0.01434988 +0.06429595 0.0968001 0.01434988 +0.07958143 0.0968001 0.01434988 +0.0968001 0.0968001 0.01434988 +0.1160161 0.0968001 0.01434988 +0.1372908 0.0968001 0.01434988 +0.1606827 0.0968001 0.01434988 +0.1862481 0.0968001 0.01434988 +0.2140411 0.0968001 0.01434988 +0.2441142 0.0968001 0.01434988 +0.2765176 0.0968001 0.01434988 +0.3113005 0.0968001 0.01434988 +0.3485102 0.0968001 0.01434988 +0.388193 0.0968001 0.01434988 +0.4303934 0.0968001 0.01434988 +0.4751555 0.0968001 0.01434988 +0.5225216 0.0968001 0.01434988 +0.5725335 0.0968001 0.01434988 +0.6252316 0.0968001 0.01434988 +0.6806558 0.0968001 0.01434988 +0.7388448 0.0968001 0.01434988 +0.7998369 0.0968001 0.01434988 +0.8636691 0.0968001 0.01434988 +0.9303782 0.0968001 0.01434988 +1 0.0968001 0.01434988 +0 0.1160161 0.01434988 +0.002418731 0.1160161 0.01434988 +0.005155668 0.1160161 0.01434988 +0.009080105 0.1160161 0.01434988 +0.01434988 0.1160161 0.01434988 +0.02107202 0.1160161 0.01434988 +0.02934285 0.1160161 0.01434988 +0.03925039 0.1160161 0.01434988 +0.05087609 0.1160161 0.01434988 +0.06429595 0.1160161 0.01434988 +0.07958143 0.1160161 0.01434988 +0.0968001 0.1160161 0.01434988 +0.1160161 0.1160161 0.01434988 +0.1372908 0.1160161 0.01434988 +0.1606827 0.1160161 0.01434988 +0.1862481 0.1160161 0.01434988 +0.2140411 0.1160161 0.01434988 +0.2441142 0.1160161 0.01434988 +0.2765176 0.1160161 0.01434988 +0.3113005 0.1160161 0.01434988 +0.3485102 0.1160161 0.01434988 +0.388193 0.1160161 0.01434988 +0.4303934 0.1160161 0.01434988 +0.4751555 0.1160161 0.01434988 +0.5225216 0.1160161 0.01434988 +0.5725335 0.1160161 0.01434988 +0.6252316 0.1160161 0.01434988 +0.6806558 0.1160161 0.01434988 +0.7388448 0.1160161 0.01434988 +0.7998369 0.1160161 0.01434988 +0.8636691 0.1160161 0.01434988 +0.9303782 0.1160161 0.01434988 +1 0.1160161 0.01434988 +0 0.1372908 0.01434988 +0.002418731 0.1372908 0.01434988 +0.005155668 0.1372908 0.01434988 +0.009080105 0.1372908 0.01434988 +0.01434988 0.1372908 0.01434988 +0.02107202 0.1372908 0.01434988 +0.02934285 0.1372908 0.01434988 +0.03925039 0.1372908 0.01434988 +0.05087609 0.1372908 0.01434988 +0.06429595 0.1372908 0.01434988 +0.07958143 0.1372908 0.01434988 +0.0968001 0.1372908 0.01434988 +0.1160161 0.1372908 0.01434988 +0.1372908 0.1372908 0.01434988 +0.1606827 0.1372908 0.01434988 +0.1862481 0.1372908 0.01434988 +0.2140411 0.1372908 0.01434988 +0.2441142 0.1372908 0.01434988 +0.2765176 0.1372908 0.01434988 +0.3113005 0.1372908 0.01434988 +0.3485102 0.1372908 0.01434988 +0.388193 0.1372908 0.01434988 +0.4303934 0.1372908 0.01434988 +0.4751555 0.1372908 0.01434988 +0.5225216 0.1372908 0.01434988 +0.5725335 0.1372908 0.01434988 +0.6252316 0.1372908 0.01434988 +0.6806558 0.1372908 0.01434988 +0.7388448 0.1372908 0.01434988 +0.7998369 0.1372908 0.01434988 +0.8636691 0.1372908 0.01434988 +0.9303782 0.1372908 0.01434988 +1 0.1372908 0.01434988 +0 0.1606827 0.01434988 +0.002418731 0.1606827 0.01434988 +0.005155668 0.1606827 0.01434988 +0.009080105 0.1606827 0.01434988 +0.01434988 0.1606827 0.01434988 +0.02107202 0.1606827 0.01434988 +0.02934285 0.1606827 0.01434988 +0.03925039 0.1606827 0.01434988 +0.05087609 0.1606827 0.01434988 +0.06429595 0.1606827 0.01434988 +0.07958143 0.1606827 0.01434988 +0.0968001 0.1606827 0.01434988 +0.1160161 0.1606827 0.01434988 +0.1372908 0.1606827 0.01434988 +0.1606827 0.1606827 0.01434988 +0.1862481 0.1606827 0.01434988 +0.2140411 0.1606827 0.01434988 +0.2441142 0.1606827 0.01434988 +0.2765176 0.1606827 0.01434988 +0.3113005 0.1606827 0.01434988 +0.3485102 0.1606827 0.01434988 +0.388193 0.1606827 0.01434988 +0.4303934 0.1606827 0.01434988 +0.4751555 0.1606827 0.01434988 +0.5225216 0.1606827 0.01434988 +0.5725335 0.1606827 0.01434988 +0.6252316 0.1606827 0.01434988 +0.6806558 0.1606827 0.01434988 +0.7388448 0.1606827 0.01434988 +0.7998369 0.1606827 0.01434988 +0.8636691 0.1606827 0.01434988 +0.9303782 0.1606827 0.01434988 +1 0.1606827 0.01434988 +0 0.1862481 0.01434988 +0.002418731 0.1862481 0.01434988 +0.005155668 0.1862481 0.01434988 +0.009080105 0.1862481 0.01434988 +0.01434988 0.1862481 0.01434988 +0.02107202 0.1862481 0.01434988 +0.02934285 0.1862481 0.01434988 +0.03925039 0.1862481 0.01434988 +0.05087609 0.1862481 0.01434988 +0.06429595 0.1862481 0.01434988 +0.07958143 0.1862481 0.01434988 +0.0968001 0.1862481 0.01434988 +0.1160161 0.1862481 0.01434988 +0.1372908 0.1862481 0.01434988 +0.1606827 0.1862481 0.01434988 +0.1862481 0.1862481 0.01434988 +0.2140411 0.1862481 0.01434988 +0.2441142 0.1862481 0.01434988 +0.2765176 0.1862481 0.01434988 +0.3113005 0.1862481 0.01434988 +0.3485102 0.1862481 0.01434988 +0.388193 0.1862481 0.01434988 +0.4303934 0.1862481 0.01434988 +0.4751555 0.1862481 0.01434988 +0.5225216 0.1862481 0.01434988 +0.5725335 0.1862481 0.01434988 +0.6252316 0.1862481 0.01434988 +0.6806558 0.1862481 0.01434988 +0.7388448 0.1862481 0.01434988 +0.7998369 0.1862481 0.01434988 +0.8636691 0.1862481 0.01434988 +0.9303782 0.1862481 0.01434988 +1 0.1862481 0.01434988 +0 0.2140411 0.01434988 +0.002418731 0.2140411 0.01434988 +0.005155668 0.2140411 0.01434988 +0.009080105 0.2140411 0.01434988 +0.01434988 0.2140411 0.01434988 +0.02107202 0.2140411 0.01434988 +0.02934285 0.2140411 0.01434988 +0.03925039 0.2140411 0.01434988 +0.05087609 0.2140411 0.01434988 +0.06429595 0.2140411 0.01434988 +0.07958143 0.2140411 0.01434988 +0.0968001 0.2140411 0.01434988 +0.1160161 0.2140411 0.01434988 +0.1372908 0.2140411 0.01434988 +0.1606827 0.2140411 0.01434988 +0.1862481 0.2140411 0.01434988 +0.2140411 0.2140411 0.01434988 +0.2441142 0.2140411 0.01434988 +0.2765176 0.2140411 0.01434988 +0.3113005 0.2140411 0.01434988 +0.3485102 0.2140411 0.01434988 +0.388193 0.2140411 0.01434988 +0.4303934 0.2140411 0.01434988 +0.4751555 0.2140411 0.01434988 +0.5225216 0.2140411 0.01434988 +0.5725335 0.2140411 0.01434988 +0.6252316 0.2140411 0.01434988 +0.6806558 0.2140411 0.01434988 +0.7388448 0.2140411 0.01434988 +0.7998369 0.2140411 0.01434988 +0.8636691 0.2140411 0.01434988 +0.9303782 0.2140411 0.01434988 +1 0.2140411 0.01434988 +0 0.2441142 0.01434988 +0.002418731 0.2441142 0.01434988 +0.005155668 0.2441142 0.01434988 +0.009080105 0.2441142 0.01434988 +0.01434988 0.2441142 0.01434988 +0.02107202 0.2441142 0.01434988 +0.02934285 0.2441142 0.01434988 +0.03925039 0.2441142 0.01434988 +0.05087609 0.2441142 0.01434988 +0.06429595 0.2441142 0.01434988 +0.07958143 0.2441142 0.01434988 +0.0968001 0.2441142 0.01434988 +0.1160161 0.2441142 0.01434988 +0.1372908 0.2441142 0.01434988 +0.1606827 0.2441142 0.01434988 +0.1862481 0.2441142 0.01434988 +0.2140411 0.2441142 0.01434988 +0.2441142 0.2441142 0.01434988 +0.2765176 0.2441142 0.01434988 +0.3113005 0.2441142 0.01434988 +0.3485102 0.2441142 0.01434988 +0.388193 0.2441142 0.01434988 +0.4303934 0.2441142 0.01434988 +0.4751555 0.2441142 0.01434988 +0.5225216 0.2441142 0.01434988 +0.5725335 0.2441142 0.01434988 +0.6252316 0.2441142 0.01434988 +0.6806558 0.2441142 0.01434988 +0.7388448 0.2441142 0.01434988 +0.7998369 0.2441142 0.01434988 +0.8636691 0.2441142 0.01434988 +0.9303782 0.2441142 0.01434988 +1 0.2441142 0.01434988 +0 0.2765176 0.01434988 +0.002418731 0.2765176 0.01434988 +0.005155668 0.2765176 0.01434988 +0.009080105 0.2765176 0.01434988 +0.01434988 0.2765176 0.01434988 +0.02107202 0.2765176 0.01434988 +0.02934285 0.2765176 0.01434988 +0.03925039 0.2765176 0.01434988 +0.05087609 0.2765176 0.01434988 +0.06429595 0.2765176 0.01434988 +0.07958143 0.2765176 0.01434988 +0.0968001 0.2765176 0.01434988 +0.1160161 0.2765176 0.01434988 +0.1372908 0.2765176 0.01434988 +0.1606827 0.2765176 0.01434988 +0.1862481 0.2765176 0.01434988 +0.2140411 0.2765176 0.01434988 +0.2441142 0.2765176 0.01434988 +0.2765176 0.2765176 0.01434988 +0.3113005 0.2765176 0.01434988 +0.3485102 0.2765176 0.01434988 +0.388193 0.2765176 0.01434988 +0.4303934 0.2765176 0.01434988 +0.4751555 0.2765176 0.01434988 +0.5225216 0.2765176 0.01434988 +0.5725335 0.2765176 0.01434988 +0.6252316 0.2765176 0.01434988 +0.6806558 0.2765176 0.01434988 +0.7388448 0.2765176 0.01434988 +0.7998369 0.2765176 0.01434988 +0.8636691 0.2765176 0.01434988 +0.9303782 0.2765176 0.01434988 +1 0.2765176 0.01434988 +0 0.3113005 0.01434988 +0.002418731 0.3113005 0.01434988 +0.005155668 0.3113005 0.01434988 +0.009080105 0.3113005 0.01434988 +0.01434988 0.3113005 0.01434988 +0.02107202 0.3113005 0.01434988 +0.02934285 0.3113005 0.01434988 +0.03925039 0.3113005 0.01434988 +0.05087609 0.3113005 0.01434988 +0.06429595 0.3113005 0.01434988 +0.07958143 0.3113005 0.01434988 +0.0968001 0.3113005 0.01434988 +0.1160161 0.3113005 0.01434988 +0.1372908 0.3113005 0.01434988 +0.1606827 0.3113005 0.01434988 +0.1862481 0.3113005 0.01434988 +0.2140411 0.3113005 0.01434988 +0.2441142 0.3113005 0.01434988 +0.2765176 0.3113005 0.01434988 +0.3113005 0.3113005 0.01434988 +0.3485102 0.3113005 0.01434988 +0.388193 0.3113005 0.01434988 +0.4303934 0.3113005 0.01434988 +0.4751555 0.3113005 0.01434988 +0.5225216 0.3113005 0.01434988 +0.5725335 0.3113005 0.01434988 +0.6252316 0.3113005 0.01434988 +0.6806558 0.3113005 0.01434988 +0.7388448 0.3113005 0.01434988 +0.7998369 0.3113005 0.01434988 +0.8636691 0.3113005 0.01434988 +0.9303782 0.3113005 0.01434988 +1 0.3113005 0.01434988 +0 0.3485102 0.01434988 +0.002418731 0.3485102 0.01434988 +0.005155668 0.3485102 0.01434988 +0.009080105 0.3485102 0.01434988 +0.01434988 0.3485102 0.01434988 +0.02107202 0.3485102 0.01434988 +0.02934285 0.3485102 0.01434988 +0.03925039 0.3485102 0.01434988 +0.05087609 0.3485102 0.01434988 +0.06429595 0.3485102 0.01434988 +0.07958143 0.3485102 0.01434988 +0.0968001 0.3485102 0.01434988 +0.1160161 0.3485102 0.01434988 +0.1372908 0.3485102 0.01434988 +0.1606827 0.3485102 0.01434988 +0.1862481 0.3485102 0.01434988 +0.2140411 0.3485102 0.01434988 +0.2441142 0.3485102 0.01434988 +0.2765176 0.3485102 0.01434988 +0.3113005 0.3485102 0.01434988 +0.3485102 0.3485102 0.01434988 +0.388193 0.3485102 0.01434988 +0.4303934 0.3485102 0.01434988 +0.4751555 0.3485102 0.01434988 +0.5225216 0.3485102 0.01434988 +0.5725335 0.3485102 0.01434988 +0.6252316 0.3485102 0.01434988 +0.6806558 0.3485102 0.01434988 +0.7388448 0.3485102 0.01434988 +0.7998369 0.3485102 0.01434988 +0.8636691 0.3485102 0.01434988 +0.9303782 0.3485102 0.01434988 +1 0.3485102 0.01434988 +0 0.388193 0.01434988 +0.002418731 0.388193 0.01434988 +0.005155668 0.388193 0.01434988 +0.009080105 0.388193 0.01434988 +0.01434988 0.388193 0.01434988 +0.02107202 0.388193 0.01434988 +0.02934285 0.388193 0.01434988 +0.03925039 0.388193 0.01434988 +0.05087609 0.388193 0.01434988 +0.06429595 0.388193 0.01434988 +0.07958143 0.388193 0.01434988 +0.0968001 0.388193 0.01434988 +0.1160161 0.388193 0.01434988 +0.1372908 0.388193 0.01434988 +0.1606827 0.388193 0.01434988 +0.1862481 0.388193 0.01434988 +0.2140411 0.388193 0.01434988 +0.2441142 0.388193 0.01434988 +0.2765176 0.388193 0.01434988 +0.3113005 0.388193 0.01434988 +0.3485102 0.388193 0.01434988 +0.388193 0.388193 0.01434988 +0.4303934 0.388193 0.01434988 +0.4751555 0.388193 0.01434988 +0.5225216 0.388193 0.01434988 +0.5725335 0.388193 0.01434988 +0.6252316 0.388193 0.01434988 +0.6806558 0.388193 0.01434988 +0.7388448 0.388193 0.01434988 +0.7998369 0.388193 0.01434988 +0.8636691 0.388193 0.01434988 +0.9303782 0.388193 0.01434988 +1 0.388193 0.01434988 +0 0.4303934 0.01434988 +0.002418731 0.4303934 0.01434988 +0.005155668 0.4303934 0.01434988 +0.009080105 0.4303934 0.01434988 +0.01434988 0.4303934 0.01434988 +0.02107202 0.4303934 0.01434988 +0.02934285 0.4303934 0.01434988 +0.03925039 0.4303934 0.01434988 +0.05087609 0.4303934 0.01434988 +0.06429595 0.4303934 0.01434988 +0.07958143 0.4303934 0.01434988 +0.0968001 0.4303934 0.01434988 +0.1160161 0.4303934 0.01434988 +0.1372908 0.4303934 0.01434988 +0.1606827 0.4303934 0.01434988 +0.1862481 0.4303934 0.01434988 +0.2140411 0.4303934 0.01434988 +0.2441142 0.4303934 0.01434988 +0.2765176 0.4303934 0.01434988 +0.3113005 0.4303934 0.01434988 +0.3485102 0.4303934 0.01434988 +0.388193 0.4303934 0.01434988 +0.4303934 0.4303934 0.01434988 +0.4751555 0.4303934 0.01434988 +0.5225216 0.4303934 0.01434988 +0.5725335 0.4303934 0.01434988 +0.6252316 0.4303934 0.01434988 +0.6806558 0.4303934 0.01434988 +0.7388448 0.4303934 0.01434988 +0.7998369 0.4303934 0.01434988 +0.8636691 0.4303934 0.01434988 +0.9303782 0.4303934 0.01434988 +1 0.4303934 0.01434988 +0 0.4751555 0.01434988 +0.002418731 0.4751555 0.01434988 +0.005155668 0.4751555 0.01434988 +0.009080105 0.4751555 0.01434988 +0.01434988 0.4751555 0.01434988 +0.02107202 0.4751555 0.01434988 +0.02934285 0.4751555 0.01434988 +0.03925039 0.4751555 0.01434988 +0.05087609 0.4751555 0.01434988 +0.06429595 0.4751555 0.01434988 +0.07958143 0.4751555 0.01434988 +0.0968001 0.4751555 0.01434988 +0.1160161 0.4751555 0.01434988 +0.1372908 0.4751555 0.01434988 +0.1606827 0.4751555 0.01434988 +0.1862481 0.4751555 0.01434988 +0.2140411 0.4751555 0.01434988 +0.2441142 0.4751555 0.01434988 +0.2765176 0.4751555 0.01434988 +0.3113005 0.4751555 0.01434988 +0.3485102 0.4751555 0.01434988 +0.388193 0.4751555 0.01434988 +0.4303934 0.4751555 0.01434988 +0.4751555 0.4751555 0.01434988 +0.5225216 0.4751555 0.01434988 +0.5725335 0.4751555 0.01434988 +0.6252316 0.4751555 0.01434988 +0.6806558 0.4751555 0.01434988 +0.7388448 0.4751555 0.01434988 +0.7998369 0.4751555 0.01434988 +0.8636691 0.4751555 0.01434988 +0.9303782 0.4751555 0.01434988 +1 0.4751555 0.01434988 +0 0.5225216 0.01434988 +0.002418731 0.5225216 0.01434988 +0.005155668 0.5225216 0.01434988 +0.009080105 0.5225216 0.01434988 +0.01434988 0.5225216 0.01434988 +0.02107202 0.5225216 0.01434988 +0.02934285 0.5225216 0.01434988 +0.03925039 0.5225216 0.01434988 +0.05087609 0.5225216 0.01434988 +0.06429595 0.5225216 0.01434988 +0.07958143 0.5225216 0.01434988 +0.0968001 0.5225216 0.01434988 +0.1160161 0.5225216 0.01434988 +0.1372908 0.5225216 0.01434988 +0.1606827 0.5225216 0.01434988 +0.1862481 0.5225216 0.01434988 +0.2140411 0.5225216 0.01434988 +0.2441142 0.5225216 0.01434988 +0.2765176 0.5225216 0.01434988 +0.3113005 0.5225216 0.01434988 +0.3485102 0.5225216 0.01434988 +0.388193 0.5225216 0.01434988 +0.4303934 0.5225216 0.01434988 +0.4751555 0.5225216 0.01434988 +0.5225216 0.5225216 0.01434988 +0.5725335 0.5225216 0.01434988 +0.6252316 0.5225216 0.01434988 +0.6806558 0.5225216 0.01434988 +0.7388448 0.5225216 0.01434988 +0.7998369 0.5225216 0.01434988 +0.8636691 0.5225216 0.01434988 +0.9303782 0.5225216 0.01434988 +1 0.5225216 0.01434988 +0 0.5725335 0.01434988 +0.002418731 0.5725335 0.01434988 +0.005155668 0.5725335 0.01434988 +0.009080105 0.5725335 0.01434988 +0.01434988 0.5725335 0.01434988 +0.02107202 0.5725335 0.01434988 +0.02934285 0.5725335 0.01434988 +0.03925039 0.5725335 0.01434988 +0.05087609 0.5725335 0.01434988 +0.06429595 0.5725335 0.01434988 +0.07958143 0.5725335 0.01434988 +0.0968001 0.5725335 0.01434988 +0.1160161 0.5725335 0.01434988 +0.1372908 0.5725335 0.01434988 +0.1606827 0.5725335 0.01434988 +0.1862481 0.5725335 0.01434988 +0.2140411 0.5725335 0.01434988 +0.2441142 0.5725335 0.01434988 +0.2765176 0.5725335 0.01434988 +0.3113005 0.5725335 0.01434988 +0.3485102 0.5725335 0.01434988 +0.388193 0.5725335 0.01434988 +0.4303934 0.5725335 0.01434988 +0.4751555 0.5725335 0.01434988 +0.5225216 0.5725335 0.01434988 +0.5725335 0.5725335 0.01434988 +0.6252316 0.5725335 0.01434988 +0.6806558 0.5725335 0.01434988 +0.7388448 0.5725335 0.01434988 +0.7998369 0.5725335 0.01434988 +0.8636691 0.5725335 0.01434988 +0.9303782 0.5725335 0.01434988 +1 0.5725335 0.01434988 +0 0.6252316 0.01434988 +0.002418731 0.6252316 0.01434988 +0.005155668 0.6252316 0.01434988 +0.009080105 0.6252316 0.01434988 +0.01434988 0.6252316 0.01434988 +0.02107202 0.6252316 0.01434988 +0.02934285 0.6252316 0.01434988 +0.03925039 0.6252316 0.01434988 +0.05087609 0.6252316 0.01434988 +0.06429595 0.6252316 0.01434988 +0.07958143 0.6252316 0.01434988 +0.0968001 0.6252316 0.01434988 +0.1160161 0.6252316 0.01434988 +0.1372908 0.6252316 0.01434988 +0.1606827 0.6252316 0.01434988 +0.1862481 0.6252316 0.01434988 +0.2140411 0.6252316 0.01434988 +0.2441142 0.6252316 0.01434988 +0.2765176 0.6252316 0.01434988 +0.3113005 0.6252316 0.01434988 +0.3485102 0.6252316 0.01434988 +0.388193 0.6252316 0.01434988 +0.4303934 0.6252316 0.01434988 +0.4751555 0.6252316 0.01434988 +0.5225216 0.6252316 0.01434988 +0.5725335 0.6252316 0.01434988 +0.6252316 0.6252316 0.01434988 +0.6806558 0.6252316 0.01434988 +0.7388448 0.6252316 0.01434988 +0.7998369 0.6252316 0.01434988 +0.8636691 0.6252316 0.01434988 +0.9303782 0.6252316 0.01434988 +1 0.6252316 0.01434988 +0 0.6806558 0.01434988 +0.002418731 0.6806558 0.01434988 +0.005155668 0.6806558 0.01434988 +0.009080105 0.6806558 0.01434988 +0.01434988 0.6806558 0.01434988 +0.02107202 0.6806558 0.01434988 +0.02934285 0.6806558 0.01434988 +0.03925039 0.6806558 0.01434988 +0.05087609 0.6806558 0.01434988 +0.06429595 0.6806558 0.01434988 +0.07958143 0.6806558 0.01434988 +0.0968001 0.6806558 0.01434988 +0.1160161 0.6806558 0.01434988 +0.1372908 0.6806558 0.01434988 +0.1606827 0.6806558 0.01434988 +0.1862481 0.6806558 0.01434988 +0.2140411 0.6806558 0.01434988 +0.2441142 0.6806558 0.01434988 +0.2765176 0.6806558 0.01434988 +0.3113005 0.6806558 0.01434988 +0.3485102 0.6806558 0.01434988 +0.388193 0.6806558 0.01434988 +0.4303934 0.6806558 0.01434988 +0.4751555 0.6806558 0.01434988 +0.5225216 0.6806558 0.01434988 +0.5725335 0.6806558 0.01434988 +0.6252316 0.6806558 0.01434988 +0.6806558 0.6806558 0.01434988 +0.7388448 0.6806558 0.01434988 +0.7998369 0.6806558 0.01434988 +0.8636691 0.6806558 0.01434988 +0.9303782 0.6806558 0.01434988 +1 0.6806558 0.01434988 +0 0.7388448 0.01434988 +0.002418731 0.7388448 0.01434988 +0.005155668 0.7388448 0.01434988 +0.009080105 0.7388448 0.01434988 +0.01434988 0.7388448 0.01434988 +0.02107202 0.7388448 0.01434988 +0.02934285 0.7388448 0.01434988 +0.03925039 0.7388448 0.01434988 +0.05087609 0.7388448 0.01434988 +0.06429595 0.7388448 0.01434988 +0.07958143 0.7388448 0.01434988 +0.0968001 0.7388448 0.01434988 +0.1160161 0.7388448 0.01434988 +0.1372908 0.7388448 0.01434988 +0.1606827 0.7388448 0.01434988 +0.1862481 0.7388448 0.01434988 +0.2140411 0.7388448 0.01434988 +0.2441142 0.7388448 0.01434988 +0.2765176 0.7388448 0.01434988 +0.3113005 0.7388448 0.01434988 +0.3485102 0.7388448 0.01434988 +0.388193 0.7388448 0.01434988 +0.4303934 0.7388448 0.01434988 +0.4751555 0.7388448 0.01434988 +0.5225216 0.7388448 0.01434988 +0.5725335 0.7388448 0.01434988 +0.6252316 0.7388448 0.01434988 +0.6806558 0.7388448 0.01434988 +0.7388448 0.7388448 0.01434988 +0.7998369 0.7388448 0.01434988 +0.8636691 0.7388448 0.01434988 +0.9303782 0.7388448 0.01434988 +1 0.7388448 0.01434988 +0 0.7998369 0.01434988 +0.002418731 0.7998369 0.01434988 +0.005155668 0.7998369 0.01434988 +0.009080105 0.7998369 0.01434988 +0.01434988 0.7998369 0.01434988 +0.02107202 0.7998369 0.01434988 +0.02934285 0.7998369 0.01434988 +0.03925039 0.7998369 0.01434988 +0.05087609 0.7998369 0.01434988 +0.06429595 0.7998369 0.01434988 +0.07958143 0.7998369 0.01434988 +0.0968001 0.7998369 0.01434988 +0.1160161 0.7998369 0.01434988 +0.1372908 0.7998369 0.01434988 +0.1606827 0.7998369 0.01434988 +0.1862481 0.7998369 0.01434988 +0.2140411 0.7998369 0.01434988 +0.2441142 0.7998369 0.01434988 +0.2765176 0.7998369 0.01434988 +0.3113005 0.7998369 0.01434988 +0.3485102 0.7998369 0.01434988 +0.388193 0.7998369 0.01434988 +0.4303934 0.7998369 0.01434988 +0.4751555 0.7998369 0.01434988 +0.5225216 0.7998369 0.01434988 +0.5725335 0.7998369 0.01434988 +0.6252316 0.7998369 0.01434988 +0.6806558 0.7998369 0.01434988 +0.7388448 0.7998369 0.01434988 +0.7998369 0.7998369 0.01434988 +0.8636691 0.7998369 0.01434988 +0.9303782 0.7998369 0.01434988 +1 0.7998369 0.01434988 +0 0.8636691 0.01434988 +0.002418731 0.8636691 0.01434988 +0.005155668 0.8636691 0.01434988 +0.009080105 0.8636691 0.01434988 +0.01434988 0.8636691 0.01434988 +0.02107202 0.8636691 0.01434988 +0.02934285 0.8636691 0.01434988 +0.03925039 0.8636691 0.01434988 +0.05087609 0.8636691 0.01434988 +0.06429595 0.8636691 0.01434988 +0.07958143 0.8636691 0.01434988 +0.0968001 0.8636691 0.01434988 +0.1160161 0.8636691 0.01434988 +0.1372908 0.8636691 0.01434988 +0.1606827 0.8636691 0.01434988 +0.1862481 0.8636691 0.01434988 +0.2140411 0.8636691 0.01434988 +0.2441142 0.8636691 0.01434988 +0.2765176 0.8636691 0.01434988 +0.3113005 0.8636691 0.01434988 +0.3485102 0.8636691 0.01434988 +0.388193 0.8636691 0.01434988 +0.4303934 0.8636691 0.01434988 +0.4751555 0.8636691 0.01434988 +0.5225216 0.8636691 0.01434988 +0.5725335 0.8636691 0.01434988 +0.6252316 0.8636691 0.01434988 +0.6806558 0.8636691 0.01434988 +0.7388448 0.8636691 0.01434988 +0.7998369 0.8636691 0.01434988 +0.8636691 0.8636691 0.01434988 +0.9303782 0.8636691 0.01434988 +1 0.8636691 0.01434988 +0 0.9303782 0.01434988 +0.002418731 0.9303782 0.01434988 +0.005155668 0.9303782 0.01434988 +0.009080105 0.9303782 0.01434988 +0.01434988 0.9303782 0.01434988 +0.02107202 0.9303782 0.01434988 +0.02934285 0.9303782 0.01434988 +0.03925039 0.9303782 0.01434988 +0.05087609 0.9303782 0.01434988 +0.06429595 0.9303782 0.01434988 +0.07958143 0.9303782 0.01434988 +0.0968001 0.9303782 0.01434988 +0.1160161 0.9303782 0.01434988 +0.1372908 0.9303782 0.01434988 +0.1606827 0.9303782 0.01434988 +0.1862481 0.9303782 0.01434988 +0.2140411 0.9303782 0.01434988 +0.2441142 0.9303782 0.01434988 +0.2765176 0.9303782 0.01434988 +0.3113005 0.9303782 0.01434988 +0.3485102 0.9303782 0.01434988 +0.388193 0.9303782 0.01434988 +0.4303934 0.9303782 0.01434988 +0.4751555 0.9303782 0.01434988 +0.5225216 0.9303782 0.01434988 +0.5725335 0.9303782 0.01434988 +0.6252316 0.9303782 0.01434988 +0.6806558 0.9303782 0.01434988 +0.7388448 0.9303782 0.01434988 +0.7998369 0.9303782 0.01434988 +0.8636691 0.9303782 0.01434988 +0.9303782 0.9303782 0.01434988 +1 0.9303782 0.01434988 +0 1 0.01434988 +0.002418731 1 0.01434988 +0.005155668 1 0.01434988 +0.009080105 1 0.01434988 +0.01434988 1 0.01434988 +0.02107202 1 0.01434988 +0.02934285 1 0.01434988 +0.03925039 1 0.01434988 +0.05087609 1 0.01434988 +0.06429595 1 0.01434988 +0.07958143 1 0.01434988 +0.0968001 1 0.01434988 +0.1160161 1 0.01434988 +0.1372908 1 0.01434988 +0.1606827 1 0.01434988 +0.1862481 1 0.01434988 +0.2140411 1 0.01434988 +0.2441142 1 0.01434988 +0.2765176 1 0.01434988 +0.3113005 1 0.01434988 +0.3485102 1 0.01434988 +0.388193 1 0.01434988 +0.4303934 1 0.01434988 +0.4751555 1 0.01434988 +0.5225216 1 0.01434988 +0.5725335 1 0.01434988 +0.6252316 1 0.01434988 +0.6806558 1 0.01434988 +0.7388448 1 0.01434988 +0.7998369 1 0.01434988 +0.8636691 1 0.01434988 +0.9303782 1 0.01434988 +1 1 0.01434988 +0 0 0.02107202 +0.002418731 0 0.02107202 +0.005155668 0 0.02107202 +0.009080105 0 0.02107202 +0.01434988 0 0.02107202 +0.02107202 0 0.02107202 +0.02934285 0 0.02107202 +0.03925039 0 0.02107202 +0.05087609 0 0.02107202 +0.06429595 0 0.02107202 +0.07958143 0 0.02107202 +0.0968001 0 0.02107202 +0.1160161 0 0.02107202 +0.1372908 0 0.02107202 +0.1606827 0 0.02107202 +0.1862481 0 0.02107202 +0.2140411 0 0.02107202 +0.2441142 0 0.02107202 +0.2765176 0 0.02107202 +0.3113005 0 0.02107202 +0.3485102 0 0.02107202 +0.388193 0 0.02107202 +0.4303934 0 0.02107202 +0.4751555 0 0.02107202 +0.5225216 0 0.02107202 +0.5725335 0 0.02107202 +0.6252316 0 0.02107202 +0.6806558 0 0.02107202 +0.7388448 0 0.02107202 +0.7998369 0 0.02107202 +0.8636691 0 0.02107202 +0.9303782 0 0.02107202 +1 0 0.02107202 +0 0.002418731 0.02107202 +0.002418731 0.002418731 0.02107202 +0.005155668 0.002418731 0.02107202 +0.009080105 0.002418731 0.02107202 +0.01434988 0.002418731 0.02107202 +0.02107202 0.002418731 0.02107202 +0.02934285 0.002418731 0.02107202 +0.03925039 0.002418731 0.02107202 +0.05087609 0.002418731 0.02107202 +0.06429595 0.002418731 0.02107202 +0.07958143 0.002418731 0.02107202 +0.0968001 0.002418731 0.02107202 +0.1160161 0.002418731 0.02107202 +0.1372908 0.002418731 0.02107202 +0.1606827 0.002418731 0.02107202 +0.1862481 0.002418731 0.02107202 +0.2140411 0.002418731 0.02107202 +0.2441142 0.002418731 0.02107202 +0.2765176 0.002418731 0.02107202 +0.3113005 0.002418731 0.02107202 +0.3485102 0.002418731 0.02107202 +0.388193 0.002418731 0.02107202 +0.4303934 0.002418731 0.02107202 +0.4751555 0.002418731 0.02107202 +0.5225216 0.002418731 0.02107202 +0.5725335 0.002418731 0.02107202 +0.6252316 0.002418731 0.02107202 +0.6806558 0.002418731 0.02107202 +0.7388448 0.002418731 0.02107202 +0.7998369 0.002418731 0.02107202 +0.8636691 0.002418731 0.02107202 +0.9303782 0.002418731 0.02107202 +1 0.002418731 0.02107202 +0 0.005155668 0.02107202 +0.002418731 0.005155668 0.02107202 +0.005155668 0.005155668 0.02107202 +0.009080105 0.005155668 0.02107202 +0.01434988 0.005155668 0.02107202 +0.02107202 0.005155668 0.02107202 +0.02934285 0.005155668 0.02107202 +0.03925039 0.005155668 0.02107202 +0.05087609 0.005155668 0.02107202 +0.06429595 0.005155668 0.02107202 +0.07958143 0.005155668 0.02107202 +0.0968001 0.005155668 0.02107202 +0.1160161 0.005155668 0.02107202 +0.1372908 0.005155668 0.02107202 +0.1606827 0.005155668 0.02107202 +0.1862481 0.005155668 0.02107202 +0.2140411 0.005155668 0.02107202 +0.2441142 0.005155668 0.02107202 +0.2765176 0.005155668 0.02107202 +0.3113005 0.005155668 0.02107202 +0.3485102 0.005155668 0.02107202 +0.388193 0.005155668 0.02107202 +0.4303934 0.005155668 0.02107202 +0.4751555 0.005155668 0.02107202 +0.5225216 0.005155668 0.02107202 +0.5725335 0.005155668 0.02107202 +0.6252316 0.005155668 0.02107202 +0.6806558 0.005155668 0.02107202 +0.7388448 0.005155668 0.02107202 +0.7998369 0.005155668 0.02107202 +0.8636691 0.005155668 0.02107202 +0.9303782 0.005155668 0.02107202 +1 0.005155668 0.02107202 +0 0.009080105 0.02107202 +0.002418731 0.009080105 0.02107202 +0.005155668 0.009080105 0.02107202 +0.009080105 0.009080105 0.02107202 +0.01434988 0.009080105 0.02107202 +0.02107202 0.009080105 0.02107202 +0.02934285 0.009080105 0.02107202 +0.03925039 0.009080105 0.02107202 +0.05087609 0.009080105 0.02107202 +0.06429595 0.009080105 0.02107202 +0.07958143 0.009080105 0.02107202 +0.0968001 0.009080105 0.02107202 +0.1160161 0.009080105 0.02107202 +0.1372908 0.009080105 0.02107202 +0.1606827 0.009080105 0.02107202 +0.1862481 0.009080105 0.02107202 +0.2140411 0.009080105 0.02107202 +0.2441142 0.009080105 0.02107202 +0.2765176 0.009080105 0.02107202 +0.3113005 0.009080105 0.02107202 +0.3485102 0.009080105 0.02107202 +0.388193 0.009080105 0.02107202 +0.4303934 0.009080105 0.02107202 +0.4751555 0.009080105 0.02107202 +0.5225216 0.009080105 0.02107202 +0.5725335 0.009080105 0.02107202 +0.6252316 0.009080105 0.02107202 +0.6806558 0.009080105 0.02107202 +0.7388448 0.009080105 0.02107202 +0.7998369 0.009080105 0.02107202 +0.8636691 0.009080105 0.02107202 +0.9303782 0.009080105 0.02107202 +1 0.009080105 0.02107202 +0 0.01434988 0.02107202 +0.002418731 0.01434988 0.02107202 +0.005155668 0.01434988 0.02107202 +0.009080105 0.01434988 0.02107202 +0.01434988 0.01434988 0.02107202 +0.02107202 0.01434988 0.02107202 +0.02934285 0.01434988 0.02107202 +0.03925039 0.01434988 0.02107202 +0.05087609 0.01434988 0.02107202 +0.06429595 0.01434988 0.02107202 +0.07958143 0.01434988 0.02107202 +0.0968001 0.01434988 0.02107202 +0.1160161 0.01434988 0.02107202 +0.1372908 0.01434988 0.02107202 +0.1606827 0.01434988 0.02107202 +0.1862481 0.01434988 0.02107202 +0.2140411 0.01434988 0.02107202 +0.2441142 0.01434988 0.02107202 +0.2765176 0.01434988 0.02107202 +0.3113005 0.01434988 0.02107202 +0.3485102 0.01434988 0.02107202 +0.388193 0.01434988 0.02107202 +0.4303934 0.01434988 0.02107202 +0.4751555 0.01434988 0.02107202 +0.5225216 0.01434988 0.02107202 +0.5725335 0.01434988 0.02107202 +0.6252316 0.01434988 0.02107202 +0.6806558 0.01434988 0.02107202 +0.7388448 0.01434988 0.02107202 +0.7998369 0.01434988 0.02107202 +0.8636691 0.01434988 0.02107202 +0.9303782 0.01434988 0.02107202 +1 0.01434988 0.02107202 +0 0.02107202 0.02107202 +0.002418731 0.02107202 0.02107202 +0.005155668 0.02107202 0.02107202 +0.009080105 0.02107202 0.02107202 +0.01434988 0.02107202 0.02107202 +0.02107202 0.02107202 0.02107202 +0.02934285 0.02107202 0.02107202 +0.03925039 0.02107202 0.02107202 +0.05087609 0.02107202 0.02107202 +0.06429595 0.02107202 0.02107202 +0.07958143 0.02107202 0.02107202 +0.0968001 0.02107202 0.02107202 +0.1160161 0.02107202 0.02107202 +0.1372908 0.02107202 0.02107202 +0.1606827 0.02107202 0.02107202 +0.1862481 0.02107202 0.02107202 +0.2140411 0.02107202 0.02107202 +0.2441142 0.02107202 0.02107202 +0.2765176 0.02107202 0.02107202 +0.3113005 0.02107202 0.02107202 +0.3485102 0.02107202 0.02107202 +0.388193 0.02107202 0.02107202 +0.4303934 0.02107202 0.02107202 +0.4751555 0.02107202 0.02107202 +0.5225216 0.02107202 0.02107202 +0.5725335 0.02107202 0.02107202 +0.6252316 0.02107202 0.02107202 +0.6806558 0.02107202 0.02107202 +0.7388448 0.02107202 0.02107202 +0.7998369 0.02107202 0.02107202 +0.8636691 0.02107202 0.02107202 +0.9303782 0.02107202 0.02107202 +1 0.02107202 0.02107202 +0 0.02934285 0.02107202 +0.002418731 0.02934285 0.02107202 +0.005155668 0.02934285 0.02107202 +0.009080105 0.02934285 0.02107202 +0.01434988 0.02934285 0.02107202 +0.02107202 0.02934285 0.02107202 +0.02934285 0.02934285 0.02107202 +0.03925039 0.02934285 0.02107202 +0.05087609 0.02934285 0.02107202 +0.06429595 0.02934285 0.02107202 +0.07958143 0.02934285 0.02107202 +0.0968001 0.02934285 0.02107202 +0.1160161 0.02934285 0.02107202 +0.1372908 0.02934285 0.02107202 +0.1606827 0.02934285 0.02107202 +0.1862481 0.02934285 0.02107202 +0.2140411 0.02934285 0.02107202 +0.2441142 0.02934285 0.02107202 +0.2765176 0.02934285 0.02107202 +0.3113005 0.02934285 0.02107202 +0.3485102 0.02934285 0.02107202 +0.388193 0.02934285 0.02107202 +0.4303934 0.02934285 0.02107202 +0.4751555 0.02934285 0.02107202 +0.5225216 0.02934285 0.02107202 +0.5725335 0.02934285 0.02107202 +0.6252316 0.02934285 0.02107202 +0.6806558 0.02934285 0.02107202 +0.7388448 0.02934285 0.02107202 +0.7998369 0.02934285 0.02107202 +0.8636691 0.02934285 0.02107202 +0.9303782 0.02934285 0.02107202 +1 0.02934285 0.02107202 +0 0.03925039 0.02107202 +0.002418731 0.03925039 0.02107202 +0.005155668 0.03925039 0.02107202 +0.009080105 0.03925039 0.02107202 +0.01434988 0.03925039 0.02107202 +0.02107202 0.03925039 0.02107202 +0.02934285 0.03925039 0.02107202 +0.03925039 0.03925039 0.02107202 +0.05087609 0.03925039 0.02107202 +0.06429595 0.03925039 0.02107202 +0.07958143 0.03925039 0.02107202 +0.0968001 0.03925039 0.02107202 +0.1160161 0.03925039 0.02107202 +0.1372908 0.03925039 0.02107202 +0.1606827 0.03925039 0.02107202 +0.1862481 0.03925039 0.02107202 +0.2140411 0.03925039 0.02107202 +0.2441142 0.03925039 0.02107202 +0.2765176 0.03925039 0.02107202 +0.3113005 0.03925039 0.02107202 +0.3485102 0.03925039 0.02107202 +0.388193 0.03925039 0.02107202 +0.4303934 0.03925039 0.02107202 +0.4751555 0.03925039 0.02107202 +0.5225216 0.03925039 0.02107202 +0.5725335 0.03925039 0.02107202 +0.6252316 0.03925039 0.02107202 +0.6806558 0.03925039 0.02107202 +0.7388448 0.03925039 0.02107202 +0.7998369 0.03925039 0.02107202 +0.8636691 0.03925039 0.02107202 +0.9303782 0.03925039 0.02107202 +1 0.03925039 0.02107202 +0 0.05087609 0.02107202 +0.002418731 0.05087609 0.02107202 +0.005155668 0.05087609 0.02107202 +0.009080105 0.05087609 0.02107202 +0.01434988 0.05087609 0.02107202 +0.02107202 0.05087609 0.02107202 +0.02934285 0.05087609 0.02107202 +0.03925039 0.05087609 0.02107202 +0.05087609 0.05087609 0.02107202 +0.06429595 0.05087609 0.02107202 +0.07958143 0.05087609 0.02107202 +0.0968001 0.05087609 0.02107202 +0.1160161 0.05087609 0.02107202 +0.1372908 0.05087609 0.02107202 +0.1606827 0.05087609 0.02107202 +0.1862481 0.05087609 0.02107202 +0.2140411 0.05087609 0.02107202 +0.2441142 0.05087609 0.02107202 +0.2765176 0.05087609 0.02107202 +0.3113005 0.05087609 0.02107202 +0.3485102 0.05087609 0.02107202 +0.388193 0.05087609 0.02107202 +0.4303934 0.05087609 0.02107202 +0.4751555 0.05087609 0.02107202 +0.5225216 0.05087609 0.02107202 +0.5725335 0.05087609 0.02107202 +0.6252316 0.05087609 0.02107202 +0.6806558 0.05087609 0.02107202 +0.7388448 0.05087609 0.02107202 +0.7998369 0.05087609 0.02107202 +0.8636691 0.05087609 0.02107202 +0.9303782 0.05087609 0.02107202 +1 0.05087609 0.02107202 +0 0.06429595 0.02107202 +0.002418731 0.06429595 0.02107202 +0.005155668 0.06429595 0.02107202 +0.009080105 0.06429595 0.02107202 +0.01434988 0.06429595 0.02107202 +0.02107202 0.06429595 0.02107202 +0.02934285 0.06429595 0.02107202 +0.03925039 0.06429595 0.02107202 +0.05087609 0.06429595 0.02107202 +0.06429595 0.06429595 0.02107202 +0.07958143 0.06429595 0.02107202 +0.0968001 0.06429595 0.02107202 +0.1160161 0.06429595 0.02107202 +0.1372908 0.06429595 0.02107202 +0.1606827 0.06429595 0.02107202 +0.1862481 0.06429595 0.02107202 +0.2140411 0.06429595 0.02107202 +0.2441142 0.06429595 0.02107202 +0.2765176 0.06429595 0.02107202 +0.3113005 0.06429595 0.02107202 +0.3485102 0.06429595 0.02107202 +0.388193 0.06429595 0.02107202 +0.4303934 0.06429595 0.02107202 +0.4751555 0.06429595 0.02107202 +0.5225216 0.06429595 0.02107202 +0.5725335 0.06429595 0.02107202 +0.6252316 0.06429595 0.02107202 +0.6806558 0.06429595 0.02107202 +0.7388448 0.06429595 0.02107202 +0.7998369 0.06429595 0.02107202 +0.8636691 0.06429595 0.02107202 +0.9303782 0.06429595 0.02107202 +1 0.06429595 0.02107202 +0 0.07958143 0.02107202 +0.002418731 0.07958143 0.02107202 +0.005155668 0.07958143 0.02107202 +0.009080105 0.07958143 0.02107202 +0.01434988 0.07958143 0.02107202 +0.02107202 0.07958143 0.02107202 +0.02934285 0.07958143 0.02107202 +0.03925039 0.07958143 0.02107202 +0.05087609 0.07958143 0.02107202 +0.06429595 0.07958143 0.02107202 +0.07958143 0.07958143 0.02107202 +0.0968001 0.07958143 0.02107202 +0.1160161 0.07958143 0.02107202 +0.1372908 0.07958143 0.02107202 +0.1606827 0.07958143 0.02107202 +0.1862481 0.07958143 0.02107202 +0.2140411 0.07958143 0.02107202 +0.2441142 0.07958143 0.02107202 +0.2765176 0.07958143 0.02107202 +0.3113005 0.07958143 0.02107202 +0.3485102 0.07958143 0.02107202 +0.388193 0.07958143 0.02107202 +0.4303934 0.07958143 0.02107202 +0.4751555 0.07958143 0.02107202 +0.5225216 0.07958143 0.02107202 +0.5725335 0.07958143 0.02107202 +0.6252316 0.07958143 0.02107202 +0.6806558 0.07958143 0.02107202 +0.7388448 0.07958143 0.02107202 +0.7998369 0.07958143 0.02107202 +0.8636691 0.07958143 0.02107202 +0.9303782 0.07958143 0.02107202 +1 0.07958143 0.02107202 +0 0.0968001 0.02107202 +0.002418731 0.0968001 0.02107202 +0.005155668 0.0968001 0.02107202 +0.009080105 0.0968001 0.02107202 +0.01434988 0.0968001 0.02107202 +0.02107202 0.0968001 0.02107202 +0.02934285 0.0968001 0.02107202 +0.03925039 0.0968001 0.02107202 +0.05087609 0.0968001 0.02107202 +0.06429595 0.0968001 0.02107202 +0.07958143 0.0968001 0.02107202 +0.0968001 0.0968001 0.02107202 +0.1160161 0.0968001 0.02107202 +0.1372908 0.0968001 0.02107202 +0.1606827 0.0968001 0.02107202 +0.1862481 0.0968001 0.02107202 +0.2140411 0.0968001 0.02107202 +0.2441142 0.0968001 0.02107202 +0.2765176 0.0968001 0.02107202 +0.3113005 0.0968001 0.02107202 +0.3485102 0.0968001 0.02107202 +0.388193 0.0968001 0.02107202 +0.4303934 0.0968001 0.02107202 +0.4751555 0.0968001 0.02107202 +0.5225216 0.0968001 0.02107202 +0.5725335 0.0968001 0.02107202 +0.6252316 0.0968001 0.02107202 +0.6806558 0.0968001 0.02107202 +0.7388448 0.0968001 0.02107202 +0.7998369 0.0968001 0.02107202 +0.8636691 0.0968001 0.02107202 +0.9303782 0.0968001 0.02107202 +1 0.0968001 0.02107202 +0 0.1160161 0.02107202 +0.002418731 0.1160161 0.02107202 +0.005155668 0.1160161 0.02107202 +0.009080105 0.1160161 0.02107202 +0.01434988 0.1160161 0.02107202 +0.02107202 0.1160161 0.02107202 +0.02934285 0.1160161 0.02107202 +0.03925039 0.1160161 0.02107202 +0.05087609 0.1160161 0.02107202 +0.06429595 0.1160161 0.02107202 +0.07958143 0.1160161 0.02107202 +0.0968001 0.1160161 0.02107202 +0.1160161 0.1160161 0.02107202 +0.1372908 0.1160161 0.02107202 +0.1606827 0.1160161 0.02107202 +0.1862481 0.1160161 0.02107202 +0.2140411 0.1160161 0.02107202 +0.2441142 0.1160161 0.02107202 +0.2765176 0.1160161 0.02107202 +0.3113005 0.1160161 0.02107202 +0.3485102 0.1160161 0.02107202 +0.388193 0.1160161 0.02107202 +0.4303934 0.1160161 0.02107202 +0.4751555 0.1160161 0.02107202 +0.5225216 0.1160161 0.02107202 +0.5725335 0.1160161 0.02107202 +0.6252316 0.1160161 0.02107202 +0.6806558 0.1160161 0.02107202 +0.7388448 0.1160161 0.02107202 +0.7998369 0.1160161 0.02107202 +0.8636691 0.1160161 0.02107202 +0.9303782 0.1160161 0.02107202 +1 0.1160161 0.02107202 +0 0.1372908 0.02107202 +0.002418731 0.1372908 0.02107202 +0.005155668 0.1372908 0.02107202 +0.009080105 0.1372908 0.02107202 +0.01434988 0.1372908 0.02107202 +0.02107202 0.1372908 0.02107202 +0.02934285 0.1372908 0.02107202 +0.03925039 0.1372908 0.02107202 +0.05087609 0.1372908 0.02107202 +0.06429595 0.1372908 0.02107202 +0.07958143 0.1372908 0.02107202 +0.0968001 0.1372908 0.02107202 +0.1160161 0.1372908 0.02107202 +0.1372908 0.1372908 0.02107202 +0.1606827 0.1372908 0.02107202 +0.1862481 0.1372908 0.02107202 +0.2140411 0.1372908 0.02107202 +0.2441142 0.1372908 0.02107202 +0.2765176 0.1372908 0.02107202 +0.3113005 0.1372908 0.02107202 +0.3485102 0.1372908 0.02107202 +0.388193 0.1372908 0.02107202 +0.4303934 0.1372908 0.02107202 +0.4751555 0.1372908 0.02107202 +0.5225216 0.1372908 0.02107202 +0.5725335 0.1372908 0.02107202 +0.6252316 0.1372908 0.02107202 +0.6806558 0.1372908 0.02107202 +0.7388448 0.1372908 0.02107202 +0.7998369 0.1372908 0.02107202 +0.8636691 0.1372908 0.02107202 +0.9303782 0.1372908 0.02107202 +1 0.1372908 0.02107202 +0 0.1606827 0.02107202 +0.002418731 0.1606827 0.02107202 +0.005155668 0.1606827 0.02107202 +0.009080105 0.1606827 0.02107202 +0.01434988 0.1606827 0.02107202 +0.02107202 0.1606827 0.02107202 +0.02934285 0.1606827 0.02107202 +0.03925039 0.1606827 0.02107202 +0.05087609 0.1606827 0.02107202 +0.06429595 0.1606827 0.02107202 +0.07958143 0.1606827 0.02107202 +0.0968001 0.1606827 0.02107202 +0.1160161 0.1606827 0.02107202 +0.1372908 0.1606827 0.02107202 +0.1606827 0.1606827 0.02107202 +0.1862481 0.1606827 0.02107202 +0.2140411 0.1606827 0.02107202 +0.2441142 0.1606827 0.02107202 +0.2765176 0.1606827 0.02107202 +0.3113005 0.1606827 0.02107202 +0.3485102 0.1606827 0.02107202 +0.388193 0.1606827 0.02107202 +0.4303934 0.1606827 0.02107202 +0.4751555 0.1606827 0.02107202 +0.5225216 0.1606827 0.02107202 +0.5725335 0.1606827 0.02107202 +0.6252316 0.1606827 0.02107202 +0.6806558 0.1606827 0.02107202 +0.7388448 0.1606827 0.02107202 +0.7998369 0.1606827 0.02107202 +0.8636691 0.1606827 0.02107202 +0.9303782 0.1606827 0.02107202 +1 0.1606827 0.02107202 +0 0.1862481 0.02107202 +0.002418731 0.1862481 0.02107202 +0.005155668 0.1862481 0.02107202 +0.009080105 0.1862481 0.02107202 +0.01434988 0.1862481 0.02107202 +0.02107202 0.1862481 0.02107202 +0.02934285 0.1862481 0.02107202 +0.03925039 0.1862481 0.02107202 +0.05087609 0.1862481 0.02107202 +0.06429595 0.1862481 0.02107202 +0.07958143 0.1862481 0.02107202 +0.0968001 0.1862481 0.02107202 +0.1160161 0.1862481 0.02107202 +0.1372908 0.1862481 0.02107202 +0.1606827 0.1862481 0.02107202 +0.1862481 0.1862481 0.02107202 +0.2140411 0.1862481 0.02107202 +0.2441142 0.1862481 0.02107202 +0.2765176 0.1862481 0.02107202 +0.3113005 0.1862481 0.02107202 +0.3485102 0.1862481 0.02107202 +0.388193 0.1862481 0.02107202 +0.4303934 0.1862481 0.02107202 +0.4751555 0.1862481 0.02107202 +0.5225216 0.1862481 0.02107202 +0.5725335 0.1862481 0.02107202 +0.6252316 0.1862481 0.02107202 +0.6806558 0.1862481 0.02107202 +0.7388448 0.1862481 0.02107202 +0.7998369 0.1862481 0.02107202 +0.8636691 0.1862481 0.02107202 +0.9303782 0.1862481 0.02107202 +1 0.1862481 0.02107202 +0 0.2140411 0.02107202 +0.002418731 0.2140411 0.02107202 +0.005155668 0.2140411 0.02107202 +0.009080105 0.2140411 0.02107202 +0.01434988 0.2140411 0.02107202 +0.02107202 0.2140411 0.02107202 +0.02934285 0.2140411 0.02107202 +0.03925039 0.2140411 0.02107202 +0.05087609 0.2140411 0.02107202 +0.06429595 0.2140411 0.02107202 +0.07958143 0.2140411 0.02107202 +0.0968001 0.2140411 0.02107202 +0.1160161 0.2140411 0.02107202 +0.1372908 0.2140411 0.02107202 +0.1606827 0.2140411 0.02107202 +0.1862481 0.2140411 0.02107202 +0.2140411 0.2140411 0.02107202 +0.2441142 0.2140411 0.02107202 +0.2765176 0.2140411 0.02107202 +0.3113005 0.2140411 0.02107202 +0.3485102 0.2140411 0.02107202 +0.388193 0.2140411 0.02107202 +0.4303934 0.2140411 0.02107202 +0.4751555 0.2140411 0.02107202 +0.5225216 0.2140411 0.02107202 +0.5725335 0.2140411 0.02107202 +0.6252316 0.2140411 0.02107202 +0.6806558 0.2140411 0.02107202 +0.7388448 0.2140411 0.02107202 +0.7998369 0.2140411 0.02107202 +0.8636691 0.2140411 0.02107202 +0.9303782 0.2140411 0.02107202 +1 0.2140411 0.02107202 +0 0.2441142 0.02107202 +0.002418731 0.2441142 0.02107202 +0.005155668 0.2441142 0.02107202 +0.009080105 0.2441142 0.02107202 +0.01434988 0.2441142 0.02107202 +0.02107202 0.2441142 0.02107202 +0.02934285 0.2441142 0.02107202 +0.03925039 0.2441142 0.02107202 +0.05087609 0.2441142 0.02107202 +0.06429595 0.2441142 0.02107202 +0.07958143 0.2441142 0.02107202 +0.0968001 0.2441142 0.02107202 +0.1160161 0.2441142 0.02107202 +0.1372908 0.2441142 0.02107202 +0.1606827 0.2441142 0.02107202 +0.1862481 0.2441142 0.02107202 +0.2140411 0.2441142 0.02107202 +0.2441142 0.2441142 0.02107202 +0.2765176 0.2441142 0.02107202 +0.3113005 0.2441142 0.02107202 +0.3485102 0.2441142 0.02107202 +0.388193 0.2441142 0.02107202 +0.4303934 0.2441142 0.02107202 +0.4751555 0.2441142 0.02107202 +0.5225216 0.2441142 0.02107202 +0.5725335 0.2441142 0.02107202 +0.6252316 0.2441142 0.02107202 +0.6806558 0.2441142 0.02107202 +0.7388448 0.2441142 0.02107202 +0.7998369 0.2441142 0.02107202 +0.8636691 0.2441142 0.02107202 +0.9303782 0.2441142 0.02107202 +1 0.2441142 0.02107202 +0 0.2765176 0.02107202 +0.002418731 0.2765176 0.02107202 +0.005155668 0.2765176 0.02107202 +0.009080105 0.2765176 0.02107202 +0.01434988 0.2765176 0.02107202 +0.02107202 0.2765176 0.02107202 +0.02934285 0.2765176 0.02107202 +0.03925039 0.2765176 0.02107202 +0.05087609 0.2765176 0.02107202 +0.06429595 0.2765176 0.02107202 +0.07958143 0.2765176 0.02107202 +0.0968001 0.2765176 0.02107202 +0.1160161 0.2765176 0.02107202 +0.1372908 0.2765176 0.02107202 +0.1606827 0.2765176 0.02107202 +0.1862481 0.2765176 0.02107202 +0.2140411 0.2765176 0.02107202 +0.2441142 0.2765176 0.02107202 +0.2765176 0.2765176 0.02107202 +0.3113005 0.2765176 0.02107202 +0.3485102 0.2765176 0.02107202 +0.388193 0.2765176 0.02107202 +0.4303934 0.2765176 0.02107202 +0.4751555 0.2765176 0.02107202 +0.5225216 0.2765176 0.02107202 +0.5725335 0.2765176 0.02107202 +0.6252316 0.2765176 0.02107202 +0.6806558 0.2765176 0.02107202 +0.7388448 0.2765176 0.02107202 +0.7998369 0.2765176 0.02107202 +0.8636691 0.2765176 0.02107202 +0.9303782 0.2765176 0.02107202 +1 0.2765176 0.02107202 +0 0.3113005 0.02107202 +0.002418731 0.3113005 0.02107202 +0.005155668 0.3113005 0.02107202 +0.009080105 0.3113005 0.02107202 +0.01434988 0.3113005 0.02107202 +0.02107202 0.3113005 0.02107202 +0.02934285 0.3113005 0.02107202 +0.03925039 0.3113005 0.02107202 +0.05087609 0.3113005 0.02107202 +0.06429595 0.3113005 0.02107202 +0.07958143 0.3113005 0.02107202 +0.0968001 0.3113005 0.02107202 +0.1160161 0.3113005 0.02107202 +0.1372908 0.3113005 0.02107202 +0.1606827 0.3113005 0.02107202 +0.1862481 0.3113005 0.02107202 +0.2140411 0.3113005 0.02107202 +0.2441142 0.3113005 0.02107202 +0.2765176 0.3113005 0.02107202 +0.3113005 0.3113005 0.02107202 +0.3485102 0.3113005 0.02107202 +0.388193 0.3113005 0.02107202 +0.4303934 0.3113005 0.02107202 +0.4751555 0.3113005 0.02107202 +0.5225216 0.3113005 0.02107202 +0.5725335 0.3113005 0.02107202 +0.6252316 0.3113005 0.02107202 +0.6806558 0.3113005 0.02107202 +0.7388448 0.3113005 0.02107202 +0.7998369 0.3113005 0.02107202 +0.8636691 0.3113005 0.02107202 +0.9303782 0.3113005 0.02107202 +1 0.3113005 0.02107202 +0 0.3485102 0.02107202 +0.002418731 0.3485102 0.02107202 +0.005155668 0.3485102 0.02107202 +0.009080105 0.3485102 0.02107202 +0.01434988 0.3485102 0.02107202 +0.02107202 0.3485102 0.02107202 +0.02934285 0.3485102 0.02107202 +0.03925039 0.3485102 0.02107202 +0.05087609 0.3485102 0.02107202 +0.06429595 0.3485102 0.02107202 +0.07958143 0.3485102 0.02107202 +0.0968001 0.3485102 0.02107202 +0.1160161 0.3485102 0.02107202 +0.1372908 0.3485102 0.02107202 +0.1606827 0.3485102 0.02107202 +0.1862481 0.3485102 0.02107202 +0.2140411 0.3485102 0.02107202 +0.2441142 0.3485102 0.02107202 +0.2765176 0.3485102 0.02107202 +0.3113005 0.3485102 0.02107202 +0.3485102 0.3485102 0.02107202 +0.388193 0.3485102 0.02107202 +0.4303934 0.3485102 0.02107202 +0.4751555 0.3485102 0.02107202 +0.5225216 0.3485102 0.02107202 +0.5725335 0.3485102 0.02107202 +0.6252316 0.3485102 0.02107202 +0.6806558 0.3485102 0.02107202 +0.7388448 0.3485102 0.02107202 +0.7998369 0.3485102 0.02107202 +0.8636691 0.3485102 0.02107202 +0.9303782 0.3485102 0.02107202 +1 0.3485102 0.02107202 +0 0.388193 0.02107202 +0.002418731 0.388193 0.02107202 +0.005155668 0.388193 0.02107202 +0.009080105 0.388193 0.02107202 +0.01434988 0.388193 0.02107202 +0.02107202 0.388193 0.02107202 +0.02934285 0.388193 0.02107202 +0.03925039 0.388193 0.02107202 +0.05087609 0.388193 0.02107202 +0.06429595 0.388193 0.02107202 +0.07958143 0.388193 0.02107202 +0.0968001 0.388193 0.02107202 +0.1160161 0.388193 0.02107202 +0.1372908 0.388193 0.02107202 +0.1606827 0.388193 0.02107202 +0.1862481 0.388193 0.02107202 +0.2140411 0.388193 0.02107202 +0.2441142 0.388193 0.02107202 +0.2765176 0.388193 0.02107202 +0.3113005 0.388193 0.02107202 +0.3485102 0.388193 0.02107202 +0.388193 0.388193 0.02107202 +0.4303934 0.388193 0.02107202 +0.4751555 0.388193 0.02107202 +0.5225216 0.388193 0.02107202 +0.5725335 0.388193 0.02107202 +0.6252316 0.388193 0.02107202 +0.6806558 0.388193 0.02107202 +0.7388448 0.388193 0.02107202 +0.7998369 0.388193 0.02107202 +0.8636691 0.388193 0.02107202 +0.9303782 0.388193 0.02107202 +1 0.388193 0.02107202 +0 0.4303934 0.02107202 +0.002418731 0.4303934 0.02107202 +0.005155668 0.4303934 0.02107202 +0.009080105 0.4303934 0.02107202 +0.01434988 0.4303934 0.02107202 +0.02107202 0.4303934 0.02107202 +0.02934285 0.4303934 0.02107202 +0.03925039 0.4303934 0.02107202 +0.05087609 0.4303934 0.02107202 +0.06429595 0.4303934 0.02107202 +0.07958143 0.4303934 0.02107202 +0.0968001 0.4303934 0.02107202 +0.1160161 0.4303934 0.02107202 +0.1372908 0.4303934 0.02107202 +0.1606827 0.4303934 0.02107202 +0.1862481 0.4303934 0.02107202 +0.2140411 0.4303934 0.02107202 +0.2441142 0.4303934 0.02107202 +0.2765176 0.4303934 0.02107202 +0.3113005 0.4303934 0.02107202 +0.3485102 0.4303934 0.02107202 +0.388193 0.4303934 0.02107202 +0.4303934 0.4303934 0.02107202 +0.4751555 0.4303934 0.02107202 +0.5225216 0.4303934 0.02107202 +0.5725335 0.4303934 0.02107202 +0.6252316 0.4303934 0.02107202 +0.6806558 0.4303934 0.02107202 +0.7388448 0.4303934 0.02107202 +0.7998369 0.4303934 0.02107202 +0.8636691 0.4303934 0.02107202 +0.9303782 0.4303934 0.02107202 +1 0.4303934 0.02107202 +0 0.4751555 0.02107202 +0.002418731 0.4751555 0.02107202 +0.005155668 0.4751555 0.02107202 +0.009080105 0.4751555 0.02107202 +0.01434988 0.4751555 0.02107202 +0.02107202 0.4751555 0.02107202 +0.02934285 0.4751555 0.02107202 +0.03925039 0.4751555 0.02107202 +0.05087609 0.4751555 0.02107202 +0.06429595 0.4751555 0.02107202 +0.07958143 0.4751555 0.02107202 +0.0968001 0.4751555 0.02107202 +0.1160161 0.4751555 0.02107202 +0.1372908 0.4751555 0.02107202 +0.1606827 0.4751555 0.02107202 +0.1862481 0.4751555 0.02107202 +0.2140411 0.4751555 0.02107202 +0.2441142 0.4751555 0.02107202 +0.2765176 0.4751555 0.02107202 +0.3113005 0.4751555 0.02107202 +0.3485102 0.4751555 0.02107202 +0.388193 0.4751555 0.02107202 +0.4303934 0.4751555 0.02107202 +0.4751555 0.4751555 0.02107202 +0.5225216 0.4751555 0.02107202 +0.5725335 0.4751555 0.02107202 +0.6252316 0.4751555 0.02107202 +0.6806558 0.4751555 0.02107202 +0.7388448 0.4751555 0.02107202 +0.7998369 0.4751555 0.02107202 +0.8636691 0.4751555 0.02107202 +0.9303782 0.4751555 0.02107202 +1 0.4751555 0.02107202 +0 0.5225216 0.02107202 +0.002418731 0.5225216 0.02107202 +0.005155668 0.5225216 0.02107202 +0.009080105 0.5225216 0.02107202 +0.01434988 0.5225216 0.02107202 +0.02107202 0.5225216 0.02107202 +0.02934285 0.5225216 0.02107202 +0.03925039 0.5225216 0.02107202 +0.05087609 0.5225216 0.02107202 +0.06429595 0.5225216 0.02107202 +0.07958143 0.5225216 0.02107202 +0.0968001 0.5225216 0.02107202 +0.1160161 0.5225216 0.02107202 +0.1372908 0.5225216 0.02107202 +0.1606827 0.5225216 0.02107202 +0.1862481 0.5225216 0.02107202 +0.2140411 0.5225216 0.02107202 +0.2441142 0.5225216 0.02107202 +0.2765176 0.5225216 0.02107202 +0.3113005 0.5225216 0.02107202 +0.3485102 0.5225216 0.02107202 +0.388193 0.5225216 0.02107202 +0.4303934 0.5225216 0.02107202 +0.4751555 0.5225216 0.02107202 +0.5225216 0.5225216 0.02107202 +0.5725335 0.5225216 0.02107202 +0.6252316 0.5225216 0.02107202 +0.6806558 0.5225216 0.02107202 +0.7388448 0.5225216 0.02107202 +0.7998369 0.5225216 0.02107202 +0.8636691 0.5225216 0.02107202 +0.9303782 0.5225216 0.02107202 +1 0.5225216 0.02107202 +0 0.5725335 0.02107202 +0.002418731 0.5725335 0.02107202 +0.005155668 0.5725335 0.02107202 +0.009080105 0.5725335 0.02107202 +0.01434988 0.5725335 0.02107202 +0.02107202 0.5725335 0.02107202 +0.02934285 0.5725335 0.02107202 +0.03925039 0.5725335 0.02107202 +0.05087609 0.5725335 0.02107202 +0.06429595 0.5725335 0.02107202 +0.07958143 0.5725335 0.02107202 +0.0968001 0.5725335 0.02107202 +0.1160161 0.5725335 0.02107202 +0.1372908 0.5725335 0.02107202 +0.1606827 0.5725335 0.02107202 +0.1862481 0.5725335 0.02107202 +0.2140411 0.5725335 0.02107202 +0.2441142 0.5725335 0.02107202 +0.2765176 0.5725335 0.02107202 +0.3113005 0.5725335 0.02107202 +0.3485102 0.5725335 0.02107202 +0.388193 0.5725335 0.02107202 +0.4303934 0.5725335 0.02107202 +0.4751555 0.5725335 0.02107202 +0.5225216 0.5725335 0.02107202 +0.5725335 0.5725335 0.02107202 +0.6252316 0.5725335 0.02107202 +0.6806558 0.5725335 0.02107202 +0.7388448 0.5725335 0.02107202 +0.7998369 0.5725335 0.02107202 +0.8636691 0.5725335 0.02107202 +0.9303782 0.5725335 0.02107202 +1 0.5725335 0.02107202 +0 0.6252316 0.02107202 +0.002418731 0.6252316 0.02107202 +0.005155668 0.6252316 0.02107202 +0.009080105 0.6252316 0.02107202 +0.01434988 0.6252316 0.02107202 +0.02107202 0.6252316 0.02107202 +0.02934285 0.6252316 0.02107202 +0.03925039 0.6252316 0.02107202 +0.05087609 0.6252316 0.02107202 +0.06429595 0.6252316 0.02107202 +0.07958143 0.6252316 0.02107202 +0.0968001 0.6252316 0.02107202 +0.1160161 0.6252316 0.02107202 +0.1372908 0.6252316 0.02107202 +0.1606827 0.6252316 0.02107202 +0.1862481 0.6252316 0.02107202 +0.2140411 0.6252316 0.02107202 +0.2441142 0.6252316 0.02107202 +0.2765176 0.6252316 0.02107202 +0.3113005 0.6252316 0.02107202 +0.3485102 0.6252316 0.02107202 +0.388193 0.6252316 0.02107202 +0.4303934 0.6252316 0.02107202 +0.4751555 0.6252316 0.02107202 +0.5225216 0.6252316 0.02107202 +0.5725335 0.6252316 0.02107202 +0.6252316 0.6252316 0.02107202 +0.6806558 0.6252316 0.02107202 +0.7388448 0.6252316 0.02107202 +0.7998369 0.6252316 0.02107202 +0.8636691 0.6252316 0.02107202 +0.9303782 0.6252316 0.02107202 +1 0.6252316 0.02107202 +0 0.6806558 0.02107202 +0.002418731 0.6806558 0.02107202 +0.005155668 0.6806558 0.02107202 +0.009080105 0.6806558 0.02107202 +0.01434988 0.6806558 0.02107202 +0.02107202 0.6806558 0.02107202 +0.02934285 0.6806558 0.02107202 +0.03925039 0.6806558 0.02107202 +0.05087609 0.6806558 0.02107202 +0.06429595 0.6806558 0.02107202 +0.07958143 0.6806558 0.02107202 +0.0968001 0.6806558 0.02107202 +0.1160161 0.6806558 0.02107202 +0.1372908 0.6806558 0.02107202 +0.1606827 0.6806558 0.02107202 +0.1862481 0.6806558 0.02107202 +0.2140411 0.6806558 0.02107202 +0.2441142 0.6806558 0.02107202 +0.2765176 0.6806558 0.02107202 +0.3113005 0.6806558 0.02107202 +0.3485102 0.6806558 0.02107202 +0.388193 0.6806558 0.02107202 +0.4303934 0.6806558 0.02107202 +0.4751555 0.6806558 0.02107202 +0.5225216 0.6806558 0.02107202 +0.5725335 0.6806558 0.02107202 +0.6252316 0.6806558 0.02107202 +0.6806558 0.6806558 0.02107202 +0.7388448 0.6806558 0.02107202 +0.7998369 0.6806558 0.02107202 +0.8636691 0.6806558 0.02107202 +0.9303782 0.6806558 0.02107202 +1 0.6806558 0.02107202 +0 0.7388448 0.02107202 +0.002418731 0.7388448 0.02107202 +0.005155668 0.7388448 0.02107202 +0.009080105 0.7388448 0.02107202 +0.01434988 0.7388448 0.02107202 +0.02107202 0.7388448 0.02107202 +0.02934285 0.7388448 0.02107202 +0.03925039 0.7388448 0.02107202 +0.05087609 0.7388448 0.02107202 +0.06429595 0.7388448 0.02107202 +0.07958143 0.7388448 0.02107202 +0.0968001 0.7388448 0.02107202 +0.1160161 0.7388448 0.02107202 +0.1372908 0.7388448 0.02107202 +0.1606827 0.7388448 0.02107202 +0.1862481 0.7388448 0.02107202 +0.2140411 0.7388448 0.02107202 +0.2441142 0.7388448 0.02107202 +0.2765176 0.7388448 0.02107202 +0.3113005 0.7388448 0.02107202 +0.3485102 0.7388448 0.02107202 +0.388193 0.7388448 0.02107202 +0.4303934 0.7388448 0.02107202 +0.4751555 0.7388448 0.02107202 +0.5225216 0.7388448 0.02107202 +0.5725335 0.7388448 0.02107202 +0.6252316 0.7388448 0.02107202 +0.6806558 0.7388448 0.02107202 +0.7388448 0.7388448 0.02107202 +0.7998369 0.7388448 0.02107202 +0.8636691 0.7388448 0.02107202 +0.9303782 0.7388448 0.02107202 +1 0.7388448 0.02107202 +0 0.7998369 0.02107202 +0.002418731 0.7998369 0.02107202 +0.005155668 0.7998369 0.02107202 +0.009080105 0.7998369 0.02107202 +0.01434988 0.7998369 0.02107202 +0.02107202 0.7998369 0.02107202 +0.02934285 0.7998369 0.02107202 +0.03925039 0.7998369 0.02107202 +0.05087609 0.7998369 0.02107202 +0.06429595 0.7998369 0.02107202 +0.07958143 0.7998369 0.02107202 +0.0968001 0.7998369 0.02107202 +0.1160161 0.7998369 0.02107202 +0.1372908 0.7998369 0.02107202 +0.1606827 0.7998369 0.02107202 +0.1862481 0.7998369 0.02107202 +0.2140411 0.7998369 0.02107202 +0.2441142 0.7998369 0.02107202 +0.2765176 0.7998369 0.02107202 +0.3113005 0.7998369 0.02107202 +0.3485102 0.7998369 0.02107202 +0.388193 0.7998369 0.02107202 +0.4303934 0.7998369 0.02107202 +0.4751555 0.7998369 0.02107202 +0.5225216 0.7998369 0.02107202 +0.5725335 0.7998369 0.02107202 +0.6252316 0.7998369 0.02107202 +0.6806558 0.7998369 0.02107202 +0.7388448 0.7998369 0.02107202 +0.7998369 0.7998369 0.02107202 +0.8636691 0.7998369 0.02107202 +0.9303782 0.7998369 0.02107202 +1 0.7998369 0.02107202 +0 0.8636691 0.02107202 +0.002418731 0.8636691 0.02107202 +0.005155668 0.8636691 0.02107202 +0.009080105 0.8636691 0.02107202 +0.01434988 0.8636691 0.02107202 +0.02107202 0.8636691 0.02107202 +0.02934285 0.8636691 0.02107202 +0.03925039 0.8636691 0.02107202 +0.05087609 0.8636691 0.02107202 +0.06429595 0.8636691 0.02107202 +0.07958143 0.8636691 0.02107202 +0.0968001 0.8636691 0.02107202 +0.1160161 0.8636691 0.02107202 +0.1372908 0.8636691 0.02107202 +0.1606827 0.8636691 0.02107202 +0.1862481 0.8636691 0.02107202 +0.2140411 0.8636691 0.02107202 +0.2441142 0.8636691 0.02107202 +0.2765176 0.8636691 0.02107202 +0.3113005 0.8636691 0.02107202 +0.3485102 0.8636691 0.02107202 +0.388193 0.8636691 0.02107202 +0.4303934 0.8636691 0.02107202 +0.4751555 0.8636691 0.02107202 +0.5225216 0.8636691 0.02107202 +0.5725335 0.8636691 0.02107202 +0.6252316 0.8636691 0.02107202 +0.6806558 0.8636691 0.02107202 +0.7388448 0.8636691 0.02107202 +0.7998369 0.8636691 0.02107202 +0.8636691 0.8636691 0.02107202 +0.9303782 0.8636691 0.02107202 +1 0.8636691 0.02107202 +0 0.9303782 0.02107202 +0.002418731 0.9303782 0.02107202 +0.005155668 0.9303782 0.02107202 +0.009080105 0.9303782 0.02107202 +0.01434988 0.9303782 0.02107202 +0.02107202 0.9303782 0.02107202 +0.02934285 0.9303782 0.02107202 +0.03925039 0.9303782 0.02107202 +0.05087609 0.9303782 0.02107202 +0.06429595 0.9303782 0.02107202 +0.07958143 0.9303782 0.02107202 +0.0968001 0.9303782 0.02107202 +0.1160161 0.9303782 0.02107202 +0.1372908 0.9303782 0.02107202 +0.1606827 0.9303782 0.02107202 +0.1862481 0.9303782 0.02107202 +0.2140411 0.9303782 0.02107202 +0.2441142 0.9303782 0.02107202 +0.2765176 0.9303782 0.02107202 +0.3113005 0.9303782 0.02107202 +0.3485102 0.9303782 0.02107202 +0.388193 0.9303782 0.02107202 +0.4303934 0.9303782 0.02107202 +0.4751555 0.9303782 0.02107202 +0.5225216 0.9303782 0.02107202 +0.5725335 0.9303782 0.02107202 +0.6252316 0.9303782 0.02107202 +0.6806558 0.9303782 0.02107202 +0.7388448 0.9303782 0.02107202 +0.7998369 0.9303782 0.02107202 +0.8636691 0.9303782 0.02107202 +0.9303782 0.9303782 0.02107202 +1 0.9303782 0.02107202 +0 1 0.02107202 +0.002418731 1 0.02107202 +0.005155668 1 0.02107202 +0.009080105 1 0.02107202 +0.01434988 1 0.02107202 +0.02107202 1 0.02107202 +0.02934285 1 0.02107202 +0.03925039 1 0.02107202 +0.05087609 1 0.02107202 +0.06429595 1 0.02107202 +0.07958143 1 0.02107202 +0.0968001 1 0.02107202 +0.1160161 1 0.02107202 +0.1372908 1 0.02107202 +0.1606827 1 0.02107202 +0.1862481 1 0.02107202 +0.2140411 1 0.02107202 +0.2441142 1 0.02107202 +0.2765176 1 0.02107202 +0.3113005 1 0.02107202 +0.3485102 1 0.02107202 +0.388193 1 0.02107202 +0.4303934 1 0.02107202 +0.4751555 1 0.02107202 +0.5225216 1 0.02107202 +0.5725335 1 0.02107202 +0.6252316 1 0.02107202 +0.6806558 1 0.02107202 +0.7388448 1 0.02107202 +0.7998369 1 0.02107202 +0.8636691 1 0.02107202 +0.9303782 1 0.02107202 +1 1 0.02107202 +0 0 0.02934285 +0.002418731 0 0.02934285 +0.005155668 0 0.02934285 +0.009080105 0 0.02934285 +0.01434988 0 0.02934285 +0.02107202 0 0.02934285 +0.02934285 0 0.02934285 +0.03925039 0 0.02934285 +0.05087609 0 0.02934285 +0.06429595 0 0.02934285 +0.07958143 0 0.02934285 +0.0968001 0 0.02934285 +0.1160161 0 0.02934285 +0.1372908 0 0.02934285 +0.1606827 0 0.02934285 +0.1862481 0 0.02934285 +0.2140411 0 0.02934285 +0.2441142 0 0.02934285 +0.2765176 0 0.02934285 +0.3113005 0 0.02934285 +0.3485102 0 0.02934285 +0.388193 0 0.02934285 +0.4303934 0 0.02934285 +0.4751555 0 0.02934285 +0.5225216 0 0.02934285 +0.5725335 0 0.02934285 +0.6252316 0 0.02934285 +0.6806558 0 0.02934285 +0.7388448 0 0.02934285 +0.7998369 0 0.02934285 +0.8636691 0 0.02934285 +0.9303782 0 0.02934285 +1 0 0.02934285 +0 0.002418731 0.02934285 +0.002418731 0.002418731 0.02934285 +0.005155668 0.002418731 0.02934285 +0.009080105 0.002418731 0.02934285 +0.01434988 0.002418731 0.02934285 +0.02107202 0.002418731 0.02934285 +0.02934285 0.002418731 0.02934285 +0.03925039 0.002418731 0.02934285 +0.05087609 0.002418731 0.02934285 +0.06429595 0.002418731 0.02934285 +0.07958143 0.002418731 0.02934285 +0.0968001 0.002418731 0.02934285 +0.1160161 0.002418731 0.02934285 +0.1372908 0.002418731 0.02934285 +0.1606827 0.002418731 0.02934285 +0.1862481 0.002418731 0.02934285 +0.2140411 0.002418731 0.02934285 +0.2441142 0.002418731 0.02934285 +0.2765176 0.002418731 0.02934285 +0.3113005 0.002418731 0.02934285 +0.3485102 0.002418731 0.02934285 +0.388193 0.002418731 0.02934285 +0.4303934 0.002418731 0.02934285 +0.4751555 0.002418731 0.02934285 +0.5225216 0.002418731 0.02934285 +0.5725335 0.002418731 0.02934285 +0.6252316 0.002418731 0.02934285 +0.6806558 0.002418731 0.02934285 +0.7388448 0.002418731 0.02934285 +0.7998369 0.002418731 0.02934285 +0.8636691 0.002418731 0.02934285 +0.9303782 0.002418731 0.02934285 +1 0.002418731 0.02934285 +0 0.005155668 0.02934285 +0.002418731 0.005155668 0.02934285 +0.005155668 0.005155668 0.02934285 +0.009080105 0.005155668 0.02934285 +0.01434988 0.005155668 0.02934285 +0.02107202 0.005155668 0.02934285 +0.02934285 0.005155668 0.02934285 +0.03925039 0.005155668 0.02934285 +0.05087609 0.005155668 0.02934285 +0.06429595 0.005155668 0.02934285 +0.07958143 0.005155668 0.02934285 +0.0968001 0.005155668 0.02934285 +0.1160161 0.005155668 0.02934285 +0.1372908 0.005155668 0.02934285 +0.1606827 0.005155668 0.02934285 +0.1862481 0.005155668 0.02934285 +0.2140411 0.005155668 0.02934285 +0.2441142 0.005155668 0.02934285 +0.2765176 0.005155668 0.02934285 +0.3113005 0.005155668 0.02934285 +0.3485102 0.005155668 0.02934285 +0.388193 0.005155668 0.02934285 +0.4303934 0.005155668 0.02934285 +0.4751555 0.005155668 0.02934285 +0.5225216 0.005155668 0.02934285 +0.5725335 0.005155668 0.02934285 +0.6252316 0.005155668 0.02934285 +0.6806558 0.005155668 0.02934285 +0.7388448 0.005155668 0.02934285 +0.7998369 0.005155668 0.02934285 +0.8636691 0.005155668 0.02934285 +0.9303782 0.005155668 0.02934285 +1 0.005155668 0.02934285 +0 0.009080105 0.02934285 +0.002418731 0.009080105 0.02934285 +0.005155668 0.009080105 0.02934285 +0.009080105 0.009080105 0.02934285 +0.01434988 0.009080105 0.02934285 +0.02107202 0.009080105 0.02934285 +0.02934285 0.009080105 0.02934285 +0.03925039 0.009080105 0.02934285 +0.05087609 0.009080105 0.02934285 +0.06429595 0.009080105 0.02934285 +0.07958143 0.009080105 0.02934285 +0.0968001 0.009080105 0.02934285 +0.1160161 0.009080105 0.02934285 +0.1372908 0.009080105 0.02934285 +0.1606827 0.009080105 0.02934285 +0.1862481 0.009080105 0.02934285 +0.2140411 0.009080105 0.02934285 +0.2441142 0.009080105 0.02934285 +0.2765176 0.009080105 0.02934285 +0.3113005 0.009080105 0.02934285 +0.3485102 0.009080105 0.02934285 +0.388193 0.009080105 0.02934285 +0.4303934 0.009080105 0.02934285 +0.4751555 0.009080105 0.02934285 +0.5225216 0.009080105 0.02934285 +0.5725335 0.009080105 0.02934285 +0.6252316 0.009080105 0.02934285 +0.6806558 0.009080105 0.02934285 +0.7388448 0.009080105 0.02934285 +0.7998369 0.009080105 0.02934285 +0.8636691 0.009080105 0.02934285 +0.9303782 0.009080105 0.02934285 +1 0.009080105 0.02934285 +0 0.01434988 0.02934285 +0.002418731 0.01434988 0.02934285 +0.005155668 0.01434988 0.02934285 +0.009080105 0.01434988 0.02934285 +0.01434988 0.01434988 0.02934285 +0.02107202 0.01434988 0.02934285 +0.02934285 0.01434988 0.02934285 +0.03925039 0.01434988 0.02934285 +0.05087609 0.01434988 0.02934285 +0.06429595 0.01434988 0.02934285 +0.07958143 0.01434988 0.02934285 +0.0968001 0.01434988 0.02934285 +0.1160161 0.01434988 0.02934285 +0.1372908 0.01434988 0.02934285 +0.1606827 0.01434988 0.02934285 +0.1862481 0.01434988 0.02934285 +0.2140411 0.01434988 0.02934285 +0.2441142 0.01434988 0.02934285 +0.2765176 0.01434988 0.02934285 +0.3113005 0.01434988 0.02934285 +0.3485102 0.01434988 0.02934285 +0.388193 0.01434988 0.02934285 +0.4303934 0.01434988 0.02934285 +0.4751555 0.01434988 0.02934285 +0.5225216 0.01434988 0.02934285 +0.5725335 0.01434988 0.02934285 +0.6252316 0.01434988 0.02934285 +0.6806558 0.01434988 0.02934285 +0.7388448 0.01434988 0.02934285 +0.7998369 0.01434988 0.02934285 +0.8636691 0.01434988 0.02934285 +0.9303782 0.01434988 0.02934285 +1 0.01434988 0.02934285 +0 0.02107202 0.02934285 +0.002418731 0.02107202 0.02934285 +0.005155668 0.02107202 0.02934285 +0.009080105 0.02107202 0.02934285 +0.01434988 0.02107202 0.02934285 +0.02107202 0.02107202 0.02934285 +0.02934285 0.02107202 0.02934285 +0.03925039 0.02107202 0.02934285 +0.05087609 0.02107202 0.02934285 +0.06429595 0.02107202 0.02934285 +0.07958143 0.02107202 0.02934285 +0.0968001 0.02107202 0.02934285 +0.1160161 0.02107202 0.02934285 +0.1372908 0.02107202 0.02934285 +0.1606827 0.02107202 0.02934285 +0.1862481 0.02107202 0.02934285 +0.2140411 0.02107202 0.02934285 +0.2441142 0.02107202 0.02934285 +0.2765176 0.02107202 0.02934285 +0.3113005 0.02107202 0.02934285 +0.3485102 0.02107202 0.02934285 +0.388193 0.02107202 0.02934285 +0.4303934 0.02107202 0.02934285 +0.4751555 0.02107202 0.02934285 +0.5225216 0.02107202 0.02934285 +0.5725335 0.02107202 0.02934285 +0.6252316 0.02107202 0.02934285 +0.6806558 0.02107202 0.02934285 +0.7388448 0.02107202 0.02934285 +0.7998369 0.02107202 0.02934285 +0.8636691 0.02107202 0.02934285 +0.9303782 0.02107202 0.02934285 +1 0.02107202 0.02934285 +0 0.02934285 0.02934285 +0.002418731 0.02934285 0.02934285 +0.005155668 0.02934285 0.02934285 +0.009080105 0.02934285 0.02934285 +0.01434988 0.02934285 0.02934285 +0.02107202 0.02934285 0.02934285 +0.02934285 0.02934285 0.02934285 +0.03925039 0.02934285 0.02934285 +0.05087609 0.02934285 0.02934285 +0.06429595 0.02934285 0.02934285 +0.07958143 0.02934285 0.02934285 +0.0968001 0.02934285 0.02934285 +0.1160161 0.02934285 0.02934285 +0.1372908 0.02934285 0.02934285 +0.1606827 0.02934285 0.02934285 +0.1862481 0.02934285 0.02934285 +0.2140411 0.02934285 0.02934285 +0.2441142 0.02934285 0.02934285 +0.2765176 0.02934285 0.02934285 +0.3113005 0.02934285 0.02934285 +0.3485102 0.02934285 0.02934285 +0.388193 0.02934285 0.02934285 +0.4303934 0.02934285 0.02934285 +0.4751555 0.02934285 0.02934285 +0.5225216 0.02934285 0.02934285 +0.5725335 0.02934285 0.02934285 +0.6252316 0.02934285 0.02934285 +0.6806558 0.02934285 0.02934285 +0.7388448 0.02934285 0.02934285 +0.7998369 0.02934285 0.02934285 +0.8636691 0.02934285 0.02934285 +0.9303782 0.02934285 0.02934285 +1 0.02934285 0.02934285 +0 0.03925039 0.02934285 +0.002418731 0.03925039 0.02934285 +0.005155668 0.03925039 0.02934285 +0.009080105 0.03925039 0.02934285 +0.01434988 0.03925039 0.02934285 +0.02107202 0.03925039 0.02934285 +0.02934285 0.03925039 0.02934285 +0.03925039 0.03925039 0.02934285 +0.05087609 0.03925039 0.02934285 +0.06429595 0.03925039 0.02934285 +0.07958143 0.03925039 0.02934285 +0.0968001 0.03925039 0.02934285 +0.1160161 0.03925039 0.02934285 +0.1372908 0.03925039 0.02934285 +0.1606827 0.03925039 0.02934285 +0.1862481 0.03925039 0.02934285 +0.2140411 0.03925039 0.02934285 +0.2441142 0.03925039 0.02934285 +0.2765176 0.03925039 0.02934285 +0.3113005 0.03925039 0.02934285 +0.3485102 0.03925039 0.02934285 +0.388193 0.03925039 0.02934285 +0.4303934 0.03925039 0.02934285 +0.4751555 0.03925039 0.02934285 +0.5225216 0.03925039 0.02934285 +0.5725335 0.03925039 0.02934285 +0.6252316 0.03925039 0.02934285 +0.6806558 0.03925039 0.02934285 +0.7388448 0.03925039 0.02934285 +0.7998369 0.03925039 0.02934285 +0.8636691 0.03925039 0.02934285 +0.9303782 0.03925039 0.02934285 +1 0.03925039 0.02934285 +0 0.05087609 0.02934285 +0.002418731 0.05087609 0.02934285 +0.005155668 0.05087609 0.02934285 +0.009080105 0.05087609 0.02934285 +0.01434988 0.05087609 0.02934285 +0.02107202 0.05087609 0.02934285 +0.02934285 0.05087609 0.02934285 +0.03925039 0.05087609 0.02934285 +0.05087609 0.05087609 0.02934285 +0.06429595 0.05087609 0.02934285 +0.07958143 0.05087609 0.02934285 +0.0968001 0.05087609 0.02934285 +0.1160161 0.05087609 0.02934285 +0.1372908 0.05087609 0.02934285 +0.1606827 0.05087609 0.02934285 +0.1862481 0.05087609 0.02934285 +0.2140411 0.05087609 0.02934285 +0.2441142 0.05087609 0.02934285 +0.2765176 0.05087609 0.02934285 +0.3113005 0.05087609 0.02934285 +0.3485102 0.05087609 0.02934285 +0.388193 0.05087609 0.02934285 +0.4303934 0.05087609 0.02934285 +0.4751555 0.05087609 0.02934285 +0.5225216 0.05087609 0.02934285 +0.5725335 0.05087609 0.02934285 +0.6252316 0.05087609 0.02934285 +0.6806558 0.05087609 0.02934285 +0.7388448 0.05087609 0.02934285 +0.7998369 0.05087609 0.02934285 +0.8636691 0.05087609 0.02934285 +0.9303782 0.05087609 0.02934285 +1 0.05087609 0.02934285 +0 0.06429595 0.02934285 +0.002418731 0.06429595 0.02934285 +0.005155668 0.06429595 0.02934285 +0.009080105 0.06429595 0.02934285 +0.01434988 0.06429595 0.02934285 +0.02107202 0.06429595 0.02934285 +0.02934285 0.06429595 0.02934285 +0.03925039 0.06429595 0.02934285 +0.05087609 0.06429595 0.02934285 +0.06429595 0.06429595 0.02934285 +0.07958143 0.06429595 0.02934285 +0.0968001 0.06429595 0.02934285 +0.1160161 0.06429595 0.02934285 +0.1372908 0.06429595 0.02934285 +0.1606827 0.06429595 0.02934285 +0.1862481 0.06429595 0.02934285 +0.2140411 0.06429595 0.02934285 +0.2441142 0.06429595 0.02934285 +0.2765176 0.06429595 0.02934285 +0.3113005 0.06429595 0.02934285 +0.3485102 0.06429595 0.02934285 +0.388193 0.06429595 0.02934285 +0.4303934 0.06429595 0.02934285 +0.4751555 0.06429595 0.02934285 +0.5225216 0.06429595 0.02934285 +0.5725335 0.06429595 0.02934285 +0.6252316 0.06429595 0.02934285 +0.6806558 0.06429595 0.02934285 +0.7388448 0.06429595 0.02934285 +0.7998369 0.06429595 0.02934285 +0.8636691 0.06429595 0.02934285 +0.9303782 0.06429595 0.02934285 +1 0.06429595 0.02934285 +0 0.07958143 0.02934285 +0.002418731 0.07958143 0.02934285 +0.005155668 0.07958143 0.02934285 +0.009080105 0.07958143 0.02934285 +0.01434988 0.07958143 0.02934285 +0.02107202 0.07958143 0.02934285 +0.02934285 0.07958143 0.02934285 +0.03925039 0.07958143 0.02934285 +0.05087609 0.07958143 0.02934285 +0.06429595 0.07958143 0.02934285 +0.07958143 0.07958143 0.02934285 +0.0968001 0.07958143 0.02934285 +0.1160161 0.07958143 0.02934285 +0.1372908 0.07958143 0.02934285 +0.1606827 0.07958143 0.02934285 +0.1862481 0.07958143 0.02934285 +0.2140411 0.07958143 0.02934285 +0.2441142 0.07958143 0.02934285 +0.2765176 0.07958143 0.02934285 +0.3113005 0.07958143 0.02934285 +0.3485102 0.07958143 0.02934285 +0.388193 0.07958143 0.02934285 +0.4303934 0.07958143 0.02934285 +0.4751555 0.07958143 0.02934285 +0.5225216 0.07958143 0.02934285 +0.5725335 0.07958143 0.02934285 +0.6252316 0.07958143 0.02934285 +0.6806558 0.07958143 0.02934285 +0.7388448 0.07958143 0.02934285 +0.7998369 0.07958143 0.02934285 +0.8636691 0.07958143 0.02934285 +0.9303782 0.07958143 0.02934285 +1 0.07958143 0.02934285 +0 0.0968001 0.02934285 +0.002418731 0.0968001 0.02934285 +0.005155668 0.0968001 0.02934285 +0.009080105 0.0968001 0.02934285 +0.01434988 0.0968001 0.02934285 +0.02107202 0.0968001 0.02934285 +0.02934285 0.0968001 0.02934285 +0.03925039 0.0968001 0.02934285 +0.05087609 0.0968001 0.02934285 +0.06429595 0.0968001 0.02934285 +0.07958143 0.0968001 0.02934285 +0.0968001 0.0968001 0.02934285 +0.1160161 0.0968001 0.02934285 +0.1372908 0.0968001 0.02934285 +0.1606827 0.0968001 0.02934285 +0.1862481 0.0968001 0.02934285 +0.2140411 0.0968001 0.02934285 +0.2441142 0.0968001 0.02934285 +0.2765176 0.0968001 0.02934285 +0.3113005 0.0968001 0.02934285 +0.3485102 0.0968001 0.02934285 +0.388193 0.0968001 0.02934285 +0.4303934 0.0968001 0.02934285 +0.4751555 0.0968001 0.02934285 +0.5225216 0.0968001 0.02934285 +0.5725335 0.0968001 0.02934285 +0.6252316 0.0968001 0.02934285 +0.6806558 0.0968001 0.02934285 +0.7388448 0.0968001 0.02934285 +0.7998369 0.0968001 0.02934285 +0.8636691 0.0968001 0.02934285 +0.9303782 0.0968001 0.02934285 +1 0.0968001 0.02934285 +0 0.1160161 0.02934285 +0.002418731 0.1160161 0.02934285 +0.005155668 0.1160161 0.02934285 +0.009080105 0.1160161 0.02934285 +0.01434988 0.1160161 0.02934285 +0.02107202 0.1160161 0.02934285 +0.02934285 0.1160161 0.02934285 +0.03925039 0.1160161 0.02934285 +0.05087609 0.1160161 0.02934285 +0.06429595 0.1160161 0.02934285 +0.07958143 0.1160161 0.02934285 +0.0968001 0.1160161 0.02934285 +0.1160161 0.1160161 0.02934285 +0.1372908 0.1160161 0.02934285 +0.1606827 0.1160161 0.02934285 +0.1862481 0.1160161 0.02934285 +0.2140411 0.1160161 0.02934285 +0.2441142 0.1160161 0.02934285 +0.2765176 0.1160161 0.02934285 +0.3113005 0.1160161 0.02934285 +0.3485102 0.1160161 0.02934285 +0.388193 0.1160161 0.02934285 +0.4303934 0.1160161 0.02934285 +0.4751555 0.1160161 0.02934285 +0.5225216 0.1160161 0.02934285 +0.5725335 0.1160161 0.02934285 +0.6252316 0.1160161 0.02934285 +0.6806558 0.1160161 0.02934285 +0.7388448 0.1160161 0.02934285 +0.7998369 0.1160161 0.02934285 +0.8636691 0.1160161 0.02934285 +0.9303782 0.1160161 0.02934285 +1 0.1160161 0.02934285 +0 0.1372908 0.02934285 +0.002418731 0.1372908 0.02934285 +0.005155668 0.1372908 0.02934285 +0.009080105 0.1372908 0.02934285 +0.01434988 0.1372908 0.02934285 +0.02107202 0.1372908 0.02934285 +0.02934285 0.1372908 0.02934285 +0.03925039 0.1372908 0.02934285 +0.05087609 0.1372908 0.02934285 +0.06429595 0.1372908 0.02934285 +0.07958143 0.1372908 0.02934285 +0.0968001 0.1372908 0.02934285 +0.1160161 0.1372908 0.02934285 +0.1372908 0.1372908 0.02934285 +0.1606827 0.1372908 0.02934285 +0.1862481 0.1372908 0.02934285 +0.2140411 0.1372908 0.02934285 +0.2441142 0.1372908 0.02934285 +0.2765176 0.1372908 0.02934285 +0.3113005 0.1372908 0.02934285 +0.3485102 0.1372908 0.02934285 +0.388193 0.1372908 0.02934285 +0.4303934 0.1372908 0.02934285 +0.4751555 0.1372908 0.02934285 +0.5225216 0.1372908 0.02934285 +0.5725335 0.1372908 0.02934285 +0.6252316 0.1372908 0.02934285 +0.6806558 0.1372908 0.02934285 +0.7388448 0.1372908 0.02934285 +0.7998369 0.1372908 0.02934285 +0.8636691 0.1372908 0.02934285 +0.9303782 0.1372908 0.02934285 +1 0.1372908 0.02934285 +0 0.1606827 0.02934285 +0.002418731 0.1606827 0.02934285 +0.005155668 0.1606827 0.02934285 +0.009080105 0.1606827 0.02934285 +0.01434988 0.1606827 0.02934285 +0.02107202 0.1606827 0.02934285 +0.02934285 0.1606827 0.02934285 +0.03925039 0.1606827 0.02934285 +0.05087609 0.1606827 0.02934285 +0.06429595 0.1606827 0.02934285 +0.07958143 0.1606827 0.02934285 +0.0968001 0.1606827 0.02934285 +0.1160161 0.1606827 0.02934285 +0.1372908 0.1606827 0.02934285 +0.1606827 0.1606827 0.02934285 +0.1862481 0.1606827 0.02934285 +0.2140411 0.1606827 0.02934285 +0.2441142 0.1606827 0.02934285 +0.2765176 0.1606827 0.02934285 +0.3113005 0.1606827 0.02934285 +0.3485102 0.1606827 0.02934285 +0.388193 0.1606827 0.02934285 +0.4303934 0.1606827 0.02934285 +0.4751555 0.1606827 0.02934285 +0.5225216 0.1606827 0.02934285 +0.5725335 0.1606827 0.02934285 +0.6252316 0.1606827 0.02934285 +0.6806558 0.1606827 0.02934285 +0.7388448 0.1606827 0.02934285 +0.7998369 0.1606827 0.02934285 +0.8636691 0.1606827 0.02934285 +0.9303782 0.1606827 0.02934285 +1 0.1606827 0.02934285 +0 0.1862481 0.02934285 +0.002418731 0.1862481 0.02934285 +0.005155668 0.1862481 0.02934285 +0.009080105 0.1862481 0.02934285 +0.01434988 0.1862481 0.02934285 +0.02107202 0.1862481 0.02934285 +0.02934285 0.1862481 0.02934285 +0.03925039 0.1862481 0.02934285 +0.05087609 0.1862481 0.02934285 +0.06429595 0.1862481 0.02934285 +0.07958143 0.1862481 0.02934285 +0.0968001 0.1862481 0.02934285 +0.1160161 0.1862481 0.02934285 +0.1372908 0.1862481 0.02934285 +0.1606827 0.1862481 0.02934285 +0.1862481 0.1862481 0.02934285 +0.2140411 0.1862481 0.02934285 +0.2441142 0.1862481 0.02934285 +0.2765176 0.1862481 0.02934285 +0.3113005 0.1862481 0.02934285 +0.3485102 0.1862481 0.02934285 +0.388193 0.1862481 0.02934285 +0.4303934 0.1862481 0.02934285 +0.4751555 0.1862481 0.02934285 +0.5225216 0.1862481 0.02934285 +0.5725335 0.1862481 0.02934285 +0.6252316 0.1862481 0.02934285 +0.6806558 0.1862481 0.02934285 +0.7388448 0.1862481 0.02934285 +0.7998369 0.1862481 0.02934285 +0.8636691 0.1862481 0.02934285 +0.9303782 0.1862481 0.02934285 +1 0.1862481 0.02934285 +0 0.2140411 0.02934285 +0.002418731 0.2140411 0.02934285 +0.005155668 0.2140411 0.02934285 +0.009080105 0.2140411 0.02934285 +0.01434988 0.2140411 0.02934285 +0.02107202 0.2140411 0.02934285 +0.02934285 0.2140411 0.02934285 +0.03925039 0.2140411 0.02934285 +0.05087609 0.2140411 0.02934285 +0.06429595 0.2140411 0.02934285 +0.07958143 0.2140411 0.02934285 +0.0968001 0.2140411 0.02934285 +0.1160161 0.2140411 0.02934285 +0.1372908 0.2140411 0.02934285 +0.1606827 0.2140411 0.02934285 +0.1862481 0.2140411 0.02934285 +0.2140411 0.2140411 0.02934285 +0.2441142 0.2140411 0.02934285 +0.2765176 0.2140411 0.02934285 +0.3113005 0.2140411 0.02934285 +0.3485102 0.2140411 0.02934285 +0.388193 0.2140411 0.02934285 +0.4303934 0.2140411 0.02934285 +0.4751555 0.2140411 0.02934285 +0.5225216 0.2140411 0.02934285 +0.5725335 0.2140411 0.02934285 +0.6252316 0.2140411 0.02934285 +0.6806558 0.2140411 0.02934285 +0.7388448 0.2140411 0.02934285 +0.7998369 0.2140411 0.02934285 +0.8636691 0.2140411 0.02934285 +0.9303782 0.2140411 0.02934285 +1 0.2140411 0.02934285 +0 0.2441142 0.02934285 +0.002418731 0.2441142 0.02934285 +0.005155668 0.2441142 0.02934285 +0.009080105 0.2441142 0.02934285 +0.01434988 0.2441142 0.02934285 +0.02107202 0.2441142 0.02934285 +0.02934285 0.2441142 0.02934285 +0.03925039 0.2441142 0.02934285 +0.05087609 0.2441142 0.02934285 +0.06429595 0.2441142 0.02934285 +0.07958143 0.2441142 0.02934285 +0.0968001 0.2441142 0.02934285 +0.1160161 0.2441142 0.02934285 +0.1372908 0.2441142 0.02934285 +0.1606827 0.2441142 0.02934285 +0.1862481 0.2441142 0.02934285 +0.2140411 0.2441142 0.02934285 +0.2441142 0.2441142 0.02934285 +0.2765176 0.2441142 0.02934285 +0.3113005 0.2441142 0.02934285 +0.3485102 0.2441142 0.02934285 +0.388193 0.2441142 0.02934285 +0.4303934 0.2441142 0.02934285 +0.4751555 0.2441142 0.02934285 +0.5225216 0.2441142 0.02934285 +0.5725335 0.2441142 0.02934285 +0.6252316 0.2441142 0.02934285 +0.6806558 0.2441142 0.02934285 +0.7388448 0.2441142 0.02934285 +0.7998369 0.2441142 0.02934285 +0.8636691 0.2441142 0.02934285 +0.9303782 0.2441142 0.02934285 +1 0.2441142 0.02934285 +0 0.2765176 0.02934285 +0.002418731 0.2765176 0.02934285 +0.005155668 0.2765176 0.02934285 +0.009080105 0.2765176 0.02934285 +0.01434988 0.2765176 0.02934285 +0.02107202 0.2765176 0.02934285 +0.02934285 0.2765176 0.02934285 +0.03925039 0.2765176 0.02934285 +0.05087609 0.2765176 0.02934285 +0.06429595 0.2765176 0.02934285 +0.07958143 0.2765176 0.02934285 +0.0968001 0.2765176 0.02934285 +0.1160161 0.2765176 0.02934285 +0.1372908 0.2765176 0.02934285 +0.1606827 0.2765176 0.02934285 +0.1862481 0.2765176 0.02934285 +0.2140411 0.2765176 0.02934285 +0.2441142 0.2765176 0.02934285 +0.2765176 0.2765176 0.02934285 +0.3113005 0.2765176 0.02934285 +0.3485102 0.2765176 0.02934285 +0.388193 0.2765176 0.02934285 +0.4303934 0.2765176 0.02934285 +0.4751555 0.2765176 0.02934285 +0.5225216 0.2765176 0.02934285 +0.5725335 0.2765176 0.02934285 +0.6252316 0.2765176 0.02934285 +0.6806558 0.2765176 0.02934285 +0.7388448 0.2765176 0.02934285 +0.7998369 0.2765176 0.02934285 +0.8636691 0.2765176 0.02934285 +0.9303782 0.2765176 0.02934285 +1 0.2765176 0.02934285 +0 0.3113005 0.02934285 +0.002418731 0.3113005 0.02934285 +0.005155668 0.3113005 0.02934285 +0.009080105 0.3113005 0.02934285 +0.01434988 0.3113005 0.02934285 +0.02107202 0.3113005 0.02934285 +0.02934285 0.3113005 0.02934285 +0.03925039 0.3113005 0.02934285 +0.05087609 0.3113005 0.02934285 +0.06429595 0.3113005 0.02934285 +0.07958143 0.3113005 0.02934285 +0.0968001 0.3113005 0.02934285 +0.1160161 0.3113005 0.02934285 +0.1372908 0.3113005 0.02934285 +0.1606827 0.3113005 0.02934285 +0.1862481 0.3113005 0.02934285 +0.2140411 0.3113005 0.02934285 +0.2441142 0.3113005 0.02934285 +0.2765176 0.3113005 0.02934285 +0.3113005 0.3113005 0.02934285 +0.3485102 0.3113005 0.02934285 +0.388193 0.3113005 0.02934285 +0.4303934 0.3113005 0.02934285 +0.4751555 0.3113005 0.02934285 +0.5225216 0.3113005 0.02934285 +0.5725335 0.3113005 0.02934285 +0.6252316 0.3113005 0.02934285 +0.6806558 0.3113005 0.02934285 +0.7388448 0.3113005 0.02934285 +0.7998369 0.3113005 0.02934285 +0.8636691 0.3113005 0.02934285 +0.9303782 0.3113005 0.02934285 +1 0.3113005 0.02934285 +0 0.3485102 0.02934285 +0.002418731 0.3485102 0.02934285 +0.005155668 0.3485102 0.02934285 +0.009080105 0.3485102 0.02934285 +0.01434988 0.3485102 0.02934285 +0.02107202 0.3485102 0.02934285 +0.02934285 0.3485102 0.02934285 +0.03925039 0.3485102 0.02934285 +0.05087609 0.3485102 0.02934285 +0.06429595 0.3485102 0.02934285 +0.07958143 0.3485102 0.02934285 +0.0968001 0.3485102 0.02934285 +0.1160161 0.3485102 0.02934285 +0.1372908 0.3485102 0.02934285 +0.1606827 0.3485102 0.02934285 +0.1862481 0.3485102 0.02934285 +0.2140411 0.3485102 0.02934285 +0.2441142 0.3485102 0.02934285 +0.2765176 0.3485102 0.02934285 +0.3113005 0.3485102 0.02934285 +0.3485102 0.3485102 0.02934285 +0.388193 0.3485102 0.02934285 +0.4303934 0.3485102 0.02934285 +0.4751555 0.3485102 0.02934285 +0.5225216 0.3485102 0.02934285 +0.5725335 0.3485102 0.02934285 +0.6252316 0.3485102 0.02934285 +0.6806558 0.3485102 0.02934285 +0.7388448 0.3485102 0.02934285 +0.7998369 0.3485102 0.02934285 +0.8636691 0.3485102 0.02934285 +0.9303782 0.3485102 0.02934285 +1 0.3485102 0.02934285 +0 0.388193 0.02934285 +0.002418731 0.388193 0.02934285 +0.005155668 0.388193 0.02934285 +0.009080105 0.388193 0.02934285 +0.01434988 0.388193 0.02934285 +0.02107202 0.388193 0.02934285 +0.02934285 0.388193 0.02934285 +0.03925039 0.388193 0.02934285 +0.05087609 0.388193 0.02934285 +0.06429595 0.388193 0.02934285 +0.07958143 0.388193 0.02934285 +0.0968001 0.388193 0.02934285 +0.1160161 0.388193 0.02934285 +0.1372908 0.388193 0.02934285 +0.1606827 0.388193 0.02934285 +0.1862481 0.388193 0.02934285 +0.2140411 0.388193 0.02934285 +0.2441142 0.388193 0.02934285 +0.2765176 0.388193 0.02934285 +0.3113005 0.388193 0.02934285 +0.3485102 0.388193 0.02934285 +0.388193 0.388193 0.02934285 +0.4303934 0.388193 0.02934285 +0.4751555 0.388193 0.02934285 +0.5225216 0.388193 0.02934285 +0.5725335 0.388193 0.02934285 +0.6252316 0.388193 0.02934285 +0.6806558 0.388193 0.02934285 +0.7388448 0.388193 0.02934285 +0.7998369 0.388193 0.02934285 +0.8636691 0.388193 0.02934285 +0.9303782 0.388193 0.02934285 +1 0.388193 0.02934285 +0 0.4303934 0.02934285 +0.002418731 0.4303934 0.02934285 +0.005155668 0.4303934 0.02934285 +0.009080105 0.4303934 0.02934285 +0.01434988 0.4303934 0.02934285 +0.02107202 0.4303934 0.02934285 +0.02934285 0.4303934 0.02934285 +0.03925039 0.4303934 0.02934285 +0.05087609 0.4303934 0.02934285 +0.06429595 0.4303934 0.02934285 +0.07958143 0.4303934 0.02934285 +0.0968001 0.4303934 0.02934285 +0.1160161 0.4303934 0.02934285 +0.1372908 0.4303934 0.02934285 +0.1606827 0.4303934 0.02934285 +0.1862481 0.4303934 0.02934285 +0.2140411 0.4303934 0.02934285 +0.2441142 0.4303934 0.02934285 +0.2765176 0.4303934 0.02934285 +0.3113005 0.4303934 0.02934285 +0.3485102 0.4303934 0.02934285 +0.388193 0.4303934 0.02934285 +0.4303934 0.4303934 0.02934285 +0.4751555 0.4303934 0.02934285 +0.5225216 0.4303934 0.02934285 +0.5725335 0.4303934 0.02934285 +0.6252316 0.4303934 0.02934285 +0.6806558 0.4303934 0.02934285 +0.7388448 0.4303934 0.02934285 +0.7998369 0.4303934 0.02934285 +0.8636691 0.4303934 0.02934285 +0.9303782 0.4303934 0.02934285 +1 0.4303934 0.02934285 +0 0.4751555 0.02934285 +0.002418731 0.4751555 0.02934285 +0.005155668 0.4751555 0.02934285 +0.009080105 0.4751555 0.02934285 +0.01434988 0.4751555 0.02934285 +0.02107202 0.4751555 0.02934285 +0.02934285 0.4751555 0.02934285 +0.03925039 0.4751555 0.02934285 +0.05087609 0.4751555 0.02934285 +0.06429595 0.4751555 0.02934285 +0.07958143 0.4751555 0.02934285 +0.0968001 0.4751555 0.02934285 +0.1160161 0.4751555 0.02934285 +0.1372908 0.4751555 0.02934285 +0.1606827 0.4751555 0.02934285 +0.1862481 0.4751555 0.02934285 +0.2140411 0.4751555 0.02934285 +0.2441142 0.4751555 0.02934285 +0.2765176 0.4751555 0.02934285 +0.3113005 0.4751555 0.02934285 +0.3485102 0.4751555 0.02934285 +0.388193 0.4751555 0.02934285 +0.4303934 0.4751555 0.02934285 +0.4751555 0.4751555 0.02934285 +0.5225216 0.4751555 0.02934285 +0.5725335 0.4751555 0.02934285 +0.6252316 0.4751555 0.02934285 +0.6806558 0.4751555 0.02934285 +0.7388448 0.4751555 0.02934285 +0.7998369 0.4751555 0.02934285 +0.8636691 0.4751555 0.02934285 +0.9303782 0.4751555 0.02934285 +1 0.4751555 0.02934285 +0 0.5225216 0.02934285 +0.002418731 0.5225216 0.02934285 +0.005155668 0.5225216 0.02934285 +0.009080105 0.5225216 0.02934285 +0.01434988 0.5225216 0.02934285 +0.02107202 0.5225216 0.02934285 +0.02934285 0.5225216 0.02934285 +0.03925039 0.5225216 0.02934285 +0.05087609 0.5225216 0.02934285 +0.06429595 0.5225216 0.02934285 +0.07958143 0.5225216 0.02934285 +0.0968001 0.5225216 0.02934285 +0.1160161 0.5225216 0.02934285 +0.1372908 0.5225216 0.02934285 +0.1606827 0.5225216 0.02934285 +0.1862481 0.5225216 0.02934285 +0.2140411 0.5225216 0.02934285 +0.2441142 0.5225216 0.02934285 +0.2765176 0.5225216 0.02934285 +0.3113005 0.5225216 0.02934285 +0.3485102 0.5225216 0.02934285 +0.388193 0.5225216 0.02934285 +0.4303934 0.5225216 0.02934285 +0.4751555 0.5225216 0.02934285 +0.5225216 0.5225216 0.02934285 +0.5725335 0.5225216 0.02934285 +0.6252316 0.5225216 0.02934285 +0.6806558 0.5225216 0.02934285 +0.7388448 0.5225216 0.02934285 +0.7998369 0.5225216 0.02934285 +0.8636691 0.5225216 0.02934285 +0.9303782 0.5225216 0.02934285 +1 0.5225216 0.02934285 +0 0.5725335 0.02934285 +0.002418731 0.5725335 0.02934285 +0.005155668 0.5725335 0.02934285 +0.009080105 0.5725335 0.02934285 +0.01434988 0.5725335 0.02934285 +0.02107202 0.5725335 0.02934285 +0.02934285 0.5725335 0.02934285 +0.03925039 0.5725335 0.02934285 +0.05087609 0.5725335 0.02934285 +0.06429595 0.5725335 0.02934285 +0.07958143 0.5725335 0.02934285 +0.0968001 0.5725335 0.02934285 +0.1160161 0.5725335 0.02934285 +0.1372908 0.5725335 0.02934285 +0.1606827 0.5725335 0.02934285 +0.1862481 0.5725335 0.02934285 +0.2140411 0.5725335 0.02934285 +0.2441142 0.5725335 0.02934285 +0.2765176 0.5725335 0.02934285 +0.3113005 0.5725335 0.02934285 +0.3485102 0.5725335 0.02934285 +0.388193 0.5725335 0.02934285 +0.4303934 0.5725335 0.02934285 +0.4751555 0.5725335 0.02934285 +0.5225216 0.5725335 0.02934285 +0.5725335 0.5725335 0.02934285 +0.6252316 0.5725335 0.02934285 +0.6806558 0.5725335 0.02934285 +0.7388448 0.5725335 0.02934285 +0.7998369 0.5725335 0.02934285 +0.8636691 0.5725335 0.02934285 +0.9303782 0.5725335 0.02934285 +1 0.5725335 0.02934285 +0 0.6252316 0.02934285 +0.002418731 0.6252316 0.02934285 +0.005155668 0.6252316 0.02934285 +0.009080105 0.6252316 0.02934285 +0.01434988 0.6252316 0.02934285 +0.02107202 0.6252316 0.02934285 +0.02934285 0.6252316 0.02934285 +0.03925039 0.6252316 0.02934285 +0.05087609 0.6252316 0.02934285 +0.06429595 0.6252316 0.02934285 +0.07958143 0.6252316 0.02934285 +0.0968001 0.6252316 0.02934285 +0.1160161 0.6252316 0.02934285 +0.1372908 0.6252316 0.02934285 +0.1606827 0.6252316 0.02934285 +0.1862481 0.6252316 0.02934285 +0.2140411 0.6252316 0.02934285 +0.2441142 0.6252316 0.02934285 +0.2765176 0.6252316 0.02934285 +0.3113005 0.6252316 0.02934285 +0.3485102 0.6252316 0.02934285 +0.388193 0.6252316 0.02934285 +0.4303934 0.6252316 0.02934285 +0.4751555 0.6252316 0.02934285 +0.5225216 0.6252316 0.02934285 +0.5725335 0.6252316 0.02934285 +0.6252316 0.6252316 0.02934285 +0.6806558 0.6252316 0.02934285 +0.7388448 0.6252316 0.02934285 +0.7998369 0.6252316 0.02934285 +0.8636691 0.6252316 0.02934285 +0.9303782 0.6252316 0.02934285 +1 0.6252316 0.02934285 +0 0.6806558 0.02934285 +0.002418731 0.6806558 0.02934285 +0.005155668 0.6806558 0.02934285 +0.009080105 0.6806558 0.02934285 +0.01434988 0.6806558 0.02934285 +0.02107202 0.6806558 0.02934285 +0.02934285 0.6806558 0.02934285 +0.03925039 0.6806558 0.02934285 +0.05087609 0.6806558 0.02934285 +0.06429595 0.6806558 0.02934285 +0.07958143 0.6806558 0.02934285 +0.0968001 0.6806558 0.02934285 +0.1160161 0.6806558 0.02934285 +0.1372908 0.6806558 0.02934285 +0.1606827 0.6806558 0.02934285 +0.1862481 0.6806558 0.02934285 +0.2140411 0.6806558 0.02934285 +0.2441142 0.6806558 0.02934285 +0.2765176 0.6806558 0.02934285 +0.3113005 0.6806558 0.02934285 +0.3485102 0.6806558 0.02934285 +0.388193 0.6806558 0.02934285 +0.4303934 0.6806558 0.02934285 +0.4751555 0.6806558 0.02934285 +0.5225216 0.6806558 0.02934285 +0.5725335 0.6806558 0.02934285 +0.6252316 0.6806558 0.02934285 +0.6806558 0.6806558 0.02934285 +0.7388448 0.6806558 0.02934285 +0.7998369 0.6806558 0.02934285 +0.8636691 0.6806558 0.02934285 +0.9303782 0.6806558 0.02934285 +1 0.6806558 0.02934285 +0 0.7388448 0.02934285 +0.002418731 0.7388448 0.02934285 +0.005155668 0.7388448 0.02934285 +0.009080105 0.7388448 0.02934285 +0.01434988 0.7388448 0.02934285 +0.02107202 0.7388448 0.02934285 +0.02934285 0.7388448 0.02934285 +0.03925039 0.7388448 0.02934285 +0.05087609 0.7388448 0.02934285 +0.06429595 0.7388448 0.02934285 +0.07958143 0.7388448 0.02934285 +0.0968001 0.7388448 0.02934285 +0.1160161 0.7388448 0.02934285 +0.1372908 0.7388448 0.02934285 +0.1606827 0.7388448 0.02934285 +0.1862481 0.7388448 0.02934285 +0.2140411 0.7388448 0.02934285 +0.2441142 0.7388448 0.02934285 +0.2765176 0.7388448 0.02934285 +0.3113005 0.7388448 0.02934285 +0.3485102 0.7388448 0.02934285 +0.388193 0.7388448 0.02934285 +0.4303934 0.7388448 0.02934285 +0.4751555 0.7388448 0.02934285 +0.5225216 0.7388448 0.02934285 +0.5725335 0.7388448 0.02934285 +0.6252316 0.7388448 0.02934285 +0.6806558 0.7388448 0.02934285 +0.7388448 0.7388448 0.02934285 +0.7998369 0.7388448 0.02934285 +0.8636691 0.7388448 0.02934285 +0.9303782 0.7388448 0.02934285 +1 0.7388448 0.02934285 +0 0.7998369 0.02934285 +0.002418731 0.7998369 0.02934285 +0.005155668 0.7998369 0.02934285 +0.009080105 0.7998369 0.02934285 +0.01434988 0.7998369 0.02934285 +0.02107202 0.7998369 0.02934285 +0.02934285 0.7998369 0.02934285 +0.03925039 0.7998369 0.02934285 +0.05087609 0.7998369 0.02934285 +0.06429595 0.7998369 0.02934285 +0.07958143 0.7998369 0.02934285 +0.0968001 0.7998369 0.02934285 +0.1160161 0.7998369 0.02934285 +0.1372908 0.7998369 0.02934285 +0.1606827 0.7998369 0.02934285 +0.1862481 0.7998369 0.02934285 +0.2140411 0.7998369 0.02934285 +0.2441142 0.7998369 0.02934285 +0.2765176 0.7998369 0.02934285 +0.3113005 0.7998369 0.02934285 +0.3485102 0.7998369 0.02934285 +0.388193 0.7998369 0.02934285 +0.4303934 0.7998369 0.02934285 +0.4751555 0.7998369 0.02934285 +0.5225216 0.7998369 0.02934285 +0.5725335 0.7998369 0.02934285 +0.6252316 0.7998369 0.02934285 +0.6806558 0.7998369 0.02934285 +0.7388448 0.7998369 0.02934285 +0.7998369 0.7998369 0.02934285 +0.8636691 0.7998369 0.02934285 +0.9303782 0.7998369 0.02934285 +1 0.7998369 0.02934285 +0 0.8636691 0.02934285 +0.002418731 0.8636691 0.02934285 +0.005155668 0.8636691 0.02934285 +0.009080105 0.8636691 0.02934285 +0.01434988 0.8636691 0.02934285 +0.02107202 0.8636691 0.02934285 +0.02934285 0.8636691 0.02934285 +0.03925039 0.8636691 0.02934285 +0.05087609 0.8636691 0.02934285 +0.06429595 0.8636691 0.02934285 +0.07958143 0.8636691 0.02934285 +0.0968001 0.8636691 0.02934285 +0.1160161 0.8636691 0.02934285 +0.1372908 0.8636691 0.02934285 +0.1606827 0.8636691 0.02934285 +0.1862481 0.8636691 0.02934285 +0.2140411 0.8636691 0.02934285 +0.2441142 0.8636691 0.02934285 +0.2765176 0.8636691 0.02934285 +0.3113005 0.8636691 0.02934285 +0.3485102 0.8636691 0.02934285 +0.388193 0.8636691 0.02934285 +0.4303934 0.8636691 0.02934285 +0.4751555 0.8636691 0.02934285 +0.5225216 0.8636691 0.02934285 +0.5725335 0.8636691 0.02934285 +0.6252316 0.8636691 0.02934285 +0.6806558 0.8636691 0.02934285 +0.7388448 0.8636691 0.02934285 +0.7998369 0.8636691 0.02934285 +0.8636691 0.8636691 0.02934285 +0.9303782 0.8636691 0.02934285 +1 0.8636691 0.02934285 +0 0.9303782 0.02934285 +0.002418731 0.9303782 0.02934285 +0.005155668 0.9303782 0.02934285 +0.009080105 0.9303782 0.02934285 +0.01434988 0.9303782 0.02934285 +0.02107202 0.9303782 0.02934285 +0.02934285 0.9303782 0.02934285 +0.03925039 0.9303782 0.02934285 +0.05087609 0.9303782 0.02934285 +0.06429595 0.9303782 0.02934285 +0.07958143 0.9303782 0.02934285 +0.0968001 0.9303782 0.02934285 +0.1160161 0.9303782 0.02934285 +0.1372908 0.9303782 0.02934285 +0.1606827 0.9303782 0.02934285 +0.1862481 0.9303782 0.02934285 +0.2140411 0.9303782 0.02934285 +0.2441142 0.9303782 0.02934285 +0.2765176 0.9303782 0.02934285 +0.3113005 0.9303782 0.02934285 +0.3485102 0.9303782 0.02934285 +0.388193 0.9303782 0.02934285 +0.4303934 0.9303782 0.02934285 +0.4751555 0.9303782 0.02934285 +0.5225216 0.9303782 0.02934285 +0.5725335 0.9303782 0.02934285 +0.6252316 0.9303782 0.02934285 +0.6806558 0.9303782 0.02934285 +0.7388448 0.9303782 0.02934285 +0.7998369 0.9303782 0.02934285 +0.8636691 0.9303782 0.02934285 +0.9303782 0.9303782 0.02934285 +1 0.9303782 0.02934285 +0 1 0.02934285 +0.002418731 1 0.02934285 +0.005155668 1 0.02934285 +0.009080105 1 0.02934285 +0.01434988 1 0.02934285 +0.02107202 1 0.02934285 +0.02934285 1 0.02934285 +0.03925039 1 0.02934285 +0.05087609 1 0.02934285 +0.06429595 1 0.02934285 +0.07958143 1 0.02934285 +0.0968001 1 0.02934285 +0.1160161 1 0.02934285 +0.1372908 1 0.02934285 +0.1606827 1 0.02934285 +0.1862481 1 0.02934285 +0.2140411 1 0.02934285 +0.2441142 1 0.02934285 +0.2765176 1 0.02934285 +0.3113005 1 0.02934285 +0.3485102 1 0.02934285 +0.388193 1 0.02934285 +0.4303934 1 0.02934285 +0.4751555 1 0.02934285 +0.5225216 1 0.02934285 +0.5725335 1 0.02934285 +0.6252316 1 0.02934285 +0.6806558 1 0.02934285 +0.7388448 1 0.02934285 +0.7998369 1 0.02934285 +0.8636691 1 0.02934285 +0.9303782 1 0.02934285 +1 1 0.02934285 +0 0 0.03925039 +0.002418731 0 0.03925039 +0.005155668 0 0.03925039 +0.009080105 0 0.03925039 +0.01434988 0 0.03925039 +0.02107202 0 0.03925039 +0.02934285 0 0.03925039 +0.03925039 0 0.03925039 +0.05087609 0 0.03925039 +0.06429595 0 0.03925039 +0.07958143 0 0.03925039 +0.0968001 0 0.03925039 +0.1160161 0 0.03925039 +0.1372908 0 0.03925039 +0.1606827 0 0.03925039 +0.1862481 0 0.03925039 +0.2140411 0 0.03925039 +0.2441142 0 0.03925039 +0.2765176 0 0.03925039 +0.3113005 0 0.03925039 +0.3485102 0 0.03925039 +0.388193 0 0.03925039 +0.4303934 0 0.03925039 +0.4751555 0 0.03925039 +0.5225216 0 0.03925039 +0.5725335 0 0.03925039 +0.6252316 0 0.03925039 +0.6806558 0 0.03925039 +0.7388448 0 0.03925039 +0.7998369 0 0.03925039 +0.8636691 0 0.03925039 +0.9303782 0 0.03925039 +1 0 0.03925039 +0 0.002418731 0.03925039 +0.002418731 0.002418731 0.03925039 +0.005155668 0.002418731 0.03925039 +0.009080105 0.002418731 0.03925039 +0.01434988 0.002418731 0.03925039 +0.02107202 0.002418731 0.03925039 +0.02934285 0.002418731 0.03925039 +0.03925039 0.002418731 0.03925039 +0.05087609 0.002418731 0.03925039 +0.06429595 0.002418731 0.03925039 +0.07958143 0.002418731 0.03925039 +0.0968001 0.002418731 0.03925039 +0.1160161 0.002418731 0.03925039 +0.1372908 0.002418731 0.03925039 +0.1606827 0.002418731 0.03925039 +0.1862481 0.002418731 0.03925039 +0.2140411 0.002418731 0.03925039 +0.2441142 0.002418731 0.03925039 +0.2765176 0.002418731 0.03925039 +0.3113005 0.002418731 0.03925039 +0.3485102 0.002418731 0.03925039 +0.388193 0.002418731 0.03925039 +0.4303934 0.002418731 0.03925039 +0.4751555 0.002418731 0.03925039 +0.5225216 0.002418731 0.03925039 +0.5725335 0.002418731 0.03925039 +0.6252316 0.002418731 0.03925039 +0.6806558 0.002418731 0.03925039 +0.7388448 0.002418731 0.03925039 +0.7998369 0.002418731 0.03925039 +0.8636691 0.002418731 0.03925039 +0.9303782 0.002418731 0.03925039 +1 0.002418731 0.03925039 +0 0.005155668 0.03925039 +0.002418731 0.005155668 0.03925039 +0.005155668 0.005155668 0.03925039 +0.009080105 0.005155668 0.03925039 +0.01434988 0.005155668 0.03925039 +0.02107202 0.005155668 0.03925039 +0.02934285 0.005155668 0.03925039 +0.03925039 0.005155668 0.03925039 +0.05087609 0.005155668 0.03925039 +0.06429595 0.005155668 0.03925039 +0.07958143 0.005155668 0.03925039 +0.0968001 0.005155668 0.03925039 +0.1160161 0.005155668 0.03925039 +0.1372908 0.005155668 0.03925039 +0.1606827 0.005155668 0.03925039 +0.1862481 0.005155668 0.03925039 +0.2140411 0.005155668 0.03925039 +0.2441142 0.005155668 0.03925039 +0.2765176 0.005155668 0.03925039 +0.3113005 0.005155668 0.03925039 +0.3485102 0.005155668 0.03925039 +0.388193 0.005155668 0.03925039 +0.4303934 0.005155668 0.03925039 +0.4751555 0.005155668 0.03925039 +0.5225216 0.005155668 0.03925039 +0.5725335 0.005155668 0.03925039 +0.6252316 0.005155668 0.03925039 +0.6806558 0.005155668 0.03925039 +0.7388448 0.005155668 0.03925039 +0.7998369 0.005155668 0.03925039 +0.8636691 0.005155668 0.03925039 +0.9303782 0.005155668 0.03925039 +1 0.005155668 0.03925039 +0 0.009080105 0.03925039 +0.002418731 0.009080105 0.03925039 +0.005155668 0.009080105 0.03925039 +0.009080105 0.009080105 0.03925039 +0.01434988 0.009080105 0.03925039 +0.02107202 0.009080105 0.03925039 +0.02934285 0.009080105 0.03925039 +0.03925039 0.009080105 0.03925039 +0.05087609 0.009080105 0.03925039 +0.06429595 0.009080105 0.03925039 +0.07958143 0.009080105 0.03925039 +0.0968001 0.009080105 0.03925039 +0.1160161 0.009080105 0.03925039 +0.1372908 0.009080105 0.03925039 +0.1606827 0.009080105 0.03925039 +0.1862481 0.009080105 0.03925039 +0.2140411 0.009080105 0.03925039 +0.2441142 0.009080105 0.03925039 +0.2765176 0.009080105 0.03925039 +0.3113005 0.009080105 0.03925039 +0.3485102 0.009080105 0.03925039 +0.388193 0.009080105 0.03925039 +0.4303934 0.009080105 0.03925039 +0.4751555 0.009080105 0.03925039 +0.5225216 0.009080105 0.03925039 +0.5725335 0.009080105 0.03925039 +0.6252316 0.009080105 0.03925039 +0.6806558 0.009080105 0.03925039 +0.7388448 0.009080105 0.03925039 +0.7998369 0.009080105 0.03925039 +0.8636691 0.009080105 0.03925039 +0.9303782 0.009080105 0.03925039 +1 0.009080105 0.03925039 +0 0.01434988 0.03925039 +0.002418731 0.01434988 0.03925039 +0.005155668 0.01434988 0.03925039 +0.009080105 0.01434988 0.03925039 +0.01434988 0.01434988 0.03925039 +0.02107202 0.01434988 0.03925039 +0.02934285 0.01434988 0.03925039 +0.03925039 0.01434988 0.03925039 +0.05087609 0.01434988 0.03925039 +0.06429595 0.01434988 0.03925039 +0.07958143 0.01434988 0.03925039 +0.0968001 0.01434988 0.03925039 +0.1160161 0.01434988 0.03925039 +0.1372908 0.01434988 0.03925039 +0.1606827 0.01434988 0.03925039 +0.1862481 0.01434988 0.03925039 +0.2140411 0.01434988 0.03925039 +0.2441142 0.01434988 0.03925039 +0.2765176 0.01434988 0.03925039 +0.3113005 0.01434988 0.03925039 +0.3485102 0.01434988 0.03925039 +0.388193 0.01434988 0.03925039 +0.4303934 0.01434988 0.03925039 +0.4751555 0.01434988 0.03925039 +0.5225216 0.01434988 0.03925039 +0.5725335 0.01434988 0.03925039 +0.6252316 0.01434988 0.03925039 +0.6806558 0.01434988 0.03925039 +0.7388448 0.01434988 0.03925039 +0.7998369 0.01434988 0.03925039 +0.8636691 0.01434988 0.03925039 +0.9303782 0.01434988 0.03925039 +1 0.01434988 0.03925039 +0 0.02107202 0.03925039 +0.002418731 0.02107202 0.03925039 +0.005155668 0.02107202 0.03925039 +0.009080105 0.02107202 0.03925039 +0.01434988 0.02107202 0.03925039 +0.02107202 0.02107202 0.03925039 +0.02934285 0.02107202 0.03925039 +0.03925039 0.02107202 0.03925039 +0.05087609 0.02107202 0.03925039 +0.06429595 0.02107202 0.03925039 +0.07958143 0.02107202 0.03925039 +0.0968001 0.02107202 0.03925039 +0.1160161 0.02107202 0.03925039 +0.1372908 0.02107202 0.03925039 +0.1606827 0.02107202 0.03925039 +0.1862481 0.02107202 0.03925039 +0.2140411 0.02107202 0.03925039 +0.2441142 0.02107202 0.03925039 +0.2765176 0.02107202 0.03925039 +0.3113005 0.02107202 0.03925039 +0.3485102 0.02107202 0.03925039 +0.388193 0.02107202 0.03925039 +0.4303934 0.02107202 0.03925039 +0.4751555 0.02107202 0.03925039 +0.5225216 0.02107202 0.03925039 +0.5725335 0.02107202 0.03925039 +0.6252316 0.02107202 0.03925039 +0.6806558 0.02107202 0.03925039 +0.7388448 0.02107202 0.03925039 +0.7998369 0.02107202 0.03925039 +0.8636691 0.02107202 0.03925039 +0.9303782 0.02107202 0.03925039 +1 0.02107202 0.03925039 +0 0.02934285 0.03925039 +0.002418731 0.02934285 0.03925039 +0.005155668 0.02934285 0.03925039 +0.009080105 0.02934285 0.03925039 +0.01434988 0.02934285 0.03925039 +0.02107202 0.02934285 0.03925039 +0.02934285 0.02934285 0.03925039 +0.03925039 0.02934285 0.03925039 +0.05087609 0.02934285 0.03925039 +0.06429595 0.02934285 0.03925039 +0.07958143 0.02934285 0.03925039 +0.0968001 0.02934285 0.03925039 +0.1160161 0.02934285 0.03925039 +0.1372908 0.02934285 0.03925039 +0.1606827 0.02934285 0.03925039 +0.1862481 0.02934285 0.03925039 +0.2140411 0.02934285 0.03925039 +0.2441142 0.02934285 0.03925039 +0.2765176 0.02934285 0.03925039 +0.3113005 0.02934285 0.03925039 +0.3485102 0.02934285 0.03925039 +0.388193 0.02934285 0.03925039 +0.4303934 0.02934285 0.03925039 +0.4751555 0.02934285 0.03925039 +0.5225216 0.02934285 0.03925039 +0.5725335 0.02934285 0.03925039 +0.6252316 0.02934285 0.03925039 +0.6806558 0.02934285 0.03925039 +0.7388448 0.02934285 0.03925039 +0.7998369 0.02934285 0.03925039 +0.8636691 0.02934285 0.03925039 +0.9303782 0.02934285 0.03925039 +1 0.02934285 0.03925039 +0 0.03925039 0.03925039 +0.002418731 0.03925039 0.03925039 +0.005155668 0.03925039 0.03925039 +0.009080105 0.03925039 0.03925039 +0.01434988 0.03925039 0.03925039 +0.02107202 0.03925039 0.03925039 +0.02934285 0.03925039 0.03925039 +0.03925039 0.03925039 0.03925039 +0.05087609 0.03925039 0.03925039 +0.06429595 0.03925039 0.03925039 +0.07958143 0.03925039 0.03925039 +0.0968001 0.03925039 0.03925039 +0.1160161 0.03925039 0.03925039 +0.1372908 0.03925039 0.03925039 +0.1606827 0.03925039 0.03925039 +0.1862481 0.03925039 0.03925039 +0.2140411 0.03925039 0.03925039 +0.2441142 0.03925039 0.03925039 +0.2765176 0.03925039 0.03925039 +0.3113005 0.03925039 0.03925039 +0.3485102 0.03925039 0.03925039 +0.388193 0.03925039 0.03925039 +0.4303934 0.03925039 0.03925039 +0.4751555 0.03925039 0.03925039 +0.5225216 0.03925039 0.03925039 +0.5725335 0.03925039 0.03925039 +0.6252316 0.03925039 0.03925039 +0.6806558 0.03925039 0.03925039 +0.7388448 0.03925039 0.03925039 +0.7998369 0.03925039 0.03925039 +0.8636691 0.03925039 0.03925039 +0.9303782 0.03925039 0.03925039 +1 0.03925039 0.03925039 +0 0.05087609 0.03925039 +0.002418731 0.05087609 0.03925039 +0.005155668 0.05087609 0.03925039 +0.009080105 0.05087609 0.03925039 +0.01434988 0.05087609 0.03925039 +0.02107202 0.05087609 0.03925039 +0.02934285 0.05087609 0.03925039 +0.03925039 0.05087609 0.03925039 +0.05087609 0.05087609 0.03925039 +0.06429595 0.05087609 0.03925039 +0.07958143 0.05087609 0.03925039 +0.0968001 0.05087609 0.03925039 +0.1160161 0.05087609 0.03925039 +0.1372908 0.05087609 0.03925039 +0.1606827 0.05087609 0.03925039 +0.1862481 0.05087609 0.03925039 +0.2140411 0.05087609 0.03925039 +0.2441142 0.05087609 0.03925039 +0.2765176 0.05087609 0.03925039 +0.3113005 0.05087609 0.03925039 +0.3485102 0.05087609 0.03925039 +0.388193 0.05087609 0.03925039 +0.4303934 0.05087609 0.03925039 +0.4751555 0.05087609 0.03925039 +0.5225216 0.05087609 0.03925039 +0.5725335 0.05087609 0.03925039 +0.6252316 0.05087609 0.03925039 +0.6806558 0.05087609 0.03925039 +0.7388448 0.05087609 0.03925039 +0.7998369 0.05087609 0.03925039 +0.8636691 0.05087609 0.03925039 +0.9303782 0.05087609 0.03925039 +1 0.05087609 0.03925039 +0 0.06429595 0.03925039 +0.002418731 0.06429595 0.03925039 +0.005155668 0.06429595 0.03925039 +0.009080105 0.06429595 0.03925039 +0.01434988 0.06429595 0.03925039 +0.02107202 0.06429595 0.03925039 +0.02934285 0.06429595 0.03925039 +0.03925039 0.06429595 0.03925039 +0.05087609 0.06429595 0.03925039 +0.06429595 0.06429595 0.03925039 +0.07958143 0.06429595 0.03925039 +0.0968001 0.06429595 0.03925039 +0.1160161 0.06429595 0.03925039 +0.1372908 0.06429595 0.03925039 +0.1606827 0.06429595 0.03925039 +0.1862481 0.06429595 0.03925039 +0.2140411 0.06429595 0.03925039 +0.2441142 0.06429595 0.03925039 +0.2765176 0.06429595 0.03925039 +0.3113005 0.06429595 0.03925039 +0.3485102 0.06429595 0.03925039 +0.388193 0.06429595 0.03925039 +0.4303934 0.06429595 0.03925039 +0.4751555 0.06429595 0.03925039 +0.5225216 0.06429595 0.03925039 +0.5725335 0.06429595 0.03925039 +0.6252316 0.06429595 0.03925039 +0.6806558 0.06429595 0.03925039 +0.7388448 0.06429595 0.03925039 +0.7998369 0.06429595 0.03925039 +0.8636691 0.06429595 0.03925039 +0.9303782 0.06429595 0.03925039 +1 0.06429595 0.03925039 +0 0.07958143 0.03925039 +0.002418731 0.07958143 0.03925039 +0.005155668 0.07958143 0.03925039 +0.009080105 0.07958143 0.03925039 +0.01434988 0.07958143 0.03925039 +0.02107202 0.07958143 0.03925039 +0.02934285 0.07958143 0.03925039 +0.03925039 0.07958143 0.03925039 +0.05087609 0.07958143 0.03925039 +0.06429595 0.07958143 0.03925039 +0.07958143 0.07958143 0.03925039 +0.0968001 0.07958143 0.03925039 +0.1160161 0.07958143 0.03925039 +0.1372908 0.07958143 0.03925039 +0.1606827 0.07958143 0.03925039 +0.1862481 0.07958143 0.03925039 +0.2140411 0.07958143 0.03925039 +0.2441142 0.07958143 0.03925039 +0.2765176 0.07958143 0.03925039 +0.3113005 0.07958143 0.03925039 +0.3485102 0.07958143 0.03925039 +0.388193 0.07958143 0.03925039 +0.4303934 0.07958143 0.03925039 +0.4751555 0.07958143 0.03925039 +0.5225216 0.07958143 0.03925039 +0.5725335 0.07958143 0.03925039 +0.6252316 0.07958143 0.03925039 +0.6806558 0.07958143 0.03925039 +0.7388448 0.07958143 0.03925039 +0.7998369 0.07958143 0.03925039 +0.8636691 0.07958143 0.03925039 +0.9303782 0.07958143 0.03925039 +1 0.07958143 0.03925039 +0 0.0968001 0.03925039 +0.002418731 0.0968001 0.03925039 +0.005155668 0.0968001 0.03925039 +0.009080105 0.0968001 0.03925039 +0.01434988 0.0968001 0.03925039 +0.02107202 0.0968001 0.03925039 +0.02934285 0.0968001 0.03925039 +0.03925039 0.0968001 0.03925039 +0.05087609 0.0968001 0.03925039 +0.06429595 0.0968001 0.03925039 +0.07958143 0.0968001 0.03925039 +0.0968001 0.0968001 0.03925039 +0.1160161 0.0968001 0.03925039 +0.1372908 0.0968001 0.03925039 +0.1606827 0.0968001 0.03925039 +0.1862481 0.0968001 0.03925039 +0.2140411 0.0968001 0.03925039 +0.2441142 0.0968001 0.03925039 +0.2765176 0.0968001 0.03925039 +0.3113005 0.0968001 0.03925039 +0.3485102 0.0968001 0.03925039 +0.388193 0.0968001 0.03925039 +0.4303934 0.0968001 0.03925039 +0.4751555 0.0968001 0.03925039 +0.5225216 0.0968001 0.03925039 +0.5725335 0.0968001 0.03925039 +0.6252316 0.0968001 0.03925039 +0.6806558 0.0968001 0.03925039 +0.7388448 0.0968001 0.03925039 +0.7998369 0.0968001 0.03925039 +0.8636691 0.0968001 0.03925039 +0.9303782 0.0968001 0.03925039 +1 0.0968001 0.03925039 +0 0.1160161 0.03925039 +0.002418731 0.1160161 0.03925039 +0.005155668 0.1160161 0.03925039 +0.009080105 0.1160161 0.03925039 +0.01434988 0.1160161 0.03925039 +0.02107202 0.1160161 0.03925039 +0.02934285 0.1160161 0.03925039 +0.03925039 0.1160161 0.03925039 +0.05087609 0.1160161 0.03925039 +0.06429595 0.1160161 0.03925039 +0.07958143 0.1160161 0.03925039 +0.0968001 0.1160161 0.03925039 +0.1160161 0.1160161 0.03925039 +0.1372908 0.1160161 0.03925039 +0.1606827 0.1160161 0.03925039 +0.1862481 0.1160161 0.03925039 +0.2140411 0.1160161 0.03925039 +0.2441142 0.1160161 0.03925039 +0.2765176 0.1160161 0.03925039 +0.3113005 0.1160161 0.03925039 +0.3485102 0.1160161 0.03925039 +0.388193 0.1160161 0.03925039 +0.4303934 0.1160161 0.03925039 +0.4751555 0.1160161 0.03925039 +0.5225216 0.1160161 0.03925039 +0.5725335 0.1160161 0.03925039 +0.6252316 0.1160161 0.03925039 +0.6806558 0.1160161 0.03925039 +0.7388448 0.1160161 0.03925039 +0.7998369 0.1160161 0.03925039 +0.8636691 0.1160161 0.03925039 +0.9303782 0.1160161 0.03925039 +1 0.1160161 0.03925039 +0 0.1372908 0.03925039 +0.002418731 0.1372908 0.03925039 +0.005155668 0.1372908 0.03925039 +0.009080105 0.1372908 0.03925039 +0.01434988 0.1372908 0.03925039 +0.02107202 0.1372908 0.03925039 +0.02934285 0.1372908 0.03925039 +0.03925039 0.1372908 0.03925039 +0.05087609 0.1372908 0.03925039 +0.06429595 0.1372908 0.03925039 +0.07958143 0.1372908 0.03925039 +0.0968001 0.1372908 0.03925039 +0.1160161 0.1372908 0.03925039 +0.1372908 0.1372908 0.03925039 +0.1606827 0.1372908 0.03925039 +0.1862481 0.1372908 0.03925039 +0.2140411 0.1372908 0.03925039 +0.2441142 0.1372908 0.03925039 +0.2765176 0.1372908 0.03925039 +0.3113005 0.1372908 0.03925039 +0.3485102 0.1372908 0.03925039 +0.388193 0.1372908 0.03925039 +0.4303934 0.1372908 0.03925039 +0.4751555 0.1372908 0.03925039 +0.5225216 0.1372908 0.03925039 +0.5725335 0.1372908 0.03925039 +0.6252316 0.1372908 0.03925039 +0.6806558 0.1372908 0.03925039 +0.7388448 0.1372908 0.03925039 +0.7998369 0.1372908 0.03925039 +0.8636691 0.1372908 0.03925039 +0.9303782 0.1372908 0.03925039 +1 0.1372908 0.03925039 +0 0.1606827 0.03925039 +0.002418731 0.1606827 0.03925039 +0.005155668 0.1606827 0.03925039 +0.009080105 0.1606827 0.03925039 +0.01434988 0.1606827 0.03925039 +0.02107202 0.1606827 0.03925039 +0.02934285 0.1606827 0.03925039 +0.03925039 0.1606827 0.03925039 +0.05087609 0.1606827 0.03925039 +0.06429595 0.1606827 0.03925039 +0.07958143 0.1606827 0.03925039 +0.0968001 0.1606827 0.03925039 +0.1160161 0.1606827 0.03925039 +0.1372908 0.1606827 0.03925039 +0.1606827 0.1606827 0.03925039 +0.1862481 0.1606827 0.03925039 +0.2140411 0.1606827 0.03925039 +0.2441142 0.1606827 0.03925039 +0.2765176 0.1606827 0.03925039 +0.3113005 0.1606827 0.03925039 +0.3485102 0.1606827 0.03925039 +0.388193 0.1606827 0.03925039 +0.4303934 0.1606827 0.03925039 +0.4751555 0.1606827 0.03925039 +0.5225216 0.1606827 0.03925039 +0.5725335 0.1606827 0.03925039 +0.6252316 0.1606827 0.03925039 +0.6806558 0.1606827 0.03925039 +0.7388448 0.1606827 0.03925039 +0.7998369 0.1606827 0.03925039 +0.8636691 0.1606827 0.03925039 +0.9303782 0.1606827 0.03925039 +1 0.1606827 0.03925039 +0 0.1862481 0.03925039 +0.002418731 0.1862481 0.03925039 +0.005155668 0.1862481 0.03925039 +0.009080105 0.1862481 0.03925039 +0.01434988 0.1862481 0.03925039 +0.02107202 0.1862481 0.03925039 +0.02934285 0.1862481 0.03925039 +0.03925039 0.1862481 0.03925039 +0.05087609 0.1862481 0.03925039 +0.06429595 0.1862481 0.03925039 +0.07958143 0.1862481 0.03925039 +0.0968001 0.1862481 0.03925039 +0.1160161 0.1862481 0.03925039 +0.1372908 0.1862481 0.03925039 +0.1606827 0.1862481 0.03925039 +0.1862481 0.1862481 0.03925039 +0.2140411 0.1862481 0.03925039 +0.2441142 0.1862481 0.03925039 +0.2765176 0.1862481 0.03925039 +0.3113005 0.1862481 0.03925039 +0.3485102 0.1862481 0.03925039 +0.388193 0.1862481 0.03925039 +0.4303934 0.1862481 0.03925039 +0.4751555 0.1862481 0.03925039 +0.5225216 0.1862481 0.03925039 +0.5725335 0.1862481 0.03925039 +0.6252316 0.1862481 0.03925039 +0.6806558 0.1862481 0.03925039 +0.7388448 0.1862481 0.03925039 +0.7998369 0.1862481 0.03925039 +0.8636691 0.1862481 0.03925039 +0.9303782 0.1862481 0.03925039 +1 0.1862481 0.03925039 +0 0.2140411 0.03925039 +0.002418731 0.2140411 0.03925039 +0.005155668 0.2140411 0.03925039 +0.009080105 0.2140411 0.03925039 +0.01434988 0.2140411 0.03925039 +0.02107202 0.2140411 0.03925039 +0.02934285 0.2140411 0.03925039 +0.03925039 0.2140411 0.03925039 +0.05087609 0.2140411 0.03925039 +0.06429595 0.2140411 0.03925039 +0.07958143 0.2140411 0.03925039 +0.0968001 0.2140411 0.03925039 +0.1160161 0.2140411 0.03925039 +0.1372908 0.2140411 0.03925039 +0.1606827 0.2140411 0.03925039 +0.1862481 0.2140411 0.03925039 +0.2140411 0.2140411 0.03925039 +0.2441142 0.2140411 0.03925039 +0.2765176 0.2140411 0.03925039 +0.3113005 0.2140411 0.03925039 +0.3485102 0.2140411 0.03925039 +0.388193 0.2140411 0.03925039 +0.4303934 0.2140411 0.03925039 +0.4751555 0.2140411 0.03925039 +0.5225216 0.2140411 0.03925039 +0.5725335 0.2140411 0.03925039 +0.6252316 0.2140411 0.03925039 +0.6806558 0.2140411 0.03925039 +0.7388448 0.2140411 0.03925039 +0.7998369 0.2140411 0.03925039 +0.8636691 0.2140411 0.03925039 +0.9303782 0.2140411 0.03925039 +1 0.2140411 0.03925039 +0 0.2441142 0.03925039 +0.002418731 0.2441142 0.03925039 +0.005155668 0.2441142 0.03925039 +0.009080105 0.2441142 0.03925039 +0.01434988 0.2441142 0.03925039 +0.02107202 0.2441142 0.03925039 +0.02934285 0.2441142 0.03925039 +0.03925039 0.2441142 0.03925039 +0.05087609 0.2441142 0.03925039 +0.06429595 0.2441142 0.03925039 +0.07958143 0.2441142 0.03925039 +0.0968001 0.2441142 0.03925039 +0.1160161 0.2441142 0.03925039 +0.1372908 0.2441142 0.03925039 +0.1606827 0.2441142 0.03925039 +0.1862481 0.2441142 0.03925039 +0.2140411 0.2441142 0.03925039 +0.2441142 0.2441142 0.03925039 +0.2765176 0.2441142 0.03925039 +0.3113005 0.2441142 0.03925039 +0.3485102 0.2441142 0.03925039 +0.388193 0.2441142 0.03925039 +0.4303934 0.2441142 0.03925039 +0.4751555 0.2441142 0.03925039 +0.5225216 0.2441142 0.03925039 +0.5725335 0.2441142 0.03925039 +0.6252316 0.2441142 0.03925039 +0.6806558 0.2441142 0.03925039 +0.7388448 0.2441142 0.03925039 +0.7998369 0.2441142 0.03925039 +0.8636691 0.2441142 0.03925039 +0.9303782 0.2441142 0.03925039 +1 0.2441142 0.03925039 +0 0.2765176 0.03925039 +0.002418731 0.2765176 0.03925039 +0.005155668 0.2765176 0.03925039 +0.009080105 0.2765176 0.03925039 +0.01434988 0.2765176 0.03925039 +0.02107202 0.2765176 0.03925039 +0.02934285 0.2765176 0.03925039 +0.03925039 0.2765176 0.03925039 +0.05087609 0.2765176 0.03925039 +0.06429595 0.2765176 0.03925039 +0.07958143 0.2765176 0.03925039 +0.0968001 0.2765176 0.03925039 +0.1160161 0.2765176 0.03925039 +0.1372908 0.2765176 0.03925039 +0.1606827 0.2765176 0.03925039 +0.1862481 0.2765176 0.03925039 +0.2140411 0.2765176 0.03925039 +0.2441142 0.2765176 0.03925039 +0.2765176 0.2765176 0.03925039 +0.3113005 0.2765176 0.03925039 +0.3485102 0.2765176 0.03925039 +0.388193 0.2765176 0.03925039 +0.4303934 0.2765176 0.03925039 +0.4751555 0.2765176 0.03925039 +0.5225216 0.2765176 0.03925039 +0.5725335 0.2765176 0.03925039 +0.6252316 0.2765176 0.03925039 +0.6806558 0.2765176 0.03925039 +0.7388448 0.2765176 0.03925039 +0.7998369 0.2765176 0.03925039 +0.8636691 0.2765176 0.03925039 +0.9303782 0.2765176 0.03925039 +1 0.2765176 0.03925039 +0 0.3113005 0.03925039 +0.002418731 0.3113005 0.03925039 +0.005155668 0.3113005 0.03925039 +0.009080105 0.3113005 0.03925039 +0.01434988 0.3113005 0.03925039 +0.02107202 0.3113005 0.03925039 +0.02934285 0.3113005 0.03925039 +0.03925039 0.3113005 0.03925039 +0.05087609 0.3113005 0.03925039 +0.06429595 0.3113005 0.03925039 +0.07958143 0.3113005 0.03925039 +0.0968001 0.3113005 0.03925039 +0.1160161 0.3113005 0.03925039 +0.1372908 0.3113005 0.03925039 +0.1606827 0.3113005 0.03925039 +0.1862481 0.3113005 0.03925039 +0.2140411 0.3113005 0.03925039 +0.2441142 0.3113005 0.03925039 +0.2765176 0.3113005 0.03925039 +0.3113005 0.3113005 0.03925039 +0.3485102 0.3113005 0.03925039 +0.388193 0.3113005 0.03925039 +0.4303934 0.3113005 0.03925039 +0.4751555 0.3113005 0.03925039 +0.5225216 0.3113005 0.03925039 +0.5725335 0.3113005 0.03925039 +0.6252316 0.3113005 0.03925039 +0.6806558 0.3113005 0.03925039 +0.7388448 0.3113005 0.03925039 +0.7998369 0.3113005 0.03925039 +0.8636691 0.3113005 0.03925039 +0.9303782 0.3113005 0.03925039 +1 0.3113005 0.03925039 +0 0.3485102 0.03925039 +0.002418731 0.3485102 0.03925039 +0.005155668 0.3485102 0.03925039 +0.009080105 0.3485102 0.03925039 +0.01434988 0.3485102 0.03925039 +0.02107202 0.3485102 0.03925039 +0.02934285 0.3485102 0.03925039 +0.03925039 0.3485102 0.03925039 +0.05087609 0.3485102 0.03925039 +0.06429595 0.3485102 0.03925039 +0.07958143 0.3485102 0.03925039 +0.0968001 0.3485102 0.03925039 +0.1160161 0.3485102 0.03925039 +0.1372908 0.3485102 0.03925039 +0.1606827 0.3485102 0.03925039 +0.1862481 0.3485102 0.03925039 +0.2140411 0.3485102 0.03925039 +0.2441142 0.3485102 0.03925039 +0.2765176 0.3485102 0.03925039 +0.3113005 0.3485102 0.03925039 +0.3485102 0.3485102 0.03925039 +0.388193 0.3485102 0.03925039 +0.4303934 0.3485102 0.03925039 +0.4751555 0.3485102 0.03925039 +0.5225216 0.3485102 0.03925039 +0.5725335 0.3485102 0.03925039 +0.6252316 0.3485102 0.03925039 +0.6806558 0.3485102 0.03925039 +0.7388448 0.3485102 0.03925039 +0.7998369 0.3485102 0.03925039 +0.8636691 0.3485102 0.03925039 +0.9303782 0.3485102 0.03925039 +1 0.3485102 0.03925039 +0 0.388193 0.03925039 +0.002418731 0.388193 0.03925039 +0.005155668 0.388193 0.03925039 +0.009080105 0.388193 0.03925039 +0.01434988 0.388193 0.03925039 +0.02107202 0.388193 0.03925039 +0.02934285 0.388193 0.03925039 +0.03925039 0.388193 0.03925039 +0.05087609 0.388193 0.03925039 +0.06429595 0.388193 0.03925039 +0.07958143 0.388193 0.03925039 +0.0968001 0.388193 0.03925039 +0.1160161 0.388193 0.03925039 +0.1372908 0.388193 0.03925039 +0.1606827 0.388193 0.03925039 +0.1862481 0.388193 0.03925039 +0.2140411 0.388193 0.03925039 +0.2441142 0.388193 0.03925039 +0.2765176 0.388193 0.03925039 +0.3113005 0.388193 0.03925039 +0.3485102 0.388193 0.03925039 +0.388193 0.388193 0.03925039 +0.4303934 0.388193 0.03925039 +0.4751555 0.388193 0.03925039 +0.5225216 0.388193 0.03925039 +0.5725335 0.388193 0.03925039 +0.6252316 0.388193 0.03925039 +0.6806558 0.388193 0.03925039 +0.7388448 0.388193 0.03925039 +0.7998369 0.388193 0.03925039 +0.8636691 0.388193 0.03925039 +0.9303782 0.388193 0.03925039 +1 0.388193 0.03925039 +0 0.4303934 0.03925039 +0.002418731 0.4303934 0.03925039 +0.005155668 0.4303934 0.03925039 +0.009080105 0.4303934 0.03925039 +0.01434988 0.4303934 0.03925039 +0.02107202 0.4303934 0.03925039 +0.02934285 0.4303934 0.03925039 +0.03925039 0.4303934 0.03925039 +0.05087609 0.4303934 0.03925039 +0.06429595 0.4303934 0.03925039 +0.07958143 0.4303934 0.03925039 +0.0968001 0.4303934 0.03925039 +0.1160161 0.4303934 0.03925039 +0.1372908 0.4303934 0.03925039 +0.1606827 0.4303934 0.03925039 +0.1862481 0.4303934 0.03925039 +0.2140411 0.4303934 0.03925039 +0.2441142 0.4303934 0.03925039 +0.2765176 0.4303934 0.03925039 +0.3113005 0.4303934 0.03925039 +0.3485102 0.4303934 0.03925039 +0.388193 0.4303934 0.03925039 +0.4303934 0.4303934 0.03925039 +0.4751555 0.4303934 0.03925039 +0.5225216 0.4303934 0.03925039 +0.5725335 0.4303934 0.03925039 +0.6252316 0.4303934 0.03925039 +0.6806558 0.4303934 0.03925039 +0.7388448 0.4303934 0.03925039 +0.7998369 0.4303934 0.03925039 +0.8636691 0.4303934 0.03925039 +0.9303782 0.4303934 0.03925039 +1 0.4303934 0.03925039 +0 0.4751555 0.03925039 +0.002418731 0.4751555 0.03925039 +0.005155668 0.4751555 0.03925039 +0.009080105 0.4751555 0.03925039 +0.01434988 0.4751555 0.03925039 +0.02107202 0.4751555 0.03925039 +0.02934285 0.4751555 0.03925039 +0.03925039 0.4751555 0.03925039 +0.05087609 0.4751555 0.03925039 +0.06429595 0.4751555 0.03925039 +0.07958143 0.4751555 0.03925039 +0.0968001 0.4751555 0.03925039 +0.1160161 0.4751555 0.03925039 +0.1372908 0.4751555 0.03925039 +0.1606827 0.4751555 0.03925039 +0.1862481 0.4751555 0.03925039 +0.2140411 0.4751555 0.03925039 +0.2441142 0.4751555 0.03925039 +0.2765176 0.4751555 0.03925039 +0.3113005 0.4751555 0.03925039 +0.3485102 0.4751555 0.03925039 +0.388193 0.4751555 0.03925039 +0.4303934 0.4751555 0.03925039 +0.4751555 0.4751555 0.03925039 +0.5225216 0.4751555 0.03925039 +0.5725335 0.4751555 0.03925039 +0.6252316 0.4751555 0.03925039 +0.6806558 0.4751555 0.03925039 +0.7388448 0.4751555 0.03925039 +0.7998369 0.4751555 0.03925039 +0.8636691 0.4751555 0.03925039 +0.9303782 0.4751555 0.03925039 +1 0.4751555 0.03925039 +0 0.5225216 0.03925039 +0.002418731 0.5225216 0.03925039 +0.005155668 0.5225216 0.03925039 +0.009080105 0.5225216 0.03925039 +0.01434988 0.5225216 0.03925039 +0.02107202 0.5225216 0.03925039 +0.02934285 0.5225216 0.03925039 +0.03925039 0.5225216 0.03925039 +0.05087609 0.5225216 0.03925039 +0.06429595 0.5225216 0.03925039 +0.07958143 0.5225216 0.03925039 +0.0968001 0.5225216 0.03925039 +0.1160161 0.5225216 0.03925039 +0.1372908 0.5225216 0.03925039 +0.1606827 0.5225216 0.03925039 +0.1862481 0.5225216 0.03925039 +0.2140411 0.5225216 0.03925039 +0.2441142 0.5225216 0.03925039 +0.2765176 0.5225216 0.03925039 +0.3113005 0.5225216 0.03925039 +0.3485102 0.5225216 0.03925039 +0.388193 0.5225216 0.03925039 +0.4303934 0.5225216 0.03925039 +0.4751555 0.5225216 0.03925039 +0.5225216 0.5225216 0.03925039 +0.5725335 0.5225216 0.03925039 +0.6252316 0.5225216 0.03925039 +0.6806558 0.5225216 0.03925039 +0.7388448 0.5225216 0.03925039 +0.7998369 0.5225216 0.03925039 +0.8636691 0.5225216 0.03925039 +0.9303782 0.5225216 0.03925039 +1 0.5225216 0.03925039 +0 0.5725335 0.03925039 +0.002418731 0.5725335 0.03925039 +0.005155668 0.5725335 0.03925039 +0.009080105 0.5725335 0.03925039 +0.01434988 0.5725335 0.03925039 +0.02107202 0.5725335 0.03925039 +0.02934285 0.5725335 0.03925039 +0.03925039 0.5725335 0.03925039 +0.05087609 0.5725335 0.03925039 +0.06429595 0.5725335 0.03925039 +0.07958143 0.5725335 0.03925039 +0.0968001 0.5725335 0.03925039 +0.1160161 0.5725335 0.03925039 +0.1372908 0.5725335 0.03925039 +0.1606827 0.5725335 0.03925039 +0.1862481 0.5725335 0.03925039 +0.2140411 0.5725335 0.03925039 +0.2441142 0.5725335 0.03925039 +0.2765176 0.5725335 0.03925039 +0.3113005 0.5725335 0.03925039 +0.3485102 0.5725335 0.03925039 +0.388193 0.5725335 0.03925039 +0.4303934 0.5725335 0.03925039 +0.4751555 0.5725335 0.03925039 +0.5225216 0.5725335 0.03925039 +0.5725335 0.5725335 0.03925039 +0.6252316 0.5725335 0.03925039 +0.6806558 0.5725335 0.03925039 +0.7388448 0.5725335 0.03925039 +0.7998369 0.5725335 0.03925039 +0.8636691 0.5725335 0.03925039 +0.9303782 0.5725335 0.03925039 +1 0.5725335 0.03925039 +0 0.6252316 0.03925039 +0.002418731 0.6252316 0.03925039 +0.005155668 0.6252316 0.03925039 +0.009080105 0.6252316 0.03925039 +0.01434988 0.6252316 0.03925039 +0.02107202 0.6252316 0.03925039 +0.02934285 0.6252316 0.03925039 +0.03925039 0.6252316 0.03925039 +0.05087609 0.6252316 0.03925039 +0.06429595 0.6252316 0.03925039 +0.07958143 0.6252316 0.03925039 +0.0968001 0.6252316 0.03925039 +0.1160161 0.6252316 0.03925039 +0.1372908 0.6252316 0.03925039 +0.1606827 0.6252316 0.03925039 +0.1862481 0.6252316 0.03925039 +0.2140411 0.6252316 0.03925039 +0.2441142 0.6252316 0.03925039 +0.2765176 0.6252316 0.03925039 +0.3113005 0.6252316 0.03925039 +0.3485102 0.6252316 0.03925039 +0.388193 0.6252316 0.03925039 +0.4303934 0.6252316 0.03925039 +0.4751555 0.6252316 0.03925039 +0.5225216 0.6252316 0.03925039 +0.5725335 0.6252316 0.03925039 +0.6252316 0.6252316 0.03925039 +0.6806558 0.6252316 0.03925039 +0.7388448 0.6252316 0.03925039 +0.7998369 0.6252316 0.03925039 +0.8636691 0.6252316 0.03925039 +0.9303782 0.6252316 0.03925039 +1 0.6252316 0.03925039 +0 0.6806558 0.03925039 +0.002418731 0.6806558 0.03925039 +0.005155668 0.6806558 0.03925039 +0.009080105 0.6806558 0.03925039 +0.01434988 0.6806558 0.03925039 +0.02107202 0.6806558 0.03925039 +0.02934285 0.6806558 0.03925039 +0.03925039 0.6806558 0.03925039 +0.05087609 0.6806558 0.03925039 +0.06429595 0.6806558 0.03925039 +0.07958143 0.6806558 0.03925039 +0.0968001 0.6806558 0.03925039 +0.1160161 0.6806558 0.03925039 +0.1372908 0.6806558 0.03925039 +0.1606827 0.6806558 0.03925039 +0.1862481 0.6806558 0.03925039 +0.2140411 0.6806558 0.03925039 +0.2441142 0.6806558 0.03925039 +0.2765176 0.6806558 0.03925039 +0.3113005 0.6806558 0.03925039 +0.3485102 0.6806558 0.03925039 +0.388193 0.6806558 0.03925039 +0.4303934 0.6806558 0.03925039 +0.4751555 0.6806558 0.03925039 +0.5225216 0.6806558 0.03925039 +0.5725335 0.6806558 0.03925039 +0.6252316 0.6806558 0.03925039 +0.6806558 0.6806558 0.03925039 +0.7388448 0.6806558 0.03925039 +0.7998369 0.6806558 0.03925039 +0.8636691 0.6806558 0.03925039 +0.9303782 0.6806558 0.03925039 +1 0.6806558 0.03925039 +0 0.7388448 0.03925039 +0.002418731 0.7388448 0.03925039 +0.005155668 0.7388448 0.03925039 +0.009080105 0.7388448 0.03925039 +0.01434988 0.7388448 0.03925039 +0.02107202 0.7388448 0.03925039 +0.02934285 0.7388448 0.03925039 +0.03925039 0.7388448 0.03925039 +0.05087609 0.7388448 0.03925039 +0.06429595 0.7388448 0.03925039 +0.07958143 0.7388448 0.03925039 +0.0968001 0.7388448 0.03925039 +0.1160161 0.7388448 0.03925039 +0.1372908 0.7388448 0.03925039 +0.1606827 0.7388448 0.03925039 +0.1862481 0.7388448 0.03925039 +0.2140411 0.7388448 0.03925039 +0.2441142 0.7388448 0.03925039 +0.2765176 0.7388448 0.03925039 +0.3113005 0.7388448 0.03925039 +0.3485102 0.7388448 0.03925039 +0.388193 0.7388448 0.03925039 +0.4303934 0.7388448 0.03925039 +0.4751555 0.7388448 0.03925039 +0.5225216 0.7388448 0.03925039 +0.5725335 0.7388448 0.03925039 +0.6252316 0.7388448 0.03925039 +0.6806558 0.7388448 0.03925039 +0.7388448 0.7388448 0.03925039 +0.7998369 0.7388448 0.03925039 +0.8636691 0.7388448 0.03925039 +0.9303782 0.7388448 0.03925039 +1 0.7388448 0.03925039 +0 0.7998369 0.03925039 +0.002418731 0.7998369 0.03925039 +0.005155668 0.7998369 0.03925039 +0.009080105 0.7998369 0.03925039 +0.01434988 0.7998369 0.03925039 +0.02107202 0.7998369 0.03925039 +0.02934285 0.7998369 0.03925039 +0.03925039 0.7998369 0.03925039 +0.05087609 0.7998369 0.03925039 +0.06429595 0.7998369 0.03925039 +0.07958143 0.7998369 0.03925039 +0.0968001 0.7998369 0.03925039 +0.1160161 0.7998369 0.03925039 +0.1372908 0.7998369 0.03925039 +0.1606827 0.7998369 0.03925039 +0.1862481 0.7998369 0.03925039 +0.2140411 0.7998369 0.03925039 +0.2441142 0.7998369 0.03925039 +0.2765176 0.7998369 0.03925039 +0.3113005 0.7998369 0.03925039 +0.3485102 0.7998369 0.03925039 +0.388193 0.7998369 0.03925039 +0.4303934 0.7998369 0.03925039 +0.4751555 0.7998369 0.03925039 +0.5225216 0.7998369 0.03925039 +0.5725335 0.7998369 0.03925039 +0.6252316 0.7998369 0.03925039 +0.6806558 0.7998369 0.03925039 +0.7388448 0.7998369 0.03925039 +0.7998369 0.7998369 0.03925039 +0.8636691 0.7998369 0.03925039 +0.9303782 0.7998369 0.03925039 +1 0.7998369 0.03925039 +0 0.8636691 0.03925039 +0.002418731 0.8636691 0.03925039 +0.005155668 0.8636691 0.03925039 +0.009080105 0.8636691 0.03925039 +0.01434988 0.8636691 0.03925039 +0.02107202 0.8636691 0.03925039 +0.02934285 0.8636691 0.03925039 +0.03925039 0.8636691 0.03925039 +0.05087609 0.8636691 0.03925039 +0.06429595 0.8636691 0.03925039 +0.07958143 0.8636691 0.03925039 +0.0968001 0.8636691 0.03925039 +0.1160161 0.8636691 0.03925039 +0.1372908 0.8636691 0.03925039 +0.1606827 0.8636691 0.03925039 +0.1862481 0.8636691 0.03925039 +0.2140411 0.8636691 0.03925039 +0.2441142 0.8636691 0.03925039 +0.2765176 0.8636691 0.03925039 +0.3113005 0.8636691 0.03925039 +0.3485102 0.8636691 0.03925039 +0.388193 0.8636691 0.03925039 +0.4303934 0.8636691 0.03925039 +0.4751555 0.8636691 0.03925039 +0.5225216 0.8636691 0.03925039 +0.5725335 0.8636691 0.03925039 +0.6252316 0.8636691 0.03925039 +0.6806558 0.8636691 0.03925039 +0.7388448 0.8636691 0.03925039 +0.7998369 0.8636691 0.03925039 +0.8636691 0.8636691 0.03925039 +0.9303782 0.8636691 0.03925039 +1 0.8636691 0.03925039 +0 0.9303782 0.03925039 +0.002418731 0.9303782 0.03925039 +0.005155668 0.9303782 0.03925039 +0.009080105 0.9303782 0.03925039 +0.01434988 0.9303782 0.03925039 +0.02107202 0.9303782 0.03925039 +0.02934285 0.9303782 0.03925039 +0.03925039 0.9303782 0.03925039 +0.05087609 0.9303782 0.03925039 +0.06429595 0.9303782 0.03925039 +0.07958143 0.9303782 0.03925039 +0.0968001 0.9303782 0.03925039 +0.1160161 0.9303782 0.03925039 +0.1372908 0.9303782 0.03925039 +0.1606827 0.9303782 0.03925039 +0.1862481 0.9303782 0.03925039 +0.2140411 0.9303782 0.03925039 +0.2441142 0.9303782 0.03925039 +0.2765176 0.9303782 0.03925039 +0.3113005 0.9303782 0.03925039 +0.3485102 0.9303782 0.03925039 +0.388193 0.9303782 0.03925039 +0.4303934 0.9303782 0.03925039 +0.4751555 0.9303782 0.03925039 +0.5225216 0.9303782 0.03925039 +0.5725335 0.9303782 0.03925039 +0.6252316 0.9303782 0.03925039 +0.6806558 0.9303782 0.03925039 +0.7388448 0.9303782 0.03925039 +0.7998369 0.9303782 0.03925039 +0.8636691 0.9303782 0.03925039 +0.9303782 0.9303782 0.03925039 +1 0.9303782 0.03925039 +0 1 0.03925039 +0.002418731 1 0.03925039 +0.005155668 1 0.03925039 +0.009080105 1 0.03925039 +0.01434988 1 0.03925039 +0.02107202 1 0.03925039 +0.02934285 1 0.03925039 +0.03925039 1 0.03925039 +0.05087609 1 0.03925039 +0.06429595 1 0.03925039 +0.07958143 1 0.03925039 +0.0968001 1 0.03925039 +0.1160161 1 0.03925039 +0.1372908 1 0.03925039 +0.1606827 1 0.03925039 +0.1862481 1 0.03925039 +0.2140411 1 0.03925039 +0.2441142 1 0.03925039 +0.2765176 1 0.03925039 +0.3113005 1 0.03925039 +0.3485102 1 0.03925039 +0.388193 1 0.03925039 +0.4303934 1 0.03925039 +0.4751555 1 0.03925039 +0.5225216 1 0.03925039 +0.5725335 1 0.03925039 +0.6252316 1 0.03925039 +0.6806558 1 0.03925039 +0.7388448 1 0.03925039 +0.7998369 1 0.03925039 +0.8636691 1 0.03925039 +0.9303782 1 0.03925039 +1 1 0.03925039 +0 0 0.05087609 +0.002418731 0 0.05087609 +0.005155668 0 0.05087609 +0.009080105 0 0.05087609 +0.01434988 0 0.05087609 +0.02107202 0 0.05087609 +0.02934285 0 0.05087609 +0.03925039 0 0.05087609 +0.05087609 0 0.05087609 +0.06429595 0 0.05087609 +0.07958143 0 0.05087609 +0.0968001 0 0.05087609 +0.1160161 0 0.05087609 +0.1372908 0 0.05087609 +0.1606827 0 0.05087609 +0.1862481 0 0.05087609 +0.2140411 0 0.05087609 +0.2441142 0 0.05087609 +0.2765176 0 0.05087609 +0.3113005 0 0.05087609 +0.3485102 0 0.05087609 +0.388193 0 0.05087609 +0.4303934 0 0.05087609 +0.4751555 0 0.05087609 +0.5225216 0 0.05087609 +0.5725335 0 0.05087609 +0.6252316 0 0.05087609 +0.6806558 0 0.05087609 +0.7388448 0 0.05087609 +0.7998369 0 0.05087609 +0.8636691 0 0.05087609 +0.9303782 0 0.05087609 +1 0 0.05087609 +0 0.002418731 0.05087609 +0.002418731 0.002418731 0.05087609 +0.005155668 0.002418731 0.05087609 +0.009080105 0.002418731 0.05087609 +0.01434988 0.002418731 0.05087609 +0.02107202 0.002418731 0.05087609 +0.02934285 0.002418731 0.05087609 +0.03925039 0.002418731 0.05087609 +0.05087609 0.002418731 0.05087609 +0.06429595 0.002418731 0.05087609 +0.07958143 0.002418731 0.05087609 +0.0968001 0.002418731 0.05087609 +0.1160161 0.002418731 0.05087609 +0.1372908 0.002418731 0.05087609 +0.1606827 0.002418731 0.05087609 +0.1862481 0.002418731 0.05087609 +0.2140411 0.002418731 0.05087609 +0.2441142 0.002418731 0.05087609 +0.2765176 0.002418731 0.05087609 +0.3113005 0.002418731 0.05087609 +0.3485102 0.002418731 0.05087609 +0.388193 0.002418731 0.05087609 +0.4303934 0.002418731 0.05087609 +0.4751555 0.002418731 0.05087609 +0.5225216 0.002418731 0.05087609 +0.5725335 0.002418731 0.05087609 +0.6252316 0.002418731 0.05087609 +0.6806558 0.002418731 0.05087609 +0.7388448 0.002418731 0.05087609 +0.7998369 0.002418731 0.05087609 +0.8636691 0.002418731 0.05087609 +0.9303782 0.002418731 0.05087609 +1 0.002418731 0.05087609 +0 0.005155668 0.05087609 +0.002418731 0.005155668 0.05087609 +0.005155668 0.005155668 0.05087609 +0.009080105 0.005155668 0.05087609 +0.01434988 0.005155668 0.05087609 +0.02107202 0.005155668 0.05087609 +0.02934285 0.005155668 0.05087609 +0.03925039 0.005155668 0.05087609 +0.05087609 0.005155668 0.05087609 +0.06429595 0.005155668 0.05087609 +0.07958143 0.005155668 0.05087609 +0.0968001 0.005155668 0.05087609 +0.1160161 0.005155668 0.05087609 +0.1372908 0.005155668 0.05087609 +0.1606827 0.005155668 0.05087609 +0.1862481 0.005155668 0.05087609 +0.2140411 0.005155668 0.05087609 +0.2441142 0.005155668 0.05087609 +0.2765176 0.005155668 0.05087609 +0.3113005 0.005155668 0.05087609 +0.3485102 0.005155668 0.05087609 +0.388193 0.005155668 0.05087609 +0.4303934 0.005155668 0.05087609 +0.4751555 0.005155668 0.05087609 +0.5225216 0.005155668 0.05087609 +0.5725335 0.005155668 0.05087609 +0.6252316 0.005155668 0.05087609 +0.6806558 0.005155668 0.05087609 +0.7388448 0.005155668 0.05087609 +0.7998369 0.005155668 0.05087609 +0.8636691 0.005155668 0.05087609 +0.9303782 0.005155668 0.05087609 +1 0.005155668 0.05087609 +0 0.009080105 0.05087609 +0.002418731 0.009080105 0.05087609 +0.005155668 0.009080105 0.05087609 +0.009080105 0.009080105 0.05087609 +0.01434988 0.009080105 0.05087609 +0.02107202 0.009080105 0.05087609 +0.02934285 0.009080105 0.05087609 +0.03925039 0.009080105 0.05087609 +0.05087609 0.009080105 0.05087609 +0.06429595 0.009080105 0.05087609 +0.07958143 0.009080105 0.05087609 +0.0968001 0.009080105 0.05087609 +0.1160161 0.009080105 0.05087609 +0.1372908 0.009080105 0.05087609 +0.1606827 0.009080105 0.05087609 +0.1862481 0.009080105 0.05087609 +0.2140411 0.009080105 0.05087609 +0.2441142 0.009080105 0.05087609 +0.2765176 0.009080105 0.05087609 +0.3113005 0.009080105 0.05087609 +0.3485102 0.009080105 0.05087609 +0.388193 0.009080105 0.05087609 +0.4303934 0.009080105 0.05087609 +0.4751555 0.009080105 0.05087609 +0.5225216 0.009080105 0.05087609 +0.5725335 0.009080105 0.05087609 +0.6252316 0.009080105 0.05087609 +0.6806558 0.009080105 0.05087609 +0.7388448 0.009080105 0.05087609 +0.7998369 0.009080105 0.05087609 +0.8636691 0.009080105 0.05087609 +0.9303782 0.009080105 0.05087609 +1 0.009080105 0.05087609 +0 0.01434988 0.05087609 +0.002418731 0.01434988 0.05087609 +0.005155668 0.01434988 0.05087609 +0.009080105 0.01434988 0.05087609 +0.01434988 0.01434988 0.05087609 +0.02107202 0.01434988 0.05087609 +0.02934285 0.01434988 0.05087609 +0.03925039 0.01434988 0.05087609 +0.05087609 0.01434988 0.05087609 +0.06429595 0.01434988 0.05087609 +0.07958143 0.01434988 0.05087609 +0.0968001 0.01434988 0.05087609 +0.1160161 0.01434988 0.05087609 +0.1372908 0.01434988 0.05087609 +0.1606827 0.01434988 0.05087609 +0.1862481 0.01434988 0.05087609 +0.2140411 0.01434988 0.05087609 +0.2441142 0.01434988 0.05087609 +0.2765176 0.01434988 0.05087609 +0.3113005 0.01434988 0.05087609 +0.3485102 0.01434988 0.05087609 +0.388193 0.01434988 0.05087609 +0.4303934 0.01434988 0.05087609 +0.4751555 0.01434988 0.05087609 +0.5225216 0.01434988 0.05087609 +0.5725335 0.01434988 0.05087609 +0.6252316 0.01434988 0.05087609 +0.6806558 0.01434988 0.05087609 +0.7388448 0.01434988 0.05087609 +0.7998369 0.01434988 0.05087609 +0.8636691 0.01434988 0.05087609 +0.9303782 0.01434988 0.05087609 +1 0.01434988 0.05087609 +0 0.02107202 0.05087609 +0.002418731 0.02107202 0.05087609 +0.005155668 0.02107202 0.05087609 +0.009080105 0.02107202 0.05087609 +0.01434988 0.02107202 0.05087609 +0.02107202 0.02107202 0.05087609 +0.02934285 0.02107202 0.05087609 +0.03925039 0.02107202 0.05087609 +0.05087609 0.02107202 0.05087609 +0.06429595 0.02107202 0.05087609 +0.07958143 0.02107202 0.05087609 +0.0968001 0.02107202 0.05087609 +0.1160161 0.02107202 0.05087609 +0.1372908 0.02107202 0.05087609 +0.1606827 0.02107202 0.05087609 +0.1862481 0.02107202 0.05087609 +0.2140411 0.02107202 0.05087609 +0.2441142 0.02107202 0.05087609 +0.2765176 0.02107202 0.05087609 +0.3113005 0.02107202 0.05087609 +0.3485102 0.02107202 0.05087609 +0.388193 0.02107202 0.05087609 +0.4303934 0.02107202 0.05087609 +0.4751555 0.02107202 0.05087609 +0.5225216 0.02107202 0.05087609 +0.5725335 0.02107202 0.05087609 +0.6252316 0.02107202 0.05087609 +0.6806558 0.02107202 0.05087609 +0.7388448 0.02107202 0.05087609 +0.7998369 0.02107202 0.05087609 +0.8636691 0.02107202 0.05087609 +0.9303782 0.02107202 0.05087609 +1 0.02107202 0.05087609 +0 0.02934285 0.05087609 +0.002418731 0.02934285 0.05087609 +0.005155668 0.02934285 0.05087609 +0.009080105 0.02934285 0.05087609 +0.01434988 0.02934285 0.05087609 +0.02107202 0.02934285 0.05087609 +0.02934285 0.02934285 0.05087609 +0.03925039 0.02934285 0.05087609 +0.05087609 0.02934285 0.05087609 +0.06429595 0.02934285 0.05087609 +0.07958143 0.02934285 0.05087609 +0.0968001 0.02934285 0.05087609 +0.1160161 0.02934285 0.05087609 +0.1372908 0.02934285 0.05087609 +0.1606827 0.02934285 0.05087609 +0.1862481 0.02934285 0.05087609 +0.2140411 0.02934285 0.05087609 +0.2441142 0.02934285 0.05087609 +0.2765176 0.02934285 0.05087609 +0.3113005 0.02934285 0.05087609 +0.3485102 0.02934285 0.05087609 +0.388193 0.02934285 0.05087609 +0.4303934 0.02934285 0.05087609 +0.4751555 0.02934285 0.05087609 +0.5225216 0.02934285 0.05087609 +0.5725335 0.02934285 0.05087609 +0.6252316 0.02934285 0.05087609 +0.6806558 0.02934285 0.05087609 +0.7388448 0.02934285 0.05087609 +0.7998369 0.02934285 0.05087609 +0.8636691 0.02934285 0.05087609 +0.9303782 0.02934285 0.05087609 +1 0.02934285 0.05087609 +0 0.03925039 0.05087609 +0.002418731 0.03925039 0.05087609 +0.005155668 0.03925039 0.05087609 +0.009080105 0.03925039 0.05087609 +0.01434988 0.03925039 0.05087609 +0.02107202 0.03925039 0.05087609 +0.02934285 0.03925039 0.05087609 +0.03925039 0.03925039 0.05087609 +0.05087609 0.03925039 0.05087609 +0.06429595 0.03925039 0.05087609 +0.07958143 0.03925039 0.05087609 +0.0968001 0.03925039 0.05087609 +0.1160161 0.03925039 0.05087609 +0.1372908 0.03925039 0.05087609 +0.1606827 0.03925039 0.05087609 +0.1862481 0.03925039 0.05087609 +0.2140411 0.03925039 0.05087609 +0.2441142 0.03925039 0.05087609 +0.2765176 0.03925039 0.05087609 +0.3113005 0.03925039 0.05087609 +0.3485102 0.03925039 0.05087609 +0.388193 0.03925039 0.05087609 +0.4303934 0.03925039 0.05087609 +0.4751555 0.03925039 0.05087609 +0.5225216 0.03925039 0.05087609 +0.5725335 0.03925039 0.05087609 +0.6252316 0.03925039 0.05087609 +0.6806558 0.03925039 0.05087609 +0.7388448 0.03925039 0.05087609 +0.7998369 0.03925039 0.05087609 +0.8636691 0.03925039 0.05087609 +0.9303782 0.03925039 0.05087609 +1 0.03925039 0.05087609 +0 0.05087609 0.05087609 +0.002418731 0.05087609 0.05087609 +0.005155668 0.05087609 0.05087609 +0.009080105 0.05087609 0.05087609 +0.01434988 0.05087609 0.05087609 +0.02107202 0.05087609 0.05087609 +0.02934285 0.05087609 0.05087609 +0.03925039 0.05087609 0.05087609 +0.05087609 0.05087609 0.05087609 +0.06429595 0.05087609 0.05087609 +0.07958143 0.05087609 0.05087609 +0.0968001 0.05087609 0.05087609 +0.1160161 0.05087609 0.05087609 +0.1372908 0.05087609 0.05087609 +0.1606827 0.05087609 0.05087609 +0.1862481 0.05087609 0.05087609 +0.2140411 0.05087609 0.05087609 +0.2441142 0.05087609 0.05087609 +0.2765176 0.05087609 0.05087609 +0.3113005 0.05087609 0.05087609 +0.3485102 0.05087609 0.05087609 +0.388193 0.05087609 0.05087609 +0.4303934 0.05087609 0.05087609 +0.4751555 0.05087609 0.05087609 +0.5225216 0.05087609 0.05087609 +0.5725335 0.05087609 0.05087609 +0.6252316 0.05087609 0.05087609 +0.6806558 0.05087609 0.05087609 +0.7388448 0.05087609 0.05087609 +0.7998369 0.05087609 0.05087609 +0.8636691 0.05087609 0.05087609 +0.9303782 0.05087609 0.05087609 +1 0.05087609 0.05087609 +0 0.06429595 0.05087609 +0.002418731 0.06429595 0.05087609 +0.005155668 0.06429595 0.05087609 +0.009080105 0.06429595 0.05087609 +0.01434988 0.06429595 0.05087609 +0.02107202 0.06429595 0.05087609 +0.02934285 0.06429595 0.05087609 +0.03925039 0.06429595 0.05087609 +0.05087609 0.06429595 0.05087609 +0.06429595 0.06429595 0.05087609 +0.07958143 0.06429595 0.05087609 +0.0968001 0.06429595 0.05087609 +0.1160161 0.06429595 0.05087609 +0.1372908 0.06429595 0.05087609 +0.1606827 0.06429595 0.05087609 +0.1862481 0.06429595 0.05087609 +0.2140411 0.06429595 0.05087609 +0.2441142 0.06429595 0.05087609 +0.2765176 0.06429595 0.05087609 +0.3113005 0.06429595 0.05087609 +0.3485102 0.06429595 0.05087609 +0.388193 0.06429595 0.05087609 +0.4303934 0.06429595 0.05087609 +0.4751555 0.06429595 0.05087609 +0.5225216 0.06429595 0.05087609 +0.5725335 0.06429595 0.05087609 +0.6252316 0.06429595 0.05087609 +0.6806558 0.06429595 0.05087609 +0.7388448 0.06429595 0.05087609 +0.7998369 0.06429595 0.05087609 +0.8636691 0.06429595 0.05087609 +0.9303782 0.06429595 0.05087609 +1 0.06429595 0.05087609 +0 0.07958143 0.05087609 +0.002418731 0.07958143 0.05087609 +0.005155668 0.07958143 0.05087609 +0.009080105 0.07958143 0.05087609 +0.01434988 0.07958143 0.05087609 +0.02107202 0.07958143 0.05087609 +0.02934285 0.07958143 0.05087609 +0.03925039 0.07958143 0.05087609 +0.05087609 0.07958143 0.05087609 +0.06429595 0.07958143 0.05087609 +0.07958143 0.07958143 0.05087609 +0.0968001 0.07958143 0.05087609 +0.1160161 0.07958143 0.05087609 +0.1372908 0.07958143 0.05087609 +0.1606827 0.07958143 0.05087609 +0.1862481 0.07958143 0.05087609 +0.2140411 0.07958143 0.05087609 +0.2441142 0.07958143 0.05087609 +0.2765176 0.07958143 0.05087609 +0.3113005 0.07958143 0.05087609 +0.3485102 0.07958143 0.05087609 +0.388193 0.07958143 0.05087609 +0.4303934 0.07958143 0.05087609 +0.4751555 0.07958143 0.05087609 +0.5225216 0.07958143 0.05087609 +0.5725335 0.07958143 0.05087609 +0.6252316 0.07958143 0.05087609 +0.6806558 0.07958143 0.05087609 +0.7388448 0.07958143 0.05087609 +0.7998369 0.07958143 0.05087609 +0.8636691 0.07958143 0.05087609 +0.9303782 0.07958143 0.05087609 +1 0.07958143 0.05087609 +0 0.0968001 0.05087609 +0.002418731 0.0968001 0.05087609 +0.005155668 0.0968001 0.05087609 +0.009080105 0.0968001 0.05087609 +0.01434988 0.0968001 0.05087609 +0.02107202 0.0968001 0.05087609 +0.02934285 0.0968001 0.05087609 +0.03925039 0.0968001 0.05087609 +0.05087609 0.0968001 0.05087609 +0.06429595 0.0968001 0.05087609 +0.07958143 0.0968001 0.05087609 +0.0968001 0.0968001 0.05087609 +0.1160161 0.0968001 0.05087609 +0.1372908 0.0968001 0.05087609 +0.1606827 0.0968001 0.05087609 +0.1862481 0.0968001 0.05087609 +0.2140411 0.0968001 0.05087609 +0.2441142 0.0968001 0.05087609 +0.2765176 0.0968001 0.05087609 +0.3113005 0.0968001 0.05087609 +0.3485102 0.0968001 0.05087609 +0.388193 0.0968001 0.05087609 +0.4303934 0.0968001 0.05087609 +0.4751555 0.0968001 0.05087609 +0.5225216 0.0968001 0.05087609 +0.5725335 0.0968001 0.05087609 +0.6252316 0.0968001 0.05087609 +0.6806558 0.0968001 0.05087609 +0.7388448 0.0968001 0.05087609 +0.7998369 0.0968001 0.05087609 +0.8636691 0.0968001 0.05087609 +0.9303782 0.0968001 0.05087609 +1 0.0968001 0.05087609 +0 0.1160161 0.05087609 +0.002418731 0.1160161 0.05087609 +0.005155668 0.1160161 0.05087609 +0.009080105 0.1160161 0.05087609 +0.01434988 0.1160161 0.05087609 +0.02107202 0.1160161 0.05087609 +0.02934285 0.1160161 0.05087609 +0.03925039 0.1160161 0.05087609 +0.05087609 0.1160161 0.05087609 +0.06429595 0.1160161 0.05087609 +0.07958143 0.1160161 0.05087609 +0.0968001 0.1160161 0.05087609 +0.1160161 0.1160161 0.05087609 +0.1372908 0.1160161 0.05087609 +0.1606827 0.1160161 0.05087609 +0.1862481 0.1160161 0.05087609 +0.2140411 0.1160161 0.05087609 +0.2441142 0.1160161 0.05087609 +0.2765176 0.1160161 0.05087609 +0.3113005 0.1160161 0.05087609 +0.3485102 0.1160161 0.05087609 +0.388193 0.1160161 0.05087609 +0.4303934 0.1160161 0.05087609 +0.4751555 0.1160161 0.05087609 +0.5225216 0.1160161 0.05087609 +0.5725335 0.1160161 0.05087609 +0.6252316 0.1160161 0.05087609 +0.6806558 0.1160161 0.05087609 +0.7388448 0.1160161 0.05087609 +0.7998369 0.1160161 0.05087609 +0.8636691 0.1160161 0.05087609 +0.9303782 0.1160161 0.05087609 +1 0.1160161 0.05087609 +0 0.1372908 0.05087609 +0.002418731 0.1372908 0.05087609 +0.005155668 0.1372908 0.05087609 +0.009080105 0.1372908 0.05087609 +0.01434988 0.1372908 0.05087609 +0.02107202 0.1372908 0.05087609 +0.02934285 0.1372908 0.05087609 +0.03925039 0.1372908 0.05087609 +0.05087609 0.1372908 0.05087609 +0.06429595 0.1372908 0.05087609 +0.07958143 0.1372908 0.05087609 +0.0968001 0.1372908 0.05087609 +0.1160161 0.1372908 0.05087609 +0.1372908 0.1372908 0.05087609 +0.1606827 0.1372908 0.05087609 +0.1862481 0.1372908 0.05087609 +0.2140411 0.1372908 0.05087609 +0.2441142 0.1372908 0.05087609 +0.2765176 0.1372908 0.05087609 +0.3113005 0.1372908 0.05087609 +0.3485102 0.1372908 0.05087609 +0.388193 0.1372908 0.05087609 +0.4303934 0.1372908 0.05087609 +0.4751555 0.1372908 0.05087609 +0.5225216 0.1372908 0.05087609 +0.5725335 0.1372908 0.05087609 +0.6252316 0.1372908 0.05087609 +0.6806558 0.1372908 0.05087609 +0.7388448 0.1372908 0.05087609 +0.7998369 0.1372908 0.05087609 +0.8636691 0.1372908 0.05087609 +0.9303782 0.1372908 0.05087609 +1 0.1372908 0.05087609 +0 0.1606827 0.05087609 +0.002418731 0.1606827 0.05087609 +0.005155668 0.1606827 0.05087609 +0.009080105 0.1606827 0.05087609 +0.01434988 0.1606827 0.05087609 +0.02107202 0.1606827 0.05087609 +0.02934285 0.1606827 0.05087609 +0.03925039 0.1606827 0.05087609 +0.05087609 0.1606827 0.05087609 +0.06429595 0.1606827 0.05087609 +0.07958143 0.1606827 0.05087609 +0.0968001 0.1606827 0.05087609 +0.1160161 0.1606827 0.05087609 +0.1372908 0.1606827 0.05087609 +0.1606827 0.1606827 0.05087609 +0.1862481 0.1606827 0.05087609 +0.2140411 0.1606827 0.05087609 +0.2441142 0.1606827 0.05087609 +0.2765176 0.1606827 0.05087609 +0.3113005 0.1606827 0.05087609 +0.3485102 0.1606827 0.05087609 +0.388193 0.1606827 0.05087609 +0.4303934 0.1606827 0.05087609 +0.4751555 0.1606827 0.05087609 +0.5225216 0.1606827 0.05087609 +0.5725335 0.1606827 0.05087609 +0.6252316 0.1606827 0.05087609 +0.6806558 0.1606827 0.05087609 +0.7388448 0.1606827 0.05087609 +0.7998369 0.1606827 0.05087609 +0.8636691 0.1606827 0.05087609 +0.9303782 0.1606827 0.05087609 +1 0.1606827 0.05087609 +0 0.1862481 0.05087609 +0.002418731 0.1862481 0.05087609 +0.005155668 0.1862481 0.05087609 +0.009080105 0.1862481 0.05087609 +0.01434988 0.1862481 0.05087609 +0.02107202 0.1862481 0.05087609 +0.02934285 0.1862481 0.05087609 +0.03925039 0.1862481 0.05087609 +0.05087609 0.1862481 0.05087609 +0.06429595 0.1862481 0.05087609 +0.07958143 0.1862481 0.05087609 +0.0968001 0.1862481 0.05087609 +0.1160161 0.1862481 0.05087609 +0.1372908 0.1862481 0.05087609 +0.1606827 0.1862481 0.05087609 +0.1862481 0.1862481 0.05087609 +0.2140411 0.1862481 0.05087609 +0.2441142 0.1862481 0.05087609 +0.2765176 0.1862481 0.05087609 +0.3113005 0.1862481 0.05087609 +0.3485102 0.1862481 0.05087609 +0.388193 0.1862481 0.05087609 +0.4303934 0.1862481 0.05087609 +0.4751555 0.1862481 0.05087609 +0.5225216 0.1862481 0.05087609 +0.5725335 0.1862481 0.05087609 +0.6252316 0.1862481 0.05087609 +0.6806558 0.1862481 0.05087609 +0.7388448 0.1862481 0.05087609 +0.7998369 0.1862481 0.05087609 +0.8636691 0.1862481 0.05087609 +0.9303782 0.1862481 0.05087609 +1 0.1862481 0.05087609 +0 0.2140411 0.05087609 +0.002418731 0.2140411 0.05087609 +0.005155668 0.2140411 0.05087609 +0.009080105 0.2140411 0.05087609 +0.01434988 0.2140411 0.05087609 +0.02107202 0.2140411 0.05087609 +0.02934285 0.2140411 0.05087609 +0.03925039 0.2140411 0.05087609 +0.05087609 0.2140411 0.05087609 +0.06429595 0.2140411 0.05087609 +0.07958143 0.2140411 0.05087609 +0.0968001 0.2140411 0.05087609 +0.1160161 0.2140411 0.05087609 +0.1372908 0.2140411 0.05087609 +0.1606827 0.2140411 0.05087609 +0.1862481 0.2140411 0.05087609 +0.2140411 0.2140411 0.05087609 +0.2441142 0.2140411 0.05087609 +0.2765176 0.2140411 0.05087609 +0.3113005 0.2140411 0.05087609 +0.3485102 0.2140411 0.05087609 +0.388193 0.2140411 0.05087609 +0.4303934 0.2140411 0.05087609 +0.4751555 0.2140411 0.05087609 +0.5225216 0.2140411 0.05087609 +0.5725335 0.2140411 0.05087609 +0.6252316 0.2140411 0.05087609 +0.6806558 0.2140411 0.05087609 +0.7388448 0.2140411 0.05087609 +0.7998369 0.2140411 0.05087609 +0.8636691 0.2140411 0.05087609 +0.9303782 0.2140411 0.05087609 +1 0.2140411 0.05087609 +0 0.2441142 0.05087609 +0.002418731 0.2441142 0.05087609 +0.005155668 0.2441142 0.05087609 +0.009080105 0.2441142 0.05087609 +0.01434988 0.2441142 0.05087609 +0.02107202 0.2441142 0.05087609 +0.02934285 0.2441142 0.05087609 +0.03925039 0.2441142 0.05087609 +0.05087609 0.2441142 0.05087609 +0.06429595 0.2441142 0.05087609 +0.07958143 0.2441142 0.05087609 +0.0968001 0.2441142 0.05087609 +0.1160161 0.2441142 0.05087609 +0.1372908 0.2441142 0.05087609 +0.1606827 0.2441142 0.05087609 +0.1862481 0.2441142 0.05087609 +0.2140411 0.2441142 0.05087609 +0.2441142 0.2441142 0.05087609 +0.2765176 0.2441142 0.05087609 +0.3113005 0.2441142 0.05087609 +0.3485102 0.2441142 0.05087609 +0.388193 0.2441142 0.05087609 +0.4303934 0.2441142 0.05087609 +0.4751555 0.2441142 0.05087609 +0.5225216 0.2441142 0.05087609 +0.5725335 0.2441142 0.05087609 +0.6252316 0.2441142 0.05087609 +0.6806558 0.2441142 0.05087609 +0.7388448 0.2441142 0.05087609 +0.7998369 0.2441142 0.05087609 +0.8636691 0.2441142 0.05087609 +0.9303782 0.2441142 0.05087609 +1 0.2441142 0.05087609 +0 0.2765176 0.05087609 +0.002418731 0.2765176 0.05087609 +0.005155668 0.2765176 0.05087609 +0.009080105 0.2765176 0.05087609 +0.01434988 0.2765176 0.05087609 +0.02107202 0.2765176 0.05087609 +0.02934285 0.2765176 0.05087609 +0.03925039 0.2765176 0.05087609 +0.05087609 0.2765176 0.05087609 +0.06429595 0.2765176 0.05087609 +0.07958143 0.2765176 0.05087609 +0.0968001 0.2765176 0.05087609 +0.1160161 0.2765176 0.05087609 +0.1372908 0.2765176 0.05087609 +0.1606827 0.2765176 0.05087609 +0.1862481 0.2765176 0.05087609 +0.2140411 0.2765176 0.05087609 +0.2441142 0.2765176 0.05087609 +0.2765176 0.2765176 0.05087609 +0.3113005 0.2765176 0.05087609 +0.3485102 0.2765176 0.05087609 +0.388193 0.2765176 0.05087609 +0.4303934 0.2765176 0.05087609 +0.4751555 0.2765176 0.05087609 +0.5225216 0.2765176 0.05087609 +0.5725335 0.2765176 0.05087609 +0.6252316 0.2765176 0.05087609 +0.6806558 0.2765176 0.05087609 +0.7388448 0.2765176 0.05087609 +0.7998369 0.2765176 0.05087609 +0.8636691 0.2765176 0.05087609 +0.9303782 0.2765176 0.05087609 +1 0.2765176 0.05087609 +0 0.3113005 0.05087609 +0.002418731 0.3113005 0.05087609 +0.005155668 0.3113005 0.05087609 +0.009080105 0.3113005 0.05087609 +0.01434988 0.3113005 0.05087609 +0.02107202 0.3113005 0.05087609 +0.02934285 0.3113005 0.05087609 +0.03925039 0.3113005 0.05087609 +0.05087609 0.3113005 0.05087609 +0.06429595 0.3113005 0.05087609 +0.07958143 0.3113005 0.05087609 +0.0968001 0.3113005 0.05087609 +0.1160161 0.3113005 0.05087609 +0.1372908 0.3113005 0.05087609 +0.1606827 0.3113005 0.05087609 +0.1862481 0.3113005 0.05087609 +0.2140411 0.3113005 0.05087609 +0.2441142 0.3113005 0.05087609 +0.2765176 0.3113005 0.05087609 +0.3113005 0.3113005 0.05087609 +0.3485102 0.3113005 0.05087609 +0.388193 0.3113005 0.05087609 +0.4303934 0.3113005 0.05087609 +0.4751555 0.3113005 0.05087609 +0.5225216 0.3113005 0.05087609 +0.5725335 0.3113005 0.05087609 +0.6252316 0.3113005 0.05087609 +0.6806558 0.3113005 0.05087609 +0.7388448 0.3113005 0.05087609 +0.7998369 0.3113005 0.05087609 +0.8636691 0.3113005 0.05087609 +0.9303782 0.3113005 0.05087609 +1 0.3113005 0.05087609 +0 0.3485102 0.05087609 +0.002418731 0.3485102 0.05087609 +0.005155668 0.3485102 0.05087609 +0.009080105 0.3485102 0.05087609 +0.01434988 0.3485102 0.05087609 +0.02107202 0.3485102 0.05087609 +0.02934285 0.3485102 0.05087609 +0.03925039 0.3485102 0.05087609 +0.05087609 0.3485102 0.05087609 +0.06429595 0.3485102 0.05087609 +0.07958143 0.3485102 0.05087609 +0.0968001 0.3485102 0.05087609 +0.1160161 0.3485102 0.05087609 +0.1372908 0.3485102 0.05087609 +0.1606827 0.3485102 0.05087609 +0.1862481 0.3485102 0.05087609 +0.2140411 0.3485102 0.05087609 +0.2441142 0.3485102 0.05087609 +0.2765176 0.3485102 0.05087609 +0.3113005 0.3485102 0.05087609 +0.3485102 0.3485102 0.05087609 +0.388193 0.3485102 0.05087609 +0.4303934 0.3485102 0.05087609 +0.4751555 0.3485102 0.05087609 +0.5225216 0.3485102 0.05087609 +0.5725335 0.3485102 0.05087609 +0.6252316 0.3485102 0.05087609 +0.6806558 0.3485102 0.05087609 +0.7388448 0.3485102 0.05087609 +0.7998369 0.3485102 0.05087609 +0.8636691 0.3485102 0.05087609 +0.9303782 0.3485102 0.05087609 +1 0.3485102 0.05087609 +0 0.388193 0.05087609 +0.002418731 0.388193 0.05087609 +0.005155668 0.388193 0.05087609 +0.009080105 0.388193 0.05087609 +0.01434988 0.388193 0.05087609 +0.02107202 0.388193 0.05087609 +0.02934285 0.388193 0.05087609 +0.03925039 0.388193 0.05087609 +0.05087609 0.388193 0.05087609 +0.06429595 0.388193 0.05087609 +0.07958143 0.388193 0.05087609 +0.0968001 0.388193 0.05087609 +0.1160161 0.388193 0.05087609 +0.1372908 0.388193 0.05087609 +0.1606827 0.388193 0.05087609 +0.1862481 0.388193 0.05087609 +0.2140411 0.388193 0.05087609 +0.2441142 0.388193 0.05087609 +0.2765176 0.388193 0.05087609 +0.3113005 0.388193 0.05087609 +0.3485102 0.388193 0.05087609 +0.388193 0.388193 0.05087609 +0.4303934 0.388193 0.05087609 +0.4751555 0.388193 0.05087609 +0.5225216 0.388193 0.05087609 +0.5725335 0.388193 0.05087609 +0.6252316 0.388193 0.05087609 +0.6806558 0.388193 0.05087609 +0.7388448 0.388193 0.05087609 +0.7998369 0.388193 0.05087609 +0.8636691 0.388193 0.05087609 +0.9303782 0.388193 0.05087609 +1 0.388193 0.05087609 +0 0.4303934 0.05087609 +0.002418731 0.4303934 0.05087609 +0.005155668 0.4303934 0.05087609 +0.009080105 0.4303934 0.05087609 +0.01434988 0.4303934 0.05087609 +0.02107202 0.4303934 0.05087609 +0.02934285 0.4303934 0.05087609 +0.03925039 0.4303934 0.05087609 +0.05087609 0.4303934 0.05087609 +0.06429595 0.4303934 0.05087609 +0.07958143 0.4303934 0.05087609 +0.0968001 0.4303934 0.05087609 +0.1160161 0.4303934 0.05087609 +0.1372908 0.4303934 0.05087609 +0.1606827 0.4303934 0.05087609 +0.1862481 0.4303934 0.05087609 +0.2140411 0.4303934 0.05087609 +0.2441142 0.4303934 0.05087609 +0.2765176 0.4303934 0.05087609 +0.3113005 0.4303934 0.05087609 +0.3485102 0.4303934 0.05087609 +0.388193 0.4303934 0.05087609 +0.4303934 0.4303934 0.05087609 +0.4751555 0.4303934 0.05087609 +0.5225216 0.4303934 0.05087609 +0.5725335 0.4303934 0.05087609 +0.6252316 0.4303934 0.05087609 +0.6806558 0.4303934 0.05087609 +0.7388448 0.4303934 0.05087609 +0.7998369 0.4303934 0.05087609 +0.8636691 0.4303934 0.05087609 +0.9303782 0.4303934 0.05087609 +1 0.4303934 0.05087609 +0 0.4751555 0.05087609 +0.002418731 0.4751555 0.05087609 +0.005155668 0.4751555 0.05087609 +0.009080105 0.4751555 0.05087609 +0.01434988 0.4751555 0.05087609 +0.02107202 0.4751555 0.05087609 +0.02934285 0.4751555 0.05087609 +0.03925039 0.4751555 0.05087609 +0.05087609 0.4751555 0.05087609 +0.06429595 0.4751555 0.05087609 +0.07958143 0.4751555 0.05087609 +0.0968001 0.4751555 0.05087609 +0.1160161 0.4751555 0.05087609 +0.1372908 0.4751555 0.05087609 +0.1606827 0.4751555 0.05087609 +0.1862481 0.4751555 0.05087609 +0.2140411 0.4751555 0.05087609 +0.2441142 0.4751555 0.05087609 +0.2765176 0.4751555 0.05087609 +0.3113005 0.4751555 0.05087609 +0.3485102 0.4751555 0.05087609 +0.388193 0.4751555 0.05087609 +0.4303934 0.4751555 0.05087609 +0.4751555 0.4751555 0.05087609 +0.5225216 0.4751555 0.05087609 +0.5725335 0.4751555 0.05087609 +0.6252316 0.4751555 0.05087609 +0.6806558 0.4751555 0.05087609 +0.7388448 0.4751555 0.05087609 +0.7998369 0.4751555 0.05087609 +0.8636691 0.4751555 0.05087609 +0.9303782 0.4751555 0.05087609 +1 0.4751555 0.05087609 +0 0.5225216 0.05087609 +0.002418731 0.5225216 0.05087609 +0.005155668 0.5225216 0.05087609 +0.009080105 0.5225216 0.05087609 +0.01434988 0.5225216 0.05087609 +0.02107202 0.5225216 0.05087609 +0.02934285 0.5225216 0.05087609 +0.03925039 0.5225216 0.05087609 +0.05087609 0.5225216 0.05087609 +0.06429595 0.5225216 0.05087609 +0.07958143 0.5225216 0.05087609 +0.0968001 0.5225216 0.05087609 +0.1160161 0.5225216 0.05087609 +0.1372908 0.5225216 0.05087609 +0.1606827 0.5225216 0.05087609 +0.1862481 0.5225216 0.05087609 +0.2140411 0.5225216 0.05087609 +0.2441142 0.5225216 0.05087609 +0.2765176 0.5225216 0.05087609 +0.3113005 0.5225216 0.05087609 +0.3485102 0.5225216 0.05087609 +0.388193 0.5225216 0.05087609 +0.4303934 0.5225216 0.05087609 +0.4751555 0.5225216 0.05087609 +0.5225216 0.5225216 0.05087609 +0.5725335 0.5225216 0.05087609 +0.6252316 0.5225216 0.05087609 +0.6806558 0.5225216 0.05087609 +0.7388448 0.5225216 0.05087609 +0.7998369 0.5225216 0.05087609 +0.8636691 0.5225216 0.05087609 +0.9303782 0.5225216 0.05087609 +1 0.5225216 0.05087609 +0 0.5725335 0.05087609 +0.002418731 0.5725335 0.05087609 +0.005155668 0.5725335 0.05087609 +0.009080105 0.5725335 0.05087609 +0.01434988 0.5725335 0.05087609 +0.02107202 0.5725335 0.05087609 +0.02934285 0.5725335 0.05087609 +0.03925039 0.5725335 0.05087609 +0.05087609 0.5725335 0.05087609 +0.06429595 0.5725335 0.05087609 +0.07958143 0.5725335 0.05087609 +0.0968001 0.5725335 0.05087609 +0.1160161 0.5725335 0.05087609 +0.1372908 0.5725335 0.05087609 +0.1606827 0.5725335 0.05087609 +0.1862481 0.5725335 0.05087609 +0.2140411 0.5725335 0.05087609 +0.2441142 0.5725335 0.05087609 +0.2765176 0.5725335 0.05087609 +0.3113005 0.5725335 0.05087609 +0.3485102 0.5725335 0.05087609 +0.388193 0.5725335 0.05087609 +0.4303934 0.5725335 0.05087609 +0.4751555 0.5725335 0.05087609 +0.5225216 0.5725335 0.05087609 +0.5725335 0.5725335 0.05087609 +0.6252316 0.5725335 0.05087609 +0.6806558 0.5725335 0.05087609 +0.7388448 0.5725335 0.05087609 +0.7998369 0.5725335 0.05087609 +0.8636691 0.5725335 0.05087609 +0.9303782 0.5725335 0.05087609 +1 0.5725335 0.05087609 +0 0.6252316 0.05087609 +0.002418731 0.6252316 0.05087609 +0.005155668 0.6252316 0.05087609 +0.009080105 0.6252316 0.05087609 +0.01434988 0.6252316 0.05087609 +0.02107202 0.6252316 0.05087609 +0.02934285 0.6252316 0.05087609 +0.03925039 0.6252316 0.05087609 +0.05087609 0.6252316 0.05087609 +0.06429595 0.6252316 0.05087609 +0.07958143 0.6252316 0.05087609 +0.0968001 0.6252316 0.05087609 +0.1160161 0.6252316 0.05087609 +0.1372908 0.6252316 0.05087609 +0.1606827 0.6252316 0.05087609 +0.1862481 0.6252316 0.05087609 +0.2140411 0.6252316 0.05087609 +0.2441142 0.6252316 0.05087609 +0.2765176 0.6252316 0.05087609 +0.3113005 0.6252316 0.05087609 +0.3485102 0.6252316 0.05087609 +0.388193 0.6252316 0.05087609 +0.4303934 0.6252316 0.05087609 +0.4751555 0.6252316 0.05087609 +0.5225216 0.6252316 0.05087609 +0.5725335 0.6252316 0.05087609 +0.6252316 0.6252316 0.05087609 +0.6806558 0.6252316 0.05087609 +0.7388448 0.6252316 0.05087609 +0.7998369 0.6252316 0.05087609 +0.8636691 0.6252316 0.05087609 +0.9303782 0.6252316 0.05087609 +1 0.6252316 0.05087609 +0 0.6806558 0.05087609 +0.002418731 0.6806558 0.05087609 +0.005155668 0.6806558 0.05087609 +0.009080105 0.6806558 0.05087609 +0.01434988 0.6806558 0.05087609 +0.02107202 0.6806558 0.05087609 +0.02934285 0.6806558 0.05087609 +0.03925039 0.6806558 0.05087609 +0.05087609 0.6806558 0.05087609 +0.06429595 0.6806558 0.05087609 +0.07958143 0.6806558 0.05087609 +0.0968001 0.6806558 0.05087609 +0.1160161 0.6806558 0.05087609 +0.1372908 0.6806558 0.05087609 +0.1606827 0.6806558 0.05087609 +0.1862481 0.6806558 0.05087609 +0.2140411 0.6806558 0.05087609 +0.2441142 0.6806558 0.05087609 +0.2765176 0.6806558 0.05087609 +0.3113005 0.6806558 0.05087609 +0.3485102 0.6806558 0.05087609 +0.388193 0.6806558 0.05087609 +0.4303934 0.6806558 0.05087609 +0.4751555 0.6806558 0.05087609 +0.5225216 0.6806558 0.05087609 +0.5725335 0.6806558 0.05087609 +0.6252316 0.6806558 0.05087609 +0.6806558 0.6806558 0.05087609 +0.7388448 0.6806558 0.05087609 +0.7998369 0.6806558 0.05087609 +0.8636691 0.6806558 0.05087609 +0.9303782 0.6806558 0.05087609 +1 0.6806558 0.05087609 +0 0.7388448 0.05087609 +0.002418731 0.7388448 0.05087609 +0.005155668 0.7388448 0.05087609 +0.009080105 0.7388448 0.05087609 +0.01434988 0.7388448 0.05087609 +0.02107202 0.7388448 0.05087609 +0.02934285 0.7388448 0.05087609 +0.03925039 0.7388448 0.05087609 +0.05087609 0.7388448 0.05087609 +0.06429595 0.7388448 0.05087609 +0.07958143 0.7388448 0.05087609 +0.0968001 0.7388448 0.05087609 +0.1160161 0.7388448 0.05087609 +0.1372908 0.7388448 0.05087609 +0.1606827 0.7388448 0.05087609 +0.1862481 0.7388448 0.05087609 +0.2140411 0.7388448 0.05087609 +0.2441142 0.7388448 0.05087609 +0.2765176 0.7388448 0.05087609 +0.3113005 0.7388448 0.05087609 +0.3485102 0.7388448 0.05087609 +0.388193 0.7388448 0.05087609 +0.4303934 0.7388448 0.05087609 +0.4751555 0.7388448 0.05087609 +0.5225216 0.7388448 0.05087609 +0.5725335 0.7388448 0.05087609 +0.6252316 0.7388448 0.05087609 +0.6806558 0.7388448 0.05087609 +0.7388448 0.7388448 0.05087609 +0.7998369 0.7388448 0.05087609 +0.8636691 0.7388448 0.05087609 +0.9303782 0.7388448 0.05087609 +1 0.7388448 0.05087609 +0 0.7998369 0.05087609 +0.002418731 0.7998369 0.05087609 +0.005155668 0.7998369 0.05087609 +0.009080105 0.7998369 0.05087609 +0.01434988 0.7998369 0.05087609 +0.02107202 0.7998369 0.05087609 +0.02934285 0.7998369 0.05087609 +0.03925039 0.7998369 0.05087609 +0.05087609 0.7998369 0.05087609 +0.06429595 0.7998369 0.05087609 +0.07958143 0.7998369 0.05087609 +0.0968001 0.7998369 0.05087609 +0.1160161 0.7998369 0.05087609 +0.1372908 0.7998369 0.05087609 +0.1606827 0.7998369 0.05087609 +0.1862481 0.7998369 0.05087609 +0.2140411 0.7998369 0.05087609 +0.2441142 0.7998369 0.05087609 +0.2765176 0.7998369 0.05087609 +0.3113005 0.7998369 0.05087609 +0.3485102 0.7998369 0.05087609 +0.388193 0.7998369 0.05087609 +0.4303934 0.7998369 0.05087609 +0.4751555 0.7998369 0.05087609 +0.5225216 0.7998369 0.05087609 +0.5725335 0.7998369 0.05087609 +0.6252316 0.7998369 0.05087609 +0.6806558 0.7998369 0.05087609 +0.7388448 0.7998369 0.05087609 +0.7998369 0.7998369 0.05087609 +0.8636691 0.7998369 0.05087609 +0.9303782 0.7998369 0.05087609 +1 0.7998369 0.05087609 +0 0.8636691 0.05087609 +0.002418731 0.8636691 0.05087609 +0.005155668 0.8636691 0.05087609 +0.009080105 0.8636691 0.05087609 +0.01434988 0.8636691 0.05087609 +0.02107202 0.8636691 0.05087609 +0.02934285 0.8636691 0.05087609 +0.03925039 0.8636691 0.05087609 +0.05087609 0.8636691 0.05087609 +0.06429595 0.8636691 0.05087609 +0.07958143 0.8636691 0.05087609 +0.0968001 0.8636691 0.05087609 +0.1160161 0.8636691 0.05087609 +0.1372908 0.8636691 0.05087609 +0.1606827 0.8636691 0.05087609 +0.1862481 0.8636691 0.05087609 +0.2140411 0.8636691 0.05087609 +0.2441142 0.8636691 0.05087609 +0.2765176 0.8636691 0.05087609 +0.3113005 0.8636691 0.05087609 +0.3485102 0.8636691 0.05087609 +0.388193 0.8636691 0.05087609 +0.4303934 0.8636691 0.05087609 +0.4751555 0.8636691 0.05087609 +0.5225216 0.8636691 0.05087609 +0.5725335 0.8636691 0.05087609 +0.6252316 0.8636691 0.05087609 +0.6806558 0.8636691 0.05087609 +0.7388448 0.8636691 0.05087609 +0.7998369 0.8636691 0.05087609 +0.8636691 0.8636691 0.05087609 +0.9303782 0.8636691 0.05087609 +1 0.8636691 0.05087609 +0 0.9303782 0.05087609 +0.002418731 0.9303782 0.05087609 +0.005155668 0.9303782 0.05087609 +0.009080105 0.9303782 0.05087609 +0.01434988 0.9303782 0.05087609 +0.02107202 0.9303782 0.05087609 +0.02934285 0.9303782 0.05087609 +0.03925039 0.9303782 0.05087609 +0.05087609 0.9303782 0.05087609 +0.06429595 0.9303782 0.05087609 +0.07958143 0.9303782 0.05087609 +0.0968001 0.9303782 0.05087609 +0.1160161 0.9303782 0.05087609 +0.1372908 0.9303782 0.05087609 +0.1606827 0.9303782 0.05087609 +0.1862481 0.9303782 0.05087609 +0.2140411 0.9303782 0.05087609 +0.2441142 0.9303782 0.05087609 +0.2765176 0.9303782 0.05087609 +0.3113005 0.9303782 0.05087609 +0.3485102 0.9303782 0.05087609 +0.388193 0.9303782 0.05087609 +0.4303934 0.9303782 0.05087609 +0.4751555 0.9303782 0.05087609 +0.5225216 0.9303782 0.05087609 +0.5725335 0.9303782 0.05087609 +0.6252316 0.9303782 0.05087609 +0.6806558 0.9303782 0.05087609 +0.7388448 0.9303782 0.05087609 +0.7998369 0.9303782 0.05087609 +0.8636691 0.9303782 0.05087609 +0.9303782 0.9303782 0.05087609 +1 0.9303782 0.05087609 +0 1 0.05087609 +0.002418731 1 0.05087609 +0.005155668 1 0.05087609 +0.009080105 1 0.05087609 +0.01434988 1 0.05087609 +0.02107202 1 0.05087609 +0.02934285 1 0.05087609 +0.03925039 1 0.05087609 +0.05087609 1 0.05087609 +0.06429595 1 0.05087609 +0.07958143 1 0.05087609 +0.0968001 1 0.05087609 +0.1160161 1 0.05087609 +0.1372908 1 0.05087609 +0.1606827 1 0.05087609 +0.1862481 1 0.05087609 +0.2140411 1 0.05087609 +0.2441142 1 0.05087609 +0.2765176 1 0.05087609 +0.3113005 1 0.05087609 +0.3485102 1 0.05087609 +0.388193 1 0.05087609 +0.4303934 1 0.05087609 +0.4751555 1 0.05087609 +0.5225216 1 0.05087609 +0.5725335 1 0.05087609 +0.6252316 1 0.05087609 +0.6806558 1 0.05087609 +0.7388448 1 0.05087609 +0.7998369 1 0.05087609 +0.8636691 1 0.05087609 +0.9303782 1 0.05087609 +1 1 0.05087609 +0 0 0.06429595 +0.002418731 0 0.06429595 +0.005155668 0 0.06429595 +0.009080105 0 0.06429595 +0.01434988 0 0.06429595 +0.02107202 0 0.06429595 +0.02934285 0 0.06429595 +0.03925039 0 0.06429595 +0.05087609 0 0.06429595 +0.06429595 0 0.06429595 +0.07958143 0 0.06429595 +0.0968001 0 0.06429595 +0.1160161 0 0.06429595 +0.1372908 0 0.06429595 +0.1606827 0 0.06429595 +0.1862481 0 0.06429595 +0.2140411 0 0.06429595 +0.2441142 0 0.06429595 +0.2765176 0 0.06429595 +0.3113005 0 0.06429595 +0.3485102 0 0.06429595 +0.388193 0 0.06429595 +0.4303934 0 0.06429595 +0.4751555 0 0.06429595 +0.5225216 0 0.06429595 +0.5725335 0 0.06429595 +0.6252316 0 0.06429595 +0.6806558 0 0.06429595 +0.7388448 0 0.06429595 +0.7998369 0 0.06429595 +0.8636691 0 0.06429595 +0.9303782 0 0.06429595 +1 0 0.06429595 +0 0.002418731 0.06429595 +0.002418731 0.002418731 0.06429595 +0.005155668 0.002418731 0.06429595 +0.009080105 0.002418731 0.06429595 +0.01434988 0.002418731 0.06429595 +0.02107202 0.002418731 0.06429595 +0.02934285 0.002418731 0.06429595 +0.03925039 0.002418731 0.06429595 +0.05087609 0.002418731 0.06429595 +0.06429595 0.002418731 0.06429595 +0.07958143 0.002418731 0.06429595 +0.0968001 0.002418731 0.06429595 +0.1160161 0.002418731 0.06429595 +0.1372908 0.002418731 0.06429595 +0.1606827 0.002418731 0.06429595 +0.1862481 0.002418731 0.06429595 +0.2140411 0.002418731 0.06429595 +0.2441142 0.002418731 0.06429595 +0.2765176 0.002418731 0.06429595 +0.3113005 0.002418731 0.06429595 +0.3485102 0.002418731 0.06429595 +0.388193 0.002418731 0.06429595 +0.4303934 0.002418731 0.06429595 +0.4751555 0.002418731 0.06429595 +0.5225216 0.002418731 0.06429595 +0.5725335 0.002418731 0.06429595 +0.6252316 0.002418731 0.06429595 +0.6806558 0.002418731 0.06429595 +0.7388448 0.002418731 0.06429595 +0.7998369 0.002418731 0.06429595 +0.8636691 0.002418731 0.06429595 +0.9303782 0.002418731 0.06429595 +1 0.002418731 0.06429595 +0 0.005155668 0.06429595 +0.002418731 0.005155668 0.06429595 +0.005155668 0.005155668 0.06429595 +0.009080105 0.005155668 0.06429595 +0.01434988 0.005155668 0.06429595 +0.02107202 0.005155668 0.06429595 +0.02934285 0.005155668 0.06429595 +0.03925039 0.005155668 0.06429595 +0.05087609 0.005155668 0.06429595 +0.06429595 0.005155668 0.06429595 +0.07958143 0.005155668 0.06429595 +0.0968001 0.005155668 0.06429595 +0.1160161 0.005155668 0.06429595 +0.1372908 0.005155668 0.06429595 +0.1606827 0.005155668 0.06429595 +0.1862481 0.005155668 0.06429595 +0.2140411 0.005155668 0.06429595 +0.2441142 0.005155668 0.06429595 +0.2765176 0.005155668 0.06429595 +0.3113005 0.005155668 0.06429595 +0.3485102 0.005155668 0.06429595 +0.388193 0.005155668 0.06429595 +0.4303934 0.005155668 0.06429595 +0.4751555 0.005155668 0.06429595 +0.5225216 0.005155668 0.06429595 +0.5725335 0.005155668 0.06429595 +0.6252316 0.005155668 0.06429595 +0.6806558 0.005155668 0.06429595 +0.7388448 0.005155668 0.06429595 +0.7998369 0.005155668 0.06429595 +0.8636691 0.005155668 0.06429595 +0.9303782 0.005155668 0.06429595 +1 0.005155668 0.06429595 +0 0.009080105 0.06429595 +0.002418731 0.009080105 0.06429595 +0.005155668 0.009080105 0.06429595 +0.009080105 0.009080105 0.06429595 +0.01434988 0.009080105 0.06429595 +0.02107202 0.009080105 0.06429595 +0.02934285 0.009080105 0.06429595 +0.03925039 0.009080105 0.06429595 +0.05087609 0.009080105 0.06429595 +0.06429595 0.009080105 0.06429595 +0.07958143 0.009080105 0.06429595 +0.0968001 0.009080105 0.06429595 +0.1160161 0.009080105 0.06429595 +0.1372908 0.009080105 0.06429595 +0.1606827 0.009080105 0.06429595 +0.1862481 0.009080105 0.06429595 +0.2140411 0.009080105 0.06429595 +0.2441142 0.009080105 0.06429595 +0.2765176 0.009080105 0.06429595 +0.3113005 0.009080105 0.06429595 +0.3485102 0.009080105 0.06429595 +0.388193 0.009080105 0.06429595 +0.4303934 0.009080105 0.06429595 +0.4751555 0.009080105 0.06429595 +0.5225216 0.009080105 0.06429595 +0.5725335 0.009080105 0.06429595 +0.6252316 0.009080105 0.06429595 +0.6806558 0.009080105 0.06429595 +0.7388448 0.009080105 0.06429595 +0.7998369 0.009080105 0.06429595 +0.8636691 0.009080105 0.06429595 +0.9303782 0.009080105 0.06429595 +1 0.009080105 0.06429595 +0 0.01434988 0.06429595 +0.002418731 0.01434988 0.06429595 +0.005155668 0.01434988 0.06429595 +0.009080105 0.01434988 0.06429595 +0.01434988 0.01434988 0.06429595 +0.02107202 0.01434988 0.06429595 +0.02934285 0.01434988 0.06429595 +0.03925039 0.01434988 0.06429595 +0.05087609 0.01434988 0.06429595 +0.06429595 0.01434988 0.06429595 +0.07958143 0.01434988 0.06429595 +0.0968001 0.01434988 0.06429595 +0.1160161 0.01434988 0.06429595 +0.1372908 0.01434988 0.06429595 +0.1606827 0.01434988 0.06429595 +0.1862481 0.01434988 0.06429595 +0.2140411 0.01434988 0.06429595 +0.2441142 0.01434988 0.06429595 +0.2765176 0.01434988 0.06429595 +0.3113005 0.01434988 0.06429595 +0.3485102 0.01434988 0.06429595 +0.388193 0.01434988 0.06429595 +0.4303934 0.01434988 0.06429595 +0.4751555 0.01434988 0.06429595 +0.5225216 0.01434988 0.06429595 +0.5725335 0.01434988 0.06429595 +0.6252316 0.01434988 0.06429595 +0.6806558 0.01434988 0.06429595 +0.7388448 0.01434988 0.06429595 +0.7998369 0.01434988 0.06429595 +0.8636691 0.01434988 0.06429595 +0.9303782 0.01434988 0.06429595 +1 0.01434988 0.06429595 +0 0.02107202 0.06429595 +0.002418731 0.02107202 0.06429595 +0.005155668 0.02107202 0.06429595 +0.009080105 0.02107202 0.06429595 +0.01434988 0.02107202 0.06429595 +0.02107202 0.02107202 0.06429595 +0.02934285 0.02107202 0.06429595 +0.03925039 0.02107202 0.06429595 +0.05087609 0.02107202 0.06429595 +0.06429595 0.02107202 0.06429595 +0.07958143 0.02107202 0.06429595 +0.0968001 0.02107202 0.06429595 +0.1160161 0.02107202 0.06429595 +0.1372908 0.02107202 0.06429595 +0.1606827 0.02107202 0.06429595 +0.1862481 0.02107202 0.06429595 +0.2140411 0.02107202 0.06429595 +0.2441142 0.02107202 0.06429595 +0.2765176 0.02107202 0.06429595 +0.3113005 0.02107202 0.06429595 +0.3485102 0.02107202 0.06429595 +0.388193 0.02107202 0.06429595 +0.4303934 0.02107202 0.06429595 +0.4751555 0.02107202 0.06429595 +0.5225216 0.02107202 0.06429595 +0.5725335 0.02107202 0.06429595 +0.6252316 0.02107202 0.06429595 +0.6806558 0.02107202 0.06429595 +0.7388448 0.02107202 0.06429595 +0.7998369 0.02107202 0.06429595 +0.8636691 0.02107202 0.06429595 +0.9303782 0.02107202 0.06429595 +1 0.02107202 0.06429595 +0 0.02934285 0.06429595 +0.002418731 0.02934285 0.06429595 +0.005155668 0.02934285 0.06429595 +0.009080105 0.02934285 0.06429595 +0.01434988 0.02934285 0.06429595 +0.02107202 0.02934285 0.06429595 +0.02934285 0.02934285 0.06429595 +0.03925039 0.02934285 0.06429595 +0.05087609 0.02934285 0.06429595 +0.06429595 0.02934285 0.06429595 +0.07958143 0.02934285 0.06429595 +0.0968001 0.02934285 0.06429595 +0.1160161 0.02934285 0.06429595 +0.1372908 0.02934285 0.06429595 +0.1606827 0.02934285 0.06429595 +0.1862481 0.02934285 0.06429595 +0.2140411 0.02934285 0.06429595 +0.2441142 0.02934285 0.06429595 +0.2765176 0.02934285 0.06429595 +0.3113005 0.02934285 0.06429595 +0.3485102 0.02934285 0.06429595 +0.388193 0.02934285 0.06429595 +0.4303934 0.02934285 0.06429595 +0.4751555 0.02934285 0.06429595 +0.5225216 0.02934285 0.06429595 +0.5725335 0.02934285 0.06429595 +0.6252316 0.02934285 0.06429595 +0.6806558 0.02934285 0.06429595 +0.7388448 0.02934285 0.06429595 +0.7998369 0.02934285 0.06429595 +0.8636691 0.02934285 0.06429595 +0.9303782 0.02934285 0.06429595 +1 0.02934285 0.06429595 +0 0.03925039 0.06429595 +0.002418731 0.03925039 0.06429595 +0.005155668 0.03925039 0.06429595 +0.009080105 0.03925039 0.06429595 +0.01434988 0.03925039 0.06429595 +0.02107202 0.03925039 0.06429595 +0.02934285 0.03925039 0.06429595 +0.03925039 0.03925039 0.06429595 +0.05087609 0.03925039 0.06429595 +0.06429595 0.03925039 0.06429595 +0.07958143 0.03925039 0.06429595 +0.0968001 0.03925039 0.06429595 +0.1160161 0.03925039 0.06429595 +0.1372908 0.03925039 0.06429595 +0.1606827 0.03925039 0.06429595 +0.1862481 0.03925039 0.06429595 +0.2140411 0.03925039 0.06429595 +0.2441142 0.03925039 0.06429595 +0.2765176 0.03925039 0.06429595 +0.3113005 0.03925039 0.06429595 +0.3485102 0.03925039 0.06429595 +0.388193 0.03925039 0.06429595 +0.4303934 0.03925039 0.06429595 +0.4751555 0.03925039 0.06429595 +0.5225216 0.03925039 0.06429595 +0.5725335 0.03925039 0.06429595 +0.6252316 0.03925039 0.06429595 +0.6806558 0.03925039 0.06429595 +0.7388448 0.03925039 0.06429595 +0.7998369 0.03925039 0.06429595 +0.8636691 0.03925039 0.06429595 +0.9303782 0.03925039 0.06429595 +1 0.03925039 0.06429595 +0 0.05087609 0.06429595 +0.002418731 0.05087609 0.06429595 +0.005155668 0.05087609 0.06429595 +0.009080105 0.05087609 0.06429595 +0.01434988 0.05087609 0.06429595 +0.02107202 0.05087609 0.06429595 +0.02934285 0.05087609 0.06429595 +0.03925039 0.05087609 0.06429595 +0.05087609 0.05087609 0.06429595 +0.06429595 0.05087609 0.06429595 +0.07958143 0.05087609 0.06429595 +0.0968001 0.05087609 0.06429595 +0.1160161 0.05087609 0.06429595 +0.1372908 0.05087609 0.06429595 +0.1606827 0.05087609 0.06429595 +0.1862481 0.05087609 0.06429595 +0.2140411 0.05087609 0.06429595 +0.2441142 0.05087609 0.06429595 +0.2765176 0.05087609 0.06429595 +0.3113005 0.05087609 0.06429595 +0.3485102 0.05087609 0.06429595 +0.388193 0.05087609 0.06429595 +0.4303934 0.05087609 0.06429595 +0.4751555 0.05087609 0.06429595 +0.5225216 0.05087609 0.06429595 +0.5725335 0.05087609 0.06429595 +0.6252316 0.05087609 0.06429595 +0.6806558 0.05087609 0.06429595 +0.7388448 0.05087609 0.06429595 +0.7998369 0.05087609 0.06429595 +0.8636691 0.05087609 0.06429595 +0.9303782 0.05087609 0.06429595 +1 0.05087609 0.06429595 +0 0.06429595 0.06429595 +0.002418731 0.06429595 0.06429595 +0.005155668 0.06429595 0.06429595 +0.009080105 0.06429595 0.06429595 +0.01434988 0.06429595 0.06429595 +0.02107202 0.06429595 0.06429595 +0.02934285 0.06429595 0.06429595 +0.03925039 0.06429595 0.06429595 +0.05087609 0.06429595 0.06429595 +0.06429595 0.06429595 0.06429595 +0.07958143 0.06429595 0.06429595 +0.0968001 0.06429595 0.06429595 +0.1160161 0.06429595 0.06429595 +0.1372908 0.06429595 0.06429595 +0.1606827 0.06429595 0.06429595 +0.1862481 0.06429595 0.06429595 +0.2140411 0.06429595 0.06429595 +0.2441142 0.06429595 0.06429595 +0.2765176 0.06429595 0.06429595 +0.3113005 0.06429595 0.06429595 +0.3485102 0.06429595 0.06429595 +0.388193 0.06429595 0.06429595 +0.4303934 0.06429595 0.06429595 +0.4751555 0.06429595 0.06429595 +0.5225216 0.06429595 0.06429595 +0.5725335 0.06429595 0.06429595 +0.6252316 0.06429595 0.06429595 +0.6806558 0.06429595 0.06429595 +0.7388448 0.06429595 0.06429595 +0.7998369 0.06429595 0.06429595 +0.8636691 0.06429595 0.06429595 +0.9303782 0.06429595 0.06429595 +1 0.06429595 0.06429595 +0 0.07958143 0.06429595 +0.002418731 0.07958143 0.06429595 +0.005155668 0.07958143 0.06429595 +0.009080105 0.07958143 0.06429595 +0.01434988 0.07958143 0.06429595 +0.02107202 0.07958143 0.06429595 +0.02934285 0.07958143 0.06429595 +0.03925039 0.07958143 0.06429595 +0.05087609 0.07958143 0.06429595 +0.06429595 0.07958143 0.06429595 +0.07958143 0.07958143 0.06429595 +0.0968001 0.07958143 0.06429595 +0.1160161 0.07958143 0.06429595 +0.1372908 0.07958143 0.06429595 +0.1606827 0.07958143 0.06429595 +0.1862481 0.07958143 0.06429595 +0.2140411 0.07958143 0.06429595 +0.2441142 0.07958143 0.06429595 +0.2765176 0.07958143 0.06429595 +0.3113005 0.07958143 0.06429595 +0.3485102 0.07958143 0.06429595 +0.388193 0.07958143 0.06429595 +0.4303934 0.07958143 0.06429595 +0.4751555 0.07958143 0.06429595 +0.5225216 0.07958143 0.06429595 +0.5725335 0.07958143 0.06429595 +0.6252316 0.07958143 0.06429595 +0.6806558 0.07958143 0.06429595 +0.7388448 0.07958143 0.06429595 +0.7998369 0.07958143 0.06429595 +0.8636691 0.07958143 0.06429595 +0.9303782 0.07958143 0.06429595 +1 0.07958143 0.06429595 +0 0.0968001 0.06429595 +0.002418731 0.0968001 0.06429595 +0.005155668 0.0968001 0.06429595 +0.009080105 0.0968001 0.06429595 +0.01434988 0.0968001 0.06429595 +0.02107202 0.0968001 0.06429595 +0.02934285 0.0968001 0.06429595 +0.03925039 0.0968001 0.06429595 +0.05087609 0.0968001 0.06429595 +0.06429595 0.0968001 0.06429595 +0.07958143 0.0968001 0.06429595 +0.0968001 0.0968001 0.06429595 +0.1160161 0.0968001 0.06429595 +0.1372908 0.0968001 0.06429595 +0.1606827 0.0968001 0.06429595 +0.1862481 0.0968001 0.06429595 +0.2140411 0.0968001 0.06429595 +0.2441142 0.0968001 0.06429595 +0.2765176 0.0968001 0.06429595 +0.3113005 0.0968001 0.06429595 +0.3485102 0.0968001 0.06429595 +0.388193 0.0968001 0.06429595 +0.4303934 0.0968001 0.06429595 +0.4751555 0.0968001 0.06429595 +0.5225216 0.0968001 0.06429595 +0.5725335 0.0968001 0.06429595 +0.6252316 0.0968001 0.06429595 +0.6806558 0.0968001 0.06429595 +0.7388448 0.0968001 0.06429595 +0.7998369 0.0968001 0.06429595 +0.8636691 0.0968001 0.06429595 +0.9303782 0.0968001 0.06429595 +1 0.0968001 0.06429595 +0 0.1160161 0.06429595 +0.002418731 0.1160161 0.06429595 +0.005155668 0.1160161 0.06429595 +0.009080105 0.1160161 0.06429595 +0.01434988 0.1160161 0.06429595 +0.02107202 0.1160161 0.06429595 +0.02934285 0.1160161 0.06429595 +0.03925039 0.1160161 0.06429595 +0.05087609 0.1160161 0.06429595 +0.06429595 0.1160161 0.06429595 +0.07958143 0.1160161 0.06429595 +0.0968001 0.1160161 0.06429595 +0.1160161 0.1160161 0.06429595 +0.1372908 0.1160161 0.06429595 +0.1606827 0.1160161 0.06429595 +0.1862481 0.1160161 0.06429595 +0.2140411 0.1160161 0.06429595 +0.2441142 0.1160161 0.06429595 +0.2765176 0.1160161 0.06429595 +0.3113005 0.1160161 0.06429595 +0.3485102 0.1160161 0.06429595 +0.388193 0.1160161 0.06429595 +0.4303934 0.1160161 0.06429595 +0.4751555 0.1160161 0.06429595 +0.5225216 0.1160161 0.06429595 +0.5725335 0.1160161 0.06429595 +0.6252316 0.1160161 0.06429595 +0.6806558 0.1160161 0.06429595 +0.7388448 0.1160161 0.06429595 +0.7998369 0.1160161 0.06429595 +0.8636691 0.1160161 0.06429595 +0.9303782 0.1160161 0.06429595 +1 0.1160161 0.06429595 +0 0.1372908 0.06429595 +0.002418731 0.1372908 0.06429595 +0.005155668 0.1372908 0.06429595 +0.009080105 0.1372908 0.06429595 +0.01434988 0.1372908 0.06429595 +0.02107202 0.1372908 0.06429595 +0.02934285 0.1372908 0.06429595 +0.03925039 0.1372908 0.06429595 +0.05087609 0.1372908 0.06429595 +0.06429595 0.1372908 0.06429595 +0.07958143 0.1372908 0.06429595 +0.0968001 0.1372908 0.06429595 +0.1160161 0.1372908 0.06429595 +0.1372908 0.1372908 0.06429595 +0.1606827 0.1372908 0.06429595 +0.1862481 0.1372908 0.06429595 +0.2140411 0.1372908 0.06429595 +0.2441142 0.1372908 0.06429595 +0.2765176 0.1372908 0.06429595 +0.3113005 0.1372908 0.06429595 +0.3485102 0.1372908 0.06429595 +0.388193 0.1372908 0.06429595 +0.4303934 0.1372908 0.06429595 +0.4751555 0.1372908 0.06429595 +0.5225216 0.1372908 0.06429595 +0.5725335 0.1372908 0.06429595 +0.6252316 0.1372908 0.06429595 +0.6806558 0.1372908 0.06429595 +0.7388448 0.1372908 0.06429595 +0.7998369 0.1372908 0.06429595 +0.8636691 0.1372908 0.06429595 +0.9303782 0.1372908 0.06429595 +1 0.1372908 0.06429595 +0 0.1606827 0.06429595 +0.002418731 0.1606827 0.06429595 +0.005155668 0.1606827 0.06429595 +0.009080105 0.1606827 0.06429595 +0.01434988 0.1606827 0.06429595 +0.02107202 0.1606827 0.06429595 +0.02934285 0.1606827 0.06429595 +0.03925039 0.1606827 0.06429595 +0.05087609 0.1606827 0.06429595 +0.06429595 0.1606827 0.06429595 +0.07958143 0.1606827 0.06429595 +0.0968001 0.1606827 0.06429595 +0.1160161 0.1606827 0.06429595 +0.1372908 0.1606827 0.06429595 +0.1606827 0.1606827 0.06429595 +0.1862481 0.1606827 0.06429595 +0.2140411 0.1606827 0.06429595 +0.2441142 0.1606827 0.06429595 +0.2765176 0.1606827 0.06429595 +0.3113005 0.1606827 0.06429595 +0.3485102 0.1606827 0.06429595 +0.388193 0.1606827 0.06429595 +0.4303934 0.1606827 0.06429595 +0.4751555 0.1606827 0.06429595 +0.5225216 0.1606827 0.06429595 +0.5725335 0.1606827 0.06429595 +0.6252316 0.1606827 0.06429595 +0.6806558 0.1606827 0.06429595 +0.7388448 0.1606827 0.06429595 +0.7998369 0.1606827 0.06429595 +0.8636691 0.1606827 0.06429595 +0.9303782 0.1606827 0.06429595 +1 0.1606827 0.06429595 +0 0.1862481 0.06429595 +0.002418731 0.1862481 0.06429595 +0.005155668 0.1862481 0.06429595 +0.009080105 0.1862481 0.06429595 +0.01434988 0.1862481 0.06429595 +0.02107202 0.1862481 0.06429595 +0.02934285 0.1862481 0.06429595 +0.03925039 0.1862481 0.06429595 +0.05087609 0.1862481 0.06429595 +0.06429595 0.1862481 0.06429595 +0.07958143 0.1862481 0.06429595 +0.0968001 0.1862481 0.06429595 +0.1160161 0.1862481 0.06429595 +0.1372908 0.1862481 0.06429595 +0.1606827 0.1862481 0.06429595 +0.1862481 0.1862481 0.06429595 +0.2140411 0.1862481 0.06429595 +0.2441142 0.1862481 0.06429595 +0.2765176 0.1862481 0.06429595 +0.3113005 0.1862481 0.06429595 +0.3485102 0.1862481 0.06429595 +0.388193 0.1862481 0.06429595 +0.4303934 0.1862481 0.06429595 +0.4751555 0.1862481 0.06429595 +0.5225216 0.1862481 0.06429595 +0.5725335 0.1862481 0.06429595 +0.6252316 0.1862481 0.06429595 +0.6806558 0.1862481 0.06429595 +0.7388448 0.1862481 0.06429595 +0.7998369 0.1862481 0.06429595 +0.8636691 0.1862481 0.06429595 +0.9303782 0.1862481 0.06429595 +1 0.1862481 0.06429595 +0 0.2140411 0.06429595 +0.002418731 0.2140411 0.06429595 +0.005155668 0.2140411 0.06429595 +0.009080105 0.2140411 0.06429595 +0.01434988 0.2140411 0.06429595 +0.02107202 0.2140411 0.06429595 +0.02934285 0.2140411 0.06429595 +0.03925039 0.2140411 0.06429595 +0.05087609 0.2140411 0.06429595 +0.06429595 0.2140411 0.06429595 +0.07958143 0.2140411 0.06429595 +0.0968001 0.2140411 0.06429595 +0.1160161 0.2140411 0.06429595 +0.1372908 0.2140411 0.06429595 +0.1606827 0.2140411 0.06429595 +0.1862481 0.2140411 0.06429595 +0.2140411 0.2140411 0.06429595 +0.2441142 0.2140411 0.06429595 +0.2765176 0.2140411 0.06429595 +0.3113005 0.2140411 0.06429595 +0.3485102 0.2140411 0.06429595 +0.388193 0.2140411 0.06429595 +0.4303934 0.2140411 0.06429595 +0.4751555 0.2140411 0.06429595 +0.5225216 0.2140411 0.06429595 +0.5725335 0.2140411 0.06429595 +0.6252316 0.2140411 0.06429595 +0.6806558 0.2140411 0.06429595 +0.7388448 0.2140411 0.06429595 +0.7998369 0.2140411 0.06429595 +0.8636691 0.2140411 0.06429595 +0.9303782 0.2140411 0.06429595 +1 0.2140411 0.06429595 +0 0.2441142 0.06429595 +0.002418731 0.2441142 0.06429595 +0.005155668 0.2441142 0.06429595 +0.009080105 0.2441142 0.06429595 +0.01434988 0.2441142 0.06429595 +0.02107202 0.2441142 0.06429595 +0.02934285 0.2441142 0.06429595 +0.03925039 0.2441142 0.06429595 +0.05087609 0.2441142 0.06429595 +0.06429595 0.2441142 0.06429595 +0.07958143 0.2441142 0.06429595 +0.0968001 0.2441142 0.06429595 +0.1160161 0.2441142 0.06429595 +0.1372908 0.2441142 0.06429595 +0.1606827 0.2441142 0.06429595 +0.1862481 0.2441142 0.06429595 +0.2140411 0.2441142 0.06429595 +0.2441142 0.2441142 0.06429595 +0.2765176 0.2441142 0.06429595 +0.3113005 0.2441142 0.06429595 +0.3485102 0.2441142 0.06429595 +0.388193 0.2441142 0.06429595 +0.4303934 0.2441142 0.06429595 +0.4751555 0.2441142 0.06429595 +0.5225216 0.2441142 0.06429595 +0.5725335 0.2441142 0.06429595 +0.6252316 0.2441142 0.06429595 +0.6806558 0.2441142 0.06429595 +0.7388448 0.2441142 0.06429595 +0.7998369 0.2441142 0.06429595 +0.8636691 0.2441142 0.06429595 +0.9303782 0.2441142 0.06429595 +1 0.2441142 0.06429595 +0 0.2765176 0.06429595 +0.002418731 0.2765176 0.06429595 +0.005155668 0.2765176 0.06429595 +0.009080105 0.2765176 0.06429595 +0.01434988 0.2765176 0.06429595 +0.02107202 0.2765176 0.06429595 +0.02934285 0.2765176 0.06429595 +0.03925039 0.2765176 0.06429595 +0.05087609 0.2765176 0.06429595 +0.06429595 0.2765176 0.06429595 +0.07958143 0.2765176 0.06429595 +0.0968001 0.2765176 0.06429595 +0.1160161 0.2765176 0.06429595 +0.1372908 0.2765176 0.06429595 +0.1606827 0.2765176 0.06429595 +0.1862481 0.2765176 0.06429595 +0.2140411 0.2765176 0.06429595 +0.2441142 0.2765176 0.06429595 +0.2765176 0.2765176 0.06429595 +0.3113005 0.2765176 0.06429595 +0.3485102 0.2765176 0.06429595 +0.388193 0.2765176 0.06429595 +0.4303934 0.2765176 0.06429595 +0.4751555 0.2765176 0.06429595 +0.5225216 0.2765176 0.06429595 +0.5725335 0.2765176 0.06429595 +0.6252316 0.2765176 0.06429595 +0.6806558 0.2765176 0.06429595 +0.7388448 0.2765176 0.06429595 +0.7998369 0.2765176 0.06429595 +0.8636691 0.2765176 0.06429595 +0.9303782 0.2765176 0.06429595 +1 0.2765176 0.06429595 +0 0.3113005 0.06429595 +0.002418731 0.3113005 0.06429595 +0.005155668 0.3113005 0.06429595 +0.009080105 0.3113005 0.06429595 +0.01434988 0.3113005 0.06429595 +0.02107202 0.3113005 0.06429595 +0.02934285 0.3113005 0.06429595 +0.03925039 0.3113005 0.06429595 +0.05087609 0.3113005 0.06429595 +0.06429595 0.3113005 0.06429595 +0.07958143 0.3113005 0.06429595 +0.0968001 0.3113005 0.06429595 +0.1160161 0.3113005 0.06429595 +0.1372908 0.3113005 0.06429595 +0.1606827 0.3113005 0.06429595 +0.1862481 0.3113005 0.06429595 +0.2140411 0.3113005 0.06429595 +0.2441142 0.3113005 0.06429595 +0.2765176 0.3113005 0.06429595 +0.3113005 0.3113005 0.06429595 +0.3485102 0.3113005 0.06429595 +0.388193 0.3113005 0.06429595 +0.4303934 0.3113005 0.06429595 +0.4751555 0.3113005 0.06429595 +0.5225216 0.3113005 0.06429595 +0.5725335 0.3113005 0.06429595 +0.6252316 0.3113005 0.06429595 +0.6806558 0.3113005 0.06429595 +0.7388448 0.3113005 0.06429595 +0.7998369 0.3113005 0.06429595 +0.8636691 0.3113005 0.06429595 +0.9303782 0.3113005 0.06429595 +1 0.3113005 0.06429595 +0 0.3485102 0.06429595 +0.002418731 0.3485102 0.06429595 +0.005155668 0.3485102 0.06429595 +0.009080105 0.3485102 0.06429595 +0.01434988 0.3485102 0.06429595 +0.02107202 0.3485102 0.06429595 +0.02934285 0.3485102 0.06429595 +0.03925039 0.3485102 0.06429595 +0.05087609 0.3485102 0.06429595 +0.06429595 0.3485102 0.06429595 +0.07958143 0.3485102 0.06429595 +0.0968001 0.3485102 0.06429595 +0.1160161 0.3485102 0.06429595 +0.1372908 0.3485102 0.06429595 +0.1606827 0.3485102 0.06429595 +0.1862481 0.3485102 0.06429595 +0.2140411 0.3485102 0.06429595 +0.2441142 0.3485102 0.06429595 +0.2765176 0.3485102 0.06429595 +0.3113005 0.3485102 0.06429595 +0.3485102 0.3485102 0.06429595 +0.388193 0.3485102 0.06429595 +0.4303934 0.3485102 0.06429595 +0.4751555 0.3485102 0.06429595 +0.5225216 0.3485102 0.06429595 +0.5725335 0.3485102 0.06429595 +0.6252316 0.3485102 0.06429595 +0.6806558 0.3485102 0.06429595 +0.7388448 0.3485102 0.06429595 +0.7998369 0.3485102 0.06429595 +0.8636691 0.3485102 0.06429595 +0.9303782 0.3485102 0.06429595 +1 0.3485102 0.06429595 +0 0.388193 0.06429595 +0.002418731 0.388193 0.06429595 +0.005155668 0.388193 0.06429595 +0.009080105 0.388193 0.06429595 +0.01434988 0.388193 0.06429595 +0.02107202 0.388193 0.06429595 +0.02934285 0.388193 0.06429595 +0.03925039 0.388193 0.06429595 +0.05087609 0.388193 0.06429595 +0.06429595 0.388193 0.06429595 +0.07958143 0.388193 0.06429595 +0.0968001 0.388193 0.06429595 +0.1160161 0.388193 0.06429595 +0.1372908 0.388193 0.06429595 +0.1606827 0.388193 0.06429595 +0.1862481 0.388193 0.06429595 +0.2140411 0.388193 0.06429595 +0.2441142 0.388193 0.06429595 +0.2765176 0.388193 0.06429595 +0.3113005 0.388193 0.06429595 +0.3485102 0.388193 0.06429595 +0.388193 0.388193 0.06429595 +0.4303934 0.388193 0.06429595 +0.4751555 0.388193 0.06429595 +0.5225216 0.388193 0.06429595 +0.5725335 0.388193 0.06429595 +0.6252316 0.388193 0.06429595 +0.6806558 0.388193 0.06429595 +0.7388448 0.388193 0.06429595 +0.7998369 0.388193 0.06429595 +0.8636691 0.388193 0.06429595 +0.9303782 0.388193 0.06429595 +1 0.388193 0.06429595 +0 0.4303934 0.06429595 +0.002418731 0.4303934 0.06429595 +0.005155668 0.4303934 0.06429595 +0.009080105 0.4303934 0.06429595 +0.01434988 0.4303934 0.06429595 +0.02107202 0.4303934 0.06429595 +0.02934285 0.4303934 0.06429595 +0.03925039 0.4303934 0.06429595 +0.05087609 0.4303934 0.06429595 +0.06429595 0.4303934 0.06429595 +0.07958143 0.4303934 0.06429595 +0.0968001 0.4303934 0.06429595 +0.1160161 0.4303934 0.06429595 +0.1372908 0.4303934 0.06429595 +0.1606827 0.4303934 0.06429595 +0.1862481 0.4303934 0.06429595 +0.2140411 0.4303934 0.06429595 +0.2441142 0.4303934 0.06429595 +0.2765176 0.4303934 0.06429595 +0.3113005 0.4303934 0.06429595 +0.3485102 0.4303934 0.06429595 +0.388193 0.4303934 0.06429595 +0.4303934 0.4303934 0.06429595 +0.4751555 0.4303934 0.06429595 +0.5225216 0.4303934 0.06429595 +0.5725335 0.4303934 0.06429595 +0.6252316 0.4303934 0.06429595 +0.6806558 0.4303934 0.06429595 +0.7388448 0.4303934 0.06429595 +0.7998369 0.4303934 0.06429595 +0.8636691 0.4303934 0.06429595 +0.9303782 0.4303934 0.06429595 +1 0.4303934 0.06429595 +0 0.4751555 0.06429595 +0.002418731 0.4751555 0.06429595 +0.005155668 0.4751555 0.06429595 +0.009080105 0.4751555 0.06429595 +0.01434988 0.4751555 0.06429595 +0.02107202 0.4751555 0.06429595 +0.02934285 0.4751555 0.06429595 +0.03925039 0.4751555 0.06429595 +0.05087609 0.4751555 0.06429595 +0.06429595 0.4751555 0.06429595 +0.07958143 0.4751555 0.06429595 +0.0968001 0.4751555 0.06429595 +0.1160161 0.4751555 0.06429595 +0.1372908 0.4751555 0.06429595 +0.1606827 0.4751555 0.06429595 +0.1862481 0.4751555 0.06429595 +0.2140411 0.4751555 0.06429595 +0.2441142 0.4751555 0.06429595 +0.2765176 0.4751555 0.06429595 +0.3113005 0.4751555 0.06429595 +0.3485102 0.4751555 0.06429595 +0.388193 0.4751555 0.06429595 +0.4303934 0.4751555 0.06429595 +0.4751555 0.4751555 0.06429595 +0.5225216 0.4751555 0.06429595 +0.5725335 0.4751555 0.06429595 +0.6252316 0.4751555 0.06429595 +0.6806558 0.4751555 0.06429595 +0.7388448 0.4751555 0.06429595 +0.7998369 0.4751555 0.06429595 +0.8636691 0.4751555 0.06429595 +0.9303782 0.4751555 0.06429595 +1 0.4751555 0.06429595 +0 0.5225216 0.06429595 +0.002418731 0.5225216 0.06429595 +0.005155668 0.5225216 0.06429595 +0.009080105 0.5225216 0.06429595 +0.01434988 0.5225216 0.06429595 +0.02107202 0.5225216 0.06429595 +0.02934285 0.5225216 0.06429595 +0.03925039 0.5225216 0.06429595 +0.05087609 0.5225216 0.06429595 +0.06429595 0.5225216 0.06429595 +0.07958143 0.5225216 0.06429595 +0.0968001 0.5225216 0.06429595 +0.1160161 0.5225216 0.06429595 +0.1372908 0.5225216 0.06429595 +0.1606827 0.5225216 0.06429595 +0.1862481 0.5225216 0.06429595 +0.2140411 0.5225216 0.06429595 +0.2441142 0.5225216 0.06429595 +0.2765176 0.5225216 0.06429595 +0.3113005 0.5225216 0.06429595 +0.3485102 0.5225216 0.06429595 +0.388193 0.5225216 0.06429595 +0.4303934 0.5225216 0.06429595 +0.4751555 0.5225216 0.06429595 +0.5225216 0.5225216 0.06429595 +0.5725335 0.5225216 0.06429595 +0.6252316 0.5225216 0.06429595 +0.6806558 0.5225216 0.06429595 +0.7388448 0.5225216 0.06429595 +0.7998369 0.5225216 0.06429595 +0.8636691 0.5225216 0.06429595 +0.9303782 0.5225216 0.06429595 +1 0.5225216 0.06429595 +0 0.5725335 0.06429595 +0.002418731 0.5725335 0.06429595 +0.005155668 0.5725335 0.06429595 +0.009080105 0.5725335 0.06429595 +0.01434988 0.5725335 0.06429595 +0.02107202 0.5725335 0.06429595 +0.02934285 0.5725335 0.06429595 +0.03925039 0.5725335 0.06429595 +0.05087609 0.5725335 0.06429595 +0.06429595 0.5725335 0.06429595 +0.07958143 0.5725335 0.06429595 +0.0968001 0.5725335 0.06429595 +0.1160161 0.5725335 0.06429595 +0.1372908 0.5725335 0.06429595 +0.1606827 0.5725335 0.06429595 +0.1862481 0.5725335 0.06429595 +0.2140411 0.5725335 0.06429595 +0.2441142 0.5725335 0.06429595 +0.2765176 0.5725335 0.06429595 +0.3113005 0.5725335 0.06429595 +0.3485102 0.5725335 0.06429595 +0.388193 0.5725335 0.06429595 +0.4303934 0.5725335 0.06429595 +0.4751555 0.5725335 0.06429595 +0.5225216 0.5725335 0.06429595 +0.5725335 0.5725335 0.06429595 +0.6252316 0.5725335 0.06429595 +0.6806558 0.5725335 0.06429595 +0.7388448 0.5725335 0.06429595 +0.7998369 0.5725335 0.06429595 +0.8636691 0.5725335 0.06429595 +0.9303782 0.5725335 0.06429595 +1 0.5725335 0.06429595 +0 0.6252316 0.06429595 +0.002418731 0.6252316 0.06429595 +0.005155668 0.6252316 0.06429595 +0.009080105 0.6252316 0.06429595 +0.01434988 0.6252316 0.06429595 +0.02107202 0.6252316 0.06429595 +0.02934285 0.6252316 0.06429595 +0.03925039 0.6252316 0.06429595 +0.05087609 0.6252316 0.06429595 +0.06429595 0.6252316 0.06429595 +0.07958143 0.6252316 0.06429595 +0.0968001 0.6252316 0.06429595 +0.1160161 0.6252316 0.06429595 +0.1372908 0.6252316 0.06429595 +0.1606827 0.6252316 0.06429595 +0.1862481 0.6252316 0.06429595 +0.2140411 0.6252316 0.06429595 +0.2441142 0.6252316 0.06429595 +0.2765176 0.6252316 0.06429595 +0.3113005 0.6252316 0.06429595 +0.3485102 0.6252316 0.06429595 +0.388193 0.6252316 0.06429595 +0.4303934 0.6252316 0.06429595 +0.4751555 0.6252316 0.06429595 +0.5225216 0.6252316 0.06429595 +0.5725335 0.6252316 0.06429595 +0.6252316 0.6252316 0.06429595 +0.6806558 0.6252316 0.06429595 +0.7388448 0.6252316 0.06429595 +0.7998369 0.6252316 0.06429595 +0.8636691 0.6252316 0.06429595 +0.9303782 0.6252316 0.06429595 +1 0.6252316 0.06429595 +0 0.6806558 0.06429595 +0.002418731 0.6806558 0.06429595 +0.005155668 0.6806558 0.06429595 +0.009080105 0.6806558 0.06429595 +0.01434988 0.6806558 0.06429595 +0.02107202 0.6806558 0.06429595 +0.02934285 0.6806558 0.06429595 +0.03925039 0.6806558 0.06429595 +0.05087609 0.6806558 0.06429595 +0.06429595 0.6806558 0.06429595 +0.07958143 0.6806558 0.06429595 +0.0968001 0.6806558 0.06429595 +0.1160161 0.6806558 0.06429595 +0.1372908 0.6806558 0.06429595 +0.1606827 0.6806558 0.06429595 +0.1862481 0.6806558 0.06429595 +0.2140411 0.6806558 0.06429595 +0.2441142 0.6806558 0.06429595 +0.2765176 0.6806558 0.06429595 +0.3113005 0.6806558 0.06429595 +0.3485102 0.6806558 0.06429595 +0.388193 0.6806558 0.06429595 +0.4303934 0.6806558 0.06429595 +0.4751555 0.6806558 0.06429595 +0.5225216 0.6806558 0.06429595 +0.5725335 0.6806558 0.06429595 +0.6252316 0.6806558 0.06429595 +0.6806558 0.6806558 0.06429595 +0.7388448 0.6806558 0.06429595 +0.7998369 0.6806558 0.06429595 +0.8636691 0.6806558 0.06429595 +0.9303782 0.6806558 0.06429595 +1 0.6806558 0.06429595 +0 0.7388448 0.06429595 +0.002418731 0.7388448 0.06429595 +0.005155668 0.7388448 0.06429595 +0.009080105 0.7388448 0.06429595 +0.01434988 0.7388448 0.06429595 +0.02107202 0.7388448 0.06429595 +0.02934285 0.7388448 0.06429595 +0.03925039 0.7388448 0.06429595 +0.05087609 0.7388448 0.06429595 +0.06429595 0.7388448 0.06429595 +0.07958143 0.7388448 0.06429595 +0.0968001 0.7388448 0.06429595 +0.1160161 0.7388448 0.06429595 +0.1372908 0.7388448 0.06429595 +0.1606827 0.7388448 0.06429595 +0.1862481 0.7388448 0.06429595 +0.2140411 0.7388448 0.06429595 +0.2441142 0.7388448 0.06429595 +0.2765176 0.7388448 0.06429595 +0.3113005 0.7388448 0.06429595 +0.3485102 0.7388448 0.06429595 +0.388193 0.7388448 0.06429595 +0.4303934 0.7388448 0.06429595 +0.4751555 0.7388448 0.06429595 +0.5225216 0.7388448 0.06429595 +0.5725335 0.7388448 0.06429595 +0.6252316 0.7388448 0.06429595 +0.6806558 0.7388448 0.06429595 +0.7388448 0.7388448 0.06429595 +0.7998369 0.7388448 0.06429595 +0.8636691 0.7388448 0.06429595 +0.9303782 0.7388448 0.06429595 +1 0.7388448 0.06429595 +0 0.7998369 0.06429595 +0.002418731 0.7998369 0.06429595 +0.005155668 0.7998369 0.06429595 +0.009080105 0.7998369 0.06429595 +0.01434988 0.7998369 0.06429595 +0.02107202 0.7998369 0.06429595 +0.02934285 0.7998369 0.06429595 +0.03925039 0.7998369 0.06429595 +0.05087609 0.7998369 0.06429595 +0.06429595 0.7998369 0.06429595 +0.07958143 0.7998369 0.06429595 +0.0968001 0.7998369 0.06429595 +0.1160161 0.7998369 0.06429595 +0.1372908 0.7998369 0.06429595 +0.1606827 0.7998369 0.06429595 +0.1862481 0.7998369 0.06429595 +0.2140411 0.7998369 0.06429595 +0.2441142 0.7998369 0.06429595 +0.2765176 0.7998369 0.06429595 +0.3113005 0.7998369 0.06429595 +0.3485102 0.7998369 0.06429595 +0.388193 0.7998369 0.06429595 +0.4303934 0.7998369 0.06429595 +0.4751555 0.7998369 0.06429595 +0.5225216 0.7998369 0.06429595 +0.5725335 0.7998369 0.06429595 +0.6252316 0.7998369 0.06429595 +0.6806558 0.7998369 0.06429595 +0.7388448 0.7998369 0.06429595 +0.7998369 0.7998369 0.06429595 +0.8636691 0.7998369 0.06429595 +0.9303782 0.7998369 0.06429595 +1 0.7998369 0.06429595 +0 0.8636691 0.06429595 +0.002418731 0.8636691 0.06429595 +0.005155668 0.8636691 0.06429595 +0.009080105 0.8636691 0.06429595 +0.01434988 0.8636691 0.06429595 +0.02107202 0.8636691 0.06429595 +0.02934285 0.8636691 0.06429595 +0.03925039 0.8636691 0.06429595 +0.05087609 0.8636691 0.06429595 +0.06429595 0.8636691 0.06429595 +0.07958143 0.8636691 0.06429595 +0.0968001 0.8636691 0.06429595 +0.1160161 0.8636691 0.06429595 +0.1372908 0.8636691 0.06429595 +0.1606827 0.8636691 0.06429595 +0.1862481 0.8636691 0.06429595 +0.2140411 0.8636691 0.06429595 +0.2441142 0.8636691 0.06429595 +0.2765176 0.8636691 0.06429595 +0.3113005 0.8636691 0.06429595 +0.3485102 0.8636691 0.06429595 +0.388193 0.8636691 0.06429595 +0.4303934 0.8636691 0.06429595 +0.4751555 0.8636691 0.06429595 +0.5225216 0.8636691 0.06429595 +0.5725335 0.8636691 0.06429595 +0.6252316 0.8636691 0.06429595 +0.6806558 0.8636691 0.06429595 +0.7388448 0.8636691 0.06429595 +0.7998369 0.8636691 0.06429595 +0.8636691 0.8636691 0.06429595 +0.9303782 0.8636691 0.06429595 +1 0.8636691 0.06429595 +0 0.9303782 0.06429595 +0.002418731 0.9303782 0.06429595 +0.005155668 0.9303782 0.06429595 +0.009080105 0.9303782 0.06429595 +0.01434988 0.9303782 0.06429595 +0.02107202 0.9303782 0.06429595 +0.02934285 0.9303782 0.06429595 +0.03925039 0.9303782 0.06429595 +0.05087609 0.9303782 0.06429595 +0.06429595 0.9303782 0.06429595 +0.07958143 0.9303782 0.06429595 +0.0968001 0.9303782 0.06429595 +0.1160161 0.9303782 0.06429595 +0.1372908 0.9303782 0.06429595 +0.1606827 0.9303782 0.06429595 +0.1862481 0.9303782 0.06429595 +0.2140411 0.9303782 0.06429595 +0.2441142 0.9303782 0.06429595 +0.2765176 0.9303782 0.06429595 +0.3113005 0.9303782 0.06429595 +0.3485102 0.9303782 0.06429595 +0.388193 0.9303782 0.06429595 +0.4303934 0.9303782 0.06429595 +0.4751555 0.9303782 0.06429595 +0.5225216 0.9303782 0.06429595 +0.5725335 0.9303782 0.06429595 +0.6252316 0.9303782 0.06429595 +0.6806558 0.9303782 0.06429595 +0.7388448 0.9303782 0.06429595 +0.7998369 0.9303782 0.06429595 +0.8636691 0.9303782 0.06429595 +0.9303782 0.9303782 0.06429595 +1 0.9303782 0.06429595 +0 1 0.06429595 +0.002418731 1 0.06429595 +0.005155668 1 0.06429595 +0.009080105 1 0.06429595 +0.01434988 1 0.06429595 +0.02107202 1 0.06429595 +0.02934285 1 0.06429595 +0.03925039 1 0.06429595 +0.05087609 1 0.06429595 +0.06429595 1 0.06429595 +0.07958143 1 0.06429595 +0.0968001 1 0.06429595 +0.1160161 1 0.06429595 +0.1372908 1 0.06429595 +0.1606827 1 0.06429595 +0.1862481 1 0.06429595 +0.2140411 1 0.06429595 +0.2441142 1 0.06429595 +0.2765176 1 0.06429595 +0.3113005 1 0.06429595 +0.3485102 1 0.06429595 +0.388193 1 0.06429595 +0.4303934 1 0.06429595 +0.4751555 1 0.06429595 +0.5225216 1 0.06429595 +0.5725335 1 0.06429595 +0.6252316 1 0.06429595 +0.6806558 1 0.06429595 +0.7388448 1 0.06429595 +0.7998369 1 0.06429595 +0.8636691 1 0.06429595 +0.9303782 1 0.06429595 +1 1 0.06429595 +0 0 0.07958143 +0.002418731 0 0.07958143 +0.005155668 0 0.07958143 +0.009080105 0 0.07958143 +0.01434988 0 0.07958143 +0.02107202 0 0.07958143 +0.02934285 0 0.07958143 +0.03925039 0 0.07958143 +0.05087609 0 0.07958143 +0.06429595 0 0.07958143 +0.07958143 0 0.07958143 +0.0968001 0 0.07958143 +0.1160161 0 0.07958143 +0.1372908 0 0.07958143 +0.1606827 0 0.07958143 +0.1862481 0 0.07958143 +0.2140411 0 0.07958143 +0.2441142 0 0.07958143 +0.2765176 0 0.07958143 +0.3113005 0 0.07958143 +0.3485102 0 0.07958143 +0.388193 0 0.07958143 +0.4303934 0 0.07958143 +0.4751555 0 0.07958143 +0.5225216 0 0.07958143 +0.5725335 0 0.07958143 +0.6252316 0 0.07958143 +0.6806558 0 0.07958143 +0.7388448 0 0.07958143 +0.7998369 0 0.07958143 +0.8636691 0 0.07958143 +0.9303782 0 0.07958143 +1 0 0.07958143 +0 0.002418731 0.07958143 +0.002418731 0.002418731 0.07958143 +0.005155668 0.002418731 0.07958143 +0.009080105 0.002418731 0.07958143 +0.01434988 0.002418731 0.07958143 +0.02107202 0.002418731 0.07958143 +0.02934285 0.002418731 0.07958143 +0.03925039 0.002418731 0.07958143 +0.05087609 0.002418731 0.07958143 +0.06429595 0.002418731 0.07958143 +0.07958143 0.002418731 0.07958143 +0.0968001 0.002418731 0.07958143 +0.1160161 0.002418731 0.07958143 +0.1372908 0.002418731 0.07958143 +0.1606827 0.002418731 0.07958143 +0.1862481 0.002418731 0.07958143 +0.2140411 0.002418731 0.07958143 +0.2441142 0.002418731 0.07958143 +0.2765176 0.002418731 0.07958143 +0.3113005 0.002418731 0.07958143 +0.3485102 0.002418731 0.07958143 +0.388193 0.002418731 0.07958143 +0.4303934 0.002418731 0.07958143 +0.4751555 0.002418731 0.07958143 +0.5225216 0.002418731 0.07958143 +0.5725335 0.002418731 0.07958143 +0.6252316 0.002418731 0.07958143 +0.6806558 0.002418731 0.07958143 +0.7388448 0.002418731 0.07958143 +0.7998369 0.002418731 0.07958143 +0.8636691 0.002418731 0.07958143 +0.9303782 0.002418731 0.07958143 +1 0.002418731 0.07958143 +0 0.005155668 0.07958143 +0.002418731 0.005155668 0.07958143 +0.005155668 0.005155668 0.07958143 +0.009080105 0.005155668 0.07958143 +0.01434988 0.005155668 0.07958143 +0.02107202 0.005155668 0.07958143 +0.02934285 0.005155668 0.07958143 +0.03925039 0.005155668 0.07958143 +0.05087609 0.005155668 0.07958143 +0.06429595 0.005155668 0.07958143 +0.07958143 0.005155668 0.07958143 +0.0968001 0.005155668 0.07958143 +0.1160161 0.005155668 0.07958143 +0.1372908 0.005155668 0.07958143 +0.1606827 0.005155668 0.07958143 +0.1862481 0.005155668 0.07958143 +0.2140411 0.005155668 0.07958143 +0.2441142 0.005155668 0.07958143 +0.2765176 0.005155668 0.07958143 +0.3113005 0.005155668 0.07958143 +0.3485102 0.005155668 0.07958143 +0.388193 0.005155668 0.07958143 +0.4303934 0.005155668 0.07958143 +0.4751555 0.005155668 0.07958143 +0.5225216 0.005155668 0.07958143 +0.5725335 0.005155668 0.07958143 +0.6252316 0.005155668 0.07958143 +0.6806558 0.005155668 0.07958143 +0.7388448 0.005155668 0.07958143 +0.7998369 0.005155668 0.07958143 +0.8636691 0.005155668 0.07958143 +0.9303782 0.005155668 0.07958143 +1 0.005155668 0.07958143 +0 0.009080105 0.07958143 +0.002418731 0.009080105 0.07958143 +0.005155668 0.009080105 0.07958143 +0.009080105 0.009080105 0.07958143 +0.01434988 0.009080105 0.07958143 +0.02107202 0.009080105 0.07958143 +0.02934285 0.009080105 0.07958143 +0.03925039 0.009080105 0.07958143 +0.05087609 0.009080105 0.07958143 +0.06429595 0.009080105 0.07958143 +0.07958143 0.009080105 0.07958143 +0.0968001 0.009080105 0.07958143 +0.1160161 0.009080105 0.07958143 +0.1372908 0.009080105 0.07958143 +0.1606827 0.009080105 0.07958143 +0.1862481 0.009080105 0.07958143 +0.2140411 0.009080105 0.07958143 +0.2441142 0.009080105 0.07958143 +0.2765176 0.009080105 0.07958143 +0.3113005 0.009080105 0.07958143 +0.3485102 0.009080105 0.07958143 +0.388193 0.009080105 0.07958143 +0.4303934 0.009080105 0.07958143 +0.4751555 0.009080105 0.07958143 +0.5225216 0.009080105 0.07958143 +0.5725335 0.009080105 0.07958143 +0.6252316 0.009080105 0.07958143 +0.6806558 0.009080105 0.07958143 +0.7388448 0.009080105 0.07958143 +0.7998369 0.009080105 0.07958143 +0.8636691 0.009080105 0.07958143 +0.9303782 0.009080105 0.07958143 +1 0.009080105 0.07958143 +0 0.01434988 0.07958143 +0.002418731 0.01434988 0.07958143 +0.005155668 0.01434988 0.07958143 +0.009080105 0.01434988 0.07958143 +0.01434988 0.01434988 0.07958143 +0.02107202 0.01434988 0.07958143 +0.02934285 0.01434988 0.07958143 +0.03925039 0.01434988 0.07958143 +0.05087609 0.01434988 0.07958143 +0.06429595 0.01434988 0.07958143 +0.07958143 0.01434988 0.07958143 +0.0968001 0.01434988 0.07958143 +0.1160161 0.01434988 0.07958143 +0.1372908 0.01434988 0.07958143 +0.1606827 0.01434988 0.07958143 +0.1862481 0.01434988 0.07958143 +0.2140411 0.01434988 0.07958143 +0.2441142 0.01434988 0.07958143 +0.2765176 0.01434988 0.07958143 +0.3113005 0.01434988 0.07958143 +0.3485102 0.01434988 0.07958143 +0.388193 0.01434988 0.07958143 +0.4303934 0.01434988 0.07958143 +0.4751555 0.01434988 0.07958143 +0.5225216 0.01434988 0.07958143 +0.5725335 0.01434988 0.07958143 +0.6252316 0.01434988 0.07958143 +0.6806558 0.01434988 0.07958143 +0.7388448 0.01434988 0.07958143 +0.7998369 0.01434988 0.07958143 +0.8636691 0.01434988 0.07958143 +0.9303782 0.01434988 0.07958143 +1 0.01434988 0.07958143 +0 0.02107202 0.07958143 +0.002418731 0.02107202 0.07958143 +0.005155668 0.02107202 0.07958143 +0.009080105 0.02107202 0.07958143 +0.01434988 0.02107202 0.07958143 +0.02107202 0.02107202 0.07958143 +0.02934285 0.02107202 0.07958143 +0.03925039 0.02107202 0.07958143 +0.05087609 0.02107202 0.07958143 +0.06429595 0.02107202 0.07958143 +0.07958143 0.02107202 0.07958143 +0.0968001 0.02107202 0.07958143 +0.1160161 0.02107202 0.07958143 +0.1372908 0.02107202 0.07958143 +0.1606827 0.02107202 0.07958143 +0.1862481 0.02107202 0.07958143 +0.2140411 0.02107202 0.07958143 +0.2441142 0.02107202 0.07958143 +0.2765176 0.02107202 0.07958143 +0.3113005 0.02107202 0.07958143 +0.3485102 0.02107202 0.07958143 +0.388193 0.02107202 0.07958143 +0.4303934 0.02107202 0.07958143 +0.4751555 0.02107202 0.07958143 +0.5225216 0.02107202 0.07958143 +0.5725335 0.02107202 0.07958143 +0.6252316 0.02107202 0.07958143 +0.6806558 0.02107202 0.07958143 +0.7388448 0.02107202 0.07958143 +0.7998369 0.02107202 0.07958143 +0.8636691 0.02107202 0.07958143 +0.9303782 0.02107202 0.07958143 +1 0.02107202 0.07958143 +0 0.02934285 0.07958143 +0.002418731 0.02934285 0.07958143 +0.005155668 0.02934285 0.07958143 +0.009080105 0.02934285 0.07958143 +0.01434988 0.02934285 0.07958143 +0.02107202 0.02934285 0.07958143 +0.02934285 0.02934285 0.07958143 +0.03925039 0.02934285 0.07958143 +0.05087609 0.02934285 0.07958143 +0.06429595 0.02934285 0.07958143 +0.07958143 0.02934285 0.07958143 +0.0968001 0.02934285 0.07958143 +0.1160161 0.02934285 0.07958143 +0.1372908 0.02934285 0.07958143 +0.1606827 0.02934285 0.07958143 +0.1862481 0.02934285 0.07958143 +0.2140411 0.02934285 0.07958143 +0.2441142 0.02934285 0.07958143 +0.2765176 0.02934285 0.07958143 +0.3113005 0.02934285 0.07958143 +0.3485102 0.02934285 0.07958143 +0.388193 0.02934285 0.07958143 +0.4303934 0.02934285 0.07958143 +0.4751555 0.02934285 0.07958143 +0.5225216 0.02934285 0.07958143 +0.5725335 0.02934285 0.07958143 +0.6252316 0.02934285 0.07958143 +0.6806558 0.02934285 0.07958143 +0.7388448 0.02934285 0.07958143 +0.7998369 0.02934285 0.07958143 +0.8636691 0.02934285 0.07958143 +0.9303782 0.02934285 0.07958143 +1 0.02934285 0.07958143 +0 0.03925039 0.07958143 +0.002418731 0.03925039 0.07958143 +0.005155668 0.03925039 0.07958143 +0.009080105 0.03925039 0.07958143 +0.01434988 0.03925039 0.07958143 +0.02107202 0.03925039 0.07958143 +0.02934285 0.03925039 0.07958143 +0.03925039 0.03925039 0.07958143 +0.05087609 0.03925039 0.07958143 +0.06429595 0.03925039 0.07958143 +0.07958143 0.03925039 0.07958143 +0.0968001 0.03925039 0.07958143 +0.1160161 0.03925039 0.07958143 +0.1372908 0.03925039 0.07958143 +0.1606827 0.03925039 0.07958143 +0.1862481 0.03925039 0.07958143 +0.2140411 0.03925039 0.07958143 +0.2441142 0.03925039 0.07958143 +0.2765176 0.03925039 0.07958143 +0.3113005 0.03925039 0.07958143 +0.3485102 0.03925039 0.07958143 +0.388193 0.03925039 0.07958143 +0.4303934 0.03925039 0.07958143 +0.4751555 0.03925039 0.07958143 +0.5225216 0.03925039 0.07958143 +0.5725335 0.03925039 0.07958143 +0.6252316 0.03925039 0.07958143 +0.6806558 0.03925039 0.07958143 +0.7388448 0.03925039 0.07958143 +0.7998369 0.03925039 0.07958143 +0.8636691 0.03925039 0.07958143 +0.9303782 0.03925039 0.07958143 +1 0.03925039 0.07958143 +0 0.05087609 0.07958143 +0.002418731 0.05087609 0.07958143 +0.005155668 0.05087609 0.07958143 +0.009080105 0.05087609 0.07958143 +0.01434988 0.05087609 0.07958143 +0.02107202 0.05087609 0.07958143 +0.02934285 0.05087609 0.07958143 +0.03925039 0.05087609 0.07958143 +0.05087609 0.05087609 0.07958143 +0.06429595 0.05087609 0.07958143 +0.07958143 0.05087609 0.07958143 +0.0968001 0.05087609 0.07958143 +0.1160161 0.05087609 0.07958143 +0.1372908 0.05087609 0.07958143 +0.1606827 0.05087609 0.07958143 +0.1862481 0.05087609 0.07958143 +0.2140411 0.05087609 0.07958143 +0.2441142 0.05087609 0.07958143 +0.2765176 0.05087609 0.07958143 +0.3113005 0.05087609 0.07958143 +0.3485102 0.05087609 0.07958143 +0.388193 0.05087609 0.07958143 +0.4303934 0.05087609 0.07958143 +0.4751555 0.05087609 0.07958143 +0.5225216 0.05087609 0.07958143 +0.5725335 0.05087609 0.07958143 +0.6252316 0.05087609 0.07958143 +0.6806558 0.05087609 0.07958143 +0.7388448 0.05087609 0.07958143 +0.7998369 0.05087609 0.07958143 +0.8636691 0.05087609 0.07958143 +0.9303782 0.05087609 0.07958143 +1 0.05087609 0.07958143 +0 0.06429595 0.07958143 +0.002418731 0.06429595 0.07958143 +0.005155668 0.06429595 0.07958143 +0.009080105 0.06429595 0.07958143 +0.01434988 0.06429595 0.07958143 +0.02107202 0.06429595 0.07958143 +0.02934285 0.06429595 0.07958143 +0.03925039 0.06429595 0.07958143 +0.05087609 0.06429595 0.07958143 +0.06429595 0.06429595 0.07958143 +0.07958143 0.06429595 0.07958143 +0.0968001 0.06429595 0.07958143 +0.1160161 0.06429595 0.07958143 +0.1372908 0.06429595 0.07958143 +0.1606827 0.06429595 0.07958143 +0.1862481 0.06429595 0.07958143 +0.2140411 0.06429595 0.07958143 +0.2441142 0.06429595 0.07958143 +0.2765176 0.06429595 0.07958143 +0.3113005 0.06429595 0.07958143 +0.3485102 0.06429595 0.07958143 +0.388193 0.06429595 0.07958143 +0.4303934 0.06429595 0.07958143 +0.4751555 0.06429595 0.07958143 +0.5225216 0.06429595 0.07958143 +0.5725335 0.06429595 0.07958143 +0.6252316 0.06429595 0.07958143 +0.6806558 0.06429595 0.07958143 +0.7388448 0.06429595 0.07958143 +0.7998369 0.06429595 0.07958143 +0.8636691 0.06429595 0.07958143 +0.9303782 0.06429595 0.07958143 +1 0.06429595 0.07958143 +0 0.07958143 0.07958143 +0.002418731 0.07958143 0.07958143 +0.005155668 0.07958143 0.07958143 +0.009080105 0.07958143 0.07958143 +0.01434988 0.07958143 0.07958143 +0.02107202 0.07958143 0.07958143 +0.02934285 0.07958143 0.07958143 +0.03925039 0.07958143 0.07958143 +0.05087609 0.07958143 0.07958143 +0.06429595 0.07958143 0.07958143 +0.07958143 0.07958143 0.07958143 +0.0968001 0.07958143 0.07958143 +0.1160161 0.07958143 0.07958143 +0.1372908 0.07958143 0.07958143 +0.1606827 0.07958143 0.07958143 +0.1862481 0.07958143 0.07958143 +0.2140411 0.07958143 0.07958143 +0.2441142 0.07958143 0.07958143 +0.2765176 0.07958143 0.07958143 +0.3113005 0.07958143 0.07958143 +0.3485102 0.07958143 0.07958143 +0.388193 0.07958143 0.07958143 +0.4303934 0.07958143 0.07958143 +0.4751555 0.07958143 0.07958143 +0.5225216 0.07958143 0.07958143 +0.5725335 0.07958143 0.07958143 +0.6252316 0.07958143 0.07958143 +0.6806558 0.07958143 0.07958143 +0.7388448 0.07958143 0.07958143 +0.7998369 0.07958143 0.07958143 +0.8636691 0.07958143 0.07958143 +0.9303782 0.07958143 0.07958143 +1 0.07958143 0.07958143 +0 0.0968001 0.07958143 +0.002418731 0.0968001 0.07958143 +0.005155668 0.0968001 0.07958143 +0.009080105 0.0968001 0.07958143 +0.01434988 0.0968001 0.07958143 +0.02107202 0.0968001 0.07958143 +0.02934285 0.0968001 0.07958143 +0.03925039 0.0968001 0.07958143 +0.05087609 0.0968001 0.07958143 +0.06429595 0.0968001 0.07958143 +0.07958143 0.0968001 0.07958143 +0.0968001 0.0968001 0.07958143 +0.1160161 0.0968001 0.07958143 +0.1372908 0.0968001 0.07958143 +0.1606827 0.0968001 0.07958143 +0.1862481 0.0968001 0.07958143 +0.2140411 0.0968001 0.07958143 +0.2441142 0.0968001 0.07958143 +0.2765176 0.0968001 0.07958143 +0.3113005 0.0968001 0.07958143 +0.3485102 0.0968001 0.07958143 +0.388193 0.0968001 0.07958143 +0.4303934 0.0968001 0.07958143 +0.4751555 0.0968001 0.07958143 +0.5225216 0.0968001 0.07958143 +0.5725335 0.0968001 0.07958143 +0.6252316 0.0968001 0.07958143 +0.6806558 0.0968001 0.07958143 +0.7388448 0.0968001 0.07958143 +0.7998369 0.0968001 0.07958143 +0.8636691 0.0968001 0.07958143 +0.9303782 0.0968001 0.07958143 +1 0.0968001 0.07958143 +0 0.1160161 0.07958143 +0.002418731 0.1160161 0.07958143 +0.005155668 0.1160161 0.07958143 +0.009080105 0.1160161 0.07958143 +0.01434988 0.1160161 0.07958143 +0.02107202 0.1160161 0.07958143 +0.02934285 0.1160161 0.07958143 +0.03925039 0.1160161 0.07958143 +0.05087609 0.1160161 0.07958143 +0.06429595 0.1160161 0.07958143 +0.07958143 0.1160161 0.07958143 +0.0968001 0.1160161 0.07958143 +0.1160161 0.1160161 0.07958143 +0.1372908 0.1160161 0.07958143 +0.1606827 0.1160161 0.07958143 +0.1862481 0.1160161 0.07958143 +0.2140411 0.1160161 0.07958143 +0.2441142 0.1160161 0.07958143 +0.2765176 0.1160161 0.07958143 +0.3113005 0.1160161 0.07958143 +0.3485102 0.1160161 0.07958143 +0.388193 0.1160161 0.07958143 +0.4303934 0.1160161 0.07958143 +0.4751555 0.1160161 0.07958143 +0.5225216 0.1160161 0.07958143 +0.5725335 0.1160161 0.07958143 +0.6252316 0.1160161 0.07958143 +0.6806558 0.1160161 0.07958143 +0.7388448 0.1160161 0.07958143 +0.7998369 0.1160161 0.07958143 +0.8636691 0.1160161 0.07958143 +0.9303782 0.1160161 0.07958143 +1 0.1160161 0.07958143 +0 0.1372908 0.07958143 +0.002418731 0.1372908 0.07958143 +0.005155668 0.1372908 0.07958143 +0.009080105 0.1372908 0.07958143 +0.01434988 0.1372908 0.07958143 +0.02107202 0.1372908 0.07958143 +0.02934285 0.1372908 0.07958143 +0.03925039 0.1372908 0.07958143 +0.05087609 0.1372908 0.07958143 +0.06429595 0.1372908 0.07958143 +0.07958143 0.1372908 0.07958143 +0.0968001 0.1372908 0.07958143 +0.1160161 0.1372908 0.07958143 +0.1372908 0.1372908 0.07958143 +0.1606827 0.1372908 0.07958143 +0.1862481 0.1372908 0.07958143 +0.2140411 0.1372908 0.07958143 +0.2441142 0.1372908 0.07958143 +0.2765176 0.1372908 0.07958143 +0.3113005 0.1372908 0.07958143 +0.3485102 0.1372908 0.07958143 +0.388193 0.1372908 0.07958143 +0.4303934 0.1372908 0.07958143 +0.4751555 0.1372908 0.07958143 +0.5225216 0.1372908 0.07958143 +0.5725335 0.1372908 0.07958143 +0.6252316 0.1372908 0.07958143 +0.6806558 0.1372908 0.07958143 +0.7388448 0.1372908 0.07958143 +0.7998369 0.1372908 0.07958143 +0.8636691 0.1372908 0.07958143 +0.9303782 0.1372908 0.07958143 +1 0.1372908 0.07958143 +0 0.1606827 0.07958143 +0.002418731 0.1606827 0.07958143 +0.005155668 0.1606827 0.07958143 +0.009080105 0.1606827 0.07958143 +0.01434988 0.1606827 0.07958143 +0.02107202 0.1606827 0.07958143 +0.02934285 0.1606827 0.07958143 +0.03925039 0.1606827 0.07958143 +0.05087609 0.1606827 0.07958143 +0.06429595 0.1606827 0.07958143 +0.07958143 0.1606827 0.07958143 +0.0968001 0.1606827 0.07958143 +0.1160161 0.1606827 0.07958143 +0.1372908 0.1606827 0.07958143 +0.1606827 0.1606827 0.07958143 +0.1862481 0.1606827 0.07958143 +0.2140411 0.1606827 0.07958143 +0.2441142 0.1606827 0.07958143 +0.2765176 0.1606827 0.07958143 +0.3113005 0.1606827 0.07958143 +0.3485102 0.1606827 0.07958143 +0.388193 0.1606827 0.07958143 +0.4303934 0.1606827 0.07958143 +0.4751555 0.1606827 0.07958143 +0.5225216 0.1606827 0.07958143 +0.5725335 0.1606827 0.07958143 +0.6252316 0.1606827 0.07958143 +0.6806558 0.1606827 0.07958143 +0.7388448 0.1606827 0.07958143 +0.7998369 0.1606827 0.07958143 +0.8636691 0.1606827 0.07958143 +0.9303782 0.1606827 0.07958143 +1 0.1606827 0.07958143 +0 0.1862481 0.07958143 +0.002418731 0.1862481 0.07958143 +0.005155668 0.1862481 0.07958143 +0.009080105 0.1862481 0.07958143 +0.01434988 0.1862481 0.07958143 +0.02107202 0.1862481 0.07958143 +0.02934285 0.1862481 0.07958143 +0.03925039 0.1862481 0.07958143 +0.05087609 0.1862481 0.07958143 +0.06429595 0.1862481 0.07958143 +0.07958143 0.1862481 0.07958143 +0.0968001 0.1862481 0.07958143 +0.1160161 0.1862481 0.07958143 +0.1372908 0.1862481 0.07958143 +0.1606827 0.1862481 0.07958143 +0.1862481 0.1862481 0.07958143 +0.2140411 0.1862481 0.07958143 +0.2441142 0.1862481 0.07958143 +0.2765176 0.1862481 0.07958143 +0.3113005 0.1862481 0.07958143 +0.3485102 0.1862481 0.07958143 +0.388193 0.1862481 0.07958143 +0.4303934 0.1862481 0.07958143 +0.4751555 0.1862481 0.07958143 +0.5225216 0.1862481 0.07958143 +0.5725335 0.1862481 0.07958143 +0.6252316 0.1862481 0.07958143 +0.6806558 0.1862481 0.07958143 +0.7388448 0.1862481 0.07958143 +0.7998369 0.1862481 0.07958143 +0.8636691 0.1862481 0.07958143 +0.9303782 0.1862481 0.07958143 +1 0.1862481 0.07958143 +0 0.2140411 0.07958143 +0.002418731 0.2140411 0.07958143 +0.005155668 0.2140411 0.07958143 +0.009080105 0.2140411 0.07958143 +0.01434988 0.2140411 0.07958143 +0.02107202 0.2140411 0.07958143 +0.02934285 0.2140411 0.07958143 +0.03925039 0.2140411 0.07958143 +0.05087609 0.2140411 0.07958143 +0.06429595 0.2140411 0.07958143 +0.07958143 0.2140411 0.07958143 +0.0968001 0.2140411 0.07958143 +0.1160161 0.2140411 0.07958143 +0.1372908 0.2140411 0.07958143 +0.1606827 0.2140411 0.07958143 +0.1862481 0.2140411 0.07958143 +0.2140411 0.2140411 0.07958143 +0.2441142 0.2140411 0.07958143 +0.2765176 0.2140411 0.07958143 +0.3113005 0.2140411 0.07958143 +0.3485102 0.2140411 0.07958143 +0.388193 0.2140411 0.07958143 +0.4303934 0.2140411 0.07958143 +0.4751555 0.2140411 0.07958143 +0.5225216 0.2140411 0.07958143 +0.5725335 0.2140411 0.07958143 +0.6252316 0.2140411 0.07958143 +0.6806558 0.2140411 0.07958143 +0.7388448 0.2140411 0.07958143 +0.7998369 0.2140411 0.07958143 +0.8636691 0.2140411 0.07958143 +0.9303782 0.2140411 0.07958143 +1 0.2140411 0.07958143 +0 0.2441142 0.07958143 +0.002418731 0.2441142 0.07958143 +0.005155668 0.2441142 0.07958143 +0.009080105 0.2441142 0.07958143 +0.01434988 0.2441142 0.07958143 +0.02107202 0.2441142 0.07958143 +0.02934285 0.2441142 0.07958143 +0.03925039 0.2441142 0.07958143 +0.05087609 0.2441142 0.07958143 +0.06429595 0.2441142 0.07958143 +0.07958143 0.2441142 0.07958143 +0.0968001 0.2441142 0.07958143 +0.1160161 0.2441142 0.07958143 +0.1372908 0.2441142 0.07958143 +0.1606827 0.2441142 0.07958143 +0.1862481 0.2441142 0.07958143 +0.2140411 0.2441142 0.07958143 +0.2441142 0.2441142 0.07958143 +0.2765176 0.2441142 0.07958143 +0.3113005 0.2441142 0.07958143 +0.3485102 0.2441142 0.07958143 +0.388193 0.2441142 0.07958143 +0.4303934 0.2441142 0.07958143 +0.4751555 0.2441142 0.07958143 +0.5225216 0.2441142 0.07958143 +0.5725335 0.2441142 0.07958143 +0.6252316 0.2441142 0.07958143 +0.6806558 0.2441142 0.07958143 +0.7388448 0.2441142 0.07958143 +0.7998369 0.2441142 0.07958143 +0.8636691 0.2441142 0.07958143 +0.9303782 0.2441142 0.07958143 +1 0.2441142 0.07958143 +0 0.2765176 0.07958143 +0.002418731 0.2765176 0.07958143 +0.005155668 0.2765176 0.07958143 +0.009080105 0.2765176 0.07958143 +0.01434988 0.2765176 0.07958143 +0.02107202 0.2765176 0.07958143 +0.02934285 0.2765176 0.07958143 +0.03925039 0.2765176 0.07958143 +0.05087609 0.2765176 0.07958143 +0.06429595 0.2765176 0.07958143 +0.07958143 0.2765176 0.07958143 +0.0968001 0.2765176 0.07958143 +0.1160161 0.2765176 0.07958143 +0.1372908 0.2765176 0.07958143 +0.1606827 0.2765176 0.07958143 +0.1862481 0.2765176 0.07958143 +0.2140411 0.2765176 0.07958143 +0.2441142 0.2765176 0.07958143 +0.2765176 0.2765176 0.07958143 +0.3113005 0.2765176 0.07958143 +0.3485102 0.2765176 0.07958143 +0.388193 0.2765176 0.07958143 +0.4303934 0.2765176 0.07958143 +0.4751555 0.2765176 0.07958143 +0.5225216 0.2765176 0.07958143 +0.5725335 0.2765176 0.07958143 +0.6252316 0.2765176 0.07958143 +0.6806558 0.2765176 0.07958143 +0.7388448 0.2765176 0.07958143 +0.7998369 0.2765176 0.07958143 +0.8636691 0.2765176 0.07958143 +0.9303782 0.2765176 0.07958143 +1 0.2765176 0.07958143 +0 0.3113005 0.07958143 +0.002418731 0.3113005 0.07958143 +0.005155668 0.3113005 0.07958143 +0.009080105 0.3113005 0.07958143 +0.01434988 0.3113005 0.07958143 +0.02107202 0.3113005 0.07958143 +0.02934285 0.3113005 0.07958143 +0.03925039 0.3113005 0.07958143 +0.05087609 0.3113005 0.07958143 +0.06429595 0.3113005 0.07958143 +0.07958143 0.3113005 0.07958143 +0.0968001 0.3113005 0.07958143 +0.1160161 0.3113005 0.07958143 +0.1372908 0.3113005 0.07958143 +0.1606827 0.3113005 0.07958143 +0.1862481 0.3113005 0.07958143 +0.2140411 0.3113005 0.07958143 +0.2441142 0.3113005 0.07958143 +0.2765176 0.3113005 0.07958143 +0.3113005 0.3113005 0.07958143 +0.3485102 0.3113005 0.07958143 +0.388193 0.3113005 0.07958143 +0.4303934 0.3113005 0.07958143 +0.4751555 0.3113005 0.07958143 +0.5225216 0.3113005 0.07958143 +0.5725335 0.3113005 0.07958143 +0.6252316 0.3113005 0.07958143 +0.6806558 0.3113005 0.07958143 +0.7388448 0.3113005 0.07958143 +0.7998369 0.3113005 0.07958143 +0.8636691 0.3113005 0.07958143 +0.9303782 0.3113005 0.07958143 +1 0.3113005 0.07958143 +0 0.3485102 0.07958143 +0.002418731 0.3485102 0.07958143 +0.005155668 0.3485102 0.07958143 +0.009080105 0.3485102 0.07958143 +0.01434988 0.3485102 0.07958143 +0.02107202 0.3485102 0.07958143 +0.02934285 0.3485102 0.07958143 +0.03925039 0.3485102 0.07958143 +0.05087609 0.3485102 0.07958143 +0.06429595 0.3485102 0.07958143 +0.07958143 0.3485102 0.07958143 +0.0968001 0.3485102 0.07958143 +0.1160161 0.3485102 0.07958143 +0.1372908 0.3485102 0.07958143 +0.1606827 0.3485102 0.07958143 +0.1862481 0.3485102 0.07958143 +0.2140411 0.3485102 0.07958143 +0.2441142 0.3485102 0.07958143 +0.2765176 0.3485102 0.07958143 +0.3113005 0.3485102 0.07958143 +0.3485102 0.3485102 0.07958143 +0.388193 0.3485102 0.07958143 +0.4303934 0.3485102 0.07958143 +0.4751555 0.3485102 0.07958143 +0.5225216 0.3485102 0.07958143 +0.5725335 0.3485102 0.07958143 +0.6252316 0.3485102 0.07958143 +0.6806558 0.3485102 0.07958143 +0.7388448 0.3485102 0.07958143 +0.7998369 0.3485102 0.07958143 +0.8636691 0.3485102 0.07958143 +0.9303782 0.3485102 0.07958143 +1 0.3485102 0.07958143 +0 0.388193 0.07958143 +0.002418731 0.388193 0.07958143 +0.005155668 0.388193 0.07958143 +0.009080105 0.388193 0.07958143 +0.01434988 0.388193 0.07958143 +0.02107202 0.388193 0.07958143 +0.02934285 0.388193 0.07958143 +0.03925039 0.388193 0.07958143 +0.05087609 0.388193 0.07958143 +0.06429595 0.388193 0.07958143 +0.07958143 0.388193 0.07958143 +0.0968001 0.388193 0.07958143 +0.1160161 0.388193 0.07958143 +0.1372908 0.388193 0.07958143 +0.1606827 0.388193 0.07958143 +0.1862481 0.388193 0.07958143 +0.2140411 0.388193 0.07958143 +0.2441142 0.388193 0.07958143 +0.2765176 0.388193 0.07958143 +0.3113005 0.388193 0.07958143 +0.3485102 0.388193 0.07958143 +0.388193 0.388193 0.07958143 +0.4303934 0.388193 0.07958143 +0.4751555 0.388193 0.07958143 +0.5225216 0.388193 0.07958143 +0.5725335 0.388193 0.07958143 +0.6252316 0.388193 0.07958143 +0.6806558 0.388193 0.07958143 +0.7388448 0.388193 0.07958143 +0.7998369 0.388193 0.07958143 +0.8636691 0.388193 0.07958143 +0.9303782 0.388193 0.07958143 +1 0.388193 0.07958143 +0 0.4303934 0.07958143 +0.002418731 0.4303934 0.07958143 +0.005155668 0.4303934 0.07958143 +0.009080105 0.4303934 0.07958143 +0.01434988 0.4303934 0.07958143 +0.02107202 0.4303934 0.07958143 +0.02934285 0.4303934 0.07958143 +0.03925039 0.4303934 0.07958143 +0.05087609 0.4303934 0.07958143 +0.06429595 0.4303934 0.07958143 +0.07958143 0.4303934 0.07958143 +0.0968001 0.4303934 0.07958143 +0.1160161 0.4303934 0.07958143 +0.1372908 0.4303934 0.07958143 +0.1606827 0.4303934 0.07958143 +0.1862481 0.4303934 0.07958143 +0.2140411 0.4303934 0.07958143 +0.2441142 0.4303934 0.07958143 +0.2765176 0.4303934 0.07958143 +0.3113005 0.4303934 0.07958143 +0.3485102 0.4303934 0.07958143 +0.388193 0.4303934 0.07958143 +0.4303934 0.4303934 0.07958143 +0.4751555 0.4303934 0.07958143 +0.5225216 0.4303934 0.07958143 +0.5725335 0.4303934 0.07958143 +0.6252316 0.4303934 0.07958143 +0.6806558 0.4303934 0.07958143 +0.7388448 0.4303934 0.07958143 +0.7998369 0.4303934 0.07958143 +0.8636691 0.4303934 0.07958143 +0.9303782 0.4303934 0.07958143 +1 0.4303934 0.07958143 +0 0.4751555 0.07958143 +0.002418731 0.4751555 0.07958143 +0.005155668 0.4751555 0.07958143 +0.009080105 0.4751555 0.07958143 +0.01434988 0.4751555 0.07958143 +0.02107202 0.4751555 0.07958143 +0.02934285 0.4751555 0.07958143 +0.03925039 0.4751555 0.07958143 +0.05087609 0.4751555 0.07958143 +0.06429595 0.4751555 0.07958143 +0.07958143 0.4751555 0.07958143 +0.0968001 0.4751555 0.07958143 +0.1160161 0.4751555 0.07958143 +0.1372908 0.4751555 0.07958143 +0.1606827 0.4751555 0.07958143 +0.1862481 0.4751555 0.07958143 +0.2140411 0.4751555 0.07958143 +0.2441142 0.4751555 0.07958143 +0.2765176 0.4751555 0.07958143 +0.3113005 0.4751555 0.07958143 +0.3485102 0.4751555 0.07958143 +0.388193 0.4751555 0.07958143 +0.4303934 0.4751555 0.07958143 +0.4751555 0.4751555 0.07958143 +0.5225216 0.4751555 0.07958143 +0.5725335 0.4751555 0.07958143 +0.6252316 0.4751555 0.07958143 +0.6806558 0.4751555 0.07958143 +0.7388448 0.4751555 0.07958143 +0.7998369 0.4751555 0.07958143 +0.8636691 0.4751555 0.07958143 +0.9303782 0.4751555 0.07958143 +1 0.4751555 0.07958143 +0 0.5225216 0.07958143 +0.002418731 0.5225216 0.07958143 +0.005155668 0.5225216 0.07958143 +0.009080105 0.5225216 0.07958143 +0.01434988 0.5225216 0.07958143 +0.02107202 0.5225216 0.07958143 +0.02934285 0.5225216 0.07958143 +0.03925039 0.5225216 0.07958143 +0.05087609 0.5225216 0.07958143 +0.06429595 0.5225216 0.07958143 +0.07958143 0.5225216 0.07958143 +0.0968001 0.5225216 0.07958143 +0.1160161 0.5225216 0.07958143 +0.1372908 0.5225216 0.07958143 +0.1606827 0.5225216 0.07958143 +0.1862481 0.5225216 0.07958143 +0.2140411 0.5225216 0.07958143 +0.2441142 0.5225216 0.07958143 +0.2765176 0.5225216 0.07958143 +0.3113005 0.5225216 0.07958143 +0.3485102 0.5225216 0.07958143 +0.388193 0.5225216 0.07958143 +0.4303934 0.5225216 0.07958143 +0.4751555 0.5225216 0.07958143 +0.5225216 0.5225216 0.07958143 +0.5725335 0.5225216 0.07958143 +0.6252316 0.5225216 0.07958143 +0.6806558 0.5225216 0.07958143 +0.7388448 0.5225216 0.07958143 +0.7998369 0.5225216 0.07958143 +0.8636691 0.5225216 0.07958143 +0.9303782 0.5225216 0.07958143 +1 0.5225216 0.07958143 +0 0.5725335 0.07958143 +0.002418731 0.5725335 0.07958143 +0.005155668 0.5725335 0.07958143 +0.009080105 0.5725335 0.07958143 +0.01434988 0.5725335 0.07958143 +0.02107202 0.5725335 0.07958143 +0.02934285 0.5725335 0.07958143 +0.03925039 0.5725335 0.07958143 +0.05087609 0.5725335 0.07958143 +0.06429595 0.5725335 0.07958143 +0.07958143 0.5725335 0.07958143 +0.0968001 0.5725335 0.07958143 +0.1160161 0.5725335 0.07958143 +0.1372908 0.5725335 0.07958143 +0.1606827 0.5725335 0.07958143 +0.1862481 0.5725335 0.07958143 +0.2140411 0.5725335 0.07958143 +0.2441142 0.5725335 0.07958143 +0.2765176 0.5725335 0.07958143 +0.3113005 0.5725335 0.07958143 +0.3485102 0.5725335 0.07958143 +0.388193 0.5725335 0.07958143 +0.4303934 0.5725335 0.07958143 +0.4751555 0.5725335 0.07958143 +0.5225216 0.5725335 0.07958143 +0.5725335 0.5725335 0.07958143 +0.6252316 0.5725335 0.07958143 +0.6806558 0.5725335 0.07958143 +0.7388448 0.5725335 0.07958143 +0.7998369 0.5725335 0.07958143 +0.8636691 0.5725335 0.07958143 +0.9303782 0.5725335 0.07958143 +1 0.5725335 0.07958143 +0 0.6252316 0.07958143 +0.002418731 0.6252316 0.07958143 +0.005155668 0.6252316 0.07958143 +0.009080105 0.6252316 0.07958143 +0.01434988 0.6252316 0.07958143 +0.02107202 0.6252316 0.07958143 +0.02934285 0.6252316 0.07958143 +0.03925039 0.6252316 0.07958143 +0.05087609 0.6252316 0.07958143 +0.06429595 0.6252316 0.07958143 +0.07958143 0.6252316 0.07958143 +0.0968001 0.6252316 0.07958143 +0.1160161 0.6252316 0.07958143 +0.1372908 0.6252316 0.07958143 +0.1606827 0.6252316 0.07958143 +0.1862481 0.6252316 0.07958143 +0.2140411 0.6252316 0.07958143 +0.2441142 0.6252316 0.07958143 +0.2765176 0.6252316 0.07958143 +0.3113005 0.6252316 0.07958143 +0.3485102 0.6252316 0.07958143 +0.388193 0.6252316 0.07958143 +0.4303934 0.6252316 0.07958143 +0.4751555 0.6252316 0.07958143 +0.5225216 0.6252316 0.07958143 +0.5725335 0.6252316 0.07958143 +0.6252316 0.6252316 0.07958143 +0.6806558 0.6252316 0.07958143 +0.7388448 0.6252316 0.07958143 +0.7998369 0.6252316 0.07958143 +0.8636691 0.6252316 0.07958143 +0.9303782 0.6252316 0.07958143 +1 0.6252316 0.07958143 +0 0.6806558 0.07958143 +0.002418731 0.6806558 0.07958143 +0.005155668 0.6806558 0.07958143 +0.009080105 0.6806558 0.07958143 +0.01434988 0.6806558 0.07958143 +0.02107202 0.6806558 0.07958143 +0.02934285 0.6806558 0.07958143 +0.03925039 0.6806558 0.07958143 +0.05087609 0.6806558 0.07958143 +0.06429595 0.6806558 0.07958143 +0.07958143 0.6806558 0.07958143 +0.0968001 0.6806558 0.07958143 +0.1160161 0.6806558 0.07958143 +0.1372908 0.6806558 0.07958143 +0.1606827 0.6806558 0.07958143 +0.1862481 0.6806558 0.07958143 +0.2140411 0.6806558 0.07958143 +0.2441142 0.6806558 0.07958143 +0.2765176 0.6806558 0.07958143 +0.3113005 0.6806558 0.07958143 +0.3485102 0.6806558 0.07958143 +0.388193 0.6806558 0.07958143 +0.4303934 0.6806558 0.07958143 +0.4751555 0.6806558 0.07958143 +0.5225216 0.6806558 0.07958143 +0.5725335 0.6806558 0.07958143 +0.6252316 0.6806558 0.07958143 +0.6806558 0.6806558 0.07958143 +0.7388448 0.6806558 0.07958143 +0.7998369 0.6806558 0.07958143 +0.8636691 0.6806558 0.07958143 +0.9303782 0.6806558 0.07958143 +1 0.6806558 0.07958143 +0 0.7388448 0.07958143 +0.002418731 0.7388448 0.07958143 +0.005155668 0.7388448 0.07958143 +0.009080105 0.7388448 0.07958143 +0.01434988 0.7388448 0.07958143 +0.02107202 0.7388448 0.07958143 +0.02934285 0.7388448 0.07958143 +0.03925039 0.7388448 0.07958143 +0.05087609 0.7388448 0.07958143 +0.06429595 0.7388448 0.07958143 +0.07958143 0.7388448 0.07958143 +0.0968001 0.7388448 0.07958143 +0.1160161 0.7388448 0.07958143 +0.1372908 0.7388448 0.07958143 +0.1606827 0.7388448 0.07958143 +0.1862481 0.7388448 0.07958143 +0.2140411 0.7388448 0.07958143 +0.2441142 0.7388448 0.07958143 +0.2765176 0.7388448 0.07958143 +0.3113005 0.7388448 0.07958143 +0.3485102 0.7388448 0.07958143 +0.388193 0.7388448 0.07958143 +0.4303934 0.7388448 0.07958143 +0.4751555 0.7388448 0.07958143 +0.5225216 0.7388448 0.07958143 +0.5725335 0.7388448 0.07958143 +0.6252316 0.7388448 0.07958143 +0.6806558 0.7388448 0.07958143 +0.7388448 0.7388448 0.07958143 +0.7998369 0.7388448 0.07958143 +0.8636691 0.7388448 0.07958143 +0.9303782 0.7388448 0.07958143 +1 0.7388448 0.07958143 +0 0.7998369 0.07958143 +0.002418731 0.7998369 0.07958143 +0.005155668 0.7998369 0.07958143 +0.009080105 0.7998369 0.07958143 +0.01434988 0.7998369 0.07958143 +0.02107202 0.7998369 0.07958143 +0.02934285 0.7998369 0.07958143 +0.03925039 0.7998369 0.07958143 +0.05087609 0.7998369 0.07958143 +0.06429595 0.7998369 0.07958143 +0.07958143 0.7998369 0.07958143 +0.0968001 0.7998369 0.07958143 +0.1160161 0.7998369 0.07958143 +0.1372908 0.7998369 0.07958143 +0.1606827 0.7998369 0.07958143 +0.1862481 0.7998369 0.07958143 +0.2140411 0.7998369 0.07958143 +0.2441142 0.7998369 0.07958143 +0.2765176 0.7998369 0.07958143 +0.3113005 0.7998369 0.07958143 +0.3485102 0.7998369 0.07958143 +0.388193 0.7998369 0.07958143 +0.4303934 0.7998369 0.07958143 +0.4751555 0.7998369 0.07958143 +0.5225216 0.7998369 0.07958143 +0.5725335 0.7998369 0.07958143 +0.6252316 0.7998369 0.07958143 +0.6806558 0.7998369 0.07958143 +0.7388448 0.7998369 0.07958143 +0.7998369 0.7998369 0.07958143 +0.8636691 0.7998369 0.07958143 +0.9303782 0.7998369 0.07958143 +1 0.7998369 0.07958143 +0 0.8636691 0.07958143 +0.002418731 0.8636691 0.07958143 +0.005155668 0.8636691 0.07958143 +0.009080105 0.8636691 0.07958143 +0.01434988 0.8636691 0.07958143 +0.02107202 0.8636691 0.07958143 +0.02934285 0.8636691 0.07958143 +0.03925039 0.8636691 0.07958143 +0.05087609 0.8636691 0.07958143 +0.06429595 0.8636691 0.07958143 +0.07958143 0.8636691 0.07958143 +0.0968001 0.8636691 0.07958143 +0.1160161 0.8636691 0.07958143 +0.1372908 0.8636691 0.07958143 +0.1606827 0.8636691 0.07958143 +0.1862481 0.8636691 0.07958143 +0.2140411 0.8636691 0.07958143 +0.2441142 0.8636691 0.07958143 +0.2765176 0.8636691 0.07958143 +0.3113005 0.8636691 0.07958143 +0.3485102 0.8636691 0.07958143 +0.388193 0.8636691 0.07958143 +0.4303934 0.8636691 0.07958143 +0.4751555 0.8636691 0.07958143 +0.5225216 0.8636691 0.07958143 +0.5725335 0.8636691 0.07958143 +0.6252316 0.8636691 0.07958143 +0.6806558 0.8636691 0.07958143 +0.7388448 0.8636691 0.07958143 +0.7998369 0.8636691 0.07958143 +0.8636691 0.8636691 0.07958143 +0.9303782 0.8636691 0.07958143 +1 0.8636691 0.07958143 +0 0.9303782 0.07958143 +0.002418731 0.9303782 0.07958143 +0.005155668 0.9303782 0.07958143 +0.009080105 0.9303782 0.07958143 +0.01434988 0.9303782 0.07958143 +0.02107202 0.9303782 0.07958143 +0.02934285 0.9303782 0.07958143 +0.03925039 0.9303782 0.07958143 +0.05087609 0.9303782 0.07958143 +0.06429595 0.9303782 0.07958143 +0.07958143 0.9303782 0.07958143 +0.0968001 0.9303782 0.07958143 +0.1160161 0.9303782 0.07958143 +0.1372908 0.9303782 0.07958143 +0.1606827 0.9303782 0.07958143 +0.1862481 0.9303782 0.07958143 +0.2140411 0.9303782 0.07958143 +0.2441142 0.9303782 0.07958143 +0.2765176 0.9303782 0.07958143 +0.3113005 0.9303782 0.07958143 +0.3485102 0.9303782 0.07958143 +0.388193 0.9303782 0.07958143 +0.4303934 0.9303782 0.07958143 +0.4751555 0.9303782 0.07958143 +0.5225216 0.9303782 0.07958143 +0.5725335 0.9303782 0.07958143 +0.6252316 0.9303782 0.07958143 +0.6806558 0.9303782 0.07958143 +0.7388448 0.9303782 0.07958143 +0.7998369 0.9303782 0.07958143 +0.8636691 0.9303782 0.07958143 +0.9303782 0.9303782 0.07958143 +1 0.9303782 0.07958143 +0 1 0.07958143 +0.002418731 1 0.07958143 +0.005155668 1 0.07958143 +0.009080105 1 0.07958143 +0.01434988 1 0.07958143 +0.02107202 1 0.07958143 +0.02934285 1 0.07958143 +0.03925039 1 0.07958143 +0.05087609 1 0.07958143 +0.06429595 1 0.07958143 +0.07958143 1 0.07958143 +0.0968001 1 0.07958143 +0.1160161 1 0.07958143 +0.1372908 1 0.07958143 +0.1606827 1 0.07958143 +0.1862481 1 0.07958143 +0.2140411 1 0.07958143 +0.2441142 1 0.07958143 +0.2765176 1 0.07958143 +0.3113005 1 0.07958143 +0.3485102 1 0.07958143 +0.388193 1 0.07958143 +0.4303934 1 0.07958143 +0.4751555 1 0.07958143 +0.5225216 1 0.07958143 +0.5725335 1 0.07958143 +0.6252316 1 0.07958143 +0.6806558 1 0.07958143 +0.7388448 1 0.07958143 +0.7998369 1 0.07958143 +0.8636691 1 0.07958143 +0.9303782 1 0.07958143 +1 1 0.07958143 +0 0 0.0968001 +0.002418731 0 0.0968001 +0.005155668 0 0.0968001 +0.009080105 0 0.0968001 +0.01434988 0 0.0968001 +0.02107202 0 0.0968001 +0.02934285 0 0.0968001 +0.03925039 0 0.0968001 +0.05087609 0 0.0968001 +0.06429595 0 0.0968001 +0.07958143 0 0.0968001 +0.0968001 0 0.0968001 +0.1160161 0 0.0968001 +0.1372908 0 0.0968001 +0.1606827 0 0.0968001 +0.1862481 0 0.0968001 +0.2140411 0 0.0968001 +0.2441142 0 0.0968001 +0.2765176 0 0.0968001 +0.3113005 0 0.0968001 +0.3485102 0 0.0968001 +0.388193 0 0.0968001 +0.4303934 0 0.0968001 +0.4751555 0 0.0968001 +0.5225216 0 0.0968001 +0.5725335 0 0.0968001 +0.6252316 0 0.0968001 +0.6806558 0 0.0968001 +0.7388448 0 0.0968001 +0.7998369 0 0.0968001 +0.8636691 0 0.0968001 +0.9303782 0 0.0968001 +1 0 0.0968001 +0 0.002418731 0.0968001 +0.002418731 0.002418731 0.0968001 +0.005155668 0.002418731 0.0968001 +0.009080105 0.002418731 0.0968001 +0.01434988 0.002418731 0.0968001 +0.02107202 0.002418731 0.0968001 +0.02934285 0.002418731 0.0968001 +0.03925039 0.002418731 0.0968001 +0.05087609 0.002418731 0.0968001 +0.06429595 0.002418731 0.0968001 +0.07958143 0.002418731 0.0968001 +0.0968001 0.002418731 0.0968001 +0.1160161 0.002418731 0.0968001 +0.1372908 0.002418731 0.0968001 +0.1606827 0.002418731 0.0968001 +0.1862481 0.002418731 0.0968001 +0.2140411 0.002418731 0.0968001 +0.2441142 0.002418731 0.0968001 +0.2765176 0.002418731 0.0968001 +0.3113005 0.002418731 0.0968001 +0.3485102 0.002418731 0.0968001 +0.388193 0.002418731 0.0968001 +0.4303934 0.002418731 0.0968001 +0.4751555 0.002418731 0.0968001 +0.5225216 0.002418731 0.0968001 +0.5725335 0.002418731 0.0968001 +0.6252316 0.002418731 0.0968001 +0.6806558 0.002418731 0.0968001 +0.7388448 0.002418731 0.0968001 +0.7998369 0.002418731 0.0968001 +0.8636691 0.002418731 0.0968001 +0.9303782 0.002418731 0.0968001 +1 0.002418731 0.0968001 +0 0.005155668 0.0968001 +0.002418731 0.005155668 0.0968001 +0.005155668 0.005155668 0.0968001 +0.009080105 0.005155668 0.0968001 +0.01434988 0.005155668 0.0968001 +0.02107202 0.005155668 0.0968001 +0.02934285 0.005155668 0.0968001 +0.03925039 0.005155668 0.0968001 +0.05087609 0.005155668 0.0968001 +0.06429595 0.005155668 0.0968001 +0.07958143 0.005155668 0.0968001 +0.0968001 0.005155668 0.0968001 +0.1160161 0.005155668 0.0968001 +0.1372908 0.005155668 0.0968001 +0.1606827 0.005155668 0.0968001 +0.1862481 0.005155668 0.0968001 +0.2140411 0.005155668 0.0968001 +0.2441142 0.005155668 0.0968001 +0.2765176 0.005155668 0.0968001 +0.3113005 0.005155668 0.0968001 +0.3485102 0.005155668 0.0968001 +0.388193 0.005155668 0.0968001 +0.4303934 0.005155668 0.0968001 +0.4751555 0.005155668 0.0968001 +0.5225216 0.005155668 0.0968001 +0.5725335 0.005155668 0.0968001 +0.6252316 0.005155668 0.0968001 +0.6806558 0.005155668 0.0968001 +0.7388448 0.005155668 0.0968001 +0.7998369 0.005155668 0.0968001 +0.8636691 0.005155668 0.0968001 +0.9303782 0.005155668 0.0968001 +1 0.005155668 0.0968001 +0 0.009080105 0.0968001 +0.002418731 0.009080105 0.0968001 +0.005155668 0.009080105 0.0968001 +0.009080105 0.009080105 0.0968001 +0.01434988 0.009080105 0.0968001 +0.02107202 0.009080105 0.0968001 +0.02934285 0.009080105 0.0968001 +0.03925039 0.009080105 0.0968001 +0.05087609 0.009080105 0.0968001 +0.06429595 0.009080105 0.0968001 +0.07958143 0.009080105 0.0968001 +0.0968001 0.009080105 0.0968001 +0.1160161 0.009080105 0.0968001 +0.1372908 0.009080105 0.0968001 +0.1606827 0.009080105 0.0968001 +0.1862481 0.009080105 0.0968001 +0.2140411 0.009080105 0.0968001 +0.2441142 0.009080105 0.0968001 +0.2765176 0.009080105 0.0968001 +0.3113005 0.009080105 0.0968001 +0.3485102 0.009080105 0.0968001 +0.388193 0.009080105 0.0968001 +0.4303934 0.009080105 0.0968001 +0.4751555 0.009080105 0.0968001 +0.5225216 0.009080105 0.0968001 +0.5725335 0.009080105 0.0968001 +0.6252316 0.009080105 0.0968001 +0.6806558 0.009080105 0.0968001 +0.7388448 0.009080105 0.0968001 +0.7998369 0.009080105 0.0968001 +0.8636691 0.009080105 0.0968001 +0.9303782 0.009080105 0.0968001 +1 0.009080105 0.0968001 +0 0.01434988 0.0968001 +0.002418731 0.01434988 0.0968001 +0.005155668 0.01434988 0.0968001 +0.009080105 0.01434988 0.0968001 +0.01434988 0.01434988 0.0968001 +0.02107202 0.01434988 0.0968001 +0.02934285 0.01434988 0.0968001 +0.03925039 0.01434988 0.0968001 +0.05087609 0.01434988 0.0968001 +0.06429595 0.01434988 0.0968001 +0.07958143 0.01434988 0.0968001 +0.0968001 0.01434988 0.0968001 +0.1160161 0.01434988 0.0968001 +0.1372908 0.01434988 0.0968001 +0.1606827 0.01434988 0.0968001 +0.1862481 0.01434988 0.0968001 +0.2140411 0.01434988 0.0968001 +0.2441142 0.01434988 0.0968001 +0.2765176 0.01434988 0.0968001 +0.3113005 0.01434988 0.0968001 +0.3485102 0.01434988 0.0968001 +0.388193 0.01434988 0.0968001 +0.4303934 0.01434988 0.0968001 +0.4751555 0.01434988 0.0968001 +0.5225216 0.01434988 0.0968001 +0.5725335 0.01434988 0.0968001 +0.6252316 0.01434988 0.0968001 +0.6806558 0.01434988 0.0968001 +0.7388448 0.01434988 0.0968001 +0.7998369 0.01434988 0.0968001 +0.8636691 0.01434988 0.0968001 +0.9303782 0.01434988 0.0968001 +1 0.01434988 0.0968001 +0 0.02107202 0.0968001 +0.002418731 0.02107202 0.0968001 +0.005155668 0.02107202 0.0968001 +0.009080105 0.02107202 0.0968001 +0.01434988 0.02107202 0.0968001 +0.02107202 0.02107202 0.0968001 +0.02934285 0.02107202 0.0968001 +0.03925039 0.02107202 0.0968001 +0.05087609 0.02107202 0.0968001 +0.06429595 0.02107202 0.0968001 +0.07958143 0.02107202 0.0968001 +0.0968001 0.02107202 0.0968001 +0.1160161 0.02107202 0.0968001 +0.1372908 0.02107202 0.0968001 +0.1606827 0.02107202 0.0968001 +0.1862481 0.02107202 0.0968001 +0.2140411 0.02107202 0.0968001 +0.2441142 0.02107202 0.0968001 +0.2765176 0.02107202 0.0968001 +0.3113005 0.02107202 0.0968001 +0.3485102 0.02107202 0.0968001 +0.388193 0.02107202 0.0968001 +0.4303934 0.02107202 0.0968001 +0.4751555 0.02107202 0.0968001 +0.5225216 0.02107202 0.0968001 +0.5725335 0.02107202 0.0968001 +0.6252316 0.02107202 0.0968001 +0.6806558 0.02107202 0.0968001 +0.7388448 0.02107202 0.0968001 +0.7998369 0.02107202 0.0968001 +0.8636691 0.02107202 0.0968001 +0.9303782 0.02107202 0.0968001 +1 0.02107202 0.0968001 +0 0.02934285 0.0968001 +0.002418731 0.02934285 0.0968001 +0.005155668 0.02934285 0.0968001 +0.009080105 0.02934285 0.0968001 +0.01434988 0.02934285 0.0968001 +0.02107202 0.02934285 0.0968001 +0.02934285 0.02934285 0.0968001 +0.03925039 0.02934285 0.0968001 +0.05087609 0.02934285 0.0968001 +0.06429595 0.02934285 0.0968001 +0.07958143 0.02934285 0.0968001 +0.0968001 0.02934285 0.0968001 +0.1160161 0.02934285 0.0968001 +0.1372908 0.02934285 0.0968001 +0.1606827 0.02934285 0.0968001 +0.1862481 0.02934285 0.0968001 +0.2140411 0.02934285 0.0968001 +0.2441142 0.02934285 0.0968001 +0.2765176 0.02934285 0.0968001 +0.3113005 0.02934285 0.0968001 +0.3485102 0.02934285 0.0968001 +0.388193 0.02934285 0.0968001 +0.4303934 0.02934285 0.0968001 +0.4751555 0.02934285 0.0968001 +0.5225216 0.02934285 0.0968001 +0.5725335 0.02934285 0.0968001 +0.6252316 0.02934285 0.0968001 +0.6806558 0.02934285 0.0968001 +0.7388448 0.02934285 0.0968001 +0.7998369 0.02934285 0.0968001 +0.8636691 0.02934285 0.0968001 +0.9303782 0.02934285 0.0968001 +1 0.02934285 0.0968001 +0 0.03925039 0.0968001 +0.002418731 0.03925039 0.0968001 +0.005155668 0.03925039 0.0968001 +0.009080105 0.03925039 0.0968001 +0.01434988 0.03925039 0.0968001 +0.02107202 0.03925039 0.0968001 +0.02934285 0.03925039 0.0968001 +0.03925039 0.03925039 0.0968001 +0.05087609 0.03925039 0.0968001 +0.06429595 0.03925039 0.0968001 +0.07958143 0.03925039 0.0968001 +0.0968001 0.03925039 0.0968001 +0.1160161 0.03925039 0.0968001 +0.1372908 0.03925039 0.0968001 +0.1606827 0.03925039 0.0968001 +0.1862481 0.03925039 0.0968001 +0.2140411 0.03925039 0.0968001 +0.2441142 0.03925039 0.0968001 +0.2765176 0.03925039 0.0968001 +0.3113005 0.03925039 0.0968001 +0.3485102 0.03925039 0.0968001 +0.388193 0.03925039 0.0968001 +0.4303934 0.03925039 0.0968001 +0.4751555 0.03925039 0.0968001 +0.5225216 0.03925039 0.0968001 +0.5725335 0.03925039 0.0968001 +0.6252316 0.03925039 0.0968001 +0.6806558 0.03925039 0.0968001 +0.7388448 0.03925039 0.0968001 +0.7998369 0.03925039 0.0968001 +0.8636691 0.03925039 0.0968001 +0.9303782 0.03925039 0.0968001 +1 0.03925039 0.0968001 +0 0.05087609 0.0968001 +0.002418731 0.05087609 0.0968001 +0.005155668 0.05087609 0.0968001 +0.009080105 0.05087609 0.0968001 +0.01434988 0.05087609 0.0968001 +0.02107202 0.05087609 0.0968001 +0.02934285 0.05087609 0.0968001 +0.03925039 0.05087609 0.0968001 +0.05087609 0.05087609 0.0968001 +0.06429595 0.05087609 0.0968001 +0.07958143 0.05087609 0.0968001 +0.0968001 0.05087609 0.0968001 +0.1160161 0.05087609 0.0968001 +0.1372908 0.05087609 0.0968001 +0.1606827 0.05087609 0.0968001 +0.1862481 0.05087609 0.0968001 +0.2140411 0.05087609 0.0968001 +0.2441142 0.05087609 0.0968001 +0.2765176 0.05087609 0.0968001 +0.3113005 0.05087609 0.0968001 +0.3485102 0.05087609 0.0968001 +0.388193 0.05087609 0.0968001 +0.4303934 0.05087609 0.0968001 +0.4751555 0.05087609 0.0968001 +0.5225216 0.05087609 0.0968001 +0.5725335 0.05087609 0.0968001 +0.6252316 0.05087609 0.0968001 +0.6806558 0.05087609 0.0968001 +0.7388448 0.05087609 0.0968001 +0.7998369 0.05087609 0.0968001 +0.8636691 0.05087609 0.0968001 +0.9303782 0.05087609 0.0968001 +1 0.05087609 0.0968001 +0 0.06429595 0.0968001 +0.002418731 0.06429595 0.0968001 +0.005155668 0.06429595 0.0968001 +0.009080105 0.06429595 0.0968001 +0.01434988 0.06429595 0.0968001 +0.02107202 0.06429595 0.0968001 +0.02934285 0.06429595 0.0968001 +0.03925039 0.06429595 0.0968001 +0.05087609 0.06429595 0.0968001 +0.06429595 0.06429595 0.0968001 +0.07958143 0.06429595 0.0968001 +0.0968001 0.06429595 0.0968001 +0.1160161 0.06429595 0.0968001 +0.1372908 0.06429595 0.0968001 +0.1606827 0.06429595 0.0968001 +0.1862481 0.06429595 0.0968001 +0.2140411 0.06429595 0.0968001 +0.2441142 0.06429595 0.0968001 +0.2765176 0.06429595 0.0968001 +0.3113005 0.06429595 0.0968001 +0.3485102 0.06429595 0.0968001 +0.388193 0.06429595 0.0968001 +0.4303934 0.06429595 0.0968001 +0.4751555 0.06429595 0.0968001 +0.5225216 0.06429595 0.0968001 +0.5725335 0.06429595 0.0968001 +0.6252316 0.06429595 0.0968001 +0.6806558 0.06429595 0.0968001 +0.7388448 0.06429595 0.0968001 +0.7998369 0.06429595 0.0968001 +0.8636691 0.06429595 0.0968001 +0.9303782 0.06429595 0.0968001 +1 0.06429595 0.0968001 +0 0.07958143 0.0968001 +0.002418731 0.07958143 0.0968001 +0.005155668 0.07958143 0.0968001 +0.009080105 0.07958143 0.0968001 +0.01434988 0.07958143 0.0968001 +0.02107202 0.07958143 0.0968001 +0.02934285 0.07958143 0.0968001 +0.03925039 0.07958143 0.0968001 +0.05087609 0.07958143 0.0968001 +0.06429595 0.07958143 0.0968001 +0.07958143 0.07958143 0.0968001 +0.0968001 0.07958143 0.0968001 +0.1160161 0.07958143 0.0968001 +0.1372908 0.07958143 0.0968001 +0.1606827 0.07958143 0.0968001 +0.1862481 0.07958143 0.0968001 +0.2140411 0.07958143 0.0968001 +0.2441142 0.07958143 0.0968001 +0.2765176 0.07958143 0.0968001 +0.3113005 0.07958143 0.0968001 +0.3485102 0.07958143 0.0968001 +0.388193 0.07958143 0.0968001 +0.4303934 0.07958143 0.0968001 +0.4751555 0.07958143 0.0968001 +0.5225216 0.07958143 0.0968001 +0.5725335 0.07958143 0.0968001 +0.6252316 0.07958143 0.0968001 +0.6806558 0.07958143 0.0968001 +0.7388448 0.07958143 0.0968001 +0.7998369 0.07958143 0.0968001 +0.8636691 0.07958143 0.0968001 +0.9303782 0.07958143 0.0968001 +1 0.07958143 0.0968001 +0 0.0968001 0.0968001 +0.002418731 0.0968001 0.0968001 +0.005155668 0.0968001 0.0968001 +0.009080105 0.0968001 0.0968001 +0.01434988 0.0968001 0.0968001 +0.02107202 0.0968001 0.0968001 +0.02934285 0.0968001 0.0968001 +0.03925039 0.0968001 0.0968001 +0.05087609 0.0968001 0.0968001 +0.06429595 0.0968001 0.0968001 +0.07958143 0.0968001 0.0968001 +0.0968001 0.0968001 0.0968001 +0.1160161 0.0968001 0.0968001 +0.1372908 0.0968001 0.0968001 +0.1606827 0.0968001 0.0968001 +0.1862481 0.0968001 0.0968001 +0.2140411 0.0968001 0.0968001 +0.2441142 0.0968001 0.0968001 +0.2765176 0.0968001 0.0968001 +0.3113005 0.0968001 0.0968001 +0.3485102 0.0968001 0.0968001 +0.388193 0.0968001 0.0968001 +0.4303934 0.0968001 0.0968001 +0.4751555 0.0968001 0.0968001 +0.5225216 0.0968001 0.0968001 +0.5725335 0.0968001 0.0968001 +0.6252316 0.0968001 0.0968001 +0.6806558 0.0968001 0.0968001 +0.7388448 0.0968001 0.0968001 +0.7998369 0.0968001 0.0968001 +0.8636691 0.0968001 0.0968001 +0.9303782 0.0968001 0.0968001 +1 0.0968001 0.0968001 +0 0.1160161 0.0968001 +0.002418731 0.1160161 0.0968001 +0.005155668 0.1160161 0.0968001 +0.009080105 0.1160161 0.0968001 +0.01434988 0.1160161 0.0968001 +0.02107202 0.1160161 0.0968001 +0.02934285 0.1160161 0.0968001 +0.03925039 0.1160161 0.0968001 +0.05087609 0.1160161 0.0968001 +0.06429595 0.1160161 0.0968001 +0.07958143 0.1160161 0.0968001 +0.0968001 0.1160161 0.0968001 +0.1160161 0.1160161 0.0968001 +0.1372908 0.1160161 0.0968001 +0.1606827 0.1160161 0.0968001 +0.1862481 0.1160161 0.0968001 +0.2140411 0.1160161 0.0968001 +0.2441142 0.1160161 0.0968001 +0.2765176 0.1160161 0.0968001 +0.3113005 0.1160161 0.0968001 +0.3485102 0.1160161 0.0968001 +0.388193 0.1160161 0.0968001 +0.4303934 0.1160161 0.0968001 +0.4751555 0.1160161 0.0968001 +0.5225216 0.1160161 0.0968001 +0.5725335 0.1160161 0.0968001 +0.6252316 0.1160161 0.0968001 +0.6806558 0.1160161 0.0968001 +0.7388448 0.1160161 0.0968001 +0.7998369 0.1160161 0.0968001 +0.8636691 0.1160161 0.0968001 +0.9303782 0.1160161 0.0968001 +1 0.1160161 0.0968001 +0 0.1372908 0.0968001 +0.002418731 0.1372908 0.0968001 +0.005155668 0.1372908 0.0968001 +0.009080105 0.1372908 0.0968001 +0.01434988 0.1372908 0.0968001 +0.02107202 0.1372908 0.0968001 +0.02934285 0.1372908 0.0968001 +0.03925039 0.1372908 0.0968001 +0.05087609 0.1372908 0.0968001 +0.06429595 0.1372908 0.0968001 +0.07958143 0.1372908 0.0968001 +0.0968001 0.1372908 0.0968001 +0.1160161 0.1372908 0.0968001 +0.1372908 0.1372908 0.0968001 +0.1606827 0.1372908 0.0968001 +0.1862481 0.1372908 0.0968001 +0.2140411 0.1372908 0.0968001 +0.2441142 0.1372908 0.0968001 +0.2765176 0.1372908 0.0968001 +0.3113005 0.1372908 0.0968001 +0.3485102 0.1372908 0.0968001 +0.388193 0.1372908 0.0968001 +0.4303934 0.1372908 0.0968001 +0.4751555 0.1372908 0.0968001 +0.5225216 0.1372908 0.0968001 +0.5725335 0.1372908 0.0968001 +0.6252316 0.1372908 0.0968001 +0.6806558 0.1372908 0.0968001 +0.7388448 0.1372908 0.0968001 +0.7998369 0.1372908 0.0968001 +0.8636691 0.1372908 0.0968001 +0.9303782 0.1372908 0.0968001 +1 0.1372908 0.0968001 +0 0.1606827 0.0968001 +0.002418731 0.1606827 0.0968001 +0.005155668 0.1606827 0.0968001 +0.009080105 0.1606827 0.0968001 +0.01434988 0.1606827 0.0968001 +0.02107202 0.1606827 0.0968001 +0.02934285 0.1606827 0.0968001 +0.03925039 0.1606827 0.0968001 +0.05087609 0.1606827 0.0968001 +0.06429595 0.1606827 0.0968001 +0.07958143 0.1606827 0.0968001 +0.0968001 0.1606827 0.0968001 +0.1160161 0.1606827 0.0968001 +0.1372908 0.1606827 0.0968001 +0.1606827 0.1606827 0.0968001 +0.1862481 0.1606827 0.0968001 +0.2140411 0.1606827 0.0968001 +0.2441142 0.1606827 0.0968001 +0.2765176 0.1606827 0.0968001 +0.3113005 0.1606827 0.0968001 +0.3485102 0.1606827 0.0968001 +0.388193 0.1606827 0.0968001 +0.4303934 0.1606827 0.0968001 +0.4751555 0.1606827 0.0968001 +0.5225216 0.1606827 0.0968001 +0.5725335 0.1606827 0.0968001 +0.6252316 0.1606827 0.0968001 +0.6806558 0.1606827 0.0968001 +0.7388448 0.1606827 0.0968001 +0.7998369 0.1606827 0.0968001 +0.8636691 0.1606827 0.0968001 +0.9303782 0.1606827 0.0968001 +1 0.1606827 0.0968001 +0 0.1862481 0.0968001 +0.002418731 0.1862481 0.0968001 +0.005155668 0.1862481 0.0968001 +0.009080105 0.1862481 0.0968001 +0.01434988 0.1862481 0.0968001 +0.02107202 0.1862481 0.0968001 +0.02934285 0.1862481 0.0968001 +0.03925039 0.1862481 0.0968001 +0.05087609 0.1862481 0.0968001 +0.06429595 0.1862481 0.0968001 +0.07958143 0.1862481 0.0968001 +0.0968001 0.1862481 0.0968001 +0.1160161 0.1862481 0.0968001 +0.1372908 0.1862481 0.0968001 +0.1606827 0.1862481 0.0968001 +0.1862481 0.1862481 0.0968001 +0.2140411 0.1862481 0.0968001 +0.2441142 0.1862481 0.0968001 +0.2765176 0.1862481 0.0968001 +0.3113005 0.1862481 0.0968001 +0.3485102 0.1862481 0.0968001 +0.388193 0.1862481 0.0968001 +0.4303934 0.1862481 0.0968001 +0.4751555 0.1862481 0.0968001 +0.5225216 0.1862481 0.0968001 +0.5725335 0.1862481 0.0968001 +0.6252316 0.1862481 0.0968001 +0.6806558 0.1862481 0.0968001 +0.7388448 0.1862481 0.0968001 +0.7998369 0.1862481 0.0968001 +0.8636691 0.1862481 0.0968001 +0.9303782 0.1862481 0.0968001 +1 0.1862481 0.0968001 +0 0.2140411 0.0968001 +0.002418731 0.2140411 0.0968001 +0.005155668 0.2140411 0.0968001 +0.009080105 0.2140411 0.0968001 +0.01434988 0.2140411 0.0968001 +0.02107202 0.2140411 0.0968001 +0.02934285 0.2140411 0.0968001 +0.03925039 0.2140411 0.0968001 +0.05087609 0.2140411 0.0968001 +0.06429595 0.2140411 0.0968001 +0.07958143 0.2140411 0.0968001 +0.0968001 0.2140411 0.0968001 +0.1160161 0.2140411 0.0968001 +0.1372908 0.2140411 0.0968001 +0.1606827 0.2140411 0.0968001 +0.1862481 0.2140411 0.0968001 +0.2140411 0.2140411 0.0968001 +0.2441142 0.2140411 0.0968001 +0.2765176 0.2140411 0.0968001 +0.3113005 0.2140411 0.0968001 +0.3485102 0.2140411 0.0968001 +0.388193 0.2140411 0.0968001 +0.4303934 0.2140411 0.0968001 +0.4751555 0.2140411 0.0968001 +0.5225216 0.2140411 0.0968001 +0.5725335 0.2140411 0.0968001 +0.6252316 0.2140411 0.0968001 +0.6806558 0.2140411 0.0968001 +0.7388448 0.2140411 0.0968001 +0.7998369 0.2140411 0.0968001 +0.8636691 0.2140411 0.0968001 +0.9303782 0.2140411 0.0968001 +1 0.2140411 0.0968001 +0 0.2441142 0.0968001 +0.002418731 0.2441142 0.0968001 +0.005155668 0.2441142 0.0968001 +0.009080105 0.2441142 0.0968001 +0.01434988 0.2441142 0.0968001 +0.02107202 0.2441142 0.0968001 +0.02934285 0.2441142 0.0968001 +0.03925039 0.2441142 0.0968001 +0.05087609 0.2441142 0.0968001 +0.06429595 0.2441142 0.0968001 +0.07958143 0.2441142 0.0968001 +0.0968001 0.2441142 0.0968001 +0.1160161 0.2441142 0.0968001 +0.1372908 0.2441142 0.0968001 +0.1606827 0.2441142 0.0968001 +0.1862481 0.2441142 0.0968001 +0.2140411 0.2441142 0.0968001 +0.2441142 0.2441142 0.0968001 +0.2765176 0.2441142 0.0968001 +0.3113005 0.2441142 0.0968001 +0.3485102 0.2441142 0.0968001 +0.388193 0.2441142 0.0968001 +0.4303934 0.2441142 0.0968001 +0.4751555 0.2441142 0.0968001 +0.5225216 0.2441142 0.0968001 +0.5725335 0.2441142 0.0968001 +0.6252316 0.2441142 0.0968001 +0.6806558 0.2441142 0.0968001 +0.7388448 0.2441142 0.0968001 +0.7998369 0.2441142 0.0968001 +0.8636691 0.2441142 0.0968001 +0.9303782 0.2441142 0.0968001 +1 0.2441142 0.0968001 +0 0.2765176 0.0968001 +0.002418731 0.2765176 0.0968001 +0.005155668 0.2765176 0.0968001 +0.009080105 0.2765176 0.0968001 +0.01434988 0.2765176 0.0968001 +0.02107202 0.2765176 0.0968001 +0.02934285 0.2765176 0.0968001 +0.03925039 0.2765176 0.0968001 +0.05087609 0.2765176 0.0968001 +0.06429595 0.2765176 0.0968001 +0.07958143 0.2765176 0.0968001 +0.0968001 0.2765176 0.0968001 +0.1160161 0.2765176 0.0968001 +0.1372908 0.2765176 0.0968001 +0.1606827 0.2765176 0.0968001 +0.1862481 0.2765176 0.0968001 +0.2140411 0.2765176 0.0968001 +0.2441142 0.2765176 0.0968001 +0.2765176 0.2765176 0.0968001 +0.3113005 0.2765176 0.0968001 +0.3485102 0.2765176 0.0968001 +0.388193 0.2765176 0.0968001 +0.4303934 0.2765176 0.0968001 +0.4751555 0.2765176 0.0968001 +0.5225216 0.2765176 0.0968001 +0.5725335 0.2765176 0.0968001 +0.6252316 0.2765176 0.0968001 +0.6806558 0.2765176 0.0968001 +0.7388448 0.2765176 0.0968001 +0.7998369 0.2765176 0.0968001 +0.8636691 0.2765176 0.0968001 +0.9303782 0.2765176 0.0968001 +1 0.2765176 0.0968001 +0 0.3113005 0.0968001 +0.002418731 0.3113005 0.0968001 +0.005155668 0.3113005 0.0968001 +0.009080105 0.3113005 0.0968001 +0.01434988 0.3113005 0.0968001 +0.02107202 0.3113005 0.0968001 +0.02934285 0.3113005 0.0968001 +0.03925039 0.3113005 0.0968001 +0.05087609 0.3113005 0.0968001 +0.06429595 0.3113005 0.0968001 +0.07958143 0.3113005 0.0968001 +0.0968001 0.3113005 0.0968001 +0.1160161 0.3113005 0.0968001 +0.1372908 0.3113005 0.0968001 +0.1606827 0.3113005 0.0968001 +0.1862481 0.3113005 0.0968001 +0.2140411 0.3113005 0.0968001 +0.2441142 0.3113005 0.0968001 +0.2765176 0.3113005 0.0968001 +0.3113005 0.3113005 0.0968001 +0.3485102 0.3113005 0.0968001 +0.388193 0.3113005 0.0968001 +0.4303934 0.3113005 0.0968001 +0.4751555 0.3113005 0.0968001 +0.5225216 0.3113005 0.0968001 +0.5725335 0.3113005 0.0968001 +0.6252316 0.3113005 0.0968001 +0.6806558 0.3113005 0.0968001 +0.7388448 0.3113005 0.0968001 +0.7998369 0.3113005 0.0968001 +0.8636691 0.3113005 0.0968001 +0.9303782 0.3113005 0.0968001 +1 0.3113005 0.0968001 +0 0.3485102 0.0968001 +0.002418731 0.3485102 0.0968001 +0.005155668 0.3485102 0.0968001 +0.009080105 0.3485102 0.0968001 +0.01434988 0.3485102 0.0968001 +0.02107202 0.3485102 0.0968001 +0.02934285 0.3485102 0.0968001 +0.03925039 0.3485102 0.0968001 +0.05087609 0.3485102 0.0968001 +0.06429595 0.3485102 0.0968001 +0.07958143 0.3485102 0.0968001 +0.0968001 0.3485102 0.0968001 +0.1160161 0.3485102 0.0968001 +0.1372908 0.3485102 0.0968001 +0.1606827 0.3485102 0.0968001 +0.1862481 0.3485102 0.0968001 +0.2140411 0.3485102 0.0968001 +0.2441142 0.3485102 0.0968001 +0.2765176 0.3485102 0.0968001 +0.3113005 0.3485102 0.0968001 +0.3485102 0.3485102 0.0968001 +0.388193 0.3485102 0.0968001 +0.4303934 0.3485102 0.0968001 +0.4751555 0.3485102 0.0968001 +0.5225216 0.3485102 0.0968001 +0.5725335 0.3485102 0.0968001 +0.6252316 0.3485102 0.0968001 +0.6806558 0.3485102 0.0968001 +0.7388448 0.3485102 0.0968001 +0.7998369 0.3485102 0.0968001 +0.8636691 0.3485102 0.0968001 +0.9303782 0.3485102 0.0968001 +1 0.3485102 0.0968001 +0 0.388193 0.0968001 +0.002418731 0.388193 0.0968001 +0.005155668 0.388193 0.0968001 +0.009080105 0.388193 0.0968001 +0.01434988 0.388193 0.0968001 +0.02107202 0.388193 0.0968001 +0.02934285 0.388193 0.0968001 +0.03925039 0.388193 0.0968001 +0.05087609 0.388193 0.0968001 +0.06429595 0.388193 0.0968001 +0.07958143 0.388193 0.0968001 +0.0968001 0.388193 0.0968001 +0.1160161 0.388193 0.0968001 +0.1372908 0.388193 0.0968001 +0.1606827 0.388193 0.0968001 +0.1862481 0.388193 0.0968001 +0.2140411 0.388193 0.0968001 +0.2441142 0.388193 0.0968001 +0.2765176 0.388193 0.0968001 +0.3113005 0.388193 0.0968001 +0.3485102 0.388193 0.0968001 +0.388193 0.388193 0.0968001 +0.4303934 0.388193 0.0968001 +0.4751555 0.388193 0.0968001 +0.5225216 0.388193 0.0968001 +0.5725335 0.388193 0.0968001 +0.6252316 0.388193 0.0968001 +0.6806558 0.388193 0.0968001 +0.7388448 0.388193 0.0968001 +0.7998369 0.388193 0.0968001 +0.8636691 0.388193 0.0968001 +0.9303782 0.388193 0.0968001 +1 0.388193 0.0968001 +0 0.4303934 0.0968001 +0.002418731 0.4303934 0.0968001 +0.005155668 0.4303934 0.0968001 +0.009080105 0.4303934 0.0968001 +0.01434988 0.4303934 0.0968001 +0.02107202 0.4303934 0.0968001 +0.02934285 0.4303934 0.0968001 +0.03925039 0.4303934 0.0968001 +0.05087609 0.4303934 0.0968001 +0.06429595 0.4303934 0.0968001 +0.07958143 0.4303934 0.0968001 +0.0968001 0.4303934 0.0968001 +0.1160161 0.4303934 0.0968001 +0.1372908 0.4303934 0.0968001 +0.1606827 0.4303934 0.0968001 +0.1862481 0.4303934 0.0968001 +0.2140411 0.4303934 0.0968001 +0.2441142 0.4303934 0.0968001 +0.2765176 0.4303934 0.0968001 +0.3113005 0.4303934 0.0968001 +0.3485102 0.4303934 0.0968001 +0.388193 0.4303934 0.0968001 +0.4303934 0.4303934 0.0968001 +0.4751555 0.4303934 0.0968001 +0.5225216 0.4303934 0.0968001 +0.5725335 0.4303934 0.0968001 +0.6252316 0.4303934 0.0968001 +0.6806558 0.4303934 0.0968001 +0.7388448 0.4303934 0.0968001 +0.7998369 0.4303934 0.0968001 +0.8636691 0.4303934 0.0968001 +0.9303782 0.4303934 0.0968001 +1 0.4303934 0.0968001 +0 0.4751555 0.0968001 +0.002418731 0.4751555 0.0968001 +0.005155668 0.4751555 0.0968001 +0.009080105 0.4751555 0.0968001 +0.01434988 0.4751555 0.0968001 +0.02107202 0.4751555 0.0968001 +0.02934285 0.4751555 0.0968001 +0.03925039 0.4751555 0.0968001 +0.05087609 0.4751555 0.0968001 +0.06429595 0.4751555 0.0968001 +0.07958143 0.4751555 0.0968001 +0.0968001 0.4751555 0.0968001 +0.1160161 0.4751555 0.0968001 +0.1372908 0.4751555 0.0968001 +0.1606827 0.4751555 0.0968001 +0.1862481 0.4751555 0.0968001 +0.2140411 0.4751555 0.0968001 +0.2441142 0.4751555 0.0968001 +0.2765176 0.4751555 0.0968001 +0.3113005 0.4751555 0.0968001 +0.3485102 0.4751555 0.0968001 +0.388193 0.4751555 0.0968001 +0.4303934 0.4751555 0.0968001 +0.4751555 0.4751555 0.0968001 +0.5225216 0.4751555 0.0968001 +0.5725335 0.4751555 0.0968001 +0.6252316 0.4751555 0.0968001 +0.6806558 0.4751555 0.0968001 +0.7388448 0.4751555 0.0968001 +0.7998369 0.4751555 0.0968001 +0.8636691 0.4751555 0.0968001 +0.9303782 0.4751555 0.0968001 +1 0.4751555 0.0968001 +0 0.5225216 0.0968001 +0.002418731 0.5225216 0.0968001 +0.005155668 0.5225216 0.0968001 +0.009080105 0.5225216 0.0968001 +0.01434988 0.5225216 0.0968001 +0.02107202 0.5225216 0.0968001 +0.02934285 0.5225216 0.0968001 +0.03925039 0.5225216 0.0968001 +0.05087609 0.5225216 0.0968001 +0.06429595 0.5225216 0.0968001 +0.07958143 0.5225216 0.0968001 +0.0968001 0.5225216 0.0968001 +0.1160161 0.5225216 0.0968001 +0.1372908 0.5225216 0.0968001 +0.1606827 0.5225216 0.0968001 +0.1862481 0.5225216 0.0968001 +0.2140411 0.5225216 0.0968001 +0.2441142 0.5225216 0.0968001 +0.2765176 0.5225216 0.0968001 +0.3113005 0.5225216 0.0968001 +0.3485102 0.5225216 0.0968001 +0.388193 0.5225216 0.0968001 +0.4303934 0.5225216 0.0968001 +0.4751555 0.5225216 0.0968001 +0.5225216 0.5225216 0.0968001 +0.5725335 0.5225216 0.0968001 +0.6252316 0.5225216 0.0968001 +0.6806558 0.5225216 0.0968001 +0.7388448 0.5225216 0.0968001 +0.7998369 0.5225216 0.0968001 +0.8636691 0.5225216 0.0968001 +0.9303782 0.5225216 0.0968001 +1 0.5225216 0.0968001 +0 0.5725335 0.0968001 +0.002418731 0.5725335 0.0968001 +0.005155668 0.5725335 0.0968001 +0.009080105 0.5725335 0.0968001 +0.01434988 0.5725335 0.0968001 +0.02107202 0.5725335 0.0968001 +0.02934285 0.5725335 0.0968001 +0.03925039 0.5725335 0.0968001 +0.05087609 0.5725335 0.0968001 +0.06429595 0.5725335 0.0968001 +0.07958143 0.5725335 0.0968001 +0.0968001 0.5725335 0.0968001 +0.1160161 0.5725335 0.0968001 +0.1372908 0.5725335 0.0968001 +0.1606827 0.5725335 0.0968001 +0.1862481 0.5725335 0.0968001 +0.2140411 0.5725335 0.0968001 +0.2441142 0.5725335 0.0968001 +0.2765176 0.5725335 0.0968001 +0.3113005 0.5725335 0.0968001 +0.3485102 0.5725335 0.0968001 +0.388193 0.5725335 0.0968001 +0.4303934 0.5725335 0.0968001 +0.4751555 0.5725335 0.0968001 +0.5225216 0.5725335 0.0968001 +0.5725335 0.5725335 0.0968001 +0.6252316 0.5725335 0.0968001 +0.6806558 0.5725335 0.0968001 +0.7388448 0.5725335 0.0968001 +0.7998369 0.5725335 0.0968001 +0.8636691 0.5725335 0.0968001 +0.9303782 0.5725335 0.0968001 +1 0.5725335 0.0968001 +0 0.6252316 0.0968001 +0.002418731 0.6252316 0.0968001 +0.005155668 0.6252316 0.0968001 +0.009080105 0.6252316 0.0968001 +0.01434988 0.6252316 0.0968001 +0.02107202 0.6252316 0.0968001 +0.02934285 0.6252316 0.0968001 +0.03925039 0.6252316 0.0968001 +0.05087609 0.6252316 0.0968001 +0.06429595 0.6252316 0.0968001 +0.07958143 0.6252316 0.0968001 +0.0968001 0.6252316 0.0968001 +0.1160161 0.6252316 0.0968001 +0.1372908 0.6252316 0.0968001 +0.1606827 0.6252316 0.0968001 +0.1862481 0.6252316 0.0968001 +0.2140411 0.6252316 0.0968001 +0.2441142 0.6252316 0.0968001 +0.2765176 0.6252316 0.0968001 +0.3113005 0.6252316 0.0968001 +0.3485102 0.6252316 0.0968001 +0.388193 0.6252316 0.0968001 +0.4303934 0.6252316 0.0968001 +0.4751555 0.6252316 0.0968001 +0.5225216 0.6252316 0.0968001 +0.5725335 0.6252316 0.0968001 +0.6252316 0.6252316 0.0968001 +0.6806558 0.6252316 0.0968001 +0.7388448 0.6252316 0.0968001 +0.7998369 0.6252316 0.0968001 +0.8636691 0.6252316 0.0968001 +0.9303782 0.6252316 0.0968001 +1 0.6252316 0.0968001 +0 0.6806558 0.0968001 +0.002418731 0.6806558 0.0968001 +0.005155668 0.6806558 0.0968001 +0.009080105 0.6806558 0.0968001 +0.01434988 0.6806558 0.0968001 +0.02107202 0.6806558 0.0968001 +0.02934285 0.6806558 0.0968001 +0.03925039 0.6806558 0.0968001 +0.05087609 0.6806558 0.0968001 +0.06429595 0.6806558 0.0968001 +0.07958143 0.6806558 0.0968001 +0.0968001 0.6806558 0.0968001 +0.1160161 0.6806558 0.0968001 +0.1372908 0.6806558 0.0968001 +0.1606827 0.6806558 0.0968001 +0.1862481 0.6806558 0.0968001 +0.2140411 0.6806558 0.0968001 +0.2441142 0.6806558 0.0968001 +0.2765176 0.6806558 0.0968001 +0.3113005 0.6806558 0.0968001 +0.3485102 0.6806558 0.0968001 +0.388193 0.6806558 0.0968001 +0.4303934 0.6806558 0.0968001 +0.4751555 0.6806558 0.0968001 +0.5225216 0.6806558 0.0968001 +0.5725335 0.6806558 0.0968001 +0.6252316 0.6806558 0.0968001 +0.6806558 0.6806558 0.0968001 +0.7388448 0.6806558 0.0968001 +0.7998369 0.6806558 0.0968001 +0.8636691 0.6806558 0.0968001 +0.9303782 0.6806558 0.0968001 +1 0.6806558 0.0968001 +0 0.7388448 0.0968001 +0.002418731 0.7388448 0.0968001 +0.005155668 0.7388448 0.0968001 +0.009080105 0.7388448 0.0968001 +0.01434988 0.7388448 0.0968001 +0.02107202 0.7388448 0.0968001 +0.02934285 0.7388448 0.0968001 +0.03925039 0.7388448 0.0968001 +0.05087609 0.7388448 0.0968001 +0.06429595 0.7388448 0.0968001 +0.07958143 0.7388448 0.0968001 +0.0968001 0.7388448 0.0968001 +0.1160161 0.7388448 0.0968001 +0.1372908 0.7388448 0.0968001 +0.1606827 0.7388448 0.0968001 +0.1862481 0.7388448 0.0968001 +0.2140411 0.7388448 0.0968001 +0.2441142 0.7388448 0.0968001 +0.2765176 0.7388448 0.0968001 +0.3113005 0.7388448 0.0968001 +0.3485102 0.7388448 0.0968001 +0.388193 0.7388448 0.0968001 +0.4303934 0.7388448 0.0968001 +0.4751555 0.7388448 0.0968001 +0.5225216 0.7388448 0.0968001 +0.5725335 0.7388448 0.0968001 +0.6252316 0.7388448 0.0968001 +0.6806558 0.7388448 0.0968001 +0.7388448 0.7388448 0.0968001 +0.7998369 0.7388448 0.0968001 +0.8636691 0.7388448 0.0968001 +0.9303782 0.7388448 0.0968001 +1 0.7388448 0.0968001 +0 0.7998369 0.0968001 +0.002418731 0.7998369 0.0968001 +0.005155668 0.7998369 0.0968001 +0.009080105 0.7998369 0.0968001 +0.01434988 0.7998369 0.0968001 +0.02107202 0.7998369 0.0968001 +0.02934285 0.7998369 0.0968001 +0.03925039 0.7998369 0.0968001 +0.05087609 0.7998369 0.0968001 +0.06429595 0.7998369 0.0968001 +0.07958143 0.7998369 0.0968001 +0.0968001 0.7998369 0.0968001 +0.1160161 0.7998369 0.0968001 +0.1372908 0.7998369 0.0968001 +0.1606827 0.7998369 0.0968001 +0.1862481 0.7998369 0.0968001 +0.2140411 0.7998369 0.0968001 +0.2441142 0.7998369 0.0968001 +0.2765176 0.7998369 0.0968001 +0.3113005 0.7998369 0.0968001 +0.3485102 0.7998369 0.0968001 +0.388193 0.7998369 0.0968001 +0.4303934 0.7998369 0.0968001 +0.4751555 0.7998369 0.0968001 +0.5225216 0.7998369 0.0968001 +0.5725335 0.7998369 0.0968001 +0.6252316 0.7998369 0.0968001 +0.6806558 0.7998369 0.0968001 +0.7388448 0.7998369 0.0968001 +0.7998369 0.7998369 0.0968001 +0.8636691 0.7998369 0.0968001 +0.9303782 0.7998369 0.0968001 +1 0.7998369 0.0968001 +0 0.8636691 0.0968001 +0.002418731 0.8636691 0.0968001 +0.005155668 0.8636691 0.0968001 +0.009080105 0.8636691 0.0968001 +0.01434988 0.8636691 0.0968001 +0.02107202 0.8636691 0.0968001 +0.02934285 0.8636691 0.0968001 +0.03925039 0.8636691 0.0968001 +0.05087609 0.8636691 0.0968001 +0.06429595 0.8636691 0.0968001 +0.07958143 0.8636691 0.0968001 +0.0968001 0.8636691 0.0968001 +0.1160161 0.8636691 0.0968001 +0.1372908 0.8636691 0.0968001 +0.1606827 0.8636691 0.0968001 +0.1862481 0.8636691 0.0968001 +0.2140411 0.8636691 0.0968001 +0.2441142 0.8636691 0.0968001 +0.2765176 0.8636691 0.0968001 +0.3113005 0.8636691 0.0968001 +0.3485102 0.8636691 0.0968001 +0.388193 0.8636691 0.0968001 +0.4303934 0.8636691 0.0968001 +0.4751555 0.8636691 0.0968001 +0.5225216 0.8636691 0.0968001 +0.5725335 0.8636691 0.0968001 +0.6252316 0.8636691 0.0968001 +0.6806558 0.8636691 0.0968001 +0.7388448 0.8636691 0.0968001 +0.7998369 0.8636691 0.0968001 +0.8636691 0.8636691 0.0968001 +0.9303782 0.8636691 0.0968001 +1 0.8636691 0.0968001 +0 0.9303782 0.0968001 +0.002418731 0.9303782 0.0968001 +0.005155668 0.9303782 0.0968001 +0.009080105 0.9303782 0.0968001 +0.01434988 0.9303782 0.0968001 +0.02107202 0.9303782 0.0968001 +0.02934285 0.9303782 0.0968001 +0.03925039 0.9303782 0.0968001 +0.05087609 0.9303782 0.0968001 +0.06429595 0.9303782 0.0968001 +0.07958143 0.9303782 0.0968001 +0.0968001 0.9303782 0.0968001 +0.1160161 0.9303782 0.0968001 +0.1372908 0.9303782 0.0968001 +0.1606827 0.9303782 0.0968001 +0.1862481 0.9303782 0.0968001 +0.2140411 0.9303782 0.0968001 +0.2441142 0.9303782 0.0968001 +0.2765176 0.9303782 0.0968001 +0.3113005 0.9303782 0.0968001 +0.3485102 0.9303782 0.0968001 +0.388193 0.9303782 0.0968001 +0.4303934 0.9303782 0.0968001 +0.4751555 0.9303782 0.0968001 +0.5225216 0.9303782 0.0968001 +0.5725335 0.9303782 0.0968001 +0.6252316 0.9303782 0.0968001 +0.6806558 0.9303782 0.0968001 +0.7388448 0.9303782 0.0968001 +0.7998369 0.9303782 0.0968001 +0.8636691 0.9303782 0.0968001 +0.9303782 0.9303782 0.0968001 +1 0.9303782 0.0968001 +0 1 0.0968001 +0.002418731 1 0.0968001 +0.005155668 1 0.0968001 +0.009080105 1 0.0968001 +0.01434988 1 0.0968001 +0.02107202 1 0.0968001 +0.02934285 1 0.0968001 +0.03925039 1 0.0968001 +0.05087609 1 0.0968001 +0.06429595 1 0.0968001 +0.07958143 1 0.0968001 +0.0968001 1 0.0968001 +0.1160161 1 0.0968001 +0.1372908 1 0.0968001 +0.1606827 1 0.0968001 +0.1862481 1 0.0968001 +0.2140411 1 0.0968001 +0.2441142 1 0.0968001 +0.2765176 1 0.0968001 +0.3113005 1 0.0968001 +0.3485102 1 0.0968001 +0.388193 1 0.0968001 +0.4303934 1 0.0968001 +0.4751555 1 0.0968001 +0.5225216 1 0.0968001 +0.5725335 1 0.0968001 +0.6252316 1 0.0968001 +0.6806558 1 0.0968001 +0.7388448 1 0.0968001 +0.7998369 1 0.0968001 +0.8636691 1 0.0968001 +0.9303782 1 0.0968001 +1 1 0.0968001 +0 0 0.1160161 +0.002418731 0 0.1160161 +0.005155668 0 0.1160161 +0.009080105 0 0.1160161 +0.01434988 0 0.1160161 +0.02107202 0 0.1160161 +0.02934285 0 0.1160161 +0.03925039 0 0.1160161 +0.05087609 0 0.1160161 +0.06429595 0 0.1160161 +0.07958143 0 0.1160161 +0.0968001 0 0.1160161 +0.1160161 0 0.1160161 +0.1372908 0 0.1160161 +0.1606827 0 0.1160161 +0.1862481 0 0.1160161 +0.2140411 0 0.1160161 +0.2441142 0 0.1160161 +0.2765176 0 0.1160161 +0.3113005 0 0.1160161 +0.3485102 0 0.1160161 +0.388193 0 0.1160161 +0.4303934 0 0.1160161 +0.4751555 0 0.1160161 +0.5225216 0 0.1160161 +0.5725335 0 0.1160161 +0.6252316 0 0.1160161 +0.6806558 0 0.1160161 +0.7388448 0 0.1160161 +0.7998369 0 0.1160161 +0.8636691 0 0.1160161 +0.9303782 0 0.1160161 +1 0 0.1160161 +0 0.002418731 0.1160161 +0.002418731 0.002418731 0.1160161 +0.005155668 0.002418731 0.1160161 +0.009080105 0.002418731 0.1160161 +0.01434988 0.002418731 0.1160161 +0.02107202 0.002418731 0.1160161 +0.02934285 0.002418731 0.1160161 +0.03925039 0.002418731 0.1160161 +0.05087609 0.002418731 0.1160161 +0.06429595 0.002418731 0.1160161 +0.07958143 0.002418731 0.1160161 +0.0968001 0.002418731 0.1160161 +0.1160161 0.002418731 0.1160161 +0.1372908 0.002418731 0.1160161 +0.1606827 0.002418731 0.1160161 +0.1862481 0.002418731 0.1160161 +0.2140411 0.002418731 0.1160161 +0.2441142 0.002418731 0.1160161 +0.2765176 0.002418731 0.1160161 +0.3113005 0.002418731 0.1160161 +0.3485102 0.002418731 0.1160161 +0.388193 0.002418731 0.1160161 +0.4303934 0.002418731 0.1160161 +0.4751555 0.002418731 0.1160161 +0.5225216 0.002418731 0.1160161 +0.5725335 0.002418731 0.1160161 +0.6252316 0.002418731 0.1160161 +0.6806558 0.002418731 0.1160161 +0.7388448 0.002418731 0.1160161 +0.7998369 0.002418731 0.1160161 +0.8636691 0.002418731 0.1160161 +0.9303782 0.002418731 0.1160161 +1 0.002418731 0.1160161 +0 0.005155668 0.1160161 +0.002418731 0.005155668 0.1160161 +0.005155668 0.005155668 0.1160161 +0.009080105 0.005155668 0.1160161 +0.01434988 0.005155668 0.1160161 +0.02107202 0.005155668 0.1160161 +0.02934285 0.005155668 0.1160161 +0.03925039 0.005155668 0.1160161 +0.05087609 0.005155668 0.1160161 +0.06429595 0.005155668 0.1160161 +0.07958143 0.005155668 0.1160161 +0.0968001 0.005155668 0.1160161 +0.1160161 0.005155668 0.1160161 +0.1372908 0.005155668 0.1160161 +0.1606827 0.005155668 0.1160161 +0.1862481 0.005155668 0.1160161 +0.2140411 0.005155668 0.1160161 +0.2441142 0.005155668 0.1160161 +0.2765176 0.005155668 0.1160161 +0.3113005 0.005155668 0.1160161 +0.3485102 0.005155668 0.1160161 +0.388193 0.005155668 0.1160161 +0.4303934 0.005155668 0.1160161 +0.4751555 0.005155668 0.1160161 +0.5225216 0.005155668 0.1160161 +0.5725335 0.005155668 0.1160161 +0.6252316 0.005155668 0.1160161 +0.6806558 0.005155668 0.1160161 +0.7388448 0.005155668 0.1160161 +0.7998369 0.005155668 0.1160161 +0.8636691 0.005155668 0.1160161 +0.9303782 0.005155668 0.1160161 +1 0.005155668 0.1160161 +0 0.009080105 0.1160161 +0.002418731 0.009080105 0.1160161 +0.005155668 0.009080105 0.1160161 +0.009080105 0.009080105 0.1160161 +0.01434988 0.009080105 0.1160161 +0.02107202 0.009080105 0.1160161 +0.02934285 0.009080105 0.1160161 +0.03925039 0.009080105 0.1160161 +0.05087609 0.009080105 0.1160161 +0.06429595 0.009080105 0.1160161 +0.07958143 0.009080105 0.1160161 +0.0968001 0.009080105 0.1160161 +0.1160161 0.009080105 0.1160161 +0.1372908 0.009080105 0.1160161 +0.1606827 0.009080105 0.1160161 +0.1862481 0.009080105 0.1160161 +0.2140411 0.009080105 0.1160161 +0.2441142 0.009080105 0.1160161 +0.2765176 0.009080105 0.1160161 +0.3113005 0.009080105 0.1160161 +0.3485102 0.009080105 0.1160161 +0.388193 0.009080105 0.1160161 +0.4303934 0.009080105 0.1160161 +0.4751555 0.009080105 0.1160161 +0.5225216 0.009080105 0.1160161 +0.5725335 0.009080105 0.1160161 +0.6252316 0.009080105 0.1160161 +0.6806558 0.009080105 0.1160161 +0.7388448 0.009080105 0.1160161 +0.7998369 0.009080105 0.1160161 +0.8636691 0.009080105 0.1160161 +0.9303782 0.009080105 0.1160161 +1 0.009080105 0.1160161 +0 0.01434988 0.1160161 +0.002418731 0.01434988 0.1160161 +0.005155668 0.01434988 0.1160161 +0.009080105 0.01434988 0.1160161 +0.01434988 0.01434988 0.1160161 +0.02107202 0.01434988 0.1160161 +0.02934285 0.01434988 0.1160161 +0.03925039 0.01434988 0.1160161 +0.05087609 0.01434988 0.1160161 +0.06429595 0.01434988 0.1160161 +0.07958143 0.01434988 0.1160161 +0.0968001 0.01434988 0.1160161 +0.1160161 0.01434988 0.1160161 +0.1372908 0.01434988 0.1160161 +0.1606827 0.01434988 0.1160161 +0.1862481 0.01434988 0.1160161 +0.2140411 0.01434988 0.1160161 +0.2441142 0.01434988 0.1160161 +0.2765176 0.01434988 0.1160161 +0.3113005 0.01434988 0.1160161 +0.3485102 0.01434988 0.1160161 +0.388193 0.01434988 0.1160161 +0.4303934 0.01434988 0.1160161 +0.4751555 0.01434988 0.1160161 +0.5225216 0.01434988 0.1160161 +0.5725335 0.01434988 0.1160161 +0.6252316 0.01434988 0.1160161 +0.6806558 0.01434988 0.1160161 +0.7388448 0.01434988 0.1160161 +0.7998369 0.01434988 0.1160161 +0.8636691 0.01434988 0.1160161 +0.9303782 0.01434988 0.1160161 +1 0.01434988 0.1160161 +0 0.02107202 0.1160161 +0.002418731 0.02107202 0.1160161 +0.005155668 0.02107202 0.1160161 +0.009080105 0.02107202 0.1160161 +0.01434988 0.02107202 0.1160161 +0.02107202 0.02107202 0.1160161 +0.02934285 0.02107202 0.1160161 +0.03925039 0.02107202 0.1160161 +0.05087609 0.02107202 0.1160161 +0.06429595 0.02107202 0.1160161 +0.07958143 0.02107202 0.1160161 +0.0968001 0.02107202 0.1160161 +0.1160161 0.02107202 0.1160161 +0.1372908 0.02107202 0.1160161 +0.1606827 0.02107202 0.1160161 +0.1862481 0.02107202 0.1160161 +0.2140411 0.02107202 0.1160161 +0.2441142 0.02107202 0.1160161 +0.2765176 0.02107202 0.1160161 +0.3113005 0.02107202 0.1160161 +0.3485102 0.02107202 0.1160161 +0.388193 0.02107202 0.1160161 +0.4303934 0.02107202 0.1160161 +0.4751555 0.02107202 0.1160161 +0.5225216 0.02107202 0.1160161 +0.5725335 0.02107202 0.1160161 +0.6252316 0.02107202 0.1160161 +0.6806558 0.02107202 0.1160161 +0.7388448 0.02107202 0.1160161 +0.7998369 0.02107202 0.1160161 +0.8636691 0.02107202 0.1160161 +0.9303782 0.02107202 0.1160161 +1 0.02107202 0.1160161 +0 0.02934285 0.1160161 +0.002418731 0.02934285 0.1160161 +0.005155668 0.02934285 0.1160161 +0.009080105 0.02934285 0.1160161 +0.01434988 0.02934285 0.1160161 +0.02107202 0.02934285 0.1160161 +0.02934285 0.02934285 0.1160161 +0.03925039 0.02934285 0.1160161 +0.05087609 0.02934285 0.1160161 +0.06429595 0.02934285 0.1160161 +0.07958143 0.02934285 0.1160161 +0.0968001 0.02934285 0.1160161 +0.1160161 0.02934285 0.1160161 +0.1372908 0.02934285 0.1160161 +0.1606827 0.02934285 0.1160161 +0.1862481 0.02934285 0.1160161 +0.2140411 0.02934285 0.1160161 +0.2441142 0.02934285 0.1160161 +0.2765176 0.02934285 0.1160161 +0.3113005 0.02934285 0.1160161 +0.3485102 0.02934285 0.1160161 +0.388193 0.02934285 0.1160161 +0.4303934 0.02934285 0.1160161 +0.4751555 0.02934285 0.1160161 +0.5225216 0.02934285 0.1160161 +0.5725335 0.02934285 0.1160161 +0.6252316 0.02934285 0.1160161 +0.6806558 0.02934285 0.1160161 +0.7388448 0.02934285 0.1160161 +0.7998369 0.02934285 0.1160161 +0.8636691 0.02934285 0.1160161 +0.9303782 0.02934285 0.1160161 +1 0.02934285 0.1160161 +0 0.03925039 0.1160161 +0.002418731 0.03925039 0.1160161 +0.005155668 0.03925039 0.1160161 +0.009080105 0.03925039 0.1160161 +0.01434988 0.03925039 0.1160161 +0.02107202 0.03925039 0.1160161 +0.02934285 0.03925039 0.1160161 +0.03925039 0.03925039 0.1160161 +0.05087609 0.03925039 0.1160161 +0.06429595 0.03925039 0.1160161 +0.07958143 0.03925039 0.1160161 +0.0968001 0.03925039 0.1160161 +0.1160161 0.03925039 0.1160161 +0.1372908 0.03925039 0.1160161 +0.1606827 0.03925039 0.1160161 +0.1862481 0.03925039 0.1160161 +0.2140411 0.03925039 0.1160161 +0.2441142 0.03925039 0.1160161 +0.2765176 0.03925039 0.1160161 +0.3113005 0.03925039 0.1160161 +0.3485102 0.03925039 0.1160161 +0.388193 0.03925039 0.1160161 +0.4303934 0.03925039 0.1160161 +0.4751555 0.03925039 0.1160161 +0.5225216 0.03925039 0.1160161 +0.5725335 0.03925039 0.1160161 +0.6252316 0.03925039 0.1160161 +0.6806558 0.03925039 0.1160161 +0.7388448 0.03925039 0.1160161 +0.7998369 0.03925039 0.1160161 +0.8636691 0.03925039 0.1160161 +0.9303782 0.03925039 0.1160161 +1 0.03925039 0.1160161 +0 0.05087609 0.1160161 +0.002418731 0.05087609 0.1160161 +0.005155668 0.05087609 0.1160161 +0.009080105 0.05087609 0.1160161 +0.01434988 0.05087609 0.1160161 +0.02107202 0.05087609 0.1160161 +0.02934285 0.05087609 0.1160161 +0.03925039 0.05087609 0.1160161 +0.05087609 0.05087609 0.1160161 +0.06429595 0.05087609 0.1160161 +0.07958143 0.05087609 0.1160161 +0.0968001 0.05087609 0.1160161 +0.1160161 0.05087609 0.1160161 +0.1372908 0.05087609 0.1160161 +0.1606827 0.05087609 0.1160161 +0.1862481 0.05087609 0.1160161 +0.2140411 0.05087609 0.1160161 +0.2441142 0.05087609 0.1160161 +0.2765176 0.05087609 0.1160161 +0.3113005 0.05087609 0.1160161 +0.3485102 0.05087609 0.1160161 +0.388193 0.05087609 0.1160161 +0.4303934 0.05087609 0.1160161 +0.4751555 0.05087609 0.1160161 +0.5225216 0.05087609 0.1160161 +0.5725335 0.05087609 0.1160161 +0.6252316 0.05087609 0.1160161 +0.6806558 0.05087609 0.1160161 +0.7388448 0.05087609 0.1160161 +0.7998369 0.05087609 0.1160161 +0.8636691 0.05087609 0.1160161 +0.9303782 0.05087609 0.1160161 +1 0.05087609 0.1160161 +0 0.06429595 0.1160161 +0.002418731 0.06429595 0.1160161 +0.005155668 0.06429595 0.1160161 +0.009080105 0.06429595 0.1160161 +0.01434988 0.06429595 0.1160161 +0.02107202 0.06429595 0.1160161 +0.02934285 0.06429595 0.1160161 +0.03925039 0.06429595 0.1160161 +0.05087609 0.06429595 0.1160161 +0.06429595 0.06429595 0.1160161 +0.07958143 0.06429595 0.1160161 +0.0968001 0.06429595 0.1160161 +0.1160161 0.06429595 0.1160161 +0.1372908 0.06429595 0.1160161 +0.1606827 0.06429595 0.1160161 +0.1862481 0.06429595 0.1160161 +0.2140411 0.06429595 0.1160161 +0.2441142 0.06429595 0.1160161 +0.2765176 0.06429595 0.1160161 +0.3113005 0.06429595 0.1160161 +0.3485102 0.06429595 0.1160161 +0.388193 0.06429595 0.1160161 +0.4303934 0.06429595 0.1160161 +0.4751555 0.06429595 0.1160161 +0.5225216 0.06429595 0.1160161 +0.5725335 0.06429595 0.1160161 +0.6252316 0.06429595 0.1160161 +0.6806558 0.06429595 0.1160161 +0.7388448 0.06429595 0.1160161 +0.7998369 0.06429595 0.1160161 +0.8636691 0.06429595 0.1160161 +0.9303782 0.06429595 0.1160161 +1 0.06429595 0.1160161 +0 0.07958143 0.1160161 +0.002418731 0.07958143 0.1160161 +0.005155668 0.07958143 0.1160161 +0.009080105 0.07958143 0.1160161 +0.01434988 0.07958143 0.1160161 +0.02107202 0.07958143 0.1160161 +0.02934285 0.07958143 0.1160161 +0.03925039 0.07958143 0.1160161 +0.05087609 0.07958143 0.1160161 +0.06429595 0.07958143 0.1160161 +0.07958143 0.07958143 0.1160161 +0.0968001 0.07958143 0.1160161 +0.1160161 0.07958143 0.1160161 +0.1372908 0.07958143 0.1160161 +0.1606827 0.07958143 0.1160161 +0.1862481 0.07958143 0.1160161 +0.2140411 0.07958143 0.1160161 +0.2441142 0.07958143 0.1160161 +0.2765176 0.07958143 0.1160161 +0.3113005 0.07958143 0.1160161 +0.3485102 0.07958143 0.1160161 +0.388193 0.07958143 0.1160161 +0.4303934 0.07958143 0.1160161 +0.4751555 0.07958143 0.1160161 +0.5225216 0.07958143 0.1160161 +0.5725335 0.07958143 0.1160161 +0.6252316 0.07958143 0.1160161 +0.6806558 0.07958143 0.1160161 +0.7388448 0.07958143 0.1160161 +0.7998369 0.07958143 0.1160161 +0.8636691 0.07958143 0.1160161 +0.9303782 0.07958143 0.1160161 +1 0.07958143 0.1160161 +0 0.0968001 0.1160161 +0.002418731 0.0968001 0.1160161 +0.005155668 0.0968001 0.1160161 +0.009080105 0.0968001 0.1160161 +0.01434988 0.0968001 0.1160161 +0.02107202 0.0968001 0.1160161 +0.02934285 0.0968001 0.1160161 +0.03925039 0.0968001 0.1160161 +0.05087609 0.0968001 0.1160161 +0.06429595 0.0968001 0.1160161 +0.07958143 0.0968001 0.1160161 +0.0968001 0.0968001 0.1160161 +0.1160161 0.0968001 0.1160161 +0.1372908 0.0968001 0.1160161 +0.1606827 0.0968001 0.1160161 +0.1862481 0.0968001 0.1160161 +0.2140411 0.0968001 0.1160161 +0.2441142 0.0968001 0.1160161 +0.2765176 0.0968001 0.1160161 +0.3113005 0.0968001 0.1160161 +0.3485102 0.0968001 0.1160161 +0.388193 0.0968001 0.1160161 +0.4303934 0.0968001 0.1160161 +0.4751555 0.0968001 0.1160161 +0.5225216 0.0968001 0.1160161 +0.5725335 0.0968001 0.1160161 +0.6252316 0.0968001 0.1160161 +0.6806558 0.0968001 0.1160161 +0.7388448 0.0968001 0.1160161 +0.7998369 0.0968001 0.1160161 +0.8636691 0.0968001 0.1160161 +0.9303782 0.0968001 0.1160161 +1 0.0968001 0.1160161 +0 0.1160161 0.1160161 +0.002418731 0.1160161 0.1160161 +0.005155668 0.1160161 0.1160161 +0.009080105 0.1160161 0.1160161 +0.01434988 0.1160161 0.1160161 +0.02107202 0.1160161 0.1160161 +0.02934285 0.1160161 0.1160161 +0.03925039 0.1160161 0.1160161 +0.05087609 0.1160161 0.1160161 +0.06429595 0.1160161 0.1160161 +0.07958143 0.1160161 0.1160161 +0.0968001 0.1160161 0.1160161 +0.1160161 0.1160161 0.1160161 +0.1372908 0.1160161 0.1160161 +0.1606827 0.1160161 0.1160161 +0.1862481 0.1160161 0.1160161 +0.2140411 0.1160161 0.1160161 +0.2441142 0.1160161 0.1160161 +0.2765176 0.1160161 0.1160161 +0.3113005 0.1160161 0.1160161 +0.3485102 0.1160161 0.1160161 +0.388193 0.1160161 0.1160161 +0.4303934 0.1160161 0.1160161 +0.4751555 0.1160161 0.1160161 +0.5225216 0.1160161 0.1160161 +0.5725335 0.1160161 0.1160161 +0.6252316 0.1160161 0.1160161 +0.6806558 0.1160161 0.1160161 +0.7388448 0.1160161 0.1160161 +0.7998369 0.1160161 0.1160161 +0.8636691 0.1160161 0.1160161 +0.9303782 0.1160161 0.1160161 +1 0.1160161 0.1160161 +0 0.1372908 0.1160161 +0.002418731 0.1372908 0.1160161 +0.005155668 0.1372908 0.1160161 +0.009080105 0.1372908 0.1160161 +0.01434988 0.1372908 0.1160161 +0.02107202 0.1372908 0.1160161 +0.02934285 0.1372908 0.1160161 +0.03925039 0.1372908 0.1160161 +0.05087609 0.1372908 0.1160161 +0.06429595 0.1372908 0.1160161 +0.07958143 0.1372908 0.1160161 +0.0968001 0.1372908 0.1160161 +0.1160161 0.1372908 0.1160161 +0.1372908 0.1372908 0.1160161 +0.1606827 0.1372908 0.1160161 +0.1862481 0.1372908 0.1160161 +0.2140411 0.1372908 0.1160161 +0.2441142 0.1372908 0.1160161 +0.2765176 0.1372908 0.1160161 +0.3113005 0.1372908 0.1160161 +0.3485102 0.1372908 0.1160161 +0.388193 0.1372908 0.1160161 +0.4303934 0.1372908 0.1160161 +0.4751555 0.1372908 0.1160161 +0.5225216 0.1372908 0.1160161 +0.5725335 0.1372908 0.1160161 +0.6252316 0.1372908 0.1160161 +0.6806558 0.1372908 0.1160161 +0.7388448 0.1372908 0.1160161 +0.7998369 0.1372908 0.1160161 +0.8636691 0.1372908 0.1160161 +0.9303782 0.1372908 0.1160161 +1 0.1372908 0.1160161 +0 0.1606827 0.1160161 +0.002418731 0.1606827 0.1160161 +0.005155668 0.1606827 0.1160161 +0.009080105 0.1606827 0.1160161 +0.01434988 0.1606827 0.1160161 +0.02107202 0.1606827 0.1160161 +0.02934285 0.1606827 0.1160161 +0.03925039 0.1606827 0.1160161 +0.05087609 0.1606827 0.1160161 +0.06429595 0.1606827 0.1160161 +0.07958143 0.1606827 0.1160161 +0.0968001 0.1606827 0.1160161 +0.1160161 0.1606827 0.1160161 +0.1372908 0.1606827 0.1160161 +0.1606827 0.1606827 0.1160161 +0.1862481 0.1606827 0.1160161 +0.2140411 0.1606827 0.1160161 +0.2441142 0.1606827 0.1160161 +0.2765176 0.1606827 0.1160161 +0.3113005 0.1606827 0.1160161 +0.3485102 0.1606827 0.1160161 +0.388193 0.1606827 0.1160161 +0.4303934 0.1606827 0.1160161 +0.4751555 0.1606827 0.1160161 +0.5225216 0.1606827 0.1160161 +0.5725335 0.1606827 0.1160161 +0.6252316 0.1606827 0.1160161 +0.6806558 0.1606827 0.1160161 +0.7388448 0.1606827 0.1160161 +0.7998369 0.1606827 0.1160161 +0.8636691 0.1606827 0.1160161 +0.9303782 0.1606827 0.1160161 +1 0.1606827 0.1160161 +0 0.1862481 0.1160161 +0.002418731 0.1862481 0.1160161 +0.005155668 0.1862481 0.1160161 +0.009080105 0.1862481 0.1160161 +0.01434988 0.1862481 0.1160161 +0.02107202 0.1862481 0.1160161 +0.02934285 0.1862481 0.1160161 +0.03925039 0.1862481 0.1160161 +0.05087609 0.1862481 0.1160161 +0.06429595 0.1862481 0.1160161 +0.07958143 0.1862481 0.1160161 +0.0968001 0.1862481 0.1160161 +0.1160161 0.1862481 0.1160161 +0.1372908 0.1862481 0.1160161 +0.1606827 0.1862481 0.1160161 +0.1862481 0.1862481 0.1160161 +0.2140411 0.1862481 0.1160161 +0.2441142 0.1862481 0.1160161 +0.2765176 0.1862481 0.1160161 +0.3113005 0.1862481 0.1160161 +0.3485102 0.1862481 0.1160161 +0.388193 0.1862481 0.1160161 +0.4303934 0.1862481 0.1160161 +0.4751555 0.1862481 0.1160161 +0.5225216 0.1862481 0.1160161 +0.5725335 0.1862481 0.1160161 +0.6252316 0.1862481 0.1160161 +0.6806558 0.1862481 0.1160161 +0.7388448 0.1862481 0.1160161 +0.7998369 0.1862481 0.1160161 +0.8636691 0.1862481 0.1160161 +0.9303782 0.1862481 0.1160161 +1 0.1862481 0.1160161 +0 0.2140411 0.1160161 +0.002418731 0.2140411 0.1160161 +0.005155668 0.2140411 0.1160161 +0.009080105 0.2140411 0.1160161 +0.01434988 0.2140411 0.1160161 +0.02107202 0.2140411 0.1160161 +0.02934285 0.2140411 0.1160161 +0.03925039 0.2140411 0.1160161 +0.05087609 0.2140411 0.1160161 +0.06429595 0.2140411 0.1160161 +0.07958143 0.2140411 0.1160161 +0.0968001 0.2140411 0.1160161 +0.1160161 0.2140411 0.1160161 +0.1372908 0.2140411 0.1160161 +0.1606827 0.2140411 0.1160161 +0.1862481 0.2140411 0.1160161 +0.2140411 0.2140411 0.1160161 +0.2441142 0.2140411 0.1160161 +0.2765176 0.2140411 0.1160161 +0.3113005 0.2140411 0.1160161 +0.3485102 0.2140411 0.1160161 +0.388193 0.2140411 0.1160161 +0.4303934 0.2140411 0.1160161 +0.4751555 0.2140411 0.1160161 +0.5225216 0.2140411 0.1160161 +0.5725335 0.2140411 0.1160161 +0.6252316 0.2140411 0.1160161 +0.6806558 0.2140411 0.1160161 +0.7388448 0.2140411 0.1160161 +0.7998369 0.2140411 0.1160161 +0.8636691 0.2140411 0.1160161 +0.9303782 0.2140411 0.1160161 +1 0.2140411 0.1160161 +0 0.2441142 0.1160161 +0.002418731 0.2441142 0.1160161 +0.005155668 0.2441142 0.1160161 +0.009080105 0.2441142 0.1160161 +0.01434988 0.2441142 0.1160161 +0.02107202 0.2441142 0.1160161 +0.02934285 0.2441142 0.1160161 +0.03925039 0.2441142 0.1160161 +0.05087609 0.2441142 0.1160161 +0.06429595 0.2441142 0.1160161 +0.07958143 0.2441142 0.1160161 +0.0968001 0.2441142 0.1160161 +0.1160161 0.2441142 0.1160161 +0.1372908 0.2441142 0.1160161 +0.1606827 0.2441142 0.1160161 +0.1862481 0.2441142 0.1160161 +0.2140411 0.2441142 0.1160161 +0.2441142 0.2441142 0.1160161 +0.2765176 0.2441142 0.1160161 +0.3113005 0.2441142 0.1160161 +0.3485102 0.2441142 0.1160161 +0.388193 0.2441142 0.1160161 +0.4303934 0.2441142 0.1160161 +0.4751555 0.2441142 0.1160161 +0.5225216 0.2441142 0.1160161 +0.5725335 0.2441142 0.1160161 +0.6252316 0.2441142 0.1160161 +0.6806558 0.2441142 0.1160161 +0.7388448 0.2441142 0.1160161 +0.7998369 0.2441142 0.1160161 +0.8636691 0.2441142 0.1160161 +0.9303782 0.2441142 0.1160161 +1 0.2441142 0.1160161 +0 0.2765176 0.1160161 +0.002418731 0.2765176 0.1160161 +0.005155668 0.2765176 0.1160161 +0.009080105 0.2765176 0.1160161 +0.01434988 0.2765176 0.1160161 +0.02107202 0.2765176 0.1160161 +0.02934285 0.2765176 0.1160161 +0.03925039 0.2765176 0.1160161 +0.05087609 0.2765176 0.1160161 +0.06429595 0.2765176 0.1160161 +0.07958143 0.2765176 0.1160161 +0.0968001 0.2765176 0.1160161 +0.1160161 0.2765176 0.1160161 +0.1372908 0.2765176 0.1160161 +0.1606827 0.2765176 0.1160161 +0.1862481 0.2765176 0.1160161 +0.2140411 0.2765176 0.1160161 +0.2441142 0.2765176 0.1160161 +0.2765176 0.2765176 0.1160161 +0.3113005 0.2765176 0.1160161 +0.3485102 0.2765176 0.1160161 +0.388193 0.2765176 0.1160161 +0.4303934 0.2765176 0.1160161 +0.4751555 0.2765176 0.1160161 +0.5225216 0.2765176 0.1160161 +0.5725335 0.2765176 0.1160161 +0.6252316 0.2765176 0.1160161 +0.6806558 0.2765176 0.1160161 +0.7388448 0.2765176 0.1160161 +0.7998369 0.2765176 0.1160161 +0.8636691 0.2765176 0.1160161 +0.9303782 0.2765176 0.1160161 +1 0.2765176 0.1160161 +0 0.3113005 0.1160161 +0.002418731 0.3113005 0.1160161 +0.005155668 0.3113005 0.1160161 +0.009080105 0.3113005 0.1160161 +0.01434988 0.3113005 0.1160161 +0.02107202 0.3113005 0.1160161 +0.02934285 0.3113005 0.1160161 +0.03925039 0.3113005 0.1160161 +0.05087609 0.3113005 0.1160161 +0.06429595 0.3113005 0.1160161 +0.07958143 0.3113005 0.1160161 +0.0968001 0.3113005 0.1160161 +0.1160161 0.3113005 0.1160161 +0.1372908 0.3113005 0.1160161 +0.1606827 0.3113005 0.1160161 +0.1862481 0.3113005 0.1160161 +0.2140411 0.3113005 0.1160161 +0.2441142 0.3113005 0.1160161 +0.2765176 0.3113005 0.1160161 +0.3113005 0.3113005 0.1160161 +0.3485102 0.3113005 0.1160161 +0.388193 0.3113005 0.1160161 +0.4303934 0.3113005 0.1160161 +0.4751555 0.3113005 0.1160161 +0.5225216 0.3113005 0.1160161 +0.5725335 0.3113005 0.1160161 +0.6252316 0.3113005 0.1160161 +0.6806558 0.3113005 0.1160161 +0.7388448 0.3113005 0.1160161 +0.7998369 0.3113005 0.1160161 +0.8636691 0.3113005 0.1160161 +0.9303782 0.3113005 0.1160161 +1 0.3113005 0.1160161 +0 0.3485102 0.1160161 +0.002418731 0.3485102 0.1160161 +0.005155668 0.3485102 0.1160161 +0.009080105 0.3485102 0.1160161 +0.01434988 0.3485102 0.1160161 +0.02107202 0.3485102 0.1160161 +0.02934285 0.3485102 0.1160161 +0.03925039 0.3485102 0.1160161 +0.05087609 0.3485102 0.1160161 +0.06429595 0.3485102 0.1160161 +0.07958143 0.3485102 0.1160161 +0.0968001 0.3485102 0.1160161 +0.1160161 0.3485102 0.1160161 +0.1372908 0.3485102 0.1160161 +0.1606827 0.3485102 0.1160161 +0.1862481 0.3485102 0.1160161 +0.2140411 0.3485102 0.1160161 +0.2441142 0.3485102 0.1160161 +0.2765176 0.3485102 0.1160161 +0.3113005 0.3485102 0.1160161 +0.3485102 0.3485102 0.1160161 +0.388193 0.3485102 0.1160161 +0.4303934 0.3485102 0.1160161 +0.4751555 0.3485102 0.1160161 +0.5225216 0.3485102 0.1160161 +0.5725335 0.3485102 0.1160161 +0.6252316 0.3485102 0.1160161 +0.6806558 0.3485102 0.1160161 +0.7388448 0.3485102 0.1160161 +0.7998369 0.3485102 0.1160161 +0.8636691 0.3485102 0.1160161 +0.9303782 0.3485102 0.1160161 +1 0.3485102 0.1160161 +0 0.388193 0.1160161 +0.002418731 0.388193 0.1160161 +0.005155668 0.388193 0.1160161 +0.009080105 0.388193 0.1160161 +0.01434988 0.388193 0.1160161 +0.02107202 0.388193 0.1160161 +0.02934285 0.388193 0.1160161 +0.03925039 0.388193 0.1160161 +0.05087609 0.388193 0.1160161 +0.06429595 0.388193 0.1160161 +0.07958143 0.388193 0.1160161 +0.0968001 0.388193 0.1160161 +0.1160161 0.388193 0.1160161 +0.1372908 0.388193 0.1160161 +0.1606827 0.388193 0.1160161 +0.1862481 0.388193 0.1160161 +0.2140411 0.388193 0.1160161 +0.2441142 0.388193 0.1160161 +0.2765176 0.388193 0.1160161 +0.3113005 0.388193 0.1160161 +0.3485102 0.388193 0.1160161 +0.388193 0.388193 0.1160161 +0.4303934 0.388193 0.1160161 +0.4751555 0.388193 0.1160161 +0.5225216 0.388193 0.1160161 +0.5725335 0.388193 0.1160161 +0.6252316 0.388193 0.1160161 +0.6806558 0.388193 0.1160161 +0.7388448 0.388193 0.1160161 +0.7998369 0.388193 0.1160161 +0.8636691 0.388193 0.1160161 +0.9303782 0.388193 0.1160161 +1 0.388193 0.1160161 +0 0.4303934 0.1160161 +0.002418731 0.4303934 0.1160161 +0.005155668 0.4303934 0.1160161 +0.009080105 0.4303934 0.1160161 +0.01434988 0.4303934 0.1160161 +0.02107202 0.4303934 0.1160161 +0.02934285 0.4303934 0.1160161 +0.03925039 0.4303934 0.1160161 +0.05087609 0.4303934 0.1160161 +0.06429595 0.4303934 0.1160161 +0.07958143 0.4303934 0.1160161 +0.0968001 0.4303934 0.1160161 +0.1160161 0.4303934 0.1160161 +0.1372908 0.4303934 0.1160161 +0.1606827 0.4303934 0.1160161 +0.1862481 0.4303934 0.1160161 +0.2140411 0.4303934 0.1160161 +0.2441142 0.4303934 0.1160161 +0.2765176 0.4303934 0.1160161 +0.3113005 0.4303934 0.1160161 +0.3485102 0.4303934 0.1160161 +0.388193 0.4303934 0.1160161 +0.4303934 0.4303934 0.1160161 +0.4751555 0.4303934 0.1160161 +0.5225216 0.4303934 0.1160161 +0.5725335 0.4303934 0.1160161 +0.6252316 0.4303934 0.1160161 +0.6806558 0.4303934 0.1160161 +0.7388448 0.4303934 0.1160161 +0.7998369 0.4303934 0.1160161 +0.8636691 0.4303934 0.1160161 +0.9303782 0.4303934 0.1160161 +1 0.4303934 0.1160161 +0 0.4751555 0.1160161 +0.002418731 0.4751555 0.1160161 +0.005155668 0.4751555 0.1160161 +0.009080105 0.4751555 0.1160161 +0.01434988 0.4751555 0.1160161 +0.02107202 0.4751555 0.1160161 +0.02934285 0.4751555 0.1160161 +0.03925039 0.4751555 0.1160161 +0.05087609 0.4751555 0.1160161 +0.06429595 0.4751555 0.1160161 +0.07958143 0.4751555 0.1160161 +0.0968001 0.4751555 0.1160161 +0.1160161 0.4751555 0.1160161 +0.1372908 0.4751555 0.1160161 +0.1606827 0.4751555 0.1160161 +0.1862481 0.4751555 0.1160161 +0.2140411 0.4751555 0.1160161 +0.2441142 0.4751555 0.1160161 +0.2765176 0.4751555 0.1160161 +0.3113005 0.4751555 0.1160161 +0.3485102 0.4751555 0.1160161 +0.388193 0.4751555 0.1160161 +0.4303934 0.4751555 0.1160161 +0.4751555 0.4751555 0.1160161 +0.5225216 0.4751555 0.1160161 +0.5725335 0.4751555 0.1160161 +0.6252316 0.4751555 0.1160161 +0.6806558 0.4751555 0.1160161 +0.7388448 0.4751555 0.1160161 +0.7998369 0.4751555 0.1160161 +0.8636691 0.4751555 0.1160161 +0.9303782 0.4751555 0.1160161 +1 0.4751555 0.1160161 +0 0.5225216 0.1160161 +0.002418731 0.5225216 0.1160161 +0.005155668 0.5225216 0.1160161 +0.009080105 0.5225216 0.1160161 +0.01434988 0.5225216 0.1160161 +0.02107202 0.5225216 0.1160161 +0.02934285 0.5225216 0.1160161 +0.03925039 0.5225216 0.1160161 +0.05087609 0.5225216 0.1160161 +0.06429595 0.5225216 0.1160161 +0.07958143 0.5225216 0.1160161 +0.0968001 0.5225216 0.1160161 +0.1160161 0.5225216 0.1160161 +0.1372908 0.5225216 0.1160161 +0.1606827 0.5225216 0.1160161 +0.1862481 0.5225216 0.1160161 +0.2140411 0.5225216 0.1160161 +0.2441142 0.5225216 0.1160161 +0.2765176 0.5225216 0.1160161 +0.3113005 0.5225216 0.1160161 +0.3485102 0.5225216 0.1160161 +0.388193 0.5225216 0.1160161 +0.4303934 0.5225216 0.1160161 +0.4751555 0.5225216 0.1160161 +0.5225216 0.5225216 0.1160161 +0.5725335 0.5225216 0.1160161 +0.6252316 0.5225216 0.1160161 +0.6806558 0.5225216 0.1160161 +0.7388448 0.5225216 0.1160161 +0.7998369 0.5225216 0.1160161 +0.8636691 0.5225216 0.1160161 +0.9303782 0.5225216 0.1160161 +1 0.5225216 0.1160161 +0 0.5725335 0.1160161 +0.002418731 0.5725335 0.1160161 +0.005155668 0.5725335 0.1160161 +0.009080105 0.5725335 0.1160161 +0.01434988 0.5725335 0.1160161 +0.02107202 0.5725335 0.1160161 +0.02934285 0.5725335 0.1160161 +0.03925039 0.5725335 0.1160161 +0.05087609 0.5725335 0.1160161 +0.06429595 0.5725335 0.1160161 +0.07958143 0.5725335 0.1160161 +0.0968001 0.5725335 0.1160161 +0.1160161 0.5725335 0.1160161 +0.1372908 0.5725335 0.1160161 +0.1606827 0.5725335 0.1160161 +0.1862481 0.5725335 0.1160161 +0.2140411 0.5725335 0.1160161 +0.2441142 0.5725335 0.1160161 +0.2765176 0.5725335 0.1160161 +0.3113005 0.5725335 0.1160161 +0.3485102 0.5725335 0.1160161 +0.388193 0.5725335 0.1160161 +0.4303934 0.5725335 0.1160161 +0.4751555 0.5725335 0.1160161 +0.5225216 0.5725335 0.1160161 +0.5725335 0.5725335 0.1160161 +0.6252316 0.5725335 0.1160161 +0.6806558 0.5725335 0.1160161 +0.7388448 0.5725335 0.1160161 +0.7998369 0.5725335 0.1160161 +0.8636691 0.5725335 0.1160161 +0.9303782 0.5725335 0.1160161 +1 0.5725335 0.1160161 +0 0.6252316 0.1160161 +0.002418731 0.6252316 0.1160161 +0.005155668 0.6252316 0.1160161 +0.009080105 0.6252316 0.1160161 +0.01434988 0.6252316 0.1160161 +0.02107202 0.6252316 0.1160161 +0.02934285 0.6252316 0.1160161 +0.03925039 0.6252316 0.1160161 +0.05087609 0.6252316 0.1160161 +0.06429595 0.6252316 0.1160161 +0.07958143 0.6252316 0.1160161 +0.0968001 0.6252316 0.1160161 +0.1160161 0.6252316 0.1160161 +0.1372908 0.6252316 0.1160161 +0.1606827 0.6252316 0.1160161 +0.1862481 0.6252316 0.1160161 +0.2140411 0.6252316 0.1160161 +0.2441142 0.6252316 0.1160161 +0.2765176 0.6252316 0.1160161 +0.3113005 0.6252316 0.1160161 +0.3485102 0.6252316 0.1160161 +0.388193 0.6252316 0.1160161 +0.4303934 0.6252316 0.1160161 +0.4751555 0.6252316 0.1160161 +0.5225216 0.6252316 0.1160161 +0.5725335 0.6252316 0.1160161 +0.6252316 0.6252316 0.1160161 +0.6806558 0.6252316 0.1160161 +0.7388448 0.6252316 0.1160161 +0.7998369 0.6252316 0.1160161 +0.8636691 0.6252316 0.1160161 +0.9303782 0.6252316 0.1160161 +1 0.6252316 0.1160161 +0 0.6806558 0.1160161 +0.002418731 0.6806558 0.1160161 +0.005155668 0.6806558 0.1160161 +0.009080105 0.6806558 0.1160161 +0.01434988 0.6806558 0.1160161 +0.02107202 0.6806558 0.1160161 +0.02934285 0.6806558 0.1160161 +0.03925039 0.6806558 0.1160161 +0.05087609 0.6806558 0.1160161 +0.06429595 0.6806558 0.1160161 +0.07958143 0.6806558 0.1160161 +0.0968001 0.6806558 0.1160161 +0.1160161 0.6806558 0.1160161 +0.1372908 0.6806558 0.1160161 +0.1606827 0.6806558 0.1160161 +0.1862481 0.6806558 0.1160161 +0.2140411 0.6806558 0.1160161 +0.2441142 0.6806558 0.1160161 +0.2765176 0.6806558 0.1160161 +0.3113005 0.6806558 0.1160161 +0.3485102 0.6806558 0.1160161 +0.388193 0.6806558 0.1160161 +0.4303934 0.6806558 0.1160161 +0.4751555 0.6806558 0.1160161 +0.5225216 0.6806558 0.1160161 +0.5725335 0.6806558 0.1160161 +0.6252316 0.6806558 0.1160161 +0.6806558 0.6806558 0.1160161 +0.7388448 0.6806558 0.1160161 +0.7998369 0.6806558 0.1160161 +0.8636691 0.6806558 0.1160161 +0.9303782 0.6806558 0.1160161 +1 0.6806558 0.1160161 +0 0.7388448 0.1160161 +0.002418731 0.7388448 0.1160161 +0.005155668 0.7388448 0.1160161 +0.009080105 0.7388448 0.1160161 +0.01434988 0.7388448 0.1160161 +0.02107202 0.7388448 0.1160161 +0.02934285 0.7388448 0.1160161 +0.03925039 0.7388448 0.1160161 +0.05087609 0.7388448 0.1160161 +0.06429595 0.7388448 0.1160161 +0.07958143 0.7388448 0.1160161 +0.0968001 0.7388448 0.1160161 +0.1160161 0.7388448 0.1160161 +0.1372908 0.7388448 0.1160161 +0.1606827 0.7388448 0.1160161 +0.1862481 0.7388448 0.1160161 +0.2140411 0.7388448 0.1160161 +0.2441142 0.7388448 0.1160161 +0.2765176 0.7388448 0.1160161 +0.3113005 0.7388448 0.1160161 +0.3485102 0.7388448 0.1160161 +0.388193 0.7388448 0.1160161 +0.4303934 0.7388448 0.1160161 +0.4751555 0.7388448 0.1160161 +0.5225216 0.7388448 0.1160161 +0.5725335 0.7388448 0.1160161 +0.6252316 0.7388448 0.1160161 +0.6806558 0.7388448 0.1160161 +0.7388448 0.7388448 0.1160161 +0.7998369 0.7388448 0.1160161 +0.8636691 0.7388448 0.1160161 +0.9303782 0.7388448 0.1160161 +1 0.7388448 0.1160161 +0 0.7998369 0.1160161 +0.002418731 0.7998369 0.1160161 +0.005155668 0.7998369 0.1160161 +0.009080105 0.7998369 0.1160161 +0.01434988 0.7998369 0.1160161 +0.02107202 0.7998369 0.1160161 +0.02934285 0.7998369 0.1160161 +0.03925039 0.7998369 0.1160161 +0.05087609 0.7998369 0.1160161 +0.06429595 0.7998369 0.1160161 +0.07958143 0.7998369 0.1160161 +0.0968001 0.7998369 0.1160161 +0.1160161 0.7998369 0.1160161 +0.1372908 0.7998369 0.1160161 +0.1606827 0.7998369 0.1160161 +0.1862481 0.7998369 0.1160161 +0.2140411 0.7998369 0.1160161 +0.2441142 0.7998369 0.1160161 +0.2765176 0.7998369 0.1160161 +0.3113005 0.7998369 0.1160161 +0.3485102 0.7998369 0.1160161 +0.388193 0.7998369 0.1160161 +0.4303934 0.7998369 0.1160161 +0.4751555 0.7998369 0.1160161 +0.5225216 0.7998369 0.1160161 +0.5725335 0.7998369 0.1160161 +0.6252316 0.7998369 0.1160161 +0.6806558 0.7998369 0.1160161 +0.7388448 0.7998369 0.1160161 +0.7998369 0.7998369 0.1160161 +0.8636691 0.7998369 0.1160161 +0.9303782 0.7998369 0.1160161 +1 0.7998369 0.1160161 +0 0.8636691 0.1160161 +0.002418731 0.8636691 0.1160161 +0.005155668 0.8636691 0.1160161 +0.009080105 0.8636691 0.1160161 +0.01434988 0.8636691 0.1160161 +0.02107202 0.8636691 0.1160161 +0.02934285 0.8636691 0.1160161 +0.03925039 0.8636691 0.1160161 +0.05087609 0.8636691 0.1160161 +0.06429595 0.8636691 0.1160161 +0.07958143 0.8636691 0.1160161 +0.0968001 0.8636691 0.1160161 +0.1160161 0.8636691 0.1160161 +0.1372908 0.8636691 0.1160161 +0.1606827 0.8636691 0.1160161 +0.1862481 0.8636691 0.1160161 +0.2140411 0.8636691 0.1160161 +0.2441142 0.8636691 0.1160161 +0.2765176 0.8636691 0.1160161 +0.3113005 0.8636691 0.1160161 +0.3485102 0.8636691 0.1160161 +0.388193 0.8636691 0.1160161 +0.4303934 0.8636691 0.1160161 +0.4751555 0.8636691 0.1160161 +0.5225216 0.8636691 0.1160161 +0.5725335 0.8636691 0.1160161 +0.6252316 0.8636691 0.1160161 +0.6806558 0.8636691 0.1160161 +0.7388448 0.8636691 0.1160161 +0.7998369 0.8636691 0.1160161 +0.8636691 0.8636691 0.1160161 +0.9303782 0.8636691 0.1160161 +1 0.8636691 0.1160161 +0 0.9303782 0.1160161 +0.002418731 0.9303782 0.1160161 +0.005155668 0.9303782 0.1160161 +0.009080105 0.9303782 0.1160161 +0.01434988 0.9303782 0.1160161 +0.02107202 0.9303782 0.1160161 +0.02934285 0.9303782 0.1160161 +0.03925039 0.9303782 0.1160161 +0.05087609 0.9303782 0.1160161 +0.06429595 0.9303782 0.1160161 +0.07958143 0.9303782 0.1160161 +0.0968001 0.9303782 0.1160161 +0.1160161 0.9303782 0.1160161 +0.1372908 0.9303782 0.1160161 +0.1606827 0.9303782 0.1160161 +0.1862481 0.9303782 0.1160161 +0.2140411 0.9303782 0.1160161 +0.2441142 0.9303782 0.1160161 +0.2765176 0.9303782 0.1160161 +0.3113005 0.9303782 0.1160161 +0.3485102 0.9303782 0.1160161 +0.388193 0.9303782 0.1160161 +0.4303934 0.9303782 0.1160161 +0.4751555 0.9303782 0.1160161 +0.5225216 0.9303782 0.1160161 +0.5725335 0.9303782 0.1160161 +0.6252316 0.9303782 0.1160161 +0.6806558 0.9303782 0.1160161 +0.7388448 0.9303782 0.1160161 +0.7998369 0.9303782 0.1160161 +0.8636691 0.9303782 0.1160161 +0.9303782 0.9303782 0.1160161 +1 0.9303782 0.1160161 +0 1 0.1160161 +0.002418731 1 0.1160161 +0.005155668 1 0.1160161 +0.009080105 1 0.1160161 +0.01434988 1 0.1160161 +0.02107202 1 0.1160161 +0.02934285 1 0.1160161 +0.03925039 1 0.1160161 +0.05087609 1 0.1160161 +0.06429595 1 0.1160161 +0.07958143 1 0.1160161 +0.0968001 1 0.1160161 +0.1160161 1 0.1160161 +0.1372908 1 0.1160161 +0.1606827 1 0.1160161 +0.1862481 1 0.1160161 +0.2140411 1 0.1160161 +0.2441142 1 0.1160161 +0.2765176 1 0.1160161 +0.3113005 1 0.1160161 +0.3485102 1 0.1160161 +0.388193 1 0.1160161 +0.4303934 1 0.1160161 +0.4751555 1 0.1160161 +0.5225216 1 0.1160161 +0.5725335 1 0.1160161 +0.6252316 1 0.1160161 +0.6806558 1 0.1160161 +0.7388448 1 0.1160161 +0.7998369 1 0.1160161 +0.8636691 1 0.1160161 +0.9303782 1 0.1160161 +1 1 0.1160161 +0 0 0.1372908 +0.002418731 0 0.1372908 +0.005155668 0 0.1372908 +0.009080105 0 0.1372908 +0.01434988 0 0.1372908 +0.02107202 0 0.1372908 +0.02934285 0 0.1372908 +0.03925039 0 0.1372908 +0.05087609 0 0.1372908 +0.06429595 0 0.1372908 +0.07958143 0 0.1372908 +0.0968001 0 0.1372908 +0.1160161 0 0.1372908 +0.1372908 0 0.1372908 +0.1606827 0 0.1372908 +0.1862481 0 0.1372908 +0.2140411 0 0.1372908 +0.2441142 0 0.1372908 +0.2765176 0 0.1372908 +0.3113005 0 0.1372908 +0.3485102 0 0.1372908 +0.388193 0 0.1372908 +0.4303934 0 0.1372908 +0.4751555 0 0.1372908 +0.5225216 0 0.1372908 +0.5725335 0 0.1372908 +0.6252316 0 0.1372908 +0.6806558 0 0.1372908 +0.7388448 0 0.1372908 +0.7998369 0 0.1372908 +0.8636691 0 0.1372908 +0.9303782 0 0.1372908 +1 0 0.1372908 +0 0.002418731 0.1372908 +0.002418731 0.002418731 0.1372908 +0.005155668 0.002418731 0.1372908 +0.009080105 0.002418731 0.1372908 +0.01434988 0.002418731 0.1372908 +0.02107202 0.002418731 0.1372908 +0.02934285 0.002418731 0.1372908 +0.03925039 0.002418731 0.1372908 +0.05087609 0.002418731 0.1372908 +0.06429595 0.002418731 0.1372908 +0.07958143 0.002418731 0.1372908 +0.0968001 0.002418731 0.1372908 +0.1160161 0.002418731 0.1372908 +0.1372908 0.002418731 0.1372908 +0.1606827 0.002418731 0.1372908 +0.1862481 0.002418731 0.1372908 +0.2140411 0.002418731 0.1372908 +0.2441142 0.002418731 0.1372908 +0.2765176 0.002418731 0.1372908 +0.3113005 0.002418731 0.1372908 +0.3485102 0.002418731 0.1372908 +0.388193 0.002418731 0.1372908 +0.4303934 0.002418731 0.1372908 +0.4751555 0.002418731 0.1372908 +0.5225216 0.002418731 0.1372908 +0.5725335 0.002418731 0.1372908 +0.6252316 0.002418731 0.1372908 +0.6806558 0.002418731 0.1372908 +0.7388448 0.002418731 0.1372908 +0.7998369 0.002418731 0.1372908 +0.8636691 0.002418731 0.1372908 +0.9303782 0.002418731 0.1372908 +1 0.002418731 0.1372908 +0 0.005155668 0.1372908 +0.002418731 0.005155668 0.1372908 +0.005155668 0.005155668 0.1372908 +0.009080105 0.005155668 0.1372908 +0.01434988 0.005155668 0.1372908 +0.02107202 0.005155668 0.1372908 +0.02934285 0.005155668 0.1372908 +0.03925039 0.005155668 0.1372908 +0.05087609 0.005155668 0.1372908 +0.06429595 0.005155668 0.1372908 +0.07958143 0.005155668 0.1372908 +0.0968001 0.005155668 0.1372908 +0.1160161 0.005155668 0.1372908 +0.1372908 0.005155668 0.1372908 +0.1606827 0.005155668 0.1372908 +0.1862481 0.005155668 0.1372908 +0.2140411 0.005155668 0.1372908 +0.2441142 0.005155668 0.1372908 +0.2765176 0.005155668 0.1372908 +0.3113005 0.005155668 0.1372908 +0.3485102 0.005155668 0.1372908 +0.388193 0.005155668 0.1372908 +0.4303934 0.005155668 0.1372908 +0.4751555 0.005155668 0.1372908 +0.5225216 0.005155668 0.1372908 +0.5725335 0.005155668 0.1372908 +0.6252316 0.005155668 0.1372908 +0.6806558 0.005155668 0.1372908 +0.7388448 0.005155668 0.1372908 +0.7998369 0.005155668 0.1372908 +0.8636691 0.005155668 0.1372908 +0.9303782 0.005155668 0.1372908 +1 0.005155668 0.1372908 +0 0.009080105 0.1372908 +0.002418731 0.009080105 0.1372908 +0.005155668 0.009080105 0.1372908 +0.009080105 0.009080105 0.1372908 +0.01434988 0.009080105 0.1372908 +0.02107202 0.009080105 0.1372908 +0.02934285 0.009080105 0.1372908 +0.03925039 0.009080105 0.1372908 +0.05087609 0.009080105 0.1372908 +0.06429595 0.009080105 0.1372908 +0.07958143 0.009080105 0.1372908 +0.0968001 0.009080105 0.1372908 +0.1160161 0.009080105 0.1372908 +0.1372908 0.009080105 0.1372908 +0.1606827 0.009080105 0.1372908 +0.1862481 0.009080105 0.1372908 +0.2140411 0.009080105 0.1372908 +0.2441142 0.009080105 0.1372908 +0.2765176 0.009080105 0.1372908 +0.3113005 0.009080105 0.1372908 +0.3485102 0.009080105 0.1372908 +0.388193 0.009080105 0.1372908 +0.4303934 0.009080105 0.1372908 +0.4751555 0.009080105 0.1372908 +0.5225216 0.009080105 0.1372908 +0.5725335 0.009080105 0.1372908 +0.6252316 0.009080105 0.1372908 +0.6806558 0.009080105 0.1372908 +0.7388448 0.009080105 0.1372908 +0.7998369 0.009080105 0.1372908 +0.8636691 0.009080105 0.1372908 +0.9303782 0.009080105 0.1372908 +1 0.009080105 0.1372908 +0 0.01434988 0.1372908 +0.002418731 0.01434988 0.1372908 +0.005155668 0.01434988 0.1372908 +0.009080105 0.01434988 0.1372908 +0.01434988 0.01434988 0.1372908 +0.02107202 0.01434988 0.1372908 +0.02934285 0.01434988 0.1372908 +0.03925039 0.01434988 0.1372908 +0.05087609 0.01434988 0.1372908 +0.06429595 0.01434988 0.1372908 +0.07958143 0.01434988 0.1372908 +0.0968001 0.01434988 0.1372908 +0.1160161 0.01434988 0.1372908 +0.1372908 0.01434988 0.1372908 +0.1606827 0.01434988 0.1372908 +0.1862481 0.01434988 0.1372908 +0.2140411 0.01434988 0.1372908 +0.2441142 0.01434988 0.1372908 +0.2765176 0.01434988 0.1372908 +0.3113005 0.01434988 0.1372908 +0.3485102 0.01434988 0.1372908 +0.388193 0.01434988 0.1372908 +0.4303934 0.01434988 0.1372908 +0.4751555 0.01434988 0.1372908 +0.5225216 0.01434988 0.1372908 +0.5725335 0.01434988 0.1372908 +0.6252316 0.01434988 0.1372908 +0.6806558 0.01434988 0.1372908 +0.7388448 0.01434988 0.1372908 +0.7998369 0.01434988 0.1372908 +0.8636691 0.01434988 0.1372908 +0.9303782 0.01434988 0.1372908 +1 0.01434988 0.1372908 +0 0.02107202 0.1372908 +0.002418731 0.02107202 0.1372908 +0.005155668 0.02107202 0.1372908 +0.009080105 0.02107202 0.1372908 +0.01434988 0.02107202 0.1372908 +0.02107202 0.02107202 0.1372908 +0.02934285 0.02107202 0.1372908 +0.03925039 0.02107202 0.1372908 +0.05087609 0.02107202 0.1372908 +0.06429595 0.02107202 0.1372908 +0.07958143 0.02107202 0.1372908 +0.0968001 0.02107202 0.1372908 +0.1160161 0.02107202 0.1372908 +0.1372908 0.02107202 0.1372908 +0.1606827 0.02107202 0.1372908 +0.1862481 0.02107202 0.1372908 +0.2140411 0.02107202 0.1372908 +0.2441142 0.02107202 0.1372908 +0.2765176 0.02107202 0.1372908 +0.3113005 0.02107202 0.1372908 +0.3485102 0.02107202 0.1372908 +0.388193 0.02107202 0.1372908 +0.4303934 0.02107202 0.1372908 +0.4751555 0.02107202 0.1372908 +0.5225216 0.02107202 0.1372908 +0.5725335 0.02107202 0.1372908 +0.6252316 0.02107202 0.1372908 +0.6806558 0.02107202 0.1372908 +0.7388448 0.02107202 0.1372908 +0.7998369 0.02107202 0.1372908 +0.8636691 0.02107202 0.1372908 +0.9303782 0.02107202 0.1372908 +1 0.02107202 0.1372908 +0 0.02934285 0.1372908 +0.002418731 0.02934285 0.1372908 +0.005155668 0.02934285 0.1372908 +0.009080105 0.02934285 0.1372908 +0.01434988 0.02934285 0.1372908 +0.02107202 0.02934285 0.1372908 +0.02934285 0.02934285 0.1372908 +0.03925039 0.02934285 0.1372908 +0.05087609 0.02934285 0.1372908 +0.06429595 0.02934285 0.1372908 +0.07958143 0.02934285 0.1372908 +0.0968001 0.02934285 0.1372908 +0.1160161 0.02934285 0.1372908 +0.1372908 0.02934285 0.1372908 +0.1606827 0.02934285 0.1372908 +0.1862481 0.02934285 0.1372908 +0.2140411 0.02934285 0.1372908 +0.2441142 0.02934285 0.1372908 +0.2765176 0.02934285 0.1372908 +0.3113005 0.02934285 0.1372908 +0.3485102 0.02934285 0.1372908 +0.388193 0.02934285 0.1372908 +0.4303934 0.02934285 0.1372908 +0.4751555 0.02934285 0.1372908 +0.5225216 0.02934285 0.1372908 +0.5725335 0.02934285 0.1372908 +0.6252316 0.02934285 0.1372908 +0.6806558 0.02934285 0.1372908 +0.7388448 0.02934285 0.1372908 +0.7998369 0.02934285 0.1372908 +0.8636691 0.02934285 0.1372908 +0.9303782 0.02934285 0.1372908 +1 0.02934285 0.1372908 +0 0.03925039 0.1372908 +0.002418731 0.03925039 0.1372908 +0.005155668 0.03925039 0.1372908 +0.009080105 0.03925039 0.1372908 +0.01434988 0.03925039 0.1372908 +0.02107202 0.03925039 0.1372908 +0.02934285 0.03925039 0.1372908 +0.03925039 0.03925039 0.1372908 +0.05087609 0.03925039 0.1372908 +0.06429595 0.03925039 0.1372908 +0.07958143 0.03925039 0.1372908 +0.0968001 0.03925039 0.1372908 +0.1160161 0.03925039 0.1372908 +0.1372908 0.03925039 0.1372908 +0.1606827 0.03925039 0.1372908 +0.1862481 0.03925039 0.1372908 +0.2140411 0.03925039 0.1372908 +0.2441142 0.03925039 0.1372908 +0.2765176 0.03925039 0.1372908 +0.3113005 0.03925039 0.1372908 +0.3485102 0.03925039 0.1372908 +0.388193 0.03925039 0.1372908 +0.4303934 0.03925039 0.1372908 +0.4751555 0.03925039 0.1372908 +0.5225216 0.03925039 0.1372908 +0.5725335 0.03925039 0.1372908 +0.6252316 0.03925039 0.1372908 +0.6806558 0.03925039 0.1372908 +0.7388448 0.03925039 0.1372908 +0.7998369 0.03925039 0.1372908 +0.8636691 0.03925039 0.1372908 +0.9303782 0.03925039 0.1372908 +1 0.03925039 0.1372908 +0 0.05087609 0.1372908 +0.002418731 0.05087609 0.1372908 +0.005155668 0.05087609 0.1372908 +0.009080105 0.05087609 0.1372908 +0.01434988 0.05087609 0.1372908 +0.02107202 0.05087609 0.1372908 +0.02934285 0.05087609 0.1372908 +0.03925039 0.05087609 0.1372908 +0.05087609 0.05087609 0.1372908 +0.06429595 0.05087609 0.1372908 +0.07958143 0.05087609 0.1372908 +0.0968001 0.05087609 0.1372908 +0.1160161 0.05087609 0.1372908 +0.1372908 0.05087609 0.1372908 +0.1606827 0.05087609 0.1372908 +0.1862481 0.05087609 0.1372908 +0.2140411 0.05087609 0.1372908 +0.2441142 0.05087609 0.1372908 +0.2765176 0.05087609 0.1372908 +0.3113005 0.05087609 0.1372908 +0.3485102 0.05087609 0.1372908 +0.388193 0.05087609 0.1372908 +0.4303934 0.05087609 0.1372908 +0.4751555 0.05087609 0.1372908 +0.5225216 0.05087609 0.1372908 +0.5725335 0.05087609 0.1372908 +0.6252316 0.05087609 0.1372908 +0.6806558 0.05087609 0.1372908 +0.7388448 0.05087609 0.1372908 +0.7998369 0.05087609 0.1372908 +0.8636691 0.05087609 0.1372908 +0.9303782 0.05087609 0.1372908 +1 0.05087609 0.1372908 +0 0.06429595 0.1372908 +0.002418731 0.06429595 0.1372908 +0.005155668 0.06429595 0.1372908 +0.009080105 0.06429595 0.1372908 +0.01434988 0.06429595 0.1372908 +0.02107202 0.06429595 0.1372908 +0.02934285 0.06429595 0.1372908 +0.03925039 0.06429595 0.1372908 +0.05087609 0.06429595 0.1372908 +0.06429595 0.06429595 0.1372908 +0.07958143 0.06429595 0.1372908 +0.0968001 0.06429595 0.1372908 +0.1160161 0.06429595 0.1372908 +0.1372908 0.06429595 0.1372908 +0.1606827 0.06429595 0.1372908 +0.1862481 0.06429595 0.1372908 +0.2140411 0.06429595 0.1372908 +0.2441142 0.06429595 0.1372908 +0.2765176 0.06429595 0.1372908 +0.3113005 0.06429595 0.1372908 +0.3485102 0.06429595 0.1372908 +0.388193 0.06429595 0.1372908 +0.4303934 0.06429595 0.1372908 +0.4751555 0.06429595 0.1372908 +0.5225216 0.06429595 0.1372908 +0.5725335 0.06429595 0.1372908 +0.6252316 0.06429595 0.1372908 +0.6806558 0.06429595 0.1372908 +0.7388448 0.06429595 0.1372908 +0.7998369 0.06429595 0.1372908 +0.8636691 0.06429595 0.1372908 +0.9303782 0.06429595 0.1372908 +1 0.06429595 0.1372908 +0 0.07958143 0.1372908 +0.002418731 0.07958143 0.1372908 +0.005155668 0.07958143 0.1372908 +0.009080105 0.07958143 0.1372908 +0.01434988 0.07958143 0.1372908 +0.02107202 0.07958143 0.1372908 +0.02934285 0.07958143 0.1372908 +0.03925039 0.07958143 0.1372908 +0.05087609 0.07958143 0.1372908 +0.06429595 0.07958143 0.1372908 +0.07958143 0.07958143 0.1372908 +0.0968001 0.07958143 0.1372908 +0.1160161 0.07958143 0.1372908 +0.1372908 0.07958143 0.1372908 +0.1606827 0.07958143 0.1372908 +0.1862481 0.07958143 0.1372908 +0.2140411 0.07958143 0.1372908 +0.2441142 0.07958143 0.1372908 +0.2765176 0.07958143 0.1372908 +0.3113005 0.07958143 0.1372908 +0.3485102 0.07958143 0.1372908 +0.388193 0.07958143 0.1372908 +0.4303934 0.07958143 0.1372908 +0.4751555 0.07958143 0.1372908 +0.5225216 0.07958143 0.1372908 +0.5725335 0.07958143 0.1372908 +0.6252316 0.07958143 0.1372908 +0.6806558 0.07958143 0.1372908 +0.7388448 0.07958143 0.1372908 +0.7998369 0.07958143 0.1372908 +0.8636691 0.07958143 0.1372908 +0.9303782 0.07958143 0.1372908 +1 0.07958143 0.1372908 +0 0.0968001 0.1372908 +0.002418731 0.0968001 0.1372908 +0.005155668 0.0968001 0.1372908 +0.009080105 0.0968001 0.1372908 +0.01434988 0.0968001 0.1372908 +0.02107202 0.0968001 0.1372908 +0.02934285 0.0968001 0.1372908 +0.03925039 0.0968001 0.1372908 +0.05087609 0.0968001 0.1372908 +0.06429595 0.0968001 0.1372908 +0.07958143 0.0968001 0.1372908 +0.0968001 0.0968001 0.1372908 +0.1160161 0.0968001 0.1372908 +0.1372908 0.0968001 0.1372908 +0.1606827 0.0968001 0.1372908 +0.1862481 0.0968001 0.1372908 +0.2140411 0.0968001 0.1372908 +0.2441142 0.0968001 0.1372908 +0.2765176 0.0968001 0.1372908 +0.3113005 0.0968001 0.1372908 +0.3485102 0.0968001 0.1372908 +0.388193 0.0968001 0.1372908 +0.4303934 0.0968001 0.1372908 +0.4751555 0.0968001 0.1372908 +0.5225216 0.0968001 0.1372908 +0.5725335 0.0968001 0.1372908 +0.6252316 0.0968001 0.1372908 +0.6806558 0.0968001 0.1372908 +0.7388448 0.0968001 0.1372908 +0.7998369 0.0968001 0.1372908 +0.8636691 0.0968001 0.1372908 +0.9303782 0.0968001 0.1372908 +1 0.0968001 0.1372908 +0 0.1160161 0.1372908 +0.002418731 0.1160161 0.1372908 +0.005155668 0.1160161 0.1372908 +0.009080105 0.1160161 0.1372908 +0.01434988 0.1160161 0.1372908 +0.02107202 0.1160161 0.1372908 +0.02934285 0.1160161 0.1372908 +0.03925039 0.1160161 0.1372908 +0.05087609 0.1160161 0.1372908 +0.06429595 0.1160161 0.1372908 +0.07958143 0.1160161 0.1372908 +0.0968001 0.1160161 0.1372908 +0.1160161 0.1160161 0.1372908 +0.1372908 0.1160161 0.1372908 +0.1606827 0.1160161 0.1372908 +0.1862481 0.1160161 0.1372908 +0.2140411 0.1160161 0.1372908 +0.2441142 0.1160161 0.1372908 +0.2765176 0.1160161 0.1372908 +0.3113005 0.1160161 0.1372908 +0.3485102 0.1160161 0.1372908 +0.388193 0.1160161 0.1372908 +0.4303934 0.1160161 0.1372908 +0.4751555 0.1160161 0.1372908 +0.5225216 0.1160161 0.1372908 +0.5725335 0.1160161 0.1372908 +0.6252316 0.1160161 0.1372908 +0.6806558 0.1160161 0.1372908 +0.7388448 0.1160161 0.1372908 +0.7998369 0.1160161 0.1372908 +0.8636691 0.1160161 0.1372908 +0.9303782 0.1160161 0.1372908 +1 0.1160161 0.1372908 +0 0.1372908 0.1372908 +0.002418731 0.1372908 0.1372908 +0.005155668 0.1372908 0.1372908 +0.009080105 0.1372908 0.1372908 +0.01434988 0.1372908 0.1372908 +0.02107202 0.1372908 0.1372908 +0.02934285 0.1372908 0.1372908 +0.03925039 0.1372908 0.1372908 +0.05087609 0.1372908 0.1372908 +0.06429595 0.1372908 0.1372908 +0.07958143 0.1372908 0.1372908 +0.0968001 0.1372908 0.1372908 +0.1160161 0.1372908 0.1372908 +0.1372908 0.1372908 0.1372908 +0.1606827 0.1372908 0.1372908 +0.1862481 0.1372908 0.1372908 +0.2140411 0.1372908 0.1372908 +0.2441142 0.1372908 0.1372908 +0.2765176 0.1372908 0.1372908 +0.3113005 0.1372908 0.1372908 +0.3485102 0.1372908 0.1372908 +0.388193 0.1372908 0.1372908 +0.4303934 0.1372908 0.1372908 +0.4751555 0.1372908 0.1372908 +0.5225216 0.1372908 0.1372908 +0.5725335 0.1372908 0.1372908 +0.6252316 0.1372908 0.1372908 +0.6806558 0.1372908 0.1372908 +0.7388448 0.1372908 0.1372908 +0.7998369 0.1372908 0.1372908 +0.8636691 0.1372908 0.1372908 +0.9303782 0.1372908 0.1372908 +1 0.1372908 0.1372908 +0 0.1606827 0.1372908 +0.002418731 0.1606827 0.1372908 +0.005155668 0.1606827 0.1372908 +0.009080105 0.1606827 0.1372908 +0.01434988 0.1606827 0.1372908 +0.02107202 0.1606827 0.1372908 +0.02934285 0.1606827 0.1372908 +0.03925039 0.1606827 0.1372908 +0.05087609 0.1606827 0.1372908 +0.06429595 0.1606827 0.1372908 +0.07958143 0.1606827 0.1372908 +0.0968001 0.1606827 0.1372908 +0.1160161 0.1606827 0.1372908 +0.1372908 0.1606827 0.1372908 +0.1606827 0.1606827 0.1372908 +0.1862481 0.1606827 0.1372908 +0.2140411 0.1606827 0.1372908 +0.2441142 0.1606827 0.1372908 +0.2765176 0.1606827 0.1372908 +0.3113005 0.1606827 0.1372908 +0.3485102 0.1606827 0.1372908 +0.388193 0.1606827 0.1372908 +0.4303934 0.1606827 0.1372908 +0.4751555 0.1606827 0.1372908 +0.5225216 0.1606827 0.1372908 +0.5725335 0.1606827 0.1372908 +0.6252316 0.1606827 0.1372908 +0.6806558 0.1606827 0.1372908 +0.7388448 0.1606827 0.1372908 +0.7998369 0.1606827 0.1372908 +0.8636691 0.1606827 0.1372908 +0.9303782 0.1606827 0.1372908 +1 0.1606827 0.1372908 +0 0.1862481 0.1372908 +0.002418731 0.1862481 0.1372908 +0.005155668 0.1862481 0.1372908 +0.009080105 0.1862481 0.1372908 +0.01434988 0.1862481 0.1372908 +0.02107202 0.1862481 0.1372908 +0.02934285 0.1862481 0.1372908 +0.03925039 0.1862481 0.1372908 +0.05087609 0.1862481 0.1372908 +0.06429595 0.1862481 0.1372908 +0.07958143 0.1862481 0.1372908 +0.0968001 0.1862481 0.1372908 +0.1160161 0.1862481 0.1372908 +0.1372908 0.1862481 0.1372908 +0.1606827 0.1862481 0.1372908 +0.1862481 0.1862481 0.1372908 +0.2140411 0.1862481 0.1372908 +0.2441142 0.1862481 0.1372908 +0.2765176 0.1862481 0.1372908 +0.3113005 0.1862481 0.1372908 +0.3485102 0.1862481 0.1372908 +0.388193 0.1862481 0.1372908 +0.4303934 0.1862481 0.1372908 +0.4751555 0.1862481 0.1372908 +0.5225216 0.1862481 0.1372908 +0.5725335 0.1862481 0.1372908 +0.6252316 0.1862481 0.1372908 +0.6806558 0.1862481 0.1372908 +0.7388448 0.1862481 0.1372908 +0.7998369 0.1862481 0.1372908 +0.8636691 0.1862481 0.1372908 +0.9303782 0.1862481 0.1372908 +1 0.1862481 0.1372908 +0 0.2140411 0.1372908 +0.002418731 0.2140411 0.1372908 +0.005155668 0.2140411 0.1372908 +0.009080105 0.2140411 0.1372908 +0.01434988 0.2140411 0.1372908 +0.02107202 0.2140411 0.1372908 +0.02934285 0.2140411 0.1372908 +0.03925039 0.2140411 0.1372908 +0.05087609 0.2140411 0.1372908 +0.06429595 0.2140411 0.1372908 +0.07958143 0.2140411 0.1372908 +0.0968001 0.2140411 0.1372908 +0.1160161 0.2140411 0.1372908 +0.1372908 0.2140411 0.1372908 +0.1606827 0.2140411 0.1372908 +0.1862481 0.2140411 0.1372908 +0.2140411 0.2140411 0.1372908 +0.2441142 0.2140411 0.1372908 +0.2765176 0.2140411 0.1372908 +0.3113005 0.2140411 0.1372908 +0.3485102 0.2140411 0.1372908 +0.388193 0.2140411 0.1372908 +0.4303934 0.2140411 0.1372908 +0.4751555 0.2140411 0.1372908 +0.5225216 0.2140411 0.1372908 +0.5725335 0.2140411 0.1372908 +0.6252316 0.2140411 0.1372908 +0.6806558 0.2140411 0.1372908 +0.7388448 0.2140411 0.1372908 +0.7998369 0.2140411 0.1372908 +0.8636691 0.2140411 0.1372908 +0.9303782 0.2140411 0.1372908 +1 0.2140411 0.1372908 +0 0.2441142 0.1372908 +0.002418731 0.2441142 0.1372908 +0.005155668 0.2441142 0.1372908 +0.009080105 0.2441142 0.1372908 +0.01434988 0.2441142 0.1372908 +0.02107202 0.2441142 0.1372908 +0.02934285 0.2441142 0.1372908 +0.03925039 0.2441142 0.1372908 +0.05087609 0.2441142 0.1372908 +0.06429595 0.2441142 0.1372908 +0.07958143 0.2441142 0.1372908 +0.0968001 0.2441142 0.1372908 +0.1160161 0.2441142 0.1372908 +0.1372908 0.2441142 0.1372908 +0.1606827 0.2441142 0.1372908 +0.1862481 0.2441142 0.1372908 +0.2140411 0.2441142 0.1372908 +0.2441142 0.2441142 0.1372908 +0.2765176 0.2441142 0.1372908 +0.3113005 0.2441142 0.1372908 +0.3485102 0.2441142 0.1372908 +0.388193 0.2441142 0.1372908 +0.4303934 0.2441142 0.1372908 +0.4751555 0.2441142 0.1372908 +0.5225216 0.2441142 0.1372908 +0.5725335 0.2441142 0.1372908 +0.6252316 0.2441142 0.1372908 +0.6806558 0.2441142 0.1372908 +0.7388448 0.2441142 0.1372908 +0.7998369 0.2441142 0.1372908 +0.8636691 0.2441142 0.1372908 +0.9303782 0.2441142 0.1372908 +1 0.2441142 0.1372908 +0 0.2765176 0.1372908 +0.002418731 0.2765176 0.1372908 +0.005155668 0.2765176 0.1372908 +0.009080105 0.2765176 0.1372908 +0.01434988 0.2765176 0.1372908 +0.02107202 0.2765176 0.1372908 +0.02934285 0.2765176 0.1372908 +0.03925039 0.2765176 0.1372908 +0.05087609 0.2765176 0.1372908 +0.06429595 0.2765176 0.1372908 +0.07958143 0.2765176 0.1372908 +0.0968001 0.2765176 0.1372908 +0.1160161 0.2765176 0.1372908 +0.1372908 0.2765176 0.1372908 +0.1606827 0.2765176 0.1372908 +0.1862481 0.2765176 0.1372908 +0.2140411 0.2765176 0.1372908 +0.2441142 0.2765176 0.1372908 +0.2765176 0.2765176 0.1372908 +0.3113005 0.2765176 0.1372908 +0.3485102 0.2765176 0.1372908 +0.388193 0.2765176 0.1372908 +0.4303934 0.2765176 0.1372908 +0.4751555 0.2765176 0.1372908 +0.5225216 0.2765176 0.1372908 +0.5725335 0.2765176 0.1372908 +0.6252316 0.2765176 0.1372908 +0.6806558 0.2765176 0.1372908 +0.7388448 0.2765176 0.1372908 +0.7998369 0.2765176 0.1372908 +0.8636691 0.2765176 0.1372908 +0.9303782 0.2765176 0.1372908 +1 0.2765176 0.1372908 +0 0.3113005 0.1372908 +0.002418731 0.3113005 0.1372908 +0.005155668 0.3113005 0.1372908 +0.009080105 0.3113005 0.1372908 +0.01434988 0.3113005 0.1372908 +0.02107202 0.3113005 0.1372908 +0.02934285 0.3113005 0.1372908 +0.03925039 0.3113005 0.1372908 +0.05087609 0.3113005 0.1372908 +0.06429595 0.3113005 0.1372908 +0.07958143 0.3113005 0.1372908 +0.0968001 0.3113005 0.1372908 +0.1160161 0.3113005 0.1372908 +0.1372908 0.3113005 0.1372908 +0.1606827 0.3113005 0.1372908 +0.1862481 0.3113005 0.1372908 +0.2140411 0.3113005 0.1372908 +0.2441142 0.3113005 0.1372908 +0.2765176 0.3113005 0.1372908 +0.3113005 0.3113005 0.1372908 +0.3485102 0.3113005 0.1372908 +0.388193 0.3113005 0.1372908 +0.4303934 0.3113005 0.1372908 +0.4751555 0.3113005 0.1372908 +0.5225216 0.3113005 0.1372908 +0.5725335 0.3113005 0.1372908 +0.6252316 0.3113005 0.1372908 +0.6806558 0.3113005 0.1372908 +0.7388448 0.3113005 0.1372908 +0.7998369 0.3113005 0.1372908 +0.8636691 0.3113005 0.1372908 +0.9303782 0.3113005 0.1372908 +1 0.3113005 0.1372908 +0 0.3485102 0.1372908 +0.002418731 0.3485102 0.1372908 +0.005155668 0.3485102 0.1372908 +0.009080105 0.3485102 0.1372908 +0.01434988 0.3485102 0.1372908 +0.02107202 0.3485102 0.1372908 +0.02934285 0.3485102 0.1372908 +0.03925039 0.3485102 0.1372908 +0.05087609 0.3485102 0.1372908 +0.06429595 0.3485102 0.1372908 +0.07958143 0.3485102 0.1372908 +0.0968001 0.3485102 0.1372908 +0.1160161 0.3485102 0.1372908 +0.1372908 0.3485102 0.1372908 +0.1606827 0.3485102 0.1372908 +0.1862481 0.3485102 0.1372908 +0.2140411 0.3485102 0.1372908 +0.2441142 0.3485102 0.1372908 +0.2765176 0.3485102 0.1372908 +0.3113005 0.3485102 0.1372908 +0.3485102 0.3485102 0.1372908 +0.388193 0.3485102 0.1372908 +0.4303934 0.3485102 0.1372908 +0.4751555 0.3485102 0.1372908 +0.5225216 0.3485102 0.1372908 +0.5725335 0.3485102 0.1372908 +0.6252316 0.3485102 0.1372908 +0.6806558 0.3485102 0.1372908 +0.7388448 0.3485102 0.1372908 +0.7998369 0.3485102 0.1372908 +0.8636691 0.3485102 0.1372908 +0.9303782 0.3485102 0.1372908 +1 0.3485102 0.1372908 +0 0.388193 0.1372908 +0.002418731 0.388193 0.1372908 +0.005155668 0.388193 0.1372908 +0.009080105 0.388193 0.1372908 +0.01434988 0.388193 0.1372908 +0.02107202 0.388193 0.1372908 +0.02934285 0.388193 0.1372908 +0.03925039 0.388193 0.1372908 +0.05087609 0.388193 0.1372908 +0.06429595 0.388193 0.1372908 +0.07958143 0.388193 0.1372908 +0.0968001 0.388193 0.1372908 +0.1160161 0.388193 0.1372908 +0.1372908 0.388193 0.1372908 +0.1606827 0.388193 0.1372908 +0.1862481 0.388193 0.1372908 +0.2140411 0.388193 0.1372908 +0.2441142 0.388193 0.1372908 +0.2765176 0.388193 0.1372908 +0.3113005 0.388193 0.1372908 +0.3485102 0.388193 0.1372908 +0.388193 0.388193 0.1372908 +0.4303934 0.388193 0.1372908 +0.4751555 0.388193 0.1372908 +0.5225216 0.388193 0.1372908 +0.5725335 0.388193 0.1372908 +0.6252316 0.388193 0.1372908 +0.6806558 0.388193 0.1372908 +0.7388448 0.388193 0.1372908 +0.7998369 0.388193 0.1372908 +0.8636691 0.388193 0.1372908 +0.9303782 0.388193 0.1372908 +1 0.388193 0.1372908 +0 0.4303934 0.1372908 +0.002418731 0.4303934 0.1372908 +0.005155668 0.4303934 0.1372908 +0.009080105 0.4303934 0.1372908 +0.01434988 0.4303934 0.1372908 +0.02107202 0.4303934 0.1372908 +0.02934285 0.4303934 0.1372908 +0.03925039 0.4303934 0.1372908 +0.05087609 0.4303934 0.1372908 +0.06429595 0.4303934 0.1372908 +0.07958143 0.4303934 0.1372908 +0.0968001 0.4303934 0.1372908 +0.1160161 0.4303934 0.1372908 +0.1372908 0.4303934 0.1372908 +0.1606827 0.4303934 0.1372908 +0.1862481 0.4303934 0.1372908 +0.2140411 0.4303934 0.1372908 +0.2441142 0.4303934 0.1372908 +0.2765176 0.4303934 0.1372908 +0.3113005 0.4303934 0.1372908 +0.3485102 0.4303934 0.1372908 +0.388193 0.4303934 0.1372908 +0.4303934 0.4303934 0.1372908 +0.4751555 0.4303934 0.1372908 +0.5225216 0.4303934 0.1372908 +0.5725335 0.4303934 0.1372908 +0.6252316 0.4303934 0.1372908 +0.6806558 0.4303934 0.1372908 +0.7388448 0.4303934 0.1372908 +0.7998369 0.4303934 0.1372908 +0.8636691 0.4303934 0.1372908 +0.9303782 0.4303934 0.1372908 +1 0.4303934 0.1372908 +0 0.4751555 0.1372908 +0.002418731 0.4751555 0.1372908 +0.005155668 0.4751555 0.1372908 +0.009080105 0.4751555 0.1372908 +0.01434988 0.4751555 0.1372908 +0.02107202 0.4751555 0.1372908 +0.02934285 0.4751555 0.1372908 +0.03925039 0.4751555 0.1372908 +0.05087609 0.4751555 0.1372908 +0.06429595 0.4751555 0.1372908 +0.07958143 0.4751555 0.1372908 +0.0968001 0.4751555 0.1372908 +0.1160161 0.4751555 0.1372908 +0.1372908 0.4751555 0.1372908 +0.1606827 0.4751555 0.1372908 +0.1862481 0.4751555 0.1372908 +0.2140411 0.4751555 0.1372908 +0.2441142 0.4751555 0.1372908 +0.2765176 0.4751555 0.1372908 +0.3113005 0.4751555 0.1372908 +0.3485102 0.4751555 0.1372908 +0.388193 0.4751555 0.1372908 +0.4303934 0.4751555 0.1372908 +0.4751555 0.4751555 0.1372908 +0.5225216 0.4751555 0.1372908 +0.5725335 0.4751555 0.1372908 +0.6252316 0.4751555 0.1372908 +0.6806558 0.4751555 0.1372908 +0.7388448 0.4751555 0.1372908 +0.7998369 0.4751555 0.1372908 +0.8636691 0.4751555 0.1372908 +0.9303782 0.4751555 0.1372908 +1 0.4751555 0.1372908 +0 0.5225216 0.1372908 +0.002418731 0.5225216 0.1372908 +0.005155668 0.5225216 0.1372908 +0.009080105 0.5225216 0.1372908 +0.01434988 0.5225216 0.1372908 +0.02107202 0.5225216 0.1372908 +0.02934285 0.5225216 0.1372908 +0.03925039 0.5225216 0.1372908 +0.05087609 0.5225216 0.1372908 +0.06429595 0.5225216 0.1372908 +0.07958143 0.5225216 0.1372908 +0.0968001 0.5225216 0.1372908 +0.1160161 0.5225216 0.1372908 +0.1372908 0.5225216 0.1372908 +0.1606827 0.5225216 0.1372908 +0.1862481 0.5225216 0.1372908 +0.2140411 0.5225216 0.1372908 +0.2441142 0.5225216 0.1372908 +0.2765176 0.5225216 0.1372908 +0.3113005 0.5225216 0.1372908 +0.3485102 0.5225216 0.1372908 +0.388193 0.5225216 0.1372908 +0.4303934 0.5225216 0.1372908 +0.4751555 0.5225216 0.1372908 +0.5225216 0.5225216 0.1372908 +0.5725335 0.5225216 0.1372908 +0.6252316 0.5225216 0.1372908 +0.6806558 0.5225216 0.1372908 +0.7388448 0.5225216 0.1372908 +0.7998369 0.5225216 0.1372908 +0.8636691 0.5225216 0.1372908 +0.9303782 0.5225216 0.1372908 +1 0.5225216 0.1372908 +0 0.5725335 0.1372908 +0.002418731 0.5725335 0.1372908 +0.005155668 0.5725335 0.1372908 +0.009080105 0.5725335 0.1372908 +0.01434988 0.5725335 0.1372908 +0.02107202 0.5725335 0.1372908 +0.02934285 0.5725335 0.1372908 +0.03925039 0.5725335 0.1372908 +0.05087609 0.5725335 0.1372908 +0.06429595 0.5725335 0.1372908 +0.07958143 0.5725335 0.1372908 +0.0968001 0.5725335 0.1372908 +0.1160161 0.5725335 0.1372908 +0.1372908 0.5725335 0.1372908 +0.1606827 0.5725335 0.1372908 +0.1862481 0.5725335 0.1372908 +0.2140411 0.5725335 0.1372908 +0.2441142 0.5725335 0.1372908 +0.2765176 0.5725335 0.1372908 +0.3113005 0.5725335 0.1372908 +0.3485102 0.5725335 0.1372908 +0.388193 0.5725335 0.1372908 +0.4303934 0.5725335 0.1372908 +0.4751555 0.5725335 0.1372908 +0.5225216 0.5725335 0.1372908 +0.5725335 0.5725335 0.1372908 +0.6252316 0.5725335 0.1372908 +0.6806558 0.5725335 0.1372908 +0.7388448 0.5725335 0.1372908 +0.7998369 0.5725335 0.1372908 +0.8636691 0.5725335 0.1372908 +0.9303782 0.5725335 0.1372908 +1 0.5725335 0.1372908 +0 0.6252316 0.1372908 +0.002418731 0.6252316 0.1372908 +0.005155668 0.6252316 0.1372908 +0.009080105 0.6252316 0.1372908 +0.01434988 0.6252316 0.1372908 +0.02107202 0.6252316 0.1372908 +0.02934285 0.6252316 0.1372908 +0.03925039 0.6252316 0.1372908 +0.05087609 0.6252316 0.1372908 +0.06429595 0.6252316 0.1372908 +0.07958143 0.6252316 0.1372908 +0.0968001 0.6252316 0.1372908 +0.1160161 0.6252316 0.1372908 +0.1372908 0.6252316 0.1372908 +0.1606827 0.6252316 0.1372908 +0.1862481 0.6252316 0.1372908 +0.2140411 0.6252316 0.1372908 +0.2441142 0.6252316 0.1372908 +0.2765176 0.6252316 0.1372908 +0.3113005 0.6252316 0.1372908 +0.3485102 0.6252316 0.1372908 +0.388193 0.6252316 0.1372908 +0.4303934 0.6252316 0.1372908 +0.4751555 0.6252316 0.1372908 +0.5225216 0.6252316 0.1372908 +0.5725335 0.6252316 0.1372908 +0.6252316 0.6252316 0.1372908 +0.6806558 0.6252316 0.1372908 +0.7388448 0.6252316 0.1372908 +0.7998369 0.6252316 0.1372908 +0.8636691 0.6252316 0.1372908 +0.9303782 0.6252316 0.1372908 +1 0.6252316 0.1372908 +0 0.6806558 0.1372908 +0.002418731 0.6806558 0.1372908 +0.005155668 0.6806558 0.1372908 +0.009080105 0.6806558 0.1372908 +0.01434988 0.6806558 0.1372908 +0.02107202 0.6806558 0.1372908 +0.02934285 0.6806558 0.1372908 +0.03925039 0.6806558 0.1372908 +0.05087609 0.6806558 0.1372908 +0.06429595 0.6806558 0.1372908 +0.07958143 0.6806558 0.1372908 +0.0968001 0.6806558 0.1372908 +0.1160161 0.6806558 0.1372908 +0.1372908 0.6806558 0.1372908 +0.1606827 0.6806558 0.1372908 +0.1862481 0.6806558 0.1372908 +0.2140411 0.6806558 0.1372908 +0.2441142 0.6806558 0.1372908 +0.2765176 0.6806558 0.1372908 +0.3113005 0.6806558 0.1372908 +0.3485102 0.6806558 0.1372908 +0.388193 0.6806558 0.1372908 +0.4303934 0.6806558 0.1372908 +0.4751555 0.6806558 0.1372908 +0.5225216 0.6806558 0.1372908 +0.5725335 0.6806558 0.1372908 +0.6252316 0.6806558 0.1372908 +0.6806558 0.6806558 0.1372908 +0.7388448 0.6806558 0.1372908 +0.7998369 0.6806558 0.1372908 +0.8636691 0.6806558 0.1372908 +0.9303782 0.6806558 0.1372908 +1 0.6806558 0.1372908 +0 0.7388448 0.1372908 +0.002418731 0.7388448 0.1372908 +0.005155668 0.7388448 0.1372908 +0.009080105 0.7388448 0.1372908 +0.01434988 0.7388448 0.1372908 +0.02107202 0.7388448 0.1372908 +0.02934285 0.7388448 0.1372908 +0.03925039 0.7388448 0.1372908 +0.05087609 0.7388448 0.1372908 +0.06429595 0.7388448 0.1372908 +0.07958143 0.7388448 0.1372908 +0.0968001 0.7388448 0.1372908 +0.1160161 0.7388448 0.1372908 +0.1372908 0.7388448 0.1372908 +0.1606827 0.7388448 0.1372908 +0.1862481 0.7388448 0.1372908 +0.2140411 0.7388448 0.1372908 +0.2441142 0.7388448 0.1372908 +0.2765176 0.7388448 0.1372908 +0.3113005 0.7388448 0.1372908 +0.3485102 0.7388448 0.1372908 +0.388193 0.7388448 0.1372908 +0.4303934 0.7388448 0.1372908 +0.4751555 0.7388448 0.1372908 +0.5225216 0.7388448 0.1372908 +0.5725335 0.7388448 0.1372908 +0.6252316 0.7388448 0.1372908 +0.6806558 0.7388448 0.1372908 +0.7388448 0.7388448 0.1372908 +0.7998369 0.7388448 0.1372908 +0.8636691 0.7388448 0.1372908 +0.9303782 0.7388448 0.1372908 +1 0.7388448 0.1372908 +0 0.7998369 0.1372908 +0.002418731 0.7998369 0.1372908 +0.005155668 0.7998369 0.1372908 +0.009080105 0.7998369 0.1372908 +0.01434988 0.7998369 0.1372908 +0.02107202 0.7998369 0.1372908 +0.02934285 0.7998369 0.1372908 +0.03925039 0.7998369 0.1372908 +0.05087609 0.7998369 0.1372908 +0.06429595 0.7998369 0.1372908 +0.07958143 0.7998369 0.1372908 +0.0968001 0.7998369 0.1372908 +0.1160161 0.7998369 0.1372908 +0.1372908 0.7998369 0.1372908 +0.1606827 0.7998369 0.1372908 +0.1862481 0.7998369 0.1372908 +0.2140411 0.7998369 0.1372908 +0.2441142 0.7998369 0.1372908 +0.2765176 0.7998369 0.1372908 +0.3113005 0.7998369 0.1372908 +0.3485102 0.7998369 0.1372908 +0.388193 0.7998369 0.1372908 +0.4303934 0.7998369 0.1372908 +0.4751555 0.7998369 0.1372908 +0.5225216 0.7998369 0.1372908 +0.5725335 0.7998369 0.1372908 +0.6252316 0.7998369 0.1372908 +0.6806558 0.7998369 0.1372908 +0.7388448 0.7998369 0.1372908 +0.7998369 0.7998369 0.1372908 +0.8636691 0.7998369 0.1372908 +0.9303782 0.7998369 0.1372908 +1 0.7998369 0.1372908 +0 0.8636691 0.1372908 +0.002418731 0.8636691 0.1372908 +0.005155668 0.8636691 0.1372908 +0.009080105 0.8636691 0.1372908 +0.01434988 0.8636691 0.1372908 +0.02107202 0.8636691 0.1372908 +0.02934285 0.8636691 0.1372908 +0.03925039 0.8636691 0.1372908 +0.05087609 0.8636691 0.1372908 +0.06429595 0.8636691 0.1372908 +0.07958143 0.8636691 0.1372908 +0.0968001 0.8636691 0.1372908 +0.1160161 0.8636691 0.1372908 +0.1372908 0.8636691 0.1372908 +0.1606827 0.8636691 0.1372908 +0.1862481 0.8636691 0.1372908 +0.2140411 0.8636691 0.1372908 +0.2441142 0.8636691 0.1372908 +0.2765176 0.8636691 0.1372908 +0.3113005 0.8636691 0.1372908 +0.3485102 0.8636691 0.1372908 +0.388193 0.8636691 0.1372908 +0.4303934 0.8636691 0.1372908 +0.4751555 0.8636691 0.1372908 +0.5225216 0.8636691 0.1372908 +0.5725335 0.8636691 0.1372908 +0.6252316 0.8636691 0.1372908 +0.6806558 0.8636691 0.1372908 +0.7388448 0.8636691 0.1372908 +0.7998369 0.8636691 0.1372908 +0.8636691 0.8636691 0.1372908 +0.9303782 0.8636691 0.1372908 +1 0.8636691 0.1372908 +0 0.9303782 0.1372908 +0.002418731 0.9303782 0.1372908 +0.005155668 0.9303782 0.1372908 +0.009080105 0.9303782 0.1372908 +0.01434988 0.9303782 0.1372908 +0.02107202 0.9303782 0.1372908 +0.02934285 0.9303782 0.1372908 +0.03925039 0.9303782 0.1372908 +0.05087609 0.9303782 0.1372908 +0.06429595 0.9303782 0.1372908 +0.07958143 0.9303782 0.1372908 +0.0968001 0.9303782 0.1372908 +0.1160161 0.9303782 0.1372908 +0.1372908 0.9303782 0.1372908 +0.1606827 0.9303782 0.1372908 +0.1862481 0.9303782 0.1372908 +0.2140411 0.9303782 0.1372908 +0.2441142 0.9303782 0.1372908 +0.2765176 0.9303782 0.1372908 +0.3113005 0.9303782 0.1372908 +0.3485102 0.9303782 0.1372908 +0.388193 0.9303782 0.1372908 +0.4303934 0.9303782 0.1372908 +0.4751555 0.9303782 0.1372908 +0.5225216 0.9303782 0.1372908 +0.5725335 0.9303782 0.1372908 +0.6252316 0.9303782 0.1372908 +0.6806558 0.9303782 0.1372908 +0.7388448 0.9303782 0.1372908 +0.7998369 0.9303782 0.1372908 +0.8636691 0.9303782 0.1372908 +0.9303782 0.9303782 0.1372908 +1 0.9303782 0.1372908 +0 1 0.1372908 +0.002418731 1 0.1372908 +0.005155668 1 0.1372908 +0.009080105 1 0.1372908 +0.01434988 1 0.1372908 +0.02107202 1 0.1372908 +0.02934285 1 0.1372908 +0.03925039 1 0.1372908 +0.05087609 1 0.1372908 +0.06429595 1 0.1372908 +0.07958143 1 0.1372908 +0.0968001 1 0.1372908 +0.1160161 1 0.1372908 +0.1372908 1 0.1372908 +0.1606827 1 0.1372908 +0.1862481 1 0.1372908 +0.2140411 1 0.1372908 +0.2441142 1 0.1372908 +0.2765176 1 0.1372908 +0.3113005 1 0.1372908 +0.3485102 1 0.1372908 +0.388193 1 0.1372908 +0.4303934 1 0.1372908 +0.4751555 1 0.1372908 +0.5225216 1 0.1372908 +0.5725335 1 0.1372908 +0.6252316 1 0.1372908 +0.6806558 1 0.1372908 +0.7388448 1 0.1372908 +0.7998369 1 0.1372908 +0.8636691 1 0.1372908 +0.9303782 1 0.1372908 +1 1 0.1372908 +0 0 0.1606827 +0.002418731 0 0.1606827 +0.005155668 0 0.1606827 +0.009080105 0 0.1606827 +0.01434988 0 0.1606827 +0.02107202 0 0.1606827 +0.02934285 0 0.1606827 +0.03925039 0 0.1606827 +0.05087609 0 0.1606827 +0.06429595 0 0.1606827 +0.07958143 0 0.1606827 +0.0968001 0 0.1606827 +0.1160161 0 0.1606827 +0.1372908 0 0.1606827 +0.1606827 0 0.1606827 +0.1862481 0 0.1606827 +0.2140411 0 0.1606827 +0.2441142 0 0.1606827 +0.2765176 0 0.1606827 +0.3113005 0 0.1606827 +0.3485102 0 0.1606827 +0.388193 0 0.1606827 +0.4303934 0 0.1606827 +0.4751555 0 0.1606827 +0.5225216 0 0.1606827 +0.5725335 0 0.1606827 +0.6252316 0 0.1606827 +0.6806558 0 0.1606827 +0.7388448 0 0.1606827 +0.7998369 0 0.1606827 +0.8636691 0 0.1606827 +0.9303782 0 0.1606827 +1 0 0.1606827 +0 0.002418731 0.1606827 +0.002418731 0.002418731 0.1606827 +0.005155668 0.002418731 0.1606827 +0.009080105 0.002418731 0.1606827 +0.01434988 0.002418731 0.1606827 +0.02107202 0.002418731 0.1606827 +0.02934285 0.002418731 0.1606827 +0.03925039 0.002418731 0.1606827 +0.05087609 0.002418731 0.1606827 +0.06429595 0.002418731 0.1606827 +0.07958143 0.002418731 0.1606827 +0.0968001 0.002418731 0.1606827 +0.1160161 0.002418731 0.1606827 +0.1372908 0.002418731 0.1606827 +0.1606827 0.002418731 0.1606827 +0.1862481 0.002418731 0.1606827 +0.2140411 0.002418731 0.1606827 +0.2441142 0.002418731 0.1606827 +0.2765176 0.002418731 0.1606827 +0.3113005 0.002418731 0.1606827 +0.3485102 0.002418731 0.1606827 +0.388193 0.002418731 0.1606827 +0.4303934 0.002418731 0.1606827 +0.4751555 0.002418731 0.1606827 +0.5225216 0.002418731 0.1606827 +0.5725335 0.002418731 0.1606827 +0.6252316 0.002418731 0.1606827 +0.6806558 0.002418731 0.1606827 +0.7388448 0.002418731 0.1606827 +0.7998369 0.002418731 0.1606827 +0.8636691 0.002418731 0.1606827 +0.9303782 0.002418731 0.1606827 +1 0.002418731 0.1606827 +0 0.005155668 0.1606827 +0.002418731 0.005155668 0.1606827 +0.005155668 0.005155668 0.1606827 +0.009080105 0.005155668 0.1606827 +0.01434988 0.005155668 0.1606827 +0.02107202 0.005155668 0.1606827 +0.02934285 0.005155668 0.1606827 +0.03925039 0.005155668 0.1606827 +0.05087609 0.005155668 0.1606827 +0.06429595 0.005155668 0.1606827 +0.07958143 0.005155668 0.1606827 +0.0968001 0.005155668 0.1606827 +0.1160161 0.005155668 0.1606827 +0.1372908 0.005155668 0.1606827 +0.1606827 0.005155668 0.1606827 +0.1862481 0.005155668 0.1606827 +0.2140411 0.005155668 0.1606827 +0.2441142 0.005155668 0.1606827 +0.2765176 0.005155668 0.1606827 +0.3113005 0.005155668 0.1606827 +0.3485102 0.005155668 0.1606827 +0.388193 0.005155668 0.1606827 +0.4303934 0.005155668 0.1606827 +0.4751555 0.005155668 0.1606827 +0.5225216 0.005155668 0.1606827 +0.5725335 0.005155668 0.1606827 +0.6252316 0.005155668 0.1606827 +0.6806558 0.005155668 0.1606827 +0.7388448 0.005155668 0.1606827 +0.7998369 0.005155668 0.1606827 +0.8636691 0.005155668 0.1606827 +0.9303782 0.005155668 0.1606827 +1 0.005155668 0.1606827 +0 0.009080105 0.1606827 +0.002418731 0.009080105 0.1606827 +0.005155668 0.009080105 0.1606827 +0.009080105 0.009080105 0.1606827 +0.01434988 0.009080105 0.1606827 +0.02107202 0.009080105 0.1606827 +0.02934285 0.009080105 0.1606827 +0.03925039 0.009080105 0.1606827 +0.05087609 0.009080105 0.1606827 +0.06429595 0.009080105 0.1606827 +0.07958143 0.009080105 0.1606827 +0.0968001 0.009080105 0.1606827 +0.1160161 0.009080105 0.1606827 +0.1372908 0.009080105 0.1606827 +0.1606827 0.009080105 0.1606827 +0.1862481 0.009080105 0.1606827 +0.2140411 0.009080105 0.1606827 +0.2441142 0.009080105 0.1606827 +0.2765176 0.009080105 0.1606827 +0.3113005 0.009080105 0.1606827 +0.3485102 0.009080105 0.1606827 +0.388193 0.009080105 0.1606827 +0.4303934 0.009080105 0.1606827 +0.4751555 0.009080105 0.1606827 +0.5225216 0.009080105 0.1606827 +0.5725335 0.009080105 0.1606827 +0.6252316 0.009080105 0.1606827 +0.6806558 0.009080105 0.1606827 +0.7388448 0.009080105 0.1606827 +0.7998369 0.009080105 0.1606827 +0.8636691 0.009080105 0.1606827 +0.9303782 0.009080105 0.1606827 +1 0.009080105 0.1606827 +0 0.01434988 0.1606827 +0.002418731 0.01434988 0.1606827 +0.005155668 0.01434988 0.1606827 +0.009080105 0.01434988 0.1606827 +0.01434988 0.01434988 0.1606827 +0.02107202 0.01434988 0.1606827 +0.02934285 0.01434988 0.1606827 +0.03925039 0.01434988 0.1606827 +0.05087609 0.01434988 0.1606827 +0.06429595 0.01434988 0.1606827 +0.07958143 0.01434988 0.1606827 +0.0968001 0.01434988 0.1606827 +0.1160161 0.01434988 0.1606827 +0.1372908 0.01434988 0.1606827 +0.1606827 0.01434988 0.1606827 +0.1862481 0.01434988 0.1606827 +0.2140411 0.01434988 0.1606827 +0.2441142 0.01434988 0.1606827 +0.2765176 0.01434988 0.1606827 +0.3113005 0.01434988 0.1606827 +0.3485102 0.01434988 0.1606827 +0.388193 0.01434988 0.1606827 +0.4303934 0.01434988 0.1606827 +0.4751555 0.01434988 0.1606827 +0.5225216 0.01434988 0.1606827 +0.5725335 0.01434988 0.1606827 +0.6252316 0.01434988 0.1606827 +0.6806558 0.01434988 0.1606827 +0.7388448 0.01434988 0.1606827 +0.7998369 0.01434988 0.1606827 +0.8636691 0.01434988 0.1606827 +0.9303782 0.01434988 0.1606827 +1 0.01434988 0.1606827 +0 0.02107202 0.1606827 +0.002418731 0.02107202 0.1606827 +0.005155668 0.02107202 0.1606827 +0.009080105 0.02107202 0.1606827 +0.01434988 0.02107202 0.1606827 +0.02107202 0.02107202 0.1606827 +0.02934285 0.02107202 0.1606827 +0.03925039 0.02107202 0.1606827 +0.05087609 0.02107202 0.1606827 +0.06429595 0.02107202 0.1606827 +0.07958143 0.02107202 0.1606827 +0.0968001 0.02107202 0.1606827 +0.1160161 0.02107202 0.1606827 +0.1372908 0.02107202 0.1606827 +0.1606827 0.02107202 0.1606827 +0.1862481 0.02107202 0.1606827 +0.2140411 0.02107202 0.1606827 +0.2441142 0.02107202 0.1606827 +0.2765176 0.02107202 0.1606827 +0.3113005 0.02107202 0.1606827 +0.3485102 0.02107202 0.1606827 +0.388193 0.02107202 0.1606827 +0.4303934 0.02107202 0.1606827 +0.4751555 0.02107202 0.1606827 +0.5225216 0.02107202 0.1606827 +0.5725335 0.02107202 0.1606827 +0.6252316 0.02107202 0.1606827 +0.6806558 0.02107202 0.1606827 +0.7388448 0.02107202 0.1606827 +0.7998369 0.02107202 0.1606827 +0.8636691 0.02107202 0.1606827 +0.9303782 0.02107202 0.1606827 +1 0.02107202 0.1606827 +0 0.02934285 0.1606827 +0.002418731 0.02934285 0.1606827 +0.005155668 0.02934285 0.1606827 +0.009080105 0.02934285 0.1606827 +0.01434988 0.02934285 0.1606827 +0.02107202 0.02934285 0.1606827 +0.02934285 0.02934285 0.1606827 +0.03925039 0.02934285 0.1606827 +0.05087609 0.02934285 0.1606827 +0.06429595 0.02934285 0.1606827 +0.07958143 0.02934285 0.1606827 +0.0968001 0.02934285 0.1606827 +0.1160161 0.02934285 0.1606827 +0.1372908 0.02934285 0.1606827 +0.1606827 0.02934285 0.1606827 +0.1862481 0.02934285 0.1606827 +0.2140411 0.02934285 0.1606827 +0.2441142 0.02934285 0.1606827 +0.2765176 0.02934285 0.1606827 +0.3113005 0.02934285 0.1606827 +0.3485102 0.02934285 0.1606827 +0.388193 0.02934285 0.1606827 +0.4303934 0.02934285 0.1606827 +0.4751555 0.02934285 0.1606827 +0.5225216 0.02934285 0.1606827 +0.5725335 0.02934285 0.1606827 +0.6252316 0.02934285 0.1606827 +0.6806558 0.02934285 0.1606827 +0.7388448 0.02934285 0.1606827 +0.7998369 0.02934285 0.1606827 +0.8636691 0.02934285 0.1606827 +0.9303782 0.02934285 0.1606827 +1 0.02934285 0.1606827 +0 0.03925039 0.1606827 +0.002418731 0.03925039 0.1606827 +0.005155668 0.03925039 0.1606827 +0.009080105 0.03925039 0.1606827 +0.01434988 0.03925039 0.1606827 +0.02107202 0.03925039 0.1606827 +0.02934285 0.03925039 0.1606827 +0.03925039 0.03925039 0.1606827 +0.05087609 0.03925039 0.1606827 +0.06429595 0.03925039 0.1606827 +0.07958143 0.03925039 0.1606827 +0.0968001 0.03925039 0.1606827 +0.1160161 0.03925039 0.1606827 +0.1372908 0.03925039 0.1606827 +0.1606827 0.03925039 0.1606827 +0.1862481 0.03925039 0.1606827 +0.2140411 0.03925039 0.1606827 +0.2441142 0.03925039 0.1606827 +0.2765176 0.03925039 0.1606827 +0.3113005 0.03925039 0.1606827 +0.3485102 0.03925039 0.1606827 +0.388193 0.03925039 0.1606827 +0.4303934 0.03925039 0.1606827 +0.4751555 0.03925039 0.1606827 +0.5225216 0.03925039 0.1606827 +0.5725335 0.03925039 0.1606827 +0.6252316 0.03925039 0.1606827 +0.6806558 0.03925039 0.1606827 +0.7388448 0.03925039 0.1606827 +0.7998369 0.03925039 0.1606827 +0.8636691 0.03925039 0.1606827 +0.9303782 0.03925039 0.1606827 +1 0.03925039 0.1606827 +0 0.05087609 0.1606827 +0.002418731 0.05087609 0.1606827 +0.005155668 0.05087609 0.1606827 +0.009080105 0.05087609 0.1606827 +0.01434988 0.05087609 0.1606827 +0.02107202 0.05087609 0.1606827 +0.02934285 0.05087609 0.1606827 +0.03925039 0.05087609 0.1606827 +0.05087609 0.05087609 0.1606827 +0.06429595 0.05087609 0.1606827 +0.07958143 0.05087609 0.1606827 +0.0968001 0.05087609 0.1606827 +0.1160161 0.05087609 0.1606827 +0.1372908 0.05087609 0.1606827 +0.1606827 0.05087609 0.1606827 +0.1862481 0.05087609 0.1606827 +0.2140411 0.05087609 0.1606827 +0.2441142 0.05087609 0.1606827 +0.2765176 0.05087609 0.1606827 +0.3113005 0.05087609 0.1606827 +0.3485102 0.05087609 0.1606827 +0.388193 0.05087609 0.1606827 +0.4303934 0.05087609 0.1606827 +0.4751555 0.05087609 0.1606827 +0.5225216 0.05087609 0.1606827 +0.5725335 0.05087609 0.1606827 +0.6252316 0.05087609 0.1606827 +0.6806558 0.05087609 0.1606827 +0.7388448 0.05087609 0.1606827 +0.7998369 0.05087609 0.1606827 +0.8636691 0.05087609 0.1606827 +0.9303782 0.05087609 0.1606827 +1 0.05087609 0.1606827 +0 0.06429595 0.1606827 +0.002418731 0.06429595 0.1606827 +0.005155668 0.06429595 0.1606827 +0.009080105 0.06429595 0.1606827 +0.01434988 0.06429595 0.1606827 +0.02107202 0.06429595 0.1606827 +0.02934285 0.06429595 0.1606827 +0.03925039 0.06429595 0.1606827 +0.05087609 0.06429595 0.1606827 +0.06429595 0.06429595 0.1606827 +0.07958143 0.06429595 0.1606827 +0.0968001 0.06429595 0.1606827 +0.1160161 0.06429595 0.1606827 +0.1372908 0.06429595 0.1606827 +0.1606827 0.06429595 0.1606827 +0.1862481 0.06429595 0.1606827 +0.2140411 0.06429595 0.1606827 +0.2441142 0.06429595 0.1606827 +0.2765176 0.06429595 0.1606827 +0.3113005 0.06429595 0.1606827 +0.3485102 0.06429595 0.1606827 +0.388193 0.06429595 0.1606827 +0.4303934 0.06429595 0.1606827 +0.4751555 0.06429595 0.1606827 +0.5225216 0.06429595 0.1606827 +0.5725335 0.06429595 0.1606827 +0.6252316 0.06429595 0.1606827 +0.6806558 0.06429595 0.1606827 +0.7388448 0.06429595 0.1606827 +0.7998369 0.06429595 0.1606827 +0.8636691 0.06429595 0.1606827 +0.9303782 0.06429595 0.1606827 +1 0.06429595 0.1606827 +0 0.07958143 0.1606827 +0.002418731 0.07958143 0.1606827 +0.005155668 0.07958143 0.1606827 +0.009080105 0.07958143 0.1606827 +0.01434988 0.07958143 0.1606827 +0.02107202 0.07958143 0.1606827 +0.02934285 0.07958143 0.1606827 +0.03925039 0.07958143 0.1606827 +0.05087609 0.07958143 0.1606827 +0.06429595 0.07958143 0.1606827 +0.07958143 0.07958143 0.1606827 +0.0968001 0.07958143 0.1606827 +0.1160161 0.07958143 0.1606827 +0.1372908 0.07958143 0.1606827 +0.1606827 0.07958143 0.1606827 +0.1862481 0.07958143 0.1606827 +0.2140411 0.07958143 0.1606827 +0.2441142 0.07958143 0.1606827 +0.2765176 0.07958143 0.1606827 +0.3113005 0.07958143 0.1606827 +0.3485102 0.07958143 0.1606827 +0.388193 0.07958143 0.1606827 +0.4303934 0.07958143 0.1606827 +0.4751555 0.07958143 0.1606827 +0.5225216 0.07958143 0.1606827 +0.5725335 0.07958143 0.1606827 +0.6252316 0.07958143 0.1606827 +0.6806558 0.07958143 0.1606827 +0.7388448 0.07958143 0.1606827 +0.7998369 0.07958143 0.1606827 +0.8636691 0.07958143 0.1606827 +0.9303782 0.07958143 0.1606827 +1 0.07958143 0.1606827 +0 0.0968001 0.1606827 +0.002418731 0.0968001 0.1606827 +0.005155668 0.0968001 0.1606827 +0.009080105 0.0968001 0.1606827 +0.01434988 0.0968001 0.1606827 +0.02107202 0.0968001 0.1606827 +0.02934285 0.0968001 0.1606827 +0.03925039 0.0968001 0.1606827 +0.05087609 0.0968001 0.1606827 +0.06429595 0.0968001 0.1606827 +0.07958143 0.0968001 0.1606827 +0.0968001 0.0968001 0.1606827 +0.1160161 0.0968001 0.1606827 +0.1372908 0.0968001 0.1606827 +0.1606827 0.0968001 0.1606827 +0.1862481 0.0968001 0.1606827 +0.2140411 0.0968001 0.1606827 +0.2441142 0.0968001 0.1606827 +0.2765176 0.0968001 0.1606827 +0.3113005 0.0968001 0.1606827 +0.3485102 0.0968001 0.1606827 +0.388193 0.0968001 0.1606827 +0.4303934 0.0968001 0.1606827 +0.4751555 0.0968001 0.1606827 +0.5225216 0.0968001 0.1606827 +0.5725335 0.0968001 0.1606827 +0.6252316 0.0968001 0.1606827 +0.6806558 0.0968001 0.1606827 +0.7388448 0.0968001 0.1606827 +0.7998369 0.0968001 0.1606827 +0.8636691 0.0968001 0.1606827 +0.9303782 0.0968001 0.1606827 +1 0.0968001 0.1606827 +0 0.1160161 0.1606827 +0.002418731 0.1160161 0.1606827 +0.005155668 0.1160161 0.1606827 +0.009080105 0.1160161 0.1606827 +0.01434988 0.1160161 0.1606827 +0.02107202 0.1160161 0.1606827 +0.02934285 0.1160161 0.1606827 +0.03925039 0.1160161 0.1606827 +0.05087609 0.1160161 0.1606827 +0.06429595 0.1160161 0.1606827 +0.07958143 0.1160161 0.1606827 +0.0968001 0.1160161 0.1606827 +0.1160161 0.1160161 0.1606827 +0.1372908 0.1160161 0.1606827 +0.1606827 0.1160161 0.1606827 +0.1862481 0.1160161 0.1606827 +0.2140411 0.1160161 0.1606827 +0.2441142 0.1160161 0.1606827 +0.2765176 0.1160161 0.1606827 +0.3113005 0.1160161 0.1606827 +0.3485102 0.1160161 0.1606827 +0.388193 0.1160161 0.1606827 +0.4303934 0.1160161 0.1606827 +0.4751555 0.1160161 0.1606827 +0.5225216 0.1160161 0.1606827 +0.5725335 0.1160161 0.1606827 +0.6252316 0.1160161 0.1606827 +0.6806558 0.1160161 0.1606827 +0.7388448 0.1160161 0.1606827 +0.7998369 0.1160161 0.1606827 +0.8636691 0.1160161 0.1606827 +0.9303782 0.1160161 0.1606827 +1 0.1160161 0.1606827 +0 0.1372908 0.1606827 +0.002418731 0.1372908 0.1606827 +0.005155668 0.1372908 0.1606827 +0.009080105 0.1372908 0.1606827 +0.01434988 0.1372908 0.1606827 +0.02107202 0.1372908 0.1606827 +0.02934285 0.1372908 0.1606827 +0.03925039 0.1372908 0.1606827 +0.05087609 0.1372908 0.1606827 +0.06429595 0.1372908 0.1606827 +0.07958143 0.1372908 0.1606827 +0.0968001 0.1372908 0.1606827 +0.1160161 0.1372908 0.1606827 +0.1372908 0.1372908 0.1606827 +0.1606827 0.1372908 0.1606827 +0.1862481 0.1372908 0.1606827 +0.2140411 0.1372908 0.1606827 +0.2441142 0.1372908 0.1606827 +0.2765176 0.1372908 0.1606827 +0.3113005 0.1372908 0.1606827 +0.3485102 0.1372908 0.1606827 +0.388193 0.1372908 0.1606827 +0.4303934 0.1372908 0.1606827 +0.4751555 0.1372908 0.1606827 +0.5225216 0.1372908 0.1606827 +0.5725335 0.1372908 0.1606827 +0.6252316 0.1372908 0.1606827 +0.6806558 0.1372908 0.1606827 +0.7388448 0.1372908 0.1606827 +0.7998369 0.1372908 0.1606827 +0.8636691 0.1372908 0.1606827 +0.9303782 0.1372908 0.1606827 +1 0.1372908 0.1606827 +0 0.1606827 0.1606827 +0.002418731 0.1606827 0.1606827 +0.005155668 0.1606827 0.1606827 +0.009080105 0.1606827 0.1606827 +0.01434988 0.1606827 0.1606827 +0.02107202 0.1606827 0.1606827 +0.02934285 0.1606827 0.1606827 +0.03925039 0.1606827 0.1606827 +0.05087609 0.1606827 0.1606827 +0.06429595 0.1606827 0.1606827 +0.07958143 0.1606827 0.1606827 +0.0968001 0.1606827 0.1606827 +0.1160161 0.1606827 0.1606827 +0.1372908 0.1606827 0.1606827 +0.1606827 0.1606827 0.1606827 +0.1862481 0.1606827 0.1606827 +0.2140411 0.1606827 0.1606827 +0.2441142 0.1606827 0.1606827 +0.2765176 0.1606827 0.1606827 +0.3113005 0.1606827 0.1606827 +0.3485102 0.1606827 0.1606827 +0.388193 0.1606827 0.1606827 +0.4303934 0.1606827 0.1606827 +0.4751555 0.1606827 0.1606827 +0.5225216 0.1606827 0.1606827 +0.5725335 0.1606827 0.1606827 +0.6252316 0.1606827 0.1606827 +0.6806558 0.1606827 0.1606827 +0.7388448 0.1606827 0.1606827 +0.7998369 0.1606827 0.1606827 +0.8636691 0.1606827 0.1606827 +0.9303782 0.1606827 0.1606827 +1 0.1606827 0.1606827 +0 0.1862481 0.1606827 +0.002418731 0.1862481 0.1606827 +0.005155668 0.1862481 0.1606827 +0.009080105 0.1862481 0.1606827 +0.01434988 0.1862481 0.1606827 +0.02107202 0.1862481 0.1606827 +0.02934285 0.1862481 0.1606827 +0.03925039 0.1862481 0.1606827 +0.05087609 0.1862481 0.1606827 +0.06429595 0.1862481 0.1606827 +0.07958143 0.1862481 0.1606827 +0.0968001 0.1862481 0.1606827 +0.1160161 0.1862481 0.1606827 +0.1372908 0.1862481 0.1606827 +0.1606827 0.1862481 0.1606827 +0.1862481 0.1862481 0.1606827 +0.2140411 0.1862481 0.1606827 +0.2441142 0.1862481 0.1606827 +0.2765176 0.1862481 0.1606827 +0.3113005 0.1862481 0.1606827 +0.3485102 0.1862481 0.1606827 +0.388193 0.1862481 0.1606827 +0.4303934 0.1862481 0.1606827 +0.4751555 0.1862481 0.1606827 +0.5225216 0.1862481 0.1606827 +0.5725335 0.1862481 0.1606827 +0.6252316 0.1862481 0.1606827 +0.6806558 0.1862481 0.1606827 +0.7388448 0.1862481 0.1606827 +0.7998369 0.1862481 0.1606827 +0.8636691 0.1862481 0.1606827 +0.9303782 0.1862481 0.1606827 +1 0.1862481 0.1606827 +0 0.2140411 0.1606827 +0.002418731 0.2140411 0.1606827 +0.005155668 0.2140411 0.1606827 +0.009080105 0.2140411 0.1606827 +0.01434988 0.2140411 0.1606827 +0.02107202 0.2140411 0.1606827 +0.02934285 0.2140411 0.1606827 +0.03925039 0.2140411 0.1606827 +0.05087609 0.2140411 0.1606827 +0.06429595 0.2140411 0.1606827 +0.07958143 0.2140411 0.1606827 +0.0968001 0.2140411 0.1606827 +0.1160161 0.2140411 0.1606827 +0.1372908 0.2140411 0.1606827 +0.1606827 0.2140411 0.1606827 +0.1862481 0.2140411 0.1606827 +0.2140411 0.2140411 0.1606827 +0.2441142 0.2140411 0.1606827 +0.2765176 0.2140411 0.1606827 +0.3113005 0.2140411 0.1606827 +0.3485102 0.2140411 0.1606827 +0.388193 0.2140411 0.1606827 +0.4303934 0.2140411 0.1606827 +0.4751555 0.2140411 0.1606827 +0.5225216 0.2140411 0.1606827 +0.5725335 0.2140411 0.1606827 +0.6252316 0.2140411 0.1606827 +0.6806558 0.2140411 0.1606827 +0.7388448 0.2140411 0.1606827 +0.7998369 0.2140411 0.1606827 +0.8636691 0.2140411 0.1606827 +0.9303782 0.2140411 0.1606827 +1 0.2140411 0.1606827 +0 0.2441142 0.1606827 +0.002418731 0.2441142 0.1606827 +0.005155668 0.2441142 0.1606827 +0.009080105 0.2441142 0.1606827 +0.01434988 0.2441142 0.1606827 +0.02107202 0.2441142 0.1606827 +0.02934285 0.2441142 0.1606827 +0.03925039 0.2441142 0.1606827 +0.05087609 0.2441142 0.1606827 +0.06429595 0.2441142 0.1606827 +0.07958143 0.2441142 0.1606827 +0.0968001 0.2441142 0.1606827 +0.1160161 0.2441142 0.1606827 +0.1372908 0.2441142 0.1606827 +0.1606827 0.2441142 0.1606827 +0.1862481 0.2441142 0.1606827 +0.2140411 0.2441142 0.1606827 +0.2441142 0.2441142 0.1606827 +0.2765176 0.2441142 0.1606827 +0.3113005 0.2441142 0.1606827 +0.3485102 0.2441142 0.1606827 +0.388193 0.2441142 0.1606827 +0.4303934 0.2441142 0.1606827 +0.4751555 0.2441142 0.1606827 +0.5225216 0.2441142 0.1606827 +0.5725335 0.2441142 0.1606827 +0.6252316 0.2441142 0.1606827 +0.6806558 0.2441142 0.1606827 +0.7388448 0.2441142 0.1606827 +0.7998369 0.2441142 0.1606827 +0.8636691 0.2441142 0.1606827 +0.9303782 0.2441142 0.1606827 +1 0.2441142 0.1606827 +0 0.2765176 0.1606827 +0.002418731 0.2765176 0.1606827 +0.005155668 0.2765176 0.1606827 +0.009080105 0.2765176 0.1606827 +0.01434988 0.2765176 0.1606827 +0.02107202 0.2765176 0.1606827 +0.02934285 0.2765176 0.1606827 +0.03925039 0.2765176 0.1606827 +0.05087609 0.2765176 0.1606827 +0.06429595 0.2765176 0.1606827 +0.07958143 0.2765176 0.1606827 +0.0968001 0.2765176 0.1606827 +0.1160161 0.2765176 0.1606827 +0.1372908 0.2765176 0.1606827 +0.1606827 0.2765176 0.1606827 +0.1862481 0.2765176 0.1606827 +0.2140411 0.2765176 0.1606827 +0.2441142 0.2765176 0.1606827 +0.2765176 0.2765176 0.1606827 +0.3113005 0.2765176 0.1606827 +0.3485102 0.2765176 0.1606827 +0.388193 0.2765176 0.1606827 +0.4303934 0.2765176 0.1606827 +0.4751555 0.2765176 0.1606827 +0.5225216 0.2765176 0.1606827 +0.5725335 0.2765176 0.1606827 +0.6252316 0.2765176 0.1606827 +0.6806558 0.2765176 0.1606827 +0.7388448 0.2765176 0.1606827 +0.7998369 0.2765176 0.1606827 +0.8636691 0.2765176 0.1606827 +0.9303782 0.2765176 0.1606827 +1 0.2765176 0.1606827 +0 0.3113005 0.1606827 +0.002418731 0.3113005 0.1606827 +0.005155668 0.3113005 0.1606827 +0.009080105 0.3113005 0.1606827 +0.01434988 0.3113005 0.1606827 +0.02107202 0.3113005 0.1606827 +0.02934285 0.3113005 0.1606827 +0.03925039 0.3113005 0.1606827 +0.05087609 0.3113005 0.1606827 +0.06429595 0.3113005 0.1606827 +0.07958143 0.3113005 0.1606827 +0.0968001 0.3113005 0.1606827 +0.1160161 0.3113005 0.1606827 +0.1372908 0.3113005 0.1606827 +0.1606827 0.3113005 0.1606827 +0.1862481 0.3113005 0.1606827 +0.2140411 0.3113005 0.1606827 +0.2441142 0.3113005 0.1606827 +0.2765176 0.3113005 0.1606827 +0.3113005 0.3113005 0.1606827 +0.3485102 0.3113005 0.1606827 +0.388193 0.3113005 0.1606827 +0.4303934 0.3113005 0.1606827 +0.4751555 0.3113005 0.1606827 +0.5225216 0.3113005 0.1606827 +0.5725335 0.3113005 0.1606827 +0.6252316 0.3113005 0.1606827 +0.6806558 0.3113005 0.1606827 +0.7388448 0.3113005 0.1606827 +0.7998369 0.3113005 0.1606827 +0.8636691 0.3113005 0.1606827 +0.9303782 0.3113005 0.1606827 +1 0.3113005 0.1606827 +0 0.3485102 0.1606827 +0.002418731 0.3485102 0.1606827 +0.005155668 0.3485102 0.1606827 +0.009080105 0.3485102 0.1606827 +0.01434988 0.3485102 0.1606827 +0.02107202 0.3485102 0.1606827 +0.02934285 0.3485102 0.1606827 +0.03925039 0.3485102 0.1606827 +0.05087609 0.3485102 0.1606827 +0.06429595 0.3485102 0.1606827 +0.07958143 0.3485102 0.1606827 +0.0968001 0.3485102 0.1606827 +0.1160161 0.3485102 0.1606827 +0.1372908 0.3485102 0.1606827 +0.1606827 0.3485102 0.1606827 +0.1862481 0.3485102 0.1606827 +0.2140411 0.3485102 0.1606827 +0.2441142 0.3485102 0.1606827 +0.2765176 0.3485102 0.1606827 +0.3113005 0.3485102 0.1606827 +0.3485102 0.3485102 0.1606827 +0.388193 0.3485102 0.1606827 +0.4303934 0.3485102 0.1606827 +0.4751555 0.3485102 0.1606827 +0.5225216 0.3485102 0.1606827 +0.5725335 0.3485102 0.1606827 +0.6252316 0.3485102 0.1606827 +0.6806558 0.3485102 0.1606827 +0.7388448 0.3485102 0.1606827 +0.7998369 0.3485102 0.1606827 +0.8636691 0.3485102 0.1606827 +0.9303782 0.3485102 0.1606827 +1 0.3485102 0.1606827 +0 0.388193 0.1606827 +0.002418731 0.388193 0.1606827 +0.005155668 0.388193 0.1606827 +0.009080105 0.388193 0.1606827 +0.01434988 0.388193 0.1606827 +0.02107202 0.388193 0.1606827 +0.02934285 0.388193 0.1606827 +0.03925039 0.388193 0.1606827 +0.05087609 0.388193 0.1606827 +0.06429595 0.388193 0.1606827 +0.07958143 0.388193 0.1606827 +0.0968001 0.388193 0.1606827 +0.1160161 0.388193 0.1606827 +0.1372908 0.388193 0.1606827 +0.1606827 0.388193 0.1606827 +0.1862481 0.388193 0.1606827 +0.2140411 0.388193 0.1606827 +0.2441142 0.388193 0.1606827 +0.2765176 0.388193 0.1606827 +0.3113005 0.388193 0.1606827 +0.3485102 0.388193 0.1606827 +0.388193 0.388193 0.1606827 +0.4303934 0.388193 0.1606827 +0.4751555 0.388193 0.1606827 +0.5225216 0.388193 0.1606827 +0.5725335 0.388193 0.1606827 +0.6252316 0.388193 0.1606827 +0.6806558 0.388193 0.1606827 +0.7388448 0.388193 0.1606827 +0.7998369 0.388193 0.1606827 +0.8636691 0.388193 0.1606827 +0.9303782 0.388193 0.1606827 +1 0.388193 0.1606827 +0 0.4303934 0.1606827 +0.002418731 0.4303934 0.1606827 +0.005155668 0.4303934 0.1606827 +0.009080105 0.4303934 0.1606827 +0.01434988 0.4303934 0.1606827 +0.02107202 0.4303934 0.1606827 +0.02934285 0.4303934 0.1606827 +0.03925039 0.4303934 0.1606827 +0.05087609 0.4303934 0.1606827 +0.06429595 0.4303934 0.1606827 +0.07958143 0.4303934 0.1606827 +0.0968001 0.4303934 0.1606827 +0.1160161 0.4303934 0.1606827 +0.1372908 0.4303934 0.1606827 +0.1606827 0.4303934 0.1606827 +0.1862481 0.4303934 0.1606827 +0.2140411 0.4303934 0.1606827 +0.2441142 0.4303934 0.1606827 +0.2765176 0.4303934 0.1606827 +0.3113005 0.4303934 0.1606827 +0.3485102 0.4303934 0.1606827 +0.388193 0.4303934 0.1606827 +0.4303934 0.4303934 0.1606827 +0.4751555 0.4303934 0.1606827 +0.5225216 0.4303934 0.1606827 +0.5725335 0.4303934 0.1606827 +0.6252316 0.4303934 0.1606827 +0.6806558 0.4303934 0.1606827 +0.7388448 0.4303934 0.1606827 +0.7998369 0.4303934 0.1606827 +0.8636691 0.4303934 0.1606827 +0.9303782 0.4303934 0.1606827 +1 0.4303934 0.1606827 +0 0.4751555 0.1606827 +0.002418731 0.4751555 0.1606827 +0.005155668 0.4751555 0.1606827 +0.009080105 0.4751555 0.1606827 +0.01434988 0.4751555 0.1606827 +0.02107202 0.4751555 0.1606827 +0.02934285 0.4751555 0.1606827 +0.03925039 0.4751555 0.1606827 +0.05087609 0.4751555 0.1606827 +0.06429595 0.4751555 0.1606827 +0.07958143 0.4751555 0.1606827 +0.0968001 0.4751555 0.1606827 +0.1160161 0.4751555 0.1606827 +0.1372908 0.4751555 0.1606827 +0.1606827 0.4751555 0.1606827 +0.1862481 0.4751555 0.1606827 +0.2140411 0.4751555 0.1606827 +0.2441142 0.4751555 0.1606827 +0.2765176 0.4751555 0.1606827 +0.3113005 0.4751555 0.1606827 +0.3485102 0.4751555 0.1606827 +0.388193 0.4751555 0.1606827 +0.4303934 0.4751555 0.1606827 +0.4751555 0.4751555 0.1606827 +0.5225216 0.4751555 0.1606827 +0.5725335 0.4751555 0.1606827 +0.6252316 0.4751555 0.1606827 +0.6806558 0.4751555 0.1606827 +0.7388448 0.4751555 0.1606827 +0.7998369 0.4751555 0.1606827 +0.8636691 0.4751555 0.1606827 +0.9303782 0.4751555 0.1606827 +1 0.4751555 0.1606827 +0 0.5225216 0.1606827 +0.002418731 0.5225216 0.1606827 +0.005155668 0.5225216 0.1606827 +0.009080105 0.5225216 0.1606827 +0.01434988 0.5225216 0.1606827 +0.02107202 0.5225216 0.1606827 +0.02934285 0.5225216 0.1606827 +0.03925039 0.5225216 0.1606827 +0.05087609 0.5225216 0.1606827 +0.06429595 0.5225216 0.1606827 +0.07958143 0.5225216 0.1606827 +0.0968001 0.5225216 0.1606827 +0.1160161 0.5225216 0.1606827 +0.1372908 0.5225216 0.1606827 +0.1606827 0.5225216 0.1606827 +0.1862481 0.5225216 0.1606827 +0.2140411 0.5225216 0.1606827 +0.2441142 0.5225216 0.1606827 +0.2765176 0.5225216 0.1606827 +0.3113005 0.5225216 0.1606827 +0.3485102 0.5225216 0.1606827 +0.388193 0.5225216 0.1606827 +0.4303934 0.5225216 0.1606827 +0.4751555 0.5225216 0.1606827 +0.5225216 0.5225216 0.1606827 +0.5725335 0.5225216 0.1606827 +0.6252316 0.5225216 0.1606827 +0.6806558 0.5225216 0.1606827 +0.7388448 0.5225216 0.1606827 +0.7998369 0.5225216 0.1606827 +0.8636691 0.5225216 0.1606827 +0.9303782 0.5225216 0.1606827 +1 0.5225216 0.1606827 +0 0.5725335 0.1606827 +0.002418731 0.5725335 0.1606827 +0.005155668 0.5725335 0.1606827 +0.009080105 0.5725335 0.1606827 +0.01434988 0.5725335 0.1606827 +0.02107202 0.5725335 0.1606827 +0.02934285 0.5725335 0.1606827 +0.03925039 0.5725335 0.1606827 +0.05087609 0.5725335 0.1606827 +0.06429595 0.5725335 0.1606827 +0.07958143 0.5725335 0.1606827 +0.0968001 0.5725335 0.1606827 +0.1160161 0.5725335 0.1606827 +0.1372908 0.5725335 0.1606827 +0.1606827 0.5725335 0.1606827 +0.1862481 0.5725335 0.1606827 +0.2140411 0.5725335 0.1606827 +0.2441142 0.5725335 0.1606827 +0.2765176 0.5725335 0.1606827 +0.3113005 0.5725335 0.1606827 +0.3485102 0.5725335 0.1606827 +0.388193 0.5725335 0.1606827 +0.4303934 0.5725335 0.1606827 +0.4751555 0.5725335 0.1606827 +0.5225216 0.5725335 0.1606827 +0.5725335 0.5725335 0.1606827 +0.6252316 0.5725335 0.1606827 +0.6806558 0.5725335 0.1606827 +0.7388448 0.5725335 0.1606827 +0.7998369 0.5725335 0.1606827 +0.8636691 0.5725335 0.1606827 +0.9303782 0.5725335 0.1606827 +1 0.5725335 0.1606827 +0 0.6252316 0.1606827 +0.002418731 0.6252316 0.1606827 +0.005155668 0.6252316 0.1606827 +0.009080105 0.6252316 0.1606827 +0.01434988 0.6252316 0.1606827 +0.02107202 0.6252316 0.1606827 +0.02934285 0.6252316 0.1606827 +0.03925039 0.6252316 0.1606827 +0.05087609 0.6252316 0.1606827 +0.06429595 0.6252316 0.1606827 +0.07958143 0.6252316 0.1606827 +0.0968001 0.6252316 0.1606827 +0.1160161 0.6252316 0.1606827 +0.1372908 0.6252316 0.1606827 +0.1606827 0.6252316 0.1606827 +0.1862481 0.6252316 0.1606827 +0.2140411 0.6252316 0.1606827 +0.2441142 0.6252316 0.1606827 +0.2765176 0.6252316 0.1606827 +0.3113005 0.6252316 0.1606827 +0.3485102 0.6252316 0.1606827 +0.388193 0.6252316 0.1606827 +0.4303934 0.6252316 0.1606827 +0.4751555 0.6252316 0.1606827 +0.5225216 0.6252316 0.1606827 +0.5725335 0.6252316 0.1606827 +0.6252316 0.6252316 0.1606827 +0.6806558 0.6252316 0.1606827 +0.7388448 0.6252316 0.1606827 +0.7998369 0.6252316 0.1606827 +0.8636691 0.6252316 0.1606827 +0.9303782 0.6252316 0.1606827 +1 0.6252316 0.1606827 +0 0.6806558 0.1606827 +0.002418731 0.6806558 0.1606827 +0.005155668 0.6806558 0.1606827 +0.009080105 0.6806558 0.1606827 +0.01434988 0.6806558 0.1606827 +0.02107202 0.6806558 0.1606827 +0.02934285 0.6806558 0.1606827 +0.03925039 0.6806558 0.1606827 +0.05087609 0.6806558 0.1606827 +0.06429595 0.6806558 0.1606827 +0.07958143 0.6806558 0.1606827 +0.0968001 0.6806558 0.1606827 +0.1160161 0.6806558 0.1606827 +0.1372908 0.6806558 0.1606827 +0.1606827 0.6806558 0.1606827 +0.1862481 0.6806558 0.1606827 +0.2140411 0.6806558 0.1606827 +0.2441142 0.6806558 0.1606827 +0.2765176 0.6806558 0.1606827 +0.3113005 0.6806558 0.1606827 +0.3485102 0.6806558 0.1606827 +0.388193 0.6806558 0.1606827 +0.4303934 0.6806558 0.1606827 +0.4751555 0.6806558 0.1606827 +0.5225216 0.6806558 0.1606827 +0.5725335 0.6806558 0.1606827 +0.6252316 0.6806558 0.1606827 +0.6806558 0.6806558 0.1606827 +0.7388448 0.6806558 0.1606827 +0.7998369 0.6806558 0.1606827 +0.8636691 0.6806558 0.1606827 +0.9303782 0.6806558 0.1606827 +1 0.6806558 0.1606827 +0 0.7388448 0.1606827 +0.002418731 0.7388448 0.1606827 +0.005155668 0.7388448 0.1606827 +0.009080105 0.7388448 0.1606827 +0.01434988 0.7388448 0.1606827 +0.02107202 0.7388448 0.1606827 +0.02934285 0.7388448 0.1606827 +0.03925039 0.7388448 0.1606827 +0.05087609 0.7388448 0.1606827 +0.06429595 0.7388448 0.1606827 +0.07958143 0.7388448 0.1606827 +0.0968001 0.7388448 0.1606827 +0.1160161 0.7388448 0.1606827 +0.1372908 0.7388448 0.1606827 +0.1606827 0.7388448 0.1606827 +0.1862481 0.7388448 0.1606827 +0.2140411 0.7388448 0.1606827 +0.2441142 0.7388448 0.1606827 +0.2765176 0.7388448 0.1606827 +0.3113005 0.7388448 0.1606827 +0.3485102 0.7388448 0.1606827 +0.388193 0.7388448 0.1606827 +0.4303934 0.7388448 0.1606827 +0.4751555 0.7388448 0.1606827 +0.5225216 0.7388448 0.1606827 +0.5725335 0.7388448 0.1606827 +0.6252316 0.7388448 0.1606827 +0.6806558 0.7388448 0.1606827 +0.7388448 0.7388448 0.1606827 +0.7998369 0.7388448 0.1606827 +0.8636691 0.7388448 0.1606827 +0.9303782 0.7388448 0.1606827 +1 0.7388448 0.1606827 +0 0.7998369 0.1606827 +0.002418731 0.7998369 0.1606827 +0.005155668 0.7998369 0.1606827 +0.009080105 0.7998369 0.1606827 +0.01434988 0.7998369 0.1606827 +0.02107202 0.7998369 0.1606827 +0.02934285 0.7998369 0.1606827 +0.03925039 0.7998369 0.1606827 +0.05087609 0.7998369 0.1606827 +0.06429595 0.7998369 0.1606827 +0.07958143 0.7998369 0.1606827 +0.0968001 0.7998369 0.1606827 +0.1160161 0.7998369 0.1606827 +0.1372908 0.7998369 0.1606827 +0.1606827 0.7998369 0.1606827 +0.1862481 0.7998369 0.1606827 +0.2140411 0.7998369 0.1606827 +0.2441142 0.7998369 0.1606827 +0.2765176 0.7998369 0.1606827 +0.3113005 0.7998369 0.1606827 +0.3485102 0.7998369 0.1606827 +0.388193 0.7998369 0.1606827 +0.4303934 0.7998369 0.1606827 +0.4751555 0.7998369 0.1606827 +0.5225216 0.7998369 0.1606827 +0.5725335 0.7998369 0.1606827 +0.6252316 0.7998369 0.1606827 +0.6806558 0.7998369 0.1606827 +0.7388448 0.7998369 0.1606827 +0.7998369 0.7998369 0.1606827 +0.8636691 0.7998369 0.1606827 +0.9303782 0.7998369 0.1606827 +1 0.7998369 0.1606827 +0 0.8636691 0.1606827 +0.002418731 0.8636691 0.1606827 +0.005155668 0.8636691 0.1606827 +0.009080105 0.8636691 0.1606827 +0.01434988 0.8636691 0.1606827 +0.02107202 0.8636691 0.1606827 +0.02934285 0.8636691 0.1606827 +0.03925039 0.8636691 0.1606827 +0.05087609 0.8636691 0.1606827 +0.06429595 0.8636691 0.1606827 +0.07958143 0.8636691 0.1606827 +0.0968001 0.8636691 0.1606827 +0.1160161 0.8636691 0.1606827 +0.1372908 0.8636691 0.1606827 +0.1606827 0.8636691 0.1606827 +0.1862481 0.8636691 0.1606827 +0.2140411 0.8636691 0.1606827 +0.2441142 0.8636691 0.1606827 +0.2765176 0.8636691 0.1606827 +0.3113005 0.8636691 0.1606827 +0.3485102 0.8636691 0.1606827 +0.388193 0.8636691 0.1606827 +0.4303934 0.8636691 0.1606827 +0.4751555 0.8636691 0.1606827 +0.5225216 0.8636691 0.1606827 +0.5725335 0.8636691 0.1606827 +0.6252316 0.8636691 0.1606827 +0.6806558 0.8636691 0.1606827 +0.7388448 0.8636691 0.1606827 +0.7998369 0.8636691 0.1606827 +0.8636691 0.8636691 0.1606827 +0.9303782 0.8636691 0.1606827 +1 0.8636691 0.1606827 +0 0.9303782 0.1606827 +0.002418731 0.9303782 0.1606827 +0.005155668 0.9303782 0.1606827 +0.009080105 0.9303782 0.1606827 +0.01434988 0.9303782 0.1606827 +0.02107202 0.9303782 0.1606827 +0.02934285 0.9303782 0.1606827 +0.03925039 0.9303782 0.1606827 +0.05087609 0.9303782 0.1606827 +0.06429595 0.9303782 0.1606827 +0.07958143 0.9303782 0.1606827 +0.0968001 0.9303782 0.1606827 +0.1160161 0.9303782 0.1606827 +0.1372908 0.9303782 0.1606827 +0.1606827 0.9303782 0.1606827 +0.1862481 0.9303782 0.1606827 +0.2140411 0.9303782 0.1606827 +0.2441142 0.9303782 0.1606827 +0.2765176 0.9303782 0.1606827 +0.3113005 0.9303782 0.1606827 +0.3485102 0.9303782 0.1606827 +0.388193 0.9303782 0.1606827 +0.4303934 0.9303782 0.1606827 +0.4751555 0.9303782 0.1606827 +0.5225216 0.9303782 0.1606827 +0.5725335 0.9303782 0.1606827 +0.6252316 0.9303782 0.1606827 +0.6806558 0.9303782 0.1606827 +0.7388448 0.9303782 0.1606827 +0.7998369 0.9303782 0.1606827 +0.8636691 0.9303782 0.1606827 +0.9303782 0.9303782 0.1606827 +1 0.9303782 0.1606827 +0 1 0.1606827 +0.002418731 1 0.1606827 +0.005155668 1 0.1606827 +0.009080105 1 0.1606827 +0.01434988 1 0.1606827 +0.02107202 1 0.1606827 +0.02934285 1 0.1606827 +0.03925039 1 0.1606827 +0.05087609 1 0.1606827 +0.06429595 1 0.1606827 +0.07958143 1 0.1606827 +0.0968001 1 0.1606827 +0.1160161 1 0.1606827 +0.1372908 1 0.1606827 +0.1606827 1 0.1606827 +0.1862481 1 0.1606827 +0.2140411 1 0.1606827 +0.2441142 1 0.1606827 +0.2765176 1 0.1606827 +0.3113005 1 0.1606827 +0.3485102 1 0.1606827 +0.388193 1 0.1606827 +0.4303934 1 0.1606827 +0.4751555 1 0.1606827 +0.5225216 1 0.1606827 +0.5725335 1 0.1606827 +0.6252316 1 0.1606827 +0.6806558 1 0.1606827 +0.7388448 1 0.1606827 +0.7998369 1 0.1606827 +0.8636691 1 0.1606827 +0.9303782 1 0.1606827 +1 1 0.1606827 +0 0 0.1862481 +0.002418731 0 0.1862481 +0.005155668 0 0.1862481 +0.009080105 0 0.1862481 +0.01434988 0 0.1862481 +0.02107202 0 0.1862481 +0.02934285 0 0.1862481 +0.03925039 0 0.1862481 +0.05087609 0 0.1862481 +0.06429595 0 0.1862481 +0.07958143 0 0.1862481 +0.0968001 0 0.1862481 +0.1160161 0 0.1862481 +0.1372908 0 0.1862481 +0.1606827 0 0.1862481 +0.1862481 0 0.1862481 +0.2140411 0 0.1862481 +0.2441142 0 0.1862481 +0.2765176 0 0.1862481 +0.3113005 0 0.1862481 +0.3485102 0 0.1862481 +0.388193 0 0.1862481 +0.4303934 0 0.1862481 +0.4751555 0 0.1862481 +0.5225216 0 0.1862481 +0.5725335 0 0.1862481 +0.6252316 0 0.1862481 +0.6806558 0 0.1862481 +0.7388448 0 0.1862481 +0.7998369 0 0.1862481 +0.8636691 0 0.1862481 +0.9303782 0 0.1862481 +1 0 0.1862481 +0 0.002418731 0.1862481 +0.002418731 0.002418731 0.1862481 +0.005155668 0.002418731 0.1862481 +0.009080105 0.002418731 0.1862481 +0.01434988 0.002418731 0.1862481 +0.02107202 0.002418731 0.1862481 +0.02934285 0.002418731 0.1862481 +0.03925039 0.002418731 0.1862481 +0.05087609 0.002418731 0.1862481 +0.06429595 0.002418731 0.1862481 +0.07958143 0.002418731 0.1862481 +0.0968001 0.002418731 0.1862481 +0.1160161 0.002418731 0.1862481 +0.1372908 0.002418731 0.1862481 +0.1606827 0.002418731 0.1862481 +0.1862481 0.002418731 0.1862481 +0.2140411 0.002418731 0.1862481 +0.2441142 0.002418731 0.1862481 +0.2765176 0.002418731 0.1862481 +0.3113005 0.002418731 0.1862481 +0.3485102 0.002418731 0.1862481 +0.388193 0.002418731 0.1862481 +0.4303934 0.002418731 0.1862481 +0.4751555 0.002418731 0.1862481 +0.5225216 0.002418731 0.1862481 +0.5725335 0.002418731 0.1862481 +0.6252316 0.002418731 0.1862481 +0.6806558 0.002418731 0.1862481 +0.7388448 0.002418731 0.1862481 +0.7998369 0.002418731 0.1862481 +0.8636691 0.002418731 0.1862481 +0.9303782 0.002418731 0.1862481 +1 0.002418731 0.1862481 +0 0.005155668 0.1862481 +0.002418731 0.005155668 0.1862481 +0.005155668 0.005155668 0.1862481 +0.009080105 0.005155668 0.1862481 +0.01434988 0.005155668 0.1862481 +0.02107202 0.005155668 0.1862481 +0.02934285 0.005155668 0.1862481 +0.03925039 0.005155668 0.1862481 +0.05087609 0.005155668 0.1862481 +0.06429595 0.005155668 0.1862481 +0.07958143 0.005155668 0.1862481 +0.0968001 0.005155668 0.1862481 +0.1160161 0.005155668 0.1862481 +0.1372908 0.005155668 0.1862481 +0.1606827 0.005155668 0.1862481 +0.1862481 0.005155668 0.1862481 +0.2140411 0.005155668 0.1862481 +0.2441142 0.005155668 0.1862481 +0.2765176 0.005155668 0.1862481 +0.3113005 0.005155668 0.1862481 +0.3485102 0.005155668 0.1862481 +0.388193 0.005155668 0.1862481 +0.4303934 0.005155668 0.1862481 +0.4751555 0.005155668 0.1862481 +0.5225216 0.005155668 0.1862481 +0.5725335 0.005155668 0.1862481 +0.6252316 0.005155668 0.1862481 +0.6806558 0.005155668 0.1862481 +0.7388448 0.005155668 0.1862481 +0.7998369 0.005155668 0.1862481 +0.8636691 0.005155668 0.1862481 +0.9303782 0.005155668 0.1862481 +1 0.005155668 0.1862481 +0 0.009080105 0.1862481 +0.002418731 0.009080105 0.1862481 +0.005155668 0.009080105 0.1862481 +0.009080105 0.009080105 0.1862481 +0.01434988 0.009080105 0.1862481 +0.02107202 0.009080105 0.1862481 +0.02934285 0.009080105 0.1862481 +0.03925039 0.009080105 0.1862481 +0.05087609 0.009080105 0.1862481 +0.06429595 0.009080105 0.1862481 +0.07958143 0.009080105 0.1862481 +0.0968001 0.009080105 0.1862481 +0.1160161 0.009080105 0.1862481 +0.1372908 0.009080105 0.1862481 +0.1606827 0.009080105 0.1862481 +0.1862481 0.009080105 0.1862481 +0.2140411 0.009080105 0.1862481 +0.2441142 0.009080105 0.1862481 +0.2765176 0.009080105 0.1862481 +0.3113005 0.009080105 0.1862481 +0.3485102 0.009080105 0.1862481 +0.388193 0.009080105 0.1862481 +0.4303934 0.009080105 0.1862481 +0.4751555 0.009080105 0.1862481 +0.5225216 0.009080105 0.1862481 +0.5725335 0.009080105 0.1862481 +0.6252316 0.009080105 0.1862481 +0.6806558 0.009080105 0.1862481 +0.7388448 0.009080105 0.1862481 +0.7998369 0.009080105 0.1862481 +0.8636691 0.009080105 0.1862481 +0.9303782 0.009080105 0.1862481 +1 0.009080105 0.1862481 +0 0.01434988 0.1862481 +0.002418731 0.01434988 0.1862481 +0.005155668 0.01434988 0.1862481 +0.009080105 0.01434988 0.1862481 +0.01434988 0.01434988 0.1862481 +0.02107202 0.01434988 0.1862481 +0.02934285 0.01434988 0.1862481 +0.03925039 0.01434988 0.1862481 +0.05087609 0.01434988 0.1862481 +0.06429595 0.01434988 0.1862481 +0.07958143 0.01434988 0.1862481 +0.0968001 0.01434988 0.1862481 +0.1160161 0.01434988 0.1862481 +0.1372908 0.01434988 0.1862481 +0.1606827 0.01434988 0.1862481 +0.1862481 0.01434988 0.1862481 +0.2140411 0.01434988 0.1862481 +0.2441142 0.01434988 0.1862481 +0.2765176 0.01434988 0.1862481 +0.3113005 0.01434988 0.1862481 +0.3485102 0.01434988 0.1862481 +0.388193 0.01434988 0.1862481 +0.4303934 0.01434988 0.1862481 +0.4751555 0.01434988 0.1862481 +0.5225216 0.01434988 0.1862481 +0.5725335 0.01434988 0.1862481 +0.6252316 0.01434988 0.1862481 +0.6806558 0.01434988 0.1862481 +0.7388448 0.01434988 0.1862481 +0.7998369 0.01434988 0.1862481 +0.8636691 0.01434988 0.1862481 +0.9303782 0.01434988 0.1862481 +1 0.01434988 0.1862481 +0 0.02107202 0.1862481 +0.002418731 0.02107202 0.1862481 +0.005155668 0.02107202 0.1862481 +0.009080105 0.02107202 0.1862481 +0.01434988 0.02107202 0.1862481 +0.02107202 0.02107202 0.1862481 +0.02934285 0.02107202 0.1862481 +0.03925039 0.02107202 0.1862481 +0.05087609 0.02107202 0.1862481 +0.06429595 0.02107202 0.1862481 +0.07958143 0.02107202 0.1862481 +0.0968001 0.02107202 0.1862481 +0.1160161 0.02107202 0.1862481 +0.1372908 0.02107202 0.1862481 +0.1606827 0.02107202 0.1862481 +0.1862481 0.02107202 0.1862481 +0.2140411 0.02107202 0.1862481 +0.2441142 0.02107202 0.1862481 +0.2765176 0.02107202 0.1862481 +0.3113005 0.02107202 0.1862481 +0.3485102 0.02107202 0.1862481 +0.388193 0.02107202 0.1862481 +0.4303934 0.02107202 0.1862481 +0.4751555 0.02107202 0.1862481 +0.5225216 0.02107202 0.1862481 +0.5725335 0.02107202 0.1862481 +0.6252316 0.02107202 0.1862481 +0.6806558 0.02107202 0.1862481 +0.7388448 0.02107202 0.1862481 +0.7998369 0.02107202 0.1862481 +0.8636691 0.02107202 0.1862481 +0.9303782 0.02107202 0.1862481 +1 0.02107202 0.1862481 +0 0.02934285 0.1862481 +0.002418731 0.02934285 0.1862481 +0.005155668 0.02934285 0.1862481 +0.009080105 0.02934285 0.1862481 +0.01434988 0.02934285 0.1862481 +0.02107202 0.02934285 0.1862481 +0.02934285 0.02934285 0.1862481 +0.03925039 0.02934285 0.1862481 +0.05087609 0.02934285 0.1862481 +0.06429595 0.02934285 0.1862481 +0.07958143 0.02934285 0.1862481 +0.0968001 0.02934285 0.1862481 +0.1160161 0.02934285 0.1862481 +0.1372908 0.02934285 0.1862481 +0.1606827 0.02934285 0.1862481 +0.1862481 0.02934285 0.1862481 +0.2140411 0.02934285 0.1862481 +0.2441142 0.02934285 0.1862481 +0.2765176 0.02934285 0.1862481 +0.3113005 0.02934285 0.1862481 +0.3485102 0.02934285 0.1862481 +0.388193 0.02934285 0.1862481 +0.4303934 0.02934285 0.1862481 +0.4751555 0.02934285 0.1862481 +0.5225216 0.02934285 0.1862481 +0.5725335 0.02934285 0.1862481 +0.6252316 0.02934285 0.1862481 +0.6806558 0.02934285 0.1862481 +0.7388448 0.02934285 0.1862481 +0.7998369 0.02934285 0.1862481 +0.8636691 0.02934285 0.1862481 +0.9303782 0.02934285 0.1862481 +1 0.02934285 0.1862481 +0 0.03925039 0.1862481 +0.002418731 0.03925039 0.1862481 +0.005155668 0.03925039 0.1862481 +0.009080105 0.03925039 0.1862481 +0.01434988 0.03925039 0.1862481 +0.02107202 0.03925039 0.1862481 +0.02934285 0.03925039 0.1862481 +0.03925039 0.03925039 0.1862481 +0.05087609 0.03925039 0.1862481 +0.06429595 0.03925039 0.1862481 +0.07958143 0.03925039 0.1862481 +0.0968001 0.03925039 0.1862481 +0.1160161 0.03925039 0.1862481 +0.1372908 0.03925039 0.1862481 +0.1606827 0.03925039 0.1862481 +0.1862481 0.03925039 0.1862481 +0.2140411 0.03925039 0.1862481 +0.2441142 0.03925039 0.1862481 +0.2765176 0.03925039 0.1862481 +0.3113005 0.03925039 0.1862481 +0.3485102 0.03925039 0.1862481 +0.388193 0.03925039 0.1862481 +0.4303934 0.03925039 0.1862481 +0.4751555 0.03925039 0.1862481 +0.5225216 0.03925039 0.1862481 +0.5725335 0.03925039 0.1862481 +0.6252316 0.03925039 0.1862481 +0.6806558 0.03925039 0.1862481 +0.7388448 0.03925039 0.1862481 +0.7998369 0.03925039 0.1862481 +0.8636691 0.03925039 0.1862481 +0.9303782 0.03925039 0.1862481 +1 0.03925039 0.1862481 +0 0.05087609 0.1862481 +0.002418731 0.05087609 0.1862481 +0.005155668 0.05087609 0.1862481 +0.009080105 0.05087609 0.1862481 +0.01434988 0.05087609 0.1862481 +0.02107202 0.05087609 0.1862481 +0.02934285 0.05087609 0.1862481 +0.03925039 0.05087609 0.1862481 +0.05087609 0.05087609 0.1862481 +0.06429595 0.05087609 0.1862481 +0.07958143 0.05087609 0.1862481 +0.0968001 0.05087609 0.1862481 +0.1160161 0.05087609 0.1862481 +0.1372908 0.05087609 0.1862481 +0.1606827 0.05087609 0.1862481 +0.1862481 0.05087609 0.1862481 +0.2140411 0.05087609 0.1862481 +0.2441142 0.05087609 0.1862481 +0.2765176 0.05087609 0.1862481 +0.3113005 0.05087609 0.1862481 +0.3485102 0.05087609 0.1862481 +0.388193 0.05087609 0.1862481 +0.4303934 0.05087609 0.1862481 +0.4751555 0.05087609 0.1862481 +0.5225216 0.05087609 0.1862481 +0.5725335 0.05087609 0.1862481 +0.6252316 0.05087609 0.1862481 +0.6806558 0.05087609 0.1862481 +0.7388448 0.05087609 0.1862481 +0.7998369 0.05087609 0.1862481 +0.8636691 0.05087609 0.1862481 +0.9303782 0.05087609 0.1862481 +1 0.05087609 0.1862481 +0 0.06429595 0.1862481 +0.002418731 0.06429595 0.1862481 +0.005155668 0.06429595 0.1862481 +0.009080105 0.06429595 0.1862481 +0.01434988 0.06429595 0.1862481 +0.02107202 0.06429595 0.1862481 +0.02934285 0.06429595 0.1862481 +0.03925039 0.06429595 0.1862481 +0.05087609 0.06429595 0.1862481 +0.06429595 0.06429595 0.1862481 +0.07958143 0.06429595 0.1862481 +0.0968001 0.06429595 0.1862481 +0.1160161 0.06429595 0.1862481 +0.1372908 0.06429595 0.1862481 +0.1606827 0.06429595 0.1862481 +0.1862481 0.06429595 0.1862481 +0.2140411 0.06429595 0.1862481 +0.2441142 0.06429595 0.1862481 +0.2765176 0.06429595 0.1862481 +0.3113005 0.06429595 0.1862481 +0.3485102 0.06429595 0.1862481 +0.388193 0.06429595 0.1862481 +0.4303934 0.06429595 0.1862481 +0.4751555 0.06429595 0.1862481 +0.5225216 0.06429595 0.1862481 +0.5725335 0.06429595 0.1862481 +0.6252316 0.06429595 0.1862481 +0.6806558 0.06429595 0.1862481 +0.7388448 0.06429595 0.1862481 +0.7998369 0.06429595 0.1862481 +0.8636691 0.06429595 0.1862481 +0.9303782 0.06429595 0.1862481 +1 0.06429595 0.1862481 +0 0.07958143 0.1862481 +0.002418731 0.07958143 0.1862481 +0.005155668 0.07958143 0.1862481 +0.009080105 0.07958143 0.1862481 +0.01434988 0.07958143 0.1862481 +0.02107202 0.07958143 0.1862481 +0.02934285 0.07958143 0.1862481 +0.03925039 0.07958143 0.1862481 +0.05087609 0.07958143 0.1862481 +0.06429595 0.07958143 0.1862481 +0.07958143 0.07958143 0.1862481 +0.0968001 0.07958143 0.1862481 +0.1160161 0.07958143 0.1862481 +0.1372908 0.07958143 0.1862481 +0.1606827 0.07958143 0.1862481 +0.1862481 0.07958143 0.1862481 +0.2140411 0.07958143 0.1862481 +0.2441142 0.07958143 0.1862481 +0.2765176 0.07958143 0.1862481 +0.3113005 0.07958143 0.1862481 +0.3485102 0.07958143 0.1862481 +0.388193 0.07958143 0.1862481 +0.4303934 0.07958143 0.1862481 +0.4751555 0.07958143 0.1862481 +0.5225216 0.07958143 0.1862481 +0.5725335 0.07958143 0.1862481 +0.6252316 0.07958143 0.1862481 +0.6806558 0.07958143 0.1862481 +0.7388448 0.07958143 0.1862481 +0.7998369 0.07958143 0.1862481 +0.8636691 0.07958143 0.1862481 +0.9303782 0.07958143 0.1862481 +1 0.07958143 0.1862481 +0 0.0968001 0.1862481 +0.002418731 0.0968001 0.1862481 +0.005155668 0.0968001 0.1862481 +0.009080105 0.0968001 0.1862481 +0.01434988 0.0968001 0.1862481 +0.02107202 0.0968001 0.1862481 +0.02934285 0.0968001 0.1862481 +0.03925039 0.0968001 0.1862481 +0.05087609 0.0968001 0.1862481 +0.06429595 0.0968001 0.1862481 +0.07958143 0.0968001 0.1862481 +0.0968001 0.0968001 0.1862481 +0.1160161 0.0968001 0.1862481 +0.1372908 0.0968001 0.1862481 +0.1606827 0.0968001 0.1862481 +0.1862481 0.0968001 0.1862481 +0.2140411 0.0968001 0.1862481 +0.2441142 0.0968001 0.1862481 +0.2765176 0.0968001 0.1862481 +0.3113005 0.0968001 0.1862481 +0.3485102 0.0968001 0.1862481 +0.388193 0.0968001 0.1862481 +0.4303934 0.0968001 0.1862481 +0.4751555 0.0968001 0.1862481 +0.5225216 0.0968001 0.1862481 +0.5725335 0.0968001 0.1862481 +0.6252316 0.0968001 0.1862481 +0.6806558 0.0968001 0.1862481 +0.7388448 0.0968001 0.1862481 +0.7998369 0.0968001 0.1862481 +0.8636691 0.0968001 0.1862481 +0.9303782 0.0968001 0.1862481 +1 0.0968001 0.1862481 +0 0.1160161 0.1862481 +0.002418731 0.1160161 0.1862481 +0.005155668 0.1160161 0.1862481 +0.009080105 0.1160161 0.1862481 +0.01434988 0.1160161 0.1862481 +0.02107202 0.1160161 0.1862481 +0.02934285 0.1160161 0.1862481 +0.03925039 0.1160161 0.1862481 +0.05087609 0.1160161 0.1862481 +0.06429595 0.1160161 0.1862481 +0.07958143 0.1160161 0.1862481 +0.0968001 0.1160161 0.1862481 +0.1160161 0.1160161 0.1862481 +0.1372908 0.1160161 0.1862481 +0.1606827 0.1160161 0.1862481 +0.1862481 0.1160161 0.1862481 +0.2140411 0.1160161 0.1862481 +0.2441142 0.1160161 0.1862481 +0.2765176 0.1160161 0.1862481 +0.3113005 0.1160161 0.1862481 +0.3485102 0.1160161 0.1862481 +0.388193 0.1160161 0.1862481 +0.4303934 0.1160161 0.1862481 +0.4751555 0.1160161 0.1862481 +0.5225216 0.1160161 0.1862481 +0.5725335 0.1160161 0.1862481 +0.6252316 0.1160161 0.1862481 +0.6806558 0.1160161 0.1862481 +0.7388448 0.1160161 0.1862481 +0.7998369 0.1160161 0.1862481 +0.8636691 0.1160161 0.1862481 +0.9303782 0.1160161 0.1862481 +1 0.1160161 0.1862481 +0 0.1372908 0.1862481 +0.002418731 0.1372908 0.1862481 +0.005155668 0.1372908 0.1862481 +0.009080105 0.1372908 0.1862481 +0.01434988 0.1372908 0.1862481 +0.02107202 0.1372908 0.1862481 +0.02934285 0.1372908 0.1862481 +0.03925039 0.1372908 0.1862481 +0.05087609 0.1372908 0.1862481 +0.06429595 0.1372908 0.1862481 +0.07958143 0.1372908 0.1862481 +0.0968001 0.1372908 0.1862481 +0.1160161 0.1372908 0.1862481 +0.1372908 0.1372908 0.1862481 +0.1606827 0.1372908 0.1862481 +0.1862481 0.1372908 0.1862481 +0.2140411 0.1372908 0.1862481 +0.2441142 0.1372908 0.1862481 +0.2765176 0.1372908 0.1862481 +0.3113005 0.1372908 0.1862481 +0.3485102 0.1372908 0.1862481 +0.388193 0.1372908 0.1862481 +0.4303934 0.1372908 0.1862481 +0.4751555 0.1372908 0.1862481 +0.5225216 0.1372908 0.1862481 +0.5725335 0.1372908 0.1862481 +0.6252316 0.1372908 0.1862481 +0.6806558 0.1372908 0.1862481 +0.7388448 0.1372908 0.1862481 +0.7998369 0.1372908 0.1862481 +0.8636691 0.1372908 0.1862481 +0.9303782 0.1372908 0.1862481 +1 0.1372908 0.1862481 +0 0.1606827 0.1862481 +0.002418731 0.1606827 0.1862481 +0.005155668 0.1606827 0.1862481 +0.009080105 0.1606827 0.1862481 +0.01434988 0.1606827 0.1862481 +0.02107202 0.1606827 0.1862481 +0.02934285 0.1606827 0.1862481 +0.03925039 0.1606827 0.1862481 +0.05087609 0.1606827 0.1862481 +0.06429595 0.1606827 0.1862481 +0.07958143 0.1606827 0.1862481 +0.0968001 0.1606827 0.1862481 +0.1160161 0.1606827 0.1862481 +0.1372908 0.1606827 0.1862481 +0.1606827 0.1606827 0.1862481 +0.1862481 0.1606827 0.1862481 +0.2140411 0.1606827 0.1862481 +0.2441142 0.1606827 0.1862481 +0.2765176 0.1606827 0.1862481 +0.3113005 0.1606827 0.1862481 +0.3485102 0.1606827 0.1862481 +0.388193 0.1606827 0.1862481 +0.4303934 0.1606827 0.1862481 +0.4751555 0.1606827 0.1862481 +0.5225216 0.1606827 0.1862481 +0.5725335 0.1606827 0.1862481 +0.6252316 0.1606827 0.1862481 +0.6806558 0.1606827 0.1862481 +0.7388448 0.1606827 0.1862481 +0.7998369 0.1606827 0.1862481 +0.8636691 0.1606827 0.1862481 +0.9303782 0.1606827 0.1862481 +1 0.1606827 0.1862481 +0 0.1862481 0.1862481 +0.002418731 0.1862481 0.1862481 +0.005155668 0.1862481 0.1862481 +0.009080105 0.1862481 0.1862481 +0.01434988 0.1862481 0.1862481 +0.02107202 0.1862481 0.1862481 +0.02934285 0.1862481 0.1862481 +0.03925039 0.1862481 0.1862481 +0.05087609 0.1862481 0.1862481 +0.06429595 0.1862481 0.1862481 +0.07958143 0.1862481 0.1862481 +0.0968001 0.1862481 0.1862481 +0.1160161 0.1862481 0.1862481 +0.1372908 0.1862481 0.1862481 +0.1606827 0.1862481 0.1862481 +0.1862481 0.1862481 0.1862481 +0.2140411 0.1862481 0.1862481 +0.2441142 0.1862481 0.1862481 +0.2765176 0.1862481 0.1862481 +0.3113005 0.1862481 0.1862481 +0.3485102 0.1862481 0.1862481 +0.388193 0.1862481 0.1862481 +0.4303934 0.1862481 0.1862481 +0.4751555 0.1862481 0.1862481 +0.5225216 0.1862481 0.1862481 +0.5725335 0.1862481 0.1862481 +0.6252316 0.1862481 0.1862481 +0.6806558 0.1862481 0.1862481 +0.7388448 0.1862481 0.1862481 +0.7998369 0.1862481 0.1862481 +0.8636691 0.1862481 0.1862481 +0.9303782 0.1862481 0.1862481 +1 0.1862481 0.1862481 +0 0.2140411 0.1862481 +0.002418731 0.2140411 0.1862481 +0.005155668 0.2140411 0.1862481 +0.009080105 0.2140411 0.1862481 +0.01434988 0.2140411 0.1862481 +0.02107202 0.2140411 0.1862481 +0.02934285 0.2140411 0.1862481 +0.03925039 0.2140411 0.1862481 +0.05087609 0.2140411 0.1862481 +0.06429595 0.2140411 0.1862481 +0.07958143 0.2140411 0.1862481 +0.0968001 0.2140411 0.1862481 +0.1160161 0.2140411 0.1862481 +0.1372908 0.2140411 0.1862481 +0.1606827 0.2140411 0.1862481 +0.1862481 0.2140411 0.1862481 +0.2140411 0.2140411 0.1862481 +0.2441142 0.2140411 0.1862481 +0.2765176 0.2140411 0.1862481 +0.3113005 0.2140411 0.1862481 +0.3485102 0.2140411 0.1862481 +0.388193 0.2140411 0.1862481 +0.4303934 0.2140411 0.1862481 +0.4751555 0.2140411 0.1862481 +0.5225216 0.2140411 0.1862481 +0.5725335 0.2140411 0.1862481 +0.6252316 0.2140411 0.1862481 +0.6806558 0.2140411 0.1862481 +0.7388448 0.2140411 0.1862481 +0.7998369 0.2140411 0.1862481 +0.8636691 0.2140411 0.1862481 +0.9303782 0.2140411 0.1862481 +1 0.2140411 0.1862481 +0 0.2441142 0.1862481 +0.002418731 0.2441142 0.1862481 +0.005155668 0.2441142 0.1862481 +0.009080105 0.2441142 0.1862481 +0.01434988 0.2441142 0.1862481 +0.02107202 0.2441142 0.1862481 +0.02934285 0.2441142 0.1862481 +0.03925039 0.2441142 0.1862481 +0.05087609 0.2441142 0.1862481 +0.06429595 0.2441142 0.1862481 +0.07958143 0.2441142 0.1862481 +0.0968001 0.2441142 0.1862481 +0.1160161 0.2441142 0.1862481 +0.1372908 0.2441142 0.1862481 +0.1606827 0.2441142 0.1862481 +0.1862481 0.2441142 0.1862481 +0.2140411 0.2441142 0.1862481 +0.2441142 0.2441142 0.1862481 +0.2765176 0.2441142 0.1862481 +0.3113005 0.2441142 0.1862481 +0.3485102 0.2441142 0.1862481 +0.388193 0.2441142 0.1862481 +0.4303934 0.2441142 0.1862481 +0.4751555 0.2441142 0.1862481 +0.5225216 0.2441142 0.1862481 +0.5725335 0.2441142 0.1862481 +0.6252316 0.2441142 0.1862481 +0.6806558 0.2441142 0.1862481 +0.7388448 0.2441142 0.1862481 +0.7998369 0.2441142 0.1862481 +0.8636691 0.2441142 0.1862481 +0.9303782 0.2441142 0.1862481 +1 0.2441142 0.1862481 +0 0.2765176 0.1862481 +0.002418731 0.2765176 0.1862481 +0.005155668 0.2765176 0.1862481 +0.009080105 0.2765176 0.1862481 +0.01434988 0.2765176 0.1862481 +0.02107202 0.2765176 0.1862481 +0.02934285 0.2765176 0.1862481 +0.03925039 0.2765176 0.1862481 +0.05087609 0.2765176 0.1862481 +0.06429595 0.2765176 0.1862481 +0.07958143 0.2765176 0.1862481 +0.0968001 0.2765176 0.1862481 +0.1160161 0.2765176 0.1862481 +0.1372908 0.2765176 0.1862481 +0.1606827 0.2765176 0.1862481 +0.1862481 0.2765176 0.1862481 +0.2140411 0.2765176 0.1862481 +0.2441142 0.2765176 0.1862481 +0.2765176 0.2765176 0.1862481 +0.3113005 0.2765176 0.1862481 +0.3485102 0.2765176 0.1862481 +0.388193 0.2765176 0.1862481 +0.4303934 0.2765176 0.1862481 +0.4751555 0.2765176 0.1862481 +0.5225216 0.2765176 0.1862481 +0.5725335 0.2765176 0.1862481 +0.6252316 0.2765176 0.1862481 +0.6806558 0.2765176 0.1862481 +0.7388448 0.2765176 0.1862481 +0.7998369 0.2765176 0.1862481 +0.8636691 0.2765176 0.1862481 +0.9303782 0.2765176 0.1862481 +1 0.2765176 0.1862481 +0 0.3113005 0.1862481 +0.002418731 0.3113005 0.1862481 +0.005155668 0.3113005 0.1862481 +0.009080105 0.3113005 0.1862481 +0.01434988 0.3113005 0.1862481 +0.02107202 0.3113005 0.1862481 +0.02934285 0.3113005 0.1862481 +0.03925039 0.3113005 0.1862481 +0.05087609 0.3113005 0.1862481 +0.06429595 0.3113005 0.1862481 +0.07958143 0.3113005 0.1862481 +0.0968001 0.3113005 0.1862481 +0.1160161 0.3113005 0.1862481 +0.1372908 0.3113005 0.1862481 +0.1606827 0.3113005 0.1862481 +0.1862481 0.3113005 0.1862481 +0.2140411 0.3113005 0.1862481 +0.2441142 0.3113005 0.1862481 +0.2765176 0.3113005 0.1862481 +0.3113005 0.3113005 0.1862481 +0.3485102 0.3113005 0.1862481 +0.388193 0.3113005 0.1862481 +0.4303934 0.3113005 0.1862481 +0.4751555 0.3113005 0.1862481 +0.5225216 0.3113005 0.1862481 +0.5725335 0.3113005 0.1862481 +0.6252316 0.3113005 0.1862481 +0.6806558 0.3113005 0.1862481 +0.7388448 0.3113005 0.1862481 +0.7998369 0.3113005 0.1862481 +0.8636691 0.3113005 0.1862481 +0.9303782 0.3113005 0.1862481 +1 0.3113005 0.1862481 +0 0.3485102 0.1862481 +0.002418731 0.3485102 0.1862481 +0.005155668 0.3485102 0.1862481 +0.009080105 0.3485102 0.1862481 +0.01434988 0.3485102 0.1862481 +0.02107202 0.3485102 0.1862481 +0.02934285 0.3485102 0.1862481 +0.03925039 0.3485102 0.1862481 +0.05087609 0.3485102 0.1862481 +0.06429595 0.3485102 0.1862481 +0.07958143 0.3485102 0.1862481 +0.0968001 0.3485102 0.1862481 +0.1160161 0.3485102 0.1862481 +0.1372908 0.3485102 0.1862481 +0.1606827 0.3485102 0.1862481 +0.1862481 0.3485102 0.1862481 +0.2140411 0.3485102 0.1862481 +0.2441142 0.3485102 0.1862481 +0.2765176 0.3485102 0.1862481 +0.3113005 0.3485102 0.1862481 +0.3485102 0.3485102 0.1862481 +0.388193 0.3485102 0.1862481 +0.4303934 0.3485102 0.1862481 +0.4751555 0.3485102 0.1862481 +0.5225216 0.3485102 0.1862481 +0.5725335 0.3485102 0.1862481 +0.6252316 0.3485102 0.1862481 +0.6806558 0.3485102 0.1862481 +0.7388448 0.3485102 0.1862481 +0.7998369 0.3485102 0.1862481 +0.8636691 0.3485102 0.1862481 +0.9303782 0.3485102 0.1862481 +1 0.3485102 0.1862481 +0 0.388193 0.1862481 +0.002418731 0.388193 0.1862481 +0.005155668 0.388193 0.1862481 +0.009080105 0.388193 0.1862481 +0.01434988 0.388193 0.1862481 +0.02107202 0.388193 0.1862481 +0.02934285 0.388193 0.1862481 +0.03925039 0.388193 0.1862481 +0.05087609 0.388193 0.1862481 +0.06429595 0.388193 0.1862481 +0.07958143 0.388193 0.1862481 +0.0968001 0.388193 0.1862481 +0.1160161 0.388193 0.1862481 +0.1372908 0.388193 0.1862481 +0.1606827 0.388193 0.1862481 +0.1862481 0.388193 0.1862481 +0.2140411 0.388193 0.1862481 +0.2441142 0.388193 0.1862481 +0.2765176 0.388193 0.1862481 +0.3113005 0.388193 0.1862481 +0.3485102 0.388193 0.1862481 +0.388193 0.388193 0.1862481 +0.4303934 0.388193 0.1862481 +0.4751555 0.388193 0.1862481 +0.5225216 0.388193 0.1862481 +0.5725335 0.388193 0.1862481 +0.6252316 0.388193 0.1862481 +0.6806558 0.388193 0.1862481 +0.7388448 0.388193 0.1862481 +0.7998369 0.388193 0.1862481 +0.8636691 0.388193 0.1862481 +0.9303782 0.388193 0.1862481 +1 0.388193 0.1862481 +0 0.4303934 0.1862481 +0.002418731 0.4303934 0.1862481 +0.005155668 0.4303934 0.1862481 +0.009080105 0.4303934 0.1862481 +0.01434988 0.4303934 0.1862481 +0.02107202 0.4303934 0.1862481 +0.02934285 0.4303934 0.1862481 +0.03925039 0.4303934 0.1862481 +0.05087609 0.4303934 0.1862481 +0.06429595 0.4303934 0.1862481 +0.07958143 0.4303934 0.1862481 +0.0968001 0.4303934 0.1862481 +0.1160161 0.4303934 0.1862481 +0.1372908 0.4303934 0.1862481 +0.1606827 0.4303934 0.1862481 +0.1862481 0.4303934 0.1862481 +0.2140411 0.4303934 0.1862481 +0.2441142 0.4303934 0.1862481 +0.2765176 0.4303934 0.1862481 +0.3113005 0.4303934 0.1862481 +0.3485102 0.4303934 0.1862481 +0.388193 0.4303934 0.1862481 +0.4303934 0.4303934 0.1862481 +0.4751555 0.4303934 0.1862481 +0.5225216 0.4303934 0.1862481 +0.5725335 0.4303934 0.1862481 +0.6252316 0.4303934 0.1862481 +0.6806558 0.4303934 0.1862481 +0.7388448 0.4303934 0.1862481 +0.7998369 0.4303934 0.1862481 +0.8636691 0.4303934 0.1862481 +0.9303782 0.4303934 0.1862481 +1 0.4303934 0.1862481 +0 0.4751555 0.1862481 +0.002418731 0.4751555 0.1862481 +0.005155668 0.4751555 0.1862481 +0.009080105 0.4751555 0.1862481 +0.01434988 0.4751555 0.1862481 +0.02107202 0.4751555 0.1862481 +0.02934285 0.4751555 0.1862481 +0.03925039 0.4751555 0.1862481 +0.05087609 0.4751555 0.1862481 +0.06429595 0.4751555 0.1862481 +0.07958143 0.4751555 0.1862481 +0.0968001 0.4751555 0.1862481 +0.1160161 0.4751555 0.1862481 +0.1372908 0.4751555 0.1862481 +0.1606827 0.4751555 0.1862481 +0.1862481 0.4751555 0.1862481 +0.2140411 0.4751555 0.1862481 +0.2441142 0.4751555 0.1862481 +0.2765176 0.4751555 0.1862481 +0.3113005 0.4751555 0.1862481 +0.3485102 0.4751555 0.1862481 +0.388193 0.4751555 0.1862481 +0.4303934 0.4751555 0.1862481 +0.4751555 0.4751555 0.1862481 +0.5225216 0.4751555 0.1862481 +0.5725335 0.4751555 0.1862481 +0.6252316 0.4751555 0.1862481 +0.6806558 0.4751555 0.1862481 +0.7388448 0.4751555 0.1862481 +0.7998369 0.4751555 0.1862481 +0.8636691 0.4751555 0.1862481 +0.9303782 0.4751555 0.1862481 +1 0.4751555 0.1862481 +0 0.5225216 0.1862481 +0.002418731 0.5225216 0.1862481 +0.005155668 0.5225216 0.1862481 +0.009080105 0.5225216 0.1862481 +0.01434988 0.5225216 0.1862481 +0.02107202 0.5225216 0.1862481 +0.02934285 0.5225216 0.1862481 +0.03925039 0.5225216 0.1862481 +0.05087609 0.5225216 0.1862481 +0.06429595 0.5225216 0.1862481 +0.07958143 0.5225216 0.1862481 +0.0968001 0.5225216 0.1862481 +0.1160161 0.5225216 0.1862481 +0.1372908 0.5225216 0.1862481 +0.1606827 0.5225216 0.1862481 +0.1862481 0.5225216 0.1862481 +0.2140411 0.5225216 0.1862481 +0.2441142 0.5225216 0.1862481 +0.2765176 0.5225216 0.1862481 +0.3113005 0.5225216 0.1862481 +0.3485102 0.5225216 0.1862481 +0.388193 0.5225216 0.1862481 +0.4303934 0.5225216 0.1862481 +0.4751555 0.5225216 0.1862481 +0.5225216 0.5225216 0.1862481 +0.5725335 0.5225216 0.1862481 +0.6252316 0.5225216 0.1862481 +0.6806558 0.5225216 0.1862481 +0.7388448 0.5225216 0.1862481 +0.7998369 0.5225216 0.1862481 +0.8636691 0.5225216 0.1862481 +0.9303782 0.5225216 0.1862481 +1 0.5225216 0.1862481 +0 0.5725335 0.1862481 +0.002418731 0.5725335 0.1862481 +0.005155668 0.5725335 0.1862481 +0.009080105 0.5725335 0.1862481 +0.01434988 0.5725335 0.1862481 +0.02107202 0.5725335 0.1862481 +0.02934285 0.5725335 0.1862481 +0.03925039 0.5725335 0.1862481 +0.05087609 0.5725335 0.1862481 +0.06429595 0.5725335 0.1862481 +0.07958143 0.5725335 0.1862481 +0.0968001 0.5725335 0.1862481 +0.1160161 0.5725335 0.1862481 +0.1372908 0.5725335 0.1862481 +0.1606827 0.5725335 0.1862481 +0.1862481 0.5725335 0.1862481 +0.2140411 0.5725335 0.1862481 +0.2441142 0.5725335 0.1862481 +0.2765176 0.5725335 0.1862481 +0.3113005 0.5725335 0.1862481 +0.3485102 0.5725335 0.1862481 +0.388193 0.5725335 0.1862481 +0.4303934 0.5725335 0.1862481 +0.4751555 0.5725335 0.1862481 +0.5225216 0.5725335 0.1862481 +0.5725335 0.5725335 0.1862481 +0.6252316 0.5725335 0.1862481 +0.6806558 0.5725335 0.1862481 +0.7388448 0.5725335 0.1862481 +0.7998369 0.5725335 0.1862481 +0.8636691 0.5725335 0.1862481 +0.9303782 0.5725335 0.1862481 +1 0.5725335 0.1862481 +0 0.6252316 0.1862481 +0.002418731 0.6252316 0.1862481 +0.005155668 0.6252316 0.1862481 +0.009080105 0.6252316 0.1862481 +0.01434988 0.6252316 0.1862481 +0.02107202 0.6252316 0.1862481 +0.02934285 0.6252316 0.1862481 +0.03925039 0.6252316 0.1862481 +0.05087609 0.6252316 0.1862481 +0.06429595 0.6252316 0.1862481 +0.07958143 0.6252316 0.1862481 +0.0968001 0.6252316 0.1862481 +0.1160161 0.6252316 0.1862481 +0.1372908 0.6252316 0.1862481 +0.1606827 0.6252316 0.1862481 +0.1862481 0.6252316 0.1862481 +0.2140411 0.6252316 0.1862481 +0.2441142 0.6252316 0.1862481 +0.2765176 0.6252316 0.1862481 +0.3113005 0.6252316 0.1862481 +0.3485102 0.6252316 0.1862481 +0.388193 0.6252316 0.1862481 +0.4303934 0.6252316 0.1862481 +0.4751555 0.6252316 0.1862481 +0.5225216 0.6252316 0.1862481 +0.5725335 0.6252316 0.1862481 +0.6252316 0.6252316 0.1862481 +0.6806558 0.6252316 0.1862481 +0.7388448 0.6252316 0.1862481 +0.7998369 0.6252316 0.1862481 +0.8636691 0.6252316 0.1862481 +0.9303782 0.6252316 0.1862481 +1 0.6252316 0.1862481 +0 0.6806558 0.1862481 +0.002418731 0.6806558 0.1862481 +0.005155668 0.6806558 0.1862481 +0.009080105 0.6806558 0.1862481 +0.01434988 0.6806558 0.1862481 +0.02107202 0.6806558 0.1862481 +0.02934285 0.6806558 0.1862481 +0.03925039 0.6806558 0.1862481 +0.05087609 0.6806558 0.1862481 +0.06429595 0.6806558 0.1862481 +0.07958143 0.6806558 0.1862481 +0.0968001 0.6806558 0.1862481 +0.1160161 0.6806558 0.1862481 +0.1372908 0.6806558 0.1862481 +0.1606827 0.6806558 0.1862481 +0.1862481 0.6806558 0.1862481 +0.2140411 0.6806558 0.1862481 +0.2441142 0.6806558 0.1862481 +0.2765176 0.6806558 0.1862481 +0.3113005 0.6806558 0.1862481 +0.3485102 0.6806558 0.1862481 +0.388193 0.6806558 0.1862481 +0.4303934 0.6806558 0.1862481 +0.4751555 0.6806558 0.1862481 +0.5225216 0.6806558 0.1862481 +0.5725335 0.6806558 0.1862481 +0.6252316 0.6806558 0.1862481 +0.6806558 0.6806558 0.1862481 +0.7388448 0.6806558 0.1862481 +0.7998369 0.6806558 0.1862481 +0.8636691 0.6806558 0.1862481 +0.9303782 0.6806558 0.1862481 +1 0.6806558 0.1862481 +0 0.7388448 0.1862481 +0.002418731 0.7388448 0.1862481 +0.005155668 0.7388448 0.1862481 +0.009080105 0.7388448 0.1862481 +0.01434988 0.7388448 0.1862481 +0.02107202 0.7388448 0.1862481 +0.02934285 0.7388448 0.1862481 +0.03925039 0.7388448 0.1862481 +0.05087609 0.7388448 0.1862481 +0.06429595 0.7388448 0.1862481 +0.07958143 0.7388448 0.1862481 +0.0968001 0.7388448 0.1862481 +0.1160161 0.7388448 0.1862481 +0.1372908 0.7388448 0.1862481 +0.1606827 0.7388448 0.1862481 +0.1862481 0.7388448 0.1862481 +0.2140411 0.7388448 0.1862481 +0.2441142 0.7388448 0.1862481 +0.2765176 0.7388448 0.1862481 +0.3113005 0.7388448 0.1862481 +0.3485102 0.7388448 0.1862481 +0.388193 0.7388448 0.1862481 +0.4303934 0.7388448 0.1862481 +0.4751555 0.7388448 0.1862481 +0.5225216 0.7388448 0.1862481 +0.5725335 0.7388448 0.1862481 +0.6252316 0.7388448 0.1862481 +0.6806558 0.7388448 0.1862481 +0.7388448 0.7388448 0.1862481 +0.7998369 0.7388448 0.1862481 +0.8636691 0.7388448 0.1862481 +0.9303782 0.7388448 0.1862481 +1 0.7388448 0.1862481 +0 0.7998369 0.1862481 +0.002418731 0.7998369 0.1862481 +0.005155668 0.7998369 0.1862481 +0.009080105 0.7998369 0.1862481 +0.01434988 0.7998369 0.1862481 +0.02107202 0.7998369 0.1862481 +0.02934285 0.7998369 0.1862481 +0.03925039 0.7998369 0.1862481 +0.05087609 0.7998369 0.1862481 +0.06429595 0.7998369 0.1862481 +0.07958143 0.7998369 0.1862481 +0.0968001 0.7998369 0.1862481 +0.1160161 0.7998369 0.1862481 +0.1372908 0.7998369 0.1862481 +0.1606827 0.7998369 0.1862481 +0.1862481 0.7998369 0.1862481 +0.2140411 0.7998369 0.1862481 +0.2441142 0.7998369 0.1862481 +0.2765176 0.7998369 0.1862481 +0.3113005 0.7998369 0.1862481 +0.3485102 0.7998369 0.1862481 +0.388193 0.7998369 0.1862481 +0.4303934 0.7998369 0.1862481 +0.4751555 0.7998369 0.1862481 +0.5225216 0.7998369 0.1862481 +0.5725335 0.7998369 0.1862481 +0.6252316 0.7998369 0.1862481 +0.6806558 0.7998369 0.1862481 +0.7388448 0.7998369 0.1862481 +0.7998369 0.7998369 0.1862481 +0.8636691 0.7998369 0.1862481 +0.9303782 0.7998369 0.1862481 +1 0.7998369 0.1862481 +0 0.8636691 0.1862481 +0.002418731 0.8636691 0.1862481 +0.005155668 0.8636691 0.1862481 +0.009080105 0.8636691 0.1862481 +0.01434988 0.8636691 0.1862481 +0.02107202 0.8636691 0.1862481 +0.02934285 0.8636691 0.1862481 +0.03925039 0.8636691 0.1862481 +0.05087609 0.8636691 0.1862481 +0.06429595 0.8636691 0.1862481 +0.07958143 0.8636691 0.1862481 +0.0968001 0.8636691 0.1862481 +0.1160161 0.8636691 0.1862481 +0.1372908 0.8636691 0.1862481 +0.1606827 0.8636691 0.1862481 +0.1862481 0.8636691 0.1862481 +0.2140411 0.8636691 0.1862481 +0.2441142 0.8636691 0.1862481 +0.2765176 0.8636691 0.1862481 +0.3113005 0.8636691 0.1862481 +0.3485102 0.8636691 0.1862481 +0.388193 0.8636691 0.1862481 +0.4303934 0.8636691 0.1862481 +0.4751555 0.8636691 0.1862481 +0.5225216 0.8636691 0.1862481 +0.5725335 0.8636691 0.1862481 +0.6252316 0.8636691 0.1862481 +0.6806558 0.8636691 0.1862481 +0.7388448 0.8636691 0.1862481 +0.7998369 0.8636691 0.1862481 +0.8636691 0.8636691 0.1862481 +0.9303782 0.8636691 0.1862481 +1 0.8636691 0.1862481 +0 0.9303782 0.1862481 +0.002418731 0.9303782 0.1862481 +0.005155668 0.9303782 0.1862481 +0.009080105 0.9303782 0.1862481 +0.01434988 0.9303782 0.1862481 +0.02107202 0.9303782 0.1862481 +0.02934285 0.9303782 0.1862481 +0.03925039 0.9303782 0.1862481 +0.05087609 0.9303782 0.1862481 +0.06429595 0.9303782 0.1862481 +0.07958143 0.9303782 0.1862481 +0.0968001 0.9303782 0.1862481 +0.1160161 0.9303782 0.1862481 +0.1372908 0.9303782 0.1862481 +0.1606827 0.9303782 0.1862481 +0.1862481 0.9303782 0.1862481 +0.2140411 0.9303782 0.1862481 +0.2441142 0.9303782 0.1862481 +0.2765176 0.9303782 0.1862481 +0.3113005 0.9303782 0.1862481 +0.3485102 0.9303782 0.1862481 +0.388193 0.9303782 0.1862481 +0.4303934 0.9303782 0.1862481 +0.4751555 0.9303782 0.1862481 +0.5225216 0.9303782 0.1862481 +0.5725335 0.9303782 0.1862481 +0.6252316 0.9303782 0.1862481 +0.6806558 0.9303782 0.1862481 +0.7388448 0.9303782 0.1862481 +0.7998369 0.9303782 0.1862481 +0.8636691 0.9303782 0.1862481 +0.9303782 0.9303782 0.1862481 +1 0.9303782 0.1862481 +0 1 0.1862481 +0.002418731 1 0.1862481 +0.005155668 1 0.1862481 +0.009080105 1 0.1862481 +0.01434988 1 0.1862481 +0.02107202 1 0.1862481 +0.02934285 1 0.1862481 +0.03925039 1 0.1862481 +0.05087609 1 0.1862481 +0.06429595 1 0.1862481 +0.07958143 1 0.1862481 +0.0968001 1 0.1862481 +0.1160161 1 0.1862481 +0.1372908 1 0.1862481 +0.1606827 1 0.1862481 +0.1862481 1 0.1862481 +0.2140411 1 0.1862481 +0.2441142 1 0.1862481 +0.2765176 1 0.1862481 +0.3113005 1 0.1862481 +0.3485102 1 0.1862481 +0.388193 1 0.1862481 +0.4303934 1 0.1862481 +0.4751555 1 0.1862481 +0.5225216 1 0.1862481 +0.5725335 1 0.1862481 +0.6252316 1 0.1862481 +0.6806558 1 0.1862481 +0.7388448 1 0.1862481 +0.7998369 1 0.1862481 +0.8636691 1 0.1862481 +0.9303782 1 0.1862481 +1 1 0.1862481 +0 0 0.2140411 +0.002418731 0 0.2140411 +0.005155668 0 0.2140411 +0.009080105 0 0.2140411 +0.01434988 0 0.2140411 +0.02107202 0 0.2140411 +0.02934285 0 0.2140411 +0.03925039 0 0.2140411 +0.05087609 0 0.2140411 +0.06429595 0 0.2140411 +0.07958143 0 0.2140411 +0.0968001 0 0.2140411 +0.1160161 0 0.2140411 +0.1372908 0 0.2140411 +0.1606827 0 0.2140411 +0.1862481 0 0.2140411 +0.2140411 0 0.2140411 +0.2441142 0 0.2140411 +0.2765176 0 0.2140411 +0.3113005 0 0.2140411 +0.3485102 0 0.2140411 +0.388193 0 0.2140411 +0.4303934 0 0.2140411 +0.4751555 0 0.2140411 +0.5225216 0 0.2140411 +0.5725335 0 0.2140411 +0.6252316 0 0.2140411 +0.6806558 0 0.2140411 +0.7388448 0 0.2140411 +0.7998369 0 0.2140411 +0.8636691 0 0.2140411 +0.9303782 0 0.2140411 +1 0 0.2140411 +0 0.002418731 0.2140411 +0.002418731 0.002418731 0.2140411 +0.005155668 0.002418731 0.2140411 +0.009080105 0.002418731 0.2140411 +0.01434988 0.002418731 0.2140411 +0.02107202 0.002418731 0.2140411 +0.02934285 0.002418731 0.2140411 +0.03925039 0.002418731 0.2140411 +0.05087609 0.002418731 0.2140411 +0.06429595 0.002418731 0.2140411 +0.07958143 0.002418731 0.2140411 +0.0968001 0.002418731 0.2140411 +0.1160161 0.002418731 0.2140411 +0.1372908 0.002418731 0.2140411 +0.1606827 0.002418731 0.2140411 +0.1862481 0.002418731 0.2140411 +0.2140411 0.002418731 0.2140411 +0.2441142 0.002418731 0.2140411 +0.2765176 0.002418731 0.2140411 +0.3113005 0.002418731 0.2140411 +0.3485102 0.002418731 0.2140411 +0.388193 0.002418731 0.2140411 +0.4303934 0.002418731 0.2140411 +0.4751555 0.002418731 0.2140411 +0.5225216 0.002418731 0.2140411 +0.5725335 0.002418731 0.2140411 +0.6252316 0.002418731 0.2140411 +0.6806558 0.002418731 0.2140411 +0.7388448 0.002418731 0.2140411 +0.7998369 0.002418731 0.2140411 +0.8636691 0.002418731 0.2140411 +0.9303782 0.002418731 0.2140411 +1 0.002418731 0.2140411 +0 0.005155668 0.2140411 +0.002418731 0.005155668 0.2140411 +0.005155668 0.005155668 0.2140411 +0.009080105 0.005155668 0.2140411 +0.01434988 0.005155668 0.2140411 +0.02107202 0.005155668 0.2140411 +0.02934285 0.005155668 0.2140411 +0.03925039 0.005155668 0.2140411 +0.05087609 0.005155668 0.2140411 +0.06429595 0.005155668 0.2140411 +0.07958143 0.005155668 0.2140411 +0.0968001 0.005155668 0.2140411 +0.1160161 0.005155668 0.2140411 +0.1372908 0.005155668 0.2140411 +0.1606827 0.005155668 0.2140411 +0.1862481 0.005155668 0.2140411 +0.2140411 0.005155668 0.2140411 +0.2441142 0.005155668 0.2140411 +0.2765176 0.005155668 0.2140411 +0.3113005 0.005155668 0.2140411 +0.3485102 0.005155668 0.2140411 +0.388193 0.005155668 0.2140411 +0.4303934 0.005155668 0.2140411 +0.4751555 0.005155668 0.2140411 +0.5225216 0.005155668 0.2140411 +0.5725335 0.005155668 0.2140411 +0.6252316 0.005155668 0.2140411 +0.6806558 0.005155668 0.2140411 +0.7388448 0.005155668 0.2140411 +0.7998369 0.005155668 0.2140411 +0.8636691 0.005155668 0.2140411 +0.9303782 0.005155668 0.2140411 +1 0.005155668 0.2140411 +0 0.009080105 0.2140411 +0.002418731 0.009080105 0.2140411 +0.005155668 0.009080105 0.2140411 +0.009080105 0.009080105 0.2140411 +0.01434988 0.009080105 0.2140411 +0.02107202 0.009080105 0.2140411 +0.02934285 0.009080105 0.2140411 +0.03925039 0.009080105 0.2140411 +0.05087609 0.009080105 0.2140411 +0.06429595 0.009080105 0.2140411 +0.07958143 0.009080105 0.2140411 +0.0968001 0.009080105 0.2140411 +0.1160161 0.009080105 0.2140411 +0.1372908 0.009080105 0.2140411 +0.1606827 0.009080105 0.2140411 +0.1862481 0.009080105 0.2140411 +0.2140411 0.009080105 0.2140411 +0.2441142 0.009080105 0.2140411 +0.2765176 0.009080105 0.2140411 +0.3113005 0.009080105 0.2140411 +0.3485102 0.009080105 0.2140411 +0.388193 0.009080105 0.2140411 +0.4303934 0.009080105 0.2140411 +0.4751555 0.009080105 0.2140411 +0.5225216 0.009080105 0.2140411 +0.5725335 0.009080105 0.2140411 +0.6252316 0.009080105 0.2140411 +0.6806558 0.009080105 0.2140411 +0.7388448 0.009080105 0.2140411 +0.7998369 0.009080105 0.2140411 +0.8636691 0.009080105 0.2140411 +0.9303782 0.009080105 0.2140411 +1 0.009080105 0.2140411 +0 0.01434988 0.2140411 +0.002418731 0.01434988 0.2140411 +0.005155668 0.01434988 0.2140411 +0.009080105 0.01434988 0.2140411 +0.01434988 0.01434988 0.2140411 +0.02107202 0.01434988 0.2140411 +0.02934285 0.01434988 0.2140411 +0.03925039 0.01434988 0.2140411 +0.05087609 0.01434988 0.2140411 +0.06429595 0.01434988 0.2140411 +0.07958143 0.01434988 0.2140411 +0.0968001 0.01434988 0.2140411 +0.1160161 0.01434988 0.2140411 +0.1372908 0.01434988 0.2140411 +0.1606827 0.01434988 0.2140411 +0.1862481 0.01434988 0.2140411 +0.2140411 0.01434988 0.2140411 +0.2441142 0.01434988 0.2140411 +0.2765176 0.01434988 0.2140411 +0.3113005 0.01434988 0.2140411 +0.3485102 0.01434988 0.2140411 +0.388193 0.01434988 0.2140411 +0.4303934 0.01434988 0.2140411 +0.4751555 0.01434988 0.2140411 +0.5225216 0.01434988 0.2140411 +0.5725335 0.01434988 0.2140411 +0.6252316 0.01434988 0.2140411 +0.6806558 0.01434988 0.2140411 +0.7388448 0.01434988 0.2140411 +0.7998369 0.01434988 0.2140411 +0.8636691 0.01434988 0.2140411 +0.9303782 0.01434988 0.2140411 +1 0.01434988 0.2140411 +0 0.02107202 0.2140411 +0.002418731 0.02107202 0.2140411 +0.005155668 0.02107202 0.2140411 +0.009080105 0.02107202 0.2140411 +0.01434988 0.02107202 0.2140411 +0.02107202 0.02107202 0.2140411 +0.02934285 0.02107202 0.2140411 +0.03925039 0.02107202 0.2140411 +0.05087609 0.02107202 0.2140411 +0.06429595 0.02107202 0.2140411 +0.07958143 0.02107202 0.2140411 +0.0968001 0.02107202 0.2140411 +0.1160161 0.02107202 0.2140411 +0.1372908 0.02107202 0.2140411 +0.1606827 0.02107202 0.2140411 +0.1862481 0.02107202 0.2140411 +0.2140411 0.02107202 0.2140411 +0.2441142 0.02107202 0.2140411 +0.2765176 0.02107202 0.2140411 +0.3113005 0.02107202 0.2140411 +0.3485102 0.02107202 0.2140411 +0.388193 0.02107202 0.2140411 +0.4303934 0.02107202 0.2140411 +0.4751555 0.02107202 0.2140411 +0.5225216 0.02107202 0.2140411 +0.5725335 0.02107202 0.2140411 +0.6252316 0.02107202 0.2140411 +0.6806558 0.02107202 0.2140411 +0.7388448 0.02107202 0.2140411 +0.7998369 0.02107202 0.2140411 +0.8636691 0.02107202 0.2140411 +0.9303782 0.02107202 0.2140411 +1 0.02107202 0.2140411 +0 0.02934285 0.2140411 +0.002418731 0.02934285 0.2140411 +0.005155668 0.02934285 0.2140411 +0.009080105 0.02934285 0.2140411 +0.01434988 0.02934285 0.2140411 +0.02107202 0.02934285 0.2140411 +0.02934285 0.02934285 0.2140411 +0.03925039 0.02934285 0.2140411 +0.05087609 0.02934285 0.2140411 +0.06429595 0.02934285 0.2140411 +0.07958143 0.02934285 0.2140411 +0.0968001 0.02934285 0.2140411 +0.1160161 0.02934285 0.2140411 +0.1372908 0.02934285 0.2140411 +0.1606827 0.02934285 0.2140411 +0.1862481 0.02934285 0.2140411 +0.2140411 0.02934285 0.2140411 +0.2441142 0.02934285 0.2140411 +0.2765176 0.02934285 0.2140411 +0.3113005 0.02934285 0.2140411 +0.3485102 0.02934285 0.2140411 +0.388193 0.02934285 0.2140411 +0.4303934 0.02934285 0.2140411 +0.4751555 0.02934285 0.2140411 +0.5225216 0.02934285 0.2140411 +0.5725335 0.02934285 0.2140411 +0.6252316 0.02934285 0.2140411 +0.6806558 0.02934285 0.2140411 +0.7388448 0.02934285 0.2140411 +0.7998369 0.02934285 0.2140411 +0.8636691 0.02934285 0.2140411 +0.9303782 0.02934285 0.2140411 +1 0.02934285 0.2140411 +0 0.03925039 0.2140411 +0.002418731 0.03925039 0.2140411 +0.005155668 0.03925039 0.2140411 +0.009080105 0.03925039 0.2140411 +0.01434988 0.03925039 0.2140411 +0.02107202 0.03925039 0.2140411 +0.02934285 0.03925039 0.2140411 +0.03925039 0.03925039 0.2140411 +0.05087609 0.03925039 0.2140411 +0.06429595 0.03925039 0.2140411 +0.07958143 0.03925039 0.2140411 +0.0968001 0.03925039 0.2140411 +0.1160161 0.03925039 0.2140411 +0.1372908 0.03925039 0.2140411 +0.1606827 0.03925039 0.2140411 +0.1862481 0.03925039 0.2140411 +0.2140411 0.03925039 0.2140411 +0.2441142 0.03925039 0.2140411 +0.2765176 0.03925039 0.2140411 +0.3113005 0.03925039 0.2140411 +0.3485102 0.03925039 0.2140411 +0.388193 0.03925039 0.2140411 +0.4303934 0.03925039 0.2140411 +0.4751555 0.03925039 0.2140411 +0.5225216 0.03925039 0.2140411 +0.5725335 0.03925039 0.2140411 +0.6252316 0.03925039 0.2140411 +0.6806558 0.03925039 0.2140411 +0.7388448 0.03925039 0.2140411 +0.7998369 0.03925039 0.2140411 +0.8636691 0.03925039 0.2140411 +0.9303782 0.03925039 0.2140411 +1 0.03925039 0.2140411 +0 0.05087609 0.2140411 +0.002418731 0.05087609 0.2140411 +0.005155668 0.05087609 0.2140411 +0.009080105 0.05087609 0.2140411 +0.01434988 0.05087609 0.2140411 +0.02107202 0.05087609 0.2140411 +0.02934285 0.05087609 0.2140411 +0.03925039 0.05087609 0.2140411 +0.05087609 0.05087609 0.2140411 +0.06429595 0.05087609 0.2140411 +0.07958143 0.05087609 0.2140411 +0.0968001 0.05087609 0.2140411 +0.1160161 0.05087609 0.2140411 +0.1372908 0.05087609 0.2140411 +0.1606827 0.05087609 0.2140411 +0.1862481 0.05087609 0.2140411 +0.2140411 0.05087609 0.2140411 +0.2441142 0.05087609 0.2140411 +0.2765176 0.05087609 0.2140411 +0.3113005 0.05087609 0.2140411 +0.3485102 0.05087609 0.2140411 +0.388193 0.05087609 0.2140411 +0.4303934 0.05087609 0.2140411 +0.4751555 0.05087609 0.2140411 +0.5225216 0.05087609 0.2140411 +0.5725335 0.05087609 0.2140411 +0.6252316 0.05087609 0.2140411 +0.6806558 0.05087609 0.2140411 +0.7388448 0.05087609 0.2140411 +0.7998369 0.05087609 0.2140411 +0.8636691 0.05087609 0.2140411 +0.9303782 0.05087609 0.2140411 +1 0.05087609 0.2140411 +0 0.06429595 0.2140411 +0.002418731 0.06429595 0.2140411 +0.005155668 0.06429595 0.2140411 +0.009080105 0.06429595 0.2140411 +0.01434988 0.06429595 0.2140411 +0.02107202 0.06429595 0.2140411 +0.02934285 0.06429595 0.2140411 +0.03925039 0.06429595 0.2140411 +0.05087609 0.06429595 0.2140411 +0.06429595 0.06429595 0.2140411 +0.07958143 0.06429595 0.2140411 +0.0968001 0.06429595 0.2140411 +0.1160161 0.06429595 0.2140411 +0.1372908 0.06429595 0.2140411 +0.1606827 0.06429595 0.2140411 +0.1862481 0.06429595 0.2140411 +0.2140411 0.06429595 0.2140411 +0.2441142 0.06429595 0.2140411 +0.2765176 0.06429595 0.2140411 +0.3113005 0.06429595 0.2140411 +0.3485102 0.06429595 0.2140411 +0.388193 0.06429595 0.2140411 +0.4303934 0.06429595 0.2140411 +0.4751555 0.06429595 0.2140411 +0.5225216 0.06429595 0.2140411 +0.5725335 0.06429595 0.2140411 +0.6252316 0.06429595 0.2140411 +0.6806558 0.06429595 0.2140411 +0.7388448 0.06429595 0.2140411 +0.7998369 0.06429595 0.2140411 +0.8636691 0.06429595 0.2140411 +0.9303782 0.06429595 0.2140411 +1 0.06429595 0.2140411 +0 0.07958143 0.2140411 +0.002418731 0.07958143 0.2140411 +0.005155668 0.07958143 0.2140411 +0.009080105 0.07958143 0.2140411 +0.01434988 0.07958143 0.2140411 +0.02107202 0.07958143 0.2140411 +0.02934285 0.07958143 0.2140411 +0.03925039 0.07958143 0.2140411 +0.05087609 0.07958143 0.2140411 +0.06429595 0.07958143 0.2140411 +0.07958143 0.07958143 0.2140411 +0.0968001 0.07958143 0.2140411 +0.1160161 0.07958143 0.2140411 +0.1372908 0.07958143 0.2140411 +0.1606827 0.07958143 0.2140411 +0.1862481 0.07958143 0.2140411 +0.2140411 0.07958143 0.2140411 +0.2441142 0.07958143 0.2140411 +0.2765176 0.07958143 0.2140411 +0.3113005 0.07958143 0.2140411 +0.3485102 0.07958143 0.2140411 +0.388193 0.07958143 0.2140411 +0.4303934 0.07958143 0.2140411 +0.4751555 0.07958143 0.2140411 +0.5225216 0.07958143 0.2140411 +0.5725335 0.07958143 0.2140411 +0.6252316 0.07958143 0.2140411 +0.6806558 0.07958143 0.2140411 +0.7388448 0.07958143 0.2140411 +0.7998369 0.07958143 0.2140411 +0.8636691 0.07958143 0.2140411 +0.9303782 0.07958143 0.2140411 +1 0.07958143 0.2140411 +0 0.0968001 0.2140411 +0.002418731 0.0968001 0.2140411 +0.005155668 0.0968001 0.2140411 +0.009080105 0.0968001 0.2140411 +0.01434988 0.0968001 0.2140411 +0.02107202 0.0968001 0.2140411 +0.02934285 0.0968001 0.2140411 +0.03925039 0.0968001 0.2140411 +0.05087609 0.0968001 0.2140411 +0.06429595 0.0968001 0.2140411 +0.07958143 0.0968001 0.2140411 +0.0968001 0.0968001 0.2140411 +0.1160161 0.0968001 0.2140411 +0.1372908 0.0968001 0.2140411 +0.1606827 0.0968001 0.2140411 +0.1862481 0.0968001 0.2140411 +0.2140411 0.0968001 0.2140411 +0.2441142 0.0968001 0.2140411 +0.2765176 0.0968001 0.2140411 +0.3113005 0.0968001 0.2140411 +0.3485102 0.0968001 0.2140411 +0.388193 0.0968001 0.2140411 +0.4303934 0.0968001 0.2140411 +0.4751555 0.0968001 0.2140411 +0.5225216 0.0968001 0.2140411 +0.5725335 0.0968001 0.2140411 +0.6252316 0.0968001 0.2140411 +0.6806558 0.0968001 0.2140411 +0.7388448 0.0968001 0.2140411 +0.7998369 0.0968001 0.2140411 +0.8636691 0.0968001 0.2140411 +0.9303782 0.0968001 0.2140411 +1 0.0968001 0.2140411 +0 0.1160161 0.2140411 +0.002418731 0.1160161 0.2140411 +0.005155668 0.1160161 0.2140411 +0.009080105 0.1160161 0.2140411 +0.01434988 0.1160161 0.2140411 +0.02107202 0.1160161 0.2140411 +0.02934285 0.1160161 0.2140411 +0.03925039 0.1160161 0.2140411 +0.05087609 0.1160161 0.2140411 +0.06429595 0.1160161 0.2140411 +0.07958143 0.1160161 0.2140411 +0.0968001 0.1160161 0.2140411 +0.1160161 0.1160161 0.2140411 +0.1372908 0.1160161 0.2140411 +0.1606827 0.1160161 0.2140411 +0.1862481 0.1160161 0.2140411 +0.2140411 0.1160161 0.2140411 +0.2441142 0.1160161 0.2140411 +0.2765176 0.1160161 0.2140411 +0.3113005 0.1160161 0.2140411 +0.3485102 0.1160161 0.2140411 +0.388193 0.1160161 0.2140411 +0.4303934 0.1160161 0.2140411 +0.4751555 0.1160161 0.2140411 +0.5225216 0.1160161 0.2140411 +0.5725335 0.1160161 0.2140411 +0.6252316 0.1160161 0.2140411 +0.6806558 0.1160161 0.2140411 +0.7388448 0.1160161 0.2140411 +0.7998369 0.1160161 0.2140411 +0.8636691 0.1160161 0.2140411 +0.9303782 0.1160161 0.2140411 +1 0.1160161 0.2140411 +0 0.1372908 0.2140411 +0.002418731 0.1372908 0.2140411 +0.005155668 0.1372908 0.2140411 +0.009080105 0.1372908 0.2140411 +0.01434988 0.1372908 0.2140411 +0.02107202 0.1372908 0.2140411 +0.02934285 0.1372908 0.2140411 +0.03925039 0.1372908 0.2140411 +0.05087609 0.1372908 0.2140411 +0.06429595 0.1372908 0.2140411 +0.07958143 0.1372908 0.2140411 +0.0968001 0.1372908 0.2140411 +0.1160161 0.1372908 0.2140411 +0.1372908 0.1372908 0.2140411 +0.1606827 0.1372908 0.2140411 +0.1862481 0.1372908 0.2140411 +0.2140411 0.1372908 0.2140411 +0.2441142 0.1372908 0.2140411 +0.2765176 0.1372908 0.2140411 +0.3113005 0.1372908 0.2140411 +0.3485102 0.1372908 0.2140411 +0.388193 0.1372908 0.2140411 +0.4303934 0.1372908 0.2140411 +0.4751555 0.1372908 0.2140411 +0.5225216 0.1372908 0.2140411 +0.5725335 0.1372908 0.2140411 +0.6252316 0.1372908 0.2140411 +0.6806558 0.1372908 0.2140411 +0.7388448 0.1372908 0.2140411 +0.7998369 0.1372908 0.2140411 +0.8636691 0.1372908 0.2140411 +0.9303782 0.1372908 0.2140411 +1 0.1372908 0.2140411 +0 0.1606827 0.2140411 +0.002418731 0.1606827 0.2140411 +0.005155668 0.1606827 0.2140411 +0.009080105 0.1606827 0.2140411 +0.01434988 0.1606827 0.2140411 +0.02107202 0.1606827 0.2140411 +0.02934285 0.1606827 0.2140411 +0.03925039 0.1606827 0.2140411 +0.05087609 0.1606827 0.2140411 +0.06429595 0.1606827 0.2140411 +0.07958143 0.1606827 0.2140411 +0.0968001 0.1606827 0.2140411 +0.1160161 0.1606827 0.2140411 +0.1372908 0.1606827 0.2140411 +0.1606827 0.1606827 0.2140411 +0.1862481 0.1606827 0.2140411 +0.2140411 0.1606827 0.2140411 +0.2441142 0.1606827 0.2140411 +0.2765176 0.1606827 0.2140411 +0.3113005 0.1606827 0.2140411 +0.3485102 0.1606827 0.2140411 +0.388193 0.1606827 0.2140411 +0.4303934 0.1606827 0.2140411 +0.4751555 0.1606827 0.2140411 +0.5225216 0.1606827 0.2140411 +0.5725335 0.1606827 0.2140411 +0.6252316 0.1606827 0.2140411 +0.6806558 0.1606827 0.2140411 +0.7388448 0.1606827 0.2140411 +0.7998369 0.1606827 0.2140411 +0.8636691 0.1606827 0.2140411 +0.9303782 0.1606827 0.2140411 +1 0.1606827 0.2140411 +0 0.1862481 0.2140411 +0.002418731 0.1862481 0.2140411 +0.005155668 0.1862481 0.2140411 +0.009080105 0.1862481 0.2140411 +0.01434988 0.1862481 0.2140411 +0.02107202 0.1862481 0.2140411 +0.02934285 0.1862481 0.2140411 +0.03925039 0.1862481 0.2140411 +0.05087609 0.1862481 0.2140411 +0.06429595 0.1862481 0.2140411 +0.07958143 0.1862481 0.2140411 +0.0968001 0.1862481 0.2140411 +0.1160161 0.1862481 0.2140411 +0.1372908 0.1862481 0.2140411 +0.1606827 0.1862481 0.2140411 +0.1862481 0.1862481 0.2140411 +0.2140411 0.1862481 0.2140411 +0.2441142 0.1862481 0.2140411 +0.2765176 0.1862481 0.2140411 +0.3113005 0.1862481 0.2140411 +0.3485102 0.1862481 0.2140411 +0.388193 0.1862481 0.2140411 +0.4303934 0.1862481 0.2140411 +0.4751555 0.1862481 0.2140411 +0.5225216 0.1862481 0.2140411 +0.5725335 0.1862481 0.2140411 +0.6252316 0.1862481 0.2140411 +0.6806558 0.1862481 0.2140411 +0.7388448 0.1862481 0.2140411 +0.7998369 0.1862481 0.2140411 +0.8636691 0.1862481 0.2140411 +0.9303782 0.1862481 0.2140411 +1 0.1862481 0.2140411 +0 0.2140411 0.2140411 +0.002418731 0.2140411 0.2140411 +0.005155668 0.2140411 0.2140411 +0.009080105 0.2140411 0.2140411 +0.01434988 0.2140411 0.2140411 +0.02107202 0.2140411 0.2140411 +0.02934285 0.2140411 0.2140411 +0.03925039 0.2140411 0.2140411 +0.05087609 0.2140411 0.2140411 +0.06429595 0.2140411 0.2140411 +0.07958143 0.2140411 0.2140411 +0.0968001 0.2140411 0.2140411 +0.1160161 0.2140411 0.2140411 +0.1372908 0.2140411 0.2140411 +0.1606827 0.2140411 0.2140411 +0.1862481 0.2140411 0.2140411 +0.2140411 0.2140411 0.2140411 +0.2441142 0.2140411 0.2140411 +0.2765176 0.2140411 0.2140411 +0.3113005 0.2140411 0.2140411 +0.3485102 0.2140411 0.2140411 +0.388193 0.2140411 0.2140411 +0.4303934 0.2140411 0.2140411 +0.4751555 0.2140411 0.2140411 +0.5225216 0.2140411 0.2140411 +0.5725335 0.2140411 0.2140411 +0.6252316 0.2140411 0.2140411 +0.6806558 0.2140411 0.2140411 +0.7388448 0.2140411 0.2140411 +0.7998369 0.2140411 0.2140411 +0.8636691 0.2140411 0.2140411 +0.9303782 0.2140411 0.2140411 +1 0.2140411 0.2140411 +0 0.2441142 0.2140411 +0.002418731 0.2441142 0.2140411 +0.005155668 0.2441142 0.2140411 +0.009080105 0.2441142 0.2140411 +0.01434988 0.2441142 0.2140411 +0.02107202 0.2441142 0.2140411 +0.02934285 0.2441142 0.2140411 +0.03925039 0.2441142 0.2140411 +0.05087609 0.2441142 0.2140411 +0.06429595 0.2441142 0.2140411 +0.07958143 0.2441142 0.2140411 +0.0968001 0.2441142 0.2140411 +0.1160161 0.2441142 0.2140411 +0.1372908 0.2441142 0.2140411 +0.1606827 0.2441142 0.2140411 +0.1862481 0.2441142 0.2140411 +0.2140411 0.2441142 0.2140411 +0.2441142 0.2441142 0.2140411 +0.2765176 0.2441142 0.2140411 +0.3113005 0.2441142 0.2140411 +0.3485102 0.2441142 0.2140411 +0.388193 0.2441142 0.2140411 +0.4303934 0.2441142 0.2140411 +0.4751555 0.2441142 0.2140411 +0.5225216 0.2441142 0.2140411 +0.5725335 0.2441142 0.2140411 +0.6252316 0.2441142 0.2140411 +0.6806558 0.2441142 0.2140411 +0.7388448 0.2441142 0.2140411 +0.7998369 0.2441142 0.2140411 +0.8636691 0.2441142 0.2140411 +0.9303782 0.2441142 0.2140411 +1 0.2441142 0.2140411 +0 0.2765176 0.2140411 +0.002418731 0.2765176 0.2140411 +0.005155668 0.2765176 0.2140411 +0.009080105 0.2765176 0.2140411 +0.01434988 0.2765176 0.2140411 +0.02107202 0.2765176 0.2140411 +0.02934285 0.2765176 0.2140411 +0.03925039 0.2765176 0.2140411 +0.05087609 0.2765176 0.2140411 +0.06429595 0.2765176 0.2140411 +0.07958143 0.2765176 0.2140411 +0.0968001 0.2765176 0.2140411 +0.1160161 0.2765176 0.2140411 +0.1372908 0.2765176 0.2140411 +0.1606827 0.2765176 0.2140411 +0.1862481 0.2765176 0.2140411 +0.2140411 0.2765176 0.2140411 +0.2441142 0.2765176 0.2140411 +0.2765176 0.2765176 0.2140411 +0.3113005 0.2765176 0.2140411 +0.3485102 0.2765176 0.2140411 +0.388193 0.2765176 0.2140411 +0.4303934 0.2765176 0.2140411 +0.4751555 0.2765176 0.2140411 +0.5225216 0.2765176 0.2140411 +0.5725335 0.2765176 0.2140411 +0.6252316 0.2765176 0.2140411 +0.6806558 0.2765176 0.2140411 +0.7388448 0.2765176 0.2140411 +0.7998369 0.2765176 0.2140411 +0.8636691 0.2765176 0.2140411 +0.9303782 0.2765176 0.2140411 +1 0.2765176 0.2140411 +0 0.3113005 0.2140411 +0.002418731 0.3113005 0.2140411 +0.005155668 0.3113005 0.2140411 +0.009080105 0.3113005 0.2140411 +0.01434988 0.3113005 0.2140411 +0.02107202 0.3113005 0.2140411 +0.02934285 0.3113005 0.2140411 +0.03925039 0.3113005 0.2140411 +0.05087609 0.3113005 0.2140411 +0.06429595 0.3113005 0.2140411 +0.07958143 0.3113005 0.2140411 +0.0968001 0.3113005 0.2140411 +0.1160161 0.3113005 0.2140411 +0.1372908 0.3113005 0.2140411 +0.1606827 0.3113005 0.2140411 +0.1862481 0.3113005 0.2140411 +0.2140411 0.3113005 0.2140411 +0.2441142 0.3113005 0.2140411 +0.2765176 0.3113005 0.2140411 +0.3113005 0.3113005 0.2140411 +0.3485102 0.3113005 0.2140411 +0.388193 0.3113005 0.2140411 +0.4303934 0.3113005 0.2140411 +0.4751555 0.3113005 0.2140411 +0.5225216 0.3113005 0.2140411 +0.5725335 0.3113005 0.2140411 +0.6252316 0.3113005 0.2140411 +0.6806558 0.3113005 0.2140411 +0.7388448 0.3113005 0.2140411 +0.7998369 0.3113005 0.2140411 +0.8636691 0.3113005 0.2140411 +0.9303782 0.3113005 0.2140411 +1 0.3113005 0.2140411 +0 0.3485102 0.2140411 +0.002418731 0.3485102 0.2140411 +0.005155668 0.3485102 0.2140411 +0.009080105 0.3485102 0.2140411 +0.01434988 0.3485102 0.2140411 +0.02107202 0.3485102 0.2140411 +0.02934285 0.3485102 0.2140411 +0.03925039 0.3485102 0.2140411 +0.05087609 0.3485102 0.2140411 +0.06429595 0.3485102 0.2140411 +0.07958143 0.3485102 0.2140411 +0.0968001 0.3485102 0.2140411 +0.1160161 0.3485102 0.2140411 +0.1372908 0.3485102 0.2140411 +0.1606827 0.3485102 0.2140411 +0.1862481 0.3485102 0.2140411 +0.2140411 0.3485102 0.2140411 +0.2441142 0.3485102 0.2140411 +0.2765176 0.3485102 0.2140411 +0.3113005 0.3485102 0.2140411 +0.3485102 0.3485102 0.2140411 +0.388193 0.3485102 0.2140411 +0.4303934 0.3485102 0.2140411 +0.4751555 0.3485102 0.2140411 +0.5225216 0.3485102 0.2140411 +0.5725335 0.3485102 0.2140411 +0.6252316 0.3485102 0.2140411 +0.6806558 0.3485102 0.2140411 +0.7388448 0.3485102 0.2140411 +0.7998369 0.3485102 0.2140411 +0.8636691 0.3485102 0.2140411 +0.9303782 0.3485102 0.2140411 +1 0.3485102 0.2140411 +0 0.388193 0.2140411 +0.002418731 0.388193 0.2140411 +0.005155668 0.388193 0.2140411 +0.009080105 0.388193 0.2140411 +0.01434988 0.388193 0.2140411 +0.02107202 0.388193 0.2140411 +0.02934285 0.388193 0.2140411 +0.03925039 0.388193 0.2140411 +0.05087609 0.388193 0.2140411 +0.06429595 0.388193 0.2140411 +0.07958143 0.388193 0.2140411 +0.0968001 0.388193 0.2140411 +0.1160161 0.388193 0.2140411 +0.1372908 0.388193 0.2140411 +0.1606827 0.388193 0.2140411 +0.1862481 0.388193 0.2140411 +0.2140411 0.388193 0.2140411 +0.2441142 0.388193 0.2140411 +0.2765176 0.388193 0.2140411 +0.3113005 0.388193 0.2140411 +0.3485102 0.388193 0.2140411 +0.388193 0.388193 0.2140411 +0.4303934 0.388193 0.2140411 +0.4751555 0.388193 0.2140411 +0.5225216 0.388193 0.2140411 +0.5725335 0.388193 0.2140411 +0.6252316 0.388193 0.2140411 +0.6806558 0.388193 0.2140411 +0.7388448 0.388193 0.2140411 +0.7998369 0.388193 0.2140411 +0.8636691 0.388193 0.2140411 +0.9303782 0.388193 0.2140411 +1 0.388193 0.2140411 +0 0.4303934 0.2140411 +0.002418731 0.4303934 0.2140411 +0.005155668 0.4303934 0.2140411 +0.009080105 0.4303934 0.2140411 +0.01434988 0.4303934 0.2140411 +0.02107202 0.4303934 0.2140411 +0.02934285 0.4303934 0.2140411 +0.03925039 0.4303934 0.2140411 +0.05087609 0.4303934 0.2140411 +0.06429595 0.4303934 0.2140411 +0.07958143 0.4303934 0.2140411 +0.0968001 0.4303934 0.2140411 +0.1160161 0.4303934 0.2140411 +0.1372908 0.4303934 0.2140411 +0.1606827 0.4303934 0.2140411 +0.1862481 0.4303934 0.2140411 +0.2140411 0.4303934 0.2140411 +0.2441142 0.4303934 0.2140411 +0.2765176 0.4303934 0.2140411 +0.3113005 0.4303934 0.2140411 +0.3485102 0.4303934 0.2140411 +0.388193 0.4303934 0.2140411 +0.4303934 0.4303934 0.2140411 +0.4751555 0.4303934 0.2140411 +0.5225216 0.4303934 0.2140411 +0.5725335 0.4303934 0.2140411 +0.6252316 0.4303934 0.2140411 +0.6806558 0.4303934 0.2140411 +0.7388448 0.4303934 0.2140411 +0.7998369 0.4303934 0.2140411 +0.8636691 0.4303934 0.2140411 +0.9303782 0.4303934 0.2140411 +1 0.4303934 0.2140411 +0 0.4751555 0.2140411 +0.002418731 0.4751555 0.2140411 +0.005155668 0.4751555 0.2140411 +0.009080105 0.4751555 0.2140411 +0.01434988 0.4751555 0.2140411 +0.02107202 0.4751555 0.2140411 +0.02934285 0.4751555 0.2140411 +0.03925039 0.4751555 0.2140411 +0.05087609 0.4751555 0.2140411 +0.06429595 0.4751555 0.2140411 +0.07958143 0.4751555 0.2140411 +0.0968001 0.4751555 0.2140411 +0.1160161 0.4751555 0.2140411 +0.1372908 0.4751555 0.2140411 +0.1606827 0.4751555 0.2140411 +0.1862481 0.4751555 0.2140411 +0.2140411 0.4751555 0.2140411 +0.2441142 0.4751555 0.2140411 +0.2765176 0.4751555 0.2140411 +0.3113005 0.4751555 0.2140411 +0.3485102 0.4751555 0.2140411 +0.388193 0.4751555 0.2140411 +0.4303934 0.4751555 0.2140411 +0.4751555 0.4751555 0.2140411 +0.5225216 0.4751555 0.2140411 +0.5725335 0.4751555 0.2140411 +0.6252316 0.4751555 0.2140411 +0.6806558 0.4751555 0.2140411 +0.7388448 0.4751555 0.2140411 +0.7998369 0.4751555 0.2140411 +0.8636691 0.4751555 0.2140411 +0.9303782 0.4751555 0.2140411 +1 0.4751555 0.2140411 +0 0.5225216 0.2140411 +0.002418731 0.5225216 0.2140411 +0.005155668 0.5225216 0.2140411 +0.009080105 0.5225216 0.2140411 +0.01434988 0.5225216 0.2140411 +0.02107202 0.5225216 0.2140411 +0.02934285 0.5225216 0.2140411 +0.03925039 0.5225216 0.2140411 +0.05087609 0.5225216 0.2140411 +0.06429595 0.5225216 0.2140411 +0.07958143 0.5225216 0.2140411 +0.0968001 0.5225216 0.2140411 +0.1160161 0.5225216 0.2140411 +0.1372908 0.5225216 0.2140411 +0.1606827 0.5225216 0.2140411 +0.1862481 0.5225216 0.2140411 +0.2140411 0.5225216 0.2140411 +0.2441142 0.5225216 0.2140411 +0.2765176 0.5225216 0.2140411 +0.3113005 0.5225216 0.2140411 +0.3485102 0.5225216 0.2140411 +0.388193 0.5225216 0.2140411 +0.4303934 0.5225216 0.2140411 +0.4751555 0.5225216 0.2140411 +0.5225216 0.5225216 0.2140411 +0.5725335 0.5225216 0.2140411 +0.6252316 0.5225216 0.2140411 +0.6806558 0.5225216 0.2140411 +0.7388448 0.5225216 0.2140411 +0.7998369 0.5225216 0.2140411 +0.8636691 0.5225216 0.2140411 +0.9303782 0.5225216 0.2140411 +1 0.5225216 0.2140411 +0 0.5725335 0.2140411 +0.002418731 0.5725335 0.2140411 +0.005155668 0.5725335 0.2140411 +0.009080105 0.5725335 0.2140411 +0.01434988 0.5725335 0.2140411 +0.02107202 0.5725335 0.2140411 +0.02934285 0.5725335 0.2140411 +0.03925039 0.5725335 0.2140411 +0.05087609 0.5725335 0.2140411 +0.06429595 0.5725335 0.2140411 +0.07958143 0.5725335 0.2140411 +0.0968001 0.5725335 0.2140411 +0.1160161 0.5725335 0.2140411 +0.1372908 0.5725335 0.2140411 +0.1606827 0.5725335 0.2140411 +0.1862481 0.5725335 0.2140411 +0.2140411 0.5725335 0.2140411 +0.2441142 0.5725335 0.2140411 +0.2765176 0.5725335 0.2140411 +0.3113005 0.5725335 0.2140411 +0.3485102 0.5725335 0.2140411 +0.388193 0.5725335 0.2140411 +0.4303934 0.5725335 0.2140411 +0.4751555 0.5725335 0.2140411 +0.5225216 0.5725335 0.2140411 +0.5725335 0.5725335 0.2140411 +0.6252316 0.5725335 0.2140411 +0.6806558 0.5725335 0.2140411 +0.7388448 0.5725335 0.2140411 +0.7998369 0.5725335 0.2140411 +0.8636691 0.5725335 0.2140411 +0.9303782 0.5725335 0.2140411 +1 0.5725335 0.2140411 +0 0.6252316 0.2140411 +0.002418731 0.6252316 0.2140411 +0.005155668 0.6252316 0.2140411 +0.009080105 0.6252316 0.2140411 +0.01434988 0.6252316 0.2140411 +0.02107202 0.6252316 0.2140411 +0.02934285 0.6252316 0.2140411 +0.03925039 0.6252316 0.2140411 +0.05087609 0.6252316 0.2140411 +0.06429595 0.6252316 0.2140411 +0.07958143 0.6252316 0.2140411 +0.0968001 0.6252316 0.2140411 +0.1160161 0.6252316 0.2140411 +0.1372908 0.6252316 0.2140411 +0.1606827 0.6252316 0.2140411 +0.1862481 0.6252316 0.2140411 +0.2140411 0.6252316 0.2140411 +0.2441142 0.6252316 0.2140411 +0.2765176 0.6252316 0.2140411 +0.3113005 0.6252316 0.2140411 +0.3485102 0.6252316 0.2140411 +0.388193 0.6252316 0.2140411 +0.4303934 0.6252316 0.2140411 +0.4751555 0.6252316 0.2140411 +0.5225216 0.6252316 0.2140411 +0.5725335 0.6252316 0.2140411 +0.6252316 0.6252316 0.2140411 +0.6806558 0.6252316 0.2140411 +0.7388448 0.6252316 0.2140411 +0.7998369 0.6252316 0.2140411 +0.8636691 0.6252316 0.2140411 +0.9303782 0.6252316 0.2140411 +1 0.6252316 0.2140411 +0 0.6806558 0.2140411 +0.002418731 0.6806558 0.2140411 +0.005155668 0.6806558 0.2140411 +0.009080105 0.6806558 0.2140411 +0.01434988 0.6806558 0.2140411 +0.02107202 0.6806558 0.2140411 +0.02934285 0.6806558 0.2140411 +0.03925039 0.6806558 0.2140411 +0.05087609 0.6806558 0.2140411 +0.06429595 0.6806558 0.2140411 +0.07958143 0.6806558 0.2140411 +0.0968001 0.6806558 0.2140411 +0.1160161 0.6806558 0.2140411 +0.1372908 0.6806558 0.2140411 +0.1606827 0.6806558 0.2140411 +0.1862481 0.6806558 0.2140411 +0.2140411 0.6806558 0.2140411 +0.2441142 0.6806558 0.2140411 +0.2765176 0.6806558 0.2140411 +0.3113005 0.6806558 0.2140411 +0.3485102 0.6806558 0.2140411 +0.388193 0.6806558 0.2140411 +0.4303934 0.6806558 0.2140411 +0.4751555 0.6806558 0.2140411 +0.5225216 0.6806558 0.2140411 +0.5725335 0.6806558 0.2140411 +0.6252316 0.6806558 0.2140411 +0.6806558 0.6806558 0.2140411 +0.7388448 0.6806558 0.2140411 +0.7998369 0.6806558 0.2140411 +0.8636691 0.6806558 0.2140411 +0.9303782 0.6806558 0.2140411 +1 0.6806558 0.2140411 +0 0.7388448 0.2140411 +0.002418731 0.7388448 0.2140411 +0.005155668 0.7388448 0.2140411 +0.009080105 0.7388448 0.2140411 +0.01434988 0.7388448 0.2140411 +0.02107202 0.7388448 0.2140411 +0.02934285 0.7388448 0.2140411 +0.03925039 0.7388448 0.2140411 +0.05087609 0.7388448 0.2140411 +0.06429595 0.7388448 0.2140411 +0.07958143 0.7388448 0.2140411 +0.0968001 0.7388448 0.2140411 +0.1160161 0.7388448 0.2140411 +0.1372908 0.7388448 0.2140411 +0.1606827 0.7388448 0.2140411 +0.1862481 0.7388448 0.2140411 +0.2140411 0.7388448 0.2140411 +0.2441142 0.7388448 0.2140411 +0.2765176 0.7388448 0.2140411 +0.3113005 0.7388448 0.2140411 +0.3485102 0.7388448 0.2140411 +0.388193 0.7388448 0.2140411 +0.4303934 0.7388448 0.2140411 +0.4751555 0.7388448 0.2140411 +0.5225216 0.7388448 0.2140411 +0.5725335 0.7388448 0.2140411 +0.6252316 0.7388448 0.2140411 +0.6806558 0.7388448 0.2140411 +0.7388448 0.7388448 0.2140411 +0.7998369 0.7388448 0.2140411 +0.8636691 0.7388448 0.2140411 +0.9303782 0.7388448 0.2140411 +1 0.7388448 0.2140411 +0 0.7998369 0.2140411 +0.002418731 0.7998369 0.2140411 +0.005155668 0.7998369 0.2140411 +0.009080105 0.7998369 0.2140411 +0.01434988 0.7998369 0.2140411 +0.02107202 0.7998369 0.2140411 +0.02934285 0.7998369 0.2140411 +0.03925039 0.7998369 0.2140411 +0.05087609 0.7998369 0.2140411 +0.06429595 0.7998369 0.2140411 +0.07958143 0.7998369 0.2140411 +0.0968001 0.7998369 0.2140411 +0.1160161 0.7998369 0.2140411 +0.1372908 0.7998369 0.2140411 +0.1606827 0.7998369 0.2140411 +0.1862481 0.7998369 0.2140411 +0.2140411 0.7998369 0.2140411 +0.2441142 0.7998369 0.2140411 +0.2765176 0.7998369 0.2140411 +0.3113005 0.7998369 0.2140411 +0.3485102 0.7998369 0.2140411 +0.388193 0.7998369 0.2140411 +0.4303934 0.7998369 0.2140411 +0.4751555 0.7998369 0.2140411 +0.5225216 0.7998369 0.2140411 +0.5725335 0.7998369 0.2140411 +0.6252316 0.7998369 0.2140411 +0.6806558 0.7998369 0.2140411 +0.7388448 0.7998369 0.2140411 +0.7998369 0.7998369 0.2140411 +0.8636691 0.7998369 0.2140411 +0.9303782 0.7998369 0.2140411 +1 0.7998369 0.2140411 +0 0.8636691 0.2140411 +0.002418731 0.8636691 0.2140411 +0.005155668 0.8636691 0.2140411 +0.009080105 0.8636691 0.2140411 +0.01434988 0.8636691 0.2140411 +0.02107202 0.8636691 0.2140411 +0.02934285 0.8636691 0.2140411 +0.03925039 0.8636691 0.2140411 +0.05087609 0.8636691 0.2140411 +0.06429595 0.8636691 0.2140411 +0.07958143 0.8636691 0.2140411 +0.0968001 0.8636691 0.2140411 +0.1160161 0.8636691 0.2140411 +0.1372908 0.8636691 0.2140411 +0.1606827 0.8636691 0.2140411 +0.1862481 0.8636691 0.2140411 +0.2140411 0.8636691 0.2140411 +0.2441142 0.8636691 0.2140411 +0.2765176 0.8636691 0.2140411 +0.3113005 0.8636691 0.2140411 +0.3485102 0.8636691 0.2140411 +0.388193 0.8636691 0.2140411 +0.4303934 0.8636691 0.2140411 +0.4751555 0.8636691 0.2140411 +0.5225216 0.8636691 0.2140411 +0.5725335 0.8636691 0.2140411 +0.6252316 0.8636691 0.2140411 +0.6806558 0.8636691 0.2140411 +0.7388448 0.8636691 0.2140411 +0.7998369 0.8636691 0.2140411 +0.8636691 0.8636691 0.2140411 +0.9303782 0.8636691 0.2140411 +1 0.8636691 0.2140411 +0 0.9303782 0.2140411 +0.002418731 0.9303782 0.2140411 +0.005155668 0.9303782 0.2140411 +0.009080105 0.9303782 0.2140411 +0.01434988 0.9303782 0.2140411 +0.02107202 0.9303782 0.2140411 +0.02934285 0.9303782 0.2140411 +0.03925039 0.9303782 0.2140411 +0.05087609 0.9303782 0.2140411 +0.06429595 0.9303782 0.2140411 +0.07958143 0.9303782 0.2140411 +0.0968001 0.9303782 0.2140411 +0.1160161 0.9303782 0.2140411 +0.1372908 0.9303782 0.2140411 +0.1606827 0.9303782 0.2140411 +0.1862481 0.9303782 0.2140411 +0.2140411 0.9303782 0.2140411 +0.2441142 0.9303782 0.2140411 +0.2765176 0.9303782 0.2140411 +0.3113005 0.9303782 0.2140411 +0.3485102 0.9303782 0.2140411 +0.388193 0.9303782 0.2140411 +0.4303934 0.9303782 0.2140411 +0.4751555 0.9303782 0.2140411 +0.5225216 0.9303782 0.2140411 +0.5725335 0.9303782 0.2140411 +0.6252316 0.9303782 0.2140411 +0.6806558 0.9303782 0.2140411 +0.7388448 0.9303782 0.2140411 +0.7998369 0.9303782 0.2140411 +0.8636691 0.9303782 0.2140411 +0.9303782 0.9303782 0.2140411 +1 0.9303782 0.2140411 +0 1 0.2140411 +0.002418731 1 0.2140411 +0.005155668 1 0.2140411 +0.009080105 1 0.2140411 +0.01434988 1 0.2140411 +0.02107202 1 0.2140411 +0.02934285 1 0.2140411 +0.03925039 1 0.2140411 +0.05087609 1 0.2140411 +0.06429595 1 0.2140411 +0.07958143 1 0.2140411 +0.0968001 1 0.2140411 +0.1160161 1 0.2140411 +0.1372908 1 0.2140411 +0.1606827 1 0.2140411 +0.1862481 1 0.2140411 +0.2140411 1 0.2140411 +0.2441142 1 0.2140411 +0.2765176 1 0.2140411 +0.3113005 1 0.2140411 +0.3485102 1 0.2140411 +0.388193 1 0.2140411 +0.4303934 1 0.2140411 +0.4751555 1 0.2140411 +0.5225216 1 0.2140411 +0.5725335 1 0.2140411 +0.6252316 1 0.2140411 +0.6806558 1 0.2140411 +0.7388448 1 0.2140411 +0.7998369 1 0.2140411 +0.8636691 1 0.2140411 +0.9303782 1 0.2140411 +1 1 0.2140411 +0 0 0.2441142 +0.002418731 0 0.2441142 +0.005155668 0 0.2441142 +0.009080105 0 0.2441142 +0.01434988 0 0.2441142 +0.02107202 0 0.2441142 +0.02934285 0 0.2441142 +0.03925039 0 0.2441142 +0.05087609 0 0.2441142 +0.06429595 0 0.2441142 +0.07958143 0 0.2441142 +0.0968001 0 0.2441142 +0.1160161 0 0.2441142 +0.1372908 0 0.2441142 +0.1606827 0 0.2441142 +0.1862481 0 0.2441142 +0.2140411 0 0.2441142 +0.2441142 0 0.2441142 +0.2765176 0 0.2441142 +0.3113005 0 0.2441142 +0.3485102 0 0.2441142 +0.388193 0 0.2441142 +0.4303934 0 0.2441142 +0.4751555 0 0.2441142 +0.5225216 0 0.2441142 +0.5725335 0 0.2441142 +0.6252316 0 0.2441142 +0.6806558 0 0.2441142 +0.7388448 0 0.2441142 +0.7998369 0 0.2441142 +0.8636691 0 0.2441142 +0.9303782 0 0.2441142 +1 0 0.2441142 +0 0.002418731 0.2441142 +0.002418731 0.002418731 0.2441142 +0.005155668 0.002418731 0.2441142 +0.009080105 0.002418731 0.2441142 +0.01434988 0.002418731 0.2441142 +0.02107202 0.002418731 0.2441142 +0.02934285 0.002418731 0.2441142 +0.03925039 0.002418731 0.2441142 +0.05087609 0.002418731 0.2441142 +0.06429595 0.002418731 0.2441142 +0.07958143 0.002418731 0.2441142 +0.0968001 0.002418731 0.2441142 +0.1160161 0.002418731 0.2441142 +0.1372908 0.002418731 0.2441142 +0.1606827 0.002418731 0.2441142 +0.1862481 0.002418731 0.2441142 +0.2140411 0.002418731 0.2441142 +0.2441142 0.002418731 0.2441142 +0.2765176 0.002418731 0.2441142 +0.3113005 0.002418731 0.2441142 +0.3485102 0.002418731 0.2441142 +0.388193 0.002418731 0.2441142 +0.4303934 0.002418731 0.2441142 +0.4751555 0.002418731 0.2441142 +0.5225216 0.002418731 0.2441142 +0.5725335 0.002418731 0.2441142 +0.6252316 0.002418731 0.2441142 +0.6806558 0.002418731 0.2441142 +0.7388448 0.002418731 0.2441142 +0.7998369 0.002418731 0.2441142 +0.8636691 0.002418731 0.2441142 +0.9303782 0.002418731 0.2441142 +1 0.002418731 0.2441142 +0 0.005155668 0.2441142 +0.002418731 0.005155668 0.2441142 +0.005155668 0.005155668 0.2441142 +0.009080105 0.005155668 0.2441142 +0.01434988 0.005155668 0.2441142 +0.02107202 0.005155668 0.2441142 +0.02934285 0.005155668 0.2441142 +0.03925039 0.005155668 0.2441142 +0.05087609 0.005155668 0.2441142 +0.06429595 0.005155668 0.2441142 +0.07958143 0.005155668 0.2441142 +0.0968001 0.005155668 0.2441142 +0.1160161 0.005155668 0.2441142 +0.1372908 0.005155668 0.2441142 +0.1606827 0.005155668 0.2441142 +0.1862481 0.005155668 0.2441142 +0.2140411 0.005155668 0.2441142 +0.2441142 0.005155668 0.2441142 +0.2765176 0.005155668 0.2441142 +0.3113005 0.005155668 0.2441142 +0.3485102 0.005155668 0.2441142 +0.388193 0.005155668 0.2441142 +0.4303934 0.005155668 0.2441142 +0.4751555 0.005155668 0.2441142 +0.5225216 0.005155668 0.2441142 +0.5725335 0.005155668 0.2441142 +0.6252316 0.005155668 0.2441142 +0.6806558 0.005155668 0.2441142 +0.7388448 0.005155668 0.2441142 +0.7998369 0.005155668 0.2441142 +0.8636691 0.005155668 0.2441142 +0.9303782 0.005155668 0.2441142 +1 0.005155668 0.2441142 +0 0.009080105 0.2441142 +0.002418731 0.009080105 0.2441142 +0.005155668 0.009080105 0.2441142 +0.009080105 0.009080105 0.2441142 +0.01434988 0.009080105 0.2441142 +0.02107202 0.009080105 0.2441142 +0.02934285 0.009080105 0.2441142 +0.03925039 0.009080105 0.2441142 +0.05087609 0.009080105 0.2441142 +0.06429595 0.009080105 0.2441142 +0.07958143 0.009080105 0.2441142 +0.0968001 0.009080105 0.2441142 +0.1160161 0.009080105 0.2441142 +0.1372908 0.009080105 0.2441142 +0.1606827 0.009080105 0.2441142 +0.1862481 0.009080105 0.2441142 +0.2140411 0.009080105 0.2441142 +0.2441142 0.009080105 0.2441142 +0.2765176 0.009080105 0.2441142 +0.3113005 0.009080105 0.2441142 +0.3485102 0.009080105 0.2441142 +0.388193 0.009080105 0.2441142 +0.4303934 0.009080105 0.2441142 +0.4751555 0.009080105 0.2441142 +0.5225216 0.009080105 0.2441142 +0.5725335 0.009080105 0.2441142 +0.6252316 0.009080105 0.2441142 +0.6806558 0.009080105 0.2441142 +0.7388448 0.009080105 0.2441142 +0.7998369 0.009080105 0.2441142 +0.8636691 0.009080105 0.2441142 +0.9303782 0.009080105 0.2441142 +1 0.009080105 0.2441142 +0 0.01434988 0.2441142 +0.002418731 0.01434988 0.2441142 +0.005155668 0.01434988 0.2441142 +0.009080105 0.01434988 0.2441142 +0.01434988 0.01434988 0.2441142 +0.02107202 0.01434988 0.2441142 +0.02934285 0.01434988 0.2441142 +0.03925039 0.01434988 0.2441142 +0.05087609 0.01434988 0.2441142 +0.06429595 0.01434988 0.2441142 +0.07958143 0.01434988 0.2441142 +0.0968001 0.01434988 0.2441142 +0.1160161 0.01434988 0.2441142 +0.1372908 0.01434988 0.2441142 +0.1606827 0.01434988 0.2441142 +0.1862481 0.01434988 0.2441142 +0.2140411 0.01434988 0.2441142 +0.2441142 0.01434988 0.2441142 +0.2765176 0.01434988 0.2441142 +0.3113005 0.01434988 0.2441142 +0.3485102 0.01434988 0.2441142 +0.388193 0.01434988 0.2441142 +0.4303934 0.01434988 0.2441142 +0.4751555 0.01434988 0.2441142 +0.5225216 0.01434988 0.2441142 +0.5725335 0.01434988 0.2441142 +0.6252316 0.01434988 0.2441142 +0.6806558 0.01434988 0.2441142 +0.7388448 0.01434988 0.2441142 +0.7998369 0.01434988 0.2441142 +0.8636691 0.01434988 0.2441142 +0.9303782 0.01434988 0.2441142 +1 0.01434988 0.2441142 +0 0.02107202 0.2441142 +0.002418731 0.02107202 0.2441142 +0.005155668 0.02107202 0.2441142 +0.009080105 0.02107202 0.2441142 +0.01434988 0.02107202 0.2441142 +0.02107202 0.02107202 0.2441142 +0.02934285 0.02107202 0.2441142 +0.03925039 0.02107202 0.2441142 +0.05087609 0.02107202 0.2441142 +0.06429595 0.02107202 0.2441142 +0.07958143 0.02107202 0.2441142 +0.0968001 0.02107202 0.2441142 +0.1160161 0.02107202 0.2441142 +0.1372908 0.02107202 0.2441142 +0.1606827 0.02107202 0.2441142 +0.1862481 0.02107202 0.2441142 +0.2140411 0.02107202 0.2441142 +0.2441142 0.02107202 0.2441142 +0.2765176 0.02107202 0.2441142 +0.3113005 0.02107202 0.2441142 +0.3485102 0.02107202 0.2441142 +0.388193 0.02107202 0.2441142 +0.4303934 0.02107202 0.2441142 +0.4751555 0.02107202 0.2441142 +0.5225216 0.02107202 0.2441142 +0.5725335 0.02107202 0.2441142 +0.6252316 0.02107202 0.2441142 +0.6806558 0.02107202 0.2441142 +0.7388448 0.02107202 0.2441142 +0.7998369 0.02107202 0.2441142 +0.8636691 0.02107202 0.2441142 +0.9303782 0.02107202 0.2441142 +1 0.02107202 0.2441142 +0 0.02934285 0.2441142 +0.002418731 0.02934285 0.2441142 +0.005155668 0.02934285 0.2441142 +0.009080105 0.02934285 0.2441142 +0.01434988 0.02934285 0.2441142 +0.02107202 0.02934285 0.2441142 +0.02934285 0.02934285 0.2441142 +0.03925039 0.02934285 0.2441142 +0.05087609 0.02934285 0.2441142 +0.06429595 0.02934285 0.2441142 +0.07958143 0.02934285 0.2441142 +0.0968001 0.02934285 0.2441142 +0.1160161 0.02934285 0.2441142 +0.1372908 0.02934285 0.2441142 +0.1606827 0.02934285 0.2441142 +0.1862481 0.02934285 0.2441142 +0.2140411 0.02934285 0.2441142 +0.2441142 0.02934285 0.2441142 +0.2765176 0.02934285 0.2441142 +0.3113005 0.02934285 0.2441142 +0.3485102 0.02934285 0.2441142 +0.388193 0.02934285 0.2441142 +0.4303934 0.02934285 0.2441142 +0.4751555 0.02934285 0.2441142 +0.5225216 0.02934285 0.2441142 +0.5725335 0.02934285 0.2441142 +0.6252316 0.02934285 0.2441142 +0.6806558 0.02934285 0.2441142 +0.7388448 0.02934285 0.2441142 +0.7998369 0.02934285 0.2441142 +0.8636691 0.02934285 0.2441142 +0.9303782 0.02934285 0.2441142 +1 0.02934285 0.2441142 +0 0.03925039 0.2441142 +0.002418731 0.03925039 0.2441142 +0.005155668 0.03925039 0.2441142 +0.009080105 0.03925039 0.2441142 +0.01434988 0.03925039 0.2441142 +0.02107202 0.03925039 0.2441142 +0.02934285 0.03925039 0.2441142 +0.03925039 0.03925039 0.2441142 +0.05087609 0.03925039 0.2441142 +0.06429595 0.03925039 0.2441142 +0.07958143 0.03925039 0.2441142 +0.0968001 0.03925039 0.2441142 +0.1160161 0.03925039 0.2441142 +0.1372908 0.03925039 0.2441142 +0.1606827 0.03925039 0.2441142 +0.1862481 0.03925039 0.2441142 +0.2140411 0.03925039 0.2441142 +0.2441142 0.03925039 0.2441142 +0.2765176 0.03925039 0.2441142 +0.3113005 0.03925039 0.2441142 +0.3485102 0.03925039 0.2441142 +0.388193 0.03925039 0.2441142 +0.4303934 0.03925039 0.2441142 +0.4751555 0.03925039 0.2441142 +0.5225216 0.03925039 0.2441142 +0.5725335 0.03925039 0.2441142 +0.6252316 0.03925039 0.2441142 +0.6806558 0.03925039 0.2441142 +0.7388448 0.03925039 0.2441142 +0.7998369 0.03925039 0.2441142 +0.8636691 0.03925039 0.2441142 +0.9303782 0.03925039 0.2441142 +1 0.03925039 0.2441142 +0 0.05087609 0.2441142 +0.002418731 0.05087609 0.2441142 +0.005155668 0.05087609 0.2441142 +0.009080105 0.05087609 0.2441142 +0.01434988 0.05087609 0.2441142 +0.02107202 0.05087609 0.2441142 +0.02934285 0.05087609 0.2441142 +0.03925039 0.05087609 0.2441142 +0.05087609 0.05087609 0.2441142 +0.06429595 0.05087609 0.2441142 +0.07958143 0.05087609 0.2441142 +0.0968001 0.05087609 0.2441142 +0.1160161 0.05087609 0.2441142 +0.1372908 0.05087609 0.2441142 +0.1606827 0.05087609 0.2441142 +0.1862481 0.05087609 0.2441142 +0.2140411 0.05087609 0.2441142 +0.2441142 0.05087609 0.2441142 +0.2765176 0.05087609 0.2441142 +0.3113005 0.05087609 0.2441142 +0.3485102 0.05087609 0.2441142 +0.388193 0.05087609 0.2441142 +0.4303934 0.05087609 0.2441142 +0.4751555 0.05087609 0.2441142 +0.5225216 0.05087609 0.2441142 +0.5725335 0.05087609 0.2441142 +0.6252316 0.05087609 0.2441142 +0.6806558 0.05087609 0.2441142 +0.7388448 0.05087609 0.2441142 +0.7998369 0.05087609 0.2441142 +0.8636691 0.05087609 0.2441142 +0.9303782 0.05087609 0.2441142 +1 0.05087609 0.2441142 +0 0.06429595 0.2441142 +0.002418731 0.06429595 0.2441142 +0.005155668 0.06429595 0.2441142 +0.009080105 0.06429595 0.2441142 +0.01434988 0.06429595 0.2441142 +0.02107202 0.06429595 0.2441142 +0.02934285 0.06429595 0.2441142 +0.03925039 0.06429595 0.2441142 +0.05087609 0.06429595 0.2441142 +0.06429595 0.06429595 0.2441142 +0.07958143 0.06429595 0.2441142 +0.0968001 0.06429595 0.2441142 +0.1160161 0.06429595 0.2441142 +0.1372908 0.06429595 0.2441142 +0.1606827 0.06429595 0.2441142 +0.1862481 0.06429595 0.2441142 +0.2140411 0.06429595 0.2441142 +0.2441142 0.06429595 0.2441142 +0.2765176 0.06429595 0.2441142 +0.3113005 0.06429595 0.2441142 +0.3485102 0.06429595 0.2441142 +0.388193 0.06429595 0.2441142 +0.4303934 0.06429595 0.2441142 +0.4751555 0.06429595 0.2441142 +0.5225216 0.06429595 0.2441142 +0.5725335 0.06429595 0.2441142 +0.6252316 0.06429595 0.2441142 +0.6806558 0.06429595 0.2441142 +0.7388448 0.06429595 0.2441142 +0.7998369 0.06429595 0.2441142 +0.8636691 0.06429595 0.2441142 +0.9303782 0.06429595 0.2441142 +1 0.06429595 0.2441142 +0 0.07958143 0.2441142 +0.002418731 0.07958143 0.2441142 +0.005155668 0.07958143 0.2441142 +0.009080105 0.07958143 0.2441142 +0.01434988 0.07958143 0.2441142 +0.02107202 0.07958143 0.2441142 +0.02934285 0.07958143 0.2441142 +0.03925039 0.07958143 0.2441142 +0.05087609 0.07958143 0.2441142 +0.06429595 0.07958143 0.2441142 +0.07958143 0.07958143 0.2441142 +0.0968001 0.07958143 0.2441142 +0.1160161 0.07958143 0.2441142 +0.1372908 0.07958143 0.2441142 +0.1606827 0.07958143 0.2441142 +0.1862481 0.07958143 0.2441142 +0.2140411 0.07958143 0.2441142 +0.2441142 0.07958143 0.2441142 +0.2765176 0.07958143 0.2441142 +0.3113005 0.07958143 0.2441142 +0.3485102 0.07958143 0.2441142 +0.388193 0.07958143 0.2441142 +0.4303934 0.07958143 0.2441142 +0.4751555 0.07958143 0.2441142 +0.5225216 0.07958143 0.2441142 +0.5725335 0.07958143 0.2441142 +0.6252316 0.07958143 0.2441142 +0.6806558 0.07958143 0.2441142 +0.7388448 0.07958143 0.2441142 +0.7998369 0.07958143 0.2441142 +0.8636691 0.07958143 0.2441142 +0.9303782 0.07958143 0.2441142 +1 0.07958143 0.2441142 +0 0.0968001 0.2441142 +0.002418731 0.0968001 0.2441142 +0.005155668 0.0968001 0.2441142 +0.009080105 0.0968001 0.2441142 +0.01434988 0.0968001 0.2441142 +0.02107202 0.0968001 0.2441142 +0.02934285 0.0968001 0.2441142 +0.03925039 0.0968001 0.2441142 +0.05087609 0.0968001 0.2441142 +0.06429595 0.0968001 0.2441142 +0.07958143 0.0968001 0.2441142 +0.0968001 0.0968001 0.2441142 +0.1160161 0.0968001 0.2441142 +0.1372908 0.0968001 0.2441142 +0.1606827 0.0968001 0.2441142 +0.1862481 0.0968001 0.2441142 +0.2140411 0.0968001 0.2441142 +0.2441142 0.0968001 0.2441142 +0.2765176 0.0968001 0.2441142 +0.3113005 0.0968001 0.2441142 +0.3485102 0.0968001 0.2441142 +0.388193 0.0968001 0.2441142 +0.4303934 0.0968001 0.2441142 +0.4751555 0.0968001 0.2441142 +0.5225216 0.0968001 0.2441142 +0.5725335 0.0968001 0.2441142 +0.6252316 0.0968001 0.2441142 +0.6806558 0.0968001 0.2441142 +0.7388448 0.0968001 0.2441142 +0.7998369 0.0968001 0.2441142 +0.8636691 0.0968001 0.2441142 +0.9303782 0.0968001 0.2441142 +1 0.0968001 0.2441142 +0 0.1160161 0.2441142 +0.002418731 0.1160161 0.2441142 +0.005155668 0.1160161 0.2441142 +0.009080105 0.1160161 0.2441142 +0.01434988 0.1160161 0.2441142 +0.02107202 0.1160161 0.2441142 +0.02934285 0.1160161 0.2441142 +0.03925039 0.1160161 0.2441142 +0.05087609 0.1160161 0.2441142 +0.06429595 0.1160161 0.2441142 +0.07958143 0.1160161 0.2441142 +0.0968001 0.1160161 0.2441142 +0.1160161 0.1160161 0.2441142 +0.1372908 0.1160161 0.2441142 +0.1606827 0.1160161 0.2441142 +0.1862481 0.1160161 0.2441142 +0.2140411 0.1160161 0.2441142 +0.2441142 0.1160161 0.2441142 +0.2765176 0.1160161 0.2441142 +0.3113005 0.1160161 0.2441142 +0.3485102 0.1160161 0.2441142 +0.388193 0.1160161 0.2441142 +0.4303934 0.1160161 0.2441142 +0.4751555 0.1160161 0.2441142 +0.5225216 0.1160161 0.2441142 +0.5725335 0.1160161 0.2441142 +0.6252316 0.1160161 0.2441142 +0.6806558 0.1160161 0.2441142 +0.7388448 0.1160161 0.2441142 +0.7998369 0.1160161 0.2441142 +0.8636691 0.1160161 0.2441142 +0.9303782 0.1160161 0.2441142 +1 0.1160161 0.2441142 +0 0.1372908 0.2441142 +0.002418731 0.1372908 0.2441142 +0.005155668 0.1372908 0.2441142 +0.009080105 0.1372908 0.2441142 +0.01434988 0.1372908 0.2441142 +0.02107202 0.1372908 0.2441142 +0.02934285 0.1372908 0.2441142 +0.03925039 0.1372908 0.2441142 +0.05087609 0.1372908 0.2441142 +0.06429595 0.1372908 0.2441142 +0.07958143 0.1372908 0.2441142 +0.0968001 0.1372908 0.2441142 +0.1160161 0.1372908 0.2441142 +0.1372908 0.1372908 0.2441142 +0.1606827 0.1372908 0.2441142 +0.1862481 0.1372908 0.2441142 +0.2140411 0.1372908 0.2441142 +0.2441142 0.1372908 0.2441142 +0.2765176 0.1372908 0.2441142 +0.3113005 0.1372908 0.2441142 +0.3485102 0.1372908 0.2441142 +0.388193 0.1372908 0.2441142 +0.4303934 0.1372908 0.2441142 +0.4751555 0.1372908 0.2441142 +0.5225216 0.1372908 0.2441142 +0.5725335 0.1372908 0.2441142 +0.6252316 0.1372908 0.2441142 +0.6806558 0.1372908 0.2441142 +0.7388448 0.1372908 0.2441142 +0.7998369 0.1372908 0.2441142 +0.8636691 0.1372908 0.2441142 +0.9303782 0.1372908 0.2441142 +1 0.1372908 0.2441142 +0 0.1606827 0.2441142 +0.002418731 0.1606827 0.2441142 +0.005155668 0.1606827 0.2441142 +0.009080105 0.1606827 0.2441142 +0.01434988 0.1606827 0.2441142 +0.02107202 0.1606827 0.2441142 +0.02934285 0.1606827 0.2441142 +0.03925039 0.1606827 0.2441142 +0.05087609 0.1606827 0.2441142 +0.06429595 0.1606827 0.2441142 +0.07958143 0.1606827 0.2441142 +0.0968001 0.1606827 0.2441142 +0.1160161 0.1606827 0.2441142 +0.1372908 0.1606827 0.2441142 +0.1606827 0.1606827 0.2441142 +0.1862481 0.1606827 0.2441142 +0.2140411 0.1606827 0.2441142 +0.2441142 0.1606827 0.2441142 +0.2765176 0.1606827 0.2441142 +0.3113005 0.1606827 0.2441142 +0.3485102 0.1606827 0.2441142 +0.388193 0.1606827 0.2441142 +0.4303934 0.1606827 0.2441142 +0.4751555 0.1606827 0.2441142 +0.5225216 0.1606827 0.2441142 +0.5725335 0.1606827 0.2441142 +0.6252316 0.1606827 0.2441142 +0.6806558 0.1606827 0.2441142 +0.7388448 0.1606827 0.2441142 +0.7998369 0.1606827 0.2441142 +0.8636691 0.1606827 0.2441142 +0.9303782 0.1606827 0.2441142 +1 0.1606827 0.2441142 +0 0.1862481 0.2441142 +0.002418731 0.1862481 0.2441142 +0.005155668 0.1862481 0.2441142 +0.009080105 0.1862481 0.2441142 +0.01434988 0.1862481 0.2441142 +0.02107202 0.1862481 0.2441142 +0.02934285 0.1862481 0.2441142 +0.03925039 0.1862481 0.2441142 +0.05087609 0.1862481 0.2441142 +0.06429595 0.1862481 0.2441142 +0.07958143 0.1862481 0.2441142 +0.0968001 0.1862481 0.2441142 +0.1160161 0.1862481 0.2441142 +0.1372908 0.1862481 0.2441142 +0.1606827 0.1862481 0.2441142 +0.1862481 0.1862481 0.2441142 +0.2140411 0.1862481 0.2441142 +0.2441142 0.1862481 0.2441142 +0.2765176 0.1862481 0.2441142 +0.3113005 0.1862481 0.2441142 +0.3485102 0.1862481 0.2441142 +0.388193 0.1862481 0.2441142 +0.4303934 0.1862481 0.2441142 +0.4751555 0.1862481 0.2441142 +0.5225216 0.1862481 0.2441142 +0.5725335 0.1862481 0.2441142 +0.6252316 0.1862481 0.2441142 +0.6806558 0.1862481 0.2441142 +0.7388448 0.1862481 0.2441142 +0.7998369 0.1862481 0.2441142 +0.8636691 0.1862481 0.2441142 +0.9303782 0.1862481 0.2441142 +1 0.1862481 0.2441142 +0 0.2140411 0.2441142 +0.002418731 0.2140411 0.2441142 +0.005155668 0.2140411 0.2441142 +0.009080105 0.2140411 0.2441142 +0.01434988 0.2140411 0.2441142 +0.02107202 0.2140411 0.2441142 +0.02934285 0.2140411 0.2441142 +0.03925039 0.2140411 0.2441142 +0.05087609 0.2140411 0.2441142 +0.06429595 0.2140411 0.2441142 +0.07958143 0.2140411 0.2441142 +0.0968001 0.2140411 0.2441142 +0.1160161 0.2140411 0.2441142 +0.1372908 0.2140411 0.2441142 +0.1606827 0.2140411 0.2441142 +0.1862481 0.2140411 0.2441142 +0.2140411 0.2140411 0.2441142 +0.2441142 0.2140411 0.2441142 +0.2765176 0.2140411 0.2441142 +0.3113005 0.2140411 0.2441142 +0.3485102 0.2140411 0.2441142 +0.388193 0.2140411 0.2441142 +0.4303934 0.2140411 0.2441142 +0.4751555 0.2140411 0.2441142 +0.5225216 0.2140411 0.2441142 +0.5725335 0.2140411 0.2441142 +0.6252316 0.2140411 0.2441142 +0.6806558 0.2140411 0.2441142 +0.7388448 0.2140411 0.2441142 +0.7998369 0.2140411 0.2441142 +0.8636691 0.2140411 0.2441142 +0.9303782 0.2140411 0.2441142 +1 0.2140411 0.2441142 +0 0.2441142 0.2441142 +0.002418731 0.2441142 0.2441142 +0.005155668 0.2441142 0.2441142 +0.009080105 0.2441142 0.2441142 +0.01434988 0.2441142 0.2441142 +0.02107202 0.2441142 0.2441142 +0.02934285 0.2441142 0.2441142 +0.03925039 0.2441142 0.2441142 +0.05087609 0.2441142 0.2441142 +0.06429595 0.2441142 0.2441142 +0.07958143 0.2441142 0.2441142 +0.0968001 0.2441142 0.2441142 +0.1160161 0.2441142 0.2441142 +0.1372908 0.2441142 0.2441142 +0.1606827 0.2441142 0.2441142 +0.1862481 0.2441142 0.2441142 +0.2140411 0.2441142 0.2441142 +0.2441142 0.2441142 0.2441142 +0.2765176 0.2441142 0.2441142 +0.3113005 0.2441142 0.2441142 +0.3485102 0.2441142 0.2441142 +0.388193 0.2441142 0.2441142 +0.4303934 0.2441142 0.2441142 +0.4751555 0.2441142 0.2441142 +0.5225216 0.2441142 0.2441142 +0.5725335 0.2441142 0.2441142 +0.6252316 0.2441142 0.2441142 +0.6806558 0.2441142 0.2441142 +0.7388448 0.2441142 0.2441142 +0.7998369 0.2441142 0.2441142 +0.8636691 0.2441142 0.2441142 +0.9303782 0.2441142 0.2441142 +1 0.2441142 0.2441142 +0 0.2765176 0.2441142 +0.002418731 0.2765176 0.2441142 +0.005155668 0.2765176 0.2441142 +0.009080105 0.2765176 0.2441142 +0.01434988 0.2765176 0.2441142 +0.02107202 0.2765176 0.2441142 +0.02934285 0.2765176 0.2441142 +0.03925039 0.2765176 0.2441142 +0.05087609 0.2765176 0.2441142 +0.06429595 0.2765176 0.2441142 +0.07958143 0.2765176 0.2441142 +0.0968001 0.2765176 0.2441142 +0.1160161 0.2765176 0.2441142 +0.1372908 0.2765176 0.2441142 +0.1606827 0.2765176 0.2441142 +0.1862481 0.2765176 0.2441142 +0.2140411 0.2765176 0.2441142 +0.2441142 0.2765176 0.2441142 +0.2765176 0.2765176 0.2441142 +0.3113005 0.2765176 0.2441142 +0.3485102 0.2765176 0.2441142 +0.388193 0.2765176 0.2441142 +0.4303934 0.2765176 0.2441142 +0.4751555 0.2765176 0.2441142 +0.5225216 0.2765176 0.2441142 +0.5725335 0.2765176 0.2441142 +0.6252316 0.2765176 0.2441142 +0.6806558 0.2765176 0.2441142 +0.7388448 0.2765176 0.2441142 +0.7998369 0.2765176 0.2441142 +0.8636691 0.2765176 0.2441142 +0.9303782 0.2765176 0.2441142 +1 0.2765176 0.2441142 +0 0.3113005 0.2441142 +0.002418731 0.3113005 0.2441142 +0.005155668 0.3113005 0.2441142 +0.009080105 0.3113005 0.2441142 +0.01434988 0.3113005 0.2441142 +0.02107202 0.3113005 0.2441142 +0.02934285 0.3113005 0.2441142 +0.03925039 0.3113005 0.2441142 +0.05087609 0.3113005 0.2441142 +0.06429595 0.3113005 0.2441142 +0.07958143 0.3113005 0.2441142 +0.0968001 0.3113005 0.2441142 +0.1160161 0.3113005 0.2441142 +0.1372908 0.3113005 0.2441142 +0.1606827 0.3113005 0.2441142 +0.1862481 0.3113005 0.2441142 +0.2140411 0.3113005 0.2441142 +0.2441142 0.3113005 0.2441142 +0.2765176 0.3113005 0.2441142 +0.3113005 0.3113005 0.2441142 +0.3485102 0.3113005 0.2441142 +0.388193 0.3113005 0.2441142 +0.4303934 0.3113005 0.2441142 +0.4751555 0.3113005 0.2441142 +0.5225216 0.3113005 0.2441142 +0.5725335 0.3113005 0.2441142 +0.6252316 0.3113005 0.2441142 +0.6806558 0.3113005 0.2441142 +0.7388448 0.3113005 0.2441142 +0.7998369 0.3113005 0.2441142 +0.8636691 0.3113005 0.2441142 +0.9303782 0.3113005 0.2441142 +1 0.3113005 0.2441142 +0 0.3485102 0.2441142 +0.002418731 0.3485102 0.2441142 +0.005155668 0.3485102 0.2441142 +0.009080105 0.3485102 0.2441142 +0.01434988 0.3485102 0.2441142 +0.02107202 0.3485102 0.2441142 +0.02934285 0.3485102 0.2441142 +0.03925039 0.3485102 0.2441142 +0.05087609 0.3485102 0.2441142 +0.06429595 0.3485102 0.2441142 +0.07958143 0.3485102 0.2441142 +0.0968001 0.3485102 0.2441142 +0.1160161 0.3485102 0.2441142 +0.1372908 0.3485102 0.2441142 +0.1606827 0.3485102 0.2441142 +0.1862481 0.3485102 0.2441142 +0.2140411 0.3485102 0.2441142 +0.2441142 0.3485102 0.2441142 +0.2765176 0.3485102 0.2441142 +0.3113005 0.3485102 0.2441142 +0.3485102 0.3485102 0.2441142 +0.388193 0.3485102 0.2441142 +0.4303934 0.3485102 0.2441142 +0.4751555 0.3485102 0.2441142 +0.5225216 0.3485102 0.2441142 +0.5725335 0.3485102 0.2441142 +0.6252316 0.3485102 0.2441142 +0.6806558 0.3485102 0.2441142 +0.7388448 0.3485102 0.2441142 +0.7998369 0.3485102 0.2441142 +0.8636691 0.3485102 0.2441142 +0.9303782 0.3485102 0.2441142 +1 0.3485102 0.2441142 +0 0.388193 0.2441142 +0.002418731 0.388193 0.2441142 +0.005155668 0.388193 0.2441142 +0.009080105 0.388193 0.2441142 +0.01434988 0.388193 0.2441142 +0.02107202 0.388193 0.2441142 +0.02934285 0.388193 0.2441142 +0.03925039 0.388193 0.2441142 +0.05087609 0.388193 0.2441142 +0.06429595 0.388193 0.2441142 +0.07958143 0.388193 0.2441142 +0.0968001 0.388193 0.2441142 +0.1160161 0.388193 0.2441142 +0.1372908 0.388193 0.2441142 +0.1606827 0.388193 0.2441142 +0.1862481 0.388193 0.2441142 +0.2140411 0.388193 0.2441142 +0.2441142 0.388193 0.2441142 +0.2765176 0.388193 0.2441142 +0.3113005 0.388193 0.2441142 +0.3485102 0.388193 0.2441142 +0.388193 0.388193 0.2441142 +0.4303934 0.388193 0.2441142 +0.4751555 0.388193 0.2441142 +0.5225216 0.388193 0.2441142 +0.5725335 0.388193 0.2441142 +0.6252316 0.388193 0.2441142 +0.6806558 0.388193 0.2441142 +0.7388448 0.388193 0.2441142 +0.7998369 0.388193 0.2441142 +0.8636691 0.388193 0.2441142 +0.9303782 0.388193 0.2441142 +1 0.388193 0.2441142 +0 0.4303934 0.2441142 +0.002418731 0.4303934 0.2441142 +0.005155668 0.4303934 0.2441142 +0.009080105 0.4303934 0.2441142 +0.01434988 0.4303934 0.2441142 +0.02107202 0.4303934 0.2441142 +0.02934285 0.4303934 0.2441142 +0.03925039 0.4303934 0.2441142 +0.05087609 0.4303934 0.2441142 +0.06429595 0.4303934 0.2441142 +0.07958143 0.4303934 0.2441142 +0.0968001 0.4303934 0.2441142 +0.1160161 0.4303934 0.2441142 +0.1372908 0.4303934 0.2441142 +0.1606827 0.4303934 0.2441142 +0.1862481 0.4303934 0.2441142 +0.2140411 0.4303934 0.2441142 +0.2441142 0.4303934 0.2441142 +0.2765176 0.4303934 0.2441142 +0.3113005 0.4303934 0.2441142 +0.3485102 0.4303934 0.2441142 +0.388193 0.4303934 0.2441142 +0.4303934 0.4303934 0.2441142 +0.4751555 0.4303934 0.2441142 +0.5225216 0.4303934 0.2441142 +0.5725335 0.4303934 0.2441142 +0.6252316 0.4303934 0.2441142 +0.6806558 0.4303934 0.2441142 +0.7388448 0.4303934 0.2441142 +0.7998369 0.4303934 0.2441142 +0.8636691 0.4303934 0.2441142 +0.9303782 0.4303934 0.2441142 +1 0.4303934 0.2441142 +0 0.4751555 0.2441142 +0.002418731 0.4751555 0.2441142 +0.005155668 0.4751555 0.2441142 +0.009080105 0.4751555 0.2441142 +0.01434988 0.4751555 0.2441142 +0.02107202 0.4751555 0.2441142 +0.02934285 0.4751555 0.2441142 +0.03925039 0.4751555 0.2441142 +0.05087609 0.4751555 0.2441142 +0.06429595 0.4751555 0.2441142 +0.07958143 0.4751555 0.2441142 +0.0968001 0.4751555 0.2441142 +0.1160161 0.4751555 0.2441142 +0.1372908 0.4751555 0.2441142 +0.1606827 0.4751555 0.2441142 +0.1862481 0.4751555 0.2441142 +0.2140411 0.4751555 0.2441142 +0.2441142 0.4751555 0.2441142 +0.2765176 0.4751555 0.2441142 +0.3113005 0.4751555 0.2441142 +0.3485102 0.4751555 0.2441142 +0.388193 0.4751555 0.2441142 +0.4303934 0.4751555 0.2441142 +0.4751555 0.4751555 0.2441142 +0.5225216 0.4751555 0.2441142 +0.5725335 0.4751555 0.2441142 +0.6252316 0.4751555 0.2441142 +0.6806558 0.4751555 0.2441142 +0.7388448 0.4751555 0.2441142 +0.7998369 0.4751555 0.2441142 +0.8636691 0.4751555 0.2441142 +0.9303782 0.4751555 0.2441142 +1 0.4751555 0.2441142 +0 0.5225216 0.2441142 +0.002418731 0.5225216 0.2441142 +0.005155668 0.5225216 0.2441142 +0.009080105 0.5225216 0.2441142 +0.01434988 0.5225216 0.2441142 +0.02107202 0.5225216 0.2441142 +0.02934285 0.5225216 0.2441142 +0.03925039 0.5225216 0.2441142 +0.05087609 0.5225216 0.2441142 +0.06429595 0.5225216 0.2441142 +0.07958143 0.5225216 0.2441142 +0.0968001 0.5225216 0.2441142 +0.1160161 0.5225216 0.2441142 +0.1372908 0.5225216 0.2441142 +0.1606827 0.5225216 0.2441142 +0.1862481 0.5225216 0.2441142 +0.2140411 0.5225216 0.2441142 +0.2441142 0.5225216 0.2441142 +0.2765176 0.5225216 0.2441142 +0.3113005 0.5225216 0.2441142 +0.3485102 0.5225216 0.2441142 +0.388193 0.5225216 0.2441142 +0.4303934 0.5225216 0.2441142 +0.4751555 0.5225216 0.2441142 +0.5225216 0.5225216 0.2441142 +0.5725335 0.5225216 0.2441142 +0.6252316 0.5225216 0.2441142 +0.6806558 0.5225216 0.2441142 +0.7388448 0.5225216 0.2441142 +0.7998369 0.5225216 0.2441142 +0.8636691 0.5225216 0.2441142 +0.9303782 0.5225216 0.2441142 +1 0.5225216 0.2441142 +0 0.5725335 0.2441142 +0.002418731 0.5725335 0.2441142 +0.005155668 0.5725335 0.2441142 +0.009080105 0.5725335 0.2441142 +0.01434988 0.5725335 0.2441142 +0.02107202 0.5725335 0.2441142 +0.02934285 0.5725335 0.2441142 +0.03925039 0.5725335 0.2441142 +0.05087609 0.5725335 0.2441142 +0.06429595 0.5725335 0.2441142 +0.07958143 0.5725335 0.2441142 +0.0968001 0.5725335 0.2441142 +0.1160161 0.5725335 0.2441142 +0.1372908 0.5725335 0.2441142 +0.1606827 0.5725335 0.2441142 +0.1862481 0.5725335 0.2441142 +0.2140411 0.5725335 0.2441142 +0.2441142 0.5725335 0.2441142 +0.2765176 0.5725335 0.2441142 +0.3113005 0.5725335 0.2441142 +0.3485102 0.5725335 0.2441142 +0.388193 0.5725335 0.2441142 +0.4303934 0.5725335 0.2441142 +0.4751555 0.5725335 0.2441142 +0.5225216 0.5725335 0.2441142 +0.5725335 0.5725335 0.2441142 +0.6252316 0.5725335 0.2441142 +0.6806558 0.5725335 0.2441142 +0.7388448 0.5725335 0.2441142 +0.7998369 0.5725335 0.2441142 +0.8636691 0.5725335 0.2441142 +0.9303782 0.5725335 0.2441142 +1 0.5725335 0.2441142 +0 0.6252316 0.2441142 +0.002418731 0.6252316 0.2441142 +0.005155668 0.6252316 0.2441142 +0.009080105 0.6252316 0.2441142 +0.01434988 0.6252316 0.2441142 +0.02107202 0.6252316 0.2441142 +0.02934285 0.6252316 0.2441142 +0.03925039 0.6252316 0.2441142 +0.05087609 0.6252316 0.2441142 +0.06429595 0.6252316 0.2441142 +0.07958143 0.6252316 0.2441142 +0.0968001 0.6252316 0.2441142 +0.1160161 0.6252316 0.2441142 +0.1372908 0.6252316 0.2441142 +0.1606827 0.6252316 0.2441142 +0.1862481 0.6252316 0.2441142 +0.2140411 0.6252316 0.2441142 +0.2441142 0.6252316 0.2441142 +0.2765176 0.6252316 0.2441142 +0.3113005 0.6252316 0.2441142 +0.3485102 0.6252316 0.2441142 +0.388193 0.6252316 0.2441142 +0.4303934 0.6252316 0.2441142 +0.4751555 0.6252316 0.2441142 +0.5225216 0.6252316 0.2441142 +0.5725335 0.6252316 0.2441142 +0.6252316 0.6252316 0.2441142 +0.6806558 0.6252316 0.2441142 +0.7388448 0.6252316 0.2441142 +0.7998369 0.6252316 0.2441142 +0.8636691 0.6252316 0.2441142 +0.9303782 0.6252316 0.2441142 +1 0.6252316 0.2441142 +0 0.6806558 0.2441142 +0.002418731 0.6806558 0.2441142 +0.005155668 0.6806558 0.2441142 +0.009080105 0.6806558 0.2441142 +0.01434988 0.6806558 0.2441142 +0.02107202 0.6806558 0.2441142 +0.02934285 0.6806558 0.2441142 +0.03925039 0.6806558 0.2441142 +0.05087609 0.6806558 0.2441142 +0.06429595 0.6806558 0.2441142 +0.07958143 0.6806558 0.2441142 +0.0968001 0.6806558 0.2441142 +0.1160161 0.6806558 0.2441142 +0.1372908 0.6806558 0.2441142 +0.1606827 0.6806558 0.2441142 +0.1862481 0.6806558 0.2441142 +0.2140411 0.6806558 0.2441142 +0.2441142 0.6806558 0.2441142 +0.2765176 0.6806558 0.2441142 +0.3113005 0.6806558 0.2441142 +0.3485102 0.6806558 0.2441142 +0.388193 0.6806558 0.2441142 +0.4303934 0.6806558 0.2441142 +0.4751555 0.6806558 0.2441142 +0.5225216 0.6806558 0.2441142 +0.5725335 0.6806558 0.2441142 +0.6252316 0.6806558 0.2441142 +0.6806558 0.6806558 0.2441142 +0.7388448 0.6806558 0.2441142 +0.7998369 0.6806558 0.2441142 +0.8636691 0.6806558 0.2441142 +0.9303782 0.6806558 0.2441142 +1 0.6806558 0.2441142 +0 0.7388448 0.2441142 +0.002418731 0.7388448 0.2441142 +0.005155668 0.7388448 0.2441142 +0.009080105 0.7388448 0.2441142 +0.01434988 0.7388448 0.2441142 +0.02107202 0.7388448 0.2441142 +0.02934285 0.7388448 0.2441142 +0.03925039 0.7388448 0.2441142 +0.05087609 0.7388448 0.2441142 +0.06429595 0.7388448 0.2441142 +0.07958143 0.7388448 0.2441142 +0.0968001 0.7388448 0.2441142 +0.1160161 0.7388448 0.2441142 +0.1372908 0.7388448 0.2441142 +0.1606827 0.7388448 0.2441142 +0.1862481 0.7388448 0.2441142 +0.2140411 0.7388448 0.2441142 +0.2441142 0.7388448 0.2441142 +0.2765176 0.7388448 0.2441142 +0.3113005 0.7388448 0.2441142 +0.3485102 0.7388448 0.2441142 +0.388193 0.7388448 0.2441142 +0.4303934 0.7388448 0.2441142 +0.4751555 0.7388448 0.2441142 +0.5225216 0.7388448 0.2441142 +0.5725335 0.7388448 0.2441142 +0.6252316 0.7388448 0.2441142 +0.6806558 0.7388448 0.2441142 +0.7388448 0.7388448 0.2441142 +0.7998369 0.7388448 0.2441142 +0.8636691 0.7388448 0.2441142 +0.9303782 0.7388448 0.2441142 +1 0.7388448 0.2441142 +0 0.7998369 0.2441142 +0.002418731 0.7998369 0.2441142 +0.005155668 0.7998369 0.2441142 +0.009080105 0.7998369 0.2441142 +0.01434988 0.7998369 0.2441142 +0.02107202 0.7998369 0.2441142 +0.02934285 0.7998369 0.2441142 +0.03925039 0.7998369 0.2441142 +0.05087609 0.7998369 0.2441142 +0.06429595 0.7998369 0.2441142 +0.07958143 0.7998369 0.2441142 +0.0968001 0.7998369 0.2441142 +0.1160161 0.7998369 0.2441142 +0.1372908 0.7998369 0.2441142 +0.1606827 0.7998369 0.2441142 +0.1862481 0.7998369 0.2441142 +0.2140411 0.7998369 0.2441142 +0.2441142 0.7998369 0.2441142 +0.2765176 0.7998369 0.2441142 +0.3113005 0.7998369 0.2441142 +0.3485102 0.7998369 0.2441142 +0.388193 0.7998369 0.2441142 +0.4303934 0.7998369 0.2441142 +0.4751555 0.7998369 0.2441142 +0.5225216 0.7998369 0.2441142 +0.5725335 0.7998369 0.2441142 +0.6252316 0.7998369 0.2441142 +0.6806558 0.7998369 0.2441142 +0.7388448 0.7998369 0.2441142 +0.7998369 0.7998369 0.2441142 +0.8636691 0.7998369 0.2441142 +0.9303782 0.7998369 0.2441142 +1 0.7998369 0.2441142 +0 0.8636691 0.2441142 +0.002418731 0.8636691 0.2441142 +0.005155668 0.8636691 0.2441142 +0.009080105 0.8636691 0.2441142 +0.01434988 0.8636691 0.2441142 +0.02107202 0.8636691 0.2441142 +0.02934285 0.8636691 0.2441142 +0.03925039 0.8636691 0.2441142 +0.05087609 0.8636691 0.2441142 +0.06429595 0.8636691 0.2441142 +0.07958143 0.8636691 0.2441142 +0.0968001 0.8636691 0.2441142 +0.1160161 0.8636691 0.2441142 +0.1372908 0.8636691 0.2441142 +0.1606827 0.8636691 0.2441142 +0.1862481 0.8636691 0.2441142 +0.2140411 0.8636691 0.2441142 +0.2441142 0.8636691 0.2441142 +0.2765176 0.8636691 0.2441142 +0.3113005 0.8636691 0.2441142 +0.3485102 0.8636691 0.2441142 +0.388193 0.8636691 0.2441142 +0.4303934 0.8636691 0.2441142 +0.4751555 0.8636691 0.2441142 +0.5225216 0.8636691 0.2441142 +0.5725335 0.8636691 0.2441142 +0.6252316 0.8636691 0.2441142 +0.6806558 0.8636691 0.2441142 +0.7388448 0.8636691 0.2441142 +0.7998369 0.8636691 0.2441142 +0.8636691 0.8636691 0.2441142 +0.9303782 0.8636691 0.2441142 +1 0.8636691 0.2441142 +0 0.9303782 0.2441142 +0.002418731 0.9303782 0.2441142 +0.005155668 0.9303782 0.2441142 +0.009080105 0.9303782 0.2441142 +0.01434988 0.9303782 0.2441142 +0.02107202 0.9303782 0.2441142 +0.02934285 0.9303782 0.2441142 +0.03925039 0.9303782 0.2441142 +0.05087609 0.9303782 0.2441142 +0.06429595 0.9303782 0.2441142 +0.07958143 0.9303782 0.2441142 +0.0968001 0.9303782 0.2441142 +0.1160161 0.9303782 0.2441142 +0.1372908 0.9303782 0.2441142 +0.1606827 0.9303782 0.2441142 +0.1862481 0.9303782 0.2441142 +0.2140411 0.9303782 0.2441142 +0.2441142 0.9303782 0.2441142 +0.2765176 0.9303782 0.2441142 +0.3113005 0.9303782 0.2441142 +0.3485102 0.9303782 0.2441142 +0.388193 0.9303782 0.2441142 +0.4303934 0.9303782 0.2441142 +0.4751555 0.9303782 0.2441142 +0.5225216 0.9303782 0.2441142 +0.5725335 0.9303782 0.2441142 +0.6252316 0.9303782 0.2441142 +0.6806558 0.9303782 0.2441142 +0.7388448 0.9303782 0.2441142 +0.7998369 0.9303782 0.2441142 +0.8636691 0.9303782 0.2441142 +0.9303782 0.9303782 0.2441142 +1 0.9303782 0.2441142 +0 1 0.2441142 +0.002418731 1 0.2441142 +0.005155668 1 0.2441142 +0.009080105 1 0.2441142 +0.01434988 1 0.2441142 +0.02107202 1 0.2441142 +0.02934285 1 0.2441142 +0.03925039 1 0.2441142 +0.05087609 1 0.2441142 +0.06429595 1 0.2441142 +0.07958143 1 0.2441142 +0.0968001 1 0.2441142 +0.1160161 1 0.2441142 +0.1372908 1 0.2441142 +0.1606827 1 0.2441142 +0.1862481 1 0.2441142 +0.2140411 1 0.2441142 +0.2441142 1 0.2441142 +0.2765176 1 0.2441142 +0.3113005 1 0.2441142 +0.3485102 1 0.2441142 +0.388193 1 0.2441142 +0.4303934 1 0.2441142 +0.4751555 1 0.2441142 +0.5225216 1 0.2441142 +0.5725335 1 0.2441142 +0.6252316 1 0.2441142 +0.6806558 1 0.2441142 +0.7388448 1 0.2441142 +0.7998369 1 0.2441142 +0.8636691 1 0.2441142 +0.9303782 1 0.2441142 +1 1 0.2441142 +0 0 0.2765176 +0.002418731 0 0.2765176 +0.005155668 0 0.2765176 +0.009080105 0 0.2765176 +0.01434988 0 0.2765176 +0.02107202 0 0.2765176 +0.02934285 0 0.2765176 +0.03925039 0 0.2765176 +0.05087609 0 0.2765176 +0.06429595 0 0.2765176 +0.07958143 0 0.2765176 +0.0968001 0 0.2765176 +0.1160161 0 0.2765176 +0.1372908 0 0.2765176 +0.1606827 0 0.2765176 +0.1862481 0 0.2765176 +0.2140411 0 0.2765176 +0.2441142 0 0.2765176 +0.2765176 0 0.2765176 +0.3113005 0 0.2765176 +0.3485102 0 0.2765176 +0.388193 0 0.2765176 +0.4303934 0 0.2765176 +0.4751555 0 0.2765176 +0.5225216 0 0.2765176 +0.5725335 0 0.2765176 +0.6252316 0 0.2765176 +0.6806558 0 0.2765176 +0.7388448 0 0.2765176 +0.7998369 0 0.2765176 +0.8636691 0 0.2765176 +0.9303782 0 0.2765176 +1 0 0.2765176 +0 0.002418731 0.2765176 +0.002418731 0.002418731 0.2765176 +0.005155668 0.002418731 0.2765176 +0.009080105 0.002418731 0.2765176 +0.01434988 0.002418731 0.2765176 +0.02107202 0.002418731 0.2765176 +0.02934285 0.002418731 0.2765176 +0.03925039 0.002418731 0.2765176 +0.05087609 0.002418731 0.2765176 +0.06429595 0.002418731 0.2765176 +0.07958143 0.002418731 0.2765176 +0.0968001 0.002418731 0.2765176 +0.1160161 0.002418731 0.2765176 +0.1372908 0.002418731 0.2765176 +0.1606827 0.002418731 0.2765176 +0.1862481 0.002418731 0.2765176 +0.2140411 0.002418731 0.2765176 +0.2441142 0.002418731 0.2765176 +0.2765176 0.002418731 0.2765176 +0.3113005 0.002418731 0.2765176 +0.3485102 0.002418731 0.2765176 +0.388193 0.002418731 0.2765176 +0.4303934 0.002418731 0.2765176 +0.4751555 0.002418731 0.2765176 +0.5225216 0.002418731 0.2765176 +0.5725335 0.002418731 0.2765176 +0.6252316 0.002418731 0.2765176 +0.6806558 0.002418731 0.2765176 +0.7388448 0.002418731 0.2765176 +0.7998369 0.002418731 0.2765176 +0.8636691 0.002418731 0.2765176 +0.9303782 0.002418731 0.2765176 +1 0.002418731 0.2765176 +0 0.005155668 0.2765176 +0.002418731 0.005155668 0.2765176 +0.005155668 0.005155668 0.2765176 +0.009080105 0.005155668 0.2765176 +0.01434988 0.005155668 0.2765176 +0.02107202 0.005155668 0.2765176 +0.02934285 0.005155668 0.2765176 +0.03925039 0.005155668 0.2765176 +0.05087609 0.005155668 0.2765176 +0.06429595 0.005155668 0.2765176 +0.07958143 0.005155668 0.2765176 +0.0968001 0.005155668 0.2765176 +0.1160161 0.005155668 0.2765176 +0.1372908 0.005155668 0.2765176 +0.1606827 0.005155668 0.2765176 +0.1862481 0.005155668 0.2765176 +0.2140411 0.005155668 0.2765176 +0.2441142 0.005155668 0.2765176 +0.2765176 0.005155668 0.2765176 +0.3113005 0.005155668 0.2765176 +0.3485102 0.005155668 0.2765176 +0.388193 0.005155668 0.2765176 +0.4303934 0.005155668 0.2765176 +0.4751555 0.005155668 0.2765176 +0.5225216 0.005155668 0.2765176 +0.5725335 0.005155668 0.2765176 +0.6252316 0.005155668 0.2765176 +0.6806558 0.005155668 0.2765176 +0.7388448 0.005155668 0.2765176 +0.7998369 0.005155668 0.2765176 +0.8636691 0.005155668 0.2765176 +0.9303782 0.005155668 0.2765176 +1 0.005155668 0.2765176 +0 0.009080105 0.2765176 +0.002418731 0.009080105 0.2765176 +0.005155668 0.009080105 0.2765176 +0.009080105 0.009080105 0.2765176 +0.01434988 0.009080105 0.2765176 +0.02107202 0.009080105 0.2765176 +0.02934285 0.009080105 0.2765176 +0.03925039 0.009080105 0.2765176 +0.05087609 0.009080105 0.2765176 +0.06429595 0.009080105 0.2765176 +0.07958143 0.009080105 0.2765176 +0.0968001 0.009080105 0.2765176 +0.1160161 0.009080105 0.2765176 +0.1372908 0.009080105 0.2765176 +0.1606827 0.009080105 0.2765176 +0.1862481 0.009080105 0.2765176 +0.2140411 0.009080105 0.2765176 +0.2441142 0.009080105 0.2765176 +0.2765176 0.009080105 0.2765176 +0.3113005 0.009080105 0.2765176 +0.3485102 0.009080105 0.2765176 +0.388193 0.009080105 0.2765176 +0.4303934 0.009080105 0.2765176 +0.4751555 0.009080105 0.2765176 +0.5225216 0.009080105 0.2765176 +0.5725335 0.009080105 0.2765176 +0.6252316 0.009080105 0.2765176 +0.6806558 0.009080105 0.2765176 +0.7388448 0.009080105 0.2765176 +0.7998369 0.009080105 0.2765176 +0.8636691 0.009080105 0.2765176 +0.9303782 0.009080105 0.2765176 +1 0.009080105 0.2765176 +0 0.01434988 0.2765176 +0.002418731 0.01434988 0.2765176 +0.005155668 0.01434988 0.2765176 +0.009080105 0.01434988 0.2765176 +0.01434988 0.01434988 0.2765176 +0.02107202 0.01434988 0.2765176 +0.02934285 0.01434988 0.2765176 +0.03925039 0.01434988 0.2765176 +0.05087609 0.01434988 0.2765176 +0.06429595 0.01434988 0.2765176 +0.07958143 0.01434988 0.2765176 +0.0968001 0.01434988 0.2765176 +0.1160161 0.01434988 0.2765176 +0.1372908 0.01434988 0.2765176 +0.1606827 0.01434988 0.2765176 +0.1862481 0.01434988 0.2765176 +0.2140411 0.01434988 0.2765176 +0.2441142 0.01434988 0.2765176 +0.2765176 0.01434988 0.2765176 +0.3113005 0.01434988 0.2765176 +0.3485102 0.01434988 0.2765176 +0.388193 0.01434988 0.2765176 +0.4303934 0.01434988 0.2765176 +0.4751555 0.01434988 0.2765176 +0.5225216 0.01434988 0.2765176 +0.5725335 0.01434988 0.2765176 +0.6252316 0.01434988 0.2765176 +0.6806558 0.01434988 0.2765176 +0.7388448 0.01434988 0.2765176 +0.7998369 0.01434988 0.2765176 +0.8636691 0.01434988 0.2765176 +0.9303782 0.01434988 0.2765176 +1 0.01434988 0.2765176 +0 0.02107202 0.2765176 +0.002418731 0.02107202 0.2765176 +0.005155668 0.02107202 0.2765176 +0.009080105 0.02107202 0.2765176 +0.01434988 0.02107202 0.2765176 +0.02107202 0.02107202 0.2765176 +0.02934285 0.02107202 0.2765176 +0.03925039 0.02107202 0.2765176 +0.05087609 0.02107202 0.2765176 +0.06429595 0.02107202 0.2765176 +0.07958143 0.02107202 0.2765176 +0.0968001 0.02107202 0.2765176 +0.1160161 0.02107202 0.2765176 +0.1372908 0.02107202 0.2765176 +0.1606827 0.02107202 0.2765176 +0.1862481 0.02107202 0.2765176 +0.2140411 0.02107202 0.2765176 +0.2441142 0.02107202 0.2765176 +0.2765176 0.02107202 0.2765176 +0.3113005 0.02107202 0.2765176 +0.3485102 0.02107202 0.2765176 +0.388193 0.02107202 0.2765176 +0.4303934 0.02107202 0.2765176 +0.4751555 0.02107202 0.2765176 +0.5225216 0.02107202 0.2765176 +0.5725335 0.02107202 0.2765176 +0.6252316 0.02107202 0.2765176 +0.6806558 0.02107202 0.2765176 +0.7388448 0.02107202 0.2765176 +0.7998369 0.02107202 0.2765176 +0.8636691 0.02107202 0.2765176 +0.9303782 0.02107202 0.2765176 +1 0.02107202 0.2765176 +0 0.02934285 0.2765176 +0.002418731 0.02934285 0.2765176 +0.005155668 0.02934285 0.2765176 +0.009080105 0.02934285 0.2765176 +0.01434988 0.02934285 0.2765176 +0.02107202 0.02934285 0.2765176 +0.02934285 0.02934285 0.2765176 +0.03925039 0.02934285 0.2765176 +0.05087609 0.02934285 0.2765176 +0.06429595 0.02934285 0.2765176 +0.07958143 0.02934285 0.2765176 +0.0968001 0.02934285 0.2765176 +0.1160161 0.02934285 0.2765176 +0.1372908 0.02934285 0.2765176 +0.1606827 0.02934285 0.2765176 +0.1862481 0.02934285 0.2765176 +0.2140411 0.02934285 0.2765176 +0.2441142 0.02934285 0.2765176 +0.2765176 0.02934285 0.2765176 +0.3113005 0.02934285 0.2765176 +0.3485102 0.02934285 0.2765176 +0.388193 0.02934285 0.2765176 +0.4303934 0.02934285 0.2765176 +0.4751555 0.02934285 0.2765176 +0.5225216 0.02934285 0.2765176 +0.5725335 0.02934285 0.2765176 +0.6252316 0.02934285 0.2765176 +0.6806558 0.02934285 0.2765176 +0.7388448 0.02934285 0.2765176 +0.7998369 0.02934285 0.2765176 +0.8636691 0.02934285 0.2765176 +0.9303782 0.02934285 0.2765176 +1 0.02934285 0.2765176 +0 0.03925039 0.2765176 +0.002418731 0.03925039 0.2765176 +0.005155668 0.03925039 0.2765176 +0.009080105 0.03925039 0.2765176 +0.01434988 0.03925039 0.2765176 +0.02107202 0.03925039 0.2765176 +0.02934285 0.03925039 0.2765176 +0.03925039 0.03925039 0.2765176 +0.05087609 0.03925039 0.2765176 +0.06429595 0.03925039 0.2765176 +0.07958143 0.03925039 0.2765176 +0.0968001 0.03925039 0.2765176 +0.1160161 0.03925039 0.2765176 +0.1372908 0.03925039 0.2765176 +0.1606827 0.03925039 0.2765176 +0.1862481 0.03925039 0.2765176 +0.2140411 0.03925039 0.2765176 +0.2441142 0.03925039 0.2765176 +0.2765176 0.03925039 0.2765176 +0.3113005 0.03925039 0.2765176 +0.3485102 0.03925039 0.2765176 +0.388193 0.03925039 0.2765176 +0.4303934 0.03925039 0.2765176 +0.4751555 0.03925039 0.2765176 +0.5225216 0.03925039 0.2765176 +0.5725335 0.03925039 0.2765176 +0.6252316 0.03925039 0.2765176 +0.6806558 0.03925039 0.2765176 +0.7388448 0.03925039 0.2765176 +0.7998369 0.03925039 0.2765176 +0.8636691 0.03925039 0.2765176 +0.9303782 0.03925039 0.2765176 +1 0.03925039 0.2765176 +0 0.05087609 0.2765176 +0.002418731 0.05087609 0.2765176 +0.005155668 0.05087609 0.2765176 +0.009080105 0.05087609 0.2765176 +0.01434988 0.05087609 0.2765176 +0.02107202 0.05087609 0.2765176 +0.02934285 0.05087609 0.2765176 +0.03925039 0.05087609 0.2765176 +0.05087609 0.05087609 0.2765176 +0.06429595 0.05087609 0.2765176 +0.07958143 0.05087609 0.2765176 +0.0968001 0.05087609 0.2765176 +0.1160161 0.05087609 0.2765176 +0.1372908 0.05087609 0.2765176 +0.1606827 0.05087609 0.2765176 +0.1862481 0.05087609 0.2765176 +0.2140411 0.05087609 0.2765176 +0.2441142 0.05087609 0.2765176 +0.2765176 0.05087609 0.2765176 +0.3113005 0.05087609 0.2765176 +0.3485102 0.05087609 0.2765176 +0.388193 0.05087609 0.2765176 +0.4303934 0.05087609 0.2765176 +0.4751555 0.05087609 0.2765176 +0.5225216 0.05087609 0.2765176 +0.5725335 0.05087609 0.2765176 +0.6252316 0.05087609 0.2765176 +0.6806558 0.05087609 0.2765176 +0.7388448 0.05087609 0.2765176 +0.7998369 0.05087609 0.2765176 +0.8636691 0.05087609 0.2765176 +0.9303782 0.05087609 0.2765176 +1 0.05087609 0.2765176 +0 0.06429595 0.2765176 +0.002418731 0.06429595 0.2765176 +0.005155668 0.06429595 0.2765176 +0.009080105 0.06429595 0.2765176 +0.01434988 0.06429595 0.2765176 +0.02107202 0.06429595 0.2765176 +0.02934285 0.06429595 0.2765176 +0.03925039 0.06429595 0.2765176 +0.05087609 0.06429595 0.2765176 +0.06429595 0.06429595 0.2765176 +0.07958143 0.06429595 0.2765176 +0.0968001 0.06429595 0.2765176 +0.1160161 0.06429595 0.2765176 +0.1372908 0.06429595 0.2765176 +0.1606827 0.06429595 0.2765176 +0.1862481 0.06429595 0.2765176 +0.2140411 0.06429595 0.2765176 +0.2441142 0.06429595 0.2765176 +0.2765176 0.06429595 0.2765176 +0.3113005 0.06429595 0.2765176 +0.3485102 0.06429595 0.2765176 +0.388193 0.06429595 0.2765176 +0.4303934 0.06429595 0.2765176 +0.4751555 0.06429595 0.2765176 +0.5225216 0.06429595 0.2765176 +0.5725335 0.06429595 0.2765176 +0.6252316 0.06429595 0.2765176 +0.6806558 0.06429595 0.2765176 +0.7388448 0.06429595 0.2765176 +0.7998369 0.06429595 0.2765176 +0.8636691 0.06429595 0.2765176 +0.9303782 0.06429595 0.2765176 +1 0.06429595 0.2765176 +0 0.07958143 0.2765176 +0.002418731 0.07958143 0.2765176 +0.005155668 0.07958143 0.2765176 +0.009080105 0.07958143 0.2765176 +0.01434988 0.07958143 0.2765176 +0.02107202 0.07958143 0.2765176 +0.02934285 0.07958143 0.2765176 +0.03925039 0.07958143 0.2765176 +0.05087609 0.07958143 0.2765176 +0.06429595 0.07958143 0.2765176 +0.07958143 0.07958143 0.2765176 +0.0968001 0.07958143 0.2765176 +0.1160161 0.07958143 0.2765176 +0.1372908 0.07958143 0.2765176 +0.1606827 0.07958143 0.2765176 +0.1862481 0.07958143 0.2765176 +0.2140411 0.07958143 0.2765176 +0.2441142 0.07958143 0.2765176 +0.2765176 0.07958143 0.2765176 +0.3113005 0.07958143 0.2765176 +0.3485102 0.07958143 0.2765176 +0.388193 0.07958143 0.2765176 +0.4303934 0.07958143 0.2765176 +0.4751555 0.07958143 0.2765176 +0.5225216 0.07958143 0.2765176 +0.5725335 0.07958143 0.2765176 +0.6252316 0.07958143 0.2765176 +0.6806558 0.07958143 0.2765176 +0.7388448 0.07958143 0.2765176 +0.7998369 0.07958143 0.2765176 +0.8636691 0.07958143 0.2765176 +0.9303782 0.07958143 0.2765176 +1 0.07958143 0.2765176 +0 0.0968001 0.2765176 +0.002418731 0.0968001 0.2765176 +0.005155668 0.0968001 0.2765176 +0.009080105 0.0968001 0.2765176 +0.01434988 0.0968001 0.2765176 +0.02107202 0.0968001 0.2765176 +0.02934285 0.0968001 0.2765176 +0.03925039 0.0968001 0.2765176 +0.05087609 0.0968001 0.2765176 +0.06429595 0.0968001 0.2765176 +0.07958143 0.0968001 0.2765176 +0.0968001 0.0968001 0.2765176 +0.1160161 0.0968001 0.2765176 +0.1372908 0.0968001 0.2765176 +0.1606827 0.0968001 0.2765176 +0.1862481 0.0968001 0.2765176 +0.2140411 0.0968001 0.2765176 +0.2441142 0.0968001 0.2765176 +0.2765176 0.0968001 0.2765176 +0.3113005 0.0968001 0.2765176 +0.3485102 0.0968001 0.2765176 +0.388193 0.0968001 0.2765176 +0.4303934 0.0968001 0.2765176 +0.4751555 0.0968001 0.2765176 +0.5225216 0.0968001 0.2765176 +0.5725335 0.0968001 0.2765176 +0.6252316 0.0968001 0.2765176 +0.6806558 0.0968001 0.2765176 +0.7388448 0.0968001 0.2765176 +0.7998369 0.0968001 0.2765176 +0.8636691 0.0968001 0.2765176 +0.9303782 0.0968001 0.2765176 +1 0.0968001 0.2765176 +0 0.1160161 0.2765176 +0.002418731 0.1160161 0.2765176 +0.005155668 0.1160161 0.2765176 +0.009080105 0.1160161 0.2765176 +0.01434988 0.1160161 0.2765176 +0.02107202 0.1160161 0.2765176 +0.02934285 0.1160161 0.2765176 +0.03925039 0.1160161 0.2765176 +0.05087609 0.1160161 0.2765176 +0.06429595 0.1160161 0.2765176 +0.07958143 0.1160161 0.2765176 +0.0968001 0.1160161 0.2765176 +0.1160161 0.1160161 0.2765176 +0.1372908 0.1160161 0.2765176 +0.1606827 0.1160161 0.2765176 +0.1862481 0.1160161 0.2765176 +0.2140411 0.1160161 0.2765176 +0.2441142 0.1160161 0.2765176 +0.2765176 0.1160161 0.2765176 +0.3113005 0.1160161 0.2765176 +0.3485102 0.1160161 0.2765176 +0.388193 0.1160161 0.2765176 +0.4303934 0.1160161 0.2765176 +0.4751555 0.1160161 0.2765176 +0.5225216 0.1160161 0.2765176 +0.5725335 0.1160161 0.2765176 +0.6252316 0.1160161 0.2765176 +0.6806558 0.1160161 0.2765176 +0.7388448 0.1160161 0.2765176 +0.7998369 0.1160161 0.2765176 +0.8636691 0.1160161 0.2765176 +0.9303782 0.1160161 0.2765176 +1 0.1160161 0.2765176 +0 0.1372908 0.2765176 +0.002418731 0.1372908 0.2765176 +0.005155668 0.1372908 0.2765176 +0.009080105 0.1372908 0.2765176 +0.01434988 0.1372908 0.2765176 +0.02107202 0.1372908 0.2765176 +0.02934285 0.1372908 0.2765176 +0.03925039 0.1372908 0.2765176 +0.05087609 0.1372908 0.2765176 +0.06429595 0.1372908 0.2765176 +0.07958143 0.1372908 0.2765176 +0.0968001 0.1372908 0.2765176 +0.1160161 0.1372908 0.2765176 +0.1372908 0.1372908 0.2765176 +0.1606827 0.1372908 0.2765176 +0.1862481 0.1372908 0.2765176 +0.2140411 0.1372908 0.2765176 +0.2441142 0.1372908 0.2765176 +0.2765176 0.1372908 0.2765176 +0.3113005 0.1372908 0.2765176 +0.3485102 0.1372908 0.2765176 +0.388193 0.1372908 0.2765176 +0.4303934 0.1372908 0.2765176 +0.4751555 0.1372908 0.2765176 +0.5225216 0.1372908 0.2765176 +0.5725335 0.1372908 0.2765176 +0.6252316 0.1372908 0.2765176 +0.6806558 0.1372908 0.2765176 +0.7388448 0.1372908 0.2765176 +0.7998369 0.1372908 0.2765176 +0.8636691 0.1372908 0.2765176 +0.9303782 0.1372908 0.2765176 +1 0.1372908 0.2765176 +0 0.1606827 0.2765176 +0.002418731 0.1606827 0.2765176 +0.005155668 0.1606827 0.2765176 +0.009080105 0.1606827 0.2765176 +0.01434988 0.1606827 0.2765176 +0.02107202 0.1606827 0.2765176 +0.02934285 0.1606827 0.2765176 +0.03925039 0.1606827 0.2765176 +0.05087609 0.1606827 0.2765176 +0.06429595 0.1606827 0.2765176 +0.07958143 0.1606827 0.2765176 +0.0968001 0.1606827 0.2765176 +0.1160161 0.1606827 0.2765176 +0.1372908 0.1606827 0.2765176 +0.1606827 0.1606827 0.2765176 +0.1862481 0.1606827 0.2765176 +0.2140411 0.1606827 0.2765176 +0.2441142 0.1606827 0.2765176 +0.2765176 0.1606827 0.2765176 +0.3113005 0.1606827 0.2765176 +0.3485102 0.1606827 0.2765176 +0.388193 0.1606827 0.2765176 +0.4303934 0.1606827 0.2765176 +0.4751555 0.1606827 0.2765176 +0.5225216 0.1606827 0.2765176 +0.5725335 0.1606827 0.2765176 +0.6252316 0.1606827 0.2765176 +0.6806558 0.1606827 0.2765176 +0.7388448 0.1606827 0.2765176 +0.7998369 0.1606827 0.2765176 +0.8636691 0.1606827 0.2765176 +0.9303782 0.1606827 0.2765176 +1 0.1606827 0.2765176 +0 0.1862481 0.2765176 +0.002418731 0.1862481 0.2765176 +0.005155668 0.1862481 0.2765176 +0.009080105 0.1862481 0.2765176 +0.01434988 0.1862481 0.2765176 +0.02107202 0.1862481 0.2765176 +0.02934285 0.1862481 0.2765176 +0.03925039 0.1862481 0.2765176 +0.05087609 0.1862481 0.2765176 +0.06429595 0.1862481 0.2765176 +0.07958143 0.1862481 0.2765176 +0.0968001 0.1862481 0.2765176 +0.1160161 0.1862481 0.2765176 +0.1372908 0.1862481 0.2765176 +0.1606827 0.1862481 0.2765176 +0.1862481 0.1862481 0.2765176 +0.2140411 0.1862481 0.2765176 +0.2441142 0.1862481 0.2765176 +0.2765176 0.1862481 0.2765176 +0.3113005 0.1862481 0.2765176 +0.3485102 0.1862481 0.2765176 +0.388193 0.1862481 0.2765176 +0.4303934 0.1862481 0.2765176 +0.4751555 0.1862481 0.2765176 +0.5225216 0.1862481 0.2765176 +0.5725335 0.1862481 0.2765176 +0.6252316 0.1862481 0.2765176 +0.6806558 0.1862481 0.2765176 +0.7388448 0.1862481 0.2765176 +0.7998369 0.1862481 0.2765176 +0.8636691 0.1862481 0.2765176 +0.9303782 0.1862481 0.2765176 +1 0.1862481 0.2765176 +0 0.2140411 0.2765176 +0.002418731 0.2140411 0.2765176 +0.005155668 0.2140411 0.2765176 +0.009080105 0.2140411 0.2765176 +0.01434988 0.2140411 0.2765176 +0.02107202 0.2140411 0.2765176 +0.02934285 0.2140411 0.2765176 +0.03925039 0.2140411 0.2765176 +0.05087609 0.2140411 0.2765176 +0.06429595 0.2140411 0.2765176 +0.07958143 0.2140411 0.2765176 +0.0968001 0.2140411 0.2765176 +0.1160161 0.2140411 0.2765176 +0.1372908 0.2140411 0.2765176 +0.1606827 0.2140411 0.2765176 +0.1862481 0.2140411 0.2765176 +0.2140411 0.2140411 0.2765176 +0.2441142 0.2140411 0.2765176 +0.2765176 0.2140411 0.2765176 +0.3113005 0.2140411 0.2765176 +0.3485102 0.2140411 0.2765176 +0.388193 0.2140411 0.2765176 +0.4303934 0.2140411 0.2765176 +0.4751555 0.2140411 0.2765176 +0.5225216 0.2140411 0.2765176 +0.5725335 0.2140411 0.2765176 +0.6252316 0.2140411 0.2765176 +0.6806558 0.2140411 0.2765176 +0.7388448 0.2140411 0.2765176 +0.7998369 0.2140411 0.2765176 +0.8636691 0.2140411 0.2765176 +0.9303782 0.2140411 0.2765176 +1 0.2140411 0.2765176 +0 0.2441142 0.2765176 +0.002418731 0.2441142 0.2765176 +0.005155668 0.2441142 0.2765176 +0.009080105 0.2441142 0.2765176 +0.01434988 0.2441142 0.2765176 +0.02107202 0.2441142 0.2765176 +0.02934285 0.2441142 0.2765176 +0.03925039 0.2441142 0.2765176 +0.05087609 0.2441142 0.2765176 +0.06429595 0.2441142 0.2765176 +0.07958143 0.2441142 0.2765176 +0.0968001 0.2441142 0.2765176 +0.1160161 0.2441142 0.2765176 +0.1372908 0.2441142 0.2765176 +0.1606827 0.2441142 0.2765176 +0.1862481 0.2441142 0.2765176 +0.2140411 0.2441142 0.2765176 +0.2441142 0.2441142 0.2765176 +0.2765176 0.2441142 0.2765176 +0.3113005 0.2441142 0.2765176 +0.3485102 0.2441142 0.2765176 +0.388193 0.2441142 0.2765176 +0.4303934 0.2441142 0.2765176 +0.4751555 0.2441142 0.2765176 +0.5225216 0.2441142 0.2765176 +0.5725335 0.2441142 0.2765176 +0.6252316 0.2441142 0.2765176 +0.6806558 0.2441142 0.2765176 +0.7388448 0.2441142 0.2765176 +0.7998369 0.2441142 0.2765176 +0.8636691 0.2441142 0.2765176 +0.9303782 0.2441142 0.2765176 +1 0.2441142 0.2765176 +0 0.2765176 0.2765176 +0.002418731 0.2765176 0.2765176 +0.005155668 0.2765176 0.2765176 +0.009080105 0.2765176 0.2765176 +0.01434988 0.2765176 0.2765176 +0.02107202 0.2765176 0.2765176 +0.02934285 0.2765176 0.2765176 +0.03925039 0.2765176 0.2765176 +0.05087609 0.2765176 0.2765176 +0.06429595 0.2765176 0.2765176 +0.07958143 0.2765176 0.2765176 +0.0968001 0.2765176 0.2765176 +0.1160161 0.2765176 0.2765176 +0.1372908 0.2765176 0.2765176 +0.1606827 0.2765176 0.2765176 +0.1862481 0.2765176 0.2765176 +0.2140411 0.2765176 0.2765176 +0.2441142 0.2765176 0.2765176 +0.2765176 0.2765176 0.2765176 +0.3113005 0.2765176 0.2765176 +0.3485102 0.2765176 0.2765176 +0.388193 0.2765176 0.2765176 +0.4303934 0.2765176 0.2765176 +0.4751555 0.2765176 0.2765176 +0.5225216 0.2765176 0.2765176 +0.5725335 0.2765176 0.2765176 +0.6252316 0.2765176 0.2765176 +0.6806558 0.2765176 0.2765176 +0.7388448 0.2765176 0.2765176 +0.7998369 0.2765176 0.2765176 +0.8636691 0.2765176 0.2765176 +0.9303782 0.2765176 0.2765176 +1 0.2765176 0.2765176 +0 0.3113005 0.2765176 +0.002418731 0.3113005 0.2765176 +0.005155668 0.3113005 0.2765176 +0.009080105 0.3113005 0.2765176 +0.01434988 0.3113005 0.2765176 +0.02107202 0.3113005 0.2765176 +0.02934285 0.3113005 0.2765176 +0.03925039 0.3113005 0.2765176 +0.05087609 0.3113005 0.2765176 +0.06429595 0.3113005 0.2765176 +0.07958143 0.3113005 0.2765176 +0.0968001 0.3113005 0.2765176 +0.1160161 0.3113005 0.2765176 +0.1372908 0.3113005 0.2765176 +0.1606827 0.3113005 0.2765176 +0.1862481 0.3113005 0.2765176 +0.2140411 0.3113005 0.2765176 +0.2441142 0.3113005 0.2765176 +0.2765176 0.3113005 0.2765176 +0.3113005 0.3113005 0.2765176 +0.3485102 0.3113005 0.2765176 +0.388193 0.3113005 0.2765176 +0.4303934 0.3113005 0.2765176 +0.4751555 0.3113005 0.2765176 +0.5225216 0.3113005 0.2765176 +0.5725335 0.3113005 0.2765176 +0.6252316 0.3113005 0.2765176 +0.6806558 0.3113005 0.2765176 +0.7388448 0.3113005 0.2765176 +0.7998369 0.3113005 0.2765176 +0.8636691 0.3113005 0.2765176 +0.9303782 0.3113005 0.2765176 +1 0.3113005 0.2765176 +0 0.3485102 0.2765176 +0.002418731 0.3485102 0.2765176 +0.005155668 0.3485102 0.2765176 +0.009080105 0.3485102 0.2765176 +0.01434988 0.3485102 0.2765176 +0.02107202 0.3485102 0.2765176 +0.02934285 0.3485102 0.2765176 +0.03925039 0.3485102 0.2765176 +0.05087609 0.3485102 0.2765176 +0.06429595 0.3485102 0.2765176 +0.07958143 0.3485102 0.2765176 +0.0968001 0.3485102 0.2765176 +0.1160161 0.3485102 0.2765176 +0.1372908 0.3485102 0.2765176 +0.1606827 0.3485102 0.2765176 +0.1862481 0.3485102 0.2765176 +0.2140411 0.3485102 0.2765176 +0.2441142 0.3485102 0.2765176 +0.2765176 0.3485102 0.2765176 +0.3113005 0.3485102 0.2765176 +0.3485102 0.3485102 0.2765176 +0.388193 0.3485102 0.2765176 +0.4303934 0.3485102 0.2765176 +0.4751555 0.3485102 0.2765176 +0.5225216 0.3485102 0.2765176 +0.5725335 0.3485102 0.2765176 +0.6252316 0.3485102 0.2765176 +0.6806558 0.3485102 0.2765176 +0.7388448 0.3485102 0.2765176 +0.7998369 0.3485102 0.2765176 +0.8636691 0.3485102 0.2765176 +0.9303782 0.3485102 0.2765176 +1 0.3485102 0.2765176 +0 0.388193 0.2765176 +0.002418731 0.388193 0.2765176 +0.005155668 0.388193 0.2765176 +0.009080105 0.388193 0.2765176 +0.01434988 0.388193 0.2765176 +0.02107202 0.388193 0.2765176 +0.02934285 0.388193 0.2765176 +0.03925039 0.388193 0.2765176 +0.05087609 0.388193 0.2765176 +0.06429595 0.388193 0.2765176 +0.07958143 0.388193 0.2765176 +0.0968001 0.388193 0.2765176 +0.1160161 0.388193 0.2765176 +0.1372908 0.388193 0.2765176 +0.1606827 0.388193 0.2765176 +0.1862481 0.388193 0.2765176 +0.2140411 0.388193 0.2765176 +0.2441142 0.388193 0.2765176 +0.2765176 0.388193 0.2765176 +0.3113005 0.388193 0.2765176 +0.3485102 0.388193 0.2765176 +0.388193 0.388193 0.2765176 +0.4303934 0.388193 0.2765176 +0.4751555 0.388193 0.2765176 +0.5225216 0.388193 0.2765176 +0.5725335 0.388193 0.2765176 +0.6252316 0.388193 0.2765176 +0.6806558 0.388193 0.2765176 +0.7388448 0.388193 0.2765176 +0.7998369 0.388193 0.2765176 +0.8636691 0.388193 0.2765176 +0.9303782 0.388193 0.2765176 +1 0.388193 0.2765176 +0 0.4303934 0.2765176 +0.002418731 0.4303934 0.2765176 +0.005155668 0.4303934 0.2765176 +0.009080105 0.4303934 0.2765176 +0.01434988 0.4303934 0.2765176 +0.02107202 0.4303934 0.2765176 +0.02934285 0.4303934 0.2765176 +0.03925039 0.4303934 0.2765176 +0.05087609 0.4303934 0.2765176 +0.06429595 0.4303934 0.2765176 +0.07958143 0.4303934 0.2765176 +0.0968001 0.4303934 0.2765176 +0.1160161 0.4303934 0.2765176 +0.1372908 0.4303934 0.2765176 +0.1606827 0.4303934 0.2765176 +0.1862481 0.4303934 0.2765176 +0.2140411 0.4303934 0.2765176 +0.2441142 0.4303934 0.2765176 +0.2765176 0.4303934 0.2765176 +0.3113005 0.4303934 0.2765176 +0.3485102 0.4303934 0.2765176 +0.388193 0.4303934 0.2765176 +0.4303934 0.4303934 0.2765176 +0.4751555 0.4303934 0.2765176 +0.5225216 0.4303934 0.2765176 +0.5725335 0.4303934 0.2765176 +0.6252316 0.4303934 0.2765176 +0.6806558 0.4303934 0.2765176 +0.7388448 0.4303934 0.2765176 +0.7998369 0.4303934 0.2765176 +0.8636691 0.4303934 0.2765176 +0.9303782 0.4303934 0.2765176 +1 0.4303934 0.2765176 +0 0.4751555 0.2765176 +0.002418731 0.4751555 0.2765176 +0.005155668 0.4751555 0.2765176 +0.009080105 0.4751555 0.2765176 +0.01434988 0.4751555 0.2765176 +0.02107202 0.4751555 0.2765176 +0.02934285 0.4751555 0.2765176 +0.03925039 0.4751555 0.2765176 +0.05087609 0.4751555 0.2765176 +0.06429595 0.4751555 0.2765176 +0.07958143 0.4751555 0.2765176 +0.0968001 0.4751555 0.2765176 +0.1160161 0.4751555 0.2765176 +0.1372908 0.4751555 0.2765176 +0.1606827 0.4751555 0.2765176 +0.1862481 0.4751555 0.2765176 +0.2140411 0.4751555 0.2765176 +0.2441142 0.4751555 0.2765176 +0.2765176 0.4751555 0.2765176 +0.3113005 0.4751555 0.2765176 +0.3485102 0.4751555 0.2765176 +0.388193 0.4751555 0.2765176 +0.4303934 0.4751555 0.2765176 +0.4751555 0.4751555 0.2765176 +0.5225216 0.4751555 0.2765176 +0.5725335 0.4751555 0.2765176 +0.6252316 0.4751555 0.2765176 +0.6806558 0.4751555 0.2765176 +0.7388448 0.4751555 0.2765176 +0.7998369 0.4751555 0.2765176 +0.8636691 0.4751555 0.2765176 +0.9303782 0.4751555 0.2765176 +1 0.4751555 0.2765176 +0 0.5225216 0.2765176 +0.002418731 0.5225216 0.2765176 +0.005155668 0.5225216 0.2765176 +0.009080105 0.5225216 0.2765176 +0.01434988 0.5225216 0.2765176 +0.02107202 0.5225216 0.2765176 +0.02934285 0.5225216 0.2765176 +0.03925039 0.5225216 0.2765176 +0.05087609 0.5225216 0.2765176 +0.06429595 0.5225216 0.2765176 +0.07958143 0.5225216 0.2765176 +0.0968001 0.5225216 0.2765176 +0.1160161 0.5225216 0.2765176 +0.1372908 0.5225216 0.2765176 +0.1606827 0.5225216 0.2765176 +0.1862481 0.5225216 0.2765176 +0.2140411 0.5225216 0.2765176 +0.2441142 0.5225216 0.2765176 +0.2765176 0.5225216 0.2765176 +0.3113005 0.5225216 0.2765176 +0.3485102 0.5225216 0.2765176 +0.388193 0.5225216 0.2765176 +0.4303934 0.5225216 0.2765176 +0.4751555 0.5225216 0.2765176 +0.5225216 0.5225216 0.2765176 +0.5725335 0.5225216 0.2765176 +0.6252316 0.5225216 0.2765176 +0.6806558 0.5225216 0.2765176 +0.7388448 0.5225216 0.2765176 +0.7998369 0.5225216 0.2765176 +0.8636691 0.5225216 0.2765176 +0.9303782 0.5225216 0.2765176 +1 0.5225216 0.2765176 +0 0.5725335 0.2765176 +0.002418731 0.5725335 0.2765176 +0.005155668 0.5725335 0.2765176 +0.009080105 0.5725335 0.2765176 +0.01434988 0.5725335 0.2765176 +0.02107202 0.5725335 0.2765176 +0.02934285 0.5725335 0.2765176 +0.03925039 0.5725335 0.2765176 +0.05087609 0.5725335 0.2765176 +0.06429595 0.5725335 0.2765176 +0.07958143 0.5725335 0.2765176 +0.0968001 0.5725335 0.2765176 +0.1160161 0.5725335 0.2765176 +0.1372908 0.5725335 0.2765176 +0.1606827 0.5725335 0.2765176 +0.1862481 0.5725335 0.2765176 +0.2140411 0.5725335 0.2765176 +0.2441142 0.5725335 0.2765176 +0.2765176 0.5725335 0.2765176 +0.3113005 0.5725335 0.2765176 +0.3485102 0.5725335 0.2765176 +0.388193 0.5725335 0.2765176 +0.4303934 0.5725335 0.2765176 +0.4751555 0.5725335 0.2765176 +0.5225216 0.5725335 0.2765176 +0.5725335 0.5725335 0.2765176 +0.6252316 0.5725335 0.2765176 +0.6806558 0.5725335 0.2765176 +0.7388448 0.5725335 0.2765176 +0.7998369 0.5725335 0.2765176 +0.8636691 0.5725335 0.2765176 +0.9303782 0.5725335 0.2765176 +1 0.5725335 0.2765176 +0 0.6252316 0.2765176 +0.002418731 0.6252316 0.2765176 +0.005155668 0.6252316 0.2765176 +0.009080105 0.6252316 0.2765176 +0.01434988 0.6252316 0.2765176 +0.02107202 0.6252316 0.2765176 +0.02934285 0.6252316 0.2765176 +0.03925039 0.6252316 0.2765176 +0.05087609 0.6252316 0.2765176 +0.06429595 0.6252316 0.2765176 +0.07958143 0.6252316 0.2765176 +0.0968001 0.6252316 0.2765176 +0.1160161 0.6252316 0.2765176 +0.1372908 0.6252316 0.2765176 +0.1606827 0.6252316 0.2765176 +0.1862481 0.6252316 0.2765176 +0.2140411 0.6252316 0.2765176 +0.2441142 0.6252316 0.2765176 +0.2765176 0.6252316 0.2765176 +0.3113005 0.6252316 0.2765176 +0.3485102 0.6252316 0.2765176 +0.388193 0.6252316 0.2765176 +0.4303934 0.6252316 0.2765176 +0.4751555 0.6252316 0.2765176 +0.5225216 0.6252316 0.2765176 +0.5725335 0.6252316 0.2765176 +0.6252316 0.6252316 0.2765176 +0.6806558 0.6252316 0.2765176 +0.7388448 0.6252316 0.2765176 +0.7998369 0.6252316 0.2765176 +0.8636691 0.6252316 0.2765176 +0.9303782 0.6252316 0.2765176 +1 0.6252316 0.2765176 +0 0.6806558 0.2765176 +0.002418731 0.6806558 0.2765176 +0.005155668 0.6806558 0.2765176 +0.009080105 0.6806558 0.2765176 +0.01434988 0.6806558 0.2765176 +0.02107202 0.6806558 0.2765176 +0.02934285 0.6806558 0.2765176 +0.03925039 0.6806558 0.2765176 +0.05087609 0.6806558 0.2765176 +0.06429595 0.6806558 0.2765176 +0.07958143 0.6806558 0.2765176 +0.0968001 0.6806558 0.2765176 +0.1160161 0.6806558 0.2765176 +0.1372908 0.6806558 0.2765176 +0.1606827 0.6806558 0.2765176 +0.1862481 0.6806558 0.2765176 +0.2140411 0.6806558 0.2765176 +0.2441142 0.6806558 0.2765176 +0.2765176 0.6806558 0.2765176 +0.3113005 0.6806558 0.2765176 +0.3485102 0.6806558 0.2765176 +0.388193 0.6806558 0.2765176 +0.4303934 0.6806558 0.2765176 +0.4751555 0.6806558 0.2765176 +0.5225216 0.6806558 0.2765176 +0.5725335 0.6806558 0.2765176 +0.6252316 0.6806558 0.2765176 +0.6806558 0.6806558 0.2765176 +0.7388448 0.6806558 0.2765176 +0.7998369 0.6806558 0.2765176 +0.8636691 0.6806558 0.2765176 +0.9303782 0.6806558 0.2765176 +1 0.6806558 0.2765176 +0 0.7388448 0.2765176 +0.002418731 0.7388448 0.2765176 +0.005155668 0.7388448 0.2765176 +0.009080105 0.7388448 0.2765176 +0.01434988 0.7388448 0.2765176 +0.02107202 0.7388448 0.2765176 +0.02934285 0.7388448 0.2765176 +0.03925039 0.7388448 0.2765176 +0.05087609 0.7388448 0.2765176 +0.06429595 0.7388448 0.2765176 +0.07958143 0.7388448 0.2765176 +0.0968001 0.7388448 0.2765176 +0.1160161 0.7388448 0.2765176 +0.1372908 0.7388448 0.2765176 +0.1606827 0.7388448 0.2765176 +0.1862481 0.7388448 0.2765176 +0.2140411 0.7388448 0.2765176 +0.2441142 0.7388448 0.2765176 +0.2765176 0.7388448 0.2765176 +0.3113005 0.7388448 0.2765176 +0.3485102 0.7388448 0.2765176 +0.388193 0.7388448 0.2765176 +0.4303934 0.7388448 0.2765176 +0.4751555 0.7388448 0.2765176 +0.5225216 0.7388448 0.2765176 +0.5725335 0.7388448 0.2765176 +0.6252316 0.7388448 0.2765176 +0.6806558 0.7388448 0.2765176 +0.7388448 0.7388448 0.2765176 +0.7998369 0.7388448 0.2765176 +0.8636691 0.7388448 0.2765176 +0.9303782 0.7388448 0.2765176 +1 0.7388448 0.2765176 +0 0.7998369 0.2765176 +0.002418731 0.7998369 0.2765176 +0.005155668 0.7998369 0.2765176 +0.009080105 0.7998369 0.2765176 +0.01434988 0.7998369 0.2765176 +0.02107202 0.7998369 0.2765176 +0.02934285 0.7998369 0.2765176 +0.03925039 0.7998369 0.2765176 +0.05087609 0.7998369 0.2765176 +0.06429595 0.7998369 0.2765176 +0.07958143 0.7998369 0.2765176 +0.0968001 0.7998369 0.2765176 +0.1160161 0.7998369 0.2765176 +0.1372908 0.7998369 0.2765176 +0.1606827 0.7998369 0.2765176 +0.1862481 0.7998369 0.2765176 +0.2140411 0.7998369 0.2765176 +0.2441142 0.7998369 0.2765176 +0.2765176 0.7998369 0.2765176 +0.3113005 0.7998369 0.2765176 +0.3485102 0.7998369 0.2765176 +0.388193 0.7998369 0.2765176 +0.4303934 0.7998369 0.2765176 +0.4751555 0.7998369 0.2765176 +0.5225216 0.7998369 0.2765176 +0.5725335 0.7998369 0.2765176 +0.6252316 0.7998369 0.2765176 +0.6806558 0.7998369 0.2765176 +0.7388448 0.7998369 0.2765176 +0.7998369 0.7998369 0.2765176 +0.8636691 0.7998369 0.2765176 +0.9303782 0.7998369 0.2765176 +1 0.7998369 0.2765176 +0 0.8636691 0.2765176 +0.002418731 0.8636691 0.2765176 +0.005155668 0.8636691 0.2765176 +0.009080105 0.8636691 0.2765176 +0.01434988 0.8636691 0.2765176 +0.02107202 0.8636691 0.2765176 +0.02934285 0.8636691 0.2765176 +0.03925039 0.8636691 0.2765176 +0.05087609 0.8636691 0.2765176 +0.06429595 0.8636691 0.2765176 +0.07958143 0.8636691 0.2765176 +0.0968001 0.8636691 0.2765176 +0.1160161 0.8636691 0.2765176 +0.1372908 0.8636691 0.2765176 +0.1606827 0.8636691 0.2765176 +0.1862481 0.8636691 0.2765176 +0.2140411 0.8636691 0.2765176 +0.2441142 0.8636691 0.2765176 +0.2765176 0.8636691 0.2765176 +0.3113005 0.8636691 0.2765176 +0.3485102 0.8636691 0.2765176 +0.388193 0.8636691 0.2765176 +0.4303934 0.8636691 0.2765176 +0.4751555 0.8636691 0.2765176 +0.5225216 0.8636691 0.2765176 +0.5725335 0.8636691 0.2765176 +0.6252316 0.8636691 0.2765176 +0.6806558 0.8636691 0.2765176 +0.7388448 0.8636691 0.2765176 +0.7998369 0.8636691 0.2765176 +0.8636691 0.8636691 0.2765176 +0.9303782 0.8636691 0.2765176 +1 0.8636691 0.2765176 +0 0.9303782 0.2765176 +0.002418731 0.9303782 0.2765176 +0.005155668 0.9303782 0.2765176 +0.009080105 0.9303782 0.2765176 +0.01434988 0.9303782 0.2765176 +0.02107202 0.9303782 0.2765176 +0.02934285 0.9303782 0.2765176 +0.03925039 0.9303782 0.2765176 +0.05087609 0.9303782 0.2765176 +0.06429595 0.9303782 0.2765176 +0.07958143 0.9303782 0.2765176 +0.0968001 0.9303782 0.2765176 +0.1160161 0.9303782 0.2765176 +0.1372908 0.9303782 0.2765176 +0.1606827 0.9303782 0.2765176 +0.1862481 0.9303782 0.2765176 +0.2140411 0.9303782 0.2765176 +0.2441142 0.9303782 0.2765176 +0.2765176 0.9303782 0.2765176 +0.3113005 0.9303782 0.2765176 +0.3485102 0.9303782 0.2765176 +0.388193 0.9303782 0.2765176 +0.4303934 0.9303782 0.2765176 +0.4751555 0.9303782 0.2765176 +0.5225216 0.9303782 0.2765176 +0.5725335 0.9303782 0.2765176 +0.6252316 0.9303782 0.2765176 +0.6806558 0.9303782 0.2765176 +0.7388448 0.9303782 0.2765176 +0.7998369 0.9303782 0.2765176 +0.8636691 0.9303782 0.2765176 +0.9303782 0.9303782 0.2765176 +1 0.9303782 0.2765176 +0 1 0.2765176 +0.002418731 1 0.2765176 +0.005155668 1 0.2765176 +0.009080105 1 0.2765176 +0.01434988 1 0.2765176 +0.02107202 1 0.2765176 +0.02934285 1 0.2765176 +0.03925039 1 0.2765176 +0.05087609 1 0.2765176 +0.06429595 1 0.2765176 +0.07958143 1 0.2765176 +0.0968001 1 0.2765176 +0.1160161 1 0.2765176 +0.1372908 1 0.2765176 +0.1606827 1 0.2765176 +0.1862481 1 0.2765176 +0.2140411 1 0.2765176 +0.2441142 1 0.2765176 +0.2765176 1 0.2765176 +0.3113005 1 0.2765176 +0.3485102 1 0.2765176 +0.388193 1 0.2765176 +0.4303934 1 0.2765176 +0.4751555 1 0.2765176 +0.5225216 1 0.2765176 +0.5725335 1 0.2765176 +0.6252316 1 0.2765176 +0.6806558 1 0.2765176 +0.7388448 1 0.2765176 +0.7998369 1 0.2765176 +0.8636691 1 0.2765176 +0.9303782 1 0.2765176 +1 1 0.2765176 +0 0 0.3113005 +0.002418731 0 0.3113005 +0.005155668 0 0.3113005 +0.009080105 0 0.3113005 +0.01434988 0 0.3113005 +0.02107202 0 0.3113005 +0.02934285 0 0.3113005 +0.03925039 0 0.3113005 +0.05087609 0 0.3113005 +0.06429595 0 0.3113005 +0.07958143 0 0.3113005 +0.0968001 0 0.3113005 +0.1160161 0 0.3113005 +0.1372908 0 0.3113005 +0.1606827 0 0.3113005 +0.1862481 0 0.3113005 +0.2140411 0 0.3113005 +0.2441142 0 0.3113005 +0.2765176 0 0.3113005 +0.3113005 0 0.3113005 +0.3485102 0 0.3113005 +0.388193 0 0.3113005 +0.4303934 0 0.3113005 +0.4751555 0 0.3113005 +0.5225216 0 0.3113005 +0.5725335 0 0.3113005 +0.6252316 0 0.3113005 +0.6806558 0 0.3113005 +0.7388448 0 0.3113005 +0.7998369 0 0.3113005 +0.8636691 0 0.3113005 +0.9303782 0 0.3113005 +1 0 0.3113005 +0 0.002418731 0.3113005 +0.002418731 0.002418731 0.3113005 +0.005155668 0.002418731 0.3113005 +0.009080105 0.002418731 0.3113005 +0.01434988 0.002418731 0.3113005 +0.02107202 0.002418731 0.3113005 +0.02934285 0.002418731 0.3113005 +0.03925039 0.002418731 0.3113005 +0.05087609 0.002418731 0.3113005 +0.06429595 0.002418731 0.3113005 +0.07958143 0.002418731 0.3113005 +0.0968001 0.002418731 0.3113005 +0.1160161 0.002418731 0.3113005 +0.1372908 0.002418731 0.3113005 +0.1606827 0.002418731 0.3113005 +0.1862481 0.002418731 0.3113005 +0.2140411 0.002418731 0.3113005 +0.2441142 0.002418731 0.3113005 +0.2765176 0.002418731 0.3113005 +0.3113005 0.002418731 0.3113005 +0.3485102 0.002418731 0.3113005 +0.388193 0.002418731 0.3113005 +0.4303934 0.002418731 0.3113005 +0.4751555 0.002418731 0.3113005 +0.5225216 0.002418731 0.3113005 +0.5725335 0.002418731 0.3113005 +0.6252316 0.002418731 0.3113005 +0.6806558 0.002418731 0.3113005 +0.7388448 0.002418731 0.3113005 +0.7998369 0.002418731 0.3113005 +0.8636691 0.002418731 0.3113005 +0.9303782 0.002418731 0.3113005 +1 0.002418731 0.3113005 +0 0.005155668 0.3113005 +0.002418731 0.005155668 0.3113005 +0.005155668 0.005155668 0.3113005 +0.009080105 0.005155668 0.3113005 +0.01434988 0.005155668 0.3113005 +0.02107202 0.005155668 0.3113005 +0.02934285 0.005155668 0.3113005 +0.03925039 0.005155668 0.3113005 +0.05087609 0.005155668 0.3113005 +0.06429595 0.005155668 0.3113005 +0.07958143 0.005155668 0.3113005 +0.0968001 0.005155668 0.3113005 +0.1160161 0.005155668 0.3113005 +0.1372908 0.005155668 0.3113005 +0.1606827 0.005155668 0.3113005 +0.1862481 0.005155668 0.3113005 +0.2140411 0.005155668 0.3113005 +0.2441142 0.005155668 0.3113005 +0.2765176 0.005155668 0.3113005 +0.3113005 0.005155668 0.3113005 +0.3485102 0.005155668 0.3113005 +0.388193 0.005155668 0.3113005 +0.4303934 0.005155668 0.3113005 +0.4751555 0.005155668 0.3113005 +0.5225216 0.005155668 0.3113005 +0.5725335 0.005155668 0.3113005 +0.6252316 0.005155668 0.3113005 +0.6806558 0.005155668 0.3113005 +0.7388448 0.005155668 0.3113005 +0.7998369 0.005155668 0.3113005 +0.8636691 0.005155668 0.3113005 +0.9303782 0.005155668 0.3113005 +1 0.005155668 0.3113005 +0 0.009080105 0.3113005 +0.002418731 0.009080105 0.3113005 +0.005155668 0.009080105 0.3113005 +0.009080105 0.009080105 0.3113005 +0.01434988 0.009080105 0.3113005 +0.02107202 0.009080105 0.3113005 +0.02934285 0.009080105 0.3113005 +0.03925039 0.009080105 0.3113005 +0.05087609 0.009080105 0.3113005 +0.06429595 0.009080105 0.3113005 +0.07958143 0.009080105 0.3113005 +0.0968001 0.009080105 0.3113005 +0.1160161 0.009080105 0.3113005 +0.1372908 0.009080105 0.3113005 +0.1606827 0.009080105 0.3113005 +0.1862481 0.009080105 0.3113005 +0.2140411 0.009080105 0.3113005 +0.2441142 0.009080105 0.3113005 +0.2765176 0.009080105 0.3113005 +0.3113005 0.009080105 0.3113005 +0.3485102 0.009080105 0.3113005 +0.388193 0.009080105 0.3113005 +0.4303934 0.009080105 0.3113005 +0.4751555 0.009080105 0.3113005 +0.5225216 0.009080105 0.3113005 +0.5725335 0.009080105 0.3113005 +0.6252316 0.009080105 0.3113005 +0.6806558 0.009080105 0.3113005 +0.7388448 0.009080105 0.3113005 +0.7998369 0.009080105 0.3113005 +0.8636691 0.009080105 0.3113005 +0.9303782 0.009080105 0.3113005 +1 0.009080105 0.3113005 +0 0.01434988 0.3113005 +0.002418731 0.01434988 0.3113005 +0.005155668 0.01434988 0.3113005 +0.009080105 0.01434988 0.3113005 +0.01434988 0.01434988 0.3113005 +0.02107202 0.01434988 0.3113005 +0.02934285 0.01434988 0.3113005 +0.03925039 0.01434988 0.3113005 +0.05087609 0.01434988 0.3113005 +0.06429595 0.01434988 0.3113005 +0.07958143 0.01434988 0.3113005 +0.0968001 0.01434988 0.3113005 +0.1160161 0.01434988 0.3113005 +0.1372908 0.01434988 0.3113005 +0.1606827 0.01434988 0.3113005 +0.1862481 0.01434988 0.3113005 +0.2140411 0.01434988 0.3113005 +0.2441142 0.01434988 0.3113005 +0.2765176 0.01434988 0.3113005 +0.3113005 0.01434988 0.3113005 +0.3485102 0.01434988 0.3113005 +0.388193 0.01434988 0.3113005 +0.4303934 0.01434988 0.3113005 +0.4751555 0.01434988 0.3113005 +0.5225216 0.01434988 0.3113005 +0.5725335 0.01434988 0.3113005 +0.6252316 0.01434988 0.3113005 +0.6806558 0.01434988 0.3113005 +0.7388448 0.01434988 0.3113005 +0.7998369 0.01434988 0.3113005 +0.8636691 0.01434988 0.3113005 +0.9303782 0.01434988 0.3113005 +1 0.01434988 0.3113005 +0 0.02107202 0.3113005 +0.002418731 0.02107202 0.3113005 +0.005155668 0.02107202 0.3113005 +0.009080105 0.02107202 0.3113005 +0.01434988 0.02107202 0.3113005 +0.02107202 0.02107202 0.3113005 +0.02934285 0.02107202 0.3113005 +0.03925039 0.02107202 0.3113005 +0.05087609 0.02107202 0.3113005 +0.06429595 0.02107202 0.3113005 +0.07958143 0.02107202 0.3113005 +0.0968001 0.02107202 0.3113005 +0.1160161 0.02107202 0.3113005 +0.1372908 0.02107202 0.3113005 +0.1606827 0.02107202 0.3113005 +0.1862481 0.02107202 0.3113005 +0.2140411 0.02107202 0.3113005 +0.2441142 0.02107202 0.3113005 +0.2765176 0.02107202 0.3113005 +0.3113005 0.02107202 0.3113005 +0.3485102 0.02107202 0.3113005 +0.388193 0.02107202 0.3113005 +0.4303934 0.02107202 0.3113005 +0.4751555 0.02107202 0.3113005 +0.5225216 0.02107202 0.3113005 +0.5725335 0.02107202 0.3113005 +0.6252316 0.02107202 0.3113005 +0.6806558 0.02107202 0.3113005 +0.7388448 0.02107202 0.3113005 +0.7998369 0.02107202 0.3113005 +0.8636691 0.02107202 0.3113005 +0.9303782 0.02107202 0.3113005 +1 0.02107202 0.3113005 +0 0.02934285 0.3113005 +0.002418731 0.02934285 0.3113005 +0.005155668 0.02934285 0.3113005 +0.009080105 0.02934285 0.3113005 +0.01434988 0.02934285 0.3113005 +0.02107202 0.02934285 0.3113005 +0.02934285 0.02934285 0.3113005 +0.03925039 0.02934285 0.3113005 +0.05087609 0.02934285 0.3113005 +0.06429595 0.02934285 0.3113005 +0.07958143 0.02934285 0.3113005 +0.0968001 0.02934285 0.3113005 +0.1160161 0.02934285 0.3113005 +0.1372908 0.02934285 0.3113005 +0.1606827 0.02934285 0.3113005 +0.1862481 0.02934285 0.3113005 +0.2140411 0.02934285 0.3113005 +0.2441142 0.02934285 0.3113005 +0.2765176 0.02934285 0.3113005 +0.3113005 0.02934285 0.3113005 +0.3485102 0.02934285 0.3113005 +0.388193 0.02934285 0.3113005 +0.4303934 0.02934285 0.3113005 +0.4751555 0.02934285 0.3113005 +0.5225216 0.02934285 0.3113005 +0.5725335 0.02934285 0.3113005 +0.6252316 0.02934285 0.3113005 +0.6806558 0.02934285 0.3113005 +0.7388448 0.02934285 0.3113005 +0.7998369 0.02934285 0.3113005 +0.8636691 0.02934285 0.3113005 +0.9303782 0.02934285 0.3113005 +1 0.02934285 0.3113005 +0 0.03925039 0.3113005 +0.002418731 0.03925039 0.3113005 +0.005155668 0.03925039 0.3113005 +0.009080105 0.03925039 0.3113005 +0.01434988 0.03925039 0.3113005 +0.02107202 0.03925039 0.3113005 +0.02934285 0.03925039 0.3113005 +0.03925039 0.03925039 0.3113005 +0.05087609 0.03925039 0.3113005 +0.06429595 0.03925039 0.3113005 +0.07958143 0.03925039 0.3113005 +0.0968001 0.03925039 0.3113005 +0.1160161 0.03925039 0.3113005 +0.1372908 0.03925039 0.3113005 +0.1606827 0.03925039 0.3113005 +0.1862481 0.03925039 0.3113005 +0.2140411 0.03925039 0.3113005 +0.2441142 0.03925039 0.3113005 +0.2765176 0.03925039 0.3113005 +0.3113005 0.03925039 0.3113005 +0.3485102 0.03925039 0.3113005 +0.388193 0.03925039 0.3113005 +0.4303934 0.03925039 0.3113005 +0.4751555 0.03925039 0.3113005 +0.5225216 0.03925039 0.3113005 +0.5725335 0.03925039 0.3113005 +0.6252316 0.03925039 0.3113005 +0.6806558 0.03925039 0.3113005 +0.7388448 0.03925039 0.3113005 +0.7998369 0.03925039 0.3113005 +0.8636691 0.03925039 0.3113005 +0.9303782 0.03925039 0.3113005 +1 0.03925039 0.3113005 +0 0.05087609 0.3113005 +0.002418731 0.05087609 0.3113005 +0.005155668 0.05087609 0.3113005 +0.009080105 0.05087609 0.3113005 +0.01434988 0.05087609 0.3113005 +0.02107202 0.05087609 0.3113005 +0.02934285 0.05087609 0.3113005 +0.03925039 0.05087609 0.3113005 +0.05087609 0.05087609 0.3113005 +0.06429595 0.05087609 0.3113005 +0.07958143 0.05087609 0.3113005 +0.0968001 0.05087609 0.3113005 +0.1160161 0.05087609 0.3113005 +0.1372908 0.05087609 0.3113005 +0.1606827 0.05087609 0.3113005 +0.1862481 0.05087609 0.3113005 +0.2140411 0.05087609 0.3113005 +0.2441142 0.05087609 0.3113005 +0.2765176 0.05087609 0.3113005 +0.3113005 0.05087609 0.3113005 +0.3485102 0.05087609 0.3113005 +0.388193 0.05087609 0.3113005 +0.4303934 0.05087609 0.3113005 +0.4751555 0.05087609 0.3113005 +0.5225216 0.05087609 0.3113005 +0.5725335 0.05087609 0.3113005 +0.6252316 0.05087609 0.3113005 +0.6806558 0.05087609 0.3113005 +0.7388448 0.05087609 0.3113005 +0.7998369 0.05087609 0.3113005 +0.8636691 0.05087609 0.3113005 +0.9303782 0.05087609 0.3113005 +1 0.05087609 0.3113005 +0 0.06429595 0.3113005 +0.002418731 0.06429595 0.3113005 +0.005155668 0.06429595 0.3113005 +0.009080105 0.06429595 0.3113005 +0.01434988 0.06429595 0.3113005 +0.02107202 0.06429595 0.3113005 +0.02934285 0.06429595 0.3113005 +0.03925039 0.06429595 0.3113005 +0.05087609 0.06429595 0.3113005 +0.06429595 0.06429595 0.3113005 +0.07958143 0.06429595 0.3113005 +0.0968001 0.06429595 0.3113005 +0.1160161 0.06429595 0.3113005 +0.1372908 0.06429595 0.3113005 +0.1606827 0.06429595 0.3113005 +0.1862481 0.06429595 0.3113005 +0.2140411 0.06429595 0.3113005 +0.2441142 0.06429595 0.3113005 +0.2765176 0.06429595 0.3113005 +0.3113005 0.06429595 0.3113005 +0.3485102 0.06429595 0.3113005 +0.388193 0.06429595 0.3113005 +0.4303934 0.06429595 0.3113005 +0.4751555 0.06429595 0.3113005 +0.5225216 0.06429595 0.3113005 +0.5725335 0.06429595 0.3113005 +0.6252316 0.06429595 0.3113005 +0.6806558 0.06429595 0.3113005 +0.7388448 0.06429595 0.3113005 +0.7998369 0.06429595 0.3113005 +0.8636691 0.06429595 0.3113005 +0.9303782 0.06429595 0.3113005 +1 0.06429595 0.3113005 +0 0.07958143 0.3113005 +0.002418731 0.07958143 0.3113005 +0.005155668 0.07958143 0.3113005 +0.009080105 0.07958143 0.3113005 +0.01434988 0.07958143 0.3113005 +0.02107202 0.07958143 0.3113005 +0.02934285 0.07958143 0.3113005 +0.03925039 0.07958143 0.3113005 +0.05087609 0.07958143 0.3113005 +0.06429595 0.07958143 0.3113005 +0.07958143 0.07958143 0.3113005 +0.0968001 0.07958143 0.3113005 +0.1160161 0.07958143 0.3113005 +0.1372908 0.07958143 0.3113005 +0.1606827 0.07958143 0.3113005 +0.1862481 0.07958143 0.3113005 +0.2140411 0.07958143 0.3113005 +0.2441142 0.07958143 0.3113005 +0.2765176 0.07958143 0.3113005 +0.3113005 0.07958143 0.3113005 +0.3485102 0.07958143 0.3113005 +0.388193 0.07958143 0.3113005 +0.4303934 0.07958143 0.3113005 +0.4751555 0.07958143 0.3113005 +0.5225216 0.07958143 0.3113005 +0.5725335 0.07958143 0.3113005 +0.6252316 0.07958143 0.3113005 +0.6806558 0.07958143 0.3113005 +0.7388448 0.07958143 0.3113005 +0.7998369 0.07958143 0.3113005 +0.8636691 0.07958143 0.3113005 +0.9303782 0.07958143 0.3113005 +1 0.07958143 0.3113005 +0 0.0968001 0.3113005 +0.002418731 0.0968001 0.3113005 +0.005155668 0.0968001 0.3113005 +0.009080105 0.0968001 0.3113005 +0.01434988 0.0968001 0.3113005 +0.02107202 0.0968001 0.3113005 +0.02934285 0.0968001 0.3113005 +0.03925039 0.0968001 0.3113005 +0.05087609 0.0968001 0.3113005 +0.06429595 0.0968001 0.3113005 +0.07958143 0.0968001 0.3113005 +0.0968001 0.0968001 0.3113005 +0.1160161 0.0968001 0.3113005 +0.1372908 0.0968001 0.3113005 +0.1606827 0.0968001 0.3113005 +0.1862481 0.0968001 0.3113005 +0.2140411 0.0968001 0.3113005 +0.2441142 0.0968001 0.3113005 +0.2765176 0.0968001 0.3113005 +0.3113005 0.0968001 0.3113005 +0.3485102 0.0968001 0.3113005 +0.388193 0.0968001 0.3113005 +0.4303934 0.0968001 0.3113005 +0.4751555 0.0968001 0.3113005 +0.5225216 0.0968001 0.3113005 +0.5725335 0.0968001 0.3113005 +0.6252316 0.0968001 0.3113005 +0.6806558 0.0968001 0.3113005 +0.7388448 0.0968001 0.3113005 +0.7998369 0.0968001 0.3113005 +0.8636691 0.0968001 0.3113005 +0.9303782 0.0968001 0.3113005 +1 0.0968001 0.3113005 +0 0.1160161 0.3113005 +0.002418731 0.1160161 0.3113005 +0.005155668 0.1160161 0.3113005 +0.009080105 0.1160161 0.3113005 +0.01434988 0.1160161 0.3113005 +0.02107202 0.1160161 0.3113005 +0.02934285 0.1160161 0.3113005 +0.03925039 0.1160161 0.3113005 +0.05087609 0.1160161 0.3113005 +0.06429595 0.1160161 0.3113005 +0.07958143 0.1160161 0.3113005 +0.0968001 0.1160161 0.3113005 +0.1160161 0.1160161 0.3113005 +0.1372908 0.1160161 0.3113005 +0.1606827 0.1160161 0.3113005 +0.1862481 0.1160161 0.3113005 +0.2140411 0.1160161 0.3113005 +0.2441142 0.1160161 0.3113005 +0.2765176 0.1160161 0.3113005 +0.3113005 0.1160161 0.3113005 +0.3485102 0.1160161 0.3113005 +0.388193 0.1160161 0.3113005 +0.4303934 0.1160161 0.3113005 +0.4751555 0.1160161 0.3113005 +0.5225216 0.1160161 0.3113005 +0.5725335 0.1160161 0.3113005 +0.6252316 0.1160161 0.3113005 +0.6806558 0.1160161 0.3113005 +0.7388448 0.1160161 0.3113005 +0.7998369 0.1160161 0.3113005 +0.8636691 0.1160161 0.3113005 +0.9303782 0.1160161 0.3113005 +1 0.1160161 0.3113005 +0 0.1372908 0.3113005 +0.002418731 0.1372908 0.3113005 +0.005155668 0.1372908 0.3113005 +0.009080105 0.1372908 0.3113005 +0.01434988 0.1372908 0.3113005 +0.02107202 0.1372908 0.3113005 +0.02934285 0.1372908 0.3113005 +0.03925039 0.1372908 0.3113005 +0.05087609 0.1372908 0.3113005 +0.06429595 0.1372908 0.3113005 +0.07958143 0.1372908 0.3113005 +0.0968001 0.1372908 0.3113005 +0.1160161 0.1372908 0.3113005 +0.1372908 0.1372908 0.3113005 +0.1606827 0.1372908 0.3113005 +0.1862481 0.1372908 0.3113005 +0.2140411 0.1372908 0.3113005 +0.2441142 0.1372908 0.3113005 +0.2765176 0.1372908 0.3113005 +0.3113005 0.1372908 0.3113005 +0.3485102 0.1372908 0.3113005 +0.388193 0.1372908 0.3113005 +0.4303934 0.1372908 0.3113005 +0.4751555 0.1372908 0.3113005 +0.5225216 0.1372908 0.3113005 +0.5725335 0.1372908 0.3113005 +0.6252316 0.1372908 0.3113005 +0.6806558 0.1372908 0.3113005 +0.7388448 0.1372908 0.3113005 +0.7998369 0.1372908 0.3113005 +0.8636691 0.1372908 0.3113005 +0.9303782 0.1372908 0.3113005 +1 0.1372908 0.3113005 +0 0.1606827 0.3113005 +0.002418731 0.1606827 0.3113005 +0.005155668 0.1606827 0.3113005 +0.009080105 0.1606827 0.3113005 +0.01434988 0.1606827 0.3113005 +0.02107202 0.1606827 0.3113005 +0.02934285 0.1606827 0.3113005 +0.03925039 0.1606827 0.3113005 +0.05087609 0.1606827 0.3113005 +0.06429595 0.1606827 0.3113005 +0.07958143 0.1606827 0.3113005 +0.0968001 0.1606827 0.3113005 +0.1160161 0.1606827 0.3113005 +0.1372908 0.1606827 0.3113005 +0.1606827 0.1606827 0.3113005 +0.1862481 0.1606827 0.3113005 +0.2140411 0.1606827 0.3113005 +0.2441142 0.1606827 0.3113005 +0.2765176 0.1606827 0.3113005 +0.3113005 0.1606827 0.3113005 +0.3485102 0.1606827 0.3113005 +0.388193 0.1606827 0.3113005 +0.4303934 0.1606827 0.3113005 +0.4751555 0.1606827 0.3113005 +0.5225216 0.1606827 0.3113005 +0.5725335 0.1606827 0.3113005 +0.6252316 0.1606827 0.3113005 +0.6806558 0.1606827 0.3113005 +0.7388448 0.1606827 0.3113005 +0.7998369 0.1606827 0.3113005 +0.8636691 0.1606827 0.3113005 +0.9303782 0.1606827 0.3113005 +1 0.1606827 0.3113005 +0 0.1862481 0.3113005 +0.002418731 0.1862481 0.3113005 +0.005155668 0.1862481 0.3113005 +0.009080105 0.1862481 0.3113005 +0.01434988 0.1862481 0.3113005 +0.02107202 0.1862481 0.3113005 +0.02934285 0.1862481 0.3113005 +0.03925039 0.1862481 0.3113005 +0.05087609 0.1862481 0.3113005 +0.06429595 0.1862481 0.3113005 +0.07958143 0.1862481 0.3113005 +0.0968001 0.1862481 0.3113005 +0.1160161 0.1862481 0.3113005 +0.1372908 0.1862481 0.3113005 +0.1606827 0.1862481 0.3113005 +0.1862481 0.1862481 0.3113005 +0.2140411 0.1862481 0.3113005 +0.2441142 0.1862481 0.3113005 +0.2765176 0.1862481 0.3113005 +0.3113005 0.1862481 0.3113005 +0.3485102 0.1862481 0.3113005 +0.388193 0.1862481 0.3113005 +0.4303934 0.1862481 0.3113005 +0.4751555 0.1862481 0.3113005 +0.5225216 0.1862481 0.3113005 +0.5725335 0.1862481 0.3113005 +0.6252316 0.1862481 0.3113005 +0.6806558 0.1862481 0.3113005 +0.7388448 0.1862481 0.3113005 +0.7998369 0.1862481 0.3113005 +0.8636691 0.1862481 0.3113005 +0.9303782 0.1862481 0.3113005 +1 0.1862481 0.3113005 +0 0.2140411 0.3113005 +0.002418731 0.2140411 0.3113005 +0.005155668 0.2140411 0.3113005 +0.009080105 0.2140411 0.3113005 +0.01434988 0.2140411 0.3113005 +0.02107202 0.2140411 0.3113005 +0.02934285 0.2140411 0.3113005 +0.03925039 0.2140411 0.3113005 +0.05087609 0.2140411 0.3113005 +0.06429595 0.2140411 0.3113005 +0.07958143 0.2140411 0.3113005 +0.0968001 0.2140411 0.3113005 +0.1160161 0.2140411 0.3113005 +0.1372908 0.2140411 0.3113005 +0.1606827 0.2140411 0.3113005 +0.1862481 0.2140411 0.3113005 +0.2140411 0.2140411 0.3113005 +0.2441142 0.2140411 0.3113005 +0.2765176 0.2140411 0.3113005 +0.3113005 0.2140411 0.3113005 +0.3485102 0.2140411 0.3113005 +0.388193 0.2140411 0.3113005 +0.4303934 0.2140411 0.3113005 +0.4751555 0.2140411 0.3113005 +0.5225216 0.2140411 0.3113005 +0.5725335 0.2140411 0.3113005 +0.6252316 0.2140411 0.3113005 +0.6806558 0.2140411 0.3113005 +0.7388448 0.2140411 0.3113005 +0.7998369 0.2140411 0.3113005 +0.8636691 0.2140411 0.3113005 +0.9303782 0.2140411 0.3113005 +1 0.2140411 0.3113005 +0 0.2441142 0.3113005 +0.002418731 0.2441142 0.3113005 +0.005155668 0.2441142 0.3113005 +0.009080105 0.2441142 0.3113005 +0.01434988 0.2441142 0.3113005 +0.02107202 0.2441142 0.3113005 +0.02934285 0.2441142 0.3113005 +0.03925039 0.2441142 0.3113005 +0.05087609 0.2441142 0.3113005 +0.06429595 0.2441142 0.3113005 +0.07958143 0.2441142 0.3113005 +0.0968001 0.2441142 0.3113005 +0.1160161 0.2441142 0.3113005 +0.1372908 0.2441142 0.3113005 +0.1606827 0.2441142 0.3113005 +0.1862481 0.2441142 0.3113005 +0.2140411 0.2441142 0.3113005 +0.2441142 0.2441142 0.3113005 +0.2765176 0.2441142 0.3113005 +0.3113005 0.2441142 0.3113005 +0.3485102 0.2441142 0.3113005 +0.388193 0.2441142 0.3113005 +0.4303934 0.2441142 0.3113005 +0.4751555 0.2441142 0.3113005 +0.5225216 0.2441142 0.3113005 +0.5725335 0.2441142 0.3113005 +0.6252316 0.2441142 0.3113005 +0.6806558 0.2441142 0.3113005 +0.7388448 0.2441142 0.3113005 +0.7998369 0.2441142 0.3113005 +0.8636691 0.2441142 0.3113005 +0.9303782 0.2441142 0.3113005 +1 0.2441142 0.3113005 +0 0.2765176 0.3113005 +0.002418731 0.2765176 0.3113005 +0.005155668 0.2765176 0.3113005 +0.009080105 0.2765176 0.3113005 +0.01434988 0.2765176 0.3113005 +0.02107202 0.2765176 0.3113005 +0.02934285 0.2765176 0.3113005 +0.03925039 0.2765176 0.3113005 +0.05087609 0.2765176 0.3113005 +0.06429595 0.2765176 0.3113005 +0.07958143 0.2765176 0.3113005 +0.0968001 0.2765176 0.3113005 +0.1160161 0.2765176 0.3113005 +0.1372908 0.2765176 0.3113005 +0.1606827 0.2765176 0.3113005 +0.1862481 0.2765176 0.3113005 +0.2140411 0.2765176 0.3113005 +0.2441142 0.2765176 0.3113005 +0.2765176 0.2765176 0.3113005 +0.3113005 0.2765176 0.3113005 +0.3485102 0.2765176 0.3113005 +0.388193 0.2765176 0.3113005 +0.4303934 0.2765176 0.3113005 +0.4751555 0.2765176 0.3113005 +0.5225216 0.2765176 0.3113005 +0.5725335 0.2765176 0.3113005 +0.6252316 0.2765176 0.3113005 +0.6806558 0.2765176 0.3113005 +0.7388448 0.2765176 0.3113005 +0.7998369 0.2765176 0.3113005 +0.8636691 0.2765176 0.3113005 +0.9303782 0.2765176 0.3113005 +1 0.2765176 0.3113005 +0 0.3113005 0.3113005 +0.002418731 0.3113005 0.3113005 +0.005155668 0.3113005 0.3113005 +0.009080105 0.3113005 0.3113005 +0.01434988 0.3113005 0.3113005 +0.02107202 0.3113005 0.3113005 +0.02934285 0.3113005 0.3113005 +0.03925039 0.3113005 0.3113005 +0.05087609 0.3113005 0.3113005 +0.06429595 0.3113005 0.3113005 +0.07958143 0.3113005 0.3113005 +0.0968001 0.3113005 0.3113005 +0.1160161 0.3113005 0.3113005 +0.1372908 0.3113005 0.3113005 +0.1606827 0.3113005 0.3113005 +0.1862481 0.3113005 0.3113005 +0.2140411 0.3113005 0.3113005 +0.2441142 0.3113005 0.3113005 +0.2765176 0.3113005 0.3113005 +0.3113005 0.3113005 0.3113005 +0.3485102 0.3113005 0.3113005 +0.388193 0.3113005 0.3113005 +0.4303934 0.3113005 0.3113005 +0.4751555 0.3113005 0.3113005 +0.5225216 0.3113005 0.3113005 +0.5725335 0.3113005 0.3113005 +0.6252316 0.3113005 0.3113005 +0.6806558 0.3113005 0.3113005 +0.7388448 0.3113005 0.3113005 +0.7998369 0.3113005 0.3113005 +0.8636691 0.3113005 0.3113005 +0.9303782 0.3113005 0.3113005 +1 0.3113005 0.3113005 +0 0.3485102 0.3113005 +0.002418731 0.3485102 0.3113005 +0.005155668 0.3485102 0.3113005 +0.009080105 0.3485102 0.3113005 +0.01434988 0.3485102 0.3113005 +0.02107202 0.3485102 0.3113005 +0.02934285 0.3485102 0.3113005 +0.03925039 0.3485102 0.3113005 +0.05087609 0.3485102 0.3113005 +0.06429595 0.3485102 0.3113005 +0.07958143 0.3485102 0.3113005 +0.0968001 0.3485102 0.3113005 +0.1160161 0.3485102 0.3113005 +0.1372908 0.3485102 0.3113005 +0.1606827 0.3485102 0.3113005 +0.1862481 0.3485102 0.3113005 +0.2140411 0.3485102 0.3113005 +0.2441142 0.3485102 0.3113005 +0.2765176 0.3485102 0.3113005 +0.3113005 0.3485102 0.3113005 +0.3485102 0.3485102 0.3113005 +0.388193 0.3485102 0.3113005 +0.4303934 0.3485102 0.3113005 +0.4751555 0.3485102 0.3113005 +0.5225216 0.3485102 0.3113005 +0.5725335 0.3485102 0.3113005 +0.6252316 0.3485102 0.3113005 +0.6806558 0.3485102 0.3113005 +0.7388448 0.3485102 0.3113005 +0.7998369 0.3485102 0.3113005 +0.8636691 0.3485102 0.3113005 +0.9303782 0.3485102 0.3113005 +1 0.3485102 0.3113005 +0 0.388193 0.3113005 +0.002418731 0.388193 0.3113005 +0.005155668 0.388193 0.3113005 +0.009080105 0.388193 0.3113005 +0.01434988 0.388193 0.3113005 +0.02107202 0.388193 0.3113005 +0.02934285 0.388193 0.3113005 +0.03925039 0.388193 0.3113005 +0.05087609 0.388193 0.3113005 +0.06429595 0.388193 0.3113005 +0.07958143 0.388193 0.3113005 +0.0968001 0.388193 0.3113005 +0.1160161 0.388193 0.3113005 +0.1372908 0.388193 0.3113005 +0.1606827 0.388193 0.3113005 +0.1862481 0.388193 0.3113005 +0.2140411 0.388193 0.3113005 +0.2441142 0.388193 0.3113005 +0.2765176 0.388193 0.3113005 +0.3113005 0.388193 0.3113005 +0.3485102 0.388193 0.3113005 +0.388193 0.388193 0.3113005 +0.4303934 0.388193 0.3113005 +0.4751555 0.388193 0.3113005 +0.5225216 0.388193 0.3113005 +0.5725335 0.388193 0.3113005 +0.6252316 0.388193 0.3113005 +0.6806558 0.388193 0.3113005 +0.7388448 0.388193 0.3113005 +0.7998369 0.388193 0.3113005 +0.8636691 0.388193 0.3113005 +0.9303782 0.388193 0.3113005 +1 0.388193 0.3113005 +0 0.4303934 0.3113005 +0.002418731 0.4303934 0.3113005 +0.005155668 0.4303934 0.3113005 +0.009080105 0.4303934 0.3113005 +0.01434988 0.4303934 0.3113005 +0.02107202 0.4303934 0.3113005 +0.02934285 0.4303934 0.3113005 +0.03925039 0.4303934 0.3113005 +0.05087609 0.4303934 0.3113005 +0.06429595 0.4303934 0.3113005 +0.07958143 0.4303934 0.3113005 +0.0968001 0.4303934 0.3113005 +0.1160161 0.4303934 0.3113005 +0.1372908 0.4303934 0.3113005 +0.1606827 0.4303934 0.3113005 +0.1862481 0.4303934 0.3113005 +0.2140411 0.4303934 0.3113005 +0.2441142 0.4303934 0.3113005 +0.2765176 0.4303934 0.3113005 +0.3113005 0.4303934 0.3113005 +0.3485102 0.4303934 0.3113005 +0.388193 0.4303934 0.3113005 +0.4303934 0.4303934 0.3113005 +0.4751555 0.4303934 0.3113005 +0.5225216 0.4303934 0.3113005 +0.5725335 0.4303934 0.3113005 +0.6252316 0.4303934 0.3113005 +0.6806558 0.4303934 0.3113005 +0.7388448 0.4303934 0.3113005 +0.7998369 0.4303934 0.3113005 +0.8636691 0.4303934 0.3113005 +0.9303782 0.4303934 0.3113005 +1 0.4303934 0.3113005 +0 0.4751555 0.3113005 +0.002418731 0.4751555 0.3113005 +0.005155668 0.4751555 0.3113005 +0.009080105 0.4751555 0.3113005 +0.01434988 0.4751555 0.3113005 +0.02107202 0.4751555 0.3113005 +0.02934285 0.4751555 0.3113005 +0.03925039 0.4751555 0.3113005 +0.05087609 0.4751555 0.3113005 +0.06429595 0.4751555 0.3113005 +0.07958143 0.4751555 0.3113005 +0.0968001 0.4751555 0.3113005 +0.1160161 0.4751555 0.3113005 +0.1372908 0.4751555 0.3113005 +0.1606827 0.4751555 0.3113005 +0.1862481 0.4751555 0.3113005 +0.2140411 0.4751555 0.3113005 +0.2441142 0.4751555 0.3113005 +0.2765176 0.4751555 0.3113005 +0.3113005 0.4751555 0.3113005 +0.3485102 0.4751555 0.3113005 +0.388193 0.4751555 0.3113005 +0.4303934 0.4751555 0.3113005 +0.4751555 0.4751555 0.3113005 +0.5225216 0.4751555 0.3113005 +0.5725335 0.4751555 0.3113005 +0.6252316 0.4751555 0.3113005 +0.6806558 0.4751555 0.3113005 +0.7388448 0.4751555 0.3113005 +0.7998369 0.4751555 0.3113005 +0.8636691 0.4751555 0.3113005 +0.9303782 0.4751555 0.3113005 +1 0.4751555 0.3113005 +0 0.5225216 0.3113005 +0.002418731 0.5225216 0.3113005 +0.005155668 0.5225216 0.3113005 +0.009080105 0.5225216 0.3113005 +0.01434988 0.5225216 0.3113005 +0.02107202 0.5225216 0.3113005 +0.02934285 0.5225216 0.3113005 +0.03925039 0.5225216 0.3113005 +0.05087609 0.5225216 0.3113005 +0.06429595 0.5225216 0.3113005 +0.07958143 0.5225216 0.3113005 +0.0968001 0.5225216 0.3113005 +0.1160161 0.5225216 0.3113005 +0.1372908 0.5225216 0.3113005 +0.1606827 0.5225216 0.3113005 +0.1862481 0.5225216 0.3113005 +0.2140411 0.5225216 0.3113005 +0.2441142 0.5225216 0.3113005 +0.2765176 0.5225216 0.3113005 +0.3113005 0.5225216 0.3113005 +0.3485102 0.5225216 0.3113005 +0.388193 0.5225216 0.3113005 +0.4303934 0.5225216 0.3113005 +0.4751555 0.5225216 0.3113005 +0.5225216 0.5225216 0.3113005 +0.5725335 0.5225216 0.3113005 +0.6252316 0.5225216 0.3113005 +0.6806558 0.5225216 0.3113005 +0.7388448 0.5225216 0.3113005 +0.7998369 0.5225216 0.3113005 +0.8636691 0.5225216 0.3113005 +0.9303782 0.5225216 0.3113005 +1 0.5225216 0.3113005 +0 0.5725335 0.3113005 +0.002418731 0.5725335 0.3113005 +0.005155668 0.5725335 0.3113005 +0.009080105 0.5725335 0.3113005 +0.01434988 0.5725335 0.3113005 +0.02107202 0.5725335 0.3113005 +0.02934285 0.5725335 0.3113005 +0.03925039 0.5725335 0.3113005 +0.05087609 0.5725335 0.3113005 +0.06429595 0.5725335 0.3113005 +0.07958143 0.5725335 0.3113005 +0.0968001 0.5725335 0.3113005 +0.1160161 0.5725335 0.3113005 +0.1372908 0.5725335 0.3113005 +0.1606827 0.5725335 0.3113005 +0.1862481 0.5725335 0.3113005 +0.2140411 0.5725335 0.3113005 +0.2441142 0.5725335 0.3113005 +0.2765176 0.5725335 0.3113005 +0.3113005 0.5725335 0.3113005 +0.3485102 0.5725335 0.3113005 +0.388193 0.5725335 0.3113005 +0.4303934 0.5725335 0.3113005 +0.4751555 0.5725335 0.3113005 +0.5225216 0.5725335 0.3113005 +0.5725335 0.5725335 0.3113005 +0.6252316 0.5725335 0.3113005 +0.6806558 0.5725335 0.3113005 +0.7388448 0.5725335 0.3113005 +0.7998369 0.5725335 0.3113005 +0.8636691 0.5725335 0.3113005 +0.9303782 0.5725335 0.3113005 +1 0.5725335 0.3113005 +0 0.6252316 0.3113005 +0.002418731 0.6252316 0.3113005 +0.005155668 0.6252316 0.3113005 +0.009080105 0.6252316 0.3113005 +0.01434988 0.6252316 0.3113005 +0.02107202 0.6252316 0.3113005 +0.02934285 0.6252316 0.3113005 +0.03925039 0.6252316 0.3113005 +0.05087609 0.6252316 0.3113005 +0.06429595 0.6252316 0.3113005 +0.07958143 0.6252316 0.3113005 +0.0968001 0.6252316 0.3113005 +0.1160161 0.6252316 0.3113005 +0.1372908 0.6252316 0.3113005 +0.1606827 0.6252316 0.3113005 +0.1862481 0.6252316 0.3113005 +0.2140411 0.6252316 0.3113005 +0.2441142 0.6252316 0.3113005 +0.2765176 0.6252316 0.3113005 +0.3113005 0.6252316 0.3113005 +0.3485102 0.6252316 0.3113005 +0.388193 0.6252316 0.3113005 +0.4303934 0.6252316 0.3113005 +0.4751555 0.6252316 0.3113005 +0.5225216 0.6252316 0.3113005 +0.5725335 0.6252316 0.3113005 +0.6252316 0.6252316 0.3113005 +0.6806558 0.6252316 0.3113005 +0.7388448 0.6252316 0.3113005 +0.7998369 0.6252316 0.3113005 +0.8636691 0.6252316 0.3113005 +0.9303782 0.6252316 0.3113005 +1 0.6252316 0.3113005 +0 0.6806558 0.3113005 +0.002418731 0.6806558 0.3113005 +0.005155668 0.6806558 0.3113005 +0.009080105 0.6806558 0.3113005 +0.01434988 0.6806558 0.3113005 +0.02107202 0.6806558 0.3113005 +0.02934285 0.6806558 0.3113005 +0.03925039 0.6806558 0.3113005 +0.05087609 0.6806558 0.3113005 +0.06429595 0.6806558 0.3113005 +0.07958143 0.6806558 0.3113005 +0.0968001 0.6806558 0.3113005 +0.1160161 0.6806558 0.3113005 +0.1372908 0.6806558 0.3113005 +0.1606827 0.6806558 0.3113005 +0.1862481 0.6806558 0.3113005 +0.2140411 0.6806558 0.3113005 +0.2441142 0.6806558 0.3113005 +0.2765176 0.6806558 0.3113005 +0.3113005 0.6806558 0.3113005 +0.3485102 0.6806558 0.3113005 +0.388193 0.6806558 0.3113005 +0.4303934 0.6806558 0.3113005 +0.4751555 0.6806558 0.3113005 +0.5225216 0.6806558 0.3113005 +0.5725335 0.6806558 0.3113005 +0.6252316 0.6806558 0.3113005 +0.6806558 0.6806558 0.3113005 +0.7388448 0.6806558 0.3113005 +0.7998369 0.6806558 0.3113005 +0.8636691 0.6806558 0.3113005 +0.9303782 0.6806558 0.3113005 +1 0.6806558 0.3113005 +0 0.7388448 0.3113005 +0.002418731 0.7388448 0.3113005 +0.005155668 0.7388448 0.3113005 +0.009080105 0.7388448 0.3113005 +0.01434988 0.7388448 0.3113005 +0.02107202 0.7388448 0.3113005 +0.02934285 0.7388448 0.3113005 +0.03925039 0.7388448 0.3113005 +0.05087609 0.7388448 0.3113005 +0.06429595 0.7388448 0.3113005 +0.07958143 0.7388448 0.3113005 +0.0968001 0.7388448 0.3113005 +0.1160161 0.7388448 0.3113005 +0.1372908 0.7388448 0.3113005 +0.1606827 0.7388448 0.3113005 +0.1862481 0.7388448 0.3113005 +0.2140411 0.7388448 0.3113005 +0.2441142 0.7388448 0.3113005 +0.2765176 0.7388448 0.3113005 +0.3113005 0.7388448 0.3113005 +0.3485102 0.7388448 0.3113005 +0.388193 0.7388448 0.3113005 +0.4303934 0.7388448 0.3113005 +0.4751555 0.7388448 0.3113005 +0.5225216 0.7388448 0.3113005 +0.5725335 0.7388448 0.3113005 +0.6252316 0.7388448 0.3113005 +0.6806558 0.7388448 0.3113005 +0.7388448 0.7388448 0.3113005 +0.7998369 0.7388448 0.3113005 +0.8636691 0.7388448 0.3113005 +0.9303782 0.7388448 0.3113005 +1 0.7388448 0.3113005 +0 0.7998369 0.3113005 +0.002418731 0.7998369 0.3113005 +0.005155668 0.7998369 0.3113005 +0.009080105 0.7998369 0.3113005 +0.01434988 0.7998369 0.3113005 +0.02107202 0.7998369 0.3113005 +0.02934285 0.7998369 0.3113005 +0.03925039 0.7998369 0.3113005 +0.05087609 0.7998369 0.3113005 +0.06429595 0.7998369 0.3113005 +0.07958143 0.7998369 0.3113005 +0.0968001 0.7998369 0.3113005 +0.1160161 0.7998369 0.3113005 +0.1372908 0.7998369 0.3113005 +0.1606827 0.7998369 0.3113005 +0.1862481 0.7998369 0.3113005 +0.2140411 0.7998369 0.3113005 +0.2441142 0.7998369 0.3113005 +0.2765176 0.7998369 0.3113005 +0.3113005 0.7998369 0.3113005 +0.3485102 0.7998369 0.3113005 +0.388193 0.7998369 0.3113005 +0.4303934 0.7998369 0.3113005 +0.4751555 0.7998369 0.3113005 +0.5225216 0.7998369 0.3113005 +0.5725335 0.7998369 0.3113005 +0.6252316 0.7998369 0.3113005 +0.6806558 0.7998369 0.3113005 +0.7388448 0.7998369 0.3113005 +0.7998369 0.7998369 0.3113005 +0.8636691 0.7998369 0.3113005 +0.9303782 0.7998369 0.3113005 +1 0.7998369 0.3113005 +0 0.8636691 0.3113005 +0.002418731 0.8636691 0.3113005 +0.005155668 0.8636691 0.3113005 +0.009080105 0.8636691 0.3113005 +0.01434988 0.8636691 0.3113005 +0.02107202 0.8636691 0.3113005 +0.02934285 0.8636691 0.3113005 +0.03925039 0.8636691 0.3113005 +0.05087609 0.8636691 0.3113005 +0.06429595 0.8636691 0.3113005 +0.07958143 0.8636691 0.3113005 +0.0968001 0.8636691 0.3113005 +0.1160161 0.8636691 0.3113005 +0.1372908 0.8636691 0.3113005 +0.1606827 0.8636691 0.3113005 +0.1862481 0.8636691 0.3113005 +0.2140411 0.8636691 0.3113005 +0.2441142 0.8636691 0.3113005 +0.2765176 0.8636691 0.3113005 +0.3113005 0.8636691 0.3113005 +0.3485102 0.8636691 0.3113005 +0.388193 0.8636691 0.3113005 +0.4303934 0.8636691 0.3113005 +0.4751555 0.8636691 0.3113005 +0.5225216 0.8636691 0.3113005 +0.5725335 0.8636691 0.3113005 +0.6252316 0.8636691 0.3113005 +0.6806558 0.8636691 0.3113005 +0.7388448 0.8636691 0.3113005 +0.7998369 0.8636691 0.3113005 +0.8636691 0.8636691 0.3113005 +0.9303782 0.8636691 0.3113005 +1 0.8636691 0.3113005 +0 0.9303782 0.3113005 +0.002418731 0.9303782 0.3113005 +0.005155668 0.9303782 0.3113005 +0.009080105 0.9303782 0.3113005 +0.01434988 0.9303782 0.3113005 +0.02107202 0.9303782 0.3113005 +0.02934285 0.9303782 0.3113005 +0.03925039 0.9303782 0.3113005 +0.05087609 0.9303782 0.3113005 +0.06429595 0.9303782 0.3113005 +0.07958143 0.9303782 0.3113005 +0.0968001 0.9303782 0.3113005 +0.1160161 0.9303782 0.3113005 +0.1372908 0.9303782 0.3113005 +0.1606827 0.9303782 0.3113005 +0.1862481 0.9303782 0.3113005 +0.2140411 0.9303782 0.3113005 +0.2441142 0.9303782 0.3113005 +0.2765176 0.9303782 0.3113005 +0.3113005 0.9303782 0.3113005 +0.3485102 0.9303782 0.3113005 +0.388193 0.9303782 0.3113005 +0.4303934 0.9303782 0.3113005 +0.4751555 0.9303782 0.3113005 +0.5225216 0.9303782 0.3113005 +0.5725335 0.9303782 0.3113005 +0.6252316 0.9303782 0.3113005 +0.6806558 0.9303782 0.3113005 +0.7388448 0.9303782 0.3113005 +0.7998369 0.9303782 0.3113005 +0.8636691 0.9303782 0.3113005 +0.9303782 0.9303782 0.3113005 +1 0.9303782 0.3113005 +0 1 0.3113005 +0.002418731 1 0.3113005 +0.005155668 1 0.3113005 +0.009080105 1 0.3113005 +0.01434988 1 0.3113005 +0.02107202 1 0.3113005 +0.02934285 1 0.3113005 +0.03925039 1 0.3113005 +0.05087609 1 0.3113005 +0.06429595 1 0.3113005 +0.07958143 1 0.3113005 +0.0968001 1 0.3113005 +0.1160161 1 0.3113005 +0.1372908 1 0.3113005 +0.1606827 1 0.3113005 +0.1862481 1 0.3113005 +0.2140411 1 0.3113005 +0.2441142 1 0.3113005 +0.2765176 1 0.3113005 +0.3113005 1 0.3113005 +0.3485102 1 0.3113005 +0.388193 1 0.3113005 +0.4303934 1 0.3113005 +0.4751555 1 0.3113005 +0.5225216 1 0.3113005 +0.5725335 1 0.3113005 +0.6252316 1 0.3113005 +0.6806558 1 0.3113005 +0.7388448 1 0.3113005 +0.7998369 1 0.3113005 +0.8636691 1 0.3113005 +0.9303782 1 0.3113005 +1 1 0.3113005 +0 0 0.3485102 +0.002418731 0 0.3485102 +0.005155668 0 0.3485102 +0.009080105 0 0.3485102 +0.01434988 0 0.3485102 +0.02107202 0 0.3485102 +0.02934285 0 0.3485102 +0.03925039 0 0.3485102 +0.05087609 0 0.3485102 +0.06429595 0 0.3485102 +0.07958143 0 0.3485102 +0.0968001 0 0.3485102 +0.1160161 0 0.3485102 +0.1372908 0 0.3485102 +0.1606827 0 0.3485102 +0.1862481 0 0.3485102 +0.2140411 0 0.3485102 +0.2441142 0 0.3485102 +0.2765176 0 0.3485102 +0.3113005 0 0.3485102 +0.3485102 0 0.3485102 +0.388193 0 0.3485102 +0.4303934 0 0.3485102 +0.4751555 0 0.3485102 +0.5225216 0 0.3485102 +0.5725335 0 0.3485102 +0.6252316 0 0.3485102 +0.6806558 0 0.3485102 +0.7388448 0 0.3485102 +0.7998369 0 0.3485102 +0.8636691 0 0.3485102 +0.9303782 0 0.3485102 +1 0 0.3485102 +0 0.002418731 0.3485102 +0.002418731 0.002418731 0.3485102 +0.005155668 0.002418731 0.3485102 +0.009080105 0.002418731 0.3485102 +0.01434988 0.002418731 0.3485102 +0.02107202 0.002418731 0.3485102 +0.02934285 0.002418731 0.3485102 +0.03925039 0.002418731 0.3485102 +0.05087609 0.002418731 0.3485102 +0.06429595 0.002418731 0.3485102 +0.07958143 0.002418731 0.3485102 +0.0968001 0.002418731 0.3485102 +0.1160161 0.002418731 0.3485102 +0.1372908 0.002418731 0.3485102 +0.1606827 0.002418731 0.3485102 +0.1862481 0.002418731 0.3485102 +0.2140411 0.002418731 0.3485102 +0.2441142 0.002418731 0.3485102 +0.2765176 0.002418731 0.3485102 +0.3113005 0.002418731 0.3485102 +0.3485102 0.002418731 0.3485102 +0.388193 0.002418731 0.3485102 +0.4303934 0.002418731 0.3485102 +0.4751555 0.002418731 0.3485102 +0.5225216 0.002418731 0.3485102 +0.5725335 0.002418731 0.3485102 +0.6252316 0.002418731 0.3485102 +0.6806558 0.002418731 0.3485102 +0.7388448 0.002418731 0.3485102 +0.7998369 0.002418731 0.3485102 +0.8636691 0.002418731 0.3485102 +0.9303782 0.002418731 0.3485102 +1 0.002418731 0.3485102 +0 0.005155668 0.3485102 +0.002418731 0.005155668 0.3485102 +0.005155668 0.005155668 0.3485102 +0.009080105 0.005155668 0.3485102 +0.01434988 0.005155668 0.3485102 +0.02107202 0.005155668 0.3485102 +0.02934285 0.005155668 0.3485102 +0.03925039 0.005155668 0.3485102 +0.05087609 0.005155668 0.3485102 +0.06429595 0.005155668 0.3485102 +0.07958143 0.005155668 0.3485102 +0.0968001 0.005155668 0.3485102 +0.1160161 0.005155668 0.3485102 +0.1372908 0.005155668 0.3485102 +0.1606827 0.005155668 0.3485102 +0.1862481 0.005155668 0.3485102 +0.2140411 0.005155668 0.3485102 +0.2441142 0.005155668 0.3485102 +0.2765176 0.005155668 0.3485102 +0.3113005 0.005155668 0.3485102 +0.3485102 0.005155668 0.3485102 +0.388193 0.005155668 0.3485102 +0.4303934 0.005155668 0.3485102 +0.4751555 0.005155668 0.3485102 +0.5225216 0.005155668 0.3485102 +0.5725335 0.005155668 0.3485102 +0.6252316 0.005155668 0.3485102 +0.6806558 0.005155668 0.3485102 +0.7388448 0.005155668 0.3485102 +0.7998369 0.005155668 0.3485102 +0.8636691 0.005155668 0.3485102 +0.9303782 0.005155668 0.3485102 +1 0.005155668 0.3485102 +0 0.009080105 0.3485102 +0.002418731 0.009080105 0.3485102 +0.005155668 0.009080105 0.3485102 +0.009080105 0.009080105 0.3485102 +0.01434988 0.009080105 0.3485102 +0.02107202 0.009080105 0.3485102 +0.02934285 0.009080105 0.3485102 +0.03925039 0.009080105 0.3485102 +0.05087609 0.009080105 0.3485102 +0.06429595 0.009080105 0.3485102 +0.07958143 0.009080105 0.3485102 +0.0968001 0.009080105 0.3485102 +0.1160161 0.009080105 0.3485102 +0.1372908 0.009080105 0.3485102 +0.1606827 0.009080105 0.3485102 +0.1862481 0.009080105 0.3485102 +0.2140411 0.009080105 0.3485102 +0.2441142 0.009080105 0.3485102 +0.2765176 0.009080105 0.3485102 +0.3113005 0.009080105 0.3485102 +0.3485102 0.009080105 0.3485102 +0.388193 0.009080105 0.3485102 +0.4303934 0.009080105 0.3485102 +0.4751555 0.009080105 0.3485102 +0.5225216 0.009080105 0.3485102 +0.5725335 0.009080105 0.3485102 +0.6252316 0.009080105 0.3485102 +0.6806558 0.009080105 0.3485102 +0.7388448 0.009080105 0.3485102 +0.7998369 0.009080105 0.3485102 +0.8636691 0.009080105 0.3485102 +0.9303782 0.009080105 0.3485102 +1 0.009080105 0.3485102 +0 0.01434988 0.3485102 +0.002418731 0.01434988 0.3485102 +0.005155668 0.01434988 0.3485102 +0.009080105 0.01434988 0.3485102 +0.01434988 0.01434988 0.3485102 +0.02107202 0.01434988 0.3485102 +0.02934285 0.01434988 0.3485102 +0.03925039 0.01434988 0.3485102 +0.05087609 0.01434988 0.3485102 +0.06429595 0.01434988 0.3485102 +0.07958143 0.01434988 0.3485102 +0.0968001 0.01434988 0.3485102 +0.1160161 0.01434988 0.3485102 +0.1372908 0.01434988 0.3485102 +0.1606827 0.01434988 0.3485102 +0.1862481 0.01434988 0.3485102 +0.2140411 0.01434988 0.3485102 +0.2441142 0.01434988 0.3485102 +0.2765176 0.01434988 0.3485102 +0.3113005 0.01434988 0.3485102 +0.3485102 0.01434988 0.3485102 +0.388193 0.01434988 0.3485102 +0.4303934 0.01434988 0.3485102 +0.4751555 0.01434988 0.3485102 +0.5225216 0.01434988 0.3485102 +0.5725335 0.01434988 0.3485102 +0.6252316 0.01434988 0.3485102 +0.6806558 0.01434988 0.3485102 +0.7388448 0.01434988 0.3485102 +0.7998369 0.01434988 0.3485102 +0.8636691 0.01434988 0.3485102 +0.9303782 0.01434988 0.3485102 +1 0.01434988 0.3485102 +0 0.02107202 0.3485102 +0.002418731 0.02107202 0.3485102 +0.005155668 0.02107202 0.3485102 +0.009080105 0.02107202 0.3485102 +0.01434988 0.02107202 0.3485102 +0.02107202 0.02107202 0.3485102 +0.02934285 0.02107202 0.3485102 +0.03925039 0.02107202 0.3485102 +0.05087609 0.02107202 0.3485102 +0.06429595 0.02107202 0.3485102 +0.07958143 0.02107202 0.3485102 +0.0968001 0.02107202 0.3485102 +0.1160161 0.02107202 0.3485102 +0.1372908 0.02107202 0.3485102 +0.1606827 0.02107202 0.3485102 +0.1862481 0.02107202 0.3485102 +0.2140411 0.02107202 0.3485102 +0.2441142 0.02107202 0.3485102 +0.2765176 0.02107202 0.3485102 +0.3113005 0.02107202 0.3485102 +0.3485102 0.02107202 0.3485102 +0.388193 0.02107202 0.3485102 +0.4303934 0.02107202 0.3485102 +0.4751555 0.02107202 0.3485102 +0.5225216 0.02107202 0.3485102 +0.5725335 0.02107202 0.3485102 +0.6252316 0.02107202 0.3485102 +0.6806558 0.02107202 0.3485102 +0.7388448 0.02107202 0.3485102 +0.7998369 0.02107202 0.3485102 +0.8636691 0.02107202 0.3485102 +0.9303782 0.02107202 0.3485102 +1 0.02107202 0.3485102 +0 0.02934285 0.3485102 +0.002418731 0.02934285 0.3485102 +0.005155668 0.02934285 0.3485102 +0.009080105 0.02934285 0.3485102 +0.01434988 0.02934285 0.3485102 +0.02107202 0.02934285 0.3485102 +0.02934285 0.02934285 0.3485102 +0.03925039 0.02934285 0.3485102 +0.05087609 0.02934285 0.3485102 +0.06429595 0.02934285 0.3485102 +0.07958143 0.02934285 0.3485102 +0.0968001 0.02934285 0.3485102 +0.1160161 0.02934285 0.3485102 +0.1372908 0.02934285 0.3485102 +0.1606827 0.02934285 0.3485102 +0.1862481 0.02934285 0.3485102 +0.2140411 0.02934285 0.3485102 +0.2441142 0.02934285 0.3485102 +0.2765176 0.02934285 0.3485102 +0.3113005 0.02934285 0.3485102 +0.3485102 0.02934285 0.3485102 +0.388193 0.02934285 0.3485102 +0.4303934 0.02934285 0.3485102 +0.4751555 0.02934285 0.3485102 +0.5225216 0.02934285 0.3485102 +0.5725335 0.02934285 0.3485102 +0.6252316 0.02934285 0.3485102 +0.6806558 0.02934285 0.3485102 +0.7388448 0.02934285 0.3485102 +0.7998369 0.02934285 0.3485102 +0.8636691 0.02934285 0.3485102 +0.9303782 0.02934285 0.3485102 +1 0.02934285 0.3485102 +0 0.03925039 0.3485102 +0.002418731 0.03925039 0.3485102 +0.005155668 0.03925039 0.3485102 +0.009080105 0.03925039 0.3485102 +0.01434988 0.03925039 0.3485102 +0.02107202 0.03925039 0.3485102 +0.02934285 0.03925039 0.3485102 +0.03925039 0.03925039 0.3485102 +0.05087609 0.03925039 0.3485102 +0.06429595 0.03925039 0.3485102 +0.07958143 0.03925039 0.3485102 +0.0968001 0.03925039 0.3485102 +0.1160161 0.03925039 0.3485102 +0.1372908 0.03925039 0.3485102 +0.1606827 0.03925039 0.3485102 +0.1862481 0.03925039 0.3485102 +0.2140411 0.03925039 0.3485102 +0.2441142 0.03925039 0.3485102 +0.2765176 0.03925039 0.3485102 +0.3113005 0.03925039 0.3485102 +0.3485102 0.03925039 0.3485102 +0.388193 0.03925039 0.3485102 +0.4303934 0.03925039 0.3485102 +0.4751555 0.03925039 0.3485102 +0.5225216 0.03925039 0.3485102 +0.5725335 0.03925039 0.3485102 +0.6252316 0.03925039 0.3485102 +0.6806558 0.03925039 0.3485102 +0.7388448 0.03925039 0.3485102 +0.7998369 0.03925039 0.3485102 +0.8636691 0.03925039 0.3485102 +0.9303782 0.03925039 0.3485102 +1 0.03925039 0.3485102 +0 0.05087609 0.3485102 +0.002418731 0.05087609 0.3485102 +0.005155668 0.05087609 0.3485102 +0.009080105 0.05087609 0.3485102 +0.01434988 0.05087609 0.3485102 +0.02107202 0.05087609 0.3485102 +0.02934285 0.05087609 0.3485102 +0.03925039 0.05087609 0.3485102 +0.05087609 0.05087609 0.3485102 +0.06429595 0.05087609 0.3485102 +0.07958143 0.05087609 0.3485102 +0.0968001 0.05087609 0.3485102 +0.1160161 0.05087609 0.3485102 +0.1372908 0.05087609 0.3485102 +0.1606827 0.05087609 0.3485102 +0.1862481 0.05087609 0.3485102 +0.2140411 0.05087609 0.3485102 +0.2441142 0.05087609 0.3485102 +0.2765176 0.05087609 0.3485102 +0.3113005 0.05087609 0.3485102 +0.3485102 0.05087609 0.3485102 +0.388193 0.05087609 0.3485102 +0.4303934 0.05087609 0.3485102 +0.4751555 0.05087609 0.3485102 +0.5225216 0.05087609 0.3485102 +0.5725335 0.05087609 0.3485102 +0.6252316 0.05087609 0.3485102 +0.6806558 0.05087609 0.3485102 +0.7388448 0.05087609 0.3485102 +0.7998369 0.05087609 0.3485102 +0.8636691 0.05087609 0.3485102 +0.9303782 0.05087609 0.3485102 +1 0.05087609 0.3485102 +0 0.06429595 0.3485102 +0.002418731 0.06429595 0.3485102 +0.005155668 0.06429595 0.3485102 +0.009080105 0.06429595 0.3485102 +0.01434988 0.06429595 0.3485102 +0.02107202 0.06429595 0.3485102 +0.02934285 0.06429595 0.3485102 +0.03925039 0.06429595 0.3485102 +0.05087609 0.06429595 0.3485102 +0.06429595 0.06429595 0.3485102 +0.07958143 0.06429595 0.3485102 +0.0968001 0.06429595 0.3485102 +0.1160161 0.06429595 0.3485102 +0.1372908 0.06429595 0.3485102 +0.1606827 0.06429595 0.3485102 +0.1862481 0.06429595 0.3485102 +0.2140411 0.06429595 0.3485102 +0.2441142 0.06429595 0.3485102 +0.2765176 0.06429595 0.3485102 +0.3113005 0.06429595 0.3485102 +0.3485102 0.06429595 0.3485102 +0.388193 0.06429595 0.3485102 +0.4303934 0.06429595 0.3485102 +0.4751555 0.06429595 0.3485102 +0.5225216 0.06429595 0.3485102 +0.5725335 0.06429595 0.3485102 +0.6252316 0.06429595 0.3485102 +0.6806558 0.06429595 0.3485102 +0.7388448 0.06429595 0.3485102 +0.7998369 0.06429595 0.3485102 +0.8636691 0.06429595 0.3485102 +0.9303782 0.06429595 0.3485102 +1 0.06429595 0.3485102 +0 0.07958143 0.3485102 +0.002418731 0.07958143 0.3485102 +0.005155668 0.07958143 0.3485102 +0.009080105 0.07958143 0.3485102 +0.01434988 0.07958143 0.3485102 +0.02107202 0.07958143 0.3485102 +0.02934285 0.07958143 0.3485102 +0.03925039 0.07958143 0.3485102 +0.05087609 0.07958143 0.3485102 +0.06429595 0.07958143 0.3485102 +0.07958143 0.07958143 0.3485102 +0.0968001 0.07958143 0.3485102 +0.1160161 0.07958143 0.3485102 +0.1372908 0.07958143 0.3485102 +0.1606827 0.07958143 0.3485102 +0.1862481 0.07958143 0.3485102 +0.2140411 0.07958143 0.3485102 +0.2441142 0.07958143 0.3485102 +0.2765176 0.07958143 0.3485102 +0.3113005 0.07958143 0.3485102 +0.3485102 0.07958143 0.3485102 +0.388193 0.07958143 0.3485102 +0.4303934 0.07958143 0.3485102 +0.4751555 0.07958143 0.3485102 +0.5225216 0.07958143 0.3485102 +0.5725335 0.07958143 0.3485102 +0.6252316 0.07958143 0.3485102 +0.6806558 0.07958143 0.3485102 +0.7388448 0.07958143 0.3485102 +0.7998369 0.07958143 0.3485102 +0.8636691 0.07958143 0.3485102 +0.9303782 0.07958143 0.3485102 +1 0.07958143 0.3485102 +0 0.0968001 0.3485102 +0.002418731 0.0968001 0.3485102 +0.005155668 0.0968001 0.3485102 +0.009080105 0.0968001 0.3485102 +0.01434988 0.0968001 0.3485102 +0.02107202 0.0968001 0.3485102 +0.02934285 0.0968001 0.3485102 +0.03925039 0.0968001 0.3485102 +0.05087609 0.0968001 0.3485102 +0.06429595 0.0968001 0.3485102 +0.07958143 0.0968001 0.3485102 +0.0968001 0.0968001 0.3485102 +0.1160161 0.0968001 0.3485102 +0.1372908 0.0968001 0.3485102 +0.1606827 0.0968001 0.3485102 +0.1862481 0.0968001 0.3485102 +0.2140411 0.0968001 0.3485102 +0.2441142 0.0968001 0.3485102 +0.2765176 0.0968001 0.3485102 +0.3113005 0.0968001 0.3485102 +0.3485102 0.0968001 0.3485102 +0.388193 0.0968001 0.3485102 +0.4303934 0.0968001 0.3485102 +0.4751555 0.0968001 0.3485102 +0.5225216 0.0968001 0.3485102 +0.5725335 0.0968001 0.3485102 +0.6252316 0.0968001 0.3485102 +0.6806558 0.0968001 0.3485102 +0.7388448 0.0968001 0.3485102 +0.7998369 0.0968001 0.3485102 +0.8636691 0.0968001 0.3485102 +0.9303782 0.0968001 0.3485102 +1 0.0968001 0.3485102 +0 0.1160161 0.3485102 +0.002418731 0.1160161 0.3485102 +0.005155668 0.1160161 0.3485102 +0.009080105 0.1160161 0.3485102 +0.01434988 0.1160161 0.3485102 +0.02107202 0.1160161 0.3485102 +0.02934285 0.1160161 0.3485102 +0.03925039 0.1160161 0.3485102 +0.05087609 0.1160161 0.3485102 +0.06429595 0.1160161 0.3485102 +0.07958143 0.1160161 0.3485102 +0.0968001 0.1160161 0.3485102 +0.1160161 0.1160161 0.3485102 +0.1372908 0.1160161 0.3485102 +0.1606827 0.1160161 0.3485102 +0.1862481 0.1160161 0.3485102 +0.2140411 0.1160161 0.3485102 +0.2441142 0.1160161 0.3485102 +0.2765176 0.1160161 0.3485102 +0.3113005 0.1160161 0.3485102 +0.3485102 0.1160161 0.3485102 +0.388193 0.1160161 0.3485102 +0.4303934 0.1160161 0.3485102 +0.4751555 0.1160161 0.3485102 +0.5225216 0.1160161 0.3485102 +0.5725335 0.1160161 0.3485102 +0.6252316 0.1160161 0.3485102 +0.6806558 0.1160161 0.3485102 +0.7388448 0.1160161 0.3485102 +0.7998369 0.1160161 0.3485102 +0.8636691 0.1160161 0.3485102 +0.9303782 0.1160161 0.3485102 +1 0.1160161 0.3485102 +0 0.1372908 0.3485102 +0.002418731 0.1372908 0.3485102 +0.005155668 0.1372908 0.3485102 +0.009080105 0.1372908 0.3485102 +0.01434988 0.1372908 0.3485102 +0.02107202 0.1372908 0.3485102 +0.02934285 0.1372908 0.3485102 +0.03925039 0.1372908 0.3485102 +0.05087609 0.1372908 0.3485102 +0.06429595 0.1372908 0.3485102 +0.07958143 0.1372908 0.3485102 +0.0968001 0.1372908 0.3485102 +0.1160161 0.1372908 0.3485102 +0.1372908 0.1372908 0.3485102 +0.1606827 0.1372908 0.3485102 +0.1862481 0.1372908 0.3485102 +0.2140411 0.1372908 0.3485102 +0.2441142 0.1372908 0.3485102 +0.2765176 0.1372908 0.3485102 +0.3113005 0.1372908 0.3485102 +0.3485102 0.1372908 0.3485102 +0.388193 0.1372908 0.3485102 +0.4303934 0.1372908 0.3485102 +0.4751555 0.1372908 0.3485102 +0.5225216 0.1372908 0.3485102 +0.5725335 0.1372908 0.3485102 +0.6252316 0.1372908 0.3485102 +0.6806558 0.1372908 0.3485102 +0.7388448 0.1372908 0.3485102 +0.7998369 0.1372908 0.3485102 +0.8636691 0.1372908 0.3485102 +0.9303782 0.1372908 0.3485102 +1 0.1372908 0.3485102 +0 0.1606827 0.3485102 +0.002418731 0.1606827 0.3485102 +0.005155668 0.1606827 0.3485102 +0.009080105 0.1606827 0.3485102 +0.01434988 0.1606827 0.3485102 +0.02107202 0.1606827 0.3485102 +0.02934285 0.1606827 0.3485102 +0.03925039 0.1606827 0.3485102 +0.05087609 0.1606827 0.3485102 +0.06429595 0.1606827 0.3485102 +0.07958143 0.1606827 0.3485102 +0.0968001 0.1606827 0.3485102 +0.1160161 0.1606827 0.3485102 +0.1372908 0.1606827 0.3485102 +0.1606827 0.1606827 0.3485102 +0.1862481 0.1606827 0.3485102 +0.2140411 0.1606827 0.3485102 +0.2441142 0.1606827 0.3485102 +0.2765176 0.1606827 0.3485102 +0.3113005 0.1606827 0.3485102 +0.3485102 0.1606827 0.3485102 +0.388193 0.1606827 0.3485102 +0.4303934 0.1606827 0.3485102 +0.4751555 0.1606827 0.3485102 +0.5225216 0.1606827 0.3485102 +0.5725335 0.1606827 0.3485102 +0.6252316 0.1606827 0.3485102 +0.6806558 0.1606827 0.3485102 +0.7388448 0.1606827 0.3485102 +0.7998369 0.1606827 0.3485102 +0.8636691 0.1606827 0.3485102 +0.9303782 0.1606827 0.3485102 +1 0.1606827 0.3485102 +0 0.1862481 0.3485102 +0.002418731 0.1862481 0.3485102 +0.005155668 0.1862481 0.3485102 +0.009080105 0.1862481 0.3485102 +0.01434988 0.1862481 0.3485102 +0.02107202 0.1862481 0.3485102 +0.02934285 0.1862481 0.3485102 +0.03925039 0.1862481 0.3485102 +0.05087609 0.1862481 0.3485102 +0.06429595 0.1862481 0.3485102 +0.07958143 0.1862481 0.3485102 +0.0968001 0.1862481 0.3485102 +0.1160161 0.1862481 0.3485102 +0.1372908 0.1862481 0.3485102 +0.1606827 0.1862481 0.3485102 +0.1862481 0.1862481 0.3485102 +0.2140411 0.1862481 0.3485102 +0.2441142 0.1862481 0.3485102 +0.2765176 0.1862481 0.3485102 +0.3113005 0.1862481 0.3485102 +0.3485102 0.1862481 0.3485102 +0.388193 0.1862481 0.3485102 +0.4303934 0.1862481 0.3485102 +0.4751555 0.1862481 0.3485102 +0.5225216 0.1862481 0.3485102 +0.5725335 0.1862481 0.3485102 +0.6252316 0.1862481 0.3485102 +0.6806558 0.1862481 0.3485102 +0.7388448 0.1862481 0.3485102 +0.7998369 0.1862481 0.3485102 +0.8636691 0.1862481 0.3485102 +0.9303782 0.1862481 0.3485102 +1 0.1862481 0.3485102 +0 0.2140411 0.3485102 +0.002418731 0.2140411 0.3485102 +0.005155668 0.2140411 0.3485102 +0.009080105 0.2140411 0.3485102 +0.01434988 0.2140411 0.3485102 +0.02107202 0.2140411 0.3485102 +0.02934285 0.2140411 0.3485102 +0.03925039 0.2140411 0.3485102 +0.05087609 0.2140411 0.3485102 +0.06429595 0.2140411 0.3485102 +0.07958143 0.2140411 0.3485102 +0.0968001 0.2140411 0.3485102 +0.1160161 0.2140411 0.3485102 +0.1372908 0.2140411 0.3485102 +0.1606827 0.2140411 0.3485102 +0.1862481 0.2140411 0.3485102 +0.2140411 0.2140411 0.3485102 +0.2441142 0.2140411 0.3485102 +0.2765176 0.2140411 0.3485102 +0.3113005 0.2140411 0.3485102 +0.3485102 0.2140411 0.3485102 +0.388193 0.2140411 0.3485102 +0.4303934 0.2140411 0.3485102 +0.4751555 0.2140411 0.3485102 +0.5225216 0.2140411 0.3485102 +0.5725335 0.2140411 0.3485102 +0.6252316 0.2140411 0.3485102 +0.6806558 0.2140411 0.3485102 +0.7388448 0.2140411 0.3485102 +0.7998369 0.2140411 0.3485102 +0.8636691 0.2140411 0.3485102 +0.9303782 0.2140411 0.3485102 +1 0.2140411 0.3485102 +0 0.2441142 0.3485102 +0.002418731 0.2441142 0.3485102 +0.005155668 0.2441142 0.3485102 +0.009080105 0.2441142 0.3485102 +0.01434988 0.2441142 0.3485102 +0.02107202 0.2441142 0.3485102 +0.02934285 0.2441142 0.3485102 +0.03925039 0.2441142 0.3485102 +0.05087609 0.2441142 0.3485102 +0.06429595 0.2441142 0.3485102 +0.07958143 0.2441142 0.3485102 +0.0968001 0.2441142 0.3485102 +0.1160161 0.2441142 0.3485102 +0.1372908 0.2441142 0.3485102 +0.1606827 0.2441142 0.3485102 +0.1862481 0.2441142 0.3485102 +0.2140411 0.2441142 0.3485102 +0.2441142 0.2441142 0.3485102 +0.2765176 0.2441142 0.3485102 +0.3113005 0.2441142 0.3485102 +0.3485102 0.2441142 0.3485102 +0.388193 0.2441142 0.3485102 +0.4303934 0.2441142 0.3485102 +0.4751555 0.2441142 0.3485102 +0.5225216 0.2441142 0.3485102 +0.5725335 0.2441142 0.3485102 +0.6252316 0.2441142 0.3485102 +0.6806558 0.2441142 0.3485102 +0.7388448 0.2441142 0.3485102 +0.7998369 0.2441142 0.3485102 +0.8636691 0.2441142 0.3485102 +0.9303782 0.2441142 0.3485102 +1 0.2441142 0.3485102 +0 0.2765176 0.3485102 +0.002418731 0.2765176 0.3485102 +0.005155668 0.2765176 0.3485102 +0.009080105 0.2765176 0.3485102 +0.01434988 0.2765176 0.3485102 +0.02107202 0.2765176 0.3485102 +0.02934285 0.2765176 0.3485102 +0.03925039 0.2765176 0.3485102 +0.05087609 0.2765176 0.3485102 +0.06429595 0.2765176 0.3485102 +0.07958143 0.2765176 0.3485102 +0.0968001 0.2765176 0.3485102 +0.1160161 0.2765176 0.3485102 +0.1372908 0.2765176 0.3485102 +0.1606827 0.2765176 0.3485102 +0.1862481 0.2765176 0.3485102 +0.2140411 0.2765176 0.3485102 +0.2441142 0.2765176 0.3485102 +0.2765176 0.2765176 0.3485102 +0.3113005 0.2765176 0.3485102 +0.3485102 0.2765176 0.3485102 +0.388193 0.2765176 0.3485102 +0.4303934 0.2765176 0.3485102 +0.4751555 0.2765176 0.3485102 +0.5225216 0.2765176 0.3485102 +0.5725335 0.2765176 0.3485102 +0.6252316 0.2765176 0.3485102 +0.6806558 0.2765176 0.3485102 +0.7388448 0.2765176 0.3485102 +0.7998369 0.2765176 0.3485102 +0.8636691 0.2765176 0.3485102 +0.9303782 0.2765176 0.3485102 +1 0.2765176 0.3485102 +0 0.3113005 0.3485102 +0.002418731 0.3113005 0.3485102 +0.005155668 0.3113005 0.3485102 +0.009080105 0.3113005 0.3485102 +0.01434988 0.3113005 0.3485102 +0.02107202 0.3113005 0.3485102 +0.02934285 0.3113005 0.3485102 +0.03925039 0.3113005 0.3485102 +0.05087609 0.3113005 0.3485102 +0.06429595 0.3113005 0.3485102 +0.07958143 0.3113005 0.3485102 +0.0968001 0.3113005 0.3485102 +0.1160161 0.3113005 0.3485102 +0.1372908 0.3113005 0.3485102 +0.1606827 0.3113005 0.3485102 +0.1862481 0.3113005 0.3485102 +0.2140411 0.3113005 0.3485102 +0.2441142 0.3113005 0.3485102 +0.2765176 0.3113005 0.3485102 +0.3113005 0.3113005 0.3485102 +0.3485102 0.3113005 0.3485102 +0.388193 0.3113005 0.3485102 +0.4303934 0.3113005 0.3485102 +0.4751555 0.3113005 0.3485102 +0.5225216 0.3113005 0.3485102 +0.5725335 0.3113005 0.3485102 +0.6252316 0.3113005 0.3485102 +0.6806558 0.3113005 0.3485102 +0.7388448 0.3113005 0.3485102 +0.7998369 0.3113005 0.3485102 +0.8636691 0.3113005 0.3485102 +0.9303782 0.3113005 0.3485102 +1 0.3113005 0.3485102 +0 0.3485102 0.3485102 +0.002418731 0.3485102 0.3485102 +0.005155668 0.3485102 0.3485102 +0.009080105 0.3485102 0.3485102 +0.01434988 0.3485102 0.3485102 +0.02107202 0.3485102 0.3485102 +0.02934285 0.3485102 0.3485102 +0.03925039 0.3485102 0.3485102 +0.05087609 0.3485102 0.3485102 +0.06429595 0.3485102 0.3485102 +0.07958143 0.3485102 0.3485102 +0.0968001 0.3485102 0.3485102 +0.1160161 0.3485102 0.3485102 +0.1372908 0.3485102 0.3485102 +0.1606827 0.3485102 0.3485102 +0.1862481 0.3485102 0.3485102 +0.2140411 0.3485102 0.3485102 +0.2441142 0.3485102 0.3485102 +0.2765176 0.3485102 0.3485102 +0.3113005 0.3485102 0.3485102 +0.3485102 0.3485102 0.3485102 +0.388193 0.3485102 0.3485102 +0.4303934 0.3485102 0.3485102 +0.4751555 0.3485102 0.3485102 +0.5225216 0.3485102 0.3485102 +0.5725335 0.3485102 0.3485102 +0.6252316 0.3485102 0.3485102 +0.6806558 0.3485102 0.3485102 +0.7388448 0.3485102 0.3485102 +0.7998369 0.3485102 0.3485102 +0.8636691 0.3485102 0.3485102 +0.9303782 0.3485102 0.3485102 +1 0.3485102 0.3485102 +0 0.388193 0.3485102 +0.002418731 0.388193 0.3485102 +0.005155668 0.388193 0.3485102 +0.009080105 0.388193 0.3485102 +0.01434988 0.388193 0.3485102 +0.02107202 0.388193 0.3485102 +0.02934285 0.388193 0.3485102 +0.03925039 0.388193 0.3485102 +0.05087609 0.388193 0.3485102 +0.06429595 0.388193 0.3485102 +0.07958143 0.388193 0.3485102 +0.0968001 0.388193 0.3485102 +0.1160161 0.388193 0.3485102 +0.1372908 0.388193 0.3485102 +0.1606827 0.388193 0.3485102 +0.1862481 0.388193 0.3485102 +0.2140411 0.388193 0.3485102 +0.2441142 0.388193 0.3485102 +0.2765176 0.388193 0.3485102 +0.3113005 0.388193 0.3485102 +0.3485102 0.388193 0.3485102 +0.388193 0.388193 0.3485102 +0.4303934 0.388193 0.3485102 +0.4751555 0.388193 0.3485102 +0.5225216 0.388193 0.3485102 +0.5725335 0.388193 0.3485102 +0.6252316 0.388193 0.3485102 +0.6806558 0.388193 0.3485102 +0.7388448 0.388193 0.3485102 +0.7998369 0.388193 0.3485102 +0.8636691 0.388193 0.3485102 +0.9303782 0.388193 0.3485102 +1 0.388193 0.3485102 +0 0.4303934 0.3485102 +0.002418731 0.4303934 0.3485102 +0.005155668 0.4303934 0.3485102 +0.009080105 0.4303934 0.3485102 +0.01434988 0.4303934 0.3485102 +0.02107202 0.4303934 0.3485102 +0.02934285 0.4303934 0.3485102 +0.03925039 0.4303934 0.3485102 +0.05087609 0.4303934 0.3485102 +0.06429595 0.4303934 0.3485102 +0.07958143 0.4303934 0.3485102 +0.0968001 0.4303934 0.3485102 +0.1160161 0.4303934 0.3485102 +0.1372908 0.4303934 0.3485102 +0.1606827 0.4303934 0.3485102 +0.1862481 0.4303934 0.3485102 +0.2140411 0.4303934 0.3485102 +0.2441142 0.4303934 0.3485102 +0.2765176 0.4303934 0.3485102 +0.3113005 0.4303934 0.3485102 +0.3485102 0.4303934 0.3485102 +0.388193 0.4303934 0.3485102 +0.4303934 0.4303934 0.3485102 +0.4751555 0.4303934 0.3485102 +0.5225216 0.4303934 0.3485102 +0.5725335 0.4303934 0.3485102 +0.6252316 0.4303934 0.3485102 +0.6806558 0.4303934 0.3485102 +0.7388448 0.4303934 0.3485102 +0.7998369 0.4303934 0.3485102 +0.8636691 0.4303934 0.3485102 +0.9303782 0.4303934 0.3485102 +1 0.4303934 0.3485102 +0 0.4751555 0.3485102 +0.002418731 0.4751555 0.3485102 +0.005155668 0.4751555 0.3485102 +0.009080105 0.4751555 0.3485102 +0.01434988 0.4751555 0.3485102 +0.02107202 0.4751555 0.3485102 +0.02934285 0.4751555 0.3485102 +0.03925039 0.4751555 0.3485102 +0.05087609 0.4751555 0.3485102 +0.06429595 0.4751555 0.3485102 +0.07958143 0.4751555 0.3485102 +0.0968001 0.4751555 0.3485102 +0.1160161 0.4751555 0.3485102 +0.1372908 0.4751555 0.3485102 +0.1606827 0.4751555 0.3485102 +0.1862481 0.4751555 0.3485102 +0.2140411 0.4751555 0.3485102 +0.2441142 0.4751555 0.3485102 +0.2765176 0.4751555 0.3485102 +0.3113005 0.4751555 0.3485102 +0.3485102 0.4751555 0.3485102 +0.388193 0.4751555 0.3485102 +0.4303934 0.4751555 0.3485102 +0.4751555 0.4751555 0.3485102 +0.5225216 0.4751555 0.3485102 +0.5725335 0.4751555 0.3485102 +0.6252316 0.4751555 0.3485102 +0.6806558 0.4751555 0.3485102 +0.7388448 0.4751555 0.3485102 +0.7998369 0.4751555 0.3485102 +0.8636691 0.4751555 0.3485102 +0.9303782 0.4751555 0.3485102 +1 0.4751555 0.3485102 +0 0.5225216 0.3485102 +0.002418731 0.5225216 0.3485102 +0.005155668 0.5225216 0.3485102 +0.009080105 0.5225216 0.3485102 +0.01434988 0.5225216 0.3485102 +0.02107202 0.5225216 0.3485102 +0.02934285 0.5225216 0.3485102 +0.03925039 0.5225216 0.3485102 +0.05087609 0.5225216 0.3485102 +0.06429595 0.5225216 0.3485102 +0.07958143 0.5225216 0.3485102 +0.0968001 0.5225216 0.3485102 +0.1160161 0.5225216 0.3485102 +0.1372908 0.5225216 0.3485102 +0.1606827 0.5225216 0.3485102 +0.1862481 0.5225216 0.3485102 +0.2140411 0.5225216 0.3485102 +0.2441142 0.5225216 0.3485102 +0.2765176 0.5225216 0.3485102 +0.3113005 0.5225216 0.3485102 +0.3485102 0.5225216 0.3485102 +0.388193 0.5225216 0.3485102 +0.4303934 0.5225216 0.3485102 +0.4751555 0.5225216 0.3485102 +0.5225216 0.5225216 0.3485102 +0.5725335 0.5225216 0.3485102 +0.6252316 0.5225216 0.3485102 +0.6806558 0.5225216 0.3485102 +0.7388448 0.5225216 0.3485102 +0.7998369 0.5225216 0.3485102 +0.8636691 0.5225216 0.3485102 +0.9303782 0.5225216 0.3485102 +1 0.5225216 0.3485102 +0 0.5725335 0.3485102 +0.002418731 0.5725335 0.3485102 +0.005155668 0.5725335 0.3485102 +0.009080105 0.5725335 0.3485102 +0.01434988 0.5725335 0.3485102 +0.02107202 0.5725335 0.3485102 +0.02934285 0.5725335 0.3485102 +0.03925039 0.5725335 0.3485102 +0.05087609 0.5725335 0.3485102 +0.06429595 0.5725335 0.3485102 +0.07958143 0.5725335 0.3485102 +0.0968001 0.5725335 0.3485102 +0.1160161 0.5725335 0.3485102 +0.1372908 0.5725335 0.3485102 +0.1606827 0.5725335 0.3485102 +0.1862481 0.5725335 0.3485102 +0.2140411 0.5725335 0.3485102 +0.2441142 0.5725335 0.3485102 +0.2765176 0.5725335 0.3485102 +0.3113005 0.5725335 0.3485102 +0.3485102 0.5725335 0.3485102 +0.388193 0.5725335 0.3485102 +0.4303934 0.5725335 0.3485102 +0.4751555 0.5725335 0.3485102 +0.5225216 0.5725335 0.3485102 +0.5725335 0.5725335 0.3485102 +0.6252316 0.5725335 0.3485102 +0.6806558 0.5725335 0.3485102 +0.7388448 0.5725335 0.3485102 +0.7998369 0.5725335 0.3485102 +0.8636691 0.5725335 0.3485102 +0.9303782 0.5725335 0.3485102 +1 0.5725335 0.3485102 +0 0.6252316 0.3485102 +0.002418731 0.6252316 0.3485102 +0.005155668 0.6252316 0.3485102 +0.009080105 0.6252316 0.3485102 +0.01434988 0.6252316 0.3485102 +0.02107202 0.6252316 0.3485102 +0.02934285 0.6252316 0.3485102 +0.03925039 0.6252316 0.3485102 +0.05087609 0.6252316 0.3485102 +0.06429595 0.6252316 0.3485102 +0.07958143 0.6252316 0.3485102 +0.0968001 0.6252316 0.3485102 +0.1160161 0.6252316 0.3485102 +0.1372908 0.6252316 0.3485102 +0.1606827 0.6252316 0.3485102 +0.1862481 0.6252316 0.3485102 +0.2140411 0.6252316 0.3485102 +0.2441142 0.6252316 0.3485102 +0.2765176 0.6252316 0.3485102 +0.3113005 0.6252316 0.3485102 +0.3485102 0.6252316 0.3485102 +0.388193 0.6252316 0.3485102 +0.4303934 0.6252316 0.3485102 +0.4751555 0.6252316 0.3485102 +0.5225216 0.6252316 0.3485102 +0.5725335 0.6252316 0.3485102 +0.6252316 0.6252316 0.3485102 +0.6806558 0.6252316 0.3485102 +0.7388448 0.6252316 0.3485102 +0.7998369 0.6252316 0.3485102 +0.8636691 0.6252316 0.3485102 +0.9303782 0.6252316 0.3485102 +1 0.6252316 0.3485102 +0 0.6806558 0.3485102 +0.002418731 0.6806558 0.3485102 +0.005155668 0.6806558 0.3485102 +0.009080105 0.6806558 0.3485102 +0.01434988 0.6806558 0.3485102 +0.02107202 0.6806558 0.3485102 +0.02934285 0.6806558 0.3485102 +0.03925039 0.6806558 0.3485102 +0.05087609 0.6806558 0.3485102 +0.06429595 0.6806558 0.3485102 +0.07958143 0.6806558 0.3485102 +0.0968001 0.6806558 0.3485102 +0.1160161 0.6806558 0.3485102 +0.1372908 0.6806558 0.3485102 +0.1606827 0.6806558 0.3485102 +0.1862481 0.6806558 0.3485102 +0.2140411 0.6806558 0.3485102 +0.2441142 0.6806558 0.3485102 +0.2765176 0.6806558 0.3485102 +0.3113005 0.6806558 0.3485102 +0.3485102 0.6806558 0.3485102 +0.388193 0.6806558 0.3485102 +0.4303934 0.6806558 0.3485102 +0.4751555 0.6806558 0.3485102 +0.5225216 0.6806558 0.3485102 +0.5725335 0.6806558 0.3485102 +0.6252316 0.6806558 0.3485102 +0.6806558 0.6806558 0.3485102 +0.7388448 0.6806558 0.3485102 +0.7998369 0.6806558 0.3485102 +0.8636691 0.6806558 0.3485102 +0.9303782 0.6806558 0.3485102 +1 0.6806558 0.3485102 +0 0.7388448 0.3485102 +0.002418731 0.7388448 0.3485102 +0.005155668 0.7388448 0.3485102 +0.009080105 0.7388448 0.3485102 +0.01434988 0.7388448 0.3485102 +0.02107202 0.7388448 0.3485102 +0.02934285 0.7388448 0.3485102 +0.03925039 0.7388448 0.3485102 +0.05087609 0.7388448 0.3485102 +0.06429595 0.7388448 0.3485102 +0.07958143 0.7388448 0.3485102 +0.0968001 0.7388448 0.3485102 +0.1160161 0.7388448 0.3485102 +0.1372908 0.7388448 0.3485102 +0.1606827 0.7388448 0.3485102 +0.1862481 0.7388448 0.3485102 +0.2140411 0.7388448 0.3485102 +0.2441142 0.7388448 0.3485102 +0.2765176 0.7388448 0.3485102 +0.3113005 0.7388448 0.3485102 +0.3485102 0.7388448 0.3485102 +0.388193 0.7388448 0.3485102 +0.4303934 0.7388448 0.3485102 +0.4751555 0.7388448 0.3485102 +0.5225216 0.7388448 0.3485102 +0.5725335 0.7388448 0.3485102 +0.6252316 0.7388448 0.3485102 +0.6806558 0.7388448 0.3485102 +0.7388448 0.7388448 0.3485102 +0.7998369 0.7388448 0.3485102 +0.8636691 0.7388448 0.3485102 +0.9303782 0.7388448 0.3485102 +1 0.7388448 0.3485102 +0 0.7998369 0.3485102 +0.002418731 0.7998369 0.3485102 +0.005155668 0.7998369 0.3485102 +0.009080105 0.7998369 0.3485102 +0.01434988 0.7998369 0.3485102 +0.02107202 0.7998369 0.3485102 +0.02934285 0.7998369 0.3485102 +0.03925039 0.7998369 0.3485102 +0.05087609 0.7998369 0.3485102 +0.06429595 0.7998369 0.3485102 +0.07958143 0.7998369 0.3485102 +0.0968001 0.7998369 0.3485102 +0.1160161 0.7998369 0.3485102 +0.1372908 0.7998369 0.3485102 +0.1606827 0.7998369 0.3485102 +0.1862481 0.7998369 0.3485102 +0.2140411 0.7998369 0.3485102 +0.2441142 0.7998369 0.3485102 +0.2765176 0.7998369 0.3485102 +0.3113005 0.7998369 0.3485102 +0.3485102 0.7998369 0.3485102 +0.388193 0.7998369 0.3485102 +0.4303934 0.7998369 0.3485102 +0.4751555 0.7998369 0.3485102 +0.5225216 0.7998369 0.3485102 +0.5725335 0.7998369 0.3485102 +0.6252316 0.7998369 0.3485102 +0.6806558 0.7998369 0.3485102 +0.7388448 0.7998369 0.3485102 +0.7998369 0.7998369 0.3485102 +0.8636691 0.7998369 0.3485102 +0.9303782 0.7998369 0.3485102 +1 0.7998369 0.3485102 +0 0.8636691 0.3485102 +0.002418731 0.8636691 0.3485102 +0.005155668 0.8636691 0.3485102 +0.009080105 0.8636691 0.3485102 +0.01434988 0.8636691 0.3485102 +0.02107202 0.8636691 0.3485102 +0.02934285 0.8636691 0.3485102 +0.03925039 0.8636691 0.3485102 +0.05087609 0.8636691 0.3485102 +0.06429595 0.8636691 0.3485102 +0.07958143 0.8636691 0.3485102 +0.0968001 0.8636691 0.3485102 +0.1160161 0.8636691 0.3485102 +0.1372908 0.8636691 0.3485102 +0.1606827 0.8636691 0.3485102 +0.1862481 0.8636691 0.3485102 +0.2140411 0.8636691 0.3485102 +0.2441142 0.8636691 0.3485102 +0.2765176 0.8636691 0.3485102 +0.3113005 0.8636691 0.3485102 +0.3485102 0.8636691 0.3485102 +0.388193 0.8636691 0.3485102 +0.4303934 0.8636691 0.3485102 +0.4751555 0.8636691 0.3485102 +0.5225216 0.8636691 0.3485102 +0.5725335 0.8636691 0.3485102 +0.6252316 0.8636691 0.3485102 +0.6806558 0.8636691 0.3485102 +0.7388448 0.8636691 0.3485102 +0.7998369 0.8636691 0.3485102 +0.8636691 0.8636691 0.3485102 +0.9303782 0.8636691 0.3485102 +1 0.8636691 0.3485102 +0 0.9303782 0.3485102 +0.002418731 0.9303782 0.3485102 +0.005155668 0.9303782 0.3485102 +0.009080105 0.9303782 0.3485102 +0.01434988 0.9303782 0.3485102 +0.02107202 0.9303782 0.3485102 +0.02934285 0.9303782 0.3485102 +0.03925039 0.9303782 0.3485102 +0.05087609 0.9303782 0.3485102 +0.06429595 0.9303782 0.3485102 +0.07958143 0.9303782 0.3485102 +0.0968001 0.9303782 0.3485102 +0.1160161 0.9303782 0.3485102 +0.1372908 0.9303782 0.3485102 +0.1606827 0.9303782 0.3485102 +0.1862481 0.9303782 0.3485102 +0.2140411 0.9303782 0.3485102 +0.2441142 0.9303782 0.3485102 +0.2765176 0.9303782 0.3485102 +0.3113005 0.9303782 0.3485102 +0.3485102 0.9303782 0.3485102 +0.388193 0.9303782 0.3485102 +0.4303934 0.9303782 0.3485102 +0.4751555 0.9303782 0.3485102 +0.5225216 0.9303782 0.3485102 +0.5725335 0.9303782 0.3485102 +0.6252316 0.9303782 0.3485102 +0.6806558 0.9303782 0.3485102 +0.7388448 0.9303782 0.3485102 +0.7998369 0.9303782 0.3485102 +0.8636691 0.9303782 0.3485102 +0.9303782 0.9303782 0.3485102 +1 0.9303782 0.3485102 +0 1 0.3485102 +0.002418731 1 0.3485102 +0.005155668 1 0.3485102 +0.009080105 1 0.3485102 +0.01434988 1 0.3485102 +0.02107202 1 0.3485102 +0.02934285 1 0.3485102 +0.03925039 1 0.3485102 +0.05087609 1 0.3485102 +0.06429595 1 0.3485102 +0.07958143 1 0.3485102 +0.0968001 1 0.3485102 +0.1160161 1 0.3485102 +0.1372908 1 0.3485102 +0.1606827 1 0.3485102 +0.1862481 1 0.3485102 +0.2140411 1 0.3485102 +0.2441142 1 0.3485102 +0.2765176 1 0.3485102 +0.3113005 1 0.3485102 +0.3485102 1 0.3485102 +0.388193 1 0.3485102 +0.4303934 1 0.3485102 +0.4751555 1 0.3485102 +0.5225216 1 0.3485102 +0.5725335 1 0.3485102 +0.6252316 1 0.3485102 +0.6806558 1 0.3485102 +0.7388448 1 0.3485102 +0.7998369 1 0.3485102 +0.8636691 1 0.3485102 +0.9303782 1 0.3485102 +1 1 0.3485102 +0 0 0.388193 +0.002418731 0 0.388193 +0.005155668 0 0.388193 +0.009080105 0 0.388193 +0.01434988 0 0.388193 +0.02107202 0 0.388193 +0.02934285 0 0.388193 +0.03925039 0 0.388193 +0.05087609 0 0.388193 +0.06429595 0 0.388193 +0.07958143 0 0.388193 +0.0968001 0 0.388193 +0.1160161 0 0.388193 +0.1372908 0 0.388193 +0.1606827 0 0.388193 +0.1862481 0 0.388193 +0.2140411 0 0.388193 +0.2441142 0 0.388193 +0.2765176 0 0.388193 +0.3113005 0 0.388193 +0.3485102 0 0.388193 +0.388193 0 0.388193 +0.4303934 0 0.388193 +0.4751555 0 0.388193 +0.5225216 0 0.388193 +0.5725335 0 0.388193 +0.6252316 0 0.388193 +0.6806558 0 0.388193 +0.7388448 0 0.388193 +0.7998369 0 0.388193 +0.8636691 0 0.388193 +0.9303782 0 0.388193 +1 0 0.388193 +0 0.002418731 0.388193 +0.002418731 0.002418731 0.388193 +0.005155668 0.002418731 0.388193 +0.009080105 0.002418731 0.388193 +0.01434988 0.002418731 0.388193 +0.02107202 0.002418731 0.388193 +0.02934285 0.002418731 0.388193 +0.03925039 0.002418731 0.388193 +0.05087609 0.002418731 0.388193 +0.06429595 0.002418731 0.388193 +0.07958143 0.002418731 0.388193 +0.0968001 0.002418731 0.388193 +0.1160161 0.002418731 0.388193 +0.1372908 0.002418731 0.388193 +0.1606827 0.002418731 0.388193 +0.1862481 0.002418731 0.388193 +0.2140411 0.002418731 0.388193 +0.2441142 0.002418731 0.388193 +0.2765176 0.002418731 0.388193 +0.3113005 0.002418731 0.388193 +0.3485102 0.002418731 0.388193 +0.388193 0.002418731 0.388193 +0.4303934 0.002418731 0.388193 +0.4751555 0.002418731 0.388193 +0.5225216 0.002418731 0.388193 +0.5725335 0.002418731 0.388193 +0.6252316 0.002418731 0.388193 +0.6806558 0.002418731 0.388193 +0.7388448 0.002418731 0.388193 +0.7998369 0.002418731 0.388193 +0.8636691 0.002418731 0.388193 +0.9303782 0.002418731 0.388193 +1 0.002418731 0.388193 +0 0.005155668 0.388193 +0.002418731 0.005155668 0.388193 +0.005155668 0.005155668 0.388193 +0.009080105 0.005155668 0.388193 +0.01434988 0.005155668 0.388193 +0.02107202 0.005155668 0.388193 +0.02934285 0.005155668 0.388193 +0.03925039 0.005155668 0.388193 +0.05087609 0.005155668 0.388193 +0.06429595 0.005155668 0.388193 +0.07958143 0.005155668 0.388193 +0.0968001 0.005155668 0.388193 +0.1160161 0.005155668 0.388193 +0.1372908 0.005155668 0.388193 +0.1606827 0.005155668 0.388193 +0.1862481 0.005155668 0.388193 +0.2140411 0.005155668 0.388193 +0.2441142 0.005155668 0.388193 +0.2765176 0.005155668 0.388193 +0.3113005 0.005155668 0.388193 +0.3485102 0.005155668 0.388193 +0.388193 0.005155668 0.388193 +0.4303934 0.005155668 0.388193 +0.4751555 0.005155668 0.388193 +0.5225216 0.005155668 0.388193 +0.5725335 0.005155668 0.388193 +0.6252316 0.005155668 0.388193 +0.6806558 0.005155668 0.388193 +0.7388448 0.005155668 0.388193 +0.7998369 0.005155668 0.388193 +0.8636691 0.005155668 0.388193 +0.9303782 0.005155668 0.388193 +1 0.005155668 0.388193 +0 0.009080105 0.388193 +0.002418731 0.009080105 0.388193 +0.005155668 0.009080105 0.388193 +0.009080105 0.009080105 0.388193 +0.01434988 0.009080105 0.388193 +0.02107202 0.009080105 0.388193 +0.02934285 0.009080105 0.388193 +0.03925039 0.009080105 0.388193 +0.05087609 0.009080105 0.388193 +0.06429595 0.009080105 0.388193 +0.07958143 0.009080105 0.388193 +0.0968001 0.009080105 0.388193 +0.1160161 0.009080105 0.388193 +0.1372908 0.009080105 0.388193 +0.1606827 0.009080105 0.388193 +0.1862481 0.009080105 0.388193 +0.2140411 0.009080105 0.388193 +0.2441142 0.009080105 0.388193 +0.2765176 0.009080105 0.388193 +0.3113005 0.009080105 0.388193 +0.3485102 0.009080105 0.388193 +0.388193 0.009080105 0.388193 +0.4303934 0.009080105 0.388193 +0.4751555 0.009080105 0.388193 +0.5225216 0.009080105 0.388193 +0.5725335 0.009080105 0.388193 +0.6252316 0.009080105 0.388193 +0.6806558 0.009080105 0.388193 +0.7388448 0.009080105 0.388193 +0.7998369 0.009080105 0.388193 +0.8636691 0.009080105 0.388193 +0.9303782 0.009080105 0.388193 +1 0.009080105 0.388193 +0 0.01434988 0.388193 +0.002418731 0.01434988 0.388193 +0.005155668 0.01434988 0.388193 +0.009080105 0.01434988 0.388193 +0.01434988 0.01434988 0.388193 +0.02107202 0.01434988 0.388193 +0.02934285 0.01434988 0.388193 +0.03925039 0.01434988 0.388193 +0.05087609 0.01434988 0.388193 +0.06429595 0.01434988 0.388193 +0.07958143 0.01434988 0.388193 +0.0968001 0.01434988 0.388193 +0.1160161 0.01434988 0.388193 +0.1372908 0.01434988 0.388193 +0.1606827 0.01434988 0.388193 +0.1862481 0.01434988 0.388193 +0.2140411 0.01434988 0.388193 +0.2441142 0.01434988 0.388193 +0.2765176 0.01434988 0.388193 +0.3113005 0.01434988 0.388193 +0.3485102 0.01434988 0.388193 +0.388193 0.01434988 0.388193 +0.4303934 0.01434988 0.388193 +0.4751555 0.01434988 0.388193 +0.5225216 0.01434988 0.388193 +0.5725335 0.01434988 0.388193 +0.6252316 0.01434988 0.388193 +0.6806558 0.01434988 0.388193 +0.7388448 0.01434988 0.388193 +0.7998369 0.01434988 0.388193 +0.8636691 0.01434988 0.388193 +0.9303782 0.01434988 0.388193 +1 0.01434988 0.388193 +0 0.02107202 0.388193 +0.002418731 0.02107202 0.388193 +0.005155668 0.02107202 0.388193 +0.009080105 0.02107202 0.388193 +0.01434988 0.02107202 0.388193 +0.02107202 0.02107202 0.388193 +0.02934285 0.02107202 0.388193 +0.03925039 0.02107202 0.388193 +0.05087609 0.02107202 0.388193 +0.06429595 0.02107202 0.388193 +0.07958143 0.02107202 0.388193 +0.0968001 0.02107202 0.388193 +0.1160161 0.02107202 0.388193 +0.1372908 0.02107202 0.388193 +0.1606827 0.02107202 0.388193 +0.1862481 0.02107202 0.388193 +0.2140411 0.02107202 0.388193 +0.2441142 0.02107202 0.388193 +0.2765176 0.02107202 0.388193 +0.3113005 0.02107202 0.388193 +0.3485102 0.02107202 0.388193 +0.388193 0.02107202 0.388193 +0.4303934 0.02107202 0.388193 +0.4751555 0.02107202 0.388193 +0.5225216 0.02107202 0.388193 +0.5725335 0.02107202 0.388193 +0.6252316 0.02107202 0.388193 +0.6806558 0.02107202 0.388193 +0.7388448 0.02107202 0.388193 +0.7998369 0.02107202 0.388193 +0.8636691 0.02107202 0.388193 +0.9303782 0.02107202 0.388193 +1 0.02107202 0.388193 +0 0.02934285 0.388193 +0.002418731 0.02934285 0.388193 +0.005155668 0.02934285 0.388193 +0.009080105 0.02934285 0.388193 +0.01434988 0.02934285 0.388193 +0.02107202 0.02934285 0.388193 +0.02934285 0.02934285 0.388193 +0.03925039 0.02934285 0.388193 +0.05087609 0.02934285 0.388193 +0.06429595 0.02934285 0.388193 +0.07958143 0.02934285 0.388193 +0.0968001 0.02934285 0.388193 +0.1160161 0.02934285 0.388193 +0.1372908 0.02934285 0.388193 +0.1606827 0.02934285 0.388193 +0.1862481 0.02934285 0.388193 +0.2140411 0.02934285 0.388193 +0.2441142 0.02934285 0.388193 +0.2765176 0.02934285 0.388193 +0.3113005 0.02934285 0.388193 +0.3485102 0.02934285 0.388193 +0.388193 0.02934285 0.388193 +0.4303934 0.02934285 0.388193 +0.4751555 0.02934285 0.388193 +0.5225216 0.02934285 0.388193 +0.5725335 0.02934285 0.388193 +0.6252316 0.02934285 0.388193 +0.6806558 0.02934285 0.388193 +0.7388448 0.02934285 0.388193 +0.7998369 0.02934285 0.388193 +0.8636691 0.02934285 0.388193 +0.9303782 0.02934285 0.388193 +1 0.02934285 0.388193 +0 0.03925039 0.388193 +0.002418731 0.03925039 0.388193 +0.005155668 0.03925039 0.388193 +0.009080105 0.03925039 0.388193 +0.01434988 0.03925039 0.388193 +0.02107202 0.03925039 0.388193 +0.02934285 0.03925039 0.388193 +0.03925039 0.03925039 0.388193 +0.05087609 0.03925039 0.388193 +0.06429595 0.03925039 0.388193 +0.07958143 0.03925039 0.388193 +0.0968001 0.03925039 0.388193 +0.1160161 0.03925039 0.388193 +0.1372908 0.03925039 0.388193 +0.1606827 0.03925039 0.388193 +0.1862481 0.03925039 0.388193 +0.2140411 0.03925039 0.388193 +0.2441142 0.03925039 0.388193 +0.2765176 0.03925039 0.388193 +0.3113005 0.03925039 0.388193 +0.3485102 0.03925039 0.388193 +0.388193 0.03925039 0.388193 +0.4303934 0.03925039 0.388193 +0.4751555 0.03925039 0.388193 +0.5225216 0.03925039 0.388193 +0.5725335 0.03925039 0.388193 +0.6252316 0.03925039 0.388193 +0.6806558 0.03925039 0.388193 +0.7388448 0.03925039 0.388193 +0.7998369 0.03925039 0.388193 +0.8636691 0.03925039 0.388193 +0.9303782 0.03925039 0.388193 +1 0.03925039 0.388193 +0 0.05087609 0.388193 +0.002418731 0.05087609 0.388193 +0.005155668 0.05087609 0.388193 +0.009080105 0.05087609 0.388193 +0.01434988 0.05087609 0.388193 +0.02107202 0.05087609 0.388193 +0.02934285 0.05087609 0.388193 +0.03925039 0.05087609 0.388193 +0.05087609 0.05087609 0.388193 +0.06429595 0.05087609 0.388193 +0.07958143 0.05087609 0.388193 +0.0968001 0.05087609 0.388193 +0.1160161 0.05087609 0.388193 +0.1372908 0.05087609 0.388193 +0.1606827 0.05087609 0.388193 +0.1862481 0.05087609 0.388193 +0.2140411 0.05087609 0.388193 +0.2441142 0.05087609 0.388193 +0.2765176 0.05087609 0.388193 +0.3113005 0.05087609 0.388193 +0.3485102 0.05087609 0.388193 +0.388193 0.05087609 0.388193 +0.4303934 0.05087609 0.388193 +0.4751555 0.05087609 0.388193 +0.5225216 0.05087609 0.388193 +0.5725335 0.05087609 0.388193 +0.6252316 0.05087609 0.388193 +0.6806558 0.05087609 0.388193 +0.7388448 0.05087609 0.388193 +0.7998369 0.05087609 0.388193 +0.8636691 0.05087609 0.388193 +0.9303782 0.05087609 0.388193 +1 0.05087609 0.388193 +0 0.06429595 0.388193 +0.002418731 0.06429595 0.388193 +0.005155668 0.06429595 0.388193 +0.009080105 0.06429595 0.388193 +0.01434988 0.06429595 0.388193 +0.02107202 0.06429595 0.388193 +0.02934285 0.06429595 0.388193 +0.03925039 0.06429595 0.388193 +0.05087609 0.06429595 0.388193 +0.06429595 0.06429595 0.388193 +0.07958143 0.06429595 0.388193 +0.0968001 0.06429595 0.388193 +0.1160161 0.06429595 0.388193 +0.1372908 0.06429595 0.388193 +0.1606827 0.06429595 0.388193 +0.1862481 0.06429595 0.388193 +0.2140411 0.06429595 0.388193 +0.2441142 0.06429595 0.388193 +0.2765176 0.06429595 0.388193 +0.3113005 0.06429595 0.388193 +0.3485102 0.06429595 0.388193 +0.388193 0.06429595 0.388193 +0.4303934 0.06429595 0.388193 +0.4751555 0.06429595 0.388193 +0.5225216 0.06429595 0.388193 +0.5725335 0.06429595 0.388193 +0.6252316 0.06429595 0.388193 +0.6806558 0.06429595 0.388193 +0.7388448 0.06429595 0.388193 +0.7998369 0.06429595 0.388193 +0.8636691 0.06429595 0.388193 +0.9303782 0.06429595 0.388193 +1 0.06429595 0.388193 +0 0.07958143 0.388193 +0.002418731 0.07958143 0.388193 +0.005155668 0.07958143 0.388193 +0.009080105 0.07958143 0.388193 +0.01434988 0.07958143 0.388193 +0.02107202 0.07958143 0.388193 +0.02934285 0.07958143 0.388193 +0.03925039 0.07958143 0.388193 +0.05087609 0.07958143 0.388193 +0.06429595 0.07958143 0.388193 +0.07958143 0.07958143 0.388193 +0.0968001 0.07958143 0.388193 +0.1160161 0.07958143 0.388193 +0.1372908 0.07958143 0.388193 +0.1606827 0.07958143 0.388193 +0.1862481 0.07958143 0.388193 +0.2140411 0.07958143 0.388193 +0.2441142 0.07958143 0.388193 +0.2765176 0.07958143 0.388193 +0.3113005 0.07958143 0.388193 +0.3485102 0.07958143 0.388193 +0.388193 0.07958143 0.388193 +0.4303934 0.07958143 0.388193 +0.4751555 0.07958143 0.388193 +0.5225216 0.07958143 0.388193 +0.5725335 0.07958143 0.388193 +0.6252316 0.07958143 0.388193 +0.6806558 0.07958143 0.388193 +0.7388448 0.07958143 0.388193 +0.7998369 0.07958143 0.388193 +0.8636691 0.07958143 0.388193 +0.9303782 0.07958143 0.388193 +1 0.07958143 0.388193 +0 0.0968001 0.388193 +0.002418731 0.0968001 0.388193 +0.005155668 0.0968001 0.388193 +0.009080105 0.0968001 0.388193 +0.01434988 0.0968001 0.388193 +0.02107202 0.0968001 0.388193 +0.02934285 0.0968001 0.388193 +0.03925039 0.0968001 0.388193 +0.05087609 0.0968001 0.388193 +0.06429595 0.0968001 0.388193 +0.07958143 0.0968001 0.388193 +0.0968001 0.0968001 0.388193 +0.1160161 0.0968001 0.388193 +0.1372908 0.0968001 0.388193 +0.1606827 0.0968001 0.388193 +0.1862481 0.0968001 0.388193 +0.2140411 0.0968001 0.388193 +0.2441142 0.0968001 0.388193 +0.2765176 0.0968001 0.388193 +0.3113005 0.0968001 0.388193 +0.3485102 0.0968001 0.388193 +0.388193 0.0968001 0.388193 +0.4303934 0.0968001 0.388193 +0.4751555 0.0968001 0.388193 +0.5225216 0.0968001 0.388193 +0.5725335 0.0968001 0.388193 +0.6252316 0.0968001 0.388193 +0.6806558 0.0968001 0.388193 +0.7388448 0.0968001 0.388193 +0.7998369 0.0968001 0.388193 +0.8636691 0.0968001 0.388193 +0.9303782 0.0968001 0.388193 +1 0.0968001 0.388193 +0 0.1160161 0.388193 +0.002418731 0.1160161 0.388193 +0.005155668 0.1160161 0.388193 +0.009080105 0.1160161 0.388193 +0.01434988 0.1160161 0.388193 +0.02107202 0.1160161 0.388193 +0.02934285 0.1160161 0.388193 +0.03925039 0.1160161 0.388193 +0.05087609 0.1160161 0.388193 +0.06429595 0.1160161 0.388193 +0.07958143 0.1160161 0.388193 +0.0968001 0.1160161 0.388193 +0.1160161 0.1160161 0.388193 +0.1372908 0.1160161 0.388193 +0.1606827 0.1160161 0.388193 +0.1862481 0.1160161 0.388193 +0.2140411 0.1160161 0.388193 +0.2441142 0.1160161 0.388193 +0.2765176 0.1160161 0.388193 +0.3113005 0.1160161 0.388193 +0.3485102 0.1160161 0.388193 +0.388193 0.1160161 0.388193 +0.4303934 0.1160161 0.388193 +0.4751555 0.1160161 0.388193 +0.5225216 0.1160161 0.388193 +0.5725335 0.1160161 0.388193 +0.6252316 0.1160161 0.388193 +0.6806558 0.1160161 0.388193 +0.7388448 0.1160161 0.388193 +0.7998369 0.1160161 0.388193 +0.8636691 0.1160161 0.388193 +0.9303782 0.1160161 0.388193 +1 0.1160161 0.388193 +0 0.1372908 0.388193 +0.002418731 0.1372908 0.388193 +0.005155668 0.1372908 0.388193 +0.009080105 0.1372908 0.388193 +0.01434988 0.1372908 0.388193 +0.02107202 0.1372908 0.388193 +0.02934285 0.1372908 0.388193 +0.03925039 0.1372908 0.388193 +0.05087609 0.1372908 0.388193 +0.06429595 0.1372908 0.388193 +0.07958143 0.1372908 0.388193 +0.0968001 0.1372908 0.388193 +0.1160161 0.1372908 0.388193 +0.1372908 0.1372908 0.388193 +0.1606827 0.1372908 0.388193 +0.1862481 0.1372908 0.388193 +0.2140411 0.1372908 0.388193 +0.2441142 0.1372908 0.388193 +0.2765176 0.1372908 0.388193 +0.3113005 0.1372908 0.388193 +0.3485102 0.1372908 0.388193 +0.388193 0.1372908 0.388193 +0.4303934 0.1372908 0.388193 +0.4751555 0.1372908 0.388193 +0.5225216 0.1372908 0.388193 +0.5725335 0.1372908 0.388193 +0.6252316 0.1372908 0.388193 +0.6806558 0.1372908 0.388193 +0.7388448 0.1372908 0.388193 +0.7998369 0.1372908 0.388193 +0.8636691 0.1372908 0.388193 +0.9303782 0.1372908 0.388193 +1 0.1372908 0.388193 +0 0.1606827 0.388193 +0.002418731 0.1606827 0.388193 +0.005155668 0.1606827 0.388193 +0.009080105 0.1606827 0.388193 +0.01434988 0.1606827 0.388193 +0.02107202 0.1606827 0.388193 +0.02934285 0.1606827 0.388193 +0.03925039 0.1606827 0.388193 +0.05087609 0.1606827 0.388193 +0.06429595 0.1606827 0.388193 +0.07958143 0.1606827 0.388193 +0.0968001 0.1606827 0.388193 +0.1160161 0.1606827 0.388193 +0.1372908 0.1606827 0.388193 +0.1606827 0.1606827 0.388193 +0.1862481 0.1606827 0.388193 +0.2140411 0.1606827 0.388193 +0.2441142 0.1606827 0.388193 +0.2765176 0.1606827 0.388193 +0.3113005 0.1606827 0.388193 +0.3485102 0.1606827 0.388193 +0.388193 0.1606827 0.388193 +0.4303934 0.1606827 0.388193 +0.4751555 0.1606827 0.388193 +0.5225216 0.1606827 0.388193 +0.5725335 0.1606827 0.388193 +0.6252316 0.1606827 0.388193 +0.6806558 0.1606827 0.388193 +0.7388448 0.1606827 0.388193 +0.7998369 0.1606827 0.388193 +0.8636691 0.1606827 0.388193 +0.9303782 0.1606827 0.388193 +1 0.1606827 0.388193 +0 0.1862481 0.388193 +0.002418731 0.1862481 0.388193 +0.005155668 0.1862481 0.388193 +0.009080105 0.1862481 0.388193 +0.01434988 0.1862481 0.388193 +0.02107202 0.1862481 0.388193 +0.02934285 0.1862481 0.388193 +0.03925039 0.1862481 0.388193 +0.05087609 0.1862481 0.388193 +0.06429595 0.1862481 0.388193 +0.07958143 0.1862481 0.388193 +0.0968001 0.1862481 0.388193 +0.1160161 0.1862481 0.388193 +0.1372908 0.1862481 0.388193 +0.1606827 0.1862481 0.388193 +0.1862481 0.1862481 0.388193 +0.2140411 0.1862481 0.388193 +0.2441142 0.1862481 0.388193 +0.2765176 0.1862481 0.388193 +0.3113005 0.1862481 0.388193 +0.3485102 0.1862481 0.388193 +0.388193 0.1862481 0.388193 +0.4303934 0.1862481 0.388193 +0.4751555 0.1862481 0.388193 +0.5225216 0.1862481 0.388193 +0.5725335 0.1862481 0.388193 +0.6252316 0.1862481 0.388193 +0.6806558 0.1862481 0.388193 +0.7388448 0.1862481 0.388193 +0.7998369 0.1862481 0.388193 +0.8636691 0.1862481 0.388193 +0.9303782 0.1862481 0.388193 +1 0.1862481 0.388193 +0 0.2140411 0.388193 +0.002418731 0.2140411 0.388193 +0.005155668 0.2140411 0.388193 +0.009080105 0.2140411 0.388193 +0.01434988 0.2140411 0.388193 +0.02107202 0.2140411 0.388193 +0.02934285 0.2140411 0.388193 +0.03925039 0.2140411 0.388193 +0.05087609 0.2140411 0.388193 +0.06429595 0.2140411 0.388193 +0.07958143 0.2140411 0.388193 +0.0968001 0.2140411 0.388193 +0.1160161 0.2140411 0.388193 +0.1372908 0.2140411 0.388193 +0.1606827 0.2140411 0.388193 +0.1862481 0.2140411 0.388193 +0.2140411 0.2140411 0.388193 +0.2441142 0.2140411 0.388193 +0.2765176 0.2140411 0.388193 +0.3113005 0.2140411 0.388193 +0.3485102 0.2140411 0.388193 +0.388193 0.2140411 0.388193 +0.4303934 0.2140411 0.388193 +0.4751555 0.2140411 0.388193 +0.5225216 0.2140411 0.388193 +0.5725335 0.2140411 0.388193 +0.6252316 0.2140411 0.388193 +0.6806558 0.2140411 0.388193 +0.7388448 0.2140411 0.388193 +0.7998369 0.2140411 0.388193 +0.8636691 0.2140411 0.388193 +0.9303782 0.2140411 0.388193 +1 0.2140411 0.388193 +0 0.2441142 0.388193 +0.002418731 0.2441142 0.388193 +0.005155668 0.2441142 0.388193 +0.009080105 0.2441142 0.388193 +0.01434988 0.2441142 0.388193 +0.02107202 0.2441142 0.388193 +0.02934285 0.2441142 0.388193 +0.03925039 0.2441142 0.388193 +0.05087609 0.2441142 0.388193 +0.06429595 0.2441142 0.388193 +0.07958143 0.2441142 0.388193 +0.0968001 0.2441142 0.388193 +0.1160161 0.2441142 0.388193 +0.1372908 0.2441142 0.388193 +0.1606827 0.2441142 0.388193 +0.1862481 0.2441142 0.388193 +0.2140411 0.2441142 0.388193 +0.2441142 0.2441142 0.388193 +0.2765176 0.2441142 0.388193 +0.3113005 0.2441142 0.388193 +0.3485102 0.2441142 0.388193 +0.388193 0.2441142 0.388193 +0.4303934 0.2441142 0.388193 +0.4751555 0.2441142 0.388193 +0.5225216 0.2441142 0.388193 +0.5725335 0.2441142 0.388193 +0.6252316 0.2441142 0.388193 +0.6806558 0.2441142 0.388193 +0.7388448 0.2441142 0.388193 +0.7998369 0.2441142 0.388193 +0.8636691 0.2441142 0.388193 +0.9303782 0.2441142 0.388193 +1 0.2441142 0.388193 +0 0.2765176 0.388193 +0.002418731 0.2765176 0.388193 +0.005155668 0.2765176 0.388193 +0.009080105 0.2765176 0.388193 +0.01434988 0.2765176 0.388193 +0.02107202 0.2765176 0.388193 +0.02934285 0.2765176 0.388193 +0.03925039 0.2765176 0.388193 +0.05087609 0.2765176 0.388193 +0.06429595 0.2765176 0.388193 +0.07958143 0.2765176 0.388193 +0.0968001 0.2765176 0.388193 +0.1160161 0.2765176 0.388193 +0.1372908 0.2765176 0.388193 +0.1606827 0.2765176 0.388193 +0.1862481 0.2765176 0.388193 +0.2140411 0.2765176 0.388193 +0.2441142 0.2765176 0.388193 +0.2765176 0.2765176 0.388193 +0.3113005 0.2765176 0.388193 +0.3485102 0.2765176 0.388193 +0.388193 0.2765176 0.388193 +0.4303934 0.2765176 0.388193 +0.4751555 0.2765176 0.388193 +0.5225216 0.2765176 0.388193 +0.5725335 0.2765176 0.388193 +0.6252316 0.2765176 0.388193 +0.6806558 0.2765176 0.388193 +0.7388448 0.2765176 0.388193 +0.7998369 0.2765176 0.388193 +0.8636691 0.2765176 0.388193 +0.9303782 0.2765176 0.388193 +1 0.2765176 0.388193 +0 0.3113005 0.388193 +0.002418731 0.3113005 0.388193 +0.005155668 0.3113005 0.388193 +0.009080105 0.3113005 0.388193 +0.01434988 0.3113005 0.388193 +0.02107202 0.3113005 0.388193 +0.02934285 0.3113005 0.388193 +0.03925039 0.3113005 0.388193 +0.05087609 0.3113005 0.388193 +0.06429595 0.3113005 0.388193 +0.07958143 0.3113005 0.388193 +0.0968001 0.3113005 0.388193 +0.1160161 0.3113005 0.388193 +0.1372908 0.3113005 0.388193 +0.1606827 0.3113005 0.388193 +0.1862481 0.3113005 0.388193 +0.2140411 0.3113005 0.388193 +0.2441142 0.3113005 0.388193 +0.2765176 0.3113005 0.388193 +0.3113005 0.3113005 0.388193 +0.3485102 0.3113005 0.388193 +0.388193 0.3113005 0.388193 +0.4303934 0.3113005 0.388193 +0.4751555 0.3113005 0.388193 +0.5225216 0.3113005 0.388193 +0.5725335 0.3113005 0.388193 +0.6252316 0.3113005 0.388193 +0.6806558 0.3113005 0.388193 +0.7388448 0.3113005 0.388193 +0.7998369 0.3113005 0.388193 +0.8636691 0.3113005 0.388193 +0.9303782 0.3113005 0.388193 +1 0.3113005 0.388193 +0 0.3485102 0.388193 +0.002418731 0.3485102 0.388193 +0.005155668 0.3485102 0.388193 +0.009080105 0.3485102 0.388193 +0.01434988 0.3485102 0.388193 +0.02107202 0.3485102 0.388193 +0.02934285 0.3485102 0.388193 +0.03925039 0.3485102 0.388193 +0.05087609 0.3485102 0.388193 +0.06429595 0.3485102 0.388193 +0.07958143 0.3485102 0.388193 +0.0968001 0.3485102 0.388193 +0.1160161 0.3485102 0.388193 +0.1372908 0.3485102 0.388193 +0.1606827 0.3485102 0.388193 +0.1862481 0.3485102 0.388193 +0.2140411 0.3485102 0.388193 +0.2441142 0.3485102 0.388193 +0.2765176 0.3485102 0.388193 +0.3113005 0.3485102 0.388193 +0.3485102 0.3485102 0.388193 +0.388193 0.3485102 0.388193 +0.4303934 0.3485102 0.388193 +0.4751555 0.3485102 0.388193 +0.5225216 0.3485102 0.388193 +0.5725335 0.3485102 0.388193 +0.6252316 0.3485102 0.388193 +0.6806558 0.3485102 0.388193 +0.7388448 0.3485102 0.388193 +0.7998369 0.3485102 0.388193 +0.8636691 0.3485102 0.388193 +0.9303782 0.3485102 0.388193 +1 0.3485102 0.388193 +0 0.388193 0.388193 +0.002418731 0.388193 0.388193 +0.005155668 0.388193 0.388193 +0.009080105 0.388193 0.388193 +0.01434988 0.388193 0.388193 +0.02107202 0.388193 0.388193 +0.02934285 0.388193 0.388193 +0.03925039 0.388193 0.388193 +0.05087609 0.388193 0.388193 +0.06429595 0.388193 0.388193 +0.07958143 0.388193 0.388193 +0.0968001 0.388193 0.388193 +0.1160161 0.388193 0.388193 +0.1372908 0.388193 0.388193 +0.1606827 0.388193 0.388193 +0.1862481 0.388193 0.388193 +0.2140411 0.388193 0.388193 +0.2441142 0.388193 0.388193 +0.2765176 0.388193 0.388193 +0.3113005 0.388193 0.388193 +0.3485102 0.388193 0.388193 +0.388193 0.388193 0.388193 +0.4303934 0.388193 0.388193 +0.4751555 0.388193 0.388193 +0.5225216 0.388193 0.388193 +0.5725335 0.388193 0.388193 +0.6252316 0.388193 0.388193 +0.6806558 0.388193 0.388193 +0.7388448 0.388193 0.388193 +0.7998369 0.388193 0.388193 +0.8636691 0.388193 0.388193 +0.9303782 0.388193 0.388193 +1 0.388193 0.388193 +0 0.4303934 0.388193 +0.002418731 0.4303934 0.388193 +0.005155668 0.4303934 0.388193 +0.009080105 0.4303934 0.388193 +0.01434988 0.4303934 0.388193 +0.02107202 0.4303934 0.388193 +0.02934285 0.4303934 0.388193 +0.03925039 0.4303934 0.388193 +0.05087609 0.4303934 0.388193 +0.06429595 0.4303934 0.388193 +0.07958143 0.4303934 0.388193 +0.0968001 0.4303934 0.388193 +0.1160161 0.4303934 0.388193 +0.1372908 0.4303934 0.388193 +0.1606827 0.4303934 0.388193 +0.1862481 0.4303934 0.388193 +0.2140411 0.4303934 0.388193 +0.2441142 0.4303934 0.388193 +0.2765176 0.4303934 0.388193 +0.3113005 0.4303934 0.388193 +0.3485102 0.4303934 0.388193 +0.388193 0.4303934 0.388193 +0.4303934 0.4303934 0.388193 +0.4751555 0.4303934 0.388193 +0.5225216 0.4303934 0.388193 +0.5725335 0.4303934 0.388193 +0.6252316 0.4303934 0.388193 +0.6806558 0.4303934 0.388193 +0.7388448 0.4303934 0.388193 +0.7998369 0.4303934 0.388193 +0.8636691 0.4303934 0.388193 +0.9303782 0.4303934 0.388193 +1 0.4303934 0.388193 +0 0.4751555 0.388193 +0.002418731 0.4751555 0.388193 +0.005155668 0.4751555 0.388193 +0.009080105 0.4751555 0.388193 +0.01434988 0.4751555 0.388193 +0.02107202 0.4751555 0.388193 +0.02934285 0.4751555 0.388193 +0.03925039 0.4751555 0.388193 +0.05087609 0.4751555 0.388193 +0.06429595 0.4751555 0.388193 +0.07958143 0.4751555 0.388193 +0.0968001 0.4751555 0.388193 +0.1160161 0.4751555 0.388193 +0.1372908 0.4751555 0.388193 +0.1606827 0.4751555 0.388193 +0.1862481 0.4751555 0.388193 +0.2140411 0.4751555 0.388193 +0.2441142 0.4751555 0.388193 +0.2765176 0.4751555 0.388193 +0.3113005 0.4751555 0.388193 +0.3485102 0.4751555 0.388193 +0.388193 0.4751555 0.388193 +0.4303934 0.4751555 0.388193 +0.4751555 0.4751555 0.388193 +0.5225216 0.4751555 0.388193 +0.5725335 0.4751555 0.388193 +0.6252316 0.4751555 0.388193 +0.6806558 0.4751555 0.388193 +0.7388448 0.4751555 0.388193 +0.7998369 0.4751555 0.388193 +0.8636691 0.4751555 0.388193 +0.9303782 0.4751555 0.388193 +1 0.4751555 0.388193 +0 0.5225216 0.388193 +0.002418731 0.5225216 0.388193 +0.005155668 0.5225216 0.388193 +0.009080105 0.5225216 0.388193 +0.01434988 0.5225216 0.388193 +0.02107202 0.5225216 0.388193 +0.02934285 0.5225216 0.388193 +0.03925039 0.5225216 0.388193 +0.05087609 0.5225216 0.388193 +0.06429595 0.5225216 0.388193 +0.07958143 0.5225216 0.388193 +0.0968001 0.5225216 0.388193 +0.1160161 0.5225216 0.388193 +0.1372908 0.5225216 0.388193 +0.1606827 0.5225216 0.388193 +0.1862481 0.5225216 0.388193 +0.2140411 0.5225216 0.388193 +0.2441142 0.5225216 0.388193 +0.2765176 0.5225216 0.388193 +0.3113005 0.5225216 0.388193 +0.3485102 0.5225216 0.388193 +0.388193 0.5225216 0.388193 +0.4303934 0.5225216 0.388193 +0.4751555 0.5225216 0.388193 +0.5225216 0.5225216 0.388193 +0.5725335 0.5225216 0.388193 +0.6252316 0.5225216 0.388193 +0.6806558 0.5225216 0.388193 +0.7388448 0.5225216 0.388193 +0.7998369 0.5225216 0.388193 +0.8636691 0.5225216 0.388193 +0.9303782 0.5225216 0.388193 +1 0.5225216 0.388193 +0 0.5725335 0.388193 +0.002418731 0.5725335 0.388193 +0.005155668 0.5725335 0.388193 +0.009080105 0.5725335 0.388193 +0.01434988 0.5725335 0.388193 +0.02107202 0.5725335 0.388193 +0.02934285 0.5725335 0.388193 +0.03925039 0.5725335 0.388193 +0.05087609 0.5725335 0.388193 +0.06429595 0.5725335 0.388193 +0.07958143 0.5725335 0.388193 +0.0968001 0.5725335 0.388193 +0.1160161 0.5725335 0.388193 +0.1372908 0.5725335 0.388193 +0.1606827 0.5725335 0.388193 +0.1862481 0.5725335 0.388193 +0.2140411 0.5725335 0.388193 +0.2441142 0.5725335 0.388193 +0.2765176 0.5725335 0.388193 +0.3113005 0.5725335 0.388193 +0.3485102 0.5725335 0.388193 +0.388193 0.5725335 0.388193 +0.4303934 0.5725335 0.388193 +0.4751555 0.5725335 0.388193 +0.5225216 0.5725335 0.388193 +0.5725335 0.5725335 0.388193 +0.6252316 0.5725335 0.388193 +0.6806558 0.5725335 0.388193 +0.7388448 0.5725335 0.388193 +0.7998369 0.5725335 0.388193 +0.8636691 0.5725335 0.388193 +0.9303782 0.5725335 0.388193 +1 0.5725335 0.388193 +0 0.6252316 0.388193 +0.002418731 0.6252316 0.388193 +0.005155668 0.6252316 0.388193 +0.009080105 0.6252316 0.388193 +0.01434988 0.6252316 0.388193 +0.02107202 0.6252316 0.388193 +0.02934285 0.6252316 0.388193 +0.03925039 0.6252316 0.388193 +0.05087609 0.6252316 0.388193 +0.06429595 0.6252316 0.388193 +0.07958143 0.6252316 0.388193 +0.0968001 0.6252316 0.388193 +0.1160161 0.6252316 0.388193 +0.1372908 0.6252316 0.388193 +0.1606827 0.6252316 0.388193 +0.1862481 0.6252316 0.388193 +0.2140411 0.6252316 0.388193 +0.2441142 0.6252316 0.388193 +0.2765176 0.6252316 0.388193 +0.3113005 0.6252316 0.388193 +0.3485102 0.6252316 0.388193 +0.388193 0.6252316 0.388193 +0.4303934 0.6252316 0.388193 +0.4751555 0.6252316 0.388193 +0.5225216 0.6252316 0.388193 +0.5725335 0.6252316 0.388193 +0.6252316 0.6252316 0.388193 +0.6806558 0.6252316 0.388193 +0.7388448 0.6252316 0.388193 +0.7998369 0.6252316 0.388193 +0.8636691 0.6252316 0.388193 +0.9303782 0.6252316 0.388193 +1 0.6252316 0.388193 +0 0.6806558 0.388193 +0.002418731 0.6806558 0.388193 +0.005155668 0.6806558 0.388193 +0.009080105 0.6806558 0.388193 +0.01434988 0.6806558 0.388193 +0.02107202 0.6806558 0.388193 +0.02934285 0.6806558 0.388193 +0.03925039 0.6806558 0.388193 +0.05087609 0.6806558 0.388193 +0.06429595 0.6806558 0.388193 +0.07958143 0.6806558 0.388193 +0.0968001 0.6806558 0.388193 +0.1160161 0.6806558 0.388193 +0.1372908 0.6806558 0.388193 +0.1606827 0.6806558 0.388193 +0.1862481 0.6806558 0.388193 +0.2140411 0.6806558 0.388193 +0.2441142 0.6806558 0.388193 +0.2765176 0.6806558 0.388193 +0.3113005 0.6806558 0.388193 +0.3485102 0.6806558 0.388193 +0.388193 0.6806558 0.388193 +0.4303934 0.6806558 0.388193 +0.4751555 0.6806558 0.388193 +0.5225216 0.6806558 0.388193 +0.5725335 0.6806558 0.388193 +0.6252316 0.6806558 0.388193 +0.6806558 0.6806558 0.388193 +0.7388448 0.6806558 0.388193 +0.7998369 0.6806558 0.388193 +0.8636691 0.6806558 0.388193 +0.9303782 0.6806558 0.388193 +1 0.6806558 0.388193 +0 0.7388448 0.388193 +0.002418731 0.7388448 0.388193 +0.005155668 0.7388448 0.388193 +0.009080105 0.7388448 0.388193 +0.01434988 0.7388448 0.388193 +0.02107202 0.7388448 0.388193 +0.02934285 0.7388448 0.388193 +0.03925039 0.7388448 0.388193 +0.05087609 0.7388448 0.388193 +0.06429595 0.7388448 0.388193 +0.07958143 0.7388448 0.388193 +0.0968001 0.7388448 0.388193 +0.1160161 0.7388448 0.388193 +0.1372908 0.7388448 0.388193 +0.1606827 0.7388448 0.388193 +0.1862481 0.7388448 0.388193 +0.2140411 0.7388448 0.388193 +0.2441142 0.7388448 0.388193 +0.2765176 0.7388448 0.388193 +0.3113005 0.7388448 0.388193 +0.3485102 0.7388448 0.388193 +0.388193 0.7388448 0.388193 +0.4303934 0.7388448 0.388193 +0.4751555 0.7388448 0.388193 +0.5225216 0.7388448 0.388193 +0.5725335 0.7388448 0.388193 +0.6252316 0.7388448 0.388193 +0.6806558 0.7388448 0.388193 +0.7388448 0.7388448 0.388193 +0.7998369 0.7388448 0.388193 +0.8636691 0.7388448 0.388193 +0.9303782 0.7388448 0.388193 +1 0.7388448 0.388193 +0 0.7998369 0.388193 +0.002418731 0.7998369 0.388193 +0.005155668 0.7998369 0.388193 +0.009080105 0.7998369 0.388193 +0.01434988 0.7998369 0.388193 +0.02107202 0.7998369 0.388193 +0.02934285 0.7998369 0.388193 +0.03925039 0.7998369 0.388193 +0.05087609 0.7998369 0.388193 +0.06429595 0.7998369 0.388193 +0.07958143 0.7998369 0.388193 +0.0968001 0.7998369 0.388193 +0.1160161 0.7998369 0.388193 +0.1372908 0.7998369 0.388193 +0.1606827 0.7998369 0.388193 +0.1862481 0.7998369 0.388193 +0.2140411 0.7998369 0.388193 +0.2441142 0.7998369 0.388193 +0.2765176 0.7998369 0.388193 +0.3113005 0.7998369 0.388193 +0.3485102 0.7998369 0.388193 +0.388193 0.7998369 0.388193 +0.4303934 0.7998369 0.388193 +0.4751555 0.7998369 0.388193 +0.5225216 0.7998369 0.388193 +0.5725335 0.7998369 0.388193 +0.6252316 0.7998369 0.388193 +0.6806558 0.7998369 0.388193 +0.7388448 0.7998369 0.388193 +0.7998369 0.7998369 0.388193 +0.8636691 0.7998369 0.388193 +0.9303782 0.7998369 0.388193 +1 0.7998369 0.388193 +0 0.8636691 0.388193 +0.002418731 0.8636691 0.388193 +0.005155668 0.8636691 0.388193 +0.009080105 0.8636691 0.388193 +0.01434988 0.8636691 0.388193 +0.02107202 0.8636691 0.388193 +0.02934285 0.8636691 0.388193 +0.03925039 0.8636691 0.388193 +0.05087609 0.8636691 0.388193 +0.06429595 0.8636691 0.388193 +0.07958143 0.8636691 0.388193 +0.0968001 0.8636691 0.388193 +0.1160161 0.8636691 0.388193 +0.1372908 0.8636691 0.388193 +0.1606827 0.8636691 0.388193 +0.1862481 0.8636691 0.388193 +0.2140411 0.8636691 0.388193 +0.2441142 0.8636691 0.388193 +0.2765176 0.8636691 0.388193 +0.3113005 0.8636691 0.388193 +0.3485102 0.8636691 0.388193 +0.388193 0.8636691 0.388193 +0.4303934 0.8636691 0.388193 +0.4751555 0.8636691 0.388193 +0.5225216 0.8636691 0.388193 +0.5725335 0.8636691 0.388193 +0.6252316 0.8636691 0.388193 +0.6806558 0.8636691 0.388193 +0.7388448 0.8636691 0.388193 +0.7998369 0.8636691 0.388193 +0.8636691 0.8636691 0.388193 +0.9303782 0.8636691 0.388193 +1 0.8636691 0.388193 +0 0.9303782 0.388193 +0.002418731 0.9303782 0.388193 +0.005155668 0.9303782 0.388193 +0.009080105 0.9303782 0.388193 +0.01434988 0.9303782 0.388193 +0.02107202 0.9303782 0.388193 +0.02934285 0.9303782 0.388193 +0.03925039 0.9303782 0.388193 +0.05087609 0.9303782 0.388193 +0.06429595 0.9303782 0.388193 +0.07958143 0.9303782 0.388193 +0.0968001 0.9303782 0.388193 +0.1160161 0.9303782 0.388193 +0.1372908 0.9303782 0.388193 +0.1606827 0.9303782 0.388193 +0.1862481 0.9303782 0.388193 +0.2140411 0.9303782 0.388193 +0.2441142 0.9303782 0.388193 +0.2765176 0.9303782 0.388193 +0.3113005 0.9303782 0.388193 +0.3485102 0.9303782 0.388193 +0.388193 0.9303782 0.388193 +0.4303934 0.9303782 0.388193 +0.4751555 0.9303782 0.388193 +0.5225216 0.9303782 0.388193 +0.5725335 0.9303782 0.388193 +0.6252316 0.9303782 0.388193 +0.6806558 0.9303782 0.388193 +0.7388448 0.9303782 0.388193 +0.7998369 0.9303782 0.388193 +0.8636691 0.9303782 0.388193 +0.9303782 0.9303782 0.388193 +1 0.9303782 0.388193 +0 1 0.388193 +0.002418731 1 0.388193 +0.005155668 1 0.388193 +0.009080105 1 0.388193 +0.01434988 1 0.388193 +0.02107202 1 0.388193 +0.02934285 1 0.388193 +0.03925039 1 0.388193 +0.05087609 1 0.388193 +0.06429595 1 0.388193 +0.07958143 1 0.388193 +0.0968001 1 0.388193 +0.1160161 1 0.388193 +0.1372908 1 0.388193 +0.1606827 1 0.388193 +0.1862481 1 0.388193 +0.2140411 1 0.388193 +0.2441142 1 0.388193 +0.2765176 1 0.388193 +0.3113005 1 0.388193 +0.3485102 1 0.388193 +0.388193 1 0.388193 +0.4303934 1 0.388193 +0.4751555 1 0.388193 +0.5225216 1 0.388193 +0.5725335 1 0.388193 +0.6252316 1 0.388193 +0.6806558 1 0.388193 +0.7388448 1 0.388193 +0.7998369 1 0.388193 +0.8636691 1 0.388193 +0.9303782 1 0.388193 +1 1 0.388193 +0 0 0.4303934 +0.002418731 0 0.4303934 +0.005155668 0 0.4303934 +0.009080105 0 0.4303934 +0.01434988 0 0.4303934 +0.02107202 0 0.4303934 +0.02934285 0 0.4303934 +0.03925039 0 0.4303934 +0.05087609 0 0.4303934 +0.06429595 0 0.4303934 +0.07958143 0 0.4303934 +0.0968001 0 0.4303934 +0.1160161 0 0.4303934 +0.1372908 0 0.4303934 +0.1606827 0 0.4303934 +0.1862481 0 0.4303934 +0.2140411 0 0.4303934 +0.2441142 0 0.4303934 +0.2765176 0 0.4303934 +0.3113005 0 0.4303934 +0.3485102 0 0.4303934 +0.388193 0 0.4303934 +0.4303934 0 0.4303934 +0.4751555 0 0.4303934 +0.5225216 0 0.4303934 +0.5725335 0 0.4303934 +0.6252316 0 0.4303934 +0.6806558 0 0.4303934 +0.7388448 0 0.4303934 +0.7998369 0 0.4303934 +0.8636691 0 0.4303934 +0.9303782 0 0.4303934 +1 0 0.4303934 +0 0.002418731 0.4303934 +0.002418731 0.002418731 0.4303934 +0.005155668 0.002418731 0.4303934 +0.009080105 0.002418731 0.4303934 +0.01434988 0.002418731 0.4303934 +0.02107202 0.002418731 0.4303934 +0.02934285 0.002418731 0.4303934 +0.03925039 0.002418731 0.4303934 +0.05087609 0.002418731 0.4303934 +0.06429595 0.002418731 0.4303934 +0.07958143 0.002418731 0.4303934 +0.0968001 0.002418731 0.4303934 +0.1160161 0.002418731 0.4303934 +0.1372908 0.002418731 0.4303934 +0.1606827 0.002418731 0.4303934 +0.1862481 0.002418731 0.4303934 +0.2140411 0.002418731 0.4303934 +0.2441142 0.002418731 0.4303934 +0.2765176 0.002418731 0.4303934 +0.3113005 0.002418731 0.4303934 +0.3485102 0.002418731 0.4303934 +0.388193 0.002418731 0.4303934 +0.4303934 0.002418731 0.4303934 +0.4751555 0.002418731 0.4303934 +0.5225216 0.002418731 0.4303934 +0.5725335 0.002418731 0.4303934 +0.6252316 0.002418731 0.4303934 +0.6806558 0.002418731 0.4303934 +0.7388448 0.002418731 0.4303934 +0.7998369 0.002418731 0.4303934 +0.8636691 0.002418731 0.4303934 +0.9303782 0.002418731 0.4303934 +1 0.002418731 0.4303934 +0 0.005155668 0.4303934 +0.002418731 0.005155668 0.4303934 +0.005155668 0.005155668 0.4303934 +0.009080105 0.005155668 0.4303934 +0.01434988 0.005155668 0.4303934 +0.02107202 0.005155668 0.4303934 +0.02934285 0.005155668 0.4303934 +0.03925039 0.005155668 0.4303934 +0.05087609 0.005155668 0.4303934 +0.06429595 0.005155668 0.4303934 +0.07958143 0.005155668 0.4303934 +0.0968001 0.005155668 0.4303934 +0.1160161 0.005155668 0.4303934 +0.1372908 0.005155668 0.4303934 +0.1606827 0.005155668 0.4303934 +0.1862481 0.005155668 0.4303934 +0.2140411 0.005155668 0.4303934 +0.2441142 0.005155668 0.4303934 +0.2765176 0.005155668 0.4303934 +0.3113005 0.005155668 0.4303934 +0.3485102 0.005155668 0.4303934 +0.388193 0.005155668 0.4303934 +0.4303934 0.005155668 0.4303934 +0.4751555 0.005155668 0.4303934 +0.5225216 0.005155668 0.4303934 +0.5725335 0.005155668 0.4303934 +0.6252316 0.005155668 0.4303934 +0.6806558 0.005155668 0.4303934 +0.7388448 0.005155668 0.4303934 +0.7998369 0.005155668 0.4303934 +0.8636691 0.005155668 0.4303934 +0.9303782 0.005155668 0.4303934 +1 0.005155668 0.4303934 +0 0.009080105 0.4303934 +0.002418731 0.009080105 0.4303934 +0.005155668 0.009080105 0.4303934 +0.009080105 0.009080105 0.4303934 +0.01434988 0.009080105 0.4303934 +0.02107202 0.009080105 0.4303934 +0.02934285 0.009080105 0.4303934 +0.03925039 0.009080105 0.4303934 +0.05087609 0.009080105 0.4303934 +0.06429595 0.009080105 0.4303934 +0.07958143 0.009080105 0.4303934 +0.0968001 0.009080105 0.4303934 +0.1160161 0.009080105 0.4303934 +0.1372908 0.009080105 0.4303934 +0.1606827 0.009080105 0.4303934 +0.1862481 0.009080105 0.4303934 +0.2140411 0.009080105 0.4303934 +0.2441142 0.009080105 0.4303934 +0.2765176 0.009080105 0.4303934 +0.3113005 0.009080105 0.4303934 +0.3485102 0.009080105 0.4303934 +0.388193 0.009080105 0.4303934 +0.4303934 0.009080105 0.4303934 +0.4751555 0.009080105 0.4303934 +0.5225216 0.009080105 0.4303934 +0.5725335 0.009080105 0.4303934 +0.6252316 0.009080105 0.4303934 +0.6806558 0.009080105 0.4303934 +0.7388448 0.009080105 0.4303934 +0.7998369 0.009080105 0.4303934 +0.8636691 0.009080105 0.4303934 +0.9303782 0.009080105 0.4303934 +1 0.009080105 0.4303934 +0 0.01434988 0.4303934 +0.002418731 0.01434988 0.4303934 +0.005155668 0.01434988 0.4303934 +0.009080105 0.01434988 0.4303934 +0.01434988 0.01434988 0.4303934 +0.02107202 0.01434988 0.4303934 +0.02934285 0.01434988 0.4303934 +0.03925039 0.01434988 0.4303934 +0.05087609 0.01434988 0.4303934 +0.06429595 0.01434988 0.4303934 +0.07958143 0.01434988 0.4303934 +0.0968001 0.01434988 0.4303934 +0.1160161 0.01434988 0.4303934 +0.1372908 0.01434988 0.4303934 +0.1606827 0.01434988 0.4303934 +0.1862481 0.01434988 0.4303934 +0.2140411 0.01434988 0.4303934 +0.2441142 0.01434988 0.4303934 +0.2765176 0.01434988 0.4303934 +0.3113005 0.01434988 0.4303934 +0.3485102 0.01434988 0.4303934 +0.388193 0.01434988 0.4303934 +0.4303934 0.01434988 0.4303934 +0.4751555 0.01434988 0.4303934 +0.5225216 0.01434988 0.4303934 +0.5725335 0.01434988 0.4303934 +0.6252316 0.01434988 0.4303934 +0.6806558 0.01434988 0.4303934 +0.7388448 0.01434988 0.4303934 +0.7998369 0.01434988 0.4303934 +0.8636691 0.01434988 0.4303934 +0.9303782 0.01434988 0.4303934 +1 0.01434988 0.4303934 +0 0.02107202 0.4303934 +0.002418731 0.02107202 0.4303934 +0.005155668 0.02107202 0.4303934 +0.009080105 0.02107202 0.4303934 +0.01434988 0.02107202 0.4303934 +0.02107202 0.02107202 0.4303934 +0.02934285 0.02107202 0.4303934 +0.03925039 0.02107202 0.4303934 +0.05087609 0.02107202 0.4303934 +0.06429595 0.02107202 0.4303934 +0.07958143 0.02107202 0.4303934 +0.0968001 0.02107202 0.4303934 +0.1160161 0.02107202 0.4303934 +0.1372908 0.02107202 0.4303934 +0.1606827 0.02107202 0.4303934 +0.1862481 0.02107202 0.4303934 +0.2140411 0.02107202 0.4303934 +0.2441142 0.02107202 0.4303934 +0.2765176 0.02107202 0.4303934 +0.3113005 0.02107202 0.4303934 +0.3485102 0.02107202 0.4303934 +0.388193 0.02107202 0.4303934 +0.4303934 0.02107202 0.4303934 +0.4751555 0.02107202 0.4303934 +0.5225216 0.02107202 0.4303934 +0.5725335 0.02107202 0.4303934 +0.6252316 0.02107202 0.4303934 +0.6806558 0.02107202 0.4303934 +0.7388448 0.02107202 0.4303934 +0.7998369 0.02107202 0.4303934 +0.8636691 0.02107202 0.4303934 +0.9303782 0.02107202 0.4303934 +1 0.02107202 0.4303934 +0 0.02934285 0.4303934 +0.002418731 0.02934285 0.4303934 +0.005155668 0.02934285 0.4303934 +0.009080105 0.02934285 0.4303934 +0.01434988 0.02934285 0.4303934 +0.02107202 0.02934285 0.4303934 +0.02934285 0.02934285 0.4303934 +0.03925039 0.02934285 0.4303934 +0.05087609 0.02934285 0.4303934 +0.06429595 0.02934285 0.4303934 +0.07958143 0.02934285 0.4303934 +0.0968001 0.02934285 0.4303934 +0.1160161 0.02934285 0.4303934 +0.1372908 0.02934285 0.4303934 +0.1606827 0.02934285 0.4303934 +0.1862481 0.02934285 0.4303934 +0.2140411 0.02934285 0.4303934 +0.2441142 0.02934285 0.4303934 +0.2765176 0.02934285 0.4303934 +0.3113005 0.02934285 0.4303934 +0.3485102 0.02934285 0.4303934 +0.388193 0.02934285 0.4303934 +0.4303934 0.02934285 0.4303934 +0.4751555 0.02934285 0.4303934 +0.5225216 0.02934285 0.4303934 +0.5725335 0.02934285 0.4303934 +0.6252316 0.02934285 0.4303934 +0.6806558 0.02934285 0.4303934 +0.7388448 0.02934285 0.4303934 +0.7998369 0.02934285 0.4303934 +0.8636691 0.02934285 0.4303934 +0.9303782 0.02934285 0.4303934 +1 0.02934285 0.4303934 +0 0.03925039 0.4303934 +0.002418731 0.03925039 0.4303934 +0.005155668 0.03925039 0.4303934 +0.009080105 0.03925039 0.4303934 +0.01434988 0.03925039 0.4303934 +0.02107202 0.03925039 0.4303934 +0.02934285 0.03925039 0.4303934 +0.03925039 0.03925039 0.4303934 +0.05087609 0.03925039 0.4303934 +0.06429595 0.03925039 0.4303934 +0.07958143 0.03925039 0.4303934 +0.0968001 0.03925039 0.4303934 +0.1160161 0.03925039 0.4303934 +0.1372908 0.03925039 0.4303934 +0.1606827 0.03925039 0.4303934 +0.1862481 0.03925039 0.4303934 +0.2140411 0.03925039 0.4303934 +0.2441142 0.03925039 0.4303934 +0.2765176 0.03925039 0.4303934 +0.3113005 0.03925039 0.4303934 +0.3485102 0.03925039 0.4303934 +0.388193 0.03925039 0.4303934 +0.4303934 0.03925039 0.4303934 +0.4751555 0.03925039 0.4303934 +0.5225216 0.03925039 0.4303934 +0.5725335 0.03925039 0.4303934 +0.6252316 0.03925039 0.4303934 +0.6806558 0.03925039 0.4303934 +0.7388448 0.03925039 0.4303934 +0.7998369 0.03925039 0.4303934 +0.8636691 0.03925039 0.4303934 +0.9303782 0.03925039 0.4303934 +1 0.03925039 0.4303934 +0 0.05087609 0.4303934 +0.002418731 0.05087609 0.4303934 +0.005155668 0.05087609 0.4303934 +0.009080105 0.05087609 0.4303934 +0.01434988 0.05087609 0.4303934 +0.02107202 0.05087609 0.4303934 +0.02934285 0.05087609 0.4303934 +0.03925039 0.05087609 0.4303934 +0.05087609 0.05087609 0.4303934 +0.06429595 0.05087609 0.4303934 +0.07958143 0.05087609 0.4303934 +0.0968001 0.05087609 0.4303934 +0.1160161 0.05087609 0.4303934 +0.1372908 0.05087609 0.4303934 +0.1606827 0.05087609 0.4303934 +0.1862481 0.05087609 0.4303934 +0.2140411 0.05087609 0.4303934 +0.2441142 0.05087609 0.4303934 +0.2765176 0.05087609 0.4303934 +0.3113005 0.05087609 0.4303934 +0.3485102 0.05087609 0.4303934 +0.388193 0.05087609 0.4303934 +0.4303934 0.05087609 0.4303934 +0.4751555 0.05087609 0.4303934 +0.5225216 0.05087609 0.4303934 +0.5725335 0.05087609 0.4303934 +0.6252316 0.05087609 0.4303934 +0.6806558 0.05087609 0.4303934 +0.7388448 0.05087609 0.4303934 +0.7998369 0.05087609 0.4303934 +0.8636691 0.05087609 0.4303934 +0.9303782 0.05087609 0.4303934 +1 0.05087609 0.4303934 +0 0.06429595 0.4303934 +0.002418731 0.06429595 0.4303934 +0.005155668 0.06429595 0.4303934 +0.009080105 0.06429595 0.4303934 +0.01434988 0.06429595 0.4303934 +0.02107202 0.06429595 0.4303934 +0.02934285 0.06429595 0.4303934 +0.03925039 0.06429595 0.4303934 +0.05087609 0.06429595 0.4303934 +0.06429595 0.06429595 0.4303934 +0.07958143 0.06429595 0.4303934 +0.0968001 0.06429595 0.4303934 +0.1160161 0.06429595 0.4303934 +0.1372908 0.06429595 0.4303934 +0.1606827 0.06429595 0.4303934 +0.1862481 0.06429595 0.4303934 +0.2140411 0.06429595 0.4303934 +0.2441142 0.06429595 0.4303934 +0.2765176 0.06429595 0.4303934 +0.3113005 0.06429595 0.4303934 +0.3485102 0.06429595 0.4303934 +0.388193 0.06429595 0.4303934 +0.4303934 0.06429595 0.4303934 +0.4751555 0.06429595 0.4303934 +0.5225216 0.06429595 0.4303934 +0.5725335 0.06429595 0.4303934 +0.6252316 0.06429595 0.4303934 +0.6806558 0.06429595 0.4303934 +0.7388448 0.06429595 0.4303934 +0.7998369 0.06429595 0.4303934 +0.8636691 0.06429595 0.4303934 +0.9303782 0.06429595 0.4303934 +1 0.06429595 0.4303934 +0 0.07958143 0.4303934 +0.002418731 0.07958143 0.4303934 +0.005155668 0.07958143 0.4303934 +0.009080105 0.07958143 0.4303934 +0.01434988 0.07958143 0.4303934 +0.02107202 0.07958143 0.4303934 +0.02934285 0.07958143 0.4303934 +0.03925039 0.07958143 0.4303934 +0.05087609 0.07958143 0.4303934 +0.06429595 0.07958143 0.4303934 +0.07958143 0.07958143 0.4303934 +0.0968001 0.07958143 0.4303934 +0.1160161 0.07958143 0.4303934 +0.1372908 0.07958143 0.4303934 +0.1606827 0.07958143 0.4303934 +0.1862481 0.07958143 0.4303934 +0.2140411 0.07958143 0.4303934 +0.2441142 0.07958143 0.4303934 +0.2765176 0.07958143 0.4303934 +0.3113005 0.07958143 0.4303934 +0.3485102 0.07958143 0.4303934 +0.388193 0.07958143 0.4303934 +0.4303934 0.07958143 0.4303934 +0.4751555 0.07958143 0.4303934 +0.5225216 0.07958143 0.4303934 +0.5725335 0.07958143 0.4303934 +0.6252316 0.07958143 0.4303934 +0.6806558 0.07958143 0.4303934 +0.7388448 0.07958143 0.4303934 +0.7998369 0.07958143 0.4303934 +0.8636691 0.07958143 0.4303934 +0.9303782 0.07958143 0.4303934 +1 0.07958143 0.4303934 +0 0.0968001 0.4303934 +0.002418731 0.0968001 0.4303934 +0.005155668 0.0968001 0.4303934 +0.009080105 0.0968001 0.4303934 +0.01434988 0.0968001 0.4303934 +0.02107202 0.0968001 0.4303934 +0.02934285 0.0968001 0.4303934 +0.03925039 0.0968001 0.4303934 +0.05087609 0.0968001 0.4303934 +0.06429595 0.0968001 0.4303934 +0.07958143 0.0968001 0.4303934 +0.0968001 0.0968001 0.4303934 +0.1160161 0.0968001 0.4303934 +0.1372908 0.0968001 0.4303934 +0.1606827 0.0968001 0.4303934 +0.1862481 0.0968001 0.4303934 +0.2140411 0.0968001 0.4303934 +0.2441142 0.0968001 0.4303934 +0.2765176 0.0968001 0.4303934 +0.3113005 0.0968001 0.4303934 +0.3485102 0.0968001 0.4303934 +0.388193 0.0968001 0.4303934 +0.4303934 0.0968001 0.4303934 +0.4751555 0.0968001 0.4303934 +0.5225216 0.0968001 0.4303934 +0.5725335 0.0968001 0.4303934 +0.6252316 0.0968001 0.4303934 +0.6806558 0.0968001 0.4303934 +0.7388448 0.0968001 0.4303934 +0.7998369 0.0968001 0.4303934 +0.8636691 0.0968001 0.4303934 +0.9303782 0.0968001 0.4303934 +1 0.0968001 0.4303934 +0 0.1160161 0.4303934 +0.002418731 0.1160161 0.4303934 +0.005155668 0.1160161 0.4303934 +0.009080105 0.1160161 0.4303934 +0.01434988 0.1160161 0.4303934 +0.02107202 0.1160161 0.4303934 +0.02934285 0.1160161 0.4303934 +0.03925039 0.1160161 0.4303934 +0.05087609 0.1160161 0.4303934 +0.06429595 0.1160161 0.4303934 +0.07958143 0.1160161 0.4303934 +0.0968001 0.1160161 0.4303934 +0.1160161 0.1160161 0.4303934 +0.1372908 0.1160161 0.4303934 +0.1606827 0.1160161 0.4303934 +0.1862481 0.1160161 0.4303934 +0.2140411 0.1160161 0.4303934 +0.2441142 0.1160161 0.4303934 +0.2765176 0.1160161 0.4303934 +0.3113005 0.1160161 0.4303934 +0.3485102 0.1160161 0.4303934 +0.388193 0.1160161 0.4303934 +0.4303934 0.1160161 0.4303934 +0.4751555 0.1160161 0.4303934 +0.5225216 0.1160161 0.4303934 +0.5725335 0.1160161 0.4303934 +0.6252316 0.1160161 0.4303934 +0.6806558 0.1160161 0.4303934 +0.7388448 0.1160161 0.4303934 +0.7998369 0.1160161 0.4303934 +0.8636691 0.1160161 0.4303934 +0.9303782 0.1160161 0.4303934 +1 0.1160161 0.4303934 +0 0.1372908 0.4303934 +0.002418731 0.1372908 0.4303934 +0.005155668 0.1372908 0.4303934 +0.009080105 0.1372908 0.4303934 +0.01434988 0.1372908 0.4303934 +0.02107202 0.1372908 0.4303934 +0.02934285 0.1372908 0.4303934 +0.03925039 0.1372908 0.4303934 +0.05087609 0.1372908 0.4303934 +0.06429595 0.1372908 0.4303934 +0.07958143 0.1372908 0.4303934 +0.0968001 0.1372908 0.4303934 +0.1160161 0.1372908 0.4303934 +0.1372908 0.1372908 0.4303934 +0.1606827 0.1372908 0.4303934 +0.1862481 0.1372908 0.4303934 +0.2140411 0.1372908 0.4303934 +0.2441142 0.1372908 0.4303934 +0.2765176 0.1372908 0.4303934 +0.3113005 0.1372908 0.4303934 +0.3485102 0.1372908 0.4303934 +0.388193 0.1372908 0.4303934 +0.4303934 0.1372908 0.4303934 +0.4751555 0.1372908 0.4303934 +0.5225216 0.1372908 0.4303934 +0.5725335 0.1372908 0.4303934 +0.6252316 0.1372908 0.4303934 +0.6806558 0.1372908 0.4303934 +0.7388448 0.1372908 0.4303934 +0.7998369 0.1372908 0.4303934 +0.8636691 0.1372908 0.4303934 +0.9303782 0.1372908 0.4303934 +1 0.1372908 0.4303934 +0 0.1606827 0.4303934 +0.002418731 0.1606827 0.4303934 +0.005155668 0.1606827 0.4303934 +0.009080105 0.1606827 0.4303934 +0.01434988 0.1606827 0.4303934 +0.02107202 0.1606827 0.4303934 +0.02934285 0.1606827 0.4303934 +0.03925039 0.1606827 0.4303934 +0.05087609 0.1606827 0.4303934 +0.06429595 0.1606827 0.4303934 +0.07958143 0.1606827 0.4303934 +0.0968001 0.1606827 0.4303934 +0.1160161 0.1606827 0.4303934 +0.1372908 0.1606827 0.4303934 +0.1606827 0.1606827 0.4303934 +0.1862481 0.1606827 0.4303934 +0.2140411 0.1606827 0.4303934 +0.2441142 0.1606827 0.4303934 +0.2765176 0.1606827 0.4303934 +0.3113005 0.1606827 0.4303934 +0.3485102 0.1606827 0.4303934 +0.388193 0.1606827 0.4303934 +0.4303934 0.1606827 0.4303934 +0.4751555 0.1606827 0.4303934 +0.5225216 0.1606827 0.4303934 +0.5725335 0.1606827 0.4303934 +0.6252316 0.1606827 0.4303934 +0.6806558 0.1606827 0.4303934 +0.7388448 0.1606827 0.4303934 +0.7998369 0.1606827 0.4303934 +0.8636691 0.1606827 0.4303934 +0.9303782 0.1606827 0.4303934 +1 0.1606827 0.4303934 +0 0.1862481 0.4303934 +0.002418731 0.1862481 0.4303934 +0.005155668 0.1862481 0.4303934 +0.009080105 0.1862481 0.4303934 +0.01434988 0.1862481 0.4303934 +0.02107202 0.1862481 0.4303934 +0.02934285 0.1862481 0.4303934 +0.03925039 0.1862481 0.4303934 +0.05087609 0.1862481 0.4303934 +0.06429595 0.1862481 0.4303934 +0.07958143 0.1862481 0.4303934 +0.0968001 0.1862481 0.4303934 +0.1160161 0.1862481 0.4303934 +0.1372908 0.1862481 0.4303934 +0.1606827 0.1862481 0.4303934 +0.1862481 0.1862481 0.4303934 +0.2140411 0.1862481 0.4303934 +0.2441142 0.1862481 0.4303934 +0.2765176 0.1862481 0.4303934 +0.3113005 0.1862481 0.4303934 +0.3485102 0.1862481 0.4303934 +0.388193 0.1862481 0.4303934 +0.4303934 0.1862481 0.4303934 +0.4751555 0.1862481 0.4303934 +0.5225216 0.1862481 0.4303934 +0.5725335 0.1862481 0.4303934 +0.6252316 0.1862481 0.4303934 +0.6806558 0.1862481 0.4303934 +0.7388448 0.1862481 0.4303934 +0.7998369 0.1862481 0.4303934 +0.8636691 0.1862481 0.4303934 +0.9303782 0.1862481 0.4303934 +1 0.1862481 0.4303934 +0 0.2140411 0.4303934 +0.002418731 0.2140411 0.4303934 +0.005155668 0.2140411 0.4303934 +0.009080105 0.2140411 0.4303934 +0.01434988 0.2140411 0.4303934 +0.02107202 0.2140411 0.4303934 +0.02934285 0.2140411 0.4303934 +0.03925039 0.2140411 0.4303934 +0.05087609 0.2140411 0.4303934 +0.06429595 0.2140411 0.4303934 +0.07958143 0.2140411 0.4303934 +0.0968001 0.2140411 0.4303934 +0.1160161 0.2140411 0.4303934 +0.1372908 0.2140411 0.4303934 +0.1606827 0.2140411 0.4303934 +0.1862481 0.2140411 0.4303934 +0.2140411 0.2140411 0.4303934 +0.2441142 0.2140411 0.4303934 +0.2765176 0.2140411 0.4303934 +0.3113005 0.2140411 0.4303934 +0.3485102 0.2140411 0.4303934 +0.388193 0.2140411 0.4303934 +0.4303934 0.2140411 0.4303934 +0.4751555 0.2140411 0.4303934 +0.5225216 0.2140411 0.4303934 +0.5725335 0.2140411 0.4303934 +0.6252316 0.2140411 0.4303934 +0.6806558 0.2140411 0.4303934 +0.7388448 0.2140411 0.4303934 +0.7998369 0.2140411 0.4303934 +0.8636691 0.2140411 0.4303934 +0.9303782 0.2140411 0.4303934 +1 0.2140411 0.4303934 +0 0.2441142 0.4303934 +0.002418731 0.2441142 0.4303934 +0.005155668 0.2441142 0.4303934 +0.009080105 0.2441142 0.4303934 +0.01434988 0.2441142 0.4303934 +0.02107202 0.2441142 0.4303934 +0.02934285 0.2441142 0.4303934 +0.03925039 0.2441142 0.4303934 +0.05087609 0.2441142 0.4303934 +0.06429595 0.2441142 0.4303934 +0.07958143 0.2441142 0.4303934 +0.0968001 0.2441142 0.4303934 +0.1160161 0.2441142 0.4303934 +0.1372908 0.2441142 0.4303934 +0.1606827 0.2441142 0.4303934 +0.1862481 0.2441142 0.4303934 +0.2140411 0.2441142 0.4303934 +0.2441142 0.2441142 0.4303934 +0.2765176 0.2441142 0.4303934 +0.3113005 0.2441142 0.4303934 +0.3485102 0.2441142 0.4303934 +0.388193 0.2441142 0.4303934 +0.4303934 0.2441142 0.4303934 +0.4751555 0.2441142 0.4303934 +0.5225216 0.2441142 0.4303934 +0.5725335 0.2441142 0.4303934 +0.6252316 0.2441142 0.4303934 +0.6806558 0.2441142 0.4303934 +0.7388448 0.2441142 0.4303934 +0.7998369 0.2441142 0.4303934 +0.8636691 0.2441142 0.4303934 +0.9303782 0.2441142 0.4303934 +1 0.2441142 0.4303934 +0 0.2765176 0.4303934 +0.002418731 0.2765176 0.4303934 +0.005155668 0.2765176 0.4303934 +0.009080105 0.2765176 0.4303934 +0.01434988 0.2765176 0.4303934 +0.02107202 0.2765176 0.4303934 +0.02934285 0.2765176 0.4303934 +0.03925039 0.2765176 0.4303934 +0.05087609 0.2765176 0.4303934 +0.06429595 0.2765176 0.4303934 +0.07958143 0.2765176 0.4303934 +0.0968001 0.2765176 0.4303934 +0.1160161 0.2765176 0.4303934 +0.1372908 0.2765176 0.4303934 +0.1606827 0.2765176 0.4303934 +0.1862481 0.2765176 0.4303934 +0.2140411 0.2765176 0.4303934 +0.2441142 0.2765176 0.4303934 +0.2765176 0.2765176 0.4303934 +0.3113005 0.2765176 0.4303934 +0.3485102 0.2765176 0.4303934 +0.388193 0.2765176 0.4303934 +0.4303934 0.2765176 0.4303934 +0.4751555 0.2765176 0.4303934 +0.5225216 0.2765176 0.4303934 +0.5725335 0.2765176 0.4303934 +0.6252316 0.2765176 0.4303934 +0.6806558 0.2765176 0.4303934 +0.7388448 0.2765176 0.4303934 +0.7998369 0.2765176 0.4303934 +0.8636691 0.2765176 0.4303934 +0.9303782 0.2765176 0.4303934 +1 0.2765176 0.4303934 +0 0.3113005 0.4303934 +0.002418731 0.3113005 0.4303934 +0.005155668 0.3113005 0.4303934 +0.009080105 0.3113005 0.4303934 +0.01434988 0.3113005 0.4303934 +0.02107202 0.3113005 0.4303934 +0.02934285 0.3113005 0.4303934 +0.03925039 0.3113005 0.4303934 +0.05087609 0.3113005 0.4303934 +0.06429595 0.3113005 0.4303934 +0.07958143 0.3113005 0.4303934 +0.0968001 0.3113005 0.4303934 +0.1160161 0.3113005 0.4303934 +0.1372908 0.3113005 0.4303934 +0.1606827 0.3113005 0.4303934 +0.1862481 0.3113005 0.4303934 +0.2140411 0.3113005 0.4303934 +0.2441142 0.3113005 0.4303934 +0.2765176 0.3113005 0.4303934 +0.3113005 0.3113005 0.4303934 +0.3485102 0.3113005 0.4303934 +0.388193 0.3113005 0.4303934 +0.4303934 0.3113005 0.4303934 +0.4751555 0.3113005 0.4303934 +0.5225216 0.3113005 0.4303934 +0.5725335 0.3113005 0.4303934 +0.6252316 0.3113005 0.4303934 +0.6806558 0.3113005 0.4303934 +0.7388448 0.3113005 0.4303934 +0.7998369 0.3113005 0.4303934 +0.8636691 0.3113005 0.4303934 +0.9303782 0.3113005 0.4303934 +1 0.3113005 0.4303934 +0 0.3485102 0.4303934 +0.002418731 0.3485102 0.4303934 +0.005155668 0.3485102 0.4303934 +0.009080105 0.3485102 0.4303934 +0.01434988 0.3485102 0.4303934 +0.02107202 0.3485102 0.4303934 +0.02934285 0.3485102 0.4303934 +0.03925039 0.3485102 0.4303934 +0.05087609 0.3485102 0.4303934 +0.06429595 0.3485102 0.4303934 +0.07958143 0.3485102 0.4303934 +0.0968001 0.3485102 0.4303934 +0.1160161 0.3485102 0.4303934 +0.1372908 0.3485102 0.4303934 +0.1606827 0.3485102 0.4303934 +0.1862481 0.3485102 0.4303934 +0.2140411 0.3485102 0.4303934 +0.2441142 0.3485102 0.4303934 +0.2765176 0.3485102 0.4303934 +0.3113005 0.3485102 0.4303934 +0.3485102 0.3485102 0.4303934 +0.388193 0.3485102 0.4303934 +0.4303934 0.3485102 0.4303934 +0.4751555 0.3485102 0.4303934 +0.5225216 0.3485102 0.4303934 +0.5725335 0.3485102 0.4303934 +0.6252316 0.3485102 0.4303934 +0.6806558 0.3485102 0.4303934 +0.7388448 0.3485102 0.4303934 +0.7998369 0.3485102 0.4303934 +0.8636691 0.3485102 0.4303934 +0.9303782 0.3485102 0.4303934 +1 0.3485102 0.4303934 +0 0.388193 0.4303934 +0.002418731 0.388193 0.4303934 +0.005155668 0.388193 0.4303934 +0.009080105 0.388193 0.4303934 +0.01434988 0.388193 0.4303934 +0.02107202 0.388193 0.4303934 +0.02934285 0.388193 0.4303934 +0.03925039 0.388193 0.4303934 +0.05087609 0.388193 0.4303934 +0.06429595 0.388193 0.4303934 +0.07958143 0.388193 0.4303934 +0.0968001 0.388193 0.4303934 +0.1160161 0.388193 0.4303934 +0.1372908 0.388193 0.4303934 +0.1606827 0.388193 0.4303934 +0.1862481 0.388193 0.4303934 +0.2140411 0.388193 0.4303934 +0.2441142 0.388193 0.4303934 +0.2765176 0.388193 0.4303934 +0.3113005 0.388193 0.4303934 +0.3485102 0.388193 0.4303934 +0.388193 0.388193 0.4303934 +0.4303934 0.388193 0.4303934 +0.4751555 0.388193 0.4303934 +0.5225216 0.388193 0.4303934 +0.5725335 0.388193 0.4303934 +0.6252316 0.388193 0.4303934 +0.6806558 0.388193 0.4303934 +0.7388448 0.388193 0.4303934 +0.7998369 0.388193 0.4303934 +0.8636691 0.388193 0.4303934 +0.9303782 0.388193 0.4303934 +1 0.388193 0.4303934 +0 0.4303934 0.4303934 +0.002418731 0.4303934 0.4303934 +0.005155668 0.4303934 0.4303934 +0.009080105 0.4303934 0.4303934 +0.01434988 0.4303934 0.4303934 +0.02107202 0.4303934 0.4303934 +0.02934285 0.4303934 0.4303934 +0.03925039 0.4303934 0.4303934 +0.05087609 0.4303934 0.4303934 +0.06429595 0.4303934 0.4303934 +0.07958143 0.4303934 0.4303934 +0.0968001 0.4303934 0.4303934 +0.1160161 0.4303934 0.4303934 +0.1372908 0.4303934 0.4303934 +0.1606827 0.4303934 0.4303934 +0.1862481 0.4303934 0.4303934 +0.2140411 0.4303934 0.4303934 +0.2441142 0.4303934 0.4303934 +0.2765176 0.4303934 0.4303934 +0.3113005 0.4303934 0.4303934 +0.3485102 0.4303934 0.4303934 +0.388193 0.4303934 0.4303934 +0.4303934 0.4303934 0.4303934 +0.4751555 0.4303934 0.4303934 +0.5225216 0.4303934 0.4303934 +0.5725335 0.4303934 0.4303934 +0.6252316 0.4303934 0.4303934 +0.6806558 0.4303934 0.4303934 +0.7388448 0.4303934 0.4303934 +0.7998369 0.4303934 0.4303934 +0.8636691 0.4303934 0.4303934 +0.9303782 0.4303934 0.4303934 +1 0.4303934 0.4303934 +0 0.4751555 0.4303934 +0.002418731 0.4751555 0.4303934 +0.005155668 0.4751555 0.4303934 +0.009080105 0.4751555 0.4303934 +0.01434988 0.4751555 0.4303934 +0.02107202 0.4751555 0.4303934 +0.02934285 0.4751555 0.4303934 +0.03925039 0.4751555 0.4303934 +0.05087609 0.4751555 0.4303934 +0.06429595 0.4751555 0.4303934 +0.07958143 0.4751555 0.4303934 +0.0968001 0.4751555 0.4303934 +0.1160161 0.4751555 0.4303934 +0.1372908 0.4751555 0.4303934 +0.1606827 0.4751555 0.4303934 +0.1862481 0.4751555 0.4303934 +0.2140411 0.4751555 0.4303934 +0.2441142 0.4751555 0.4303934 +0.2765176 0.4751555 0.4303934 +0.3113005 0.4751555 0.4303934 +0.3485102 0.4751555 0.4303934 +0.388193 0.4751555 0.4303934 +0.4303934 0.4751555 0.4303934 +0.4751555 0.4751555 0.4303934 +0.5225216 0.4751555 0.4303934 +0.5725335 0.4751555 0.4303934 +0.6252316 0.4751555 0.4303934 +0.6806558 0.4751555 0.4303934 +0.7388448 0.4751555 0.4303934 +0.7998369 0.4751555 0.4303934 +0.8636691 0.4751555 0.4303934 +0.9303782 0.4751555 0.4303934 +1 0.4751555 0.4303934 +0 0.5225216 0.4303934 +0.002418731 0.5225216 0.4303934 +0.005155668 0.5225216 0.4303934 +0.009080105 0.5225216 0.4303934 +0.01434988 0.5225216 0.4303934 +0.02107202 0.5225216 0.4303934 +0.02934285 0.5225216 0.4303934 +0.03925039 0.5225216 0.4303934 +0.05087609 0.5225216 0.4303934 +0.06429595 0.5225216 0.4303934 +0.07958143 0.5225216 0.4303934 +0.0968001 0.5225216 0.4303934 +0.1160161 0.5225216 0.4303934 +0.1372908 0.5225216 0.4303934 +0.1606827 0.5225216 0.4303934 +0.1862481 0.5225216 0.4303934 +0.2140411 0.5225216 0.4303934 +0.2441142 0.5225216 0.4303934 +0.2765176 0.5225216 0.4303934 +0.3113005 0.5225216 0.4303934 +0.3485102 0.5225216 0.4303934 +0.388193 0.5225216 0.4303934 +0.4303934 0.5225216 0.4303934 +0.4751555 0.5225216 0.4303934 +0.5225216 0.5225216 0.4303934 +0.5725335 0.5225216 0.4303934 +0.6252316 0.5225216 0.4303934 +0.6806558 0.5225216 0.4303934 +0.7388448 0.5225216 0.4303934 +0.7998369 0.5225216 0.4303934 +0.8636691 0.5225216 0.4303934 +0.9303782 0.5225216 0.4303934 +1 0.5225216 0.4303934 +0 0.5725335 0.4303934 +0.002418731 0.5725335 0.4303934 +0.005155668 0.5725335 0.4303934 +0.009080105 0.5725335 0.4303934 +0.01434988 0.5725335 0.4303934 +0.02107202 0.5725335 0.4303934 +0.02934285 0.5725335 0.4303934 +0.03925039 0.5725335 0.4303934 +0.05087609 0.5725335 0.4303934 +0.06429595 0.5725335 0.4303934 +0.07958143 0.5725335 0.4303934 +0.0968001 0.5725335 0.4303934 +0.1160161 0.5725335 0.4303934 +0.1372908 0.5725335 0.4303934 +0.1606827 0.5725335 0.4303934 +0.1862481 0.5725335 0.4303934 +0.2140411 0.5725335 0.4303934 +0.2441142 0.5725335 0.4303934 +0.2765176 0.5725335 0.4303934 +0.3113005 0.5725335 0.4303934 +0.3485102 0.5725335 0.4303934 +0.388193 0.5725335 0.4303934 +0.4303934 0.5725335 0.4303934 +0.4751555 0.5725335 0.4303934 +0.5225216 0.5725335 0.4303934 +0.5725335 0.5725335 0.4303934 +0.6252316 0.5725335 0.4303934 +0.6806558 0.5725335 0.4303934 +0.7388448 0.5725335 0.4303934 +0.7998369 0.5725335 0.4303934 +0.8636691 0.5725335 0.4303934 +0.9303782 0.5725335 0.4303934 +1 0.5725335 0.4303934 +0 0.6252316 0.4303934 +0.002418731 0.6252316 0.4303934 +0.005155668 0.6252316 0.4303934 +0.009080105 0.6252316 0.4303934 +0.01434988 0.6252316 0.4303934 +0.02107202 0.6252316 0.4303934 +0.02934285 0.6252316 0.4303934 +0.03925039 0.6252316 0.4303934 +0.05087609 0.6252316 0.4303934 +0.06429595 0.6252316 0.4303934 +0.07958143 0.6252316 0.4303934 +0.0968001 0.6252316 0.4303934 +0.1160161 0.6252316 0.4303934 +0.1372908 0.6252316 0.4303934 +0.1606827 0.6252316 0.4303934 +0.1862481 0.6252316 0.4303934 +0.2140411 0.6252316 0.4303934 +0.2441142 0.6252316 0.4303934 +0.2765176 0.6252316 0.4303934 +0.3113005 0.6252316 0.4303934 +0.3485102 0.6252316 0.4303934 +0.388193 0.6252316 0.4303934 +0.4303934 0.6252316 0.4303934 +0.4751555 0.6252316 0.4303934 +0.5225216 0.6252316 0.4303934 +0.5725335 0.6252316 0.4303934 +0.6252316 0.6252316 0.4303934 +0.6806558 0.6252316 0.4303934 +0.7388448 0.6252316 0.4303934 +0.7998369 0.6252316 0.4303934 +0.8636691 0.6252316 0.4303934 +0.9303782 0.6252316 0.4303934 +1 0.6252316 0.4303934 +0 0.6806558 0.4303934 +0.002418731 0.6806558 0.4303934 +0.005155668 0.6806558 0.4303934 +0.009080105 0.6806558 0.4303934 +0.01434988 0.6806558 0.4303934 +0.02107202 0.6806558 0.4303934 +0.02934285 0.6806558 0.4303934 +0.03925039 0.6806558 0.4303934 +0.05087609 0.6806558 0.4303934 +0.06429595 0.6806558 0.4303934 +0.07958143 0.6806558 0.4303934 +0.0968001 0.6806558 0.4303934 +0.1160161 0.6806558 0.4303934 +0.1372908 0.6806558 0.4303934 +0.1606827 0.6806558 0.4303934 +0.1862481 0.6806558 0.4303934 +0.2140411 0.6806558 0.4303934 +0.2441142 0.6806558 0.4303934 +0.2765176 0.6806558 0.4303934 +0.3113005 0.6806558 0.4303934 +0.3485102 0.6806558 0.4303934 +0.388193 0.6806558 0.4303934 +0.4303934 0.6806558 0.4303934 +0.4751555 0.6806558 0.4303934 +0.5225216 0.6806558 0.4303934 +0.5725335 0.6806558 0.4303934 +0.6252316 0.6806558 0.4303934 +0.6806558 0.6806558 0.4303934 +0.7388448 0.6806558 0.4303934 +0.7998369 0.6806558 0.4303934 +0.8636691 0.6806558 0.4303934 +0.9303782 0.6806558 0.4303934 +1 0.6806558 0.4303934 +0 0.7388448 0.4303934 +0.002418731 0.7388448 0.4303934 +0.005155668 0.7388448 0.4303934 +0.009080105 0.7388448 0.4303934 +0.01434988 0.7388448 0.4303934 +0.02107202 0.7388448 0.4303934 +0.02934285 0.7388448 0.4303934 +0.03925039 0.7388448 0.4303934 +0.05087609 0.7388448 0.4303934 +0.06429595 0.7388448 0.4303934 +0.07958143 0.7388448 0.4303934 +0.0968001 0.7388448 0.4303934 +0.1160161 0.7388448 0.4303934 +0.1372908 0.7388448 0.4303934 +0.1606827 0.7388448 0.4303934 +0.1862481 0.7388448 0.4303934 +0.2140411 0.7388448 0.4303934 +0.2441142 0.7388448 0.4303934 +0.2765176 0.7388448 0.4303934 +0.3113005 0.7388448 0.4303934 +0.3485102 0.7388448 0.4303934 +0.388193 0.7388448 0.4303934 +0.4303934 0.7388448 0.4303934 +0.4751555 0.7388448 0.4303934 +0.5225216 0.7388448 0.4303934 +0.5725335 0.7388448 0.4303934 +0.6252316 0.7388448 0.4303934 +0.6806558 0.7388448 0.4303934 +0.7388448 0.7388448 0.4303934 +0.7998369 0.7388448 0.4303934 +0.8636691 0.7388448 0.4303934 +0.9303782 0.7388448 0.4303934 +1 0.7388448 0.4303934 +0 0.7998369 0.4303934 +0.002418731 0.7998369 0.4303934 +0.005155668 0.7998369 0.4303934 +0.009080105 0.7998369 0.4303934 +0.01434988 0.7998369 0.4303934 +0.02107202 0.7998369 0.4303934 +0.02934285 0.7998369 0.4303934 +0.03925039 0.7998369 0.4303934 +0.05087609 0.7998369 0.4303934 +0.06429595 0.7998369 0.4303934 +0.07958143 0.7998369 0.4303934 +0.0968001 0.7998369 0.4303934 +0.1160161 0.7998369 0.4303934 +0.1372908 0.7998369 0.4303934 +0.1606827 0.7998369 0.4303934 +0.1862481 0.7998369 0.4303934 +0.2140411 0.7998369 0.4303934 +0.2441142 0.7998369 0.4303934 +0.2765176 0.7998369 0.4303934 +0.3113005 0.7998369 0.4303934 +0.3485102 0.7998369 0.4303934 +0.388193 0.7998369 0.4303934 +0.4303934 0.7998369 0.4303934 +0.4751555 0.7998369 0.4303934 +0.5225216 0.7998369 0.4303934 +0.5725335 0.7998369 0.4303934 +0.6252316 0.7998369 0.4303934 +0.6806558 0.7998369 0.4303934 +0.7388448 0.7998369 0.4303934 +0.7998369 0.7998369 0.4303934 +0.8636691 0.7998369 0.4303934 +0.9303782 0.7998369 0.4303934 +1 0.7998369 0.4303934 +0 0.8636691 0.4303934 +0.002418731 0.8636691 0.4303934 +0.005155668 0.8636691 0.4303934 +0.009080105 0.8636691 0.4303934 +0.01434988 0.8636691 0.4303934 +0.02107202 0.8636691 0.4303934 +0.02934285 0.8636691 0.4303934 +0.03925039 0.8636691 0.4303934 +0.05087609 0.8636691 0.4303934 +0.06429595 0.8636691 0.4303934 +0.07958143 0.8636691 0.4303934 +0.0968001 0.8636691 0.4303934 +0.1160161 0.8636691 0.4303934 +0.1372908 0.8636691 0.4303934 +0.1606827 0.8636691 0.4303934 +0.1862481 0.8636691 0.4303934 +0.2140411 0.8636691 0.4303934 +0.2441142 0.8636691 0.4303934 +0.2765176 0.8636691 0.4303934 +0.3113005 0.8636691 0.4303934 +0.3485102 0.8636691 0.4303934 +0.388193 0.8636691 0.4303934 +0.4303934 0.8636691 0.4303934 +0.4751555 0.8636691 0.4303934 +0.5225216 0.8636691 0.4303934 +0.5725335 0.8636691 0.4303934 +0.6252316 0.8636691 0.4303934 +0.6806558 0.8636691 0.4303934 +0.7388448 0.8636691 0.4303934 +0.7998369 0.8636691 0.4303934 +0.8636691 0.8636691 0.4303934 +0.9303782 0.8636691 0.4303934 +1 0.8636691 0.4303934 +0 0.9303782 0.4303934 +0.002418731 0.9303782 0.4303934 +0.005155668 0.9303782 0.4303934 +0.009080105 0.9303782 0.4303934 +0.01434988 0.9303782 0.4303934 +0.02107202 0.9303782 0.4303934 +0.02934285 0.9303782 0.4303934 +0.03925039 0.9303782 0.4303934 +0.05087609 0.9303782 0.4303934 +0.06429595 0.9303782 0.4303934 +0.07958143 0.9303782 0.4303934 +0.0968001 0.9303782 0.4303934 +0.1160161 0.9303782 0.4303934 +0.1372908 0.9303782 0.4303934 +0.1606827 0.9303782 0.4303934 +0.1862481 0.9303782 0.4303934 +0.2140411 0.9303782 0.4303934 +0.2441142 0.9303782 0.4303934 +0.2765176 0.9303782 0.4303934 +0.3113005 0.9303782 0.4303934 +0.3485102 0.9303782 0.4303934 +0.388193 0.9303782 0.4303934 +0.4303934 0.9303782 0.4303934 +0.4751555 0.9303782 0.4303934 +0.5225216 0.9303782 0.4303934 +0.5725335 0.9303782 0.4303934 +0.6252316 0.9303782 0.4303934 +0.6806558 0.9303782 0.4303934 +0.7388448 0.9303782 0.4303934 +0.7998369 0.9303782 0.4303934 +0.8636691 0.9303782 0.4303934 +0.9303782 0.9303782 0.4303934 +1 0.9303782 0.4303934 +0 1 0.4303934 +0.002418731 1 0.4303934 +0.005155668 1 0.4303934 +0.009080105 1 0.4303934 +0.01434988 1 0.4303934 +0.02107202 1 0.4303934 +0.02934285 1 0.4303934 +0.03925039 1 0.4303934 +0.05087609 1 0.4303934 +0.06429595 1 0.4303934 +0.07958143 1 0.4303934 +0.0968001 1 0.4303934 +0.1160161 1 0.4303934 +0.1372908 1 0.4303934 +0.1606827 1 0.4303934 +0.1862481 1 0.4303934 +0.2140411 1 0.4303934 +0.2441142 1 0.4303934 +0.2765176 1 0.4303934 +0.3113005 1 0.4303934 +0.3485102 1 0.4303934 +0.388193 1 0.4303934 +0.4303934 1 0.4303934 +0.4751555 1 0.4303934 +0.5225216 1 0.4303934 +0.5725335 1 0.4303934 +0.6252316 1 0.4303934 +0.6806558 1 0.4303934 +0.7388448 1 0.4303934 +0.7998369 1 0.4303934 +0.8636691 1 0.4303934 +0.9303782 1 0.4303934 +1 1 0.4303934 +0 0 0.4751555 +0.002418731 0 0.4751555 +0.005155668 0 0.4751555 +0.009080105 0 0.4751555 +0.01434988 0 0.4751555 +0.02107202 0 0.4751555 +0.02934285 0 0.4751555 +0.03925039 0 0.4751555 +0.05087609 0 0.4751555 +0.06429595 0 0.4751555 +0.07958143 0 0.4751555 +0.0968001 0 0.4751555 +0.1160161 0 0.4751555 +0.1372908 0 0.4751555 +0.1606827 0 0.4751555 +0.1862481 0 0.4751555 +0.2140411 0 0.4751555 +0.2441142 0 0.4751555 +0.2765176 0 0.4751555 +0.3113005 0 0.4751555 +0.3485102 0 0.4751555 +0.388193 0 0.4751555 +0.4303934 0 0.4751555 +0.4751555 0 0.4751555 +0.5225216 0 0.4751555 +0.5725335 0 0.4751555 +0.6252316 0 0.4751555 +0.6806558 0 0.4751555 +0.7388448 0 0.4751555 +0.7998369 0 0.4751555 +0.8636691 0 0.4751555 +0.9303782 0 0.4751555 +1 0 0.4751555 +0 0.002418731 0.4751555 +0.002418731 0.002418731 0.4751555 +0.005155668 0.002418731 0.4751555 +0.009080105 0.002418731 0.4751555 +0.01434988 0.002418731 0.4751555 +0.02107202 0.002418731 0.4751555 +0.02934285 0.002418731 0.4751555 +0.03925039 0.002418731 0.4751555 +0.05087609 0.002418731 0.4751555 +0.06429595 0.002418731 0.4751555 +0.07958143 0.002418731 0.4751555 +0.0968001 0.002418731 0.4751555 +0.1160161 0.002418731 0.4751555 +0.1372908 0.002418731 0.4751555 +0.1606827 0.002418731 0.4751555 +0.1862481 0.002418731 0.4751555 +0.2140411 0.002418731 0.4751555 +0.2441142 0.002418731 0.4751555 +0.2765176 0.002418731 0.4751555 +0.3113005 0.002418731 0.4751555 +0.3485102 0.002418731 0.4751555 +0.388193 0.002418731 0.4751555 +0.4303934 0.002418731 0.4751555 +0.4751555 0.002418731 0.4751555 +0.5225216 0.002418731 0.4751555 +0.5725335 0.002418731 0.4751555 +0.6252316 0.002418731 0.4751555 +0.6806558 0.002418731 0.4751555 +0.7388448 0.002418731 0.4751555 +0.7998369 0.002418731 0.4751555 +0.8636691 0.002418731 0.4751555 +0.9303782 0.002418731 0.4751555 +1 0.002418731 0.4751555 +0 0.005155668 0.4751555 +0.002418731 0.005155668 0.4751555 +0.005155668 0.005155668 0.4751555 +0.009080105 0.005155668 0.4751555 +0.01434988 0.005155668 0.4751555 +0.02107202 0.005155668 0.4751555 +0.02934285 0.005155668 0.4751555 +0.03925039 0.005155668 0.4751555 +0.05087609 0.005155668 0.4751555 +0.06429595 0.005155668 0.4751555 +0.07958143 0.005155668 0.4751555 +0.0968001 0.005155668 0.4751555 +0.1160161 0.005155668 0.4751555 +0.1372908 0.005155668 0.4751555 +0.1606827 0.005155668 0.4751555 +0.1862481 0.005155668 0.4751555 +0.2140411 0.005155668 0.4751555 +0.2441142 0.005155668 0.4751555 +0.2765176 0.005155668 0.4751555 +0.3113005 0.005155668 0.4751555 +0.3485102 0.005155668 0.4751555 +0.388193 0.005155668 0.4751555 +0.4303934 0.005155668 0.4751555 +0.4751555 0.005155668 0.4751555 +0.5225216 0.005155668 0.4751555 +0.5725335 0.005155668 0.4751555 +0.6252316 0.005155668 0.4751555 +0.6806558 0.005155668 0.4751555 +0.7388448 0.005155668 0.4751555 +0.7998369 0.005155668 0.4751555 +0.8636691 0.005155668 0.4751555 +0.9303782 0.005155668 0.4751555 +1 0.005155668 0.4751555 +0 0.009080105 0.4751555 +0.002418731 0.009080105 0.4751555 +0.005155668 0.009080105 0.4751555 +0.009080105 0.009080105 0.4751555 +0.01434988 0.009080105 0.4751555 +0.02107202 0.009080105 0.4751555 +0.02934285 0.009080105 0.4751555 +0.03925039 0.009080105 0.4751555 +0.05087609 0.009080105 0.4751555 +0.06429595 0.009080105 0.4751555 +0.07958143 0.009080105 0.4751555 +0.0968001 0.009080105 0.4751555 +0.1160161 0.009080105 0.4751555 +0.1372908 0.009080105 0.4751555 +0.1606827 0.009080105 0.4751555 +0.1862481 0.009080105 0.4751555 +0.2140411 0.009080105 0.4751555 +0.2441142 0.009080105 0.4751555 +0.2765176 0.009080105 0.4751555 +0.3113005 0.009080105 0.4751555 +0.3485102 0.009080105 0.4751555 +0.388193 0.009080105 0.4751555 +0.4303934 0.009080105 0.4751555 +0.4751555 0.009080105 0.4751555 +0.5225216 0.009080105 0.4751555 +0.5725335 0.009080105 0.4751555 +0.6252316 0.009080105 0.4751555 +0.6806558 0.009080105 0.4751555 +0.7388448 0.009080105 0.4751555 +0.7998369 0.009080105 0.4751555 +0.8636691 0.009080105 0.4751555 +0.9303782 0.009080105 0.4751555 +1 0.009080105 0.4751555 +0 0.01434988 0.4751555 +0.002418731 0.01434988 0.4751555 +0.005155668 0.01434988 0.4751555 +0.009080105 0.01434988 0.4751555 +0.01434988 0.01434988 0.4751555 +0.02107202 0.01434988 0.4751555 +0.02934285 0.01434988 0.4751555 +0.03925039 0.01434988 0.4751555 +0.05087609 0.01434988 0.4751555 +0.06429595 0.01434988 0.4751555 +0.07958143 0.01434988 0.4751555 +0.0968001 0.01434988 0.4751555 +0.1160161 0.01434988 0.4751555 +0.1372908 0.01434988 0.4751555 +0.1606827 0.01434988 0.4751555 +0.1862481 0.01434988 0.4751555 +0.2140411 0.01434988 0.4751555 +0.2441142 0.01434988 0.4751555 +0.2765176 0.01434988 0.4751555 +0.3113005 0.01434988 0.4751555 +0.3485102 0.01434988 0.4751555 +0.388193 0.01434988 0.4751555 +0.4303934 0.01434988 0.4751555 +0.4751555 0.01434988 0.4751555 +0.5225216 0.01434988 0.4751555 +0.5725335 0.01434988 0.4751555 +0.6252316 0.01434988 0.4751555 +0.6806558 0.01434988 0.4751555 +0.7388448 0.01434988 0.4751555 +0.7998369 0.01434988 0.4751555 +0.8636691 0.01434988 0.4751555 +0.9303782 0.01434988 0.4751555 +1 0.01434988 0.4751555 +0 0.02107202 0.4751555 +0.002418731 0.02107202 0.4751555 +0.005155668 0.02107202 0.4751555 +0.009080105 0.02107202 0.4751555 +0.01434988 0.02107202 0.4751555 +0.02107202 0.02107202 0.4751555 +0.02934285 0.02107202 0.4751555 +0.03925039 0.02107202 0.4751555 +0.05087609 0.02107202 0.4751555 +0.06429595 0.02107202 0.4751555 +0.07958143 0.02107202 0.4751555 +0.0968001 0.02107202 0.4751555 +0.1160161 0.02107202 0.4751555 +0.1372908 0.02107202 0.4751555 +0.1606827 0.02107202 0.4751555 +0.1862481 0.02107202 0.4751555 +0.2140411 0.02107202 0.4751555 +0.2441142 0.02107202 0.4751555 +0.2765176 0.02107202 0.4751555 +0.3113005 0.02107202 0.4751555 +0.3485102 0.02107202 0.4751555 +0.388193 0.02107202 0.4751555 +0.4303934 0.02107202 0.4751555 +0.4751555 0.02107202 0.4751555 +0.5225216 0.02107202 0.4751555 +0.5725335 0.02107202 0.4751555 +0.6252316 0.02107202 0.4751555 +0.6806558 0.02107202 0.4751555 +0.7388448 0.02107202 0.4751555 +0.7998369 0.02107202 0.4751555 +0.8636691 0.02107202 0.4751555 +0.9303782 0.02107202 0.4751555 +1 0.02107202 0.4751555 +0 0.02934285 0.4751555 +0.002418731 0.02934285 0.4751555 +0.005155668 0.02934285 0.4751555 +0.009080105 0.02934285 0.4751555 +0.01434988 0.02934285 0.4751555 +0.02107202 0.02934285 0.4751555 +0.02934285 0.02934285 0.4751555 +0.03925039 0.02934285 0.4751555 +0.05087609 0.02934285 0.4751555 +0.06429595 0.02934285 0.4751555 +0.07958143 0.02934285 0.4751555 +0.0968001 0.02934285 0.4751555 +0.1160161 0.02934285 0.4751555 +0.1372908 0.02934285 0.4751555 +0.1606827 0.02934285 0.4751555 +0.1862481 0.02934285 0.4751555 +0.2140411 0.02934285 0.4751555 +0.2441142 0.02934285 0.4751555 +0.2765176 0.02934285 0.4751555 +0.3113005 0.02934285 0.4751555 +0.3485102 0.02934285 0.4751555 +0.388193 0.02934285 0.4751555 +0.4303934 0.02934285 0.4751555 +0.4751555 0.02934285 0.4751555 +0.5225216 0.02934285 0.4751555 +0.5725335 0.02934285 0.4751555 +0.6252316 0.02934285 0.4751555 +0.6806558 0.02934285 0.4751555 +0.7388448 0.02934285 0.4751555 +0.7998369 0.02934285 0.4751555 +0.8636691 0.02934285 0.4751555 +0.9303782 0.02934285 0.4751555 +1 0.02934285 0.4751555 +0 0.03925039 0.4751555 +0.002418731 0.03925039 0.4751555 +0.005155668 0.03925039 0.4751555 +0.009080105 0.03925039 0.4751555 +0.01434988 0.03925039 0.4751555 +0.02107202 0.03925039 0.4751555 +0.02934285 0.03925039 0.4751555 +0.03925039 0.03925039 0.4751555 +0.05087609 0.03925039 0.4751555 +0.06429595 0.03925039 0.4751555 +0.07958143 0.03925039 0.4751555 +0.0968001 0.03925039 0.4751555 +0.1160161 0.03925039 0.4751555 +0.1372908 0.03925039 0.4751555 +0.1606827 0.03925039 0.4751555 +0.1862481 0.03925039 0.4751555 +0.2140411 0.03925039 0.4751555 +0.2441142 0.03925039 0.4751555 +0.2765176 0.03925039 0.4751555 +0.3113005 0.03925039 0.4751555 +0.3485102 0.03925039 0.4751555 +0.388193 0.03925039 0.4751555 +0.4303934 0.03925039 0.4751555 +0.4751555 0.03925039 0.4751555 +0.5225216 0.03925039 0.4751555 +0.5725335 0.03925039 0.4751555 +0.6252316 0.03925039 0.4751555 +0.6806558 0.03925039 0.4751555 +0.7388448 0.03925039 0.4751555 +0.7998369 0.03925039 0.4751555 +0.8636691 0.03925039 0.4751555 +0.9303782 0.03925039 0.4751555 +1 0.03925039 0.4751555 +0 0.05087609 0.4751555 +0.002418731 0.05087609 0.4751555 +0.005155668 0.05087609 0.4751555 +0.009080105 0.05087609 0.4751555 +0.01434988 0.05087609 0.4751555 +0.02107202 0.05087609 0.4751555 +0.02934285 0.05087609 0.4751555 +0.03925039 0.05087609 0.4751555 +0.05087609 0.05087609 0.4751555 +0.06429595 0.05087609 0.4751555 +0.07958143 0.05087609 0.4751555 +0.0968001 0.05087609 0.4751555 +0.1160161 0.05087609 0.4751555 +0.1372908 0.05087609 0.4751555 +0.1606827 0.05087609 0.4751555 +0.1862481 0.05087609 0.4751555 +0.2140411 0.05087609 0.4751555 +0.2441142 0.05087609 0.4751555 +0.2765176 0.05087609 0.4751555 +0.3113005 0.05087609 0.4751555 +0.3485102 0.05087609 0.4751555 +0.388193 0.05087609 0.4751555 +0.4303934 0.05087609 0.4751555 +0.4751555 0.05087609 0.4751555 +0.5225216 0.05087609 0.4751555 +0.5725335 0.05087609 0.4751555 +0.6252316 0.05087609 0.4751555 +0.6806558 0.05087609 0.4751555 +0.7388448 0.05087609 0.4751555 +0.7998369 0.05087609 0.4751555 +0.8636691 0.05087609 0.4751555 +0.9303782 0.05087609 0.4751555 +1 0.05087609 0.4751555 +0 0.06429595 0.4751555 +0.002418731 0.06429595 0.4751555 +0.005155668 0.06429595 0.4751555 +0.009080105 0.06429595 0.4751555 +0.01434988 0.06429595 0.4751555 +0.02107202 0.06429595 0.4751555 +0.02934285 0.06429595 0.4751555 +0.03925039 0.06429595 0.4751555 +0.05087609 0.06429595 0.4751555 +0.06429595 0.06429595 0.4751555 +0.07958143 0.06429595 0.4751555 +0.0968001 0.06429595 0.4751555 +0.1160161 0.06429595 0.4751555 +0.1372908 0.06429595 0.4751555 +0.1606827 0.06429595 0.4751555 +0.1862481 0.06429595 0.4751555 +0.2140411 0.06429595 0.4751555 +0.2441142 0.06429595 0.4751555 +0.2765176 0.06429595 0.4751555 +0.3113005 0.06429595 0.4751555 +0.3485102 0.06429595 0.4751555 +0.388193 0.06429595 0.4751555 +0.4303934 0.06429595 0.4751555 +0.4751555 0.06429595 0.4751555 +0.5225216 0.06429595 0.4751555 +0.5725335 0.06429595 0.4751555 +0.6252316 0.06429595 0.4751555 +0.6806558 0.06429595 0.4751555 +0.7388448 0.06429595 0.4751555 +0.7998369 0.06429595 0.4751555 +0.8636691 0.06429595 0.4751555 +0.9303782 0.06429595 0.4751555 +1 0.06429595 0.4751555 +0 0.07958143 0.4751555 +0.002418731 0.07958143 0.4751555 +0.005155668 0.07958143 0.4751555 +0.009080105 0.07958143 0.4751555 +0.01434988 0.07958143 0.4751555 +0.02107202 0.07958143 0.4751555 +0.02934285 0.07958143 0.4751555 +0.03925039 0.07958143 0.4751555 +0.05087609 0.07958143 0.4751555 +0.06429595 0.07958143 0.4751555 +0.07958143 0.07958143 0.4751555 +0.0968001 0.07958143 0.4751555 +0.1160161 0.07958143 0.4751555 +0.1372908 0.07958143 0.4751555 +0.1606827 0.07958143 0.4751555 +0.1862481 0.07958143 0.4751555 +0.2140411 0.07958143 0.4751555 +0.2441142 0.07958143 0.4751555 +0.2765176 0.07958143 0.4751555 +0.3113005 0.07958143 0.4751555 +0.3485102 0.07958143 0.4751555 +0.388193 0.07958143 0.4751555 +0.4303934 0.07958143 0.4751555 +0.4751555 0.07958143 0.4751555 +0.5225216 0.07958143 0.4751555 +0.5725335 0.07958143 0.4751555 +0.6252316 0.07958143 0.4751555 +0.6806558 0.07958143 0.4751555 +0.7388448 0.07958143 0.4751555 +0.7998369 0.07958143 0.4751555 +0.8636691 0.07958143 0.4751555 +0.9303782 0.07958143 0.4751555 +1 0.07958143 0.4751555 +0 0.0968001 0.4751555 +0.002418731 0.0968001 0.4751555 +0.005155668 0.0968001 0.4751555 +0.009080105 0.0968001 0.4751555 +0.01434988 0.0968001 0.4751555 +0.02107202 0.0968001 0.4751555 +0.02934285 0.0968001 0.4751555 +0.03925039 0.0968001 0.4751555 +0.05087609 0.0968001 0.4751555 +0.06429595 0.0968001 0.4751555 +0.07958143 0.0968001 0.4751555 +0.0968001 0.0968001 0.4751555 +0.1160161 0.0968001 0.4751555 +0.1372908 0.0968001 0.4751555 +0.1606827 0.0968001 0.4751555 +0.1862481 0.0968001 0.4751555 +0.2140411 0.0968001 0.4751555 +0.2441142 0.0968001 0.4751555 +0.2765176 0.0968001 0.4751555 +0.3113005 0.0968001 0.4751555 +0.3485102 0.0968001 0.4751555 +0.388193 0.0968001 0.4751555 +0.4303934 0.0968001 0.4751555 +0.4751555 0.0968001 0.4751555 +0.5225216 0.0968001 0.4751555 +0.5725335 0.0968001 0.4751555 +0.6252316 0.0968001 0.4751555 +0.6806558 0.0968001 0.4751555 +0.7388448 0.0968001 0.4751555 +0.7998369 0.0968001 0.4751555 +0.8636691 0.0968001 0.4751555 +0.9303782 0.0968001 0.4751555 +1 0.0968001 0.4751555 +0 0.1160161 0.4751555 +0.002418731 0.1160161 0.4751555 +0.005155668 0.1160161 0.4751555 +0.009080105 0.1160161 0.4751555 +0.01434988 0.1160161 0.4751555 +0.02107202 0.1160161 0.4751555 +0.02934285 0.1160161 0.4751555 +0.03925039 0.1160161 0.4751555 +0.05087609 0.1160161 0.4751555 +0.06429595 0.1160161 0.4751555 +0.07958143 0.1160161 0.4751555 +0.0968001 0.1160161 0.4751555 +0.1160161 0.1160161 0.4751555 +0.1372908 0.1160161 0.4751555 +0.1606827 0.1160161 0.4751555 +0.1862481 0.1160161 0.4751555 +0.2140411 0.1160161 0.4751555 +0.2441142 0.1160161 0.4751555 +0.2765176 0.1160161 0.4751555 +0.3113005 0.1160161 0.4751555 +0.3485102 0.1160161 0.4751555 +0.388193 0.1160161 0.4751555 +0.4303934 0.1160161 0.4751555 +0.4751555 0.1160161 0.4751555 +0.5225216 0.1160161 0.4751555 +0.5725335 0.1160161 0.4751555 +0.6252316 0.1160161 0.4751555 +0.6806558 0.1160161 0.4751555 +0.7388448 0.1160161 0.4751555 +0.7998369 0.1160161 0.4751555 +0.8636691 0.1160161 0.4751555 +0.9303782 0.1160161 0.4751555 +1 0.1160161 0.4751555 +0 0.1372908 0.4751555 +0.002418731 0.1372908 0.4751555 +0.005155668 0.1372908 0.4751555 +0.009080105 0.1372908 0.4751555 +0.01434988 0.1372908 0.4751555 +0.02107202 0.1372908 0.4751555 +0.02934285 0.1372908 0.4751555 +0.03925039 0.1372908 0.4751555 +0.05087609 0.1372908 0.4751555 +0.06429595 0.1372908 0.4751555 +0.07958143 0.1372908 0.4751555 +0.0968001 0.1372908 0.4751555 +0.1160161 0.1372908 0.4751555 +0.1372908 0.1372908 0.4751555 +0.1606827 0.1372908 0.4751555 +0.1862481 0.1372908 0.4751555 +0.2140411 0.1372908 0.4751555 +0.2441142 0.1372908 0.4751555 +0.2765176 0.1372908 0.4751555 +0.3113005 0.1372908 0.4751555 +0.3485102 0.1372908 0.4751555 +0.388193 0.1372908 0.4751555 +0.4303934 0.1372908 0.4751555 +0.4751555 0.1372908 0.4751555 +0.5225216 0.1372908 0.4751555 +0.5725335 0.1372908 0.4751555 +0.6252316 0.1372908 0.4751555 +0.6806558 0.1372908 0.4751555 +0.7388448 0.1372908 0.4751555 +0.7998369 0.1372908 0.4751555 +0.8636691 0.1372908 0.4751555 +0.9303782 0.1372908 0.4751555 +1 0.1372908 0.4751555 +0 0.1606827 0.4751555 +0.002418731 0.1606827 0.4751555 +0.005155668 0.1606827 0.4751555 +0.009080105 0.1606827 0.4751555 +0.01434988 0.1606827 0.4751555 +0.02107202 0.1606827 0.4751555 +0.02934285 0.1606827 0.4751555 +0.03925039 0.1606827 0.4751555 +0.05087609 0.1606827 0.4751555 +0.06429595 0.1606827 0.4751555 +0.07958143 0.1606827 0.4751555 +0.0968001 0.1606827 0.4751555 +0.1160161 0.1606827 0.4751555 +0.1372908 0.1606827 0.4751555 +0.1606827 0.1606827 0.4751555 +0.1862481 0.1606827 0.4751555 +0.2140411 0.1606827 0.4751555 +0.2441142 0.1606827 0.4751555 +0.2765176 0.1606827 0.4751555 +0.3113005 0.1606827 0.4751555 +0.3485102 0.1606827 0.4751555 +0.388193 0.1606827 0.4751555 +0.4303934 0.1606827 0.4751555 +0.4751555 0.1606827 0.4751555 +0.5225216 0.1606827 0.4751555 +0.5725335 0.1606827 0.4751555 +0.6252316 0.1606827 0.4751555 +0.6806558 0.1606827 0.4751555 +0.7388448 0.1606827 0.4751555 +0.7998369 0.1606827 0.4751555 +0.8636691 0.1606827 0.4751555 +0.9303782 0.1606827 0.4751555 +1 0.1606827 0.4751555 +0 0.1862481 0.4751555 +0.002418731 0.1862481 0.4751555 +0.005155668 0.1862481 0.4751555 +0.009080105 0.1862481 0.4751555 +0.01434988 0.1862481 0.4751555 +0.02107202 0.1862481 0.4751555 +0.02934285 0.1862481 0.4751555 +0.03925039 0.1862481 0.4751555 +0.05087609 0.1862481 0.4751555 +0.06429595 0.1862481 0.4751555 +0.07958143 0.1862481 0.4751555 +0.0968001 0.1862481 0.4751555 +0.1160161 0.1862481 0.4751555 +0.1372908 0.1862481 0.4751555 +0.1606827 0.1862481 0.4751555 +0.1862481 0.1862481 0.4751555 +0.2140411 0.1862481 0.4751555 +0.2441142 0.1862481 0.4751555 +0.2765176 0.1862481 0.4751555 +0.3113005 0.1862481 0.4751555 +0.3485102 0.1862481 0.4751555 +0.388193 0.1862481 0.4751555 +0.4303934 0.1862481 0.4751555 +0.4751555 0.1862481 0.4751555 +0.5225216 0.1862481 0.4751555 +0.5725335 0.1862481 0.4751555 +0.6252316 0.1862481 0.4751555 +0.6806558 0.1862481 0.4751555 +0.7388448 0.1862481 0.4751555 +0.7998369 0.1862481 0.4751555 +0.8636691 0.1862481 0.4751555 +0.9303782 0.1862481 0.4751555 +1 0.1862481 0.4751555 +0 0.2140411 0.4751555 +0.002418731 0.2140411 0.4751555 +0.005155668 0.2140411 0.4751555 +0.009080105 0.2140411 0.4751555 +0.01434988 0.2140411 0.4751555 +0.02107202 0.2140411 0.4751555 +0.02934285 0.2140411 0.4751555 +0.03925039 0.2140411 0.4751555 +0.05087609 0.2140411 0.4751555 +0.06429595 0.2140411 0.4751555 +0.07958143 0.2140411 0.4751555 +0.0968001 0.2140411 0.4751555 +0.1160161 0.2140411 0.4751555 +0.1372908 0.2140411 0.4751555 +0.1606827 0.2140411 0.4751555 +0.1862481 0.2140411 0.4751555 +0.2140411 0.2140411 0.4751555 +0.2441142 0.2140411 0.4751555 +0.2765176 0.2140411 0.4751555 +0.3113005 0.2140411 0.4751555 +0.3485102 0.2140411 0.4751555 +0.388193 0.2140411 0.4751555 +0.4303934 0.2140411 0.4751555 +0.4751555 0.2140411 0.4751555 +0.5225216 0.2140411 0.4751555 +0.5725335 0.2140411 0.4751555 +0.6252316 0.2140411 0.4751555 +0.6806558 0.2140411 0.4751555 +0.7388448 0.2140411 0.4751555 +0.7998369 0.2140411 0.4751555 +0.8636691 0.2140411 0.4751555 +0.9303782 0.2140411 0.4751555 +1 0.2140411 0.4751555 +0 0.2441142 0.4751555 +0.002418731 0.2441142 0.4751555 +0.005155668 0.2441142 0.4751555 +0.009080105 0.2441142 0.4751555 +0.01434988 0.2441142 0.4751555 +0.02107202 0.2441142 0.4751555 +0.02934285 0.2441142 0.4751555 +0.03925039 0.2441142 0.4751555 +0.05087609 0.2441142 0.4751555 +0.06429595 0.2441142 0.4751555 +0.07958143 0.2441142 0.4751555 +0.0968001 0.2441142 0.4751555 +0.1160161 0.2441142 0.4751555 +0.1372908 0.2441142 0.4751555 +0.1606827 0.2441142 0.4751555 +0.1862481 0.2441142 0.4751555 +0.2140411 0.2441142 0.4751555 +0.2441142 0.2441142 0.4751555 +0.2765176 0.2441142 0.4751555 +0.3113005 0.2441142 0.4751555 +0.3485102 0.2441142 0.4751555 +0.388193 0.2441142 0.4751555 +0.4303934 0.2441142 0.4751555 +0.4751555 0.2441142 0.4751555 +0.5225216 0.2441142 0.4751555 +0.5725335 0.2441142 0.4751555 +0.6252316 0.2441142 0.4751555 +0.6806558 0.2441142 0.4751555 +0.7388448 0.2441142 0.4751555 +0.7998369 0.2441142 0.4751555 +0.8636691 0.2441142 0.4751555 +0.9303782 0.2441142 0.4751555 +1 0.2441142 0.4751555 +0 0.2765176 0.4751555 +0.002418731 0.2765176 0.4751555 +0.005155668 0.2765176 0.4751555 +0.009080105 0.2765176 0.4751555 +0.01434988 0.2765176 0.4751555 +0.02107202 0.2765176 0.4751555 +0.02934285 0.2765176 0.4751555 +0.03925039 0.2765176 0.4751555 +0.05087609 0.2765176 0.4751555 +0.06429595 0.2765176 0.4751555 +0.07958143 0.2765176 0.4751555 +0.0968001 0.2765176 0.4751555 +0.1160161 0.2765176 0.4751555 +0.1372908 0.2765176 0.4751555 +0.1606827 0.2765176 0.4751555 +0.1862481 0.2765176 0.4751555 +0.2140411 0.2765176 0.4751555 +0.2441142 0.2765176 0.4751555 +0.2765176 0.2765176 0.4751555 +0.3113005 0.2765176 0.4751555 +0.3485102 0.2765176 0.4751555 +0.388193 0.2765176 0.4751555 +0.4303934 0.2765176 0.4751555 +0.4751555 0.2765176 0.4751555 +0.5225216 0.2765176 0.4751555 +0.5725335 0.2765176 0.4751555 +0.6252316 0.2765176 0.4751555 +0.6806558 0.2765176 0.4751555 +0.7388448 0.2765176 0.4751555 +0.7998369 0.2765176 0.4751555 +0.8636691 0.2765176 0.4751555 +0.9303782 0.2765176 0.4751555 +1 0.2765176 0.4751555 +0 0.3113005 0.4751555 +0.002418731 0.3113005 0.4751555 +0.005155668 0.3113005 0.4751555 +0.009080105 0.3113005 0.4751555 +0.01434988 0.3113005 0.4751555 +0.02107202 0.3113005 0.4751555 +0.02934285 0.3113005 0.4751555 +0.03925039 0.3113005 0.4751555 +0.05087609 0.3113005 0.4751555 +0.06429595 0.3113005 0.4751555 +0.07958143 0.3113005 0.4751555 +0.0968001 0.3113005 0.4751555 +0.1160161 0.3113005 0.4751555 +0.1372908 0.3113005 0.4751555 +0.1606827 0.3113005 0.4751555 +0.1862481 0.3113005 0.4751555 +0.2140411 0.3113005 0.4751555 +0.2441142 0.3113005 0.4751555 +0.2765176 0.3113005 0.4751555 +0.3113005 0.3113005 0.4751555 +0.3485102 0.3113005 0.4751555 +0.388193 0.3113005 0.4751555 +0.4303934 0.3113005 0.4751555 +0.4751555 0.3113005 0.4751555 +0.5225216 0.3113005 0.4751555 +0.5725335 0.3113005 0.4751555 +0.6252316 0.3113005 0.4751555 +0.6806558 0.3113005 0.4751555 +0.7388448 0.3113005 0.4751555 +0.7998369 0.3113005 0.4751555 +0.8636691 0.3113005 0.4751555 +0.9303782 0.3113005 0.4751555 +1 0.3113005 0.4751555 +0 0.3485102 0.4751555 +0.002418731 0.3485102 0.4751555 +0.005155668 0.3485102 0.4751555 +0.009080105 0.3485102 0.4751555 +0.01434988 0.3485102 0.4751555 +0.02107202 0.3485102 0.4751555 +0.02934285 0.3485102 0.4751555 +0.03925039 0.3485102 0.4751555 +0.05087609 0.3485102 0.4751555 +0.06429595 0.3485102 0.4751555 +0.07958143 0.3485102 0.4751555 +0.0968001 0.3485102 0.4751555 +0.1160161 0.3485102 0.4751555 +0.1372908 0.3485102 0.4751555 +0.1606827 0.3485102 0.4751555 +0.1862481 0.3485102 0.4751555 +0.2140411 0.3485102 0.4751555 +0.2441142 0.3485102 0.4751555 +0.2765176 0.3485102 0.4751555 +0.3113005 0.3485102 0.4751555 +0.3485102 0.3485102 0.4751555 +0.388193 0.3485102 0.4751555 +0.4303934 0.3485102 0.4751555 +0.4751555 0.3485102 0.4751555 +0.5225216 0.3485102 0.4751555 +0.5725335 0.3485102 0.4751555 +0.6252316 0.3485102 0.4751555 +0.6806558 0.3485102 0.4751555 +0.7388448 0.3485102 0.4751555 +0.7998369 0.3485102 0.4751555 +0.8636691 0.3485102 0.4751555 +0.9303782 0.3485102 0.4751555 +1 0.3485102 0.4751555 +0 0.388193 0.4751555 +0.002418731 0.388193 0.4751555 +0.005155668 0.388193 0.4751555 +0.009080105 0.388193 0.4751555 +0.01434988 0.388193 0.4751555 +0.02107202 0.388193 0.4751555 +0.02934285 0.388193 0.4751555 +0.03925039 0.388193 0.4751555 +0.05087609 0.388193 0.4751555 +0.06429595 0.388193 0.4751555 +0.07958143 0.388193 0.4751555 +0.0968001 0.388193 0.4751555 +0.1160161 0.388193 0.4751555 +0.1372908 0.388193 0.4751555 +0.1606827 0.388193 0.4751555 +0.1862481 0.388193 0.4751555 +0.2140411 0.388193 0.4751555 +0.2441142 0.388193 0.4751555 +0.2765176 0.388193 0.4751555 +0.3113005 0.388193 0.4751555 +0.3485102 0.388193 0.4751555 +0.388193 0.388193 0.4751555 +0.4303934 0.388193 0.4751555 +0.4751555 0.388193 0.4751555 +0.5225216 0.388193 0.4751555 +0.5725335 0.388193 0.4751555 +0.6252316 0.388193 0.4751555 +0.6806558 0.388193 0.4751555 +0.7388448 0.388193 0.4751555 +0.7998369 0.388193 0.4751555 +0.8636691 0.388193 0.4751555 +0.9303782 0.388193 0.4751555 +1 0.388193 0.4751555 +0 0.4303934 0.4751555 +0.002418731 0.4303934 0.4751555 +0.005155668 0.4303934 0.4751555 +0.009080105 0.4303934 0.4751555 +0.01434988 0.4303934 0.4751555 +0.02107202 0.4303934 0.4751555 +0.02934285 0.4303934 0.4751555 +0.03925039 0.4303934 0.4751555 +0.05087609 0.4303934 0.4751555 +0.06429595 0.4303934 0.4751555 +0.07958143 0.4303934 0.4751555 +0.0968001 0.4303934 0.4751555 +0.1160161 0.4303934 0.4751555 +0.1372908 0.4303934 0.4751555 +0.1606827 0.4303934 0.4751555 +0.1862481 0.4303934 0.4751555 +0.2140411 0.4303934 0.4751555 +0.2441142 0.4303934 0.4751555 +0.2765176 0.4303934 0.4751555 +0.3113005 0.4303934 0.4751555 +0.3485102 0.4303934 0.4751555 +0.388193 0.4303934 0.4751555 +0.4303934 0.4303934 0.4751555 +0.4751555 0.4303934 0.4751555 +0.5225216 0.4303934 0.4751555 +0.5725335 0.4303934 0.4751555 +0.6252316 0.4303934 0.4751555 +0.6806558 0.4303934 0.4751555 +0.7388448 0.4303934 0.4751555 +0.7998369 0.4303934 0.4751555 +0.8636691 0.4303934 0.4751555 +0.9303782 0.4303934 0.4751555 +1 0.4303934 0.4751555 +0 0.4751555 0.4751555 +0.002418731 0.4751555 0.4751555 +0.005155668 0.4751555 0.4751555 +0.009080105 0.4751555 0.4751555 +0.01434988 0.4751555 0.4751555 +0.02107202 0.4751555 0.4751555 +0.02934285 0.4751555 0.4751555 +0.03925039 0.4751555 0.4751555 +0.05087609 0.4751555 0.4751555 +0.06429595 0.4751555 0.4751555 +0.07958143 0.4751555 0.4751555 +0.0968001 0.4751555 0.4751555 +0.1160161 0.4751555 0.4751555 +0.1372908 0.4751555 0.4751555 +0.1606827 0.4751555 0.4751555 +0.1862481 0.4751555 0.4751555 +0.2140411 0.4751555 0.4751555 +0.2441142 0.4751555 0.4751555 +0.2765176 0.4751555 0.4751555 +0.3113005 0.4751555 0.4751555 +0.3485102 0.4751555 0.4751555 +0.388193 0.4751555 0.4751555 +0.4303934 0.4751555 0.4751555 +0.4751555 0.4751555 0.4751555 +0.5225216 0.4751555 0.4751555 +0.5725335 0.4751555 0.4751555 +0.6252316 0.4751555 0.4751555 +0.6806558 0.4751555 0.4751555 +0.7388448 0.4751555 0.4751555 +0.7998369 0.4751555 0.4751555 +0.8636691 0.4751555 0.4751555 +0.9303782 0.4751555 0.4751555 +1 0.4751555 0.4751555 +0 0.5225216 0.4751555 +0.002418731 0.5225216 0.4751555 +0.005155668 0.5225216 0.4751555 +0.009080105 0.5225216 0.4751555 +0.01434988 0.5225216 0.4751555 +0.02107202 0.5225216 0.4751555 +0.02934285 0.5225216 0.4751555 +0.03925039 0.5225216 0.4751555 +0.05087609 0.5225216 0.4751555 +0.06429595 0.5225216 0.4751555 +0.07958143 0.5225216 0.4751555 +0.0968001 0.5225216 0.4751555 +0.1160161 0.5225216 0.4751555 +0.1372908 0.5225216 0.4751555 +0.1606827 0.5225216 0.4751555 +0.1862481 0.5225216 0.4751555 +0.2140411 0.5225216 0.4751555 +0.2441142 0.5225216 0.4751555 +0.2765176 0.5225216 0.4751555 +0.3113005 0.5225216 0.4751555 +0.3485102 0.5225216 0.4751555 +0.388193 0.5225216 0.4751555 +0.4303934 0.5225216 0.4751555 +0.4751555 0.5225216 0.4751555 +0.5225216 0.5225216 0.4751555 +0.5725335 0.5225216 0.4751555 +0.6252316 0.5225216 0.4751555 +0.6806558 0.5225216 0.4751555 +0.7388448 0.5225216 0.4751555 +0.7998369 0.5225216 0.4751555 +0.8636691 0.5225216 0.4751555 +0.9303782 0.5225216 0.4751555 +1 0.5225216 0.4751555 +0 0.5725335 0.4751555 +0.002418731 0.5725335 0.4751555 +0.005155668 0.5725335 0.4751555 +0.009080105 0.5725335 0.4751555 +0.01434988 0.5725335 0.4751555 +0.02107202 0.5725335 0.4751555 +0.02934285 0.5725335 0.4751555 +0.03925039 0.5725335 0.4751555 +0.05087609 0.5725335 0.4751555 +0.06429595 0.5725335 0.4751555 +0.07958143 0.5725335 0.4751555 +0.0968001 0.5725335 0.4751555 +0.1160161 0.5725335 0.4751555 +0.1372908 0.5725335 0.4751555 +0.1606827 0.5725335 0.4751555 +0.1862481 0.5725335 0.4751555 +0.2140411 0.5725335 0.4751555 +0.2441142 0.5725335 0.4751555 +0.2765176 0.5725335 0.4751555 +0.3113005 0.5725335 0.4751555 +0.3485102 0.5725335 0.4751555 +0.388193 0.5725335 0.4751555 +0.4303934 0.5725335 0.4751555 +0.4751555 0.5725335 0.4751555 +0.5225216 0.5725335 0.4751555 +0.5725335 0.5725335 0.4751555 +0.6252316 0.5725335 0.4751555 +0.6806558 0.5725335 0.4751555 +0.7388448 0.5725335 0.4751555 +0.7998369 0.5725335 0.4751555 +0.8636691 0.5725335 0.4751555 +0.9303782 0.5725335 0.4751555 +1 0.5725335 0.4751555 +0 0.6252316 0.4751555 +0.002418731 0.6252316 0.4751555 +0.005155668 0.6252316 0.4751555 +0.009080105 0.6252316 0.4751555 +0.01434988 0.6252316 0.4751555 +0.02107202 0.6252316 0.4751555 +0.02934285 0.6252316 0.4751555 +0.03925039 0.6252316 0.4751555 +0.05087609 0.6252316 0.4751555 +0.06429595 0.6252316 0.4751555 +0.07958143 0.6252316 0.4751555 +0.0968001 0.6252316 0.4751555 +0.1160161 0.6252316 0.4751555 +0.1372908 0.6252316 0.4751555 +0.1606827 0.6252316 0.4751555 +0.1862481 0.6252316 0.4751555 +0.2140411 0.6252316 0.4751555 +0.2441142 0.6252316 0.4751555 +0.2765176 0.6252316 0.4751555 +0.3113005 0.6252316 0.4751555 +0.3485102 0.6252316 0.4751555 +0.388193 0.6252316 0.4751555 +0.4303934 0.6252316 0.4751555 +0.4751555 0.6252316 0.4751555 +0.5225216 0.6252316 0.4751555 +0.5725335 0.6252316 0.4751555 +0.6252316 0.6252316 0.4751555 +0.6806558 0.6252316 0.4751555 +0.7388448 0.6252316 0.4751555 +0.7998369 0.6252316 0.4751555 +0.8636691 0.6252316 0.4751555 +0.9303782 0.6252316 0.4751555 +1 0.6252316 0.4751555 +0 0.6806558 0.4751555 +0.002418731 0.6806558 0.4751555 +0.005155668 0.6806558 0.4751555 +0.009080105 0.6806558 0.4751555 +0.01434988 0.6806558 0.4751555 +0.02107202 0.6806558 0.4751555 +0.02934285 0.6806558 0.4751555 +0.03925039 0.6806558 0.4751555 +0.05087609 0.6806558 0.4751555 +0.06429595 0.6806558 0.4751555 +0.07958143 0.6806558 0.4751555 +0.0968001 0.6806558 0.4751555 +0.1160161 0.6806558 0.4751555 +0.1372908 0.6806558 0.4751555 +0.1606827 0.6806558 0.4751555 +0.1862481 0.6806558 0.4751555 +0.2140411 0.6806558 0.4751555 +0.2441142 0.6806558 0.4751555 +0.2765176 0.6806558 0.4751555 +0.3113005 0.6806558 0.4751555 +0.3485102 0.6806558 0.4751555 +0.388193 0.6806558 0.4751555 +0.4303934 0.6806558 0.4751555 +0.4751555 0.6806558 0.4751555 +0.5225216 0.6806558 0.4751555 +0.5725335 0.6806558 0.4751555 +0.6252316 0.6806558 0.4751555 +0.6806558 0.6806558 0.4751555 +0.7388448 0.6806558 0.4751555 +0.7998369 0.6806558 0.4751555 +0.8636691 0.6806558 0.4751555 +0.9303782 0.6806558 0.4751555 +1 0.6806558 0.4751555 +0 0.7388448 0.4751555 +0.002418731 0.7388448 0.4751555 +0.005155668 0.7388448 0.4751555 +0.009080105 0.7388448 0.4751555 +0.01434988 0.7388448 0.4751555 +0.02107202 0.7388448 0.4751555 +0.02934285 0.7388448 0.4751555 +0.03925039 0.7388448 0.4751555 +0.05087609 0.7388448 0.4751555 +0.06429595 0.7388448 0.4751555 +0.07958143 0.7388448 0.4751555 +0.0968001 0.7388448 0.4751555 +0.1160161 0.7388448 0.4751555 +0.1372908 0.7388448 0.4751555 +0.1606827 0.7388448 0.4751555 +0.1862481 0.7388448 0.4751555 +0.2140411 0.7388448 0.4751555 +0.2441142 0.7388448 0.4751555 +0.2765176 0.7388448 0.4751555 +0.3113005 0.7388448 0.4751555 +0.3485102 0.7388448 0.4751555 +0.388193 0.7388448 0.4751555 +0.4303934 0.7388448 0.4751555 +0.4751555 0.7388448 0.4751555 +0.5225216 0.7388448 0.4751555 +0.5725335 0.7388448 0.4751555 +0.6252316 0.7388448 0.4751555 +0.6806558 0.7388448 0.4751555 +0.7388448 0.7388448 0.4751555 +0.7998369 0.7388448 0.4751555 +0.8636691 0.7388448 0.4751555 +0.9303782 0.7388448 0.4751555 +1 0.7388448 0.4751555 +0 0.7998369 0.4751555 +0.002418731 0.7998369 0.4751555 +0.005155668 0.7998369 0.4751555 +0.009080105 0.7998369 0.4751555 +0.01434988 0.7998369 0.4751555 +0.02107202 0.7998369 0.4751555 +0.02934285 0.7998369 0.4751555 +0.03925039 0.7998369 0.4751555 +0.05087609 0.7998369 0.4751555 +0.06429595 0.7998369 0.4751555 +0.07958143 0.7998369 0.4751555 +0.0968001 0.7998369 0.4751555 +0.1160161 0.7998369 0.4751555 +0.1372908 0.7998369 0.4751555 +0.1606827 0.7998369 0.4751555 +0.1862481 0.7998369 0.4751555 +0.2140411 0.7998369 0.4751555 +0.2441142 0.7998369 0.4751555 +0.2765176 0.7998369 0.4751555 +0.3113005 0.7998369 0.4751555 +0.3485102 0.7998369 0.4751555 +0.388193 0.7998369 0.4751555 +0.4303934 0.7998369 0.4751555 +0.4751555 0.7998369 0.4751555 +0.5225216 0.7998369 0.4751555 +0.5725335 0.7998369 0.4751555 +0.6252316 0.7998369 0.4751555 +0.6806558 0.7998369 0.4751555 +0.7388448 0.7998369 0.4751555 +0.7998369 0.7998369 0.4751555 +0.8636691 0.7998369 0.4751555 +0.9303782 0.7998369 0.4751555 +1 0.7998369 0.4751555 +0 0.8636691 0.4751555 +0.002418731 0.8636691 0.4751555 +0.005155668 0.8636691 0.4751555 +0.009080105 0.8636691 0.4751555 +0.01434988 0.8636691 0.4751555 +0.02107202 0.8636691 0.4751555 +0.02934285 0.8636691 0.4751555 +0.03925039 0.8636691 0.4751555 +0.05087609 0.8636691 0.4751555 +0.06429595 0.8636691 0.4751555 +0.07958143 0.8636691 0.4751555 +0.0968001 0.8636691 0.4751555 +0.1160161 0.8636691 0.4751555 +0.1372908 0.8636691 0.4751555 +0.1606827 0.8636691 0.4751555 +0.1862481 0.8636691 0.4751555 +0.2140411 0.8636691 0.4751555 +0.2441142 0.8636691 0.4751555 +0.2765176 0.8636691 0.4751555 +0.3113005 0.8636691 0.4751555 +0.3485102 0.8636691 0.4751555 +0.388193 0.8636691 0.4751555 +0.4303934 0.8636691 0.4751555 +0.4751555 0.8636691 0.4751555 +0.5225216 0.8636691 0.4751555 +0.5725335 0.8636691 0.4751555 +0.6252316 0.8636691 0.4751555 +0.6806558 0.8636691 0.4751555 +0.7388448 0.8636691 0.4751555 +0.7998369 0.8636691 0.4751555 +0.8636691 0.8636691 0.4751555 +0.9303782 0.8636691 0.4751555 +1 0.8636691 0.4751555 +0 0.9303782 0.4751555 +0.002418731 0.9303782 0.4751555 +0.005155668 0.9303782 0.4751555 +0.009080105 0.9303782 0.4751555 +0.01434988 0.9303782 0.4751555 +0.02107202 0.9303782 0.4751555 +0.02934285 0.9303782 0.4751555 +0.03925039 0.9303782 0.4751555 +0.05087609 0.9303782 0.4751555 +0.06429595 0.9303782 0.4751555 +0.07958143 0.9303782 0.4751555 +0.0968001 0.9303782 0.4751555 +0.1160161 0.9303782 0.4751555 +0.1372908 0.9303782 0.4751555 +0.1606827 0.9303782 0.4751555 +0.1862481 0.9303782 0.4751555 +0.2140411 0.9303782 0.4751555 +0.2441142 0.9303782 0.4751555 +0.2765176 0.9303782 0.4751555 +0.3113005 0.9303782 0.4751555 +0.3485102 0.9303782 0.4751555 +0.388193 0.9303782 0.4751555 +0.4303934 0.9303782 0.4751555 +0.4751555 0.9303782 0.4751555 +0.5225216 0.9303782 0.4751555 +0.5725335 0.9303782 0.4751555 +0.6252316 0.9303782 0.4751555 +0.6806558 0.9303782 0.4751555 +0.7388448 0.9303782 0.4751555 +0.7998369 0.9303782 0.4751555 +0.8636691 0.9303782 0.4751555 +0.9303782 0.9303782 0.4751555 +1 0.9303782 0.4751555 +0 1 0.4751555 +0.002418731 1 0.4751555 +0.005155668 1 0.4751555 +0.009080105 1 0.4751555 +0.01434988 1 0.4751555 +0.02107202 1 0.4751555 +0.02934285 1 0.4751555 +0.03925039 1 0.4751555 +0.05087609 1 0.4751555 +0.06429595 1 0.4751555 +0.07958143 1 0.4751555 +0.0968001 1 0.4751555 +0.1160161 1 0.4751555 +0.1372908 1 0.4751555 +0.1606827 1 0.4751555 +0.1862481 1 0.4751555 +0.2140411 1 0.4751555 +0.2441142 1 0.4751555 +0.2765176 1 0.4751555 +0.3113005 1 0.4751555 +0.3485102 1 0.4751555 +0.388193 1 0.4751555 +0.4303934 1 0.4751555 +0.4751555 1 0.4751555 +0.5225216 1 0.4751555 +0.5725335 1 0.4751555 +0.6252316 1 0.4751555 +0.6806558 1 0.4751555 +0.7388448 1 0.4751555 +0.7998369 1 0.4751555 +0.8636691 1 0.4751555 +0.9303782 1 0.4751555 +1 1 0.4751555 +0 0 0.5225216 +0.002418731 0 0.5225216 +0.005155668 0 0.5225216 +0.009080105 0 0.5225216 +0.01434988 0 0.5225216 +0.02107202 0 0.5225216 +0.02934285 0 0.5225216 +0.03925039 0 0.5225216 +0.05087609 0 0.5225216 +0.06429595 0 0.5225216 +0.07958143 0 0.5225216 +0.0968001 0 0.5225216 +0.1160161 0 0.5225216 +0.1372908 0 0.5225216 +0.1606827 0 0.5225216 +0.1862481 0 0.5225216 +0.2140411 0 0.5225216 +0.2441142 0 0.5225216 +0.2765176 0 0.5225216 +0.3113005 0 0.5225216 +0.3485102 0 0.5225216 +0.388193 0 0.5225216 +0.4303934 0 0.5225216 +0.4751555 0 0.5225216 +0.5225216 0 0.5225216 +0.5725335 0 0.5225216 +0.6252316 0 0.5225216 +0.6806558 0 0.5225216 +0.7388448 0 0.5225216 +0.7998369 0 0.5225216 +0.8636691 0 0.5225216 +0.9303782 0 0.5225216 +1 0 0.5225216 +0 0.002418731 0.5225216 +0.002418731 0.002418731 0.5225216 +0.005155668 0.002418731 0.5225216 +0.009080105 0.002418731 0.5225216 +0.01434988 0.002418731 0.5225216 +0.02107202 0.002418731 0.5225216 +0.02934285 0.002418731 0.5225216 +0.03925039 0.002418731 0.5225216 +0.05087609 0.002418731 0.5225216 +0.06429595 0.002418731 0.5225216 +0.07958143 0.002418731 0.5225216 +0.0968001 0.002418731 0.5225216 +0.1160161 0.002418731 0.5225216 +0.1372908 0.002418731 0.5225216 +0.1606827 0.002418731 0.5225216 +0.1862481 0.002418731 0.5225216 +0.2140411 0.002418731 0.5225216 +0.2441142 0.002418731 0.5225216 +0.2765176 0.002418731 0.5225216 +0.3113005 0.002418731 0.5225216 +0.3485102 0.002418731 0.5225216 +0.388193 0.002418731 0.5225216 +0.4303934 0.002418731 0.5225216 +0.4751555 0.002418731 0.5225216 +0.5225216 0.002418731 0.5225216 +0.5725335 0.002418731 0.5225216 +0.6252316 0.002418731 0.5225216 +0.6806558 0.002418731 0.5225216 +0.7388448 0.002418731 0.5225216 +0.7998369 0.002418731 0.5225216 +0.8636691 0.002418731 0.5225216 +0.9303782 0.002418731 0.5225216 +1 0.002418731 0.5225216 +0 0.005155668 0.5225216 +0.002418731 0.005155668 0.5225216 +0.005155668 0.005155668 0.5225216 +0.009080105 0.005155668 0.5225216 +0.01434988 0.005155668 0.5225216 +0.02107202 0.005155668 0.5225216 +0.02934285 0.005155668 0.5225216 +0.03925039 0.005155668 0.5225216 +0.05087609 0.005155668 0.5225216 +0.06429595 0.005155668 0.5225216 +0.07958143 0.005155668 0.5225216 +0.0968001 0.005155668 0.5225216 +0.1160161 0.005155668 0.5225216 +0.1372908 0.005155668 0.5225216 +0.1606827 0.005155668 0.5225216 +0.1862481 0.005155668 0.5225216 +0.2140411 0.005155668 0.5225216 +0.2441142 0.005155668 0.5225216 +0.2765176 0.005155668 0.5225216 +0.3113005 0.005155668 0.5225216 +0.3485102 0.005155668 0.5225216 +0.388193 0.005155668 0.5225216 +0.4303934 0.005155668 0.5225216 +0.4751555 0.005155668 0.5225216 +0.5225216 0.005155668 0.5225216 +0.5725335 0.005155668 0.5225216 +0.6252316 0.005155668 0.5225216 +0.6806558 0.005155668 0.5225216 +0.7388448 0.005155668 0.5225216 +0.7998369 0.005155668 0.5225216 +0.8636691 0.005155668 0.5225216 +0.9303782 0.005155668 0.5225216 +1 0.005155668 0.5225216 +0 0.009080105 0.5225216 +0.002418731 0.009080105 0.5225216 +0.005155668 0.009080105 0.5225216 +0.009080105 0.009080105 0.5225216 +0.01434988 0.009080105 0.5225216 +0.02107202 0.009080105 0.5225216 +0.02934285 0.009080105 0.5225216 +0.03925039 0.009080105 0.5225216 +0.05087609 0.009080105 0.5225216 +0.06429595 0.009080105 0.5225216 +0.07958143 0.009080105 0.5225216 +0.0968001 0.009080105 0.5225216 +0.1160161 0.009080105 0.5225216 +0.1372908 0.009080105 0.5225216 +0.1606827 0.009080105 0.5225216 +0.1862481 0.009080105 0.5225216 +0.2140411 0.009080105 0.5225216 +0.2441142 0.009080105 0.5225216 +0.2765176 0.009080105 0.5225216 +0.3113005 0.009080105 0.5225216 +0.3485102 0.009080105 0.5225216 +0.388193 0.009080105 0.5225216 +0.4303934 0.009080105 0.5225216 +0.4751555 0.009080105 0.5225216 +0.5225216 0.009080105 0.5225216 +0.5725335 0.009080105 0.5225216 +0.6252316 0.009080105 0.5225216 +0.6806558 0.009080105 0.5225216 +0.7388448 0.009080105 0.5225216 +0.7998369 0.009080105 0.5225216 +0.8636691 0.009080105 0.5225216 +0.9303782 0.009080105 0.5225216 +1 0.009080105 0.5225216 +0 0.01434988 0.5225216 +0.002418731 0.01434988 0.5225216 +0.005155668 0.01434988 0.5225216 +0.009080105 0.01434988 0.5225216 +0.01434988 0.01434988 0.5225216 +0.02107202 0.01434988 0.5225216 +0.02934285 0.01434988 0.5225216 +0.03925039 0.01434988 0.5225216 +0.05087609 0.01434988 0.5225216 +0.06429595 0.01434988 0.5225216 +0.07958143 0.01434988 0.5225216 +0.0968001 0.01434988 0.5225216 +0.1160161 0.01434988 0.5225216 +0.1372908 0.01434988 0.5225216 +0.1606827 0.01434988 0.5225216 +0.1862481 0.01434988 0.5225216 +0.2140411 0.01434988 0.5225216 +0.2441142 0.01434988 0.5225216 +0.2765176 0.01434988 0.5225216 +0.3113005 0.01434988 0.5225216 +0.3485102 0.01434988 0.5225216 +0.388193 0.01434988 0.5225216 +0.4303934 0.01434988 0.5225216 +0.4751555 0.01434988 0.5225216 +0.5225216 0.01434988 0.5225216 +0.5725335 0.01434988 0.5225216 +0.6252316 0.01434988 0.5225216 +0.6806558 0.01434988 0.5225216 +0.7388448 0.01434988 0.5225216 +0.7998369 0.01434988 0.5225216 +0.8636691 0.01434988 0.5225216 +0.9303782 0.01434988 0.5225216 +1 0.01434988 0.5225216 +0 0.02107202 0.5225216 +0.002418731 0.02107202 0.5225216 +0.005155668 0.02107202 0.5225216 +0.009080105 0.02107202 0.5225216 +0.01434988 0.02107202 0.5225216 +0.02107202 0.02107202 0.5225216 +0.02934285 0.02107202 0.5225216 +0.03925039 0.02107202 0.5225216 +0.05087609 0.02107202 0.5225216 +0.06429595 0.02107202 0.5225216 +0.07958143 0.02107202 0.5225216 +0.0968001 0.02107202 0.5225216 +0.1160161 0.02107202 0.5225216 +0.1372908 0.02107202 0.5225216 +0.1606827 0.02107202 0.5225216 +0.1862481 0.02107202 0.5225216 +0.2140411 0.02107202 0.5225216 +0.2441142 0.02107202 0.5225216 +0.2765176 0.02107202 0.5225216 +0.3113005 0.02107202 0.5225216 +0.3485102 0.02107202 0.5225216 +0.388193 0.02107202 0.5225216 +0.4303934 0.02107202 0.5225216 +0.4751555 0.02107202 0.5225216 +0.5225216 0.02107202 0.5225216 +0.5725335 0.02107202 0.5225216 +0.6252316 0.02107202 0.5225216 +0.6806558 0.02107202 0.5225216 +0.7388448 0.02107202 0.5225216 +0.7998369 0.02107202 0.5225216 +0.8636691 0.02107202 0.5225216 +0.9303782 0.02107202 0.5225216 +1 0.02107202 0.5225216 +0 0.02934285 0.5225216 +0.002418731 0.02934285 0.5225216 +0.005155668 0.02934285 0.5225216 +0.009080105 0.02934285 0.5225216 +0.01434988 0.02934285 0.5225216 +0.02107202 0.02934285 0.5225216 +0.02934285 0.02934285 0.5225216 +0.03925039 0.02934285 0.5225216 +0.05087609 0.02934285 0.5225216 +0.06429595 0.02934285 0.5225216 +0.07958143 0.02934285 0.5225216 +0.0968001 0.02934285 0.5225216 +0.1160161 0.02934285 0.5225216 +0.1372908 0.02934285 0.5225216 +0.1606827 0.02934285 0.5225216 +0.1862481 0.02934285 0.5225216 +0.2140411 0.02934285 0.5225216 +0.2441142 0.02934285 0.5225216 +0.2765176 0.02934285 0.5225216 +0.3113005 0.02934285 0.5225216 +0.3485102 0.02934285 0.5225216 +0.388193 0.02934285 0.5225216 +0.4303934 0.02934285 0.5225216 +0.4751555 0.02934285 0.5225216 +0.5225216 0.02934285 0.5225216 +0.5725335 0.02934285 0.5225216 +0.6252316 0.02934285 0.5225216 +0.6806558 0.02934285 0.5225216 +0.7388448 0.02934285 0.5225216 +0.7998369 0.02934285 0.5225216 +0.8636691 0.02934285 0.5225216 +0.9303782 0.02934285 0.5225216 +1 0.02934285 0.5225216 +0 0.03925039 0.5225216 +0.002418731 0.03925039 0.5225216 +0.005155668 0.03925039 0.5225216 +0.009080105 0.03925039 0.5225216 +0.01434988 0.03925039 0.5225216 +0.02107202 0.03925039 0.5225216 +0.02934285 0.03925039 0.5225216 +0.03925039 0.03925039 0.5225216 +0.05087609 0.03925039 0.5225216 +0.06429595 0.03925039 0.5225216 +0.07958143 0.03925039 0.5225216 +0.0968001 0.03925039 0.5225216 +0.1160161 0.03925039 0.5225216 +0.1372908 0.03925039 0.5225216 +0.1606827 0.03925039 0.5225216 +0.1862481 0.03925039 0.5225216 +0.2140411 0.03925039 0.5225216 +0.2441142 0.03925039 0.5225216 +0.2765176 0.03925039 0.5225216 +0.3113005 0.03925039 0.5225216 +0.3485102 0.03925039 0.5225216 +0.388193 0.03925039 0.5225216 +0.4303934 0.03925039 0.5225216 +0.4751555 0.03925039 0.5225216 +0.5225216 0.03925039 0.5225216 +0.5725335 0.03925039 0.5225216 +0.6252316 0.03925039 0.5225216 +0.6806558 0.03925039 0.5225216 +0.7388448 0.03925039 0.5225216 +0.7998369 0.03925039 0.5225216 +0.8636691 0.03925039 0.5225216 +0.9303782 0.03925039 0.5225216 +1 0.03925039 0.5225216 +0 0.05087609 0.5225216 +0.002418731 0.05087609 0.5225216 +0.005155668 0.05087609 0.5225216 +0.009080105 0.05087609 0.5225216 +0.01434988 0.05087609 0.5225216 +0.02107202 0.05087609 0.5225216 +0.02934285 0.05087609 0.5225216 +0.03925039 0.05087609 0.5225216 +0.05087609 0.05087609 0.5225216 +0.06429595 0.05087609 0.5225216 +0.07958143 0.05087609 0.5225216 +0.0968001 0.05087609 0.5225216 +0.1160161 0.05087609 0.5225216 +0.1372908 0.05087609 0.5225216 +0.1606827 0.05087609 0.5225216 +0.1862481 0.05087609 0.5225216 +0.2140411 0.05087609 0.5225216 +0.2441142 0.05087609 0.5225216 +0.2765176 0.05087609 0.5225216 +0.3113005 0.05087609 0.5225216 +0.3485102 0.05087609 0.5225216 +0.388193 0.05087609 0.5225216 +0.4303934 0.05087609 0.5225216 +0.4751555 0.05087609 0.5225216 +0.5225216 0.05087609 0.5225216 +0.5725335 0.05087609 0.5225216 +0.6252316 0.05087609 0.5225216 +0.6806558 0.05087609 0.5225216 +0.7388448 0.05087609 0.5225216 +0.7998369 0.05087609 0.5225216 +0.8636691 0.05087609 0.5225216 +0.9303782 0.05087609 0.5225216 +1 0.05087609 0.5225216 +0 0.06429595 0.5225216 +0.002418731 0.06429595 0.5225216 +0.005155668 0.06429595 0.5225216 +0.009080105 0.06429595 0.5225216 +0.01434988 0.06429595 0.5225216 +0.02107202 0.06429595 0.5225216 +0.02934285 0.06429595 0.5225216 +0.03925039 0.06429595 0.5225216 +0.05087609 0.06429595 0.5225216 +0.06429595 0.06429595 0.5225216 +0.07958143 0.06429595 0.5225216 +0.0968001 0.06429595 0.5225216 +0.1160161 0.06429595 0.5225216 +0.1372908 0.06429595 0.5225216 +0.1606827 0.06429595 0.5225216 +0.1862481 0.06429595 0.5225216 +0.2140411 0.06429595 0.5225216 +0.2441142 0.06429595 0.5225216 +0.2765176 0.06429595 0.5225216 +0.3113005 0.06429595 0.5225216 +0.3485102 0.06429595 0.5225216 +0.388193 0.06429595 0.5225216 +0.4303934 0.06429595 0.5225216 +0.4751555 0.06429595 0.5225216 +0.5225216 0.06429595 0.5225216 +0.5725335 0.06429595 0.5225216 +0.6252316 0.06429595 0.5225216 +0.6806558 0.06429595 0.5225216 +0.7388448 0.06429595 0.5225216 +0.7998369 0.06429595 0.5225216 +0.8636691 0.06429595 0.5225216 +0.9303782 0.06429595 0.5225216 +1 0.06429595 0.5225216 +0 0.07958143 0.5225216 +0.002418731 0.07958143 0.5225216 +0.005155668 0.07958143 0.5225216 +0.009080105 0.07958143 0.5225216 +0.01434988 0.07958143 0.5225216 +0.02107202 0.07958143 0.5225216 +0.02934285 0.07958143 0.5225216 +0.03925039 0.07958143 0.5225216 +0.05087609 0.07958143 0.5225216 +0.06429595 0.07958143 0.5225216 +0.07958143 0.07958143 0.5225216 +0.0968001 0.07958143 0.5225216 +0.1160161 0.07958143 0.5225216 +0.1372908 0.07958143 0.5225216 +0.1606827 0.07958143 0.5225216 +0.1862481 0.07958143 0.5225216 +0.2140411 0.07958143 0.5225216 +0.2441142 0.07958143 0.5225216 +0.2765176 0.07958143 0.5225216 +0.3113005 0.07958143 0.5225216 +0.3485102 0.07958143 0.5225216 +0.388193 0.07958143 0.5225216 +0.4303934 0.07958143 0.5225216 +0.4751555 0.07958143 0.5225216 +0.5225216 0.07958143 0.5225216 +0.5725335 0.07958143 0.5225216 +0.6252316 0.07958143 0.5225216 +0.6806558 0.07958143 0.5225216 +0.7388448 0.07958143 0.5225216 +0.7998369 0.07958143 0.5225216 +0.8636691 0.07958143 0.5225216 +0.9303782 0.07958143 0.5225216 +1 0.07958143 0.5225216 +0 0.0968001 0.5225216 +0.002418731 0.0968001 0.5225216 +0.005155668 0.0968001 0.5225216 +0.009080105 0.0968001 0.5225216 +0.01434988 0.0968001 0.5225216 +0.02107202 0.0968001 0.5225216 +0.02934285 0.0968001 0.5225216 +0.03925039 0.0968001 0.5225216 +0.05087609 0.0968001 0.5225216 +0.06429595 0.0968001 0.5225216 +0.07958143 0.0968001 0.5225216 +0.0968001 0.0968001 0.5225216 +0.1160161 0.0968001 0.5225216 +0.1372908 0.0968001 0.5225216 +0.1606827 0.0968001 0.5225216 +0.1862481 0.0968001 0.5225216 +0.2140411 0.0968001 0.5225216 +0.2441142 0.0968001 0.5225216 +0.2765176 0.0968001 0.5225216 +0.3113005 0.0968001 0.5225216 +0.3485102 0.0968001 0.5225216 +0.388193 0.0968001 0.5225216 +0.4303934 0.0968001 0.5225216 +0.4751555 0.0968001 0.5225216 +0.5225216 0.0968001 0.5225216 +0.5725335 0.0968001 0.5225216 +0.6252316 0.0968001 0.5225216 +0.6806558 0.0968001 0.5225216 +0.7388448 0.0968001 0.5225216 +0.7998369 0.0968001 0.5225216 +0.8636691 0.0968001 0.5225216 +0.9303782 0.0968001 0.5225216 +1 0.0968001 0.5225216 +0 0.1160161 0.5225216 +0.002418731 0.1160161 0.5225216 +0.005155668 0.1160161 0.5225216 +0.009080105 0.1160161 0.5225216 +0.01434988 0.1160161 0.5225216 +0.02107202 0.1160161 0.5225216 +0.02934285 0.1160161 0.5225216 +0.03925039 0.1160161 0.5225216 +0.05087609 0.1160161 0.5225216 +0.06429595 0.1160161 0.5225216 +0.07958143 0.1160161 0.5225216 +0.0968001 0.1160161 0.5225216 +0.1160161 0.1160161 0.5225216 +0.1372908 0.1160161 0.5225216 +0.1606827 0.1160161 0.5225216 +0.1862481 0.1160161 0.5225216 +0.2140411 0.1160161 0.5225216 +0.2441142 0.1160161 0.5225216 +0.2765176 0.1160161 0.5225216 +0.3113005 0.1160161 0.5225216 +0.3485102 0.1160161 0.5225216 +0.388193 0.1160161 0.5225216 +0.4303934 0.1160161 0.5225216 +0.4751555 0.1160161 0.5225216 +0.5225216 0.1160161 0.5225216 +0.5725335 0.1160161 0.5225216 +0.6252316 0.1160161 0.5225216 +0.6806558 0.1160161 0.5225216 +0.7388448 0.1160161 0.5225216 +0.7998369 0.1160161 0.5225216 +0.8636691 0.1160161 0.5225216 +0.9303782 0.1160161 0.5225216 +1 0.1160161 0.5225216 +0 0.1372908 0.5225216 +0.002418731 0.1372908 0.5225216 +0.005155668 0.1372908 0.5225216 +0.009080105 0.1372908 0.5225216 +0.01434988 0.1372908 0.5225216 +0.02107202 0.1372908 0.5225216 +0.02934285 0.1372908 0.5225216 +0.03925039 0.1372908 0.5225216 +0.05087609 0.1372908 0.5225216 +0.06429595 0.1372908 0.5225216 +0.07958143 0.1372908 0.5225216 +0.0968001 0.1372908 0.5225216 +0.1160161 0.1372908 0.5225216 +0.1372908 0.1372908 0.5225216 +0.1606827 0.1372908 0.5225216 +0.1862481 0.1372908 0.5225216 +0.2140411 0.1372908 0.5225216 +0.2441142 0.1372908 0.5225216 +0.2765176 0.1372908 0.5225216 +0.3113005 0.1372908 0.5225216 +0.3485102 0.1372908 0.5225216 +0.388193 0.1372908 0.5225216 +0.4303934 0.1372908 0.5225216 +0.4751555 0.1372908 0.5225216 +0.5225216 0.1372908 0.5225216 +0.5725335 0.1372908 0.5225216 +0.6252316 0.1372908 0.5225216 +0.6806558 0.1372908 0.5225216 +0.7388448 0.1372908 0.5225216 +0.7998369 0.1372908 0.5225216 +0.8636691 0.1372908 0.5225216 +0.9303782 0.1372908 0.5225216 +1 0.1372908 0.5225216 +0 0.1606827 0.5225216 +0.002418731 0.1606827 0.5225216 +0.005155668 0.1606827 0.5225216 +0.009080105 0.1606827 0.5225216 +0.01434988 0.1606827 0.5225216 +0.02107202 0.1606827 0.5225216 +0.02934285 0.1606827 0.5225216 +0.03925039 0.1606827 0.5225216 +0.05087609 0.1606827 0.5225216 +0.06429595 0.1606827 0.5225216 +0.07958143 0.1606827 0.5225216 +0.0968001 0.1606827 0.5225216 +0.1160161 0.1606827 0.5225216 +0.1372908 0.1606827 0.5225216 +0.1606827 0.1606827 0.5225216 +0.1862481 0.1606827 0.5225216 +0.2140411 0.1606827 0.5225216 +0.2441142 0.1606827 0.5225216 +0.2765176 0.1606827 0.5225216 +0.3113005 0.1606827 0.5225216 +0.3485102 0.1606827 0.5225216 +0.388193 0.1606827 0.5225216 +0.4303934 0.1606827 0.5225216 +0.4751555 0.1606827 0.5225216 +0.5225216 0.1606827 0.5225216 +0.5725335 0.1606827 0.5225216 +0.6252316 0.1606827 0.5225216 +0.6806558 0.1606827 0.5225216 +0.7388448 0.1606827 0.5225216 +0.7998369 0.1606827 0.5225216 +0.8636691 0.1606827 0.5225216 +0.9303782 0.1606827 0.5225216 +1 0.1606827 0.5225216 +0 0.1862481 0.5225216 +0.002418731 0.1862481 0.5225216 +0.005155668 0.1862481 0.5225216 +0.009080105 0.1862481 0.5225216 +0.01434988 0.1862481 0.5225216 +0.02107202 0.1862481 0.5225216 +0.02934285 0.1862481 0.5225216 +0.03925039 0.1862481 0.5225216 +0.05087609 0.1862481 0.5225216 +0.06429595 0.1862481 0.5225216 +0.07958143 0.1862481 0.5225216 +0.0968001 0.1862481 0.5225216 +0.1160161 0.1862481 0.5225216 +0.1372908 0.1862481 0.5225216 +0.1606827 0.1862481 0.5225216 +0.1862481 0.1862481 0.5225216 +0.2140411 0.1862481 0.5225216 +0.2441142 0.1862481 0.5225216 +0.2765176 0.1862481 0.5225216 +0.3113005 0.1862481 0.5225216 +0.3485102 0.1862481 0.5225216 +0.388193 0.1862481 0.5225216 +0.4303934 0.1862481 0.5225216 +0.4751555 0.1862481 0.5225216 +0.5225216 0.1862481 0.5225216 +0.5725335 0.1862481 0.5225216 +0.6252316 0.1862481 0.5225216 +0.6806558 0.1862481 0.5225216 +0.7388448 0.1862481 0.5225216 +0.7998369 0.1862481 0.5225216 +0.8636691 0.1862481 0.5225216 +0.9303782 0.1862481 0.5225216 +1 0.1862481 0.5225216 +0 0.2140411 0.5225216 +0.002418731 0.2140411 0.5225216 +0.005155668 0.2140411 0.5225216 +0.009080105 0.2140411 0.5225216 +0.01434988 0.2140411 0.5225216 +0.02107202 0.2140411 0.5225216 +0.02934285 0.2140411 0.5225216 +0.03925039 0.2140411 0.5225216 +0.05087609 0.2140411 0.5225216 +0.06429595 0.2140411 0.5225216 +0.07958143 0.2140411 0.5225216 +0.0968001 0.2140411 0.5225216 +0.1160161 0.2140411 0.5225216 +0.1372908 0.2140411 0.5225216 +0.1606827 0.2140411 0.5225216 +0.1862481 0.2140411 0.5225216 +0.2140411 0.2140411 0.5225216 +0.2441142 0.2140411 0.5225216 +0.2765176 0.2140411 0.5225216 +0.3113005 0.2140411 0.5225216 +0.3485102 0.2140411 0.5225216 +0.388193 0.2140411 0.5225216 +0.4303934 0.2140411 0.5225216 +0.4751555 0.2140411 0.5225216 +0.5225216 0.2140411 0.5225216 +0.5725335 0.2140411 0.5225216 +0.6252316 0.2140411 0.5225216 +0.6806558 0.2140411 0.5225216 +0.7388448 0.2140411 0.5225216 +0.7998369 0.2140411 0.5225216 +0.8636691 0.2140411 0.5225216 +0.9303782 0.2140411 0.5225216 +1 0.2140411 0.5225216 +0 0.2441142 0.5225216 +0.002418731 0.2441142 0.5225216 +0.005155668 0.2441142 0.5225216 +0.009080105 0.2441142 0.5225216 +0.01434988 0.2441142 0.5225216 +0.02107202 0.2441142 0.5225216 +0.02934285 0.2441142 0.5225216 +0.03925039 0.2441142 0.5225216 +0.05087609 0.2441142 0.5225216 +0.06429595 0.2441142 0.5225216 +0.07958143 0.2441142 0.5225216 +0.0968001 0.2441142 0.5225216 +0.1160161 0.2441142 0.5225216 +0.1372908 0.2441142 0.5225216 +0.1606827 0.2441142 0.5225216 +0.1862481 0.2441142 0.5225216 +0.2140411 0.2441142 0.5225216 +0.2441142 0.2441142 0.5225216 +0.2765176 0.2441142 0.5225216 +0.3113005 0.2441142 0.5225216 +0.3485102 0.2441142 0.5225216 +0.388193 0.2441142 0.5225216 +0.4303934 0.2441142 0.5225216 +0.4751555 0.2441142 0.5225216 +0.5225216 0.2441142 0.5225216 +0.5725335 0.2441142 0.5225216 +0.6252316 0.2441142 0.5225216 +0.6806558 0.2441142 0.5225216 +0.7388448 0.2441142 0.5225216 +0.7998369 0.2441142 0.5225216 +0.8636691 0.2441142 0.5225216 +0.9303782 0.2441142 0.5225216 +1 0.2441142 0.5225216 +0 0.2765176 0.5225216 +0.002418731 0.2765176 0.5225216 +0.005155668 0.2765176 0.5225216 +0.009080105 0.2765176 0.5225216 +0.01434988 0.2765176 0.5225216 +0.02107202 0.2765176 0.5225216 +0.02934285 0.2765176 0.5225216 +0.03925039 0.2765176 0.5225216 +0.05087609 0.2765176 0.5225216 +0.06429595 0.2765176 0.5225216 +0.07958143 0.2765176 0.5225216 +0.0968001 0.2765176 0.5225216 +0.1160161 0.2765176 0.5225216 +0.1372908 0.2765176 0.5225216 +0.1606827 0.2765176 0.5225216 +0.1862481 0.2765176 0.5225216 +0.2140411 0.2765176 0.5225216 +0.2441142 0.2765176 0.5225216 +0.2765176 0.2765176 0.5225216 +0.3113005 0.2765176 0.5225216 +0.3485102 0.2765176 0.5225216 +0.388193 0.2765176 0.5225216 +0.4303934 0.2765176 0.5225216 +0.4751555 0.2765176 0.5225216 +0.5225216 0.2765176 0.5225216 +0.5725335 0.2765176 0.5225216 +0.6252316 0.2765176 0.5225216 +0.6806558 0.2765176 0.5225216 +0.7388448 0.2765176 0.5225216 +0.7998369 0.2765176 0.5225216 +0.8636691 0.2765176 0.5225216 +0.9303782 0.2765176 0.5225216 +1 0.2765176 0.5225216 +0 0.3113005 0.5225216 +0.002418731 0.3113005 0.5225216 +0.005155668 0.3113005 0.5225216 +0.009080105 0.3113005 0.5225216 +0.01434988 0.3113005 0.5225216 +0.02107202 0.3113005 0.5225216 +0.02934285 0.3113005 0.5225216 +0.03925039 0.3113005 0.5225216 +0.05087609 0.3113005 0.5225216 +0.06429595 0.3113005 0.5225216 +0.07958143 0.3113005 0.5225216 +0.0968001 0.3113005 0.5225216 +0.1160161 0.3113005 0.5225216 +0.1372908 0.3113005 0.5225216 +0.1606827 0.3113005 0.5225216 +0.1862481 0.3113005 0.5225216 +0.2140411 0.3113005 0.5225216 +0.2441142 0.3113005 0.5225216 +0.2765176 0.3113005 0.5225216 +0.3113005 0.3113005 0.5225216 +0.3485102 0.3113005 0.5225216 +0.388193 0.3113005 0.5225216 +0.4303934 0.3113005 0.5225216 +0.4751555 0.3113005 0.5225216 +0.5225216 0.3113005 0.5225216 +0.5725335 0.3113005 0.5225216 +0.6252316 0.3113005 0.5225216 +0.6806558 0.3113005 0.5225216 +0.7388448 0.3113005 0.5225216 +0.7998369 0.3113005 0.5225216 +0.8636691 0.3113005 0.5225216 +0.9303782 0.3113005 0.5225216 +1 0.3113005 0.5225216 +0 0.3485102 0.5225216 +0.002418731 0.3485102 0.5225216 +0.005155668 0.3485102 0.5225216 +0.009080105 0.3485102 0.5225216 +0.01434988 0.3485102 0.5225216 +0.02107202 0.3485102 0.5225216 +0.02934285 0.3485102 0.5225216 +0.03925039 0.3485102 0.5225216 +0.05087609 0.3485102 0.5225216 +0.06429595 0.3485102 0.5225216 +0.07958143 0.3485102 0.5225216 +0.0968001 0.3485102 0.5225216 +0.1160161 0.3485102 0.5225216 +0.1372908 0.3485102 0.5225216 +0.1606827 0.3485102 0.5225216 +0.1862481 0.3485102 0.5225216 +0.2140411 0.3485102 0.5225216 +0.2441142 0.3485102 0.5225216 +0.2765176 0.3485102 0.5225216 +0.3113005 0.3485102 0.5225216 +0.3485102 0.3485102 0.5225216 +0.388193 0.3485102 0.5225216 +0.4303934 0.3485102 0.5225216 +0.4751555 0.3485102 0.5225216 +0.5225216 0.3485102 0.5225216 +0.5725335 0.3485102 0.5225216 +0.6252316 0.3485102 0.5225216 +0.6806558 0.3485102 0.5225216 +0.7388448 0.3485102 0.5225216 +0.7998369 0.3485102 0.5225216 +0.8636691 0.3485102 0.5225216 +0.9303782 0.3485102 0.5225216 +1 0.3485102 0.5225216 +0 0.388193 0.5225216 +0.002418731 0.388193 0.5225216 +0.005155668 0.388193 0.5225216 +0.009080105 0.388193 0.5225216 +0.01434988 0.388193 0.5225216 +0.02107202 0.388193 0.5225216 +0.02934285 0.388193 0.5225216 +0.03925039 0.388193 0.5225216 +0.05087609 0.388193 0.5225216 +0.06429595 0.388193 0.5225216 +0.07958143 0.388193 0.5225216 +0.0968001 0.388193 0.5225216 +0.1160161 0.388193 0.5225216 +0.1372908 0.388193 0.5225216 +0.1606827 0.388193 0.5225216 +0.1862481 0.388193 0.5225216 +0.2140411 0.388193 0.5225216 +0.2441142 0.388193 0.5225216 +0.2765176 0.388193 0.5225216 +0.3113005 0.388193 0.5225216 +0.3485102 0.388193 0.5225216 +0.388193 0.388193 0.5225216 +0.4303934 0.388193 0.5225216 +0.4751555 0.388193 0.5225216 +0.5225216 0.388193 0.5225216 +0.5725335 0.388193 0.5225216 +0.6252316 0.388193 0.5225216 +0.6806558 0.388193 0.5225216 +0.7388448 0.388193 0.5225216 +0.7998369 0.388193 0.5225216 +0.8636691 0.388193 0.5225216 +0.9303782 0.388193 0.5225216 +1 0.388193 0.5225216 +0 0.4303934 0.5225216 +0.002418731 0.4303934 0.5225216 +0.005155668 0.4303934 0.5225216 +0.009080105 0.4303934 0.5225216 +0.01434988 0.4303934 0.5225216 +0.02107202 0.4303934 0.5225216 +0.02934285 0.4303934 0.5225216 +0.03925039 0.4303934 0.5225216 +0.05087609 0.4303934 0.5225216 +0.06429595 0.4303934 0.5225216 +0.07958143 0.4303934 0.5225216 +0.0968001 0.4303934 0.5225216 +0.1160161 0.4303934 0.5225216 +0.1372908 0.4303934 0.5225216 +0.1606827 0.4303934 0.5225216 +0.1862481 0.4303934 0.5225216 +0.2140411 0.4303934 0.5225216 +0.2441142 0.4303934 0.5225216 +0.2765176 0.4303934 0.5225216 +0.3113005 0.4303934 0.5225216 +0.3485102 0.4303934 0.5225216 +0.388193 0.4303934 0.5225216 +0.4303934 0.4303934 0.5225216 +0.4751555 0.4303934 0.5225216 +0.5225216 0.4303934 0.5225216 +0.5725335 0.4303934 0.5225216 +0.6252316 0.4303934 0.5225216 +0.6806558 0.4303934 0.5225216 +0.7388448 0.4303934 0.5225216 +0.7998369 0.4303934 0.5225216 +0.8636691 0.4303934 0.5225216 +0.9303782 0.4303934 0.5225216 +1 0.4303934 0.5225216 +0 0.4751555 0.5225216 +0.002418731 0.4751555 0.5225216 +0.005155668 0.4751555 0.5225216 +0.009080105 0.4751555 0.5225216 +0.01434988 0.4751555 0.5225216 +0.02107202 0.4751555 0.5225216 +0.02934285 0.4751555 0.5225216 +0.03925039 0.4751555 0.5225216 +0.05087609 0.4751555 0.5225216 +0.06429595 0.4751555 0.5225216 +0.07958143 0.4751555 0.5225216 +0.0968001 0.4751555 0.5225216 +0.1160161 0.4751555 0.5225216 +0.1372908 0.4751555 0.5225216 +0.1606827 0.4751555 0.5225216 +0.1862481 0.4751555 0.5225216 +0.2140411 0.4751555 0.5225216 +0.2441142 0.4751555 0.5225216 +0.2765176 0.4751555 0.5225216 +0.3113005 0.4751555 0.5225216 +0.3485102 0.4751555 0.5225216 +0.388193 0.4751555 0.5225216 +0.4303934 0.4751555 0.5225216 +0.4751555 0.4751555 0.5225216 +0.5225216 0.4751555 0.5225216 +0.5725335 0.4751555 0.5225216 +0.6252316 0.4751555 0.5225216 +0.6806558 0.4751555 0.5225216 +0.7388448 0.4751555 0.5225216 +0.7998369 0.4751555 0.5225216 +0.8636691 0.4751555 0.5225216 +0.9303782 0.4751555 0.5225216 +1 0.4751555 0.5225216 +0 0.5225216 0.5225216 +0.002418731 0.5225216 0.5225216 +0.005155668 0.5225216 0.5225216 +0.009080105 0.5225216 0.5225216 +0.01434988 0.5225216 0.5225216 +0.02107202 0.5225216 0.5225216 +0.02934285 0.5225216 0.5225216 +0.03925039 0.5225216 0.5225216 +0.05087609 0.5225216 0.5225216 +0.06429595 0.5225216 0.5225216 +0.07958143 0.5225216 0.5225216 +0.0968001 0.5225216 0.5225216 +0.1160161 0.5225216 0.5225216 +0.1372908 0.5225216 0.5225216 +0.1606827 0.5225216 0.5225216 +0.1862481 0.5225216 0.5225216 +0.2140411 0.5225216 0.5225216 +0.2441142 0.5225216 0.5225216 +0.2765176 0.5225216 0.5225216 +0.3113005 0.5225216 0.5225216 +0.3485102 0.5225216 0.5225216 +0.388193 0.5225216 0.5225216 +0.4303934 0.5225216 0.5225216 +0.4751555 0.5225216 0.5225216 +0.5225216 0.5225216 0.5225216 +0.5725335 0.5225216 0.5225216 +0.6252316 0.5225216 0.5225216 +0.6806558 0.5225216 0.5225216 +0.7388448 0.5225216 0.5225216 +0.7998369 0.5225216 0.5225216 +0.8636691 0.5225216 0.5225216 +0.9303782 0.5225216 0.5225216 +1 0.5225216 0.5225216 +0 0.5725335 0.5225216 +0.002418731 0.5725335 0.5225216 +0.005155668 0.5725335 0.5225216 +0.009080105 0.5725335 0.5225216 +0.01434988 0.5725335 0.5225216 +0.02107202 0.5725335 0.5225216 +0.02934285 0.5725335 0.5225216 +0.03925039 0.5725335 0.5225216 +0.05087609 0.5725335 0.5225216 +0.06429595 0.5725335 0.5225216 +0.07958143 0.5725335 0.5225216 +0.0968001 0.5725335 0.5225216 +0.1160161 0.5725335 0.5225216 +0.1372908 0.5725335 0.5225216 +0.1606827 0.5725335 0.5225216 +0.1862481 0.5725335 0.5225216 +0.2140411 0.5725335 0.5225216 +0.2441142 0.5725335 0.5225216 +0.2765176 0.5725335 0.5225216 +0.3113005 0.5725335 0.5225216 +0.3485102 0.5725335 0.5225216 +0.388193 0.5725335 0.5225216 +0.4303934 0.5725335 0.5225216 +0.4751555 0.5725335 0.5225216 +0.5225216 0.5725335 0.5225216 +0.5725335 0.5725335 0.5225216 +0.6252316 0.5725335 0.5225216 +0.6806558 0.5725335 0.5225216 +0.7388448 0.5725335 0.5225216 +0.7998369 0.5725335 0.5225216 +0.8636691 0.5725335 0.5225216 +0.9303782 0.5725335 0.5225216 +1 0.5725335 0.5225216 +0 0.6252316 0.5225216 +0.002418731 0.6252316 0.5225216 +0.005155668 0.6252316 0.5225216 +0.009080105 0.6252316 0.5225216 +0.01434988 0.6252316 0.5225216 +0.02107202 0.6252316 0.5225216 +0.02934285 0.6252316 0.5225216 +0.03925039 0.6252316 0.5225216 +0.05087609 0.6252316 0.5225216 +0.06429595 0.6252316 0.5225216 +0.07958143 0.6252316 0.5225216 +0.0968001 0.6252316 0.5225216 +0.1160161 0.6252316 0.5225216 +0.1372908 0.6252316 0.5225216 +0.1606827 0.6252316 0.5225216 +0.1862481 0.6252316 0.5225216 +0.2140411 0.6252316 0.5225216 +0.2441142 0.6252316 0.5225216 +0.2765176 0.6252316 0.5225216 +0.3113005 0.6252316 0.5225216 +0.3485102 0.6252316 0.5225216 +0.388193 0.6252316 0.5225216 +0.4303934 0.6252316 0.5225216 +0.4751555 0.6252316 0.5225216 +0.5225216 0.6252316 0.5225216 +0.5725335 0.6252316 0.5225216 +0.6252316 0.6252316 0.5225216 +0.6806558 0.6252316 0.5225216 +0.7388448 0.6252316 0.5225216 +0.7998369 0.6252316 0.5225216 +0.8636691 0.6252316 0.5225216 +0.9303782 0.6252316 0.5225216 +1 0.6252316 0.5225216 +0 0.6806558 0.5225216 +0.002418731 0.6806558 0.5225216 +0.005155668 0.6806558 0.5225216 +0.009080105 0.6806558 0.5225216 +0.01434988 0.6806558 0.5225216 +0.02107202 0.6806558 0.5225216 +0.02934285 0.6806558 0.5225216 +0.03925039 0.6806558 0.5225216 +0.05087609 0.6806558 0.5225216 +0.06429595 0.6806558 0.5225216 +0.07958143 0.6806558 0.5225216 +0.0968001 0.6806558 0.5225216 +0.1160161 0.6806558 0.5225216 +0.1372908 0.6806558 0.5225216 +0.1606827 0.6806558 0.5225216 +0.1862481 0.6806558 0.5225216 +0.2140411 0.6806558 0.5225216 +0.2441142 0.6806558 0.5225216 +0.2765176 0.6806558 0.5225216 +0.3113005 0.6806558 0.5225216 +0.3485102 0.6806558 0.5225216 +0.388193 0.6806558 0.5225216 +0.4303934 0.6806558 0.5225216 +0.4751555 0.6806558 0.5225216 +0.5225216 0.6806558 0.5225216 +0.5725335 0.6806558 0.5225216 +0.6252316 0.6806558 0.5225216 +0.6806558 0.6806558 0.5225216 +0.7388448 0.6806558 0.5225216 +0.7998369 0.6806558 0.5225216 +0.8636691 0.6806558 0.5225216 +0.9303782 0.6806558 0.5225216 +1 0.6806558 0.5225216 +0 0.7388448 0.5225216 +0.002418731 0.7388448 0.5225216 +0.005155668 0.7388448 0.5225216 +0.009080105 0.7388448 0.5225216 +0.01434988 0.7388448 0.5225216 +0.02107202 0.7388448 0.5225216 +0.02934285 0.7388448 0.5225216 +0.03925039 0.7388448 0.5225216 +0.05087609 0.7388448 0.5225216 +0.06429595 0.7388448 0.5225216 +0.07958143 0.7388448 0.5225216 +0.0968001 0.7388448 0.5225216 +0.1160161 0.7388448 0.5225216 +0.1372908 0.7388448 0.5225216 +0.1606827 0.7388448 0.5225216 +0.1862481 0.7388448 0.5225216 +0.2140411 0.7388448 0.5225216 +0.2441142 0.7388448 0.5225216 +0.2765176 0.7388448 0.5225216 +0.3113005 0.7388448 0.5225216 +0.3485102 0.7388448 0.5225216 +0.388193 0.7388448 0.5225216 +0.4303934 0.7388448 0.5225216 +0.4751555 0.7388448 0.5225216 +0.5225216 0.7388448 0.5225216 +0.5725335 0.7388448 0.5225216 +0.6252316 0.7388448 0.5225216 +0.6806558 0.7388448 0.5225216 +0.7388448 0.7388448 0.5225216 +0.7998369 0.7388448 0.5225216 +0.8636691 0.7388448 0.5225216 +0.9303782 0.7388448 0.5225216 +1 0.7388448 0.5225216 +0 0.7998369 0.5225216 +0.002418731 0.7998369 0.5225216 +0.005155668 0.7998369 0.5225216 +0.009080105 0.7998369 0.5225216 +0.01434988 0.7998369 0.5225216 +0.02107202 0.7998369 0.5225216 +0.02934285 0.7998369 0.5225216 +0.03925039 0.7998369 0.5225216 +0.05087609 0.7998369 0.5225216 +0.06429595 0.7998369 0.5225216 +0.07958143 0.7998369 0.5225216 +0.0968001 0.7998369 0.5225216 +0.1160161 0.7998369 0.5225216 +0.1372908 0.7998369 0.5225216 +0.1606827 0.7998369 0.5225216 +0.1862481 0.7998369 0.5225216 +0.2140411 0.7998369 0.5225216 +0.2441142 0.7998369 0.5225216 +0.2765176 0.7998369 0.5225216 +0.3113005 0.7998369 0.5225216 +0.3485102 0.7998369 0.5225216 +0.388193 0.7998369 0.5225216 +0.4303934 0.7998369 0.5225216 +0.4751555 0.7998369 0.5225216 +0.5225216 0.7998369 0.5225216 +0.5725335 0.7998369 0.5225216 +0.6252316 0.7998369 0.5225216 +0.6806558 0.7998369 0.5225216 +0.7388448 0.7998369 0.5225216 +0.7998369 0.7998369 0.5225216 +0.8636691 0.7998369 0.5225216 +0.9303782 0.7998369 0.5225216 +1 0.7998369 0.5225216 +0 0.8636691 0.5225216 +0.002418731 0.8636691 0.5225216 +0.005155668 0.8636691 0.5225216 +0.009080105 0.8636691 0.5225216 +0.01434988 0.8636691 0.5225216 +0.02107202 0.8636691 0.5225216 +0.02934285 0.8636691 0.5225216 +0.03925039 0.8636691 0.5225216 +0.05087609 0.8636691 0.5225216 +0.06429595 0.8636691 0.5225216 +0.07958143 0.8636691 0.5225216 +0.0968001 0.8636691 0.5225216 +0.1160161 0.8636691 0.5225216 +0.1372908 0.8636691 0.5225216 +0.1606827 0.8636691 0.5225216 +0.1862481 0.8636691 0.5225216 +0.2140411 0.8636691 0.5225216 +0.2441142 0.8636691 0.5225216 +0.2765176 0.8636691 0.5225216 +0.3113005 0.8636691 0.5225216 +0.3485102 0.8636691 0.5225216 +0.388193 0.8636691 0.5225216 +0.4303934 0.8636691 0.5225216 +0.4751555 0.8636691 0.5225216 +0.5225216 0.8636691 0.5225216 +0.5725335 0.8636691 0.5225216 +0.6252316 0.8636691 0.5225216 +0.6806558 0.8636691 0.5225216 +0.7388448 0.8636691 0.5225216 +0.7998369 0.8636691 0.5225216 +0.8636691 0.8636691 0.5225216 +0.9303782 0.8636691 0.5225216 +1 0.8636691 0.5225216 +0 0.9303782 0.5225216 +0.002418731 0.9303782 0.5225216 +0.005155668 0.9303782 0.5225216 +0.009080105 0.9303782 0.5225216 +0.01434988 0.9303782 0.5225216 +0.02107202 0.9303782 0.5225216 +0.02934285 0.9303782 0.5225216 +0.03925039 0.9303782 0.5225216 +0.05087609 0.9303782 0.5225216 +0.06429595 0.9303782 0.5225216 +0.07958143 0.9303782 0.5225216 +0.0968001 0.9303782 0.5225216 +0.1160161 0.9303782 0.5225216 +0.1372908 0.9303782 0.5225216 +0.1606827 0.9303782 0.5225216 +0.1862481 0.9303782 0.5225216 +0.2140411 0.9303782 0.5225216 +0.2441142 0.9303782 0.5225216 +0.2765176 0.9303782 0.5225216 +0.3113005 0.9303782 0.5225216 +0.3485102 0.9303782 0.5225216 +0.388193 0.9303782 0.5225216 +0.4303934 0.9303782 0.5225216 +0.4751555 0.9303782 0.5225216 +0.5225216 0.9303782 0.5225216 +0.5725335 0.9303782 0.5225216 +0.6252316 0.9303782 0.5225216 +0.6806558 0.9303782 0.5225216 +0.7388448 0.9303782 0.5225216 +0.7998369 0.9303782 0.5225216 +0.8636691 0.9303782 0.5225216 +0.9303782 0.9303782 0.5225216 +1 0.9303782 0.5225216 +0 1 0.5225216 +0.002418731 1 0.5225216 +0.005155668 1 0.5225216 +0.009080105 1 0.5225216 +0.01434988 1 0.5225216 +0.02107202 1 0.5225216 +0.02934285 1 0.5225216 +0.03925039 1 0.5225216 +0.05087609 1 0.5225216 +0.06429595 1 0.5225216 +0.07958143 1 0.5225216 +0.0968001 1 0.5225216 +0.1160161 1 0.5225216 +0.1372908 1 0.5225216 +0.1606827 1 0.5225216 +0.1862481 1 0.5225216 +0.2140411 1 0.5225216 +0.2441142 1 0.5225216 +0.2765176 1 0.5225216 +0.3113005 1 0.5225216 +0.3485102 1 0.5225216 +0.388193 1 0.5225216 +0.4303934 1 0.5225216 +0.4751555 1 0.5225216 +0.5225216 1 0.5225216 +0.5725335 1 0.5225216 +0.6252316 1 0.5225216 +0.6806558 1 0.5225216 +0.7388448 1 0.5225216 +0.7998369 1 0.5225216 +0.8636691 1 0.5225216 +0.9303782 1 0.5225216 +1 1 0.5225216 +0 0 0.5725335 +0.002418731 0 0.5725335 +0.005155668 0 0.5725335 +0.009080105 0 0.5725335 +0.01434988 0 0.5725335 +0.02107202 0 0.5725335 +0.02934285 0 0.5725335 +0.03925039 0 0.5725335 +0.05087609 0 0.5725335 +0.06429595 0 0.5725335 +0.07958143 0 0.5725335 +0.0968001 0 0.5725335 +0.1160161 0 0.5725335 +0.1372908 0 0.5725335 +0.1606827 0 0.5725335 +0.1862481 0 0.5725335 +0.2140411 0 0.5725335 +0.2441142 0 0.5725335 +0.2765176 0 0.5725335 +0.3113005 0 0.5725335 +0.3485102 0 0.5725335 +0.388193 0 0.5725335 +0.4303934 0 0.5725335 +0.4751555 0 0.5725335 +0.5225216 0 0.5725335 +0.5725335 0 0.5725335 +0.6252316 0 0.5725335 +0.6806558 0 0.5725335 +0.7388448 0 0.5725335 +0.7998369 0 0.5725335 +0.8636691 0 0.5725335 +0.9303782 0 0.5725335 +1 0 0.5725335 +0 0.002418731 0.5725335 +0.002418731 0.002418731 0.5725335 +0.005155668 0.002418731 0.5725335 +0.009080105 0.002418731 0.5725335 +0.01434988 0.002418731 0.5725335 +0.02107202 0.002418731 0.5725335 +0.02934285 0.002418731 0.5725335 +0.03925039 0.002418731 0.5725335 +0.05087609 0.002418731 0.5725335 +0.06429595 0.002418731 0.5725335 +0.07958143 0.002418731 0.5725335 +0.0968001 0.002418731 0.5725335 +0.1160161 0.002418731 0.5725335 +0.1372908 0.002418731 0.5725335 +0.1606827 0.002418731 0.5725335 +0.1862481 0.002418731 0.5725335 +0.2140411 0.002418731 0.5725335 +0.2441142 0.002418731 0.5725335 +0.2765176 0.002418731 0.5725335 +0.3113005 0.002418731 0.5725335 +0.3485102 0.002418731 0.5725335 +0.388193 0.002418731 0.5725335 +0.4303934 0.002418731 0.5725335 +0.4751555 0.002418731 0.5725335 +0.5225216 0.002418731 0.5725335 +0.5725335 0.002418731 0.5725335 +0.6252316 0.002418731 0.5725335 +0.6806558 0.002418731 0.5725335 +0.7388448 0.002418731 0.5725335 +0.7998369 0.002418731 0.5725335 +0.8636691 0.002418731 0.5725335 +0.9303782 0.002418731 0.5725335 +1 0.002418731 0.5725335 +0 0.005155668 0.5725335 +0.002418731 0.005155668 0.5725335 +0.005155668 0.005155668 0.5725335 +0.009080105 0.005155668 0.5725335 +0.01434988 0.005155668 0.5725335 +0.02107202 0.005155668 0.5725335 +0.02934285 0.005155668 0.5725335 +0.03925039 0.005155668 0.5725335 +0.05087609 0.005155668 0.5725335 +0.06429595 0.005155668 0.5725335 +0.07958143 0.005155668 0.5725335 +0.0968001 0.005155668 0.5725335 +0.1160161 0.005155668 0.5725335 +0.1372908 0.005155668 0.5725335 +0.1606827 0.005155668 0.5725335 +0.1862481 0.005155668 0.5725335 +0.2140411 0.005155668 0.5725335 +0.2441142 0.005155668 0.5725335 +0.2765176 0.005155668 0.5725335 +0.3113005 0.005155668 0.5725335 +0.3485102 0.005155668 0.5725335 +0.388193 0.005155668 0.5725335 +0.4303934 0.005155668 0.5725335 +0.4751555 0.005155668 0.5725335 +0.5225216 0.005155668 0.5725335 +0.5725335 0.005155668 0.5725335 +0.6252316 0.005155668 0.5725335 +0.6806558 0.005155668 0.5725335 +0.7388448 0.005155668 0.5725335 +0.7998369 0.005155668 0.5725335 +0.8636691 0.005155668 0.5725335 +0.9303782 0.005155668 0.5725335 +1 0.005155668 0.5725335 +0 0.009080105 0.5725335 +0.002418731 0.009080105 0.5725335 +0.005155668 0.009080105 0.5725335 +0.009080105 0.009080105 0.5725335 +0.01434988 0.009080105 0.5725335 +0.02107202 0.009080105 0.5725335 +0.02934285 0.009080105 0.5725335 +0.03925039 0.009080105 0.5725335 +0.05087609 0.009080105 0.5725335 +0.06429595 0.009080105 0.5725335 +0.07958143 0.009080105 0.5725335 +0.0968001 0.009080105 0.5725335 +0.1160161 0.009080105 0.5725335 +0.1372908 0.009080105 0.5725335 +0.1606827 0.009080105 0.5725335 +0.1862481 0.009080105 0.5725335 +0.2140411 0.009080105 0.5725335 +0.2441142 0.009080105 0.5725335 +0.2765176 0.009080105 0.5725335 +0.3113005 0.009080105 0.5725335 +0.3485102 0.009080105 0.5725335 +0.388193 0.009080105 0.5725335 +0.4303934 0.009080105 0.5725335 +0.4751555 0.009080105 0.5725335 +0.5225216 0.009080105 0.5725335 +0.5725335 0.009080105 0.5725335 +0.6252316 0.009080105 0.5725335 +0.6806558 0.009080105 0.5725335 +0.7388448 0.009080105 0.5725335 +0.7998369 0.009080105 0.5725335 +0.8636691 0.009080105 0.5725335 +0.9303782 0.009080105 0.5725335 +1 0.009080105 0.5725335 +0 0.01434988 0.5725335 +0.002418731 0.01434988 0.5725335 +0.005155668 0.01434988 0.5725335 +0.009080105 0.01434988 0.5725335 +0.01434988 0.01434988 0.5725335 +0.02107202 0.01434988 0.5725335 +0.02934285 0.01434988 0.5725335 +0.03925039 0.01434988 0.5725335 +0.05087609 0.01434988 0.5725335 +0.06429595 0.01434988 0.5725335 +0.07958143 0.01434988 0.5725335 +0.0968001 0.01434988 0.5725335 +0.1160161 0.01434988 0.5725335 +0.1372908 0.01434988 0.5725335 +0.1606827 0.01434988 0.5725335 +0.1862481 0.01434988 0.5725335 +0.2140411 0.01434988 0.5725335 +0.2441142 0.01434988 0.5725335 +0.2765176 0.01434988 0.5725335 +0.3113005 0.01434988 0.5725335 +0.3485102 0.01434988 0.5725335 +0.388193 0.01434988 0.5725335 +0.4303934 0.01434988 0.5725335 +0.4751555 0.01434988 0.5725335 +0.5225216 0.01434988 0.5725335 +0.5725335 0.01434988 0.5725335 +0.6252316 0.01434988 0.5725335 +0.6806558 0.01434988 0.5725335 +0.7388448 0.01434988 0.5725335 +0.7998369 0.01434988 0.5725335 +0.8636691 0.01434988 0.5725335 +0.9303782 0.01434988 0.5725335 +1 0.01434988 0.5725335 +0 0.02107202 0.5725335 +0.002418731 0.02107202 0.5725335 +0.005155668 0.02107202 0.5725335 +0.009080105 0.02107202 0.5725335 +0.01434988 0.02107202 0.5725335 +0.02107202 0.02107202 0.5725335 +0.02934285 0.02107202 0.5725335 +0.03925039 0.02107202 0.5725335 +0.05087609 0.02107202 0.5725335 +0.06429595 0.02107202 0.5725335 +0.07958143 0.02107202 0.5725335 +0.0968001 0.02107202 0.5725335 +0.1160161 0.02107202 0.5725335 +0.1372908 0.02107202 0.5725335 +0.1606827 0.02107202 0.5725335 +0.1862481 0.02107202 0.5725335 +0.2140411 0.02107202 0.5725335 +0.2441142 0.02107202 0.5725335 +0.2765176 0.02107202 0.5725335 +0.3113005 0.02107202 0.5725335 +0.3485102 0.02107202 0.5725335 +0.388193 0.02107202 0.5725335 +0.4303934 0.02107202 0.5725335 +0.4751555 0.02107202 0.5725335 +0.5225216 0.02107202 0.5725335 +0.5725335 0.02107202 0.5725335 +0.6252316 0.02107202 0.5725335 +0.6806558 0.02107202 0.5725335 +0.7388448 0.02107202 0.5725335 +0.7998369 0.02107202 0.5725335 +0.8636691 0.02107202 0.5725335 +0.9303782 0.02107202 0.5725335 +1 0.02107202 0.5725335 +0 0.02934285 0.5725335 +0.002418731 0.02934285 0.5725335 +0.005155668 0.02934285 0.5725335 +0.009080105 0.02934285 0.5725335 +0.01434988 0.02934285 0.5725335 +0.02107202 0.02934285 0.5725335 +0.02934285 0.02934285 0.5725335 +0.03925039 0.02934285 0.5725335 +0.05087609 0.02934285 0.5725335 +0.06429595 0.02934285 0.5725335 +0.07958143 0.02934285 0.5725335 +0.0968001 0.02934285 0.5725335 +0.1160161 0.02934285 0.5725335 +0.1372908 0.02934285 0.5725335 +0.1606827 0.02934285 0.5725335 +0.1862481 0.02934285 0.5725335 +0.2140411 0.02934285 0.5725335 +0.2441142 0.02934285 0.5725335 +0.2765176 0.02934285 0.5725335 +0.3113005 0.02934285 0.5725335 +0.3485102 0.02934285 0.5725335 +0.388193 0.02934285 0.5725335 +0.4303934 0.02934285 0.5725335 +0.4751555 0.02934285 0.5725335 +0.5225216 0.02934285 0.5725335 +0.5725335 0.02934285 0.5725335 +0.6252316 0.02934285 0.5725335 +0.6806558 0.02934285 0.5725335 +0.7388448 0.02934285 0.5725335 +0.7998369 0.02934285 0.5725335 +0.8636691 0.02934285 0.5725335 +0.9303782 0.02934285 0.5725335 +1 0.02934285 0.5725335 +0 0.03925039 0.5725335 +0.002418731 0.03925039 0.5725335 +0.005155668 0.03925039 0.5725335 +0.009080105 0.03925039 0.5725335 +0.01434988 0.03925039 0.5725335 +0.02107202 0.03925039 0.5725335 +0.02934285 0.03925039 0.5725335 +0.03925039 0.03925039 0.5725335 +0.05087609 0.03925039 0.5725335 +0.06429595 0.03925039 0.5725335 +0.07958143 0.03925039 0.5725335 +0.0968001 0.03925039 0.5725335 +0.1160161 0.03925039 0.5725335 +0.1372908 0.03925039 0.5725335 +0.1606827 0.03925039 0.5725335 +0.1862481 0.03925039 0.5725335 +0.2140411 0.03925039 0.5725335 +0.2441142 0.03925039 0.5725335 +0.2765176 0.03925039 0.5725335 +0.3113005 0.03925039 0.5725335 +0.3485102 0.03925039 0.5725335 +0.388193 0.03925039 0.5725335 +0.4303934 0.03925039 0.5725335 +0.4751555 0.03925039 0.5725335 +0.5225216 0.03925039 0.5725335 +0.5725335 0.03925039 0.5725335 +0.6252316 0.03925039 0.5725335 +0.6806558 0.03925039 0.5725335 +0.7388448 0.03925039 0.5725335 +0.7998369 0.03925039 0.5725335 +0.8636691 0.03925039 0.5725335 +0.9303782 0.03925039 0.5725335 +1 0.03925039 0.5725335 +0 0.05087609 0.5725335 +0.002418731 0.05087609 0.5725335 +0.005155668 0.05087609 0.5725335 +0.009080105 0.05087609 0.5725335 +0.01434988 0.05087609 0.5725335 +0.02107202 0.05087609 0.5725335 +0.02934285 0.05087609 0.5725335 +0.03925039 0.05087609 0.5725335 +0.05087609 0.05087609 0.5725335 +0.06429595 0.05087609 0.5725335 +0.07958143 0.05087609 0.5725335 +0.0968001 0.05087609 0.5725335 +0.1160161 0.05087609 0.5725335 +0.1372908 0.05087609 0.5725335 +0.1606827 0.05087609 0.5725335 +0.1862481 0.05087609 0.5725335 +0.2140411 0.05087609 0.5725335 +0.2441142 0.05087609 0.5725335 +0.2765176 0.05087609 0.5725335 +0.3113005 0.05087609 0.5725335 +0.3485102 0.05087609 0.5725335 +0.388193 0.05087609 0.5725335 +0.4303934 0.05087609 0.5725335 +0.4751555 0.05087609 0.5725335 +0.5225216 0.05087609 0.5725335 +0.5725335 0.05087609 0.5725335 +0.6252316 0.05087609 0.5725335 +0.6806558 0.05087609 0.5725335 +0.7388448 0.05087609 0.5725335 +0.7998369 0.05087609 0.5725335 +0.8636691 0.05087609 0.5725335 +0.9303782 0.05087609 0.5725335 +1 0.05087609 0.5725335 +0 0.06429595 0.5725335 +0.002418731 0.06429595 0.5725335 +0.005155668 0.06429595 0.5725335 +0.009080105 0.06429595 0.5725335 +0.01434988 0.06429595 0.5725335 +0.02107202 0.06429595 0.5725335 +0.02934285 0.06429595 0.5725335 +0.03925039 0.06429595 0.5725335 +0.05087609 0.06429595 0.5725335 +0.06429595 0.06429595 0.5725335 +0.07958143 0.06429595 0.5725335 +0.0968001 0.06429595 0.5725335 +0.1160161 0.06429595 0.5725335 +0.1372908 0.06429595 0.5725335 +0.1606827 0.06429595 0.5725335 +0.1862481 0.06429595 0.5725335 +0.2140411 0.06429595 0.5725335 +0.2441142 0.06429595 0.5725335 +0.2765176 0.06429595 0.5725335 +0.3113005 0.06429595 0.5725335 +0.3485102 0.06429595 0.5725335 +0.388193 0.06429595 0.5725335 +0.4303934 0.06429595 0.5725335 +0.4751555 0.06429595 0.5725335 +0.5225216 0.06429595 0.5725335 +0.5725335 0.06429595 0.5725335 +0.6252316 0.06429595 0.5725335 +0.6806558 0.06429595 0.5725335 +0.7388448 0.06429595 0.5725335 +0.7998369 0.06429595 0.5725335 +0.8636691 0.06429595 0.5725335 +0.9303782 0.06429595 0.5725335 +1 0.06429595 0.5725335 +0 0.07958143 0.5725335 +0.002418731 0.07958143 0.5725335 +0.005155668 0.07958143 0.5725335 +0.009080105 0.07958143 0.5725335 +0.01434988 0.07958143 0.5725335 +0.02107202 0.07958143 0.5725335 +0.02934285 0.07958143 0.5725335 +0.03925039 0.07958143 0.5725335 +0.05087609 0.07958143 0.5725335 +0.06429595 0.07958143 0.5725335 +0.07958143 0.07958143 0.5725335 +0.0968001 0.07958143 0.5725335 +0.1160161 0.07958143 0.5725335 +0.1372908 0.07958143 0.5725335 +0.1606827 0.07958143 0.5725335 +0.1862481 0.07958143 0.5725335 +0.2140411 0.07958143 0.5725335 +0.2441142 0.07958143 0.5725335 +0.2765176 0.07958143 0.5725335 +0.3113005 0.07958143 0.5725335 +0.3485102 0.07958143 0.5725335 +0.388193 0.07958143 0.5725335 +0.4303934 0.07958143 0.5725335 +0.4751555 0.07958143 0.5725335 +0.5225216 0.07958143 0.5725335 +0.5725335 0.07958143 0.5725335 +0.6252316 0.07958143 0.5725335 +0.6806558 0.07958143 0.5725335 +0.7388448 0.07958143 0.5725335 +0.7998369 0.07958143 0.5725335 +0.8636691 0.07958143 0.5725335 +0.9303782 0.07958143 0.5725335 +1 0.07958143 0.5725335 +0 0.0968001 0.5725335 +0.002418731 0.0968001 0.5725335 +0.005155668 0.0968001 0.5725335 +0.009080105 0.0968001 0.5725335 +0.01434988 0.0968001 0.5725335 +0.02107202 0.0968001 0.5725335 +0.02934285 0.0968001 0.5725335 +0.03925039 0.0968001 0.5725335 +0.05087609 0.0968001 0.5725335 +0.06429595 0.0968001 0.5725335 +0.07958143 0.0968001 0.5725335 +0.0968001 0.0968001 0.5725335 +0.1160161 0.0968001 0.5725335 +0.1372908 0.0968001 0.5725335 +0.1606827 0.0968001 0.5725335 +0.1862481 0.0968001 0.5725335 +0.2140411 0.0968001 0.5725335 +0.2441142 0.0968001 0.5725335 +0.2765176 0.0968001 0.5725335 +0.3113005 0.0968001 0.5725335 +0.3485102 0.0968001 0.5725335 +0.388193 0.0968001 0.5725335 +0.4303934 0.0968001 0.5725335 +0.4751555 0.0968001 0.5725335 +0.5225216 0.0968001 0.5725335 +0.5725335 0.0968001 0.5725335 +0.6252316 0.0968001 0.5725335 +0.6806558 0.0968001 0.5725335 +0.7388448 0.0968001 0.5725335 +0.7998369 0.0968001 0.5725335 +0.8636691 0.0968001 0.5725335 +0.9303782 0.0968001 0.5725335 +1 0.0968001 0.5725335 +0 0.1160161 0.5725335 +0.002418731 0.1160161 0.5725335 +0.005155668 0.1160161 0.5725335 +0.009080105 0.1160161 0.5725335 +0.01434988 0.1160161 0.5725335 +0.02107202 0.1160161 0.5725335 +0.02934285 0.1160161 0.5725335 +0.03925039 0.1160161 0.5725335 +0.05087609 0.1160161 0.5725335 +0.06429595 0.1160161 0.5725335 +0.07958143 0.1160161 0.5725335 +0.0968001 0.1160161 0.5725335 +0.1160161 0.1160161 0.5725335 +0.1372908 0.1160161 0.5725335 +0.1606827 0.1160161 0.5725335 +0.1862481 0.1160161 0.5725335 +0.2140411 0.1160161 0.5725335 +0.2441142 0.1160161 0.5725335 +0.2765176 0.1160161 0.5725335 +0.3113005 0.1160161 0.5725335 +0.3485102 0.1160161 0.5725335 +0.388193 0.1160161 0.5725335 +0.4303934 0.1160161 0.5725335 +0.4751555 0.1160161 0.5725335 +0.5225216 0.1160161 0.5725335 +0.5725335 0.1160161 0.5725335 +0.6252316 0.1160161 0.5725335 +0.6806558 0.1160161 0.5725335 +0.7388448 0.1160161 0.5725335 +0.7998369 0.1160161 0.5725335 +0.8636691 0.1160161 0.5725335 +0.9303782 0.1160161 0.5725335 +1 0.1160161 0.5725335 +0 0.1372908 0.5725335 +0.002418731 0.1372908 0.5725335 +0.005155668 0.1372908 0.5725335 +0.009080105 0.1372908 0.5725335 +0.01434988 0.1372908 0.5725335 +0.02107202 0.1372908 0.5725335 +0.02934285 0.1372908 0.5725335 +0.03925039 0.1372908 0.5725335 +0.05087609 0.1372908 0.5725335 +0.06429595 0.1372908 0.5725335 +0.07958143 0.1372908 0.5725335 +0.0968001 0.1372908 0.5725335 +0.1160161 0.1372908 0.5725335 +0.1372908 0.1372908 0.5725335 +0.1606827 0.1372908 0.5725335 +0.1862481 0.1372908 0.5725335 +0.2140411 0.1372908 0.5725335 +0.2441142 0.1372908 0.5725335 +0.2765176 0.1372908 0.5725335 +0.3113005 0.1372908 0.5725335 +0.3485102 0.1372908 0.5725335 +0.388193 0.1372908 0.5725335 +0.4303934 0.1372908 0.5725335 +0.4751555 0.1372908 0.5725335 +0.5225216 0.1372908 0.5725335 +0.5725335 0.1372908 0.5725335 +0.6252316 0.1372908 0.5725335 +0.6806558 0.1372908 0.5725335 +0.7388448 0.1372908 0.5725335 +0.7998369 0.1372908 0.5725335 +0.8636691 0.1372908 0.5725335 +0.9303782 0.1372908 0.5725335 +1 0.1372908 0.5725335 +0 0.1606827 0.5725335 +0.002418731 0.1606827 0.5725335 +0.005155668 0.1606827 0.5725335 +0.009080105 0.1606827 0.5725335 +0.01434988 0.1606827 0.5725335 +0.02107202 0.1606827 0.5725335 +0.02934285 0.1606827 0.5725335 +0.03925039 0.1606827 0.5725335 +0.05087609 0.1606827 0.5725335 +0.06429595 0.1606827 0.5725335 +0.07958143 0.1606827 0.5725335 +0.0968001 0.1606827 0.5725335 +0.1160161 0.1606827 0.5725335 +0.1372908 0.1606827 0.5725335 +0.1606827 0.1606827 0.5725335 +0.1862481 0.1606827 0.5725335 +0.2140411 0.1606827 0.5725335 +0.2441142 0.1606827 0.5725335 +0.2765176 0.1606827 0.5725335 +0.3113005 0.1606827 0.5725335 +0.3485102 0.1606827 0.5725335 +0.388193 0.1606827 0.5725335 +0.4303934 0.1606827 0.5725335 +0.4751555 0.1606827 0.5725335 +0.5225216 0.1606827 0.5725335 +0.5725335 0.1606827 0.5725335 +0.6252316 0.1606827 0.5725335 +0.6806558 0.1606827 0.5725335 +0.7388448 0.1606827 0.5725335 +0.7998369 0.1606827 0.5725335 +0.8636691 0.1606827 0.5725335 +0.9303782 0.1606827 0.5725335 +1 0.1606827 0.5725335 +0 0.1862481 0.5725335 +0.002418731 0.1862481 0.5725335 +0.005155668 0.1862481 0.5725335 +0.009080105 0.1862481 0.5725335 +0.01434988 0.1862481 0.5725335 +0.02107202 0.1862481 0.5725335 +0.02934285 0.1862481 0.5725335 +0.03925039 0.1862481 0.5725335 +0.05087609 0.1862481 0.5725335 +0.06429595 0.1862481 0.5725335 +0.07958143 0.1862481 0.5725335 +0.0968001 0.1862481 0.5725335 +0.1160161 0.1862481 0.5725335 +0.1372908 0.1862481 0.5725335 +0.1606827 0.1862481 0.5725335 +0.1862481 0.1862481 0.5725335 +0.2140411 0.1862481 0.5725335 +0.2441142 0.1862481 0.5725335 +0.2765176 0.1862481 0.5725335 +0.3113005 0.1862481 0.5725335 +0.3485102 0.1862481 0.5725335 +0.388193 0.1862481 0.5725335 +0.4303934 0.1862481 0.5725335 +0.4751555 0.1862481 0.5725335 +0.5225216 0.1862481 0.5725335 +0.5725335 0.1862481 0.5725335 +0.6252316 0.1862481 0.5725335 +0.6806558 0.1862481 0.5725335 +0.7388448 0.1862481 0.5725335 +0.7998369 0.1862481 0.5725335 +0.8636691 0.1862481 0.5725335 +0.9303782 0.1862481 0.5725335 +1 0.1862481 0.5725335 +0 0.2140411 0.5725335 +0.002418731 0.2140411 0.5725335 +0.005155668 0.2140411 0.5725335 +0.009080105 0.2140411 0.5725335 +0.01434988 0.2140411 0.5725335 +0.02107202 0.2140411 0.5725335 +0.02934285 0.2140411 0.5725335 +0.03925039 0.2140411 0.5725335 +0.05087609 0.2140411 0.5725335 +0.06429595 0.2140411 0.5725335 +0.07958143 0.2140411 0.5725335 +0.0968001 0.2140411 0.5725335 +0.1160161 0.2140411 0.5725335 +0.1372908 0.2140411 0.5725335 +0.1606827 0.2140411 0.5725335 +0.1862481 0.2140411 0.5725335 +0.2140411 0.2140411 0.5725335 +0.2441142 0.2140411 0.5725335 +0.2765176 0.2140411 0.5725335 +0.3113005 0.2140411 0.5725335 +0.3485102 0.2140411 0.5725335 +0.388193 0.2140411 0.5725335 +0.4303934 0.2140411 0.5725335 +0.4751555 0.2140411 0.5725335 +0.5225216 0.2140411 0.5725335 +0.5725335 0.2140411 0.5725335 +0.6252316 0.2140411 0.5725335 +0.6806558 0.2140411 0.5725335 +0.7388448 0.2140411 0.5725335 +0.7998369 0.2140411 0.5725335 +0.8636691 0.2140411 0.5725335 +0.9303782 0.2140411 0.5725335 +1 0.2140411 0.5725335 +0 0.2441142 0.5725335 +0.002418731 0.2441142 0.5725335 +0.005155668 0.2441142 0.5725335 +0.009080105 0.2441142 0.5725335 +0.01434988 0.2441142 0.5725335 +0.02107202 0.2441142 0.5725335 +0.02934285 0.2441142 0.5725335 +0.03925039 0.2441142 0.5725335 +0.05087609 0.2441142 0.5725335 +0.06429595 0.2441142 0.5725335 +0.07958143 0.2441142 0.5725335 +0.0968001 0.2441142 0.5725335 +0.1160161 0.2441142 0.5725335 +0.1372908 0.2441142 0.5725335 +0.1606827 0.2441142 0.5725335 +0.1862481 0.2441142 0.5725335 +0.2140411 0.2441142 0.5725335 +0.2441142 0.2441142 0.5725335 +0.2765176 0.2441142 0.5725335 +0.3113005 0.2441142 0.5725335 +0.3485102 0.2441142 0.5725335 +0.388193 0.2441142 0.5725335 +0.4303934 0.2441142 0.5725335 +0.4751555 0.2441142 0.5725335 +0.5225216 0.2441142 0.5725335 +0.5725335 0.2441142 0.5725335 +0.6252316 0.2441142 0.5725335 +0.6806558 0.2441142 0.5725335 +0.7388448 0.2441142 0.5725335 +0.7998369 0.2441142 0.5725335 +0.8636691 0.2441142 0.5725335 +0.9303782 0.2441142 0.5725335 +1 0.2441142 0.5725335 +0 0.2765176 0.5725335 +0.002418731 0.2765176 0.5725335 +0.005155668 0.2765176 0.5725335 +0.009080105 0.2765176 0.5725335 +0.01434988 0.2765176 0.5725335 +0.02107202 0.2765176 0.5725335 +0.02934285 0.2765176 0.5725335 +0.03925039 0.2765176 0.5725335 +0.05087609 0.2765176 0.5725335 +0.06429595 0.2765176 0.5725335 +0.07958143 0.2765176 0.5725335 +0.0968001 0.2765176 0.5725335 +0.1160161 0.2765176 0.5725335 +0.1372908 0.2765176 0.5725335 +0.1606827 0.2765176 0.5725335 +0.1862481 0.2765176 0.5725335 +0.2140411 0.2765176 0.5725335 +0.2441142 0.2765176 0.5725335 +0.2765176 0.2765176 0.5725335 +0.3113005 0.2765176 0.5725335 +0.3485102 0.2765176 0.5725335 +0.388193 0.2765176 0.5725335 +0.4303934 0.2765176 0.5725335 +0.4751555 0.2765176 0.5725335 +0.5225216 0.2765176 0.5725335 +0.5725335 0.2765176 0.5725335 +0.6252316 0.2765176 0.5725335 +0.6806558 0.2765176 0.5725335 +0.7388448 0.2765176 0.5725335 +0.7998369 0.2765176 0.5725335 +0.8636691 0.2765176 0.5725335 +0.9303782 0.2765176 0.5725335 +1 0.2765176 0.5725335 +0 0.3113005 0.5725335 +0.002418731 0.3113005 0.5725335 +0.005155668 0.3113005 0.5725335 +0.009080105 0.3113005 0.5725335 +0.01434988 0.3113005 0.5725335 +0.02107202 0.3113005 0.5725335 +0.02934285 0.3113005 0.5725335 +0.03925039 0.3113005 0.5725335 +0.05087609 0.3113005 0.5725335 +0.06429595 0.3113005 0.5725335 +0.07958143 0.3113005 0.5725335 +0.0968001 0.3113005 0.5725335 +0.1160161 0.3113005 0.5725335 +0.1372908 0.3113005 0.5725335 +0.1606827 0.3113005 0.5725335 +0.1862481 0.3113005 0.5725335 +0.2140411 0.3113005 0.5725335 +0.2441142 0.3113005 0.5725335 +0.2765176 0.3113005 0.5725335 +0.3113005 0.3113005 0.5725335 +0.3485102 0.3113005 0.5725335 +0.388193 0.3113005 0.5725335 +0.4303934 0.3113005 0.5725335 +0.4751555 0.3113005 0.5725335 +0.5225216 0.3113005 0.5725335 +0.5725335 0.3113005 0.5725335 +0.6252316 0.3113005 0.5725335 +0.6806558 0.3113005 0.5725335 +0.7388448 0.3113005 0.5725335 +0.7998369 0.3113005 0.5725335 +0.8636691 0.3113005 0.5725335 +0.9303782 0.3113005 0.5725335 +1 0.3113005 0.5725335 +0 0.3485102 0.5725335 +0.002418731 0.3485102 0.5725335 +0.005155668 0.3485102 0.5725335 +0.009080105 0.3485102 0.5725335 +0.01434988 0.3485102 0.5725335 +0.02107202 0.3485102 0.5725335 +0.02934285 0.3485102 0.5725335 +0.03925039 0.3485102 0.5725335 +0.05087609 0.3485102 0.5725335 +0.06429595 0.3485102 0.5725335 +0.07958143 0.3485102 0.5725335 +0.0968001 0.3485102 0.5725335 +0.1160161 0.3485102 0.5725335 +0.1372908 0.3485102 0.5725335 +0.1606827 0.3485102 0.5725335 +0.1862481 0.3485102 0.5725335 +0.2140411 0.3485102 0.5725335 +0.2441142 0.3485102 0.5725335 +0.2765176 0.3485102 0.5725335 +0.3113005 0.3485102 0.5725335 +0.3485102 0.3485102 0.5725335 +0.388193 0.3485102 0.5725335 +0.4303934 0.3485102 0.5725335 +0.4751555 0.3485102 0.5725335 +0.5225216 0.3485102 0.5725335 +0.5725335 0.3485102 0.5725335 +0.6252316 0.3485102 0.5725335 +0.6806558 0.3485102 0.5725335 +0.7388448 0.3485102 0.5725335 +0.7998369 0.3485102 0.5725335 +0.8636691 0.3485102 0.5725335 +0.9303782 0.3485102 0.5725335 +1 0.3485102 0.5725335 +0 0.388193 0.5725335 +0.002418731 0.388193 0.5725335 +0.005155668 0.388193 0.5725335 +0.009080105 0.388193 0.5725335 +0.01434988 0.388193 0.5725335 +0.02107202 0.388193 0.5725335 +0.02934285 0.388193 0.5725335 +0.03925039 0.388193 0.5725335 +0.05087609 0.388193 0.5725335 +0.06429595 0.388193 0.5725335 +0.07958143 0.388193 0.5725335 +0.0968001 0.388193 0.5725335 +0.1160161 0.388193 0.5725335 +0.1372908 0.388193 0.5725335 +0.1606827 0.388193 0.5725335 +0.1862481 0.388193 0.5725335 +0.2140411 0.388193 0.5725335 +0.2441142 0.388193 0.5725335 +0.2765176 0.388193 0.5725335 +0.3113005 0.388193 0.5725335 +0.3485102 0.388193 0.5725335 +0.388193 0.388193 0.5725335 +0.4303934 0.388193 0.5725335 +0.4751555 0.388193 0.5725335 +0.5225216 0.388193 0.5725335 +0.5725335 0.388193 0.5725335 +0.6252316 0.388193 0.5725335 +0.6806558 0.388193 0.5725335 +0.7388448 0.388193 0.5725335 +0.7998369 0.388193 0.5725335 +0.8636691 0.388193 0.5725335 +0.9303782 0.388193 0.5725335 +1 0.388193 0.5725335 +0 0.4303934 0.5725335 +0.002418731 0.4303934 0.5725335 +0.005155668 0.4303934 0.5725335 +0.009080105 0.4303934 0.5725335 +0.01434988 0.4303934 0.5725335 +0.02107202 0.4303934 0.5725335 +0.02934285 0.4303934 0.5725335 +0.03925039 0.4303934 0.5725335 +0.05087609 0.4303934 0.5725335 +0.06429595 0.4303934 0.5725335 +0.07958143 0.4303934 0.5725335 +0.0968001 0.4303934 0.5725335 +0.1160161 0.4303934 0.5725335 +0.1372908 0.4303934 0.5725335 +0.1606827 0.4303934 0.5725335 +0.1862481 0.4303934 0.5725335 +0.2140411 0.4303934 0.5725335 +0.2441142 0.4303934 0.5725335 +0.2765176 0.4303934 0.5725335 +0.3113005 0.4303934 0.5725335 +0.3485102 0.4303934 0.5725335 +0.388193 0.4303934 0.5725335 +0.4303934 0.4303934 0.5725335 +0.4751555 0.4303934 0.5725335 +0.5225216 0.4303934 0.5725335 +0.5725335 0.4303934 0.5725335 +0.6252316 0.4303934 0.5725335 +0.6806558 0.4303934 0.5725335 +0.7388448 0.4303934 0.5725335 +0.7998369 0.4303934 0.5725335 +0.8636691 0.4303934 0.5725335 +0.9303782 0.4303934 0.5725335 +1 0.4303934 0.5725335 +0 0.4751555 0.5725335 +0.002418731 0.4751555 0.5725335 +0.005155668 0.4751555 0.5725335 +0.009080105 0.4751555 0.5725335 +0.01434988 0.4751555 0.5725335 +0.02107202 0.4751555 0.5725335 +0.02934285 0.4751555 0.5725335 +0.03925039 0.4751555 0.5725335 +0.05087609 0.4751555 0.5725335 +0.06429595 0.4751555 0.5725335 +0.07958143 0.4751555 0.5725335 +0.0968001 0.4751555 0.5725335 +0.1160161 0.4751555 0.5725335 +0.1372908 0.4751555 0.5725335 +0.1606827 0.4751555 0.5725335 +0.1862481 0.4751555 0.5725335 +0.2140411 0.4751555 0.5725335 +0.2441142 0.4751555 0.5725335 +0.2765176 0.4751555 0.5725335 +0.3113005 0.4751555 0.5725335 +0.3485102 0.4751555 0.5725335 +0.388193 0.4751555 0.5725335 +0.4303934 0.4751555 0.5725335 +0.4751555 0.4751555 0.5725335 +0.5225216 0.4751555 0.5725335 +0.5725335 0.4751555 0.5725335 +0.6252316 0.4751555 0.5725335 +0.6806558 0.4751555 0.5725335 +0.7388448 0.4751555 0.5725335 +0.7998369 0.4751555 0.5725335 +0.8636691 0.4751555 0.5725335 +0.9303782 0.4751555 0.5725335 +1 0.4751555 0.5725335 +0 0.5225216 0.5725335 +0.002418731 0.5225216 0.5725335 +0.005155668 0.5225216 0.5725335 +0.009080105 0.5225216 0.5725335 +0.01434988 0.5225216 0.5725335 +0.02107202 0.5225216 0.5725335 +0.02934285 0.5225216 0.5725335 +0.03925039 0.5225216 0.5725335 +0.05087609 0.5225216 0.5725335 +0.06429595 0.5225216 0.5725335 +0.07958143 0.5225216 0.5725335 +0.0968001 0.5225216 0.5725335 +0.1160161 0.5225216 0.5725335 +0.1372908 0.5225216 0.5725335 +0.1606827 0.5225216 0.5725335 +0.1862481 0.5225216 0.5725335 +0.2140411 0.5225216 0.5725335 +0.2441142 0.5225216 0.5725335 +0.2765176 0.5225216 0.5725335 +0.3113005 0.5225216 0.5725335 +0.3485102 0.5225216 0.5725335 +0.388193 0.5225216 0.5725335 +0.4303934 0.5225216 0.5725335 +0.4751555 0.5225216 0.5725335 +0.5225216 0.5225216 0.5725335 +0.5725335 0.5225216 0.5725335 +0.6252316 0.5225216 0.5725335 +0.6806558 0.5225216 0.5725335 +0.7388448 0.5225216 0.5725335 +0.7998369 0.5225216 0.5725335 +0.8636691 0.5225216 0.5725335 +0.9303782 0.5225216 0.5725335 +1 0.5225216 0.5725335 +0 0.5725335 0.5725335 +0.002418731 0.5725335 0.5725335 +0.005155668 0.5725335 0.5725335 +0.009080105 0.5725335 0.5725335 +0.01434988 0.5725335 0.5725335 +0.02107202 0.5725335 0.5725335 +0.02934285 0.5725335 0.5725335 +0.03925039 0.5725335 0.5725335 +0.05087609 0.5725335 0.5725335 +0.06429595 0.5725335 0.5725335 +0.07958143 0.5725335 0.5725335 +0.0968001 0.5725335 0.5725335 +0.1160161 0.5725335 0.5725335 +0.1372908 0.5725335 0.5725335 +0.1606827 0.5725335 0.5725335 +0.1862481 0.5725335 0.5725335 +0.2140411 0.5725335 0.5725335 +0.2441142 0.5725335 0.5725335 +0.2765176 0.5725335 0.5725335 +0.3113005 0.5725335 0.5725335 +0.3485102 0.5725335 0.5725335 +0.388193 0.5725335 0.5725335 +0.4303934 0.5725335 0.5725335 +0.4751555 0.5725335 0.5725335 +0.5225216 0.5725335 0.5725335 +0.5725335 0.5725335 0.5725335 +0.6252316 0.5725335 0.5725335 +0.6806558 0.5725335 0.5725335 +0.7388448 0.5725335 0.5725335 +0.7998369 0.5725335 0.5725335 +0.8636691 0.5725335 0.5725335 +0.9303782 0.5725335 0.5725335 +1 0.5725335 0.5725335 +0 0.6252316 0.5725335 +0.002418731 0.6252316 0.5725335 +0.005155668 0.6252316 0.5725335 +0.009080105 0.6252316 0.5725335 +0.01434988 0.6252316 0.5725335 +0.02107202 0.6252316 0.5725335 +0.02934285 0.6252316 0.5725335 +0.03925039 0.6252316 0.5725335 +0.05087609 0.6252316 0.5725335 +0.06429595 0.6252316 0.5725335 +0.07958143 0.6252316 0.5725335 +0.0968001 0.6252316 0.5725335 +0.1160161 0.6252316 0.5725335 +0.1372908 0.6252316 0.5725335 +0.1606827 0.6252316 0.5725335 +0.1862481 0.6252316 0.5725335 +0.2140411 0.6252316 0.5725335 +0.2441142 0.6252316 0.5725335 +0.2765176 0.6252316 0.5725335 +0.3113005 0.6252316 0.5725335 +0.3485102 0.6252316 0.5725335 +0.388193 0.6252316 0.5725335 +0.4303934 0.6252316 0.5725335 +0.4751555 0.6252316 0.5725335 +0.5225216 0.6252316 0.5725335 +0.5725335 0.6252316 0.5725335 +0.6252316 0.6252316 0.5725335 +0.6806558 0.6252316 0.5725335 +0.7388448 0.6252316 0.5725335 +0.7998369 0.6252316 0.5725335 +0.8636691 0.6252316 0.5725335 +0.9303782 0.6252316 0.5725335 +1 0.6252316 0.5725335 +0 0.6806558 0.5725335 +0.002418731 0.6806558 0.5725335 +0.005155668 0.6806558 0.5725335 +0.009080105 0.6806558 0.5725335 +0.01434988 0.6806558 0.5725335 +0.02107202 0.6806558 0.5725335 +0.02934285 0.6806558 0.5725335 +0.03925039 0.6806558 0.5725335 +0.05087609 0.6806558 0.5725335 +0.06429595 0.6806558 0.5725335 +0.07958143 0.6806558 0.5725335 +0.0968001 0.6806558 0.5725335 +0.1160161 0.6806558 0.5725335 +0.1372908 0.6806558 0.5725335 +0.1606827 0.6806558 0.5725335 +0.1862481 0.6806558 0.5725335 +0.2140411 0.6806558 0.5725335 +0.2441142 0.6806558 0.5725335 +0.2765176 0.6806558 0.5725335 +0.3113005 0.6806558 0.5725335 +0.3485102 0.6806558 0.5725335 +0.388193 0.6806558 0.5725335 +0.4303934 0.6806558 0.5725335 +0.4751555 0.6806558 0.5725335 +0.5225216 0.6806558 0.5725335 +0.5725335 0.6806558 0.5725335 +0.6252316 0.6806558 0.5725335 +0.6806558 0.6806558 0.5725335 +0.7388448 0.6806558 0.5725335 +0.7998369 0.6806558 0.5725335 +0.8636691 0.6806558 0.5725335 +0.9303782 0.6806558 0.5725335 +1 0.6806558 0.5725335 +0 0.7388448 0.5725335 +0.002418731 0.7388448 0.5725335 +0.005155668 0.7388448 0.5725335 +0.009080105 0.7388448 0.5725335 +0.01434988 0.7388448 0.5725335 +0.02107202 0.7388448 0.5725335 +0.02934285 0.7388448 0.5725335 +0.03925039 0.7388448 0.5725335 +0.05087609 0.7388448 0.5725335 +0.06429595 0.7388448 0.5725335 +0.07958143 0.7388448 0.5725335 +0.0968001 0.7388448 0.5725335 +0.1160161 0.7388448 0.5725335 +0.1372908 0.7388448 0.5725335 +0.1606827 0.7388448 0.5725335 +0.1862481 0.7388448 0.5725335 +0.2140411 0.7388448 0.5725335 +0.2441142 0.7388448 0.5725335 +0.2765176 0.7388448 0.5725335 +0.3113005 0.7388448 0.5725335 +0.3485102 0.7388448 0.5725335 +0.388193 0.7388448 0.5725335 +0.4303934 0.7388448 0.5725335 +0.4751555 0.7388448 0.5725335 +0.5225216 0.7388448 0.5725335 +0.5725335 0.7388448 0.5725335 +0.6252316 0.7388448 0.5725335 +0.6806558 0.7388448 0.5725335 +0.7388448 0.7388448 0.5725335 +0.7998369 0.7388448 0.5725335 +0.8636691 0.7388448 0.5725335 +0.9303782 0.7388448 0.5725335 +1 0.7388448 0.5725335 +0 0.7998369 0.5725335 +0.002418731 0.7998369 0.5725335 +0.005155668 0.7998369 0.5725335 +0.009080105 0.7998369 0.5725335 +0.01434988 0.7998369 0.5725335 +0.02107202 0.7998369 0.5725335 +0.02934285 0.7998369 0.5725335 +0.03925039 0.7998369 0.5725335 +0.05087609 0.7998369 0.5725335 +0.06429595 0.7998369 0.5725335 +0.07958143 0.7998369 0.5725335 +0.0968001 0.7998369 0.5725335 +0.1160161 0.7998369 0.5725335 +0.1372908 0.7998369 0.5725335 +0.1606827 0.7998369 0.5725335 +0.1862481 0.7998369 0.5725335 +0.2140411 0.7998369 0.5725335 +0.2441142 0.7998369 0.5725335 +0.2765176 0.7998369 0.5725335 +0.3113005 0.7998369 0.5725335 +0.3485102 0.7998369 0.5725335 +0.388193 0.7998369 0.5725335 +0.4303934 0.7998369 0.5725335 +0.4751555 0.7998369 0.5725335 +0.5225216 0.7998369 0.5725335 +0.5725335 0.7998369 0.5725335 +0.6252316 0.7998369 0.5725335 +0.6806558 0.7998369 0.5725335 +0.7388448 0.7998369 0.5725335 +0.7998369 0.7998369 0.5725335 +0.8636691 0.7998369 0.5725335 +0.9303782 0.7998369 0.5725335 +1 0.7998369 0.5725335 +0 0.8636691 0.5725335 +0.002418731 0.8636691 0.5725335 +0.005155668 0.8636691 0.5725335 +0.009080105 0.8636691 0.5725335 +0.01434988 0.8636691 0.5725335 +0.02107202 0.8636691 0.5725335 +0.02934285 0.8636691 0.5725335 +0.03925039 0.8636691 0.5725335 +0.05087609 0.8636691 0.5725335 +0.06429595 0.8636691 0.5725335 +0.07958143 0.8636691 0.5725335 +0.0968001 0.8636691 0.5725335 +0.1160161 0.8636691 0.5725335 +0.1372908 0.8636691 0.5725335 +0.1606827 0.8636691 0.5725335 +0.1862481 0.8636691 0.5725335 +0.2140411 0.8636691 0.5725335 +0.2441142 0.8636691 0.5725335 +0.2765176 0.8636691 0.5725335 +0.3113005 0.8636691 0.5725335 +0.3485102 0.8636691 0.5725335 +0.388193 0.8636691 0.5725335 +0.4303934 0.8636691 0.5725335 +0.4751555 0.8636691 0.5725335 +0.5225216 0.8636691 0.5725335 +0.5725335 0.8636691 0.5725335 +0.6252316 0.8636691 0.5725335 +0.6806558 0.8636691 0.5725335 +0.7388448 0.8636691 0.5725335 +0.7998369 0.8636691 0.5725335 +0.8636691 0.8636691 0.5725335 +0.9303782 0.8636691 0.5725335 +1 0.8636691 0.5725335 +0 0.9303782 0.5725335 +0.002418731 0.9303782 0.5725335 +0.005155668 0.9303782 0.5725335 +0.009080105 0.9303782 0.5725335 +0.01434988 0.9303782 0.5725335 +0.02107202 0.9303782 0.5725335 +0.02934285 0.9303782 0.5725335 +0.03925039 0.9303782 0.5725335 +0.05087609 0.9303782 0.5725335 +0.06429595 0.9303782 0.5725335 +0.07958143 0.9303782 0.5725335 +0.0968001 0.9303782 0.5725335 +0.1160161 0.9303782 0.5725335 +0.1372908 0.9303782 0.5725335 +0.1606827 0.9303782 0.5725335 +0.1862481 0.9303782 0.5725335 +0.2140411 0.9303782 0.5725335 +0.2441142 0.9303782 0.5725335 +0.2765176 0.9303782 0.5725335 +0.3113005 0.9303782 0.5725335 +0.3485102 0.9303782 0.5725335 +0.388193 0.9303782 0.5725335 +0.4303934 0.9303782 0.5725335 +0.4751555 0.9303782 0.5725335 +0.5225216 0.9303782 0.5725335 +0.5725335 0.9303782 0.5725335 +0.6252316 0.9303782 0.5725335 +0.6806558 0.9303782 0.5725335 +0.7388448 0.9303782 0.5725335 +0.7998369 0.9303782 0.5725335 +0.8636691 0.9303782 0.5725335 +0.9303782 0.9303782 0.5725335 +1 0.9303782 0.5725335 +0 1 0.5725335 +0.002418731 1 0.5725335 +0.005155668 1 0.5725335 +0.009080105 1 0.5725335 +0.01434988 1 0.5725335 +0.02107202 1 0.5725335 +0.02934285 1 0.5725335 +0.03925039 1 0.5725335 +0.05087609 1 0.5725335 +0.06429595 1 0.5725335 +0.07958143 1 0.5725335 +0.0968001 1 0.5725335 +0.1160161 1 0.5725335 +0.1372908 1 0.5725335 +0.1606827 1 0.5725335 +0.1862481 1 0.5725335 +0.2140411 1 0.5725335 +0.2441142 1 0.5725335 +0.2765176 1 0.5725335 +0.3113005 1 0.5725335 +0.3485102 1 0.5725335 +0.388193 1 0.5725335 +0.4303934 1 0.5725335 +0.4751555 1 0.5725335 +0.5225216 1 0.5725335 +0.5725335 1 0.5725335 +0.6252316 1 0.5725335 +0.6806558 1 0.5725335 +0.7388448 1 0.5725335 +0.7998369 1 0.5725335 +0.8636691 1 0.5725335 +0.9303782 1 0.5725335 +1 1 0.5725335 +0 0 0.6252316 +0.002418731 0 0.6252316 +0.005155668 0 0.6252316 +0.009080105 0 0.6252316 +0.01434988 0 0.6252316 +0.02107202 0 0.6252316 +0.02934285 0 0.6252316 +0.03925039 0 0.6252316 +0.05087609 0 0.6252316 +0.06429595 0 0.6252316 +0.07958143 0 0.6252316 +0.0968001 0 0.6252316 +0.1160161 0 0.6252316 +0.1372908 0 0.6252316 +0.1606827 0 0.6252316 +0.1862481 0 0.6252316 +0.2140411 0 0.6252316 +0.2441142 0 0.6252316 +0.2765176 0 0.6252316 +0.3113005 0 0.6252316 +0.3485102 0 0.6252316 +0.388193 0 0.6252316 +0.4303934 0 0.6252316 +0.4751555 0 0.6252316 +0.5225216 0 0.6252316 +0.5725335 0 0.6252316 +0.6252316 0 0.6252316 +0.6806558 0 0.6252316 +0.7388448 0 0.6252316 +0.7998369 0 0.6252316 +0.8636691 0 0.6252316 +0.9303782 0 0.6252316 +1 0 0.6252316 +0 0.002418731 0.6252316 +0.002418731 0.002418731 0.6252316 +0.005155668 0.002418731 0.6252316 +0.009080105 0.002418731 0.6252316 +0.01434988 0.002418731 0.6252316 +0.02107202 0.002418731 0.6252316 +0.02934285 0.002418731 0.6252316 +0.03925039 0.002418731 0.6252316 +0.05087609 0.002418731 0.6252316 +0.06429595 0.002418731 0.6252316 +0.07958143 0.002418731 0.6252316 +0.0968001 0.002418731 0.6252316 +0.1160161 0.002418731 0.6252316 +0.1372908 0.002418731 0.6252316 +0.1606827 0.002418731 0.6252316 +0.1862481 0.002418731 0.6252316 +0.2140411 0.002418731 0.6252316 +0.2441142 0.002418731 0.6252316 +0.2765176 0.002418731 0.6252316 +0.3113005 0.002418731 0.6252316 +0.3485102 0.002418731 0.6252316 +0.388193 0.002418731 0.6252316 +0.4303934 0.002418731 0.6252316 +0.4751555 0.002418731 0.6252316 +0.5225216 0.002418731 0.6252316 +0.5725335 0.002418731 0.6252316 +0.6252316 0.002418731 0.6252316 +0.6806558 0.002418731 0.6252316 +0.7388448 0.002418731 0.6252316 +0.7998369 0.002418731 0.6252316 +0.8636691 0.002418731 0.6252316 +0.9303782 0.002418731 0.6252316 +1 0.002418731 0.6252316 +0 0.005155668 0.6252316 +0.002418731 0.005155668 0.6252316 +0.005155668 0.005155668 0.6252316 +0.009080105 0.005155668 0.6252316 +0.01434988 0.005155668 0.6252316 +0.02107202 0.005155668 0.6252316 +0.02934285 0.005155668 0.6252316 +0.03925039 0.005155668 0.6252316 +0.05087609 0.005155668 0.6252316 +0.06429595 0.005155668 0.6252316 +0.07958143 0.005155668 0.6252316 +0.0968001 0.005155668 0.6252316 +0.1160161 0.005155668 0.6252316 +0.1372908 0.005155668 0.6252316 +0.1606827 0.005155668 0.6252316 +0.1862481 0.005155668 0.6252316 +0.2140411 0.005155668 0.6252316 +0.2441142 0.005155668 0.6252316 +0.2765176 0.005155668 0.6252316 +0.3113005 0.005155668 0.6252316 +0.3485102 0.005155668 0.6252316 +0.388193 0.005155668 0.6252316 +0.4303934 0.005155668 0.6252316 +0.4751555 0.005155668 0.6252316 +0.5225216 0.005155668 0.6252316 +0.5725335 0.005155668 0.6252316 +0.6252316 0.005155668 0.6252316 +0.6806558 0.005155668 0.6252316 +0.7388448 0.005155668 0.6252316 +0.7998369 0.005155668 0.6252316 +0.8636691 0.005155668 0.6252316 +0.9303782 0.005155668 0.6252316 +1 0.005155668 0.6252316 +0 0.009080105 0.6252316 +0.002418731 0.009080105 0.6252316 +0.005155668 0.009080105 0.6252316 +0.009080105 0.009080105 0.6252316 +0.01434988 0.009080105 0.6252316 +0.02107202 0.009080105 0.6252316 +0.02934285 0.009080105 0.6252316 +0.03925039 0.009080105 0.6252316 +0.05087609 0.009080105 0.6252316 +0.06429595 0.009080105 0.6252316 +0.07958143 0.009080105 0.6252316 +0.0968001 0.009080105 0.6252316 +0.1160161 0.009080105 0.6252316 +0.1372908 0.009080105 0.6252316 +0.1606827 0.009080105 0.6252316 +0.1862481 0.009080105 0.6252316 +0.2140411 0.009080105 0.6252316 +0.2441142 0.009080105 0.6252316 +0.2765176 0.009080105 0.6252316 +0.3113005 0.009080105 0.6252316 +0.3485102 0.009080105 0.6252316 +0.388193 0.009080105 0.6252316 +0.4303934 0.009080105 0.6252316 +0.4751555 0.009080105 0.6252316 +0.5225216 0.009080105 0.6252316 +0.5725335 0.009080105 0.6252316 +0.6252316 0.009080105 0.6252316 +0.6806558 0.009080105 0.6252316 +0.7388448 0.009080105 0.6252316 +0.7998369 0.009080105 0.6252316 +0.8636691 0.009080105 0.6252316 +0.9303782 0.009080105 0.6252316 +1 0.009080105 0.6252316 +0 0.01434988 0.6252316 +0.002418731 0.01434988 0.6252316 +0.005155668 0.01434988 0.6252316 +0.009080105 0.01434988 0.6252316 +0.01434988 0.01434988 0.6252316 +0.02107202 0.01434988 0.6252316 +0.02934285 0.01434988 0.6252316 +0.03925039 0.01434988 0.6252316 +0.05087609 0.01434988 0.6252316 +0.06429595 0.01434988 0.6252316 +0.07958143 0.01434988 0.6252316 +0.0968001 0.01434988 0.6252316 +0.1160161 0.01434988 0.6252316 +0.1372908 0.01434988 0.6252316 +0.1606827 0.01434988 0.6252316 +0.1862481 0.01434988 0.6252316 +0.2140411 0.01434988 0.6252316 +0.2441142 0.01434988 0.6252316 +0.2765176 0.01434988 0.6252316 +0.3113005 0.01434988 0.6252316 +0.3485102 0.01434988 0.6252316 +0.388193 0.01434988 0.6252316 +0.4303934 0.01434988 0.6252316 +0.4751555 0.01434988 0.6252316 +0.5225216 0.01434988 0.6252316 +0.5725335 0.01434988 0.6252316 +0.6252316 0.01434988 0.6252316 +0.6806558 0.01434988 0.6252316 +0.7388448 0.01434988 0.6252316 +0.7998369 0.01434988 0.6252316 +0.8636691 0.01434988 0.6252316 +0.9303782 0.01434988 0.6252316 +1 0.01434988 0.6252316 +0 0.02107202 0.6252316 +0.002418731 0.02107202 0.6252316 +0.005155668 0.02107202 0.6252316 +0.009080105 0.02107202 0.6252316 +0.01434988 0.02107202 0.6252316 +0.02107202 0.02107202 0.6252316 +0.02934285 0.02107202 0.6252316 +0.03925039 0.02107202 0.6252316 +0.05087609 0.02107202 0.6252316 +0.06429595 0.02107202 0.6252316 +0.07958143 0.02107202 0.6252316 +0.0968001 0.02107202 0.6252316 +0.1160161 0.02107202 0.6252316 +0.1372908 0.02107202 0.6252316 +0.1606827 0.02107202 0.6252316 +0.1862481 0.02107202 0.6252316 +0.2140411 0.02107202 0.6252316 +0.2441142 0.02107202 0.6252316 +0.2765176 0.02107202 0.6252316 +0.3113005 0.02107202 0.6252316 +0.3485102 0.02107202 0.6252316 +0.388193 0.02107202 0.6252316 +0.4303934 0.02107202 0.6252316 +0.4751555 0.02107202 0.6252316 +0.5225216 0.02107202 0.6252316 +0.5725335 0.02107202 0.6252316 +0.6252316 0.02107202 0.6252316 +0.6806558 0.02107202 0.6252316 +0.7388448 0.02107202 0.6252316 +0.7998369 0.02107202 0.6252316 +0.8636691 0.02107202 0.6252316 +0.9303782 0.02107202 0.6252316 +1 0.02107202 0.6252316 +0 0.02934285 0.6252316 +0.002418731 0.02934285 0.6252316 +0.005155668 0.02934285 0.6252316 +0.009080105 0.02934285 0.6252316 +0.01434988 0.02934285 0.6252316 +0.02107202 0.02934285 0.6252316 +0.02934285 0.02934285 0.6252316 +0.03925039 0.02934285 0.6252316 +0.05087609 0.02934285 0.6252316 +0.06429595 0.02934285 0.6252316 +0.07958143 0.02934285 0.6252316 +0.0968001 0.02934285 0.6252316 +0.1160161 0.02934285 0.6252316 +0.1372908 0.02934285 0.6252316 +0.1606827 0.02934285 0.6252316 +0.1862481 0.02934285 0.6252316 +0.2140411 0.02934285 0.6252316 +0.2441142 0.02934285 0.6252316 +0.2765176 0.02934285 0.6252316 +0.3113005 0.02934285 0.6252316 +0.3485102 0.02934285 0.6252316 +0.388193 0.02934285 0.6252316 +0.4303934 0.02934285 0.6252316 +0.4751555 0.02934285 0.6252316 +0.5225216 0.02934285 0.6252316 +0.5725335 0.02934285 0.6252316 +0.6252316 0.02934285 0.6252316 +0.6806558 0.02934285 0.6252316 +0.7388448 0.02934285 0.6252316 +0.7998369 0.02934285 0.6252316 +0.8636691 0.02934285 0.6252316 +0.9303782 0.02934285 0.6252316 +1 0.02934285 0.6252316 +0 0.03925039 0.6252316 +0.002418731 0.03925039 0.6252316 +0.005155668 0.03925039 0.6252316 +0.009080105 0.03925039 0.6252316 +0.01434988 0.03925039 0.6252316 +0.02107202 0.03925039 0.6252316 +0.02934285 0.03925039 0.6252316 +0.03925039 0.03925039 0.6252316 +0.05087609 0.03925039 0.6252316 +0.06429595 0.03925039 0.6252316 +0.07958143 0.03925039 0.6252316 +0.0968001 0.03925039 0.6252316 +0.1160161 0.03925039 0.6252316 +0.1372908 0.03925039 0.6252316 +0.1606827 0.03925039 0.6252316 +0.1862481 0.03925039 0.6252316 +0.2140411 0.03925039 0.6252316 +0.2441142 0.03925039 0.6252316 +0.2765176 0.03925039 0.6252316 +0.3113005 0.03925039 0.6252316 +0.3485102 0.03925039 0.6252316 +0.388193 0.03925039 0.6252316 +0.4303934 0.03925039 0.6252316 +0.4751555 0.03925039 0.6252316 +0.5225216 0.03925039 0.6252316 +0.5725335 0.03925039 0.6252316 +0.6252316 0.03925039 0.6252316 +0.6806558 0.03925039 0.6252316 +0.7388448 0.03925039 0.6252316 +0.7998369 0.03925039 0.6252316 +0.8636691 0.03925039 0.6252316 +0.9303782 0.03925039 0.6252316 +1 0.03925039 0.6252316 +0 0.05087609 0.6252316 +0.002418731 0.05087609 0.6252316 +0.005155668 0.05087609 0.6252316 +0.009080105 0.05087609 0.6252316 +0.01434988 0.05087609 0.6252316 +0.02107202 0.05087609 0.6252316 +0.02934285 0.05087609 0.6252316 +0.03925039 0.05087609 0.6252316 +0.05087609 0.05087609 0.6252316 +0.06429595 0.05087609 0.6252316 +0.07958143 0.05087609 0.6252316 +0.0968001 0.05087609 0.6252316 +0.1160161 0.05087609 0.6252316 +0.1372908 0.05087609 0.6252316 +0.1606827 0.05087609 0.6252316 +0.1862481 0.05087609 0.6252316 +0.2140411 0.05087609 0.6252316 +0.2441142 0.05087609 0.6252316 +0.2765176 0.05087609 0.6252316 +0.3113005 0.05087609 0.6252316 +0.3485102 0.05087609 0.6252316 +0.388193 0.05087609 0.6252316 +0.4303934 0.05087609 0.6252316 +0.4751555 0.05087609 0.6252316 +0.5225216 0.05087609 0.6252316 +0.5725335 0.05087609 0.6252316 +0.6252316 0.05087609 0.6252316 +0.6806558 0.05087609 0.6252316 +0.7388448 0.05087609 0.6252316 +0.7998369 0.05087609 0.6252316 +0.8636691 0.05087609 0.6252316 +0.9303782 0.05087609 0.6252316 +1 0.05087609 0.6252316 +0 0.06429595 0.6252316 +0.002418731 0.06429595 0.6252316 +0.005155668 0.06429595 0.6252316 +0.009080105 0.06429595 0.6252316 +0.01434988 0.06429595 0.6252316 +0.02107202 0.06429595 0.6252316 +0.02934285 0.06429595 0.6252316 +0.03925039 0.06429595 0.6252316 +0.05087609 0.06429595 0.6252316 +0.06429595 0.06429595 0.6252316 +0.07958143 0.06429595 0.6252316 +0.0968001 0.06429595 0.6252316 +0.1160161 0.06429595 0.6252316 +0.1372908 0.06429595 0.6252316 +0.1606827 0.06429595 0.6252316 +0.1862481 0.06429595 0.6252316 +0.2140411 0.06429595 0.6252316 +0.2441142 0.06429595 0.6252316 +0.2765176 0.06429595 0.6252316 +0.3113005 0.06429595 0.6252316 +0.3485102 0.06429595 0.6252316 +0.388193 0.06429595 0.6252316 +0.4303934 0.06429595 0.6252316 +0.4751555 0.06429595 0.6252316 +0.5225216 0.06429595 0.6252316 +0.5725335 0.06429595 0.6252316 +0.6252316 0.06429595 0.6252316 +0.6806558 0.06429595 0.6252316 +0.7388448 0.06429595 0.6252316 +0.7998369 0.06429595 0.6252316 +0.8636691 0.06429595 0.6252316 +0.9303782 0.06429595 0.6252316 +1 0.06429595 0.6252316 +0 0.07958143 0.6252316 +0.002418731 0.07958143 0.6252316 +0.005155668 0.07958143 0.6252316 +0.009080105 0.07958143 0.6252316 +0.01434988 0.07958143 0.6252316 +0.02107202 0.07958143 0.6252316 +0.02934285 0.07958143 0.6252316 +0.03925039 0.07958143 0.6252316 +0.05087609 0.07958143 0.6252316 +0.06429595 0.07958143 0.6252316 +0.07958143 0.07958143 0.6252316 +0.0968001 0.07958143 0.6252316 +0.1160161 0.07958143 0.6252316 +0.1372908 0.07958143 0.6252316 +0.1606827 0.07958143 0.6252316 +0.1862481 0.07958143 0.6252316 +0.2140411 0.07958143 0.6252316 +0.2441142 0.07958143 0.6252316 +0.2765176 0.07958143 0.6252316 +0.3113005 0.07958143 0.6252316 +0.3485102 0.07958143 0.6252316 +0.388193 0.07958143 0.6252316 +0.4303934 0.07958143 0.6252316 +0.4751555 0.07958143 0.6252316 +0.5225216 0.07958143 0.6252316 +0.5725335 0.07958143 0.6252316 +0.6252316 0.07958143 0.6252316 +0.6806558 0.07958143 0.6252316 +0.7388448 0.07958143 0.6252316 +0.7998369 0.07958143 0.6252316 +0.8636691 0.07958143 0.6252316 +0.9303782 0.07958143 0.6252316 +1 0.07958143 0.6252316 +0 0.0968001 0.6252316 +0.002418731 0.0968001 0.6252316 +0.005155668 0.0968001 0.6252316 +0.009080105 0.0968001 0.6252316 +0.01434988 0.0968001 0.6252316 +0.02107202 0.0968001 0.6252316 +0.02934285 0.0968001 0.6252316 +0.03925039 0.0968001 0.6252316 +0.05087609 0.0968001 0.6252316 +0.06429595 0.0968001 0.6252316 +0.07958143 0.0968001 0.6252316 +0.0968001 0.0968001 0.6252316 +0.1160161 0.0968001 0.6252316 +0.1372908 0.0968001 0.6252316 +0.1606827 0.0968001 0.6252316 +0.1862481 0.0968001 0.6252316 +0.2140411 0.0968001 0.6252316 +0.2441142 0.0968001 0.6252316 +0.2765176 0.0968001 0.6252316 +0.3113005 0.0968001 0.6252316 +0.3485102 0.0968001 0.6252316 +0.388193 0.0968001 0.6252316 +0.4303934 0.0968001 0.6252316 +0.4751555 0.0968001 0.6252316 +0.5225216 0.0968001 0.6252316 +0.5725335 0.0968001 0.6252316 +0.6252316 0.0968001 0.6252316 +0.6806558 0.0968001 0.6252316 +0.7388448 0.0968001 0.6252316 +0.7998369 0.0968001 0.6252316 +0.8636691 0.0968001 0.6252316 +0.9303782 0.0968001 0.6252316 +1 0.0968001 0.6252316 +0 0.1160161 0.6252316 +0.002418731 0.1160161 0.6252316 +0.005155668 0.1160161 0.6252316 +0.009080105 0.1160161 0.6252316 +0.01434988 0.1160161 0.6252316 +0.02107202 0.1160161 0.6252316 +0.02934285 0.1160161 0.6252316 +0.03925039 0.1160161 0.6252316 +0.05087609 0.1160161 0.6252316 +0.06429595 0.1160161 0.6252316 +0.07958143 0.1160161 0.6252316 +0.0968001 0.1160161 0.6252316 +0.1160161 0.1160161 0.6252316 +0.1372908 0.1160161 0.6252316 +0.1606827 0.1160161 0.6252316 +0.1862481 0.1160161 0.6252316 +0.2140411 0.1160161 0.6252316 +0.2441142 0.1160161 0.6252316 +0.2765176 0.1160161 0.6252316 +0.3113005 0.1160161 0.6252316 +0.3485102 0.1160161 0.6252316 +0.388193 0.1160161 0.6252316 +0.4303934 0.1160161 0.6252316 +0.4751555 0.1160161 0.6252316 +0.5225216 0.1160161 0.6252316 +0.5725335 0.1160161 0.6252316 +0.6252316 0.1160161 0.6252316 +0.6806558 0.1160161 0.6252316 +0.7388448 0.1160161 0.6252316 +0.7998369 0.1160161 0.6252316 +0.8636691 0.1160161 0.6252316 +0.9303782 0.1160161 0.6252316 +1 0.1160161 0.6252316 +0 0.1372908 0.6252316 +0.002418731 0.1372908 0.6252316 +0.005155668 0.1372908 0.6252316 +0.009080105 0.1372908 0.6252316 +0.01434988 0.1372908 0.6252316 +0.02107202 0.1372908 0.6252316 +0.02934285 0.1372908 0.6252316 +0.03925039 0.1372908 0.6252316 +0.05087609 0.1372908 0.6252316 +0.06429595 0.1372908 0.6252316 +0.07958143 0.1372908 0.6252316 +0.0968001 0.1372908 0.6252316 +0.1160161 0.1372908 0.6252316 +0.1372908 0.1372908 0.6252316 +0.1606827 0.1372908 0.6252316 +0.1862481 0.1372908 0.6252316 +0.2140411 0.1372908 0.6252316 +0.2441142 0.1372908 0.6252316 +0.2765176 0.1372908 0.6252316 +0.3113005 0.1372908 0.6252316 +0.3485102 0.1372908 0.6252316 +0.388193 0.1372908 0.6252316 +0.4303934 0.1372908 0.6252316 +0.4751555 0.1372908 0.6252316 +0.5225216 0.1372908 0.6252316 +0.5725335 0.1372908 0.6252316 +0.6252316 0.1372908 0.6252316 +0.6806558 0.1372908 0.6252316 +0.7388448 0.1372908 0.6252316 +0.7998369 0.1372908 0.6252316 +0.8636691 0.1372908 0.6252316 +0.9303782 0.1372908 0.6252316 +1 0.1372908 0.6252316 +0 0.1606827 0.6252316 +0.002418731 0.1606827 0.6252316 +0.005155668 0.1606827 0.6252316 +0.009080105 0.1606827 0.6252316 +0.01434988 0.1606827 0.6252316 +0.02107202 0.1606827 0.6252316 +0.02934285 0.1606827 0.6252316 +0.03925039 0.1606827 0.6252316 +0.05087609 0.1606827 0.6252316 +0.06429595 0.1606827 0.6252316 +0.07958143 0.1606827 0.6252316 +0.0968001 0.1606827 0.6252316 +0.1160161 0.1606827 0.6252316 +0.1372908 0.1606827 0.6252316 +0.1606827 0.1606827 0.6252316 +0.1862481 0.1606827 0.6252316 +0.2140411 0.1606827 0.6252316 +0.2441142 0.1606827 0.6252316 +0.2765176 0.1606827 0.6252316 +0.3113005 0.1606827 0.6252316 +0.3485102 0.1606827 0.6252316 +0.388193 0.1606827 0.6252316 +0.4303934 0.1606827 0.6252316 +0.4751555 0.1606827 0.6252316 +0.5225216 0.1606827 0.6252316 +0.5725335 0.1606827 0.6252316 +0.6252316 0.1606827 0.6252316 +0.6806558 0.1606827 0.6252316 +0.7388448 0.1606827 0.6252316 +0.7998369 0.1606827 0.6252316 +0.8636691 0.1606827 0.6252316 +0.9303782 0.1606827 0.6252316 +1 0.1606827 0.6252316 +0 0.1862481 0.6252316 +0.002418731 0.1862481 0.6252316 +0.005155668 0.1862481 0.6252316 +0.009080105 0.1862481 0.6252316 +0.01434988 0.1862481 0.6252316 +0.02107202 0.1862481 0.6252316 +0.02934285 0.1862481 0.6252316 +0.03925039 0.1862481 0.6252316 +0.05087609 0.1862481 0.6252316 +0.06429595 0.1862481 0.6252316 +0.07958143 0.1862481 0.6252316 +0.0968001 0.1862481 0.6252316 +0.1160161 0.1862481 0.6252316 +0.1372908 0.1862481 0.6252316 +0.1606827 0.1862481 0.6252316 +0.1862481 0.1862481 0.6252316 +0.2140411 0.1862481 0.6252316 +0.2441142 0.1862481 0.6252316 +0.2765176 0.1862481 0.6252316 +0.3113005 0.1862481 0.6252316 +0.3485102 0.1862481 0.6252316 +0.388193 0.1862481 0.6252316 +0.4303934 0.1862481 0.6252316 +0.4751555 0.1862481 0.6252316 +0.5225216 0.1862481 0.6252316 +0.5725335 0.1862481 0.6252316 +0.6252316 0.1862481 0.6252316 +0.6806558 0.1862481 0.6252316 +0.7388448 0.1862481 0.6252316 +0.7998369 0.1862481 0.6252316 +0.8636691 0.1862481 0.6252316 +0.9303782 0.1862481 0.6252316 +1 0.1862481 0.6252316 +0 0.2140411 0.6252316 +0.002418731 0.2140411 0.6252316 +0.005155668 0.2140411 0.6252316 +0.009080105 0.2140411 0.6252316 +0.01434988 0.2140411 0.6252316 +0.02107202 0.2140411 0.6252316 +0.02934285 0.2140411 0.6252316 +0.03925039 0.2140411 0.6252316 +0.05087609 0.2140411 0.6252316 +0.06429595 0.2140411 0.6252316 +0.07958143 0.2140411 0.6252316 +0.0968001 0.2140411 0.6252316 +0.1160161 0.2140411 0.6252316 +0.1372908 0.2140411 0.6252316 +0.1606827 0.2140411 0.6252316 +0.1862481 0.2140411 0.6252316 +0.2140411 0.2140411 0.6252316 +0.2441142 0.2140411 0.6252316 +0.2765176 0.2140411 0.6252316 +0.3113005 0.2140411 0.6252316 +0.3485102 0.2140411 0.6252316 +0.388193 0.2140411 0.6252316 +0.4303934 0.2140411 0.6252316 +0.4751555 0.2140411 0.6252316 +0.5225216 0.2140411 0.6252316 +0.5725335 0.2140411 0.6252316 +0.6252316 0.2140411 0.6252316 +0.6806558 0.2140411 0.6252316 +0.7388448 0.2140411 0.6252316 +0.7998369 0.2140411 0.6252316 +0.8636691 0.2140411 0.6252316 +0.9303782 0.2140411 0.6252316 +1 0.2140411 0.6252316 +0 0.2441142 0.6252316 +0.002418731 0.2441142 0.6252316 +0.005155668 0.2441142 0.6252316 +0.009080105 0.2441142 0.6252316 +0.01434988 0.2441142 0.6252316 +0.02107202 0.2441142 0.6252316 +0.02934285 0.2441142 0.6252316 +0.03925039 0.2441142 0.6252316 +0.05087609 0.2441142 0.6252316 +0.06429595 0.2441142 0.6252316 +0.07958143 0.2441142 0.6252316 +0.0968001 0.2441142 0.6252316 +0.1160161 0.2441142 0.6252316 +0.1372908 0.2441142 0.6252316 +0.1606827 0.2441142 0.6252316 +0.1862481 0.2441142 0.6252316 +0.2140411 0.2441142 0.6252316 +0.2441142 0.2441142 0.6252316 +0.2765176 0.2441142 0.6252316 +0.3113005 0.2441142 0.6252316 +0.3485102 0.2441142 0.6252316 +0.388193 0.2441142 0.6252316 +0.4303934 0.2441142 0.6252316 +0.4751555 0.2441142 0.6252316 +0.5225216 0.2441142 0.6252316 +0.5725335 0.2441142 0.6252316 +0.6252316 0.2441142 0.6252316 +0.6806558 0.2441142 0.6252316 +0.7388448 0.2441142 0.6252316 +0.7998369 0.2441142 0.6252316 +0.8636691 0.2441142 0.6252316 +0.9303782 0.2441142 0.6252316 +1 0.2441142 0.6252316 +0 0.2765176 0.6252316 +0.002418731 0.2765176 0.6252316 +0.005155668 0.2765176 0.6252316 +0.009080105 0.2765176 0.6252316 +0.01434988 0.2765176 0.6252316 +0.02107202 0.2765176 0.6252316 +0.02934285 0.2765176 0.6252316 +0.03925039 0.2765176 0.6252316 +0.05087609 0.2765176 0.6252316 +0.06429595 0.2765176 0.6252316 +0.07958143 0.2765176 0.6252316 +0.0968001 0.2765176 0.6252316 +0.1160161 0.2765176 0.6252316 +0.1372908 0.2765176 0.6252316 +0.1606827 0.2765176 0.6252316 +0.1862481 0.2765176 0.6252316 +0.2140411 0.2765176 0.6252316 +0.2441142 0.2765176 0.6252316 +0.2765176 0.2765176 0.6252316 +0.3113005 0.2765176 0.6252316 +0.3485102 0.2765176 0.6252316 +0.388193 0.2765176 0.6252316 +0.4303934 0.2765176 0.6252316 +0.4751555 0.2765176 0.6252316 +0.5225216 0.2765176 0.6252316 +0.5725335 0.2765176 0.6252316 +0.6252316 0.2765176 0.6252316 +0.6806558 0.2765176 0.6252316 +0.7388448 0.2765176 0.6252316 +0.7998369 0.2765176 0.6252316 +0.8636691 0.2765176 0.6252316 +0.9303782 0.2765176 0.6252316 +1 0.2765176 0.6252316 +0 0.3113005 0.6252316 +0.002418731 0.3113005 0.6252316 +0.005155668 0.3113005 0.6252316 +0.009080105 0.3113005 0.6252316 +0.01434988 0.3113005 0.6252316 +0.02107202 0.3113005 0.6252316 +0.02934285 0.3113005 0.6252316 +0.03925039 0.3113005 0.6252316 +0.05087609 0.3113005 0.6252316 +0.06429595 0.3113005 0.6252316 +0.07958143 0.3113005 0.6252316 +0.0968001 0.3113005 0.6252316 +0.1160161 0.3113005 0.6252316 +0.1372908 0.3113005 0.6252316 +0.1606827 0.3113005 0.6252316 +0.1862481 0.3113005 0.6252316 +0.2140411 0.3113005 0.6252316 +0.2441142 0.3113005 0.6252316 +0.2765176 0.3113005 0.6252316 +0.3113005 0.3113005 0.6252316 +0.3485102 0.3113005 0.6252316 +0.388193 0.3113005 0.6252316 +0.4303934 0.3113005 0.6252316 +0.4751555 0.3113005 0.6252316 +0.5225216 0.3113005 0.6252316 +0.5725335 0.3113005 0.6252316 +0.6252316 0.3113005 0.6252316 +0.6806558 0.3113005 0.6252316 +0.7388448 0.3113005 0.6252316 +0.7998369 0.3113005 0.6252316 +0.8636691 0.3113005 0.6252316 +0.9303782 0.3113005 0.6252316 +1 0.3113005 0.6252316 +0 0.3485102 0.6252316 +0.002418731 0.3485102 0.6252316 +0.005155668 0.3485102 0.6252316 +0.009080105 0.3485102 0.6252316 +0.01434988 0.3485102 0.6252316 +0.02107202 0.3485102 0.6252316 +0.02934285 0.3485102 0.6252316 +0.03925039 0.3485102 0.6252316 +0.05087609 0.3485102 0.6252316 +0.06429595 0.3485102 0.6252316 +0.07958143 0.3485102 0.6252316 +0.0968001 0.3485102 0.6252316 +0.1160161 0.3485102 0.6252316 +0.1372908 0.3485102 0.6252316 +0.1606827 0.3485102 0.6252316 +0.1862481 0.3485102 0.6252316 +0.2140411 0.3485102 0.6252316 +0.2441142 0.3485102 0.6252316 +0.2765176 0.3485102 0.6252316 +0.3113005 0.3485102 0.6252316 +0.3485102 0.3485102 0.6252316 +0.388193 0.3485102 0.6252316 +0.4303934 0.3485102 0.6252316 +0.4751555 0.3485102 0.6252316 +0.5225216 0.3485102 0.6252316 +0.5725335 0.3485102 0.6252316 +0.6252316 0.3485102 0.6252316 +0.6806558 0.3485102 0.6252316 +0.7388448 0.3485102 0.6252316 +0.7998369 0.3485102 0.6252316 +0.8636691 0.3485102 0.6252316 +0.9303782 0.3485102 0.6252316 +1 0.3485102 0.6252316 +0 0.388193 0.6252316 +0.002418731 0.388193 0.6252316 +0.005155668 0.388193 0.6252316 +0.009080105 0.388193 0.6252316 +0.01434988 0.388193 0.6252316 +0.02107202 0.388193 0.6252316 +0.02934285 0.388193 0.6252316 +0.03925039 0.388193 0.6252316 +0.05087609 0.388193 0.6252316 +0.06429595 0.388193 0.6252316 +0.07958143 0.388193 0.6252316 +0.0968001 0.388193 0.6252316 +0.1160161 0.388193 0.6252316 +0.1372908 0.388193 0.6252316 +0.1606827 0.388193 0.6252316 +0.1862481 0.388193 0.6252316 +0.2140411 0.388193 0.6252316 +0.2441142 0.388193 0.6252316 +0.2765176 0.388193 0.6252316 +0.3113005 0.388193 0.6252316 +0.3485102 0.388193 0.6252316 +0.388193 0.388193 0.6252316 +0.4303934 0.388193 0.6252316 +0.4751555 0.388193 0.6252316 +0.5225216 0.388193 0.6252316 +0.5725335 0.388193 0.6252316 +0.6252316 0.388193 0.6252316 +0.6806558 0.388193 0.6252316 +0.7388448 0.388193 0.6252316 +0.7998369 0.388193 0.6252316 +0.8636691 0.388193 0.6252316 +0.9303782 0.388193 0.6252316 +1 0.388193 0.6252316 +0 0.4303934 0.6252316 +0.002418731 0.4303934 0.6252316 +0.005155668 0.4303934 0.6252316 +0.009080105 0.4303934 0.6252316 +0.01434988 0.4303934 0.6252316 +0.02107202 0.4303934 0.6252316 +0.02934285 0.4303934 0.6252316 +0.03925039 0.4303934 0.6252316 +0.05087609 0.4303934 0.6252316 +0.06429595 0.4303934 0.6252316 +0.07958143 0.4303934 0.6252316 +0.0968001 0.4303934 0.6252316 +0.1160161 0.4303934 0.6252316 +0.1372908 0.4303934 0.6252316 +0.1606827 0.4303934 0.6252316 +0.1862481 0.4303934 0.6252316 +0.2140411 0.4303934 0.6252316 +0.2441142 0.4303934 0.6252316 +0.2765176 0.4303934 0.6252316 +0.3113005 0.4303934 0.6252316 +0.3485102 0.4303934 0.6252316 +0.388193 0.4303934 0.6252316 +0.4303934 0.4303934 0.6252316 +0.4751555 0.4303934 0.6252316 +0.5225216 0.4303934 0.6252316 +0.5725335 0.4303934 0.6252316 +0.6252316 0.4303934 0.6252316 +0.6806558 0.4303934 0.6252316 +0.7388448 0.4303934 0.6252316 +0.7998369 0.4303934 0.6252316 +0.8636691 0.4303934 0.6252316 +0.9303782 0.4303934 0.6252316 +1 0.4303934 0.6252316 +0 0.4751555 0.6252316 +0.002418731 0.4751555 0.6252316 +0.005155668 0.4751555 0.6252316 +0.009080105 0.4751555 0.6252316 +0.01434988 0.4751555 0.6252316 +0.02107202 0.4751555 0.6252316 +0.02934285 0.4751555 0.6252316 +0.03925039 0.4751555 0.6252316 +0.05087609 0.4751555 0.6252316 +0.06429595 0.4751555 0.6252316 +0.07958143 0.4751555 0.6252316 +0.0968001 0.4751555 0.6252316 +0.1160161 0.4751555 0.6252316 +0.1372908 0.4751555 0.6252316 +0.1606827 0.4751555 0.6252316 +0.1862481 0.4751555 0.6252316 +0.2140411 0.4751555 0.6252316 +0.2441142 0.4751555 0.6252316 +0.2765176 0.4751555 0.6252316 +0.3113005 0.4751555 0.6252316 +0.3485102 0.4751555 0.6252316 +0.388193 0.4751555 0.6252316 +0.4303934 0.4751555 0.6252316 +0.4751555 0.4751555 0.6252316 +0.5225216 0.4751555 0.6252316 +0.5725335 0.4751555 0.6252316 +0.6252316 0.4751555 0.6252316 +0.6806558 0.4751555 0.6252316 +0.7388448 0.4751555 0.6252316 +0.7998369 0.4751555 0.6252316 +0.8636691 0.4751555 0.6252316 +0.9303782 0.4751555 0.6252316 +1 0.4751555 0.6252316 +0 0.5225216 0.6252316 +0.002418731 0.5225216 0.6252316 +0.005155668 0.5225216 0.6252316 +0.009080105 0.5225216 0.6252316 +0.01434988 0.5225216 0.6252316 +0.02107202 0.5225216 0.6252316 +0.02934285 0.5225216 0.6252316 +0.03925039 0.5225216 0.6252316 +0.05087609 0.5225216 0.6252316 +0.06429595 0.5225216 0.6252316 +0.07958143 0.5225216 0.6252316 +0.0968001 0.5225216 0.6252316 +0.1160161 0.5225216 0.6252316 +0.1372908 0.5225216 0.6252316 +0.1606827 0.5225216 0.6252316 +0.1862481 0.5225216 0.6252316 +0.2140411 0.5225216 0.6252316 +0.2441142 0.5225216 0.6252316 +0.2765176 0.5225216 0.6252316 +0.3113005 0.5225216 0.6252316 +0.3485102 0.5225216 0.6252316 +0.388193 0.5225216 0.6252316 +0.4303934 0.5225216 0.6252316 +0.4751555 0.5225216 0.6252316 +0.5225216 0.5225216 0.6252316 +0.5725335 0.5225216 0.6252316 +0.6252316 0.5225216 0.6252316 +0.6806558 0.5225216 0.6252316 +0.7388448 0.5225216 0.6252316 +0.7998369 0.5225216 0.6252316 +0.8636691 0.5225216 0.6252316 +0.9303782 0.5225216 0.6252316 +1 0.5225216 0.6252316 +0 0.5725335 0.6252316 +0.002418731 0.5725335 0.6252316 +0.005155668 0.5725335 0.6252316 +0.009080105 0.5725335 0.6252316 +0.01434988 0.5725335 0.6252316 +0.02107202 0.5725335 0.6252316 +0.02934285 0.5725335 0.6252316 +0.03925039 0.5725335 0.6252316 +0.05087609 0.5725335 0.6252316 +0.06429595 0.5725335 0.6252316 +0.07958143 0.5725335 0.6252316 +0.0968001 0.5725335 0.6252316 +0.1160161 0.5725335 0.6252316 +0.1372908 0.5725335 0.6252316 +0.1606827 0.5725335 0.6252316 +0.1862481 0.5725335 0.6252316 +0.2140411 0.5725335 0.6252316 +0.2441142 0.5725335 0.6252316 +0.2765176 0.5725335 0.6252316 +0.3113005 0.5725335 0.6252316 +0.3485102 0.5725335 0.6252316 +0.388193 0.5725335 0.6252316 +0.4303934 0.5725335 0.6252316 +0.4751555 0.5725335 0.6252316 +0.5225216 0.5725335 0.6252316 +0.5725335 0.5725335 0.6252316 +0.6252316 0.5725335 0.6252316 +0.6806558 0.5725335 0.6252316 +0.7388448 0.5725335 0.6252316 +0.7998369 0.5725335 0.6252316 +0.8636691 0.5725335 0.6252316 +0.9303782 0.5725335 0.6252316 +1 0.5725335 0.6252316 +0 0.6252316 0.6252316 +0.002418731 0.6252316 0.6252316 +0.005155668 0.6252316 0.6252316 +0.009080105 0.6252316 0.6252316 +0.01434988 0.6252316 0.6252316 +0.02107202 0.6252316 0.6252316 +0.02934285 0.6252316 0.6252316 +0.03925039 0.6252316 0.6252316 +0.05087609 0.6252316 0.6252316 +0.06429595 0.6252316 0.6252316 +0.07958143 0.6252316 0.6252316 +0.0968001 0.6252316 0.6252316 +0.1160161 0.6252316 0.6252316 +0.1372908 0.6252316 0.6252316 +0.1606827 0.6252316 0.6252316 +0.1862481 0.6252316 0.6252316 +0.2140411 0.6252316 0.6252316 +0.2441142 0.6252316 0.6252316 +0.2765176 0.6252316 0.6252316 +0.3113005 0.6252316 0.6252316 +0.3485102 0.6252316 0.6252316 +0.388193 0.6252316 0.6252316 +0.4303934 0.6252316 0.6252316 +0.4751555 0.6252316 0.6252316 +0.5225216 0.6252316 0.6252316 +0.5725335 0.6252316 0.6252316 +0.6252316 0.6252316 0.6252316 +0.6806558 0.6252316 0.6252316 +0.7388448 0.6252316 0.6252316 +0.7998369 0.6252316 0.6252316 +0.8636691 0.6252316 0.6252316 +0.9303782 0.6252316 0.6252316 +1 0.6252316 0.6252316 +0 0.6806558 0.6252316 +0.002418731 0.6806558 0.6252316 +0.005155668 0.6806558 0.6252316 +0.009080105 0.6806558 0.6252316 +0.01434988 0.6806558 0.6252316 +0.02107202 0.6806558 0.6252316 +0.02934285 0.6806558 0.6252316 +0.03925039 0.6806558 0.6252316 +0.05087609 0.6806558 0.6252316 +0.06429595 0.6806558 0.6252316 +0.07958143 0.6806558 0.6252316 +0.0968001 0.6806558 0.6252316 +0.1160161 0.6806558 0.6252316 +0.1372908 0.6806558 0.6252316 +0.1606827 0.6806558 0.6252316 +0.1862481 0.6806558 0.6252316 +0.2140411 0.6806558 0.6252316 +0.2441142 0.6806558 0.6252316 +0.2765176 0.6806558 0.6252316 +0.3113005 0.6806558 0.6252316 +0.3485102 0.6806558 0.6252316 +0.388193 0.6806558 0.6252316 +0.4303934 0.6806558 0.6252316 +0.4751555 0.6806558 0.6252316 +0.5225216 0.6806558 0.6252316 +0.5725335 0.6806558 0.6252316 +0.6252316 0.6806558 0.6252316 +0.6806558 0.6806558 0.6252316 +0.7388448 0.6806558 0.6252316 +0.7998369 0.6806558 0.6252316 +0.8636691 0.6806558 0.6252316 +0.9303782 0.6806558 0.6252316 +1 0.6806558 0.6252316 +0 0.7388448 0.6252316 +0.002418731 0.7388448 0.6252316 +0.005155668 0.7388448 0.6252316 +0.009080105 0.7388448 0.6252316 +0.01434988 0.7388448 0.6252316 +0.02107202 0.7388448 0.6252316 +0.02934285 0.7388448 0.6252316 +0.03925039 0.7388448 0.6252316 +0.05087609 0.7388448 0.6252316 +0.06429595 0.7388448 0.6252316 +0.07958143 0.7388448 0.6252316 +0.0968001 0.7388448 0.6252316 +0.1160161 0.7388448 0.6252316 +0.1372908 0.7388448 0.6252316 +0.1606827 0.7388448 0.6252316 +0.1862481 0.7388448 0.6252316 +0.2140411 0.7388448 0.6252316 +0.2441142 0.7388448 0.6252316 +0.2765176 0.7388448 0.6252316 +0.3113005 0.7388448 0.6252316 +0.3485102 0.7388448 0.6252316 +0.388193 0.7388448 0.6252316 +0.4303934 0.7388448 0.6252316 +0.4751555 0.7388448 0.6252316 +0.5225216 0.7388448 0.6252316 +0.5725335 0.7388448 0.6252316 +0.6252316 0.7388448 0.6252316 +0.6806558 0.7388448 0.6252316 +0.7388448 0.7388448 0.6252316 +0.7998369 0.7388448 0.6252316 +0.8636691 0.7388448 0.6252316 +0.9303782 0.7388448 0.6252316 +1 0.7388448 0.6252316 +0 0.7998369 0.6252316 +0.002418731 0.7998369 0.6252316 +0.005155668 0.7998369 0.6252316 +0.009080105 0.7998369 0.6252316 +0.01434988 0.7998369 0.6252316 +0.02107202 0.7998369 0.6252316 +0.02934285 0.7998369 0.6252316 +0.03925039 0.7998369 0.6252316 +0.05087609 0.7998369 0.6252316 +0.06429595 0.7998369 0.6252316 +0.07958143 0.7998369 0.6252316 +0.0968001 0.7998369 0.6252316 +0.1160161 0.7998369 0.6252316 +0.1372908 0.7998369 0.6252316 +0.1606827 0.7998369 0.6252316 +0.1862481 0.7998369 0.6252316 +0.2140411 0.7998369 0.6252316 +0.2441142 0.7998369 0.6252316 +0.2765176 0.7998369 0.6252316 +0.3113005 0.7998369 0.6252316 +0.3485102 0.7998369 0.6252316 +0.388193 0.7998369 0.6252316 +0.4303934 0.7998369 0.6252316 +0.4751555 0.7998369 0.6252316 +0.5225216 0.7998369 0.6252316 +0.5725335 0.7998369 0.6252316 +0.6252316 0.7998369 0.6252316 +0.6806558 0.7998369 0.6252316 +0.7388448 0.7998369 0.6252316 +0.7998369 0.7998369 0.6252316 +0.8636691 0.7998369 0.6252316 +0.9303782 0.7998369 0.6252316 +1 0.7998369 0.6252316 +0 0.8636691 0.6252316 +0.002418731 0.8636691 0.6252316 +0.005155668 0.8636691 0.6252316 +0.009080105 0.8636691 0.6252316 +0.01434988 0.8636691 0.6252316 +0.02107202 0.8636691 0.6252316 +0.02934285 0.8636691 0.6252316 +0.03925039 0.8636691 0.6252316 +0.05087609 0.8636691 0.6252316 +0.06429595 0.8636691 0.6252316 +0.07958143 0.8636691 0.6252316 +0.0968001 0.8636691 0.6252316 +0.1160161 0.8636691 0.6252316 +0.1372908 0.8636691 0.6252316 +0.1606827 0.8636691 0.6252316 +0.1862481 0.8636691 0.6252316 +0.2140411 0.8636691 0.6252316 +0.2441142 0.8636691 0.6252316 +0.2765176 0.8636691 0.6252316 +0.3113005 0.8636691 0.6252316 +0.3485102 0.8636691 0.6252316 +0.388193 0.8636691 0.6252316 +0.4303934 0.8636691 0.6252316 +0.4751555 0.8636691 0.6252316 +0.5225216 0.8636691 0.6252316 +0.5725335 0.8636691 0.6252316 +0.6252316 0.8636691 0.6252316 +0.6806558 0.8636691 0.6252316 +0.7388448 0.8636691 0.6252316 +0.7998369 0.8636691 0.6252316 +0.8636691 0.8636691 0.6252316 +0.9303782 0.8636691 0.6252316 +1 0.8636691 0.6252316 +0 0.9303782 0.6252316 +0.002418731 0.9303782 0.6252316 +0.005155668 0.9303782 0.6252316 +0.009080105 0.9303782 0.6252316 +0.01434988 0.9303782 0.6252316 +0.02107202 0.9303782 0.6252316 +0.02934285 0.9303782 0.6252316 +0.03925039 0.9303782 0.6252316 +0.05087609 0.9303782 0.6252316 +0.06429595 0.9303782 0.6252316 +0.07958143 0.9303782 0.6252316 +0.0968001 0.9303782 0.6252316 +0.1160161 0.9303782 0.6252316 +0.1372908 0.9303782 0.6252316 +0.1606827 0.9303782 0.6252316 +0.1862481 0.9303782 0.6252316 +0.2140411 0.9303782 0.6252316 +0.2441142 0.9303782 0.6252316 +0.2765176 0.9303782 0.6252316 +0.3113005 0.9303782 0.6252316 +0.3485102 0.9303782 0.6252316 +0.388193 0.9303782 0.6252316 +0.4303934 0.9303782 0.6252316 +0.4751555 0.9303782 0.6252316 +0.5225216 0.9303782 0.6252316 +0.5725335 0.9303782 0.6252316 +0.6252316 0.9303782 0.6252316 +0.6806558 0.9303782 0.6252316 +0.7388448 0.9303782 0.6252316 +0.7998369 0.9303782 0.6252316 +0.8636691 0.9303782 0.6252316 +0.9303782 0.9303782 0.6252316 +1 0.9303782 0.6252316 +0 1 0.6252316 +0.002418731 1 0.6252316 +0.005155668 1 0.6252316 +0.009080105 1 0.6252316 +0.01434988 1 0.6252316 +0.02107202 1 0.6252316 +0.02934285 1 0.6252316 +0.03925039 1 0.6252316 +0.05087609 1 0.6252316 +0.06429595 1 0.6252316 +0.07958143 1 0.6252316 +0.0968001 1 0.6252316 +0.1160161 1 0.6252316 +0.1372908 1 0.6252316 +0.1606827 1 0.6252316 +0.1862481 1 0.6252316 +0.2140411 1 0.6252316 +0.2441142 1 0.6252316 +0.2765176 1 0.6252316 +0.3113005 1 0.6252316 +0.3485102 1 0.6252316 +0.388193 1 0.6252316 +0.4303934 1 0.6252316 +0.4751555 1 0.6252316 +0.5225216 1 0.6252316 +0.5725335 1 0.6252316 +0.6252316 1 0.6252316 +0.6806558 1 0.6252316 +0.7388448 1 0.6252316 +0.7998369 1 0.6252316 +0.8636691 1 0.6252316 +0.9303782 1 0.6252316 +1 1 0.6252316 +0 0 0.6806558 +0.002418731 0 0.6806558 +0.005155668 0 0.6806558 +0.009080105 0 0.6806558 +0.01434988 0 0.6806558 +0.02107202 0 0.6806558 +0.02934285 0 0.6806558 +0.03925039 0 0.6806558 +0.05087609 0 0.6806558 +0.06429595 0 0.6806558 +0.07958143 0 0.6806558 +0.0968001 0 0.6806558 +0.1160161 0 0.6806558 +0.1372908 0 0.6806558 +0.1606827 0 0.6806558 +0.1862481 0 0.6806558 +0.2140411 0 0.6806558 +0.2441142 0 0.6806558 +0.2765176 0 0.6806558 +0.3113005 0 0.6806558 +0.3485102 0 0.6806558 +0.388193 0 0.6806558 +0.4303934 0 0.6806558 +0.4751555 0 0.6806558 +0.5225216 0 0.6806558 +0.5725335 0 0.6806558 +0.6252316 0 0.6806558 +0.6806558 0 0.6806558 +0.7388448 0 0.6806558 +0.7998369 0 0.6806558 +0.8636691 0 0.6806558 +0.9303782 0 0.6806558 +1 0 0.6806558 +0 0.002418731 0.6806558 +0.002418731 0.002418731 0.6806558 +0.005155668 0.002418731 0.6806558 +0.009080105 0.002418731 0.6806558 +0.01434988 0.002418731 0.6806558 +0.02107202 0.002418731 0.6806558 +0.02934285 0.002418731 0.6806558 +0.03925039 0.002418731 0.6806558 +0.05087609 0.002418731 0.6806558 +0.06429595 0.002418731 0.6806558 +0.07958143 0.002418731 0.6806558 +0.0968001 0.002418731 0.6806558 +0.1160161 0.002418731 0.6806558 +0.1372908 0.002418731 0.6806558 +0.1606827 0.002418731 0.6806558 +0.1862481 0.002418731 0.6806558 +0.2140411 0.002418731 0.6806558 +0.2441142 0.002418731 0.6806558 +0.2765176 0.002418731 0.6806558 +0.3113005 0.002418731 0.6806558 +0.3485102 0.002418731 0.6806558 +0.388193 0.002418731 0.6806558 +0.4303934 0.002418731 0.6806558 +0.4751555 0.002418731 0.6806558 +0.5225216 0.002418731 0.6806558 +0.5725335 0.002418731 0.6806558 +0.6252316 0.002418731 0.6806558 +0.6806558 0.002418731 0.6806558 +0.7388448 0.002418731 0.6806558 +0.7998369 0.002418731 0.6806558 +0.8636691 0.002418731 0.6806558 +0.9303782 0.002418731 0.6806558 +1 0.002418731 0.6806558 +0 0.005155668 0.6806558 +0.002418731 0.005155668 0.6806558 +0.005155668 0.005155668 0.6806558 +0.009080105 0.005155668 0.6806558 +0.01434988 0.005155668 0.6806558 +0.02107202 0.005155668 0.6806558 +0.02934285 0.005155668 0.6806558 +0.03925039 0.005155668 0.6806558 +0.05087609 0.005155668 0.6806558 +0.06429595 0.005155668 0.6806558 +0.07958143 0.005155668 0.6806558 +0.0968001 0.005155668 0.6806558 +0.1160161 0.005155668 0.6806558 +0.1372908 0.005155668 0.6806558 +0.1606827 0.005155668 0.6806558 +0.1862481 0.005155668 0.6806558 +0.2140411 0.005155668 0.6806558 +0.2441142 0.005155668 0.6806558 +0.2765176 0.005155668 0.6806558 +0.3113005 0.005155668 0.6806558 +0.3485102 0.005155668 0.6806558 +0.388193 0.005155668 0.6806558 +0.4303934 0.005155668 0.6806558 +0.4751555 0.005155668 0.6806558 +0.5225216 0.005155668 0.6806558 +0.5725335 0.005155668 0.6806558 +0.6252316 0.005155668 0.6806558 +0.6806558 0.005155668 0.6806558 +0.7388448 0.005155668 0.6806558 +0.7998369 0.005155668 0.6806558 +0.8636691 0.005155668 0.6806558 +0.9303782 0.005155668 0.6806558 +1 0.005155668 0.6806558 +0 0.009080105 0.6806558 +0.002418731 0.009080105 0.6806558 +0.005155668 0.009080105 0.6806558 +0.009080105 0.009080105 0.6806558 +0.01434988 0.009080105 0.6806558 +0.02107202 0.009080105 0.6806558 +0.02934285 0.009080105 0.6806558 +0.03925039 0.009080105 0.6806558 +0.05087609 0.009080105 0.6806558 +0.06429595 0.009080105 0.6806558 +0.07958143 0.009080105 0.6806558 +0.0968001 0.009080105 0.6806558 +0.1160161 0.009080105 0.6806558 +0.1372908 0.009080105 0.6806558 +0.1606827 0.009080105 0.6806558 +0.1862481 0.009080105 0.6806558 +0.2140411 0.009080105 0.6806558 +0.2441142 0.009080105 0.6806558 +0.2765176 0.009080105 0.6806558 +0.3113005 0.009080105 0.6806558 +0.3485102 0.009080105 0.6806558 +0.388193 0.009080105 0.6806558 +0.4303934 0.009080105 0.6806558 +0.4751555 0.009080105 0.6806558 +0.5225216 0.009080105 0.6806558 +0.5725335 0.009080105 0.6806558 +0.6252316 0.009080105 0.6806558 +0.6806558 0.009080105 0.6806558 +0.7388448 0.009080105 0.6806558 +0.7998369 0.009080105 0.6806558 +0.8636691 0.009080105 0.6806558 +0.9303782 0.009080105 0.6806558 +1 0.009080105 0.6806558 +0 0.01434988 0.6806558 +0.002418731 0.01434988 0.6806558 +0.005155668 0.01434988 0.6806558 +0.009080105 0.01434988 0.6806558 +0.01434988 0.01434988 0.6806558 +0.02107202 0.01434988 0.6806558 +0.02934285 0.01434988 0.6806558 +0.03925039 0.01434988 0.6806558 +0.05087609 0.01434988 0.6806558 +0.06429595 0.01434988 0.6806558 +0.07958143 0.01434988 0.6806558 +0.0968001 0.01434988 0.6806558 +0.1160161 0.01434988 0.6806558 +0.1372908 0.01434988 0.6806558 +0.1606827 0.01434988 0.6806558 +0.1862481 0.01434988 0.6806558 +0.2140411 0.01434988 0.6806558 +0.2441142 0.01434988 0.6806558 +0.2765176 0.01434988 0.6806558 +0.3113005 0.01434988 0.6806558 +0.3485102 0.01434988 0.6806558 +0.388193 0.01434988 0.6806558 +0.4303934 0.01434988 0.6806558 +0.4751555 0.01434988 0.6806558 +0.5225216 0.01434988 0.6806558 +0.5725335 0.01434988 0.6806558 +0.6252316 0.01434988 0.6806558 +0.6806558 0.01434988 0.6806558 +0.7388448 0.01434988 0.6806558 +0.7998369 0.01434988 0.6806558 +0.8636691 0.01434988 0.6806558 +0.9303782 0.01434988 0.6806558 +1 0.01434988 0.6806558 +0 0.02107202 0.6806558 +0.002418731 0.02107202 0.6806558 +0.005155668 0.02107202 0.6806558 +0.009080105 0.02107202 0.6806558 +0.01434988 0.02107202 0.6806558 +0.02107202 0.02107202 0.6806558 +0.02934285 0.02107202 0.6806558 +0.03925039 0.02107202 0.6806558 +0.05087609 0.02107202 0.6806558 +0.06429595 0.02107202 0.6806558 +0.07958143 0.02107202 0.6806558 +0.0968001 0.02107202 0.6806558 +0.1160161 0.02107202 0.6806558 +0.1372908 0.02107202 0.6806558 +0.1606827 0.02107202 0.6806558 +0.1862481 0.02107202 0.6806558 +0.2140411 0.02107202 0.6806558 +0.2441142 0.02107202 0.6806558 +0.2765176 0.02107202 0.6806558 +0.3113005 0.02107202 0.6806558 +0.3485102 0.02107202 0.6806558 +0.388193 0.02107202 0.6806558 +0.4303934 0.02107202 0.6806558 +0.4751555 0.02107202 0.6806558 +0.5225216 0.02107202 0.6806558 +0.5725335 0.02107202 0.6806558 +0.6252316 0.02107202 0.6806558 +0.6806558 0.02107202 0.6806558 +0.7388448 0.02107202 0.6806558 +0.7998369 0.02107202 0.6806558 +0.8636691 0.02107202 0.6806558 +0.9303782 0.02107202 0.6806558 +1 0.02107202 0.6806558 +0 0.02934285 0.6806558 +0.002418731 0.02934285 0.6806558 +0.005155668 0.02934285 0.6806558 +0.009080105 0.02934285 0.6806558 +0.01434988 0.02934285 0.6806558 +0.02107202 0.02934285 0.6806558 +0.02934285 0.02934285 0.6806558 +0.03925039 0.02934285 0.6806558 +0.05087609 0.02934285 0.6806558 +0.06429595 0.02934285 0.6806558 +0.07958143 0.02934285 0.6806558 +0.0968001 0.02934285 0.6806558 +0.1160161 0.02934285 0.6806558 +0.1372908 0.02934285 0.6806558 +0.1606827 0.02934285 0.6806558 +0.1862481 0.02934285 0.6806558 +0.2140411 0.02934285 0.6806558 +0.2441142 0.02934285 0.6806558 +0.2765176 0.02934285 0.6806558 +0.3113005 0.02934285 0.6806558 +0.3485102 0.02934285 0.6806558 +0.388193 0.02934285 0.6806558 +0.4303934 0.02934285 0.6806558 +0.4751555 0.02934285 0.6806558 +0.5225216 0.02934285 0.6806558 +0.5725335 0.02934285 0.6806558 +0.6252316 0.02934285 0.6806558 +0.6806558 0.02934285 0.6806558 +0.7388448 0.02934285 0.6806558 +0.7998369 0.02934285 0.6806558 +0.8636691 0.02934285 0.6806558 +0.9303782 0.02934285 0.6806558 +1 0.02934285 0.6806558 +0 0.03925039 0.6806558 +0.002418731 0.03925039 0.6806558 +0.005155668 0.03925039 0.6806558 +0.009080105 0.03925039 0.6806558 +0.01434988 0.03925039 0.6806558 +0.02107202 0.03925039 0.6806558 +0.02934285 0.03925039 0.6806558 +0.03925039 0.03925039 0.6806558 +0.05087609 0.03925039 0.6806558 +0.06429595 0.03925039 0.6806558 +0.07958143 0.03925039 0.6806558 +0.0968001 0.03925039 0.6806558 +0.1160161 0.03925039 0.6806558 +0.1372908 0.03925039 0.6806558 +0.1606827 0.03925039 0.6806558 +0.1862481 0.03925039 0.6806558 +0.2140411 0.03925039 0.6806558 +0.2441142 0.03925039 0.6806558 +0.2765176 0.03925039 0.6806558 +0.3113005 0.03925039 0.6806558 +0.3485102 0.03925039 0.6806558 +0.388193 0.03925039 0.6806558 +0.4303934 0.03925039 0.6806558 +0.4751555 0.03925039 0.6806558 +0.5225216 0.03925039 0.6806558 +0.5725335 0.03925039 0.6806558 +0.6252316 0.03925039 0.6806558 +0.6806558 0.03925039 0.6806558 +0.7388448 0.03925039 0.6806558 +0.7998369 0.03925039 0.6806558 +0.8636691 0.03925039 0.6806558 +0.9303782 0.03925039 0.6806558 +1 0.03925039 0.6806558 +0 0.05087609 0.6806558 +0.002418731 0.05087609 0.6806558 +0.005155668 0.05087609 0.6806558 +0.009080105 0.05087609 0.6806558 +0.01434988 0.05087609 0.6806558 +0.02107202 0.05087609 0.6806558 +0.02934285 0.05087609 0.6806558 +0.03925039 0.05087609 0.6806558 +0.05087609 0.05087609 0.6806558 +0.06429595 0.05087609 0.6806558 +0.07958143 0.05087609 0.6806558 +0.0968001 0.05087609 0.6806558 +0.1160161 0.05087609 0.6806558 +0.1372908 0.05087609 0.6806558 +0.1606827 0.05087609 0.6806558 +0.1862481 0.05087609 0.6806558 +0.2140411 0.05087609 0.6806558 +0.2441142 0.05087609 0.6806558 +0.2765176 0.05087609 0.6806558 +0.3113005 0.05087609 0.6806558 +0.3485102 0.05087609 0.6806558 +0.388193 0.05087609 0.6806558 +0.4303934 0.05087609 0.6806558 +0.4751555 0.05087609 0.6806558 +0.5225216 0.05087609 0.6806558 +0.5725335 0.05087609 0.6806558 +0.6252316 0.05087609 0.6806558 +0.6806558 0.05087609 0.6806558 +0.7388448 0.05087609 0.6806558 +0.7998369 0.05087609 0.6806558 +0.8636691 0.05087609 0.6806558 +0.9303782 0.05087609 0.6806558 +1 0.05087609 0.6806558 +0 0.06429595 0.6806558 +0.002418731 0.06429595 0.6806558 +0.005155668 0.06429595 0.6806558 +0.009080105 0.06429595 0.6806558 +0.01434988 0.06429595 0.6806558 +0.02107202 0.06429595 0.6806558 +0.02934285 0.06429595 0.6806558 +0.03925039 0.06429595 0.6806558 +0.05087609 0.06429595 0.6806558 +0.06429595 0.06429595 0.6806558 +0.07958143 0.06429595 0.6806558 +0.0968001 0.06429595 0.6806558 +0.1160161 0.06429595 0.6806558 +0.1372908 0.06429595 0.6806558 +0.1606827 0.06429595 0.6806558 +0.1862481 0.06429595 0.6806558 +0.2140411 0.06429595 0.6806558 +0.2441142 0.06429595 0.6806558 +0.2765176 0.06429595 0.6806558 +0.3113005 0.06429595 0.6806558 +0.3485102 0.06429595 0.6806558 +0.388193 0.06429595 0.6806558 +0.4303934 0.06429595 0.6806558 +0.4751555 0.06429595 0.6806558 +0.5225216 0.06429595 0.6806558 +0.5725335 0.06429595 0.6806558 +0.6252316 0.06429595 0.6806558 +0.6806558 0.06429595 0.6806558 +0.7388448 0.06429595 0.6806558 +0.7998369 0.06429595 0.6806558 +0.8636691 0.06429595 0.6806558 +0.9303782 0.06429595 0.6806558 +1 0.06429595 0.6806558 +0 0.07958143 0.6806558 +0.002418731 0.07958143 0.6806558 +0.005155668 0.07958143 0.6806558 +0.009080105 0.07958143 0.6806558 +0.01434988 0.07958143 0.6806558 +0.02107202 0.07958143 0.6806558 +0.02934285 0.07958143 0.6806558 +0.03925039 0.07958143 0.6806558 +0.05087609 0.07958143 0.6806558 +0.06429595 0.07958143 0.6806558 +0.07958143 0.07958143 0.6806558 +0.0968001 0.07958143 0.6806558 +0.1160161 0.07958143 0.6806558 +0.1372908 0.07958143 0.6806558 +0.1606827 0.07958143 0.6806558 +0.1862481 0.07958143 0.6806558 +0.2140411 0.07958143 0.6806558 +0.2441142 0.07958143 0.6806558 +0.2765176 0.07958143 0.6806558 +0.3113005 0.07958143 0.6806558 +0.3485102 0.07958143 0.6806558 +0.388193 0.07958143 0.6806558 +0.4303934 0.07958143 0.6806558 +0.4751555 0.07958143 0.6806558 +0.5225216 0.07958143 0.6806558 +0.5725335 0.07958143 0.6806558 +0.6252316 0.07958143 0.6806558 +0.6806558 0.07958143 0.6806558 +0.7388448 0.07958143 0.6806558 +0.7998369 0.07958143 0.6806558 +0.8636691 0.07958143 0.6806558 +0.9303782 0.07958143 0.6806558 +1 0.07958143 0.6806558 +0 0.0968001 0.6806558 +0.002418731 0.0968001 0.6806558 +0.005155668 0.0968001 0.6806558 +0.009080105 0.0968001 0.6806558 +0.01434988 0.0968001 0.6806558 +0.02107202 0.0968001 0.6806558 +0.02934285 0.0968001 0.6806558 +0.03925039 0.0968001 0.6806558 +0.05087609 0.0968001 0.6806558 +0.06429595 0.0968001 0.6806558 +0.07958143 0.0968001 0.6806558 +0.0968001 0.0968001 0.6806558 +0.1160161 0.0968001 0.6806558 +0.1372908 0.0968001 0.6806558 +0.1606827 0.0968001 0.6806558 +0.1862481 0.0968001 0.6806558 +0.2140411 0.0968001 0.6806558 +0.2441142 0.0968001 0.6806558 +0.2765176 0.0968001 0.6806558 +0.3113005 0.0968001 0.6806558 +0.3485102 0.0968001 0.6806558 +0.388193 0.0968001 0.6806558 +0.4303934 0.0968001 0.6806558 +0.4751555 0.0968001 0.6806558 +0.5225216 0.0968001 0.6806558 +0.5725335 0.0968001 0.6806558 +0.6252316 0.0968001 0.6806558 +0.6806558 0.0968001 0.6806558 +0.7388448 0.0968001 0.6806558 +0.7998369 0.0968001 0.6806558 +0.8636691 0.0968001 0.6806558 +0.9303782 0.0968001 0.6806558 +1 0.0968001 0.6806558 +0 0.1160161 0.6806558 +0.002418731 0.1160161 0.6806558 +0.005155668 0.1160161 0.6806558 +0.009080105 0.1160161 0.6806558 +0.01434988 0.1160161 0.6806558 +0.02107202 0.1160161 0.6806558 +0.02934285 0.1160161 0.6806558 +0.03925039 0.1160161 0.6806558 +0.05087609 0.1160161 0.6806558 +0.06429595 0.1160161 0.6806558 +0.07958143 0.1160161 0.6806558 +0.0968001 0.1160161 0.6806558 +0.1160161 0.1160161 0.6806558 +0.1372908 0.1160161 0.6806558 +0.1606827 0.1160161 0.6806558 +0.1862481 0.1160161 0.6806558 +0.2140411 0.1160161 0.6806558 +0.2441142 0.1160161 0.6806558 +0.2765176 0.1160161 0.6806558 +0.3113005 0.1160161 0.6806558 +0.3485102 0.1160161 0.6806558 +0.388193 0.1160161 0.6806558 +0.4303934 0.1160161 0.6806558 +0.4751555 0.1160161 0.6806558 +0.5225216 0.1160161 0.6806558 +0.5725335 0.1160161 0.6806558 +0.6252316 0.1160161 0.6806558 +0.6806558 0.1160161 0.6806558 +0.7388448 0.1160161 0.6806558 +0.7998369 0.1160161 0.6806558 +0.8636691 0.1160161 0.6806558 +0.9303782 0.1160161 0.6806558 +1 0.1160161 0.6806558 +0 0.1372908 0.6806558 +0.002418731 0.1372908 0.6806558 +0.005155668 0.1372908 0.6806558 +0.009080105 0.1372908 0.6806558 +0.01434988 0.1372908 0.6806558 +0.02107202 0.1372908 0.6806558 +0.02934285 0.1372908 0.6806558 +0.03925039 0.1372908 0.6806558 +0.05087609 0.1372908 0.6806558 +0.06429595 0.1372908 0.6806558 +0.07958143 0.1372908 0.6806558 +0.0968001 0.1372908 0.6806558 +0.1160161 0.1372908 0.6806558 +0.1372908 0.1372908 0.6806558 +0.1606827 0.1372908 0.6806558 +0.1862481 0.1372908 0.6806558 +0.2140411 0.1372908 0.6806558 +0.2441142 0.1372908 0.6806558 +0.2765176 0.1372908 0.6806558 +0.3113005 0.1372908 0.6806558 +0.3485102 0.1372908 0.6806558 +0.388193 0.1372908 0.6806558 +0.4303934 0.1372908 0.6806558 +0.4751555 0.1372908 0.6806558 +0.5225216 0.1372908 0.6806558 +0.5725335 0.1372908 0.6806558 +0.6252316 0.1372908 0.6806558 +0.6806558 0.1372908 0.6806558 +0.7388448 0.1372908 0.6806558 +0.7998369 0.1372908 0.6806558 +0.8636691 0.1372908 0.6806558 +0.9303782 0.1372908 0.6806558 +1 0.1372908 0.6806558 +0 0.1606827 0.6806558 +0.002418731 0.1606827 0.6806558 +0.005155668 0.1606827 0.6806558 +0.009080105 0.1606827 0.6806558 +0.01434988 0.1606827 0.6806558 +0.02107202 0.1606827 0.6806558 +0.02934285 0.1606827 0.6806558 +0.03925039 0.1606827 0.6806558 +0.05087609 0.1606827 0.6806558 +0.06429595 0.1606827 0.6806558 +0.07958143 0.1606827 0.6806558 +0.0968001 0.1606827 0.6806558 +0.1160161 0.1606827 0.6806558 +0.1372908 0.1606827 0.6806558 +0.1606827 0.1606827 0.6806558 +0.1862481 0.1606827 0.6806558 +0.2140411 0.1606827 0.6806558 +0.2441142 0.1606827 0.6806558 +0.2765176 0.1606827 0.6806558 +0.3113005 0.1606827 0.6806558 +0.3485102 0.1606827 0.6806558 +0.388193 0.1606827 0.6806558 +0.4303934 0.1606827 0.6806558 +0.4751555 0.1606827 0.6806558 +0.5225216 0.1606827 0.6806558 +0.5725335 0.1606827 0.6806558 +0.6252316 0.1606827 0.6806558 +0.6806558 0.1606827 0.6806558 +0.7388448 0.1606827 0.6806558 +0.7998369 0.1606827 0.6806558 +0.8636691 0.1606827 0.6806558 +0.9303782 0.1606827 0.6806558 +1 0.1606827 0.6806558 +0 0.1862481 0.6806558 +0.002418731 0.1862481 0.6806558 +0.005155668 0.1862481 0.6806558 +0.009080105 0.1862481 0.6806558 +0.01434988 0.1862481 0.6806558 +0.02107202 0.1862481 0.6806558 +0.02934285 0.1862481 0.6806558 +0.03925039 0.1862481 0.6806558 +0.05087609 0.1862481 0.6806558 +0.06429595 0.1862481 0.6806558 +0.07958143 0.1862481 0.6806558 +0.0968001 0.1862481 0.6806558 +0.1160161 0.1862481 0.6806558 +0.1372908 0.1862481 0.6806558 +0.1606827 0.1862481 0.6806558 +0.1862481 0.1862481 0.6806558 +0.2140411 0.1862481 0.6806558 +0.2441142 0.1862481 0.6806558 +0.2765176 0.1862481 0.6806558 +0.3113005 0.1862481 0.6806558 +0.3485102 0.1862481 0.6806558 +0.388193 0.1862481 0.6806558 +0.4303934 0.1862481 0.6806558 +0.4751555 0.1862481 0.6806558 +0.5225216 0.1862481 0.6806558 +0.5725335 0.1862481 0.6806558 +0.6252316 0.1862481 0.6806558 +0.6806558 0.1862481 0.6806558 +0.7388448 0.1862481 0.6806558 +0.7998369 0.1862481 0.6806558 +0.8636691 0.1862481 0.6806558 +0.9303782 0.1862481 0.6806558 +1 0.1862481 0.6806558 +0 0.2140411 0.6806558 +0.002418731 0.2140411 0.6806558 +0.005155668 0.2140411 0.6806558 +0.009080105 0.2140411 0.6806558 +0.01434988 0.2140411 0.6806558 +0.02107202 0.2140411 0.6806558 +0.02934285 0.2140411 0.6806558 +0.03925039 0.2140411 0.6806558 +0.05087609 0.2140411 0.6806558 +0.06429595 0.2140411 0.6806558 +0.07958143 0.2140411 0.6806558 +0.0968001 0.2140411 0.6806558 +0.1160161 0.2140411 0.6806558 +0.1372908 0.2140411 0.6806558 +0.1606827 0.2140411 0.6806558 +0.1862481 0.2140411 0.6806558 +0.2140411 0.2140411 0.6806558 +0.2441142 0.2140411 0.6806558 +0.2765176 0.2140411 0.6806558 +0.3113005 0.2140411 0.6806558 +0.3485102 0.2140411 0.6806558 +0.388193 0.2140411 0.6806558 +0.4303934 0.2140411 0.6806558 +0.4751555 0.2140411 0.6806558 +0.5225216 0.2140411 0.6806558 +0.5725335 0.2140411 0.6806558 +0.6252316 0.2140411 0.6806558 +0.6806558 0.2140411 0.6806558 +0.7388448 0.2140411 0.6806558 +0.7998369 0.2140411 0.6806558 +0.8636691 0.2140411 0.6806558 +0.9303782 0.2140411 0.6806558 +1 0.2140411 0.6806558 +0 0.2441142 0.6806558 +0.002418731 0.2441142 0.6806558 +0.005155668 0.2441142 0.6806558 +0.009080105 0.2441142 0.6806558 +0.01434988 0.2441142 0.6806558 +0.02107202 0.2441142 0.6806558 +0.02934285 0.2441142 0.6806558 +0.03925039 0.2441142 0.6806558 +0.05087609 0.2441142 0.6806558 +0.06429595 0.2441142 0.6806558 +0.07958143 0.2441142 0.6806558 +0.0968001 0.2441142 0.6806558 +0.1160161 0.2441142 0.6806558 +0.1372908 0.2441142 0.6806558 +0.1606827 0.2441142 0.6806558 +0.1862481 0.2441142 0.6806558 +0.2140411 0.2441142 0.6806558 +0.2441142 0.2441142 0.6806558 +0.2765176 0.2441142 0.6806558 +0.3113005 0.2441142 0.6806558 +0.3485102 0.2441142 0.6806558 +0.388193 0.2441142 0.6806558 +0.4303934 0.2441142 0.6806558 +0.4751555 0.2441142 0.6806558 +0.5225216 0.2441142 0.6806558 +0.5725335 0.2441142 0.6806558 +0.6252316 0.2441142 0.6806558 +0.6806558 0.2441142 0.6806558 +0.7388448 0.2441142 0.6806558 +0.7998369 0.2441142 0.6806558 +0.8636691 0.2441142 0.6806558 +0.9303782 0.2441142 0.6806558 +1 0.2441142 0.6806558 +0 0.2765176 0.6806558 +0.002418731 0.2765176 0.6806558 +0.005155668 0.2765176 0.6806558 +0.009080105 0.2765176 0.6806558 +0.01434988 0.2765176 0.6806558 +0.02107202 0.2765176 0.6806558 +0.02934285 0.2765176 0.6806558 +0.03925039 0.2765176 0.6806558 +0.05087609 0.2765176 0.6806558 +0.06429595 0.2765176 0.6806558 +0.07958143 0.2765176 0.6806558 +0.0968001 0.2765176 0.6806558 +0.1160161 0.2765176 0.6806558 +0.1372908 0.2765176 0.6806558 +0.1606827 0.2765176 0.6806558 +0.1862481 0.2765176 0.6806558 +0.2140411 0.2765176 0.6806558 +0.2441142 0.2765176 0.6806558 +0.2765176 0.2765176 0.6806558 +0.3113005 0.2765176 0.6806558 +0.3485102 0.2765176 0.6806558 +0.388193 0.2765176 0.6806558 +0.4303934 0.2765176 0.6806558 +0.4751555 0.2765176 0.6806558 +0.5225216 0.2765176 0.6806558 +0.5725335 0.2765176 0.6806558 +0.6252316 0.2765176 0.6806558 +0.6806558 0.2765176 0.6806558 +0.7388448 0.2765176 0.6806558 +0.7998369 0.2765176 0.6806558 +0.8636691 0.2765176 0.6806558 +0.9303782 0.2765176 0.6806558 +1 0.2765176 0.6806558 +0 0.3113005 0.6806558 +0.002418731 0.3113005 0.6806558 +0.005155668 0.3113005 0.6806558 +0.009080105 0.3113005 0.6806558 +0.01434988 0.3113005 0.6806558 +0.02107202 0.3113005 0.6806558 +0.02934285 0.3113005 0.6806558 +0.03925039 0.3113005 0.6806558 +0.05087609 0.3113005 0.6806558 +0.06429595 0.3113005 0.6806558 +0.07958143 0.3113005 0.6806558 +0.0968001 0.3113005 0.6806558 +0.1160161 0.3113005 0.6806558 +0.1372908 0.3113005 0.6806558 +0.1606827 0.3113005 0.6806558 +0.1862481 0.3113005 0.6806558 +0.2140411 0.3113005 0.6806558 +0.2441142 0.3113005 0.6806558 +0.2765176 0.3113005 0.6806558 +0.3113005 0.3113005 0.6806558 +0.3485102 0.3113005 0.6806558 +0.388193 0.3113005 0.6806558 +0.4303934 0.3113005 0.6806558 +0.4751555 0.3113005 0.6806558 +0.5225216 0.3113005 0.6806558 +0.5725335 0.3113005 0.6806558 +0.6252316 0.3113005 0.6806558 +0.6806558 0.3113005 0.6806558 +0.7388448 0.3113005 0.6806558 +0.7998369 0.3113005 0.6806558 +0.8636691 0.3113005 0.6806558 +0.9303782 0.3113005 0.6806558 +1 0.3113005 0.6806558 +0 0.3485102 0.6806558 +0.002418731 0.3485102 0.6806558 +0.005155668 0.3485102 0.6806558 +0.009080105 0.3485102 0.6806558 +0.01434988 0.3485102 0.6806558 +0.02107202 0.3485102 0.6806558 +0.02934285 0.3485102 0.6806558 +0.03925039 0.3485102 0.6806558 +0.05087609 0.3485102 0.6806558 +0.06429595 0.3485102 0.6806558 +0.07958143 0.3485102 0.6806558 +0.0968001 0.3485102 0.6806558 +0.1160161 0.3485102 0.6806558 +0.1372908 0.3485102 0.6806558 +0.1606827 0.3485102 0.6806558 +0.1862481 0.3485102 0.6806558 +0.2140411 0.3485102 0.6806558 +0.2441142 0.3485102 0.6806558 +0.2765176 0.3485102 0.6806558 +0.3113005 0.3485102 0.6806558 +0.3485102 0.3485102 0.6806558 +0.388193 0.3485102 0.6806558 +0.4303934 0.3485102 0.6806558 +0.4751555 0.3485102 0.6806558 +0.5225216 0.3485102 0.6806558 +0.5725335 0.3485102 0.6806558 +0.6252316 0.3485102 0.6806558 +0.6806558 0.3485102 0.6806558 +0.7388448 0.3485102 0.6806558 +0.7998369 0.3485102 0.6806558 +0.8636691 0.3485102 0.6806558 +0.9303782 0.3485102 0.6806558 +1 0.3485102 0.6806558 +0 0.388193 0.6806558 +0.002418731 0.388193 0.6806558 +0.005155668 0.388193 0.6806558 +0.009080105 0.388193 0.6806558 +0.01434988 0.388193 0.6806558 +0.02107202 0.388193 0.6806558 +0.02934285 0.388193 0.6806558 +0.03925039 0.388193 0.6806558 +0.05087609 0.388193 0.6806558 +0.06429595 0.388193 0.6806558 +0.07958143 0.388193 0.6806558 +0.0968001 0.388193 0.6806558 +0.1160161 0.388193 0.6806558 +0.1372908 0.388193 0.6806558 +0.1606827 0.388193 0.6806558 +0.1862481 0.388193 0.6806558 +0.2140411 0.388193 0.6806558 +0.2441142 0.388193 0.6806558 +0.2765176 0.388193 0.6806558 +0.3113005 0.388193 0.6806558 +0.3485102 0.388193 0.6806558 +0.388193 0.388193 0.6806558 +0.4303934 0.388193 0.6806558 +0.4751555 0.388193 0.6806558 +0.5225216 0.388193 0.6806558 +0.5725335 0.388193 0.6806558 +0.6252316 0.388193 0.6806558 +0.6806558 0.388193 0.6806558 +0.7388448 0.388193 0.6806558 +0.7998369 0.388193 0.6806558 +0.8636691 0.388193 0.6806558 +0.9303782 0.388193 0.6806558 +1 0.388193 0.6806558 +0 0.4303934 0.6806558 +0.002418731 0.4303934 0.6806558 +0.005155668 0.4303934 0.6806558 +0.009080105 0.4303934 0.6806558 +0.01434988 0.4303934 0.6806558 +0.02107202 0.4303934 0.6806558 +0.02934285 0.4303934 0.6806558 +0.03925039 0.4303934 0.6806558 +0.05087609 0.4303934 0.6806558 +0.06429595 0.4303934 0.6806558 +0.07958143 0.4303934 0.6806558 +0.0968001 0.4303934 0.6806558 +0.1160161 0.4303934 0.6806558 +0.1372908 0.4303934 0.6806558 +0.1606827 0.4303934 0.6806558 +0.1862481 0.4303934 0.6806558 +0.2140411 0.4303934 0.6806558 +0.2441142 0.4303934 0.6806558 +0.2765176 0.4303934 0.6806558 +0.3113005 0.4303934 0.6806558 +0.3485102 0.4303934 0.6806558 +0.388193 0.4303934 0.6806558 +0.4303934 0.4303934 0.6806558 +0.4751555 0.4303934 0.6806558 +0.5225216 0.4303934 0.6806558 +0.5725335 0.4303934 0.6806558 +0.6252316 0.4303934 0.6806558 +0.6806558 0.4303934 0.6806558 +0.7388448 0.4303934 0.6806558 +0.7998369 0.4303934 0.6806558 +0.8636691 0.4303934 0.6806558 +0.9303782 0.4303934 0.6806558 +1 0.4303934 0.6806558 +0 0.4751555 0.6806558 +0.002418731 0.4751555 0.6806558 +0.005155668 0.4751555 0.6806558 +0.009080105 0.4751555 0.6806558 +0.01434988 0.4751555 0.6806558 +0.02107202 0.4751555 0.6806558 +0.02934285 0.4751555 0.6806558 +0.03925039 0.4751555 0.6806558 +0.05087609 0.4751555 0.6806558 +0.06429595 0.4751555 0.6806558 +0.07958143 0.4751555 0.6806558 +0.0968001 0.4751555 0.6806558 +0.1160161 0.4751555 0.6806558 +0.1372908 0.4751555 0.6806558 +0.1606827 0.4751555 0.6806558 +0.1862481 0.4751555 0.6806558 +0.2140411 0.4751555 0.6806558 +0.2441142 0.4751555 0.6806558 +0.2765176 0.4751555 0.6806558 +0.3113005 0.4751555 0.6806558 +0.3485102 0.4751555 0.6806558 +0.388193 0.4751555 0.6806558 +0.4303934 0.4751555 0.6806558 +0.4751555 0.4751555 0.6806558 +0.5225216 0.4751555 0.6806558 +0.5725335 0.4751555 0.6806558 +0.6252316 0.4751555 0.6806558 +0.6806558 0.4751555 0.6806558 +0.7388448 0.4751555 0.6806558 +0.7998369 0.4751555 0.6806558 +0.8636691 0.4751555 0.6806558 +0.9303782 0.4751555 0.6806558 +1 0.4751555 0.6806558 +0 0.5225216 0.6806558 +0.002418731 0.5225216 0.6806558 +0.005155668 0.5225216 0.6806558 +0.009080105 0.5225216 0.6806558 +0.01434988 0.5225216 0.6806558 +0.02107202 0.5225216 0.6806558 +0.02934285 0.5225216 0.6806558 +0.03925039 0.5225216 0.6806558 +0.05087609 0.5225216 0.6806558 +0.06429595 0.5225216 0.6806558 +0.07958143 0.5225216 0.6806558 +0.0968001 0.5225216 0.6806558 +0.1160161 0.5225216 0.6806558 +0.1372908 0.5225216 0.6806558 +0.1606827 0.5225216 0.6806558 +0.1862481 0.5225216 0.6806558 +0.2140411 0.5225216 0.6806558 +0.2441142 0.5225216 0.6806558 +0.2765176 0.5225216 0.6806558 +0.3113005 0.5225216 0.6806558 +0.3485102 0.5225216 0.6806558 +0.388193 0.5225216 0.6806558 +0.4303934 0.5225216 0.6806558 +0.4751555 0.5225216 0.6806558 +0.5225216 0.5225216 0.6806558 +0.5725335 0.5225216 0.6806558 +0.6252316 0.5225216 0.6806558 +0.6806558 0.5225216 0.6806558 +0.7388448 0.5225216 0.6806558 +0.7998369 0.5225216 0.6806558 +0.8636691 0.5225216 0.6806558 +0.9303782 0.5225216 0.6806558 +1 0.5225216 0.6806558 +0 0.5725335 0.6806558 +0.002418731 0.5725335 0.6806558 +0.005155668 0.5725335 0.6806558 +0.009080105 0.5725335 0.6806558 +0.01434988 0.5725335 0.6806558 +0.02107202 0.5725335 0.6806558 +0.02934285 0.5725335 0.6806558 +0.03925039 0.5725335 0.6806558 +0.05087609 0.5725335 0.6806558 +0.06429595 0.5725335 0.6806558 +0.07958143 0.5725335 0.6806558 +0.0968001 0.5725335 0.6806558 +0.1160161 0.5725335 0.6806558 +0.1372908 0.5725335 0.6806558 +0.1606827 0.5725335 0.6806558 +0.1862481 0.5725335 0.6806558 +0.2140411 0.5725335 0.6806558 +0.2441142 0.5725335 0.6806558 +0.2765176 0.5725335 0.6806558 +0.3113005 0.5725335 0.6806558 +0.3485102 0.5725335 0.6806558 +0.388193 0.5725335 0.6806558 +0.4303934 0.5725335 0.6806558 +0.4751555 0.5725335 0.6806558 +0.5225216 0.5725335 0.6806558 +0.5725335 0.5725335 0.6806558 +0.6252316 0.5725335 0.6806558 +0.6806558 0.5725335 0.6806558 +0.7388448 0.5725335 0.6806558 +0.7998369 0.5725335 0.6806558 +0.8636691 0.5725335 0.6806558 +0.9303782 0.5725335 0.6806558 +1 0.5725335 0.6806558 +0 0.6252316 0.6806558 +0.002418731 0.6252316 0.6806558 +0.005155668 0.6252316 0.6806558 +0.009080105 0.6252316 0.6806558 +0.01434988 0.6252316 0.6806558 +0.02107202 0.6252316 0.6806558 +0.02934285 0.6252316 0.6806558 +0.03925039 0.6252316 0.6806558 +0.05087609 0.6252316 0.6806558 +0.06429595 0.6252316 0.6806558 +0.07958143 0.6252316 0.6806558 +0.0968001 0.6252316 0.6806558 +0.1160161 0.6252316 0.6806558 +0.1372908 0.6252316 0.6806558 +0.1606827 0.6252316 0.6806558 +0.1862481 0.6252316 0.6806558 +0.2140411 0.6252316 0.6806558 +0.2441142 0.6252316 0.6806558 +0.2765176 0.6252316 0.6806558 +0.3113005 0.6252316 0.6806558 +0.3485102 0.6252316 0.6806558 +0.388193 0.6252316 0.6806558 +0.4303934 0.6252316 0.6806558 +0.4751555 0.6252316 0.6806558 +0.5225216 0.6252316 0.6806558 +0.5725335 0.6252316 0.6806558 +0.6252316 0.6252316 0.6806558 +0.6806558 0.6252316 0.6806558 +0.7388448 0.6252316 0.6806558 +0.7998369 0.6252316 0.6806558 +0.8636691 0.6252316 0.6806558 +0.9303782 0.6252316 0.6806558 +1 0.6252316 0.6806558 +0 0.6806558 0.6806558 +0.002418731 0.6806558 0.6806558 +0.005155668 0.6806558 0.6806558 +0.009080105 0.6806558 0.6806558 +0.01434988 0.6806558 0.6806558 +0.02107202 0.6806558 0.6806558 +0.02934285 0.6806558 0.6806558 +0.03925039 0.6806558 0.6806558 +0.05087609 0.6806558 0.6806558 +0.06429595 0.6806558 0.6806558 +0.07958143 0.6806558 0.6806558 +0.0968001 0.6806558 0.6806558 +0.1160161 0.6806558 0.6806558 +0.1372908 0.6806558 0.6806558 +0.1606827 0.6806558 0.6806558 +0.1862481 0.6806558 0.6806558 +0.2140411 0.6806558 0.6806558 +0.2441142 0.6806558 0.6806558 +0.2765176 0.6806558 0.6806558 +0.3113005 0.6806558 0.6806558 +0.3485102 0.6806558 0.6806558 +0.388193 0.6806558 0.6806558 +0.4303934 0.6806558 0.6806558 +0.4751555 0.6806558 0.6806558 +0.5225216 0.6806558 0.6806558 +0.5725335 0.6806558 0.6806558 +0.6252316 0.6806558 0.6806558 +0.6806558 0.6806558 0.6806558 +0.7388448 0.6806558 0.6806558 +0.7998369 0.6806558 0.6806558 +0.8636691 0.6806558 0.6806558 +0.9303782 0.6806558 0.6806558 +1 0.6806558 0.6806558 +0 0.7388448 0.6806558 +0.002418731 0.7388448 0.6806558 +0.005155668 0.7388448 0.6806558 +0.009080105 0.7388448 0.6806558 +0.01434988 0.7388448 0.6806558 +0.02107202 0.7388448 0.6806558 +0.02934285 0.7388448 0.6806558 +0.03925039 0.7388448 0.6806558 +0.05087609 0.7388448 0.6806558 +0.06429595 0.7388448 0.6806558 +0.07958143 0.7388448 0.6806558 +0.0968001 0.7388448 0.6806558 +0.1160161 0.7388448 0.6806558 +0.1372908 0.7388448 0.6806558 +0.1606827 0.7388448 0.6806558 +0.1862481 0.7388448 0.6806558 +0.2140411 0.7388448 0.6806558 +0.2441142 0.7388448 0.6806558 +0.2765176 0.7388448 0.6806558 +0.3113005 0.7388448 0.6806558 +0.3485102 0.7388448 0.6806558 +0.388193 0.7388448 0.6806558 +0.4303934 0.7388448 0.6806558 +0.4751555 0.7388448 0.6806558 +0.5225216 0.7388448 0.6806558 +0.5725335 0.7388448 0.6806558 +0.6252316 0.7388448 0.6806558 +0.6806558 0.7388448 0.6806558 +0.7388448 0.7388448 0.6806558 +0.7998369 0.7388448 0.6806558 +0.8636691 0.7388448 0.6806558 +0.9303782 0.7388448 0.6806558 +1 0.7388448 0.6806558 +0 0.7998369 0.6806558 +0.002418731 0.7998369 0.6806558 +0.005155668 0.7998369 0.6806558 +0.009080105 0.7998369 0.6806558 +0.01434988 0.7998369 0.6806558 +0.02107202 0.7998369 0.6806558 +0.02934285 0.7998369 0.6806558 +0.03925039 0.7998369 0.6806558 +0.05087609 0.7998369 0.6806558 +0.06429595 0.7998369 0.6806558 +0.07958143 0.7998369 0.6806558 +0.0968001 0.7998369 0.6806558 +0.1160161 0.7998369 0.6806558 +0.1372908 0.7998369 0.6806558 +0.1606827 0.7998369 0.6806558 +0.1862481 0.7998369 0.6806558 +0.2140411 0.7998369 0.6806558 +0.2441142 0.7998369 0.6806558 +0.2765176 0.7998369 0.6806558 +0.3113005 0.7998369 0.6806558 +0.3485102 0.7998369 0.6806558 +0.388193 0.7998369 0.6806558 +0.4303934 0.7998369 0.6806558 +0.4751555 0.7998369 0.6806558 +0.5225216 0.7998369 0.6806558 +0.5725335 0.7998369 0.6806558 +0.6252316 0.7998369 0.6806558 +0.6806558 0.7998369 0.6806558 +0.7388448 0.7998369 0.6806558 +0.7998369 0.7998369 0.6806558 +0.8636691 0.7998369 0.6806558 +0.9303782 0.7998369 0.6806558 +1 0.7998369 0.6806558 +0 0.8636691 0.6806558 +0.002418731 0.8636691 0.6806558 +0.005155668 0.8636691 0.6806558 +0.009080105 0.8636691 0.6806558 +0.01434988 0.8636691 0.6806558 +0.02107202 0.8636691 0.6806558 +0.02934285 0.8636691 0.6806558 +0.03925039 0.8636691 0.6806558 +0.05087609 0.8636691 0.6806558 +0.06429595 0.8636691 0.6806558 +0.07958143 0.8636691 0.6806558 +0.0968001 0.8636691 0.6806558 +0.1160161 0.8636691 0.6806558 +0.1372908 0.8636691 0.6806558 +0.1606827 0.8636691 0.6806558 +0.1862481 0.8636691 0.6806558 +0.2140411 0.8636691 0.6806558 +0.2441142 0.8636691 0.6806558 +0.2765176 0.8636691 0.6806558 +0.3113005 0.8636691 0.6806558 +0.3485102 0.8636691 0.6806558 +0.388193 0.8636691 0.6806558 +0.4303934 0.8636691 0.6806558 +0.4751555 0.8636691 0.6806558 +0.5225216 0.8636691 0.6806558 +0.5725335 0.8636691 0.6806558 +0.6252316 0.8636691 0.6806558 +0.6806558 0.8636691 0.6806558 +0.7388448 0.8636691 0.6806558 +0.7998369 0.8636691 0.6806558 +0.8636691 0.8636691 0.6806558 +0.9303782 0.8636691 0.6806558 +1 0.8636691 0.6806558 +0 0.9303782 0.6806558 +0.002418731 0.9303782 0.6806558 +0.005155668 0.9303782 0.6806558 +0.009080105 0.9303782 0.6806558 +0.01434988 0.9303782 0.6806558 +0.02107202 0.9303782 0.6806558 +0.02934285 0.9303782 0.6806558 +0.03925039 0.9303782 0.6806558 +0.05087609 0.9303782 0.6806558 +0.06429595 0.9303782 0.6806558 +0.07958143 0.9303782 0.6806558 +0.0968001 0.9303782 0.6806558 +0.1160161 0.9303782 0.6806558 +0.1372908 0.9303782 0.6806558 +0.1606827 0.9303782 0.6806558 +0.1862481 0.9303782 0.6806558 +0.2140411 0.9303782 0.6806558 +0.2441142 0.9303782 0.6806558 +0.2765176 0.9303782 0.6806558 +0.3113005 0.9303782 0.6806558 +0.3485102 0.9303782 0.6806558 +0.388193 0.9303782 0.6806558 +0.4303934 0.9303782 0.6806558 +0.4751555 0.9303782 0.6806558 +0.5225216 0.9303782 0.6806558 +0.5725335 0.9303782 0.6806558 +0.6252316 0.9303782 0.6806558 +0.6806558 0.9303782 0.6806558 +0.7388448 0.9303782 0.6806558 +0.7998369 0.9303782 0.6806558 +0.8636691 0.9303782 0.6806558 +0.9303782 0.9303782 0.6806558 +1 0.9303782 0.6806558 +0 1 0.6806558 +0.002418731 1 0.6806558 +0.005155668 1 0.6806558 +0.009080105 1 0.6806558 +0.01434988 1 0.6806558 +0.02107202 1 0.6806558 +0.02934285 1 0.6806558 +0.03925039 1 0.6806558 +0.05087609 1 0.6806558 +0.06429595 1 0.6806558 +0.07958143 1 0.6806558 +0.0968001 1 0.6806558 +0.1160161 1 0.6806558 +0.1372908 1 0.6806558 +0.1606827 1 0.6806558 +0.1862481 1 0.6806558 +0.2140411 1 0.6806558 +0.2441142 1 0.6806558 +0.2765176 1 0.6806558 +0.3113005 1 0.6806558 +0.3485102 1 0.6806558 +0.388193 1 0.6806558 +0.4303934 1 0.6806558 +0.4751555 1 0.6806558 +0.5225216 1 0.6806558 +0.5725335 1 0.6806558 +0.6252316 1 0.6806558 +0.6806558 1 0.6806558 +0.7388448 1 0.6806558 +0.7998369 1 0.6806558 +0.8636691 1 0.6806558 +0.9303782 1 0.6806558 +1 1 0.6806558 +0 0 0.7388448 +0.002418731 0 0.7388448 +0.005155668 0 0.7388448 +0.009080105 0 0.7388448 +0.01434988 0 0.7388448 +0.02107202 0 0.7388448 +0.02934285 0 0.7388448 +0.03925039 0 0.7388448 +0.05087609 0 0.7388448 +0.06429595 0 0.7388448 +0.07958143 0 0.7388448 +0.0968001 0 0.7388448 +0.1160161 0 0.7388448 +0.1372908 0 0.7388448 +0.1606827 0 0.7388448 +0.1862481 0 0.7388448 +0.2140411 0 0.7388448 +0.2441142 0 0.7388448 +0.2765176 0 0.7388448 +0.3113005 0 0.7388448 +0.3485102 0 0.7388448 +0.388193 0 0.7388448 +0.4303934 0 0.7388448 +0.4751555 0 0.7388448 +0.5225216 0 0.7388448 +0.5725335 0 0.7388448 +0.6252316 0 0.7388448 +0.6806558 0 0.7388448 +0.7388448 0 0.7388448 +0.7998369 0 0.7388448 +0.8636691 0 0.7388448 +0.9303782 0 0.7388448 +1 0 0.7388448 +0 0.002418731 0.7388448 +0.002418731 0.002418731 0.7388448 +0.005155668 0.002418731 0.7388448 +0.009080105 0.002418731 0.7388448 +0.01434988 0.002418731 0.7388448 +0.02107202 0.002418731 0.7388448 +0.02934285 0.002418731 0.7388448 +0.03925039 0.002418731 0.7388448 +0.05087609 0.002418731 0.7388448 +0.06429595 0.002418731 0.7388448 +0.07958143 0.002418731 0.7388448 +0.0968001 0.002418731 0.7388448 +0.1160161 0.002418731 0.7388448 +0.1372908 0.002418731 0.7388448 +0.1606827 0.002418731 0.7388448 +0.1862481 0.002418731 0.7388448 +0.2140411 0.002418731 0.7388448 +0.2441142 0.002418731 0.7388448 +0.2765176 0.002418731 0.7388448 +0.3113005 0.002418731 0.7388448 +0.3485102 0.002418731 0.7388448 +0.388193 0.002418731 0.7388448 +0.4303934 0.002418731 0.7388448 +0.4751555 0.002418731 0.7388448 +0.5225216 0.002418731 0.7388448 +0.5725335 0.002418731 0.7388448 +0.6252316 0.002418731 0.7388448 +0.6806558 0.002418731 0.7388448 +0.7388448 0.002418731 0.7388448 +0.7998369 0.002418731 0.7388448 +0.8636691 0.002418731 0.7388448 +0.9303782 0.002418731 0.7388448 +1 0.002418731 0.7388448 +0 0.005155668 0.7388448 +0.002418731 0.005155668 0.7388448 +0.005155668 0.005155668 0.7388448 +0.009080105 0.005155668 0.7388448 +0.01434988 0.005155668 0.7388448 +0.02107202 0.005155668 0.7388448 +0.02934285 0.005155668 0.7388448 +0.03925039 0.005155668 0.7388448 +0.05087609 0.005155668 0.7388448 +0.06429595 0.005155668 0.7388448 +0.07958143 0.005155668 0.7388448 +0.0968001 0.005155668 0.7388448 +0.1160161 0.005155668 0.7388448 +0.1372908 0.005155668 0.7388448 +0.1606827 0.005155668 0.7388448 +0.1862481 0.005155668 0.7388448 +0.2140411 0.005155668 0.7388448 +0.2441142 0.005155668 0.7388448 +0.2765176 0.005155668 0.7388448 +0.3113005 0.005155668 0.7388448 +0.3485102 0.005155668 0.7388448 +0.388193 0.005155668 0.7388448 +0.4303934 0.005155668 0.7388448 +0.4751555 0.005155668 0.7388448 +0.5225216 0.005155668 0.7388448 +0.5725335 0.005155668 0.7388448 +0.6252316 0.005155668 0.7388448 +0.6806558 0.005155668 0.7388448 +0.7388448 0.005155668 0.7388448 +0.7998369 0.005155668 0.7388448 +0.8636691 0.005155668 0.7388448 +0.9303782 0.005155668 0.7388448 +1 0.005155668 0.7388448 +0 0.009080105 0.7388448 +0.002418731 0.009080105 0.7388448 +0.005155668 0.009080105 0.7388448 +0.009080105 0.009080105 0.7388448 +0.01434988 0.009080105 0.7388448 +0.02107202 0.009080105 0.7388448 +0.02934285 0.009080105 0.7388448 +0.03925039 0.009080105 0.7388448 +0.05087609 0.009080105 0.7388448 +0.06429595 0.009080105 0.7388448 +0.07958143 0.009080105 0.7388448 +0.0968001 0.009080105 0.7388448 +0.1160161 0.009080105 0.7388448 +0.1372908 0.009080105 0.7388448 +0.1606827 0.009080105 0.7388448 +0.1862481 0.009080105 0.7388448 +0.2140411 0.009080105 0.7388448 +0.2441142 0.009080105 0.7388448 +0.2765176 0.009080105 0.7388448 +0.3113005 0.009080105 0.7388448 +0.3485102 0.009080105 0.7388448 +0.388193 0.009080105 0.7388448 +0.4303934 0.009080105 0.7388448 +0.4751555 0.009080105 0.7388448 +0.5225216 0.009080105 0.7388448 +0.5725335 0.009080105 0.7388448 +0.6252316 0.009080105 0.7388448 +0.6806558 0.009080105 0.7388448 +0.7388448 0.009080105 0.7388448 +0.7998369 0.009080105 0.7388448 +0.8636691 0.009080105 0.7388448 +0.9303782 0.009080105 0.7388448 +1 0.009080105 0.7388448 +0 0.01434988 0.7388448 +0.002418731 0.01434988 0.7388448 +0.005155668 0.01434988 0.7388448 +0.009080105 0.01434988 0.7388448 +0.01434988 0.01434988 0.7388448 +0.02107202 0.01434988 0.7388448 +0.02934285 0.01434988 0.7388448 +0.03925039 0.01434988 0.7388448 +0.05087609 0.01434988 0.7388448 +0.06429595 0.01434988 0.7388448 +0.07958143 0.01434988 0.7388448 +0.0968001 0.01434988 0.7388448 +0.1160161 0.01434988 0.7388448 +0.1372908 0.01434988 0.7388448 +0.1606827 0.01434988 0.7388448 +0.1862481 0.01434988 0.7388448 +0.2140411 0.01434988 0.7388448 +0.2441142 0.01434988 0.7388448 +0.2765176 0.01434988 0.7388448 +0.3113005 0.01434988 0.7388448 +0.3485102 0.01434988 0.7388448 +0.388193 0.01434988 0.7388448 +0.4303934 0.01434988 0.7388448 +0.4751555 0.01434988 0.7388448 +0.5225216 0.01434988 0.7388448 +0.5725335 0.01434988 0.7388448 +0.6252316 0.01434988 0.7388448 +0.6806558 0.01434988 0.7388448 +0.7388448 0.01434988 0.7388448 +0.7998369 0.01434988 0.7388448 +0.8636691 0.01434988 0.7388448 +0.9303782 0.01434988 0.7388448 +1 0.01434988 0.7388448 +0 0.02107202 0.7388448 +0.002418731 0.02107202 0.7388448 +0.005155668 0.02107202 0.7388448 +0.009080105 0.02107202 0.7388448 +0.01434988 0.02107202 0.7388448 +0.02107202 0.02107202 0.7388448 +0.02934285 0.02107202 0.7388448 +0.03925039 0.02107202 0.7388448 +0.05087609 0.02107202 0.7388448 +0.06429595 0.02107202 0.7388448 +0.07958143 0.02107202 0.7388448 +0.0968001 0.02107202 0.7388448 +0.1160161 0.02107202 0.7388448 +0.1372908 0.02107202 0.7388448 +0.1606827 0.02107202 0.7388448 +0.1862481 0.02107202 0.7388448 +0.2140411 0.02107202 0.7388448 +0.2441142 0.02107202 0.7388448 +0.2765176 0.02107202 0.7388448 +0.3113005 0.02107202 0.7388448 +0.3485102 0.02107202 0.7388448 +0.388193 0.02107202 0.7388448 +0.4303934 0.02107202 0.7388448 +0.4751555 0.02107202 0.7388448 +0.5225216 0.02107202 0.7388448 +0.5725335 0.02107202 0.7388448 +0.6252316 0.02107202 0.7388448 +0.6806558 0.02107202 0.7388448 +0.7388448 0.02107202 0.7388448 +0.7998369 0.02107202 0.7388448 +0.8636691 0.02107202 0.7388448 +0.9303782 0.02107202 0.7388448 +1 0.02107202 0.7388448 +0 0.02934285 0.7388448 +0.002418731 0.02934285 0.7388448 +0.005155668 0.02934285 0.7388448 +0.009080105 0.02934285 0.7388448 +0.01434988 0.02934285 0.7388448 +0.02107202 0.02934285 0.7388448 +0.02934285 0.02934285 0.7388448 +0.03925039 0.02934285 0.7388448 +0.05087609 0.02934285 0.7388448 +0.06429595 0.02934285 0.7388448 +0.07958143 0.02934285 0.7388448 +0.0968001 0.02934285 0.7388448 +0.1160161 0.02934285 0.7388448 +0.1372908 0.02934285 0.7388448 +0.1606827 0.02934285 0.7388448 +0.1862481 0.02934285 0.7388448 +0.2140411 0.02934285 0.7388448 +0.2441142 0.02934285 0.7388448 +0.2765176 0.02934285 0.7388448 +0.3113005 0.02934285 0.7388448 +0.3485102 0.02934285 0.7388448 +0.388193 0.02934285 0.7388448 +0.4303934 0.02934285 0.7388448 +0.4751555 0.02934285 0.7388448 +0.5225216 0.02934285 0.7388448 +0.5725335 0.02934285 0.7388448 +0.6252316 0.02934285 0.7388448 +0.6806558 0.02934285 0.7388448 +0.7388448 0.02934285 0.7388448 +0.7998369 0.02934285 0.7388448 +0.8636691 0.02934285 0.7388448 +0.9303782 0.02934285 0.7388448 +1 0.02934285 0.7388448 +0 0.03925039 0.7388448 +0.002418731 0.03925039 0.7388448 +0.005155668 0.03925039 0.7388448 +0.009080105 0.03925039 0.7388448 +0.01434988 0.03925039 0.7388448 +0.02107202 0.03925039 0.7388448 +0.02934285 0.03925039 0.7388448 +0.03925039 0.03925039 0.7388448 +0.05087609 0.03925039 0.7388448 +0.06429595 0.03925039 0.7388448 +0.07958143 0.03925039 0.7388448 +0.0968001 0.03925039 0.7388448 +0.1160161 0.03925039 0.7388448 +0.1372908 0.03925039 0.7388448 +0.1606827 0.03925039 0.7388448 +0.1862481 0.03925039 0.7388448 +0.2140411 0.03925039 0.7388448 +0.2441142 0.03925039 0.7388448 +0.2765176 0.03925039 0.7388448 +0.3113005 0.03925039 0.7388448 +0.3485102 0.03925039 0.7388448 +0.388193 0.03925039 0.7388448 +0.4303934 0.03925039 0.7388448 +0.4751555 0.03925039 0.7388448 +0.5225216 0.03925039 0.7388448 +0.5725335 0.03925039 0.7388448 +0.6252316 0.03925039 0.7388448 +0.6806558 0.03925039 0.7388448 +0.7388448 0.03925039 0.7388448 +0.7998369 0.03925039 0.7388448 +0.8636691 0.03925039 0.7388448 +0.9303782 0.03925039 0.7388448 +1 0.03925039 0.7388448 +0 0.05087609 0.7388448 +0.002418731 0.05087609 0.7388448 +0.005155668 0.05087609 0.7388448 +0.009080105 0.05087609 0.7388448 +0.01434988 0.05087609 0.7388448 +0.02107202 0.05087609 0.7388448 +0.02934285 0.05087609 0.7388448 +0.03925039 0.05087609 0.7388448 +0.05087609 0.05087609 0.7388448 +0.06429595 0.05087609 0.7388448 +0.07958143 0.05087609 0.7388448 +0.0968001 0.05087609 0.7388448 +0.1160161 0.05087609 0.7388448 +0.1372908 0.05087609 0.7388448 +0.1606827 0.05087609 0.7388448 +0.1862481 0.05087609 0.7388448 +0.2140411 0.05087609 0.7388448 +0.2441142 0.05087609 0.7388448 +0.2765176 0.05087609 0.7388448 +0.3113005 0.05087609 0.7388448 +0.3485102 0.05087609 0.7388448 +0.388193 0.05087609 0.7388448 +0.4303934 0.05087609 0.7388448 +0.4751555 0.05087609 0.7388448 +0.5225216 0.05087609 0.7388448 +0.5725335 0.05087609 0.7388448 +0.6252316 0.05087609 0.7388448 +0.6806558 0.05087609 0.7388448 +0.7388448 0.05087609 0.7388448 +0.7998369 0.05087609 0.7388448 +0.8636691 0.05087609 0.7388448 +0.9303782 0.05087609 0.7388448 +1 0.05087609 0.7388448 +0 0.06429595 0.7388448 +0.002418731 0.06429595 0.7388448 +0.005155668 0.06429595 0.7388448 +0.009080105 0.06429595 0.7388448 +0.01434988 0.06429595 0.7388448 +0.02107202 0.06429595 0.7388448 +0.02934285 0.06429595 0.7388448 +0.03925039 0.06429595 0.7388448 +0.05087609 0.06429595 0.7388448 +0.06429595 0.06429595 0.7388448 +0.07958143 0.06429595 0.7388448 +0.0968001 0.06429595 0.7388448 +0.1160161 0.06429595 0.7388448 +0.1372908 0.06429595 0.7388448 +0.1606827 0.06429595 0.7388448 +0.1862481 0.06429595 0.7388448 +0.2140411 0.06429595 0.7388448 +0.2441142 0.06429595 0.7388448 +0.2765176 0.06429595 0.7388448 +0.3113005 0.06429595 0.7388448 +0.3485102 0.06429595 0.7388448 +0.388193 0.06429595 0.7388448 +0.4303934 0.06429595 0.7388448 +0.4751555 0.06429595 0.7388448 +0.5225216 0.06429595 0.7388448 +0.5725335 0.06429595 0.7388448 +0.6252316 0.06429595 0.7388448 +0.6806558 0.06429595 0.7388448 +0.7388448 0.06429595 0.7388448 +0.7998369 0.06429595 0.7388448 +0.8636691 0.06429595 0.7388448 +0.9303782 0.06429595 0.7388448 +1 0.06429595 0.7388448 +0 0.07958143 0.7388448 +0.002418731 0.07958143 0.7388448 +0.005155668 0.07958143 0.7388448 +0.009080105 0.07958143 0.7388448 +0.01434988 0.07958143 0.7388448 +0.02107202 0.07958143 0.7388448 +0.02934285 0.07958143 0.7388448 +0.03925039 0.07958143 0.7388448 +0.05087609 0.07958143 0.7388448 +0.06429595 0.07958143 0.7388448 +0.07958143 0.07958143 0.7388448 +0.0968001 0.07958143 0.7388448 +0.1160161 0.07958143 0.7388448 +0.1372908 0.07958143 0.7388448 +0.1606827 0.07958143 0.7388448 +0.1862481 0.07958143 0.7388448 +0.2140411 0.07958143 0.7388448 +0.2441142 0.07958143 0.7388448 +0.2765176 0.07958143 0.7388448 +0.3113005 0.07958143 0.7388448 +0.3485102 0.07958143 0.7388448 +0.388193 0.07958143 0.7388448 +0.4303934 0.07958143 0.7388448 +0.4751555 0.07958143 0.7388448 +0.5225216 0.07958143 0.7388448 +0.5725335 0.07958143 0.7388448 +0.6252316 0.07958143 0.7388448 +0.6806558 0.07958143 0.7388448 +0.7388448 0.07958143 0.7388448 +0.7998369 0.07958143 0.7388448 +0.8636691 0.07958143 0.7388448 +0.9303782 0.07958143 0.7388448 +1 0.07958143 0.7388448 +0 0.0968001 0.7388448 +0.002418731 0.0968001 0.7388448 +0.005155668 0.0968001 0.7388448 +0.009080105 0.0968001 0.7388448 +0.01434988 0.0968001 0.7388448 +0.02107202 0.0968001 0.7388448 +0.02934285 0.0968001 0.7388448 +0.03925039 0.0968001 0.7388448 +0.05087609 0.0968001 0.7388448 +0.06429595 0.0968001 0.7388448 +0.07958143 0.0968001 0.7388448 +0.0968001 0.0968001 0.7388448 +0.1160161 0.0968001 0.7388448 +0.1372908 0.0968001 0.7388448 +0.1606827 0.0968001 0.7388448 +0.1862481 0.0968001 0.7388448 +0.2140411 0.0968001 0.7388448 +0.2441142 0.0968001 0.7388448 +0.2765176 0.0968001 0.7388448 +0.3113005 0.0968001 0.7388448 +0.3485102 0.0968001 0.7388448 +0.388193 0.0968001 0.7388448 +0.4303934 0.0968001 0.7388448 +0.4751555 0.0968001 0.7388448 +0.5225216 0.0968001 0.7388448 +0.5725335 0.0968001 0.7388448 +0.6252316 0.0968001 0.7388448 +0.6806558 0.0968001 0.7388448 +0.7388448 0.0968001 0.7388448 +0.7998369 0.0968001 0.7388448 +0.8636691 0.0968001 0.7388448 +0.9303782 0.0968001 0.7388448 +1 0.0968001 0.7388448 +0 0.1160161 0.7388448 +0.002418731 0.1160161 0.7388448 +0.005155668 0.1160161 0.7388448 +0.009080105 0.1160161 0.7388448 +0.01434988 0.1160161 0.7388448 +0.02107202 0.1160161 0.7388448 +0.02934285 0.1160161 0.7388448 +0.03925039 0.1160161 0.7388448 +0.05087609 0.1160161 0.7388448 +0.06429595 0.1160161 0.7388448 +0.07958143 0.1160161 0.7388448 +0.0968001 0.1160161 0.7388448 +0.1160161 0.1160161 0.7388448 +0.1372908 0.1160161 0.7388448 +0.1606827 0.1160161 0.7388448 +0.1862481 0.1160161 0.7388448 +0.2140411 0.1160161 0.7388448 +0.2441142 0.1160161 0.7388448 +0.2765176 0.1160161 0.7388448 +0.3113005 0.1160161 0.7388448 +0.3485102 0.1160161 0.7388448 +0.388193 0.1160161 0.7388448 +0.4303934 0.1160161 0.7388448 +0.4751555 0.1160161 0.7388448 +0.5225216 0.1160161 0.7388448 +0.5725335 0.1160161 0.7388448 +0.6252316 0.1160161 0.7388448 +0.6806558 0.1160161 0.7388448 +0.7388448 0.1160161 0.7388448 +0.7998369 0.1160161 0.7388448 +0.8636691 0.1160161 0.7388448 +0.9303782 0.1160161 0.7388448 +1 0.1160161 0.7388448 +0 0.1372908 0.7388448 +0.002418731 0.1372908 0.7388448 +0.005155668 0.1372908 0.7388448 +0.009080105 0.1372908 0.7388448 +0.01434988 0.1372908 0.7388448 +0.02107202 0.1372908 0.7388448 +0.02934285 0.1372908 0.7388448 +0.03925039 0.1372908 0.7388448 +0.05087609 0.1372908 0.7388448 +0.06429595 0.1372908 0.7388448 +0.07958143 0.1372908 0.7388448 +0.0968001 0.1372908 0.7388448 +0.1160161 0.1372908 0.7388448 +0.1372908 0.1372908 0.7388448 +0.1606827 0.1372908 0.7388448 +0.1862481 0.1372908 0.7388448 +0.2140411 0.1372908 0.7388448 +0.2441142 0.1372908 0.7388448 +0.2765176 0.1372908 0.7388448 +0.3113005 0.1372908 0.7388448 +0.3485102 0.1372908 0.7388448 +0.388193 0.1372908 0.7388448 +0.4303934 0.1372908 0.7388448 +0.4751555 0.1372908 0.7388448 +0.5225216 0.1372908 0.7388448 +0.5725335 0.1372908 0.7388448 +0.6252316 0.1372908 0.7388448 +0.6806558 0.1372908 0.7388448 +0.7388448 0.1372908 0.7388448 +0.7998369 0.1372908 0.7388448 +0.8636691 0.1372908 0.7388448 +0.9303782 0.1372908 0.7388448 +1 0.1372908 0.7388448 +0 0.1606827 0.7388448 +0.002418731 0.1606827 0.7388448 +0.005155668 0.1606827 0.7388448 +0.009080105 0.1606827 0.7388448 +0.01434988 0.1606827 0.7388448 +0.02107202 0.1606827 0.7388448 +0.02934285 0.1606827 0.7388448 +0.03925039 0.1606827 0.7388448 +0.05087609 0.1606827 0.7388448 +0.06429595 0.1606827 0.7388448 +0.07958143 0.1606827 0.7388448 +0.0968001 0.1606827 0.7388448 +0.1160161 0.1606827 0.7388448 +0.1372908 0.1606827 0.7388448 +0.1606827 0.1606827 0.7388448 +0.1862481 0.1606827 0.7388448 +0.2140411 0.1606827 0.7388448 +0.2441142 0.1606827 0.7388448 +0.2765176 0.1606827 0.7388448 +0.3113005 0.1606827 0.7388448 +0.3485102 0.1606827 0.7388448 +0.388193 0.1606827 0.7388448 +0.4303934 0.1606827 0.7388448 +0.4751555 0.1606827 0.7388448 +0.5225216 0.1606827 0.7388448 +0.5725335 0.1606827 0.7388448 +0.6252316 0.1606827 0.7388448 +0.6806558 0.1606827 0.7388448 +0.7388448 0.1606827 0.7388448 +0.7998369 0.1606827 0.7388448 +0.8636691 0.1606827 0.7388448 +0.9303782 0.1606827 0.7388448 +1 0.1606827 0.7388448 +0 0.1862481 0.7388448 +0.002418731 0.1862481 0.7388448 +0.005155668 0.1862481 0.7388448 +0.009080105 0.1862481 0.7388448 +0.01434988 0.1862481 0.7388448 +0.02107202 0.1862481 0.7388448 +0.02934285 0.1862481 0.7388448 +0.03925039 0.1862481 0.7388448 +0.05087609 0.1862481 0.7388448 +0.06429595 0.1862481 0.7388448 +0.07958143 0.1862481 0.7388448 +0.0968001 0.1862481 0.7388448 +0.1160161 0.1862481 0.7388448 +0.1372908 0.1862481 0.7388448 +0.1606827 0.1862481 0.7388448 +0.1862481 0.1862481 0.7388448 +0.2140411 0.1862481 0.7388448 +0.2441142 0.1862481 0.7388448 +0.2765176 0.1862481 0.7388448 +0.3113005 0.1862481 0.7388448 +0.3485102 0.1862481 0.7388448 +0.388193 0.1862481 0.7388448 +0.4303934 0.1862481 0.7388448 +0.4751555 0.1862481 0.7388448 +0.5225216 0.1862481 0.7388448 +0.5725335 0.1862481 0.7388448 +0.6252316 0.1862481 0.7388448 +0.6806558 0.1862481 0.7388448 +0.7388448 0.1862481 0.7388448 +0.7998369 0.1862481 0.7388448 +0.8636691 0.1862481 0.7388448 +0.9303782 0.1862481 0.7388448 +1 0.1862481 0.7388448 +0 0.2140411 0.7388448 +0.002418731 0.2140411 0.7388448 +0.005155668 0.2140411 0.7388448 +0.009080105 0.2140411 0.7388448 +0.01434988 0.2140411 0.7388448 +0.02107202 0.2140411 0.7388448 +0.02934285 0.2140411 0.7388448 +0.03925039 0.2140411 0.7388448 +0.05087609 0.2140411 0.7388448 +0.06429595 0.2140411 0.7388448 +0.07958143 0.2140411 0.7388448 +0.0968001 0.2140411 0.7388448 +0.1160161 0.2140411 0.7388448 +0.1372908 0.2140411 0.7388448 +0.1606827 0.2140411 0.7388448 +0.1862481 0.2140411 0.7388448 +0.2140411 0.2140411 0.7388448 +0.2441142 0.2140411 0.7388448 +0.2765176 0.2140411 0.7388448 +0.3113005 0.2140411 0.7388448 +0.3485102 0.2140411 0.7388448 +0.388193 0.2140411 0.7388448 +0.4303934 0.2140411 0.7388448 +0.4751555 0.2140411 0.7388448 +0.5225216 0.2140411 0.7388448 +0.5725335 0.2140411 0.7388448 +0.6252316 0.2140411 0.7388448 +0.6806558 0.2140411 0.7388448 +0.7388448 0.2140411 0.7388448 +0.7998369 0.2140411 0.7388448 +0.8636691 0.2140411 0.7388448 +0.9303782 0.2140411 0.7388448 +1 0.2140411 0.7388448 +0 0.2441142 0.7388448 +0.002418731 0.2441142 0.7388448 +0.005155668 0.2441142 0.7388448 +0.009080105 0.2441142 0.7388448 +0.01434988 0.2441142 0.7388448 +0.02107202 0.2441142 0.7388448 +0.02934285 0.2441142 0.7388448 +0.03925039 0.2441142 0.7388448 +0.05087609 0.2441142 0.7388448 +0.06429595 0.2441142 0.7388448 +0.07958143 0.2441142 0.7388448 +0.0968001 0.2441142 0.7388448 +0.1160161 0.2441142 0.7388448 +0.1372908 0.2441142 0.7388448 +0.1606827 0.2441142 0.7388448 +0.1862481 0.2441142 0.7388448 +0.2140411 0.2441142 0.7388448 +0.2441142 0.2441142 0.7388448 +0.2765176 0.2441142 0.7388448 +0.3113005 0.2441142 0.7388448 +0.3485102 0.2441142 0.7388448 +0.388193 0.2441142 0.7388448 +0.4303934 0.2441142 0.7388448 +0.4751555 0.2441142 0.7388448 +0.5225216 0.2441142 0.7388448 +0.5725335 0.2441142 0.7388448 +0.6252316 0.2441142 0.7388448 +0.6806558 0.2441142 0.7388448 +0.7388448 0.2441142 0.7388448 +0.7998369 0.2441142 0.7388448 +0.8636691 0.2441142 0.7388448 +0.9303782 0.2441142 0.7388448 +1 0.2441142 0.7388448 +0 0.2765176 0.7388448 +0.002418731 0.2765176 0.7388448 +0.005155668 0.2765176 0.7388448 +0.009080105 0.2765176 0.7388448 +0.01434988 0.2765176 0.7388448 +0.02107202 0.2765176 0.7388448 +0.02934285 0.2765176 0.7388448 +0.03925039 0.2765176 0.7388448 +0.05087609 0.2765176 0.7388448 +0.06429595 0.2765176 0.7388448 +0.07958143 0.2765176 0.7388448 +0.0968001 0.2765176 0.7388448 +0.1160161 0.2765176 0.7388448 +0.1372908 0.2765176 0.7388448 +0.1606827 0.2765176 0.7388448 +0.1862481 0.2765176 0.7388448 +0.2140411 0.2765176 0.7388448 +0.2441142 0.2765176 0.7388448 +0.2765176 0.2765176 0.7388448 +0.3113005 0.2765176 0.7388448 +0.3485102 0.2765176 0.7388448 +0.388193 0.2765176 0.7388448 +0.4303934 0.2765176 0.7388448 +0.4751555 0.2765176 0.7388448 +0.5225216 0.2765176 0.7388448 +0.5725335 0.2765176 0.7388448 +0.6252316 0.2765176 0.7388448 +0.6806558 0.2765176 0.7388448 +0.7388448 0.2765176 0.7388448 +0.7998369 0.2765176 0.7388448 +0.8636691 0.2765176 0.7388448 +0.9303782 0.2765176 0.7388448 +1 0.2765176 0.7388448 +0 0.3113005 0.7388448 +0.002418731 0.3113005 0.7388448 +0.005155668 0.3113005 0.7388448 +0.009080105 0.3113005 0.7388448 +0.01434988 0.3113005 0.7388448 +0.02107202 0.3113005 0.7388448 +0.02934285 0.3113005 0.7388448 +0.03925039 0.3113005 0.7388448 +0.05087609 0.3113005 0.7388448 +0.06429595 0.3113005 0.7388448 +0.07958143 0.3113005 0.7388448 +0.0968001 0.3113005 0.7388448 +0.1160161 0.3113005 0.7388448 +0.1372908 0.3113005 0.7388448 +0.1606827 0.3113005 0.7388448 +0.1862481 0.3113005 0.7388448 +0.2140411 0.3113005 0.7388448 +0.2441142 0.3113005 0.7388448 +0.2765176 0.3113005 0.7388448 +0.3113005 0.3113005 0.7388448 +0.3485102 0.3113005 0.7388448 +0.388193 0.3113005 0.7388448 +0.4303934 0.3113005 0.7388448 +0.4751555 0.3113005 0.7388448 +0.5225216 0.3113005 0.7388448 +0.5725335 0.3113005 0.7388448 +0.6252316 0.3113005 0.7388448 +0.6806558 0.3113005 0.7388448 +0.7388448 0.3113005 0.7388448 +0.7998369 0.3113005 0.7388448 +0.8636691 0.3113005 0.7388448 +0.9303782 0.3113005 0.7388448 +1 0.3113005 0.7388448 +0 0.3485102 0.7388448 +0.002418731 0.3485102 0.7388448 +0.005155668 0.3485102 0.7388448 +0.009080105 0.3485102 0.7388448 +0.01434988 0.3485102 0.7388448 +0.02107202 0.3485102 0.7388448 +0.02934285 0.3485102 0.7388448 +0.03925039 0.3485102 0.7388448 +0.05087609 0.3485102 0.7388448 +0.06429595 0.3485102 0.7388448 +0.07958143 0.3485102 0.7388448 +0.0968001 0.3485102 0.7388448 +0.1160161 0.3485102 0.7388448 +0.1372908 0.3485102 0.7388448 +0.1606827 0.3485102 0.7388448 +0.1862481 0.3485102 0.7388448 +0.2140411 0.3485102 0.7388448 +0.2441142 0.3485102 0.7388448 +0.2765176 0.3485102 0.7388448 +0.3113005 0.3485102 0.7388448 +0.3485102 0.3485102 0.7388448 +0.388193 0.3485102 0.7388448 +0.4303934 0.3485102 0.7388448 +0.4751555 0.3485102 0.7388448 +0.5225216 0.3485102 0.7388448 +0.5725335 0.3485102 0.7388448 +0.6252316 0.3485102 0.7388448 +0.6806558 0.3485102 0.7388448 +0.7388448 0.3485102 0.7388448 +0.7998369 0.3485102 0.7388448 +0.8636691 0.3485102 0.7388448 +0.9303782 0.3485102 0.7388448 +1 0.3485102 0.7388448 +0 0.388193 0.7388448 +0.002418731 0.388193 0.7388448 +0.005155668 0.388193 0.7388448 +0.009080105 0.388193 0.7388448 +0.01434988 0.388193 0.7388448 +0.02107202 0.388193 0.7388448 +0.02934285 0.388193 0.7388448 +0.03925039 0.388193 0.7388448 +0.05087609 0.388193 0.7388448 +0.06429595 0.388193 0.7388448 +0.07958143 0.388193 0.7388448 +0.0968001 0.388193 0.7388448 +0.1160161 0.388193 0.7388448 +0.1372908 0.388193 0.7388448 +0.1606827 0.388193 0.7388448 +0.1862481 0.388193 0.7388448 +0.2140411 0.388193 0.7388448 +0.2441142 0.388193 0.7388448 +0.2765176 0.388193 0.7388448 +0.3113005 0.388193 0.7388448 +0.3485102 0.388193 0.7388448 +0.388193 0.388193 0.7388448 +0.4303934 0.388193 0.7388448 +0.4751555 0.388193 0.7388448 +0.5225216 0.388193 0.7388448 +0.5725335 0.388193 0.7388448 +0.6252316 0.388193 0.7388448 +0.6806558 0.388193 0.7388448 +0.7388448 0.388193 0.7388448 +0.7998369 0.388193 0.7388448 +0.8636691 0.388193 0.7388448 +0.9303782 0.388193 0.7388448 +1 0.388193 0.7388448 +0 0.4303934 0.7388448 +0.002418731 0.4303934 0.7388448 +0.005155668 0.4303934 0.7388448 +0.009080105 0.4303934 0.7388448 +0.01434988 0.4303934 0.7388448 +0.02107202 0.4303934 0.7388448 +0.02934285 0.4303934 0.7388448 +0.03925039 0.4303934 0.7388448 +0.05087609 0.4303934 0.7388448 +0.06429595 0.4303934 0.7388448 +0.07958143 0.4303934 0.7388448 +0.0968001 0.4303934 0.7388448 +0.1160161 0.4303934 0.7388448 +0.1372908 0.4303934 0.7388448 +0.1606827 0.4303934 0.7388448 +0.1862481 0.4303934 0.7388448 +0.2140411 0.4303934 0.7388448 +0.2441142 0.4303934 0.7388448 +0.2765176 0.4303934 0.7388448 +0.3113005 0.4303934 0.7388448 +0.3485102 0.4303934 0.7388448 +0.388193 0.4303934 0.7388448 +0.4303934 0.4303934 0.7388448 +0.4751555 0.4303934 0.7388448 +0.5225216 0.4303934 0.7388448 +0.5725335 0.4303934 0.7388448 +0.6252316 0.4303934 0.7388448 +0.6806558 0.4303934 0.7388448 +0.7388448 0.4303934 0.7388448 +0.7998369 0.4303934 0.7388448 +0.8636691 0.4303934 0.7388448 +0.9303782 0.4303934 0.7388448 +1 0.4303934 0.7388448 +0 0.4751555 0.7388448 +0.002418731 0.4751555 0.7388448 +0.005155668 0.4751555 0.7388448 +0.009080105 0.4751555 0.7388448 +0.01434988 0.4751555 0.7388448 +0.02107202 0.4751555 0.7388448 +0.02934285 0.4751555 0.7388448 +0.03925039 0.4751555 0.7388448 +0.05087609 0.4751555 0.7388448 +0.06429595 0.4751555 0.7388448 +0.07958143 0.4751555 0.7388448 +0.0968001 0.4751555 0.7388448 +0.1160161 0.4751555 0.7388448 +0.1372908 0.4751555 0.7388448 +0.1606827 0.4751555 0.7388448 +0.1862481 0.4751555 0.7388448 +0.2140411 0.4751555 0.7388448 +0.2441142 0.4751555 0.7388448 +0.2765176 0.4751555 0.7388448 +0.3113005 0.4751555 0.7388448 +0.3485102 0.4751555 0.7388448 +0.388193 0.4751555 0.7388448 +0.4303934 0.4751555 0.7388448 +0.4751555 0.4751555 0.7388448 +0.5225216 0.4751555 0.7388448 +0.5725335 0.4751555 0.7388448 +0.6252316 0.4751555 0.7388448 +0.6806558 0.4751555 0.7388448 +0.7388448 0.4751555 0.7388448 +0.7998369 0.4751555 0.7388448 +0.8636691 0.4751555 0.7388448 +0.9303782 0.4751555 0.7388448 +1 0.4751555 0.7388448 +0 0.5225216 0.7388448 +0.002418731 0.5225216 0.7388448 +0.005155668 0.5225216 0.7388448 +0.009080105 0.5225216 0.7388448 +0.01434988 0.5225216 0.7388448 +0.02107202 0.5225216 0.7388448 +0.02934285 0.5225216 0.7388448 +0.03925039 0.5225216 0.7388448 +0.05087609 0.5225216 0.7388448 +0.06429595 0.5225216 0.7388448 +0.07958143 0.5225216 0.7388448 +0.0968001 0.5225216 0.7388448 +0.1160161 0.5225216 0.7388448 +0.1372908 0.5225216 0.7388448 +0.1606827 0.5225216 0.7388448 +0.1862481 0.5225216 0.7388448 +0.2140411 0.5225216 0.7388448 +0.2441142 0.5225216 0.7388448 +0.2765176 0.5225216 0.7388448 +0.3113005 0.5225216 0.7388448 +0.3485102 0.5225216 0.7388448 +0.388193 0.5225216 0.7388448 +0.4303934 0.5225216 0.7388448 +0.4751555 0.5225216 0.7388448 +0.5225216 0.5225216 0.7388448 +0.5725335 0.5225216 0.7388448 +0.6252316 0.5225216 0.7388448 +0.6806558 0.5225216 0.7388448 +0.7388448 0.5225216 0.7388448 +0.7998369 0.5225216 0.7388448 +0.8636691 0.5225216 0.7388448 +0.9303782 0.5225216 0.7388448 +1 0.5225216 0.7388448 +0 0.5725335 0.7388448 +0.002418731 0.5725335 0.7388448 +0.005155668 0.5725335 0.7388448 +0.009080105 0.5725335 0.7388448 +0.01434988 0.5725335 0.7388448 +0.02107202 0.5725335 0.7388448 +0.02934285 0.5725335 0.7388448 +0.03925039 0.5725335 0.7388448 +0.05087609 0.5725335 0.7388448 +0.06429595 0.5725335 0.7388448 +0.07958143 0.5725335 0.7388448 +0.0968001 0.5725335 0.7388448 +0.1160161 0.5725335 0.7388448 +0.1372908 0.5725335 0.7388448 +0.1606827 0.5725335 0.7388448 +0.1862481 0.5725335 0.7388448 +0.2140411 0.5725335 0.7388448 +0.2441142 0.5725335 0.7388448 +0.2765176 0.5725335 0.7388448 +0.3113005 0.5725335 0.7388448 +0.3485102 0.5725335 0.7388448 +0.388193 0.5725335 0.7388448 +0.4303934 0.5725335 0.7388448 +0.4751555 0.5725335 0.7388448 +0.5225216 0.5725335 0.7388448 +0.5725335 0.5725335 0.7388448 +0.6252316 0.5725335 0.7388448 +0.6806558 0.5725335 0.7388448 +0.7388448 0.5725335 0.7388448 +0.7998369 0.5725335 0.7388448 +0.8636691 0.5725335 0.7388448 +0.9303782 0.5725335 0.7388448 +1 0.5725335 0.7388448 +0 0.6252316 0.7388448 +0.002418731 0.6252316 0.7388448 +0.005155668 0.6252316 0.7388448 +0.009080105 0.6252316 0.7388448 +0.01434988 0.6252316 0.7388448 +0.02107202 0.6252316 0.7388448 +0.02934285 0.6252316 0.7388448 +0.03925039 0.6252316 0.7388448 +0.05087609 0.6252316 0.7388448 +0.06429595 0.6252316 0.7388448 +0.07958143 0.6252316 0.7388448 +0.0968001 0.6252316 0.7388448 +0.1160161 0.6252316 0.7388448 +0.1372908 0.6252316 0.7388448 +0.1606827 0.6252316 0.7388448 +0.1862481 0.6252316 0.7388448 +0.2140411 0.6252316 0.7388448 +0.2441142 0.6252316 0.7388448 +0.2765176 0.6252316 0.7388448 +0.3113005 0.6252316 0.7388448 +0.3485102 0.6252316 0.7388448 +0.388193 0.6252316 0.7388448 +0.4303934 0.6252316 0.7388448 +0.4751555 0.6252316 0.7388448 +0.5225216 0.6252316 0.7388448 +0.5725335 0.6252316 0.7388448 +0.6252316 0.6252316 0.7388448 +0.6806558 0.6252316 0.7388448 +0.7388448 0.6252316 0.7388448 +0.7998369 0.6252316 0.7388448 +0.8636691 0.6252316 0.7388448 +0.9303782 0.6252316 0.7388448 +1 0.6252316 0.7388448 +0 0.6806558 0.7388448 +0.002418731 0.6806558 0.7388448 +0.005155668 0.6806558 0.7388448 +0.009080105 0.6806558 0.7388448 +0.01434988 0.6806558 0.7388448 +0.02107202 0.6806558 0.7388448 +0.02934285 0.6806558 0.7388448 +0.03925039 0.6806558 0.7388448 +0.05087609 0.6806558 0.7388448 +0.06429595 0.6806558 0.7388448 +0.07958143 0.6806558 0.7388448 +0.0968001 0.6806558 0.7388448 +0.1160161 0.6806558 0.7388448 +0.1372908 0.6806558 0.7388448 +0.1606827 0.6806558 0.7388448 +0.1862481 0.6806558 0.7388448 +0.2140411 0.6806558 0.7388448 +0.2441142 0.6806558 0.7388448 +0.2765176 0.6806558 0.7388448 +0.3113005 0.6806558 0.7388448 +0.3485102 0.6806558 0.7388448 +0.388193 0.6806558 0.7388448 +0.4303934 0.6806558 0.7388448 +0.4751555 0.6806558 0.7388448 +0.5225216 0.6806558 0.7388448 +0.5725335 0.6806558 0.7388448 +0.6252316 0.6806558 0.7388448 +0.6806558 0.6806558 0.7388448 +0.7388448 0.6806558 0.7388448 +0.7998369 0.6806558 0.7388448 +0.8636691 0.6806558 0.7388448 +0.9303782 0.6806558 0.7388448 +1 0.6806558 0.7388448 +0 0.7388448 0.7388448 +0.002418731 0.7388448 0.7388448 +0.005155668 0.7388448 0.7388448 +0.009080105 0.7388448 0.7388448 +0.01434988 0.7388448 0.7388448 +0.02107202 0.7388448 0.7388448 +0.02934285 0.7388448 0.7388448 +0.03925039 0.7388448 0.7388448 +0.05087609 0.7388448 0.7388448 +0.06429595 0.7388448 0.7388448 +0.07958143 0.7388448 0.7388448 +0.0968001 0.7388448 0.7388448 +0.1160161 0.7388448 0.7388448 +0.1372908 0.7388448 0.7388448 +0.1606827 0.7388448 0.7388448 +0.1862481 0.7388448 0.7388448 +0.2140411 0.7388448 0.7388448 +0.2441142 0.7388448 0.7388448 +0.2765176 0.7388448 0.7388448 +0.3113005 0.7388448 0.7388448 +0.3485102 0.7388448 0.7388448 +0.388193 0.7388448 0.7388448 +0.4303934 0.7388448 0.7388448 +0.4751555 0.7388448 0.7388448 +0.5225216 0.7388448 0.7388448 +0.5725335 0.7388448 0.7388448 +0.6252316 0.7388448 0.7388448 +0.6806558 0.7388448 0.7388448 +0.7388448 0.7388448 0.7388448 +0.7998369 0.7388448 0.7388448 +0.8636691 0.7388448 0.7388448 +0.9303782 0.7388448 0.7388448 +1 0.7388448 0.7388448 +0 0.7998369 0.7388448 +0.002418731 0.7998369 0.7388448 +0.005155668 0.7998369 0.7388448 +0.009080105 0.7998369 0.7388448 +0.01434988 0.7998369 0.7388448 +0.02107202 0.7998369 0.7388448 +0.02934285 0.7998369 0.7388448 +0.03925039 0.7998369 0.7388448 +0.05087609 0.7998369 0.7388448 +0.06429595 0.7998369 0.7388448 +0.07958143 0.7998369 0.7388448 +0.0968001 0.7998369 0.7388448 +0.1160161 0.7998369 0.7388448 +0.1372908 0.7998369 0.7388448 +0.1606827 0.7998369 0.7388448 +0.1862481 0.7998369 0.7388448 +0.2140411 0.7998369 0.7388448 +0.2441142 0.7998369 0.7388448 +0.2765176 0.7998369 0.7388448 +0.3113005 0.7998369 0.7388448 +0.3485102 0.7998369 0.7388448 +0.388193 0.7998369 0.7388448 +0.4303934 0.7998369 0.7388448 +0.4751555 0.7998369 0.7388448 +0.5225216 0.7998369 0.7388448 +0.5725335 0.7998369 0.7388448 +0.6252316 0.7998369 0.7388448 +0.6806558 0.7998369 0.7388448 +0.7388448 0.7998369 0.7388448 +0.7998369 0.7998369 0.7388448 +0.8636691 0.7998369 0.7388448 +0.9303782 0.7998369 0.7388448 +1 0.7998369 0.7388448 +0 0.8636691 0.7388448 +0.002418731 0.8636691 0.7388448 +0.005155668 0.8636691 0.7388448 +0.009080105 0.8636691 0.7388448 +0.01434988 0.8636691 0.7388448 +0.02107202 0.8636691 0.7388448 +0.02934285 0.8636691 0.7388448 +0.03925039 0.8636691 0.7388448 +0.05087609 0.8636691 0.7388448 +0.06429595 0.8636691 0.7388448 +0.07958143 0.8636691 0.7388448 +0.0968001 0.8636691 0.7388448 +0.1160161 0.8636691 0.7388448 +0.1372908 0.8636691 0.7388448 +0.1606827 0.8636691 0.7388448 +0.1862481 0.8636691 0.7388448 +0.2140411 0.8636691 0.7388448 +0.2441142 0.8636691 0.7388448 +0.2765176 0.8636691 0.7388448 +0.3113005 0.8636691 0.7388448 +0.3485102 0.8636691 0.7388448 +0.388193 0.8636691 0.7388448 +0.4303934 0.8636691 0.7388448 +0.4751555 0.8636691 0.7388448 +0.5225216 0.8636691 0.7388448 +0.5725335 0.8636691 0.7388448 +0.6252316 0.8636691 0.7388448 +0.6806558 0.8636691 0.7388448 +0.7388448 0.8636691 0.7388448 +0.7998369 0.8636691 0.7388448 +0.8636691 0.8636691 0.7388448 +0.9303782 0.8636691 0.7388448 +1 0.8636691 0.7388448 +0 0.9303782 0.7388448 +0.002418731 0.9303782 0.7388448 +0.005155668 0.9303782 0.7388448 +0.009080105 0.9303782 0.7388448 +0.01434988 0.9303782 0.7388448 +0.02107202 0.9303782 0.7388448 +0.02934285 0.9303782 0.7388448 +0.03925039 0.9303782 0.7388448 +0.05087609 0.9303782 0.7388448 +0.06429595 0.9303782 0.7388448 +0.07958143 0.9303782 0.7388448 +0.0968001 0.9303782 0.7388448 +0.1160161 0.9303782 0.7388448 +0.1372908 0.9303782 0.7388448 +0.1606827 0.9303782 0.7388448 +0.1862481 0.9303782 0.7388448 +0.2140411 0.9303782 0.7388448 +0.2441142 0.9303782 0.7388448 +0.2765176 0.9303782 0.7388448 +0.3113005 0.9303782 0.7388448 +0.3485102 0.9303782 0.7388448 +0.388193 0.9303782 0.7388448 +0.4303934 0.9303782 0.7388448 +0.4751555 0.9303782 0.7388448 +0.5225216 0.9303782 0.7388448 +0.5725335 0.9303782 0.7388448 +0.6252316 0.9303782 0.7388448 +0.6806558 0.9303782 0.7388448 +0.7388448 0.9303782 0.7388448 +0.7998369 0.9303782 0.7388448 +0.8636691 0.9303782 0.7388448 +0.9303782 0.9303782 0.7388448 +1 0.9303782 0.7388448 +0 1 0.7388448 +0.002418731 1 0.7388448 +0.005155668 1 0.7388448 +0.009080105 1 0.7388448 +0.01434988 1 0.7388448 +0.02107202 1 0.7388448 +0.02934285 1 0.7388448 +0.03925039 1 0.7388448 +0.05087609 1 0.7388448 +0.06429595 1 0.7388448 +0.07958143 1 0.7388448 +0.0968001 1 0.7388448 +0.1160161 1 0.7388448 +0.1372908 1 0.7388448 +0.1606827 1 0.7388448 +0.1862481 1 0.7388448 +0.2140411 1 0.7388448 +0.2441142 1 0.7388448 +0.2765176 1 0.7388448 +0.3113005 1 0.7388448 +0.3485102 1 0.7388448 +0.388193 1 0.7388448 +0.4303934 1 0.7388448 +0.4751555 1 0.7388448 +0.5225216 1 0.7388448 +0.5725335 1 0.7388448 +0.6252316 1 0.7388448 +0.6806558 1 0.7388448 +0.7388448 1 0.7388448 +0.7998369 1 0.7388448 +0.8636691 1 0.7388448 +0.9303782 1 0.7388448 +1 1 0.7388448 +0 0 0.7998369 +0.002418731 0 0.7998369 +0.005155668 0 0.7998369 +0.009080105 0 0.7998369 +0.01434988 0 0.7998369 +0.02107202 0 0.7998369 +0.02934285 0 0.7998369 +0.03925039 0 0.7998369 +0.05087609 0 0.7998369 +0.06429595 0 0.7998369 +0.07958143 0 0.7998369 +0.0968001 0 0.7998369 +0.1160161 0 0.7998369 +0.1372908 0 0.7998369 +0.1606827 0 0.7998369 +0.1862481 0 0.7998369 +0.2140411 0 0.7998369 +0.2441142 0 0.7998369 +0.2765176 0 0.7998369 +0.3113005 0 0.7998369 +0.3485102 0 0.7998369 +0.388193 0 0.7998369 +0.4303934 0 0.7998369 +0.4751555 0 0.7998369 +0.5225216 0 0.7998369 +0.5725335 0 0.7998369 +0.6252316 0 0.7998369 +0.6806558 0 0.7998369 +0.7388448 0 0.7998369 +0.7998369 0 0.7998369 +0.8636691 0 0.7998369 +0.9303782 0 0.7998369 +1 0 0.7998369 +0 0.002418731 0.7998369 +0.002418731 0.002418731 0.7998369 +0.005155668 0.002418731 0.7998369 +0.009080105 0.002418731 0.7998369 +0.01434988 0.002418731 0.7998369 +0.02107202 0.002418731 0.7998369 +0.02934285 0.002418731 0.7998369 +0.03925039 0.002418731 0.7998369 +0.05087609 0.002418731 0.7998369 +0.06429595 0.002418731 0.7998369 +0.07958143 0.002418731 0.7998369 +0.0968001 0.002418731 0.7998369 +0.1160161 0.002418731 0.7998369 +0.1372908 0.002418731 0.7998369 +0.1606827 0.002418731 0.7998369 +0.1862481 0.002418731 0.7998369 +0.2140411 0.002418731 0.7998369 +0.2441142 0.002418731 0.7998369 +0.2765176 0.002418731 0.7998369 +0.3113005 0.002418731 0.7998369 +0.3485102 0.002418731 0.7998369 +0.388193 0.002418731 0.7998369 +0.4303934 0.002418731 0.7998369 +0.4751555 0.002418731 0.7998369 +0.5225216 0.002418731 0.7998369 +0.5725335 0.002418731 0.7998369 +0.6252316 0.002418731 0.7998369 +0.6806558 0.002418731 0.7998369 +0.7388448 0.002418731 0.7998369 +0.7998369 0.002418731 0.7998369 +0.8636691 0.002418731 0.7998369 +0.9303782 0.002418731 0.7998369 +1 0.002418731 0.7998369 +0 0.005155668 0.7998369 +0.002418731 0.005155668 0.7998369 +0.005155668 0.005155668 0.7998369 +0.009080105 0.005155668 0.7998369 +0.01434988 0.005155668 0.7998369 +0.02107202 0.005155668 0.7998369 +0.02934285 0.005155668 0.7998369 +0.03925039 0.005155668 0.7998369 +0.05087609 0.005155668 0.7998369 +0.06429595 0.005155668 0.7998369 +0.07958143 0.005155668 0.7998369 +0.0968001 0.005155668 0.7998369 +0.1160161 0.005155668 0.7998369 +0.1372908 0.005155668 0.7998369 +0.1606827 0.005155668 0.7998369 +0.1862481 0.005155668 0.7998369 +0.2140411 0.005155668 0.7998369 +0.2441142 0.005155668 0.7998369 +0.2765176 0.005155668 0.7998369 +0.3113005 0.005155668 0.7998369 +0.3485102 0.005155668 0.7998369 +0.388193 0.005155668 0.7998369 +0.4303934 0.005155668 0.7998369 +0.4751555 0.005155668 0.7998369 +0.5225216 0.005155668 0.7998369 +0.5725335 0.005155668 0.7998369 +0.6252316 0.005155668 0.7998369 +0.6806558 0.005155668 0.7998369 +0.7388448 0.005155668 0.7998369 +0.7998369 0.005155668 0.7998369 +0.8636691 0.005155668 0.7998369 +0.9303782 0.005155668 0.7998369 +1 0.005155668 0.7998369 +0 0.009080105 0.7998369 +0.002418731 0.009080105 0.7998369 +0.005155668 0.009080105 0.7998369 +0.009080105 0.009080105 0.7998369 +0.01434988 0.009080105 0.7998369 +0.02107202 0.009080105 0.7998369 +0.02934285 0.009080105 0.7998369 +0.03925039 0.009080105 0.7998369 +0.05087609 0.009080105 0.7998369 +0.06429595 0.009080105 0.7998369 +0.07958143 0.009080105 0.7998369 +0.0968001 0.009080105 0.7998369 +0.1160161 0.009080105 0.7998369 +0.1372908 0.009080105 0.7998369 +0.1606827 0.009080105 0.7998369 +0.1862481 0.009080105 0.7998369 +0.2140411 0.009080105 0.7998369 +0.2441142 0.009080105 0.7998369 +0.2765176 0.009080105 0.7998369 +0.3113005 0.009080105 0.7998369 +0.3485102 0.009080105 0.7998369 +0.388193 0.009080105 0.7998369 +0.4303934 0.009080105 0.7998369 +0.4751555 0.009080105 0.7998369 +0.5225216 0.009080105 0.7998369 +0.5725335 0.009080105 0.7998369 +0.6252316 0.009080105 0.7998369 +0.6806558 0.009080105 0.7998369 +0.7388448 0.009080105 0.7998369 +0.7998369 0.009080105 0.7998369 +0.8636691 0.009080105 0.7998369 +0.9303782 0.009080105 0.7998369 +1 0.009080105 0.7998369 +0 0.01434988 0.7998369 +0.002418731 0.01434988 0.7998369 +0.005155668 0.01434988 0.7998369 +0.009080105 0.01434988 0.7998369 +0.01434988 0.01434988 0.7998369 +0.02107202 0.01434988 0.7998369 +0.02934285 0.01434988 0.7998369 +0.03925039 0.01434988 0.7998369 +0.05087609 0.01434988 0.7998369 +0.06429595 0.01434988 0.7998369 +0.07958143 0.01434988 0.7998369 +0.0968001 0.01434988 0.7998369 +0.1160161 0.01434988 0.7998369 +0.1372908 0.01434988 0.7998369 +0.1606827 0.01434988 0.7998369 +0.1862481 0.01434988 0.7998369 +0.2140411 0.01434988 0.7998369 +0.2441142 0.01434988 0.7998369 +0.2765176 0.01434988 0.7998369 +0.3113005 0.01434988 0.7998369 +0.3485102 0.01434988 0.7998369 +0.388193 0.01434988 0.7998369 +0.4303934 0.01434988 0.7998369 +0.4751555 0.01434988 0.7998369 +0.5225216 0.01434988 0.7998369 +0.5725335 0.01434988 0.7998369 +0.6252316 0.01434988 0.7998369 +0.6806558 0.01434988 0.7998369 +0.7388448 0.01434988 0.7998369 +0.7998369 0.01434988 0.7998369 +0.8636691 0.01434988 0.7998369 +0.9303782 0.01434988 0.7998369 +1 0.01434988 0.7998369 +0 0.02107202 0.7998369 +0.002418731 0.02107202 0.7998369 +0.005155668 0.02107202 0.7998369 +0.009080105 0.02107202 0.7998369 +0.01434988 0.02107202 0.7998369 +0.02107202 0.02107202 0.7998369 +0.02934285 0.02107202 0.7998369 +0.03925039 0.02107202 0.7998369 +0.05087609 0.02107202 0.7998369 +0.06429595 0.02107202 0.7998369 +0.07958143 0.02107202 0.7998369 +0.0968001 0.02107202 0.7998369 +0.1160161 0.02107202 0.7998369 +0.1372908 0.02107202 0.7998369 +0.1606827 0.02107202 0.7998369 +0.1862481 0.02107202 0.7998369 +0.2140411 0.02107202 0.7998369 +0.2441142 0.02107202 0.7998369 +0.2765176 0.02107202 0.7998369 +0.3113005 0.02107202 0.7998369 +0.3485102 0.02107202 0.7998369 +0.388193 0.02107202 0.7998369 +0.4303934 0.02107202 0.7998369 +0.4751555 0.02107202 0.7998369 +0.5225216 0.02107202 0.7998369 +0.5725335 0.02107202 0.7998369 +0.6252316 0.02107202 0.7998369 +0.6806558 0.02107202 0.7998369 +0.7388448 0.02107202 0.7998369 +0.7998369 0.02107202 0.7998369 +0.8636691 0.02107202 0.7998369 +0.9303782 0.02107202 0.7998369 +1 0.02107202 0.7998369 +0 0.02934285 0.7998369 +0.002418731 0.02934285 0.7998369 +0.005155668 0.02934285 0.7998369 +0.009080105 0.02934285 0.7998369 +0.01434988 0.02934285 0.7998369 +0.02107202 0.02934285 0.7998369 +0.02934285 0.02934285 0.7998369 +0.03925039 0.02934285 0.7998369 +0.05087609 0.02934285 0.7998369 +0.06429595 0.02934285 0.7998369 +0.07958143 0.02934285 0.7998369 +0.0968001 0.02934285 0.7998369 +0.1160161 0.02934285 0.7998369 +0.1372908 0.02934285 0.7998369 +0.1606827 0.02934285 0.7998369 +0.1862481 0.02934285 0.7998369 +0.2140411 0.02934285 0.7998369 +0.2441142 0.02934285 0.7998369 +0.2765176 0.02934285 0.7998369 +0.3113005 0.02934285 0.7998369 +0.3485102 0.02934285 0.7998369 +0.388193 0.02934285 0.7998369 +0.4303934 0.02934285 0.7998369 +0.4751555 0.02934285 0.7998369 +0.5225216 0.02934285 0.7998369 +0.5725335 0.02934285 0.7998369 +0.6252316 0.02934285 0.7998369 +0.6806558 0.02934285 0.7998369 +0.7388448 0.02934285 0.7998369 +0.7998369 0.02934285 0.7998369 +0.8636691 0.02934285 0.7998369 +0.9303782 0.02934285 0.7998369 +1 0.02934285 0.7998369 +0 0.03925039 0.7998369 +0.002418731 0.03925039 0.7998369 +0.005155668 0.03925039 0.7998369 +0.009080105 0.03925039 0.7998369 +0.01434988 0.03925039 0.7998369 +0.02107202 0.03925039 0.7998369 +0.02934285 0.03925039 0.7998369 +0.03925039 0.03925039 0.7998369 +0.05087609 0.03925039 0.7998369 +0.06429595 0.03925039 0.7998369 +0.07958143 0.03925039 0.7998369 +0.0968001 0.03925039 0.7998369 +0.1160161 0.03925039 0.7998369 +0.1372908 0.03925039 0.7998369 +0.1606827 0.03925039 0.7998369 +0.1862481 0.03925039 0.7998369 +0.2140411 0.03925039 0.7998369 +0.2441142 0.03925039 0.7998369 +0.2765176 0.03925039 0.7998369 +0.3113005 0.03925039 0.7998369 +0.3485102 0.03925039 0.7998369 +0.388193 0.03925039 0.7998369 +0.4303934 0.03925039 0.7998369 +0.4751555 0.03925039 0.7998369 +0.5225216 0.03925039 0.7998369 +0.5725335 0.03925039 0.7998369 +0.6252316 0.03925039 0.7998369 +0.6806558 0.03925039 0.7998369 +0.7388448 0.03925039 0.7998369 +0.7998369 0.03925039 0.7998369 +0.8636691 0.03925039 0.7998369 +0.9303782 0.03925039 0.7998369 +1 0.03925039 0.7998369 +0 0.05087609 0.7998369 +0.002418731 0.05087609 0.7998369 +0.005155668 0.05087609 0.7998369 +0.009080105 0.05087609 0.7998369 +0.01434988 0.05087609 0.7998369 +0.02107202 0.05087609 0.7998369 +0.02934285 0.05087609 0.7998369 +0.03925039 0.05087609 0.7998369 +0.05087609 0.05087609 0.7998369 +0.06429595 0.05087609 0.7998369 +0.07958143 0.05087609 0.7998369 +0.0968001 0.05087609 0.7998369 +0.1160161 0.05087609 0.7998369 +0.1372908 0.05087609 0.7998369 +0.1606827 0.05087609 0.7998369 +0.1862481 0.05087609 0.7998369 +0.2140411 0.05087609 0.7998369 +0.2441142 0.05087609 0.7998369 +0.2765176 0.05087609 0.7998369 +0.3113005 0.05087609 0.7998369 +0.3485102 0.05087609 0.7998369 +0.388193 0.05087609 0.7998369 +0.4303934 0.05087609 0.7998369 +0.4751555 0.05087609 0.7998369 +0.5225216 0.05087609 0.7998369 +0.5725335 0.05087609 0.7998369 +0.6252316 0.05087609 0.7998369 +0.6806558 0.05087609 0.7998369 +0.7388448 0.05087609 0.7998369 +0.7998369 0.05087609 0.7998369 +0.8636691 0.05087609 0.7998369 +0.9303782 0.05087609 0.7998369 +1 0.05087609 0.7998369 +0 0.06429595 0.7998369 +0.002418731 0.06429595 0.7998369 +0.005155668 0.06429595 0.7998369 +0.009080105 0.06429595 0.7998369 +0.01434988 0.06429595 0.7998369 +0.02107202 0.06429595 0.7998369 +0.02934285 0.06429595 0.7998369 +0.03925039 0.06429595 0.7998369 +0.05087609 0.06429595 0.7998369 +0.06429595 0.06429595 0.7998369 +0.07958143 0.06429595 0.7998369 +0.0968001 0.06429595 0.7998369 +0.1160161 0.06429595 0.7998369 +0.1372908 0.06429595 0.7998369 +0.1606827 0.06429595 0.7998369 +0.1862481 0.06429595 0.7998369 +0.2140411 0.06429595 0.7998369 +0.2441142 0.06429595 0.7998369 +0.2765176 0.06429595 0.7998369 +0.3113005 0.06429595 0.7998369 +0.3485102 0.06429595 0.7998369 +0.388193 0.06429595 0.7998369 +0.4303934 0.06429595 0.7998369 +0.4751555 0.06429595 0.7998369 +0.5225216 0.06429595 0.7998369 +0.5725335 0.06429595 0.7998369 +0.6252316 0.06429595 0.7998369 +0.6806558 0.06429595 0.7998369 +0.7388448 0.06429595 0.7998369 +0.7998369 0.06429595 0.7998369 +0.8636691 0.06429595 0.7998369 +0.9303782 0.06429595 0.7998369 +1 0.06429595 0.7998369 +0 0.07958143 0.7998369 +0.002418731 0.07958143 0.7998369 +0.005155668 0.07958143 0.7998369 +0.009080105 0.07958143 0.7998369 +0.01434988 0.07958143 0.7998369 +0.02107202 0.07958143 0.7998369 +0.02934285 0.07958143 0.7998369 +0.03925039 0.07958143 0.7998369 +0.05087609 0.07958143 0.7998369 +0.06429595 0.07958143 0.7998369 +0.07958143 0.07958143 0.7998369 +0.0968001 0.07958143 0.7998369 +0.1160161 0.07958143 0.7998369 +0.1372908 0.07958143 0.7998369 +0.1606827 0.07958143 0.7998369 +0.1862481 0.07958143 0.7998369 +0.2140411 0.07958143 0.7998369 +0.2441142 0.07958143 0.7998369 +0.2765176 0.07958143 0.7998369 +0.3113005 0.07958143 0.7998369 +0.3485102 0.07958143 0.7998369 +0.388193 0.07958143 0.7998369 +0.4303934 0.07958143 0.7998369 +0.4751555 0.07958143 0.7998369 +0.5225216 0.07958143 0.7998369 +0.5725335 0.07958143 0.7998369 +0.6252316 0.07958143 0.7998369 +0.6806558 0.07958143 0.7998369 +0.7388448 0.07958143 0.7998369 +0.7998369 0.07958143 0.7998369 +0.8636691 0.07958143 0.7998369 +0.9303782 0.07958143 0.7998369 +1 0.07958143 0.7998369 +0 0.0968001 0.7998369 +0.002418731 0.0968001 0.7998369 +0.005155668 0.0968001 0.7998369 +0.009080105 0.0968001 0.7998369 +0.01434988 0.0968001 0.7998369 +0.02107202 0.0968001 0.7998369 +0.02934285 0.0968001 0.7998369 +0.03925039 0.0968001 0.7998369 +0.05087609 0.0968001 0.7998369 +0.06429595 0.0968001 0.7998369 +0.07958143 0.0968001 0.7998369 +0.0968001 0.0968001 0.7998369 +0.1160161 0.0968001 0.7998369 +0.1372908 0.0968001 0.7998369 +0.1606827 0.0968001 0.7998369 +0.1862481 0.0968001 0.7998369 +0.2140411 0.0968001 0.7998369 +0.2441142 0.0968001 0.7998369 +0.2765176 0.0968001 0.7998369 +0.3113005 0.0968001 0.7998369 +0.3485102 0.0968001 0.7998369 +0.388193 0.0968001 0.7998369 +0.4303934 0.0968001 0.7998369 +0.4751555 0.0968001 0.7998369 +0.5225216 0.0968001 0.7998369 +0.5725335 0.0968001 0.7998369 +0.6252316 0.0968001 0.7998369 +0.6806558 0.0968001 0.7998369 +0.7388448 0.0968001 0.7998369 +0.7998369 0.0968001 0.7998369 +0.8636691 0.0968001 0.7998369 +0.9303782 0.0968001 0.7998369 +1 0.0968001 0.7998369 +0 0.1160161 0.7998369 +0.002418731 0.1160161 0.7998369 +0.005155668 0.1160161 0.7998369 +0.009080105 0.1160161 0.7998369 +0.01434988 0.1160161 0.7998369 +0.02107202 0.1160161 0.7998369 +0.02934285 0.1160161 0.7998369 +0.03925039 0.1160161 0.7998369 +0.05087609 0.1160161 0.7998369 +0.06429595 0.1160161 0.7998369 +0.07958143 0.1160161 0.7998369 +0.0968001 0.1160161 0.7998369 +0.1160161 0.1160161 0.7998369 +0.1372908 0.1160161 0.7998369 +0.1606827 0.1160161 0.7998369 +0.1862481 0.1160161 0.7998369 +0.2140411 0.1160161 0.7998369 +0.2441142 0.1160161 0.7998369 +0.2765176 0.1160161 0.7998369 +0.3113005 0.1160161 0.7998369 +0.3485102 0.1160161 0.7998369 +0.388193 0.1160161 0.7998369 +0.4303934 0.1160161 0.7998369 +0.4751555 0.1160161 0.7998369 +0.5225216 0.1160161 0.7998369 +0.5725335 0.1160161 0.7998369 +0.6252316 0.1160161 0.7998369 +0.6806558 0.1160161 0.7998369 +0.7388448 0.1160161 0.7998369 +0.7998369 0.1160161 0.7998369 +0.8636691 0.1160161 0.7998369 +0.9303782 0.1160161 0.7998369 +1 0.1160161 0.7998369 +0 0.1372908 0.7998369 +0.002418731 0.1372908 0.7998369 +0.005155668 0.1372908 0.7998369 +0.009080105 0.1372908 0.7998369 +0.01434988 0.1372908 0.7998369 +0.02107202 0.1372908 0.7998369 +0.02934285 0.1372908 0.7998369 +0.03925039 0.1372908 0.7998369 +0.05087609 0.1372908 0.7998369 +0.06429595 0.1372908 0.7998369 +0.07958143 0.1372908 0.7998369 +0.0968001 0.1372908 0.7998369 +0.1160161 0.1372908 0.7998369 +0.1372908 0.1372908 0.7998369 +0.1606827 0.1372908 0.7998369 +0.1862481 0.1372908 0.7998369 +0.2140411 0.1372908 0.7998369 +0.2441142 0.1372908 0.7998369 +0.2765176 0.1372908 0.7998369 +0.3113005 0.1372908 0.7998369 +0.3485102 0.1372908 0.7998369 +0.388193 0.1372908 0.7998369 +0.4303934 0.1372908 0.7998369 +0.4751555 0.1372908 0.7998369 +0.5225216 0.1372908 0.7998369 +0.5725335 0.1372908 0.7998369 +0.6252316 0.1372908 0.7998369 +0.6806558 0.1372908 0.7998369 +0.7388448 0.1372908 0.7998369 +0.7998369 0.1372908 0.7998369 +0.8636691 0.1372908 0.7998369 +0.9303782 0.1372908 0.7998369 +1 0.1372908 0.7998369 +0 0.1606827 0.7998369 +0.002418731 0.1606827 0.7998369 +0.005155668 0.1606827 0.7998369 +0.009080105 0.1606827 0.7998369 +0.01434988 0.1606827 0.7998369 +0.02107202 0.1606827 0.7998369 +0.02934285 0.1606827 0.7998369 +0.03925039 0.1606827 0.7998369 +0.05087609 0.1606827 0.7998369 +0.06429595 0.1606827 0.7998369 +0.07958143 0.1606827 0.7998369 +0.0968001 0.1606827 0.7998369 +0.1160161 0.1606827 0.7998369 +0.1372908 0.1606827 0.7998369 +0.1606827 0.1606827 0.7998369 +0.1862481 0.1606827 0.7998369 +0.2140411 0.1606827 0.7998369 +0.2441142 0.1606827 0.7998369 +0.2765176 0.1606827 0.7998369 +0.3113005 0.1606827 0.7998369 +0.3485102 0.1606827 0.7998369 +0.388193 0.1606827 0.7998369 +0.4303934 0.1606827 0.7998369 +0.4751555 0.1606827 0.7998369 +0.5225216 0.1606827 0.7998369 +0.5725335 0.1606827 0.7998369 +0.6252316 0.1606827 0.7998369 +0.6806558 0.1606827 0.7998369 +0.7388448 0.1606827 0.7998369 +0.7998369 0.1606827 0.7998369 +0.8636691 0.1606827 0.7998369 +0.9303782 0.1606827 0.7998369 +1 0.1606827 0.7998369 +0 0.1862481 0.7998369 +0.002418731 0.1862481 0.7998369 +0.005155668 0.1862481 0.7998369 +0.009080105 0.1862481 0.7998369 +0.01434988 0.1862481 0.7998369 +0.02107202 0.1862481 0.7998369 +0.02934285 0.1862481 0.7998369 +0.03925039 0.1862481 0.7998369 +0.05087609 0.1862481 0.7998369 +0.06429595 0.1862481 0.7998369 +0.07958143 0.1862481 0.7998369 +0.0968001 0.1862481 0.7998369 +0.1160161 0.1862481 0.7998369 +0.1372908 0.1862481 0.7998369 +0.1606827 0.1862481 0.7998369 +0.1862481 0.1862481 0.7998369 +0.2140411 0.1862481 0.7998369 +0.2441142 0.1862481 0.7998369 +0.2765176 0.1862481 0.7998369 +0.3113005 0.1862481 0.7998369 +0.3485102 0.1862481 0.7998369 +0.388193 0.1862481 0.7998369 +0.4303934 0.1862481 0.7998369 +0.4751555 0.1862481 0.7998369 +0.5225216 0.1862481 0.7998369 +0.5725335 0.1862481 0.7998369 +0.6252316 0.1862481 0.7998369 +0.6806558 0.1862481 0.7998369 +0.7388448 0.1862481 0.7998369 +0.7998369 0.1862481 0.7998369 +0.8636691 0.1862481 0.7998369 +0.9303782 0.1862481 0.7998369 +1 0.1862481 0.7998369 +0 0.2140411 0.7998369 +0.002418731 0.2140411 0.7998369 +0.005155668 0.2140411 0.7998369 +0.009080105 0.2140411 0.7998369 +0.01434988 0.2140411 0.7998369 +0.02107202 0.2140411 0.7998369 +0.02934285 0.2140411 0.7998369 +0.03925039 0.2140411 0.7998369 +0.05087609 0.2140411 0.7998369 +0.06429595 0.2140411 0.7998369 +0.07958143 0.2140411 0.7998369 +0.0968001 0.2140411 0.7998369 +0.1160161 0.2140411 0.7998369 +0.1372908 0.2140411 0.7998369 +0.1606827 0.2140411 0.7998369 +0.1862481 0.2140411 0.7998369 +0.2140411 0.2140411 0.7998369 +0.2441142 0.2140411 0.7998369 +0.2765176 0.2140411 0.7998369 +0.3113005 0.2140411 0.7998369 +0.3485102 0.2140411 0.7998369 +0.388193 0.2140411 0.7998369 +0.4303934 0.2140411 0.7998369 +0.4751555 0.2140411 0.7998369 +0.5225216 0.2140411 0.7998369 +0.5725335 0.2140411 0.7998369 +0.6252316 0.2140411 0.7998369 +0.6806558 0.2140411 0.7998369 +0.7388448 0.2140411 0.7998369 +0.7998369 0.2140411 0.7998369 +0.8636691 0.2140411 0.7998369 +0.9303782 0.2140411 0.7998369 +1 0.2140411 0.7998369 +0 0.2441142 0.7998369 +0.002418731 0.2441142 0.7998369 +0.005155668 0.2441142 0.7998369 +0.009080105 0.2441142 0.7998369 +0.01434988 0.2441142 0.7998369 +0.02107202 0.2441142 0.7998369 +0.02934285 0.2441142 0.7998369 +0.03925039 0.2441142 0.7998369 +0.05087609 0.2441142 0.7998369 +0.06429595 0.2441142 0.7998369 +0.07958143 0.2441142 0.7998369 +0.0968001 0.2441142 0.7998369 +0.1160161 0.2441142 0.7998369 +0.1372908 0.2441142 0.7998369 +0.1606827 0.2441142 0.7998369 +0.1862481 0.2441142 0.7998369 +0.2140411 0.2441142 0.7998369 +0.2441142 0.2441142 0.7998369 +0.2765176 0.2441142 0.7998369 +0.3113005 0.2441142 0.7998369 +0.3485102 0.2441142 0.7998369 +0.388193 0.2441142 0.7998369 +0.4303934 0.2441142 0.7998369 +0.4751555 0.2441142 0.7998369 +0.5225216 0.2441142 0.7998369 +0.5725335 0.2441142 0.7998369 +0.6252316 0.2441142 0.7998369 +0.6806558 0.2441142 0.7998369 +0.7388448 0.2441142 0.7998369 +0.7998369 0.2441142 0.7998369 +0.8636691 0.2441142 0.7998369 +0.9303782 0.2441142 0.7998369 +1 0.2441142 0.7998369 +0 0.2765176 0.7998369 +0.002418731 0.2765176 0.7998369 +0.005155668 0.2765176 0.7998369 +0.009080105 0.2765176 0.7998369 +0.01434988 0.2765176 0.7998369 +0.02107202 0.2765176 0.7998369 +0.02934285 0.2765176 0.7998369 +0.03925039 0.2765176 0.7998369 +0.05087609 0.2765176 0.7998369 +0.06429595 0.2765176 0.7998369 +0.07958143 0.2765176 0.7998369 +0.0968001 0.2765176 0.7998369 +0.1160161 0.2765176 0.7998369 +0.1372908 0.2765176 0.7998369 +0.1606827 0.2765176 0.7998369 +0.1862481 0.2765176 0.7998369 +0.2140411 0.2765176 0.7998369 +0.2441142 0.2765176 0.7998369 +0.2765176 0.2765176 0.7998369 +0.3113005 0.2765176 0.7998369 +0.3485102 0.2765176 0.7998369 +0.388193 0.2765176 0.7998369 +0.4303934 0.2765176 0.7998369 +0.4751555 0.2765176 0.7998369 +0.5225216 0.2765176 0.7998369 +0.5725335 0.2765176 0.7998369 +0.6252316 0.2765176 0.7998369 +0.6806558 0.2765176 0.7998369 +0.7388448 0.2765176 0.7998369 +0.7998369 0.2765176 0.7998369 +0.8636691 0.2765176 0.7998369 +0.9303782 0.2765176 0.7998369 +1 0.2765176 0.7998369 +0 0.3113005 0.7998369 +0.002418731 0.3113005 0.7998369 +0.005155668 0.3113005 0.7998369 +0.009080105 0.3113005 0.7998369 +0.01434988 0.3113005 0.7998369 +0.02107202 0.3113005 0.7998369 +0.02934285 0.3113005 0.7998369 +0.03925039 0.3113005 0.7998369 +0.05087609 0.3113005 0.7998369 +0.06429595 0.3113005 0.7998369 +0.07958143 0.3113005 0.7998369 +0.0968001 0.3113005 0.7998369 +0.1160161 0.3113005 0.7998369 +0.1372908 0.3113005 0.7998369 +0.1606827 0.3113005 0.7998369 +0.1862481 0.3113005 0.7998369 +0.2140411 0.3113005 0.7998369 +0.2441142 0.3113005 0.7998369 +0.2765176 0.3113005 0.7998369 +0.3113005 0.3113005 0.7998369 +0.3485102 0.3113005 0.7998369 +0.388193 0.3113005 0.7998369 +0.4303934 0.3113005 0.7998369 +0.4751555 0.3113005 0.7998369 +0.5225216 0.3113005 0.7998369 +0.5725335 0.3113005 0.7998369 +0.6252316 0.3113005 0.7998369 +0.6806558 0.3113005 0.7998369 +0.7388448 0.3113005 0.7998369 +0.7998369 0.3113005 0.7998369 +0.8636691 0.3113005 0.7998369 +0.9303782 0.3113005 0.7998369 +1 0.3113005 0.7998369 +0 0.3485102 0.7998369 +0.002418731 0.3485102 0.7998369 +0.005155668 0.3485102 0.7998369 +0.009080105 0.3485102 0.7998369 +0.01434988 0.3485102 0.7998369 +0.02107202 0.3485102 0.7998369 +0.02934285 0.3485102 0.7998369 +0.03925039 0.3485102 0.7998369 +0.05087609 0.3485102 0.7998369 +0.06429595 0.3485102 0.7998369 +0.07958143 0.3485102 0.7998369 +0.0968001 0.3485102 0.7998369 +0.1160161 0.3485102 0.7998369 +0.1372908 0.3485102 0.7998369 +0.1606827 0.3485102 0.7998369 +0.1862481 0.3485102 0.7998369 +0.2140411 0.3485102 0.7998369 +0.2441142 0.3485102 0.7998369 +0.2765176 0.3485102 0.7998369 +0.3113005 0.3485102 0.7998369 +0.3485102 0.3485102 0.7998369 +0.388193 0.3485102 0.7998369 +0.4303934 0.3485102 0.7998369 +0.4751555 0.3485102 0.7998369 +0.5225216 0.3485102 0.7998369 +0.5725335 0.3485102 0.7998369 +0.6252316 0.3485102 0.7998369 +0.6806558 0.3485102 0.7998369 +0.7388448 0.3485102 0.7998369 +0.7998369 0.3485102 0.7998369 +0.8636691 0.3485102 0.7998369 +0.9303782 0.3485102 0.7998369 +1 0.3485102 0.7998369 +0 0.388193 0.7998369 +0.002418731 0.388193 0.7998369 +0.005155668 0.388193 0.7998369 +0.009080105 0.388193 0.7998369 +0.01434988 0.388193 0.7998369 +0.02107202 0.388193 0.7998369 +0.02934285 0.388193 0.7998369 +0.03925039 0.388193 0.7998369 +0.05087609 0.388193 0.7998369 +0.06429595 0.388193 0.7998369 +0.07958143 0.388193 0.7998369 +0.0968001 0.388193 0.7998369 +0.1160161 0.388193 0.7998369 +0.1372908 0.388193 0.7998369 +0.1606827 0.388193 0.7998369 +0.1862481 0.388193 0.7998369 +0.2140411 0.388193 0.7998369 +0.2441142 0.388193 0.7998369 +0.2765176 0.388193 0.7998369 +0.3113005 0.388193 0.7998369 +0.3485102 0.388193 0.7998369 +0.388193 0.388193 0.7998369 +0.4303934 0.388193 0.7998369 +0.4751555 0.388193 0.7998369 +0.5225216 0.388193 0.7998369 +0.5725335 0.388193 0.7998369 +0.6252316 0.388193 0.7998369 +0.6806558 0.388193 0.7998369 +0.7388448 0.388193 0.7998369 +0.7998369 0.388193 0.7998369 +0.8636691 0.388193 0.7998369 +0.9303782 0.388193 0.7998369 +1 0.388193 0.7998369 +0 0.4303934 0.7998369 +0.002418731 0.4303934 0.7998369 +0.005155668 0.4303934 0.7998369 +0.009080105 0.4303934 0.7998369 +0.01434988 0.4303934 0.7998369 +0.02107202 0.4303934 0.7998369 +0.02934285 0.4303934 0.7998369 +0.03925039 0.4303934 0.7998369 +0.05087609 0.4303934 0.7998369 +0.06429595 0.4303934 0.7998369 +0.07958143 0.4303934 0.7998369 +0.0968001 0.4303934 0.7998369 +0.1160161 0.4303934 0.7998369 +0.1372908 0.4303934 0.7998369 +0.1606827 0.4303934 0.7998369 +0.1862481 0.4303934 0.7998369 +0.2140411 0.4303934 0.7998369 +0.2441142 0.4303934 0.7998369 +0.2765176 0.4303934 0.7998369 +0.3113005 0.4303934 0.7998369 +0.3485102 0.4303934 0.7998369 +0.388193 0.4303934 0.7998369 +0.4303934 0.4303934 0.7998369 +0.4751555 0.4303934 0.7998369 +0.5225216 0.4303934 0.7998369 +0.5725335 0.4303934 0.7998369 +0.6252316 0.4303934 0.7998369 +0.6806558 0.4303934 0.7998369 +0.7388448 0.4303934 0.7998369 +0.7998369 0.4303934 0.7998369 +0.8636691 0.4303934 0.7998369 +0.9303782 0.4303934 0.7998369 +1 0.4303934 0.7998369 +0 0.4751555 0.7998369 +0.002418731 0.4751555 0.7998369 +0.005155668 0.4751555 0.7998369 +0.009080105 0.4751555 0.7998369 +0.01434988 0.4751555 0.7998369 +0.02107202 0.4751555 0.7998369 +0.02934285 0.4751555 0.7998369 +0.03925039 0.4751555 0.7998369 +0.05087609 0.4751555 0.7998369 +0.06429595 0.4751555 0.7998369 +0.07958143 0.4751555 0.7998369 +0.0968001 0.4751555 0.7998369 +0.1160161 0.4751555 0.7998369 +0.1372908 0.4751555 0.7998369 +0.1606827 0.4751555 0.7998369 +0.1862481 0.4751555 0.7998369 +0.2140411 0.4751555 0.7998369 +0.2441142 0.4751555 0.7998369 +0.2765176 0.4751555 0.7998369 +0.3113005 0.4751555 0.7998369 +0.3485102 0.4751555 0.7998369 +0.388193 0.4751555 0.7998369 +0.4303934 0.4751555 0.7998369 +0.4751555 0.4751555 0.7998369 +0.5225216 0.4751555 0.7998369 +0.5725335 0.4751555 0.7998369 +0.6252316 0.4751555 0.7998369 +0.6806558 0.4751555 0.7998369 +0.7388448 0.4751555 0.7998369 +0.7998369 0.4751555 0.7998369 +0.8636691 0.4751555 0.7998369 +0.9303782 0.4751555 0.7998369 +1 0.4751555 0.7998369 +0 0.5225216 0.7998369 +0.002418731 0.5225216 0.7998369 +0.005155668 0.5225216 0.7998369 +0.009080105 0.5225216 0.7998369 +0.01434988 0.5225216 0.7998369 +0.02107202 0.5225216 0.7998369 +0.02934285 0.5225216 0.7998369 +0.03925039 0.5225216 0.7998369 +0.05087609 0.5225216 0.7998369 +0.06429595 0.5225216 0.7998369 +0.07958143 0.5225216 0.7998369 +0.0968001 0.5225216 0.7998369 +0.1160161 0.5225216 0.7998369 +0.1372908 0.5225216 0.7998369 +0.1606827 0.5225216 0.7998369 +0.1862481 0.5225216 0.7998369 +0.2140411 0.5225216 0.7998369 +0.2441142 0.5225216 0.7998369 +0.2765176 0.5225216 0.7998369 +0.3113005 0.5225216 0.7998369 +0.3485102 0.5225216 0.7998369 +0.388193 0.5225216 0.7998369 +0.4303934 0.5225216 0.7998369 +0.4751555 0.5225216 0.7998369 +0.5225216 0.5225216 0.7998369 +0.5725335 0.5225216 0.7998369 +0.6252316 0.5225216 0.7998369 +0.6806558 0.5225216 0.7998369 +0.7388448 0.5225216 0.7998369 +0.7998369 0.5225216 0.7998369 +0.8636691 0.5225216 0.7998369 +0.9303782 0.5225216 0.7998369 +1 0.5225216 0.7998369 +0 0.5725335 0.7998369 +0.002418731 0.5725335 0.7998369 +0.005155668 0.5725335 0.7998369 +0.009080105 0.5725335 0.7998369 +0.01434988 0.5725335 0.7998369 +0.02107202 0.5725335 0.7998369 +0.02934285 0.5725335 0.7998369 +0.03925039 0.5725335 0.7998369 +0.05087609 0.5725335 0.7998369 +0.06429595 0.5725335 0.7998369 +0.07958143 0.5725335 0.7998369 +0.0968001 0.5725335 0.7998369 +0.1160161 0.5725335 0.7998369 +0.1372908 0.5725335 0.7998369 +0.1606827 0.5725335 0.7998369 +0.1862481 0.5725335 0.7998369 +0.2140411 0.5725335 0.7998369 +0.2441142 0.5725335 0.7998369 +0.2765176 0.5725335 0.7998369 +0.3113005 0.5725335 0.7998369 +0.3485102 0.5725335 0.7998369 +0.388193 0.5725335 0.7998369 +0.4303934 0.5725335 0.7998369 +0.4751555 0.5725335 0.7998369 +0.5225216 0.5725335 0.7998369 +0.5725335 0.5725335 0.7998369 +0.6252316 0.5725335 0.7998369 +0.6806558 0.5725335 0.7998369 +0.7388448 0.5725335 0.7998369 +0.7998369 0.5725335 0.7998369 +0.8636691 0.5725335 0.7998369 +0.9303782 0.5725335 0.7998369 +1 0.5725335 0.7998369 +0 0.6252316 0.7998369 +0.002418731 0.6252316 0.7998369 +0.005155668 0.6252316 0.7998369 +0.009080105 0.6252316 0.7998369 +0.01434988 0.6252316 0.7998369 +0.02107202 0.6252316 0.7998369 +0.02934285 0.6252316 0.7998369 +0.03925039 0.6252316 0.7998369 +0.05087609 0.6252316 0.7998369 +0.06429595 0.6252316 0.7998369 +0.07958143 0.6252316 0.7998369 +0.0968001 0.6252316 0.7998369 +0.1160161 0.6252316 0.7998369 +0.1372908 0.6252316 0.7998369 +0.1606827 0.6252316 0.7998369 +0.1862481 0.6252316 0.7998369 +0.2140411 0.6252316 0.7998369 +0.2441142 0.6252316 0.7998369 +0.2765176 0.6252316 0.7998369 +0.3113005 0.6252316 0.7998369 +0.3485102 0.6252316 0.7998369 +0.388193 0.6252316 0.7998369 +0.4303934 0.6252316 0.7998369 +0.4751555 0.6252316 0.7998369 +0.5225216 0.6252316 0.7998369 +0.5725335 0.6252316 0.7998369 +0.6252316 0.6252316 0.7998369 +0.6806558 0.6252316 0.7998369 +0.7388448 0.6252316 0.7998369 +0.7998369 0.6252316 0.7998369 +0.8636691 0.6252316 0.7998369 +0.9303782 0.6252316 0.7998369 +1 0.6252316 0.7998369 +0 0.6806558 0.7998369 +0.002418731 0.6806558 0.7998369 +0.005155668 0.6806558 0.7998369 +0.009080105 0.6806558 0.7998369 +0.01434988 0.6806558 0.7998369 +0.02107202 0.6806558 0.7998369 +0.02934285 0.6806558 0.7998369 +0.03925039 0.6806558 0.7998369 +0.05087609 0.6806558 0.7998369 +0.06429595 0.6806558 0.7998369 +0.07958143 0.6806558 0.7998369 +0.0968001 0.6806558 0.7998369 +0.1160161 0.6806558 0.7998369 +0.1372908 0.6806558 0.7998369 +0.1606827 0.6806558 0.7998369 +0.1862481 0.6806558 0.7998369 +0.2140411 0.6806558 0.7998369 +0.2441142 0.6806558 0.7998369 +0.2765176 0.6806558 0.7998369 +0.3113005 0.6806558 0.7998369 +0.3485102 0.6806558 0.7998369 +0.388193 0.6806558 0.7998369 +0.4303934 0.6806558 0.7998369 +0.4751555 0.6806558 0.7998369 +0.5225216 0.6806558 0.7998369 +0.5725335 0.6806558 0.7998369 +0.6252316 0.6806558 0.7998369 +0.6806558 0.6806558 0.7998369 +0.7388448 0.6806558 0.7998369 +0.7998369 0.6806558 0.7998369 +0.8636691 0.6806558 0.7998369 +0.9303782 0.6806558 0.7998369 +1 0.6806558 0.7998369 +0 0.7388448 0.7998369 +0.002418731 0.7388448 0.7998369 +0.005155668 0.7388448 0.7998369 +0.009080105 0.7388448 0.7998369 +0.01434988 0.7388448 0.7998369 +0.02107202 0.7388448 0.7998369 +0.02934285 0.7388448 0.7998369 +0.03925039 0.7388448 0.7998369 +0.05087609 0.7388448 0.7998369 +0.06429595 0.7388448 0.7998369 +0.07958143 0.7388448 0.7998369 +0.0968001 0.7388448 0.7998369 +0.1160161 0.7388448 0.7998369 +0.1372908 0.7388448 0.7998369 +0.1606827 0.7388448 0.7998369 +0.1862481 0.7388448 0.7998369 +0.2140411 0.7388448 0.7998369 +0.2441142 0.7388448 0.7998369 +0.2765176 0.7388448 0.7998369 +0.3113005 0.7388448 0.7998369 +0.3485102 0.7388448 0.7998369 +0.388193 0.7388448 0.7998369 +0.4303934 0.7388448 0.7998369 +0.4751555 0.7388448 0.7998369 +0.5225216 0.7388448 0.7998369 +0.5725335 0.7388448 0.7998369 +0.6252316 0.7388448 0.7998369 +0.6806558 0.7388448 0.7998369 +0.7388448 0.7388448 0.7998369 +0.7998369 0.7388448 0.7998369 +0.8636691 0.7388448 0.7998369 +0.9303782 0.7388448 0.7998369 +1 0.7388448 0.7998369 +0 0.7998369 0.7998369 +0.002418731 0.7998369 0.7998369 +0.005155668 0.7998369 0.7998369 +0.009080105 0.7998369 0.7998369 +0.01434988 0.7998369 0.7998369 +0.02107202 0.7998369 0.7998369 +0.02934285 0.7998369 0.7998369 +0.03925039 0.7998369 0.7998369 +0.05087609 0.7998369 0.7998369 +0.06429595 0.7998369 0.7998369 +0.07958143 0.7998369 0.7998369 +0.0968001 0.7998369 0.7998369 +0.1160161 0.7998369 0.7998369 +0.1372908 0.7998369 0.7998369 +0.1606827 0.7998369 0.7998369 +0.1862481 0.7998369 0.7998369 +0.2140411 0.7998369 0.7998369 +0.2441142 0.7998369 0.7998369 +0.2765176 0.7998369 0.7998369 +0.3113005 0.7998369 0.7998369 +0.3485102 0.7998369 0.7998369 +0.388193 0.7998369 0.7998369 +0.4303934 0.7998369 0.7998369 +0.4751555 0.7998369 0.7998369 +0.5225216 0.7998369 0.7998369 +0.5725335 0.7998369 0.7998369 +0.6252316 0.7998369 0.7998369 +0.6806558 0.7998369 0.7998369 +0.7388448 0.7998369 0.7998369 +0.7998369 0.7998369 0.7998369 +0.8636691 0.7998369 0.7998369 +0.9303782 0.7998369 0.7998369 +1 0.7998369 0.7998369 +0 0.8636691 0.7998369 +0.002418731 0.8636691 0.7998369 +0.005155668 0.8636691 0.7998369 +0.009080105 0.8636691 0.7998369 +0.01434988 0.8636691 0.7998369 +0.02107202 0.8636691 0.7998369 +0.02934285 0.8636691 0.7998369 +0.03925039 0.8636691 0.7998369 +0.05087609 0.8636691 0.7998369 +0.06429595 0.8636691 0.7998369 +0.07958143 0.8636691 0.7998369 +0.0968001 0.8636691 0.7998369 +0.1160161 0.8636691 0.7998369 +0.1372908 0.8636691 0.7998369 +0.1606827 0.8636691 0.7998369 +0.1862481 0.8636691 0.7998369 +0.2140411 0.8636691 0.7998369 +0.2441142 0.8636691 0.7998369 +0.2765176 0.8636691 0.7998369 +0.3113005 0.8636691 0.7998369 +0.3485102 0.8636691 0.7998369 +0.388193 0.8636691 0.7998369 +0.4303934 0.8636691 0.7998369 +0.4751555 0.8636691 0.7998369 +0.5225216 0.8636691 0.7998369 +0.5725335 0.8636691 0.7998369 +0.6252316 0.8636691 0.7998369 +0.6806558 0.8636691 0.7998369 +0.7388448 0.8636691 0.7998369 +0.7998369 0.8636691 0.7998369 +0.8636691 0.8636691 0.7998369 +0.9303782 0.8636691 0.7998369 +1 0.8636691 0.7998369 +0 0.9303782 0.7998369 +0.002418731 0.9303782 0.7998369 +0.005155668 0.9303782 0.7998369 +0.009080105 0.9303782 0.7998369 +0.01434988 0.9303782 0.7998369 +0.02107202 0.9303782 0.7998369 +0.02934285 0.9303782 0.7998369 +0.03925039 0.9303782 0.7998369 +0.05087609 0.9303782 0.7998369 +0.06429595 0.9303782 0.7998369 +0.07958143 0.9303782 0.7998369 +0.0968001 0.9303782 0.7998369 +0.1160161 0.9303782 0.7998369 +0.1372908 0.9303782 0.7998369 +0.1606827 0.9303782 0.7998369 +0.1862481 0.9303782 0.7998369 +0.2140411 0.9303782 0.7998369 +0.2441142 0.9303782 0.7998369 +0.2765176 0.9303782 0.7998369 +0.3113005 0.9303782 0.7998369 +0.3485102 0.9303782 0.7998369 +0.388193 0.9303782 0.7998369 +0.4303934 0.9303782 0.7998369 +0.4751555 0.9303782 0.7998369 +0.5225216 0.9303782 0.7998369 +0.5725335 0.9303782 0.7998369 +0.6252316 0.9303782 0.7998369 +0.6806558 0.9303782 0.7998369 +0.7388448 0.9303782 0.7998369 +0.7998369 0.9303782 0.7998369 +0.8636691 0.9303782 0.7998369 +0.9303782 0.9303782 0.7998369 +1 0.9303782 0.7998369 +0 1 0.7998369 +0.002418731 1 0.7998369 +0.005155668 1 0.7998369 +0.009080105 1 0.7998369 +0.01434988 1 0.7998369 +0.02107202 1 0.7998369 +0.02934285 1 0.7998369 +0.03925039 1 0.7998369 +0.05087609 1 0.7998369 +0.06429595 1 0.7998369 +0.07958143 1 0.7998369 +0.0968001 1 0.7998369 +0.1160161 1 0.7998369 +0.1372908 1 0.7998369 +0.1606827 1 0.7998369 +0.1862481 1 0.7998369 +0.2140411 1 0.7998369 +0.2441142 1 0.7998369 +0.2765176 1 0.7998369 +0.3113005 1 0.7998369 +0.3485102 1 0.7998369 +0.388193 1 0.7998369 +0.4303934 1 0.7998369 +0.4751555 1 0.7998369 +0.5225216 1 0.7998369 +0.5725335 1 0.7998369 +0.6252316 1 0.7998369 +0.6806558 1 0.7998369 +0.7388448 1 0.7998369 +0.7998369 1 0.7998369 +0.8636691 1 0.7998369 +0.9303782 1 0.7998369 +1 1 0.7998369 +0 0 0.8636691 +0.002418731 0 0.8636691 +0.005155668 0 0.8636691 +0.009080105 0 0.8636691 +0.01434988 0 0.8636691 +0.02107202 0 0.8636691 +0.02934285 0 0.8636691 +0.03925039 0 0.8636691 +0.05087609 0 0.8636691 +0.06429595 0 0.8636691 +0.07958143 0 0.8636691 +0.0968001 0 0.8636691 +0.1160161 0 0.8636691 +0.1372908 0 0.8636691 +0.1606827 0 0.8636691 +0.1862481 0 0.8636691 +0.2140411 0 0.8636691 +0.2441142 0 0.8636691 +0.2765176 0 0.8636691 +0.3113005 0 0.8636691 +0.3485102 0 0.8636691 +0.388193 0 0.8636691 +0.4303934 0 0.8636691 +0.4751555 0 0.8636691 +0.5225216 0 0.8636691 +0.5725335 0 0.8636691 +0.6252316 0 0.8636691 +0.6806558 0 0.8636691 +0.7388448 0 0.8636691 +0.7998369 0 0.8636691 +0.8636691 0 0.8636691 +0.9303782 0 0.8636691 +1 0 0.8636691 +0 0.002418731 0.8636691 +0.002418731 0.002418731 0.8636691 +0.005155668 0.002418731 0.8636691 +0.009080105 0.002418731 0.8636691 +0.01434988 0.002418731 0.8636691 +0.02107202 0.002418731 0.8636691 +0.02934285 0.002418731 0.8636691 +0.03925039 0.002418731 0.8636691 +0.05087609 0.002418731 0.8636691 +0.06429595 0.002418731 0.8636691 +0.07958143 0.002418731 0.8636691 +0.0968001 0.002418731 0.8636691 +0.1160161 0.002418731 0.8636691 +0.1372908 0.002418731 0.8636691 +0.1606827 0.002418731 0.8636691 +0.1862481 0.002418731 0.8636691 +0.2140411 0.002418731 0.8636691 +0.2441142 0.002418731 0.8636691 +0.2765176 0.002418731 0.8636691 +0.3113005 0.002418731 0.8636691 +0.3485102 0.002418731 0.8636691 +0.388193 0.002418731 0.8636691 +0.4303934 0.002418731 0.8636691 +0.4751555 0.002418731 0.8636691 +0.5225216 0.002418731 0.8636691 +0.5725335 0.002418731 0.8636691 +0.6252316 0.002418731 0.8636691 +0.6806558 0.002418731 0.8636691 +0.7388448 0.002418731 0.8636691 +0.7998369 0.002418731 0.8636691 +0.8636691 0.002418731 0.8636691 +0.9303782 0.002418731 0.8636691 +1 0.002418731 0.8636691 +0 0.005155668 0.8636691 +0.002418731 0.005155668 0.8636691 +0.005155668 0.005155668 0.8636691 +0.009080105 0.005155668 0.8636691 +0.01434988 0.005155668 0.8636691 +0.02107202 0.005155668 0.8636691 +0.02934285 0.005155668 0.8636691 +0.03925039 0.005155668 0.8636691 +0.05087609 0.005155668 0.8636691 +0.06429595 0.005155668 0.8636691 +0.07958143 0.005155668 0.8636691 +0.0968001 0.005155668 0.8636691 +0.1160161 0.005155668 0.8636691 +0.1372908 0.005155668 0.8636691 +0.1606827 0.005155668 0.8636691 +0.1862481 0.005155668 0.8636691 +0.2140411 0.005155668 0.8636691 +0.2441142 0.005155668 0.8636691 +0.2765176 0.005155668 0.8636691 +0.3113005 0.005155668 0.8636691 +0.3485102 0.005155668 0.8636691 +0.388193 0.005155668 0.8636691 +0.4303934 0.005155668 0.8636691 +0.4751555 0.005155668 0.8636691 +0.5225216 0.005155668 0.8636691 +0.5725335 0.005155668 0.8636691 +0.6252316 0.005155668 0.8636691 +0.6806558 0.005155668 0.8636691 +0.7388448 0.005155668 0.8636691 +0.7998369 0.005155668 0.8636691 +0.8636691 0.005155668 0.8636691 +0.9303782 0.005155668 0.8636691 +1 0.005155668 0.8636691 +0 0.009080105 0.8636691 +0.002418731 0.009080105 0.8636691 +0.005155668 0.009080105 0.8636691 +0.009080105 0.009080105 0.8636691 +0.01434988 0.009080105 0.8636691 +0.02107202 0.009080105 0.8636691 +0.02934285 0.009080105 0.8636691 +0.03925039 0.009080105 0.8636691 +0.05087609 0.009080105 0.8636691 +0.06429595 0.009080105 0.8636691 +0.07958143 0.009080105 0.8636691 +0.0968001 0.009080105 0.8636691 +0.1160161 0.009080105 0.8636691 +0.1372908 0.009080105 0.8636691 +0.1606827 0.009080105 0.8636691 +0.1862481 0.009080105 0.8636691 +0.2140411 0.009080105 0.8636691 +0.2441142 0.009080105 0.8636691 +0.2765176 0.009080105 0.8636691 +0.3113005 0.009080105 0.8636691 +0.3485102 0.009080105 0.8636691 +0.388193 0.009080105 0.8636691 +0.4303934 0.009080105 0.8636691 +0.4751555 0.009080105 0.8636691 +0.5225216 0.009080105 0.8636691 +0.5725335 0.009080105 0.8636691 +0.6252316 0.009080105 0.8636691 +0.6806558 0.009080105 0.8636691 +0.7388448 0.009080105 0.8636691 +0.7998369 0.009080105 0.8636691 +0.8636691 0.009080105 0.8636691 +0.9303782 0.009080105 0.8636691 +1 0.009080105 0.8636691 +0 0.01434988 0.8636691 +0.002418731 0.01434988 0.8636691 +0.005155668 0.01434988 0.8636691 +0.009080105 0.01434988 0.8636691 +0.01434988 0.01434988 0.8636691 +0.02107202 0.01434988 0.8636691 +0.02934285 0.01434988 0.8636691 +0.03925039 0.01434988 0.8636691 +0.05087609 0.01434988 0.8636691 +0.06429595 0.01434988 0.8636691 +0.07958143 0.01434988 0.8636691 +0.0968001 0.01434988 0.8636691 +0.1160161 0.01434988 0.8636691 +0.1372908 0.01434988 0.8636691 +0.1606827 0.01434988 0.8636691 +0.1862481 0.01434988 0.8636691 +0.2140411 0.01434988 0.8636691 +0.2441142 0.01434988 0.8636691 +0.2765176 0.01434988 0.8636691 +0.3113005 0.01434988 0.8636691 +0.3485102 0.01434988 0.8636691 +0.388193 0.01434988 0.8636691 +0.4303934 0.01434988 0.8636691 +0.4751555 0.01434988 0.8636691 +0.5225216 0.01434988 0.8636691 +0.5725335 0.01434988 0.8636691 +0.6252316 0.01434988 0.8636691 +0.6806558 0.01434988 0.8636691 +0.7388448 0.01434988 0.8636691 +0.7998369 0.01434988 0.8636691 +0.8636691 0.01434988 0.8636691 +0.9303782 0.01434988 0.8636691 +1 0.01434988 0.8636691 +0 0.02107202 0.8636691 +0.002418731 0.02107202 0.8636691 +0.005155668 0.02107202 0.8636691 +0.009080105 0.02107202 0.8636691 +0.01434988 0.02107202 0.8636691 +0.02107202 0.02107202 0.8636691 +0.02934285 0.02107202 0.8636691 +0.03925039 0.02107202 0.8636691 +0.05087609 0.02107202 0.8636691 +0.06429595 0.02107202 0.8636691 +0.07958143 0.02107202 0.8636691 +0.0968001 0.02107202 0.8636691 +0.1160161 0.02107202 0.8636691 +0.1372908 0.02107202 0.8636691 +0.1606827 0.02107202 0.8636691 +0.1862481 0.02107202 0.8636691 +0.2140411 0.02107202 0.8636691 +0.2441142 0.02107202 0.8636691 +0.2765176 0.02107202 0.8636691 +0.3113005 0.02107202 0.8636691 +0.3485102 0.02107202 0.8636691 +0.388193 0.02107202 0.8636691 +0.4303934 0.02107202 0.8636691 +0.4751555 0.02107202 0.8636691 +0.5225216 0.02107202 0.8636691 +0.5725335 0.02107202 0.8636691 +0.6252316 0.02107202 0.8636691 +0.6806558 0.02107202 0.8636691 +0.7388448 0.02107202 0.8636691 +0.7998369 0.02107202 0.8636691 +0.8636691 0.02107202 0.8636691 +0.9303782 0.02107202 0.8636691 +1 0.02107202 0.8636691 +0 0.02934285 0.8636691 +0.002418731 0.02934285 0.8636691 +0.005155668 0.02934285 0.8636691 +0.009080105 0.02934285 0.8636691 +0.01434988 0.02934285 0.8636691 +0.02107202 0.02934285 0.8636691 +0.02934285 0.02934285 0.8636691 +0.03925039 0.02934285 0.8636691 +0.05087609 0.02934285 0.8636691 +0.06429595 0.02934285 0.8636691 +0.07958143 0.02934285 0.8636691 +0.0968001 0.02934285 0.8636691 +0.1160161 0.02934285 0.8636691 +0.1372908 0.02934285 0.8636691 +0.1606827 0.02934285 0.8636691 +0.1862481 0.02934285 0.8636691 +0.2140411 0.02934285 0.8636691 +0.2441142 0.02934285 0.8636691 +0.2765176 0.02934285 0.8636691 +0.3113005 0.02934285 0.8636691 +0.3485102 0.02934285 0.8636691 +0.388193 0.02934285 0.8636691 +0.4303934 0.02934285 0.8636691 +0.4751555 0.02934285 0.8636691 +0.5225216 0.02934285 0.8636691 +0.5725335 0.02934285 0.8636691 +0.6252316 0.02934285 0.8636691 +0.6806558 0.02934285 0.8636691 +0.7388448 0.02934285 0.8636691 +0.7998369 0.02934285 0.8636691 +0.8636691 0.02934285 0.8636691 +0.9303782 0.02934285 0.8636691 +1 0.02934285 0.8636691 +0 0.03925039 0.8636691 +0.002418731 0.03925039 0.8636691 +0.005155668 0.03925039 0.8636691 +0.009080105 0.03925039 0.8636691 +0.01434988 0.03925039 0.8636691 +0.02107202 0.03925039 0.8636691 +0.02934285 0.03925039 0.8636691 +0.03925039 0.03925039 0.8636691 +0.05087609 0.03925039 0.8636691 +0.06429595 0.03925039 0.8636691 +0.07958143 0.03925039 0.8636691 +0.0968001 0.03925039 0.8636691 +0.1160161 0.03925039 0.8636691 +0.1372908 0.03925039 0.8636691 +0.1606827 0.03925039 0.8636691 +0.1862481 0.03925039 0.8636691 +0.2140411 0.03925039 0.8636691 +0.2441142 0.03925039 0.8636691 +0.2765176 0.03925039 0.8636691 +0.3113005 0.03925039 0.8636691 +0.3485102 0.03925039 0.8636691 +0.388193 0.03925039 0.8636691 +0.4303934 0.03925039 0.8636691 +0.4751555 0.03925039 0.8636691 +0.5225216 0.03925039 0.8636691 +0.5725335 0.03925039 0.8636691 +0.6252316 0.03925039 0.8636691 +0.6806558 0.03925039 0.8636691 +0.7388448 0.03925039 0.8636691 +0.7998369 0.03925039 0.8636691 +0.8636691 0.03925039 0.8636691 +0.9303782 0.03925039 0.8636691 +1 0.03925039 0.8636691 +0 0.05087609 0.8636691 +0.002418731 0.05087609 0.8636691 +0.005155668 0.05087609 0.8636691 +0.009080105 0.05087609 0.8636691 +0.01434988 0.05087609 0.8636691 +0.02107202 0.05087609 0.8636691 +0.02934285 0.05087609 0.8636691 +0.03925039 0.05087609 0.8636691 +0.05087609 0.05087609 0.8636691 +0.06429595 0.05087609 0.8636691 +0.07958143 0.05087609 0.8636691 +0.0968001 0.05087609 0.8636691 +0.1160161 0.05087609 0.8636691 +0.1372908 0.05087609 0.8636691 +0.1606827 0.05087609 0.8636691 +0.1862481 0.05087609 0.8636691 +0.2140411 0.05087609 0.8636691 +0.2441142 0.05087609 0.8636691 +0.2765176 0.05087609 0.8636691 +0.3113005 0.05087609 0.8636691 +0.3485102 0.05087609 0.8636691 +0.388193 0.05087609 0.8636691 +0.4303934 0.05087609 0.8636691 +0.4751555 0.05087609 0.8636691 +0.5225216 0.05087609 0.8636691 +0.5725335 0.05087609 0.8636691 +0.6252316 0.05087609 0.8636691 +0.6806558 0.05087609 0.8636691 +0.7388448 0.05087609 0.8636691 +0.7998369 0.05087609 0.8636691 +0.8636691 0.05087609 0.8636691 +0.9303782 0.05087609 0.8636691 +1 0.05087609 0.8636691 +0 0.06429595 0.8636691 +0.002418731 0.06429595 0.8636691 +0.005155668 0.06429595 0.8636691 +0.009080105 0.06429595 0.8636691 +0.01434988 0.06429595 0.8636691 +0.02107202 0.06429595 0.8636691 +0.02934285 0.06429595 0.8636691 +0.03925039 0.06429595 0.8636691 +0.05087609 0.06429595 0.8636691 +0.06429595 0.06429595 0.8636691 +0.07958143 0.06429595 0.8636691 +0.0968001 0.06429595 0.8636691 +0.1160161 0.06429595 0.8636691 +0.1372908 0.06429595 0.8636691 +0.1606827 0.06429595 0.8636691 +0.1862481 0.06429595 0.8636691 +0.2140411 0.06429595 0.8636691 +0.2441142 0.06429595 0.8636691 +0.2765176 0.06429595 0.8636691 +0.3113005 0.06429595 0.8636691 +0.3485102 0.06429595 0.8636691 +0.388193 0.06429595 0.8636691 +0.4303934 0.06429595 0.8636691 +0.4751555 0.06429595 0.8636691 +0.5225216 0.06429595 0.8636691 +0.5725335 0.06429595 0.8636691 +0.6252316 0.06429595 0.8636691 +0.6806558 0.06429595 0.8636691 +0.7388448 0.06429595 0.8636691 +0.7998369 0.06429595 0.8636691 +0.8636691 0.06429595 0.8636691 +0.9303782 0.06429595 0.8636691 +1 0.06429595 0.8636691 +0 0.07958143 0.8636691 +0.002418731 0.07958143 0.8636691 +0.005155668 0.07958143 0.8636691 +0.009080105 0.07958143 0.8636691 +0.01434988 0.07958143 0.8636691 +0.02107202 0.07958143 0.8636691 +0.02934285 0.07958143 0.8636691 +0.03925039 0.07958143 0.8636691 +0.05087609 0.07958143 0.8636691 +0.06429595 0.07958143 0.8636691 +0.07958143 0.07958143 0.8636691 +0.0968001 0.07958143 0.8636691 +0.1160161 0.07958143 0.8636691 +0.1372908 0.07958143 0.8636691 +0.1606827 0.07958143 0.8636691 +0.1862481 0.07958143 0.8636691 +0.2140411 0.07958143 0.8636691 +0.2441142 0.07958143 0.8636691 +0.2765176 0.07958143 0.8636691 +0.3113005 0.07958143 0.8636691 +0.3485102 0.07958143 0.8636691 +0.388193 0.07958143 0.8636691 +0.4303934 0.07958143 0.8636691 +0.4751555 0.07958143 0.8636691 +0.5225216 0.07958143 0.8636691 +0.5725335 0.07958143 0.8636691 +0.6252316 0.07958143 0.8636691 +0.6806558 0.07958143 0.8636691 +0.7388448 0.07958143 0.8636691 +0.7998369 0.07958143 0.8636691 +0.8636691 0.07958143 0.8636691 +0.9303782 0.07958143 0.8636691 +1 0.07958143 0.8636691 +0 0.0968001 0.8636691 +0.002418731 0.0968001 0.8636691 +0.005155668 0.0968001 0.8636691 +0.009080105 0.0968001 0.8636691 +0.01434988 0.0968001 0.8636691 +0.02107202 0.0968001 0.8636691 +0.02934285 0.0968001 0.8636691 +0.03925039 0.0968001 0.8636691 +0.05087609 0.0968001 0.8636691 +0.06429595 0.0968001 0.8636691 +0.07958143 0.0968001 0.8636691 +0.0968001 0.0968001 0.8636691 +0.1160161 0.0968001 0.8636691 +0.1372908 0.0968001 0.8636691 +0.1606827 0.0968001 0.8636691 +0.1862481 0.0968001 0.8636691 +0.2140411 0.0968001 0.8636691 +0.2441142 0.0968001 0.8636691 +0.2765176 0.0968001 0.8636691 +0.3113005 0.0968001 0.8636691 +0.3485102 0.0968001 0.8636691 +0.388193 0.0968001 0.8636691 +0.4303934 0.0968001 0.8636691 +0.4751555 0.0968001 0.8636691 +0.5225216 0.0968001 0.8636691 +0.5725335 0.0968001 0.8636691 +0.6252316 0.0968001 0.8636691 +0.6806558 0.0968001 0.8636691 +0.7388448 0.0968001 0.8636691 +0.7998369 0.0968001 0.8636691 +0.8636691 0.0968001 0.8636691 +0.9303782 0.0968001 0.8636691 +1 0.0968001 0.8636691 +0 0.1160161 0.8636691 +0.002418731 0.1160161 0.8636691 +0.005155668 0.1160161 0.8636691 +0.009080105 0.1160161 0.8636691 +0.01434988 0.1160161 0.8636691 +0.02107202 0.1160161 0.8636691 +0.02934285 0.1160161 0.8636691 +0.03925039 0.1160161 0.8636691 +0.05087609 0.1160161 0.8636691 +0.06429595 0.1160161 0.8636691 +0.07958143 0.1160161 0.8636691 +0.0968001 0.1160161 0.8636691 +0.1160161 0.1160161 0.8636691 +0.1372908 0.1160161 0.8636691 +0.1606827 0.1160161 0.8636691 +0.1862481 0.1160161 0.8636691 +0.2140411 0.1160161 0.8636691 +0.2441142 0.1160161 0.8636691 +0.2765176 0.1160161 0.8636691 +0.3113005 0.1160161 0.8636691 +0.3485102 0.1160161 0.8636691 +0.388193 0.1160161 0.8636691 +0.4303934 0.1160161 0.8636691 +0.4751555 0.1160161 0.8636691 +0.5225216 0.1160161 0.8636691 +0.5725335 0.1160161 0.8636691 +0.6252316 0.1160161 0.8636691 +0.6806558 0.1160161 0.8636691 +0.7388448 0.1160161 0.8636691 +0.7998369 0.1160161 0.8636691 +0.8636691 0.1160161 0.8636691 +0.9303782 0.1160161 0.8636691 +1 0.1160161 0.8636691 +0 0.1372908 0.8636691 +0.002418731 0.1372908 0.8636691 +0.005155668 0.1372908 0.8636691 +0.009080105 0.1372908 0.8636691 +0.01434988 0.1372908 0.8636691 +0.02107202 0.1372908 0.8636691 +0.02934285 0.1372908 0.8636691 +0.03925039 0.1372908 0.8636691 +0.05087609 0.1372908 0.8636691 +0.06429595 0.1372908 0.8636691 +0.07958143 0.1372908 0.8636691 +0.0968001 0.1372908 0.8636691 +0.1160161 0.1372908 0.8636691 +0.1372908 0.1372908 0.8636691 +0.1606827 0.1372908 0.8636691 +0.1862481 0.1372908 0.8636691 +0.2140411 0.1372908 0.8636691 +0.2441142 0.1372908 0.8636691 +0.2765176 0.1372908 0.8636691 +0.3113005 0.1372908 0.8636691 +0.3485102 0.1372908 0.8636691 +0.388193 0.1372908 0.8636691 +0.4303934 0.1372908 0.8636691 +0.4751555 0.1372908 0.8636691 +0.5225216 0.1372908 0.8636691 +0.5725335 0.1372908 0.8636691 +0.6252316 0.1372908 0.8636691 +0.6806558 0.1372908 0.8636691 +0.7388448 0.1372908 0.8636691 +0.7998369 0.1372908 0.8636691 +0.8636691 0.1372908 0.8636691 +0.9303782 0.1372908 0.8636691 +1 0.1372908 0.8636691 +0 0.1606827 0.8636691 +0.002418731 0.1606827 0.8636691 +0.005155668 0.1606827 0.8636691 +0.009080105 0.1606827 0.8636691 +0.01434988 0.1606827 0.8636691 +0.02107202 0.1606827 0.8636691 +0.02934285 0.1606827 0.8636691 +0.03925039 0.1606827 0.8636691 +0.05087609 0.1606827 0.8636691 +0.06429595 0.1606827 0.8636691 +0.07958143 0.1606827 0.8636691 +0.0968001 0.1606827 0.8636691 +0.1160161 0.1606827 0.8636691 +0.1372908 0.1606827 0.8636691 +0.1606827 0.1606827 0.8636691 +0.1862481 0.1606827 0.8636691 +0.2140411 0.1606827 0.8636691 +0.2441142 0.1606827 0.8636691 +0.2765176 0.1606827 0.8636691 +0.3113005 0.1606827 0.8636691 +0.3485102 0.1606827 0.8636691 +0.388193 0.1606827 0.8636691 +0.4303934 0.1606827 0.8636691 +0.4751555 0.1606827 0.8636691 +0.5225216 0.1606827 0.8636691 +0.5725335 0.1606827 0.8636691 +0.6252316 0.1606827 0.8636691 +0.6806558 0.1606827 0.8636691 +0.7388448 0.1606827 0.8636691 +0.7998369 0.1606827 0.8636691 +0.8636691 0.1606827 0.8636691 +0.9303782 0.1606827 0.8636691 +1 0.1606827 0.8636691 +0 0.1862481 0.8636691 +0.002418731 0.1862481 0.8636691 +0.005155668 0.1862481 0.8636691 +0.009080105 0.1862481 0.8636691 +0.01434988 0.1862481 0.8636691 +0.02107202 0.1862481 0.8636691 +0.02934285 0.1862481 0.8636691 +0.03925039 0.1862481 0.8636691 +0.05087609 0.1862481 0.8636691 +0.06429595 0.1862481 0.8636691 +0.07958143 0.1862481 0.8636691 +0.0968001 0.1862481 0.8636691 +0.1160161 0.1862481 0.8636691 +0.1372908 0.1862481 0.8636691 +0.1606827 0.1862481 0.8636691 +0.1862481 0.1862481 0.8636691 +0.2140411 0.1862481 0.8636691 +0.2441142 0.1862481 0.8636691 +0.2765176 0.1862481 0.8636691 +0.3113005 0.1862481 0.8636691 +0.3485102 0.1862481 0.8636691 +0.388193 0.1862481 0.8636691 +0.4303934 0.1862481 0.8636691 +0.4751555 0.1862481 0.8636691 +0.5225216 0.1862481 0.8636691 +0.5725335 0.1862481 0.8636691 +0.6252316 0.1862481 0.8636691 +0.6806558 0.1862481 0.8636691 +0.7388448 0.1862481 0.8636691 +0.7998369 0.1862481 0.8636691 +0.8636691 0.1862481 0.8636691 +0.9303782 0.1862481 0.8636691 +1 0.1862481 0.8636691 +0 0.2140411 0.8636691 +0.002418731 0.2140411 0.8636691 +0.005155668 0.2140411 0.8636691 +0.009080105 0.2140411 0.8636691 +0.01434988 0.2140411 0.8636691 +0.02107202 0.2140411 0.8636691 +0.02934285 0.2140411 0.8636691 +0.03925039 0.2140411 0.8636691 +0.05087609 0.2140411 0.8636691 +0.06429595 0.2140411 0.8636691 +0.07958143 0.2140411 0.8636691 +0.0968001 0.2140411 0.8636691 +0.1160161 0.2140411 0.8636691 +0.1372908 0.2140411 0.8636691 +0.1606827 0.2140411 0.8636691 +0.1862481 0.2140411 0.8636691 +0.2140411 0.2140411 0.8636691 +0.2441142 0.2140411 0.8636691 +0.2765176 0.2140411 0.8636691 +0.3113005 0.2140411 0.8636691 +0.3485102 0.2140411 0.8636691 +0.388193 0.2140411 0.8636691 +0.4303934 0.2140411 0.8636691 +0.4751555 0.2140411 0.8636691 +0.5225216 0.2140411 0.8636691 +0.5725335 0.2140411 0.8636691 +0.6252316 0.2140411 0.8636691 +0.6806558 0.2140411 0.8636691 +0.7388448 0.2140411 0.8636691 +0.7998369 0.2140411 0.8636691 +0.8636691 0.2140411 0.8636691 +0.9303782 0.2140411 0.8636691 +1 0.2140411 0.8636691 +0 0.2441142 0.8636691 +0.002418731 0.2441142 0.8636691 +0.005155668 0.2441142 0.8636691 +0.009080105 0.2441142 0.8636691 +0.01434988 0.2441142 0.8636691 +0.02107202 0.2441142 0.8636691 +0.02934285 0.2441142 0.8636691 +0.03925039 0.2441142 0.8636691 +0.05087609 0.2441142 0.8636691 +0.06429595 0.2441142 0.8636691 +0.07958143 0.2441142 0.8636691 +0.0968001 0.2441142 0.8636691 +0.1160161 0.2441142 0.8636691 +0.1372908 0.2441142 0.8636691 +0.1606827 0.2441142 0.8636691 +0.1862481 0.2441142 0.8636691 +0.2140411 0.2441142 0.8636691 +0.2441142 0.2441142 0.8636691 +0.2765176 0.2441142 0.8636691 +0.3113005 0.2441142 0.8636691 +0.3485102 0.2441142 0.8636691 +0.388193 0.2441142 0.8636691 +0.4303934 0.2441142 0.8636691 +0.4751555 0.2441142 0.8636691 +0.5225216 0.2441142 0.8636691 +0.5725335 0.2441142 0.8636691 +0.6252316 0.2441142 0.8636691 +0.6806558 0.2441142 0.8636691 +0.7388448 0.2441142 0.8636691 +0.7998369 0.2441142 0.8636691 +0.8636691 0.2441142 0.8636691 +0.9303782 0.2441142 0.8636691 +1 0.2441142 0.8636691 +0 0.2765176 0.8636691 +0.002418731 0.2765176 0.8636691 +0.005155668 0.2765176 0.8636691 +0.009080105 0.2765176 0.8636691 +0.01434988 0.2765176 0.8636691 +0.02107202 0.2765176 0.8636691 +0.02934285 0.2765176 0.8636691 +0.03925039 0.2765176 0.8636691 +0.05087609 0.2765176 0.8636691 +0.06429595 0.2765176 0.8636691 +0.07958143 0.2765176 0.8636691 +0.0968001 0.2765176 0.8636691 +0.1160161 0.2765176 0.8636691 +0.1372908 0.2765176 0.8636691 +0.1606827 0.2765176 0.8636691 +0.1862481 0.2765176 0.8636691 +0.2140411 0.2765176 0.8636691 +0.2441142 0.2765176 0.8636691 +0.2765176 0.2765176 0.8636691 +0.3113005 0.2765176 0.8636691 +0.3485102 0.2765176 0.8636691 +0.388193 0.2765176 0.8636691 +0.4303934 0.2765176 0.8636691 +0.4751555 0.2765176 0.8636691 +0.5225216 0.2765176 0.8636691 +0.5725335 0.2765176 0.8636691 +0.6252316 0.2765176 0.8636691 +0.6806558 0.2765176 0.8636691 +0.7388448 0.2765176 0.8636691 +0.7998369 0.2765176 0.8636691 +0.8636691 0.2765176 0.8636691 +0.9303782 0.2765176 0.8636691 +1 0.2765176 0.8636691 +0 0.3113005 0.8636691 +0.002418731 0.3113005 0.8636691 +0.005155668 0.3113005 0.8636691 +0.009080105 0.3113005 0.8636691 +0.01434988 0.3113005 0.8636691 +0.02107202 0.3113005 0.8636691 +0.02934285 0.3113005 0.8636691 +0.03925039 0.3113005 0.8636691 +0.05087609 0.3113005 0.8636691 +0.06429595 0.3113005 0.8636691 +0.07958143 0.3113005 0.8636691 +0.0968001 0.3113005 0.8636691 +0.1160161 0.3113005 0.8636691 +0.1372908 0.3113005 0.8636691 +0.1606827 0.3113005 0.8636691 +0.1862481 0.3113005 0.8636691 +0.2140411 0.3113005 0.8636691 +0.2441142 0.3113005 0.8636691 +0.2765176 0.3113005 0.8636691 +0.3113005 0.3113005 0.8636691 +0.3485102 0.3113005 0.8636691 +0.388193 0.3113005 0.8636691 +0.4303934 0.3113005 0.8636691 +0.4751555 0.3113005 0.8636691 +0.5225216 0.3113005 0.8636691 +0.5725335 0.3113005 0.8636691 +0.6252316 0.3113005 0.8636691 +0.6806558 0.3113005 0.8636691 +0.7388448 0.3113005 0.8636691 +0.7998369 0.3113005 0.8636691 +0.8636691 0.3113005 0.8636691 +0.9303782 0.3113005 0.8636691 +1 0.3113005 0.8636691 +0 0.3485102 0.8636691 +0.002418731 0.3485102 0.8636691 +0.005155668 0.3485102 0.8636691 +0.009080105 0.3485102 0.8636691 +0.01434988 0.3485102 0.8636691 +0.02107202 0.3485102 0.8636691 +0.02934285 0.3485102 0.8636691 +0.03925039 0.3485102 0.8636691 +0.05087609 0.3485102 0.8636691 +0.06429595 0.3485102 0.8636691 +0.07958143 0.3485102 0.8636691 +0.0968001 0.3485102 0.8636691 +0.1160161 0.3485102 0.8636691 +0.1372908 0.3485102 0.8636691 +0.1606827 0.3485102 0.8636691 +0.1862481 0.3485102 0.8636691 +0.2140411 0.3485102 0.8636691 +0.2441142 0.3485102 0.8636691 +0.2765176 0.3485102 0.8636691 +0.3113005 0.3485102 0.8636691 +0.3485102 0.3485102 0.8636691 +0.388193 0.3485102 0.8636691 +0.4303934 0.3485102 0.8636691 +0.4751555 0.3485102 0.8636691 +0.5225216 0.3485102 0.8636691 +0.5725335 0.3485102 0.8636691 +0.6252316 0.3485102 0.8636691 +0.6806558 0.3485102 0.8636691 +0.7388448 0.3485102 0.8636691 +0.7998369 0.3485102 0.8636691 +0.8636691 0.3485102 0.8636691 +0.9303782 0.3485102 0.8636691 +1 0.3485102 0.8636691 +0 0.388193 0.8636691 +0.002418731 0.388193 0.8636691 +0.005155668 0.388193 0.8636691 +0.009080105 0.388193 0.8636691 +0.01434988 0.388193 0.8636691 +0.02107202 0.388193 0.8636691 +0.02934285 0.388193 0.8636691 +0.03925039 0.388193 0.8636691 +0.05087609 0.388193 0.8636691 +0.06429595 0.388193 0.8636691 +0.07958143 0.388193 0.8636691 +0.0968001 0.388193 0.8636691 +0.1160161 0.388193 0.8636691 +0.1372908 0.388193 0.8636691 +0.1606827 0.388193 0.8636691 +0.1862481 0.388193 0.8636691 +0.2140411 0.388193 0.8636691 +0.2441142 0.388193 0.8636691 +0.2765176 0.388193 0.8636691 +0.3113005 0.388193 0.8636691 +0.3485102 0.388193 0.8636691 +0.388193 0.388193 0.8636691 +0.4303934 0.388193 0.8636691 +0.4751555 0.388193 0.8636691 +0.5225216 0.388193 0.8636691 +0.5725335 0.388193 0.8636691 +0.6252316 0.388193 0.8636691 +0.6806558 0.388193 0.8636691 +0.7388448 0.388193 0.8636691 +0.7998369 0.388193 0.8636691 +0.8636691 0.388193 0.8636691 +0.9303782 0.388193 0.8636691 +1 0.388193 0.8636691 +0 0.4303934 0.8636691 +0.002418731 0.4303934 0.8636691 +0.005155668 0.4303934 0.8636691 +0.009080105 0.4303934 0.8636691 +0.01434988 0.4303934 0.8636691 +0.02107202 0.4303934 0.8636691 +0.02934285 0.4303934 0.8636691 +0.03925039 0.4303934 0.8636691 +0.05087609 0.4303934 0.8636691 +0.06429595 0.4303934 0.8636691 +0.07958143 0.4303934 0.8636691 +0.0968001 0.4303934 0.8636691 +0.1160161 0.4303934 0.8636691 +0.1372908 0.4303934 0.8636691 +0.1606827 0.4303934 0.8636691 +0.1862481 0.4303934 0.8636691 +0.2140411 0.4303934 0.8636691 +0.2441142 0.4303934 0.8636691 +0.2765176 0.4303934 0.8636691 +0.3113005 0.4303934 0.8636691 +0.3485102 0.4303934 0.8636691 +0.388193 0.4303934 0.8636691 +0.4303934 0.4303934 0.8636691 +0.4751555 0.4303934 0.8636691 +0.5225216 0.4303934 0.8636691 +0.5725335 0.4303934 0.8636691 +0.6252316 0.4303934 0.8636691 +0.6806558 0.4303934 0.8636691 +0.7388448 0.4303934 0.8636691 +0.7998369 0.4303934 0.8636691 +0.8636691 0.4303934 0.8636691 +0.9303782 0.4303934 0.8636691 +1 0.4303934 0.8636691 +0 0.4751555 0.8636691 +0.002418731 0.4751555 0.8636691 +0.005155668 0.4751555 0.8636691 +0.009080105 0.4751555 0.8636691 +0.01434988 0.4751555 0.8636691 +0.02107202 0.4751555 0.8636691 +0.02934285 0.4751555 0.8636691 +0.03925039 0.4751555 0.8636691 +0.05087609 0.4751555 0.8636691 +0.06429595 0.4751555 0.8636691 +0.07958143 0.4751555 0.8636691 +0.0968001 0.4751555 0.8636691 +0.1160161 0.4751555 0.8636691 +0.1372908 0.4751555 0.8636691 +0.1606827 0.4751555 0.8636691 +0.1862481 0.4751555 0.8636691 +0.2140411 0.4751555 0.8636691 +0.2441142 0.4751555 0.8636691 +0.2765176 0.4751555 0.8636691 +0.3113005 0.4751555 0.8636691 +0.3485102 0.4751555 0.8636691 +0.388193 0.4751555 0.8636691 +0.4303934 0.4751555 0.8636691 +0.4751555 0.4751555 0.8636691 +0.5225216 0.4751555 0.8636691 +0.5725335 0.4751555 0.8636691 +0.6252316 0.4751555 0.8636691 +0.6806558 0.4751555 0.8636691 +0.7388448 0.4751555 0.8636691 +0.7998369 0.4751555 0.8636691 +0.8636691 0.4751555 0.8636691 +0.9303782 0.4751555 0.8636691 +1 0.4751555 0.8636691 +0 0.5225216 0.8636691 +0.002418731 0.5225216 0.8636691 +0.005155668 0.5225216 0.8636691 +0.009080105 0.5225216 0.8636691 +0.01434988 0.5225216 0.8636691 +0.02107202 0.5225216 0.8636691 +0.02934285 0.5225216 0.8636691 +0.03925039 0.5225216 0.8636691 +0.05087609 0.5225216 0.8636691 +0.06429595 0.5225216 0.8636691 +0.07958143 0.5225216 0.8636691 +0.0968001 0.5225216 0.8636691 +0.1160161 0.5225216 0.8636691 +0.1372908 0.5225216 0.8636691 +0.1606827 0.5225216 0.8636691 +0.1862481 0.5225216 0.8636691 +0.2140411 0.5225216 0.8636691 +0.2441142 0.5225216 0.8636691 +0.2765176 0.5225216 0.8636691 +0.3113005 0.5225216 0.8636691 +0.3485102 0.5225216 0.8636691 +0.388193 0.5225216 0.8636691 +0.4303934 0.5225216 0.8636691 +0.4751555 0.5225216 0.8636691 +0.5225216 0.5225216 0.8636691 +0.5725335 0.5225216 0.8636691 +0.6252316 0.5225216 0.8636691 +0.6806558 0.5225216 0.8636691 +0.7388448 0.5225216 0.8636691 +0.7998369 0.5225216 0.8636691 +0.8636691 0.5225216 0.8636691 +0.9303782 0.5225216 0.8636691 +1 0.5225216 0.8636691 +0 0.5725335 0.8636691 +0.002418731 0.5725335 0.8636691 +0.005155668 0.5725335 0.8636691 +0.009080105 0.5725335 0.8636691 +0.01434988 0.5725335 0.8636691 +0.02107202 0.5725335 0.8636691 +0.02934285 0.5725335 0.8636691 +0.03925039 0.5725335 0.8636691 +0.05087609 0.5725335 0.8636691 +0.06429595 0.5725335 0.8636691 +0.07958143 0.5725335 0.8636691 +0.0968001 0.5725335 0.8636691 +0.1160161 0.5725335 0.8636691 +0.1372908 0.5725335 0.8636691 +0.1606827 0.5725335 0.8636691 +0.1862481 0.5725335 0.8636691 +0.2140411 0.5725335 0.8636691 +0.2441142 0.5725335 0.8636691 +0.2765176 0.5725335 0.8636691 +0.3113005 0.5725335 0.8636691 +0.3485102 0.5725335 0.8636691 +0.388193 0.5725335 0.8636691 +0.4303934 0.5725335 0.8636691 +0.4751555 0.5725335 0.8636691 +0.5225216 0.5725335 0.8636691 +0.5725335 0.5725335 0.8636691 +0.6252316 0.5725335 0.8636691 +0.6806558 0.5725335 0.8636691 +0.7388448 0.5725335 0.8636691 +0.7998369 0.5725335 0.8636691 +0.8636691 0.5725335 0.8636691 +0.9303782 0.5725335 0.8636691 +1 0.5725335 0.8636691 +0 0.6252316 0.8636691 +0.002418731 0.6252316 0.8636691 +0.005155668 0.6252316 0.8636691 +0.009080105 0.6252316 0.8636691 +0.01434988 0.6252316 0.8636691 +0.02107202 0.6252316 0.8636691 +0.02934285 0.6252316 0.8636691 +0.03925039 0.6252316 0.8636691 +0.05087609 0.6252316 0.8636691 +0.06429595 0.6252316 0.8636691 +0.07958143 0.6252316 0.8636691 +0.0968001 0.6252316 0.8636691 +0.1160161 0.6252316 0.8636691 +0.1372908 0.6252316 0.8636691 +0.1606827 0.6252316 0.8636691 +0.1862481 0.6252316 0.8636691 +0.2140411 0.6252316 0.8636691 +0.2441142 0.6252316 0.8636691 +0.2765176 0.6252316 0.8636691 +0.3113005 0.6252316 0.8636691 +0.3485102 0.6252316 0.8636691 +0.388193 0.6252316 0.8636691 +0.4303934 0.6252316 0.8636691 +0.4751555 0.6252316 0.8636691 +0.5225216 0.6252316 0.8636691 +0.5725335 0.6252316 0.8636691 +0.6252316 0.6252316 0.8636691 +0.6806558 0.6252316 0.8636691 +0.7388448 0.6252316 0.8636691 +0.7998369 0.6252316 0.8636691 +0.8636691 0.6252316 0.8636691 +0.9303782 0.6252316 0.8636691 +1 0.6252316 0.8636691 +0 0.6806558 0.8636691 +0.002418731 0.6806558 0.8636691 +0.005155668 0.6806558 0.8636691 +0.009080105 0.6806558 0.8636691 +0.01434988 0.6806558 0.8636691 +0.02107202 0.6806558 0.8636691 +0.02934285 0.6806558 0.8636691 +0.03925039 0.6806558 0.8636691 +0.05087609 0.6806558 0.8636691 +0.06429595 0.6806558 0.8636691 +0.07958143 0.6806558 0.8636691 +0.0968001 0.6806558 0.8636691 +0.1160161 0.6806558 0.8636691 +0.1372908 0.6806558 0.8636691 +0.1606827 0.6806558 0.8636691 +0.1862481 0.6806558 0.8636691 +0.2140411 0.6806558 0.8636691 +0.2441142 0.6806558 0.8636691 +0.2765176 0.6806558 0.8636691 +0.3113005 0.6806558 0.8636691 +0.3485102 0.6806558 0.8636691 +0.388193 0.6806558 0.8636691 +0.4303934 0.6806558 0.8636691 +0.4751555 0.6806558 0.8636691 +0.5225216 0.6806558 0.8636691 +0.5725335 0.6806558 0.8636691 +0.6252316 0.6806558 0.8636691 +0.6806558 0.6806558 0.8636691 +0.7388448 0.6806558 0.8636691 +0.7998369 0.6806558 0.8636691 +0.8636691 0.6806558 0.8636691 +0.9303782 0.6806558 0.8636691 +1 0.6806558 0.8636691 +0 0.7388448 0.8636691 +0.002418731 0.7388448 0.8636691 +0.005155668 0.7388448 0.8636691 +0.009080105 0.7388448 0.8636691 +0.01434988 0.7388448 0.8636691 +0.02107202 0.7388448 0.8636691 +0.02934285 0.7388448 0.8636691 +0.03925039 0.7388448 0.8636691 +0.05087609 0.7388448 0.8636691 +0.06429595 0.7388448 0.8636691 +0.07958143 0.7388448 0.8636691 +0.0968001 0.7388448 0.8636691 +0.1160161 0.7388448 0.8636691 +0.1372908 0.7388448 0.8636691 +0.1606827 0.7388448 0.8636691 +0.1862481 0.7388448 0.8636691 +0.2140411 0.7388448 0.8636691 +0.2441142 0.7388448 0.8636691 +0.2765176 0.7388448 0.8636691 +0.3113005 0.7388448 0.8636691 +0.3485102 0.7388448 0.8636691 +0.388193 0.7388448 0.8636691 +0.4303934 0.7388448 0.8636691 +0.4751555 0.7388448 0.8636691 +0.5225216 0.7388448 0.8636691 +0.5725335 0.7388448 0.8636691 +0.6252316 0.7388448 0.8636691 +0.6806558 0.7388448 0.8636691 +0.7388448 0.7388448 0.8636691 +0.7998369 0.7388448 0.8636691 +0.8636691 0.7388448 0.8636691 +0.9303782 0.7388448 0.8636691 +1 0.7388448 0.8636691 +0 0.7998369 0.8636691 +0.002418731 0.7998369 0.8636691 +0.005155668 0.7998369 0.8636691 +0.009080105 0.7998369 0.8636691 +0.01434988 0.7998369 0.8636691 +0.02107202 0.7998369 0.8636691 +0.02934285 0.7998369 0.8636691 +0.03925039 0.7998369 0.8636691 +0.05087609 0.7998369 0.8636691 +0.06429595 0.7998369 0.8636691 +0.07958143 0.7998369 0.8636691 +0.0968001 0.7998369 0.8636691 +0.1160161 0.7998369 0.8636691 +0.1372908 0.7998369 0.8636691 +0.1606827 0.7998369 0.8636691 +0.1862481 0.7998369 0.8636691 +0.2140411 0.7998369 0.8636691 +0.2441142 0.7998369 0.8636691 +0.2765176 0.7998369 0.8636691 +0.3113005 0.7998369 0.8636691 +0.3485102 0.7998369 0.8636691 +0.388193 0.7998369 0.8636691 +0.4303934 0.7998369 0.8636691 +0.4751555 0.7998369 0.8636691 +0.5225216 0.7998369 0.8636691 +0.5725335 0.7998369 0.8636691 +0.6252316 0.7998369 0.8636691 +0.6806558 0.7998369 0.8636691 +0.7388448 0.7998369 0.8636691 +0.7998369 0.7998369 0.8636691 +0.8636691 0.7998369 0.8636691 +0.9303782 0.7998369 0.8636691 +1 0.7998369 0.8636691 +0 0.8636691 0.8636691 +0.002418731 0.8636691 0.8636691 +0.005155668 0.8636691 0.8636691 +0.009080105 0.8636691 0.8636691 +0.01434988 0.8636691 0.8636691 +0.02107202 0.8636691 0.8636691 +0.02934285 0.8636691 0.8636691 +0.03925039 0.8636691 0.8636691 +0.05087609 0.8636691 0.8636691 +0.06429595 0.8636691 0.8636691 +0.07958143 0.8636691 0.8636691 +0.0968001 0.8636691 0.8636691 +0.1160161 0.8636691 0.8636691 +0.1372908 0.8636691 0.8636691 +0.1606827 0.8636691 0.8636691 +0.1862481 0.8636691 0.8636691 +0.2140411 0.8636691 0.8636691 +0.2441142 0.8636691 0.8636691 +0.2765176 0.8636691 0.8636691 +0.3113005 0.8636691 0.8636691 +0.3485102 0.8636691 0.8636691 +0.388193 0.8636691 0.8636691 +0.4303934 0.8636691 0.8636691 +0.4751555 0.8636691 0.8636691 +0.5225216 0.8636691 0.8636691 +0.5725335 0.8636691 0.8636691 +0.6252316 0.8636691 0.8636691 +0.6806558 0.8636691 0.8636691 +0.7388448 0.8636691 0.8636691 +0.7998369 0.8636691 0.8636691 +0.8636691 0.8636691 0.8636691 +0.9303782 0.8636691 0.8636691 +1 0.8636691 0.8636691 +0 0.9303782 0.8636691 +0.002418731 0.9303782 0.8636691 +0.005155668 0.9303782 0.8636691 +0.009080105 0.9303782 0.8636691 +0.01434988 0.9303782 0.8636691 +0.02107202 0.9303782 0.8636691 +0.02934285 0.9303782 0.8636691 +0.03925039 0.9303782 0.8636691 +0.05087609 0.9303782 0.8636691 +0.06429595 0.9303782 0.8636691 +0.07958143 0.9303782 0.8636691 +0.0968001 0.9303782 0.8636691 +0.1160161 0.9303782 0.8636691 +0.1372908 0.9303782 0.8636691 +0.1606827 0.9303782 0.8636691 +0.1862481 0.9303782 0.8636691 +0.2140411 0.9303782 0.8636691 +0.2441142 0.9303782 0.8636691 +0.2765176 0.9303782 0.8636691 +0.3113005 0.9303782 0.8636691 +0.3485102 0.9303782 0.8636691 +0.388193 0.9303782 0.8636691 +0.4303934 0.9303782 0.8636691 +0.4751555 0.9303782 0.8636691 +0.5225216 0.9303782 0.8636691 +0.5725335 0.9303782 0.8636691 +0.6252316 0.9303782 0.8636691 +0.6806558 0.9303782 0.8636691 +0.7388448 0.9303782 0.8636691 +0.7998369 0.9303782 0.8636691 +0.8636691 0.9303782 0.8636691 +0.9303782 0.9303782 0.8636691 +1 0.9303782 0.8636691 +0 1 0.8636691 +0.002418731 1 0.8636691 +0.005155668 1 0.8636691 +0.009080105 1 0.8636691 +0.01434988 1 0.8636691 +0.02107202 1 0.8636691 +0.02934285 1 0.8636691 +0.03925039 1 0.8636691 +0.05087609 1 0.8636691 +0.06429595 1 0.8636691 +0.07958143 1 0.8636691 +0.0968001 1 0.8636691 +0.1160161 1 0.8636691 +0.1372908 1 0.8636691 +0.1606827 1 0.8636691 +0.1862481 1 0.8636691 +0.2140411 1 0.8636691 +0.2441142 1 0.8636691 +0.2765176 1 0.8636691 +0.3113005 1 0.8636691 +0.3485102 1 0.8636691 +0.388193 1 0.8636691 +0.4303934 1 0.8636691 +0.4751555 1 0.8636691 +0.5225216 1 0.8636691 +0.5725335 1 0.8636691 +0.6252316 1 0.8636691 +0.6806558 1 0.8636691 +0.7388448 1 0.8636691 +0.7998369 1 0.8636691 +0.8636691 1 0.8636691 +0.9303782 1 0.8636691 +1 1 0.8636691 +0 0 0.9303782 +0.002418731 0 0.9303782 +0.005155668 0 0.9303782 +0.009080105 0 0.9303782 +0.01434988 0 0.9303782 +0.02107202 0 0.9303782 +0.02934285 0 0.9303782 +0.03925039 0 0.9303782 +0.05087609 0 0.9303782 +0.06429595 0 0.9303782 +0.07958143 0 0.9303782 +0.0968001 0 0.9303782 +0.1160161 0 0.9303782 +0.1372908 0 0.9303782 +0.1606827 0 0.9303782 +0.1862481 0 0.9303782 +0.2140411 0 0.9303782 +0.2441142 0 0.9303782 +0.2765176 0 0.9303782 +0.3113005 0 0.9303782 +0.3485102 0 0.9303782 +0.388193 0 0.9303782 +0.4303934 0 0.9303782 +0.4751555 0 0.9303782 +0.5225216 0 0.9303782 +0.5725335 0 0.9303782 +0.6252316 0 0.9303782 +0.6806558 0 0.9303782 +0.7388448 0 0.9303782 +0.7998369 0 0.9303782 +0.8636691 0 0.9303782 +0.9303782 0 0.9303782 +1 0 0.9303782 +0 0.002418731 0.9303782 +0.002418731 0.002418731 0.9303782 +0.005155668 0.002418731 0.9303782 +0.009080105 0.002418731 0.9303782 +0.01434988 0.002418731 0.9303782 +0.02107202 0.002418731 0.9303782 +0.02934285 0.002418731 0.9303782 +0.03925039 0.002418731 0.9303782 +0.05087609 0.002418731 0.9303782 +0.06429595 0.002418731 0.9303782 +0.07958143 0.002418731 0.9303782 +0.0968001 0.002418731 0.9303782 +0.1160161 0.002418731 0.9303782 +0.1372908 0.002418731 0.9303782 +0.1606827 0.002418731 0.9303782 +0.1862481 0.002418731 0.9303782 +0.2140411 0.002418731 0.9303782 +0.2441142 0.002418731 0.9303782 +0.2765176 0.002418731 0.9303782 +0.3113005 0.002418731 0.9303782 +0.3485102 0.002418731 0.9303782 +0.388193 0.002418731 0.9303782 +0.4303934 0.002418731 0.9303782 +0.4751555 0.002418731 0.9303782 +0.5225216 0.002418731 0.9303782 +0.5725335 0.002418731 0.9303782 +0.6252316 0.002418731 0.9303782 +0.6806558 0.002418731 0.9303782 +0.7388448 0.002418731 0.9303782 +0.7998369 0.002418731 0.9303782 +0.8636691 0.002418731 0.9303782 +0.9303782 0.002418731 0.9303782 +1 0.002418731 0.9303782 +0 0.005155668 0.9303782 +0.002418731 0.005155668 0.9303782 +0.005155668 0.005155668 0.9303782 +0.009080105 0.005155668 0.9303782 +0.01434988 0.005155668 0.9303782 +0.02107202 0.005155668 0.9303782 +0.02934285 0.005155668 0.9303782 +0.03925039 0.005155668 0.9303782 +0.05087609 0.005155668 0.9303782 +0.06429595 0.005155668 0.9303782 +0.07958143 0.005155668 0.9303782 +0.0968001 0.005155668 0.9303782 +0.1160161 0.005155668 0.9303782 +0.1372908 0.005155668 0.9303782 +0.1606827 0.005155668 0.9303782 +0.1862481 0.005155668 0.9303782 +0.2140411 0.005155668 0.9303782 +0.2441142 0.005155668 0.9303782 +0.2765176 0.005155668 0.9303782 +0.3113005 0.005155668 0.9303782 +0.3485102 0.005155668 0.9303782 +0.388193 0.005155668 0.9303782 +0.4303934 0.005155668 0.9303782 +0.4751555 0.005155668 0.9303782 +0.5225216 0.005155668 0.9303782 +0.5725335 0.005155668 0.9303782 +0.6252316 0.005155668 0.9303782 +0.6806558 0.005155668 0.9303782 +0.7388448 0.005155668 0.9303782 +0.7998369 0.005155668 0.9303782 +0.8636691 0.005155668 0.9303782 +0.9303782 0.005155668 0.9303782 +1 0.005155668 0.9303782 +0 0.009080105 0.9303782 +0.002418731 0.009080105 0.9303782 +0.005155668 0.009080105 0.9303782 +0.009080105 0.009080105 0.9303782 +0.01434988 0.009080105 0.9303782 +0.02107202 0.009080105 0.9303782 +0.02934285 0.009080105 0.9303782 +0.03925039 0.009080105 0.9303782 +0.05087609 0.009080105 0.9303782 +0.06429595 0.009080105 0.9303782 +0.07958143 0.009080105 0.9303782 +0.0968001 0.009080105 0.9303782 +0.1160161 0.009080105 0.9303782 +0.1372908 0.009080105 0.9303782 +0.1606827 0.009080105 0.9303782 +0.1862481 0.009080105 0.9303782 +0.2140411 0.009080105 0.9303782 +0.2441142 0.009080105 0.9303782 +0.2765176 0.009080105 0.9303782 +0.3113005 0.009080105 0.9303782 +0.3485102 0.009080105 0.9303782 +0.388193 0.009080105 0.9303782 +0.4303934 0.009080105 0.9303782 +0.4751555 0.009080105 0.9303782 +0.5225216 0.009080105 0.9303782 +0.5725335 0.009080105 0.9303782 +0.6252316 0.009080105 0.9303782 +0.6806558 0.009080105 0.9303782 +0.7388448 0.009080105 0.9303782 +0.7998369 0.009080105 0.9303782 +0.8636691 0.009080105 0.9303782 +0.9303782 0.009080105 0.9303782 +1 0.009080105 0.9303782 +0 0.01434988 0.9303782 +0.002418731 0.01434988 0.9303782 +0.005155668 0.01434988 0.9303782 +0.009080105 0.01434988 0.9303782 +0.01434988 0.01434988 0.9303782 +0.02107202 0.01434988 0.9303782 +0.02934285 0.01434988 0.9303782 +0.03925039 0.01434988 0.9303782 +0.05087609 0.01434988 0.9303782 +0.06429595 0.01434988 0.9303782 +0.07958143 0.01434988 0.9303782 +0.0968001 0.01434988 0.9303782 +0.1160161 0.01434988 0.9303782 +0.1372908 0.01434988 0.9303782 +0.1606827 0.01434988 0.9303782 +0.1862481 0.01434988 0.9303782 +0.2140411 0.01434988 0.9303782 +0.2441142 0.01434988 0.9303782 +0.2765176 0.01434988 0.9303782 +0.3113005 0.01434988 0.9303782 +0.3485102 0.01434988 0.9303782 +0.388193 0.01434988 0.9303782 +0.4303934 0.01434988 0.9303782 +0.4751555 0.01434988 0.9303782 +0.5225216 0.01434988 0.9303782 +0.5725335 0.01434988 0.9303782 +0.6252316 0.01434988 0.9303782 +0.6806558 0.01434988 0.9303782 +0.7388448 0.01434988 0.9303782 +0.7998369 0.01434988 0.9303782 +0.8636691 0.01434988 0.9303782 +0.9303782 0.01434988 0.9303782 +1 0.01434988 0.9303782 +0 0.02107202 0.9303782 +0.002418731 0.02107202 0.9303782 +0.005155668 0.02107202 0.9303782 +0.009080105 0.02107202 0.9303782 +0.01434988 0.02107202 0.9303782 +0.02107202 0.02107202 0.9303782 +0.02934285 0.02107202 0.9303782 +0.03925039 0.02107202 0.9303782 +0.05087609 0.02107202 0.9303782 +0.06429595 0.02107202 0.9303782 +0.07958143 0.02107202 0.9303782 +0.0968001 0.02107202 0.9303782 +0.1160161 0.02107202 0.9303782 +0.1372908 0.02107202 0.9303782 +0.1606827 0.02107202 0.9303782 +0.1862481 0.02107202 0.9303782 +0.2140411 0.02107202 0.9303782 +0.2441142 0.02107202 0.9303782 +0.2765176 0.02107202 0.9303782 +0.3113005 0.02107202 0.9303782 +0.3485102 0.02107202 0.9303782 +0.388193 0.02107202 0.9303782 +0.4303934 0.02107202 0.9303782 +0.4751555 0.02107202 0.9303782 +0.5225216 0.02107202 0.9303782 +0.5725335 0.02107202 0.9303782 +0.6252316 0.02107202 0.9303782 +0.6806558 0.02107202 0.9303782 +0.7388448 0.02107202 0.9303782 +0.7998369 0.02107202 0.9303782 +0.8636691 0.02107202 0.9303782 +0.9303782 0.02107202 0.9303782 +1 0.02107202 0.9303782 +0 0.02934285 0.9303782 +0.002418731 0.02934285 0.9303782 +0.005155668 0.02934285 0.9303782 +0.009080105 0.02934285 0.9303782 +0.01434988 0.02934285 0.9303782 +0.02107202 0.02934285 0.9303782 +0.02934285 0.02934285 0.9303782 +0.03925039 0.02934285 0.9303782 +0.05087609 0.02934285 0.9303782 +0.06429595 0.02934285 0.9303782 +0.07958143 0.02934285 0.9303782 +0.0968001 0.02934285 0.9303782 +0.1160161 0.02934285 0.9303782 +0.1372908 0.02934285 0.9303782 +0.1606827 0.02934285 0.9303782 +0.1862481 0.02934285 0.9303782 +0.2140411 0.02934285 0.9303782 +0.2441142 0.02934285 0.9303782 +0.2765176 0.02934285 0.9303782 +0.3113005 0.02934285 0.9303782 +0.3485102 0.02934285 0.9303782 +0.388193 0.02934285 0.9303782 +0.4303934 0.02934285 0.9303782 +0.4751555 0.02934285 0.9303782 +0.5225216 0.02934285 0.9303782 +0.5725335 0.02934285 0.9303782 +0.6252316 0.02934285 0.9303782 +0.6806558 0.02934285 0.9303782 +0.7388448 0.02934285 0.9303782 +0.7998369 0.02934285 0.9303782 +0.8636691 0.02934285 0.9303782 +0.9303782 0.02934285 0.9303782 +1 0.02934285 0.9303782 +0 0.03925039 0.9303782 +0.002418731 0.03925039 0.9303782 +0.005155668 0.03925039 0.9303782 +0.009080105 0.03925039 0.9303782 +0.01434988 0.03925039 0.9303782 +0.02107202 0.03925039 0.9303782 +0.02934285 0.03925039 0.9303782 +0.03925039 0.03925039 0.9303782 +0.05087609 0.03925039 0.9303782 +0.06429595 0.03925039 0.9303782 +0.07958143 0.03925039 0.9303782 +0.0968001 0.03925039 0.9303782 +0.1160161 0.03925039 0.9303782 +0.1372908 0.03925039 0.9303782 +0.1606827 0.03925039 0.9303782 +0.1862481 0.03925039 0.9303782 +0.2140411 0.03925039 0.9303782 +0.2441142 0.03925039 0.9303782 +0.2765176 0.03925039 0.9303782 +0.3113005 0.03925039 0.9303782 +0.3485102 0.03925039 0.9303782 +0.388193 0.03925039 0.9303782 +0.4303934 0.03925039 0.9303782 +0.4751555 0.03925039 0.9303782 +0.5225216 0.03925039 0.9303782 +0.5725335 0.03925039 0.9303782 +0.6252316 0.03925039 0.9303782 +0.6806558 0.03925039 0.9303782 +0.7388448 0.03925039 0.9303782 +0.7998369 0.03925039 0.9303782 +0.8636691 0.03925039 0.9303782 +0.9303782 0.03925039 0.9303782 +1 0.03925039 0.9303782 +0 0.05087609 0.9303782 +0.002418731 0.05087609 0.9303782 +0.005155668 0.05087609 0.9303782 +0.009080105 0.05087609 0.9303782 +0.01434988 0.05087609 0.9303782 +0.02107202 0.05087609 0.9303782 +0.02934285 0.05087609 0.9303782 +0.03925039 0.05087609 0.9303782 +0.05087609 0.05087609 0.9303782 +0.06429595 0.05087609 0.9303782 +0.07958143 0.05087609 0.9303782 +0.0968001 0.05087609 0.9303782 +0.1160161 0.05087609 0.9303782 +0.1372908 0.05087609 0.9303782 +0.1606827 0.05087609 0.9303782 +0.1862481 0.05087609 0.9303782 +0.2140411 0.05087609 0.9303782 +0.2441142 0.05087609 0.9303782 +0.2765176 0.05087609 0.9303782 +0.3113005 0.05087609 0.9303782 +0.3485102 0.05087609 0.9303782 +0.388193 0.05087609 0.9303782 +0.4303934 0.05087609 0.9303782 +0.4751555 0.05087609 0.9303782 +0.5225216 0.05087609 0.9303782 +0.5725335 0.05087609 0.9303782 +0.6252316 0.05087609 0.9303782 +0.6806558 0.05087609 0.9303782 +0.7388448 0.05087609 0.9303782 +0.7998369 0.05087609 0.9303782 +0.8636691 0.05087609 0.9303782 +0.9303782 0.05087609 0.9303782 +1 0.05087609 0.9303782 +0 0.06429595 0.9303782 +0.002418731 0.06429595 0.9303782 +0.005155668 0.06429595 0.9303782 +0.009080105 0.06429595 0.9303782 +0.01434988 0.06429595 0.9303782 +0.02107202 0.06429595 0.9303782 +0.02934285 0.06429595 0.9303782 +0.03925039 0.06429595 0.9303782 +0.05087609 0.06429595 0.9303782 +0.06429595 0.06429595 0.9303782 +0.07958143 0.06429595 0.9303782 +0.0968001 0.06429595 0.9303782 +0.1160161 0.06429595 0.9303782 +0.1372908 0.06429595 0.9303782 +0.1606827 0.06429595 0.9303782 +0.1862481 0.06429595 0.9303782 +0.2140411 0.06429595 0.9303782 +0.2441142 0.06429595 0.9303782 +0.2765176 0.06429595 0.9303782 +0.3113005 0.06429595 0.9303782 +0.3485102 0.06429595 0.9303782 +0.388193 0.06429595 0.9303782 +0.4303934 0.06429595 0.9303782 +0.4751555 0.06429595 0.9303782 +0.5225216 0.06429595 0.9303782 +0.5725335 0.06429595 0.9303782 +0.6252316 0.06429595 0.9303782 +0.6806558 0.06429595 0.9303782 +0.7388448 0.06429595 0.9303782 +0.7998369 0.06429595 0.9303782 +0.8636691 0.06429595 0.9303782 +0.9303782 0.06429595 0.9303782 +1 0.06429595 0.9303782 +0 0.07958143 0.9303782 +0.002418731 0.07958143 0.9303782 +0.005155668 0.07958143 0.9303782 +0.009080105 0.07958143 0.9303782 +0.01434988 0.07958143 0.9303782 +0.02107202 0.07958143 0.9303782 +0.02934285 0.07958143 0.9303782 +0.03925039 0.07958143 0.9303782 +0.05087609 0.07958143 0.9303782 +0.06429595 0.07958143 0.9303782 +0.07958143 0.07958143 0.9303782 +0.0968001 0.07958143 0.9303782 +0.1160161 0.07958143 0.9303782 +0.1372908 0.07958143 0.9303782 +0.1606827 0.07958143 0.9303782 +0.1862481 0.07958143 0.9303782 +0.2140411 0.07958143 0.9303782 +0.2441142 0.07958143 0.9303782 +0.2765176 0.07958143 0.9303782 +0.3113005 0.07958143 0.9303782 +0.3485102 0.07958143 0.9303782 +0.388193 0.07958143 0.9303782 +0.4303934 0.07958143 0.9303782 +0.4751555 0.07958143 0.9303782 +0.5225216 0.07958143 0.9303782 +0.5725335 0.07958143 0.9303782 +0.6252316 0.07958143 0.9303782 +0.6806558 0.07958143 0.9303782 +0.7388448 0.07958143 0.9303782 +0.7998369 0.07958143 0.9303782 +0.8636691 0.07958143 0.9303782 +0.9303782 0.07958143 0.9303782 +1 0.07958143 0.9303782 +0 0.0968001 0.9303782 +0.002418731 0.0968001 0.9303782 +0.005155668 0.0968001 0.9303782 +0.009080105 0.0968001 0.9303782 +0.01434988 0.0968001 0.9303782 +0.02107202 0.0968001 0.9303782 +0.02934285 0.0968001 0.9303782 +0.03925039 0.0968001 0.9303782 +0.05087609 0.0968001 0.9303782 +0.06429595 0.0968001 0.9303782 +0.07958143 0.0968001 0.9303782 +0.0968001 0.0968001 0.9303782 +0.1160161 0.0968001 0.9303782 +0.1372908 0.0968001 0.9303782 +0.1606827 0.0968001 0.9303782 +0.1862481 0.0968001 0.9303782 +0.2140411 0.0968001 0.9303782 +0.2441142 0.0968001 0.9303782 +0.2765176 0.0968001 0.9303782 +0.3113005 0.0968001 0.9303782 +0.3485102 0.0968001 0.9303782 +0.388193 0.0968001 0.9303782 +0.4303934 0.0968001 0.9303782 +0.4751555 0.0968001 0.9303782 +0.5225216 0.0968001 0.9303782 +0.5725335 0.0968001 0.9303782 +0.6252316 0.0968001 0.9303782 +0.6806558 0.0968001 0.9303782 +0.7388448 0.0968001 0.9303782 +0.7998369 0.0968001 0.9303782 +0.8636691 0.0968001 0.9303782 +0.9303782 0.0968001 0.9303782 +1 0.0968001 0.9303782 +0 0.1160161 0.9303782 +0.002418731 0.1160161 0.9303782 +0.005155668 0.1160161 0.9303782 +0.009080105 0.1160161 0.9303782 +0.01434988 0.1160161 0.9303782 +0.02107202 0.1160161 0.9303782 +0.02934285 0.1160161 0.9303782 +0.03925039 0.1160161 0.9303782 +0.05087609 0.1160161 0.9303782 +0.06429595 0.1160161 0.9303782 +0.07958143 0.1160161 0.9303782 +0.0968001 0.1160161 0.9303782 +0.1160161 0.1160161 0.9303782 +0.1372908 0.1160161 0.9303782 +0.1606827 0.1160161 0.9303782 +0.1862481 0.1160161 0.9303782 +0.2140411 0.1160161 0.9303782 +0.2441142 0.1160161 0.9303782 +0.2765176 0.1160161 0.9303782 +0.3113005 0.1160161 0.9303782 +0.3485102 0.1160161 0.9303782 +0.388193 0.1160161 0.9303782 +0.4303934 0.1160161 0.9303782 +0.4751555 0.1160161 0.9303782 +0.5225216 0.1160161 0.9303782 +0.5725335 0.1160161 0.9303782 +0.6252316 0.1160161 0.9303782 +0.6806558 0.1160161 0.9303782 +0.7388448 0.1160161 0.9303782 +0.7998369 0.1160161 0.9303782 +0.8636691 0.1160161 0.9303782 +0.9303782 0.1160161 0.9303782 +1 0.1160161 0.9303782 +0 0.1372908 0.9303782 +0.002418731 0.1372908 0.9303782 +0.005155668 0.1372908 0.9303782 +0.009080105 0.1372908 0.9303782 +0.01434988 0.1372908 0.9303782 +0.02107202 0.1372908 0.9303782 +0.02934285 0.1372908 0.9303782 +0.03925039 0.1372908 0.9303782 +0.05087609 0.1372908 0.9303782 +0.06429595 0.1372908 0.9303782 +0.07958143 0.1372908 0.9303782 +0.0968001 0.1372908 0.9303782 +0.1160161 0.1372908 0.9303782 +0.1372908 0.1372908 0.9303782 +0.1606827 0.1372908 0.9303782 +0.1862481 0.1372908 0.9303782 +0.2140411 0.1372908 0.9303782 +0.2441142 0.1372908 0.9303782 +0.2765176 0.1372908 0.9303782 +0.3113005 0.1372908 0.9303782 +0.3485102 0.1372908 0.9303782 +0.388193 0.1372908 0.9303782 +0.4303934 0.1372908 0.9303782 +0.4751555 0.1372908 0.9303782 +0.5225216 0.1372908 0.9303782 +0.5725335 0.1372908 0.9303782 +0.6252316 0.1372908 0.9303782 +0.6806558 0.1372908 0.9303782 +0.7388448 0.1372908 0.9303782 +0.7998369 0.1372908 0.9303782 +0.8636691 0.1372908 0.9303782 +0.9303782 0.1372908 0.9303782 +1 0.1372908 0.9303782 +0 0.1606827 0.9303782 +0.002418731 0.1606827 0.9303782 +0.005155668 0.1606827 0.9303782 +0.009080105 0.1606827 0.9303782 +0.01434988 0.1606827 0.9303782 +0.02107202 0.1606827 0.9303782 +0.02934285 0.1606827 0.9303782 +0.03925039 0.1606827 0.9303782 +0.05087609 0.1606827 0.9303782 +0.06429595 0.1606827 0.9303782 +0.07958143 0.1606827 0.9303782 +0.0968001 0.1606827 0.9303782 +0.1160161 0.1606827 0.9303782 +0.1372908 0.1606827 0.9303782 +0.1606827 0.1606827 0.9303782 +0.1862481 0.1606827 0.9303782 +0.2140411 0.1606827 0.9303782 +0.2441142 0.1606827 0.9303782 +0.2765176 0.1606827 0.9303782 +0.3113005 0.1606827 0.9303782 +0.3485102 0.1606827 0.9303782 +0.388193 0.1606827 0.9303782 +0.4303934 0.1606827 0.9303782 +0.4751555 0.1606827 0.9303782 +0.5225216 0.1606827 0.9303782 +0.5725335 0.1606827 0.9303782 +0.6252316 0.1606827 0.9303782 +0.6806558 0.1606827 0.9303782 +0.7388448 0.1606827 0.9303782 +0.7998369 0.1606827 0.9303782 +0.8636691 0.1606827 0.9303782 +0.9303782 0.1606827 0.9303782 +1 0.1606827 0.9303782 +0 0.1862481 0.9303782 +0.002418731 0.1862481 0.9303782 +0.005155668 0.1862481 0.9303782 +0.009080105 0.1862481 0.9303782 +0.01434988 0.1862481 0.9303782 +0.02107202 0.1862481 0.9303782 +0.02934285 0.1862481 0.9303782 +0.03925039 0.1862481 0.9303782 +0.05087609 0.1862481 0.9303782 +0.06429595 0.1862481 0.9303782 +0.07958143 0.1862481 0.9303782 +0.0968001 0.1862481 0.9303782 +0.1160161 0.1862481 0.9303782 +0.1372908 0.1862481 0.9303782 +0.1606827 0.1862481 0.9303782 +0.1862481 0.1862481 0.9303782 +0.2140411 0.1862481 0.9303782 +0.2441142 0.1862481 0.9303782 +0.2765176 0.1862481 0.9303782 +0.3113005 0.1862481 0.9303782 +0.3485102 0.1862481 0.9303782 +0.388193 0.1862481 0.9303782 +0.4303934 0.1862481 0.9303782 +0.4751555 0.1862481 0.9303782 +0.5225216 0.1862481 0.9303782 +0.5725335 0.1862481 0.9303782 +0.6252316 0.1862481 0.9303782 +0.6806558 0.1862481 0.9303782 +0.7388448 0.1862481 0.9303782 +0.7998369 0.1862481 0.9303782 +0.8636691 0.1862481 0.9303782 +0.9303782 0.1862481 0.9303782 +1 0.1862481 0.9303782 +0 0.2140411 0.9303782 +0.002418731 0.2140411 0.9303782 +0.005155668 0.2140411 0.9303782 +0.009080105 0.2140411 0.9303782 +0.01434988 0.2140411 0.9303782 +0.02107202 0.2140411 0.9303782 +0.02934285 0.2140411 0.9303782 +0.03925039 0.2140411 0.9303782 +0.05087609 0.2140411 0.9303782 +0.06429595 0.2140411 0.9303782 +0.07958143 0.2140411 0.9303782 +0.0968001 0.2140411 0.9303782 +0.1160161 0.2140411 0.9303782 +0.1372908 0.2140411 0.9303782 +0.1606827 0.2140411 0.9303782 +0.1862481 0.2140411 0.9303782 +0.2140411 0.2140411 0.9303782 +0.2441142 0.2140411 0.9303782 +0.2765176 0.2140411 0.9303782 +0.3113005 0.2140411 0.9303782 +0.3485102 0.2140411 0.9303782 +0.388193 0.2140411 0.9303782 +0.4303934 0.2140411 0.9303782 +0.4751555 0.2140411 0.9303782 +0.5225216 0.2140411 0.9303782 +0.5725335 0.2140411 0.9303782 +0.6252316 0.2140411 0.9303782 +0.6806558 0.2140411 0.9303782 +0.7388448 0.2140411 0.9303782 +0.7998369 0.2140411 0.9303782 +0.8636691 0.2140411 0.9303782 +0.9303782 0.2140411 0.9303782 +1 0.2140411 0.9303782 +0 0.2441142 0.9303782 +0.002418731 0.2441142 0.9303782 +0.005155668 0.2441142 0.9303782 +0.009080105 0.2441142 0.9303782 +0.01434988 0.2441142 0.9303782 +0.02107202 0.2441142 0.9303782 +0.02934285 0.2441142 0.9303782 +0.03925039 0.2441142 0.9303782 +0.05087609 0.2441142 0.9303782 +0.06429595 0.2441142 0.9303782 +0.07958143 0.2441142 0.9303782 +0.0968001 0.2441142 0.9303782 +0.1160161 0.2441142 0.9303782 +0.1372908 0.2441142 0.9303782 +0.1606827 0.2441142 0.9303782 +0.1862481 0.2441142 0.9303782 +0.2140411 0.2441142 0.9303782 +0.2441142 0.2441142 0.9303782 +0.2765176 0.2441142 0.9303782 +0.3113005 0.2441142 0.9303782 +0.3485102 0.2441142 0.9303782 +0.388193 0.2441142 0.9303782 +0.4303934 0.2441142 0.9303782 +0.4751555 0.2441142 0.9303782 +0.5225216 0.2441142 0.9303782 +0.5725335 0.2441142 0.9303782 +0.6252316 0.2441142 0.9303782 +0.6806558 0.2441142 0.9303782 +0.7388448 0.2441142 0.9303782 +0.7998369 0.2441142 0.9303782 +0.8636691 0.2441142 0.9303782 +0.9303782 0.2441142 0.9303782 +1 0.2441142 0.9303782 +0 0.2765176 0.9303782 +0.002418731 0.2765176 0.9303782 +0.005155668 0.2765176 0.9303782 +0.009080105 0.2765176 0.9303782 +0.01434988 0.2765176 0.9303782 +0.02107202 0.2765176 0.9303782 +0.02934285 0.2765176 0.9303782 +0.03925039 0.2765176 0.9303782 +0.05087609 0.2765176 0.9303782 +0.06429595 0.2765176 0.9303782 +0.07958143 0.2765176 0.9303782 +0.0968001 0.2765176 0.9303782 +0.1160161 0.2765176 0.9303782 +0.1372908 0.2765176 0.9303782 +0.1606827 0.2765176 0.9303782 +0.1862481 0.2765176 0.9303782 +0.2140411 0.2765176 0.9303782 +0.2441142 0.2765176 0.9303782 +0.2765176 0.2765176 0.9303782 +0.3113005 0.2765176 0.9303782 +0.3485102 0.2765176 0.9303782 +0.388193 0.2765176 0.9303782 +0.4303934 0.2765176 0.9303782 +0.4751555 0.2765176 0.9303782 +0.5225216 0.2765176 0.9303782 +0.5725335 0.2765176 0.9303782 +0.6252316 0.2765176 0.9303782 +0.6806558 0.2765176 0.9303782 +0.7388448 0.2765176 0.9303782 +0.7998369 0.2765176 0.9303782 +0.8636691 0.2765176 0.9303782 +0.9303782 0.2765176 0.9303782 +1 0.2765176 0.9303782 +0 0.3113005 0.9303782 +0.002418731 0.3113005 0.9303782 +0.005155668 0.3113005 0.9303782 +0.009080105 0.3113005 0.9303782 +0.01434988 0.3113005 0.9303782 +0.02107202 0.3113005 0.9303782 +0.02934285 0.3113005 0.9303782 +0.03925039 0.3113005 0.9303782 +0.05087609 0.3113005 0.9303782 +0.06429595 0.3113005 0.9303782 +0.07958143 0.3113005 0.9303782 +0.0968001 0.3113005 0.9303782 +0.1160161 0.3113005 0.9303782 +0.1372908 0.3113005 0.9303782 +0.1606827 0.3113005 0.9303782 +0.1862481 0.3113005 0.9303782 +0.2140411 0.3113005 0.9303782 +0.2441142 0.3113005 0.9303782 +0.2765176 0.3113005 0.9303782 +0.3113005 0.3113005 0.9303782 +0.3485102 0.3113005 0.9303782 +0.388193 0.3113005 0.9303782 +0.4303934 0.3113005 0.9303782 +0.4751555 0.3113005 0.9303782 +0.5225216 0.3113005 0.9303782 +0.5725335 0.3113005 0.9303782 +0.6252316 0.3113005 0.9303782 +0.6806558 0.3113005 0.9303782 +0.7388448 0.3113005 0.9303782 +0.7998369 0.3113005 0.9303782 +0.8636691 0.3113005 0.9303782 +0.9303782 0.3113005 0.9303782 +1 0.3113005 0.9303782 +0 0.3485102 0.9303782 +0.002418731 0.3485102 0.9303782 +0.005155668 0.3485102 0.9303782 +0.009080105 0.3485102 0.9303782 +0.01434988 0.3485102 0.9303782 +0.02107202 0.3485102 0.9303782 +0.02934285 0.3485102 0.9303782 +0.03925039 0.3485102 0.9303782 +0.05087609 0.3485102 0.9303782 +0.06429595 0.3485102 0.9303782 +0.07958143 0.3485102 0.9303782 +0.0968001 0.3485102 0.9303782 +0.1160161 0.3485102 0.9303782 +0.1372908 0.3485102 0.9303782 +0.1606827 0.3485102 0.9303782 +0.1862481 0.3485102 0.9303782 +0.2140411 0.3485102 0.9303782 +0.2441142 0.3485102 0.9303782 +0.2765176 0.3485102 0.9303782 +0.3113005 0.3485102 0.9303782 +0.3485102 0.3485102 0.9303782 +0.388193 0.3485102 0.9303782 +0.4303934 0.3485102 0.9303782 +0.4751555 0.3485102 0.9303782 +0.5225216 0.3485102 0.9303782 +0.5725335 0.3485102 0.9303782 +0.6252316 0.3485102 0.9303782 +0.6806558 0.3485102 0.9303782 +0.7388448 0.3485102 0.9303782 +0.7998369 0.3485102 0.9303782 +0.8636691 0.3485102 0.9303782 +0.9303782 0.3485102 0.9303782 +1 0.3485102 0.9303782 +0 0.388193 0.9303782 +0.002418731 0.388193 0.9303782 +0.005155668 0.388193 0.9303782 +0.009080105 0.388193 0.9303782 +0.01434988 0.388193 0.9303782 +0.02107202 0.388193 0.9303782 +0.02934285 0.388193 0.9303782 +0.03925039 0.388193 0.9303782 +0.05087609 0.388193 0.9303782 +0.06429595 0.388193 0.9303782 +0.07958143 0.388193 0.9303782 +0.0968001 0.388193 0.9303782 +0.1160161 0.388193 0.9303782 +0.1372908 0.388193 0.9303782 +0.1606827 0.388193 0.9303782 +0.1862481 0.388193 0.9303782 +0.2140411 0.388193 0.9303782 +0.2441142 0.388193 0.9303782 +0.2765176 0.388193 0.9303782 +0.3113005 0.388193 0.9303782 +0.3485102 0.388193 0.9303782 +0.388193 0.388193 0.9303782 +0.4303934 0.388193 0.9303782 +0.4751555 0.388193 0.9303782 +0.5225216 0.388193 0.9303782 +0.5725335 0.388193 0.9303782 +0.6252316 0.388193 0.9303782 +0.6806558 0.388193 0.9303782 +0.7388448 0.388193 0.9303782 +0.7998369 0.388193 0.9303782 +0.8636691 0.388193 0.9303782 +0.9303782 0.388193 0.9303782 +1 0.388193 0.9303782 +0 0.4303934 0.9303782 +0.002418731 0.4303934 0.9303782 +0.005155668 0.4303934 0.9303782 +0.009080105 0.4303934 0.9303782 +0.01434988 0.4303934 0.9303782 +0.02107202 0.4303934 0.9303782 +0.02934285 0.4303934 0.9303782 +0.03925039 0.4303934 0.9303782 +0.05087609 0.4303934 0.9303782 +0.06429595 0.4303934 0.9303782 +0.07958143 0.4303934 0.9303782 +0.0968001 0.4303934 0.9303782 +0.1160161 0.4303934 0.9303782 +0.1372908 0.4303934 0.9303782 +0.1606827 0.4303934 0.9303782 +0.1862481 0.4303934 0.9303782 +0.2140411 0.4303934 0.9303782 +0.2441142 0.4303934 0.9303782 +0.2765176 0.4303934 0.9303782 +0.3113005 0.4303934 0.9303782 +0.3485102 0.4303934 0.9303782 +0.388193 0.4303934 0.9303782 +0.4303934 0.4303934 0.9303782 +0.4751555 0.4303934 0.9303782 +0.5225216 0.4303934 0.9303782 +0.5725335 0.4303934 0.9303782 +0.6252316 0.4303934 0.9303782 +0.6806558 0.4303934 0.9303782 +0.7388448 0.4303934 0.9303782 +0.7998369 0.4303934 0.9303782 +0.8636691 0.4303934 0.9303782 +0.9303782 0.4303934 0.9303782 +1 0.4303934 0.9303782 +0 0.4751555 0.9303782 +0.002418731 0.4751555 0.9303782 +0.005155668 0.4751555 0.9303782 +0.009080105 0.4751555 0.9303782 +0.01434988 0.4751555 0.9303782 +0.02107202 0.4751555 0.9303782 +0.02934285 0.4751555 0.9303782 +0.03925039 0.4751555 0.9303782 +0.05087609 0.4751555 0.9303782 +0.06429595 0.4751555 0.9303782 +0.07958143 0.4751555 0.9303782 +0.0968001 0.4751555 0.9303782 +0.1160161 0.4751555 0.9303782 +0.1372908 0.4751555 0.9303782 +0.1606827 0.4751555 0.9303782 +0.1862481 0.4751555 0.9303782 +0.2140411 0.4751555 0.9303782 +0.2441142 0.4751555 0.9303782 +0.2765176 0.4751555 0.9303782 +0.3113005 0.4751555 0.9303782 +0.3485102 0.4751555 0.9303782 +0.388193 0.4751555 0.9303782 +0.4303934 0.4751555 0.9303782 +0.4751555 0.4751555 0.9303782 +0.5225216 0.4751555 0.9303782 +0.5725335 0.4751555 0.9303782 +0.6252316 0.4751555 0.9303782 +0.6806558 0.4751555 0.9303782 +0.7388448 0.4751555 0.9303782 +0.7998369 0.4751555 0.9303782 +0.8636691 0.4751555 0.9303782 +0.9303782 0.4751555 0.9303782 +1 0.4751555 0.9303782 +0 0.5225216 0.9303782 +0.002418731 0.5225216 0.9303782 +0.005155668 0.5225216 0.9303782 +0.009080105 0.5225216 0.9303782 +0.01434988 0.5225216 0.9303782 +0.02107202 0.5225216 0.9303782 +0.02934285 0.5225216 0.9303782 +0.03925039 0.5225216 0.9303782 +0.05087609 0.5225216 0.9303782 +0.06429595 0.5225216 0.9303782 +0.07958143 0.5225216 0.9303782 +0.0968001 0.5225216 0.9303782 +0.1160161 0.5225216 0.9303782 +0.1372908 0.5225216 0.9303782 +0.1606827 0.5225216 0.9303782 +0.1862481 0.5225216 0.9303782 +0.2140411 0.5225216 0.9303782 +0.2441142 0.5225216 0.9303782 +0.2765176 0.5225216 0.9303782 +0.3113005 0.5225216 0.9303782 +0.3485102 0.5225216 0.9303782 +0.388193 0.5225216 0.9303782 +0.4303934 0.5225216 0.9303782 +0.4751555 0.5225216 0.9303782 +0.5225216 0.5225216 0.9303782 +0.5725335 0.5225216 0.9303782 +0.6252316 0.5225216 0.9303782 +0.6806558 0.5225216 0.9303782 +0.7388448 0.5225216 0.9303782 +0.7998369 0.5225216 0.9303782 +0.8636691 0.5225216 0.9303782 +0.9303782 0.5225216 0.9303782 +1 0.5225216 0.9303782 +0 0.5725335 0.9303782 +0.002418731 0.5725335 0.9303782 +0.005155668 0.5725335 0.9303782 +0.009080105 0.5725335 0.9303782 +0.01434988 0.5725335 0.9303782 +0.02107202 0.5725335 0.9303782 +0.02934285 0.5725335 0.9303782 +0.03925039 0.5725335 0.9303782 +0.05087609 0.5725335 0.9303782 +0.06429595 0.5725335 0.9303782 +0.07958143 0.5725335 0.9303782 +0.0968001 0.5725335 0.9303782 +0.1160161 0.5725335 0.9303782 +0.1372908 0.5725335 0.9303782 +0.1606827 0.5725335 0.9303782 +0.1862481 0.5725335 0.9303782 +0.2140411 0.5725335 0.9303782 +0.2441142 0.5725335 0.9303782 +0.2765176 0.5725335 0.9303782 +0.3113005 0.5725335 0.9303782 +0.3485102 0.5725335 0.9303782 +0.388193 0.5725335 0.9303782 +0.4303934 0.5725335 0.9303782 +0.4751555 0.5725335 0.9303782 +0.5225216 0.5725335 0.9303782 +0.5725335 0.5725335 0.9303782 +0.6252316 0.5725335 0.9303782 +0.6806558 0.5725335 0.9303782 +0.7388448 0.5725335 0.9303782 +0.7998369 0.5725335 0.9303782 +0.8636691 0.5725335 0.9303782 +0.9303782 0.5725335 0.9303782 +1 0.5725335 0.9303782 +0 0.6252316 0.9303782 +0.002418731 0.6252316 0.9303782 +0.005155668 0.6252316 0.9303782 +0.009080105 0.6252316 0.9303782 +0.01434988 0.6252316 0.9303782 +0.02107202 0.6252316 0.9303782 +0.02934285 0.6252316 0.9303782 +0.03925039 0.6252316 0.9303782 +0.05087609 0.6252316 0.9303782 +0.06429595 0.6252316 0.9303782 +0.07958143 0.6252316 0.9303782 +0.0968001 0.6252316 0.9303782 +0.1160161 0.6252316 0.9303782 +0.1372908 0.6252316 0.9303782 +0.1606827 0.6252316 0.9303782 +0.1862481 0.6252316 0.9303782 +0.2140411 0.6252316 0.9303782 +0.2441142 0.6252316 0.9303782 +0.2765176 0.6252316 0.9303782 +0.3113005 0.6252316 0.9303782 +0.3485102 0.6252316 0.9303782 +0.388193 0.6252316 0.9303782 +0.4303934 0.6252316 0.9303782 +0.4751555 0.6252316 0.9303782 +0.5225216 0.6252316 0.9303782 +0.5725335 0.6252316 0.9303782 +0.6252316 0.6252316 0.9303782 +0.6806558 0.6252316 0.9303782 +0.7388448 0.6252316 0.9303782 +0.7998369 0.6252316 0.9303782 +0.8636691 0.6252316 0.9303782 +0.9303782 0.6252316 0.9303782 +1 0.6252316 0.9303782 +0 0.6806558 0.9303782 +0.002418731 0.6806558 0.9303782 +0.005155668 0.6806558 0.9303782 +0.009080105 0.6806558 0.9303782 +0.01434988 0.6806558 0.9303782 +0.02107202 0.6806558 0.9303782 +0.02934285 0.6806558 0.9303782 +0.03925039 0.6806558 0.9303782 +0.05087609 0.6806558 0.9303782 +0.06429595 0.6806558 0.9303782 +0.07958143 0.6806558 0.9303782 +0.0968001 0.6806558 0.9303782 +0.1160161 0.6806558 0.9303782 +0.1372908 0.6806558 0.9303782 +0.1606827 0.6806558 0.9303782 +0.1862481 0.6806558 0.9303782 +0.2140411 0.6806558 0.9303782 +0.2441142 0.6806558 0.9303782 +0.2765176 0.6806558 0.9303782 +0.3113005 0.6806558 0.9303782 +0.3485102 0.6806558 0.9303782 +0.388193 0.6806558 0.9303782 +0.4303934 0.6806558 0.9303782 +0.4751555 0.6806558 0.9303782 +0.5225216 0.6806558 0.9303782 +0.5725335 0.6806558 0.9303782 +0.6252316 0.6806558 0.9303782 +0.6806558 0.6806558 0.9303782 +0.7388448 0.6806558 0.9303782 +0.7998369 0.6806558 0.9303782 +0.8636691 0.6806558 0.9303782 +0.9303782 0.6806558 0.9303782 +1 0.6806558 0.9303782 +0 0.7388448 0.9303782 +0.002418731 0.7388448 0.9303782 +0.005155668 0.7388448 0.9303782 +0.009080105 0.7388448 0.9303782 +0.01434988 0.7388448 0.9303782 +0.02107202 0.7388448 0.9303782 +0.02934285 0.7388448 0.9303782 +0.03925039 0.7388448 0.9303782 +0.05087609 0.7388448 0.9303782 +0.06429595 0.7388448 0.9303782 +0.07958143 0.7388448 0.9303782 +0.0968001 0.7388448 0.9303782 +0.1160161 0.7388448 0.9303782 +0.1372908 0.7388448 0.9303782 +0.1606827 0.7388448 0.9303782 +0.1862481 0.7388448 0.9303782 +0.2140411 0.7388448 0.9303782 +0.2441142 0.7388448 0.9303782 +0.2765176 0.7388448 0.9303782 +0.3113005 0.7388448 0.9303782 +0.3485102 0.7388448 0.9303782 +0.388193 0.7388448 0.9303782 +0.4303934 0.7388448 0.9303782 +0.4751555 0.7388448 0.9303782 +0.5225216 0.7388448 0.9303782 +0.5725335 0.7388448 0.9303782 +0.6252316 0.7388448 0.9303782 +0.6806558 0.7388448 0.9303782 +0.7388448 0.7388448 0.9303782 +0.7998369 0.7388448 0.9303782 +0.8636691 0.7388448 0.9303782 +0.9303782 0.7388448 0.9303782 +1 0.7388448 0.9303782 +0 0.7998369 0.9303782 +0.002418731 0.7998369 0.9303782 +0.005155668 0.7998369 0.9303782 +0.009080105 0.7998369 0.9303782 +0.01434988 0.7998369 0.9303782 +0.02107202 0.7998369 0.9303782 +0.02934285 0.7998369 0.9303782 +0.03925039 0.7998369 0.9303782 +0.05087609 0.7998369 0.9303782 +0.06429595 0.7998369 0.9303782 +0.07958143 0.7998369 0.9303782 +0.0968001 0.7998369 0.9303782 +0.1160161 0.7998369 0.9303782 +0.1372908 0.7998369 0.9303782 +0.1606827 0.7998369 0.9303782 +0.1862481 0.7998369 0.9303782 +0.2140411 0.7998369 0.9303782 +0.2441142 0.7998369 0.9303782 +0.2765176 0.7998369 0.9303782 +0.3113005 0.7998369 0.9303782 +0.3485102 0.7998369 0.9303782 +0.388193 0.7998369 0.9303782 +0.4303934 0.7998369 0.9303782 +0.4751555 0.7998369 0.9303782 +0.5225216 0.7998369 0.9303782 +0.5725335 0.7998369 0.9303782 +0.6252316 0.7998369 0.9303782 +0.6806558 0.7998369 0.9303782 +0.7388448 0.7998369 0.9303782 +0.7998369 0.7998369 0.9303782 +0.8636691 0.7998369 0.9303782 +0.9303782 0.7998369 0.9303782 +1 0.7998369 0.9303782 +0 0.8636691 0.9303782 +0.002418731 0.8636691 0.9303782 +0.005155668 0.8636691 0.9303782 +0.009080105 0.8636691 0.9303782 +0.01434988 0.8636691 0.9303782 +0.02107202 0.8636691 0.9303782 +0.02934285 0.8636691 0.9303782 +0.03925039 0.8636691 0.9303782 +0.05087609 0.8636691 0.9303782 +0.06429595 0.8636691 0.9303782 +0.07958143 0.8636691 0.9303782 +0.0968001 0.8636691 0.9303782 +0.1160161 0.8636691 0.9303782 +0.1372908 0.8636691 0.9303782 +0.1606827 0.8636691 0.9303782 +0.1862481 0.8636691 0.9303782 +0.2140411 0.8636691 0.9303782 +0.2441142 0.8636691 0.9303782 +0.2765176 0.8636691 0.9303782 +0.3113005 0.8636691 0.9303782 +0.3485102 0.8636691 0.9303782 +0.388193 0.8636691 0.9303782 +0.4303934 0.8636691 0.9303782 +0.4751555 0.8636691 0.9303782 +0.5225216 0.8636691 0.9303782 +0.5725335 0.8636691 0.9303782 +0.6252316 0.8636691 0.9303782 +0.6806558 0.8636691 0.9303782 +0.7388448 0.8636691 0.9303782 +0.7998369 0.8636691 0.9303782 +0.8636691 0.8636691 0.9303782 +0.9303782 0.8636691 0.9303782 +1 0.8636691 0.9303782 +0 0.9303782 0.9303782 +0.002418731 0.9303782 0.9303782 +0.005155668 0.9303782 0.9303782 +0.009080105 0.9303782 0.9303782 +0.01434988 0.9303782 0.9303782 +0.02107202 0.9303782 0.9303782 +0.02934285 0.9303782 0.9303782 +0.03925039 0.9303782 0.9303782 +0.05087609 0.9303782 0.9303782 +0.06429595 0.9303782 0.9303782 +0.07958143 0.9303782 0.9303782 +0.0968001 0.9303782 0.9303782 +0.1160161 0.9303782 0.9303782 +0.1372908 0.9303782 0.9303782 +0.1606827 0.9303782 0.9303782 +0.1862481 0.9303782 0.9303782 +0.2140411 0.9303782 0.9303782 +0.2441142 0.9303782 0.9303782 +0.2765176 0.9303782 0.9303782 +0.3113005 0.9303782 0.9303782 +0.3485102 0.9303782 0.9303782 +0.388193 0.9303782 0.9303782 +0.4303934 0.9303782 0.9303782 +0.4751555 0.9303782 0.9303782 +0.5225216 0.9303782 0.9303782 +0.5725335 0.9303782 0.9303782 +0.6252316 0.9303782 0.9303782 +0.6806558 0.9303782 0.9303782 +0.7388448 0.9303782 0.9303782 +0.7998369 0.9303782 0.9303782 +0.8636691 0.9303782 0.9303782 +0.9303782 0.9303782 0.9303782 +1 0.9303782 0.9303782 +0 1 0.9303782 +0.002418731 1 0.9303782 +0.005155668 1 0.9303782 +0.009080105 1 0.9303782 +0.01434988 1 0.9303782 +0.02107202 1 0.9303782 +0.02934285 1 0.9303782 +0.03925039 1 0.9303782 +0.05087609 1 0.9303782 +0.06429595 1 0.9303782 +0.07958143 1 0.9303782 +0.0968001 1 0.9303782 +0.1160161 1 0.9303782 +0.1372908 1 0.9303782 +0.1606827 1 0.9303782 +0.1862481 1 0.9303782 +0.2140411 1 0.9303782 +0.2441142 1 0.9303782 +0.2765176 1 0.9303782 +0.3113005 1 0.9303782 +0.3485102 1 0.9303782 +0.388193 1 0.9303782 +0.4303934 1 0.9303782 +0.4751555 1 0.9303782 +0.5225216 1 0.9303782 +0.5725335 1 0.9303782 +0.6252316 1 0.9303782 +0.6806558 1 0.9303782 +0.7388448 1 0.9303782 +0.7998369 1 0.9303782 +0.8636691 1 0.9303782 +0.9303782 1 0.9303782 +1 1 0.9303782 +0 0 1 +0.002418731 0 1 +0.005155668 0 1 +0.009080105 0 1 +0.01434988 0 1 +0.02107202 0 1 +0.02934285 0 1 +0.03925039 0 1 +0.05087609 0 1 +0.06429595 0 1 +0.07958143 0 1 +0.0968001 0 1 +0.1160161 0 1 +0.1372908 0 1 +0.1606827 0 1 +0.1862481 0 1 +0.2140411 0 1 +0.2441142 0 1 +0.2765176 0 1 +0.3113005 0 1 +0.3485102 0 1 +0.388193 0 1 +0.4303934 0 1 +0.4751555 0 1 +0.5225216 0 1 +0.5725335 0 1 +0.6252316 0 1 +0.6806558 0 1 +0.7388448 0 1 +0.7998369 0 1 +0.8636691 0 1 +0.9303782 0 1 +1 0 1 +0 0.002418731 1 +0.002418731 0.002418731 1 +0.005155668 0.002418731 1 +0.009080105 0.002418731 1 +0.01434988 0.002418731 1 +0.02107202 0.002418731 1 +0.02934285 0.002418731 1 +0.03925039 0.002418731 1 +0.05087609 0.002418731 1 +0.06429595 0.002418731 1 +0.07958143 0.002418731 1 +0.0968001 0.002418731 1 +0.1160161 0.002418731 1 +0.1372908 0.002418731 1 +0.1606827 0.002418731 1 +0.1862481 0.002418731 1 +0.2140411 0.002418731 1 +0.2441142 0.002418731 1 +0.2765176 0.002418731 1 +0.3113005 0.002418731 1 +0.3485102 0.002418731 1 +0.388193 0.002418731 1 +0.4303934 0.002418731 1 +0.4751555 0.002418731 1 +0.5225216 0.002418731 1 +0.5725335 0.002418731 1 +0.6252316 0.002418731 1 +0.6806558 0.002418731 1 +0.7388448 0.002418731 1 +0.7998369 0.002418731 1 +0.8636691 0.002418731 1 +0.9303782 0.002418731 1 +1 0.002418731 1 +0 0.005155668 1 +0.002418731 0.005155668 1 +0.005155668 0.005155668 1 +0.009080105 0.005155668 1 +0.01434988 0.005155668 1 +0.02107202 0.005155668 1 +0.02934285 0.005155668 1 +0.03925039 0.005155668 1 +0.05087609 0.005155668 1 +0.06429595 0.005155668 1 +0.07958143 0.005155668 1 +0.0968001 0.005155668 1 +0.1160161 0.005155668 1 +0.1372908 0.005155668 1 +0.1606827 0.005155668 1 +0.1862481 0.005155668 1 +0.2140411 0.005155668 1 +0.2441142 0.005155668 1 +0.2765176 0.005155668 1 +0.3113005 0.005155668 1 +0.3485102 0.005155668 1 +0.388193 0.005155668 1 +0.4303934 0.005155668 1 +0.4751555 0.005155668 1 +0.5225216 0.005155668 1 +0.5725335 0.005155668 1 +0.6252316 0.005155668 1 +0.6806558 0.005155668 1 +0.7388448 0.005155668 1 +0.7998369 0.005155668 1 +0.8636691 0.005155668 1 +0.9303782 0.005155668 1 +1 0.005155668 1 +0 0.009080105 1 +0.002418731 0.009080105 1 +0.005155668 0.009080105 1 +0.009080105 0.009080105 1 +0.01434988 0.009080105 1 +0.02107202 0.009080105 1 +0.02934285 0.009080105 1 +0.03925039 0.009080105 1 +0.05087609 0.009080105 1 +0.06429595 0.009080105 1 +0.07958143 0.009080105 1 +0.0968001 0.009080105 1 +0.1160161 0.009080105 1 +0.1372908 0.009080105 1 +0.1606827 0.009080105 1 +0.1862481 0.009080105 1 +0.2140411 0.009080105 1 +0.2441142 0.009080105 1 +0.2765176 0.009080105 1 +0.3113005 0.009080105 1 +0.3485102 0.009080105 1 +0.388193 0.009080105 1 +0.4303934 0.009080105 1 +0.4751555 0.009080105 1 +0.5225216 0.009080105 1 +0.5725335 0.009080105 1 +0.6252316 0.009080105 1 +0.6806558 0.009080105 1 +0.7388448 0.009080105 1 +0.7998369 0.009080105 1 +0.8636691 0.009080105 1 +0.9303782 0.009080105 1 +1 0.009080105 1 +0 0.01434988 1 +0.002418731 0.01434988 1 +0.005155668 0.01434988 1 +0.009080105 0.01434988 1 +0.01434988 0.01434988 1 +0.02107202 0.01434988 1 +0.02934285 0.01434988 1 +0.03925039 0.01434988 1 +0.05087609 0.01434988 1 +0.06429595 0.01434988 1 +0.07958143 0.01434988 1 +0.0968001 0.01434988 1 +0.1160161 0.01434988 1 +0.1372908 0.01434988 1 +0.1606827 0.01434988 1 +0.1862481 0.01434988 1 +0.2140411 0.01434988 1 +0.2441142 0.01434988 1 +0.2765176 0.01434988 1 +0.3113005 0.01434988 1 +0.3485102 0.01434988 1 +0.388193 0.01434988 1 +0.4303934 0.01434988 1 +0.4751555 0.01434988 1 +0.5225216 0.01434988 1 +0.5725335 0.01434988 1 +0.6252316 0.01434988 1 +0.6806558 0.01434988 1 +0.7388448 0.01434988 1 +0.7998369 0.01434988 1 +0.8636691 0.01434988 1 +0.9303782 0.01434988 1 +1 0.01434988 1 +0 0.02107202 1 +0.002418731 0.02107202 1 +0.005155668 0.02107202 1 +0.009080105 0.02107202 1 +0.01434988 0.02107202 1 +0.02107202 0.02107202 1 +0.02934285 0.02107202 1 +0.03925039 0.02107202 1 +0.05087609 0.02107202 1 +0.06429595 0.02107202 1 +0.07958143 0.02107202 1 +0.0968001 0.02107202 1 +0.1160161 0.02107202 1 +0.1372908 0.02107202 1 +0.1606827 0.02107202 1 +0.1862481 0.02107202 1 +0.2140411 0.02107202 1 +0.2441142 0.02107202 1 +0.2765176 0.02107202 1 +0.3113005 0.02107202 1 +0.3485102 0.02107202 1 +0.388193 0.02107202 1 +0.4303934 0.02107202 1 +0.4751555 0.02107202 1 +0.5225216 0.02107202 1 +0.5725335 0.02107202 1 +0.6252316 0.02107202 1 +0.6806558 0.02107202 1 +0.7388448 0.02107202 1 +0.7998369 0.02107202 1 +0.8636691 0.02107202 1 +0.9303782 0.02107202 1 +1 0.02107202 1 +0 0.02934285 1 +0.002418731 0.02934285 1 +0.005155668 0.02934285 1 +0.009080105 0.02934285 1 +0.01434988 0.02934285 1 +0.02107202 0.02934285 1 +0.02934285 0.02934285 1 +0.03925039 0.02934285 1 +0.05087609 0.02934285 1 +0.06429595 0.02934285 1 +0.07958143 0.02934285 1 +0.0968001 0.02934285 1 +0.1160161 0.02934285 1 +0.1372908 0.02934285 1 +0.1606827 0.02934285 1 +0.1862481 0.02934285 1 +0.2140411 0.02934285 1 +0.2441142 0.02934285 1 +0.2765176 0.02934285 1 +0.3113005 0.02934285 1 +0.3485102 0.02934285 1 +0.388193 0.02934285 1 +0.4303934 0.02934285 1 +0.4751555 0.02934285 1 +0.5225216 0.02934285 1 +0.5725335 0.02934285 1 +0.6252316 0.02934285 1 +0.6806558 0.02934285 1 +0.7388448 0.02934285 1 +0.7998369 0.02934285 1 +0.8636691 0.02934285 1 +0.9303782 0.02934285 1 +1 0.02934285 1 +0 0.03925039 1 +0.002418731 0.03925039 1 +0.005155668 0.03925039 1 +0.009080105 0.03925039 1 +0.01434988 0.03925039 1 +0.02107202 0.03925039 1 +0.02934285 0.03925039 1 +0.03925039 0.03925039 1 +0.05087609 0.03925039 1 +0.06429595 0.03925039 1 +0.07958143 0.03925039 1 +0.0968001 0.03925039 1 +0.1160161 0.03925039 1 +0.1372908 0.03925039 1 +0.1606827 0.03925039 1 +0.1862481 0.03925039 1 +0.2140411 0.03925039 1 +0.2441142 0.03925039 1 +0.2765176 0.03925039 1 +0.3113005 0.03925039 1 +0.3485102 0.03925039 1 +0.388193 0.03925039 1 +0.4303934 0.03925039 1 +0.4751555 0.03925039 1 +0.5225216 0.03925039 1 +0.5725335 0.03925039 1 +0.6252316 0.03925039 1 +0.6806558 0.03925039 1 +0.7388448 0.03925039 1 +0.7998369 0.03925039 1 +0.8636691 0.03925039 1 +0.9303782 0.03925039 1 +1 0.03925039 1 +0 0.05087609 1 +0.002418731 0.05087609 1 +0.005155668 0.05087609 1 +0.009080105 0.05087609 1 +0.01434988 0.05087609 1 +0.02107202 0.05087609 1 +0.02934285 0.05087609 1 +0.03925039 0.05087609 1 +0.05087609 0.05087609 1 +0.06429595 0.05087609 1 +0.07958143 0.05087609 1 +0.0968001 0.05087609 1 +0.1160161 0.05087609 1 +0.1372908 0.05087609 1 +0.1606827 0.05087609 1 +0.1862481 0.05087609 1 +0.2140411 0.05087609 1 +0.2441142 0.05087609 1 +0.2765176 0.05087609 1 +0.3113005 0.05087609 1 +0.3485102 0.05087609 1 +0.388193 0.05087609 1 +0.4303934 0.05087609 1 +0.4751555 0.05087609 1 +0.5225216 0.05087609 1 +0.5725335 0.05087609 1 +0.6252316 0.05087609 1 +0.6806558 0.05087609 1 +0.7388448 0.05087609 1 +0.7998369 0.05087609 1 +0.8636691 0.05087609 1 +0.9303782 0.05087609 1 +1 0.05087609 1 +0 0.06429595 1 +0.002418731 0.06429595 1 +0.005155668 0.06429595 1 +0.009080105 0.06429595 1 +0.01434988 0.06429595 1 +0.02107202 0.06429595 1 +0.02934285 0.06429595 1 +0.03925039 0.06429595 1 +0.05087609 0.06429595 1 +0.06429595 0.06429595 1 +0.07958143 0.06429595 1 +0.0968001 0.06429595 1 +0.1160161 0.06429595 1 +0.1372908 0.06429595 1 +0.1606827 0.06429595 1 +0.1862481 0.06429595 1 +0.2140411 0.06429595 1 +0.2441142 0.06429595 1 +0.2765176 0.06429595 1 +0.3113005 0.06429595 1 +0.3485102 0.06429595 1 +0.388193 0.06429595 1 +0.4303934 0.06429595 1 +0.4751555 0.06429595 1 +0.5225216 0.06429595 1 +0.5725335 0.06429595 1 +0.6252316 0.06429595 1 +0.6806558 0.06429595 1 +0.7388448 0.06429595 1 +0.7998369 0.06429595 1 +0.8636691 0.06429595 1 +0.9303782 0.06429595 1 +1 0.06429595 1 +0 0.07958143 1 +0.002418731 0.07958143 1 +0.005155668 0.07958143 1 +0.009080105 0.07958143 1 +0.01434988 0.07958143 1 +0.02107202 0.07958143 1 +0.02934285 0.07958143 1 +0.03925039 0.07958143 1 +0.05087609 0.07958143 1 +0.06429595 0.07958143 1 +0.07958143 0.07958143 1 +0.0968001 0.07958143 1 +0.1160161 0.07958143 1 +0.1372908 0.07958143 1 +0.1606827 0.07958143 1 +0.1862481 0.07958143 1 +0.2140411 0.07958143 1 +0.2441142 0.07958143 1 +0.2765176 0.07958143 1 +0.3113005 0.07958143 1 +0.3485102 0.07958143 1 +0.388193 0.07958143 1 +0.4303934 0.07958143 1 +0.4751555 0.07958143 1 +0.5225216 0.07958143 1 +0.5725335 0.07958143 1 +0.6252316 0.07958143 1 +0.6806558 0.07958143 1 +0.7388448 0.07958143 1 +0.7998369 0.07958143 1 +0.8636691 0.07958143 1 +0.9303782 0.07958143 1 +1 0.07958143 1 +0 0.0968001 1 +0.002418731 0.0968001 1 +0.005155668 0.0968001 1 +0.009080105 0.0968001 1 +0.01434988 0.0968001 1 +0.02107202 0.0968001 1 +0.02934285 0.0968001 1 +0.03925039 0.0968001 1 +0.05087609 0.0968001 1 +0.06429595 0.0968001 1 +0.07958143 0.0968001 1 +0.0968001 0.0968001 1 +0.1160161 0.0968001 1 +0.1372908 0.0968001 1 +0.1606827 0.0968001 1 +0.1862481 0.0968001 1 +0.2140411 0.0968001 1 +0.2441142 0.0968001 1 +0.2765176 0.0968001 1 +0.3113005 0.0968001 1 +0.3485102 0.0968001 1 +0.388193 0.0968001 1 +0.4303934 0.0968001 1 +0.4751555 0.0968001 1 +0.5225216 0.0968001 1 +0.5725335 0.0968001 1 +0.6252316 0.0968001 1 +0.6806558 0.0968001 1 +0.7388448 0.0968001 1 +0.7998369 0.0968001 1 +0.8636691 0.0968001 1 +0.9303782 0.0968001 1 +1 0.0968001 1 +0 0.1160161 1 +0.002418731 0.1160161 1 +0.005155668 0.1160161 1 +0.009080105 0.1160161 1 +0.01434988 0.1160161 1 +0.02107202 0.1160161 1 +0.02934285 0.1160161 1 +0.03925039 0.1160161 1 +0.05087609 0.1160161 1 +0.06429595 0.1160161 1 +0.07958143 0.1160161 1 +0.0968001 0.1160161 1 +0.1160161 0.1160161 1 +0.1372908 0.1160161 1 +0.1606827 0.1160161 1 +0.1862481 0.1160161 1 +0.2140411 0.1160161 1 +0.2441142 0.1160161 1 +0.2765176 0.1160161 1 +0.3113005 0.1160161 1 +0.3485102 0.1160161 1 +0.388193 0.1160161 1 +0.4303934 0.1160161 1 +0.4751555 0.1160161 1 +0.5225216 0.1160161 1 +0.5725335 0.1160161 1 +0.6252316 0.1160161 1 +0.6806558 0.1160161 1 +0.7388448 0.1160161 1 +0.7998369 0.1160161 1 +0.8636691 0.1160161 1 +0.9303782 0.1160161 1 +1 0.1160161 1 +0 0.1372908 1 +0.002418731 0.1372908 1 +0.005155668 0.1372908 1 +0.009080105 0.1372908 1 +0.01434988 0.1372908 1 +0.02107202 0.1372908 1 +0.02934285 0.1372908 1 +0.03925039 0.1372908 1 +0.05087609 0.1372908 1 +0.06429595 0.1372908 1 +0.07958143 0.1372908 1 +0.0968001 0.1372908 1 +0.1160161 0.1372908 1 +0.1372908 0.1372908 1 +0.1606827 0.1372908 1 +0.1862481 0.1372908 1 +0.2140411 0.1372908 1 +0.2441142 0.1372908 1 +0.2765176 0.1372908 1 +0.3113005 0.1372908 1 +0.3485102 0.1372908 1 +0.388193 0.1372908 1 +0.4303934 0.1372908 1 +0.4751555 0.1372908 1 +0.5225216 0.1372908 1 +0.5725335 0.1372908 1 +0.6252316 0.1372908 1 +0.6806558 0.1372908 1 +0.7388448 0.1372908 1 +0.7998369 0.1372908 1 +0.8636691 0.1372908 1 +0.9303782 0.1372908 1 +1 0.1372908 1 +0 0.1606827 1 +0.002418731 0.1606827 1 +0.005155668 0.1606827 1 +0.009080105 0.1606827 1 +0.01434988 0.1606827 1 +0.02107202 0.1606827 1 +0.02934285 0.1606827 1 +0.03925039 0.1606827 1 +0.05087609 0.1606827 1 +0.06429595 0.1606827 1 +0.07958143 0.1606827 1 +0.0968001 0.1606827 1 +0.1160161 0.1606827 1 +0.1372908 0.1606827 1 +0.1606827 0.1606827 1 +0.1862481 0.1606827 1 +0.2140411 0.1606827 1 +0.2441142 0.1606827 1 +0.2765176 0.1606827 1 +0.3113005 0.1606827 1 +0.3485102 0.1606827 1 +0.388193 0.1606827 1 +0.4303934 0.1606827 1 +0.4751555 0.1606827 1 +0.5225216 0.1606827 1 +0.5725335 0.1606827 1 +0.6252316 0.1606827 1 +0.6806558 0.1606827 1 +0.7388448 0.1606827 1 +0.7998369 0.1606827 1 +0.8636691 0.1606827 1 +0.9303782 0.1606827 1 +1 0.1606827 1 +0 0.1862481 1 +0.002418731 0.1862481 1 +0.005155668 0.1862481 1 +0.009080105 0.1862481 1 +0.01434988 0.1862481 1 +0.02107202 0.1862481 1 +0.02934285 0.1862481 1 +0.03925039 0.1862481 1 +0.05087609 0.1862481 1 +0.06429595 0.1862481 1 +0.07958143 0.1862481 1 +0.0968001 0.1862481 1 +0.1160161 0.1862481 1 +0.1372908 0.1862481 1 +0.1606827 0.1862481 1 +0.1862481 0.1862481 1 +0.2140411 0.1862481 1 +0.2441142 0.1862481 1 +0.2765176 0.1862481 1 +0.3113005 0.1862481 1 +0.3485102 0.1862481 1 +0.388193 0.1862481 1 +0.4303934 0.1862481 1 +0.4751555 0.1862481 1 +0.5225216 0.1862481 1 +0.5725335 0.1862481 1 +0.6252316 0.1862481 1 +0.6806558 0.1862481 1 +0.7388448 0.1862481 1 +0.7998369 0.1862481 1 +0.8636691 0.1862481 1 +0.9303782 0.1862481 1 +1 0.1862481 1 +0 0.2140411 1 +0.002418731 0.2140411 1 +0.005155668 0.2140411 1 +0.009080105 0.2140411 1 +0.01434988 0.2140411 1 +0.02107202 0.2140411 1 +0.02934285 0.2140411 1 +0.03925039 0.2140411 1 +0.05087609 0.2140411 1 +0.06429595 0.2140411 1 +0.07958143 0.2140411 1 +0.0968001 0.2140411 1 +0.1160161 0.2140411 1 +0.1372908 0.2140411 1 +0.1606827 0.2140411 1 +0.1862481 0.2140411 1 +0.2140411 0.2140411 1 +0.2441142 0.2140411 1 +0.2765176 0.2140411 1 +0.3113005 0.2140411 1 +0.3485102 0.2140411 1 +0.388193 0.2140411 1 +0.4303934 0.2140411 1 +0.4751555 0.2140411 1 +0.5225216 0.2140411 1 +0.5725335 0.2140411 1 +0.6252316 0.2140411 1 +0.6806558 0.2140411 1 +0.7388448 0.2140411 1 +0.7998369 0.2140411 1 +0.8636691 0.2140411 1 +0.9303782 0.2140411 1 +1 0.2140411 1 +0 0.2441142 1 +0.002418731 0.2441142 1 +0.005155668 0.2441142 1 +0.009080105 0.2441142 1 +0.01434988 0.2441142 1 +0.02107202 0.2441142 1 +0.02934285 0.2441142 1 +0.03925039 0.2441142 1 +0.05087609 0.2441142 1 +0.06429595 0.2441142 1 +0.07958143 0.2441142 1 +0.0968001 0.2441142 1 +0.1160161 0.2441142 1 +0.1372908 0.2441142 1 +0.1606827 0.2441142 1 +0.1862481 0.2441142 1 +0.2140411 0.2441142 1 +0.2441142 0.2441142 1 +0.2765176 0.2441142 1 +0.3113005 0.2441142 1 +0.3485102 0.2441142 1 +0.388193 0.2441142 1 +0.4303934 0.2441142 1 +0.4751555 0.2441142 1 +0.5225216 0.2441142 1 +0.5725335 0.2441142 1 +0.6252316 0.2441142 1 +0.6806558 0.2441142 1 +0.7388448 0.2441142 1 +0.7998369 0.2441142 1 +0.8636691 0.2441142 1 +0.9303782 0.2441142 1 +1 0.2441142 1 +0 0.2765176 1 +0.002418731 0.2765176 1 +0.005155668 0.2765176 1 +0.009080105 0.2765176 1 +0.01434988 0.2765176 1 +0.02107202 0.2765176 1 +0.02934285 0.2765176 1 +0.03925039 0.2765176 1 +0.05087609 0.2765176 1 +0.06429595 0.2765176 1 +0.07958143 0.2765176 1 +0.0968001 0.2765176 1 +0.1160161 0.2765176 1 +0.1372908 0.2765176 1 +0.1606827 0.2765176 1 +0.1862481 0.2765176 1 +0.2140411 0.2765176 1 +0.2441142 0.2765176 1 +0.2765176 0.2765176 1 +0.3113005 0.2765176 1 +0.3485102 0.2765176 1 +0.388193 0.2765176 1 +0.4303934 0.2765176 1 +0.4751555 0.2765176 1 +0.5225216 0.2765176 1 +0.5725335 0.2765176 1 +0.6252316 0.2765176 1 +0.6806558 0.2765176 1 +0.7388448 0.2765176 1 +0.7998369 0.2765176 1 +0.8636691 0.2765176 1 +0.9303782 0.2765176 1 +1 0.2765176 1 +0 0.3113005 1 +0.002418731 0.3113005 1 +0.005155668 0.3113005 1 +0.009080105 0.3113005 1 +0.01434988 0.3113005 1 +0.02107202 0.3113005 1 +0.02934285 0.3113005 1 +0.03925039 0.3113005 1 +0.05087609 0.3113005 1 +0.06429595 0.3113005 1 +0.07958143 0.3113005 1 +0.0968001 0.3113005 1 +0.1160161 0.3113005 1 +0.1372908 0.3113005 1 +0.1606827 0.3113005 1 +0.1862481 0.3113005 1 +0.2140411 0.3113005 1 +0.2441142 0.3113005 1 +0.2765176 0.3113005 1 +0.3113005 0.3113005 1 +0.3485102 0.3113005 1 +0.388193 0.3113005 1 +0.4303934 0.3113005 1 +0.4751555 0.3113005 1 +0.5225216 0.3113005 1 +0.5725335 0.3113005 1 +0.6252316 0.3113005 1 +0.6806558 0.3113005 1 +0.7388448 0.3113005 1 +0.7998369 0.3113005 1 +0.8636691 0.3113005 1 +0.9303782 0.3113005 1 +1 0.3113005 1 +0 0.3485102 1 +0.002418731 0.3485102 1 +0.005155668 0.3485102 1 +0.009080105 0.3485102 1 +0.01434988 0.3485102 1 +0.02107202 0.3485102 1 +0.02934285 0.3485102 1 +0.03925039 0.3485102 1 +0.05087609 0.3485102 1 +0.06429595 0.3485102 1 +0.07958143 0.3485102 1 +0.0968001 0.3485102 1 +0.1160161 0.3485102 1 +0.1372908 0.3485102 1 +0.1606827 0.3485102 1 +0.1862481 0.3485102 1 +0.2140411 0.3485102 1 +0.2441142 0.3485102 1 +0.2765176 0.3485102 1 +0.3113005 0.3485102 1 +0.3485102 0.3485102 1 +0.388193 0.3485102 1 +0.4303934 0.3485102 1 +0.4751555 0.3485102 1 +0.5225216 0.3485102 1 +0.5725335 0.3485102 1 +0.6252316 0.3485102 1 +0.6806558 0.3485102 1 +0.7388448 0.3485102 1 +0.7998369 0.3485102 1 +0.8636691 0.3485102 1 +0.9303782 0.3485102 1 +1 0.3485102 1 +0 0.388193 1 +0.002418731 0.388193 1 +0.005155668 0.388193 1 +0.009080105 0.388193 1 +0.01434988 0.388193 1 +0.02107202 0.388193 1 +0.02934285 0.388193 1 +0.03925039 0.388193 1 +0.05087609 0.388193 1 +0.06429595 0.388193 1 +0.07958143 0.388193 1 +0.0968001 0.388193 1 +0.1160161 0.388193 1 +0.1372908 0.388193 1 +0.1606827 0.388193 1 +0.1862481 0.388193 1 +0.2140411 0.388193 1 +0.2441142 0.388193 1 +0.2765176 0.388193 1 +0.3113005 0.388193 1 +0.3485102 0.388193 1 +0.388193 0.388193 1 +0.4303934 0.388193 1 +0.4751555 0.388193 1 +0.5225216 0.388193 1 +0.5725335 0.388193 1 +0.6252316 0.388193 1 +0.6806558 0.388193 1 +0.7388448 0.388193 1 +0.7998369 0.388193 1 +0.8636691 0.388193 1 +0.9303782 0.388193 1 +1 0.388193 1 +0 0.4303934 1 +0.002418731 0.4303934 1 +0.005155668 0.4303934 1 +0.009080105 0.4303934 1 +0.01434988 0.4303934 1 +0.02107202 0.4303934 1 +0.02934285 0.4303934 1 +0.03925039 0.4303934 1 +0.05087609 0.4303934 1 +0.06429595 0.4303934 1 +0.07958143 0.4303934 1 +0.0968001 0.4303934 1 +0.1160161 0.4303934 1 +0.1372908 0.4303934 1 +0.1606827 0.4303934 1 +0.1862481 0.4303934 1 +0.2140411 0.4303934 1 +0.2441142 0.4303934 1 +0.2765176 0.4303934 1 +0.3113005 0.4303934 1 +0.3485102 0.4303934 1 +0.388193 0.4303934 1 +0.4303934 0.4303934 1 +0.4751555 0.4303934 1 +0.5225216 0.4303934 1 +0.5725335 0.4303934 1 +0.6252316 0.4303934 1 +0.6806558 0.4303934 1 +0.7388448 0.4303934 1 +0.7998369 0.4303934 1 +0.8636691 0.4303934 1 +0.9303782 0.4303934 1 +1 0.4303934 1 +0 0.4751555 1 +0.002418731 0.4751555 1 +0.005155668 0.4751555 1 +0.009080105 0.4751555 1 +0.01434988 0.4751555 1 +0.02107202 0.4751555 1 +0.02934285 0.4751555 1 +0.03925039 0.4751555 1 +0.05087609 0.4751555 1 +0.06429595 0.4751555 1 +0.07958143 0.4751555 1 +0.0968001 0.4751555 1 +0.1160161 0.4751555 1 +0.1372908 0.4751555 1 +0.1606827 0.4751555 1 +0.1862481 0.4751555 1 +0.2140411 0.4751555 1 +0.2441142 0.4751555 1 +0.2765176 0.4751555 1 +0.3113005 0.4751555 1 +0.3485102 0.4751555 1 +0.388193 0.4751555 1 +0.4303934 0.4751555 1 +0.4751555 0.4751555 1 +0.5225216 0.4751555 1 +0.5725335 0.4751555 1 +0.6252316 0.4751555 1 +0.6806558 0.4751555 1 +0.7388448 0.4751555 1 +0.7998369 0.4751555 1 +0.8636691 0.4751555 1 +0.9303782 0.4751555 1 +1 0.4751555 1 +0 0.5225216 1 +0.002418731 0.5225216 1 +0.005155668 0.5225216 1 +0.009080105 0.5225216 1 +0.01434988 0.5225216 1 +0.02107202 0.5225216 1 +0.02934285 0.5225216 1 +0.03925039 0.5225216 1 +0.05087609 0.5225216 1 +0.06429595 0.5225216 1 +0.07958143 0.5225216 1 +0.0968001 0.5225216 1 +0.1160161 0.5225216 1 +0.1372908 0.5225216 1 +0.1606827 0.5225216 1 +0.1862481 0.5225216 1 +0.2140411 0.5225216 1 +0.2441142 0.5225216 1 +0.2765176 0.5225216 1 +0.3113005 0.5225216 1 +0.3485102 0.5225216 1 +0.388193 0.5225216 1 +0.4303934 0.5225216 1 +0.4751555 0.5225216 1 +0.5225216 0.5225216 1 +0.5725335 0.5225216 1 +0.6252316 0.5225216 1 +0.6806558 0.5225216 1 +0.7388448 0.5225216 1 +0.7998369 0.5225216 1 +0.8636691 0.5225216 1 +0.9303782 0.5225216 1 +1 0.5225216 1 +0 0.5725335 1 +0.002418731 0.5725335 1 +0.005155668 0.5725335 1 +0.009080105 0.5725335 1 +0.01434988 0.5725335 1 +0.02107202 0.5725335 1 +0.02934285 0.5725335 1 +0.03925039 0.5725335 1 +0.05087609 0.5725335 1 +0.06429595 0.5725335 1 +0.07958143 0.5725335 1 +0.0968001 0.5725335 1 +0.1160161 0.5725335 1 +0.1372908 0.5725335 1 +0.1606827 0.5725335 1 +0.1862481 0.5725335 1 +0.2140411 0.5725335 1 +0.2441142 0.5725335 1 +0.2765176 0.5725335 1 +0.3113005 0.5725335 1 +0.3485102 0.5725335 1 +0.388193 0.5725335 1 +0.4303934 0.5725335 1 +0.4751555 0.5725335 1 +0.5225216 0.5725335 1 +0.5725335 0.5725335 1 +0.6252316 0.5725335 1 +0.6806558 0.5725335 1 +0.7388448 0.5725335 1 +0.7998369 0.5725335 1 +0.8636691 0.5725335 1 +0.9303782 0.5725335 1 +1 0.5725335 1 +0 0.6252316 1 +0.002418731 0.6252316 1 +0.005155668 0.6252316 1 +0.009080105 0.6252316 1 +0.01434988 0.6252316 1 +0.02107202 0.6252316 1 +0.02934285 0.6252316 1 +0.03925039 0.6252316 1 +0.05087609 0.6252316 1 +0.06429595 0.6252316 1 +0.07958143 0.6252316 1 +0.0968001 0.6252316 1 +0.1160161 0.6252316 1 +0.1372908 0.6252316 1 +0.1606827 0.6252316 1 +0.1862481 0.6252316 1 +0.2140411 0.6252316 1 +0.2441142 0.6252316 1 +0.2765176 0.6252316 1 +0.3113005 0.6252316 1 +0.3485102 0.6252316 1 +0.388193 0.6252316 1 +0.4303934 0.6252316 1 +0.4751555 0.6252316 1 +0.5225216 0.6252316 1 +0.5725335 0.6252316 1 +0.6252316 0.6252316 1 +0.6806558 0.6252316 1 +0.7388448 0.6252316 1 +0.7998369 0.6252316 1 +0.8636691 0.6252316 1 +0.9303782 0.6252316 1 +1 0.6252316 1 +0 0.6806558 1 +0.002418731 0.6806558 1 +0.005155668 0.6806558 1 +0.009080105 0.6806558 1 +0.01434988 0.6806558 1 +0.02107202 0.6806558 1 +0.02934285 0.6806558 1 +0.03925039 0.6806558 1 +0.05087609 0.6806558 1 +0.06429595 0.6806558 1 +0.07958143 0.6806558 1 +0.0968001 0.6806558 1 +0.1160161 0.6806558 1 +0.1372908 0.6806558 1 +0.1606827 0.6806558 1 +0.1862481 0.6806558 1 +0.2140411 0.6806558 1 +0.2441142 0.6806558 1 +0.2765176 0.6806558 1 +0.3113005 0.6806558 1 +0.3485102 0.6806558 1 +0.388193 0.6806558 1 +0.4303934 0.6806558 1 +0.4751555 0.6806558 1 +0.5225216 0.6806558 1 +0.5725335 0.6806558 1 +0.6252316 0.6806558 1 +0.6806558 0.6806558 1 +0.7388448 0.6806558 1 +0.7998369 0.6806558 1 +0.8636691 0.6806558 1 +0.9303782 0.6806558 1 +1 0.6806558 1 +0 0.7388448 1 +0.002418731 0.7388448 1 +0.005155668 0.7388448 1 +0.009080105 0.7388448 1 +0.01434988 0.7388448 1 +0.02107202 0.7388448 1 +0.02934285 0.7388448 1 +0.03925039 0.7388448 1 +0.05087609 0.7388448 1 +0.06429595 0.7388448 1 +0.07958143 0.7388448 1 +0.0968001 0.7388448 1 +0.1160161 0.7388448 1 +0.1372908 0.7388448 1 +0.1606827 0.7388448 1 +0.1862481 0.7388448 1 +0.2140411 0.7388448 1 +0.2441142 0.7388448 1 +0.2765176 0.7388448 1 +0.3113005 0.7388448 1 +0.3485102 0.7388448 1 +0.388193 0.7388448 1 +0.4303934 0.7388448 1 +0.4751555 0.7388448 1 +0.5225216 0.7388448 1 +0.5725335 0.7388448 1 +0.6252316 0.7388448 1 +0.6806558 0.7388448 1 +0.7388448 0.7388448 1 +0.7998369 0.7388448 1 +0.8636691 0.7388448 1 +0.9303782 0.7388448 1 +1 0.7388448 1 +0 0.7998369 1 +0.002418731 0.7998369 1 +0.005155668 0.7998369 1 +0.009080105 0.7998369 1 +0.01434988 0.7998369 1 +0.02107202 0.7998369 1 +0.02934285 0.7998369 1 +0.03925039 0.7998369 1 +0.05087609 0.7998369 1 +0.06429595 0.7998369 1 +0.07958143 0.7998369 1 +0.0968001 0.7998369 1 +0.1160161 0.7998369 1 +0.1372908 0.7998369 1 +0.1606827 0.7998369 1 +0.1862481 0.7998369 1 +0.2140411 0.7998369 1 +0.2441142 0.7998369 1 +0.2765176 0.7998369 1 +0.3113005 0.7998369 1 +0.3485102 0.7998369 1 +0.388193 0.7998369 1 +0.4303934 0.7998369 1 +0.4751555 0.7998369 1 +0.5225216 0.7998369 1 +0.5725335 0.7998369 1 +0.6252316 0.7998369 1 +0.6806558 0.7998369 1 +0.7388448 0.7998369 1 +0.7998369 0.7998369 1 +0.8636691 0.7998369 1 +0.9303782 0.7998369 1 +1 0.7998369 1 +0 0.8636691 1 +0.002418731 0.8636691 1 +0.005155668 0.8636691 1 +0.009080105 0.8636691 1 +0.01434988 0.8636691 1 +0.02107202 0.8636691 1 +0.02934285 0.8636691 1 +0.03925039 0.8636691 1 +0.05087609 0.8636691 1 +0.06429595 0.8636691 1 +0.07958143 0.8636691 1 +0.0968001 0.8636691 1 +0.1160161 0.8636691 1 +0.1372908 0.8636691 1 +0.1606827 0.8636691 1 +0.1862481 0.8636691 1 +0.2140411 0.8636691 1 +0.2441142 0.8636691 1 +0.2765176 0.8636691 1 +0.3113005 0.8636691 1 +0.3485102 0.8636691 1 +0.388193 0.8636691 1 +0.4303934 0.8636691 1 +0.4751555 0.8636691 1 +0.5225216 0.8636691 1 +0.5725335 0.8636691 1 +0.6252316 0.8636691 1 +0.6806558 0.8636691 1 +0.7388448 0.8636691 1 +0.7998369 0.8636691 1 +0.8636691 0.8636691 1 +0.9303782 0.8636691 1 +1 0.8636691 1 +0 0.9303782 1 +0.002418731 0.9303782 1 +0.005155668 0.9303782 1 +0.009080105 0.9303782 1 +0.01434988 0.9303782 1 +0.02107202 0.9303782 1 +0.02934285 0.9303782 1 +0.03925039 0.9303782 1 +0.05087609 0.9303782 1 +0.06429595 0.9303782 1 +0.07958143 0.9303782 1 +0.0968001 0.9303782 1 +0.1160161 0.9303782 1 +0.1372908 0.9303782 1 +0.1606827 0.9303782 1 +0.1862481 0.9303782 1 +0.2140411 0.9303782 1 +0.2441142 0.9303782 1 +0.2765176 0.9303782 1 +0.3113005 0.9303782 1 +0.3485102 0.9303782 1 +0.388193 0.9303782 1 +0.4303934 0.9303782 1 +0.4751555 0.9303782 1 +0.5225216 0.9303782 1 +0.5725335 0.9303782 1 +0.6252316 0.9303782 1 +0.6806558 0.9303782 1 +0.7388448 0.9303782 1 +0.7998369 0.9303782 1 +0.8636691 0.9303782 1 +0.9303782 0.9303782 1 +1 0.9303782 1 +0 1 1 +0.002418731 1 1 +0.005155668 1 1 +0.009080105 1 1 +0.01434988 1 1 +0.02107202 1 1 +0.02934285 1 1 +0.03925039 1 1 +0.05087609 1 1 +0.06429595 1 1 +0.07958143 1 1 +0.0968001 1 1 +0.1160161 1 1 +0.1372908 1 1 +0.1606827 1 1 +0.1862481 1 1 +0.2140411 1 1 +0.2441142 1 1 +0.2765176 1 1 +0.3113005 1 1 +0.3485102 1 1 +0.388193 1 1 +0.4303934 1 1 +0.4751555 1 1 +0.5225216 1 1 +0.5725335 1 1 +0.6252316 1 1 +0.6806558 1 1 +0.7388448 1 1 +0.7998369 1 1 +0.8636691 1 1 +0.9303782 1 1 +1 1 1 diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/sRGB to Linear r1.cube.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/sRGB to Linear r1.cube.meta new file mode 100644 index 0000000..4c0ef22 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/sRGB to Linear r1.cube.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bb2cdc36291ad714aaca8f440c16c51e +timeCreated: 1496826837 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/sRGB to Unity Log r1.cube b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/sRGB to Unity Log r1.cube new file mode 100644 index 0000000..47ba1f8 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/sRGB to Unity Log r1.cube @@ -0,0 +1,35941 @@ +TITLE "sRGB to Unity Log r1" +LUT_3D_SIZE 33 +DOMAIN_MIN 0 0 0 +DOMAIN_MAX 1 1 1 +0.092819 0.092819 0.092819 +0.1056428 0.092819 0.092819 +0.1201537 0.092819 0.092819 +0.1409607 0.092819 0.092819 +0.1678172 0.092819 0.092819 +0.1950164 0.092819 0.092819 +0.2210581 0.092819 0.092819 +0.245636 0.092819 0.092819 +0.2686816 0.092819 0.092819 +0.2902431 0.092819 0.092819 +0.3104189 0.092819 0.092819 +0.3293248 0.092819 0.092819 +0.3470774 0.092819 0.092819 +0.3637862 0.092819 0.092819 +0.3795513 0.092819 0.092819 +0.3944623 0.092819 0.092819 +0.4085988 0.092819 0.092819 +0.4220313 0.092819 0.092819 +0.4348222 0.092819 0.092819 +0.4470264 0.092819 0.092819 +0.4586928 0.092819 0.092819 +0.4698649 0.092819 0.092819 +0.4805811 0.092819 0.092819 +0.490876 0.092819 0.092819 +0.5007803 0.092819 0.092819 +0.510322 0.092819 0.092819 +0.5195258 0.092819 0.092819 +0.5284142 0.092819 0.092819 +0.5370079 0.092819 0.092819 +0.5453253 0.092819 0.092819 +0.5533834 0.092819 0.092819 +0.5611974 0.092819 0.092819 +0.5687816 0.092819 0.092819 +0.092819 0.1056428 0.092819 +0.1056428 0.1056428 0.092819 +0.1201537 0.1056428 0.092819 +0.1409607 0.1056428 0.092819 +0.1678172 0.1056428 0.092819 +0.1950164 0.1056428 0.092819 +0.2210581 0.1056428 0.092819 +0.245636 0.1056428 0.092819 +0.2686816 0.1056428 0.092819 +0.2902431 0.1056428 0.092819 +0.3104189 0.1056428 0.092819 +0.3293248 0.1056428 0.092819 +0.3470774 0.1056428 0.092819 +0.3637862 0.1056428 0.092819 +0.3795513 0.1056428 0.092819 +0.3944623 0.1056428 0.092819 +0.4085988 0.1056428 0.092819 +0.4220313 0.1056428 0.092819 +0.4348222 0.1056428 0.092819 +0.4470264 0.1056428 0.092819 +0.4586928 0.1056428 0.092819 +0.4698649 0.1056428 0.092819 +0.4805811 0.1056428 0.092819 +0.490876 0.1056428 0.092819 +0.5007803 0.1056428 0.092819 +0.510322 0.1056428 0.092819 +0.5195258 0.1056428 0.092819 +0.5284142 0.1056428 0.092819 +0.5370079 0.1056428 0.092819 +0.5453253 0.1056428 0.092819 +0.5533834 0.1056428 0.092819 +0.5611974 0.1056428 0.092819 +0.5687816 0.1056428 0.092819 +0.092819 0.1201537 0.092819 +0.1056428 0.1201537 0.092819 +0.1201537 0.1201537 0.092819 +0.1409607 0.1201537 0.092819 +0.1678172 0.1201537 0.092819 +0.1950164 0.1201537 0.092819 +0.2210581 0.1201537 0.092819 +0.245636 0.1201537 0.092819 +0.2686816 0.1201537 0.092819 +0.2902431 0.1201537 0.092819 +0.3104189 0.1201537 0.092819 +0.3293248 0.1201537 0.092819 +0.3470774 0.1201537 0.092819 +0.3637862 0.1201537 0.092819 +0.3795513 0.1201537 0.092819 +0.3944623 0.1201537 0.092819 +0.4085988 0.1201537 0.092819 +0.4220313 0.1201537 0.092819 +0.4348222 0.1201537 0.092819 +0.4470264 0.1201537 0.092819 +0.4586928 0.1201537 0.092819 +0.4698649 0.1201537 0.092819 +0.4805811 0.1201537 0.092819 +0.490876 0.1201537 0.092819 +0.5007803 0.1201537 0.092819 +0.510322 0.1201537 0.092819 +0.5195258 0.1201537 0.092819 +0.5284142 0.1201537 0.092819 +0.5370079 0.1201537 0.092819 +0.5453253 0.1201537 0.092819 +0.5533834 0.1201537 0.092819 +0.5611974 0.1201537 0.092819 +0.5687816 0.1201537 0.092819 +0.092819 0.1409607 0.092819 +0.1056428 0.1409607 0.092819 +0.1201537 0.1409607 0.092819 +0.1409607 0.1409607 0.092819 +0.1678172 0.1409607 0.092819 +0.1950164 0.1409607 0.092819 +0.2210581 0.1409607 0.092819 +0.245636 0.1409607 0.092819 +0.2686816 0.1409607 0.092819 +0.2902431 0.1409607 0.092819 +0.3104189 0.1409607 0.092819 +0.3293248 0.1409607 0.092819 +0.3470774 0.1409607 0.092819 +0.3637862 0.1409607 0.092819 +0.3795513 0.1409607 0.092819 +0.3944623 0.1409607 0.092819 +0.4085988 0.1409607 0.092819 +0.4220313 0.1409607 0.092819 +0.4348222 0.1409607 0.092819 +0.4470264 0.1409607 0.092819 +0.4586928 0.1409607 0.092819 +0.4698649 0.1409607 0.092819 +0.4805811 0.1409607 0.092819 +0.490876 0.1409607 0.092819 +0.5007803 0.1409607 0.092819 +0.510322 0.1409607 0.092819 +0.5195258 0.1409607 0.092819 +0.5284142 0.1409607 0.092819 +0.5370079 0.1409607 0.092819 +0.5453253 0.1409607 0.092819 +0.5533834 0.1409607 0.092819 +0.5611974 0.1409607 0.092819 +0.5687816 0.1409607 0.092819 +0.092819 0.1678172 0.092819 +0.1056428 0.1678172 0.092819 +0.1201537 0.1678172 0.092819 +0.1409607 0.1678172 0.092819 +0.1678172 0.1678172 0.092819 +0.1950164 0.1678172 0.092819 +0.2210581 0.1678172 0.092819 +0.245636 0.1678172 0.092819 +0.2686816 0.1678172 0.092819 +0.2902431 0.1678172 0.092819 +0.3104189 0.1678172 0.092819 +0.3293248 0.1678172 0.092819 +0.3470774 0.1678172 0.092819 +0.3637862 0.1678172 0.092819 +0.3795513 0.1678172 0.092819 +0.3944623 0.1678172 0.092819 +0.4085988 0.1678172 0.092819 +0.4220313 0.1678172 0.092819 +0.4348222 0.1678172 0.092819 +0.4470264 0.1678172 0.092819 +0.4586928 0.1678172 0.092819 +0.4698649 0.1678172 0.092819 +0.4805811 0.1678172 0.092819 +0.490876 0.1678172 0.092819 +0.5007803 0.1678172 0.092819 +0.510322 0.1678172 0.092819 +0.5195258 0.1678172 0.092819 +0.5284142 0.1678172 0.092819 +0.5370079 0.1678172 0.092819 +0.5453253 0.1678172 0.092819 +0.5533834 0.1678172 0.092819 +0.5611974 0.1678172 0.092819 +0.5687816 0.1678172 0.092819 +0.092819 0.1950164 0.092819 +0.1056428 0.1950164 0.092819 +0.1201537 0.1950164 0.092819 +0.1409607 0.1950164 0.092819 +0.1678172 0.1950164 0.092819 +0.1950164 0.1950164 0.092819 +0.2210581 0.1950164 0.092819 +0.245636 0.1950164 0.092819 +0.2686816 0.1950164 0.092819 +0.2902431 0.1950164 0.092819 +0.3104189 0.1950164 0.092819 +0.3293248 0.1950164 0.092819 +0.3470774 0.1950164 0.092819 +0.3637862 0.1950164 0.092819 +0.3795513 0.1950164 0.092819 +0.3944623 0.1950164 0.092819 +0.4085988 0.1950164 0.092819 +0.4220313 0.1950164 0.092819 +0.4348222 0.1950164 0.092819 +0.4470264 0.1950164 0.092819 +0.4586928 0.1950164 0.092819 +0.4698649 0.1950164 0.092819 +0.4805811 0.1950164 0.092819 +0.490876 0.1950164 0.092819 +0.5007803 0.1950164 0.092819 +0.510322 0.1950164 0.092819 +0.5195258 0.1950164 0.092819 +0.5284142 0.1950164 0.092819 +0.5370079 0.1950164 0.092819 +0.5453253 0.1950164 0.092819 +0.5533834 0.1950164 0.092819 +0.5611974 0.1950164 0.092819 +0.5687816 0.1950164 0.092819 +0.092819 0.2210581 0.092819 +0.1056428 0.2210581 0.092819 +0.1201537 0.2210581 0.092819 +0.1409607 0.2210581 0.092819 +0.1678172 0.2210581 0.092819 +0.1950164 0.2210581 0.092819 +0.2210581 0.2210581 0.092819 +0.245636 0.2210581 0.092819 +0.2686816 0.2210581 0.092819 +0.2902431 0.2210581 0.092819 +0.3104189 0.2210581 0.092819 +0.3293248 0.2210581 0.092819 +0.3470774 0.2210581 0.092819 +0.3637862 0.2210581 0.092819 +0.3795513 0.2210581 0.092819 +0.3944623 0.2210581 0.092819 +0.4085988 0.2210581 0.092819 +0.4220313 0.2210581 0.092819 +0.4348222 0.2210581 0.092819 +0.4470264 0.2210581 0.092819 +0.4586928 0.2210581 0.092819 +0.4698649 0.2210581 0.092819 +0.4805811 0.2210581 0.092819 +0.490876 0.2210581 0.092819 +0.5007803 0.2210581 0.092819 +0.510322 0.2210581 0.092819 +0.5195258 0.2210581 0.092819 +0.5284142 0.2210581 0.092819 +0.5370079 0.2210581 0.092819 +0.5453253 0.2210581 0.092819 +0.5533834 0.2210581 0.092819 +0.5611974 0.2210581 0.092819 +0.5687816 0.2210581 0.092819 +0.092819 0.245636 0.092819 +0.1056428 0.245636 0.092819 +0.1201537 0.245636 0.092819 +0.1409607 0.245636 0.092819 +0.1678172 0.245636 0.092819 +0.1950164 0.245636 0.092819 +0.2210581 0.245636 0.092819 +0.245636 0.245636 0.092819 +0.2686816 0.245636 0.092819 +0.2902431 0.245636 0.092819 +0.3104189 0.245636 0.092819 +0.3293248 0.245636 0.092819 +0.3470774 0.245636 0.092819 +0.3637862 0.245636 0.092819 +0.3795513 0.245636 0.092819 +0.3944623 0.245636 0.092819 +0.4085988 0.245636 0.092819 +0.4220313 0.245636 0.092819 +0.4348222 0.245636 0.092819 +0.4470264 0.245636 0.092819 +0.4586928 0.245636 0.092819 +0.4698649 0.245636 0.092819 +0.4805811 0.245636 0.092819 +0.490876 0.245636 0.092819 +0.5007803 0.245636 0.092819 +0.510322 0.245636 0.092819 +0.5195258 0.245636 0.092819 +0.5284142 0.245636 0.092819 +0.5370079 0.245636 0.092819 +0.5453253 0.245636 0.092819 +0.5533834 0.245636 0.092819 +0.5611974 0.245636 0.092819 +0.5687816 0.245636 0.092819 +0.092819 0.2686816 0.092819 +0.1056428 0.2686816 0.092819 +0.1201537 0.2686816 0.092819 +0.1409607 0.2686816 0.092819 +0.1678172 0.2686816 0.092819 +0.1950164 0.2686816 0.092819 +0.2210581 0.2686816 0.092819 +0.245636 0.2686816 0.092819 +0.2686816 0.2686816 0.092819 +0.2902431 0.2686816 0.092819 +0.3104189 0.2686816 0.092819 +0.3293248 0.2686816 0.092819 +0.3470774 0.2686816 0.092819 +0.3637862 0.2686816 0.092819 +0.3795513 0.2686816 0.092819 +0.3944623 0.2686816 0.092819 +0.4085988 0.2686816 0.092819 +0.4220313 0.2686816 0.092819 +0.4348222 0.2686816 0.092819 +0.4470264 0.2686816 0.092819 +0.4586928 0.2686816 0.092819 +0.4698649 0.2686816 0.092819 +0.4805811 0.2686816 0.092819 +0.490876 0.2686816 0.092819 +0.5007803 0.2686816 0.092819 +0.510322 0.2686816 0.092819 +0.5195258 0.2686816 0.092819 +0.5284142 0.2686816 0.092819 +0.5370079 0.2686816 0.092819 +0.5453253 0.2686816 0.092819 +0.5533834 0.2686816 0.092819 +0.5611974 0.2686816 0.092819 +0.5687816 0.2686816 0.092819 +0.092819 0.2902431 0.092819 +0.1056428 0.2902431 0.092819 +0.1201537 0.2902431 0.092819 +0.1409607 0.2902431 0.092819 +0.1678172 0.2902431 0.092819 +0.1950164 0.2902431 0.092819 +0.2210581 0.2902431 0.092819 +0.245636 0.2902431 0.092819 +0.2686816 0.2902431 0.092819 +0.2902431 0.2902431 0.092819 +0.3104189 0.2902431 0.092819 +0.3293248 0.2902431 0.092819 +0.3470774 0.2902431 0.092819 +0.3637862 0.2902431 0.092819 +0.3795513 0.2902431 0.092819 +0.3944623 0.2902431 0.092819 +0.4085988 0.2902431 0.092819 +0.4220313 0.2902431 0.092819 +0.4348222 0.2902431 0.092819 +0.4470264 0.2902431 0.092819 +0.4586928 0.2902431 0.092819 +0.4698649 0.2902431 0.092819 +0.4805811 0.2902431 0.092819 +0.490876 0.2902431 0.092819 +0.5007803 0.2902431 0.092819 +0.510322 0.2902431 0.092819 +0.5195258 0.2902431 0.092819 +0.5284142 0.2902431 0.092819 +0.5370079 0.2902431 0.092819 +0.5453253 0.2902431 0.092819 +0.5533834 0.2902431 0.092819 +0.5611974 0.2902431 0.092819 +0.5687816 0.2902431 0.092819 +0.092819 0.3104189 0.092819 +0.1056428 0.3104189 0.092819 +0.1201537 0.3104189 0.092819 +0.1409607 0.3104189 0.092819 +0.1678172 0.3104189 0.092819 +0.1950164 0.3104189 0.092819 +0.2210581 0.3104189 0.092819 +0.245636 0.3104189 0.092819 +0.2686816 0.3104189 0.092819 +0.2902431 0.3104189 0.092819 +0.3104189 0.3104189 0.092819 +0.3293248 0.3104189 0.092819 +0.3470774 0.3104189 0.092819 +0.3637862 0.3104189 0.092819 +0.3795513 0.3104189 0.092819 +0.3944623 0.3104189 0.092819 +0.4085988 0.3104189 0.092819 +0.4220313 0.3104189 0.092819 +0.4348222 0.3104189 0.092819 +0.4470264 0.3104189 0.092819 +0.4586928 0.3104189 0.092819 +0.4698649 0.3104189 0.092819 +0.4805811 0.3104189 0.092819 +0.490876 0.3104189 0.092819 +0.5007803 0.3104189 0.092819 +0.510322 0.3104189 0.092819 +0.5195258 0.3104189 0.092819 +0.5284142 0.3104189 0.092819 +0.5370079 0.3104189 0.092819 +0.5453253 0.3104189 0.092819 +0.5533834 0.3104189 0.092819 +0.5611974 0.3104189 0.092819 +0.5687816 0.3104189 0.092819 +0.092819 0.3293248 0.092819 +0.1056428 0.3293248 0.092819 +0.1201537 0.3293248 0.092819 +0.1409607 0.3293248 0.092819 +0.1678172 0.3293248 0.092819 +0.1950164 0.3293248 0.092819 +0.2210581 0.3293248 0.092819 +0.245636 0.3293248 0.092819 +0.2686816 0.3293248 0.092819 +0.2902431 0.3293248 0.092819 +0.3104189 0.3293248 0.092819 +0.3293248 0.3293248 0.092819 +0.3470774 0.3293248 0.092819 +0.3637862 0.3293248 0.092819 +0.3795513 0.3293248 0.092819 +0.3944623 0.3293248 0.092819 +0.4085988 0.3293248 0.092819 +0.4220313 0.3293248 0.092819 +0.4348222 0.3293248 0.092819 +0.4470264 0.3293248 0.092819 +0.4586928 0.3293248 0.092819 +0.4698649 0.3293248 0.092819 +0.4805811 0.3293248 0.092819 +0.490876 0.3293248 0.092819 +0.5007803 0.3293248 0.092819 +0.510322 0.3293248 0.092819 +0.5195258 0.3293248 0.092819 +0.5284142 0.3293248 0.092819 +0.5370079 0.3293248 0.092819 +0.5453253 0.3293248 0.092819 +0.5533834 0.3293248 0.092819 +0.5611974 0.3293248 0.092819 +0.5687816 0.3293248 0.092819 +0.092819 0.3470774 0.092819 +0.1056428 0.3470774 0.092819 +0.1201537 0.3470774 0.092819 +0.1409607 0.3470774 0.092819 +0.1678172 0.3470774 0.092819 +0.1950164 0.3470774 0.092819 +0.2210581 0.3470774 0.092819 +0.245636 0.3470774 0.092819 +0.2686816 0.3470774 0.092819 +0.2902431 0.3470774 0.092819 +0.3104189 0.3470774 0.092819 +0.3293248 0.3470774 0.092819 +0.3470774 0.3470774 0.092819 +0.3637862 0.3470774 0.092819 +0.3795513 0.3470774 0.092819 +0.3944623 0.3470774 0.092819 +0.4085988 0.3470774 0.092819 +0.4220313 0.3470774 0.092819 +0.4348222 0.3470774 0.092819 +0.4470264 0.3470774 0.092819 +0.4586928 0.3470774 0.092819 +0.4698649 0.3470774 0.092819 +0.4805811 0.3470774 0.092819 +0.490876 0.3470774 0.092819 +0.5007803 0.3470774 0.092819 +0.510322 0.3470774 0.092819 +0.5195258 0.3470774 0.092819 +0.5284142 0.3470774 0.092819 +0.5370079 0.3470774 0.092819 +0.5453253 0.3470774 0.092819 +0.5533834 0.3470774 0.092819 +0.5611974 0.3470774 0.092819 +0.5687816 0.3470774 0.092819 +0.092819 0.3637862 0.092819 +0.1056428 0.3637862 0.092819 +0.1201537 0.3637862 0.092819 +0.1409607 0.3637862 0.092819 +0.1678172 0.3637862 0.092819 +0.1950164 0.3637862 0.092819 +0.2210581 0.3637862 0.092819 +0.245636 0.3637862 0.092819 +0.2686816 0.3637862 0.092819 +0.2902431 0.3637862 0.092819 +0.3104189 0.3637862 0.092819 +0.3293248 0.3637862 0.092819 +0.3470774 0.3637862 0.092819 +0.3637862 0.3637862 0.092819 +0.3795513 0.3637862 0.092819 +0.3944623 0.3637862 0.092819 +0.4085988 0.3637862 0.092819 +0.4220313 0.3637862 0.092819 +0.4348222 0.3637862 0.092819 +0.4470264 0.3637862 0.092819 +0.4586928 0.3637862 0.092819 +0.4698649 0.3637862 0.092819 +0.4805811 0.3637862 0.092819 +0.490876 0.3637862 0.092819 +0.5007803 0.3637862 0.092819 +0.510322 0.3637862 0.092819 +0.5195258 0.3637862 0.092819 +0.5284142 0.3637862 0.092819 +0.5370079 0.3637862 0.092819 +0.5453253 0.3637862 0.092819 +0.5533834 0.3637862 0.092819 +0.5611974 0.3637862 0.092819 +0.5687816 0.3637862 0.092819 +0.092819 0.3795513 0.092819 +0.1056428 0.3795513 0.092819 +0.1201537 0.3795513 0.092819 +0.1409607 0.3795513 0.092819 +0.1678172 0.3795513 0.092819 +0.1950164 0.3795513 0.092819 +0.2210581 0.3795513 0.092819 +0.245636 0.3795513 0.092819 +0.2686816 0.3795513 0.092819 +0.2902431 0.3795513 0.092819 +0.3104189 0.3795513 0.092819 +0.3293248 0.3795513 0.092819 +0.3470774 0.3795513 0.092819 +0.3637862 0.3795513 0.092819 +0.3795513 0.3795513 0.092819 +0.3944623 0.3795513 0.092819 +0.4085988 0.3795513 0.092819 +0.4220313 0.3795513 0.092819 +0.4348222 0.3795513 0.092819 +0.4470264 0.3795513 0.092819 +0.4586928 0.3795513 0.092819 +0.4698649 0.3795513 0.092819 +0.4805811 0.3795513 0.092819 +0.490876 0.3795513 0.092819 +0.5007803 0.3795513 0.092819 +0.510322 0.3795513 0.092819 +0.5195258 0.3795513 0.092819 +0.5284142 0.3795513 0.092819 +0.5370079 0.3795513 0.092819 +0.5453253 0.3795513 0.092819 +0.5533834 0.3795513 0.092819 +0.5611974 0.3795513 0.092819 +0.5687816 0.3795513 0.092819 +0.092819 0.3944623 0.092819 +0.1056428 0.3944623 0.092819 +0.1201537 0.3944623 0.092819 +0.1409607 0.3944623 0.092819 +0.1678172 0.3944623 0.092819 +0.1950164 0.3944623 0.092819 +0.2210581 0.3944623 0.092819 +0.245636 0.3944623 0.092819 +0.2686816 0.3944623 0.092819 +0.2902431 0.3944623 0.092819 +0.3104189 0.3944623 0.092819 +0.3293248 0.3944623 0.092819 +0.3470774 0.3944623 0.092819 +0.3637862 0.3944623 0.092819 +0.3795513 0.3944623 0.092819 +0.3944623 0.3944623 0.092819 +0.4085988 0.3944623 0.092819 +0.4220313 0.3944623 0.092819 +0.4348222 0.3944623 0.092819 +0.4470264 0.3944623 0.092819 +0.4586928 0.3944623 0.092819 +0.4698649 0.3944623 0.092819 +0.4805811 0.3944623 0.092819 +0.490876 0.3944623 0.092819 +0.5007803 0.3944623 0.092819 +0.510322 0.3944623 0.092819 +0.5195258 0.3944623 0.092819 +0.5284142 0.3944623 0.092819 +0.5370079 0.3944623 0.092819 +0.5453253 0.3944623 0.092819 +0.5533834 0.3944623 0.092819 +0.5611974 0.3944623 0.092819 +0.5687816 0.3944623 0.092819 +0.092819 0.4085988 0.092819 +0.1056428 0.4085988 0.092819 +0.1201537 0.4085988 0.092819 +0.1409607 0.4085988 0.092819 +0.1678172 0.4085988 0.092819 +0.1950164 0.4085988 0.092819 +0.2210581 0.4085988 0.092819 +0.245636 0.4085988 0.092819 +0.2686816 0.4085988 0.092819 +0.2902431 0.4085988 0.092819 +0.3104189 0.4085988 0.092819 +0.3293248 0.4085988 0.092819 +0.3470774 0.4085988 0.092819 +0.3637862 0.4085988 0.092819 +0.3795513 0.4085988 0.092819 +0.3944623 0.4085988 0.092819 +0.4085988 0.4085988 0.092819 +0.4220313 0.4085988 0.092819 +0.4348222 0.4085988 0.092819 +0.4470264 0.4085988 0.092819 +0.4586928 0.4085988 0.092819 +0.4698649 0.4085988 0.092819 +0.4805811 0.4085988 0.092819 +0.490876 0.4085988 0.092819 +0.5007803 0.4085988 0.092819 +0.510322 0.4085988 0.092819 +0.5195258 0.4085988 0.092819 +0.5284142 0.4085988 0.092819 +0.5370079 0.4085988 0.092819 +0.5453253 0.4085988 0.092819 +0.5533834 0.4085988 0.092819 +0.5611974 0.4085988 0.092819 +0.5687816 0.4085988 0.092819 +0.092819 0.4220313 0.092819 +0.1056428 0.4220313 0.092819 +0.1201537 0.4220313 0.092819 +0.1409607 0.4220313 0.092819 +0.1678172 0.4220313 0.092819 +0.1950164 0.4220313 0.092819 +0.2210581 0.4220313 0.092819 +0.245636 0.4220313 0.092819 +0.2686816 0.4220313 0.092819 +0.2902431 0.4220313 0.092819 +0.3104189 0.4220313 0.092819 +0.3293248 0.4220313 0.092819 +0.3470774 0.4220313 0.092819 +0.3637862 0.4220313 0.092819 +0.3795513 0.4220313 0.092819 +0.3944623 0.4220313 0.092819 +0.4085988 0.4220313 0.092819 +0.4220313 0.4220313 0.092819 +0.4348222 0.4220313 0.092819 +0.4470264 0.4220313 0.092819 +0.4586928 0.4220313 0.092819 +0.4698649 0.4220313 0.092819 +0.4805811 0.4220313 0.092819 +0.490876 0.4220313 0.092819 +0.5007803 0.4220313 0.092819 +0.510322 0.4220313 0.092819 +0.5195258 0.4220313 0.092819 +0.5284142 0.4220313 0.092819 +0.5370079 0.4220313 0.092819 +0.5453253 0.4220313 0.092819 +0.5533834 0.4220313 0.092819 +0.5611974 0.4220313 0.092819 +0.5687816 0.4220313 0.092819 +0.092819 0.4348222 0.092819 +0.1056428 0.4348222 0.092819 +0.1201537 0.4348222 0.092819 +0.1409607 0.4348222 0.092819 +0.1678172 0.4348222 0.092819 +0.1950164 0.4348222 0.092819 +0.2210581 0.4348222 0.092819 +0.245636 0.4348222 0.092819 +0.2686816 0.4348222 0.092819 +0.2902431 0.4348222 0.092819 +0.3104189 0.4348222 0.092819 +0.3293248 0.4348222 0.092819 +0.3470774 0.4348222 0.092819 +0.3637862 0.4348222 0.092819 +0.3795513 0.4348222 0.092819 +0.3944623 0.4348222 0.092819 +0.4085988 0.4348222 0.092819 +0.4220313 0.4348222 0.092819 +0.4348222 0.4348222 0.092819 +0.4470264 0.4348222 0.092819 +0.4586928 0.4348222 0.092819 +0.4698649 0.4348222 0.092819 +0.4805811 0.4348222 0.092819 +0.490876 0.4348222 0.092819 +0.5007803 0.4348222 0.092819 +0.510322 0.4348222 0.092819 +0.5195258 0.4348222 0.092819 +0.5284142 0.4348222 0.092819 +0.5370079 0.4348222 0.092819 +0.5453253 0.4348222 0.092819 +0.5533834 0.4348222 0.092819 +0.5611974 0.4348222 0.092819 +0.5687816 0.4348222 0.092819 +0.092819 0.4470264 0.092819 +0.1056428 0.4470264 0.092819 +0.1201537 0.4470264 0.092819 +0.1409607 0.4470264 0.092819 +0.1678172 0.4470264 0.092819 +0.1950164 0.4470264 0.092819 +0.2210581 0.4470264 0.092819 +0.245636 0.4470264 0.092819 +0.2686816 0.4470264 0.092819 +0.2902431 0.4470264 0.092819 +0.3104189 0.4470264 0.092819 +0.3293248 0.4470264 0.092819 +0.3470774 0.4470264 0.092819 +0.3637862 0.4470264 0.092819 +0.3795513 0.4470264 0.092819 +0.3944623 0.4470264 0.092819 +0.4085988 0.4470264 0.092819 +0.4220313 0.4470264 0.092819 +0.4348222 0.4470264 0.092819 +0.4470264 0.4470264 0.092819 +0.4586928 0.4470264 0.092819 +0.4698649 0.4470264 0.092819 +0.4805811 0.4470264 0.092819 +0.490876 0.4470264 0.092819 +0.5007803 0.4470264 0.092819 +0.510322 0.4470264 0.092819 +0.5195258 0.4470264 0.092819 +0.5284142 0.4470264 0.092819 +0.5370079 0.4470264 0.092819 +0.5453253 0.4470264 0.092819 +0.5533834 0.4470264 0.092819 +0.5611974 0.4470264 0.092819 +0.5687816 0.4470264 0.092819 +0.092819 0.4586928 0.092819 +0.1056428 0.4586928 0.092819 +0.1201537 0.4586928 0.092819 +0.1409607 0.4586928 0.092819 +0.1678172 0.4586928 0.092819 +0.1950164 0.4586928 0.092819 +0.2210581 0.4586928 0.092819 +0.245636 0.4586928 0.092819 +0.2686816 0.4586928 0.092819 +0.2902431 0.4586928 0.092819 +0.3104189 0.4586928 0.092819 +0.3293248 0.4586928 0.092819 +0.3470774 0.4586928 0.092819 +0.3637862 0.4586928 0.092819 +0.3795513 0.4586928 0.092819 +0.3944623 0.4586928 0.092819 +0.4085988 0.4586928 0.092819 +0.4220313 0.4586928 0.092819 +0.4348222 0.4586928 0.092819 +0.4470264 0.4586928 0.092819 +0.4586928 0.4586928 0.092819 +0.4698649 0.4586928 0.092819 +0.4805811 0.4586928 0.092819 +0.490876 0.4586928 0.092819 +0.5007803 0.4586928 0.092819 +0.510322 0.4586928 0.092819 +0.5195258 0.4586928 0.092819 +0.5284142 0.4586928 0.092819 +0.5370079 0.4586928 0.092819 +0.5453253 0.4586928 0.092819 +0.5533834 0.4586928 0.092819 +0.5611974 0.4586928 0.092819 +0.5687816 0.4586928 0.092819 +0.092819 0.4698649 0.092819 +0.1056428 0.4698649 0.092819 +0.1201537 0.4698649 0.092819 +0.1409607 0.4698649 0.092819 +0.1678172 0.4698649 0.092819 +0.1950164 0.4698649 0.092819 +0.2210581 0.4698649 0.092819 +0.245636 0.4698649 0.092819 +0.2686816 0.4698649 0.092819 +0.2902431 0.4698649 0.092819 +0.3104189 0.4698649 0.092819 +0.3293248 0.4698649 0.092819 +0.3470774 0.4698649 0.092819 +0.3637862 0.4698649 0.092819 +0.3795513 0.4698649 0.092819 +0.3944623 0.4698649 0.092819 +0.4085988 0.4698649 0.092819 +0.4220313 0.4698649 0.092819 +0.4348222 0.4698649 0.092819 +0.4470264 0.4698649 0.092819 +0.4586928 0.4698649 0.092819 +0.4698649 0.4698649 0.092819 +0.4805811 0.4698649 0.092819 +0.490876 0.4698649 0.092819 +0.5007803 0.4698649 0.092819 +0.510322 0.4698649 0.092819 +0.5195258 0.4698649 0.092819 +0.5284142 0.4698649 0.092819 +0.5370079 0.4698649 0.092819 +0.5453253 0.4698649 0.092819 +0.5533834 0.4698649 0.092819 +0.5611974 0.4698649 0.092819 +0.5687816 0.4698649 0.092819 +0.092819 0.4805811 0.092819 +0.1056428 0.4805811 0.092819 +0.1201537 0.4805811 0.092819 +0.1409607 0.4805811 0.092819 +0.1678172 0.4805811 0.092819 +0.1950164 0.4805811 0.092819 +0.2210581 0.4805811 0.092819 +0.245636 0.4805811 0.092819 +0.2686816 0.4805811 0.092819 +0.2902431 0.4805811 0.092819 +0.3104189 0.4805811 0.092819 +0.3293248 0.4805811 0.092819 +0.3470774 0.4805811 0.092819 +0.3637862 0.4805811 0.092819 +0.3795513 0.4805811 0.092819 +0.3944623 0.4805811 0.092819 +0.4085988 0.4805811 0.092819 +0.4220313 0.4805811 0.092819 +0.4348222 0.4805811 0.092819 +0.4470264 0.4805811 0.092819 +0.4586928 0.4805811 0.092819 +0.4698649 0.4805811 0.092819 +0.4805811 0.4805811 0.092819 +0.490876 0.4805811 0.092819 +0.5007803 0.4805811 0.092819 +0.510322 0.4805811 0.092819 +0.5195258 0.4805811 0.092819 +0.5284142 0.4805811 0.092819 +0.5370079 0.4805811 0.092819 +0.5453253 0.4805811 0.092819 +0.5533834 0.4805811 0.092819 +0.5611974 0.4805811 0.092819 +0.5687816 0.4805811 0.092819 +0.092819 0.490876 0.092819 +0.1056428 0.490876 0.092819 +0.1201537 0.490876 0.092819 +0.1409607 0.490876 0.092819 +0.1678172 0.490876 0.092819 +0.1950164 0.490876 0.092819 +0.2210581 0.490876 0.092819 +0.245636 0.490876 0.092819 +0.2686816 0.490876 0.092819 +0.2902431 0.490876 0.092819 +0.3104189 0.490876 0.092819 +0.3293248 0.490876 0.092819 +0.3470774 0.490876 0.092819 +0.3637862 0.490876 0.092819 +0.3795513 0.490876 0.092819 +0.3944623 0.490876 0.092819 +0.4085988 0.490876 0.092819 +0.4220313 0.490876 0.092819 +0.4348222 0.490876 0.092819 +0.4470264 0.490876 0.092819 +0.4586928 0.490876 0.092819 +0.4698649 0.490876 0.092819 +0.4805811 0.490876 0.092819 +0.490876 0.490876 0.092819 +0.5007803 0.490876 0.092819 +0.510322 0.490876 0.092819 +0.5195258 0.490876 0.092819 +0.5284142 0.490876 0.092819 +0.5370079 0.490876 0.092819 +0.5453253 0.490876 0.092819 +0.5533834 0.490876 0.092819 +0.5611974 0.490876 0.092819 +0.5687816 0.490876 0.092819 +0.092819 0.5007803 0.092819 +0.1056428 0.5007803 0.092819 +0.1201537 0.5007803 0.092819 +0.1409607 0.5007803 0.092819 +0.1678172 0.5007803 0.092819 +0.1950164 0.5007803 0.092819 +0.2210581 0.5007803 0.092819 +0.245636 0.5007803 0.092819 +0.2686816 0.5007803 0.092819 +0.2902431 0.5007803 0.092819 +0.3104189 0.5007803 0.092819 +0.3293248 0.5007803 0.092819 +0.3470774 0.5007803 0.092819 +0.3637862 0.5007803 0.092819 +0.3795513 0.5007803 0.092819 +0.3944623 0.5007803 0.092819 +0.4085988 0.5007803 0.092819 +0.4220313 0.5007803 0.092819 +0.4348222 0.5007803 0.092819 +0.4470264 0.5007803 0.092819 +0.4586928 0.5007803 0.092819 +0.4698649 0.5007803 0.092819 +0.4805811 0.5007803 0.092819 +0.490876 0.5007803 0.092819 +0.5007803 0.5007803 0.092819 +0.510322 0.5007803 0.092819 +0.5195258 0.5007803 0.092819 +0.5284142 0.5007803 0.092819 +0.5370079 0.5007803 0.092819 +0.5453253 0.5007803 0.092819 +0.5533834 0.5007803 0.092819 +0.5611974 0.5007803 0.092819 +0.5687816 0.5007803 0.092819 +0.092819 0.510322 0.092819 +0.1056428 0.510322 0.092819 +0.1201537 0.510322 0.092819 +0.1409607 0.510322 0.092819 +0.1678172 0.510322 0.092819 +0.1950164 0.510322 0.092819 +0.2210581 0.510322 0.092819 +0.245636 0.510322 0.092819 +0.2686816 0.510322 0.092819 +0.2902431 0.510322 0.092819 +0.3104189 0.510322 0.092819 +0.3293248 0.510322 0.092819 +0.3470774 0.510322 0.092819 +0.3637862 0.510322 0.092819 +0.3795513 0.510322 0.092819 +0.3944623 0.510322 0.092819 +0.4085988 0.510322 0.092819 +0.4220313 0.510322 0.092819 +0.4348222 0.510322 0.092819 +0.4470264 0.510322 0.092819 +0.4586928 0.510322 0.092819 +0.4698649 0.510322 0.092819 +0.4805811 0.510322 0.092819 +0.490876 0.510322 0.092819 +0.5007803 0.510322 0.092819 +0.510322 0.510322 0.092819 +0.5195258 0.510322 0.092819 +0.5284142 0.510322 0.092819 +0.5370079 0.510322 0.092819 +0.5453253 0.510322 0.092819 +0.5533834 0.510322 0.092819 +0.5611974 0.510322 0.092819 +0.5687816 0.510322 0.092819 +0.092819 0.5195258 0.092819 +0.1056428 0.5195258 0.092819 +0.1201537 0.5195258 0.092819 +0.1409607 0.5195258 0.092819 +0.1678172 0.5195258 0.092819 +0.1950164 0.5195258 0.092819 +0.2210581 0.5195258 0.092819 +0.245636 0.5195258 0.092819 +0.2686816 0.5195258 0.092819 +0.2902431 0.5195258 0.092819 +0.3104189 0.5195258 0.092819 +0.3293248 0.5195258 0.092819 +0.3470774 0.5195258 0.092819 +0.3637862 0.5195258 0.092819 +0.3795513 0.5195258 0.092819 +0.3944623 0.5195258 0.092819 +0.4085988 0.5195258 0.092819 +0.4220313 0.5195258 0.092819 +0.4348222 0.5195258 0.092819 +0.4470264 0.5195258 0.092819 +0.4586928 0.5195258 0.092819 +0.4698649 0.5195258 0.092819 +0.4805811 0.5195258 0.092819 +0.490876 0.5195258 0.092819 +0.5007803 0.5195258 0.092819 +0.510322 0.5195258 0.092819 +0.5195258 0.5195258 0.092819 +0.5284142 0.5195258 0.092819 +0.5370079 0.5195258 0.092819 +0.5453253 0.5195258 0.092819 +0.5533834 0.5195258 0.092819 +0.5611974 0.5195258 0.092819 +0.5687816 0.5195258 0.092819 +0.092819 0.5284142 0.092819 +0.1056428 0.5284142 0.092819 +0.1201537 0.5284142 0.092819 +0.1409607 0.5284142 0.092819 +0.1678172 0.5284142 0.092819 +0.1950164 0.5284142 0.092819 +0.2210581 0.5284142 0.092819 +0.245636 0.5284142 0.092819 +0.2686816 0.5284142 0.092819 +0.2902431 0.5284142 0.092819 +0.3104189 0.5284142 0.092819 +0.3293248 0.5284142 0.092819 +0.3470774 0.5284142 0.092819 +0.3637862 0.5284142 0.092819 +0.3795513 0.5284142 0.092819 +0.3944623 0.5284142 0.092819 +0.4085988 0.5284142 0.092819 +0.4220313 0.5284142 0.092819 +0.4348222 0.5284142 0.092819 +0.4470264 0.5284142 0.092819 +0.4586928 0.5284142 0.092819 +0.4698649 0.5284142 0.092819 +0.4805811 0.5284142 0.092819 +0.490876 0.5284142 0.092819 +0.5007803 0.5284142 0.092819 +0.510322 0.5284142 0.092819 +0.5195258 0.5284142 0.092819 +0.5284142 0.5284142 0.092819 +0.5370079 0.5284142 0.092819 +0.5453253 0.5284142 0.092819 +0.5533834 0.5284142 0.092819 +0.5611974 0.5284142 0.092819 +0.5687816 0.5284142 0.092819 +0.092819 0.5370079 0.092819 +0.1056428 0.5370079 0.092819 +0.1201537 0.5370079 0.092819 +0.1409607 0.5370079 0.092819 +0.1678172 0.5370079 0.092819 +0.1950164 0.5370079 0.092819 +0.2210581 0.5370079 0.092819 +0.245636 0.5370079 0.092819 +0.2686816 0.5370079 0.092819 +0.2902431 0.5370079 0.092819 +0.3104189 0.5370079 0.092819 +0.3293248 0.5370079 0.092819 +0.3470774 0.5370079 0.092819 +0.3637862 0.5370079 0.092819 +0.3795513 0.5370079 0.092819 +0.3944623 0.5370079 0.092819 +0.4085988 0.5370079 0.092819 +0.4220313 0.5370079 0.092819 +0.4348222 0.5370079 0.092819 +0.4470264 0.5370079 0.092819 +0.4586928 0.5370079 0.092819 +0.4698649 0.5370079 0.092819 +0.4805811 0.5370079 0.092819 +0.490876 0.5370079 0.092819 +0.5007803 0.5370079 0.092819 +0.510322 0.5370079 0.092819 +0.5195258 0.5370079 0.092819 +0.5284142 0.5370079 0.092819 +0.5370079 0.5370079 0.092819 +0.5453253 0.5370079 0.092819 +0.5533834 0.5370079 0.092819 +0.5611974 0.5370079 0.092819 +0.5687816 0.5370079 0.092819 +0.092819 0.5453253 0.092819 +0.1056428 0.5453253 0.092819 +0.1201537 0.5453253 0.092819 +0.1409607 0.5453253 0.092819 +0.1678172 0.5453253 0.092819 +0.1950164 0.5453253 0.092819 +0.2210581 0.5453253 0.092819 +0.245636 0.5453253 0.092819 +0.2686816 0.5453253 0.092819 +0.2902431 0.5453253 0.092819 +0.3104189 0.5453253 0.092819 +0.3293248 0.5453253 0.092819 +0.3470774 0.5453253 0.092819 +0.3637862 0.5453253 0.092819 +0.3795513 0.5453253 0.092819 +0.3944623 0.5453253 0.092819 +0.4085988 0.5453253 0.092819 +0.4220313 0.5453253 0.092819 +0.4348222 0.5453253 0.092819 +0.4470264 0.5453253 0.092819 +0.4586928 0.5453253 0.092819 +0.4698649 0.5453253 0.092819 +0.4805811 0.5453253 0.092819 +0.490876 0.5453253 0.092819 +0.5007803 0.5453253 0.092819 +0.510322 0.5453253 0.092819 +0.5195258 0.5453253 0.092819 +0.5284142 0.5453253 0.092819 +0.5370079 0.5453253 0.092819 +0.5453253 0.5453253 0.092819 +0.5533834 0.5453253 0.092819 +0.5611974 0.5453253 0.092819 +0.5687816 0.5453253 0.092819 +0.092819 0.5533834 0.092819 +0.1056428 0.5533834 0.092819 +0.1201537 0.5533834 0.092819 +0.1409607 0.5533834 0.092819 +0.1678172 0.5533834 0.092819 +0.1950164 0.5533834 0.092819 +0.2210581 0.5533834 0.092819 +0.245636 0.5533834 0.092819 +0.2686816 0.5533834 0.092819 +0.2902431 0.5533834 0.092819 +0.3104189 0.5533834 0.092819 +0.3293248 0.5533834 0.092819 +0.3470774 0.5533834 0.092819 +0.3637862 0.5533834 0.092819 +0.3795513 0.5533834 0.092819 +0.3944623 0.5533834 0.092819 +0.4085988 0.5533834 0.092819 +0.4220313 0.5533834 0.092819 +0.4348222 0.5533834 0.092819 +0.4470264 0.5533834 0.092819 +0.4586928 0.5533834 0.092819 +0.4698649 0.5533834 0.092819 +0.4805811 0.5533834 0.092819 +0.490876 0.5533834 0.092819 +0.5007803 0.5533834 0.092819 +0.510322 0.5533834 0.092819 +0.5195258 0.5533834 0.092819 +0.5284142 0.5533834 0.092819 +0.5370079 0.5533834 0.092819 +0.5453253 0.5533834 0.092819 +0.5533834 0.5533834 0.092819 +0.5611974 0.5533834 0.092819 +0.5687816 0.5533834 0.092819 +0.092819 0.5611974 0.092819 +0.1056428 0.5611974 0.092819 +0.1201537 0.5611974 0.092819 +0.1409607 0.5611974 0.092819 +0.1678172 0.5611974 0.092819 +0.1950164 0.5611974 0.092819 +0.2210581 0.5611974 0.092819 +0.245636 0.5611974 0.092819 +0.2686816 0.5611974 0.092819 +0.2902431 0.5611974 0.092819 +0.3104189 0.5611974 0.092819 +0.3293248 0.5611974 0.092819 +0.3470774 0.5611974 0.092819 +0.3637862 0.5611974 0.092819 +0.3795513 0.5611974 0.092819 +0.3944623 0.5611974 0.092819 +0.4085988 0.5611974 0.092819 +0.4220313 0.5611974 0.092819 +0.4348222 0.5611974 0.092819 +0.4470264 0.5611974 0.092819 +0.4586928 0.5611974 0.092819 +0.4698649 0.5611974 0.092819 +0.4805811 0.5611974 0.092819 +0.490876 0.5611974 0.092819 +0.5007803 0.5611974 0.092819 +0.510322 0.5611974 0.092819 +0.5195258 0.5611974 0.092819 +0.5284142 0.5611974 0.092819 +0.5370079 0.5611974 0.092819 +0.5453253 0.5611974 0.092819 +0.5533834 0.5611974 0.092819 +0.5611974 0.5611974 0.092819 +0.5687816 0.5611974 0.092819 +0.092819 0.5687816 0.092819 +0.1056428 0.5687816 0.092819 +0.1201537 0.5687816 0.092819 +0.1409607 0.5687816 0.092819 +0.1678172 0.5687816 0.092819 +0.1950164 0.5687816 0.092819 +0.2210581 0.5687816 0.092819 +0.245636 0.5687816 0.092819 +0.2686816 0.5687816 0.092819 +0.2902431 0.5687816 0.092819 +0.3104189 0.5687816 0.092819 +0.3293248 0.5687816 0.092819 +0.3470774 0.5687816 0.092819 +0.3637862 0.5687816 0.092819 +0.3795513 0.5687816 0.092819 +0.3944623 0.5687816 0.092819 +0.4085988 0.5687816 0.092819 +0.4220313 0.5687816 0.092819 +0.4348222 0.5687816 0.092819 +0.4470264 0.5687816 0.092819 +0.4586928 0.5687816 0.092819 +0.4698649 0.5687816 0.092819 +0.4805811 0.5687816 0.092819 +0.490876 0.5687816 0.092819 +0.5007803 0.5687816 0.092819 +0.510322 0.5687816 0.092819 +0.5195258 0.5687816 0.092819 +0.5284142 0.5687816 0.092819 +0.5370079 0.5687816 0.092819 +0.5453253 0.5687816 0.092819 +0.5533834 0.5687816 0.092819 +0.5611974 0.5687816 0.092819 +0.5687816 0.5687816 0.092819 +0.092819 0.092819 0.1056428 +0.1056428 0.092819 0.1056428 +0.1201537 0.092819 0.1056428 +0.1409607 0.092819 0.1056428 +0.1678172 0.092819 0.1056428 +0.1950164 0.092819 0.1056428 +0.2210581 0.092819 0.1056428 +0.245636 0.092819 0.1056428 +0.2686816 0.092819 0.1056428 +0.2902431 0.092819 0.1056428 +0.3104189 0.092819 0.1056428 +0.3293248 0.092819 0.1056428 +0.3470774 0.092819 0.1056428 +0.3637862 0.092819 0.1056428 +0.3795513 0.092819 0.1056428 +0.3944623 0.092819 0.1056428 +0.4085988 0.092819 0.1056428 +0.4220313 0.092819 0.1056428 +0.4348222 0.092819 0.1056428 +0.4470264 0.092819 0.1056428 +0.4586928 0.092819 0.1056428 +0.4698649 0.092819 0.1056428 +0.4805811 0.092819 0.1056428 +0.490876 0.092819 0.1056428 +0.5007803 0.092819 0.1056428 +0.510322 0.092819 0.1056428 +0.5195258 0.092819 0.1056428 +0.5284142 0.092819 0.1056428 +0.5370079 0.092819 0.1056428 +0.5453253 0.092819 0.1056428 +0.5533834 0.092819 0.1056428 +0.5611974 0.092819 0.1056428 +0.5687816 0.092819 0.1056428 +0.092819 0.1056428 0.1056428 +0.1056428 0.1056428 0.1056428 +0.1201537 0.1056428 0.1056428 +0.1409607 0.1056428 0.1056428 +0.1678172 0.1056428 0.1056428 +0.1950164 0.1056428 0.1056428 +0.2210581 0.1056428 0.1056428 +0.245636 0.1056428 0.1056428 +0.2686816 0.1056428 0.1056428 +0.2902431 0.1056428 0.1056428 +0.3104189 0.1056428 0.1056428 +0.3293248 0.1056428 0.1056428 +0.3470774 0.1056428 0.1056428 +0.3637862 0.1056428 0.1056428 +0.3795513 0.1056428 0.1056428 +0.3944623 0.1056428 0.1056428 +0.4085988 0.1056428 0.1056428 +0.4220313 0.1056428 0.1056428 +0.4348222 0.1056428 0.1056428 +0.4470264 0.1056428 0.1056428 +0.4586928 0.1056428 0.1056428 +0.4698649 0.1056428 0.1056428 +0.4805811 0.1056428 0.1056428 +0.490876 0.1056428 0.1056428 +0.5007803 0.1056428 0.1056428 +0.510322 0.1056428 0.1056428 +0.5195258 0.1056428 0.1056428 +0.5284142 0.1056428 0.1056428 +0.5370079 0.1056428 0.1056428 +0.5453253 0.1056428 0.1056428 +0.5533834 0.1056428 0.1056428 +0.5611974 0.1056428 0.1056428 +0.5687816 0.1056428 0.1056428 +0.092819 0.1201537 0.1056428 +0.1056428 0.1201537 0.1056428 +0.1201537 0.1201537 0.1056428 +0.1409607 0.1201537 0.1056428 +0.1678172 0.1201537 0.1056428 +0.1950164 0.1201537 0.1056428 +0.2210581 0.1201537 0.1056428 +0.245636 0.1201537 0.1056428 +0.2686816 0.1201537 0.1056428 +0.2902431 0.1201537 0.1056428 +0.3104189 0.1201537 0.1056428 +0.3293248 0.1201537 0.1056428 +0.3470774 0.1201537 0.1056428 +0.3637862 0.1201537 0.1056428 +0.3795513 0.1201537 0.1056428 +0.3944623 0.1201537 0.1056428 +0.4085988 0.1201537 0.1056428 +0.4220313 0.1201537 0.1056428 +0.4348222 0.1201537 0.1056428 +0.4470264 0.1201537 0.1056428 +0.4586928 0.1201537 0.1056428 +0.4698649 0.1201537 0.1056428 +0.4805811 0.1201537 0.1056428 +0.490876 0.1201537 0.1056428 +0.5007803 0.1201537 0.1056428 +0.510322 0.1201537 0.1056428 +0.5195258 0.1201537 0.1056428 +0.5284142 0.1201537 0.1056428 +0.5370079 0.1201537 0.1056428 +0.5453253 0.1201537 0.1056428 +0.5533834 0.1201537 0.1056428 +0.5611974 0.1201537 0.1056428 +0.5687816 0.1201537 0.1056428 +0.092819 0.1409607 0.1056428 +0.1056428 0.1409607 0.1056428 +0.1201537 0.1409607 0.1056428 +0.1409607 0.1409607 0.1056428 +0.1678172 0.1409607 0.1056428 +0.1950164 0.1409607 0.1056428 +0.2210581 0.1409607 0.1056428 +0.245636 0.1409607 0.1056428 +0.2686816 0.1409607 0.1056428 +0.2902431 0.1409607 0.1056428 +0.3104189 0.1409607 0.1056428 +0.3293248 0.1409607 0.1056428 +0.3470774 0.1409607 0.1056428 +0.3637862 0.1409607 0.1056428 +0.3795513 0.1409607 0.1056428 +0.3944623 0.1409607 0.1056428 +0.4085988 0.1409607 0.1056428 +0.4220313 0.1409607 0.1056428 +0.4348222 0.1409607 0.1056428 +0.4470264 0.1409607 0.1056428 +0.4586928 0.1409607 0.1056428 +0.4698649 0.1409607 0.1056428 +0.4805811 0.1409607 0.1056428 +0.490876 0.1409607 0.1056428 +0.5007803 0.1409607 0.1056428 +0.510322 0.1409607 0.1056428 +0.5195258 0.1409607 0.1056428 +0.5284142 0.1409607 0.1056428 +0.5370079 0.1409607 0.1056428 +0.5453253 0.1409607 0.1056428 +0.5533834 0.1409607 0.1056428 +0.5611974 0.1409607 0.1056428 +0.5687816 0.1409607 0.1056428 +0.092819 0.1678172 0.1056428 +0.1056428 0.1678172 0.1056428 +0.1201537 0.1678172 0.1056428 +0.1409607 0.1678172 0.1056428 +0.1678172 0.1678172 0.1056428 +0.1950164 0.1678172 0.1056428 +0.2210581 0.1678172 0.1056428 +0.245636 0.1678172 0.1056428 +0.2686816 0.1678172 0.1056428 +0.2902431 0.1678172 0.1056428 +0.3104189 0.1678172 0.1056428 +0.3293248 0.1678172 0.1056428 +0.3470774 0.1678172 0.1056428 +0.3637862 0.1678172 0.1056428 +0.3795513 0.1678172 0.1056428 +0.3944623 0.1678172 0.1056428 +0.4085988 0.1678172 0.1056428 +0.4220313 0.1678172 0.1056428 +0.4348222 0.1678172 0.1056428 +0.4470264 0.1678172 0.1056428 +0.4586928 0.1678172 0.1056428 +0.4698649 0.1678172 0.1056428 +0.4805811 0.1678172 0.1056428 +0.490876 0.1678172 0.1056428 +0.5007803 0.1678172 0.1056428 +0.510322 0.1678172 0.1056428 +0.5195258 0.1678172 0.1056428 +0.5284142 0.1678172 0.1056428 +0.5370079 0.1678172 0.1056428 +0.5453253 0.1678172 0.1056428 +0.5533834 0.1678172 0.1056428 +0.5611974 0.1678172 0.1056428 +0.5687816 0.1678172 0.1056428 +0.092819 0.1950164 0.1056428 +0.1056428 0.1950164 0.1056428 +0.1201537 0.1950164 0.1056428 +0.1409607 0.1950164 0.1056428 +0.1678172 0.1950164 0.1056428 +0.1950164 0.1950164 0.1056428 +0.2210581 0.1950164 0.1056428 +0.245636 0.1950164 0.1056428 +0.2686816 0.1950164 0.1056428 +0.2902431 0.1950164 0.1056428 +0.3104189 0.1950164 0.1056428 +0.3293248 0.1950164 0.1056428 +0.3470774 0.1950164 0.1056428 +0.3637862 0.1950164 0.1056428 +0.3795513 0.1950164 0.1056428 +0.3944623 0.1950164 0.1056428 +0.4085988 0.1950164 0.1056428 +0.4220313 0.1950164 0.1056428 +0.4348222 0.1950164 0.1056428 +0.4470264 0.1950164 0.1056428 +0.4586928 0.1950164 0.1056428 +0.4698649 0.1950164 0.1056428 +0.4805811 0.1950164 0.1056428 +0.490876 0.1950164 0.1056428 +0.5007803 0.1950164 0.1056428 +0.510322 0.1950164 0.1056428 +0.5195258 0.1950164 0.1056428 +0.5284142 0.1950164 0.1056428 +0.5370079 0.1950164 0.1056428 +0.5453253 0.1950164 0.1056428 +0.5533834 0.1950164 0.1056428 +0.5611974 0.1950164 0.1056428 +0.5687816 0.1950164 0.1056428 +0.092819 0.2210581 0.1056428 +0.1056428 0.2210581 0.1056428 +0.1201537 0.2210581 0.1056428 +0.1409607 0.2210581 0.1056428 +0.1678172 0.2210581 0.1056428 +0.1950164 0.2210581 0.1056428 +0.2210581 0.2210581 0.1056428 +0.245636 0.2210581 0.1056428 +0.2686816 0.2210581 0.1056428 +0.2902431 0.2210581 0.1056428 +0.3104189 0.2210581 0.1056428 +0.3293248 0.2210581 0.1056428 +0.3470774 0.2210581 0.1056428 +0.3637862 0.2210581 0.1056428 +0.3795513 0.2210581 0.1056428 +0.3944623 0.2210581 0.1056428 +0.4085988 0.2210581 0.1056428 +0.4220313 0.2210581 0.1056428 +0.4348222 0.2210581 0.1056428 +0.4470264 0.2210581 0.1056428 +0.4586928 0.2210581 0.1056428 +0.4698649 0.2210581 0.1056428 +0.4805811 0.2210581 0.1056428 +0.490876 0.2210581 0.1056428 +0.5007803 0.2210581 0.1056428 +0.510322 0.2210581 0.1056428 +0.5195258 0.2210581 0.1056428 +0.5284142 0.2210581 0.1056428 +0.5370079 0.2210581 0.1056428 +0.5453253 0.2210581 0.1056428 +0.5533834 0.2210581 0.1056428 +0.5611974 0.2210581 0.1056428 +0.5687816 0.2210581 0.1056428 +0.092819 0.245636 0.1056428 +0.1056428 0.245636 0.1056428 +0.1201537 0.245636 0.1056428 +0.1409607 0.245636 0.1056428 +0.1678172 0.245636 0.1056428 +0.1950164 0.245636 0.1056428 +0.2210581 0.245636 0.1056428 +0.245636 0.245636 0.1056428 +0.2686816 0.245636 0.1056428 +0.2902431 0.245636 0.1056428 +0.3104189 0.245636 0.1056428 +0.3293248 0.245636 0.1056428 +0.3470774 0.245636 0.1056428 +0.3637862 0.245636 0.1056428 +0.3795513 0.245636 0.1056428 +0.3944623 0.245636 0.1056428 +0.4085988 0.245636 0.1056428 +0.4220313 0.245636 0.1056428 +0.4348222 0.245636 0.1056428 +0.4470264 0.245636 0.1056428 +0.4586928 0.245636 0.1056428 +0.4698649 0.245636 0.1056428 +0.4805811 0.245636 0.1056428 +0.490876 0.245636 0.1056428 +0.5007803 0.245636 0.1056428 +0.510322 0.245636 0.1056428 +0.5195258 0.245636 0.1056428 +0.5284142 0.245636 0.1056428 +0.5370079 0.245636 0.1056428 +0.5453253 0.245636 0.1056428 +0.5533834 0.245636 0.1056428 +0.5611974 0.245636 0.1056428 +0.5687816 0.245636 0.1056428 +0.092819 0.2686816 0.1056428 +0.1056428 0.2686816 0.1056428 +0.1201537 0.2686816 0.1056428 +0.1409607 0.2686816 0.1056428 +0.1678172 0.2686816 0.1056428 +0.1950164 0.2686816 0.1056428 +0.2210581 0.2686816 0.1056428 +0.245636 0.2686816 0.1056428 +0.2686816 0.2686816 0.1056428 +0.2902431 0.2686816 0.1056428 +0.3104189 0.2686816 0.1056428 +0.3293248 0.2686816 0.1056428 +0.3470774 0.2686816 0.1056428 +0.3637862 0.2686816 0.1056428 +0.3795513 0.2686816 0.1056428 +0.3944623 0.2686816 0.1056428 +0.4085988 0.2686816 0.1056428 +0.4220313 0.2686816 0.1056428 +0.4348222 0.2686816 0.1056428 +0.4470264 0.2686816 0.1056428 +0.4586928 0.2686816 0.1056428 +0.4698649 0.2686816 0.1056428 +0.4805811 0.2686816 0.1056428 +0.490876 0.2686816 0.1056428 +0.5007803 0.2686816 0.1056428 +0.510322 0.2686816 0.1056428 +0.5195258 0.2686816 0.1056428 +0.5284142 0.2686816 0.1056428 +0.5370079 0.2686816 0.1056428 +0.5453253 0.2686816 0.1056428 +0.5533834 0.2686816 0.1056428 +0.5611974 0.2686816 0.1056428 +0.5687816 0.2686816 0.1056428 +0.092819 0.2902431 0.1056428 +0.1056428 0.2902431 0.1056428 +0.1201537 0.2902431 0.1056428 +0.1409607 0.2902431 0.1056428 +0.1678172 0.2902431 0.1056428 +0.1950164 0.2902431 0.1056428 +0.2210581 0.2902431 0.1056428 +0.245636 0.2902431 0.1056428 +0.2686816 0.2902431 0.1056428 +0.2902431 0.2902431 0.1056428 +0.3104189 0.2902431 0.1056428 +0.3293248 0.2902431 0.1056428 +0.3470774 0.2902431 0.1056428 +0.3637862 0.2902431 0.1056428 +0.3795513 0.2902431 0.1056428 +0.3944623 0.2902431 0.1056428 +0.4085988 0.2902431 0.1056428 +0.4220313 0.2902431 0.1056428 +0.4348222 0.2902431 0.1056428 +0.4470264 0.2902431 0.1056428 +0.4586928 0.2902431 0.1056428 +0.4698649 0.2902431 0.1056428 +0.4805811 0.2902431 0.1056428 +0.490876 0.2902431 0.1056428 +0.5007803 0.2902431 0.1056428 +0.510322 0.2902431 0.1056428 +0.5195258 0.2902431 0.1056428 +0.5284142 0.2902431 0.1056428 +0.5370079 0.2902431 0.1056428 +0.5453253 0.2902431 0.1056428 +0.5533834 0.2902431 0.1056428 +0.5611974 0.2902431 0.1056428 +0.5687816 0.2902431 0.1056428 +0.092819 0.3104189 0.1056428 +0.1056428 0.3104189 0.1056428 +0.1201537 0.3104189 0.1056428 +0.1409607 0.3104189 0.1056428 +0.1678172 0.3104189 0.1056428 +0.1950164 0.3104189 0.1056428 +0.2210581 0.3104189 0.1056428 +0.245636 0.3104189 0.1056428 +0.2686816 0.3104189 0.1056428 +0.2902431 0.3104189 0.1056428 +0.3104189 0.3104189 0.1056428 +0.3293248 0.3104189 0.1056428 +0.3470774 0.3104189 0.1056428 +0.3637862 0.3104189 0.1056428 +0.3795513 0.3104189 0.1056428 +0.3944623 0.3104189 0.1056428 +0.4085988 0.3104189 0.1056428 +0.4220313 0.3104189 0.1056428 +0.4348222 0.3104189 0.1056428 +0.4470264 0.3104189 0.1056428 +0.4586928 0.3104189 0.1056428 +0.4698649 0.3104189 0.1056428 +0.4805811 0.3104189 0.1056428 +0.490876 0.3104189 0.1056428 +0.5007803 0.3104189 0.1056428 +0.510322 0.3104189 0.1056428 +0.5195258 0.3104189 0.1056428 +0.5284142 0.3104189 0.1056428 +0.5370079 0.3104189 0.1056428 +0.5453253 0.3104189 0.1056428 +0.5533834 0.3104189 0.1056428 +0.5611974 0.3104189 0.1056428 +0.5687816 0.3104189 0.1056428 +0.092819 0.3293248 0.1056428 +0.1056428 0.3293248 0.1056428 +0.1201537 0.3293248 0.1056428 +0.1409607 0.3293248 0.1056428 +0.1678172 0.3293248 0.1056428 +0.1950164 0.3293248 0.1056428 +0.2210581 0.3293248 0.1056428 +0.245636 0.3293248 0.1056428 +0.2686816 0.3293248 0.1056428 +0.2902431 0.3293248 0.1056428 +0.3104189 0.3293248 0.1056428 +0.3293248 0.3293248 0.1056428 +0.3470774 0.3293248 0.1056428 +0.3637862 0.3293248 0.1056428 +0.3795513 0.3293248 0.1056428 +0.3944623 0.3293248 0.1056428 +0.4085988 0.3293248 0.1056428 +0.4220313 0.3293248 0.1056428 +0.4348222 0.3293248 0.1056428 +0.4470264 0.3293248 0.1056428 +0.4586928 0.3293248 0.1056428 +0.4698649 0.3293248 0.1056428 +0.4805811 0.3293248 0.1056428 +0.490876 0.3293248 0.1056428 +0.5007803 0.3293248 0.1056428 +0.510322 0.3293248 0.1056428 +0.5195258 0.3293248 0.1056428 +0.5284142 0.3293248 0.1056428 +0.5370079 0.3293248 0.1056428 +0.5453253 0.3293248 0.1056428 +0.5533834 0.3293248 0.1056428 +0.5611974 0.3293248 0.1056428 +0.5687816 0.3293248 0.1056428 +0.092819 0.3470774 0.1056428 +0.1056428 0.3470774 0.1056428 +0.1201537 0.3470774 0.1056428 +0.1409607 0.3470774 0.1056428 +0.1678172 0.3470774 0.1056428 +0.1950164 0.3470774 0.1056428 +0.2210581 0.3470774 0.1056428 +0.245636 0.3470774 0.1056428 +0.2686816 0.3470774 0.1056428 +0.2902431 0.3470774 0.1056428 +0.3104189 0.3470774 0.1056428 +0.3293248 0.3470774 0.1056428 +0.3470774 0.3470774 0.1056428 +0.3637862 0.3470774 0.1056428 +0.3795513 0.3470774 0.1056428 +0.3944623 0.3470774 0.1056428 +0.4085988 0.3470774 0.1056428 +0.4220313 0.3470774 0.1056428 +0.4348222 0.3470774 0.1056428 +0.4470264 0.3470774 0.1056428 +0.4586928 0.3470774 0.1056428 +0.4698649 0.3470774 0.1056428 +0.4805811 0.3470774 0.1056428 +0.490876 0.3470774 0.1056428 +0.5007803 0.3470774 0.1056428 +0.510322 0.3470774 0.1056428 +0.5195258 0.3470774 0.1056428 +0.5284142 0.3470774 0.1056428 +0.5370079 0.3470774 0.1056428 +0.5453253 0.3470774 0.1056428 +0.5533834 0.3470774 0.1056428 +0.5611974 0.3470774 0.1056428 +0.5687816 0.3470774 0.1056428 +0.092819 0.3637862 0.1056428 +0.1056428 0.3637862 0.1056428 +0.1201537 0.3637862 0.1056428 +0.1409607 0.3637862 0.1056428 +0.1678172 0.3637862 0.1056428 +0.1950164 0.3637862 0.1056428 +0.2210581 0.3637862 0.1056428 +0.245636 0.3637862 0.1056428 +0.2686816 0.3637862 0.1056428 +0.2902431 0.3637862 0.1056428 +0.3104189 0.3637862 0.1056428 +0.3293248 0.3637862 0.1056428 +0.3470774 0.3637862 0.1056428 +0.3637862 0.3637862 0.1056428 +0.3795513 0.3637862 0.1056428 +0.3944623 0.3637862 0.1056428 +0.4085988 0.3637862 0.1056428 +0.4220313 0.3637862 0.1056428 +0.4348222 0.3637862 0.1056428 +0.4470264 0.3637862 0.1056428 +0.4586928 0.3637862 0.1056428 +0.4698649 0.3637862 0.1056428 +0.4805811 0.3637862 0.1056428 +0.490876 0.3637862 0.1056428 +0.5007803 0.3637862 0.1056428 +0.510322 0.3637862 0.1056428 +0.5195258 0.3637862 0.1056428 +0.5284142 0.3637862 0.1056428 +0.5370079 0.3637862 0.1056428 +0.5453253 0.3637862 0.1056428 +0.5533834 0.3637862 0.1056428 +0.5611974 0.3637862 0.1056428 +0.5687816 0.3637862 0.1056428 +0.092819 0.3795513 0.1056428 +0.1056428 0.3795513 0.1056428 +0.1201537 0.3795513 0.1056428 +0.1409607 0.3795513 0.1056428 +0.1678172 0.3795513 0.1056428 +0.1950164 0.3795513 0.1056428 +0.2210581 0.3795513 0.1056428 +0.245636 0.3795513 0.1056428 +0.2686816 0.3795513 0.1056428 +0.2902431 0.3795513 0.1056428 +0.3104189 0.3795513 0.1056428 +0.3293248 0.3795513 0.1056428 +0.3470774 0.3795513 0.1056428 +0.3637862 0.3795513 0.1056428 +0.3795513 0.3795513 0.1056428 +0.3944623 0.3795513 0.1056428 +0.4085988 0.3795513 0.1056428 +0.4220313 0.3795513 0.1056428 +0.4348222 0.3795513 0.1056428 +0.4470264 0.3795513 0.1056428 +0.4586928 0.3795513 0.1056428 +0.4698649 0.3795513 0.1056428 +0.4805811 0.3795513 0.1056428 +0.490876 0.3795513 0.1056428 +0.5007803 0.3795513 0.1056428 +0.510322 0.3795513 0.1056428 +0.5195258 0.3795513 0.1056428 +0.5284142 0.3795513 0.1056428 +0.5370079 0.3795513 0.1056428 +0.5453253 0.3795513 0.1056428 +0.5533834 0.3795513 0.1056428 +0.5611974 0.3795513 0.1056428 +0.5687816 0.3795513 0.1056428 +0.092819 0.3944623 0.1056428 +0.1056428 0.3944623 0.1056428 +0.1201537 0.3944623 0.1056428 +0.1409607 0.3944623 0.1056428 +0.1678172 0.3944623 0.1056428 +0.1950164 0.3944623 0.1056428 +0.2210581 0.3944623 0.1056428 +0.245636 0.3944623 0.1056428 +0.2686816 0.3944623 0.1056428 +0.2902431 0.3944623 0.1056428 +0.3104189 0.3944623 0.1056428 +0.3293248 0.3944623 0.1056428 +0.3470774 0.3944623 0.1056428 +0.3637862 0.3944623 0.1056428 +0.3795513 0.3944623 0.1056428 +0.3944623 0.3944623 0.1056428 +0.4085988 0.3944623 0.1056428 +0.4220313 0.3944623 0.1056428 +0.4348222 0.3944623 0.1056428 +0.4470264 0.3944623 0.1056428 +0.4586928 0.3944623 0.1056428 +0.4698649 0.3944623 0.1056428 +0.4805811 0.3944623 0.1056428 +0.490876 0.3944623 0.1056428 +0.5007803 0.3944623 0.1056428 +0.510322 0.3944623 0.1056428 +0.5195258 0.3944623 0.1056428 +0.5284142 0.3944623 0.1056428 +0.5370079 0.3944623 0.1056428 +0.5453253 0.3944623 0.1056428 +0.5533834 0.3944623 0.1056428 +0.5611974 0.3944623 0.1056428 +0.5687816 0.3944623 0.1056428 +0.092819 0.4085988 0.1056428 +0.1056428 0.4085988 0.1056428 +0.1201537 0.4085988 0.1056428 +0.1409607 0.4085988 0.1056428 +0.1678172 0.4085988 0.1056428 +0.1950164 0.4085988 0.1056428 +0.2210581 0.4085988 0.1056428 +0.245636 0.4085988 0.1056428 +0.2686816 0.4085988 0.1056428 +0.2902431 0.4085988 0.1056428 +0.3104189 0.4085988 0.1056428 +0.3293248 0.4085988 0.1056428 +0.3470774 0.4085988 0.1056428 +0.3637862 0.4085988 0.1056428 +0.3795513 0.4085988 0.1056428 +0.3944623 0.4085988 0.1056428 +0.4085988 0.4085988 0.1056428 +0.4220313 0.4085988 0.1056428 +0.4348222 0.4085988 0.1056428 +0.4470264 0.4085988 0.1056428 +0.4586928 0.4085988 0.1056428 +0.4698649 0.4085988 0.1056428 +0.4805811 0.4085988 0.1056428 +0.490876 0.4085988 0.1056428 +0.5007803 0.4085988 0.1056428 +0.510322 0.4085988 0.1056428 +0.5195258 0.4085988 0.1056428 +0.5284142 0.4085988 0.1056428 +0.5370079 0.4085988 0.1056428 +0.5453253 0.4085988 0.1056428 +0.5533834 0.4085988 0.1056428 +0.5611974 0.4085988 0.1056428 +0.5687816 0.4085988 0.1056428 +0.092819 0.4220313 0.1056428 +0.1056428 0.4220313 0.1056428 +0.1201537 0.4220313 0.1056428 +0.1409607 0.4220313 0.1056428 +0.1678172 0.4220313 0.1056428 +0.1950164 0.4220313 0.1056428 +0.2210581 0.4220313 0.1056428 +0.245636 0.4220313 0.1056428 +0.2686816 0.4220313 0.1056428 +0.2902431 0.4220313 0.1056428 +0.3104189 0.4220313 0.1056428 +0.3293248 0.4220313 0.1056428 +0.3470774 0.4220313 0.1056428 +0.3637862 0.4220313 0.1056428 +0.3795513 0.4220313 0.1056428 +0.3944623 0.4220313 0.1056428 +0.4085988 0.4220313 0.1056428 +0.4220313 0.4220313 0.1056428 +0.4348222 0.4220313 0.1056428 +0.4470264 0.4220313 0.1056428 +0.4586928 0.4220313 0.1056428 +0.4698649 0.4220313 0.1056428 +0.4805811 0.4220313 0.1056428 +0.490876 0.4220313 0.1056428 +0.5007803 0.4220313 0.1056428 +0.510322 0.4220313 0.1056428 +0.5195258 0.4220313 0.1056428 +0.5284142 0.4220313 0.1056428 +0.5370079 0.4220313 0.1056428 +0.5453253 0.4220313 0.1056428 +0.5533834 0.4220313 0.1056428 +0.5611974 0.4220313 0.1056428 +0.5687816 0.4220313 0.1056428 +0.092819 0.4348222 0.1056428 +0.1056428 0.4348222 0.1056428 +0.1201537 0.4348222 0.1056428 +0.1409607 0.4348222 0.1056428 +0.1678172 0.4348222 0.1056428 +0.1950164 0.4348222 0.1056428 +0.2210581 0.4348222 0.1056428 +0.245636 0.4348222 0.1056428 +0.2686816 0.4348222 0.1056428 +0.2902431 0.4348222 0.1056428 +0.3104189 0.4348222 0.1056428 +0.3293248 0.4348222 0.1056428 +0.3470774 0.4348222 0.1056428 +0.3637862 0.4348222 0.1056428 +0.3795513 0.4348222 0.1056428 +0.3944623 0.4348222 0.1056428 +0.4085988 0.4348222 0.1056428 +0.4220313 0.4348222 0.1056428 +0.4348222 0.4348222 0.1056428 +0.4470264 0.4348222 0.1056428 +0.4586928 0.4348222 0.1056428 +0.4698649 0.4348222 0.1056428 +0.4805811 0.4348222 0.1056428 +0.490876 0.4348222 0.1056428 +0.5007803 0.4348222 0.1056428 +0.510322 0.4348222 0.1056428 +0.5195258 0.4348222 0.1056428 +0.5284142 0.4348222 0.1056428 +0.5370079 0.4348222 0.1056428 +0.5453253 0.4348222 0.1056428 +0.5533834 0.4348222 0.1056428 +0.5611974 0.4348222 0.1056428 +0.5687816 0.4348222 0.1056428 +0.092819 0.4470264 0.1056428 +0.1056428 0.4470264 0.1056428 +0.1201537 0.4470264 0.1056428 +0.1409607 0.4470264 0.1056428 +0.1678172 0.4470264 0.1056428 +0.1950164 0.4470264 0.1056428 +0.2210581 0.4470264 0.1056428 +0.245636 0.4470264 0.1056428 +0.2686816 0.4470264 0.1056428 +0.2902431 0.4470264 0.1056428 +0.3104189 0.4470264 0.1056428 +0.3293248 0.4470264 0.1056428 +0.3470774 0.4470264 0.1056428 +0.3637862 0.4470264 0.1056428 +0.3795513 0.4470264 0.1056428 +0.3944623 0.4470264 0.1056428 +0.4085988 0.4470264 0.1056428 +0.4220313 0.4470264 0.1056428 +0.4348222 0.4470264 0.1056428 +0.4470264 0.4470264 0.1056428 +0.4586928 0.4470264 0.1056428 +0.4698649 0.4470264 0.1056428 +0.4805811 0.4470264 0.1056428 +0.490876 0.4470264 0.1056428 +0.5007803 0.4470264 0.1056428 +0.510322 0.4470264 0.1056428 +0.5195258 0.4470264 0.1056428 +0.5284142 0.4470264 0.1056428 +0.5370079 0.4470264 0.1056428 +0.5453253 0.4470264 0.1056428 +0.5533834 0.4470264 0.1056428 +0.5611974 0.4470264 0.1056428 +0.5687816 0.4470264 0.1056428 +0.092819 0.4586928 0.1056428 +0.1056428 0.4586928 0.1056428 +0.1201537 0.4586928 0.1056428 +0.1409607 0.4586928 0.1056428 +0.1678172 0.4586928 0.1056428 +0.1950164 0.4586928 0.1056428 +0.2210581 0.4586928 0.1056428 +0.245636 0.4586928 0.1056428 +0.2686816 0.4586928 0.1056428 +0.2902431 0.4586928 0.1056428 +0.3104189 0.4586928 0.1056428 +0.3293248 0.4586928 0.1056428 +0.3470774 0.4586928 0.1056428 +0.3637862 0.4586928 0.1056428 +0.3795513 0.4586928 0.1056428 +0.3944623 0.4586928 0.1056428 +0.4085988 0.4586928 0.1056428 +0.4220313 0.4586928 0.1056428 +0.4348222 0.4586928 0.1056428 +0.4470264 0.4586928 0.1056428 +0.4586928 0.4586928 0.1056428 +0.4698649 0.4586928 0.1056428 +0.4805811 0.4586928 0.1056428 +0.490876 0.4586928 0.1056428 +0.5007803 0.4586928 0.1056428 +0.510322 0.4586928 0.1056428 +0.5195258 0.4586928 0.1056428 +0.5284142 0.4586928 0.1056428 +0.5370079 0.4586928 0.1056428 +0.5453253 0.4586928 0.1056428 +0.5533834 0.4586928 0.1056428 +0.5611974 0.4586928 0.1056428 +0.5687816 0.4586928 0.1056428 +0.092819 0.4698649 0.1056428 +0.1056428 0.4698649 0.1056428 +0.1201537 0.4698649 0.1056428 +0.1409607 0.4698649 0.1056428 +0.1678172 0.4698649 0.1056428 +0.1950164 0.4698649 0.1056428 +0.2210581 0.4698649 0.1056428 +0.245636 0.4698649 0.1056428 +0.2686816 0.4698649 0.1056428 +0.2902431 0.4698649 0.1056428 +0.3104189 0.4698649 0.1056428 +0.3293248 0.4698649 0.1056428 +0.3470774 0.4698649 0.1056428 +0.3637862 0.4698649 0.1056428 +0.3795513 0.4698649 0.1056428 +0.3944623 0.4698649 0.1056428 +0.4085988 0.4698649 0.1056428 +0.4220313 0.4698649 0.1056428 +0.4348222 0.4698649 0.1056428 +0.4470264 0.4698649 0.1056428 +0.4586928 0.4698649 0.1056428 +0.4698649 0.4698649 0.1056428 +0.4805811 0.4698649 0.1056428 +0.490876 0.4698649 0.1056428 +0.5007803 0.4698649 0.1056428 +0.510322 0.4698649 0.1056428 +0.5195258 0.4698649 0.1056428 +0.5284142 0.4698649 0.1056428 +0.5370079 0.4698649 0.1056428 +0.5453253 0.4698649 0.1056428 +0.5533834 0.4698649 0.1056428 +0.5611974 0.4698649 0.1056428 +0.5687816 0.4698649 0.1056428 +0.092819 0.4805811 0.1056428 +0.1056428 0.4805811 0.1056428 +0.1201537 0.4805811 0.1056428 +0.1409607 0.4805811 0.1056428 +0.1678172 0.4805811 0.1056428 +0.1950164 0.4805811 0.1056428 +0.2210581 0.4805811 0.1056428 +0.245636 0.4805811 0.1056428 +0.2686816 0.4805811 0.1056428 +0.2902431 0.4805811 0.1056428 +0.3104189 0.4805811 0.1056428 +0.3293248 0.4805811 0.1056428 +0.3470774 0.4805811 0.1056428 +0.3637862 0.4805811 0.1056428 +0.3795513 0.4805811 0.1056428 +0.3944623 0.4805811 0.1056428 +0.4085988 0.4805811 0.1056428 +0.4220313 0.4805811 0.1056428 +0.4348222 0.4805811 0.1056428 +0.4470264 0.4805811 0.1056428 +0.4586928 0.4805811 0.1056428 +0.4698649 0.4805811 0.1056428 +0.4805811 0.4805811 0.1056428 +0.490876 0.4805811 0.1056428 +0.5007803 0.4805811 0.1056428 +0.510322 0.4805811 0.1056428 +0.5195258 0.4805811 0.1056428 +0.5284142 0.4805811 0.1056428 +0.5370079 0.4805811 0.1056428 +0.5453253 0.4805811 0.1056428 +0.5533834 0.4805811 0.1056428 +0.5611974 0.4805811 0.1056428 +0.5687816 0.4805811 0.1056428 +0.092819 0.490876 0.1056428 +0.1056428 0.490876 0.1056428 +0.1201537 0.490876 0.1056428 +0.1409607 0.490876 0.1056428 +0.1678172 0.490876 0.1056428 +0.1950164 0.490876 0.1056428 +0.2210581 0.490876 0.1056428 +0.245636 0.490876 0.1056428 +0.2686816 0.490876 0.1056428 +0.2902431 0.490876 0.1056428 +0.3104189 0.490876 0.1056428 +0.3293248 0.490876 0.1056428 +0.3470774 0.490876 0.1056428 +0.3637862 0.490876 0.1056428 +0.3795513 0.490876 0.1056428 +0.3944623 0.490876 0.1056428 +0.4085988 0.490876 0.1056428 +0.4220313 0.490876 0.1056428 +0.4348222 0.490876 0.1056428 +0.4470264 0.490876 0.1056428 +0.4586928 0.490876 0.1056428 +0.4698649 0.490876 0.1056428 +0.4805811 0.490876 0.1056428 +0.490876 0.490876 0.1056428 +0.5007803 0.490876 0.1056428 +0.510322 0.490876 0.1056428 +0.5195258 0.490876 0.1056428 +0.5284142 0.490876 0.1056428 +0.5370079 0.490876 0.1056428 +0.5453253 0.490876 0.1056428 +0.5533834 0.490876 0.1056428 +0.5611974 0.490876 0.1056428 +0.5687816 0.490876 0.1056428 +0.092819 0.5007803 0.1056428 +0.1056428 0.5007803 0.1056428 +0.1201537 0.5007803 0.1056428 +0.1409607 0.5007803 0.1056428 +0.1678172 0.5007803 0.1056428 +0.1950164 0.5007803 0.1056428 +0.2210581 0.5007803 0.1056428 +0.245636 0.5007803 0.1056428 +0.2686816 0.5007803 0.1056428 +0.2902431 0.5007803 0.1056428 +0.3104189 0.5007803 0.1056428 +0.3293248 0.5007803 0.1056428 +0.3470774 0.5007803 0.1056428 +0.3637862 0.5007803 0.1056428 +0.3795513 0.5007803 0.1056428 +0.3944623 0.5007803 0.1056428 +0.4085988 0.5007803 0.1056428 +0.4220313 0.5007803 0.1056428 +0.4348222 0.5007803 0.1056428 +0.4470264 0.5007803 0.1056428 +0.4586928 0.5007803 0.1056428 +0.4698649 0.5007803 0.1056428 +0.4805811 0.5007803 0.1056428 +0.490876 0.5007803 0.1056428 +0.5007803 0.5007803 0.1056428 +0.510322 0.5007803 0.1056428 +0.5195258 0.5007803 0.1056428 +0.5284142 0.5007803 0.1056428 +0.5370079 0.5007803 0.1056428 +0.5453253 0.5007803 0.1056428 +0.5533834 0.5007803 0.1056428 +0.5611974 0.5007803 0.1056428 +0.5687816 0.5007803 0.1056428 +0.092819 0.510322 0.1056428 +0.1056428 0.510322 0.1056428 +0.1201537 0.510322 0.1056428 +0.1409607 0.510322 0.1056428 +0.1678172 0.510322 0.1056428 +0.1950164 0.510322 0.1056428 +0.2210581 0.510322 0.1056428 +0.245636 0.510322 0.1056428 +0.2686816 0.510322 0.1056428 +0.2902431 0.510322 0.1056428 +0.3104189 0.510322 0.1056428 +0.3293248 0.510322 0.1056428 +0.3470774 0.510322 0.1056428 +0.3637862 0.510322 0.1056428 +0.3795513 0.510322 0.1056428 +0.3944623 0.510322 0.1056428 +0.4085988 0.510322 0.1056428 +0.4220313 0.510322 0.1056428 +0.4348222 0.510322 0.1056428 +0.4470264 0.510322 0.1056428 +0.4586928 0.510322 0.1056428 +0.4698649 0.510322 0.1056428 +0.4805811 0.510322 0.1056428 +0.490876 0.510322 0.1056428 +0.5007803 0.510322 0.1056428 +0.510322 0.510322 0.1056428 +0.5195258 0.510322 0.1056428 +0.5284142 0.510322 0.1056428 +0.5370079 0.510322 0.1056428 +0.5453253 0.510322 0.1056428 +0.5533834 0.510322 0.1056428 +0.5611974 0.510322 0.1056428 +0.5687816 0.510322 0.1056428 +0.092819 0.5195258 0.1056428 +0.1056428 0.5195258 0.1056428 +0.1201537 0.5195258 0.1056428 +0.1409607 0.5195258 0.1056428 +0.1678172 0.5195258 0.1056428 +0.1950164 0.5195258 0.1056428 +0.2210581 0.5195258 0.1056428 +0.245636 0.5195258 0.1056428 +0.2686816 0.5195258 0.1056428 +0.2902431 0.5195258 0.1056428 +0.3104189 0.5195258 0.1056428 +0.3293248 0.5195258 0.1056428 +0.3470774 0.5195258 0.1056428 +0.3637862 0.5195258 0.1056428 +0.3795513 0.5195258 0.1056428 +0.3944623 0.5195258 0.1056428 +0.4085988 0.5195258 0.1056428 +0.4220313 0.5195258 0.1056428 +0.4348222 0.5195258 0.1056428 +0.4470264 0.5195258 0.1056428 +0.4586928 0.5195258 0.1056428 +0.4698649 0.5195258 0.1056428 +0.4805811 0.5195258 0.1056428 +0.490876 0.5195258 0.1056428 +0.5007803 0.5195258 0.1056428 +0.510322 0.5195258 0.1056428 +0.5195258 0.5195258 0.1056428 +0.5284142 0.5195258 0.1056428 +0.5370079 0.5195258 0.1056428 +0.5453253 0.5195258 0.1056428 +0.5533834 0.5195258 0.1056428 +0.5611974 0.5195258 0.1056428 +0.5687816 0.5195258 0.1056428 +0.092819 0.5284142 0.1056428 +0.1056428 0.5284142 0.1056428 +0.1201537 0.5284142 0.1056428 +0.1409607 0.5284142 0.1056428 +0.1678172 0.5284142 0.1056428 +0.1950164 0.5284142 0.1056428 +0.2210581 0.5284142 0.1056428 +0.245636 0.5284142 0.1056428 +0.2686816 0.5284142 0.1056428 +0.2902431 0.5284142 0.1056428 +0.3104189 0.5284142 0.1056428 +0.3293248 0.5284142 0.1056428 +0.3470774 0.5284142 0.1056428 +0.3637862 0.5284142 0.1056428 +0.3795513 0.5284142 0.1056428 +0.3944623 0.5284142 0.1056428 +0.4085988 0.5284142 0.1056428 +0.4220313 0.5284142 0.1056428 +0.4348222 0.5284142 0.1056428 +0.4470264 0.5284142 0.1056428 +0.4586928 0.5284142 0.1056428 +0.4698649 0.5284142 0.1056428 +0.4805811 0.5284142 0.1056428 +0.490876 0.5284142 0.1056428 +0.5007803 0.5284142 0.1056428 +0.510322 0.5284142 0.1056428 +0.5195258 0.5284142 0.1056428 +0.5284142 0.5284142 0.1056428 +0.5370079 0.5284142 0.1056428 +0.5453253 0.5284142 0.1056428 +0.5533834 0.5284142 0.1056428 +0.5611974 0.5284142 0.1056428 +0.5687816 0.5284142 0.1056428 +0.092819 0.5370079 0.1056428 +0.1056428 0.5370079 0.1056428 +0.1201537 0.5370079 0.1056428 +0.1409607 0.5370079 0.1056428 +0.1678172 0.5370079 0.1056428 +0.1950164 0.5370079 0.1056428 +0.2210581 0.5370079 0.1056428 +0.245636 0.5370079 0.1056428 +0.2686816 0.5370079 0.1056428 +0.2902431 0.5370079 0.1056428 +0.3104189 0.5370079 0.1056428 +0.3293248 0.5370079 0.1056428 +0.3470774 0.5370079 0.1056428 +0.3637862 0.5370079 0.1056428 +0.3795513 0.5370079 0.1056428 +0.3944623 0.5370079 0.1056428 +0.4085988 0.5370079 0.1056428 +0.4220313 0.5370079 0.1056428 +0.4348222 0.5370079 0.1056428 +0.4470264 0.5370079 0.1056428 +0.4586928 0.5370079 0.1056428 +0.4698649 0.5370079 0.1056428 +0.4805811 0.5370079 0.1056428 +0.490876 0.5370079 0.1056428 +0.5007803 0.5370079 0.1056428 +0.510322 0.5370079 0.1056428 +0.5195258 0.5370079 0.1056428 +0.5284142 0.5370079 0.1056428 +0.5370079 0.5370079 0.1056428 +0.5453253 0.5370079 0.1056428 +0.5533834 0.5370079 0.1056428 +0.5611974 0.5370079 0.1056428 +0.5687816 0.5370079 0.1056428 +0.092819 0.5453253 0.1056428 +0.1056428 0.5453253 0.1056428 +0.1201537 0.5453253 0.1056428 +0.1409607 0.5453253 0.1056428 +0.1678172 0.5453253 0.1056428 +0.1950164 0.5453253 0.1056428 +0.2210581 0.5453253 0.1056428 +0.245636 0.5453253 0.1056428 +0.2686816 0.5453253 0.1056428 +0.2902431 0.5453253 0.1056428 +0.3104189 0.5453253 0.1056428 +0.3293248 0.5453253 0.1056428 +0.3470774 0.5453253 0.1056428 +0.3637862 0.5453253 0.1056428 +0.3795513 0.5453253 0.1056428 +0.3944623 0.5453253 0.1056428 +0.4085988 0.5453253 0.1056428 +0.4220313 0.5453253 0.1056428 +0.4348222 0.5453253 0.1056428 +0.4470264 0.5453253 0.1056428 +0.4586928 0.5453253 0.1056428 +0.4698649 0.5453253 0.1056428 +0.4805811 0.5453253 0.1056428 +0.490876 0.5453253 0.1056428 +0.5007803 0.5453253 0.1056428 +0.510322 0.5453253 0.1056428 +0.5195258 0.5453253 0.1056428 +0.5284142 0.5453253 0.1056428 +0.5370079 0.5453253 0.1056428 +0.5453253 0.5453253 0.1056428 +0.5533834 0.5453253 0.1056428 +0.5611974 0.5453253 0.1056428 +0.5687816 0.5453253 0.1056428 +0.092819 0.5533834 0.1056428 +0.1056428 0.5533834 0.1056428 +0.1201537 0.5533834 0.1056428 +0.1409607 0.5533834 0.1056428 +0.1678172 0.5533834 0.1056428 +0.1950164 0.5533834 0.1056428 +0.2210581 0.5533834 0.1056428 +0.245636 0.5533834 0.1056428 +0.2686816 0.5533834 0.1056428 +0.2902431 0.5533834 0.1056428 +0.3104189 0.5533834 0.1056428 +0.3293248 0.5533834 0.1056428 +0.3470774 0.5533834 0.1056428 +0.3637862 0.5533834 0.1056428 +0.3795513 0.5533834 0.1056428 +0.3944623 0.5533834 0.1056428 +0.4085988 0.5533834 0.1056428 +0.4220313 0.5533834 0.1056428 +0.4348222 0.5533834 0.1056428 +0.4470264 0.5533834 0.1056428 +0.4586928 0.5533834 0.1056428 +0.4698649 0.5533834 0.1056428 +0.4805811 0.5533834 0.1056428 +0.490876 0.5533834 0.1056428 +0.5007803 0.5533834 0.1056428 +0.510322 0.5533834 0.1056428 +0.5195258 0.5533834 0.1056428 +0.5284142 0.5533834 0.1056428 +0.5370079 0.5533834 0.1056428 +0.5453253 0.5533834 0.1056428 +0.5533834 0.5533834 0.1056428 +0.5611974 0.5533834 0.1056428 +0.5687816 0.5533834 0.1056428 +0.092819 0.5611974 0.1056428 +0.1056428 0.5611974 0.1056428 +0.1201537 0.5611974 0.1056428 +0.1409607 0.5611974 0.1056428 +0.1678172 0.5611974 0.1056428 +0.1950164 0.5611974 0.1056428 +0.2210581 0.5611974 0.1056428 +0.245636 0.5611974 0.1056428 +0.2686816 0.5611974 0.1056428 +0.2902431 0.5611974 0.1056428 +0.3104189 0.5611974 0.1056428 +0.3293248 0.5611974 0.1056428 +0.3470774 0.5611974 0.1056428 +0.3637862 0.5611974 0.1056428 +0.3795513 0.5611974 0.1056428 +0.3944623 0.5611974 0.1056428 +0.4085988 0.5611974 0.1056428 +0.4220313 0.5611974 0.1056428 +0.4348222 0.5611974 0.1056428 +0.4470264 0.5611974 0.1056428 +0.4586928 0.5611974 0.1056428 +0.4698649 0.5611974 0.1056428 +0.4805811 0.5611974 0.1056428 +0.490876 0.5611974 0.1056428 +0.5007803 0.5611974 0.1056428 +0.510322 0.5611974 0.1056428 +0.5195258 0.5611974 0.1056428 +0.5284142 0.5611974 0.1056428 +0.5370079 0.5611974 0.1056428 +0.5453253 0.5611974 0.1056428 +0.5533834 0.5611974 0.1056428 +0.5611974 0.5611974 0.1056428 +0.5687816 0.5611974 0.1056428 +0.092819 0.5687816 0.1056428 +0.1056428 0.5687816 0.1056428 +0.1201537 0.5687816 0.1056428 +0.1409607 0.5687816 0.1056428 +0.1678172 0.5687816 0.1056428 +0.1950164 0.5687816 0.1056428 +0.2210581 0.5687816 0.1056428 +0.245636 0.5687816 0.1056428 +0.2686816 0.5687816 0.1056428 +0.2902431 0.5687816 0.1056428 +0.3104189 0.5687816 0.1056428 +0.3293248 0.5687816 0.1056428 +0.3470774 0.5687816 0.1056428 +0.3637862 0.5687816 0.1056428 +0.3795513 0.5687816 0.1056428 +0.3944623 0.5687816 0.1056428 +0.4085988 0.5687816 0.1056428 +0.4220313 0.5687816 0.1056428 +0.4348222 0.5687816 0.1056428 +0.4470264 0.5687816 0.1056428 +0.4586928 0.5687816 0.1056428 +0.4698649 0.5687816 0.1056428 +0.4805811 0.5687816 0.1056428 +0.490876 0.5687816 0.1056428 +0.5007803 0.5687816 0.1056428 +0.510322 0.5687816 0.1056428 +0.5195258 0.5687816 0.1056428 +0.5284142 0.5687816 0.1056428 +0.5370079 0.5687816 0.1056428 +0.5453253 0.5687816 0.1056428 +0.5533834 0.5687816 0.1056428 +0.5611974 0.5687816 0.1056428 +0.5687816 0.5687816 0.1056428 +0.092819 0.092819 0.1201537 +0.1056428 0.092819 0.1201537 +0.1201537 0.092819 0.1201537 +0.1409607 0.092819 0.1201537 +0.1678172 0.092819 0.1201537 +0.1950164 0.092819 0.1201537 +0.2210581 0.092819 0.1201537 +0.245636 0.092819 0.1201537 +0.2686816 0.092819 0.1201537 +0.2902431 0.092819 0.1201537 +0.3104189 0.092819 0.1201537 +0.3293248 0.092819 0.1201537 +0.3470774 0.092819 0.1201537 +0.3637862 0.092819 0.1201537 +0.3795513 0.092819 0.1201537 +0.3944623 0.092819 0.1201537 +0.4085988 0.092819 0.1201537 +0.4220313 0.092819 0.1201537 +0.4348222 0.092819 0.1201537 +0.4470264 0.092819 0.1201537 +0.4586928 0.092819 0.1201537 +0.4698649 0.092819 0.1201537 +0.4805811 0.092819 0.1201537 +0.490876 0.092819 0.1201537 +0.5007803 0.092819 0.1201537 +0.510322 0.092819 0.1201537 +0.5195258 0.092819 0.1201537 +0.5284142 0.092819 0.1201537 +0.5370079 0.092819 0.1201537 +0.5453253 0.092819 0.1201537 +0.5533834 0.092819 0.1201537 +0.5611974 0.092819 0.1201537 +0.5687816 0.092819 0.1201537 +0.092819 0.1056428 0.1201537 +0.1056428 0.1056428 0.1201537 +0.1201537 0.1056428 0.1201537 +0.1409607 0.1056428 0.1201537 +0.1678172 0.1056428 0.1201537 +0.1950164 0.1056428 0.1201537 +0.2210581 0.1056428 0.1201537 +0.245636 0.1056428 0.1201537 +0.2686816 0.1056428 0.1201537 +0.2902431 0.1056428 0.1201537 +0.3104189 0.1056428 0.1201537 +0.3293248 0.1056428 0.1201537 +0.3470774 0.1056428 0.1201537 +0.3637862 0.1056428 0.1201537 +0.3795513 0.1056428 0.1201537 +0.3944623 0.1056428 0.1201537 +0.4085988 0.1056428 0.1201537 +0.4220313 0.1056428 0.1201537 +0.4348222 0.1056428 0.1201537 +0.4470264 0.1056428 0.1201537 +0.4586928 0.1056428 0.1201537 +0.4698649 0.1056428 0.1201537 +0.4805811 0.1056428 0.1201537 +0.490876 0.1056428 0.1201537 +0.5007803 0.1056428 0.1201537 +0.510322 0.1056428 0.1201537 +0.5195258 0.1056428 0.1201537 +0.5284142 0.1056428 0.1201537 +0.5370079 0.1056428 0.1201537 +0.5453253 0.1056428 0.1201537 +0.5533834 0.1056428 0.1201537 +0.5611974 0.1056428 0.1201537 +0.5687816 0.1056428 0.1201537 +0.092819 0.1201537 0.1201537 +0.1056428 0.1201537 0.1201537 +0.1201537 0.1201537 0.1201537 +0.1409607 0.1201537 0.1201537 +0.1678172 0.1201537 0.1201537 +0.1950164 0.1201537 0.1201537 +0.2210581 0.1201537 0.1201537 +0.245636 0.1201537 0.1201537 +0.2686816 0.1201537 0.1201537 +0.2902431 0.1201537 0.1201537 +0.3104189 0.1201537 0.1201537 +0.3293248 0.1201537 0.1201537 +0.3470774 0.1201537 0.1201537 +0.3637862 0.1201537 0.1201537 +0.3795513 0.1201537 0.1201537 +0.3944623 0.1201537 0.1201537 +0.4085988 0.1201537 0.1201537 +0.4220313 0.1201537 0.1201537 +0.4348222 0.1201537 0.1201537 +0.4470264 0.1201537 0.1201537 +0.4586928 0.1201537 0.1201537 +0.4698649 0.1201537 0.1201537 +0.4805811 0.1201537 0.1201537 +0.490876 0.1201537 0.1201537 +0.5007803 0.1201537 0.1201537 +0.510322 0.1201537 0.1201537 +0.5195258 0.1201537 0.1201537 +0.5284142 0.1201537 0.1201537 +0.5370079 0.1201537 0.1201537 +0.5453253 0.1201537 0.1201537 +0.5533834 0.1201537 0.1201537 +0.5611974 0.1201537 0.1201537 +0.5687816 0.1201537 0.1201537 +0.092819 0.1409607 0.1201537 +0.1056428 0.1409607 0.1201537 +0.1201537 0.1409607 0.1201537 +0.1409607 0.1409607 0.1201537 +0.1678172 0.1409607 0.1201537 +0.1950164 0.1409607 0.1201537 +0.2210581 0.1409607 0.1201537 +0.245636 0.1409607 0.1201537 +0.2686816 0.1409607 0.1201537 +0.2902431 0.1409607 0.1201537 +0.3104189 0.1409607 0.1201537 +0.3293248 0.1409607 0.1201537 +0.3470774 0.1409607 0.1201537 +0.3637862 0.1409607 0.1201537 +0.3795513 0.1409607 0.1201537 +0.3944623 0.1409607 0.1201537 +0.4085988 0.1409607 0.1201537 +0.4220313 0.1409607 0.1201537 +0.4348222 0.1409607 0.1201537 +0.4470264 0.1409607 0.1201537 +0.4586928 0.1409607 0.1201537 +0.4698649 0.1409607 0.1201537 +0.4805811 0.1409607 0.1201537 +0.490876 0.1409607 0.1201537 +0.5007803 0.1409607 0.1201537 +0.510322 0.1409607 0.1201537 +0.5195258 0.1409607 0.1201537 +0.5284142 0.1409607 0.1201537 +0.5370079 0.1409607 0.1201537 +0.5453253 0.1409607 0.1201537 +0.5533834 0.1409607 0.1201537 +0.5611974 0.1409607 0.1201537 +0.5687816 0.1409607 0.1201537 +0.092819 0.1678172 0.1201537 +0.1056428 0.1678172 0.1201537 +0.1201537 0.1678172 0.1201537 +0.1409607 0.1678172 0.1201537 +0.1678172 0.1678172 0.1201537 +0.1950164 0.1678172 0.1201537 +0.2210581 0.1678172 0.1201537 +0.245636 0.1678172 0.1201537 +0.2686816 0.1678172 0.1201537 +0.2902431 0.1678172 0.1201537 +0.3104189 0.1678172 0.1201537 +0.3293248 0.1678172 0.1201537 +0.3470774 0.1678172 0.1201537 +0.3637862 0.1678172 0.1201537 +0.3795513 0.1678172 0.1201537 +0.3944623 0.1678172 0.1201537 +0.4085988 0.1678172 0.1201537 +0.4220313 0.1678172 0.1201537 +0.4348222 0.1678172 0.1201537 +0.4470264 0.1678172 0.1201537 +0.4586928 0.1678172 0.1201537 +0.4698649 0.1678172 0.1201537 +0.4805811 0.1678172 0.1201537 +0.490876 0.1678172 0.1201537 +0.5007803 0.1678172 0.1201537 +0.510322 0.1678172 0.1201537 +0.5195258 0.1678172 0.1201537 +0.5284142 0.1678172 0.1201537 +0.5370079 0.1678172 0.1201537 +0.5453253 0.1678172 0.1201537 +0.5533834 0.1678172 0.1201537 +0.5611974 0.1678172 0.1201537 +0.5687816 0.1678172 0.1201537 +0.092819 0.1950164 0.1201537 +0.1056428 0.1950164 0.1201537 +0.1201537 0.1950164 0.1201537 +0.1409607 0.1950164 0.1201537 +0.1678172 0.1950164 0.1201537 +0.1950164 0.1950164 0.1201537 +0.2210581 0.1950164 0.1201537 +0.245636 0.1950164 0.1201537 +0.2686816 0.1950164 0.1201537 +0.2902431 0.1950164 0.1201537 +0.3104189 0.1950164 0.1201537 +0.3293248 0.1950164 0.1201537 +0.3470774 0.1950164 0.1201537 +0.3637862 0.1950164 0.1201537 +0.3795513 0.1950164 0.1201537 +0.3944623 0.1950164 0.1201537 +0.4085988 0.1950164 0.1201537 +0.4220313 0.1950164 0.1201537 +0.4348222 0.1950164 0.1201537 +0.4470264 0.1950164 0.1201537 +0.4586928 0.1950164 0.1201537 +0.4698649 0.1950164 0.1201537 +0.4805811 0.1950164 0.1201537 +0.490876 0.1950164 0.1201537 +0.5007803 0.1950164 0.1201537 +0.510322 0.1950164 0.1201537 +0.5195258 0.1950164 0.1201537 +0.5284142 0.1950164 0.1201537 +0.5370079 0.1950164 0.1201537 +0.5453253 0.1950164 0.1201537 +0.5533834 0.1950164 0.1201537 +0.5611974 0.1950164 0.1201537 +0.5687816 0.1950164 0.1201537 +0.092819 0.2210581 0.1201537 +0.1056428 0.2210581 0.1201537 +0.1201537 0.2210581 0.1201537 +0.1409607 0.2210581 0.1201537 +0.1678172 0.2210581 0.1201537 +0.1950164 0.2210581 0.1201537 +0.2210581 0.2210581 0.1201537 +0.245636 0.2210581 0.1201537 +0.2686816 0.2210581 0.1201537 +0.2902431 0.2210581 0.1201537 +0.3104189 0.2210581 0.1201537 +0.3293248 0.2210581 0.1201537 +0.3470774 0.2210581 0.1201537 +0.3637862 0.2210581 0.1201537 +0.3795513 0.2210581 0.1201537 +0.3944623 0.2210581 0.1201537 +0.4085988 0.2210581 0.1201537 +0.4220313 0.2210581 0.1201537 +0.4348222 0.2210581 0.1201537 +0.4470264 0.2210581 0.1201537 +0.4586928 0.2210581 0.1201537 +0.4698649 0.2210581 0.1201537 +0.4805811 0.2210581 0.1201537 +0.490876 0.2210581 0.1201537 +0.5007803 0.2210581 0.1201537 +0.510322 0.2210581 0.1201537 +0.5195258 0.2210581 0.1201537 +0.5284142 0.2210581 0.1201537 +0.5370079 0.2210581 0.1201537 +0.5453253 0.2210581 0.1201537 +0.5533834 0.2210581 0.1201537 +0.5611974 0.2210581 0.1201537 +0.5687816 0.2210581 0.1201537 +0.092819 0.245636 0.1201537 +0.1056428 0.245636 0.1201537 +0.1201537 0.245636 0.1201537 +0.1409607 0.245636 0.1201537 +0.1678172 0.245636 0.1201537 +0.1950164 0.245636 0.1201537 +0.2210581 0.245636 0.1201537 +0.245636 0.245636 0.1201537 +0.2686816 0.245636 0.1201537 +0.2902431 0.245636 0.1201537 +0.3104189 0.245636 0.1201537 +0.3293248 0.245636 0.1201537 +0.3470774 0.245636 0.1201537 +0.3637862 0.245636 0.1201537 +0.3795513 0.245636 0.1201537 +0.3944623 0.245636 0.1201537 +0.4085988 0.245636 0.1201537 +0.4220313 0.245636 0.1201537 +0.4348222 0.245636 0.1201537 +0.4470264 0.245636 0.1201537 +0.4586928 0.245636 0.1201537 +0.4698649 0.245636 0.1201537 +0.4805811 0.245636 0.1201537 +0.490876 0.245636 0.1201537 +0.5007803 0.245636 0.1201537 +0.510322 0.245636 0.1201537 +0.5195258 0.245636 0.1201537 +0.5284142 0.245636 0.1201537 +0.5370079 0.245636 0.1201537 +0.5453253 0.245636 0.1201537 +0.5533834 0.245636 0.1201537 +0.5611974 0.245636 0.1201537 +0.5687816 0.245636 0.1201537 +0.092819 0.2686816 0.1201537 +0.1056428 0.2686816 0.1201537 +0.1201537 0.2686816 0.1201537 +0.1409607 0.2686816 0.1201537 +0.1678172 0.2686816 0.1201537 +0.1950164 0.2686816 0.1201537 +0.2210581 0.2686816 0.1201537 +0.245636 0.2686816 0.1201537 +0.2686816 0.2686816 0.1201537 +0.2902431 0.2686816 0.1201537 +0.3104189 0.2686816 0.1201537 +0.3293248 0.2686816 0.1201537 +0.3470774 0.2686816 0.1201537 +0.3637862 0.2686816 0.1201537 +0.3795513 0.2686816 0.1201537 +0.3944623 0.2686816 0.1201537 +0.4085988 0.2686816 0.1201537 +0.4220313 0.2686816 0.1201537 +0.4348222 0.2686816 0.1201537 +0.4470264 0.2686816 0.1201537 +0.4586928 0.2686816 0.1201537 +0.4698649 0.2686816 0.1201537 +0.4805811 0.2686816 0.1201537 +0.490876 0.2686816 0.1201537 +0.5007803 0.2686816 0.1201537 +0.510322 0.2686816 0.1201537 +0.5195258 0.2686816 0.1201537 +0.5284142 0.2686816 0.1201537 +0.5370079 0.2686816 0.1201537 +0.5453253 0.2686816 0.1201537 +0.5533834 0.2686816 0.1201537 +0.5611974 0.2686816 0.1201537 +0.5687816 0.2686816 0.1201537 +0.092819 0.2902431 0.1201537 +0.1056428 0.2902431 0.1201537 +0.1201537 0.2902431 0.1201537 +0.1409607 0.2902431 0.1201537 +0.1678172 0.2902431 0.1201537 +0.1950164 0.2902431 0.1201537 +0.2210581 0.2902431 0.1201537 +0.245636 0.2902431 0.1201537 +0.2686816 0.2902431 0.1201537 +0.2902431 0.2902431 0.1201537 +0.3104189 0.2902431 0.1201537 +0.3293248 0.2902431 0.1201537 +0.3470774 0.2902431 0.1201537 +0.3637862 0.2902431 0.1201537 +0.3795513 0.2902431 0.1201537 +0.3944623 0.2902431 0.1201537 +0.4085988 0.2902431 0.1201537 +0.4220313 0.2902431 0.1201537 +0.4348222 0.2902431 0.1201537 +0.4470264 0.2902431 0.1201537 +0.4586928 0.2902431 0.1201537 +0.4698649 0.2902431 0.1201537 +0.4805811 0.2902431 0.1201537 +0.490876 0.2902431 0.1201537 +0.5007803 0.2902431 0.1201537 +0.510322 0.2902431 0.1201537 +0.5195258 0.2902431 0.1201537 +0.5284142 0.2902431 0.1201537 +0.5370079 0.2902431 0.1201537 +0.5453253 0.2902431 0.1201537 +0.5533834 0.2902431 0.1201537 +0.5611974 0.2902431 0.1201537 +0.5687816 0.2902431 0.1201537 +0.092819 0.3104189 0.1201537 +0.1056428 0.3104189 0.1201537 +0.1201537 0.3104189 0.1201537 +0.1409607 0.3104189 0.1201537 +0.1678172 0.3104189 0.1201537 +0.1950164 0.3104189 0.1201537 +0.2210581 0.3104189 0.1201537 +0.245636 0.3104189 0.1201537 +0.2686816 0.3104189 0.1201537 +0.2902431 0.3104189 0.1201537 +0.3104189 0.3104189 0.1201537 +0.3293248 0.3104189 0.1201537 +0.3470774 0.3104189 0.1201537 +0.3637862 0.3104189 0.1201537 +0.3795513 0.3104189 0.1201537 +0.3944623 0.3104189 0.1201537 +0.4085988 0.3104189 0.1201537 +0.4220313 0.3104189 0.1201537 +0.4348222 0.3104189 0.1201537 +0.4470264 0.3104189 0.1201537 +0.4586928 0.3104189 0.1201537 +0.4698649 0.3104189 0.1201537 +0.4805811 0.3104189 0.1201537 +0.490876 0.3104189 0.1201537 +0.5007803 0.3104189 0.1201537 +0.510322 0.3104189 0.1201537 +0.5195258 0.3104189 0.1201537 +0.5284142 0.3104189 0.1201537 +0.5370079 0.3104189 0.1201537 +0.5453253 0.3104189 0.1201537 +0.5533834 0.3104189 0.1201537 +0.5611974 0.3104189 0.1201537 +0.5687816 0.3104189 0.1201537 +0.092819 0.3293248 0.1201537 +0.1056428 0.3293248 0.1201537 +0.1201537 0.3293248 0.1201537 +0.1409607 0.3293248 0.1201537 +0.1678172 0.3293248 0.1201537 +0.1950164 0.3293248 0.1201537 +0.2210581 0.3293248 0.1201537 +0.245636 0.3293248 0.1201537 +0.2686816 0.3293248 0.1201537 +0.2902431 0.3293248 0.1201537 +0.3104189 0.3293248 0.1201537 +0.3293248 0.3293248 0.1201537 +0.3470774 0.3293248 0.1201537 +0.3637862 0.3293248 0.1201537 +0.3795513 0.3293248 0.1201537 +0.3944623 0.3293248 0.1201537 +0.4085988 0.3293248 0.1201537 +0.4220313 0.3293248 0.1201537 +0.4348222 0.3293248 0.1201537 +0.4470264 0.3293248 0.1201537 +0.4586928 0.3293248 0.1201537 +0.4698649 0.3293248 0.1201537 +0.4805811 0.3293248 0.1201537 +0.490876 0.3293248 0.1201537 +0.5007803 0.3293248 0.1201537 +0.510322 0.3293248 0.1201537 +0.5195258 0.3293248 0.1201537 +0.5284142 0.3293248 0.1201537 +0.5370079 0.3293248 0.1201537 +0.5453253 0.3293248 0.1201537 +0.5533834 0.3293248 0.1201537 +0.5611974 0.3293248 0.1201537 +0.5687816 0.3293248 0.1201537 +0.092819 0.3470774 0.1201537 +0.1056428 0.3470774 0.1201537 +0.1201537 0.3470774 0.1201537 +0.1409607 0.3470774 0.1201537 +0.1678172 0.3470774 0.1201537 +0.1950164 0.3470774 0.1201537 +0.2210581 0.3470774 0.1201537 +0.245636 0.3470774 0.1201537 +0.2686816 0.3470774 0.1201537 +0.2902431 0.3470774 0.1201537 +0.3104189 0.3470774 0.1201537 +0.3293248 0.3470774 0.1201537 +0.3470774 0.3470774 0.1201537 +0.3637862 0.3470774 0.1201537 +0.3795513 0.3470774 0.1201537 +0.3944623 0.3470774 0.1201537 +0.4085988 0.3470774 0.1201537 +0.4220313 0.3470774 0.1201537 +0.4348222 0.3470774 0.1201537 +0.4470264 0.3470774 0.1201537 +0.4586928 0.3470774 0.1201537 +0.4698649 0.3470774 0.1201537 +0.4805811 0.3470774 0.1201537 +0.490876 0.3470774 0.1201537 +0.5007803 0.3470774 0.1201537 +0.510322 0.3470774 0.1201537 +0.5195258 0.3470774 0.1201537 +0.5284142 0.3470774 0.1201537 +0.5370079 0.3470774 0.1201537 +0.5453253 0.3470774 0.1201537 +0.5533834 0.3470774 0.1201537 +0.5611974 0.3470774 0.1201537 +0.5687816 0.3470774 0.1201537 +0.092819 0.3637862 0.1201537 +0.1056428 0.3637862 0.1201537 +0.1201537 0.3637862 0.1201537 +0.1409607 0.3637862 0.1201537 +0.1678172 0.3637862 0.1201537 +0.1950164 0.3637862 0.1201537 +0.2210581 0.3637862 0.1201537 +0.245636 0.3637862 0.1201537 +0.2686816 0.3637862 0.1201537 +0.2902431 0.3637862 0.1201537 +0.3104189 0.3637862 0.1201537 +0.3293248 0.3637862 0.1201537 +0.3470774 0.3637862 0.1201537 +0.3637862 0.3637862 0.1201537 +0.3795513 0.3637862 0.1201537 +0.3944623 0.3637862 0.1201537 +0.4085988 0.3637862 0.1201537 +0.4220313 0.3637862 0.1201537 +0.4348222 0.3637862 0.1201537 +0.4470264 0.3637862 0.1201537 +0.4586928 0.3637862 0.1201537 +0.4698649 0.3637862 0.1201537 +0.4805811 0.3637862 0.1201537 +0.490876 0.3637862 0.1201537 +0.5007803 0.3637862 0.1201537 +0.510322 0.3637862 0.1201537 +0.5195258 0.3637862 0.1201537 +0.5284142 0.3637862 0.1201537 +0.5370079 0.3637862 0.1201537 +0.5453253 0.3637862 0.1201537 +0.5533834 0.3637862 0.1201537 +0.5611974 0.3637862 0.1201537 +0.5687816 0.3637862 0.1201537 +0.092819 0.3795513 0.1201537 +0.1056428 0.3795513 0.1201537 +0.1201537 0.3795513 0.1201537 +0.1409607 0.3795513 0.1201537 +0.1678172 0.3795513 0.1201537 +0.1950164 0.3795513 0.1201537 +0.2210581 0.3795513 0.1201537 +0.245636 0.3795513 0.1201537 +0.2686816 0.3795513 0.1201537 +0.2902431 0.3795513 0.1201537 +0.3104189 0.3795513 0.1201537 +0.3293248 0.3795513 0.1201537 +0.3470774 0.3795513 0.1201537 +0.3637862 0.3795513 0.1201537 +0.3795513 0.3795513 0.1201537 +0.3944623 0.3795513 0.1201537 +0.4085988 0.3795513 0.1201537 +0.4220313 0.3795513 0.1201537 +0.4348222 0.3795513 0.1201537 +0.4470264 0.3795513 0.1201537 +0.4586928 0.3795513 0.1201537 +0.4698649 0.3795513 0.1201537 +0.4805811 0.3795513 0.1201537 +0.490876 0.3795513 0.1201537 +0.5007803 0.3795513 0.1201537 +0.510322 0.3795513 0.1201537 +0.5195258 0.3795513 0.1201537 +0.5284142 0.3795513 0.1201537 +0.5370079 0.3795513 0.1201537 +0.5453253 0.3795513 0.1201537 +0.5533834 0.3795513 0.1201537 +0.5611974 0.3795513 0.1201537 +0.5687816 0.3795513 0.1201537 +0.092819 0.3944623 0.1201537 +0.1056428 0.3944623 0.1201537 +0.1201537 0.3944623 0.1201537 +0.1409607 0.3944623 0.1201537 +0.1678172 0.3944623 0.1201537 +0.1950164 0.3944623 0.1201537 +0.2210581 0.3944623 0.1201537 +0.245636 0.3944623 0.1201537 +0.2686816 0.3944623 0.1201537 +0.2902431 0.3944623 0.1201537 +0.3104189 0.3944623 0.1201537 +0.3293248 0.3944623 0.1201537 +0.3470774 0.3944623 0.1201537 +0.3637862 0.3944623 0.1201537 +0.3795513 0.3944623 0.1201537 +0.3944623 0.3944623 0.1201537 +0.4085988 0.3944623 0.1201537 +0.4220313 0.3944623 0.1201537 +0.4348222 0.3944623 0.1201537 +0.4470264 0.3944623 0.1201537 +0.4586928 0.3944623 0.1201537 +0.4698649 0.3944623 0.1201537 +0.4805811 0.3944623 0.1201537 +0.490876 0.3944623 0.1201537 +0.5007803 0.3944623 0.1201537 +0.510322 0.3944623 0.1201537 +0.5195258 0.3944623 0.1201537 +0.5284142 0.3944623 0.1201537 +0.5370079 0.3944623 0.1201537 +0.5453253 0.3944623 0.1201537 +0.5533834 0.3944623 0.1201537 +0.5611974 0.3944623 0.1201537 +0.5687816 0.3944623 0.1201537 +0.092819 0.4085988 0.1201537 +0.1056428 0.4085988 0.1201537 +0.1201537 0.4085988 0.1201537 +0.1409607 0.4085988 0.1201537 +0.1678172 0.4085988 0.1201537 +0.1950164 0.4085988 0.1201537 +0.2210581 0.4085988 0.1201537 +0.245636 0.4085988 0.1201537 +0.2686816 0.4085988 0.1201537 +0.2902431 0.4085988 0.1201537 +0.3104189 0.4085988 0.1201537 +0.3293248 0.4085988 0.1201537 +0.3470774 0.4085988 0.1201537 +0.3637862 0.4085988 0.1201537 +0.3795513 0.4085988 0.1201537 +0.3944623 0.4085988 0.1201537 +0.4085988 0.4085988 0.1201537 +0.4220313 0.4085988 0.1201537 +0.4348222 0.4085988 0.1201537 +0.4470264 0.4085988 0.1201537 +0.4586928 0.4085988 0.1201537 +0.4698649 0.4085988 0.1201537 +0.4805811 0.4085988 0.1201537 +0.490876 0.4085988 0.1201537 +0.5007803 0.4085988 0.1201537 +0.510322 0.4085988 0.1201537 +0.5195258 0.4085988 0.1201537 +0.5284142 0.4085988 0.1201537 +0.5370079 0.4085988 0.1201537 +0.5453253 0.4085988 0.1201537 +0.5533834 0.4085988 0.1201537 +0.5611974 0.4085988 0.1201537 +0.5687816 0.4085988 0.1201537 +0.092819 0.4220313 0.1201537 +0.1056428 0.4220313 0.1201537 +0.1201537 0.4220313 0.1201537 +0.1409607 0.4220313 0.1201537 +0.1678172 0.4220313 0.1201537 +0.1950164 0.4220313 0.1201537 +0.2210581 0.4220313 0.1201537 +0.245636 0.4220313 0.1201537 +0.2686816 0.4220313 0.1201537 +0.2902431 0.4220313 0.1201537 +0.3104189 0.4220313 0.1201537 +0.3293248 0.4220313 0.1201537 +0.3470774 0.4220313 0.1201537 +0.3637862 0.4220313 0.1201537 +0.3795513 0.4220313 0.1201537 +0.3944623 0.4220313 0.1201537 +0.4085988 0.4220313 0.1201537 +0.4220313 0.4220313 0.1201537 +0.4348222 0.4220313 0.1201537 +0.4470264 0.4220313 0.1201537 +0.4586928 0.4220313 0.1201537 +0.4698649 0.4220313 0.1201537 +0.4805811 0.4220313 0.1201537 +0.490876 0.4220313 0.1201537 +0.5007803 0.4220313 0.1201537 +0.510322 0.4220313 0.1201537 +0.5195258 0.4220313 0.1201537 +0.5284142 0.4220313 0.1201537 +0.5370079 0.4220313 0.1201537 +0.5453253 0.4220313 0.1201537 +0.5533834 0.4220313 0.1201537 +0.5611974 0.4220313 0.1201537 +0.5687816 0.4220313 0.1201537 +0.092819 0.4348222 0.1201537 +0.1056428 0.4348222 0.1201537 +0.1201537 0.4348222 0.1201537 +0.1409607 0.4348222 0.1201537 +0.1678172 0.4348222 0.1201537 +0.1950164 0.4348222 0.1201537 +0.2210581 0.4348222 0.1201537 +0.245636 0.4348222 0.1201537 +0.2686816 0.4348222 0.1201537 +0.2902431 0.4348222 0.1201537 +0.3104189 0.4348222 0.1201537 +0.3293248 0.4348222 0.1201537 +0.3470774 0.4348222 0.1201537 +0.3637862 0.4348222 0.1201537 +0.3795513 0.4348222 0.1201537 +0.3944623 0.4348222 0.1201537 +0.4085988 0.4348222 0.1201537 +0.4220313 0.4348222 0.1201537 +0.4348222 0.4348222 0.1201537 +0.4470264 0.4348222 0.1201537 +0.4586928 0.4348222 0.1201537 +0.4698649 0.4348222 0.1201537 +0.4805811 0.4348222 0.1201537 +0.490876 0.4348222 0.1201537 +0.5007803 0.4348222 0.1201537 +0.510322 0.4348222 0.1201537 +0.5195258 0.4348222 0.1201537 +0.5284142 0.4348222 0.1201537 +0.5370079 0.4348222 0.1201537 +0.5453253 0.4348222 0.1201537 +0.5533834 0.4348222 0.1201537 +0.5611974 0.4348222 0.1201537 +0.5687816 0.4348222 0.1201537 +0.092819 0.4470264 0.1201537 +0.1056428 0.4470264 0.1201537 +0.1201537 0.4470264 0.1201537 +0.1409607 0.4470264 0.1201537 +0.1678172 0.4470264 0.1201537 +0.1950164 0.4470264 0.1201537 +0.2210581 0.4470264 0.1201537 +0.245636 0.4470264 0.1201537 +0.2686816 0.4470264 0.1201537 +0.2902431 0.4470264 0.1201537 +0.3104189 0.4470264 0.1201537 +0.3293248 0.4470264 0.1201537 +0.3470774 0.4470264 0.1201537 +0.3637862 0.4470264 0.1201537 +0.3795513 0.4470264 0.1201537 +0.3944623 0.4470264 0.1201537 +0.4085988 0.4470264 0.1201537 +0.4220313 0.4470264 0.1201537 +0.4348222 0.4470264 0.1201537 +0.4470264 0.4470264 0.1201537 +0.4586928 0.4470264 0.1201537 +0.4698649 0.4470264 0.1201537 +0.4805811 0.4470264 0.1201537 +0.490876 0.4470264 0.1201537 +0.5007803 0.4470264 0.1201537 +0.510322 0.4470264 0.1201537 +0.5195258 0.4470264 0.1201537 +0.5284142 0.4470264 0.1201537 +0.5370079 0.4470264 0.1201537 +0.5453253 0.4470264 0.1201537 +0.5533834 0.4470264 0.1201537 +0.5611974 0.4470264 0.1201537 +0.5687816 0.4470264 0.1201537 +0.092819 0.4586928 0.1201537 +0.1056428 0.4586928 0.1201537 +0.1201537 0.4586928 0.1201537 +0.1409607 0.4586928 0.1201537 +0.1678172 0.4586928 0.1201537 +0.1950164 0.4586928 0.1201537 +0.2210581 0.4586928 0.1201537 +0.245636 0.4586928 0.1201537 +0.2686816 0.4586928 0.1201537 +0.2902431 0.4586928 0.1201537 +0.3104189 0.4586928 0.1201537 +0.3293248 0.4586928 0.1201537 +0.3470774 0.4586928 0.1201537 +0.3637862 0.4586928 0.1201537 +0.3795513 0.4586928 0.1201537 +0.3944623 0.4586928 0.1201537 +0.4085988 0.4586928 0.1201537 +0.4220313 0.4586928 0.1201537 +0.4348222 0.4586928 0.1201537 +0.4470264 0.4586928 0.1201537 +0.4586928 0.4586928 0.1201537 +0.4698649 0.4586928 0.1201537 +0.4805811 0.4586928 0.1201537 +0.490876 0.4586928 0.1201537 +0.5007803 0.4586928 0.1201537 +0.510322 0.4586928 0.1201537 +0.5195258 0.4586928 0.1201537 +0.5284142 0.4586928 0.1201537 +0.5370079 0.4586928 0.1201537 +0.5453253 0.4586928 0.1201537 +0.5533834 0.4586928 0.1201537 +0.5611974 0.4586928 0.1201537 +0.5687816 0.4586928 0.1201537 +0.092819 0.4698649 0.1201537 +0.1056428 0.4698649 0.1201537 +0.1201537 0.4698649 0.1201537 +0.1409607 0.4698649 0.1201537 +0.1678172 0.4698649 0.1201537 +0.1950164 0.4698649 0.1201537 +0.2210581 0.4698649 0.1201537 +0.245636 0.4698649 0.1201537 +0.2686816 0.4698649 0.1201537 +0.2902431 0.4698649 0.1201537 +0.3104189 0.4698649 0.1201537 +0.3293248 0.4698649 0.1201537 +0.3470774 0.4698649 0.1201537 +0.3637862 0.4698649 0.1201537 +0.3795513 0.4698649 0.1201537 +0.3944623 0.4698649 0.1201537 +0.4085988 0.4698649 0.1201537 +0.4220313 0.4698649 0.1201537 +0.4348222 0.4698649 0.1201537 +0.4470264 0.4698649 0.1201537 +0.4586928 0.4698649 0.1201537 +0.4698649 0.4698649 0.1201537 +0.4805811 0.4698649 0.1201537 +0.490876 0.4698649 0.1201537 +0.5007803 0.4698649 0.1201537 +0.510322 0.4698649 0.1201537 +0.5195258 0.4698649 0.1201537 +0.5284142 0.4698649 0.1201537 +0.5370079 0.4698649 0.1201537 +0.5453253 0.4698649 0.1201537 +0.5533834 0.4698649 0.1201537 +0.5611974 0.4698649 0.1201537 +0.5687816 0.4698649 0.1201537 +0.092819 0.4805811 0.1201537 +0.1056428 0.4805811 0.1201537 +0.1201537 0.4805811 0.1201537 +0.1409607 0.4805811 0.1201537 +0.1678172 0.4805811 0.1201537 +0.1950164 0.4805811 0.1201537 +0.2210581 0.4805811 0.1201537 +0.245636 0.4805811 0.1201537 +0.2686816 0.4805811 0.1201537 +0.2902431 0.4805811 0.1201537 +0.3104189 0.4805811 0.1201537 +0.3293248 0.4805811 0.1201537 +0.3470774 0.4805811 0.1201537 +0.3637862 0.4805811 0.1201537 +0.3795513 0.4805811 0.1201537 +0.3944623 0.4805811 0.1201537 +0.4085988 0.4805811 0.1201537 +0.4220313 0.4805811 0.1201537 +0.4348222 0.4805811 0.1201537 +0.4470264 0.4805811 0.1201537 +0.4586928 0.4805811 0.1201537 +0.4698649 0.4805811 0.1201537 +0.4805811 0.4805811 0.1201537 +0.490876 0.4805811 0.1201537 +0.5007803 0.4805811 0.1201537 +0.510322 0.4805811 0.1201537 +0.5195258 0.4805811 0.1201537 +0.5284142 0.4805811 0.1201537 +0.5370079 0.4805811 0.1201537 +0.5453253 0.4805811 0.1201537 +0.5533834 0.4805811 0.1201537 +0.5611974 0.4805811 0.1201537 +0.5687816 0.4805811 0.1201537 +0.092819 0.490876 0.1201537 +0.1056428 0.490876 0.1201537 +0.1201537 0.490876 0.1201537 +0.1409607 0.490876 0.1201537 +0.1678172 0.490876 0.1201537 +0.1950164 0.490876 0.1201537 +0.2210581 0.490876 0.1201537 +0.245636 0.490876 0.1201537 +0.2686816 0.490876 0.1201537 +0.2902431 0.490876 0.1201537 +0.3104189 0.490876 0.1201537 +0.3293248 0.490876 0.1201537 +0.3470774 0.490876 0.1201537 +0.3637862 0.490876 0.1201537 +0.3795513 0.490876 0.1201537 +0.3944623 0.490876 0.1201537 +0.4085988 0.490876 0.1201537 +0.4220313 0.490876 0.1201537 +0.4348222 0.490876 0.1201537 +0.4470264 0.490876 0.1201537 +0.4586928 0.490876 0.1201537 +0.4698649 0.490876 0.1201537 +0.4805811 0.490876 0.1201537 +0.490876 0.490876 0.1201537 +0.5007803 0.490876 0.1201537 +0.510322 0.490876 0.1201537 +0.5195258 0.490876 0.1201537 +0.5284142 0.490876 0.1201537 +0.5370079 0.490876 0.1201537 +0.5453253 0.490876 0.1201537 +0.5533834 0.490876 0.1201537 +0.5611974 0.490876 0.1201537 +0.5687816 0.490876 0.1201537 +0.092819 0.5007803 0.1201537 +0.1056428 0.5007803 0.1201537 +0.1201537 0.5007803 0.1201537 +0.1409607 0.5007803 0.1201537 +0.1678172 0.5007803 0.1201537 +0.1950164 0.5007803 0.1201537 +0.2210581 0.5007803 0.1201537 +0.245636 0.5007803 0.1201537 +0.2686816 0.5007803 0.1201537 +0.2902431 0.5007803 0.1201537 +0.3104189 0.5007803 0.1201537 +0.3293248 0.5007803 0.1201537 +0.3470774 0.5007803 0.1201537 +0.3637862 0.5007803 0.1201537 +0.3795513 0.5007803 0.1201537 +0.3944623 0.5007803 0.1201537 +0.4085988 0.5007803 0.1201537 +0.4220313 0.5007803 0.1201537 +0.4348222 0.5007803 0.1201537 +0.4470264 0.5007803 0.1201537 +0.4586928 0.5007803 0.1201537 +0.4698649 0.5007803 0.1201537 +0.4805811 0.5007803 0.1201537 +0.490876 0.5007803 0.1201537 +0.5007803 0.5007803 0.1201537 +0.510322 0.5007803 0.1201537 +0.5195258 0.5007803 0.1201537 +0.5284142 0.5007803 0.1201537 +0.5370079 0.5007803 0.1201537 +0.5453253 0.5007803 0.1201537 +0.5533834 0.5007803 0.1201537 +0.5611974 0.5007803 0.1201537 +0.5687816 0.5007803 0.1201537 +0.092819 0.510322 0.1201537 +0.1056428 0.510322 0.1201537 +0.1201537 0.510322 0.1201537 +0.1409607 0.510322 0.1201537 +0.1678172 0.510322 0.1201537 +0.1950164 0.510322 0.1201537 +0.2210581 0.510322 0.1201537 +0.245636 0.510322 0.1201537 +0.2686816 0.510322 0.1201537 +0.2902431 0.510322 0.1201537 +0.3104189 0.510322 0.1201537 +0.3293248 0.510322 0.1201537 +0.3470774 0.510322 0.1201537 +0.3637862 0.510322 0.1201537 +0.3795513 0.510322 0.1201537 +0.3944623 0.510322 0.1201537 +0.4085988 0.510322 0.1201537 +0.4220313 0.510322 0.1201537 +0.4348222 0.510322 0.1201537 +0.4470264 0.510322 0.1201537 +0.4586928 0.510322 0.1201537 +0.4698649 0.510322 0.1201537 +0.4805811 0.510322 0.1201537 +0.490876 0.510322 0.1201537 +0.5007803 0.510322 0.1201537 +0.510322 0.510322 0.1201537 +0.5195258 0.510322 0.1201537 +0.5284142 0.510322 0.1201537 +0.5370079 0.510322 0.1201537 +0.5453253 0.510322 0.1201537 +0.5533834 0.510322 0.1201537 +0.5611974 0.510322 0.1201537 +0.5687816 0.510322 0.1201537 +0.092819 0.5195258 0.1201537 +0.1056428 0.5195258 0.1201537 +0.1201537 0.5195258 0.1201537 +0.1409607 0.5195258 0.1201537 +0.1678172 0.5195258 0.1201537 +0.1950164 0.5195258 0.1201537 +0.2210581 0.5195258 0.1201537 +0.245636 0.5195258 0.1201537 +0.2686816 0.5195258 0.1201537 +0.2902431 0.5195258 0.1201537 +0.3104189 0.5195258 0.1201537 +0.3293248 0.5195258 0.1201537 +0.3470774 0.5195258 0.1201537 +0.3637862 0.5195258 0.1201537 +0.3795513 0.5195258 0.1201537 +0.3944623 0.5195258 0.1201537 +0.4085988 0.5195258 0.1201537 +0.4220313 0.5195258 0.1201537 +0.4348222 0.5195258 0.1201537 +0.4470264 0.5195258 0.1201537 +0.4586928 0.5195258 0.1201537 +0.4698649 0.5195258 0.1201537 +0.4805811 0.5195258 0.1201537 +0.490876 0.5195258 0.1201537 +0.5007803 0.5195258 0.1201537 +0.510322 0.5195258 0.1201537 +0.5195258 0.5195258 0.1201537 +0.5284142 0.5195258 0.1201537 +0.5370079 0.5195258 0.1201537 +0.5453253 0.5195258 0.1201537 +0.5533834 0.5195258 0.1201537 +0.5611974 0.5195258 0.1201537 +0.5687816 0.5195258 0.1201537 +0.092819 0.5284142 0.1201537 +0.1056428 0.5284142 0.1201537 +0.1201537 0.5284142 0.1201537 +0.1409607 0.5284142 0.1201537 +0.1678172 0.5284142 0.1201537 +0.1950164 0.5284142 0.1201537 +0.2210581 0.5284142 0.1201537 +0.245636 0.5284142 0.1201537 +0.2686816 0.5284142 0.1201537 +0.2902431 0.5284142 0.1201537 +0.3104189 0.5284142 0.1201537 +0.3293248 0.5284142 0.1201537 +0.3470774 0.5284142 0.1201537 +0.3637862 0.5284142 0.1201537 +0.3795513 0.5284142 0.1201537 +0.3944623 0.5284142 0.1201537 +0.4085988 0.5284142 0.1201537 +0.4220313 0.5284142 0.1201537 +0.4348222 0.5284142 0.1201537 +0.4470264 0.5284142 0.1201537 +0.4586928 0.5284142 0.1201537 +0.4698649 0.5284142 0.1201537 +0.4805811 0.5284142 0.1201537 +0.490876 0.5284142 0.1201537 +0.5007803 0.5284142 0.1201537 +0.510322 0.5284142 0.1201537 +0.5195258 0.5284142 0.1201537 +0.5284142 0.5284142 0.1201537 +0.5370079 0.5284142 0.1201537 +0.5453253 0.5284142 0.1201537 +0.5533834 0.5284142 0.1201537 +0.5611974 0.5284142 0.1201537 +0.5687816 0.5284142 0.1201537 +0.092819 0.5370079 0.1201537 +0.1056428 0.5370079 0.1201537 +0.1201537 0.5370079 0.1201537 +0.1409607 0.5370079 0.1201537 +0.1678172 0.5370079 0.1201537 +0.1950164 0.5370079 0.1201537 +0.2210581 0.5370079 0.1201537 +0.245636 0.5370079 0.1201537 +0.2686816 0.5370079 0.1201537 +0.2902431 0.5370079 0.1201537 +0.3104189 0.5370079 0.1201537 +0.3293248 0.5370079 0.1201537 +0.3470774 0.5370079 0.1201537 +0.3637862 0.5370079 0.1201537 +0.3795513 0.5370079 0.1201537 +0.3944623 0.5370079 0.1201537 +0.4085988 0.5370079 0.1201537 +0.4220313 0.5370079 0.1201537 +0.4348222 0.5370079 0.1201537 +0.4470264 0.5370079 0.1201537 +0.4586928 0.5370079 0.1201537 +0.4698649 0.5370079 0.1201537 +0.4805811 0.5370079 0.1201537 +0.490876 0.5370079 0.1201537 +0.5007803 0.5370079 0.1201537 +0.510322 0.5370079 0.1201537 +0.5195258 0.5370079 0.1201537 +0.5284142 0.5370079 0.1201537 +0.5370079 0.5370079 0.1201537 +0.5453253 0.5370079 0.1201537 +0.5533834 0.5370079 0.1201537 +0.5611974 0.5370079 0.1201537 +0.5687816 0.5370079 0.1201537 +0.092819 0.5453253 0.1201537 +0.1056428 0.5453253 0.1201537 +0.1201537 0.5453253 0.1201537 +0.1409607 0.5453253 0.1201537 +0.1678172 0.5453253 0.1201537 +0.1950164 0.5453253 0.1201537 +0.2210581 0.5453253 0.1201537 +0.245636 0.5453253 0.1201537 +0.2686816 0.5453253 0.1201537 +0.2902431 0.5453253 0.1201537 +0.3104189 0.5453253 0.1201537 +0.3293248 0.5453253 0.1201537 +0.3470774 0.5453253 0.1201537 +0.3637862 0.5453253 0.1201537 +0.3795513 0.5453253 0.1201537 +0.3944623 0.5453253 0.1201537 +0.4085988 0.5453253 0.1201537 +0.4220313 0.5453253 0.1201537 +0.4348222 0.5453253 0.1201537 +0.4470264 0.5453253 0.1201537 +0.4586928 0.5453253 0.1201537 +0.4698649 0.5453253 0.1201537 +0.4805811 0.5453253 0.1201537 +0.490876 0.5453253 0.1201537 +0.5007803 0.5453253 0.1201537 +0.510322 0.5453253 0.1201537 +0.5195258 0.5453253 0.1201537 +0.5284142 0.5453253 0.1201537 +0.5370079 0.5453253 0.1201537 +0.5453253 0.5453253 0.1201537 +0.5533834 0.5453253 0.1201537 +0.5611974 0.5453253 0.1201537 +0.5687816 0.5453253 0.1201537 +0.092819 0.5533834 0.1201537 +0.1056428 0.5533834 0.1201537 +0.1201537 0.5533834 0.1201537 +0.1409607 0.5533834 0.1201537 +0.1678172 0.5533834 0.1201537 +0.1950164 0.5533834 0.1201537 +0.2210581 0.5533834 0.1201537 +0.245636 0.5533834 0.1201537 +0.2686816 0.5533834 0.1201537 +0.2902431 0.5533834 0.1201537 +0.3104189 0.5533834 0.1201537 +0.3293248 0.5533834 0.1201537 +0.3470774 0.5533834 0.1201537 +0.3637862 0.5533834 0.1201537 +0.3795513 0.5533834 0.1201537 +0.3944623 0.5533834 0.1201537 +0.4085988 0.5533834 0.1201537 +0.4220313 0.5533834 0.1201537 +0.4348222 0.5533834 0.1201537 +0.4470264 0.5533834 0.1201537 +0.4586928 0.5533834 0.1201537 +0.4698649 0.5533834 0.1201537 +0.4805811 0.5533834 0.1201537 +0.490876 0.5533834 0.1201537 +0.5007803 0.5533834 0.1201537 +0.510322 0.5533834 0.1201537 +0.5195258 0.5533834 0.1201537 +0.5284142 0.5533834 0.1201537 +0.5370079 0.5533834 0.1201537 +0.5453253 0.5533834 0.1201537 +0.5533834 0.5533834 0.1201537 +0.5611974 0.5533834 0.1201537 +0.5687816 0.5533834 0.1201537 +0.092819 0.5611974 0.1201537 +0.1056428 0.5611974 0.1201537 +0.1201537 0.5611974 0.1201537 +0.1409607 0.5611974 0.1201537 +0.1678172 0.5611974 0.1201537 +0.1950164 0.5611974 0.1201537 +0.2210581 0.5611974 0.1201537 +0.245636 0.5611974 0.1201537 +0.2686816 0.5611974 0.1201537 +0.2902431 0.5611974 0.1201537 +0.3104189 0.5611974 0.1201537 +0.3293248 0.5611974 0.1201537 +0.3470774 0.5611974 0.1201537 +0.3637862 0.5611974 0.1201537 +0.3795513 0.5611974 0.1201537 +0.3944623 0.5611974 0.1201537 +0.4085988 0.5611974 0.1201537 +0.4220313 0.5611974 0.1201537 +0.4348222 0.5611974 0.1201537 +0.4470264 0.5611974 0.1201537 +0.4586928 0.5611974 0.1201537 +0.4698649 0.5611974 0.1201537 +0.4805811 0.5611974 0.1201537 +0.490876 0.5611974 0.1201537 +0.5007803 0.5611974 0.1201537 +0.510322 0.5611974 0.1201537 +0.5195258 0.5611974 0.1201537 +0.5284142 0.5611974 0.1201537 +0.5370079 0.5611974 0.1201537 +0.5453253 0.5611974 0.1201537 +0.5533834 0.5611974 0.1201537 +0.5611974 0.5611974 0.1201537 +0.5687816 0.5611974 0.1201537 +0.092819 0.5687816 0.1201537 +0.1056428 0.5687816 0.1201537 +0.1201537 0.5687816 0.1201537 +0.1409607 0.5687816 0.1201537 +0.1678172 0.5687816 0.1201537 +0.1950164 0.5687816 0.1201537 +0.2210581 0.5687816 0.1201537 +0.245636 0.5687816 0.1201537 +0.2686816 0.5687816 0.1201537 +0.2902431 0.5687816 0.1201537 +0.3104189 0.5687816 0.1201537 +0.3293248 0.5687816 0.1201537 +0.3470774 0.5687816 0.1201537 +0.3637862 0.5687816 0.1201537 +0.3795513 0.5687816 0.1201537 +0.3944623 0.5687816 0.1201537 +0.4085988 0.5687816 0.1201537 +0.4220313 0.5687816 0.1201537 +0.4348222 0.5687816 0.1201537 +0.4470264 0.5687816 0.1201537 +0.4586928 0.5687816 0.1201537 +0.4698649 0.5687816 0.1201537 +0.4805811 0.5687816 0.1201537 +0.490876 0.5687816 0.1201537 +0.5007803 0.5687816 0.1201537 +0.510322 0.5687816 0.1201537 +0.5195258 0.5687816 0.1201537 +0.5284142 0.5687816 0.1201537 +0.5370079 0.5687816 0.1201537 +0.5453253 0.5687816 0.1201537 +0.5533834 0.5687816 0.1201537 +0.5611974 0.5687816 0.1201537 +0.5687816 0.5687816 0.1201537 +0.092819 0.092819 0.1409607 +0.1056428 0.092819 0.1409607 +0.1201537 0.092819 0.1409607 +0.1409607 0.092819 0.1409607 +0.1678172 0.092819 0.1409607 +0.1950164 0.092819 0.1409607 +0.2210581 0.092819 0.1409607 +0.245636 0.092819 0.1409607 +0.2686816 0.092819 0.1409607 +0.2902431 0.092819 0.1409607 +0.3104189 0.092819 0.1409607 +0.3293248 0.092819 0.1409607 +0.3470774 0.092819 0.1409607 +0.3637862 0.092819 0.1409607 +0.3795513 0.092819 0.1409607 +0.3944623 0.092819 0.1409607 +0.4085988 0.092819 0.1409607 +0.4220313 0.092819 0.1409607 +0.4348222 0.092819 0.1409607 +0.4470264 0.092819 0.1409607 +0.4586928 0.092819 0.1409607 +0.4698649 0.092819 0.1409607 +0.4805811 0.092819 0.1409607 +0.490876 0.092819 0.1409607 +0.5007803 0.092819 0.1409607 +0.510322 0.092819 0.1409607 +0.5195258 0.092819 0.1409607 +0.5284142 0.092819 0.1409607 +0.5370079 0.092819 0.1409607 +0.5453253 0.092819 0.1409607 +0.5533834 0.092819 0.1409607 +0.5611974 0.092819 0.1409607 +0.5687816 0.092819 0.1409607 +0.092819 0.1056428 0.1409607 +0.1056428 0.1056428 0.1409607 +0.1201537 0.1056428 0.1409607 +0.1409607 0.1056428 0.1409607 +0.1678172 0.1056428 0.1409607 +0.1950164 0.1056428 0.1409607 +0.2210581 0.1056428 0.1409607 +0.245636 0.1056428 0.1409607 +0.2686816 0.1056428 0.1409607 +0.2902431 0.1056428 0.1409607 +0.3104189 0.1056428 0.1409607 +0.3293248 0.1056428 0.1409607 +0.3470774 0.1056428 0.1409607 +0.3637862 0.1056428 0.1409607 +0.3795513 0.1056428 0.1409607 +0.3944623 0.1056428 0.1409607 +0.4085988 0.1056428 0.1409607 +0.4220313 0.1056428 0.1409607 +0.4348222 0.1056428 0.1409607 +0.4470264 0.1056428 0.1409607 +0.4586928 0.1056428 0.1409607 +0.4698649 0.1056428 0.1409607 +0.4805811 0.1056428 0.1409607 +0.490876 0.1056428 0.1409607 +0.5007803 0.1056428 0.1409607 +0.510322 0.1056428 0.1409607 +0.5195258 0.1056428 0.1409607 +0.5284142 0.1056428 0.1409607 +0.5370079 0.1056428 0.1409607 +0.5453253 0.1056428 0.1409607 +0.5533834 0.1056428 0.1409607 +0.5611974 0.1056428 0.1409607 +0.5687816 0.1056428 0.1409607 +0.092819 0.1201537 0.1409607 +0.1056428 0.1201537 0.1409607 +0.1201537 0.1201537 0.1409607 +0.1409607 0.1201537 0.1409607 +0.1678172 0.1201537 0.1409607 +0.1950164 0.1201537 0.1409607 +0.2210581 0.1201537 0.1409607 +0.245636 0.1201537 0.1409607 +0.2686816 0.1201537 0.1409607 +0.2902431 0.1201537 0.1409607 +0.3104189 0.1201537 0.1409607 +0.3293248 0.1201537 0.1409607 +0.3470774 0.1201537 0.1409607 +0.3637862 0.1201537 0.1409607 +0.3795513 0.1201537 0.1409607 +0.3944623 0.1201537 0.1409607 +0.4085988 0.1201537 0.1409607 +0.4220313 0.1201537 0.1409607 +0.4348222 0.1201537 0.1409607 +0.4470264 0.1201537 0.1409607 +0.4586928 0.1201537 0.1409607 +0.4698649 0.1201537 0.1409607 +0.4805811 0.1201537 0.1409607 +0.490876 0.1201537 0.1409607 +0.5007803 0.1201537 0.1409607 +0.510322 0.1201537 0.1409607 +0.5195258 0.1201537 0.1409607 +0.5284142 0.1201537 0.1409607 +0.5370079 0.1201537 0.1409607 +0.5453253 0.1201537 0.1409607 +0.5533834 0.1201537 0.1409607 +0.5611974 0.1201537 0.1409607 +0.5687816 0.1201537 0.1409607 +0.092819 0.1409607 0.1409607 +0.1056428 0.1409607 0.1409607 +0.1201537 0.1409607 0.1409607 +0.1409607 0.1409607 0.1409607 +0.1678172 0.1409607 0.1409607 +0.1950164 0.1409607 0.1409607 +0.2210581 0.1409607 0.1409607 +0.245636 0.1409607 0.1409607 +0.2686816 0.1409607 0.1409607 +0.2902431 0.1409607 0.1409607 +0.3104189 0.1409607 0.1409607 +0.3293248 0.1409607 0.1409607 +0.3470774 0.1409607 0.1409607 +0.3637862 0.1409607 0.1409607 +0.3795513 0.1409607 0.1409607 +0.3944623 0.1409607 0.1409607 +0.4085988 0.1409607 0.1409607 +0.4220313 0.1409607 0.1409607 +0.4348222 0.1409607 0.1409607 +0.4470264 0.1409607 0.1409607 +0.4586928 0.1409607 0.1409607 +0.4698649 0.1409607 0.1409607 +0.4805811 0.1409607 0.1409607 +0.490876 0.1409607 0.1409607 +0.5007803 0.1409607 0.1409607 +0.510322 0.1409607 0.1409607 +0.5195258 0.1409607 0.1409607 +0.5284142 0.1409607 0.1409607 +0.5370079 0.1409607 0.1409607 +0.5453253 0.1409607 0.1409607 +0.5533834 0.1409607 0.1409607 +0.5611974 0.1409607 0.1409607 +0.5687816 0.1409607 0.1409607 +0.092819 0.1678172 0.1409607 +0.1056428 0.1678172 0.1409607 +0.1201537 0.1678172 0.1409607 +0.1409607 0.1678172 0.1409607 +0.1678172 0.1678172 0.1409607 +0.1950164 0.1678172 0.1409607 +0.2210581 0.1678172 0.1409607 +0.245636 0.1678172 0.1409607 +0.2686816 0.1678172 0.1409607 +0.2902431 0.1678172 0.1409607 +0.3104189 0.1678172 0.1409607 +0.3293248 0.1678172 0.1409607 +0.3470774 0.1678172 0.1409607 +0.3637862 0.1678172 0.1409607 +0.3795513 0.1678172 0.1409607 +0.3944623 0.1678172 0.1409607 +0.4085988 0.1678172 0.1409607 +0.4220313 0.1678172 0.1409607 +0.4348222 0.1678172 0.1409607 +0.4470264 0.1678172 0.1409607 +0.4586928 0.1678172 0.1409607 +0.4698649 0.1678172 0.1409607 +0.4805811 0.1678172 0.1409607 +0.490876 0.1678172 0.1409607 +0.5007803 0.1678172 0.1409607 +0.510322 0.1678172 0.1409607 +0.5195258 0.1678172 0.1409607 +0.5284142 0.1678172 0.1409607 +0.5370079 0.1678172 0.1409607 +0.5453253 0.1678172 0.1409607 +0.5533834 0.1678172 0.1409607 +0.5611974 0.1678172 0.1409607 +0.5687816 0.1678172 0.1409607 +0.092819 0.1950164 0.1409607 +0.1056428 0.1950164 0.1409607 +0.1201537 0.1950164 0.1409607 +0.1409607 0.1950164 0.1409607 +0.1678172 0.1950164 0.1409607 +0.1950164 0.1950164 0.1409607 +0.2210581 0.1950164 0.1409607 +0.245636 0.1950164 0.1409607 +0.2686816 0.1950164 0.1409607 +0.2902431 0.1950164 0.1409607 +0.3104189 0.1950164 0.1409607 +0.3293248 0.1950164 0.1409607 +0.3470774 0.1950164 0.1409607 +0.3637862 0.1950164 0.1409607 +0.3795513 0.1950164 0.1409607 +0.3944623 0.1950164 0.1409607 +0.4085988 0.1950164 0.1409607 +0.4220313 0.1950164 0.1409607 +0.4348222 0.1950164 0.1409607 +0.4470264 0.1950164 0.1409607 +0.4586928 0.1950164 0.1409607 +0.4698649 0.1950164 0.1409607 +0.4805811 0.1950164 0.1409607 +0.490876 0.1950164 0.1409607 +0.5007803 0.1950164 0.1409607 +0.510322 0.1950164 0.1409607 +0.5195258 0.1950164 0.1409607 +0.5284142 0.1950164 0.1409607 +0.5370079 0.1950164 0.1409607 +0.5453253 0.1950164 0.1409607 +0.5533834 0.1950164 0.1409607 +0.5611974 0.1950164 0.1409607 +0.5687816 0.1950164 0.1409607 +0.092819 0.2210581 0.1409607 +0.1056428 0.2210581 0.1409607 +0.1201537 0.2210581 0.1409607 +0.1409607 0.2210581 0.1409607 +0.1678172 0.2210581 0.1409607 +0.1950164 0.2210581 0.1409607 +0.2210581 0.2210581 0.1409607 +0.245636 0.2210581 0.1409607 +0.2686816 0.2210581 0.1409607 +0.2902431 0.2210581 0.1409607 +0.3104189 0.2210581 0.1409607 +0.3293248 0.2210581 0.1409607 +0.3470774 0.2210581 0.1409607 +0.3637862 0.2210581 0.1409607 +0.3795513 0.2210581 0.1409607 +0.3944623 0.2210581 0.1409607 +0.4085988 0.2210581 0.1409607 +0.4220313 0.2210581 0.1409607 +0.4348222 0.2210581 0.1409607 +0.4470264 0.2210581 0.1409607 +0.4586928 0.2210581 0.1409607 +0.4698649 0.2210581 0.1409607 +0.4805811 0.2210581 0.1409607 +0.490876 0.2210581 0.1409607 +0.5007803 0.2210581 0.1409607 +0.510322 0.2210581 0.1409607 +0.5195258 0.2210581 0.1409607 +0.5284142 0.2210581 0.1409607 +0.5370079 0.2210581 0.1409607 +0.5453253 0.2210581 0.1409607 +0.5533834 0.2210581 0.1409607 +0.5611974 0.2210581 0.1409607 +0.5687816 0.2210581 0.1409607 +0.092819 0.245636 0.1409607 +0.1056428 0.245636 0.1409607 +0.1201537 0.245636 0.1409607 +0.1409607 0.245636 0.1409607 +0.1678172 0.245636 0.1409607 +0.1950164 0.245636 0.1409607 +0.2210581 0.245636 0.1409607 +0.245636 0.245636 0.1409607 +0.2686816 0.245636 0.1409607 +0.2902431 0.245636 0.1409607 +0.3104189 0.245636 0.1409607 +0.3293248 0.245636 0.1409607 +0.3470774 0.245636 0.1409607 +0.3637862 0.245636 0.1409607 +0.3795513 0.245636 0.1409607 +0.3944623 0.245636 0.1409607 +0.4085988 0.245636 0.1409607 +0.4220313 0.245636 0.1409607 +0.4348222 0.245636 0.1409607 +0.4470264 0.245636 0.1409607 +0.4586928 0.245636 0.1409607 +0.4698649 0.245636 0.1409607 +0.4805811 0.245636 0.1409607 +0.490876 0.245636 0.1409607 +0.5007803 0.245636 0.1409607 +0.510322 0.245636 0.1409607 +0.5195258 0.245636 0.1409607 +0.5284142 0.245636 0.1409607 +0.5370079 0.245636 0.1409607 +0.5453253 0.245636 0.1409607 +0.5533834 0.245636 0.1409607 +0.5611974 0.245636 0.1409607 +0.5687816 0.245636 0.1409607 +0.092819 0.2686816 0.1409607 +0.1056428 0.2686816 0.1409607 +0.1201537 0.2686816 0.1409607 +0.1409607 0.2686816 0.1409607 +0.1678172 0.2686816 0.1409607 +0.1950164 0.2686816 0.1409607 +0.2210581 0.2686816 0.1409607 +0.245636 0.2686816 0.1409607 +0.2686816 0.2686816 0.1409607 +0.2902431 0.2686816 0.1409607 +0.3104189 0.2686816 0.1409607 +0.3293248 0.2686816 0.1409607 +0.3470774 0.2686816 0.1409607 +0.3637862 0.2686816 0.1409607 +0.3795513 0.2686816 0.1409607 +0.3944623 0.2686816 0.1409607 +0.4085988 0.2686816 0.1409607 +0.4220313 0.2686816 0.1409607 +0.4348222 0.2686816 0.1409607 +0.4470264 0.2686816 0.1409607 +0.4586928 0.2686816 0.1409607 +0.4698649 0.2686816 0.1409607 +0.4805811 0.2686816 0.1409607 +0.490876 0.2686816 0.1409607 +0.5007803 0.2686816 0.1409607 +0.510322 0.2686816 0.1409607 +0.5195258 0.2686816 0.1409607 +0.5284142 0.2686816 0.1409607 +0.5370079 0.2686816 0.1409607 +0.5453253 0.2686816 0.1409607 +0.5533834 0.2686816 0.1409607 +0.5611974 0.2686816 0.1409607 +0.5687816 0.2686816 0.1409607 +0.092819 0.2902431 0.1409607 +0.1056428 0.2902431 0.1409607 +0.1201537 0.2902431 0.1409607 +0.1409607 0.2902431 0.1409607 +0.1678172 0.2902431 0.1409607 +0.1950164 0.2902431 0.1409607 +0.2210581 0.2902431 0.1409607 +0.245636 0.2902431 0.1409607 +0.2686816 0.2902431 0.1409607 +0.2902431 0.2902431 0.1409607 +0.3104189 0.2902431 0.1409607 +0.3293248 0.2902431 0.1409607 +0.3470774 0.2902431 0.1409607 +0.3637862 0.2902431 0.1409607 +0.3795513 0.2902431 0.1409607 +0.3944623 0.2902431 0.1409607 +0.4085988 0.2902431 0.1409607 +0.4220313 0.2902431 0.1409607 +0.4348222 0.2902431 0.1409607 +0.4470264 0.2902431 0.1409607 +0.4586928 0.2902431 0.1409607 +0.4698649 0.2902431 0.1409607 +0.4805811 0.2902431 0.1409607 +0.490876 0.2902431 0.1409607 +0.5007803 0.2902431 0.1409607 +0.510322 0.2902431 0.1409607 +0.5195258 0.2902431 0.1409607 +0.5284142 0.2902431 0.1409607 +0.5370079 0.2902431 0.1409607 +0.5453253 0.2902431 0.1409607 +0.5533834 0.2902431 0.1409607 +0.5611974 0.2902431 0.1409607 +0.5687816 0.2902431 0.1409607 +0.092819 0.3104189 0.1409607 +0.1056428 0.3104189 0.1409607 +0.1201537 0.3104189 0.1409607 +0.1409607 0.3104189 0.1409607 +0.1678172 0.3104189 0.1409607 +0.1950164 0.3104189 0.1409607 +0.2210581 0.3104189 0.1409607 +0.245636 0.3104189 0.1409607 +0.2686816 0.3104189 0.1409607 +0.2902431 0.3104189 0.1409607 +0.3104189 0.3104189 0.1409607 +0.3293248 0.3104189 0.1409607 +0.3470774 0.3104189 0.1409607 +0.3637862 0.3104189 0.1409607 +0.3795513 0.3104189 0.1409607 +0.3944623 0.3104189 0.1409607 +0.4085988 0.3104189 0.1409607 +0.4220313 0.3104189 0.1409607 +0.4348222 0.3104189 0.1409607 +0.4470264 0.3104189 0.1409607 +0.4586928 0.3104189 0.1409607 +0.4698649 0.3104189 0.1409607 +0.4805811 0.3104189 0.1409607 +0.490876 0.3104189 0.1409607 +0.5007803 0.3104189 0.1409607 +0.510322 0.3104189 0.1409607 +0.5195258 0.3104189 0.1409607 +0.5284142 0.3104189 0.1409607 +0.5370079 0.3104189 0.1409607 +0.5453253 0.3104189 0.1409607 +0.5533834 0.3104189 0.1409607 +0.5611974 0.3104189 0.1409607 +0.5687816 0.3104189 0.1409607 +0.092819 0.3293248 0.1409607 +0.1056428 0.3293248 0.1409607 +0.1201537 0.3293248 0.1409607 +0.1409607 0.3293248 0.1409607 +0.1678172 0.3293248 0.1409607 +0.1950164 0.3293248 0.1409607 +0.2210581 0.3293248 0.1409607 +0.245636 0.3293248 0.1409607 +0.2686816 0.3293248 0.1409607 +0.2902431 0.3293248 0.1409607 +0.3104189 0.3293248 0.1409607 +0.3293248 0.3293248 0.1409607 +0.3470774 0.3293248 0.1409607 +0.3637862 0.3293248 0.1409607 +0.3795513 0.3293248 0.1409607 +0.3944623 0.3293248 0.1409607 +0.4085988 0.3293248 0.1409607 +0.4220313 0.3293248 0.1409607 +0.4348222 0.3293248 0.1409607 +0.4470264 0.3293248 0.1409607 +0.4586928 0.3293248 0.1409607 +0.4698649 0.3293248 0.1409607 +0.4805811 0.3293248 0.1409607 +0.490876 0.3293248 0.1409607 +0.5007803 0.3293248 0.1409607 +0.510322 0.3293248 0.1409607 +0.5195258 0.3293248 0.1409607 +0.5284142 0.3293248 0.1409607 +0.5370079 0.3293248 0.1409607 +0.5453253 0.3293248 0.1409607 +0.5533834 0.3293248 0.1409607 +0.5611974 0.3293248 0.1409607 +0.5687816 0.3293248 0.1409607 +0.092819 0.3470774 0.1409607 +0.1056428 0.3470774 0.1409607 +0.1201537 0.3470774 0.1409607 +0.1409607 0.3470774 0.1409607 +0.1678172 0.3470774 0.1409607 +0.1950164 0.3470774 0.1409607 +0.2210581 0.3470774 0.1409607 +0.245636 0.3470774 0.1409607 +0.2686816 0.3470774 0.1409607 +0.2902431 0.3470774 0.1409607 +0.3104189 0.3470774 0.1409607 +0.3293248 0.3470774 0.1409607 +0.3470774 0.3470774 0.1409607 +0.3637862 0.3470774 0.1409607 +0.3795513 0.3470774 0.1409607 +0.3944623 0.3470774 0.1409607 +0.4085988 0.3470774 0.1409607 +0.4220313 0.3470774 0.1409607 +0.4348222 0.3470774 0.1409607 +0.4470264 0.3470774 0.1409607 +0.4586928 0.3470774 0.1409607 +0.4698649 0.3470774 0.1409607 +0.4805811 0.3470774 0.1409607 +0.490876 0.3470774 0.1409607 +0.5007803 0.3470774 0.1409607 +0.510322 0.3470774 0.1409607 +0.5195258 0.3470774 0.1409607 +0.5284142 0.3470774 0.1409607 +0.5370079 0.3470774 0.1409607 +0.5453253 0.3470774 0.1409607 +0.5533834 0.3470774 0.1409607 +0.5611974 0.3470774 0.1409607 +0.5687816 0.3470774 0.1409607 +0.092819 0.3637862 0.1409607 +0.1056428 0.3637862 0.1409607 +0.1201537 0.3637862 0.1409607 +0.1409607 0.3637862 0.1409607 +0.1678172 0.3637862 0.1409607 +0.1950164 0.3637862 0.1409607 +0.2210581 0.3637862 0.1409607 +0.245636 0.3637862 0.1409607 +0.2686816 0.3637862 0.1409607 +0.2902431 0.3637862 0.1409607 +0.3104189 0.3637862 0.1409607 +0.3293248 0.3637862 0.1409607 +0.3470774 0.3637862 0.1409607 +0.3637862 0.3637862 0.1409607 +0.3795513 0.3637862 0.1409607 +0.3944623 0.3637862 0.1409607 +0.4085988 0.3637862 0.1409607 +0.4220313 0.3637862 0.1409607 +0.4348222 0.3637862 0.1409607 +0.4470264 0.3637862 0.1409607 +0.4586928 0.3637862 0.1409607 +0.4698649 0.3637862 0.1409607 +0.4805811 0.3637862 0.1409607 +0.490876 0.3637862 0.1409607 +0.5007803 0.3637862 0.1409607 +0.510322 0.3637862 0.1409607 +0.5195258 0.3637862 0.1409607 +0.5284142 0.3637862 0.1409607 +0.5370079 0.3637862 0.1409607 +0.5453253 0.3637862 0.1409607 +0.5533834 0.3637862 0.1409607 +0.5611974 0.3637862 0.1409607 +0.5687816 0.3637862 0.1409607 +0.092819 0.3795513 0.1409607 +0.1056428 0.3795513 0.1409607 +0.1201537 0.3795513 0.1409607 +0.1409607 0.3795513 0.1409607 +0.1678172 0.3795513 0.1409607 +0.1950164 0.3795513 0.1409607 +0.2210581 0.3795513 0.1409607 +0.245636 0.3795513 0.1409607 +0.2686816 0.3795513 0.1409607 +0.2902431 0.3795513 0.1409607 +0.3104189 0.3795513 0.1409607 +0.3293248 0.3795513 0.1409607 +0.3470774 0.3795513 0.1409607 +0.3637862 0.3795513 0.1409607 +0.3795513 0.3795513 0.1409607 +0.3944623 0.3795513 0.1409607 +0.4085988 0.3795513 0.1409607 +0.4220313 0.3795513 0.1409607 +0.4348222 0.3795513 0.1409607 +0.4470264 0.3795513 0.1409607 +0.4586928 0.3795513 0.1409607 +0.4698649 0.3795513 0.1409607 +0.4805811 0.3795513 0.1409607 +0.490876 0.3795513 0.1409607 +0.5007803 0.3795513 0.1409607 +0.510322 0.3795513 0.1409607 +0.5195258 0.3795513 0.1409607 +0.5284142 0.3795513 0.1409607 +0.5370079 0.3795513 0.1409607 +0.5453253 0.3795513 0.1409607 +0.5533834 0.3795513 0.1409607 +0.5611974 0.3795513 0.1409607 +0.5687816 0.3795513 0.1409607 +0.092819 0.3944623 0.1409607 +0.1056428 0.3944623 0.1409607 +0.1201537 0.3944623 0.1409607 +0.1409607 0.3944623 0.1409607 +0.1678172 0.3944623 0.1409607 +0.1950164 0.3944623 0.1409607 +0.2210581 0.3944623 0.1409607 +0.245636 0.3944623 0.1409607 +0.2686816 0.3944623 0.1409607 +0.2902431 0.3944623 0.1409607 +0.3104189 0.3944623 0.1409607 +0.3293248 0.3944623 0.1409607 +0.3470774 0.3944623 0.1409607 +0.3637862 0.3944623 0.1409607 +0.3795513 0.3944623 0.1409607 +0.3944623 0.3944623 0.1409607 +0.4085988 0.3944623 0.1409607 +0.4220313 0.3944623 0.1409607 +0.4348222 0.3944623 0.1409607 +0.4470264 0.3944623 0.1409607 +0.4586928 0.3944623 0.1409607 +0.4698649 0.3944623 0.1409607 +0.4805811 0.3944623 0.1409607 +0.490876 0.3944623 0.1409607 +0.5007803 0.3944623 0.1409607 +0.510322 0.3944623 0.1409607 +0.5195258 0.3944623 0.1409607 +0.5284142 0.3944623 0.1409607 +0.5370079 0.3944623 0.1409607 +0.5453253 0.3944623 0.1409607 +0.5533834 0.3944623 0.1409607 +0.5611974 0.3944623 0.1409607 +0.5687816 0.3944623 0.1409607 +0.092819 0.4085988 0.1409607 +0.1056428 0.4085988 0.1409607 +0.1201537 0.4085988 0.1409607 +0.1409607 0.4085988 0.1409607 +0.1678172 0.4085988 0.1409607 +0.1950164 0.4085988 0.1409607 +0.2210581 0.4085988 0.1409607 +0.245636 0.4085988 0.1409607 +0.2686816 0.4085988 0.1409607 +0.2902431 0.4085988 0.1409607 +0.3104189 0.4085988 0.1409607 +0.3293248 0.4085988 0.1409607 +0.3470774 0.4085988 0.1409607 +0.3637862 0.4085988 0.1409607 +0.3795513 0.4085988 0.1409607 +0.3944623 0.4085988 0.1409607 +0.4085988 0.4085988 0.1409607 +0.4220313 0.4085988 0.1409607 +0.4348222 0.4085988 0.1409607 +0.4470264 0.4085988 0.1409607 +0.4586928 0.4085988 0.1409607 +0.4698649 0.4085988 0.1409607 +0.4805811 0.4085988 0.1409607 +0.490876 0.4085988 0.1409607 +0.5007803 0.4085988 0.1409607 +0.510322 0.4085988 0.1409607 +0.5195258 0.4085988 0.1409607 +0.5284142 0.4085988 0.1409607 +0.5370079 0.4085988 0.1409607 +0.5453253 0.4085988 0.1409607 +0.5533834 0.4085988 0.1409607 +0.5611974 0.4085988 0.1409607 +0.5687816 0.4085988 0.1409607 +0.092819 0.4220313 0.1409607 +0.1056428 0.4220313 0.1409607 +0.1201537 0.4220313 0.1409607 +0.1409607 0.4220313 0.1409607 +0.1678172 0.4220313 0.1409607 +0.1950164 0.4220313 0.1409607 +0.2210581 0.4220313 0.1409607 +0.245636 0.4220313 0.1409607 +0.2686816 0.4220313 0.1409607 +0.2902431 0.4220313 0.1409607 +0.3104189 0.4220313 0.1409607 +0.3293248 0.4220313 0.1409607 +0.3470774 0.4220313 0.1409607 +0.3637862 0.4220313 0.1409607 +0.3795513 0.4220313 0.1409607 +0.3944623 0.4220313 0.1409607 +0.4085988 0.4220313 0.1409607 +0.4220313 0.4220313 0.1409607 +0.4348222 0.4220313 0.1409607 +0.4470264 0.4220313 0.1409607 +0.4586928 0.4220313 0.1409607 +0.4698649 0.4220313 0.1409607 +0.4805811 0.4220313 0.1409607 +0.490876 0.4220313 0.1409607 +0.5007803 0.4220313 0.1409607 +0.510322 0.4220313 0.1409607 +0.5195258 0.4220313 0.1409607 +0.5284142 0.4220313 0.1409607 +0.5370079 0.4220313 0.1409607 +0.5453253 0.4220313 0.1409607 +0.5533834 0.4220313 0.1409607 +0.5611974 0.4220313 0.1409607 +0.5687816 0.4220313 0.1409607 +0.092819 0.4348222 0.1409607 +0.1056428 0.4348222 0.1409607 +0.1201537 0.4348222 0.1409607 +0.1409607 0.4348222 0.1409607 +0.1678172 0.4348222 0.1409607 +0.1950164 0.4348222 0.1409607 +0.2210581 0.4348222 0.1409607 +0.245636 0.4348222 0.1409607 +0.2686816 0.4348222 0.1409607 +0.2902431 0.4348222 0.1409607 +0.3104189 0.4348222 0.1409607 +0.3293248 0.4348222 0.1409607 +0.3470774 0.4348222 0.1409607 +0.3637862 0.4348222 0.1409607 +0.3795513 0.4348222 0.1409607 +0.3944623 0.4348222 0.1409607 +0.4085988 0.4348222 0.1409607 +0.4220313 0.4348222 0.1409607 +0.4348222 0.4348222 0.1409607 +0.4470264 0.4348222 0.1409607 +0.4586928 0.4348222 0.1409607 +0.4698649 0.4348222 0.1409607 +0.4805811 0.4348222 0.1409607 +0.490876 0.4348222 0.1409607 +0.5007803 0.4348222 0.1409607 +0.510322 0.4348222 0.1409607 +0.5195258 0.4348222 0.1409607 +0.5284142 0.4348222 0.1409607 +0.5370079 0.4348222 0.1409607 +0.5453253 0.4348222 0.1409607 +0.5533834 0.4348222 0.1409607 +0.5611974 0.4348222 0.1409607 +0.5687816 0.4348222 0.1409607 +0.092819 0.4470264 0.1409607 +0.1056428 0.4470264 0.1409607 +0.1201537 0.4470264 0.1409607 +0.1409607 0.4470264 0.1409607 +0.1678172 0.4470264 0.1409607 +0.1950164 0.4470264 0.1409607 +0.2210581 0.4470264 0.1409607 +0.245636 0.4470264 0.1409607 +0.2686816 0.4470264 0.1409607 +0.2902431 0.4470264 0.1409607 +0.3104189 0.4470264 0.1409607 +0.3293248 0.4470264 0.1409607 +0.3470774 0.4470264 0.1409607 +0.3637862 0.4470264 0.1409607 +0.3795513 0.4470264 0.1409607 +0.3944623 0.4470264 0.1409607 +0.4085988 0.4470264 0.1409607 +0.4220313 0.4470264 0.1409607 +0.4348222 0.4470264 0.1409607 +0.4470264 0.4470264 0.1409607 +0.4586928 0.4470264 0.1409607 +0.4698649 0.4470264 0.1409607 +0.4805811 0.4470264 0.1409607 +0.490876 0.4470264 0.1409607 +0.5007803 0.4470264 0.1409607 +0.510322 0.4470264 0.1409607 +0.5195258 0.4470264 0.1409607 +0.5284142 0.4470264 0.1409607 +0.5370079 0.4470264 0.1409607 +0.5453253 0.4470264 0.1409607 +0.5533834 0.4470264 0.1409607 +0.5611974 0.4470264 0.1409607 +0.5687816 0.4470264 0.1409607 +0.092819 0.4586928 0.1409607 +0.1056428 0.4586928 0.1409607 +0.1201537 0.4586928 0.1409607 +0.1409607 0.4586928 0.1409607 +0.1678172 0.4586928 0.1409607 +0.1950164 0.4586928 0.1409607 +0.2210581 0.4586928 0.1409607 +0.245636 0.4586928 0.1409607 +0.2686816 0.4586928 0.1409607 +0.2902431 0.4586928 0.1409607 +0.3104189 0.4586928 0.1409607 +0.3293248 0.4586928 0.1409607 +0.3470774 0.4586928 0.1409607 +0.3637862 0.4586928 0.1409607 +0.3795513 0.4586928 0.1409607 +0.3944623 0.4586928 0.1409607 +0.4085988 0.4586928 0.1409607 +0.4220313 0.4586928 0.1409607 +0.4348222 0.4586928 0.1409607 +0.4470264 0.4586928 0.1409607 +0.4586928 0.4586928 0.1409607 +0.4698649 0.4586928 0.1409607 +0.4805811 0.4586928 0.1409607 +0.490876 0.4586928 0.1409607 +0.5007803 0.4586928 0.1409607 +0.510322 0.4586928 0.1409607 +0.5195258 0.4586928 0.1409607 +0.5284142 0.4586928 0.1409607 +0.5370079 0.4586928 0.1409607 +0.5453253 0.4586928 0.1409607 +0.5533834 0.4586928 0.1409607 +0.5611974 0.4586928 0.1409607 +0.5687816 0.4586928 0.1409607 +0.092819 0.4698649 0.1409607 +0.1056428 0.4698649 0.1409607 +0.1201537 0.4698649 0.1409607 +0.1409607 0.4698649 0.1409607 +0.1678172 0.4698649 0.1409607 +0.1950164 0.4698649 0.1409607 +0.2210581 0.4698649 0.1409607 +0.245636 0.4698649 0.1409607 +0.2686816 0.4698649 0.1409607 +0.2902431 0.4698649 0.1409607 +0.3104189 0.4698649 0.1409607 +0.3293248 0.4698649 0.1409607 +0.3470774 0.4698649 0.1409607 +0.3637862 0.4698649 0.1409607 +0.3795513 0.4698649 0.1409607 +0.3944623 0.4698649 0.1409607 +0.4085988 0.4698649 0.1409607 +0.4220313 0.4698649 0.1409607 +0.4348222 0.4698649 0.1409607 +0.4470264 0.4698649 0.1409607 +0.4586928 0.4698649 0.1409607 +0.4698649 0.4698649 0.1409607 +0.4805811 0.4698649 0.1409607 +0.490876 0.4698649 0.1409607 +0.5007803 0.4698649 0.1409607 +0.510322 0.4698649 0.1409607 +0.5195258 0.4698649 0.1409607 +0.5284142 0.4698649 0.1409607 +0.5370079 0.4698649 0.1409607 +0.5453253 0.4698649 0.1409607 +0.5533834 0.4698649 0.1409607 +0.5611974 0.4698649 0.1409607 +0.5687816 0.4698649 0.1409607 +0.092819 0.4805811 0.1409607 +0.1056428 0.4805811 0.1409607 +0.1201537 0.4805811 0.1409607 +0.1409607 0.4805811 0.1409607 +0.1678172 0.4805811 0.1409607 +0.1950164 0.4805811 0.1409607 +0.2210581 0.4805811 0.1409607 +0.245636 0.4805811 0.1409607 +0.2686816 0.4805811 0.1409607 +0.2902431 0.4805811 0.1409607 +0.3104189 0.4805811 0.1409607 +0.3293248 0.4805811 0.1409607 +0.3470774 0.4805811 0.1409607 +0.3637862 0.4805811 0.1409607 +0.3795513 0.4805811 0.1409607 +0.3944623 0.4805811 0.1409607 +0.4085988 0.4805811 0.1409607 +0.4220313 0.4805811 0.1409607 +0.4348222 0.4805811 0.1409607 +0.4470264 0.4805811 0.1409607 +0.4586928 0.4805811 0.1409607 +0.4698649 0.4805811 0.1409607 +0.4805811 0.4805811 0.1409607 +0.490876 0.4805811 0.1409607 +0.5007803 0.4805811 0.1409607 +0.510322 0.4805811 0.1409607 +0.5195258 0.4805811 0.1409607 +0.5284142 0.4805811 0.1409607 +0.5370079 0.4805811 0.1409607 +0.5453253 0.4805811 0.1409607 +0.5533834 0.4805811 0.1409607 +0.5611974 0.4805811 0.1409607 +0.5687816 0.4805811 0.1409607 +0.092819 0.490876 0.1409607 +0.1056428 0.490876 0.1409607 +0.1201537 0.490876 0.1409607 +0.1409607 0.490876 0.1409607 +0.1678172 0.490876 0.1409607 +0.1950164 0.490876 0.1409607 +0.2210581 0.490876 0.1409607 +0.245636 0.490876 0.1409607 +0.2686816 0.490876 0.1409607 +0.2902431 0.490876 0.1409607 +0.3104189 0.490876 0.1409607 +0.3293248 0.490876 0.1409607 +0.3470774 0.490876 0.1409607 +0.3637862 0.490876 0.1409607 +0.3795513 0.490876 0.1409607 +0.3944623 0.490876 0.1409607 +0.4085988 0.490876 0.1409607 +0.4220313 0.490876 0.1409607 +0.4348222 0.490876 0.1409607 +0.4470264 0.490876 0.1409607 +0.4586928 0.490876 0.1409607 +0.4698649 0.490876 0.1409607 +0.4805811 0.490876 0.1409607 +0.490876 0.490876 0.1409607 +0.5007803 0.490876 0.1409607 +0.510322 0.490876 0.1409607 +0.5195258 0.490876 0.1409607 +0.5284142 0.490876 0.1409607 +0.5370079 0.490876 0.1409607 +0.5453253 0.490876 0.1409607 +0.5533834 0.490876 0.1409607 +0.5611974 0.490876 0.1409607 +0.5687816 0.490876 0.1409607 +0.092819 0.5007803 0.1409607 +0.1056428 0.5007803 0.1409607 +0.1201537 0.5007803 0.1409607 +0.1409607 0.5007803 0.1409607 +0.1678172 0.5007803 0.1409607 +0.1950164 0.5007803 0.1409607 +0.2210581 0.5007803 0.1409607 +0.245636 0.5007803 0.1409607 +0.2686816 0.5007803 0.1409607 +0.2902431 0.5007803 0.1409607 +0.3104189 0.5007803 0.1409607 +0.3293248 0.5007803 0.1409607 +0.3470774 0.5007803 0.1409607 +0.3637862 0.5007803 0.1409607 +0.3795513 0.5007803 0.1409607 +0.3944623 0.5007803 0.1409607 +0.4085988 0.5007803 0.1409607 +0.4220313 0.5007803 0.1409607 +0.4348222 0.5007803 0.1409607 +0.4470264 0.5007803 0.1409607 +0.4586928 0.5007803 0.1409607 +0.4698649 0.5007803 0.1409607 +0.4805811 0.5007803 0.1409607 +0.490876 0.5007803 0.1409607 +0.5007803 0.5007803 0.1409607 +0.510322 0.5007803 0.1409607 +0.5195258 0.5007803 0.1409607 +0.5284142 0.5007803 0.1409607 +0.5370079 0.5007803 0.1409607 +0.5453253 0.5007803 0.1409607 +0.5533834 0.5007803 0.1409607 +0.5611974 0.5007803 0.1409607 +0.5687816 0.5007803 0.1409607 +0.092819 0.510322 0.1409607 +0.1056428 0.510322 0.1409607 +0.1201537 0.510322 0.1409607 +0.1409607 0.510322 0.1409607 +0.1678172 0.510322 0.1409607 +0.1950164 0.510322 0.1409607 +0.2210581 0.510322 0.1409607 +0.245636 0.510322 0.1409607 +0.2686816 0.510322 0.1409607 +0.2902431 0.510322 0.1409607 +0.3104189 0.510322 0.1409607 +0.3293248 0.510322 0.1409607 +0.3470774 0.510322 0.1409607 +0.3637862 0.510322 0.1409607 +0.3795513 0.510322 0.1409607 +0.3944623 0.510322 0.1409607 +0.4085988 0.510322 0.1409607 +0.4220313 0.510322 0.1409607 +0.4348222 0.510322 0.1409607 +0.4470264 0.510322 0.1409607 +0.4586928 0.510322 0.1409607 +0.4698649 0.510322 0.1409607 +0.4805811 0.510322 0.1409607 +0.490876 0.510322 0.1409607 +0.5007803 0.510322 0.1409607 +0.510322 0.510322 0.1409607 +0.5195258 0.510322 0.1409607 +0.5284142 0.510322 0.1409607 +0.5370079 0.510322 0.1409607 +0.5453253 0.510322 0.1409607 +0.5533834 0.510322 0.1409607 +0.5611974 0.510322 0.1409607 +0.5687816 0.510322 0.1409607 +0.092819 0.5195258 0.1409607 +0.1056428 0.5195258 0.1409607 +0.1201537 0.5195258 0.1409607 +0.1409607 0.5195258 0.1409607 +0.1678172 0.5195258 0.1409607 +0.1950164 0.5195258 0.1409607 +0.2210581 0.5195258 0.1409607 +0.245636 0.5195258 0.1409607 +0.2686816 0.5195258 0.1409607 +0.2902431 0.5195258 0.1409607 +0.3104189 0.5195258 0.1409607 +0.3293248 0.5195258 0.1409607 +0.3470774 0.5195258 0.1409607 +0.3637862 0.5195258 0.1409607 +0.3795513 0.5195258 0.1409607 +0.3944623 0.5195258 0.1409607 +0.4085988 0.5195258 0.1409607 +0.4220313 0.5195258 0.1409607 +0.4348222 0.5195258 0.1409607 +0.4470264 0.5195258 0.1409607 +0.4586928 0.5195258 0.1409607 +0.4698649 0.5195258 0.1409607 +0.4805811 0.5195258 0.1409607 +0.490876 0.5195258 0.1409607 +0.5007803 0.5195258 0.1409607 +0.510322 0.5195258 0.1409607 +0.5195258 0.5195258 0.1409607 +0.5284142 0.5195258 0.1409607 +0.5370079 0.5195258 0.1409607 +0.5453253 0.5195258 0.1409607 +0.5533834 0.5195258 0.1409607 +0.5611974 0.5195258 0.1409607 +0.5687816 0.5195258 0.1409607 +0.092819 0.5284142 0.1409607 +0.1056428 0.5284142 0.1409607 +0.1201537 0.5284142 0.1409607 +0.1409607 0.5284142 0.1409607 +0.1678172 0.5284142 0.1409607 +0.1950164 0.5284142 0.1409607 +0.2210581 0.5284142 0.1409607 +0.245636 0.5284142 0.1409607 +0.2686816 0.5284142 0.1409607 +0.2902431 0.5284142 0.1409607 +0.3104189 0.5284142 0.1409607 +0.3293248 0.5284142 0.1409607 +0.3470774 0.5284142 0.1409607 +0.3637862 0.5284142 0.1409607 +0.3795513 0.5284142 0.1409607 +0.3944623 0.5284142 0.1409607 +0.4085988 0.5284142 0.1409607 +0.4220313 0.5284142 0.1409607 +0.4348222 0.5284142 0.1409607 +0.4470264 0.5284142 0.1409607 +0.4586928 0.5284142 0.1409607 +0.4698649 0.5284142 0.1409607 +0.4805811 0.5284142 0.1409607 +0.490876 0.5284142 0.1409607 +0.5007803 0.5284142 0.1409607 +0.510322 0.5284142 0.1409607 +0.5195258 0.5284142 0.1409607 +0.5284142 0.5284142 0.1409607 +0.5370079 0.5284142 0.1409607 +0.5453253 0.5284142 0.1409607 +0.5533834 0.5284142 0.1409607 +0.5611974 0.5284142 0.1409607 +0.5687816 0.5284142 0.1409607 +0.092819 0.5370079 0.1409607 +0.1056428 0.5370079 0.1409607 +0.1201537 0.5370079 0.1409607 +0.1409607 0.5370079 0.1409607 +0.1678172 0.5370079 0.1409607 +0.1950164 0.5370079 0.1409607 +0.2210581 0.5370079 0.1409607 +0.245636 0.5370079 0.1409607 +0.2686816 0.5370079 0.1409607 +0.2902431 0.5370079 0.1409607 +0.3104189 0.5370079 0.1409607 +0.3293248 0.5370079 0.1409607 +0.3470774 0.5370079 0.1409607 +0.3637862 0.5370079 0.1409607 +0.3795513 0.5370079 0.1409607 +0.3944623 0.5370079 0.1409607 +0.4085988 0.5370079 0.1409607 +0.4220313 0.5370079 0.1409607 +0.4348222 0.5370079 0.1409607 +0.4470264 0.5370079 0.1409607 +0.4586928 0.5370079 0.1409607 +0.4698649 0.5370079 0.1409607 +0.4805811 0.5370079 0.1409607 +0.490876 0.5370079 0.1409607 +0.5007803 0.5370079 0.1409607 +0.510322 0.5370079 0.1409607 +0.5195258 0.5370079 0.1409607 +0.5284142 0.5370079 0.1409607 +0.5370079 0.5370079 0.1409607 +0.5453253 0.5370079 0.1409607 +0.5533834 0.5370079 0.1409607 +0.5611974 0.5370079 0.1409607 +0.5687816 0.5370079 0.1409607 +0.092819 0.5453253 0.1409607 +0.1056428 0.5453253 0.1409607 +0.1201537 0.5453253 0.1409607 +0.1409607 0.5453253 0.1409607 +0.1678172 0.5453253 0.1409607 +0.1950164 0.5453253 0.1409607 +0.2210581 0.5453253 0.1409607 +0.245636 0.5453253 0.1409607 +0.2686816 0.5453253 0.1409607 +0.2902431 0.5453253 0.1409607 +0.3104189 0.5453253 0.1409607 +0.3293248 0.5453253 0.1409607 +0.3470774 0.5453253 0.1409607 +0.3637862 0.5453253 0.1409607 +0.3795513 0.5453253 0.1409607 +0.3944623 0.5453253 0.1409607 +0.4085988 0.5453253 0.1409607 +0.4220313 0.5453253 0.1409607 +0.4348222 0.5453253 0.1409607 +0.4470264 0.5453253 0.1409607 +0.4586928 0.5453253 0.1409607 +0.4698649 0.5453253 0.1409607 +0.4805811 0.5453253 0.1409607 +0.490876 0.5453253 0.1409607 +0.5007803 0.5453253 0.1409607 +0.510322 0.5453253 0.1409607 +0.5195258 0.5453253 0.1409607 +0.5284142 0.5453253 0.1409607 +0.5370079 0.5453253 0.1409607 +0.5453253 0.5453253 0.1409607 +0.5533834 0.5453253 0.1409607 +0.5611974 0.5453253 0.1409607 +0.5687816 0.5453253 0.1409607 +0.092819 0.5533834 0.1409607 +0.1056428 0.5533834 0.1409607 +0.1201537 0.5533834 0.1409607 +0.1409607 0.5533834 0.1409607 +0.1678172 0.5533834 0.1409607 +0.1950164 0.5533834 0.1409607 +0.2210581 0.5533834 0.1409607 +0.245636 0.5533834 0.1409607 +0.2686816 0.5533834 0.1409607 +0.2902431 0.5533834 0.1409607 +0.3104189 0.5533834 0.1409607 +0.3293248 0.5533834 0.1409607 +0.3470774 0.5533834 0.1409607 +0.3637862 0.5533834 0.1409607 +0.3795513 0.5533834 0.1409607 +0.3944623 0.5533834 0.1409607 +0.4085988 0.5533834 0.1409607 +0.4220313 0.5533834 0.1409607 +0.4348222 0.5533834 0.1409607 +0.4470264 0.5533834 0.1409607 +0.4586928 0.5533834 0.1409607 +0.4698649 0.5533834 0.1409607 +0.4805811 0.5533834 0.1409607 +0.490876 0.5533834 0.1409607 +0.5007803 0.5533834 0.1409607 +0.510322 0.5533834 0.1409607 +0.5195258 0.5533834 0.1409607 +0.5284142 0.5533834 0.1409607 +0.5370079 0.5533834 0.1409607 +0.5453253 0.5533834 0.1409607 +0.5533834 0.5533834 0.1409607 +0.5611974 0.5533834 0.1409607 +0.5687816 0.5533834 0.1409607 +0.092819 0.5611974 0.1409607 +0.1056428 0.5611974 0.1409607 +0.1201537 0.5611974 0.1409607 +0.1409607 0.5611974 0.1409607 +0.1678172 0.5611974 0.1409607 +0.1950164 0.5611974 0.1409607 +0.2210581 0.5611974 0.1409607 +0.245636 0.5611974 0.1409607 +0.2686816 0.5611974 0.1409607 +0.2902431 0.5611974 0.1409607 +0.3104189 0.5611974 0.1409607 +0.3293248 0.5611974 0.1409607 +0.3470774 0.5611974 0.1409607 +0.3637862 0.5611974 0.1409607 +0.3795513 0.5611974 0.1409607 +0.3944623 0.5611974 0.1409607 +0.4085988 0.5611974 0.1409607 +0.4220313 0.5611974 0.1409607 +0.4348222 0.5611974 0.1409607 +0.4470264 0.5611974 0.1409607 +0.4586928 0.5611974 0.1409607 +0.4698649 0.5611974 0.1409607 +0.4805811 0.5611974 0.1409607 +0.490876 0.5611974 0.1409607 +0.5007803 0.5611974 0.1409607 +0.510322 0.5611974 0.1409607 +0.5195258 0.5611974 0.1409607 +0.5284142 0.5611974 0.1409607 +0.5370079 0.5611974 0.1409607 +0.5453253 0.5611974 0.1409607 +0.5533834 0.5611974 0.1409607 +0.5611974 0.5611974 0.1409607 +0.5687816 0.5611974 0.1409607 +0.092819 0.5687816 0.1409607 +0.1056428 0.5687816 0.1409607 +0.1201537 0.5687816 0.1409607 +0.1409607 0.5687816 0.1409607 +0.1678172 0.5687816 0.1409607 +0.1950164 0.5687816 0.1409607 +0.2210581 0.5687816 0.1409607 +0.245636 0.5687816 0.1409607 +0.2686816 0.5687816 0.1409607 +0.2902431 0.5687816 0.1409607 +0.3104189 0.5687816 0.1409607 +0.3293248 0.5687816 0.1409607 +0.3470774 0.5687816 0.1409607 +0.3637862 0.5687816 0.1409607 +0.3795513 0.5687816 0.1409607 +0.3944623 0.5687816 0.1409607 +0.4085988 0.5687816 0.1409607 +0.4220313 0.5687816 0.1409607 +0.4348222 0.5687816 0.1409607 +0.4470264 0.5687816 0.1409607 +0.4586928 0.5687816 0.1409607 +0.4698649 0.5687816 0.1409607 +0.4805811 0.5687816 0.1409607 +0.490876 0.5687816 0.1409607 +0.5007803 0.5687816 0.1409607 +0.510322 0.5687816 0.1409607 +0.5195258 0.5687816 0.1409607 +0.5284142 0.5687816 0.1409607 +0.5370079 0.5687816 0.1409607 +0.5453253 0.5687816 0.1409607 +0.5533834 0.5687816 0.1409607 +0.5611974 0.5687816 0.1409607 +0.5687816 0.5687816 0.1409607 +0.092819 0.092819 0.1678172 +0.1056428 0.092819 0.1678172 +0.1201537 0.092819 0.1678172 +0.1409607 0.092819 0.1678172 +0.1678172 0.092819 0.1678172 +0.1950164 0.092819 0.1678172 +0.2210581 0.092819 0.1678172 +0.245636 0.092819 0.1678172 +0.2686816 0.092819 0.1678172 +0.2902431 0.092819 0.1678172 +0.3104189 0.092819 0.1678172 +0.3293248 0.092819 0.1678172 +0.3470774 0.092819 0.1678172 +0.3637862 0.092819 0.1678172 +0.3795513 0.092819 0.1678172 +0.3944623 0.092819 0.1678172 +0.4085988 0.092819 0.1678172 +0.4220313 0.092819 0.1678172 +0.4348222 0.092819 0.1678172 +0.4470264 0.092819 0.1678172 +0.4586928 0.092819 0.1678172 +0.4698649 0.092819 0.1678172 +0.4805811 0.092819 0.1678172 +0.490876 0.092819 0.1678172 +0.5007803 0.092819 0.1678172 +0.510322 0.092819 0.1678172 +0.5195258 0.092819 0.1678172 +0.5284142 0.092819 0.1678172 +0.5370079 0.092819 0.1678172 +0.5453253 0.092819 0.1678172 +0.5533834 0.092819 0.1678172 +0.5611974 0.092819 0.1678172 +0.5687816 0.092819 0.1678172 +0.092819 0.1056428 0.1678172 +0.1056428 0.1056428 0.1678172 +0.1201537 0.1056428 0.1678172 +0.1409607 0.1056428 0.1678172 +0.1678172 0.1056428 0.1678172 +0.1950164 0.1056428 0.1678172 +0.2210581 0.1056428 0.1678172 +0.245636 0.1056428 0.1678172 +0.2686816 0.1056428 0.1678172 +0.2902431 0.1056428 0.1678172 +0.3104189 0.1056428 0.1678172 +0.3293248 0.1056428 0.1678172 +0.3470774 0.1056428 0.1678172 +0.3637862 0.1056428 0.1678172 +0.3795513 0.1056428 0.1678172 +0.3944623 0.1056428 0.1678172 +0.4085988 0.1056428 0.1678172 +0.4220313 0.1056428 0.1678172 +0.4348222 0.1056428 0.1678172 +0.4470264 0.1056428 0.1678172 +0.4586928 0.1056428 0.1678172 +0.4698649 0.1056428 0.1678172 +0.4805811 0.1056428 0.1678172 +0.490876 0.1056428 0.1678172 +0.5007803 0.1056428 0.1678172 +0.510322 0.1056428 0.1678172 +0.5195258 0.1056428 0.1678172 +0.5284142 0.1056428 0.1678172 +0.5370079 0.1056428 0.1678172 +0.5453253 0.1056428 0.1678172 +0.5533834 0.1056428 0.1678172 +0.5611974 0.1056428 0.1678172 +0.5687816 0.1056428 0.1678172 +0.092819 0.1201537 0.1678172 +0.1056428 0.1201537 0.1678172 +0.1201537 0.1201537 0.1678172 +0.1409607 0.1201537 0.1678172 +0.1678172 0.1201537 0.1678172 +0.1950164 0.1201537 0.1678172 +0.2210581 0.1201537 0.1678172 +0.245636 0.1201537 0.1678172 +0.2686816 0.1201537 0.1678172 +0.2902431 0.1201537 0.1678172 +0.3104189 0.1201537 0.1678172 +0.3293248 0.1201537 0.1678172 +0.3470774 0.1201537 0.1678172 +0.3637862 0.1201537 0.1678172 +0.3795513 0.1201537 0.1678172 +0.3944623 0.1201537 0.1678172 +0.4085988 0.1201537 0.1678172 +0.4220313 0.1201537 0.1678172 +0.4348222 0.1201537 0.1678172 +0.4470264 0.1201537 0.1678172 +0.4586928 0.1201537 0.1678172 +0.4698649 0.1201537 0.1678172 +0.4805811 0.1201537 0.1678172 +0.490876 0.1201537 0.1678172 +0.5007803 0.1201537 0.1678172 +0.510322 0.1201537 0.1678172 +0.5195258 0.1201537 0.1678172 +0.5284142 0.1201537 0.1678172 +0.5370079 0.1201537 0.1678172 +0.5453253 0.1201537 0.1678172 +0.5533834 0.1201537 0.1678172 +0.5611974 0.1201537 0.1678172 +0.5687816 0.1201537 0.1678172 +0.092819 0.1409607 0.1678172 +0.1056428 0.1409607 0.1678172 +0.1201537 0.1409607 0.1678172 +0.1409607 0.1409607 0.1678172 +0.1678172 0.1409607 0.1678172 +0.1950164 0.1409607 0.1678172 +0.2210581 0.1409607 0.1678172 +0.245636 0.1409607 0.1678172 +0.2686816 0.1409607 0.1678172 +0.2902431 0.1409607 0.1678172 +0.3104189 0.1409607 0.1678172 +0.3293248 0.1409607 0.1678172 +0.3470774 0.1409607 0.1678172 +0.3637862 0.1409607 0.1678172 +0.3795513 0.1409607 0.1678172 +0.3944623 0.1409607 0.1678172 +0.4085988 0.1409607 0.1678172 +0.4220313 0.1409607 0.1678172 +0.4348222 0.1409607 0.1678172 +0.4470264 0.1409607 0.1678172 +0.4586928 0.1409607 0.1678172 +0.4698649 0.1409607 0.1678172 +0.4805811 0.1409607 0.1678172 +0.490876 0.1409607 0.1678172 +0.5007803 0.1409607 0.1678172 +0.510322 0.1409607 0.1678172 +0.5195258 0.1409607 0.1678172 +0.5284142 0.1409607 0.1678172 +0.5370079 0.1409607 0.1678172 +0.5453253 0.1409607 0.1678172 +0.5533834 0.1409607 0.1678172 +0.5611974 0.1409607 0.1678172 +0.5687816 0.1409607 0.1678172 +0.092819 0.1678172 0.1678172 +0.1056428 0.1678172 0.1678172 +0.1201537 0.1678172 0.1678172 +0.1409607 0.1678172 0.1678172 +0.1678172 0.1678172 0.1678172 +0.1950164 0.1678172 0.1678172 +0.2210581 0.1678172 0.1678172 +0.245636 0.1678172 0.1678172 +0.2686816 0.1678172 0.1678172 +0.2902431 0.1678172 0.1678172 +0.3104189 0.1678172 0.1678172 +0.3293248 0.1678172 0.1678172 +0.3470774 0.1678172 0.1678172 +0.3637862 0.1678172 0.1678172 +0.3795513 0.1678172 0.1678172 +0.3944623 0.1678172 0.1678172 +0.4085988 0.1678172 0.1678172 +0.4220313 0.1678172 0.1678172 +0.4348222 0.1678172 0.1678172 +0.4470264 0.1678172 0.1678172 +0.4586928 0.1678172 0.1678172 +0.4698649 0.1678172 0.1678172 +0.4805811 0.1678172 0.1678172 +0.490876 0.1678172 0.1678172 +0.5007803 0.1678172 0.1678172 +0.510322 0.1678172 0.1678172 +0.5195258 0.1678172 0.1678172 +0.5284142 0.1678172 0.1678172 +0.5370079 0.1678172 0.1678172 +0.5453253 0.1678172 0.1678172 +0.5533834 0.1678172 0.1678172 +0.5611974 0.1678172 0.1678172 +0.5687816 0.1678172 0.1678172 +0.092819 0.1950164 0.1678172 +0.1056428 0.1950164 0.1678172 +0.1201537 0.1950164 0.1678172 +0.1409607 0.1950164 0.1678172 +0.1678172 0.1950164 0.1678172 +0.1950164 0.1950164 0.1678172 +0.2210581 0.1950164 0.1678172 +0.245636 0.1950164 0.1678172 +0.2686816 0.1950164 0.1678172 +0.2902431 0.1950164 0.1678172 +0.3104189 0.1950164 0.1678172 +0.3293248 0.1950164 0.1678172 +0.3470774 0.1950164 0.1678172 +0.3637862 0.1950164 0.1678172 +0.3795513 0.1950164 0.1678172 +0.3944623 0.1950164 0.1678172 +0.4085988 0.1950164 0.1678172 +0.4220313 0.1950164 0.1678172 +0.4348222 0.1950164 0.1678172 +0.4470264 0.1950164 0.1678172 +0.4586928 0.1950164 0.1678172 +0.4698649 0.1950164 0.1678172 +0.4805811 0.1950164 0.1678172 +0.490876 0.1950164 0.1678172 +0.5007803 0.1950164 0.1678172 +0.510322 0.1950164 0.1678172 +0.5195258 0.1950164 0.1678172 +0.5284142 0.1950164 0.1678172 +0.5370079 0.1950164 0.1678172 +0.5453253 0.1950164 0.1678172 +0.5533834 0.1950164 0.1678172 +0.5611974 0.1950164 0.1678172 +0.5687816 0.1950164 0.1678172 +0.092819 0.2210581 0.1678172 +0.1056428 0.2210581 0.1678172 +0.1201537 0.2210581 0.1678172 +0.1409607 0.2210581 0.1678172 +0.1678172 0.2210581 0.1678172 +0.1950164 0.2210581 0.1678172 +0.2210581 0.2210581 0.1678172 +0.245636 0.2210581 0.1678172 +0.2686816 0.2210581 0.1678172 +0.2902431 0.2210581 0.1678172 +0.3104189 0.2210581 0.1678172 +0.3293248 0.2210581 0.1678172 +0.3470774 0.2210581 0.1678172 +0.3637862 0.2210581 0.1678172 +0.3795513 0.2210581 0.1678172 +0.3944623 0.2210581 0.1678172 +0.4085988 0.2210581 0.1678172 +0.4220313 0.2210581 0.1678172 +0.4348222 0.2210581 0.1678172 +0.4470264 0.2210581 0.1678172 +0.4586928 0.2210581 0.1678172 +0.4698649 0.2210581 0.1678172 +0.4805811 0.2210581 0.1678172 +0.490876 0.2210581 0.1678172 +0.5007803 0.2210581 0.1678172 +0.510322 0.2210581 0.1678172 +0.5195258 0.2210581 0.1678172 +0.5284142 0.2210581 0.1678172 +0.5370079 0.2210581 0.1678172 +0.5453253 0.2210581 0.1678172 +0.5533834 0.2210581 0.1678172 +0.5611974 0.2210581 0.1678172 +0.5687816 0.2210581 0.1678172 +0.092819 0.245636 0.1678172 +0.1056428 0.245636 0.1678172 +0.1201537 0.245636 0.1678172 +0.1409607 0.245636 0.1678172 +0.1678172 0.245636 0.1678172 +0.1950164 0.245636 0.1678172 +0.2210581 0.245636 0.1678172 +0.245636 0.245636 0.1678172 +0.2686816 0.245636 0.1678172 +0.2902431 0.245636 0.1678172 +0.3104189 0.245636 0.1678172 +0.3293248 0.245636 0.1678172 +0.3470774 0.245636 0.1678172 +0.3637862 0.245636 0.1678172 +0.3795513 0.245636 0.1678172 +0.3944623 0.245636 0.1678172 +0.4085988 0.245636 0.1678172 +0.4220313 0.245636 0.1678172 +0.4348222 0.245636 0.1678172 +0.4470264 0.245636 0.1678172 +0.4586928 0.245636 0.1678172 +0.4698649 0.245636 0.1678172 +0.4805811 0.245636 0.1678172 +0.490876 0.245636 0.1678172 +0.5007803 0.245636 0.1678172 +0.510322 0.245636 0.1678172 +0.5195258 0.245636 0.1678172 +0.5284142 0.245636 0.1678172 +0.5370079 0.245636 0.1678172 +0.5453253 0.245636 0.1678172 +0.5533834 0.245636 0.1678172 +0.5611974 0.245636 0.1678172 +0.5687816 0.245636 0.1678172 +0.092819 0.2686816 0.1678172 +0.1056428 0.2686816 0.1678172 +0.1201537 0.2686816 0.1678172 +0.1409607 0.2686816 0.1678172 +0.1678172 0.2686816 0.1678172 +0.1950164 0.2686816 0.1678172 +0.2210581 0.2686816 0.1678172 +0.245636 0.2686816 0.1678172 +0.2686816 0.2686816 0.1678172 +0.2902431 0.2686816 0.1678172 +0.3104189 0.2686816 0.1678172 +0.3293248 0.2686816 0.1678172 +0.3470774 0.2686816 0.1678172 +0.3637862 0.2686816 0.1678172 +0.3795513 0.2686816 0.1678172 +0.3944623 0.2686816 0.1678172 +0.4085988 0.2686816 0.1678172 +0.4220313 0.2686816 0.1678172 +0.4348222 0.2686816 0.1678172 +0.4470264 0.2686816 0.1678172 +0.4586928 0.2686816 0.1678172 +0.4698649 0.2686816 0.1678172 +0.4805811 0.2686816 0.1678172 +0.490876 0.2686816 0.1678172 +0.5007803 0.2686816 0.1678172 +0.510322 0.2686816 0.1678172 +0.5195258 0.2686816 0.1678172 +0.5284142 0.2686816 0.1678172 +0.5370079 0.2686816 0.1678172 +0.5453253 0.2686816 0.1678172 +0.5533834 0.2686816 0.1678172 +0.5611974 0.2686816 0.1678172 +0.5687816 0.2686816 0.1678172 +0.092819 0.2902431 0.1678172 +0.1056428 0.2902431 0.1678172 +0.1201537 0.2902431 0.1678172 +0.1409607 0.2902431 0.1678172 +0.1678172 0.2902431 0.1678172 +0.1950164 0.2902431 0.1678172 +0.2210581 0.2902431 0.1678172 +0.245636 0.2902431 0.1678172 +0.2686816 0.2902431 0.1678172 +0.2902431 0.2902431 0.1678172 +0.3104189 0.2902431 0.1678172 +0.3293248 0.2902431 0.1678172 +0.3470774 0.2902431 0.1678172 +0.3637862 0.2902431 0.1678172 +0.3795513 0.2902431 0.1678172 +0.3944623 0.2902431 0.1678172 +0.4085988 0.2902431 0.1678172 +0.4220313 0.2902431 0.1678172 +0.4348222 0.2902431 0.1678172 +0.4470264 0.2902431 0.1678172 +0.4586928 0.2902431 0.1678172 +0.4698649 0.2902431 0.1678172 +0.4805811 0.2902431 0.1678172 +0.490876 0.2902431 0.1678172 +0.5007803 0.2902431 0.1678172 +0.510322 0.2902431 0.1678172 +0.5195258 0.2902431 0.1678172 +0.5284142 0.2902431 0.1678172 +0.5370079 0.2902431 0.1678172 +0.5453253 0.2902431 0.1678172 +0.5533834 0.2902431 0.1678172 +0.5611974 0.2902431 0.1678172 +0.5687816 0.2902431 0.1678172 +0.092819 0.3104189 0.1678172 +0.1056428 0.3104189 0.1678172 +0.1201537 0.3104189 0.1678172 +0.1409607 0.3104189 0.1678172 +0.1678172 0.3104189 0.1678172 +0.1950164 0.3104189 0.1678172 +0.2210581 0.3104189 0.1678172 +0.245636 0.3104189 0.1678172 +0.2686816 0.3104189 0.1678172 +0.2902431 0.3104189 0.1678172 +0.3104189 0.3104189 0.1678172 +0.3293248 0.3104189 0.1678172 +0.3470774 0.3104189 0.1678172 +0.3637862 0.3104189 0.1678172 +0.3795513 0.3104189 0.1678172 +0.3944623 0.3104189 0.1678172 +0.4085988 0.3104189 0.1678172 +0.4220313 0.3104189 0.1678172 +0.4348222 0.3104189 0.1678172 +0.4470264 0.3104189 0.1678172 +0.4586928 0.3104189 0.1678172 +0.4698649 0.3104189 0.1678172 +0.4805811 0.3104189 0.1678172 +0.490876 0.3104189 0.1678172 +0.5007803 0.3104189 0.1678172 +0.510322 0.3104189 0.1678172 +0.5195258 0.3104189 0.1678172 +0.5284142 0.3104189 0.1678172 +0.5370079 0.3104189 0.1678172 +0.5453253 0.3104189 0.1678172 +0.5533834 0.3104189 0.1678172 +0.5611974 0.3104189 0.1678172 +0.5687816 0.3104189 0.1678172 +0.092819 0.3293248 0.1678172 +0.1056428 0.3293248 0.1678172 +0.1201537 0.3293248 0.1678172 +0.1409607 0.3293248 0.1678172 +0.1678172 0.3293248 0.1678172 +0.1950164 0.3293248 0.1678172 +0.2210581 0.3293248 0.1678172 +0.245636 0.3293248 0.1678172 +0.2686816 0.3293248 0.1678172 +0.2902431 0.3293248 0.1678172 +0.3104189 0.3293248 0.1678172 +0.3293248 0.3293248 0.1678172 +0.3470774 0.3293248 0.1678172 +0.3637862 0.3293248 0.1678172 +0.3795513 0.3293248 0.1678172 +0.3944623 0.3293248 0.1678172 +0.4085988 0.3293248 0.1678172 +0.4220313 0.3293248 0.1678172 +0.4348222 0.3293248 0.1678172 +0.4470264 0.3293248 0.1678172 +0.4586928 0.3293248 0.1678172 +0.4698649 0.3293248 0.1678172 +0.4805811 0.3293248 0.1678172 +0.490876 0.3293248 0.1678172 +0.5007803 0.3293248 0.1678172 +0.510322 0.3293248 0.1678172 +0.5195258 0.3293248 0.1678172 +0.5284142 0.3293248 0.1678172 +0.5370079 0.3293248 0.1678172 +0.5453253 0.3293248 0.1678172 +0.5533834 0.3293248 0.1678172 +0.5611974 0.3293248 0.1678172 +0.5687816 0.3293248 0.1678172 +0.092819 0.3470774 0.1678172 +0.1056428 0.3470774 0.1678172 +0.1201537 0.3470774 0.1678172 +0.1409607 0.3470774 0.1678172 +0.1678172 0.3470774 0.1678172 +0.1950164 0.3470774 0.1678172 +0.2210581 0.3470774 0.1678172 +0.245636 0.3470774 0.1678172 +0.2686816 0.3470774 0.1678172 +0.2902431 0.3470774 0.1678172 +0.3104189 0.3470774 0.1678172 +0.3293248 0.3470774 0.1678172 +0.3470774 0.3470774 0.1678172 +0.3637862 0.3470774 0.1678172 +0.3795513 0.3470774 0.1678172 +0.3944623 0.3470774 0.1678172 +0.4085988 0.3470774 0.1678172 +0.4220313 0.3470774 0.1678172 +0.4348222 0.3470774 0.1678172 +0.4470264 0.3470774 0.1678172 +0.4586928 0.3470774 0.1678172 +0.4698649 0.3470774 0.1678172 +0.4805811 0.3470774 0.1678172 +0.490876 0.3470774 0.1678172 +0.5007803 0.3470774 0.1678172 +0.510322 0.3470774 0.1678172 +0.5195258 0.3470774 0.1678172 +0.5284142 0.3470774 0.1678172 +0.5370079 0.3470774 0.1678172 +0.5453253 0.3470774 0.1678172 +0.5533834 0.3470774 0.1678172 +0.5611974 0.3470774 0.1678172 +0.5687816 0.3470774 0.1678172 +0.092819 0.3637862 0.1678172 +0.1056428 0.3637862 0.1678172 +0.1201537 0.3637862 0.1678172 +0.1409607 0.3637862 0.1678172 +0.1678172 0.3637862 0.1678172 +0.1950164 0.3637862 0.1678172 +0.2210581 0.3637862 0.1678172 +0.245636 0.3637862 0.1678172 +0.2686816 0.3637862 0.1678172 +0.2902431 0.3637862 0.1678172 +0.3104189 0.3637862 0.1678172 +0.3293248 0.3637862 0.1678172 +0.3470774 0.3637862 0.1678172 +0.3637862 0.3637862 0.1678172 +0.3795513 0.3637862 0.1678172 +0.3944623 0.3637862 0.1678172 +0.4085988 0.3637862 0.1678172 +0.4220313 0.3637862 0.1678172 +0.4348222 0.3637862 0.1678172 +0.4470264 0.3637862 0.1678172 +0.4586928 0.3637862 0.1678172 +0.4698649 0.3637862 0.1678172 +0.4805811 0.3637862 0.1678172 +0.490876 0.3637862 0.1678172 +0.5007803 0.3637862 0.1678172 +0.510322 0.3637862 0.1678172 +0.5195258 0.3637862 0.1678172 +0.5284142 0.3637862 0.1678172 +0.5370079 0.3637862 0.1678172 +0.5453253 0.3637862 0.1678172 +0.5533834 0.3637862 0.1678172 +0.5611974 0.3637862 0.1678172 +0.5687816 0.3637862 0.1678172 +0.092819 0.3795513 0.1678172 +0.1056428 0.3795513 0.1678172 +0.1201537 0.3795513 0.1678172 +0.1409607 0.3795513 0.1678172 +0.1678172 0.3795513 0.1678172 +0.1950164 0.3795513 0.1678172 +0.2210581 0.3795513 0.1678172 +0.245636 0.3795513 0.1678172 +0.2686816 0.3795513 0.1678172 +0.2902431 0.3795513 0.1678172 +0.3104189 0.3795513 0.1678172 +0.3293248 0.3795513 0.1678172 +0.3470774 0.3795513 0.1678172 +0.3637862 0.3795513 0.1678172 +0.3795513 0.3795513 0.1678172 +0.3944623 0.3795513 0.1678172 +0.4085988 0.3795513 0.1678172 +0.4220313 0.3795513 0.1678172 +0.4348222 0.3795513 0.1678172 +0.4470264 0.3795513 0.1678172 +0.4586928 0.3795513 0.1678172 +0.4698649 0.3795513 0.1678172 +0.4805811 0.3795513 0.1678172 +0.490876 0.3795513 0.1678172 +0.5007803 0.3795513 0.1678172 +0.510322 0.3795513 0.1678172 +0.5195258 0.3795513 0.1678172 +0.5284142 0.3795513 0.1678172 +0.5370079 0.3795513 0.1678172 +0.5453253 0.3795513 0.1678172 +0.5533834 0.3795513 0.1678172 +0.5611974 0.3795513 0.1678172 +0.5687816 0.3795513 0.1678172 +0.092819 0.3944623 0.1678172 +0.1056428 0.3944623 0.1678172 +0.1201537 0.3944623 0.1678172 +0.1409607 0.3944623 0.1678172 +0.1678172 0.3944623 0.1678172 +0.1950164 0.3944623 0.1678172 +0.2210581 0.3944623 0.1678172 +0.245636 0.3944623 0.1678172 +0.2686816 0.3944623 0.1678172 +0.2902431 0.3944623 0.1678172 +0.3104189 0.3944623 0.1678172 +0.3293248 0.3944623 0.1678172 +0.3470774 0.3944623 0.1678172 +0.3637862 0.3944623 0.1678172 +0.3795513 0.3944623 0.1678172 +0.3944623 0.3944623 0.1678172 +0.4085988 0.3944623 0.1678172 +0.4220313 0.3944623 0.1678172 +0.4348222 0.3944623 0.1678172 +0.4470264 0.3944623 0.1678172 +0.4586928 0.3944623 0.1678172 +0.4698649 0.3944623 0.1678172 +0.4805811 0.3944623 0.1678172 +0.490876 0.3944623 0.1678172 +0.5007803 0.3944623 0.1678172 +0.510322 0.3944623 0.1678172 +0.5195258 0.3944623 0.1678172 +0.5284142 0.3944623 0.1678172 +0.5370079 0.3944623 0.1678172 +0.5453253 0.3944623 0.1678172 +0.5533834 0.3944623 0.1678172 +0.5611974 0.3944623 0.1678172 +0.5687816 0.3944623 0.1678172 +0.092819 0.4085988 0.1678172 +0.1056428 0.4085988 0.1678172 +0.1201537 0.4085988 0.1678172 +0.1409607 0.4085988 0.1678172 +0.1678172 0.4085988 0.1678172 +0.1950164 0.4085988 0.1678172 +0.2210581 0.4085988 0.1678172 +0.245636 0.4085988 0.1678172 +0.2686816 0.4085988 0.1678172 +0.2902431 0.4085988 0.1678172 +0.3104189 0.4085988 0.1678172 +0.3293248 0.4085988 0.1678172 +0.3470774 0.4085988 0.1678172 +0.3637862 0.4085988 0.1678172 +0.3795513 0.4085988 0.1678172 +0.3944623 0.4085988 0.1678172 +0.4085988 0.4085988 0.1678172 +0.4220313 0.4085988 0.1678172 +0.4348222 0.4085988 0.1678172 +0.4470264 0.4085988 0.1678172 +0.4586928 0.4085988 0.1678172 +0.4698649 0.4085988 0.1678172 +0.4805811 0.4085988 0.1678172 +0.490876 0.4085988 0.1678172 +0.5007803 0.4085988 0.1678172 +0.510322 0.4085988 0.1678172 +0.5195258 0.4085988 0.1678172 +0.5284142 0.4085988 0.1678172 +0.5370079 0.4085988 0.1678172 +0.5453253 0.4085988 0.1678172 +0.5533834 0.4085988 0.1678172 +0.5611974 0.4085988 0.1678172 +0.5687816 0.4085988 0.1678172 +0.092819 0.4220313 0.1678172 +0.1056428 0.4220313 0.1678172 +0.1201537 0.4220313 0.1678172 +0.1409607 0.4220313 0.1678172 +0.1678172 0.4220313 0.1678172 +0.1950164 0.4220313 0.1678172 +0.2210581 0.4220313 0.1678172 +0.245636 0.4220313 0.1678172 +0.2686816 0.4220313 0.1678172 +0.2902431 0.4220313 0.1678172 +0.3104189 0.4220313 0.1678172 +0.3293248 0.4220313 0.1678172 +0.3470774 0.4220313 0.1678172 +0.3637862 0.4220313 0.1678172 +0.3795513 0.4220313 0.1678172 +0.3944623 0.4220313 0.1678172 +0.4085988 0.4220313 0.1678172 +0.4220313 0.4220313 0.1678172 +0.4348222 0.4220313 0.1678172 +0.4470264 0.4220313 0.1678172 +0.4586928 0.4220313 0.1678172 +0.4698649 0.4220313 0.1678172 +0.4805811 0.4220313 0.1678172 +0.490876 0.4220313 0.1678172 +0.5007803 0.4220313 0.1678172 +0.510322 0.4220313 0.1678172 +0.5195258 0.4220313 0.1678172 +0.5284142 0.4220313 0.1678172 +0.5370079 0.4220313 0.1678172 +0.5453253 0.4220313 0.1678172 +0.5533834 0.4220313 0.1678172 +0.5611974 0.4220313 0.1678172 +0.5687816 0.4220313 0.1678172 +0.092819 0.4348222 0.1678172 +0.1056428 0.4348222 0.1678172 +0.1201537 0.4348222 0.1678172 +0.1409607 0.4348222 0.1678172 +0.1678172 0.4348222 0.1678172 +0.1950164 0.4348222 0.1678172 +0.2210581 0.4348222 0.1678172 +0.245636 0.4348222 0.1678172 +0.2686816 0.4348222 0.1678172 +0.2902431 0.4348222 0.1678172 +0.3104189 0.4348222 0.1678172 +0.3293248 0.4348222 0.1678172 +0.3470774 0.4348222 0.1678172 +0.3637862 0.4348222 0.1678172 +0.3795513 0.4348222 0.1678172 +0.3944623 0.4348222 0.1678172 +0.4085988 0.4348222 0.1678172 +0.4220313 0.4348222 0.1678172 +0.4348222 0.4348222 0.1678172 +0.4470264 0.4348222 0.1678172 +0.4586928 0.4348222 0.1678172 +0.4698649 0.4348222 0.1678172 +0.4805811 0.4348222 0.1678172 +0.490876 0.4348222 0.1678172 +0.5007803 0.4348222 0.1678172 +0.510322 0.4348222 0.1678172 +0.5195258 0.4348222 0.1678172 +0.5284142 0.4348222 0.1678172 +0.5370079 0.4348222 0.1678172 +0.5453253 0.4348222 0.1678172 +0.5533834 0.4348222 0.1678172 +0.5611974 0.4348222 0.1678172 +0.5687816 0.4348222 0.1678172 +0.092819 0.4470264 0.1678172 +0.1056428 0.4470264 0.1678172 +0.1201537 0.4470264 0.1678172 +0.1409607 0.4470264 0.1678172 +0.1678172 0.4470264 0.1678172 +0.1950164 0.4470264 0.1678172 +0.2210581 0.4470264 0.1678172 +0.245636 0.4470264 0.1678172 +0.2686816 0.4470264 0.1678172 +0.2902431 0.4470264 0.1678172 +0.3104189 0.4470264 0.1678172 +0.3293248 0.4470264 0.1678172 +0.3470774 0.4470264 0.1678172 +0.3637862 0.4470264 0.1678172 +0.3795513 0.4470264 0.1678172 +0.3944623 0.4470264 0.1678172 +0.4085988 0.4470264 0.1678172 +0.4220313 0.4470264 0.1678172 +0.4348222 0.4470264 0.1678172 +0.4470264 0.4470264 0.1678172 +0.4586928 0.4470264 0.1678172 +0.4698649 0.4470264 0.1678172 +0.4805811 0.4470264 0.1678172 +0.490876 0.4470264 0.1678172 +0.5007803 0.4470264 0.1678172 +0.510322 0.4470264 0.1678172 +0.5195258 0.4470264 0.1678172 +0.5284142 0.4470264 0.1678172 +0.5370079 0.4470264 0.1678172 +0.5453253 0.4470264 0.1678172 +0.5533834 0.4470264 0.1678172 +0.5611974 0.4470264 0.1678172 +0.5687816 0.4470264 0.1678172 +0.092819 0.4586928 0.1678172 +0.1056428 0.4586928 0.1678172 +0.1201537 0.4586928 0.1678172 +0.1409607 0.4586928 0.1678172 +0.1678172 0.4586928 0.1678172 +0.1950164 0.4586928 0.1678172 +0.2210581 0.4586928 0.1678172 +0.245636 0.4586928 0.1678172 +0.2686816 0.4586928 0.1678172 +0.2902431 0.4586928 0.1678172 +0.3104189 0.4586928 0.1678172 +0.3293248 0.4586928 0.1678172 +0.3470774 0.4586928 0.1678172 +0.3637862 0.4586928 0.1678172 +0.3795513 0.4586928 0.1678172 +0.3944623 0.4586928 0.1678172 +0.4085988 0.4586928 0.1678172 +0.4220313 0.4586928 0.1678172 +0.4348222 0.4586928 0.1678172 +0.4470264 0.4586928 0.1678172 +0.4586928 0.4586928 0.1678172 +0.4698649 0.4586928 0.1678172 +0.4805811 0.4586928 0.1678172 +0.490876 0.4586928 0.1678172 +0.5007803 0.4586928 0.1678172 +0.510322 0.4586928 0.1678172 +0.5195258 0.4586928 0.1678172 +0.5284142 0.4586928 0.1678172 +0.5370079 0.4586928 0.1678172 +0.5453253 0.4586928 0.1678172 +0.5533834 0.4586928 0.1678172 +0.5611974 0.4586928 0.1678172 +0.5687816 0.4586928 0.1678172 +0.092819 0.4698649 0.1678172 +0.1056428 0.4698649 0.1678172 +0.1201537 0.4698649 0.1678172 +0.1409607 0.4698649 0.1678172 +0.1678172 0.4698649 0.1678172 +0.1950164 0.4698649 0.1678172 +0.2210581 0.4698649 0.1678172 +0.245636 0.4698649 0.1678172 +0.2686816 0.4698649 0.1678172 +0.2902431 0.4698649 0.1678172 +0.3104189 0.4698649 0.1678172 +0.3293248 0.4698649 0.1678172 +0.3470774 0.4698649 0.1678172 +0.3637862 0.4698649 0.1678172 +0.3795513 0.4698649 0.1678172 +0.3944623 0.4698649 0.1678172 +0.4085988 0.4698649 0.1678172 +0.4220313 0.4698649 0.1678172 +0.4348222 0.4698649 0.1678172 +0.4470264 0.4698649 0.1678172 +0.4586928 0.4698649 0.1678172 +0.4698649 0.4698649 0.1678172 +0.4805811 0.4698649 0.1678172 +0.490876 0.4698649 0.1678172 +0.5007803 0.4698649 0.1678172 +0.510322 0.4698649 0.1678172 +0.5195258 0.4698649 0.1678172 +0.5284142 0.4698649 0.1678172 +0.5370079 0.4698649 0.1678172 +0.5453253 0.4698649 0.1678172 +0.5533834 0.4698649 0.1678172 +0.5611974 0.4698649 0.1678172 +0.5687816 0.4698649 0.1678172 +0.092819 0.4805811 0.1678172 +0.1056428 0.4805811 0.1678172 +0.1201537 0.4805811 0.1678172 +0.1409607 0.4805811 0.1678172 +0.1678172 0.4805811 0.1678172 +0.1950164 0.4805811 0.1678172 +0.2210581 0.4805811 0.1678172 +0.245636 0.4805811 0.1678172 +0.2686816 0.4805811 0.1678172 +0.2902431 0.4805811 0.1678172 +0.3104189 0.4805811 0.1678172 +0.3293248 0.4805811 0.1678172 +0.3470774 0.4805811 0.1678172 +0.3637862 0.4805811 0.1678172 +0.3795513 0.4805811 0.1678172 +0.3944623 0.4805811 0.1678172 +0.4085988 0.4805811 0.1678172 +0.4220313 0.4805811 0.1678172 +0.4348222 0.4805811 0.1678172 +0.4470264 0.4805811 0.1678172 +0.4586928 0.4805811 0.1678172 +0.4698649 0.4805811 0.1678172 +0.4805811 0.4805811 0.1678172 +0.490876 0.4805811 0.1678172 +0.5007803 0.4805811 0.1678172 +0.510322 0.4805811 0.1678172 +0.5195258 0.4805811 0.1678172 +0.5284142 0.4805811 0.1678172 +0.5370079 0.4805811 0.1678172 +0.5453253 0.4805811 0.1678172 +0.5533834 0.4805811 0.1678172 +0.5611974 0.4805811 0.1678172 +0.5687816 0.4805811 0.1678172 +0.092819 0.490876 0.1678172 +0.1056428 0.490876 0.1678172 +0.1201537 0.490876 0.1678172 +0.1409607 0.490876 0.1678172 +0.1678172 0.490876 0.1678172 +0.1950164 0.490876 0.1678172 +0.2210581 0.490876 0.1678172 +0.245636 0.490876 0.1678172 +0.2686816 0.490876 0.1678172 +0.2902431 0.490876 0.1678172 +0.3104189 0.490876 0.1678172 +0.3293248 0.490876 0.1678172 +0.3470774 0.490876 0.1678172 +0.3637862 0.490876 0.1678172 +0.3795513 0.490876 0.1678172 +0.3944623 0.490876 0.1678172 +0.4085988 0.490876 0.1678172 +0.4220313 0.490876 0.1678172 +0.4348222 0.490876 0.1678172 +0.4470264 0.490876 0.1678172 +0.4586928 0.490876 0.1678172 +0.4698649 0.490876 0.1678172 +0.4805811 0.490876 0.1678172 +0.490876 0.490876 0.1678172 +0.5007803 0.490876 0.1678172 +0.510322 0.490876 0.1678172 +0.5195258 0.490876 0.1678172 +0.5284142 0.490876 0.1678172 +0.5370079 0.490876 0.1678172 +0.5453253 0.490876 0.1678172 +0.5533834 0.490876 0.1678172 +0.5611974 0.490876 0.1678172 +0.5687816 0.490876 0.1678172 +0.092819 0.5007803 0.1678172 +0.1056428 0.5007803 0.1678172 +0.1201537 0.5007803 0.1678172 +0.1409607 0.5007803 0.1678172 +0.1678172 0.5007803 0.1678172 +0.1950164 0.5007803 0.1678172 +0.2210581 0.5007803 0.1678172 +0.245636 0.5007803 0.1678172 +0.2686816 0.5007803 0.1678172 +0.2902431 0.5007803 0.1678172 +0.3104189 0.5007803 0.1678172 +0.3293248 0.5007803 0.1678172 +0.3470774 0.5007803 0.1678172 +0.3637862 0.5007803 0.1678172 +0.3795513 0.5007803 0.1678172 +0.3944623 0.5007803 0.1678172 +0.4085988 0.5007803 0.1678172 +0.4220313 0.5007803 0.1678172 +0.4348222 0.5007803 0.1678172 +0.4470264 0.5007803 0.1678172 +0.4586928 0.5007803 0.1678172 +0.4698649 0.5007803 0.1678172 +0.4805811 0.5007803 0.1678172 +0.490876 0.5007803 0.1678172 +0.5007803 0.5007803 0.1678172 +0.510322 0.5007803 0.1678172 +0.5195258 0.5007803 0.1678172 +0.5284142 0.5007803 0.1678172 +0.5370079 0.5007803 0.1678172 +0.5453253 0.5007803 0.1678172 +0.5533834 0.5007803 0.1678172 +0.5611974 0.5007803 0.1678172 +0.5687816 0.5007803 0.1678172 +0.092819 0.510322 0.1678172 +0.1056428 0.510322 0.1678172 +0.1201537 0.510322 0.1678172 +0.1409607 0.510322 0.1678172 +0.1678172 0.510322 0.1678172 +0.1950164 0.510322 0.1678172 +0.2210581 0.510322 0.1678172 +0.245636 0.510322 0.1678172 +0.2686816 0.510322 0.1678172 +0.2902431 0.510322 0.1678172 +0.3104189 0.510322 0.1678172 +0.3293248 0.510322 0.1678172 +0.3470774 0.510322 0.1678172 +0.3637862 0.510322 0.1678172 +0.3795513 0.510322 0.1678172 +0.3944623 0.510322 0.1678172 +0.4085988 0.510322 0.1678172 +0.4220313 0.510322 0.1678172 +0.4348222 0.510322 0.1678172 +0.4470264 0.510322 0.1678172 +0.4586928 0.510322 0.1678172 +0.4698649 0.510322 0.1678172 +0.4805811 0.510322 0.1678172 +0.490876 0.510322 0.1678172 +0.5007803 0.510322 0.1678172 +0.510322 0.510322 0.1678172 +0.5195258 0.510322 0.1678172 +0.5284142 0.510322 0.1678172 +0.5370079 0.510322 0.1678172 +0.5453253 0.510322 0.1678172 +0.5533834 0.510322 0.1678172 +0.5611974 0.510322 0.1678172 +0.5687816 0.510322 0.1678172 +0.092819 0.5195258 0.1678172 +0.1056428 0.5195258 0.1678172 +0.1201537 0.5195258 0.1678172 +0.1409607 0.5195258 0.1678172 +0.1678172 0.5195258 0.1678172 +0.1950164 0.5195258 0.1678172 +0.2210581 0.5195258 0.1678172 +0.245636 0.5195258 0.1678172 +0.2686816 0.5195258 0.1678172 +0.2902431 0.5195258 0.1678172 +0.3104189 0.5195258 0.1678172 +0.3293248 0.5195258 0.1678172 +0.3470774 0.5195258 0.1678172 +0.3637862 0.5195258 0.1678172 +0.3795513 0.5195258 0.1678172 +0.3944623 0.5195258 0.1678172 +0.4085988 0.5195258 0.1678172 +0.4220313 0.5195258 0.1678172 +0.4348222 0.5195258 0.1678172 +0.4470264 0.5195258 0.1678172 +0.4586928 0.5195258 0.1678172 +0.4698649 0.5195258 0.1678172 +0.4805811 0.5195258 0.1678172 +0.490876 0.5195258 0.1678172 +0.5007803 0.5195258 0.1678172 +0.510322 0.5195258 0.1678172 +0.5195258 0.5195258 0.1678172 +0.5284142 0.5195258 0.1678172 +0.5370079 0.5195258 0.1678172 +0.5453253 0.5195258 0.1678172 +0.5533834 0.5195258 0.1678172 +0.5611974 0.5195258 0.1678172 +0.5687816 0.5195258 0.1678172 +0.092819 0.5284142 0.1678172 +0.1056428 0.5284142 0.1678172 +0.1201537 0.5284142 0.1678172 +0.1409607 0.5284142 0.1678172 +0.1678172 0.5284142 0.1678172 +0.1950164 0.5284142 0.1678172 +0.2210581 0.5284142 0.1678172 +0.245636 0.5284142 0.1678172 +0.2686816 0.5284142 0.1678172 +0.2902431 0.5284142 0.1678172 +0.3104189 0.5284142 0.1678172 +0.3293248 0.5284142 0.1678172 +0.3470774 0.5284142 0.1678172 +0.3637862 0.5284142 0.1678172 +0.3795513 0.5284142 0.1678172 +0.3944623 0.5284142 0.1678172 +0.4085988 0.5284142 0.1678172 +0.4220313 0.5284142 0.1678172 +0.4348222 0.5284142 0.1678172 +0.4470264 0.5284142 0.1678172 +0.4586928 0.5284142 0.1678172 +0.4698649 0.5284142 0.1678172 +0.4805811 0.5284142 0.1678172 +0.490876 0.5284142 0.1678172 +0.5007803 0.5284142 0.1678172 +0.510322 0.5284142 0.1678172 +0.5195258 0.5284142 0.1678172 +0.5284142 0.5284142 0.1678172 +0.5370079 0.5284142 0.1678172 +0.5453253 0.5284142 0.1678172 +0.5533834 0.5284142 0.1678172 +0.5611974 0.5284142 0.1678172 +0.5687816 0.5284142 0.1678172 +0.092819 0.5370079 0.1678172 +0.1056428 0.5370079 0.1678172 +0.1201537 0.5370079 0.1678172 +0.1409607 0.5370079 0.1678172 +0.1678172 0.5370079 0.1678172 +0.1950164 0.5370079 0.1678172 +0.2210581 0.5370079 0.1678172 +0.245636 0.5370079 0.1678172 +0.2686816 0.5370079 0.1678172 +0.2902431 0.5370079 0.1678172 +0.3104189 0.5370079 0.1678172 +0.3293248 0.5370079 0.1678172 +0.3470774 0.5370079 0.1678172 +0.3637862 0.5370079 0.1678172 +0.3795513 0.5370079 0.1678172 +0.3944623 0.5370079 0.1678172 +0.4085988 0.5370079 0.1678172 +0.4220313 0.5370079 0.1678172 +0.4348222 0.5370079 0.1678172 +0.4470264 0.5370079 0.1678172 +0.4586928 0.5370079 0.1678172 +0.4698649 0.5370079 0.1678172 +0.4805811 0.5370079 0.1678172 +0.490876 0.5370079 0.1678172 +0.5007803 0.5370079 0.1678172 +0.510322 0.5370079 0.1678172 +0.5195258 0.5370079 0.1678172 +0.5284142 0.5370079 0.1678172 +0.5370079 0.5370079 0.1678172 +0.5453253 0.5370079 0.1678172 +0.5533834 0.5370079 0.1678172 +0.5611974 0.5370079 0.1678172 +0.5687816 0.5370079 0.1678172 +0.092819 0.5453253 0.1678172 +0.1056428 0.5453253 0.1678172 +0.1201537 0.5453253 0.1678172 +0.1409607 0.5453253 0.1678172 +0.1678172 0.5453253 0.1678172 +0.1950164 0.5453253 0.1678172 +0.2210581 0.5453253 0.1678172 +0.245636 0.5453253 0.1678172 +0.2686816 0.5453253 0.1678172 +0.2902431 0.5453253 0.1678172 +0.3104189 0.5453253 0.1678172 +0.3293248 0.5453253 0.1678172 +0.3470774 0.5453253 0.1678172 +0.3637862 0.5453253 0.1678172 +0.3795513 0.5453253 0.1678172 +0.3944623 0.5453253 0.1678172 +0.4085988 0.5453253 0.1678172 +0.4220313 0.5453253 0.1678172 +0.4348222 0.5453253 0.1678172 +0.4470264 0.5453253 0.1678172 +0.4586928 0.5453253 0.1678172 +0.4698649 0.5453253 0.1678172 +0.4805811 0.5453253 0.1678172 +0.490876 0.5453253 0.1678172 +0.5007803 0.5453253 0.1678172 +0.510322 0.5453253 0.1678172 +0.5195258 0.5453253 0.1678172 +0.5284142 0.5453253 0.1678172 +0.5370079 0.5453253 0.1678172 +0.5453253 0.5453253 0.1678172 +0.5533834 0.5453253 0.1678172 +0.5611974 0.5453253 0.1678172 +0.5687816 0.5453253 0.1678172 +0.092819 0.5533834 0.1678172 +0.1056428 0.5533834 0.1678172 +0.1201537 0.5533834 0.1678172 +0.1409607 0.5533834 0.1678172 +0.1678172 0.5533834 0.1678172 +0.1950164 0.5533834 0.1678172 +0.2210581 0.5533834 0.1678172 +0.245636 0.5533834 0.1678172 +0.2686816 0.5533834 0.1678172 +0.2902431 0.5533834 0.1678172 +0.3104189 0.5533834 0.1678172 +0.3293248 0.5533834 0.1678172 +0.3470774 0.5533834 0.1678172 +0.3637862 0.5533834 0.1678172 +0.3795513 0.5533834 0.1678172 +0.3944623 0.5533834 0.1678172 +0.4085988 0.5533834 0.1678172 +0.4220313 0.5533834 0.1678172 +0.4348222 0.5533834 0.1678172 +0.4470264 0.5533834 0.1678172 +0.4586928 0.5533834 0.1678172 +0.4698649 0.5533834 0.1678172 +0.4805811 0.5533834 0.1678172 +0.490876 0.5533834 0.1678172 +0.5007803 0.5533834 0.1678172 +0.510322 0.5533834 0.1678172 +0.5195258 0.5533834 0.1678172 +0.5284142 0.5533834 0.1678172 +0.5370079 0.5533834 0.1678172 +0.5453253 0.5533834 0.1678172 +0.5533834 0.5533834 0.1678172 +0.5611974 0.5533834 0.1678172 +0.5687816 0.5533834 0.1678172 +0.092819 0.5611974 0.1678172 +0.1056428 0.5611974 0.1678172 +0.1201537 0.5611974 0.1678172 +0.1409607 0.5611974 0.1678172 +0.1678172 0.5611974 0.1678172 +0.1950164 0.5611974 0.1678172 +0.2210581 0.5611974 0.1678172 +0.245636 0.5611974 0.1678172 +0.2686816 0.5611974 0.1678172 +0.2902431 0.5611974 0.1678172 +0.3104189 0.5611974 0.1678172 +0.3293248 0.5611974 0.1678172 +0.3470774 0.5611974 0.1678172 +0.3637862 0.5611974 0.1678172 +0.3795513 0.5611974 0.1678172 +0.3944623 0.5611974 0.1678172 +0.4085988 0.5611974 0.1678172 +0.4220313 0.5611974 0.1678172 +0.4348222 0.5611974 0.1678172 +0.4470264 0.5611974 0.1678172 +0.4586928 0.5611974 0.1678172 +0.4698649 0.5611974 0.1678172 +0.4805811 0.5611974 0.1678172 +0.490876 0.5611974 0.1678172 +0.5007803 0.5611974 0.1678172 +0.510322 0.5611974 0.1678172 +0.5195258 0.5611974 0.1678172 +0.5284142 0.5611974 0.1678172 +0.5370079 0.5611974 0.1678172 +0.5453253 0.5611974 0.1678172 +0.5533834 0.5611974 0.1678172 +0.5611974 0.5611974 0.1678172 +0.5687816 0.5611974 0.1678172 +0.092819 0.5687816 0.1678172 +0.1056428 0.5687816 0.1678172 +0.1201537 0.5687816 0.1678172 +0.1409607 0.5687816 0.1678172 +0.1678172 0.5687816 0.1678172 +0.1950164 0.5687816 0.1678172 +0.2210581 0.5687816 0.1678172 +0.245636 0.5687816 0.1678172 +0.2686816 0.5687816 0.1678172 +0.2902431 0.5687816 0.1678172 +0.3104189 0.5687816 0.1678172 +0.3293248 0.5687816 0.1678172 +0.3470774 0.5687816 0.1678172 +0.3637862 0.5687816 0.1678172 +0.3795513 0.5687816 0.1678172 +0.3944623 0.5687816 0.1678172 +0.4085988 0.5687816 0.1678172 +0.4220313 0.5687816 0.1678172 +0.4348222 0.5687816 0.1678172 +0.4470264 0.5687816 0.1678172 +0.4586928 0.5687816 0.1678172 +0.4698649 0.5687816 0.1678172 +0.4805811 0.5687816 0.1678172 +0.490876 0.5687816 0.1678172 +0.5007803 0.5687816 0.1678172 +0.510322 0.5687816 0.1678172 +0.5195258 0.5687816 0.1678172 +0.5284142 0.5687816 0.1678172 +0.5370079 0.5687816 0.1678172 +0.5453253 0.5687816 0.1678172 +0.5533834 0.5687816 0.1678172 +0.5611974 0.5687816 0.1678172 +0.5687816 0.5687816 0.1678172 +0.092819 0.092819 0.1950164 +0.1056428 0.092819 0.1950164 +0.1201537 0.092819 0.1950164 +0.1409607 0.092819 0.1950164 +0.1678172 0.092819 0.1950164 +0.1950164 0.092819 0.1950164 +0.2210581 0.092819 0.1950164 +0.245636 0.092819 0.1950164 +0.2686816 0.092819 0.1950164 +0.2902431 0.092819 0.1950164 +0.3104189 0.092819 0.1950164 +0.3293248 0.092819 0.1950164 +0.3470774 0.092819 0.1950164 +0.3637862 0.092819 0.1950164 +0.3795513 0.092819 0.1950164 +0.3944623 0.092819 0.1950164 +0.4085988 0.092819 0.1950164 +0.4220313 0.092819 0.1950164 +0.4348222 0.092819 0.1950164 +0.4470264 0.092819 0.1950164 +0.4586928 0.092819 0.1950164 +0.4698649 0.092819 0.1950164 +0.4805811 0.092819 0.1950164 +0.490876 0.092819 0.1950164 +0.5007803 0.092819 0.1950164 +0.510322 0.092819 0.1950164 +0.5195258 0.092819 0.1950164 +0.5284142 0.092819 0.1950164 +0.5370079 0.092819 0.1950164 +0.5453253 0.092819 0.1950164 +0.5533834 0.092819 0.1950164 +0.5611974 0.092819 0.1950164 +0.5687816 0.092819 0.1950164 +0.092819 0.1056428 0.1950164 +0.1056428 0.1056428 0.1950164 +0.1201537 0.1056428 0.1950164 +0.1409607 0.1056428 0.1950164 +0.1678172 0.1056428 0.1950164 +0.1950164 0.1056428 0.1950164 +0.2210581 0.1056428 0.1950164 +0.245636 0.1056428 0.1950164 +0.2686816 0.1056428 0.1950164 +0.2902431 0.1056428 0.1950164 +0.3104189 0.1056428 0.1950164 +0.3293248 0.1056428 0.1950164 +0.3470774 0.1056428 0.1950164 +0.3637862 0.1056428 0.1950164 +0.3795513 0.1056428 0.1950164 +0.3944623 0.1056428 0.1950164 +0.4085988 0.1056428 0.1950164 +0.4220313 0.1056428 0.1950164 +0.4348222 0.1056428 0.1950164 +0.4470264 0.1056428 0.1950164 +0.4586928 0.1056428 0.1950164 +0.4698649 0.1056428 0.1950164 +0.4805811 0.1056428 0.1950164 +0.490876 0.1056428 0.1950164 +0.5007803 0.1056428 0.1950164 +0.510322 0.1056428 0.1950164 +0.5195258 0.1056428 0.1950164 +0.5284142 0.1056428 0.1950164 +0.5370079 0.1056428 0.1950164 +0.5453253 0.1056428 0.1950164 +0.5533834 0.1056428 0.1950164 +0.5611974 0.1056428 0.1950164 +0.5687816 0.1056428 0.1950164 +0.092819 0.1201537 0.1950164 +0.1056428 0.1201537 0.1950164 +0.1201537 0.1201537 0.1950164 +0.1409607 0.1201537 0.1950164 +0.1678172 0.1201537 0.1950164 +0.1950164 0.1201537 0.1950164 +0.2210581 0.1201537 0.1950164 +0.245636 0.1201537 0.1950164 +0.2686816 0.1201537 0.1950164 +0.2902431 0.1201537 0.1950164 +0.3104189 0.1201537 0.1950164 +0.3293248 0.1201537 0.1950164 +0.3470774 0.1201537 0.1950164 +0.3637862 0.1201537 0.1950164 +0.3795513 0.1201537 0.1950164 +0.3944623 0.1201537 0.1950164 +0.4085988 0.1201537 0.1950164 +0.4220313 0.1201537 0.1950164 +0.4348222 0.1201537 0.1950164 +0.4470264 0.1201537 0.1950164 +0.4586928 0.1201537 0.1950164 +0.4698649 0.1201537 0.1950164 +0.4805811 0.1201537 0.1950164 +0.490876 0.1201537 0.1950164 +0.5007803 0.1201537 0.1950164 +0.510322 0.1201537 0.1950164 +0.5195258 0.1201537 0.1950164 +0.5284142 0.1201537 0.1950164 +0.5370079 0.1201537 0.1950164 +0.5453253 0.1201537 0.1950164 +0.5533834 0.1201537 0.1950164 +0.5611974 0.1201537 0.1950164 +0.5687816 0.1201537 0.1950164 +0.092819 0.1409607 0.1950164 +0.1056428 0.1409607 0.1950164 +0.1201537 0.1409607 0.1950164 +0.1409607 0.1409607 0.1950164 +0.1678172 0.1409607 0.1950164 +0.1950164 0.1409607 0.1950164 +0.2210581 0.1409607 0.1950164 +0.245636 0.1409607 0.1950164 +0.2686816 0.1409607 0.1950164 +0.2902431 0.1409607 0.1950164 +0.3104189 0.1409607 0.1950164 +0.3293248 0.1409607 0.1950164 +0.3470774 0.1409607 0.1950164 +0.3637862 0.1409607 0.1950164 +0.3795513 0.1409607 0.1950164 +0.3944623 0.1409607 0.1950164 +0.4085988 0.1409607 0.1950164 +0.4220313 0.1409607 0.1950164 +0.4348222 0.1409607 0.1950164 +0.4470264 0.1409607 0.1950164 +0.4586928 0.1409607 0.1950164 +0.4698649 0.1409607 0.1950164 +0.4805811 0.1409607 0.1950164 +0.490876 0.1409607 0.1950164 +0.5007803 0.1409607 0.1950164 +0.510322 0.1409607 0.1950164 +0.5195258 0.1409607 0.1950164 +0.5284142 0.1409607 0.1950164 +0.5370079 0.1409607 0.1950164 +0.5453253 0.1409607 0.1950164 +0.5533834 0.1409607 0.1950164 +0.5611974 0.1409607 0.1950164 +0.5687816 0.1409607 0.1950164 +0.092819 0.1678172 0.1950164 +0.1056428 0.1678172 0.1950164 +0.1201537 0.1678172 0.1950164 +0.1409607 0.1678172 0.1950164 +0.1678172 0.1678172 0.1950164 +0.1950164 0.1678172 0.1950164 +0.2210581 0.1678172 0.1950164 +0.245636 0.1678172 0.1950164 +0.2686816 0.1678172 0.1950164 +0.2902431 0.1678172 0.1950164 +0.3104189 0.1678172 0.1950164 +0.3293248 0.1678172 0.1950164 +0.3470774 0.1678172 0.1950164 +0.3637862 0.1678172 0.1950164 +0.3795513 0.1678172 0.1950164 +0.3944623 0.1678172 0.1950164 +0.4085988 0.1678172 0.1950164 +0.4220313 0.1678172 0.1950164 +0.4348222 0.1678172 0.1950164 +0.4470264 0.1678172 0.1950164 +0.4586928 0.1678172 0.1950164 +0.4698649 0.1678172 0.1950164 +0.4805811 0.1678172 0.1950164 +0.490876 0.1678172 0.1950164 +0.5007803 0.1678172 0.1950164 +0.510322 0.1678172 0.1950164 +0.5195258 0.1678172 0.1950164 +0.5284142 0.1678172 0.1950164 +0.5370079 0.1678172 0.1950164 +0.5453253 0.1678172 0.1950164 +0.5533834 0.1678172 0.1950164 +0.5611974 0.1678172 0.1950164 +0.5687816 0.1678172 0.1950164 +0.092819 0.1950164 0.1950164 +0.1056428 0.1950164 0.1950164 +0.1201537 0.1950164 0.1950164 +0.1409607 0.1950164 0.1950164 +0.1678172 0.1950164 0.1950164 +0.1950164 0.1950164 0.1950164 +0.2210581 0.1950164 0.1950164 +0.245636 0.1950164 0.1950164 +0.2686816 0.1950164 0.1950164 +0.2902431 0.1950164 0.1950164 +0.3104189 0.1950164 0.1950164 +0.3293248 0.1950164 0.1950164 +0.3470774 0.1950164 0.1950164 +0.3637862 0.1950164 0.1950164 +0.3795513 0.1950164 0.1950164 +0.3944623 0.1950164 0.1950164 +0.4085988 0.1950164 0.1950164 +0.4220313 0.1950164 0.1950164 +0.4348222 0.1950164 0.1950164 +0.4470264 0.1950164 0.1950164 +0.4586928 0.1950164 0.1950164 +0.4698649 0.1950164 0.1950164 +0.4805811 0.1950164 0.1950164 +0.490876 0.1950164 0.1950164 +0.5007803 0.1950164 0.1950164 +0.510322 0.1950164 0.1950164 +0.5195258 0.1950164 0.1950164 +0.5284142 0.1950164 0.1950164 +0.5370079 0.1950164 0.1950164 +0.5453253 0.1950164 0.1950164 +0.5533834 0.1950164 0.1950164 +0.5611974 0.1950164 0.1950164 +0.5687816 0.1950164 0.1950164 +0.092819 0.2210581 0.1950164 +0.1056428 0.2210581 0.1950164 +0.1201537 0.2210581 0.1950164 +0.1409607 0.2210581 0.1950164 +0.1678172 0.2210581 0.1950164 +0.1950164 0.2210581 0.1950164 +0.2210581 0.2210581 0.1950164 +0.245636 0.2210581 0.1950164 +0.2686816 0.2210581 0.1950164 +0.2902431 0.2210581 0.1950164 +0.3104189 0.2210581 0.1950164 +0.3293248 0.2210581 0.1950164 +0.3470774 0.2210581 0.1950164 +0.3637862 0.2210581 0.1950164 +0.3795513 0.2210581 0.1950164 +0.3944623 0.2210581 0.1950164 +0.4085988 0.2210581 0.1950164 +0.4220313 0.2210581 0.1950164 +0.4348222 0.2210581 0.1950164 +0.4470264 0.2210581 0.1950164 +0.4586928 0.2210581 0.1950164 +0.4698649 0.2210581 0.1950164 +0.4805811 0.2210581 0.1950164 +0.490876 0.2210581 0.1950164 +0.5007803 0.2210581 0.1950164 +0.510322 0.2210581 0.1950164 +0.5195258 0.2210581 0.1950164 +0.5284142 0.2210581 0.1950164 +0.5370079 0.2210581 0.1950164 +0.5453253 0.2210581 0.1950164 +0.5533834 0.2210581 0.1950164 +0.5611974 0.2210581 0.1950164 +0.5687816 0.2210581 0.1950164 +0.092819 0.245636 0.1950164 +0.1056428 0.245636 0.1950164 +0.1201537 0.245636 0.1950164 +0.1409607 0.245636 0.1950164 +0.1678172 0.245636 0.1950164 +0.1950164 0.245636 0.1950164 +0.2210581 0.245636 0.1950164 +0.245636 0.245636 0.1950164 +0.2686816 0.245636 0.1950164 +0.2902431 0.245636 0.1950164 +0.3104189 0.245636 0.1950164 +0.3293248 0.245636 0.1950164 +0.3470774 0.245636 0.1950164 +0.3637862 0.245636 0.1950164 +0.3795513 0.245636 0.1950164 +0.3944623 0.245636 0.1950164 +0.4085988 0.245636 0.1950164 +0.4220313 0.245636 0.1950164 +0.4348222 0.245636 0.1950164 +0.4470264 0.245636 0.1950164 +0.4586928 0.245636 0.1950164 +0.4698649 0.245636 0.1950164 +0.4805811 0.245636 0.1950164 +0.490876 0.245636 0.1950164 +0.5007803 0.245636 0.1950164 +0.510322 0.245636 0.1950164 +0.5195258 0.245636 0.1950164 +0.5284142 0.245636 0.1950164 +0.5370079 0.245636 0.1950164 +0.5453253 0.245636 0.1950164 +0.5533834 0.245636 0.1950164 +0.5611974 0.245636 0.1950164 +0.5687816 0.245636 0.1950164 +0.092819 0.2686816 0.1950164 +0.1056428 0.2686816 0.1950164 +0.1201537 0.2686816 0.1950164 +0.1409607 0.2686816 0.1950164 +0.1678172 0.2686816 0.1950164 +0.1950164 0.2686816 0.1950164 +0.2210581 0.2686816 0.1950164 +0.245636 0.2686816 0.1950164 +0.2686816 0.2686816 0.1950164 +0.2902431 0.2686816 0.1950164 +0.3104189 0.2686816 0.1950164 +0.3293248 0.2686816 0.1950164 +0.3470774 0.2686816 0.1950164 +0.3637862 0.2686816 0.1950164 +0.3795513 0.2686816 0.1950164 +0.3944623 0.2686816 0.1950164 +0.4085988 0.2686816 0.1950164 +0.4220313 0.2686816 0.1950164 +0.4348222 0.2686816 0.1950164 +0.4470264 0.2686816 0.1950164 +0.4586928 0.2686816 0.1950164 +0.4698649 0.2686816 0.1950164 +0.4805811 0.2686816 0.1950164 +0.490876 0.2686816 0.1950164 +0.5007803 0.2686816 0.1950164 +0.510322 0.2686816 0.1950164 +0.5195258 0.2686816 0.1950164 +0.5284142 0.2686816 0.1950164 +0.5370079 0.2686816 0.1950164 +0.5453253 0.2686816 0.1950164 +0.5533834 0.2686816 0.1950164 +0.5611974 0.2686816 0.1950164 +0.5687816 0.2686816 0.1950164 +0.092819 0.2902431 0.1950164 +0.1056428 0.2902431 0.1950164 +0.1201537 0.2902431 0.1950164 +0.1409607 0.2902431 0.1950164 +0.1678172 0.2902431 0.1950164 +0.1950164 0.2902431 0.1950164 +0.2210581 0.2902431 0.1950164 +0.245636 0.2902431 0.1950164 +0.2686816 0.2902431 0.1950164 +0.2902431 0.2902431 0.1950164 +0.3104189 0.2902431 0.1950164 +0.3293248 0.2902431 0.1950164 +0.3470774 0.2902431 0.1950164 +0.3637862 0.2902431 0.1950164 +0.3795513 0.2902431 0.1950164 +0.3944623 0.2902431 0.1950164 +0.4085988 0.2902431 0.1950164 +0.4220313 0.2902431 0.1950164 +0.4348222 0.2902431 0.1950164 +0.4470264 0.2902431 0.1950164 +0.4586928 0.2902431 0.1950164 +0.4698649 0.2902431 0.1950164 +0.4805811 0.2902431 0.1950164 +0.490876 0.2902431 0.1950164 +0.5007803 0.2902431 0.1950164 +0.510322 0.2902431 0.1950164 +0.5195258 0.2902431 0.1950164 +0.5284142 0.2902431 0.1950164 +0.5370079 0.2902431 0.1950164 +0.5453253 0.2902431 0.1950164 +0.5533834 0.2902431 0.1950164 +0.5611974 0.2902431 0.1950164 +0.5687816 0.2902431 0.1950164 +0.092819 0.3104189 0.1950164 +0.1056428 0.3104189 0.1950164 +0.1201537 0.3104189 0.1950164 +0.1409607 0.3104189 0.1950164 +0.1678172 0.3104189 0.1950164 +0.1950164 0.3104189 0.1950164 +0.2210581 0.3104189 0.1950164 +0.245636 0.3104189 0.1950164 +0.2686816 0.3104189 0.1950164 +0.2902431 0.3104189 0.1950164 +0.3104189 0.3104189 0.1950164 +0.3293248 0.3104189 0.1950164 +0.3470774 0.3104189 0.1950164 +0.3637862 0.3104189 0.1950164 +0.3795513 0.3104189 0.1950164 +0.3944623 0.3104189 0.1950164 +0.4085988 0.3104189 0.1950164 +0.4220313 0.3104189 0.1950164 +0.4348222 0.3104189 0.1950164 +0.4470264 0.3104189 0.1950164 +0.4586928 0.3104189 0.1950164 +0.4698649 0.3104189 0.1950164 +0.4805811 0.3104189 0.1950164 +0.490876 0.3104189 0.1950164 +0.5007803 0.3104189 0.1950164 +0.510322 0.3104189 0.1950164 +0.5195258 0.3104189 0.1950164 +0.5284142 0.3104189 0.1950164 +0.5370079 0.3104189 0.1950164 +0.5453253 0.3104189 0.1950164 +0.5533834 0.3104189 0.1950164 +0.5611974 0.3104189 0.1950164 +0.5687816 0.3104189 0.1950164 +0.092819 0.3293248 0.1950164 +0.1056428 0.3293248 0.1950164 +0.1201537 0.3293248 0.1950164 +0.1409607 0.3293248 0.1950164 +0.1678172 0.3293248 0.1950164 +0.1950164 0.3293248 0.1950164 +0.2210581 0.3293248 0.1950164 +0.245636 0.3293248 0.1950164 +0.2686816 0.3293248 0.1950164 +0.2902431 0.3293248 0.1950164 +0.3104189 0.3293248 0.1950164 +0.3293248 0.3293248 0.1950164 +0.3470774 0.3293248 0.1950164 +0.3637862 0.3293248 0.1950164 +0.3795513 0.3293248 0.1950164 +0.3944623 0.3293248 0.1950164 +0.4085988 0.3293248 0.1950164 +0.4220313 0.3293248 0.1950164 +0.4348222 0.3293248 0.1950164 +0.4470264 0.3293248 0.1950164 +0.4586928 0.3293248 0.1950164 +0.4698649 0.3293248 0.1950164 +0.4805811 0.3293248 0.1950164 +0.490876 0.3293248 0.1950164 +0.5007803 0.3293248 0.1950164 +0.510322 0.3293248 0.1950164 +0.5195258 0.3293248 0.1950164 +0.5284142 0.3293248 0.1950164 +0.5370079 0.3293248 0.1950164 +0.5453253 0.3293248 0.1950164 +0.5533834 0.3293248 0.1950164 +0.5611974 0.3293248 0.1950164 +0.5687816 0.3293248 0.1950164 +0.092819 0.3470774 0.1950164 +0.1056428 0.3470774 0.1950164 +0.1201537 0.3470774 0.1950164 +0.1409607 0.3470774 0.1950164 +0.1678172 0.3470774 0.1950164 +0.1950164 0.3470774 0.1950164 +0.2210581 0.3470774 0.1950164 +0.245636 0.3470774 0.1950164 +0.2686816 0.3470774 0.1950164 +0.2902431 0.3470774 0.1950164 +0.3104189 0.3470774 0.1950164 +0.3293248 0.3470774 0.1950164 +0.3470774 0.3470774 0.1950164 +0.3637862 0.3470774 0.1950164 +0.3795513 0.3470774 0.1950164 +0.3944623 0.3470774 0.1950164 +0.4085988 0.3470774 0.1950164 +0.4220313 0.3470774 0.1950164 +0.4348222 0.3470774 0.1950164 +0.4470264 0.3470774 0.1950164 +0.4586928 0.3470774 0.1950164 +0.4698649 0.3470774 0.1950164 +0.4805811 0.3470774 0.1950164 +0.490876 0.3470774 0.1950164 +0.5007803 0.3470774 0.1950164 +0.510322 0.3470774 0.1950164 +0.5195258 0.3470774 0.1950164 +0.5284142 0.3470774 0.1950164 +0.5370079 0.3470774 0.1950164 +0.5453253 0.3470774 0.1950164 +0.5533834 0.3470774 0.1950164 +0.5611974 0.3470774 0.1950164 +0.5687816 0.3470774 0.1950164 +0.092819 0.3637862 0.1950164 +0.1056428 0.3637862 0.1950164 +0.1201537 0.3637862 0.1950164 +0.1409607 0.3637862 0.1950164 +0.1678172 0.3637862 0.1950164 +0.1950164 0.3637862 0.1950164 +0.2210581 0.3637862 0.1950164 +0.245636 0.3637862 0.1950164 +0.2686816 0.3637862 0.1950164 +0.2902431 0.3637862 0.1950164 +0.3104189 0.3637862 0.1950164 +0.3293248 0.3637862 0.1950164 +0.3470774 0.3637862 0.1950164 +0.3637862 0.3637862 0.1950164 +0.3795513 0.3637862 0.1950164 +0.3944623 0.3637862 0.1950164 +0.4085988 0.3637862 0.1950164 +0.4220313 0.3637862 0.1950164 +0.4348222 0.3637862 0.1950164 +0.4470264 0.3637862 0.1950164 +0.4586928 0.3637862 0.1950164 +0.4698649 0.3637862 0.1950164 +0.4805811 0.3637862 0.1950164 +0.490876 0.3637862 0.1950164 +0.5007803 0.3637862 0.1950164 +0.510322 0.3637862 0.1950164 +0.5195258 0.3637862 0.1950164 +0.5284142 0.3637862 0.1950164 +0.5370079 0.3637862 0.1950164 +0.5453253 0.3637862 0.1950164 +0.5533834 0.3637862 0.1950164 +0.5611974 0.3637862 0.1950164 +0.5687816 0.3637862 0.1950164 +0.092819 0.3795513 0.1950164 +0.1056428 0.3795513 0.1950164 +0.1201537 0.3795513 0.1950164 +0.1409607 0.3795513 0.1950164 +0.1678172 0.3795513 0.1950164 +0.1950164 0.3795513 0.1950164 +0.2210581 0.3795513 0.1950164 +0.245636 0.3795513 0.1950164 +0.2686816 0.3795513 0.1950164 +0.2902431 0.3795513 0.1950164 +0.3104189 0.3795513 0.1950164 +0.3293248 0.3795513 0.1950164 +0.3470774 0.3795513 0.1950164 +0.3637862 0.3795513 0.1950164 +0.3795513 0.3795513 0.1950164 +0.3944623 0.3795513 0.1950164 +0.4085988 0.3795513 0.1950164 +0.4220313 0.3795513 0.1950164 +0.4348222 0.3795513 0.1950164 +0.4470264 0.3795513 0.1950164 +0.4586928 0.3795513 0.1950164 +0.4698649 0.3795513 0.1950164 +0.4805811 0.3795513 0.1950164 +0.490876 0.3795513 0.1950164 +0.5007803 0.3795513 0.1950164 +0.510322 0.3795513 0.1950164 +0.5195258 0.3795513 0.1950164 +0.5284142 0.3795513 0.1950164 +0.5370079 0.3795513 0.1950164 +0.5453253 0.3795513 0.1950164 +0.5533834 0.3795513 0.1950164 +0.5611974 0.3795513 0.1950164 +0.5687816 0.3795513 0.1950164 +0.092819 0.3944623 0.1950164 +0.1056428 0.3944623 0.1950164 +0.1201537 0.3944623 0.1950164 +0.1409607 0.3944623 0.1950164 +0.1678172 0.3944623 0.1950164 +0.1950164 0.3944623 0.1950164 +0.2210581 0.3944623 0.1950164 +0.245636 0.3944623 0.1950164 +0.2686816 0.3944623 0.1950164 +0.2902431 0.3944623 0.1950164 +0.3104189 0.3944623 0.1950164 +0.3293248 0.3944623 0.1950164 +0.3470774 0.3944623 0.1950164 +0.3637862 0.3944623 0.1950164 +0.3795513 0.3944623 0.1950164 +0.3944623 0.3944623 0.1950164 +0.4085988 0.3944623 0.1950164 +0.4220313 0.3944623 0.1950164 +0.4348222 0.3944623 0.1950164 +0.4470264 0.3944623 0.1950164 +0.4586928 0.3944623 0.1950164 +0.4698649 0.3944623 0.1950164 +0.4805811 0.3944623 0.1950164 +0.490876 0.3944623 0.1950164 +0.5007803 0.3944623 0.1950164 +0.510322 0.3944623 0.1950164 +0.5195258 0.3944623 0.1950164 +0.5284142 0.3944623 0.1950164 +0.5370079 0.3944623 0.1950164 +0.5453253 0.3944623 0.1950164 +0.5533834 0.3944623 0.1950164 +0.5611974 0.3944623 0.1950164 +0.5687816 0.3944623 0.1950164 +0.092819 0.4085988 0.1950164 +0.1056428 0.4085988 0.1950164 +0.1201537 0.4085988 0.1950164 +0.1409607 0.4085988 0.1950164 +0.1678172 0.4085988 0.1950164 +0.1950164 0.4085988 0.1950164 +0.2210581 0.4085988 0.1950164 +0.245636 0.4085988 0.1950164 +0.2686816 0.4085988 0.1950164 +0.2902431 0.4085988 0.1950164 +0.3104189 0.4085988 0.1950164 +0.3293248 0.4085988 0.1950164 +0.3470774 0.4085988 0.1950164 +0.3637862 0.4085988 0.1950164 +0.3795513 0.4085988 0.1950164 +0.3944623 0.4085988 0.1950164 +0.4085988 0.4085988 0.1950164 +0.4220313 0.4085988 0.1950164 +0.4348222 0.4085988 0.1950164 +0.4470264 0.4085988 0.1950164 +0.4586928 0.4085988 0.1950164 +0.4698649 0.4085988 0.1950164 +0.4805811 0.4085988 0.1950164 +0.490876 0.4085988 0.1950164 +0.5007803 0.4085988 0.1950164 +0.510322 0.4085988 0.1950164 +0.5195258 0.4085988 0.1950164 +0.5284142 0.4085988 0.1950164 +0.5370079 0.4085988 0.1950164 +0.5453253 0.4085988 0.1950164 +0.5533834 0.4085988 0.1950164 +0.5611974 0.4085988 0.1950164 +0.5687816 0.4085988 0.1950164 +0.092819 0.4220313 0.1950164 +0.1056428 0.4220313 0.1950164 +0.1201537 0.4220313 0.1950164 +0.1409607 0.4220313 0.1950164 +0.1678172 0.4220313 0.1950164 +0.1950164 0.4220313 0.1950164 +0.2210581 0.4220313 0.1950164 +0.245636 0.4220313 0.1950164 +0.2686816 0.4220313 0.1950164 +0.2902431 0.4220313 0.1950164 +0.3104189 0.4220313 0.1950164 +0.3293248 0.4220313 0.1950164 +0.3470774 0.4220313 0.1950164 +0.3637862 0.4220313 0.1950164 +0.3795513 0.4220313 0.1950164 +0.3944623 0.4220313 0.1950164 +0.4085988 0.4220313 0.1950164 +0.4220313 0.4220313 0.1950164 +0.4348222 0.4220313 0.1950164 +0.4470264 0.4220313 0.1950164 +0.4586928 0.4220313 0.1950164 +0.4698649 0.4220313 0.1950164 +0.4805811 0.4220313 0.1950164 +0.490876 0.4220313 0.1950164 +0.5007803 0.4220313 0.1950164 +0.510322 0.4220313 0.1950164 +0.5195258 0.4220313 0.1950164 +0.5284142 0.4220313 0.1950164 +0.5370079 0.4220313 0.1950164 +0.5453253 0.4220313 0.1950164 +0.5533834 0.4220313 0.1950164 +0.5611974 0.4220313 0.1950164 +0.5687816 0.4220313 0.1950164 +0.092819 0.4348222 0.1950164 +0.1056428 0.4348222 0.1950164 +0.1201537 0.4348222 0.1950164 +0.1409607 0.4348222 0.1950164 +0.1678172 0.4348222 0.1950164 +0.1950164 0.4348222 0.1950164 +0.2210581 0.4348222 0.1950164 +0.245636 0.4348222 0.1950164 +0.2686816 0.4348222 0.1950164 +0.2902431 0.4348222 0.1950164 +0.3104189 0.4348222 0.1950164 +0.3293248 0.4348222 0.1950164 +0.3470774 0.4348222 0.1950164 +0.3637862 0.4348222 0.1950164 +0.3795513 0.4348222 0.1950164 +0.3944623 0.4348222 0.1950164 +0.4085988 0.4348222 0.1950164 +0.4220313 0.4348222 0.1950164 +0.4348222 0.4348222 0.1950164 +0.4470264 0.4348222 0.1950164 +0.4586928 0.4348222 0.1950164 +0.4698649 0.4348222 0.1950164 +0.4805811 0.4348222 0.1950164 +0.490876 0.4348222 0.1950164 +0.5007803 0.4348222 0.1950164 +0.510322 0.4348222 0.1950164 +0.5195258 0.4348222 0.1950164 +0.5284142 0.4348222 0.1950164 +0.5370079 0.4348222 0.1950164 +0.5453253 0.4348222 0.1950164 +0.5533834 0.4348222 0.1950164 +0.5611974 0.4348222 0.1950164 +0.5687816 0.4348222 0.1950164 +0.092819 0.4470264 0.1950164 +0.1056428 0.4470264 0.1950164 +0.1201537 0.4470264 0.1950164 +0.1409607 0.4470264 0.1950164 +0.1678172 0.4470264 0.1950164 +0.1950164 0.4470264 0.1950164 +0.2210581 0.4470264 0.1950164 +0.245636 0.4470264 0.1950164 +0.2686816 0.4470264 0.1950164 +0.2902431 0.4470264 0.1950164 +0.3104189 0.4470264 0.1950164 +0.3293248 0.4470264 0.1950164 +0.3470774 0.4470264 0.1950164 +0.3637862 0.4470264 0.1950164 +0.3795513 0.4470264 0.1950164 +0.3944623 0.4470264 0.1950164 +0.4085988 0.4470264 0.1950164 +0.4220313 0.4470264 0.1950164 +0.4348222 0.4470264 0.1950164 +0.4470264 0.4470264 0.1950164 +0.4586928 0.4470264 0.1950164 +0.4698649 0.4470264 0.1950164 +0.4805811 0.4470264 0.1950164 +0.490876 0.4470264 0.1950164 +0.5007803 0.4470264 0.1950164 +0.510322 0.4470264 0.1950164 +0.5195258 0.4470264 0.1950164 +0.5284142 0.4470264 0.1950164 +0.5370079 0.4470264 0.1950164 +0.5453253 0.4470264 0.1950164 +0.5533834 0.4470264 0.1950164 +0.5611974 0.4470264 0.1950164 +0.5687816 0.4470264 0.1950164 +0.092819 0.4586928 0.1950164 +0.1056428 0.4586928 0.1950164 +0.1201537 0.4586928 0.1950164 +0.1409607 0.4586928 0.1950164 +0.1678172 0.4586928 0.1950164 +0.1950164 0.4586928 0.1950164 +0.2210581 0.4586928 0.1950164 +0.245636 0.4586928 0.1950164 +0.2686816 0.4586928 0.1950164 +0.2902431 0.4586928 0.1950164 +0.3104189 0.4586928 0.1950164 +0.3293248 0.4586928 0.1950164 +0.3470774 0.4586928 0.1950164 +0.3637862 0.4586928 0.1950164 +0.3795513 0.4586928 0.1950164 +0.3944623 0.4586928 0.1950164 +0.4085988 0.4586928 0.1950164 +0.4220313 0.4586928 0.1950164 +0.4348222 0.4586928 0.1950164 +0.4470264 0.4586928 0.1950164 +0.4586928 0.4586928 0.1950164 +0.4698649 0.4586928 0.1950164 +0.4805811 0.4586928 0.1950164 +0.490876 0.4586928 0.1950164 +0.5007803 0.4586928 0.1950164 +0.510322 0.4586928 0.1950164 +0.5195258 0.4586928 0.1950164 +0.5284142 0.4586928 0.1950164 +0.5370079 0.4586928 0.1950164 +0.5453253 0.4586928 0.1950164 +0.5533834 0.4586928 0.1950164 +0.5611974 0.4586928 0.1950164 +0.5687816 0.4586928 0.1950164 +0.092819 0.4698649 0.1950164 +0.1056428 0.4698649 0.1950164 +0.1201537 0.4698649 0.1950164 +0.1409607 0.4698649 0.1950164 +0.1678172 0.4698649 0.1950164 +0.1950164 0.4698649 0.1950164 +0.2210581 0.4698649 0.1950164 +0.245636 0.4698649 0.1950164 +0.2686816 0.4698649 0.1950164 +0.2902431 0.4698649 0.1950164 +0.3104189 0.4698649 0.1950164 +0.3293248 0.4698649 0.1950164 +0.3470774 0.4698649 0.1950164 +0.3637862 0.4698649 0.1950164 +0.3795513 0.4698649 0.1950164 +0.3944623 0.4698649 0.1950164 +0.4085988 0.4698649 0.1950164 +0.4220313 0.4698649 0.1950164 +0.4348222 0.4698649 0.1950164 +0.4470264 0.4698649 0.1950164 +0.4586928 0.4698649 0.1950164 +0.4698649 0.4698649 0.1950164 +0.4805811 0.4698649 0.1950164 +0.490876 0.4698649 0.1950164 +0.5007803 0.4698649 0.1950164 +0.510322 0.4698649 0.1950164 +0.5195258 0.4698649 0.1950164 +0.5284142 0.4698649 0.1950164 +0.5370079 0.4698649 0.1950164 +0.5453253 0.4698649 0.1950164 +0.5533834 0.4698649 0.1950164 +0.5611974 0.4698649 0.1950164 +0.5687816 0.4698649 0.1950164 +0.092819 0.4805811 0.1950164 +0.1056428 0.4805811 0.1950164 +0.1201537 0.4805811 0.1950164 +0.1409607 0.4805811 0.1950164 +0.1678172 0.4805811 0.1950164 +0.1950164 0.4805811 0.1950164 +0.2210581 0.4805811 0.1950164 +0.245636 0.4805811 0.1950164 +0.2686816 0.4805811 0.1950164 +0.2902431 0.4805811 0.1950164 +0.3104189 0.4805811 0.1950164 +0.3293248 0.4805811 0.1950164 +0.3470774 0.4805811 0.1950164 +0.3637862 0.4805811 0.1950164 +0.3795513 0.4805811 0.1950164 +0.3944623 0.4805811 0.1950164 +0.4085988 0.4805811 0.1950164 +0.4220313 0.4805811 0.1950164 +0.4348222 0.4805811 0.1950164 +0.4470264 0.4805811 0.1950164 +0.4586928 0.4805811 0.1950164 +0.4698649 0.4805811 0.1950164 +0.4805811 0.4805811 0.1950164 +0.490876 0.4805811 0.1950164 +0.5007803 0.4805811 0.1950164 +0.510322 0.4805811 0.1950164 +0.5195258 0.4805811 0.1950164 +0.5284142 0.4805811 0.1950164 +0.5370079 0.4805811 0.1950164 +0.5453253 0.4805811 0.1950164 +0.5533834 0.4805811 0.1950164 +0.5611974 0.4805811 0.1950164 +0.5687816 0.4805811 0.1950164 +0.092819 0.490876 0.1950164 +0.1056428 0.490876 0.1950164 +0.1201537 0.490876 0.1950164 +0.1409607 0.490876 0.1950164 +0.1678172 0.490876 0.1950164 +0.1950164 0.490876 0.1950164 +0.2210581 0.490876 0.1950164 +0.245636 0.490876 0.1950164 +0.2686816 0.490876 0.1950164 +0.2902431 0.490876 0.1950164 +0.3104189 0.490876 0.1950164 +0.3293248 0.490876 0.1950164 +0.3470774 0.490876 0.1950164 +0.3637862 0.490876 0.1950164 +0.3795513 0.490876 0.1950164 +0.3944623 0.490876 0.1950164 +0.4085988 0.490876 0.1950164 +0.4220313 0.490876 0.1950164 +0.4348222 0.490876 0.1950164 +0.4470264 0.490876 0.1950164 +0.4586928 0.490876 0.1950164 +0.4698649 0.490876 0.1950164 +0.4805811 0.490876 0.1950164 +0.490876 0.490876 0.1950164 +0.5007803 0.490876 0.1950164 +0.510322 0.490876 0.1950164 +0.5195258 0.490876 0.1950164 +0.5284142 0.490876 0.1950164 +0.5370079 0.490876 0.1950164 +0.5453253 0.490876 0.1950164 +0.5533834 0.490876 0.1950164 +0.5611974 0.490876 0.1950164 +0.5687816 0.490876 0.1950164 +0.092819 0.5007803 0.1950164 +0.1056428 0.5007803 0.1950164 +0.1201537 0.5007803 0.1950164 +0.1409607 0.5007803 0.1950164 +0.1678172 0.5007803 0.1950164 +0.1950164 0.5007803 0.1950164 +0.2210581 0.5007803 0.1950164 +0.245636 0.5007803 0.1950164 +0.2686816 0.5007803 0.1950164 +0.2902431 0.5007803 0.1950164 +0.3104189 0.5007803 0.1950164 +0.3293248 0.5007803 0.1950164 +0.3470774 0.5007803 0.1950164 +0.3637862 0.5007803 0.1950164 +0.3795513 0.5007803 0.1950164 +0.3944623 0.5007803 0.1950164 +0.4085988 0.5007803 0.1950164 +0.4220313 0.5007803 0.1950164 +0.4348222 0.5007803 0.1950164 +0.4470264 0.5007803 0.1950164 +0.4586928 0.5007803 0.1950164 +0.4698649 0.5007803 0.1950164 +0.4805811 0.5007803 0.1950164 +0.490876 0.5007803 0.1950164 +0.5007803 0.5007803 0.1950164 +0.510322 0.5007803 0.1950164 +0.5195258 0.5007803 0.1950164 +0.5284142 0.5007803 0.1950164 +0.5370079 0.5007803 0.1950164 +0.5453253 0.5007803 0.1950164 +0.5533834 0.5007803 0.1950164 +0.5611974 0.5007803 0.1950164 +0.5687816 0.5007803 0.1950164 +0.092819 0.510322 0.1950164 +0.1056428 0.510322 0.1950164 +0.1201537 0.510322 0.1950164 +0.1409607 0.510322 0.1950164 +0.1678172 0.510322 0.1950164 +0.1950164 0.510322 0.1950164 +0.2210581 0.510322 0.1950164 +0.245636 0.510322 0.1950164 +0.2686816 0.510322 0.1950164 +0.2902431 0.510322 0.1950164 +0.3104189 0.510322 0.1950164 +0.3293248 0.510322 0.1950164 +0.3470774 0.510322 0.1950164 +0.3637862 0.510322 0.1950164 +0.3795513 0.510322 0.1950164 +0.3944623 0.510322 0.1950164 +0.4085988 0.510322 0.1950164 +0.4220313 0.510322 0.1950164 +0.4348222 0.510322 0.1950164 +0.4470264 0.510322 0.1950164 +0.4586928 0.510322 0.1950164 +0.4698649 0.510322 0.1950164 +0.4805811 0.510322 0.1950164 +0.490876 0.510322 0.1950164 +0.5007803 0.510322 0.1950164 +0.510322 0.510322 0.1950164 +0.5195258 0.510322 0.1950164 +0.5284142 0.510322 0.1950164 +0.5370079 0.510322 0.1950164 +0.5453253 0.510322 0.1950164 +0.5533834 0.510322 0.1950164 +0.5611974 0.510322 0.1950164 +0.5687816 0.510322 0.1950164 +0.092819 0.5195258 0.1950164 +0.1056428 0.5195258 0.1950164 +0.1201537 0.5195258 0.1950164 +0.1409607 0.5195258 0.1950164 +0.1678172 0.5195258 0.1950164 +0.1950164 0.5195258 0.1950164 +0.2210581 0.5195258 0.1950164 +0.245636 0.5195258 0.1950164 +0.2686816 0.5195258 0.1950164 +0.2902431 0.5195258 0.1950164 +0.3104189 0.5195258 0.1950164 +0.3293248 0.5195258 0.1950164 +0.3470774 0.5195258 0.1950164 +0.3637862 0.5195258 0.1950164 +0.3795513 0.5195258 0.1950164 +0.3944623 0.5195258 0.1950164 +0.4085988 0.5195258 0.1950164 +0.4220313 0.5195258 0.1950164 +0.4348222 0.5195258 0.1950164 +0.4470264 0.5195258 0.1950164 +0.4586928 0.5195258 0.1950164 +0.4698649 0.5195258 0.1950164 +0.4805811 0.5195258 0.1950164 +0.490876 0.5195258 0.1950164 +0.5007803 0.5195258 0.1950164 +0.510322 0.5195258 0.1950164 +0.5195258 0.5195258 0.1950164 +0.5284142 0.5195258 0.1950164 +0.5370079 0.5195258 0.1950164 +0.5453253 0.5195258 0.1950164 +0.5533834 0.5195258 0.1950164 +0.5611974 0.5195258 0.1950164 +0.5687816 0.5195258 0.1950164 +0.092819 0.5284142 0.1950164 +0.1056428 0.5284142 0.1950164 +0.1201537 0.5284142 0.1950164 +0.1409607 0.5284142 0.1950164 +0.1678172 0.5284142 0.1950164 +0.1950164 0.5284142 0.1950164 +0.2210581 0.5284142 0.1950164 +0.245636 0.5284142 0.1950164 +0.2686816 0.5284142 0.1950164 +0.2902431 0.5284142 0.1950164 +0.3104189 0.5284142 0.1950164 +0.3293248 0.5284142 0.1950164 +0.3470774 0.5284142 0.1950164 +0.3637862 0.5284142 0.1950164 +0.3795513 0.5284142 0.1950164 +0.3944623 0.5284142 0.1950164 +0.4085988 0.5284142 0.1950164 +0.4220313 0.5284142 0.1950164 +0.4348222 0.5284142 0.1950164 +0.4470264 0.5284142 0.1950164 +0.4586928 0.5284142 0.1950164 +0.4698649 0.5284142 0.1950164 +0.4805811 0.5284142 0.1950164 +0.490876 0.5284142 0.1950164 +0.5007803 0.5284142 0.1950164 +0.510322 0.5284142 0.1950164 +0.5195258 0.5284142 0.1950164 +0.5284142 0.5284142 0.1950164 +0.5370079 0.5284142 0.1950164 +0.5453253 0.5284142 0.1950164 +0.5533834 0.5284142 0.1950164 +0.5611974 0.5284142 0.1950164 +0.5687816 0.5284142 0.1950164 +0.092819 0.5370079 0.1950164 +0.1056428 0.5370079 0.1950164 +0.1201537 0.5370079 0.1950164 +0.1409607 0.5370079 0.1950164 +0.1678172 0.5370079 0.1950164 +0.1950164 0.5370079 0.1950164 +0.2210581 0.5370079 0.1950164 +0.245636 0.5370079 0.1950164 +0.2686816 0.5370079 0.1950164 +0.2902431 0.5370079 0.1950164 +0.3104189 0.5370079 0.1950164 +0.3293248 0.5370079 0.1950164 +0.3470774 0.5370079 0.1950164 +0.3637862 0.5370079 0.1950164 +0.3795513 0.5370079 0.1950164 +0.3944623 0.5370079 0.1950164 +0.4085988 0.5370079 0.1950164 +0.4220313 0.5370079 0.1950164 +0.4348222 0.5370079 0.1950164 +0.4470264 0.5370079 0.1950164 +0.4586928 0.5370079 0.1950164 +0.4698649 0.5370079 0.1950164 +0.4805811 0.5370079 0.1950164 +0.490876 0.5370079 0.1950164 +0.5007803 0.5370079 0.1950164 +0.510322 0.5370079 0.1950164 +0.5195258 0.5370079 0.1950164 +0.5284142 0.5370079 0.1950164 +0.5370079 0.5370079 0.1950164 +0.5453253 0.5370079 0.1950164 +0.5533834 0.5370079 0.1950164 +0.5611974 0.5370079 0.1950164 +0.5687816 0.5370079 0.1950164 +0.092819 0.5453253 0.1950164 +0.1056428 0.5453253 0.1950164 +0.1201537 0.5453253 0.1950164 +0.1409607 0.5453253 0.1950164 +0.1678172 0.5453253 0.1950164 +0.1950164 0.5453253 0.1950164 +0.2210581 0.5453253 0.1950164 +0.245636 0.5453253 0.1950164 +0.2686816 0.5453253 0.1950164 +0.2902431 0.5453253 0.1950164 +0.3104189 0.5453253 0.1950164 +0.3293248 0.5453253 0.1950164 +0.3470774 0.5453253 0.1950164 +0.3637862 0.5453253 0.1950164 +0.3795513 0.5453253 0.1950164 +0.3944623 0.5453253 0.1950164 +0.4085988 0.5453253 0.1950164 +0.4220313 0.5453253 0.1950164 +0.4348222 0.5453253 0.1950164 +0.4470264 0.5453253 0.1950164 +0.4586928 0.5453253 0.1950164 +0.4698649 0.5453253 0.1950164 +0.4805811 0.5453253 0.1950164 +0.490876 0.5453253 0.1950164 +0.5007803 0.5453253 0.1950164 +0.510322 0.5453253 0.1950164 +0.5195258 0.5453253 0.1950164 +0.5284142 0.5453253 0.1950164 +0.5370079 0.5453253 0.1950164 +0.5453253 0.5453253 0.1950164 +0.5533834 0.5453253 0.1950164 +0.5611974 0.5453253 0.1950164 +0.5687816 0.5453253 0.1950164 +0.092819 0.5533834 0.1950164 +0.1056428 0.5533834 0.1950164 +0.1201537 0.5533834 0.1950164 +0.1409607 0.5533834 0.1950164 +0.1678172 0.5533834 0.1950164 +0.1950164 0.5533834 0.1950164 +0.2210581 0.5533834 0.1950164 +0.245636 0.5533834 0.1950164 +0.2686816 0.5533834 0.1950164 +0.2902431 0.5533834 0.1950164 +0.3104189 0.5533834 0.1950164 +0.3293248 0.5533834 0.1950164 +0.3470774 0.5533834 0.1950164 +0.3637862 0.5533834 0.1950164 +0.3795513 0.5533834 0.1950164 +0.3944623 0.5533834 0.1950164 +0.4085988 0.5533834 0.1950164 +0.4220313 0.5533834 0.1950164 +0.4348222 0.5533834 0.1950164 +0.4470264 0.5533834 0.1950164 +0.4586928 0.5533834 0.1950164 +0.4698649 0.5533834 0.1950164 +0.4805811 0.5533834 0.1950164 +0.490876 0.5533834 0.1950164 +0.5007803 0.5533834 0.1950164 +0.510322 0.5533834 0.1950164 +0.5195258 0.5533834 0.1950164 +0.5284142 0.5533834 0.1950164 +0.5370079 0.5533834 0.1950164 +0.5453253 0.5533834 0.1950164 +0.5533834 0.5533834 0.1950164 +0.5611974 0.5533834 0.1950164 +0.5687816 0.5533834 0.1950164 +0.092819 0.5611974 0.1950164 +0.1056428 0.5611974 0.1950164 +0.1201537 0.5611974 0.1950164 +0.1409607 0.5611974 0.1950164 +0.1678172 0.5611974 0.1950164 +0.1950164 0.5611974 0.1950164 +0.2210581 0.5611974 0.1950164 +0.245636 0.5611974 0.1950164 +0.2686816 0.5611974 0.1950164 +0.2902431 0.5611974 0.1950164 +0.3104189 0.5611974 0.1950164 +0.3293248 0.5611974 0.1950164 +0.3470774 0.5611974 0.1950164 +0.3637862 0.5611974 0.1950164 +0.3795513 0.5611974 0.1950164 +0.3944623 0.5611974 0.1950164 +0.4085988 0.5611974 0.1950164 +0.4220313 0.5611974 0.1950164 +0.4348222 0.5611974 0.1950164 +0.4470264 0.5611974 0.1950164 +0.4586928 0.5611974 0.1950164 +0.4698649 0.5611974 0.1950164 +0.4805811 0.5611974 0.1950164 +0.490876 0.5611974 0.1950164 +0.5007803 0.5611974 0.1950164 +0.510322 0.5611974 0.1950164 +0.5195258 0.5611974 0.1950164 +0.5284142 0.5611974 0.1950164 +0.5370079 0.5611974 0.1950164 +0.5453253 0.5611974 0.1950164 +0.5533834 0.5611974 0.1950164 +0.5611974 0.5611974 0.1950164 +0.5687816 0.5611974 0.1950164 +0.092819 0.5687816 0.1950164 +0.1056428 0.5687816 0.1950164 +0.1201537 0.5687816 0.1950164 +0.1409607 0.5687816 0.1950164 +0.1678172 0.5687816 0.1950164 +0.1950164 0.5687816 0.1950164 +0.2210581 0.5687816 0.1950164 +0.245636 0.5687816 0.1950164 +0.2686816 0.5687816 0.1950164 +0.2902431 0.5687816 0.1950164 +0.3104189 0.5687816 0.1950164 +0.3293248 0.5687816 0.1950164 +0.3470774 0.5687816 0.1950164 +0.3637862 0.5687816 0.1950164 +0.3795513 0.5687816 0.1950164 +0.3944623 0.5687816 0.1950164 +0.4085988 0.5687816 0.1950164 +0.4220313 0.5687816 0.1950164 +0.4348222 0.5687816 0.1950164 +0.4470264 0.5687816 0.1950164 +0.4586928 0.5687816 0.1950164 +0.4698649 0.5687816 0.1950164 +0.4805811 0.5687816 0.1950164 +0.490876 0.5687816 0.1950164 +0.5007803 0.5687816 0.1950164 +0.510322 0.5687816 0.1950164 +0.5195258 0.5687816 0.1950164 +0.5284142 0.5687816 0.1950164 +0.5370079 0.5687816 0.1950164 +0.5453253 0.5687816 0.1950164 +0.5533834 0.5687816 0.1950164 +0.5611974 0.5687816 0.1950164 +0.5687816 0.5687816 0.1950164 +0.092819 0.092819 0.2210581 +0.1056428 0.092819 0.2210581 +0.1201537 0.092819 0.2210581 +0.1409607 0.092819 0.2210581 +0.1678172 0.092819 0.2210581 +0.1950164 0.092819 0.2210581 +0.2210581 0.092819 0.2210581 +0.245636 0.092819 0.2210581 +0.2686816 0.092819 0.2210581 +0.2902431 0.092819 0.2210581 +0.3104189 0.092819 0.2210581 +0.3293248 0.092819 0.2210581 +0.3470774 0.092819 0.2210581 +0.3637862 0.092819 0.2210581 +0.3795513 0.092819 0.2210581 +0.3944623 0.092819 0.2210581 +0.4085988 0.092819 0.2210581 +0.4220313 0.092819 0.2210581 +0.4348222 0.092819 0.2210581 +0.4470264 0.092819 0.2210581 +0.4586928 0.092819 0.2210581 +0.4698649 0.092819 0.2210581 +0.4805811 0.092819 0.2210581 +0.490876 0.092819 0.2210581 +0.5007803 0.092819 0.2210581 +0.510322 0.092819 0.2210581 +0.5195258 0.092819 0.2210581 +0.5284142 0.092819 0.2210581 +0.5370079 0.092819 0.2210581 +0.5453253 0.092819 0.2210581 +0.5533834 0.092819 0.2210581 +0.5611974 0.092819 0.2210581 +0.5687816 0.092819 0.2210581 +0.092819 0.1056428 0.2210581 +0.1056428 0.1056428 0.2210581 +0.1201537 0.1056428 0.2210581 +0.1409607 0.1056428 0.2210581 +0.1678172 0.1056428 0.2210581 +0.1950164 0.1056428 0.2210581 +0.2210581 0.1056428 0.2210581 +0.245636 0.1056428 0.2210581 +0.2686816 0.1056428 0.2210581 +0.2902431 0.1056428 0.2210581 +0.3104189 0.1056428 0.2210581 +0.3293248 0.1056428 0.2210581 +0.3470774 0.1056428 0.2210581 +0.3637862 0.1056428 0.2210581 +0.3795513 0.1056428 0.2210581 +0.3944623 0.1056428 0.2210581 +0.4085988 0.1056428 0.2210581 +0.4220313 0.1056428 0.2210581 +0.4348222 0.1056428 0.2210581 +0.4470264 0.1056428 0.2210581 +0.4586928 0.1056428 0.2210581 +0.4698649 0.1056428 0.2210581 +0.4805811 0.1056428 0.2210581 +0.490876 0.1056428 0.2210581 +0.5007803 0.1056428 0.2210581 +0.510322 0.1056428 0.2210581 +0.5195258 0.1056428 0.2210581 +0.5284142 0.1056428 0.2210581 +0.5370079 0.1056428 0.2210581 +0.5453253 0.1056428 0.2210581 +0.5533834 0.1056428 0.2210581 +0.5611974 0.1056428 0.2210581 +0.5687816 0.1056428 0.2210581 +0.092819 0.1201537 0.2210581 +0.1056428 0.1201537 0.2210581 +0.1201537 0.1201537 0.2210581 +0.1409607 0.1201537 0.2210581 +0.1678172 0.1201537 0.2210581 +0.1950164 0.1201537 0.2210581 +0.2210581 0.1201537 0.2210581 +0.245636 0.1201537 0.2210581 +0.2686816 0.1201537 0.2210581 +0.2902431 0.1201537 0.2210581 +0.3104189 0.1201537 0.2210581 +0.3293248 0.1201537 0.2210581 +0.3470774 0.1201537 0.2210581 +0.3637862 0.1201537 0.2210581 +0.3795513 0.1201537 0.2210581 +0.3944623 0.1201537 0.2210581 +0.4085988 0.1201537 0.2210581 +0.4220313 0.1201537 0.2210581 +0.4348222 0.1201537 0.2210581 +0.4470264 0.1201537 0.2210581 +0.4586928 0.1201537 0.2210581 +0.4698649 0.1201537 0.2210581 +0.4805811 0.1201537 0.2210581 +0.490876 0.1201537 0.2210581 +0.5007803 0.1201537 0.2210581 +0.510322 0.1201537 0.2210581 +0.5195258 0.1201537 0.2210581 +0.5284142 0.1201537 0.2210581 +0.5370079 0.1201537 0.2210581 +0.5453253 0.1201537 0.2210581 +0.5533834 0.1201537 0.2210581 +0.5611974 0.1201537 0.2210581 +0.5687816 0.1201537 0.2210581 +0.092819 0.1409607 0.2210581 +0.1056428 0.1409607 0.2210581 +0.1201537 0.1409607 0.2210581 +0.1409607 0.1409607 0.2210581 +0.1678172 0.1409607 0.2210581 +0.1950164 0.1409607 0.2210581 +0.2210581 0.1409607 0.2210581 +0.245636 0.1409607 0.2210581 +0.2686816 0.1409607 0.2210581 +0.2902431 0.1409607 0.2210581 +0.3104189 0.1409607 0.2210581 +0.3293248 0.1409607 0.2210581 +0.3470774 0.1409607 0.2210581 +0.3637862 0.1409607 0.2210581 +0.3795513 0.1409607 0.2210581 +0.3944623 0.1409607 0.2210581 +0.4085988 0.1409607 0.2210581 +0.4220313 0.1409607 0.2210581 +0.4348222 0.1409607 0.2210581 +0.4470264 0.1409607 0.2210581 +0.4586928 0.1409607 0.2210581 +0.4698649 0.1409607 0.2210581 +0.4805811 0.1409607 0.2210581 +0.490876 0.1409607 0.2210581 +0.5007803 0.1409607 0.2210581 +0.510322 0.1409607 0.2210581 +0.5195258 0.1409607 0.2210581 +0.5284142 0.1409607 0.2210581 +0.5370079 0.1409607 0.2210581 +0.5453253 0.1409607 0.2210581 +0.5533834 0.1409607 0.2210581 +0.5611974 0.1409607 0.2210581 +0.5687816 0.1409607 0.2210581 +0.092819 0.1678172 0.2210581 +0.1056428 0.1678172 0.2210581 +0.1201537 0.1678172 0.2210581 +0.1409607 0.1678172 0.2210581 +0.1678172 0.1678172 0.2210581 +0.1950164 0.1678172 0.2210581 +0.2210581 0.1678172 0.2210581 +0.245636 0.1678172 0.2210581 +0.2686816 0.1678172 0.2210581 +0.2902431 0.1678172 0.2210581 +0.3104189 0.1678172 0.2210581 +0.3293248 0.1678172 0.2210581 +0.3470774 0.1678172 0.2210581 +0.3637862 0.1678172 0.2210581 +0.3795513 0.1678172 0.2210581 +0.3944623 0.1678172 0.2210581 +0.4085988 0.1678172 0.2210581 +0.4220313 0.1678172 0.2210581 +0.4348222 0.1678172 0.2210581 +0.4470264 0.1678172 0.2210581 +0.4586928 0.1678172 0.2210581 +0.4698649 0.1678172 0.2210581 +0.4805811 0.1678172 0.2210581 +0.490876 0.1678172 0.2210581 +0.5007803 0.1678172 0.2210581 +0.510322 0.1678172 0.2210581 +0.5195258 0.1678172 0.2210581 +0.5284142 0.1678172 0.2210581 +0.5370079 0.1678172 0.2210581 +0.5453253 0.1678172 0.2210581 +0.5533834 0.1678172 0.2210581 +0.5611974 0.1678172 0.2210581 +0.5687816 0.1678172 0.2210581 +0.092819 0.1950164 0.2210581 +0.1056428 0.1950164 0.2210581 +0.1201537 0.1950164 0.2210581 +0.1409607 0.1950164 0.2210581 +0.1678172 0.1950164 0.2210581 +0.1950164 0.1950164 0.2210581 +0.2210581 0.1950164 0.2210581 +0.245636 0.1950164 0.2210581 +0.2686816 0.1950164 0.2210581 +0.2902431 0.1950164 0.2210581 +0.3104189 0.1950164 0.2210581 +0.3293248 0.1950164 0.2210581 +0.3470774 0.1950164 0.2210581 +0.3637862 0.1950164 0.2210581 +0.3795513 0.1950164 0.2210581 +0.3944623 0.1950164 0.2210581 +0.4085988 0.1950164 0.2210581 +0.4220313 0.1950164 0.2210581 +0.4348222 0.1950164 0.2210581 +0.4470264 0.1950164 0.2210581 +0.4586928 0.1950164 0.2210581 +0.4698649 0.1950164 0.2210581 +0.4805811 0.1950164 0.2210581 +0.490876 0.1950164 0.2210581 +0.5007803 0.1950164 0.2210581 +0.510322 0.1950164 0.2210581 +0.5195258 0.1950164 0.2210581 +0.5284142 0.1950164 0.2210581 +0.5370079 0.1950164 0.2210581 +0.5453253 0.1950164 0.2210581 +0.5533834 0.1950164 0.2210581 +0.5611974 0.1950164 0.2210581 +0.5687816 0.1950164 0.2210581 +0.092819 0.2210581 0.2210581 +0.1056428 0.2210581 0.2210581 +0.1201537 0.2210581 0.2210581 +0.1409607 0.2210581 0.2210581 +0.1678172 0.2210581 0.2210581 +0.1950164 0.2210581 0.2210581 +0.2210581 0.2210581 0.2210581 +0.245636 0.2210581 0.2210581 +0.2686816 0.2210581 0.2210581 +0.2902431 0.2210581 0.2210581 +0.3104189 0.2210581 0.2210581 +0.3293248 0.2210581 0.2210581 +0.3470774 0.2210581 0.2210581 +0.3637862 0.2210581 0.2210581 +0.3795513 0.2210581 0.2210581 +0.3944623 0.2210581 0.2210581 +0.4085988 0.2210581 0.2210581 +0.4220313 0.2210581 0.2210581 +0.4348222 0.2210581 0.2210581 +0.4470264 0.2210581 0.2210581 +0.4586928 0.2210581 0.2210581 +0.4698649 0.2210581 0.2210581 +0.4805811 0.2210581 0.2210581 +0.490876 0.2210581 0.2210581 +0.5007803 0.2210581 0.2210581 +0.510322 0.2210581 0.2210581 +0.5195258 0.2210581 0.2210581 +0.5284142 0.2210581 0.2210581 +0.5370079 0.2210581 0.2210581 +0.5453253 0.2210581 0.2210581 +0.5533834 0.2210581 0.2210581 +0.5611974 0.2210581 0.2210581 +0.5687816 0.2210581 0.2210581 +0.092819 0.245636 0.2210581 +0.1056428 0.245636 0.2210581 +0.1201537 0.245636 0.2210581 +0.1409607 0.245636 0.2210581 +0.1678172 0.245636 0.2210581 +0.1950164 0.245636 0.2210581 +0.2210581 0.245636 0.2210581 +0.245636 0.245636 0.2210581 +0.2686816 0.245636 0.2210581 +0.2902431 0.245636 0.2210581 +0.3104189 0.245636 0.2210581 +0.3293248 0.245636 0.2210581 +0.3470774 0.245636 0.2210581 +0.3637862 0.245636 0.2210581 +0.3795513 0.245636 0.2210581 +0.3944623 0.245636 0.2210581 +0.4085988 0.245636 0.2210581 +0.4220313 0.245636 0.2210581 +0.4348222 0.245636 0.2210581 +0.4470264 0.245636 0.2210581 +0.4586928 0.245636 0.2210581 +0.4698649 0.245636 0.2210581 +0.4805811 0.245636 0.2210581 +0.490876 0.245636 0.2210581 +0.5007803 0.245636 0.2210581 +0.510322 0.245636 0.2210581 +0.5195258 0.245636 0.2210581 +0.5284142 0.245636 0.2210581 +0.5370079 0.245636 0.2210581 +0.5453253 0.245636 0.2210581 +0.5533834 0.245636 0.2210581 +0.5611974 0.245636 0.2210581 +0.5687816 0.245636 0.2210581 +0.092819 0.2686816 0.2210581 +0.1056428 0.2686816 0.2210581 +0.1201537 0.2686816 0.2210581 +0.1409607 0.2686816 0.2210581 +0.1678172 0.2686816 0.2210581 +0.1950164 0.2686816 0.2210581 +0.2210581 0.2686816 0.2210581 +0.245636 0.2686816 0.2210581 +0.2686816 0.2686816 0.2210581 +0.2902431 0.2686816 0.2210581 +0.3104189 0.2686816 0.2210581 +0.3293248 0.2686816 0.2210581 +0.3470774 0.2686816 0.2210581 +0.3637862 0.2686816 0.2210581 +0.3795513 0.2686816 0.2210581 +0.3944623 0.2686816 0.2210581 +0.4085988 0.2686816 0.2210581 +0.4220313 0.2686816 0.2210581 +0.4348222 0.2686816 0.2210581 +0.4470264 0.2686816 0.2210581 +0.4586928 0.2686816 0.2210581 +0.4698649 0.2686816 0.2210581 +0.4805811 0.2686816 0.2210581 +0.490876 0.2686816 0.2210581 +0.5007803 0.2686816 0.2210581 +0.510322 0.2686816 0.2210581 +0.5195258 0.2686816 0.2210581 +0.5284142 0.2686816 0.2210581 +0.5370079 0.2686816 0.2210581 +0.5453253 0.2686816 0.2210581 +0.5533834 0.2686816 0.2210581 +0.5611974 0.2686816 0.2210581 +0.5687816 0.2686816 0.2210581 +0.092819 0.2902431 0.2210581 +0.1056428 0.2902431 0.2210581 +0.1201537 0.2902431 0.2210581 +0.1409607 0.2902431 0.2210581 +0.1678172 0.2902431 0.2210581 +0.1950164 0.2902431 0.2210581 +0.2210581 0.2902431 0.2210581 +0.245636 0.2902431 0.2210581 +0.2686816 0.2902431 0.2210581 +0.2902431 0.2902431 0.2210581 +0.3104189 0.2902431 0.2210581 +0.3293248 0.2902431 0.2210581 +0.3470774 0.2902431 0.2210581 +0.3637862 0.2902431 0.2210581 +0.3795513 0.2902431 0.2210581 +0.3944623 0.2902431 0.2210581 +0.4085988 0.2902431 0.2210581 +0.4220313 0.2902431 0.2210581 +0.4348222 0.2902431 0.2210581 +0.4470264 0.2902431 0.2210581 +0.4586928 0.2902431 0.2210581 +0.4698649 0.2902431 0.2210581 +0.4805811 0.2902431 0.2210581 +0.490876 0.2902431 0.2210581 +0.5007803 0.2902431 0.2210581 +0.510322 0.2902431 0.2210581 +0.5195258 0.2902431 0.2210581 +0.5284142 0.2902431 0.2210581 +0.5370079 0.2902431 0.2210581 +0.5453253 0.2902431 0.2210581 +0.5533834 0.2902431 0.2210581 +0.5611974 0.2902431 0.2210581 +0.5687816 0.2902431 0.2210581 +0.092819 0.3104189 0.2210581 +0.1056428 0.3104189 0.2210581 +0.1201537 0.3104189 0.2210581 +0.1409607 0.3104189 0.2210581 +0.1678172 0.3104189 0.2210581 +0.1950164 0.3104189 0.2210581 +0.2210581 0.3104189 0.2210581 +0.245636 0.3104189 0.2210581 +0.2686816 0.3104189 0.2210581 +0.2902431 0.3104189 0.2210581 +0.3104189 0.3104189 0.2210581 +0.3293248 0.3104189 0.2210581 +0.3470774 0.3104189 0.2210581 +0.3637862 0.3104189 0.2210581 +0.3795513 0.3104189 0.2210581 +0.3944623 0.3104189 0.2210581 +0.4085988 0.3104189 0.2210581 +0.4220313 0.3104189 0.2210581 +0.4348222 0.3104189 0.2210581 +0.4470264 0.3104189 0.2210581 +0.4586928 0.3104189 0.2210581 +0.4698649 0.3104189 0.2210581 +0.4805811 0.3104189 0.2210581 +0.490876 0.3104189 0.2210581 +0.5007803 0.3104189 0.2210581 +0.510322 0.3104189 0.2210581 +0.5195258 0.3104189 0.2210581 +0.5284142 0.3104189 0.2210581 +0.5370079 0.3104189 0.2210581 +0.5453253 0.3104189 0.2210581 +0.5533834 0.3104189 0.2210581 +0.5611974 0.3104189 0.2210581 +0.5687816 0.3104189 0.2210581 +0.092819 0.3293248 0.2210581 +0.1056428 0.3293248 0.2210581 +0.1201537 0.3293248 0.2210581 +0.1409607 0.3293248 0.2210581 +0.1678172 0.3293248 0.2210581 +0.1950164 0.3293248 0.2210581 +0.2210581 0.3293248 0.2210581 +0.245636 0.3293248 0.2210581 +0.2686816 0.3293248 0.2210581 +0.2902431 0.3293248 0.2210581 +0.3104189 0.3293248 0.2210581 +0.3293248 0.3293248 0.2210581 +0.3470774 0.3293248 0.2210581 +0.3637862 0.3293248 0.2210581 +0.3795513 0.3293248 0.2210581 +0.3944623 0.3293248 0.2210581 +0.4085988 0.3293248 0.2210581 +0.4220313 0.3293248 0.2210581 +0.4348222 0.3293248 0.2210581 +0.4470264 0.3293248 0.2210581 +0.4586928 0.3293248 0.2210581 +0.4698649 0.3293248 0.2210581 +0.4805811 0.3293248 0.2210581 +0.490876 0.3293248 0.2210581 +0.5007803 0.3293248 0.2210581 +0.510322 0.3293248 0.2210581 +0.5195258 0.3293248 0.2210581 +0.5284142 0.3293248 0.2210581 +0.5370079 0.3293248 0.2210581 +0.5453253 0.3293248 0.2210581 +0.5533834 0.3293248 0.2210581 +0.5611974 0.3293248 0.2210581 +0.5687816 0.3293248 0.2210581 +0.092819 0.3470774 0.2210581 +0.1056428 0.3470774 0.2210581 +0.1201537 0.3470774 0.2210581 +0.1409607 0.3470774 0.2210581 +0.1678172 0.3470774 0.2210581 +0.1950164 0.3470774 0.2210581 +0.2210581 0.3470774 0.2210581 +0.245636 0.3470774 0.2210581 +0.2686816 0.3470774 0.2210581 +0.2902431 0.3470774 0.2210581 +0.3104189 0.3470774 0.2210581 +0.3293248 0.3470774 0.2210581 +0.3470774 0.3470774 0.2210581 +0.3637862 0.3470774 0.2210581 +0.3795513 0.3470774 0.2210581 +0.3944623 0.3470774 0.2210581 +0.4085988 0.3470774 0.2210581 +0.4220313 0.3470774 0.2210581 +0.4348222 0.3470774 0.2210581 +0.4470264 0.3470774 0.2210581 +0.4586928 0.3470774 0.2210581 +0.4698649 0.3470774 0.2210581 +0.4805811 0.3470774 0.2210581 +0.490876 0.3470774 0.2210581 +0.5007803 0.3470774 0.2210581 +0.510322 0.3470774 0.2210581 +0.5195258 0.3470774 0.2210581 +0.5284142 0.3470774 0.2210581 +0.5370079 0.3470774 0.2210581 +0.5453253 0.3470774 0.2210581 +0.5533834 0.3470774 0.2210581 +0.5611974 0.3470774 0.2210581 +0.5687816 0.3470774 0.2210581 +0.092819 0.3637862 0.2210581 +0.1056428 0.3637862 0.2210581 +0.1201537 0.3637862 0.2210581 +0.1409607 0.3637862 0.2210581 +0.1678172 0.3637862 0.2210581 +0.1950164 0.3637862 0.2210581 +0.2210581 0.3637862 0.2210581 +0.245636 0.3637862 0.2210581 +0.2686816 0.3637862 0.2210581 +0.2902431 0.3637862 0.2210581 +0.3104189 0.3637862 0.2210581 +0.3293248 0.3637862 0.2210581 +0.3470774 0.3637862 0.2210581 +0.3637862 0.3637862 0.2210581 +0.3795513 0.3637862 0.2210581 +0.3944623 0.3637862 0.2210581 +0.4085988 0.3637862 0.2210581 +0.4220313 0.3637862 0.2210581 +0.4348222 0.3637862 0.2210581 +0.4470264 0.3637862 0.2210581 +0.4586928 0.3637862 0.2210581 +0.4698649 0.3637862 0.2210581 +0.4805811 0.3637862 0.2210581 +0.490876 0.3637862 0.2210581 +0.5007803 0.3637862 0.2210581 +0.510322 0.3637862 0.2210581 +0.5195258 0.3637862 0.2210581 +0.5284142 0.3637862 0.2210581 +0.5370079 0.3637862 0.2210581 +0.5453253 0.3637862 0.2210581 +0.5533834 0.3637862 0.2210581 +0.5611974 0.3637862 0.2210581 +0.5687816 0.3637862 0.2210581 +0.092819 0.3795513 0.2210581 +0.1056428 0.3795513 0.2210581 +0.1201537 0.3795513 0.2210581 +0.1409607 0.3795513 0.2210581 +0.1678172 0.3795513 0.2210581 +0.1950164 0.3795513 0.2210581 +0.2210581 0.3795513 0.2210581 +0.245636 0.3795513 0.2210581 +0.2686816 0.3795513 0.2210581 +0.2902431 0.3795513 0.2210581 +0.3104189 0.3795513 0.2210581 +0.3293248 0.3795513 0.2210581 +0.3470774 0.3795513 0.2210581 +0.3637862 0.3795513 0.2210581 +0.3795513 0.3795513 0.2210581 +0.3944623 0.3795513 0.2210581 +0.4085988 0.3795513 0.2210581 +0.4220313 0.3795513 0.2210581 +0.4348222 0.3795513 0.2210581 +0.4470264 0.3795513 0.2210581 +0.4586928 0.3795513 0.2210581 +0.4698649 0.3795513 0.2210581 +0.4805811 0.3795513 0.2210581 +0.490876 0.3795513 0.2210581 +0.5007803 0.3795513 0.2210581 +0.510322 0.3795513 0.2210581 +0.5195258 0.3795513 0.2210581 +0.5284142 0.3795513 0.2210581 +0.5370079 0.3795513 0.2210581 +0.5453253 0.3795513 0.2210581 +0.5533834 0.3795513 0.2210581 +0.5611974 0.3795513 0.2210581 +0.5687816 0.3795513 0.2210581 +0.092819 0.3944623 0.2210581 +0.1056428 0.3944623 0.2210581 +0.1201537 0.3944623 0.2210581 +0.1409607 0.3944623 0.2210581 +0.1678172 0.3944623 0.2210581 +0.1950164 0.3944623 0.2210581 +0.2210581 0.3944623 0.2210581 +0.245636 0.3944623 0.2210581 +0.2686816 0.3944623 0.2210581 +0.2902431 0.3944623 0.2210581 +0.3104189 0.3944623 0.2210581 +0.3293248 0.3944623 0.2210581 +0.3470774 0.3944623 0.2210581 +0.3637862 0.3944623 0.2210581 +0.3795513 0.3944623 0.2210581 +0.3944623 0.3944623 0.2210581 +0.4085988 0.3944623 0.2210581 +0.4220313 0.3944623 0.2210581 +0.4348222 0.3944623 0.2210581 +0.4470264 0.3944623 0.2210581 +0.4586928 0.3944623 0.2210581 +0.4698649 0.3944623 0.2210581 +0.4805811 0.3944623 0.2210581 +0.490876 0.3944623 0.2210581 +0.5007803 0.3944623 0.2210581 +0.510322 0.3944623 0.2210581 +0.5195258 0.3944623 0.2210581 +0.5284142 0.3944623 0.2210581 +0.5370079 0.3944623 0.2210581 +0.5453253 0.3944623 0.2210581 +0.5533834 0.3944623 0.2210581 +0.5611974 0.3944623 0.2210581 +0.5687816 0.3944623 0.2210581 +0.092819 0.4085988 0.2210581 +0.1056428 0.4085988 0.2210581 +0.1201537 0.4085988 0.2210581 +0.1409607 0.4085988 0.2210581 +0.1678172 0.4085988 0.2210581 +0.1950164 0.4085988 0.2210581 +0.2210581 0.4085988 0.2210581 +0.245636 0.4085988 0.2210581 +0.2686816 0.4085988 0.2210581 +0.2902431 0.4085988 0.2210581 +0.3104189 0.4085988 0.2210581 +0.3293248 0.4085988 0.2210581 +0.3470774 0.4085988 0.2210581 +0.3637862 0.4085988 0.2210581 +0.3795513 0.4085988 0.2210581 +0.3944623 0.4085988 0.2210581 +0.4085988 0.4085988 0.2210581 +0.4220313 0.4085988 0.2210581 +0.4348222 0.4085988 0.2210581 +0.4470264 0.4085988 0.2210581 +0.4586928 0.4085988 0.2210581 +0.4698649 0.4085988 0.2210581 +0.4805811 0.4085988 0.2210581 +0.490876 0.4085988 0.2210581 +0.5007803 0.4085988 0.2210581 +0.510322 0.4085988 0.2210581 +0.5195258 0.4085988 0.2210581 +0.5284142 0.4085988 0.2210581 +0.5370079 0.4085988 0.2210581 +0.5453253 0.4085988 0.2210581 +0.5533834 0.4085988 0.2210581 +0.5611974 0.4085988 0.2210581 +0.5687816 0.4085988 0.2210581 +0.092819 0.4220313 0.2210581 +0.1056428 0.4220313 0.2210581 +0.1201537 0.4220313 0.2210581 +0.1409607 0.4220313 0.2210581 +0.1678172 0.4220313 0.2210581 +0.1950164 0.4220313 0.2210581 +0.2210581 0.4220313 0.2210581 +0.245636 0.4220313 0.2210581 +0.2686816 0.4220313 0.2210581 +0.2902431 0.4220313 0.2210581 +0.3104189 0.4220313 0.2210581 +0.3293248 0.4220313 0.2210581 +0.3470774 0.4220313 0.2210581 +0.3637862 0.4220313 0.2210581 +0.3795513 0.4220313 0.2210581 +0.3944623 0.4220313 0.2210581 +0.4085988 0.4220313 0.2210581 +0.4220313 0.4220313 0.2210581 +0.4348222 0.4220313 0.2210581 +0.4470264 0.4220313 0.2210581 +0.4586928 0.4220313 0.2210581 +0.4698649 0.4220313 0.2210581 +0.4805811 0.4220313 0.2210581 +0.490876 0.4220313 0.2210581 +0.5007803 0.4220313 0.2210581 +0.510322 0.4220313 0.2210581 +0.5195258 0.4220313 0.2210581 +0.5284142 0.4220313 0.2210581 +0.5370079 0.4220313 0.2210581 +0.5453253 0.4220313 0.2210581 +0.5533834 0.4220313 0.2210581 +0.5611974 0.4220313 0.2210581 +0.5687816 0.4220313 0.2210581 +0.092819 0.4348222 0.2210581 +0.1056428 0.4348222 0.2210581 +0.1201537 0.4348222 0.2210581 +0.1409607 0.4348222 0.2210581 +0.1678172 0.4348222 0.2210581 +0.1950164 0.4348222 0.2210581 +0.2210581 0.4348222 0.2210581 +0.245636 0.4348222 0.2210581 +0.2686816 0.4348222 0.2210581 +0.2902431 0.4348222 0.2210581 +0.3104189 0.4348222 0.2210581 +0.3293248 0.4348222 0.2210581 +0.3470774 0.4348222 0.2210581 +0.3637862 0.4348222 0.2210581 +0.3795513 0.4348222 0.2210581 +0.3944623 0.4348222 0.2210581 +0.4085988 0.4348222 0.2210581 +0.4220313 0.4348222 0.2210581 +0.4348222 0.4348222 0.2210581 +0.4470264 0.4348222 0.2210581 +0.4586928 0.4348222 0.2210581 +0.4698649 0.4348222 0.2210581 +0.4805811 0.4348222 0.2210581 +0.490876 0.4348222 0.2210581 +0.5007803 0.4348222 0.2210581 +0.510322 0.4348222 0.2210581 +0.5195258 0.4348222 0.2210581 +0.5284142 0.4348222 0.2210581 +0.5370079 0.4348222 0.2210581 +0.5453253 0.4348222 0.2210581 +0.5533834 0.4348222 0.2210581 +0.5611974 0.4348222 0.2210581 +0.5687816 0.4348222 0.2210581 +0.092819 0.4470264 0.2210581 +0.1056428 0.4470264 0.2210581 +0.1201537 0.4470264 0.2210581 +0.1409607 0.4470264 0.2210581 +0.1678172 0.4470264 0.2210581 +0.1950164 0.4470264 0.2210581 +0.2210581 0.4470264 0.2210581 +0.245636 0.4470264 0.2210581 +0.2686816 0.4470264 0.2210581 +0.2902431 0.4470264 0.2210581 +0.3104189 0.4470264 0.2210581 +0.3293248 0.4470264 0.2210581 +0.3470774 0.4470264 0.2210581 +0.3637862 0.4470264 0.2210581 +0.3795513 0.4470264 0.2210581 +0.3944623 0.4470264 0.2210581 +0.4085988 0.4470264 0.2210581 +0.4220313 0.4470264 0.2210581 +0.4348222 0.4470264 0.2210581 +0.4470264 0.4470264 0.2210581 +0.4586928 0.4470264 0.2210581 +0.4698649 0.4470264 0.2210581 +0.4805811 0.4470264 0.2210581 +0.490876 0.4470264 0.2210581 +0.5007803 0.4470264 0.2210581 +0.510322 0.4470264 0.2210581 +0.5195258 0.4470264 0.2210581 +0.5284142 0.4470264 0.2210581 +0.5370079 0.4470264 0.2210581 +0.5453253 0.4470264 0.2210581 +0.5533834 0.4470264 0.2210581 +0.5611974 0.4470264 0.2210581 +0.5687816 0.4470264 0.2210581 +0.092819 0.4586928 0.2210581 +0.1056428 0.4586928 0.2210581 +0.1201537 0.4586928 0.2210581 +0.1409607 0.4586928 0.2210581 +0.1678172 0.4586928 0.2210581 +0.1950164 0.4586928 0.2210581 +0.2210581 0.4586928 0.2210581 +0.245636 0.4586928 0.2210581 +0.2686816 0.4586928 0.2210581 +0.2902431 0.4586928 0.2210581 +0.3104189 0.4586928 0.2210581 +0.3293248 0.4586928 0.2210581 +0.3470774 0.4586928 0.2210581 +0.3637862 0.4586928 0.2210581 +0.3795513 0.4586928 0.2210581 +0.3944623 0.4586928 0.2210581 +0.4085988 0.4586928 0.2210581 +0.4220313 0.4586928 0.2210581 +0.4348222 0.4586928 0.2210581 +0.4470264 0.4586928 0.2210581 +0.4586928 0.4586928 0.2210581 +0.4698649 0.4586928 0.2210581 +0.4805811 0.4586928 0.2210581 +0.490876 0.4586928 0.2210581 +0.5007803 0.4586928 0.2210581 +0.510322 0.4586928 0.2210581 +0.5195258 0.4586928 0.2210581 +0.5284142 0.4586928 0.2210581 +0.5370079 0.4586928 0.2210581 +0.5453253 0.4586928 0.2210581 +0.5533834 0.4586928 0.2210581 +0.5611974 0.4586928 0.2210581 +0.5687816 0.4586928 0.2210581 +0.092819 0.4698649 0.2210581 +0.1056428 0.4698649 0.2210581 +0.1201537 0.4698649 0.2210581 +0.1409607 0.4698649 0.2210581 +0.1678172 0.4698649 0.2210581 +0.1950164 0.4698649 0.2210581 +0.2210581 0.4698649 0.2210581 +0.245636 0.4698649 0.2210581 +0.2686816 0.4698649 0.2210581 +0.2902431 0.4698649 0.2210581 +0.3104189 0.4698649 0.2210581 +0.3293248 0.4698649 0.2210581 +0.3470774 0.4698649 0.2210581 +0.3637862 0.4698649 0.2210581 +0.3795513 0.4698649 0.2210581 +0.3944623 0.4698649 0.2210581 +0.4085988 0.4698649 0.2210581 +0.4220313 0.4698649 0.2210581 +0.4348222 0.4698649 0.2210581 +0.4470264 0.4698649 0.2210581 +0.4586928 0.4698649 0.2210581 +0.4698649 0.4698649 0.2210581 +0.4805811 0.4698649 0.2210581 +0.490876 0.4698649 0.2210581 +0.5007803 0.4698649 0.2210581 +0.510322 0.4698649 0.2210581 +0.5195258 0.4698649 0.2210581 +0.5284142 0.4698649 0.2210581 +0.5370079 0.4698649 0.2210581 +0.5453253 0.4698649 0.2210581 +0.5533834 0.4698649 0.2210581 +0.5611974 0.4698649 0.2210581 +0.5687816 0.4698649 0.2210581 +0.092819 0.4805811 0.2210581 +0.1056428 0.4805811 0.2210581 +0.1201537 0.4805811 0.2210581 +0.1409607 0.4805811 0.2210581 +0.1678172 0.4805811 0.2210581 +0.1950164 0.4805811 0.2210581 +0.2210581 0.4805811 0.2210581 +0.245636 0.4805811 0.2210581 +0.2686816 0.4805811 0.2210581 +0.2902431 0.4805811 0.2210581 +0.3104189 0.4805811 0.2210581 +0.3293248 0.4805811 0.2210581 +0.3470774 0.4805811 0.2210581 +0.3637862 0.4805811 0.2210581 +0.3795513 0.4805811 0.2210581 +0.3944623 0.4805811 0.2210581 +0.4085988 0.4805811 0.2210581 +0.4220313 0.4805811 0.2210581 +0.4348222 0.4805811 0.2210581 +0.4470264 0.4805811 0.2210581 +0.4586928 0.4805811 0.2210581 +0.4698649 0.4805811 0.2210581 +0.4805811 0.4805811 0.2210581 +0.490876 0.4805811 0.2210581 +0.5007803 0.4805811 0.2210581 +0.510322 0.4805811 0.2210581 +0.5195258 0.4805811 0.2210581 +0.5284142 0.4805811 0.2210581 +0.5370079 0.4805811 0.2210581 +0.5453253 0.4805811 0.2210581 +0.5533834 0.4805811 0.2210581 +0.5611974 0.4805811 0.2210581 +0.5687816 0.4805811 0.2210581 +0.092819 0.490876 0.2210581 +0.1056428 0.490876 0.2210581 +0.1201537 0.490876 0.2210581 +0.1409607 0.490876 0.2210581 +0.1678172 0.490876 0.2210581 +0.1950164 0.490876 0.2210581 +0.2210581 0.490876 0.2210581 +0.245636 0.490876 0.2210581 +0.2686816 0.490876 0.2210581 +0.2902431 0.490876 0.2210581 +0.3104189 0.490876 0.2210581 +0.3293248 0.490876 0.2210581 +0.3470774 0.490876 0.2210581 +0.3637862 0.490876 0.2210581 +0.3795513 0.490876 0.2210581 +0.3944623 0.490876 0.2210581 +0.4085988 0.490876 0.2210581 +0.4220313 0.490876 0.2210581 +0.4348222 0.490876 0.2210581 +0.4470264 0.490876 0.2210581 +0.4586928 0.490876 0.2210581 +0.4698649 0.490876 0.2210581 +0.4805811 0.490876 0.2210581 +0.490876 0.490876 0.2210581 +0.5007803 0.490876 0.2210581 +0.510322 0.490876 0.2210581 +0.5195258 0.490876 0.2210581 +0.5284142 0.490876 0.2210581 +0.5370079 0.490876 0.2210581 +0.5453253 0.490876 0.2210581 +0.5533834 0.490876 0.2210581 +0.5611974 0.490876 0.2210581 +0.5687816 0.490876 0.2210581 +0.092819 0.5007803 0.2210581 +0.1056428 0.5007803 0.2210581 +0.1201537 0.5007803 0.2210581 +0.1409607 0.5007803 0.2210581 +0.1678172 0.5007803 0.2210581 +0.1950164 0.5007803 0.2210581 +0.2210581 0.5007803 0.2210581 +0.245636 0.5007803 0.2210581 +0.2686816 0.5007803 0.2210581 +0.2902431 0.5007803 0.2210581 +0.3104189 0.5007803 0.2210581 +0.3293248 0.5007803 0.2210581 +0.3470774 0.5007803 0.2210581 +0.3637862 0.5007803 0.2210581 +0.3795513 0.5007803 0.2210581 +0.3944623 0.5007803 0.2210581 +0.4085988 0.5007803 0.2210581 +0.4220313 0.5007803 0.2210581 +0.4348222 0.5007803 0.2210581 +0.4470264 0.5007803 0.2210581 +0.4586928 0.5007803 0.2210581 +0.4698649 0.5007803 0.2210581 +0.4805811 0.5007803 0.2210581 +0.490876 0.5007803 0.2210581 +0.5007803 0.5007803 0.2210581 +0.510322 0.5007803 0.2210581 +0.5195258 0.5007803 0.2210581 +0.5284142 0.5007803 0.2210581 +0.5370079 0.5007803 0.2210581 +0.5453253 0.5007803 0.2210581 +0.5533834 0.5007803 0.2210581 +0.5611974 0.5007803 0.2210581 +0.5687816 0.5007803 0.2210581 +0.092819 0.510322 0.2210581 +0.1056428 0.510322 0.2210581 +0.1201537 0.510322 0.2210581 +0.1409607 0.510322 0.2210581 +0.1678172 0.510322 0.2210581 +0.1950164 0.510322 0.2210581 +0.2210581 0.510322 0.2210581 +0.245636 0.510322 0.2210581 +0.2686816 0.510322 0.2210581 +0.2902431 0.510322 0.2210581 +0.3104189 0.510322 0.2210581 +0.3293248 0.510322 0.2210581 +0.3470774 0.510322 0.2210581 +0.3637862 0.510322 0.2210581 +0.3795513 0.510322 0.2210581 +0.3944623 0.510322 0.2210581 +0.4085988 0.510322 0.2210581 +0.4220313 0.510322 0.2210581 +0.4348222 0.510322 0.2210581 +0.4470264 0.510322 0.2210581 +0.4586928 0.510322 0.2210581 +0.4698649 0.510322 0.2210581 +0.4805811 0.510322 0.2210581 +0.490876 0.510322 0.2210581 +0.5007803 0.510322 0.2210581 +0.510322 0.510322 0.2210581 +0.5195258 0.510322 0.2210581 +0.5284142 0.510322 0.2210581 +0.5370079 0.510322 0.2210581 +0.5453253 0.510322 0.2210581 +0.5533834 0.510322 0.2210581 +0.5611974 0.510322 0.2210581 +0.5687816 0.510322 0.2210581 +0.092819 0.5195258 0.2210581 +0.1056428 0.5195258 0.2210581 +0.1201537 0.5195258 0.2210581 +0.1409607 0.5195258 0.2210581 +0.1678172 0.5195258 0.2210581 +0.1950164 0.5195258 0.2210581 +0.2210581 0.5195258 0.2210581 +0.245636 0.5195258 0.2210581 +0.2686816 0.5195258 0.2210581 +0.2902431 0.5195258 0.2210581 +0.3104189 0.5195258 0.2210581 +0.3293248 0.5195258 0.2210581 +0.3470774 0.5195258 0.2210581 +0.3637862 0.5195258 0.2210581 +0.3795513 0.5195258 0.2210581 +0.3944623 0.5195258 0.2210581 +0.4085988 0.5195258 0.2210581 +0.4220313 0.5195258 0.2210581 +0.4348222 0.5195258 0.2210581 +0.4470264 0.5195258 0.2210581 +0.4586928 0.5195258 0.2210581 +0.4698649 0.5195258 0.2210581 +0.4805811 0.5195258 0.2210581 +0.490876 0.5195258 0.2210581 +0.5007803 0.5195258 0.2210581 +0.510322 0.5195258 0.2210581 +0.5195258 0.5195258 0.2210581 +0.5284142 0.5195258 0.2210581 +0.5370079 0.5195258 0.2210581 +0.5453253 0.5195258 0.2210581 +0.5533834 0.5195258 0.2210581 +0.5611974 0.5195258 0.2210581 +0.5687816 0.5195258 0.2210581 +0.092819 0.5284142 0.2210581 +0.1056428 0.5284142 0.2210581 +0.1201537 0.5284142 0.2210581 +0.1409607 0.5284142 0.2210581 +0.1678172 0.5284142 0.2210581 +0.1950164 0.5284142 0.2210581 +0.2210581 0.5284142 0.2210581 +0.245636 0.5284142 0.2210581 +0.2686816 0.5284142 0.2210581 +0.2902431 0.5284142 0.2210581 +0.3104189 0.5284142 0.2210581 +0.3293248 0.5284142 0.2210581 +0.3470774 0.5284142 0.2210581 +0.3637862 0.5284142 0.2210581 +0.3795513 0.5284142 0.2210581 +0.3944623 0.5284142 0.2210581 +0.4085988 0.5284142 0.2210581 +0.4220313 0.5284142 0.2210581 +0.4348222 0.5284142 0.2210581 +0.4470264 0.5284142 0.2210581 +0.4586928 0.5284142 0.2210581 +0.4698649 0.5284142 0.2210581 +0.4805811 0.5284142 0.2210581 +0.490876 0.5284142 0.2210581 +0.5007803 0.5284142 0.2210581 +0.510322 0.5284142 0.2210581 +0.5195258 0.5284142 0.2210581 +0.5284142 0.5284142 0.2210581 +0.5370079 0.5284142 0.2210581 +0.5453253 0.5284142 0.2210581 +0.5533834 0.5284142 0.2210581 +0.5611974 0.5284142 0.2210581 +0.5687816 0.5284142 0.2210581 +0.092819 0.5370079 0.2210581 +0.1056428 0.5370079 0.2210581 +0.1201537 0.5370079 0.2210581 +0.1409607 0.5370079 0.2210581 +0.1678172 0.5370079 0.2210581 +0.1950164 0.5370079 0.2210581 +0.2210581 0.5370079 0.2210581 +0.245636 0.5370079 0.2210581 +0.2686816 0.5370079 0.2210581 +0.2902431 0.5370079 0.2210581 +0.3104189 0.5370079 0.2210581 +0.3293248 0.5370079 0.2210581 +0.3470774 0.5370079 0.2210581 +0.3637862 0.5370079 0.2210581 +0.3795513 0.5370079 0.2210581 +0.3944623 0.5370079 0.2210581 +0.4085988 0.5370079 0.2210581 +0.4220313 0.5370079 0.2210581 +0.4348222 0.5370079 0.2210581 +0.4470264 0.5370079 0.2210581 +0.4586928 0.5370079 0.2210581 +0.4698649 0.5370079 0.2210581 +0.4805811 0.5370079 0.2210581 +0.490876 0.5370079 0.2210581 +0.5007803 0.5370079 0.2210581 +0.510322 0.5370079 0.2210581 +0.5195258 0.5370079 0.2210581 +0.5284142 0.5370079 0.2210581 +0.5370079 0.5370079 0.2210581 +0.5453253 0.5370079 0.2210581 +0.5533834 0.5370079 0.2210581 +0.5611974 0.5370079 0.2210581 +0.5687816 0.5370079 0.2210581 +0.092819 0.5453253 0.2210581 +0.1056428 0.5453253 0.2210581 +0.1201537 0.5453253 0.2210581 +0.1409607 0.5453253 0.2210581 +0.1678172 0.5453253 0.2210581 +0.1950164 0.5453253 0.2210581 +0.2210581 0.5453253 0.2210581 +0.245636 0.5453253 0.2210581 +0.2686816 0.5453253 0.2210581 +0.2902431 0.5453253 0.2210581 +0.3104189 0.5453253 0.2210581 +0.3293248 0.5453253 0.2210581 +0.3470774 0.5453253 0.2210581 +0.3637862 0.5453253 0.2210581 +0.3795513 0.5453253 0.2210581 +0.3944623 0.5453253 0.2210581 +0.4085988 0.5453253 0.2210581 +0.4220313 0.5453253 0.2210581 +0.4348222 0.5453253 0.2210581 +0.4470264 0.5453253 0.2210581 +0.4586928 0.5453253 0.2210581 +0.4698649 0.5453253 0.2210581 +0.4805811 0.5453253 0.2210581 +0.490876 0.5453253 0.2210581 +0.5007803 0.5453253 0.2210581 +0.510322 0.5453253 0.2210581 +0.5195258 0.5453253 0.2210581 +0.5284142 0.5453253 0.2210581 +0.5370079 0.5453253 0.2210581 +0.5453253 0.5453253 0.2210581 +0.5533834 0.5453253 0.2210581 +0.5611974 0.5453253 0.2210581 +0.5687816 0.5453253 0.2210581 +0.092819 0.5533834 0.2210581 +0.1056428 0.5533834 0.2210581 +0.1201537 0.5533834 0.2210581 +0.1409607 0.5533834 0.2210581 +0.1678172 0.5533834 0.2210581 +0.1950164 0.5533834 0.2210581 +0.2210581 0.5533834 0.2210581 +0.245636 0.5533834 0.2210581 +0.2686816 0.5533834 0.2210581 +0.2902431 0.5533834 0.2210581 +0.3104189 0.5533834 0.2210581 +0.3293248 0.5533834 0.2210581 +0.3470774 0.5533834 0.2210581 +0.3637862 0.5533834 0.2210581 +0.3795513 0.5533834 0.2210581 +0.3944623 0.5533834 0.2210581 +0.4085988 0.5533834 0.2210581 +0.4220313 0.5533834 0.2210581 +0.4348222 0.5533834 0.2210581 +0.4470264 0.5533834 0.2210581 +0.4586928 0.5533834 0.2210581 +0.4698649 0.5533834 0.2210581 +0.4805811 0.5533834 0.2210581 +0.490876 0.5533834 0.2210581 +0.5007803 0.5533834 0.2210581 +0.510322 0.5533834 0.2210581 +0.5195258 0.5533834 0.2210581 +0.5284142 0.5533834 0.2210581 +0.5370079 0.5533834 0.2210581 +0.5453253 0.5533834 0.2210581 +0.5533834 0.5533834 0.2210581 +0.5611974 0.5533834 0.2210581 +0.5687816 0.5533834 0.2210581 +0.092819 0.5611974 0.2210581 +0.1056428 0.5611974 0.2210581 +0.1201537 0.5611974 0.2210581 +0.1409607 0.5611974 0.2210581 +0.1678172 0.5611974 0.2210581 +0.1950164 0.5611974 0.2210581 +0.2210581 0.5611974 0.2210581 +0.245636 0.5611974 0.2210581 +0.2686816 0.5611974 0.2210581 +0.2902431 0.5611974 0.2210581 +0.3104189 0.5611974 0.2210581 +0.3293248 0.5611974 0.2210581 +0.3470774 0.5611974 0.2210581 +0.3637862 0.5611974 0.2210581 +0.3795513 0.5611974 0.2210581 +0.3944623 0.5611974 0.2210581 +0.4085988 0.5611974 0.2210581 +0.4220313 0.5611974 0.2210581 +0.4348222 0.5611974 0.2210581 +0.4470264 0.5611974 0.2210581 +0.4586928 0.5611974 0.2210581 +0.4698649 0.5611974 0.2210581 +0.4805811 0.5611974 0.2210581 +0.490876 0.5611974 0.2210581 +0.5007803 0.5611974 0.2210581 +0.510322 0.5611974 0.2210581 +0.5195258 0.5611974 0.2210581 +0.5284142 0.5611974 0.2210581 +0.5370079 0.5611974 0.2210581 +0.5453253 0.5611974 0.2210581 +0.5533834 0.5611974 0.2210581 +0.5611974 0.5611974 0.2210581 +0.5687816 0.5611974 0.2210581 +0.092819 0.5687816 0.2210581 +0.1056428 0.5687816 0.2210581 +0.1201537 0.5687816 0.2210581 +0.1409607 0.5687816 0.2210581 +0.1678172 0.5687816 0.2210581 +0.1950164 0.5687816 0.2210581 +0.2210581 0.5687816 0.2210581 +0.245636 0.5687816 0.2210581 +0.2686816 0.5687816 0.2210581 +0.2902431 0.5687816 0.2210581 +0.3104189 0.5687816 0.2210581 +0.3293248 0.5687816 0.2210581 +0.3470774 0.5687816 0.2210581 +0.3637862 0.5687816 0.2210581 +0.3795513 0.5687816 0.2210581 +0.3944623 0.5687816 0.2210581 +0.4085988 0.5687816 0.2210581 +0.4220313 0.5687816 0.2210581 +0.4348222 0.5687816 0.2210581 +0.4470264 0.5687816 0.2210581 +0.4586928 0.5687816 0.2210581 +0.4698649 0.5687816 0.2210581 +0.4805811 0.5687816 0.2210581 +0.490876 0.5687816 0.2210581 +0.5007803 0.5687816 0.2210581 +0.510322 0.5687816 0.2210581 +0.5195258 0.5687816 0.2210581 +0.5284142 0.5687816 0.2210581 +0.5370079 0.5687816 0.2210581 +0.5453253 0.5687816 0.2210581 +0.5533834 0.5687816 0.2210581 +0.5611974 0.5687816 0.2210581 +0.5687816 0.5687816 0.2210581 +0.092819 0.092819 0.245636 +0.1056428 0.092819 0.245636 +0.1201537 0.092819 0.245636 +0.1409607 0.092819 0.245636 +0.1678172 0.092819 0.245636 +0.1950164 0.092819 0.245636 +0.2210581 0.092819 0.245636 +0.245636 0.092819 0.245636 +0.2686816 0.092819 0.245636 +0.2902431 0.092819 0.245636 +0.3104189 0.092819 0.245636 +0.3293248 0.092819 0.245636 +0.3470774 0.092819 0.245636 +0.3637862 0.092819 0.245636 +0.3795513 0.092819 0.245636 +0.3944623 0.092819 0.245636 +0.4085988 0.092819 0.245636 +0.4220313 0.092819 0.245636 +0.4348222 0.092819 0.245636 +0.4470264 0.092819 0.245636 +0.4586928 0.092819 0.245636 +0.4698649 0.092819 0.245636 +0.4805811 0.092819 0.245636 +0.490876 0.092819 0.245636 +0.5007803 0.092819 0.245636 +0.510322 0.092819 0.245636 +0.5195258 0.092819 0.245636 +0.5284142 0.092819 0.245636 +0.5370079 0.092819 0.245636 +0.5453253 0.092819 0.245636 +0.5533834 0.092819 0.245636 +0.5611974 0.092819 0.245636 +0.5687816 0.092819 0.245636 +0.092819 0.1056428 0.245636 +0.1056428 0.1056428 0.245636 +0.1201537 0.1056428 0.245636 +0.1409607 0.1056428 0.245636 +0.1678172 0.1056428 0.245636 +0.1950164 0.1056428 0.245636 +0.2210581 0.1056428 0.245636 +0.245636 0.1056428 0.245636 +0.2686816 0.1056428 0.245636 +0.2902431 0.1056428 0.245636 +0.3104189 0.1056428 0.245636 +0.3293248 0.1056428 0.245636 +0.3470774 0.1056428 0.245636 +0.3637862 0.1056428 0.245636 +0.3795513 0.1056428 0.245636 +0.3944623 0.1056428 0.245636 +0.4085988 0.1056428 0.245636 +0.4220313 0.1056428 0.245636 +0.4348222 0.1056428 0.245636 +0.4470264 0.1056428 0.245636 +0.4586928 0.1056428 0.245636 +0.4698649 0.1056428 0.245636 +0.4805811 0.1056428 0.245636 +0.490876 0.1056428 0.245636 +0.5007803 0.1056428 0.245636 +0.510322 0.1056428 0.245636 +0.5195258 0.1056428 0.245636 +0.5284142 0.1056428 0.245636 +0.5370079 0.1056428 0.245636 +0.5453253 0.1056428 0.245636 +0.5533834 0.1056428 0.245636 +0.5611974 0.1056428 0.245636 +0.5687816 0.1056428 0.245636 +0.092819 0.1201537 0.245636 +0.1056428 0.1201537 0.245636 +0.1201537 0.1201537 0.245636 +0.1409607 0.1201537 0.245636 +0.1678172 0.1201537 0.245636 +0.1950164 0.1201537 0.245636 +0.2210581 0.1201537 0.245636 +0.245636 0.1201537 0.245636 +0.2686816 0.1201537 0.245636 +0.2902431 0.1201537 0.245636 +0.3104189 0.1201537 0.245636 +0.3293248 0.1201537 0.245636 +0.3470774 0.1201537 0.245636 +0.3637862 0.1201537 0.245636 +0.3795513 0.1201537 0.245636 +0.3944623 0.1201537 0.245636 +0.4085988 0.1201537 0.245636 +0.4220313 0.1201537 0.245636 +0.4348222 0.1201537 0.245636 +0.4470264 0.1201537 0.245636 +0.4586928 0.1201537 0.245636 +0.4698649 0.1201537 0.245636 +0.4805811 0.1201537 0.245636 +0.490876 0.1201537 0.245636 +0.5007803 0.1201537 0.245636 +0.510322 0.1201537 0.245636 +0.5195258 0.1201537 0.245636 +0.5284142 0.1201537 0.245636 +0.5370079 0.1201537 0.245636 +0.5453253 0.1201537 0.245636 +0.5533834 0.1201537 0.245636 +0.5611974 0.1201537 0.245636 +0.5687816 0.1201537 0.245636 +0.092819 0.1409607 0.245636 +0.1056428 0.1409607 0.245636 +0.1201537 0.1409607 0.245636 +0.1409607 0.1409607 0.245636 +0.1678172 0.1409607 0.245636 +0.1950164 0.1409607 0.245636 +0.2210581 0.1409607 0.245636 +0.245636 0.1409607 0.245636 +0.2686816 0.1409607 0.245636 +0.2902431 0.1409607 0.245636 +0.3104189 0.1409607 0.245636 +0.3293248 0.1409607 0.245636 +0.3470774 0.1409607 0.245636 +0.3637862 0.1409607 0.245636 +0.3795513 0.1409607 0.245636 +0.3944623 0.1409607 0.245636 +0.4085988 0.1409607 0.245636 +0.4220313 0.1409607 0.245636 +0.4348222 0.1409607 0.245636 +0.4470264 0.1409607 0.245636 +0.4586928 0.1409607 0.245636 +0.4698649 0.1409607 0.245636 +0.4805811 0.1409607 0.245636 +0.490876 0.1409607 0.245636 +0.5007803 0.1409607 0.245636 +0.510322 0.1409607 0.245636 +0.5195258 0.1409607 0.245636 +0.5284142 0.1409607 0.245636 +0.5370079 0.1409607 0.245636 +0.5453253 0.1409607 0.245636 +0.5533834 0.1409607 0.245636 +0.5611974 0.1409607 0.245636 +0.5687816 0.1409607 0.245636 +0.092819 0.1678172 0.245636 +0.1056428 0.1678172 0.245636 +0.1201537 0.1678172 0.245636 +0.1409607 0.1678172 0.245636 +0.1678172 0.1678172 0.245636 +0.1950164 0.1678172 0.245636 +0.2210581 0.1678172 0.245636 +0.245636 0.1678172 0.245636 +0.2686816 0.1678172 0.245636 +0.2902431 0.1678172 0.245636 +0.3104189 0.1678172 0.245636 +0.3293248 0.1678172 0.245636 +0.3470774 0.1678172 0.245636 +0.3637862 0.1678172 0.245636 +0.3795513 0.1678172 0.245636 +0.3944623 0.1678172 0.245636 +0.4085988 0.1678172 0.245636 +0.4220313 0.1678172 0.245636 +0.4348222 0.1678172 0.245636 +0.4470264 0.1678172 0.245636 +0.4586928 0.1678172 0.245636 +0.4698649 0.1678172 0.245636 +0.4805811 0.1678172 0.245636 +0.490876 0.1678172 0.245636 +0.5007803 0.1678172 0.245636 +0.510322 0.1678172 0.245636 +0.5195258 0.1678172 0.245636 +0.5284142 0.1678172 0.245636 +0.5370079 0.1678172 0.245636 +0.5453253 0.1678172 0.245636 +0.5533834 0.1678172 0.245636 +0.5611974 0.1678172 0.245636 +0.5687816 0.1678172 0.245636 +0.092819 0.1950164 0.245636 +0.1056428 0.1950164 0.245636 +0.1201537 0.1950164 0.245636 +0.1409607 0.1950164 0.245636 +0.1678172 0.1950164 0.245636 +0.1950164 0.1950164 0.245636 +0.2210581 0.1950164 0.245636 +0.245636 0.1950164 0.245636 +0.2686816 0.1950164 0.245636 +0.2902431 0.1950164 0.245636 +0.3104189 0.1950164 0.245636 +0.3293248 0.1950164 0.245636 +0.3470774 0.1950164 0.245636 +0.3637862 0.1950164 0.245636 +0.3795513 0.1950164 0.245636 +0.3944623 0.1950164 0.245636 +0.4085988 0.1950164 0.245636 +0.4220313 0.1950164 0.245636 +0.4348222 0.1950164 0.245636 +0.4470264 0.1950164 0.245636 +0.4586928 0.1950164 0.245636 +0.4698649 0.1950164 0.245636 +0.4805811 0.1950164 0.245636 +0.490876 0.1950164 0.245636 +0.5007803 0.1950164 0.245636 +0.510322 0.1950164 0.245636 +0.5195258 0.1950164 0.245636 +0.5284142 0.1950164 0.245636 +0.5370079 0.1950164 0.245636 +0.5453253 0.1950164 0.245636 +0.5533834 0.1950164 0.245636 +0.5611974 0.1950164 0.245636 +0.5687816 0.1950164 0.245636 +0.092819 0.2210581 0.245636 +0.1056428 0.2210581 0.245636 +0.1201537 0.2210581 0.245636 +0.1409607 0.2210581 0.245636 +0.1678172 0.2210581 0.245636 +0.1950164 0.2210581 0.245636 +0.2210581 0.2210581 0.245636 +0.245636 0.2210581 0.245636 +0.2686816 0.2210581 0.245636 +0.2902431 0.2210581 0.245636 +0.3104189 0.2210581 0.245636 +0.3293248 0.2210581 0.245636 +0.3470774 0.2210581 0.245636 +0.3637862 0.2210581 0.245636 +0.3795513 0.2210581 0.245636 +0.3944623 0.2210581 0.245636 +0.4085988 0.2210581 0.245636 +0.4220313 0.2210581 0.245636 +0.4348222 0.2210581 0.245636 +0.4470264 0.2210581 0.245636 +0.4586928 0.2210581 0.245636 +0.4698649 0.2210581 0.245636 +0.4805811 0.2210581 0.245636 +0.490876 0.2210581 0.245636 +0.5007803 0.2210581 0.245636 +0.510322 0.2210581 0.245636 +0.5195258 0.2210581 0.245636 +0.5284142 0.2210581 0.245636 +0.5370079 0.2210581 0.245636 +0.5453253 0.2210581 0.245636 +0.5533834 0.2210581 0.245636 +0.5611974 0.2210581 0.245636 +0.5687816 0.2210581 0.245636 +0.092819 0.245636 0.245636 +0.1056428 0.245636 0.245636 +0.1201537 0.245636 0.245636 +0.1409607 0.245636 0.245636 +0.1678172 0.245636 0.245636 +0.1950164 0.245636 0.245636 +0.2210581 0.245636 0.245636 +0.245636 0.245636 0.245636 +0.2686816 0.245636 0.245636 +0.2902431 0.245636 0.245636 +0.3104189 0.245636 0.245636 +0.3293248 0.245636 0.245636 +0.3470774 0.245636 0.245636 +0.3637862 0.245636 0.245636 +0.3795513 0.245636 0.245636 +0.3944623 0.245636 0.245636 +0.4085988 0.245636 0.245636 +0.4220313 0.245636 0.245636 +0.4348222 0.245636 0.245636 +0.4470264 0.245636 0.245636 +0.4586928 0.245636 0.245636 +0.4698649 0.245636 0.245636 +0.4805811 0.245636 0.245636 +0.490876 0.245636 0.245636 +0.5007803 0.245636 0.245636 +0.510322 0.245636 0.245636 +0.5195258 0.245636 0.245636 +0.5284142 0.245636 0.245636 +0.5370079 0.245636 0.245636 +0.5453253 0.245636 0.245636 +0.5533834 0.245636 0.245636 +0.5611974 0.245636 0.245636 +0.5687816 0.245636 0.245636 +0.092819 0.2686816 0.245636 +0.1056428 0.2686816 0.245636 +0.1201537 0.2686816 0.245636 +0.1409607 0.2686816 0.245636 +0.1678172 0.2686816 0.245636 +0.1950164 0.2686816 0.245636 +0.2210581 0.2686816 0.245636 +0.245636 0.2686816 0.245636 +0.2686816 0.2686816 0.245636 +0.2902431 0.2686816 0.245636 +0.3104189 0.2686816 0.245636 +0.3293248 0.2686816 0.245636 +0.3470774 0.2686816 0.245636 +0.3637862 0.2686816 0.245636 +0.3795513 0.2686816 0.245636 +0.3944623 0.2686816 0.245636 +0.4085988 0.2686816 0.245636 +0.4220313 0.2686816 0.245636 +0.4348222 0.2686816 0.245636 +0.4470264 0.2686816 0.245636 +0.4586928 0.2686816 0.245636 +0.4698649 0.2686816 0.245636 +0.4805811 0.2686816 0.245636 +0.490876 0.2686816 0.245636 +0.5007803 0.2686816 0.245636 +0.510322 0.2686816 0.245636 +0.5195258 0.2686816 0.245636 +0.5284142 0.2686816 0.245636 +0.5370079 0.2686816 0.245636 +0.5453253 0.2686816 0.245636 +0.5533834 0.2686816 0.245636 +0.5611974 0.2686816 0.245636 +0.5687816 0.2686816 0.245636 +0.092819 0.2902431 0.245636 +0.1056428 0.2902431 0.245636 +0.1201537 0.2902431 0.245636 +0.1409607 0.2902431 0.245636 +0.1678172 0.2902431 0.245636 +0.1950164 0.2902431 0.245636 +0.2210581 0.2902431 0.245636 +0.245636 0.2902431 0.245636 +0.2686816 0.2902431 0.245636 +0.2902431 0.2902431 0.245636 +0.3104189 0.2902431 0.245636 +0.3293248 0.2902431 0.245636 +0.3470774 0.2902431 0.245636 +0.3637862 0.2902431 0.245636 +0.3795513 0.2902431 0.245636 +0.3944623 0.2902431 0.245636 +0.4085988 0.2902431 0.245636 +0.4220313 0.2902431 0.245636 +0.4348222 0.2902431 0.245636 +0.4470264 0.2902431 0.245636 +0.4586928 0.2902431 0.245636 +0.4698649 0.2902431 0.245636 +0.4805811 0.2902431 0.245636 +0.490876 0.2902431 0.245636 +0.5007803 0.2902431 0.245636 +0.510322 0.2902431 0.245636 +0.5195258 0.2902431 0.245636 +0.5284142 0.2902431 0.245636 +0.5370079 0.2902431 0.245636 +0.5453253 0.2902431 0.245636 +0.5533834 0.2902431 0.245636 +0.5611974 0.2902431 0.245636 +0.5687816 0.2902431 0.245636 +0.092819 0.3104189 0.245636 +0.1056428 0.3104189 0.245636 +0.1201537 0.3104189 0.245636 +0.1409607 0.3104189 0.245636 +0.1678172 0.3104189 0.245636 +0.1950164 0.3104189 0.245636 +0.2210581 0.3104189 0.245636 +0.245636 0.3104189 0.245636 +0.2686816 0.3104189 0.245636 +0.2902431 0.3104189 0.245636 +0.3104189 0.3104189 0.245636 +0.3293248 0.3104189 0.245636 +0.3470774 0.3104189 0.245636 +0.3637862 0.3104189 0.245636 +0.3795513 0.3104189 0.245636 +0.3944623 0.3104189 0.245636 +0.4085988 0.3104189 0.245636 +0.4220313 0.3104189 0.245636 +0.4348222 0.3104189 0.245636 +0.4470264 0.3104189 0.245636 +0.4586928 0.3104189 0.245636 +0.4698649 0.3104189 0.245636 +0.4805811 0.3104189 0.245636 +0.490876 0.3104189 0.245636 +0.5007803 0.3104189 0.245636 +0.510322 0.3104189 0.245636 +0.5195258 0.3104189 0.245636 +0.5284142 0.3104189 0.245636 +0.5370079 0.3104189 0.245636 +0.5453253 0.3104189 0.245636 +0.5533834 0.3104189 0.245636 +0.5611974 0.3104189 0.245636 +0.5687816 0.3104189 0.245636 +0.092819 0.3293248 0.245636 +0.1056428 0.3293248 0.245636 +0.1201537 0.3293248 0.245636 +0.1409607 0.3293248 0.245636 +0.1678172 0.3293248 0.245636 +0.1950164 0.3293248 0.245636 +0.2210581 0.3293248 0.245636 +0.245636 0.3293248 0.245636 +0.2686816 0.3293248 0.245636 +0.2902431 0.3293248 0.245636 +0.3104189 0.3293248 0.245636 +0.3293248 0.3293248 0.245636 +0.3470774 0.3293248 0.245636 +0.3637862 0.3293248 0.245636 +0.3795513 0.3293248 0.245636 +0.3944623 0.3293248 0.245636 +0.4085988 0.3293248 0.245636 +0.4220313 0.3293248 0.245636 +0.4348222 0.3293248 0.245636 +0.4470264 0.3293248 0.245636 +0.4586928 0.3293248 0.245636 +0.4698649 0.3293248 0.245636 +0.4805811 0.3293248 0.245636 +0.490876 0.3293248 0.245636 +0.5007803 0.3293248 0.245636 +0.510322 0.3293248 0.245636 +0.5195258 0.3293248 0.245636 +0.5284142 0.3293248 0.245636 +0.5370079 0.3293248 0.245636 +0.5453253 0.3293248 0.245636 +0.5533834 0.3293248 0.245636 +0.5611974 0.3293248 0.245636 +0.5687816 0.3293248 0.245636 +0.092819 0.3470774 0.245636 +0.1056428 0.3470774 0.245636 +0.1201537 0.3470774 0.245636 +0.1409607 0.3470774 0.245636 +0.1678172 0.3470774 0.245636 +0.1950164 0.3470774 0.245636 +0.2210581 0.3470774 0.245636 +0.245636 0.3470774 0.245636 +0.2686816 0.3470774 0.245636 +0.2902431 0.3470774 0.245636 +0.3104189 0.3470774 0.245636 +0.3293248 0.3470774 0.245636 +0.3470774 0.3470774 0.245636 +0.3637862 0.3470774 0.245636 +0.3795513 0.3470774 0.245636 +0.3944623 0.3470774 0.245636 +0.4085988 0.3470774 0.245636 +0.4220313 0.3470774 0.245636 +0.4348222 0.3470774 0.245636 +0.4470264 0.3470774 0.245636 +0.4586928 0.3470774 0.245636 +0.4698649 0.3470774 0.245636 +0.4805811 0.3470774 0.245636 +0.490876 0.3470774 0.245636 +0.5007803 0.3470774 0.245636 +0.510322 0.3470774 0.245636 +0.5195258 0.3470774 0.245636 +0.5284142 0.3470774 0.245636 +0.5370079 0.3470774 0.245636 +0.5453253 0.3470774 0.245636 +0.5533834 0.3470774 0.245636 +0.5611974 0.3470774 0.245636 +0.5687816 0.3470774 0.245636 +0.092819 0.3637862 0.245636 +0.1056428 0.3637862 0.245636 +0.1201537 0.3637862 0.245636 +0.1409607 0.3637862 0.245636 +0.1678172 0.3637862 0.245636 +0.1950164 0.3637862 0.245636 +0.2210581 0.3637862 0.245636 +0.245636 0.3637862 0.245636 +0.2686816 0.3637862 0.245636 +0.2902431 0.3637862 0.245636 +0.3104189 0.3637862 0.245636 +0.3293248 0.3637862 0.245636 +0.3470774 0.3637862 0.245636 +0.3637862 0.3637862 0.245636 +0.3795513 0.3637862 0.245636 +0.3944623 0.3637862 0.245636 +0.4085988 0.3637862 0.245636 +0.4220313 0.3637862 0.245636 +0.4348222 0.3637862 0.245636 +0.4470264 0.3637862 0.245636 +0.4586928 0.3637862 0.245636 +0.4698649 0.3637862 0.245636 +0.4805811 0.3637862 0.245636 +0.490876 0.3637862 0.245636 +0.5007803 0.3637862 0.245636 +0.510322 0.3637862 0.245636 +0.5195258 0.3637862 0.245636 +0.5284142 0.3637862 0.245636 +0.5370079 0.3637862 0.245636 +0.5453253 0.3637862 0.245636 +0.5533834 0.3637862 0.245636 +0.5611974 0.3637862 0.245636 +0.5687816 0.3637862 0.245636 +0.092819 0.3795513 0.245636 +0.1056428 0.3795513 0.245636 +0.1201537 0.3795513 0.245636 +0.1409607 0.3795513 0.245636 +0.1678172 0.3795513 0.245636 +0.1950164 0.3795513 0.245636 +0.2210581 0.3795513 0.245636 +0.245636 0.3795513 0.245636 +0.2686816 0.3795513 0.245636 +0.2902431 0.3795513 0.245636 +0.3104189 0.3795513 0.245636 +0.3293248 0.3795513 0.245636 +0.3470774 0.3795513 0.245636 +0.3637862 0.3795513 0.245636 +0.3795513 0.3795513 0.245636 +0.3944623 0.3795513 0.245636 +0.4085988 0.3795513 0.245636 +0.4220313 0.3795513 0.245636 +0.4348222 0.3795513 0.245636 +0.4470264 0.3795513 0.245636 +0.4586928 0.3795513 0.245636 +0.4698649 0.3795513 0.245636 +0.4805811 0.3795513 0.245636 +0.490876 0.3795513 0.245636 +0.5007803 0.3795513 0.245636 +0.510322 0.3795513 0.245636 +0.5195258 0.3795513 0.245636 +0.5284142 0.3795513 0.245636 +0.5370079 0.3795513 0.245636 +0.5453253 0.3795513 0.245636 +0.5533834 0.3795513 0.245636 +0.5611974 0.3795513 0.245636 +0.5687816 0.3795513 0.245636 +0.092819 0.3944623 0.245636 +0.1056428 0.3944623 0.245636 +0.1201537 0.3944623 0.245636 +0.1409607 0.3944623 0.245636 +0.1678172 0.3944623 0.245636 +0.1950164 0.3944623 0.245636 +0.2210581 0.3944623 0.245636 +0.245636 0.3944623 0.245636 +0.2686816 0.3944623 0.245636 +0.2902431 0.3944623 0.245636 +0.3104189 0.3944623 0.245636 +0.3293248 0.3944623 0.245636 +0.3470774 0.3944623 0.245636 +0.3637862 0.3944623 0.245636 +0.3795513 0.3944623 0.245636 +0.3944623 0.3944623 0.245636 +0.4085988 0.3944623 0.245636 +0.4220313 0.3944623 0.245636 +0.4348222 0.3944623 0.245636 +0.4470264 0.3944623 0.245636 +0.4586928 0.3944623 0.245636 +0.4698649 0.3944623 0.245636 +0.4805811 0.3944623 0.245636 +0.490876 0.3944623 0.245636 +0.5007803 0.3944623 0.245636 +0.510322 0.3944623 0.245636 +0.5195258 0.3944623 0.245636 +0.5284142 0.3944623 0.245636 +0.5370079 0.3944623 0.245636 +0.5453253 0.3944623 0.245636 +0.5533834 0.3944623 0.245636 +0.5611974 0.3944623 0.245636 +0.5687816 0.3944623 0.245636 +0.092819 0.4085988 0.245636 +0.1056428 0.4085988 0.245636 +0.1201537 0.4085988 0.245636 +0.1409607 0.4085988 0.245636 +0.1678172 0.4085988 0.245636 +0.1950164 0.4085988 0.245636 +0.2210581 0.4085988 0.245636 +0.245636 0.4085988 0.245636 +0.2686816 0.4085988 0.245636 +0.2902431 0.4085988 0.245636 +0.3104189 0.4085988 0.245636 +0.3293248 0.4085988 0.245636 +0.3470774 0.4085988 0.245636 +0.3637862 0.4085988 0.245636 +0.3795513 0.4085988 0.245636 +0.3944623 0.4085988 0.245636 +0.4085988 0.4085988 0.245636 +0.4220313 0.4085988 0.245636 +0.4348222 0.4085988 0.245636 +0.4470264 0.4085988 0.245636 +0.4586928 0.4085988 0.245636 +0.4698649 0.4085988 0.245636 +0.4805811 0.4085988 0.245636 +0.490876 0.4085988 0.245636 +0.5007803 0.4085988 0.245636 +0.510322 0.4085988 0.245636 +0.5195258 0.4085988 0.245636 +0.5284142 0.4085988 0.245636 +0.5370079 0.4085988 0.245636 +0.5453253 0.4085988 0.245636 +0.5533834 0.4085988 0.245636 +0.5611974 0.4085988 0.245636 +0.5687816 0.4085988 0.245636 +0.092819 0.4220313 0.245636 +0.1056428 0.4220313 0.245636 +0.1201537 0.4220313 0.245636 +0.1409607 0.4220313 0.245636 +0.1678172 0.4220313 0.245636 +0.1950164 0.4220313 0.245636 +0.2210581 0.4220313 0.245636 +0.245636 0.4220313 0.245636 +0.2686816 0.4220313 0.245636 +0.2902431 0.4220313 0.245636 +0.3104189 0.4220313 0.245636 +0.3293248 0.4220313 0.245636 +0.3470774 0.4220313 0.245636 +0.3637862 0.4220313 0.245636 +0.3795513 0.4220313 0.245636 +0.3944623 0.4220313 0.245636 +0.4085988 0.4220313 0.245636 +0.4220313 0.4220313 0.245636 +0.4348222 0.4220313 0.245636 +0.4470264 0.4220313 0.245636 +0.4586928 0.4220313 0.245636 +0.4698649 0.4220313 0.245636 +0.4805811 0.4220313 0.245636 +0.490876 0.4220313 0.245636 +0.5007803 0.4220313 0.245636 +0.510322 0.4220313 0.245636 +0.5195258 0.4220313 0.245636 +0.5284142 0.4220313 0.245636 +0.5370079 0.4220313 0.245636 +0.5453253 0.4220313 0.245636 +0.5533834 0.4220313 0.245636 +0.5611974 0.4220313 0.245636 +0.5687816 0.4220313 0.245636 +0.092819 0.4348222 0.245636 +0.1056428 0.4348222 0.245636 +0.1201537 0.4348222 0.245636 +0.1409607 0.4348222 0.245636 +0.1678172 0.4348222 0.245636 +0.1950164 0.4348222 0.245636 +0.2210581 0.4348222 0.245636 +0.245636 0.4348222 0.245636 +0.2686816 0.4348222 0.245636 +0.2902431 0.4348222 0.245636 +0.3104189 0.4348222 0.245636 +0.3293248 0.4348222 0.245636 +0.3470774 0.4348222 0.245636 +0.3637862 0.4348222 0.245636 +0.3795513 0.4348222 0.245636 +0.3944623 0.4348222 0.245636 +0.4085988 0.4348222 0.245636 +0.4220313 0.4348222 0.245636 +0.4348222 0.4348222 0.245636 +0.4470264 0.4348222 0.245636 +0.4586928 0.4348222 0.245636 +0.4698649 0.4348222 0.245636 +0.4805811 0.4348222 0.245636 +0.490876 0.4348222 0.245636 +0.5007803 0.4348222 0.245636 +0.510322 0.4348222 0.245636 +0.5195258 0.4348222 0.245636 +0.5284142 0.4348222 0.245636 +0.5370079 0.4348222 0.245636 +0.5453253 0.4348222 0.245636 +0.5533834 0.4348222 0.245636 +0.5611974 0.4348222 0.245636 +0.5687816 0.4348222 0.245636 +0.092819 0.4470264 0.245636 +0.1056428 0.4470264 0.245636 +0.1201537 0.4470264 0.245636 +0.1409607 0.4470264 0.245636 +0.1678172 0.4470264 0.245636 +0.1950164 0.4470264 0.245636 +0.2210581 0.4470264 0.245636 +0.245636 0.4470264 0.245636 +0.2686816 0.4470264 0.245636 +0.2902431 0.4470264 0.245636 +0.3104189 0.4470264 0.245636 +0.3293248 0.4470264 0.245636 +0.3470774 0.4470264 0.245636 +0.3637862 0.4470264 0.245636 +0.3795513 0.4470264 0.245636 +0.3944623 0.4470264 0.245636 +0.4085988 0.4470264 0.245636 +0.4220313 0.4470264 0.245636 +0.4348222 0.4470264 0.245636 +0.4470264 0.4470264 0.245636 +0.4586928 0.4470264 0.245636 +0.4698649 0.4470264 0.245636 +0.4805811 0.4470264 0.245636 +0.490876 0.4470264 0.245636 +0.5007803 0.4470264 0.245636 +0.510322 0.4470264 0.245636 +0.5195258 0.4470264 0.245636 +0.5284142 0.4470264 0.245636 +0.5370079 0.4470264 0.245636 +0.5453253 0.4470264 0.245636 +0.5533834 0.4470264 0.245636 +0.5611974 0.4470264 0.245636 +0.5687816 0.4470264 0.245636 +0.092819 0.4586928 0.245636 +0.1056428 0.4586928 0.245636 +0.1201537 0.4586928 0.245636 +0.1409607 0.4586928 0.245636 +0.1678172 0.4586928 0.245636 +0.1950164 0.4586928 0.245636 +0.2210581 0.4586928 0.245636 +0.245636 0.4586928 0.245636 +0.2686816 0.4586928 0.245636 +0.2902431 0.4586928 0.245636 +0.3104189 0.4586928 0.245636 +0.3293248 0.4586928 0.245636 +0.3470774 0.4586928 0.245636 +0.3637862 0.4586928 0.245636 +0.3795513 0.4586928 0.245636 +0.3944623 0.4586928 0.245636 +0.4085988 0.4586928 0.245636 +0.4220313 0.4586928 0.245636 +0.4348222 0.4586928 0.245636 +0.4470264 0.4586928 0.245636 +0.4586928 0.4586928 0.245636 +0.4698649 0.4586928 0.245636 +0.4805811 0.4586928 0.245636 +0.490876 0.4586928 0.245636 +0.5007803 0.4586928 0.245636 +0.510322 0.4586928 0.245636 +0.5195258 0.4586928 0.245636 +0.5284142 0.4586928 0.245636 +0.5370079 0.4586928 0.245636 +0.5453253 0.4586928 0.245636 +0.5533834 0.4586928 0.245636 +0.5611974 0.4586928 0.245636 +0.5687816 0.4586928 0.245636 +0.092819 0.4698649 0.245636 +0.1056428 0.4698649 0.245636 +0.1201537 0.4698649 0.245636 +0.1409607 0.4698649 0.245636 +0.1678172 0.4698649 0.245636 +0.1950164 0.4698649 0.245636 +0.2210581 0.4698649 0.245636 +0.245636 0.4698649 0.245636 +0.2686816 0.4698649 0.245636 +0.2902431 0.4698649 0.245636 +0.3104189 0.4698649 0.245636 +0.3293248 0.4698649 0.245636 +0.3470774 0.4698649 0.245636 +0.3637862 0.4698649 0.245636 +0.3795513 0.4698649 0.245636 +0.3944623 0.4698649 0.245636 +0.4085988 0.4698649 0.245636 +0.4220313 0.4698649 0.245636 +0.4348222 0.4698649 0.245636 +0.4470264 0.4698649 0.245636 +0.4586928 0.4698649 0.245636 +0.4698649 0.4698649 0.245636 +0.4805811 0.4698649 0.245636 +0.490876 0.4698649 0.245636 +0.5007803 0.4698649 0.245636 +0.510322 0.4698649 0.245636 +0.5195258 0.4698649 0.245636 +0.5284142 0.4698649 0.245636 +0.5370079 0.4698649 0.245636 +0.5453253 0.4698649 0.245636 +0.5533834 0.4698649 0.245636 +0.5611974 0.4698649 0.245636 +0.5687816 0.4698649 0.245636 +0.092819 0.4805811 0.245636 +0.1056428 0.4805811 0.245636 +0.1201537 0.4805811 0.245636 +0.1409607 0.4805811 0.245636 +0.1678172 0.4805811 0.245636 +0.1950164 0.4805811 0.245636 +0.2210581 0.4805811 0.245636 +0.245636 0.4805811 0.245636 +0.2686816 0.4805811 0.245636 +0.2902431 0.4805811 0.245636 +0.3104189 0.4805811 0.245636 +0.3293248 0.4805811 0.245636 +0.3470774 0.4805811 0.245636 +0.3637862 0.4805811 0.245636 +0.3795513 0.4805811 0.245636 +0.3944623 0.4805811 0.245636 +0.4085988 0.4805811 0.245636 +0.4220313 0.4805811 0.245636 +0.4348222 0.4805811 0.245636 +0.4470264 0.4805811 0.245636 +0.4586928 0.4805811 0.245636 +0.4698649 0.4805811 0.245636 +0.4805811 0.4805811 0.245636 +0.490876 0.4805811 0.245636 +0.5007803 0.4805811 0.245636 +0.510322 0.4805811 0.245636 +0.5195258 0.4805811 0.245636 +0.5284142 0.4805811 0.245636 +0.5370079 0.4805811 0.245636 +0.5453253 0.4805811 0.245636 +0.5533834 0.4805811 0.245636 +0.5611974 0.4805811 0.245636 +0.5687816 0.4805811 0.245636 +0.092819 0.490876 0.245636 +0.1056428 0.490876 0.245636 +0.1201537 0.490876 0.245636 +0.1409607 0.490876 0.245636 +0.1678172 0.490876 0.245636 +0.1950164 0.490876 0.245636 +0.2210581 0.490876 0.245636 +0.245636 0.490876 0.245636 +0.2686816 0.490876 0.245636 +0.2902431 0.490876 0.245636 +0.3104189 0.490876 0.245636 +0.3293248 0.490876 0.245636 +0.3470774 0.490876 0.245636 +0.3637862 0.490876 0.245636 +0.3795513 0.490876 0.245636 +0.3944623 0.490876 0.245636 +0.4085988 0.490876 0.245636 +0.4220313 0.490876 0.245636 +0.4348222 0.490876 0.245636 +0.4470264 0.490876 0.245636 +0.4586928 0.490876 0.245636 +0.4698649 0.490876 0.245636 +0.4805811 0.490876 0.245636 +0.490876 0.490876 0.245636 +0.5007803 0.490876 0.245636 +0.510322 0.490876 0.245636 +0.5195258 0.490876 0.245636 +0.5284142 0.490876 0.245636 +0.5370079 0.490876 0.245636 +0.5453253 0.490876 0.245636 +0.5533834 0.490876 0.245636 +0.5611974 0.490876 0.245636 +0.5687816 0.490876 0.245636 +0.092819 0.5007803 0.245636 +0.1056428 0.5007803 0.245636 +0.1201537 0.5007803 0.245636 +0.1409607 0.5007803 0.245636 +0.1678172 0.5007803 0.245636 +0.1950164 0.5007803 0.245636 +0.2210581 0.5007803 0.245636 +0.245636 0.5007803 0.245636 +0.2686816 0.5007803 0.245636 +0.2902431 0.5007803 0.245636 +0.3104189 0.5007803 0.245636 +0.3293248 0.5007803 0.245636 +0.3470774 0.5007803 0.245636 +0.3637862 0.5007803 0.245636 +0.3795513 0.5007803 0.245636 +0.3944623 0.5007803 0.245636 +0.4085988 0.5007803 0.245636 +0.4220313 0.5007803 0.245636 +0.4348222 0.5007803 0.245636 +0.4470264 0.5007803 0.245636 +0.4586928 0.5007803 0.245636 +0.4698649 0.5007803 0.245636 +0.4805811 0.5007803 0.245636 +0.490876 0.5007803 0.245636 +0.5007803 0.5007803 0.245636 +0.510322 0.5007803 0.245636 +0.5195258 0.5007803 0.245636 +0.5284142 0.5007803 0.245636 +0.5370079 0.5007803 0.245636 +0.5453253 0.5007803 0.245636 +0.5533834 0.5007803 0.245636 +0.5611974 0.5007803 0.245636 +0.5687816 0.5007803 0.245636 +0.092819 0.510322 0.245636 +0.1056428 0.510322 0.245636 +0.1201537 0.510322 0.245636 +0.1409607 0.510322 0.245636 +0.1678172 0.510322 0.245636 +0.1950164 0.510322 0.245636 +0.2210581 0.510322 0.245636 +0.245636 0.510322 0.245636 +0.2686816 0.510322 0.245636 +0.2902431 0.510322 0.245636 +0.3104189 0.510322 0.245636 +0.3293248 0.510322 0.245636 +0.3470774 0.510322 0.245636 +0.3637862 0.510322 0.245636 +0.3795513 0.510322 0.245636 +0.3944623 0.510322 0.245636 +0.4085988 0.510322 0.245636 +0.4220313 0.510322 0.245636 +0.4348222 0.510322 0.245636 +0.4470264 0.510322 0.245636 +0.4586928 0.510322 0.245636 +0.4698649 0.510322 0.245636 +0.4805811 0.510322 0.245636 +0.490876 0.510322 0.245636 +0.5007803 0.510322 0.245636 +0.510322 0.510322 0.245636 +0.5195258 0.510322 0.245636 +0.5284142 0.510322 0.245636 +0.5370079 0.510322 0.245636 +0.5453253 0.510322 0.245636 +0.5533834 0.510322 0.245636 +0.5611974 0.510322 0.245636 +0.5687816 0.510322 0.245636 +0.092819 0.5195258 0.245636 +0.1056428 0.5195258 0.245636 +0.1201537 0.5195258 0.245636 +0.1409607 0.5195258 0.245636 +0.1678172 0.5195258 0.245636 +0.1950164 0.5195258 0.245636 +0.2210581 0.5195258 0.245636 +0.245636 0.5195258 0.245636 +0.2686816 0.5195258 0.245636 +0.2902431 0.5195258 0.245636 +0.3104189 0.5195258 0.245636 +0.3293248 0.5195258 0.245636 +0.3470774 0.5195258 0.245636 +0.3637862 0.5195258 0.245636 +0.3795513 0.5195258 0.245636 +0.3944623 0.5195258 0.245636 +0.4085988 0.5195258 0.245636 +0.4220313 0.5195258 0.245636 +0.4348222 0.5195258 0.245636 +0.4470264 0.5195258 0.245636 +0.4586928 0.5195258 0.245636 +0.4698649 0.5195258 0.245636 +0.4805811 0.5195258 0.245636 +0.490876 0.5195258 0.245636 +0.5007803 0.5195258 0.245636 +0.510322 0.5195258 0.245636 +0.5195258 0.5195258 0.245636 +0.5284142 0.5195258 0.245636 +0.5370079 0.5195258 0.245636 +0.5453253 0.5195258 0.245636 +0.5533834 0.5195258 0.245636 +0.5611974 0.5195258 0.245636 +0.5687816 0.5195258 0.245636 +0.092819 0.5284142 0.245636 +0.1056428 0.5284142 0.245636 +0.1201537 0.5284142 0.245636 +0.1409607 0.5284142 0.245636 +0.1678172 0.5284142 0.245636 +0.1950164 0.5284142 0.245636 +0.2210581 0.5284142 0.245636 +0.245636 0.5284142 0.245636 +0.2686816 0.5284142 0.245636 +0.2902431 0.5284142 0.245636 +0.3104189 0.5284142 0.245636 +0.3293248 0.5284142 0.245636 +0.3470774 0.5284142 0.245636 +0.3637862 0.5284142 0.245636 +0.3795513 0.5284142 0.245636 +0.3944623 0.5284142 0.245636 +0.4085988 0.5284142 0.245636 +0.4220313 0.5284142 0.245636 +0.4348222 0.5284142 0.245636 +0.4470264 0.5284142 0.245636 +0.4586928 0.5284142 0.245636 +0.4698649 0.5284142 0.245636 +0.4805811 0.5284142 0.245636 +0.490876 0.5284142 0.245636 +0.5007803 0.5284142 0.245636 +0.510322 0.5284142 0.245636 +0.5195258 0.5284142 0.245636 +0.5284142 0.5284142 0.245636 +0.5370079 0.5284142 0.245636 +0.5453253 0.5284142 0.245636 +0.5533834 0.5284142 0.245636 +0.5611974 0.5284142 0.245636 +0.5687816 0.5284142 0.245636 +0.092819 0.5370079 0.245636 +0.1056428 0.5370079 0.245636 +0.1201537 0.5370079 0.245636 +0.1409607 0.5370079 0.245636 +0.1678172 0.5370079 0.245636 +0.1950164 0.5370079 0.245636 +0.2210581 0.5370079 0.245636 +0.245636 0.5370079 0.245636 +0.2686816 0.5370079 0.245636 +0.2902431 0.5370079 0.245636 +0.3104189 0.5370079 0.245636 +0.3293248 0.5370079 0.245636 +0.3470774 0.5370079 0.245636 +0.3637862 0.5370079 0.245636 +0.3795513 0.5370079 0.245636 +0.3944623 0.5370079 0.245636 +0.4085988 0.5370079 0.245636 +0.4220313 0.5370079 0.245636 +0.4348222 0.5370079 0.245636 +0.4470264 0.5370079 0.245636 +0.4586928 0.5370079 0.245636 +0.4698649 0.5370079 0.245636 +0.4805811 0.5370079 0.245636 +0.490876 0.5370079 0.245636 +0.5007803 0.5370079 0.245636 +0.510322 0.5370079 0.245636 +0.5195258 0.5370079 0.245636 +0.5284142 0.5370079 0.245636 +0.5370079 0.5370079 0.245636 +0.5453253 0.5370079 0.245636 +0.5533834 0.5370079 0.245636 +0.5611974 0.5370079 0.245636 +0.5687816 0.5370079 0.245636 +0.092819 0.5453253 0.245636 +0.1056428 0.5453253 0.245636 +0.1201537 0.5453253 0.245636 +0.1409607 0.5453253 0.245636 +0.1678172 0.5453253 0.245636 +0.1950164 0.5453253 0.245636 +0.2210581 0.5453253 0.245636 +0.245636 0.5453253 0.245636 +0.2686816 0.5453253 0.245636 +0.2902431 0.5453253 0.245636 +0.3104189 0.5453253 0.245636 +0.3293248 0.5453253 0.245636 +0.3470774 0.5453253 0.245636 +0.3637862 0.5453253 0.245636 +0.3795513 0.5453253 0.245636 +0.3944623 0.5453253 0.245636 +0.4085988 0.5453253 0.245636 +0.4220313 0.5453253 0.245636 +0.4348222 0.5453253 0.245636 +0.4470264 0.5453253 0.245636 +0.4586928 0.5453253 0.245636 +0.4698649 0.5453253 0.245636 +0.4805811 0.5453253 0.245636 +0.490876 0.5453253 0.245636 +0.5007803 0.5453253 0.245636 +0.510322 0.5453253 0.245636 +0.5195258 0.5453253 0.245636 +0.5284142 0.5453253 0.245636 +0.5370079 0.5453253 0.245636 +0.5453253 0.5453253 0.245636 +0.5533834 0.5453253 0.245636 +0.5611974 0.5453253 0.245636 +0.5687816 0.5453253 0.245636 +0.092819 0.5533834 0.245636 +0.1056428 0.5533834 0.245636 +0.1201537 0.5533834 0.245636 +0.1409607 0.5533834 0.245636 +0.1678172 0.5533834 0.245636 +0.1950164 0.5533834 0.245636 +0.2210581 0.5533834 0.245636 +0.245636 0.5533834 0.245636 +0.2686816 0.5533834 0.245636 +0.2902431 0.5533834 0.245636 +0.3104189 0.5533834 0.245636 +0.3293248 0.5533834 0.245636 +0.3470774 0.5533834 0.245636 +0.3637862 0.5533834 0.245636 +0.3795513 0.5533834 0.245636 +0.3944623 0.5533834 0.245636 +0.4085988 0.5533834 0.245636 +0.4220313 0.5533834 0.245636 +0.4348222 0.5533834 0.245636 +0.4470264 0.5533834 0.245636 +0.4586928 0.5533834 0.245636 +0.4698649 0.5533834 0.245636 +0.4805811 0.5533834 0.245636 +0.490876 0.5533834 0.245636 +0.5007803 0.5533834 0.245636 +0.510322 0.5533834 0.245636 +0.5195258 0.5533834 0.245636 +0.5284142 0.5533834 0.245636 +0.5370079 0.5533834 0.245636 +0.5453253 0.5533834 0.245636 +0.5533834 0.5533834 0.245636 +0.5611974 0.5533834 0.245636 +0.5687816 0.5533834 0.245636 +0.092819 0.5611974 0.245636 +0.1056428 0.5611974 0.245636 +0.1201537 0.5611974 0.245636 +0.1409607 0.5611974 0.245636 +0.1678172 0.5611974 0.245636 +0.1950164 0.5611974 0.245636 +0.2210581 0.5611974 0.245636 +0.245636 0.5611974 0.245636 +0.2686816 0.5611974 0.245636 +0.2902431 0.5611974 0.245636 +0.3104189 0.5611974 0.245636 +0.3293248 0.5611974 0.245636 +0.3470774 0.5611974 0.245636 +0.3637862 0.5611974 0.245636 +0.3795513 0.5611974 0.245636 +0.3944623 0.5611974 0.245636 +0.4085988 0.5611974 0.245636 +0.4220313 0.5611974 0.245636 +0.4348222 0.5611974 0.245636 +0.4470264 0.5611974 0.245636 +0.4586928 0.5611974 0.245636 +0.4698649 0.5611974 0.245636 +0.4805811 0.5611974 0.245636 +0.490876 0.5611974 0.245636 +0.5007803 0.5611974 0.245636 +0.510322 0.5611974 0.245636 +0.5195258 0.5611974 0.245636 +0.5284142 0.5611974 0.245636 +0.5370079 0.5611974 0.245636 +0.5453253 0.5611974 0.245636 +0.5533834 0.5611974 0.245636 +0.5611974 0.5611974 0.245636 +0.5687816 0.5611974 0.245636 +0.092819 0.5687816 0.245636 +0.1056428 0.5687816 0.245636 +0.1201537 0.5687816 0.245636 +0.1409607 0.5687816 0.245636 +0.1678172 0.5687816 0.245636 +0.1950164 0.5687816 0.245636 +0.2210581 0.5687816 0.245636 +0.245636 0.5687816 0.245636 +0.2686816 0.5687816 0.245636 +0.2902431 0.5687816 0.245636 +0.3104189 0.5687816 0.245636 +0.3293248 0.5687816 0.245636 +0.3470774 0.5687816 0.245636 +0.3637862 0.5687816 0.245636 +0.3795513 0.5687816 0.245636 +0.3944623 0.5687816 0.245636 +0.4085988 0.5687816 0.245636 +0.4220313 0.5687816 0.245636 +0.4348222 0.5687816 0.245636 +0.4470264 0.5687816 0.245636 +0.4586928 0.5687816 0.245636 +0.4698649 0.5687816 0.245636 +0.4805811 0.5687816 0.245636 +0.490876 0.5687816 0.245636 +0.5007803 0.5687816 0.245636 +0.510322 0.5687816 0.245636 +0.5195258 0.5687816 0.245636 +0.5284142 0.5687816 0.245636 +0.5370079 0.5687816 0.245636 +0.5453253 0.5687816 0.245636 +0.5533834 0.5687816 0.245636 +0.5611974 0.5687816 0.245636 +0.5687816 0.5687816 0.245636 +0.092819 0.092819 0.2686816 +0.1056428 0.092819 0.2686816 +0.1201537 0.092819 0.2686816 +0.1409607 0.092819 0.2686816 +0.1678172 0.092819 0.2686816 +0.1950164 0.092819 0.2686816 +0.2210581 0.092819 0.2686816 +0.245636 0.092819 0.2686816 +0.2686816 0.092819 0.2686816 +0.2902431 0.092819 0.2686816 +0.3104189 0.092819 0.2686816 +0.3293248 0.092819 0.2686816 +0.3470774 0.092819 0.2686816 +0.3637862 0.092819 0.2686816 +0.3795513 0.092819 0.2686816 +0.3944623 0.092819 0.2686816 +0.4085988 0.092819 0.2686816 +0.4220313 0.092819 0.2686816 +0.4348222 0.092819 0.2686816 +0.4470264 0.092819 0.2686816 +0.4586928 0.092819 0.2686816 +0.4698649 0.092819 0.2686816 +0.4805811 0.092819 0.2686816 +0.490876 0.092819 0.2686816 +0.5007803 0.092819 0.2686816 +0.510322 0.092819 0.2686816 +0.5195258 0.092819 0.2686816 +0.5284142 0.092819 0.2686816 +0.5370079 0.092819 0.2686816 +0.5453253 0.092819 0.2686816 +0.5533834 0.092819 0.2686816 +0.5611974 0.092819 0.2686816 +0.5687816 0.092819 0.2686816 +0.092819 0.1056428 0.2686816 +0.1056428 0.1056428 0.2686816 +0.1201537 0.1056428 0.2686816 +0.1409607 0.1056428 0.2686816 +0.1678172 0.1056428 0.2686816 +0.1950164 0.1056428 0.2686816 +0.2210581 0.1056428 0.2686816 +0.245636 0.1056428 0.2686816 +0.2686816 0.1056428 0.2686816 +0.2902431 0.1056428 0.2686816 +0.3104189 0.1056428 0.2686816 +0.3293248 0.1056428 0.2686816 +0.3470774 0.1056428 0.2686816 +0.3637862 0.1056428 0.2686816 +0.3795513 0.1056428 0.2686816 +0.3944623 0.1056428 0.2686816 +0.4085988 0.1056428 0.2686816 +0.4220313 0.1056428 0.2686816 +0.4348222 0.1056428 0.2686816 +0.4470264 0.1056428 0.2686816 +0.4586928 0.1056428 0.2686816 +0.4698649 0.1056428 0.2686816 +0.4805811 0.1056428 0.2686816 +0.490876 0.1056428 0.2686816 +0.5007803 0.1056428 0.2686816 +0.510322 0.1056428 0.2686816 +0.5195258 0.1056428 0.2686816 +0.5284142 0.1056428 0.2686816 +0.5370079 0.1056428 0.2686816 +0.5453253 0.1056428 0.2686816 +0.5533834 0.1056428 0.2686816 +0.5611974 0.1056428 0.2686816 +0.5687816 0.1056428 0.2686816 +0.092819 0.1201537 0.2686816 +0.1056428 0.1201537 0.2686816 +0.1201537 0.1201537 0.2686816 +0.1409607 0.1201537 0.2686816 +0.1678172 0.1201537 0.2686816 +0.1950164 0.1201537 0.2686816 +0.2210581 0.1201537 0.2686816 +0.245636 0.1201537 0.2686816 +0.2686816 0.1201537 0.2686816 +0.2902431 0.1201537 0.2686816 +0.3104189 0.1201537 0.2686816 +0.3293248 0.1201537 0.2686816 +0.3470774 0.1201537 0.2686816 +0.3637862 0.1201537 0.2686816 +0.3795513 0.1201537 0.2686816 +0.3944623 0.1201537 0.2686816 +0.4085988 0.1201537 0.2686816 +0.4220313 0.1201537 0.2686816 +0.4348222 0.1201537 0.2686816 +0.4470264 0.1201537 0.2686816 +0.4586928 0.1201537 0.2686816 +0.4698649 0.1201537 0.2686816 +0.4805811 0.1201537 0.2686816 +0.490876 0.1201537 0.2686816 +0.5007803 0.1201537 0.2686816 +0.510322 0.1201537 0.2686816 +0.5195258 0.1201537 0.2686816 +0.5284142 0.1201537 0.2686816 +0.5370079 0.1201537 0.2686816 +0.5453253 0.1201537 0.2686816 +0.5533834 0.1201537 0.2686816 +0.5611974 0.1201537 0.2686816 +0.5687816 0.1201537 0.2686816 +0.092819 0.1409607 0.2686816 +0.1056428 0.1409607 0.2686816 +0.1201537 0.1409607 0.2686816 +0.1409607 0.1409607 0.2686816 +0.1678172 0.1409607 0.2686816 +0.1950164 0.1409607 0.2686816 +0.2210581 0.1409607 0.2686816 +0.245636 0.1409607 0.2686816 +0.2686816 0.1409607 0.2686816 +0.2902431 0.1409607 0.2686816 +0.3104189 0.1409607 0.2686816 +0.3293248 0.1409607 0.2686816 +0.3470774 0.1409607 0.2686816 +0.3637862 0.1409607 0.2686816 +0.3795513 0.1409607 0.2686816 +0.3944623 0.1409607 0.2686816 +0.4085988 0.1409607 0.2686816 +0.4220313 0.1409607 0.2686816 +0.4348222 0.1409607 0.2686816 +0.4470264 0.1409607 0.2686816 +0.4586928 0.1409607 0.2686816 +0.4698649 0.1409607 0.2686816 +0.4805811 0.1409607 0.2686816 +0.490876 0.1409607 0.2686816 +0.5007803 0.1409607 0.2686816 +0.510322 0.1409607 0.2686816 +0.5195258 0.1409607 0.2686816 +0.5284142 0.1409607 0.2686816 +0.5370079 0.1409607 0.2686816 +0.5453253 0.1409607 0.2686816 +0.5533834 0.1409607 0.2686816 +0.5611974 0.1409607 0.2686816 +0.5687816 0.1409607 0.2686816 +0.092819 0.1678172 0.2686816 +0.1056428 0.1678172 0.2686816 +0.1201537 0.1678172 0.2686816 +0.1409607 0.1678172 0.2686816 +0.1678172 0.1678172 0.2686816 +0.1950164 0.1678172 0.2686816 +0.2210581 0.1678172 0.2686816 +0.245636 0.1678172 0.2686816 +0.2686816 0.1678172 0.2686816 +0.2902431 0.1678172 0.2686816 +0.3104189 0.1678172 0.2686816 +0.3293248 0.1678172 0.2686816 +0.3470774 0.1678172 0.2686816 +0.3637862 0.1678172 0.2686816 +0.3795513 0.1678172 0.2686816 +0.3944623 0.1678172 0.2686816 +0.4085988 0.1678172 0.2686816 +0.4220313 0.1678172 0.2686816 +0.4348222 0.1678172 0.2686816 +0.4470264 0.1678172 0.2686816 +0.4586928 0.1678172 0.2686816 +0.4698649 0.1678172 0.2686816 +0.4805811 0.1678172 0.2686816 +0.490876 0.1678172 0.2686816 +0.5007803 0.1678172 0.2686816 +0.510322 0.1678172 0.2686816 +0.5195258 0.1678172 0.2686816 +0.5284142 0.1678172 0.2686816 +0.5370079 0.1678172 0.2686816 +0.5453253 0.1678172 0.2686816 +0.5533834 0.1678172 0.2686816 +0.5611974 0.1678172 0.2686816 +0.5687816 0.1678172 0.2686816 +0.092819 0.1950164 0.2686816 +0.1056428 0.1950164 0.2686816 +0.1201537 0.1950164 0.2686816 +0.1409607 0.1950164 0.2686816 +0.1678172 0.1950164 0.2686816 +0.1950164 0.1950164 0.2686816 +0.2210581 0.1950164 0.2686816 +0.245636 0.1950164 0.2686816 +0.2686816 0.1950164 0.2686816 +0.2902431 0.1950164 0.2686816 +0.3104189 0.1950164 0.2686816 +0.3293248 0.1950164 0.2686816 +0.3470774 0.1950164 0.2686816 +0.3637862 0.1950164 0.2686816 +0.3795513 0.1950164 0.2686816 +0.3944623 0.1950164 0.2686816 +0.4085988 0.1950164 0.2686816 +0.4220313 0.1950164 0.2686816 +0.4348222 0.1950164 0.2686816 +0.4470264 0.1950164 0.2686816 +0.4586928 0.1950164 0.2686816 +0.4698649 0.1950164 0.2686816 +0.4805811 0.1950164 0.2686816 +0.490876 0.1950164 0.2686816 +0.5007803 0.1950164 0.2686816 +0.510322 0.1950164 0.2686816 +0.5195258 0.1950164 0.2686816 +0.5284142 0.1950164 0.2686816 +0.5370079 0.1950164 0.2686816 +0.5453253 0.1950164 0.2686816 +0.5533834 0.1950164 0.2686816 +0.5611974 0.1950164 0.2686816 +0.5687816 0.1950164 0.2686816 +0.092819 0.2210581 0.2686816 +0.1056428 0.2210581 0.2686816 +0.1201537 0.2210581 0.2686816 +0.1409607 0.2210581 0.2686816 +0.1678172 0.2210581 0.2686816 +0.1950164 0.2210581 0.2686816 +0.2210581 0.2210581 0.2686816 +0.245636 0.2210581 0.2686816 +0.2686816 0.2210581 0.2686816 +0.2902431 0.2210581 0.2686816 +0.3104189 0.2210581 0.2686816 +0.3293248 0.2210581 0.2686816 +0.3470774 0.2210581 0.2686816 +0.3637862 0.2210581 0.2686816 +0.3795513 0.2210581 0.2686816 +0.3944623 0.2210581 0.2686816 +0.4085988 0.2210581 0.2686816 +0.4220313 0.2210581 0.2686816 +0.4348222 0.2210581 0.2686816 +0.4470264 0.2210581 0.2686816 +0.4586928 0.2210581 0.2686816 +0.4698649 0.2210581 0.2686816 +0.4805811 0.2210581 0.2686816 +0.490876 0.2210581 0.2686816 +0.5007803 0.2210581 0.2686816 +0.510322 0.2210581 0.2686816 +0.5195258 0.2210581 0.2686816 +0.5284142 0.2210581 0.2686816 +0.5370079 0.2210581 0.2686816 +0.5453253 0.2210581 0.2686816 +0.5533834 0.2210581 0.2686816 +0.5611974 0.2210581 0.2686816 +0.5687816 0.2210581 0.2686816 +0.092819 0.245636 0.2686816 +0.1056428 0.245636 0.2686816 +0.1201537 0.245636 0.2686816 +0.1409607 0.245636 0.2686816 +0.1678172 0.245636 0.2686816 +0.1950164 0.245636 0.2686816 +0.2210581 0.245636 0.2686816 +0.245636 0.245636 0.2686816 +0.2686816 0.245636 0.2686816 +0.2902431 0.245636 0.2686816 +0.3104189 0.245636 0.2686816 +0.3293248 0.245636 0.2686816 +0.3470774 0.245636 0.2686816 +0.3637862 0.245636 0.2686816 +0.3795513 0.245636 0.2686816 +0.3944623 0.245636 0.2686816 +0.4085988 0.245636 0.2686816 +0.4220313 0.245636 0.2686816 +0.4348222 0.245636 0.2686816 +0.4470264 0.245636 0.2686816 +0.4586928 0.245636 0.2686816 +0.4698649 0.245636 0.2686816 +0.4805811 0.245636 0.2686816 +0.490876 0.245636 0.2686816 +0.5007803 0.245636 0.2686816 +0.510322 0.245636 0.2686816 +0.5195258 0.245636 0.2686816 +0.5284142 0.245636 0.2686816 +0.5370079 0.245636 0.2686816 +0.5453253 0.245636 0.2686816 +0.5533834 0.245636 0.2686816 +0.5611974 0.245636 0.2686816 +0.5687816 0.245636 0.2686816 +0.092819 0.2686816 0.2686816 +0.1056428 0.2686816 0.2686816 +0.1201537 0.2686816 0.2686816 +0.1409607 0.2686816 0.2686816 +0.1678172 0.2686816 0.2686816 +0.1950164 0.2686816 0.2686816 +0.2210581 0.2686816 0.2686816 +0.245636 0.2686816 0.2686816 +0.2686816 0.2686816 0.2686816 +0.2902431 0.2686816 0.2686816 +0.3104189 0.2686816 0.2686816 +0.3293248 0.2686816 0.2686816 +0.3470774 0.2686816 0.2686816 +0.3637862 0.2686816 0.2686816 +0.3795513 0.2686816 0.2686816 +0.3944623 0.2686816 0.2686816 +0.4085988 0.2686816 0.2686816 +0.4220313 0.2686816 0.2686816 +0.4348222 0.2686816 0.2686816 +0.4470264 0.2686816 0.2686816 +0.4586928 0.2686816 0.2686816 +0.4698649 0.2686816 0.2686816 +0.4805811 0.2686816 0.2686816 +0.490876 0.2686816 0.2686816 +0.5007803 0.2686816 0.2686816 +0.510322 0.2686816 0.2686816 +0.5195258 0.2686816 0.2686816 +0.5284142 0.2686816 0.2686816 +0.5370079 0.2686816 0.2686816 +0.5453253 0.2686816 0.2686816 +0.5533834 0.2686816 0.2686816 +0.5611974 0.2686816 0.2686816 +0.5687816 0.2686816 0.2686816 +0.092819 0.2902431 0.2686816 +0.1056428 0.2902431 0.2686816 +0.1201537 0.2902431 0.2686816 +0.1409607 0.2902431 0.2686816 +0.1678172 0.2902431 0.2686816 +0.1950164 0.2902431 0.2686816 +0.2210581 0.2902431 0.2686816 +0.245636 0.2902431 0.2686816 +0.2686816 0.2902431 0.2686816 +0.2902431 0.2902431 0.2686816 +0.3104189 0.2902431 0.2686816 +0.3293248 0.2902431 0.2686816 +0.3470774 0.2902431 0.2686816 +0.3637862 0.2902431 0.2686816 +0.3795513 0.2902431 0.2686816 +0.3944623 0.2902431 0.2686816 +0.4085988 0.2902431 0.2686816 +0.4220313 0.2902431 0.2686816 +0.4348222 0.2902431 0.2686816 +0.4470264 0.2902431 0.2686816 +0.4586928 0.2902431 0.2686816 +0.4698649 0.2902431 0.2686816 +0.4805811 0.2902431 0.2686816 +0.490876 0.2902431 0.2686816 +0.5007803 0.2902431 0.2686816 +0.510322 0.2902431 0.2686816 +0.5195258 0.2902431 0.2686816 +0.5284142 0.2902431 0.2686816 +0.5370079 0.2902431 0.2686816 +0.5453253 0.2902431 0.2686816 +0.5533834 0.2902431 0.2686816 +0.5611974 0.2902431 0.2686816 +0.5687816 0.2902431 0.2686816 +0.092819 0.3104189 0.2686816 +0.1056428 0.3104189 0.2686816 +0.1201537 0.3104189 0.2686816 +0.1409607 0.3104189 0.2686816 +0.1678172 0.3104189 0.2686816 +0.1950164 0.3104189 0.2686816 +0.2210581 0.3104189 0.2686816 +0.245636 0.3104189 0.2686816 +0.2686816 0.3104189 0.2686816 +0.2902431 0.3104189 0.2686816 +0.3104189 0.3104189 0.2686816 +0.3293248 0.3104189 0.2686816 +0.3470774 0.3104189 0.2686816 +0.3637862 0.3104189 0.2686816 +0.3795513 0.3104189 0.2686816 +0.3944623 0.3104189 0.2686816 +0.4085988 0.3104189 0.2686816 +0.4220313 0.3104189 0.2686816 +0.4348222 0.3104189 0.2686816 +0.4470264 0.3104189 0.2686816 +0.4586928 0.3104189 0.2686816 +0.4698649 0.3104189 0.2686816 +0.4805811 0.3104189 0.2686816 +0.490876 0.3104189 0.2686816 +0.5007803 0.3104189 0.2686816 +0.510322 0.3104189 0.2686816 +0.5195258 0.3104189 0.2686816 +0.5284142 0.3104189 0.2686816 +0.5370079 0.3104189 0.2686816 +0.5453253 0.3104189 0.2686816 +0.5533834 0.3104189 0.2686816 +0.5611974 0.3104189 0.2686816 +0.5687816 0.3104189 0.2686816 +0.092819 0.3293248 0.2686816 +0.1056428 0.3293248 0.2686816 +0.1201537 0.3293248 0.2686816 +0.1409607 0.3293248 0.2686816 +0.1678172 0.3293248 0.2686816 +0.1950164 0.3293248 0.2686816 +0.2210581 0.3293248 0.2686816 +0.245636 0.3293248 0.2686816 +0.2686816 0.3293248 0.2686816 +0.2902431 0.3293248 0.2686816 +0.3104189 0.3293248 0.2686816 +0.3293248 0.3293248 0.2686816 +0.3470774 0.3293248 0.2686816 +0.3637862 0.3293248 0.2686816 +0.3795513 0.3293248 0.2686816 +0.3944623 0.3293248 0.2686816 +0.4085988 0.3293248 0.2686816 +0.4220313 0.3293248 0.2686816 +0.4348222 0.3293248 0.2686816 +0.4470264 0.3293248 0.2686816 +0.4586928 0.3293248 0.2686816 +0.4698649 0.3293248 0.2686816 +0.4805811 0.3293248 0.2686816 +0.490876 0.3293248 0.2686816 +0.5007803 0.3293248 0.2686816 +0.510322 0.3293248 0.2686816 +0.5195258 0.3293248 0.2686816 +0.5284142 0.3293248 0.2686816 +0.5370079 0.3293248 0.2686816 +0.5453253 0.3293248 0.2686816 +0.5533834 0.3293248 0.2686816 +0.5611974 0.3293248 0.2686816 +0.5687816 0.3293248 0.2686816 +0.092819 0.3470774 0.2686816 +0.1056428 0.3470774 0.2686816 +0.1201537 0.3470774 0.2686816 +0.1409607 0.3470774 0.2686816 +0.1678172 0.3470774 0.2686816 +0.1950164 0.3470774 0.2686816 +0.2210581 0.3470774 0.2686816 +0.245636 0.3470774 0.2686816 +0.2686816 0.3470774 0.2686816 +0.2902431 0.3470774 0.2686816 +0.3104189 0.3470774 0.2686816 +0.3293248 0.3470774 0.2686816 +0.3470774 0.3470774 0.2686816 +0.3637862 0.3470774 0.2686816 +0.3795513 0.3470774 0.2686816 +0.3944623 0.3470774 0.2686816 +0.4085988 0.3470774 0.2686816 +0.4220313 0.3470774 0.2686816 +0.4348222 0.3470774 0.2686816 +0.4470264 0.3470774 0.2686816 +0.4586928 0.3470774 0.2686816 +0.4698649 0.3470774 0.2686816 +0.4805811 0.3470774 0.2686816 +0.490876 0.3470774 0.2686816 +0.5007803 0.3470774 0.2686816 +0.510322 0.3470774 0.2686816 +0.5195258 0.3470774 0.2686816 +0.5284142 0.3470774 0.2686816 +0.5370079 0.3470774 0.2686816 +0.5453253 0.3470774 0.2686816 +0.5533834 0.3470774 0.2686816 +0.5611974 0.3470774 0.2686816 +0.5687816 0.3470774 0.2686816 +0.092819 0.3637862 0.2686816 +0.1056428 0.3637862 0.2686816 +0.1201537 0.3637862 0.2686816 +0.1409607 0.3637862 0.2686816 +0.1678172 0.3637862 0.2686816 +0.1950164 0.3637862 0.2686816 +0.2210581 0.3637862 0.2686816 +0.245636 0.3637862 0.2686816 +0.2686816 0.3637862 0.2686816 +0.2902431 0.3637862 0.2686816 +0.3104189 0.3637862 0.2686816 +0.3293248 0.3637862 0.2686816 +0.3470774 0.3637862 0.2686816 +0.3637862 0.3637862 0.2686816 +0.3795513 0.3637862 0.2686816 +0.3944623 0.3637862 0.2686816 +0.4085988 0.3637862 0.2686816 +0.4220313 0.3637862 0.2686816 +0.4348222 0.3637862 0.2686816 +0.4470264 0.3637862 0.2686816 +0.4586928 0.3637862 0.2686816 +0.4698649 0.3637862 0.2686816 +0.4805811 0.3637862 0.2686816 +0.490876 0.3637862 0.2686816 +0.5007803 0.3637862 0.2686816 +0.510322 0.3637862 0.2686816 +0.5195258 0.3637862 0.2686816 +0.5284142 0.3637862 0.2686816 +0.5370079 0.3637862 0.2686816 +0.5453253 0.3637862 0.2686816 +0.5533834 0.3637862 0.2686816 +0.5611974 0.3637862 0.2686816 +0.5687816 0.3637862 0.2686816 +0.092819 0.3795513 0.2686816 +0.1056428 0.3795513 0.2686816 +0.1201537 0.3795513 0.2686816 +0.1409607 0.3795513 0.2686816 +0.1678172 0.3795513 0.2686816 +0.1950164 0.3795513 0.2686816 +0.2210581 0.3795513 0.2686816 +0.245636 0.3795513 0.2686816 +0.2686816 0.3795513 0.2686816 +0.2902431 0.3795513 0.2686816 +0.3104189 0.3795513 0.2686816 +0.3293248 0.3795513 0.2686816 +0.3470774 0.3795513 0.2686816 +0.3637862 0.3795513 0.2686816 +0.3795513 0.3795513 0.2686816 +0.3944623 0.3795513 0.2686816 +0.4085988 0.3795513 0.2686816 +0.4220313 0.3795513 0.2686816 +0.4348222 0.3795513 0.2686816 +0.4470264 0.3795513 0.2686816 +0.4586928 0.3795513 0.2686816 +0.4698649 0.3795513 0.2686816 +0.4805811 0.3795513 0.2686816 +0.490876 0.3795513 0.2686816 +0.5007803 0.3795513 0.2686816 +0.510322 0.3795513 0.2686816 +0.5195258 0.3795513 0.2686816 +0.5284142 0.3795513 0.2686816 +0.5370079 0.3795513 0.2686816 +0.5453253 0.3795513 0.2686816 +0.5533834 0.3795513 0.2686816 +0.5611974 0.3795513 0.2686816 +0.5687816 0.3795513 0.2686816 +0.092819 0.3944623 0.2686816 +0.1056428 0.3944623 0.2686816 +0.1201537 0.3944623 0.2686816 +0.1409607 0.3944623 0.2686816 +0.1678172 0.3944623 0.2686816 +0.1950164 0.3944623 0.2686816 +0.2210581 0.3944623 0.2686816 +0.245636 0.3944623 0.2686816 +0.2686816 0.3944623 0.2686816 +0.2902431 0.3944623 0.2686816 +0.3104189 0.3944623 0.2686816 +0.3293248 0.3944623 0.2686816 +0.3470774 0.3944623 0.2686816 +0.3637862 0.3944623 0.2686816 +0.3795513 0.3944623 0.2686816 +0.3944623 0.3944623 0.2686816 +0.4085988 0.3944623 0.2686816 +0.4220313 0.3944623 0.2686816 +0.4348222 0.3944623 0.2686816 +0.4470264 0.3944623 0.2686816 +0.4586928 0.3944623 0.2686816 +0.4698649 0.3944623 0.2686816 +0.4805811 0.3944623 0.2686816 +0.490876 0.3944623 0.2686816 +0.5007803 0.3944623 0.2686816 +0.510322 0.3944623 0.2686816 +0.5195258 0.3944623 0.2686816 +0.5284142 0.3944623 0.2686816 +0.5370079 0.3944623 0.2686816 +0.5453253 0.3944623 0.2686816 +0.5533834 0.3944623 0.2686816 +0.5611974 0.3944623 0.2686816 +0.5687816 0.3944623 0.2686816 +0.092819 0.4085988 0.2686816 +0.1056428 0.4085988 0.2686816 +0.1201537 0.4085988 0.2686816 +0.1409607 0.4085988 0.2686816 +0.1678172 0.4085988 0.2686816 +0.1950164 0.4085988 0.2686816 +0.2210581 0.4085988 0.2686816 +0.245636 0.4085988 0.2686816 +0.2686816 0.4085988 0.2686816 +0.2902431 0.4085988 0.2686816 +0.3104189 0.4085988 0.2686816 +0.3293248 0.4085988 0.2686816 +0.3470774 0.4085988 0.2686816 +0.3637862 0.4085988 0.2686816 +0.3795513 0.4085988 0.2686816 +0.3944623 0.4085988 0.2686816 +0.4085988 0.4085988 0.2686816 +0.4220313 0.4085988 0.2686816 +0.4348222 0.4085988 0.2686816 +0.4470264 0.4085988 0.2686816 +0.4586928 0.4085988 0.2686816 +0.4698649 0.4085988 0.2686816 +0.4805811 0.4085988 0.2686816 +0.490876 0.4085988 0.2686816 +0.5007803 0.4085988 0.2686816 +0.510322 0.4085988 0.2686816 +0.5195258 0.4085988 0.2686816 +0.5284142 0.4085988 0.2686816 +0.5370079 0.4085988 0.2686816 +0.5453253 0.4085988 0.2686816 +0.5533834 0.4085988 0.2686816 +0.5611974 0.4085988 0.2686816 +0.5687816 0.4085988 0.2686816 +0.092819 0.4220313 0.2686816 +0.1056428 0.4220313 0.2686816 +0.1201537 0.4220313 0.2686816 +0.1409607 0.4220313 0.2686816 +0.1678172 0.4220313 0.2686816 +0.1950164 0.4220313 0.2686816 +0.2210581 0.4220313 0.2686816 +0.245636 0.4220313 0.2686816 +0.2686816 0.4220313 0.2686816 +0.2902431 0.4220313 0.2686816 +0.3104189 0.4220313 0.2686816 +0.3293248 0.4220313 0.2686816 +0.3470774 0.4220313 0.2686816 +0.3637862 0.4220313 0.2686816 +0.3795513 0.4220313 0.2686816 +0.3944623 0.4220313 0.2686816 +0.4085988 0.4220313 0.2686816 +0.4220313 0.4220313 0.2686816 +0.4348222 0.4220313 0.2686816 +0.4470264 0.4220313 0.2686816 +0.4586928 0.4220313 0.2686816 +0.4698649 0.4220313 0.2686816 +0.4805811 0.4220313 0.2686816 +0.490876 0.4220313 0.2686816 +0.5007803 0.4220313 0.2686816 +0.510322 0.4220313 0.2686816 +0.5195258 0.4220313 0.2686816 +0.5284142 0.4220313 0.2686816 +0.5370079 0.4220313 0.2686816 +0.5453253 0.4220313 0.2686816 +0.5533834 0.4220313 0.2686816 +0.5611974 0.4220313 0.2686816 +0.5687816 0.4220313 0.2686816 +0.092819 0.4348222 0.2686816 +0.1056428 0.4348222 0.2686816 +0.1201537 0.4348222 0.2686816 +0.1409607 0.4348222 0.2686816 +0.1678172 0.4348222 0.2686816 +0.1950164 0.4348222 0.2686816 +0.2210581 0.4348222 0.2686816 +0.245636 0.4348222 0.2686816 +0.2686816 0.4348222 0.2686816 +0.2902431 0.4348222 0.2686816 +0.3104189 0.4348222 0.2686816 +0.3293248 0.4348222 0.2686816 +0.3470774 0.4348222 0.2686816 +0.3637862 0.4348222 0.2686816 +0.3795513 0.4348222 0.2686816 +0.3944623 0.4348222 0.2686816 +0.4085988 0.4348222 0.2686816 +0.4220313 0.4348222 0.2686816 +0.4348222 0.4348222 0.2686816 +0.4470264 0.4348222 0.2686816 +0.4586928 0.4348222 0.2686816 +0.4698649 0.4348222 0.2686816 +0.4805811 0.4348222 0.2686816 +0.490876 0.4348222 0.2686816 +0.5007803 0.4348222 0.2686816 +0.510322 0.4348222 0.2686816 +0.5195258 0.4348222 0.2686816 +0.5284142 0.4348222 0.2686816 +0.5370079 0.4348222 0.2686816 +0.5453253 0.4348222 0.2686816 +0.5533834 0.4348222 0.2686816 +0.5611974 0.4348222 0.2686816 +0.5687816 0.4348222 0.2686816 +0.092819 0.4470264 0.2686816 +0.1056428 0.4470264 0.2686816 +0.1201537 0.4470264 0.2686816 +0.1409607 0.4470264 0.2686816 +0.1678172 0.4470264 0.2686816 +0.1950164 0.4470264 0.2686816 +0.2210581 0.4470264 0.2686816 +0.245636 0.4470264 0.2686816 +0.2686816 0.4470264 0.2686816 +0.2902431 0.4470264 0.2686816 +0.3104189 0.4470264 0.2686816 +0.3293248 0.4470264 0.2686816 +0.3470774 0.4470264 0.2686816 +0.3637862 0.4470264 0.2686816 +0.3795513 0.4470264 0.2686816 +0.3944623 0.4470264 0.2686816 +0.4085988 0.4470264 0.2686816 +0.4220313 0.4470264 0.2686816 +0.4348222 0.4470264 0.2686816 +0.4470264 0.4470264 0.2686816 +0.4586928 0.4470264 0.2686816 +0.4698649 0.4470264 0.2686816 +0.4805811 0.4470264 0.2686816 +0.490876 0.4470264 0.2686816 +0.5007803 0.4470264 0.2686816 +0.510322 0.4470264 0.2686816 +0.5195258 0.4470264 0.2686816 +0.5284142 0.4470264 0.2686816 +0.5370079 0.4470264 0.2686816 +0.5453253 0.4470264 0.2686816 +0.5533834 0.4470264 0.2686816 +0.5611974 0.4470264 0.2686816 +0.5687816 0.4470264 0.2686816 +0.092819 0.4586928 0.2686816 +0.1056428 0.4586928 0.2686816 +0.1201537 0.4586928 0.2686816 +0.1409607 0.4586928 0.2686816 +0.1678172 0.4586928 0.2686816 +0.1950164 0.4586928 0.2686816 +0.2210581 0.4586928 0.2686816 +0.245636 0.4586928 0.2686816 +0.2686816 0.4586928 0.2686816 +0.2902431 0.4586928 0.2686816 +0.3104189 0.4586928 0.2686816 +0.3293248 0.4586928 0.2686816 +0.3470774 0.4586928 0.2686816 +0.3637862 0.4586928 0.2686816 +0.3795513 0.4586928 0.2686816 +0.3944623 0.4586928 0.2686816 +0.4085988 0.4586928 0.2686816 +0.4220313 0.4586928 0.2686816 +0.4348222 0.4586928 0.2686816 +0.4470264 0.4586928 0.2686816 +0.4586928 0.4586928 0.2686816 +0.4698649 0.4586928 0.2686816 +0.4805811 0.4586928 0.2686816 +0.490876 0.4586928 0.2686816 +0.5007803 0.4586928 0.2686816 +0.510322 0.4586928 0.2686816 +0.5195258 0.4586928 0.2686816 +0.5284142 0.4586928 0.2686816 +0.5370079 0.4586928 0.2686816 +0.5453253 0.4586928 0.2686816 +0.5533834 0.4586928 0.2686816 +0.5611974 0.4586928 0.2686816 +0.5687816 0.4586928 0.2686816 +0.092819 0.4698649 0.2686816 +0.1056428 0.4698649 0.2686816 +0.1201537 0.4698649 0.2686816 +0.1409607 0.4698649 0.2686816 +0.1678172 0.4698649 0.2686816 +0.1950164 0.4698649 0.2686816 +0.2210581 0.4698649 0.2686816 +0.245636 0.4698649 0.2686816 +0.2686816 0.4698649 0.2686816 +0.2902431 0.4698649 0.2686816 +0.3104189 0.4698649 0.2686816 +0.3293248 0.4698649 0.2686816 +0.3470774 0.4698649 0.2686816 +0.3637862 0.4698649 0.2686816 +0.3795513 0.4698649 0.2686816 +0.3944623 0.4698649 0.2686816 +0.4085988 0.4698649 0.2686816 +0.4220313 0.4698649 0.2686816 +0.4348222 0.4698649 0.2686816 +0.4470264 0.4698649 0.2686816 +0.4586928 0.4698649 0.2686816 +0.4698649 0.4698649 0.2686816 +0.4805811 0.4698649 0.2686816 +0.490876 0.4698649 0.2686816 +0.5007803 0.4698649 0.2686816 +0.510322 0.4698649 0.2686816 +0.5195258 0.4698649 0.2686816 +0.5284142 0.4698649 0.2686816 +0.5370079 0.4698649 0.2686816 +0.5453253 0.4698649 0.2686816 +0.5533834 0.4698649 0.2686816 +0.5611974 0.4698649 0.2686816 +0.5687816 0.4698649 0.2686816 +0.092819 0.4805811 0.2686816 +0.1056428 0.4805811 0.2686816 +0.1201537 0.4805811 0.2686816 +0.1409607 0.4805811 0.2686816 +0.1678172 0.4805811 0.2686816 +0.1950164 0.4805811 0.2686816 +0.2210581 0.4805811 0.2686816 +0.245636 0.4805811 0.2686816 +0.2686816 0.4805811 0.2686816 +0.2902431 0.4805811 0.2686816 +0.3104189 0.4805811 0.2686816 +0.3293248 0.4805811 0.2686816 +0.3470774 0.4805811 0.2686816 +0.3637862 0.4805811 0.2686816 +0.3795513 0.4805811 0.2686816 +0.3944623 0.4805811 0.2686816 +0.4085988 0.4805811 0.2686816 +0.4220313 0.4805811 0.2686816 +0.4348222 0.4805811 0.2686816 +0.4470264 0.4805811 0.2686816 +0.4586928 0.4805811 0.2686816 +0.4698649 0.4805811 0.2686816 +0.4805811 0.4805811 0.2686816 +0.490876 0.4805811 0.2686816 +0.5007803 0.4805811 0.2686816 +0.510322 0.4805811 0.2686816 +0.5195258 0.4805811 0.2686816 +0.5284142 0.4805811 0.2686816 +0.5370079 0.4805811 0.2686816 +0.5453253 0.4805811 0.2686816 +0.5533834 0.4805811 0.2686816 +0.5611974 0.4805811 0.2686816 +0.5687816 0.4805811 0.2686816 +0.092819 0.490876 0.2686816 +0.1056428 0.490876 0.2686816 +0.1201537 0.490876 0.2686816 +0.1409607 0.490876 0.2686816 +0.1678172 0.490876 0.2686816 +0.1950164 0.490876 0.2686816 +0.2210581 0.490876 0.2686816 +0.245636 0.490876 0.2686816 +0.2686816 0.490876 0.2686816 +0.2902431 0.490876 0.2686816 +0.3104189 0.490876 0.2686816 +0.3293248 0.490876 0.2686816 +0.3470774 0.490876 0.2686816 +0.3637862 0.490876 0.2686816 +0.3795513 0.490876 0.2686816 +0.3944623 0.490876 0.2686816 +0.4085988 0.490876 0.2686816 +0.4220313 0.490876 0.2686816 +0.4348222 0.490876 0.2686816 +0.4470264 0.490876 0.2686816 +0.4586928 0.490876 0.2686816 +0.4698649 0.490876 0.2686816 +0.4805811 0.490876 0.2686816 +0.490876 0.490876 0.2686816 +0.5007803 0.490876 0.2686816 +0.510322 0.490876 0.2686816 +0.5195258 0.490876 0.2686816 +0.5284142 0.490876 0.2686816 +0.5370079 0.490876 0.2686816 +0.5453253 0.490876 0.2686816 +0.5533834 0.490876 0.2686816 +0.5611974 0.490876 0.2686816 +0.5687816 0.490876 0.2686816 +0.092819 0.5007803 0.2686816 +0.1056428 0.5007803 0.2686816 +0.1201537 0.5007803 0.2686816 +0.1409607 0.5007803 0.2686816 +0.1678172 0.5007803 0.2686816 +0.1950164 0.5007803 0.2686816 +0.2210581 0.5007803 0.2686816 +0.245636 0.5007803 0.2686816 +0.2686816 0.5007803 0.2686816 +0.2902431 0.5007803 0.2686816 +0.3104189 0.5007803 0.2686816 +0.3293248 0.5007803 0.2686816 +0.3470774 0.5007803 0.2686816 +0.3637862 0.5007803 0.2686816 +0.3795513 0.5007803 0.2686816 +0.3944623 0.5007803 0.2686816 +0.4085988 0.5007803 0.2686816 +0.4220313 0.5007803 0.2686816 +0.4348222 0.5007803 0.2686816 +0.4470264 0.5007803 0.2686816 +0.4586928 0.5007803 0.2686816 +0.4698649 0.5007803 0.2686816 +0.4805811 0.5007803 0.2686816 +0.490876 0.5007803 0.2686816 +0.5007803 0.5007803 0.2686816 +0.510322 0.5007803 0.2686816 +0.5195258 0.5007803 0.2686816 +0.5284142 0.5007803 0.2686816 +0.5370079 0.5007803 0.2686816 +0.5453253 0.5007803 0.2686816 +0.5533834 0.5007803 0.2686816 +0.5611974 0.5007803 0.2686816 +0.5687816 0.5007803 0.2686816 +0.092819 0.510322 0.2686816 +0.1056428 0.510322 0.2686816 +0.1201537 0.510322 0.2686816 +0.1409607 0.510322 0.2686816 +0.1678172 0.510322 0.2686816 +0.1950164 0.510322 0.2686816 +0.2210581 0.510322 0.2686816 +0.245636 0.510322 0.2686816 +0.2686816 0.510322 0.2686816 +0.2902431 0.510322 0.2686816 +0.3104189 0.510322 0.2686816 +0.3293248 0.510322 0.2686816 +0.3470774 0.510322 0.2686816 +0.3637862 0.510322 0.2686816 +0.3795513 0.510322 0.2686816 +0.3944623 0.510322 0.2686816 +0.4085988 0.510322 0.2686816 +0.4220313 0.510322 0.2686816 +0.4348222 0.510322 0.2686816 +0.4470264 0.510322 0.2686816 +0.4586928 0.510322 0.2686816 +0.4698649 0.510322 0.2686816 +0.4805811 0.510322 0.2686816 +0.490876 0.510322 0.2686816 +0.5007803 0.510322 0.2686816 +0.510322 0.510322 0.2686816 +0.5195258 0.510322 0.2686816 +0.5284142 0.510322 0.2686816 +0.5370079 0.510322 0.2686816 +0.5453253 0.510322 0.2686816 +0.5533834 0.510322 0.2686816 +0.5611974 0.510322 0.2686816 +0.5687816 0.510322 0.2686816 +0.092819 0.5195258 0.2686816 +0.1056428 0.5195258 0.2686816 +0.1201537 0.5195258 0.2686816 +0.1409607 0.5195258 0.2686816 +0.1678172 0.5195258 0.2686816 +0.1950164 0.5195258 0.2686816 +0.2210581 0.5195258 0.2686816 +0.245636 0.5195258 0.2686816 +0.2686816 0.5195258 0.2686816 +0.2902431 0.5195258 0.2686816 +0.3104189 0.5195258 0.2686816 +0.3293248 0.5195258 0.2686816 +0.3470774 0.5195258 0.2686816 +0.3637862 0.5195258 0.2686816 +0.3795513 0.5195258 0.2686816 +0.3944623 0.5195258 0.2686816 +0.4085988 0.5195258 0.2686816 +0.4220313 0.5195258 0.2686816 +0.4348222 0.5195258 0.2686816 +0.4470264 0.5195258 0.2686816 +0.4586928 0.5195258 0.2686816 +0.4698649 0.5195258 0.2686816 +0.4805811 0.5195258 0.2686816 +0.490876 0.5195258 0.2686816 +0.5007803 0.5195258 0.2686816 +0.510322 0.5195258 0.2686816 +0.5195258 0.5195258 0.2686816 +0.5284142 0.5195258 0.2686816 +0.5370079 0.5195258 0.2686816 +0.5453253 0.5195258 0.2686816 +0.5533834 0.5195258 0.2686816 +0.5611974 0.5195258 0.2686816 +0.5687816 0.5195258 0.2686816 +0.092819 0.5284142 0.2686816 +0.1056428 0.5284142 0.2686816 +0.1201537 0.5284142 0.2686816 +0.1409607 0.5284142 0.2686816 +0.1678172 0.5284142 0.2686816 +0.1950164 0.5284142 0.2686816 +0.2210581 0.5284142 0.2686816 +0.245636 0.5284142 0.2686816 +0.2686816 0.5284142 0.2686816 +0.2902431 0.5284142 0.2686816 +0.3104189 0.5284142 0.2686816 +0.3293248 0.5284142 0.2686816 +0.3470774 0.5284142 0.2686816 +0.3637862 0.5284142 0.2686816 +0.3795513 0.5284142 0.2686816 +0.3944623 0.5284142 0.2686816 +0.4085988 0.5284142 0.2686816 +0.4220313 0.5284142 0.2686816 +0.4348222 0.5284142 0.2686816 +0.4470264 0.5284142 0.2686816 +0.4586928 0.5284142 0.2686816 +0.4698649 0.5284142 0.2686816 +0.4805811 0.5284142 0.2686816 +0.490876 0.5284142 0.2686816 +0.5007803 0.5284142 0.2686816 +0.510322 0.5284142 0.2686816 +0.5195258 0.5284142 0.2686816 +0.5284142 0.5284142 0.2686816 +0.5370079 0.5284142 0.2686816 +0.5453253 0.5284142 0.2686816 +0.5533834 0.5284142 0.2686816 +0.5611974 0.5284142 0.2686816 +0.5687816 0.5284142 0.2686816 +0.092819 0.5370079 0.2686816 +0.1056428 0.5370079 0.2686816 +0.1201537 0.5370079 0.2686816 +0.1409607 0.5370079 0.2686816 +0.1678172 0.5370079 0.2686816 +0.1950164 0.5370079 0.2686816 +0.2210581 0.5370079 0.2686816 +0.245636 0.5370079 0.2686816 +0.2686816 0.5370079 0.2686816 +0.2902431 0.5370079 0.2686816 +0.3104189 0.5370079 0.2686816 +0.3293248 0.5370079 0.2686816 +0.3470774 0.5370079 0.2686816 +0.3637862 0.5370079 0.2686816 +0.3795513 0.5370079 0.2686816 +0.3944623 0.5370079 0.2686816 +0.4085988 0.5370079 0.2686816 +0.4220313 0.5370079 0.2686816 +0.4348222 0.5370079 0.2686816 +0.4470264 0.5370079 0.2686816 +0.4586928 0.5370079 0.2686816 +0.4698649 0.5370079 0.2686816 +0.4805811 0.5370079 0.2686816 +0.490876 0.5370079 0.2686816 +0.5007803 0.5370079 0.2686816 +0.510322 0.5370079 0.2686816 +0.5195258 0.5370079 0.2686816 +0.5284142 0.5370079 0.2686816 +0.5370079 0.5370079 0.2686816 +0.5453253 0.5370079 0.2686816 +0.5533834 0.5370079 0.2686816 +0.5611974 0.5370079 0.2686816 +0.5687816 0.5370079 0.2686816 +0.092819 0.5453253 0.2686816 +0.1056428 0.5453253 0.2686816 +0.1201537 0.5453253 0.2686816 +0.1409607 0.5453253 0.2686816 +0.1678172 0.5453253 0.2686816 +0.1950164 0.5453253 0.2686816 +0.2210581 0.5453253 0.2686816 +0.245636 0.5453253 0.2686816 +0.2686816 0.5453253 0.2686816 +0.2902431 0.5453253 0.2686816 +0.3104189 0.5453253 0.2686816 +0.3293248 0.5453253 0.2686816 +0.3470774 0.5453253 0.2686816 +0.3637862 0.5453253 0.2686816 +0.3795513 0.5453253 0.2686816 +0.3944623 0.5453253 0.2686816 +0.4085988 0.5453253 0.2686816 +0.4220313 0.5453253 0.2686816 +0.4348222 0.5453253 0.2686816 +0.4470264 0.5453253 0.2686816 +0.4586928 0.5453253 0.2686816 +0.4698649 0.5453253 0.2686816 +0.4805811 0.5453253 0.2686816 +0.490876 0.5453253 0.2686816 +0.5007803 0.5453253 0.2686816 +0.510322 0.5453253 0.2686816 +0.5195258 0.5453253 0.2686816 +0.5284142 0.5453253 0.2686816 +0.5370079 0.5453253 0.2686816 +0.5453253 0.5453253 0.2686816 +0.5533834 0.5453253 0.2686816 +0.5611974 0.5453253 0.2686816 +0.5687816 0.5453253 0.2686816 +0.092819 0.5533834 0.2686816 +0.1056428 0.5533834 0.2686816 +0.1201537 0.5533834 0.2686816 +0.1409607 0.5533834 0.2686816 +0.1678172 0.5533834 0.2686816 +0.1950164 0.5533834 0.2686816 +0.2210581 0.5533834 0.2686816 +0.245636 0.5533834 0.2686816 +0.2686816 0.5533834 0.2686816 +0.2902431 0.5533834 0.2686816 +0.3104189 0.5533834 0.2686816 +0.3293248 0.5533834 0.2686816 +0.3470774 0.5533834 0.2686816 +0.3637862 0.5533834 0.2686816 +0.3795513 0.5533834 0.2686816 +0.3944623 0.5533834 0.2686816 +0.4085988 0.5533834 0.2686816 +0.4220313 0.5533834 0.2686816 +0.4348222 0.5533834 0.2686816 +0.4470264 0.5533834 0.2686816 +0.4586928 0.5533834 0.2686816 +0.4698649 0.5533834 0.2686816 +0.4805811 0.5533834 0.2686816 +0.490876 0.5533834 0.2686816 +0.5007803 0.5533834 0.2686816 +0.510322 0.5533834 0.2686816 +0.5195258 0.5533834 0.2686816 +0.5284142 0.5533834 0.2686816 +0.5370079 0.5533834 0.2686816 +0.5453253 0.5533834 0.2686816 +0.5533834 0.5533834 0.2686816 +0.5611974 0.5533834 0.2686816 +0.5687816 0.5533834 0.2686816 +0.092819 0.5611974 0.2686816 +0.1056428 0.5611974 0.2686816 +0.1201537 0.5611974 0.2686816 +0.1409607 0.5611974 0.2686816 +0.1678172 0.5611974 0.2686816 +0.1950164 0.5611974 0.2686816 +0.2210581 0.5611974 0.2686816 +0.245636 0.5611974 0.2686816 +0.2686816 0.5611974 0.2686816 +0.2902431 0.5611974 0.2686816 +0.3104189 0.5611974 0.2686816 +0.3293248 0.5611974 0.2686816 +0.3470774 0.5611974 0.2686816 +0.3637862 0.5611974 0.2686816 +0.3795513 0.5611974 0.2686816 +0.3944623 0.5611974 0.2686816 +0.4085988 0.5611974 0.2686816 +0.4220313 0.5611974 0.2686816 +0.4348222 0.5611974 0.2686816 +0.4470264 0.5611974 0.2686816 +0.4586928 0.5611974 0.2686816 +0.4698649 0.5611974 0.2686816 +0.4805811 0.5611974 0.2686816 +0.490876 0.5611974 0.2686816 +0.5007803 0.5611974 0.2686816 +0.510322 0.5611974 0.2686816 +0.5195258 0.5611974 0.2686816 +0.5284142 0.5611974 0.2686816 +0.5370079 0.5611974 0.2686816 +0.5453253 0.5611974 0.2686816 +0.5533834 0.5611974 0.2686816 +0.5611974 0.5611974 0.2686816 +0.5687816 0.5611974 0.2686816 +0.092819 0.5687816 0.2686816 +0.1056428 0.5687816 0.2686816 +0.1201537 0.5687816 0.2686816 +0.1409607 0.5687816 0.2686816 +0.1678172 0.5687816 0.2686816 +0.1950164 0.5687816 0.2686816 +0.2210581 0.5687816 0.2686816 +0.245636 0.5687816 0.2686816 +0.2686816 0.5687816 0.2686816 +0.2902431 0.5687816 0.2686816 +0.3104189 0.5687816 0.2686816 +0.3293248 0.5687816 0.2686816 +0.3470774 0.5687816 0.2686816 +0.3637862 0.5687816 0.2686816 +0.3795513 0.5687816 0.2686816 +0.3944623 0.5687816 0.2686816 +0.4085988 0.5687816 0.2686816 +0.4220313 0.5687816 0.2686816 +0.4348222 0.5687816 0.2686816 +0.4470264 0.5687816 0.2686816 +0.4586928 0.5687816 0.2686816 +0.4698649 0.5687816 0.2686816 +0.4805811 0.5687816 0.2686816 +0.490876 0.5687816 0.2686816 +0.5007803 0.5687816 0.2686816 +0.510322 0.5687816 0.2686816 +0.5195258 0.5687816 0.2686816 +0.5284142 0.5687816 0.2686816 +0.5370079 0.5687816 0.2686816 +0.5453253 0.5687816 0.2686816 +0.5533834 0.5687816 0.2686816 +0.5611974 0.5687816 0.2686816 +0.5687816 0.5687816 0.2686816 +0.092819 0.092819 0.2902431 +0.1056428 0.092819 0.2902431 +0.1201537 0.092819 0.2902431 +0.1409607 0.092819 0.2902431 +0.1678172 0.092819 0.2902431 +0.1950164 0.092819 0.2902431 +0.2210581 0.092819 0.2902431 +0.245636 0.092819 0.2902431 +0.2686816 0.092819 0.2902431 +0.2902431 0.092819 0.2902431 +0.3104189 0.092819 0.2902431 +0.3293248 0.092819 0.2902431 +0.3470774 0.092819 0.2902431 +0.3637862 0.092819 0.2902431 +0.3795513 0.092819 0.2902431 +0.3944623 0.092819 0.2902431 +0.4085988 0.092819 0.2902431 +0.4220313 0.092819 0.2902431 +0.4348222 0.092819 0.2902431 +0.4470264 0.092819 0.2902431 +0.4586928 0.092819 0.2902431 +0.4698649 0.092819 0.2902431 +0.4805811 0.092819 0.2902431 +0.490876 0.092819 0.2902431 +0.5007803 0.092819 0.2902431 +0.510322 0.092819 0.2902431 +0.5195258 0.092819 0.2902431 +0.5284142 0.092819 0.2902431 +0.5370079 0.092819 0.2902431 +0.5453253 0.092819 0.2902431 +0.5533834 0.092819 0.2902431 +0.5611974 0.092819 0.2902431 +0.5687816 0.092819 0.2902431 +0.092819 0.1056428 0.2902431 +0.1056428 0.1056428 0.2902431 +0.1201537 0.1056428 0.2902431 +0.1409607 0.1056428 0.2902431 +0.1678172 0.1056428 0.2902431 +0.1950164 0.1056428 0.2902431 +0.2210581 0.1056428 0.2902431 +0.245636 0.1056428 0.2902431 +0.2686816 0.1056428 0.2902431 +0.2902431 0.1056428 0.2902431 +0.3104189 0.1056428 0.2902431 +0.3293248 0.1056428 0.2902431 +0.3470774 0.1056428 0.2902431 +0.3637862 0.1056428 0.2902431 +0.3795513 0.1056428 0.2902431 +0.3944623 0.1056428 0.2902431 +0.4085988 0.1056428 0.2902431 +0.4220313 0.1056428 0.2902431 +0.4348222 0.1056428 0.2902431 +0.4470264 0.1056428 0.2902431 +0.4586928 0.1056428 0.2902431 +0.4698649 0.1056428 0.2902431 +0.4805811 0.1056428 0.2902431 +0.490876 0.1056428 0.2902431 +0.5007803 0.1056428 0.2902431 +0.510322 0.1056428 0.2902431 +0.5195258 0.1056428 0.2902431 +0.5284142 0.1056428 0.2902431 +0.5370079 0.1056428 0.2902431 +0.5453253 0.1056428 0.2902431 +0.5533834 0.1056428 0.2902431 +0.5611974 0.1056428 0.2902431 +0.5687816 0.1056428 0.2902431 +0.092819 0.1201537 0.2902431 +0.1056428 0.1201537 0.2902431 +0.1201537 0.1201537 0.2902431 +0.1409607 0.1201537 0.2902431 +0.1678172 0.1201537 0.2902431 +0.1950164 0.1201537 0.2902431 +0.2210581 0.1201537 0.2902431 +0.245636 0.1201537 0.2902431 +0.2686816 0.1201537 0.2902431 +0.2902431 0.1201537 0.2902431 +0.3104189 0.1201537 0.2902431 +0.3293248 0.1201537 0.2902431 +0.3470774 0.1201537 0.2902431 +0.3637862 0.1201537 0.2902431 +0.3795513 0.1201537 0.2902431 +0.3944623 0.1201537 0.2902431 +0.4085988 0.1201537 0.2902431 +0.4220313 0.1201537 0.2902431 +0.4348222 0.1201537 0.2902431 +0.4470264 0.1201537 0.2902431 +0.4586928 0.1201537 0.2902431 +0.4698649 0.1201537 0.2902431 +0.4805811 0.1201537 0.2902431 +0.490876 0.1201537 0.2902431 +0.5007803 0.1201537 0.2902431 +0.510322 0.1201537 0.2902431 +0.5195258 0.1201537 0.2902431 +0.5284142 0.1201537 0.2902431 +0.5370079 0.1201537 0.2902431 +0.5453253 0.1201537 0.2902431 +0.5533834 0.1201537 0.2902431 +0.5611974 0.1201537 0.2902431 +0.5687816 0.1201537 0.2902431 +0.092819 0.1409607 0.2902431 +0.1056428 0.1409607 0.2902431 +0.1201537 0.1409607 0.2902431 +0.1409607 0.1409607 0.2902431 +0.1678172 0.1409607 0.2902431 +0.1950164 0.1409607 0.2902431 +0.2210581 0.1409607 0.2902431 +0.245636 0.1409607 0.2902431 +0.2686816 0.1409607 0.2902431 +0.2902431 0.1409607 0.2902431 +0.3104189 0.1409607 0.2902431 +0.3293248 0.1409607 0.2902431 +0.3470774 0.1409607 0.2902431 +0.3637862 0.1409607 0.2902431 +0.3795513 0.1409607 0.2902431 +0.3944623 0.1409607 0.2902431 +0.4085988 0.1409607 0.2902431 +0.4220313 0.1409607 0.2902431 +0.4348222 0.1409607 0.2902431 +0.4470264 0.1409607 0.2902431 +0.4586928 0.1409607 0.2902431 +0.4698649 0.1409607 0.2902431 +0.4805811 0.1409607 0.2902431 +0.490876 0.1409607 0.2902431 +0.5007803 0.1409607 0.2902431 +0.510322 0.1409607 0.2902431 +0.5195258 0.1409607 0.2902431 +0.5284142 0.1409607 0.2902431 +0.5370079 0.1409607 0.2902431 +0.5453253 0.1409607 0.2902431 +0.5533834 0.1409607 0.2902431 +0.5611974 0.1409607 0.2902431 +0.5687816 0.1409607 0.2902431 +0.092819 0.1678172 0.2902431 +0.1056428 0.1678172 0.2902431 +0.1201537 0.1678172 0.2902431 +0.1409607 0.1678172 0.2902431 +0.1678172 0.1678172 0.2902431 +0.1950164 0.1678172 0.2902431 +0.2210581 0.1678172 0.2902431 +0.245636 0.1678172 0.2902431 +0.2686816 0.1678172 0.2902431 +0.2902431 0.1678172 0.2902431 +0.3104189 0.1678172 0.2902431 +0.3293248 0.1678172 0.2902431 +0.3470774 0.1678172 0.2902431 +0.3637862 0.1678172 0.2902431 +0.3795513 0.1678172 0.2902431 +0.3944623 0.1678172 0.2902431 +0.4085988 0.1678172 0.2902431 +0.4220313 0.1678172 0.2902431 +0.4348222 0.1678172 0.2902431 +0.4470264 0.1678172 0.2902431 +0.4586928 0.1678172 0.2902431 +0.4698649 0.1678172 0.2902431 +0.4805811 0.1678172 0.2902431 +0.490876 0.1678172 0.2902431 +0.5007803 0.1678172 0.2902431 +0.510322 0.1678172 0.2902431 +0.5195258 0.1678172 0.2902431 +0.5284142 0.1678172 0.2902431 +0.5370079 0.1678172 0.2902431 +0.5453253 0.1678172 0.2902431 +0.5533834 0.1678172 0.2902431 +0.5611974 0.1678172 0.2902431 +0.5687816 0.1678172 0.2902431 +0.092819 0.1950164 0.2902431 +0.1056428 0.1950164 0.2902431 +0.1201537 0.1950164 0.2902431 +0.1409607 0.1950164 0.2902431 +0.1678172 0.1950164 0.2902431 +0.1950164 0.1950164 0.2902431 +0.2210581 0.1950164 0.2902431 +0.245636 0.1950164 0.2902431 +0.2686816 0.1950164 0.2902431 +0.2902431 0.1950164 0.2902431 +0.3104189 0.1950164 0.2902431 +0.3293248 0.1950164 0.2902431 +0.3470774 0.1950164 0.2902431 +0.3637862 0.1950164 0.2902431 +0.3795513 0.1950164 0.2902431 +0.3944623 0.1950164 0.2902431 +0.4085988 0.1950164 0.2902431 +0.4220313 0.1950164 0.2902431 +0.4348222 0.1950164 0.2902431 +0.4470264 0.1950164 0.2902431 +0.4586928 0.1950164 0.2902431 +0.4698649 0.1950164 0.2902431 +0.4805811 0.1950164 0.2902431 +0.490876 0.1950164 0.2902431 +0.5007803 0.1950164 0.2902431 +0.510322 0.1950164 0.2902431 +0.5195258 0.1950164 0.2902431 +0.5284142 0.1950164 0.2902431 +0.5370079 0.1950164 0.2902431 +0.5453253 0.1950164 0.2902431 +0.5533834 0.1950164 0.2902431 +0.5611974 0.1950164 0.2902431 +0.5687816 0.1950164 0.2902431 +0.092819 0.2210581 0.2902431 +0.1056428 0.2210581 0.2902431 +0.1201537 0.2210581 0.2902431 +0.1409607 0.2210581 0.2902431 +0.1678172 0.2210581 0.2902431 +0.1950164 0.2210581 0.2902431 +0.2210581 0.2210581 0.2902431 +0.245636 0.2210581 0.2902431 +0.2686816 0.2210581 0.2902431 +0.2902431 0.2210581 0.2902431 +0.3104189 0.2210581 0.2902431 +0.3293248 0.2210581 0.2902431 +0.3470774 0.2210581 0.2902431 +0.3637862 0.2210581 0.2902431 +0.3795513 0.2210581 0.2902431 +0.3944623 0.2210581 0.2902431 +0.4085988 0.2210581 0.2902431 +0.4220313 0.2210581 0.2902431 +0.4348222 0.2210581 0.2902431 +0.4470264 0.2210581 0.2902431 +0.4586928 0.2210581 0.2902431 +0.4698649 0.2210581 0.2902431 +0.4805811 0.2210581 0.2902431 +0.490876 0.2210581 0.2902431 +0.5007803 0.2210581 0.2902431 +0.510322 0.2210581 0.2902431 +0.5195258 0.2210581 0.2902431 +0.5284142 0.2210581 0.2902431 +0.5370079 0.2210581 0.2902431 +0.5453253 0.2210581 0.2902431 +0.5533834 0.2210581 0.2902431 +0.5611974 0.2210581 0.2902431 +0.5687816 0.2210581 0.2902431 +0.092819 0.245636 0.2902431 +0.1056428 0.245636 0.2902431 +0.1201537 0.245636 0.2902431 +0.1409607 0.245636 0.2902431 +0.1678172 0.245636 0.2902431 +0.1950164 0.245636 0.2902431 +0.2210581 0.245636 0.2902431 +0.245636 0.245636 0.2902431 +0.2686816 0.245636 0.2902431 +0.2902431 0.245636 0.2902431 +0.3104189 0.245636 0.2902431 +0.3293248 0.245636 0.2902431 +0.3470774 0.245636 0.2902431 +0.3637862 0.245636 0.2902431 +0.3795513 0.245636 0.2902431 +0.3944623 0.245636 0.2902431 +0.4085988 0.245636 0.2902431 +0.4220313 0.245636 0.2902431 +0.4348222 0.245636 0.2902431 +0.4470264 0.245636 0.2902431 +0.4586928 0.245636 0.2902431 +0.4698649 0.245636 0.2902431 +0.4805811 0.245636 0.2902431 +0.490876 0.245636 0.2902431 +0.5007803 0.245636 0.2902431 +0.510322 0.245636 0.2902431 +0.5195258 0.245636 0.2902431 +0.5284142 0.245636 0.2902431 +0.5370079 0.245636 0.2902431 +0.5453253 0.245636 0.2902431 +0.5533834 0.245636 0.2902431 +0.5611974 0.245636 0.2902431 +0.5687816 0.245636 0.2902431 +0.092819 0.2686816 0.2902431 +0.1056428 0.2686816 0.2902431 +0.1201537 0.2686816 0.2902431 +0.1409607 0.2686816 0.2902431 +0.1678172 0.2686816 0.2902431 +0.1950164 0.2686816 0.2902431 +0.2210581 0.2686816 0.2902431 +0.245636 0.2686816 0.2902431 +0.2686816 0.2686816 0.2902431 +0.2902431 0.2686816 0.2902431 +0.3104189 0.2686816 0.2902431 +0.3293248 0.2686816 0.2902431 +0.3470774 0.2686816 0.2902431 +0.3637862 0.2686816 0.2902431 +0.3795513 0.2686816 0.2902431 +0.3944623 0.2686816 0.2902431 +0.4085988 0.2686816 0.2902431 +0.4220313 0.2686816 0.2902431 +0.4348222 0.2686816 0.2902431 +0.4470264 0.2686816 0.2902431 +0.4586928 0.2686816 0.2902431 +0.4698649 0.2686816 0.2902431 +0.4805811 0.2686816 0.2902431 +0.490876 0.2686816 0.2902431 +0.5007803 0.2686816 0.2902431 +0.510322 0.2686816 0.2902431 +0.5195258 0.2686816 0.2902431 +0.5284142 0.2686816 0.2902431 +0.5370079 0.2686816 0.2902431 +0.5453253 0.2686816 0.2902431 +0.5533834 0.2686816 0.2902431 +0.5611974 0.2686816 0.2902431 +0.5687816 0.2686816 0.2902431 +0.092819 0.2902431 0.2902431 +0.1056428 0.2902431 0.2902431 +0.1201537 0.2902431 0.2902431 +0.1409607 0.2902431 0.2902431 +0.1678172 0.2902431 0.2902431 +0.1950164 0.2902431 0.2902431 +0.2210581 0.2902431 0.2902431 +0.245636 0.2902431 0.2902431 +0.2686816 0.2902431 0.2902431 +0.2902431 0.2902431 0.2902431 +0.3104189 0.2902431 0.2902431 +0.3293248 0.2902431 0.2902431 +0.3470774 0.2902431 0.2902431 +0.3637862 0.2902431 0.2902431 +0.3795513 0.2902431 0.2902431 +0.3944623 0.2902431 0.2902431 +0.4085988 0.2902431 0.2902431 +0.4220313 0.2902431 0.2902431 +0.4348222 0.2902431 0.2902431 +0.4470264 0.2902431 0.2902431 +0.4586928 0.2902431 0.2902431 +0.4698649 0.2902431 0.2902431 +0.4805811 0.2902431 0.2902431 +0.490876 0.2902431 0.2902431 +0.5007803 0.2902431 0.2902431 +0.510322 0.2902431 0.2902431 +0.5195258 0.2902431 0.2902431 +0.5284142 0.2902431 0.2902431 +0.5370079 0.2902431 0.2902431 +0.5453253 0.2902431 0.2902431 +0.5533834 0.2902431 0.2902431 +0.5611974 0.2902431 0.2902431 +0.5687816 0.2902431 0.2902431 +0.092819 0.3104189 0.2902431 +0.1056428 0.3104189 0.2902431 +0.1201537 0.3104189 0.2902431 +0.1409607 0.3104189 0.2902431 +0.1678172 0.3104189 0.2902431 +0.1950164 0.3104189 0.2902431 +0.2210581 0.3104189 0.2902431 +0.245636 0.3104189 0.2902431 +0.2686816 0.3104189 0.2902431 +0.2902431 0.3104189 0.2902431 +0.3104189 0.3104189 0.2902431 +0.3293248 0.3104189 0.2902431 +0.3470774 0.3104189 0.2902431 +0.3637862 0.3104189 0.2902431 +0.3795513 0.3104189 0.2902431 +0.3944623 0.3104189 0.2902431 +0.4085988 0.3104189 0.2902431 +0.4220313 0.3104189 0.2902431 +0.4348222 0.3104189 0.2902431 +0.4470264 0.3104189 0.2902431 +0.4586928 0.3104189 0.2902431 +0.4698649 0.3104189 0.2902431 +0.4805811 0.3104189 0.2902431 +0.490876 0.3104189 0.2902431 +0.5007803 0.3104189 0.2902431 +0.510322 0.3104189 0.2902431 +0.5195258 0.3104189 0.2902431 +0.5284142 0.3104189 0.2902431 +0.5370079 0.3104189 0.2902431 +0.5453253 0.3104189 0.2902431 +0.5533834 0.3104189 0.2902431 +0.5611974 0.3104189 0.2902431 +0.5687816 0.3104189 0.2902431 +0.092819 0.3293248 0.2902431 +0.1056428 0.3293248 0.2902431 +0.1201537 0.3293248 0.2902431 +0.1409607 0.3293248 0.2902431 +0.1678172 0.3293248 0.2902431 +0.1950164 0.3293248 0.2902431 +0.2210581 0.3293248 0.2902431 +0.245636 0.3293248 0.2902431 +0.2686816 0.3293248 0.2902431 +0.2902431 0.3293248 0.2902431 +0.3104189 0.3293248 0.2902431 +0.3293248 0.3293248 0.2902431 +0.3470774 0.3293248 0.2902431 +0.3637862 0.3293248 0.2902431 +0.3795513 0.3293248 0.2902431 +0.3944623 0.3293248 0.2902431 +0.4085988 0.3293248 0.2902431 +0.4220313 0.3293248 0.2902431 +0.4348222 0.3293248 0.2902431 +0.4470264 0.3293248 0.2902431 +0.4586928 0.3293248 0.2902431 +0.4698649 0.3293248 0.2902431 +0.4805811 0.3293248 0.2902431 +0.490876 0.3293248 0.2902431 +0.5007803 0.3293248 0.2902431 +0.510322 0.3293248 0.2902431 +0.5195258 0.3293248 0.2902431 +0.5284142 0.3293248 0.2902431 +0.5370079 0.3293248 0.2902431 +0.5453253 0.3293248 0.2902431 +0.5533834 0.3293248 0.2902431 +0.5611974 0.3293248 0.2902431 +0.5687816 0.3293248 0.2902431 +0.092819 0.3470774 0.2902431 +0.1056428 0.3470774 0.2902431 +0.1201537 0.3470774 0.2902431 +0.1409607 0.3470774 0.2902431 +0.1678172 0.3470774 0.2902431 +0.1950164 0.3470774 0.2902431 +0.2210581 0.3470774 0.2902431 +0.245636 0.3470774 0.2902431 +0.2686816 0.3470774 0.2902431 +0.2902431 0.3470774 0.2902431 +0.3104189 0.3470774 0.2902431 +0.3293248 0.3470774 0.2902431 +0.3470774 0.3470774 0.2902431 +0.3637862 0.3470774 0.2902431 +0.3795513 0.3470774 0.2902431 +0.3944623 0.3470774 0.2902431 +0.4085988 0.3470774 0.2902431 +0.4220313 0.3470774 0.2902431 +0.4348222 0.3470774 0.2902431 +0.4470264 0.3470774 0.2902431 +0.4586928 0.3470774 0.2902431 +0.4698649 0.3470774 0.2902431 +0.4805811 0.3470774 0.2902431 +0.490876 0.3470774 0.2902431 +0.5007803 0.3470774 0.2902431 +0.510322 0.3470774 0.2902431 +0.5195258 0.3470774 0.2902431 +0.5284142 0.3470774 0.2902431 +0.5370079 0.3470774 0.2902431 +0.5453253 0.3470774 0.2902431 +0.5533834 0.3470774 0.2902431 +0.5611974 0.3470774 0.2902431 +0.5687816 0.3470774 0.2902431 +0.092819 0.3637862 0.2902431 +0.1056428 0.3637862 0.2902431 +0.1201537 0.3637862 0.2902431 +0.1409607 0.3637862 0.2902431 +0.1678172 0.3637862 0.2902431 +0.1950164 0.3637862 0.2902431 +0.2210581 0.3637862 0.2902431 +0.245636 0.3637862 0.2902431 +0.2686816 0.3637862 0.2902431 +0.2902431 0.3637862 0.2902431 +0.3104189 0.3637862 0.2902431 +0.3293248 0.3637862 0.2902431 +0.3470774 0.3637862 0.2902431 +0.3637862 0.3637862 0.2902431 +0.3795513 0.3637862 0.2902431 +0.3944623 0.3637862 0.2902431 +0.4085988 0.3637862 0.2902431 +0.4220313 0.3637862 0.2902431 +0.4348222 0.3637862 0.2902431 +0.4470264 0.3637862 0.2902431 +0.4586928 0.3637862 0.2902431 +0.4698649 0.3637862 0.2902431 +0.4805811 0.3637862 0.2902431 +0.490876 0.3637862 0.2902431 +0.5007803 0.3637862 0.2902431 +0.510322 0.3637862 0.2902431 +0.5195258 0.3637862 0.2902431 +0.5284142 0.3637862 0.2902431 +0.5370079 0.3637862 0.2902431 +0.5453253 0.3637862 0.2902431 +0.5533834 0.3637862 0.2902431 +0.5611974 0.3637862 0.2902431 +0.5687816 0.3637862 0.2902431 +0.092819 0.3795513 0.2902431 +0.1056428 0.3795513 0.2902431 +0.1201537 0.3795513 0.2902431 +0.1409607 0.3795513 0.2902431 +0.1678172 0.3795513 0.2902431 +0.1950164 0.3795513 0.2902431 +0.2210581 0.3795513 0.2902431 +0.245636 0.3795513 0.2902431 +0.2686816 0.3795513 0.2902431 +0.2902431 0.3795513 0.2902431 +0.3104189 0.3795513 0.2902431 +0.3293248 0.3795513 0.2902431 +0.3470774 0.3795513 0.2902431 +0.3637862 0.3795513 0.2902431 +0.3795513 0.3795513 0.2902431 +0.3944623 0.3795513 0.2902431 +0.4085988 0.3795513 0.2902431 +0.4220313 0.3795513 0.2902431 +0.4348222 0.3795513 0.2902431 +0.4470264 0.3795513 0.2902431 +0.4586928 0.3795513 0.2902431 +0.4698649 0.3795513 0.2902431 +0.4805811 0.3795513 0.2902431 +0.490876 0.3795513 0.2902431 +0.5007803 0.3795513 0.2902431 +0.510322 0.3795513 0.2902431 +0.5195258 0.3795513 0.2902431 +0.5284142 0.3795513 0.2902431 +0.5370079 0.3795513 0.2902431 +0.5453253 0.3795513 0.2902431 +0.5533834 0.3795513 0.2902431 +0.5611974 0.3795513 0.2902431 +0.5687816 0.3795513 0.2902431 +0.092819 0.3944623 0.2902431 +0.1056428 0.3944623 0.2902431 +0.1201537 0.3944623 0.2902431 +0.1409607 0.3944623 0.2902431 +0.1678172 0.3944623 0.2902431 +0.1950164 0.3944623 0.2902431 +0.2210581 0.3944623 0.2902431 +0.245636 0.3944623 0.2902431 +0.2686816 0.3944623 0.2902431 +0.2902431 0.3944623 0.2902431 +0.3104189 0.3944623 0.2902431 +0.3293248 0.3944623 0.2902431 +0.3470774 0.3944623 0.2902431 +0.3637862 0.3944623 0.2902431 +0.3795513 0.3944623 0.2902431 +0.3944623 0.3944623 0.2902431 +0.4085988 0.3944623 0.2902431 +0.4220313 0.3944623 0.2902431 +0.4348222 0.3944623 0.2902431 +0.4470264 0.3944623 0.2902431 +0.4586928 0.3944623 0.2902431 +0.4698649 0.3944623 0.2902431 +0.4805811 0.3944623 0.2902431 +0.490876 0.3944623 0.2902431 +0.5007803 0.3944623 0.2902431 +0.510322 0.3944623 0.2902431 +0.5195258 0.3944623 0.2902431 +0.5284142 0.3944623 0.2902431 +0.5370079 0.3944623 0.2902431 +0.5453253 0.3944623 0.2902431 +0.5533834 0.3944623 0.2902431 +0.5611974 0.3944623 0.2902431 +0.5687816 0.3944623 0.2902431 +0.092819 0.4085988 0.2902431 +0.1056428 0.4085988 0.2902431 +0.1201537 0.4085988 0.2902431 +0.1409607 0.4085988 0.2902431 +0.1678172 0.4085988 0.2902431 +0.1950164 0.4085988 0.2902431 +0.2210581 0.4085988 0.2902431 +0.245636 0.4085988 0.2902431 +0.2686816 0.4085988 0.2902431 +0.2902431 0.4085988 0.2902431 +0.3104189 0.4085988 0.2902431 +0.3293248 0.4085988 0.2902431 +0.3470774 0.4085988 0.2902431 +0.3637862 0.4085988 0.2902431 +0.3795513 0.4085988 0.2902431 +0.3944623 0.4085988 0.2902431 +0.4085988 0.4085988 0.2902431 +0.4220313 0.4085988 0.2902431 +0.4348222 0.4085988 0.2902431 +0.4470264 0.4085988 0.2902431 +0.4586928 0.4085988 0.2902431 +0.4698649 0.4085988 0.2902431 +0.4805811 0.4085988 0.2902431 +0.490876 0.4085988 0.2902431 +0.5007803 0.4085988 0.2902431 +0.510322 0.4085988 0.2902431 +0.5195258 0.4085988 0.2902431 +0.5284142 0.4085988 0.2902431 +0.5370079 0.4085988 0.2902431 +0.5453253 0.4085988 0.2902431 +0.5533834 0.4085988 0.2902431 +0.5611974 0.4085988 0.2902431 +0.5687816 0.4085988 0.2902431 +0.092819 0.4220313 0.2902431 +0.1056428 0.4220313 0.2902431 +0.1201537 0.4220313 0.2902431 +0.1409607 0.4220313 0.2902431 +0.1678172 0.4220313 0.2902431 +0.1950164 0.4220313 0.2902431 +0.2210581 0.4220313 0.2902431 +0.245636 0.4220313 0.2902431 +0.2686816 0.4220313 0.2902431 +0.2902431 0.4220313 0.2902431 +0.3104189 0.4220313 0.2902431 +0.3293248 0.4220313 0.2902431 +0.3470774 0.4220313 0.2902431 +0.3637862 0.4220313 0.2902431 +0.3795513 0.4220313 0.2902431 +0.3944623 0.4220313 0.2902431 +0.4085988 0.4220313 0.2902431 +0.4220313 0.4220313 0.2902431 +0.4348222 0.4220313 0.2902431 +0.4470264 0.4220313 0.2902431 +0.4586928 0.4220313 0.2902431 +0.4698649 0.4220313 0.2902431 +0.4805811 0.4220313 0.2902431 +0.490876 0.4220313 0.2902431 +0.5007803 0.4220313 0.2902431 +0.510322 0.4220313 0.2902431 +0.5195258 0.4220313 0.2902431 +0.5284142 0.4220313 0.2902431 +0.5370079 0.4220313 0.2902431 +0.5453253 0.4220313 0.2902431 +0.5533834 0.4220313 0.2902431 +0.5611974 0.4220313 0.2902431 +0.5687816 0.4220313 0.2902431 +0.092819 0.4348222 0.2902431 +0.1056428 0.4348222 0.2902431 +0.1201537 0.4348222 0.2902431 +0.1409607 0.4348222 0.2902431 +0.1678172 0.4348222 0.2902431 +0.1950164 0.4348222 0.2902431 +0.2210581 0.4348222 0.2902431 +0.245636 0.4348222 0.2902431 +0.2686816 0.4348222 0.2902431 +0.2902431 0.4348222 0.2902431 +0.3104189 0.4348222 0.2902431 +0.3293248 0.4348222 0.2902431 +0.3470774 0.4348222 0.2902431 +0.3637862 0.4348222 0.2902431 +0.3795513 0.4348222 0.2902431 +0.3944623 0.4348222 0.2902431 +0.4085988 0.4348222 0.2902431 +0.4220313 0.4348222 0.2902431 +0.4348222 0.4348222 0.2902431 +0.4470264 0.4348222 0.2902431 +0.4586928 0.4348222 0.2902431 +0.4698649 0.4348222 0.2902431 +0.4805811 0.4348222 0.2902431 +0.490876 0.4348222 0.2902431 +0.5007803 0.4348222 0.2902431 +0.510322 0.4348222 0.2902431 +0.5195258 0.4348222 0.2902431 +0.5284142 0.4348222 0.2902431 +0.5370079 0.4348222 0.2902431 +0.5453253 0.4348222 0.2902431 +0.5533834 0.4348222 0.2902431 +0.5611974 0.4348222 0.2902431 +0.5687816 0.4348222 0.2902431 +0.092819 0.4470264 0.2902431 +0.1056428 0.4470264 0.2902431 +0.1201537 0.4470264 0.2902431 +0.1409607 0.4470264 0.2902431 +0.1678172 0.4470264 0.2902431 +0.1950164 0.4470264 0.2902431 +0.2210581 0.4470264 0.2902431 +0.245636 0.4470264 0.2902431 +0.2686816 0.4470264 0.2902431 +0.2902431 0.4470264 0.2902431 +0.3104189 0.4470264 0.2902431 +0.3293248 0.4470264 0.2902431 +0.3470774 0.4470264 0.2902431 +0.3637862 0.4470264 0.2902431 +0.3795513 0.4470264 0.2902431 +0.3944623 0.4470264 0.2902431 +0.4085988 0.4470264 0.2902431 +0.4220313 0.4470264 0.2902431 +0.4348222 0.4470264 0.2902431 +0.4470264 0.4470264 0.2902431 +0.4586928 0.4470264 0.2902431 +0.4698649 0.4470264 0.2902431 +0.4805811 0.4470264 0.2902431 +0.490876 0.4470264 0.2902431 +0.5007803 0.4470264 0.2902431 +0.510322 0.4470264 0.2902431 +0.5195258 0.4470264 0.2902431 +0.5284142 0.4470264 0.2902431 +0.5370079 0.4470264 0.2902431 +0.5453253 0.4470264 0.2902431 +0.5533834 0.4470264 0.2902431 +0.5611974 0.4470264 0.2902431 +0.5687816 0.4470264 0.2902431 +0.092819 0.4586928 0.2902431 +0.1056428 0.4586928 0.2902431 +0.1201537 0.4586928 0.2902431 +0.1409607 0.4586928 0.2902431 +0.1678172 0.4586928 0.2902431 +0.1950164 0.4586928 0.2902431 +0.2210581 0.4586928 0.2902431 +0.245636 0.4586928 0.2902431 +0.2686816 0.4586928 0.2902431 +0.2902431 0.4586928 0.2902431 +0.3104189 0.4586928 0.2902431 +0.3293248 0.4586928 0.2902431 +0.3470774 0.4586928 0.2902431 +0.3637862 0.4586928 0.2902431 +0.3795513 0.4586928 0.2902431 +0.3944623 0.4586928 0.2902431 +0.4085988 0.4586928 0.2902431 +0.4220313 0.4586928 0.2902431 +0.4348222 0.4586928 0.2902431 +0.4470264 0.4586928 0.2902431 +0.4586928 0.4586928 0.2902431 +0.4698649 0.4586928 0.2902431 +0.4805811 0.4586928 0.2902431 +0.490876 0.4586928 0.2902431 +0.5007803 0.4586928 0.2902431 +0.510322 0.4586928 0.2902431 +0.5195258 0.4586928 0.2902431 +0.5284142 0.4586928 0.2902431 +0.5370079 0.4586928 0.2902431 +0.5453253 0.4586928 0.2902431 +0.5533834 0.4586928 0.2902431 +0.5611974 0.4586928 0.2902431 +0.5687816 0.4586928 0.2902431 +0.092819 0.4698649 0.2902431 +0.1056428 0.4698649 0.2902431 +0.1201537 0.4698649 0.2902431 +0.1409607 0.4698649 0.2902431 +0.1678172 0.4698649 0.2902431 +0.1950164 0.4698649 0.2902431 +0.2210581 0.4698649 0.2902431 +0.245636 0.4698649 0.2902431 +0.2686816 0.4698649 0.2902431 +0.2902431 0.4698649 0.2902431 +0.3104189 0.4698649 0.2902431 +0.3293248 0.4698649 0.2902431 +0.3470774 0.4698649 0.2902431 +0.3637862 0.4698649 0.2902431 +0.3795513 0.4698649 0.2902431 +0.3944623 0.4698649 0.2902431 +0.4085988 0.4698649 0.2902431 +0.4220313 0.4698649 0.2902431 +0.4348222 0.4698649 0.2902431 +0.4470264 0.4698649 0.2902431 +0.4586928 0.4698649 0.2902431 +0.4698649 0.4698649 0.2902431 +0.4805811 0.4698649 0.2902431 +0.490876 0.4698649 0.2902431 +0.5007803 0.4698649 0.2902431 +0.510322 0.4698649 0.2902431 +0.5195258 0.4698649 0.2902431 +0.5284142 0.4698649 0.2902431 +0.5370079 0.4698649 0.2902431 +0.5453253 0.4698649 0.2902431 +0.5533834 0.4698649 0.2902431 +0.5611974 0.4698649 0.2902431 +0.5687816 0.4698649 0.2902431 +0.092819 0.4805811 0.2902431 +0.1056428 0.4805811 0.2902431 +0.1201537 0.4805811 0.2902431 +0.1409607 0.4805811 0.2902431 +0.1678172 0.4805811 0.2902431 +0.1950164 0.4805811 0.2902431 +0.2210581 0.4805811 0.2902431 +0.245636 0.4805811 0.2902431 +0.2686816 0.4805811 0.2902431 +0.2902431 0.4805811 0.2902431 +0.3104189 0.4805811 0.2902431 +0.3293248 0.4805811 0.2902431 +0.3470774 0.4805811 0.2902431 +0.3637862 0.4805811 0.2902431 +0.3795513 0.4805811 0.2902431 +0.3944623 0.4805811 0.2902431 +0.4085988 0.4805811 0.2902431 +0.4220313 0.4805811 0.2902431 +0.4348222 0.4805811 0.2902431 +0.4470264 0.4805811 0.2902431 +0.4586928 0.4805811 0.2902431 +0.4698649 0.4805811 0.2902431 +0.4805811 0.4805811 0.2902431 +0.490876 0.4805811 0.2902431 +0.5007803 0.4805811 0.2902431 +0.510322 0.4805811 0.2902431 +0.5195258 0.4805811 0.2902431 +0.5284142 0.4805811 0.2902431 +0.5370079 0.4805811 0.2902431 +0.5453253 0.4805811 0.2902431 +0.5533834 0.4805811 0.2902431 +0.5611974 0.4805811 0.2902431 +0.5687816 0.4805811 0.2902431 +0.092819 0.490876 0.2902431 +0.1056428 0.490876 0.2902431 +0.1201537 0.490876 0.2902431 +0.1409607 0.490876 0.2902431 +0.1678172 0.490876 0.2902431 +0.1950164 0.490876 0.2902431 +0.2210581 0.490876 0.2902431 +0.245636 0.490876 0.2902431 +0.2686816 0.490876 0.2902431 +0.2902431 0.490876 0.2902431 +0.3104189 0.490876 0.2902431 +0.3293248 0.490876 0.2902431 +0.3470774 0.490876 0.2902431 +0.3637862 0.490876 0.2902431 +0.3795513 0.490876 0.2902431 +0.3944623 0.490876 0.2902431 +0.4085988 0.490876 0.2902431 +0.4220313 0.490876 0.2902431 +0.4348222 0.490876 0.2902431 +0.4470264 0.490876 0.2902431 +0.4586928 0.490876 0.2902431 +0.4698649 0.490876 0.2902431 +0.4805811 0.490876 0.2902431 +0.490876 0.490876 0.2902431 +0.5007803 0.490876 0.2902431 +0.510322 0.490876 0.2902431 +0.5195258 0.490876 0.2902431 +0.5284142 0.490876 0.2902431 +0.5370079 0.490876 0.2902431 +0.5453253 0.490876 0.2902431 +0.5533834 0.490876 0.2902431 +0.5611974 0.490876 0.2902431 +0.5687816 0.490876 0.2902431 +0.092819 0.5007803 0.2902431 +0.1056428 0.5007803 0.2902431 +0.1201537 0.5007803 0.2902431 +0.1409607 0.5007803 0.2902431 +0.1678172 0.5007803 0.2902431 +0.1950164 0.5007803 0.2902431 +0.2210581 0.5007803 0.2902431 +0.245636 0.5007803 0.2902431 +0.2686816 0.5007803 0.2902431 +0.2902431 0.5007803 0.2902431 +0.3104189 0.5007803 0.2902431 +0.3293248 0.5007803 0.2902431 +0.3470774 0.5007803 0.2902431 +0.3637862 0.5007803 0.2902431 +0.3795513 0.5007803 0.2902431 +0.3944623 0.5007803 0.2902431 +0.4085988 0.5007803 0.2902431 +0.4220313 0.5007803 0.2902431 +0.4348222 0.5007803 0.2902431 +0.4470264 0.5007803 0.2902431 +0.4586928 0.5007803 0.2902431 +0.4698649 0.5007803 0.2902431 +0.4805811 0.5007803 0.2902431 +0.490876 0.5007803 0.2902431 +0.5007803 0.5007803 0.2902431 +0.510322 0.5007803 0.2902431 +0.5195258 0.5007803 0.2902431 +0.5284142 0.5007803 0.2902431 +0.5370079 0.5007803 0.2902431 +0.5453253 0.5007803 0.2902431 +0.5533834 0.5007803 0.2902431 +0.5611974 0.5007803 0.2902431 +0.5687816 0.5007803 0.2902431 +0.092819 0.510322 0.2902431 +0.1056428 0.510322 0.2902431 +0.1201537 0.510322 0.2902431 +0.1409607 0.510322 0.2902431 +0.1678172 0.510322 0.2902431 +0.1950164 0.510322 0.2902431 +0.2210581 0.510322 0.2902431 +0.245636 0.510322 0.2902431 +0.2686816 0.510322 0.2902431 +0.2902431 0.510322 0.2902431 +0.3104189 0.510322 0.2902431 +0.3293248 0.510322 0.2902431 +0.3470774 0.510322 0.2902431 +0.3637862 0.510322 0.2902431 +0.3795513 0.510322 0.2902431 +0.3944623 0.510322 0.2902431 +0.4085988 0.510322 0.2902431 +0.4220313 0.510322 0.2902431 +0.4348222 0.510322 0.2902431 +0.4470264 0.510322 0.2902431 +0.4586928 0.510322 0.2902431 +0.4698649 0.510322 0.2902431 +0.4805811 0.510322 0.2902431 +0.490876 0.510322 0.2902431 +0.5007803 0.510322 0.2902431 +0.510322 0.510322 0.2902431 +0.5195258 0.510322 0.2902431 +0.5284142 0.510322 0.2902431 +0.5370079 0.510322 0.2902431 +0.5453253 0.510322 0.2902431 +0.5533834 0.510322 0.2902431 +0.5611974 0.510322 0.2902431 +0.5687816 0.510322 0.2902431 +0.092819 0.5195258 0.2902431 +0.1056428 0.5195258 0.2902431 +0.1201537 0.5195258 0.2902431 +0.1409607 0.5195258 0.2902431 +0.1678172 0.5195258 0.2902431 +0.1950164 0.5195258 0.2902431 +0.2210581 0.5195258 0.2902431 +0.245636 0.5195258 0.2902431 +0.2686816 0.5195258 0.2902431 +0.2902431 0.5195258 0.2902431 +0.3104189 0.5195258 0.2902431 +0.3293248 0.5195258 0.2902431 +0.3470774 0.5195258 0.2902431 +0.3637862 0.5195258 0.2902431 +0.3795513 0.5195258 0.2902431 +0.3944623 0.5195258 0.2902431 +0.4085988 0.5195258 0.2902431 +0.4220313 0.5195258 0.2902431 +0.4348222 0.5195258 0.2902431 +0.4470264 0.5195258 0.2902431 +0.4586928 0.5195258 0.2902431 +0.4698649 0.5195258 0.2902431 +0.4805811 0.5195258 0.2902431 +0.490876 0.5195258 0.2902431 +0.5007803 0.5195258 0.2902431 +0.510322 0.5195258 0.2902431 +0.5195258 0.5195258 0.2902431 +0.5284142 0.5195258 0.2902431 +0.5370079 0.5195258 0.2902431 +0.5453253 0.5195258 0.2902431 +0.5533834 0.5195258 0.2902431 +0.5611974 0.5195258 0.2902431 +0.5687816 0.5195258 0.2902431 +0.092819 0.5284142 0.2902431 +0.1056428 0.5284142 0.2902431 +0.1201537 0.5284142 0.2902431 +0.1409607 0.5284142 0.2902431 +0.1678172 0.5284142 0.2902431 +0.1950164 0.5284142 0.2902431 +0.2210581 0.5284142 0.2902431 +0.245636 0.5284142 0.2902431 +0.2686816 0.5284142 0.2902431 +0.2902431 0.5284142 0.2902431 +0.3104189 0.5284142 0.2902431 +0.3293248 0.5284142 0.2902431 +0.3470774 0.5284142 0.2902431 +0.3637862 0.5284142 0.2902431 +0.3795513 0.5284142 0.2902431 +0.3944623 0.5284142 0.2902431 +0.4085988 0.5284142 0.2902431 +0.4220313 0.5284142 0.2902431 +0.4348222 0.5284142 0.2902431 +0.4470264 0.5284142 0.2902431 +0.4586928 0.5284142 0.2902431 +0.4698649 0.5284142 0.2902431 +0.4805811 0.5284142 0.2902431 +0.490876 0.5284142 0.2902431 +0.5007803 0.5284142 0.2902431 +0.510322 0.5284142 0.2902431 +0.5195258 0.5284142 0.2902431 +0.5284142 0.5284142 0.2902431 +0.5370079 0.5284142 0.2902431 +0.5453253 0.5284142 0.2902431 +0.5533834 0.5284142 0.2902431 +0.5611974 0.5284142 0.2902431 +0.5687816 0.5284142 0.2902431 +0.092819 0.5370079 0.2902431 +0.1056428 0.5370079 0.2902431 +0.1201537 0.5370079 0.2902431 +0.1409607 0.5370079 0.2902431 +0.1678172 0.5370079 0.2902431 +0.1950164 0.5370079 0.2902431 +0.2210581 0.5370079 0.2902431 +0.245636 0.5370079 0.2902431 +0.2686816 0.5370079 0.2902431 +0.2902431 0.5370079 0.2902431 +0.3104189 0.5370079 0.2902431 +0.3293248 0.5370079 0.2902431 +0.3470774 0.5370079 0.2902431 +0.3637862 0.5370079 0.2902431 +0.3795513 0.5370079 0.2902431 +0.3944623 0.5370079 0.2902431 +0.4085988 0.5370079 0.2902431 +0.4220313 0.5370079 0.2902431 +0.4348222 0.5370079 0.2902431 +0.4470264 0.5370079 0.2902431 +0.4586928 0.5370079 0.2902431 +0.4698649 0.5370079 0.2902431 +0.4805811 0.5370079 0.2902431 +0.490876 0.5370079 0.2902431 +0.5007803 0.5370079 0.2902431 +0.510322 0.5370079 0.2902431 +0.5195258 0.5370079 0.2902431 +0.5284142 0.5370079 0.2902431 +0.5370079 0.5370079 0.2902431 +0.5453253 0.5370079 0.2902431 +0.5533834 0.5370079 0.2902431 +0.5611974 0.5370079 0.2902431 +0.5687816 0.5370079 0.2902431 +0.092819 0.5453253 0.2902431 +0.1056428 0.5453253 0.2902431 +0.1201537 0.5453253 0.2902431 +0.1409607 0.5453253 0.2902431 +0.1678172 0.5453253 0.2902431 +0.1950164 0.5453253 0.2902431 +0.2210581 0.5453253 0.2902431 +0.245636 0.5453253 0.2902431 +0.2686816 0.5453253 0.2902431 +0.2902431 0.5453253 0.2902431 +0.3104189 0.5453253 0.2902431 +0.3293248 0.5453253 0.2902431 +0.3470774 0.5453253 0.2902431 +0.3637862 0.5453253 0.2902431 +0.3795513 0.5453253 0.2902431 +0.3944623 0.5453253 0.2902431 +0.4085988 0.5453253 0.2902431 +0.4220313 0.5453253 0.2902431 +0.4348222 0.5453253 0.2902431 +0.4470264 0.5453253 0.2902431 +0.4586928 0.5453253 0.2902431 +0.4698649 0.5453253 0.2902431 +0.4805811 0.5453253 0.2902431 +0.490876 0.5453253 0.2902431 +0.5007803 0.5453253 0.2902431 +0.510322 0.5453253 0.2902431 +0.5195258 0.5453253 0.2902431 +0.5284142 0.5453253 0.2902431 +0.5370079 0.5453253 0.2902431 +0.5453253 0.5453253 0.2902431 +0.5533834 0.5453253 0.2902431 +0.5611974 0.5453253 0.2902431 +0.5687816 0.5453253 0.2902431 +0.092819 0.5533834 0.2902431 +0.1056428 0.5533834 0.2902431 +0.1201537 0.5533834 0.2902431 +0.1409607 0.5533834 0.2902431 +0.1678172 0.5533834 0.2902431 +0.1950164 0.5533834 0.2902431 +0.2210581 0.5533834 0.2902431 +0.245636 0.5533834 0.2902431 +0.2686816 0.5533834 0.2902431 +0.2902431 0.5533834 0.2902431 +0.3104189 0.5533834 0.2902431 +0.3293248 0.5533834 0.2902431 +0.3470774 0.5533834 0.2902431 +0.3637862 0.5533834 0.2902431 +0.3795513 0.5533834 0.2902431 +0.3944623 0.5533834 0.2902431 +0.4085988 0.5533834 0.2902431 +0.4220313 0.5533834 0.2902431 +0.4348222 0.5533834 0.2902431 +0.4470264 0.5533834 0.2902431 +0.4586928 0.5533834 0.2902431 +0.4698649 0.5533834 0.2902431 +0.4805811 0.5533834 0.2902431 +0.490876 0.5533834 0.2902431 +0.5007803 0.5533834 0.2902431 +0.510322 0.5533834 0.2902431 +0.5195258 0.5533834 0.2902431 +0.5284142 0.5533834 0.2902431 +0.5370079 0.5533834 0.2902431 +0.5453253 0.5533834 0.2902431 +0.5533834 0.5533834 0.2902431 +0.5611974 0.5533834 0.2902431 +0.5687816 0.5533834 0.2902431 +0.092819 0.5611974 0.2902431 +0.1056428 0.5611974 0.2902431 +0.1201537 0.5611974 0.2902431 +0.1409607 0.5611974 0.2902431 +0.1678172 0.5611974 0.2902431 +0.1950164 0.5611974 0.2902431 +0.2210581 0.5611974 0.2902431 +0.245636 0.5611974 0.2902431 +0.2686816 0.5611974 0.2902431 +0.2902431 0.5611974 0.2902431 +0.3104189 0.5611974 0.2902431 +0.3293248 0.5611974 0.2902431 +0.3470774 0.5611974 0.2902431 +0.3637862 0.5611974 0.2902431 +0.3795513 0.5611974 0.2902431 +0.3944623 0.5611974 0.2902431 +0.4085988 0.5611974 0.2902431 +0.4220313 0.5611974 0.2902431 +0.4348222 0.5611974 0.2902431 +0.4470264 0.5611974 0.2902431 +0.4586928 0.5611974 0.2902431 +0.4698649 0.5611974 0.2902431 +0.4805811 0.5611974 0.2902431 +0.490876 0.5611974 0.2902431 +0.5007803 0.5611974 0.2902431 +0.510322 0.5611974 0.2902431 +0.5195258 0.5611974 0.2902431 +0.5284142 0.5611974 0.2902431 +0.5370079 0.5611974 0.2902431 +0.5453253 0.5611974 0.2902431 +0.5533834 0.5611974 0.2902431 +0.5611974 0.5611974 0.2902431 +0.5687816 0.5611974 0.2902431 +0.092819 0.5687816 0.2902431 +0.1056428 0.5687816 0.2902431 +0.1201537 0.5687816 0.2902431 +0.1409607 0.5687816 0.2902431 +0.1678172 0.5687816 0.2902431 +0.1950164 0.5687816 0.2902431 +0.2210581 0.5687816 0.2902431 +0.245636 0.5687816 0.2902431 +0.2686816 0.5687816 0.2902431 +0.2902431 0.5687816 0.2902431 +0.3104189 0.5687816 0.2902431 +0.3293248 0.5687816 0.2902431 +0.3470774 0.5687816 0.2902431 +0.3637862 0.5687816 0.2902431 +0.3795513 0.5687816 0.2902431 +0.3944623 0.5687816 0.2902431 +0.4085988 0.5687816 0.2902431 +0.4220313 0.5687816 0.2902431 +0.4348222 0.5687816 0.2902431 +0.4470264 0.5687816 0.2902431 +0.4586928 0.5687816 0.2902431 +0.4698649 0.5687816 0.2902431 +0.4805811 0.5687816 0.2902431 +0.490876 0.5687816 0.2902431 +0.5007803 0.5687816 0.2902431 +0.510322 0.5687816 0.2902431 +0.5195258 0.5687816 0.2902431 +0.5284142 0.5687816 0.2902431 +0.5370079 0.5687816 0.2902431 +0.5453253 0.5687816 0.2902431 +0.5533834 0.5687816 0.2902431 +0.5611974 0.5687816 0.2902431 +0.5687816 0.5687816 0.2902431 +0.092819 0.092819 0.3104189 +0.1056428 0.092819 0.3104189 +0.1201537 0.092819 0.3104189 +0.1409607 0.092819 0.3104189 +0.1678172 0.092819 0.3104189 +0.1950164 0.092819 0.3104189 +0.2210581 0.092819 0.3104189 +0.245636 0.092819 0.3104189 +0.2686816 0.092819 0.3104189 +0.2902431 0.092819 0.3104189 +0.3104189 0.092819 0.3104189 +0.3293248 0.092819 0.3104189 +0.3470774 0.092819 0.3104189 +0.3637862 0.092819 0.3104189 +0.3795513 0.092819 0.3104189 +0.3944623 0.092819 0.3104189 +0.4085988 0.092819 0.3104189 +0.4220313 0.092819 0.3104189 +0.4348222 0.092819 0.3104189 +0.4470264 0.092819 0.3104189 +0.4586928 0.092819 0.3104189 +0.4698649 0.092819 0.3104189 +0.4805811 0.092819 0.3104189 +0.490876 0.092819 0.3104189 +0.5007803 0.092819 0.3104189 +0.510322 0.092819 0.3104189 +0.5195258 0.092819 0.3104189 +0.5284142 0.092819 0.3104189 +0.5370079 0.092819 0.3104189 +0.5453253 0.092819 0.3104189 +0.5533834 0.092819 0.3104189 +0.5611974 0.092819 0.3104189 +0.5687816 0.092819 0.3104189 +0.092819 0.1056428 0.3104189 +0.1056428 0.1056428 0.3104189 +0.1201537 0.1056428 0.3104189 +0.1409607 0.1056428 0.3104189 +0.1678172 0.1056428 0.3104189 +0.1950164 0.1056428 0.3104189 +0.2210581 0.1056428 0.3104189 +0.245636 0.1056428 0.3104189 +0.2686816 0.1056428 0.3104189 +0.2902431 0.1056428 0.3104189 +0.3104189 0.1056428 0.3104189 +0.3293248 0.1056428 0.3104189 +0.3470774 0.1056428 0.3104189 +0.3637862 0.1056428 0.3104189 +0.3795513 0.1056428 0.3104189 +0.3944623 0.1056428 0.3104189 +0.4085988 0.1056428 0.3104189 +0.4220313 0.1056428 0.3104189 +0.4348222 0.1056428 0.3104189 +0.4470264 0.1056428 0.3104189 +0.4586928 0.1056428 0.3104189 +0.4698649 0.1056428 0.3104189 +0.4805811 0.1056428 0.3104189 +0.490876 0.1056428 0.3104189 +0.5007803 0.1056428 0.3104189 +0.510322 0.1056428 0.3104189 +0.5195258 0.1056428 0.3104189 +0.5284142 0.1056428 0.3104189 +0.5370079 0.1056428 0.3104189 +0.5453253 0.1056428 0.3104189 +0.5533834 0.1056428 0.3104189 +0.5611974 0.1056428 0.3104189 +0.5687816 0.1056428 0.3104189 +0.092819 0.1201537 0.3104189 +0.1056428 0.1201537 0.3104189 +0.1201537 0.1201537 0.3104189 +0.1409607 0.1201537 0.3104189 +0.1678172 0.1201537 0.3104189 +0.1950164 0.1201537 0.3104189 +0.2210581 0.1201537 0.3104189 +0.245636 0.1201537 0.3104189 +0.2686816 0.1201537 0.3104189 +0.2902431 0.1201537 0.3104189 +0.3104189 0.1201537 0.3104189 +0.3293248 0.1201537 0.3104189 +0.3470774 0.1201537 0.3104189 +0.3637862 0.1201537 0.3104189 +0.3795513 0.1201537 0.3104189 +0.3944623 0.1201537 0.3104189 +0.4085988 0.1201537 0.3104189 +0.4220313 0.1201537 0.3104189 +0.4348222 0.1201537 0.3104189 +0.4470264 0.1201537 0.3104189 +0.4586928 0.1201537 0.3104189 +0.4698649 0.1201537 0.3104189 +0.4805811 0.1201537 0.3104189 +0.490876 0.1201537 0.3104189 +0.5007803 0.1201537 0.3104189 +0.510322 0.1201537 0.3104189 +0.5195258 0.1201537 0.3104189 +0.5284142 0.1201537 0.3104189 +0.5370079 0.1201537 0.3104189 +0.5453253 0.1201537 0.3104189 +0.5533834 0.1201537 0.3104189 +0.5611974 0.1201537 0.3104189 +0.5687816 0.1201537 0.3104189 +0.092819 0.1409607 0.3104189 +0.1056428 0.1409607 0.3104189 +0.1201537 0.1409607 0.3104189 +0.1409607 0.1409607 0.3104189 +0.1678172 0.1409607 0.3104189 +0.1950164 0.1409607 0.3104189 +0.2210581 0.1409607 0.3104189 +0.245636 0.1409607 0.3104189 +0.2686816 0.1409607 0.3104189 +0.2902431 0.1409607 0.3104189 +0.3104189 0.1409607 0.3104189 +0.3293248 0.1409607 0.3104189 +0.3470774 0.1409607 0.3104189 +0.3637862 0.1409607 0.3104189 +0.3795513 0.1409607 0.3104189 +0.3944623 0.1409607 0.3104189 +0.4085988 0.1409607 0.3104189 +0.4220313 0.1409607 0.3104189 +0.4348222 0.1409607 0.3104189 +0.4470264 0.1409607 0.3104189 +0.4586928 0.1409607 0.3104189 +0.4698649 0.1409607 0.3104189 +0.4805811 0.1409607 0.3104189 +0.490876 0.1409607 0.3104189 +0.5007803 0.1409607 0.3104189 +0.510322 0.1409607 0.3104189 +0.5195258 0.1409607 0.3104189 +0.5284142 0.1409607 0.3104189 +0.5370079 0.1409607 0.3104189 +0.5453253 0.1409607 0.3104189 +0.5533834 0.1409607 0.3104189 +0.5611974 0.1409607 0.3104189 +0.5687816 0.1409607 0.3104189 +0.092819 0.1678172 0.3104189 +0.1056428 0.1678172 0.3104189 +0.1201537 0.1678172 0.3104189 +0.1409607 0.1678172 0.3104189 +0.1678172 0.1678172 0.3104189 +0.1950164 0.1678172 0.3104189 +0.2210581 0.1678172 0.3104189 +0.245636 0.1678172 0.3104189 +0.2686816 0.1678172 0.3104189 +0.2902431 0.1678172 0.3104189 +0.3104189 0.1678172 0.3104189 +0.3293248 0.1678172 0.3104189 +0.3470774 0.1678172 0.3104189 +0.3637862 0.1678172 0.3104189 +0.3795513 0.1678172 0.3104189 +0.3944623 0.1678172 0.3104189 +0.4085988 0.1678172 0.3104189 +0.4220313 0.1678172 0.3104189 +0.4348222 0.1678172 0.3104189 +0.4470264 0.1678172 0.3104189 +0.4586928 0.1678172 0.3104189 +0.4698649 0.1678172 0.3104189 +0.4805811 0.1678172 0.3104189 +0.490876 0.1678172 0.3104189 +0.5007803 0.1678172 0.3104189 +0.510322 0.1678172 0.3104189 +0.5195258 0.1678172 0.3104189 +0.5284142 0.1678172 0.3104189 +0.5370079 0.1678172 0.3104189 +0.5453253 0.1678172 0.3104189 +0.5533834 0.1678172 0.3104189 +0.5611974 0.1678172 0.3104189 +0.5687816 0.1678172 0.3104189 +0.092819 0.1950164 0.3104189 +0.1056428 0.1950164 0.3104189 +0.1201537 0.1950164 0.3104189 +0.1409607 0.1950164 0.3104189 +0.1678172 0.1950164 0.3104189 +0.1950164 0.1950164 0.3104189 +0.2210581 0.1950164 0.3104189 +0.245636 0.1950164 0.3104189 +0.2686816 0.1950164 0.3104189 +0.2902431 0.1950164 0.3104189 +0.3104189 0.1950164 0.3104189 +0.3293248 0.1950164 0.3104189 +0.3470774 0.1950164 0.3104189 +0.3637862 0.1950164 0.3104189 +0.3795513 0.1950164 0.3104189 +0.3944623 0.1950164 0.3104189 +0.4085988 0.1950164 0.3104189 +0.4220313 0.1950164 0.3104189 +0.4348222 0.1950164 0.3104189 +0.4470264 0.1950164 0.3104189 +0.4586928 0.1950164 0.3104189 +0.4698649 0.1950164 0.3104189 +0.4805811 0.1950164 0.3104189 +0.490876 0.1950164 0.3104189 +0.5007803 0.1950164 0.3104189 +0.510322 0.1950164 0.3104189 +0.5195258 0.1950164 0.3104189 +0.5284142 0.1950164 0.3104189 +0.5370079 0.1950164 0.3104189 +0.5453253 0.1950164 0.3104189 +0.5533834 0.1950164 0.3104189 +0.5611974 0.1950164 0.3104189 +0.5687816 0.1950164 0.3104189 +0.092819 0.2210581 0.3104189 +0.1056428 0.2210581 0.3104189 +0.1201537 0.2210581 0.3104189 +0.1409607 0.2210581 0.3104189 +0.1678172 0.2210581 0.3104189 +0.1950164 0.2210581 0.3104189 +0.2210581 0.2210581 0.3104189 +0.245636 0.2210581 0.3104189 +0.2686816 0.2210581 0.3104189 +0.2902431 0.2210581 0.3104189 +0.3104189 0.2210581 0.3104189 +0.3293248 0.2210581 0.3104189 +0.3470774 0.2210581 0.3104189 +0.3637862 0.2210581 0.3104189 +0.3795513 0.2210581 0.3104189 +0.3944623 0.2210581 0.3104189 +0.4085988 0.2210581 0.3104189 +0.4220313 0.2210581 0.3104189 +0.4348222 0.2210581 0.3104189 +0.4470264 0.2210581 0.3104189 +0.4586928 0.2210581 0.3104189 +0.4698649 0.2210581 0.3104189 +0.4805811 0.2210581 0.3104189 +0.490876 0.2210581 0.3104189 +0.5007803 0.2210581 0.3104189 +0.510322 0.2210581 0.3104189 +0.5195258 0.2210581 0.3104189 +0.5284142 0.2210581 0.3104189 +0.5370079 0.2210581 0.3104189 +0.5453253 0.2210581 0.3104189 +0.5533834 0.2210581 0.3104189 +0.5611974 0.2210581 0.3104189 +0.5687816 0.2210581 0.3104189 +0.092819 0.245636 0.3104189 +0.1056428 0.245636 0.3104189 +0.1201537 0.245636 0.3104189 +0.1409607 0.245636 0.3104189 +0.1678172 0.245636 0.3104189 +0.1950164 0.245636 0.3104189 +0.2210581 0.245636 0.3104189 +0.245636 0.245636 0.3104189 +0.2686816 0.245636 0.3104189 +0.2902431 0.245636 0.3104189 +0.3104189 0.245636 0.3104189 +0.3293248 0.245636 0.3104189 +0.3470774 0.245636 0.3104189 +0.3637862 0.245636 0.3104189 +0.3795513 0.245636 0.3104189 +0.3944623 0.245636 0.3104189 +0.4085988 0.245636 0.3104189 +0.4220313 0.245636 0.3104189 +0.4348222 0.245636 0.3104189 +0.4470264 0.245636 0.3104189 +0.4586928 0.245636 0.3104189 +0.4698649 0.245636 0.3104189 +0.4805811 0.245636 0.3104189 +0.490876 0.245636 0.3104189 +0.5007803 0.245636 0.3104189 +0.510322 0.245636 0.3104189 +0.5195258 0.245636 0.3104189 +0.5284142 0.245636 0.3104189 +0.5370079 0.245636 0.3104189 +0.5453253 0.245636 0.3104189 +0.5533834 0.245636 0.3104189 +0.5611974 0.245636 0.3104189 +0.5687816 0.245636 0.3104189 +0.092819 0.2686816 0.3104189 +0.1056428 0.2686816 0.3104189 +0.1201537 0.2686816 0.3104189 +0.1409607 0.2686816 0.3104189 +0.1678172 0.2686816 0.3104189 +0.1950164 0.2686816 0.3104189 +0.2210581 0.2686816 0.3104189 +0.245636 0.2686816 0.3104189 +0.2686816 0.2686816 0.3104189 +0.2902431 0.2686816 0.3104189 +0.3104189 0.2686816 0.3104189 +0.3293248 0.2686816 0.3104189 +0.3470774 0.2686816 0.3104189 +0.3637862 0.2686816 0.3104189 +0.3795513 0.2686816 0.3104189 +0.3944623 0.2686816 0.3104189 +0.4085988 0.2686816 0.3104189 +0.4220313 0.2686816 0.3104189 +0.4348222 0.2686816 0.3104189 +0.4470264 0.2686816 0.3104189 +0.4586928 0.2686816 0.3104189 +0.4698649 0.2686816 0.3104189 +0.4805811 0.2686816 0.3104189 +0.490876 0.2686816 0.3104189 +0.5007803 0.2686816 0.3104189 +0.510322 0.2686816 0.3104189 +0.5195258 0.2686816 0.3104189 +0.5284142 0.2686816 0.3104189 +0.5370079 0.2686816 0.3104189 +0.5453253 0.2686816 0.3104189 +0.5533834 0.2686816 0.3104189 +0.5611974 0.2686816 0.3104189 +0.5687816 0.2686816 0.3104189 +0.092819 0.2902431 0.3104189 +0.1056428 0.2902431 0.3104189 +0.1201537 0.2902431 0.3104189 +0.1409607 0.2902431 0.3104189 +0.1678172 0.2902431 0.3104189 +0.1950164 0.2902431 0.3104189 +0.2210581 0.2902431 0.3104189 +0.245636 0.2902431 0.3104189 +0.2686816 0.2902431 0.3104189 +0.2902431 0.2902431 0.3104189 +0.3104189 0.2902431 0.3104189 +0.3293248 0.2902431 0.3104189 +0.3470774 0.2902431 0.3104189 +0.3637862 0.2902431 0.3104189 +0.3795513 0.2902431 0.3104189 +0.3944623 0.2902431 0.3104189 +0.4085988 0.2902431 0.3104189 +0.4220313 0.2902431 0.3104189 +0.4348222 0.2902431 0.3104189 +0.4470264 0.2902431 0.3104189 +0.4586928 0.2902431 0.3104189 +0.4698649 0.2902431 0.3104189 +0.4805811 0.2902431 0.3104189 +0.490876 0.2902431 0.3104189 +0.5007803 0.2902431 0.3104189 +0.510322 0.2902431 0.3104189 +0.5195258 0.2902431 0.3104189 +0.5284142 0.2902431 0.3104189 +0.5370079 0.2902431 0.3104189 +0.5453253 0.2902431 0.3104189 +0.5533834 0.2902431 0.3104189 +0.5611974 0.2902431 0.3104189 +0.5687816 0.2902431 0.3104189 +0.092819 0.3104189 0.3104189 +0.1056428 0.3104189 0.3104189 +0.1201537 0.3104189 0.3104189 +0.1409607 0.3104189 0.3104189 +0.1678172 0.3104189 0.3104189 +0.1950164 0.3104189 0.3104189 +0.2210581 0.3104189 0.3104189 +0.245636 0.3104189 0.3104189 +0.2686816 0.3104189 0.3104189 +0.2902431 0.3104189 0.3104189 +0.3104189 0.3104189 0.3104189 +0.3293248 0.3104189 0.3104189 +0.3470774 0.3104189 0.3104189 +0.3637862 0.3104189 0.3104189 +0.3795513 0.3104189 0.3104189 +0.3944623 0.3104189 0.3104189 +0.4085988 0.3104189 0.3104189 +0.4220313 0.3104189 0.3104189 +0.4348222 0.3104189 0.3104189 +0.4470264 0.3104189 0.3104189 +0.4586928 0.3104189 0.3104189 +0.4698649 0.3104189 0.3104189 +0.4805811 0.3104189 0.3104189 +0.490876 0.3104189 0.3104189 +0.5007803 0.3104189 0.3104189 +0.510322 0.3104189 0.3104189 +0.5195258 0.3104189 0.3104189 +0.5284142 0.3104189 0.3104189 +0.5370079 0.3104189 0.3104189 +0.5453253 0.3104189 0.3104189 +0.5533834 0.3104189 0.3104189 +0.5611974 0.3104189 0.3104189 +0.5687816 0.3104189 0.3104189 +0.092819 0.3293248 0.3104189 +0.1056428 0.3293248 0.3104189 +0.1201537 0.3293248 0.3104189 +0.1409607 0.3293248 0.3104189 +0.1678172 0.3293248 0.3104189 +0.1950164 0.3293248 0.3104189 +0.2210581 0.3293248 0.3104189 +0.245636 0.3293248 0.3104189 +0.2686816 0.3293248 0.3104189 +0.2902431 0.3293248 0.3104189 +0.3104189 0.3293248 0.3104189 +0.3293248 0.3293248 0.3104189 +0.3470774 0.3293248 0.3104189 +0.3637862 0.3293248 0.3104189 +0.3795513 0.3293248 0.3104189 +0.3944623 0.3293248 0.3104189 +0.4085988 0.3293248 0.3104189 +0.4220313 0.3293248 0.3104189 +0.4348222 0.3293248 0.3104189 +0.4470264 0.3293248 0.3104189 +0.4586928 0.3293248 0.3104189 +0.4698649 0.3293248 0.3104189 +0.4805811 0.3293248 0.3104189 +0.490876 0.3293248 0.3104189 +0.5007803 0.3293248 0.3104189 +0.510322 0.3293248 0.3104189 +0.5195258 0.3293248 0.3104189 +0.5284142 0.3293248 0.3104189 +0.5370079 0.3293248 0.3104189 +0.5453253 0.3293248 0.3104189 +0.5533834 0.3293248 0.3104189 +0.5611974 0.3293248 0.3104189 +0.5687816 0.3293248 0.3104189 +0.092819 0.3470774 0.3104189 +0.1056428 0.3470774 0.3104189 +0.1201537 0.3470774 0.3104189 +0.1409607 0.3470774 0.3104189 +0.1678172 0.3470774 0.3104189 +0.1950164 0.3470774 0.3104189 +0.2210581 0.3470774 0.3104189 +0.245636 0.3470774 0.3104189 +0.2686816 0.3470774 0.3104189 +0.2902431 0.3470774 0.3104189 +0.3104189 0.3470774 0.3104189 +0.3293248 0.3470774 0.3104189 +0.3470774 0.3470774 0.3104189 +0.3637862 0.3470774 0.3104189 +0.3795513 0.3470774 0.3104189 +0.3944623 0.3470774 0.3104189 +0.4085988 0.3470774 0.3104189 +0.4220313 0.3470774 0.3104189 +0.4348222 0.3470774 0.3104189 +0.4470264 0.3470774 0.3104189 +0.4586928 0.3470774 0.3104189 +0.4698649 0.3470774 0.3104189 +0.4805811 0.3470774 0.3104189 +0.490876 0.3470774 0.3104189 +0.5007803 0.3470774 0.3104189 +0.510322 0.3470774 0.3104189 +0.5195258 0.3470774 0.3104189 +0.5284142 0.3470774 0.3104189 +0.5370079 0.3470774 0.3104189 +0.5453253 0.3470774 0.3104189 +0.5533834 0.3470774 0.3104189 +0.5611974 0.3470774 0.3104189 +0.5687816 0.3470774 0.3104189 +0.092819 0.3637862 0.3104189 +0.1056428 0.3637862 0.3104189 +0.1201537 0.3637862 0.3104189 +0.1409607 0.3637862 0.3104189 +0.1678172 0.3637862 0.3104189 +0.1950164 0.3637862 0.3104189 +0.2210581 0.3637862 0.3104189 +0.245636 0.3637862 0.3104189 +0.2686816 0.3637862 0.3104189 +0.2902431 0.3637862 0.3104189 +0.3104189 0.3637862 0.3104189 +0.3293248 0.3637862 0.3104189 +0.3470774 0.3637862 0.3104189 +0.3637862 0.3637862 0.3104189 +0.3795513 0.3637862 0.3104189 +0.3944623 0.3637862 0.3104189 +0.4085988 0.3637862 0.3104189 +0.4220313 0.3637862 0.3104189 +0.4348222 0.3637862 0.3104189 +0.4470264 0.3637862 0.3104189 +0.4586928 0.3637862 0.3104189 +0.4698649 0.3637862 0.3104189 +0.4805811 0.3637862 0.3104189 +0.490876 0.3637862 0.3104189 +0.5007803 0.3637862 0.3104189 +0.510322 0.3637862 0.3104189 +0.5195258 0.3637862 0.3104189 +0.5284142 0.3637862 0.3104189 +0.5370079 0.3637862 0.3104189 +0.5453253 0.3637862 0.3104189 +0.5533834 0.3637862 0.3104189 +0.5611974 0.3637862 0.3104189 +0.5687816 0.3637862 0.3104189 +0.092819 0.3795513 0.3104189 +0.1056428 0.3795513 0.3104189 +0.1201537 0.3795513 0.3104189 +0.1409607 0.3795513 0.3104189 +0.1678172 0.3795513 0.3104189 +0.1950164 0.3795513 0.3104189 +0.2210581 0.3795513 0.3104189 +0.245636 0.3795513 0.3104189 +0.2686816 0.3795513 0.3104189 +0.2902431 0.3795513 0.3104189 +0.3104189 0.3795513 0.3104189 +0.3293248 0.3795513 0.3104189 +0.3470774 0.3795513 0.3104189 +0.3637862 0.3795513 0.3104189 +0.3795513 0.3795513 0.3104189 +0.3944623 0.3795513 0.3104189 +0.4085988 0.3795513 0.3104189 +0.4220313 0.3795513 0.3104189 +0.4348222 0.3795513 0.3104189 +0.4470264 0.3795513 0.3104189 +0.4586928 0.3795513 0.3104189 +0.4698649 0.3795513 0.3104189 +0.4805811 0.3795513 0.3104189 +0.490876 0.3795513 0.3104189 +0.5007803 0.3795513 0.3104189 +0.510322 0.3795513 0.3104189 +0.5195258 0.3795513 0.3104189 +0.5284142 0.3795513 0.3104189 +0.5370079 0.3795513 0.3104189 +0.5453253 0.3795513 0.3104189 +0.5533834 0.3795513 0.3104189 +0.5611974 0.3795513 0.3104189 +0.5687816 0.3795513 0.3104189 +0.092819 0.3944623 0.3104189 +0.1056428 0.3944623 0.3104189 +0.1201537 0.3944623 0.3104189 +0.1409607 0.3944623 0.3104189 +0.1678172 0.3944623 0.3104189 +0.1950164 0.3944623 0.3104189 +0.2210581 0.3944623 0.3104189 +0.245636 0.3944623 0.3104189 +0.2686816 0.3944623 0.3104189 +0.2902431 0.3944623 0.3104189 +0.3104189 0.3944623 0.3104189 +0.3293248 0.3944623 0.3104189 +0.3470774 0.3944623 0.3104189 +0.3637862 0.3944623 0.3104189 +0.3795513 0.3944623 0.3104189 +0.3944623 0.3944623 0.3104189 +0.4085988 0.3944623 0.3104189 +0.4220313 0.3944623 0.3104189 +0.4348222 0.3944623 0.3104189 +0.4470264 0.3944623 0.3104189 +0.4586928 0.3944623 0.3104189 +0.4698649 0.3944623 0.3104189 +0.4805811 0.3944623 0.3104189 +0.490876 0.3944623 0.3104189 +0.5007803 0.3944623 0.3104189 +0.510322 0.3944623 0.3104189 +0.5195258 0.3944623 0.3104189 +0.5284142 0.3944623 0.3104189 +0.5370079 0.3944623 0.3104189 +0.5453253 0.3944623 0.3104189 +0.5533834 0.3944623 0.3104189 +0.5611974 0.3944623 0.3104189 +0.5687816 0.3944623 0.3104189 +0.092819 0.4085988 0.3104189 +0.1056428 0.4085988 0.3104189 +0.1201537 0.4085988 0.3104189 +0.1409607 0.4085988 0.3104189 +0.1678172 0.4085988 0.3104189 +0.1950164 0.4085988 0.3104189 +0.2210581 0.4085988 0.3104189 +0.245636 0.4085988 0.3104189 +0.2686816 0.4085988 0.3104189 +0.2902431 0.4085988 0.3104189 +0.3104189 0.4085988 0.3104189 +0.3293248 0.4085988 0.3104189 +0.3470774 0.4085988 0.3104189 +0.3637862 0.4085988 0.3104189 +0.3795513 0.4085988 0.3104189 +0.3944623 0.4085988 0.3104189 +0.4085988 0.4085988 0.3104189 +0.4220313 0.4085988 0.3104189 +0.4348222 0.4085988 0.3104189 +0.4470264 0.4085988 0.3104189 +0.4586928 0.4085988 0.3104189 +0.4698649 0.4085988 0.3104189 +0.4805811 0.4085988 0.3104189 +0.490876 0.4085988 0.3104189 +0.5007803 0.4085988 0.3104189 +0.510322 0.4085988 0.3104189 +0.5195258 0.4085988 0.3104189 +0.5284142 0.4085988 0.3104189 +0.5370079 0.4085988 0.3104189 +0.5453253 0.4085988 0.3104189 +0.5533834 0.4085988 0.3104189 +0.5611974 0.4085988 0.3104189 +0.5687816 0.4085988 0.3104189 +0.092819 0.4220313 0.3104189 +0.1056428 0.4220313 0.3104189 +0.1201537 0.4220313 0.3104189 +0.1409607 0.4220313 0.3104189 +0.1678172 0.4220313 0.3104189 +0.1950164 0.4220313 0.3104189 +0.2210581 0.4220313 0.3104189 +0.245636 0.4220313 0.3104189 +0.2686816 0.4220313 0.3104189 +0.2902431 0.4220313 0.3104189 +0.3104189 0.4220313 0.3104189 +0.3293248 0.4220313 0.3104189 +0.3470774 0.4220313 0.3104189 +0.3637862 0.4220313 0.3104189 +0.3795513 0.4220313 0.3104189 +0.3944623 0.4220313 0.3104189 +0.4085988 0.4220313 0.3104189 +0.4220313 0.4220313 0.3104189 +0.4348222 0.4220313 0.3104189 +0.4470264 0.4220313 0.3104189 +0.4586928 0.4220313 0.3104189 +0.4698649 0.4220313 0.3104189 +0.4805811 0.4220313 0.3104189 +0.490876 0.4220313 0.3104189 +0.5007803 0.4220313 0.3104189 +0.510322 0.4220313 0.3104189 +0.5195258 0.4220313 0.3104189 +0.5284142 0.4220313 0.3104189 +0.5370079 0.4220313 0.3104189 +0.5453253 0.4220313 0.3104189 +0.5533834 0.4220313 0.3104189 +0.5611974 0.4220313 0.3104189 +0.5687816 0.4220313 0.3104189 +0.092819 0.4348222 0.3104189 +0.1056428 0.4348222 0.3104189 +0.1201537 0.4348222 0.3104189 +0.1409607 0.4348222 0.3104189 +0.1678172 0.4348222 0.3104189 +0.1950164 0.4348222 0.3104189 +0.2210581 0.4348222 0.3104189 +0.245636 0.4348222 0.3104189 +0.2686816 0.4348222 0.3104189 +0.2902431 0.4348222 0.3104189 +0.3104189 0.4348222 0.3104189 +0.3293248 0.4348222 0.3104189 +0.3470774 0.4348222 0.3104189 +0.3637862 0.4348222 0.3104189 +0.3795513 0.4348222 0.3104189 +0.3944623 0.4348222 0.3104189 +0.4085988 0.4348222 0.3104189 +0.4220313 0.4348222 0.3104189 +0.4348222 0.4348222 0.3104189 +0.4470264 0.4348222 0.3104189 +0.4586928 0.4348222 0.3104189 +0.4698649 0.4348222 0.3104189 +0.4805811 0.4348222 0.3104189 +0.490876 0.4348222 0.3104189 +0.5007803 0.4348222 0.3104189 +0.510322 0.4348222 0.3104189 +0.5195258 0.4348222 0.3104189 +0.5284142 0.4348222 0.3104189 +0.5370079 0.4348222 0.3104189 +0.5453253 0.4348222 0.3104189 +0.5533834 0.4348222 0.3104189 +0.5611974 0.4348222 0.3104189 +0.5687816 0.4348222 0.3104189 +0.092819 0.4470264 0.3104189 +0.1056428 0.4470264 0.3104189 +0.1201537 0.4470264 0.3104189 +0.1409607 0.4470264 0.3104189 +0.1678172 0.4470264 0.3104189 +0.1950164 0.4470264 0.3104189 +0.2210581 0.4470264 0.3104189 +0.245636 0.4470264 0.3104189 +0.2686816 0.4470264 0.3104189 +0.2902431 0.4470264 0.3104189 +0.3104189 0.4470264 0.3104189 +0.3293248 0.4470264 0.3104189 +0.3470774 0.4470264 0.3104189 +0.3637862 0.4470264 0.3104189 +0.3795513 0.4470264 0.3104189 +0.3944623 0.4470264 0.3104189 +0.4085988 0.4470264 0.3104189 +0.4220313 0.4470264 0.3104189 +0.4348222 0.4470264 0.3104189 +0.4470264 0.4470264 0.3104189 +0.4586928 0.4470264 0.3104189 +0.4698649 0.4470264 0.3104189 +0.4805811 0.4470264 0.3104189 +0.490876 0.4470264 0.3104189 +0.5007803 0.4470264 0.3104189 +0.510322 0.4470264 0.3104189 +0.5195258 0.4470264 0.3104189 +0.5284142 0.4470264 0.3104189 +0.5370079 0.4470264 0.3104189 +0.5453253 0.4470264 0.3104189 +0.5533834 0.4470264 0.3104189 +0.5611974 0.4470264 0.3104189 +0.5687816 0.4470264 0.3104189 +0.092819 0.4586928 0.3104189 +0.1056428 0.4586928 0.3104189 +0.1201537 0.4586928 0.3104189 +0.1409607 0.4586928 0.3104189 +0.1678172 0.4586928 0.3104189 +0.1950164 0.4586928 0.3104189 +0.2210581 0.4586928 0.3104189 +0.245636 0.4586928 0.3104189 +0.2686816 0.4586928 0.3104189 +0.2902431 0.4586928 0.3104189 +0.3104189 0.4586928 0.3104189 +0.3293248 0.4586928 0.3104189 +0.3470774 0.4586928 0.3104189 +0.3637862 0.4586928 0.3104189 +0.3795513 0.4586928 0.3104189 +0.3944623 0.4586928 0.3104189 +0.4085988 0.4586928 0.3104189 +0.4220313 0.4586928 0.3104189 +0.4348222 0.4586928 0.3104189 +0.4470264 0.4586928 0.3104189 +0.4586928 0.4586928 0.3104189 +0.4698649 0.4586928 0.3104189 +0.4805811 0.4586928 0.3104189 +0.490876 0.4586928 0.3104189 +0.5007803 0.4586928 0.3104189 +0.510322 0.4586928 0.3104189 +0.5195258 0.4586928 0.3104189 +0.5284142 0.4586928 0.3104189 +0.5370079 0.4586928 0.3104189 +0.5453253 0.4586928 0.3104189 +0.5533834 0.4586928 0.3104189 +0.5611974 0.4586928 0.3104189 +0.5687816 0.4586928 0.3104189 +0.092819 0.4698649 0.3104189 +0.1056428 0.4698649 0.3104189 +0.1201537 0.4698649 0.3104189 +0.1409607 0.4698649 0.3104189 +0.1678172 0.4698649 0.3104189 +0.1950164 0.4698649 0.3104189 +0.2210581 0.4698649 0.3104189 +0.245636 0.4698649 0.3104189 +0.2686816 0.4698649 0.3104189 +0.2902431 0.4698649 0.3104189 +0.3104189 0.4698649 0.3104189 +0.3293248 0.4698649 0.3104189 +0.3470774 0.4698649 0.3104189 +0.3637862 0.4698649 0.3104189 +0.3795513 0.4698649 0.3104189 +0.3944623 0.4698649 0.3104189 +0.4085988 0.4698649 0.3104189 +0.4220313 0.4698649 0.3104189 +0.4348222 0.4698649 0.3104189 +0.4470264 0.4698649 0.3104189 +0.4586928 0.4698649 0.3104189 +0.4698649 0.4698649 0.3104189 +0.4805811 0.4698649 0.3104189 +0.490876 0.4698649 0.3104189 +0.5007803 0.4698649 0.3104189 +0.510322 0.4698649 0.3104189 +0.5195258 0.4698649 0.3104189 +0.5284142 0.4698649 0.3104189 +0.5370079 0.4698649 0.3104189 +0.5453253 0.4698649 0.3104189 +0.5533834 0.4698649 0.3104189 +0.5611974 0.4698649 0.3104189 +0.5687816 0.4698649 0.3104189 +0.092819 0.4805811 0.3104189 +0.1056428 0.4805811 0.3104189 +0.1201537 0.4805811 0.3104189 +0.1409607 0.4805811 0.3104189 +0.1678172 0.4805811 0.3104189 +0.1950164 0.4805811 0.3104189 +0.2210581 0.4805811 0.3104189 +0.245636 0.4805811 0.3104189 +0.2686816 0.4805811 0.3104189 +0.2902431 0.4805811 0.3104189 +0.3104189 0.4805811 0.3104189 +0.3293248 0.4805811 0.3104189 +0.3470774 0.4805811 0.3104189 +0.3637862 0.4805811 0.3104189 +0.3795513 0.4805811 0.3104189 +0.3944623 0.4805811 0.3104189 +0.4085988 0.4805811 0.3104189 +0.4220313 0.4805811 0.3104189 +0.4348222 0.4805811 0.3104189 +0.4470264 0.4805811 0.3104189 +0.4586928 0.4805811 0.3104189 +0.4698649 0.4805811 0.3104189 +0.4805811 0.4805811 0.3104189 +0.490876 0.4805811 0.3104189 +0.5007803 0.4805811 0.3104189 +0.510322 0.4805811 0.3104189 +0.5195258 0.4805811 0.3104189 +0.5284142 0.4805811 0.3104189 +0.5370079 0.4805811 0.3104189 +0.5453253 0.4805811 0.3104189 +0.5533834 0.4805811 0.3104189 +0.5611974 0.4805811 0.3104189 +0.5687816 0.4805811 0.3104189 +0.092819 0.490876 0.3104189 +0.1056428 0.490876 0.3104189 +0.1201537 0.490876 0.3104189 +0.1409607 0.490876 0.3104189 +0.1678172 0.490876 0.3104189 +0.1950164 0.490876 0.3104189 +0.2210581 0.490876 0.3104189 +0.245636 0.490876 0.3104189 +0.2686816 0.490876 0.3104189 +0.2902431 0.490876 0.3104189 +0.3104189 0.490876 0.3104189 +0.3293248 0.490876 0.3104189 +0.3470774 0.490876 0.3104189 +0.3637862 0.490876 0.3104189 +0.3795513 0.490876 0.3104189 +0.3944623 0.490876 0.3104189 +0.4085988 0.490876 0.3104189 +0.4220313 0.490876 0.3104189 +0.4348222 0.490876 0.3104189 +0.4470264 0.490876 0.3104189 +0.4586928 0.490876 0.3104189 +0.4698649 0.490876 0.3104189 +0.4805811 0.490876 0.3104189 +0.490876 0.490876 0.3104189 +0.5007803 0.490876 0.3104189 +0.510322 0.490876 0.3104189 +0.5195258 0.490876 0.3104189 +0.5284142 0.490876 0.3104189 +0.5370079 0.490876 0.3104189 +0.5453253 0.490876 0.3104189 +0.5533834 0.490876 0.3104189 +0.5611974 0.490876 0.3104189 +0.5687816 0.490876 0.3104189 +0.092819 0.5007803 0.3104189 +0.1056428 0.5007803 0.3104189 +0.1201537 0.5007803 0.3104189 +0.1409607 0.5007803 0.3104189 +0.1678172 0.5007803 0.3104189 +0.1950164 0.5007803 0.3104189 +0.2210581 0.5007803 0.3104189 +0.245636 0.5007803 0.3104189 +0.2686816 0.5007803 0.3104189 +0.2902431 0.5007803 0.3104189 +0.3104189 0.5007803 0.3104189 +0.3293248 0.5007803 0.3104189 +0.3470774 0.5007803 0.3104189 +0.3637862 0.5007803 0.3104189 +0.3795513 0.5007803 0.3104189 +0.3944623 0.5007803 0.3104189 +0.4085988 0.5007803 0.3104189 +0.4220313 0.5007803 0.3104189 +0.4348222 0.5007803 0.3104189 +0.4470264 0.5007803 0.3104189 +0.4586928 0.5007803 0.3104189 +0.4698649 0.5007803 0.3104189 +0.4805811 0.5007803 0.3104189 +0.490876 0.5007803 0.3104189 +0.5007803 0.5007803 0.3104189 +0.510322 0.5007803 0.3104189 +0.5195258 0.5007803 0.3104189 +0.5284142 0.5007803 0.3104189 +0.5370079 0.5007803 0.3104189 +0.5453253 0.5007803 0.3104189 +0.5533834 0.5007803 0.3104189 +0.5611974 0.5007803 0.3104189 +0.5687816 0.5007803 0.3104189 +0.092819 0.510322 0.3104189 +0.1056428 0.510322 0.3104189 +0.1201537 0.510322 0.3104189 +0.1409607 0.510322 0.3104189 +0.1678172 0.510322 0.3104189 +0.1950164 0.510322 0.3104189 +0.2210581 0.510322 0.3104189 +0.245636 0.510322 0.3104189 +0.2686816 0.510322 0.3104189 +0.2902431 0.510322 0.3104189 +0.3104189 0.510322 0.3104189 +0.3293248 0.510322 0.3104189 +0.3470774 0.510322 0.3104189 +0.3637862 0.510322 0.3104189 +0.3795513 0.510322 0.3104189 +0.3944623 0.510322 0.3104189 +0.4085988 0.510322 0.3104189 +0.4220313 0.510322 0.3104189 +0.4348222 0.510322 0.3104189 +0.4470264 0.510322 0.3104189 +0.4586928 0.510322 0.3104189 +0.4698649 0.510322 0.3104189 +0.4805811 0.510322 0.3104189 +0.490876 0.510322 0.3104189 +0.5007803 0.510322 0.3104189 +0.510322 0.510322 0.3104189 +0.5195258 0.510322 0.3104189 +0.5284142 0.510322 0.3104189 +0.5370079 0.510322 0.3104189 +0.5453253 0.510322 0.3104189 +0.5533834 0.510322 0.3104189 +0.5611974 0.510322 0.3104189 +0.5687816 0.510322 0.3104189 +0.092819 0.5195258 0.3104189 +0.1056428 0.5195258 0.3104189 +0.1201537 0.5195258 0.3104189 +0.1409607 0.5195258 0.3104189 +0.1678172 0.5195258 0.3104189 +0.1950164 0.5195258 0.3104189 +0.2210581 0.5195258 0.3104189 +0.245636 0.5195258 0.3104189 +0.2686816 0.5195258 0.3104189 +0.2902431 0.5195258 0.3104189 +0.3104189 0.5195258 0.3104189 +0.3293248 0.5195258 0.3104189 +0.3470774 0.5195258 0.3104189 +0.3637862 0.5195258 0.3104189 +0.3795513 0.5195258 0.3104189 +0.3944623 0.5195258 0.3104189 +0.4085988 0.5195258 0.3104189 +0.4220313 0.5195258 0.3104189 +0.4348222 0.5195258 0.3104189 +0.4470264 0.5195258 0.3104189 +0.4586928 0.5195258 0.3104189 +0.4698649 0.5195258 0.3104189 +0.4805811 0.5195258 0.3104189 +0.490876 0.5195258 0.3104189 +0.5007803 0.5195258 0.3104189 +0.510322 0.5195258 0.3104189 +0.5195258 0.5195258 0.3104189 +0.5284142 0.5195258 0.3104189 +0.5370079 0.5195258 0.3104189 +0.5453253 0.5195258 0.3104189 +0.5533834 0.5195258 0.3104189 +0.5611974 0.5195258 0.3104189 +0.5687816 0.5195258 0.3104189 +0.092819 0.5284142 0.3104189 +0.1056428 0.5284142 0.3104189 +0.1201537 0.5284142 0.3104189 +0.1409607 0.5284142 0.3104189 +0.1678172 0.5284142 0.3104189 +0.1950164 0.5284142 0.3104189 +0.2210581 0.5284142 0.3104189 +0.245636 0.5284142 0.3104189 +0.2686816 0.5284142 0.3104189 +0.2902431 0.5284142 0.3104189 +0.3104189 0.5284142 0.3104189 +0.3293248 0.5284142 0.3104189 +0.3470774 0.5284142 0.3104189 +0.3637862 0.5284142 0.3104189 +0.3795513 0.5284142 0.3104189 +0.3944623 0.5284142 0.3104189 +0.4085988 0.5284142 0.3104189 +0.4220313 0.5284142 0.3104189 +0.4348222 0.5284142 0.3104189 +0.4470264 0.5284142 0.3104189 +0.4586928 0.5284142 0.3104189 +0.4698649 0.5284142 0.3104189 +0.4805811 0.5284142 0.3104189 +0.490876 0.5284142 0.3104189 +0.5007803 0.5284142 0.3104189 +0.510322 0.5284142 0.3104189 +0.5195258 0.5284142 0.3104189 +0.5284142 0.5284142 0.3104189 +0.5370079 0.5284142 0.3104189 +0.5453253 0.5284142 0.3104189 +0.5533834 0.5284142 0.3104189 +0.5611974 0.5284142 0.3104189 +0.5687816 0.5284142 0.3104189 +0.092819 0.5370079 0.3104189 +0.1056428 0.5370079 0.3104189 +0.1201537 0.5370079 0.3104189 +0.1409607 0.5370079 0.3104189 +0.1678172 0.5370079 0.3104189 +0.1950164 0.5370079 0.3104189 +0.2210581 0.5370079 0.3104189 +0.245636 0.5370079 0.3104189 +0.2686816 0.5370079 0.3104189 +0.2902431 0.5370079 0.3104189 +0.3104189 0.5370079 0.3104189 +0.3293248 0.5370079 0.3104189 +0.3470774 0.5370079 0.3104189 +0.3637862 0.5370079 0.3104189 +0.3795513 0.5370079 0.3104189 +0.3944623 0.5370079 0.3104189 +0.4085988 0.5370079 0.3104189 +0.4220313 0.5370079 0.3104189 +0.4348222 0.5370079 0.3104189 +0.4470264 0.5370079 0.3104189 +0.4586928 0.5370079 0.3104189 +0.4698649 0.5370079 0.3104189 +0.4805811 0.5370079 0.3104189 +0.490876 0.5370079 0.3104189 +0.5007803 0.5370079 0.3104189 +0.510322 0.5370079 0.3104189 +0.5195258 0.5370079 0.3104189 +0.5284142 0.5370079 0.3104189 +0.5370079 0.5370079 0.3104189 +0.5453253 0.5370079 0.3104189 +0.5533834 0.5370079 0.3104189 +0.5611974 0.5370079 0.3104189 +0.5687816 0.5370079 0.3104189 +0.092819 0.5453253 0.3104189 +0.1056428 0.5453253 0.3104189 +0.1201537 0.5453253 0.3104189 +0.1409607 0.5453253 0.3104189 +0.1678172 0.5453253 0.3104189 +0.1950164 0.5453253 0.3104189 +0.2210581 0.5453253 0.3104189 +0.245636 0.5453253 0.3104189 +0.2686816 0.5453253 0.3104189 +0.2902431 0.5453253 0.3104189 +0.3104189 0.5453253 0.3104189 +0.3293248 0.5453253 0.3104189 +0.3470774 0.5453253 0.3104189 +0.3637862 0.5453253 0.3104189 +0.3795513 0.5453253 0.3104189 +0.3944623 0.5453253 0.3104189 +0.4085988 0.5453253 0.3104189 +0.4220313 0.5453253 0.3104189 +0.4348222 0.5453253 0.3104189 +0.4470264 0.5453253 0.3104189 +0.4586928 0.5453253 0.3104189 +0.4698649 0.5453253 0.3104189 +0.4805811 0.5453253 0.3104189 +0.490876 0.5453253 0.3104189 +0.5007803 0.5453253 0.3104189 +0.510322 0.5453253 0.3104189 +0.5195258 0.5453253 0.3104189 +0.5284142 0.5453253 0.3104189 +0.5370079 0.5453253 0.3104189 +0.5453253 0.5453253 0.3104189 +0.5533834 0.5453253 0.3104189 +0.5611974 0.5453253 0.3104189 +0.5687816 0.5453253 0.3104189 +0.092819 0.5533834 0.3104189 +0.1056428 0.5533834 0.3104189 +0.1201537 0.5533834 0.3104189 +0.1409607 0.5533834 0.3104189 +0.1678172 0.5533834 0.3104189 +0.1950164 0.5533834 0.3104189 +0.2210581 0.5533834 0.3104189 +0.245636 0.5533834 0.3104189 +0.2686816 0.5533834 0.3104189 +0.2902431 0.5533834 0.3104189 +0.3104189 0.5533834 0.3104189 +0.3293248 0.5533834 0.3104189 +0.3470774 0.5533834 0.3104189 +0.3637862 0.5533834 0.3104189 +0.3795513 0.5533834 0.3104189 +0.3944623 0.5533834 0.3104189 +0.4085988 0.5533834 0.3104189 +0.4220313 0.5533834 0.3104189 +0.4348222 0.5533834 0.3104189 +0.4470264 0.5533834 0.3104189 +0.4586928 0.5533834 0.3104189 +0.4698649 0.5533834 0.3104189 +0.4805811 0.5533834 0.3104189 +0.490876 0.5533834 0.3104189 +0.5007803 0.5533834 0.3104189 +0.510322 0.5533834 0.3104189 +0.5195258 0.5533834 0.3104189 +0.5284142 0.5533834 0.3104189 +0.5370079 0.5533834 0.3104189 +0.5453253 0.5533834 0.3104189 +0.5533834 0.5533834 0.3104189 +0.5611974 0.5533834 0.3104189 +0.5687816 0.5533834 0.3104189 +0.092819 0.5611974 0.3104189 +0.1056428 0.5611974 0.3104189 +0.1201537 0.5611974 0.3104189 +0.1409607 0.5611974 0.3104189 +0.1678172 0.5611974 0.3104189 +0.1950164 0.5611974 0.3104189 +0.2210581 0.5611974 0.3104189 +0.245636 0.5611974 0.3104189 +0.2686816 0.5611974 0.3104189 +0.2902431 0.5611974 0.3104189 +0.3104189 0.5611974 0.3104189 +0.3293248 0.5611974 0.3104189 +0.3470774 0.5611974 0.3104189 +0.3637862 0.5611974 0.3104189 +0.3795513 0.5611974 0.3104189 +0.3944623 0.5611974 0.3104189 +0.4085988 0.5611974 0.3104189 +0.4220313 0.5611974 0.3104189 +0.4348222 0.5611974 0.3104189 +0.4470264 0.5611974 0.3104189 +0.4586928 0.5611974 0.3104189 +0.4698649 0.5611974 0.3104189 +0.4805811 0.5611974 0.3104189 +0.490876 0.5611974 0.3104189 +0.5007803 0.5611974 0.3104189 +0.510322 0.5611974 0.3104189 +0.5195258 0.5611974 0.3104189 +0.5284142 0.5611974 0.3104189 +0.5370079 0.5611974 0.3104189 +0.5453253 0.5611974 0.3104189 +0.5533834 0.5611974 0.3104189 +0.5611974 0.5611974 0.3104189 +0.5687816 0.5611974 0.3104189 +0.092819 0.5687816 0.3104189 +0.1056428 0.5687816 0.3104189 +0.1201537 0.5687816 0.3104189 +0.1409607 0.5687816 0.3104189 +0.1678172 0.5687816 0.3104189 +0.1950164 0.5687816 0.3104189 +0.2210581 0.5687816 0.3104189 +0.245636 0.5687816 0.3104189 +0.2686816 0.5687816 0.3104189 +0.2902431 0.5687816 0.3104189 +0.3104189 0.5687816 0.3104189 +0.3293248 0.5687816 0.3104189 +0.3470774 0.5687816 0.3104189 +0.3637862 0.5687816 0.3104189 +0.3795513 0.5687816 0.3104189 +0.3944623 0.5687816 0.3104189 +0.4085988 0.5687816 0.3104189 +0.4220313 0.5687816 0.3104189 +0.4348222 0.5687816 0.3104189 +0.4470264 0.5687816 0.3104189 +0.4586928 0.5687816 0.3104189 +0.4698649 0.5687816 0.3104189 +0.4805811 0.5687816 0.3104189 +0.490876 0.5687816 0.3104189 +0.5007803 0.5687816 0.3104189 +0.510322 0.5687816 0.3104189 +0.5195258 0.5687816 0.3104189 +0.5284142 0.5687816 0.3104189 +0.5370079 0.5687816 0.3104189 +0.5453253 0.5687816 0.3104189 +0.5533834 0.5687816 0.3104189 +0.5611974 0.5687816 0.3104189 +0.5687816 0.5687816 0.3104189 +0.092819 0.092819 0.3293248 +0.1056428 0.092819 0.3293248 +0.1201537 0.092819 0.3293248 +0.1409607 0.092819 0.3293248 +0.1678172 0.092819 0.3293248 +0.1950164 0.092819 0.3293248 +0.2210581 0.092819 0.3293248 +0.245636 0.092819 0.3293248 +0.2686816 0.092819 0.3293248 +0.2902431 0.092819 0.3293248 +0.3104189 0.092819 0.3293248 +0.3293248 0.092819 0.3293248 +0.3470774 0.092819 0.3293248 +0.3637862 0.092819 0.3293248 +0.3795513 0.092819 0.3293248 +0.3944623 0.092819 0.3293248 +0.4085988 0.092819 0.3293248 +0.4220313 0.092819 0.3293248 +0.4348222 0.092819 0.3293248 +0.4470264 0.092819 0.3293248 +0.4586928 0.092819 0.3293248 +0.4698649 0.092819 0.3293248 +0.4805811 0.092819 0.3293248 +0.490876 0.092819 0.3293248 +0.5007803 0.092819 0.3293248 +0.510322 0.092819 0.3293248 +0.5195258 0.092819 0.3293248 +0.5284142 0.092819 0.3293248 +0.5370079 0.092819 0.3293248 +0.5453253 0.092819 0.3293248 +0.5533834 0.092819 0.3293248 +0.5611974 0.092819 0.3293248 +0.5687816 0.092819 0.3293248 +0.092819 0.1056428 0.3293248 +0.1056428 0.1056428 0.3293248 +0.1201537 0.1056428 0.3293248 +0.1409607 0.1056428 0.3293248 +0.1678172 0.1056428 0.3293248 +0.1950164 0.1056428 0.3293248 +0.2210581 0.1056428 0.3293248 +0.245636 0.1056428 0.3293248 +0.2686816 0.1056428 0.3293248 +0.2902431 0.1056428 0.3293248 +0.3104189 0.1056428 0.3293248 +0.3293248 0.1056428 0.3293248 +0.3470774 0.1056428 0.3293248 +0.3637862 0.1056428 0.3293248 +0.3795513 0.1056428 0.3293248 +0.3944623 0.1056428 0.3293248 +0.4085988 0.1056428 0.3293248 +0.4220313 0.1056428 0.3293248 +0.4348222 0.1056428 0.3293248 +0.4470264 0.1056428 0.3293248 +0.4586928 0.1056428 0.3293248 +0.4698649 0.1056428 0.3293248 +0.4805811 0.1056428 0.3293248 +0.490876 0.1056428 0.3293248 +0.5007803 0.1056428 0.3293248 +0.510322 0.1056428 0.3293248 +0.5195258 0.1056428 0.3293248 +0.5284142 0.1056428 0.3293248 +0.5370079 0.1056428 0.3293248 +0.5453253 0.1056428 0.3293248 +0.5533834 0.1056428 0.3293248 +0.5611974 0.1056428 0.3293248 +0.5687816 0.1056428 0.3293248 +0.092819 0.1201537 0.3293248 +0.1056428 0.1201537 0.3293248 +0.1201537 0.1201537 0.3293248 +0.1409607 0.1201537 0.3293248 +0.1678172 0.1201537 0.3293248 +0.1950164 0.1201537 0.3293248 +0.2210581 0.1201537 0.3293248 +0.245636 0.1201537 0.3293248 +0.2686816 0.1201537 0.3293248 +0.2902431 0.1201537 0.3293248 +0.3104189 0.1201537 0.3293248 +0.3293248 0.1201537 0.3293248 +0.3470774 0.1201537 0.3293248 +0.3637862 0.1201537 0.3293248 +0.3795513 0.1201537 0.3293248 +0.3944623 0.1201537 0.3293248 +0.4085988 0.1201537 0.3293248 +0.4220313 0.1201537 0.3293248 +0.4348222 0.1201537 0.3293248 +0.4470264 0.1201537 0.3293248 +0.4586928 0.1201537 0.3293248 +0.4698649 0.1201537 0.3293248 +0.4805811 0.1201537 0.3293248 +0.490876 0.1201537 0.3293248 +0.5007803 0.1201537 0.3293248 +0.510322 0.1201537 0.3293248 +0.5195258 0.1201537 0.3293248 +0.5284142 0.1201537 0.3293248 +0.5370079 0.1201537 0.3293248 +0.5453253 0.1201537 0.3293248 +0.5533834 0.1201537 0.3293248 +0.5611974 0.1201537 0.3293248 +0.5687816 0.1201537 0.3293248 +0.092819 0.1409607 0.3293248 +0.1056428 0.1409607 0.3293248 +0.1201537 0.1409607 0.3293248 +0.1409607 0.1409607 0.3293248 +0.1678172 0.1409607 0.3293248 +0.1950164 0.1409607 0.3293248 +0.2210581 0.1409607 0.3293248 +0.245636 0.1409607 0.3293248 +0.2686816 0.1409607 0.3293248 +0.2902431 0.1409607 0.3293248 +0.3104189 0.1409607 0.3293248 +0.3293248 0.1409607 0.3293248 +0.3470774 0.1409607 0.3293248 +0.3637862 0.1409607 0.3293248 +0.3795513 0.1409607 0.3293248 +0.3944623 0.1409607 0.3293248 +0.4085988 0.1409607 0.3293248 +0.4220313 0.1409607 0.3293248 +0.4348222 0.1409607 0.3293248 +0.4470264 0.1409607 0.3293248 +0.4586928 0.1409607 0.3293248 +0.4698649 0.1409607 0.3293248 +0.4805811 0.1409607 0.3293248 +0.490876 0.1409607 0.3293248 +0.5007803 0.1409607 0.3293248 +0.510322 0.1409607 0.3293248 +0.5195258 0.1409607 0.3293248 +0.5284142 0.1409607 0.3293248 +0.5370079 0.1409607 0.3293248 +0.5453253 0.1409607 0.3293248 +0.5533834 0.1409607 0.3293248 +0.5611974 0.1409607 0.3293248 +0.5687816 0.1409607 0.3293248 +0.092819 0.1678172 0.3293248 +0.1056428 0.1678172 0.3293248 +0.1201537 0.1678172 0.3293248 +0.1409607 0.1678172 0.3293248 +0.1678172 0.1678172 0.3293248 +0.1950164 0.1678172 0.3293248 +0.2210581 0.1678172 0.3293248 +0.245636 0.1678172 0.3293248 +0.2686816 0.1678172 0.3293248 +0.2902431 0.1678172 0.3293248 +0.3104189 0.1678172 0.3293248 +0.3293248 0.1678172 0.3293248 +0.3470774 0.1678172 0.3293248 +0.3637862 0.1678172 0.3293248 +0.3795513 0.1678172 0.3293248 +0.3944623 0.1678172 0.3293248 +0.4085988 0.1678172 0.3293248 +0.4220313 0.1678172 0.3293248 +0.4348222 0.1678172 0.3293248 +0.4470264 0.1678172 0.3293248 +0.4586928 0.1678172 0.3293248 +0.4698649 0.1678172 0.3293248 +0.4805811 0.1678172 0.3293248 +0.490876 0.1678172 0.3293248 +0.5007803 0.1678172 0.3293248 +0.510322 0.1678172 0.3293248 +0.5195258 0.1678172 0.3293248 +0.5284142 0.1678172 0.3293248 +0.5370079 0.1678172 0.3293248 +0.5453253 0.1678172 0.3293248 +0.5533834 0.1678172 0.3293248 +0.5611974 0.1678172 0.3293248 +0.5687816 0.1678172 0.3293248 +0.092819 0.1950164 0.3293248 +0.1056428 0.1950164 0.3293248 +0.1201537 0.1950164 0.3293248 +0.1409607 0.1950164 0.3293248 +0.1678172 0.1950164 0.3293248 +0.1950164 0.1950164 0.3293248 +0.2210581 0.1950164 0.3293248 +0.245636 0.1950164 0.3293248 +0.2686816 0.1950164 0.3293248 +0.2902431 0.1950164 0.3293248 +0.3104189 0.1950164 0.3293248 +0.3293248 0.1950164 0.3293248 +0.3470774 0.1950164 0.3293248 +0.3637862 0.1950164 0.3293248 +0.3795513 0.1950164 0.3293248 +0.3944623 0.1950164 0.3293248 +0.4085988 0.1950164 0.3293248 +0.4220313 0.1950164 0.3293248 +0.4348222 0.1950164 0.3293248 +0.4470264 0.1950164 0.3293248 +0.4586928 0.1950164 0.3293248 +0.4698649 0.1950164 0.3293248 +0.4805811 0.1950164 0.3293248 +0.490876 0.1950164 0.3293248 +0.5007803 0.1950164 0.3293248 +0.510322 0.1950164 0.3293248 +0.5195258 0.1950164 0.3293248 +0.5284142 0.1950164 0.3293248 +0.5370079 0.1950164 0.3293248 +0.5453253 0.1950164 0.3293248 +0.5533834 0.1950164 0.3293248 +0.5611974 0.1950164 0.3293248 +0.5687816 0.1950164 0.3293248 +0.092819 0.2210581 0.3293248 +0.1056428 0.2210581 0.3293248 +0.1201537 0.2210581 0.3293248 +0.1409607 0.2210581 0.3293248 +0.1678172 0.2210581 0.3293248 +0.1950164 0.2210581 0.3293248 +0.2210581 0.2210581 0.3293248 +0.245636 0.2210581 0.3293248 +0.2686816 0.2210581 0.3293248 +0.2902431 0.2210581 0.3293248 +0.3104189 0.2210581 0.3293248 +0.3293248 0.2210581 0.3293248 +0.3470774 0.2210581 0.3293248 +0.3637862 0.2210581 0.3293248 +0.3795513 0.2210581 0.3293248 +0.3944623 0.2210581 0.3293248 +0.4085988 0.2210581 0.3293248 +0.4220313 0.2210581 0.3293248 +0.4348222 0.2210581 0.3293248 +0.4470264 0.2210581 0.3293248 +0.4586928 0.2210581 0.3293248 +0.4698649 0.2210581 0.3293248 +0.4805811 0.2210581 0.3293248 +0.490876 0.2210581 0.3293248 +0.5007803 0.2210581 0.3293248 +0.510322 0.2210581 0.3293248 +0.5195258 0.2210581 0.3293248 +0.5284142 0.2210581 0.3293248 +0.5370079 0.2210581 0.3293248 +0.5453253 0.2210581 0.3293248 +0.5533834 0.2210581 0.3293248 +0.5611974 0.2210581 0.3293248 +0.5687816 0.2210581 0.3293248 +0.092819 0.245636 0.3293248 +0.1056428 0.245636 0.3293248 +0.1201537 0.245636 0.3293248 +0.1409607 0.245636 0.3293248 +0.1678172 0.245636 0.3293248 +0.1950164 0.245636 0.3293248 +0.2210581 0.245636 0.3293248 +0.245636 0.245636 0.3293248 +0.2686816 0.245636 0.3293248 +0.2902431 0.245636 0.3293248 +0.3104189 0.245636 0.3293248 +0.3293248 0.245636 0.3293248 +0.3470774 0.245636 0.3293248 +0.3637862 0.245636 0.3293248 +0.3795513 0.245636 0.3293248 +0.3944623 0.245636 0.3293248 +0.4085988 0.245636 0.3293248 +0.4220313 0.245636 0.3293248 +0.4348222 0.245636 0.3293248 +0.4470264 0.245636 0.3293248 +0.4586928 0.245636 0.3293248 +0.4698649 0.245636 0.3293248 +0.4805811 0.245636 0.3293248 +0.490876 0.245636 0.3293248 +0.5007803 0.245636 0.3293248 +0.510322 0.245636 0.3293248 +0.5195258 0.245636 0.3293248 +0.5284142 0.245636 0.3293248 +0.5370079 0.245636 0.3293248 +0.5453253 0.245636 0.3293248 +0.5533834 0.245636 0.3293248 +0.5611974 0.245636 0.3293248 +0.5687816 0.245636 0.3293248 +0.092819 0.2686816 0.3293248 +0.1056428 0.2686816 0.3293248 +0.1201537 0.2686816 0.3293248 +0.1409607 0.2686816 0.3293248 +0.1678172 0.2686816 0.3293248 +0.1950164 0.2686816 0.3293248 +0.2210581 0.2686816 0.3293248 +0.245636 0.2686816 0.3293248 +0.2686816 0.2686816 0.3293248 +0.2902431 0.2686816 0.3293248 +0.3104189 0.2686816 0.3293248 +0.3293248 0.2686816 0.3293248 +0.3470774 0.2686816 0.3293248 +0.3637862 0.2686816 0.3293248 +0.3795513 0.2686816 0.3293248 +0.3944623 0.2686816 0.3293248 +0.4085988 0.2686816 0.3293248 +0.4220313 0.2686816 0.3293248 +0.4348222 0.2686816 0.3293248 +0.4470264 0.2686816 0.3293248 +0.4586928 0.2686816 0.3293248 +0.4698649 0.2686816 0.3293248 +0.4805811 0.2686816 0.3293248 +0.490876 0.2686816 0.3293248 +0.5007803 0.2686816 0.3293248 +0.510322 0.2686816 0.3293248 +0.5195258 0.2686816 0.3293248 +0.5284142 0.2686816 0.3293248 +0.5370079 0.2686816 0.3293248 +0.5453253 0.2686816 0.3293248 +0.5533834 0.2686816 0.3293248 +0.5611974 0.2686816 0.3293248 +0.5687816 0.2686816 0.3293248 +0.092819 0.2902431 0.3293248 +0.1056428 0.2902431 0.3293248 +0.1201537 0.2902431 0.3293248 +0.1409607 0.2902431 0.3293248 +0.1678172 0.2902431 0.3293248 +0.1950164 0.2902431 0.3293248 +0.2210581 0.2902431 0.3293248 +0.245636 0.2902431 0.3293248 +0.2686816 0.2902431 0.3293248 +0.2902431 0.2902431 0.3293248 +0.3104189 0.2902431 0.3293248 +0.3293248 0.2902431 0.3293248 +0.3470774 0.2902431 0.3293248 +0.3637862 0.2902431 0.3293248 +0.3795513 0.2902431 0.3293248 +0.3944623 0.2902431 0.3293248 +0.4085988 0.2902431 0.3293248 +0.4220313 0.2902431 0.3293248 +0.4348222 0.2902431 0.3293248 +0.4470264 0.2902431 0.3293248 +0.4586928 0.2902431 0.3293248 +0.4698649 0.2902431 0.3293248 +0.4805811 0.2902431 0.3293248 +0.490876 0.2902431 0.3293248 +0.5007803 0.2902431 0.3293248 +0.510322 0.2902431 0.3293248 +0.5195258 0.2902431 0.3293248 +0.5284142 0.2902431 0.3293248 +0.5370079 0.2902431 0.3293248 +0.5453253 0.2902431 0.3293248 +0.5533834 0.2902431 0.3293248 +0.5611974 0.2902431 0.3293248 +0.5687816 0.2902431 0.3293248 +0.092819 0.3104189 0.3293248 +0.1056428 0.3104189 0.3293248 +0.1201537 0.3104189 0.3293248 +0.1409607 0.3104189 0.3293248 +0.1678172 0.3104189 0.3293248 +0.1950164 0.3104189 0.3293248 +0.2210581 0.3104189 0.3293248 +0.245636 0.3104189 0.3293248 +0.2686816 0.3104189 0.3293248 +0.2902431 0.3104189 0.3293248 +0.3104189 0.3104189 0.3293248 +0.3293248 0.3104189 0.3293248 +0.3470774 0.3104189 0.3293248 +0.3637862 0.3104189 0.3293248 +0.3795513 0.3104189 0.3293248 +0.3944623 0.3104189 0.3293248 +0.4085988 0.3104189 0.3293248 +0.4220313 0.3104189 0.3293248 +0.4348222 0.3104189 0.3293248 +0.4470264 0.3104189 0.3293248 +0.4586928 0.3104189 0.3293248 +0.4698649 0.3104189 0.3293248 +0.4805811 0.3104189 0.3293248 +0.490876 0.3104189 0.3293248 +0.5007803 0.3104189 0.3293248 +0.510322 0.3104189 0.3293248 +0.5195258 0.3104189 0.3293248 +0.5284142 0.3104189 0.3293248 +0.5370079 0.3104189 0.3293248 +0.5453253 0.3104189 0.3293248 +0.5533834 0.3104189 0.3293248 +0.5611974 0.3104189 0.3293248 +0.5687816 0.3104189 0.3293248 +0.092819 0.3293248 0.3293248 +0.1056428 0.3293248 0.3293248 +0.1201537 0.3293248 0.3293248 +0.1409607 0.3293248 0.3293248 +0.1678172 0.3293248 0.3293248 +0.1950164 0.3293248 0.3293248 +0.2210581 0.3293248 0.3293248 +0.245636 0.3293248 0.3293248 +0.2686816 0.3293248 0.3293248 +0.2902431 0.3293248 0.3293248 +0.3104189 0.3293248 0.3293248 +0.3293248 0.3293248 0.3293248 +0.3470774 0.3293248 0.3293248 +0.3637862 0.3293248 0.3293248 +0.3795513 0.3293248 0.3293248 +0.3944623 0.3293248 0.3293248 +0.4085988 0.3293248 0.3293248 +0.4220313 0.3293248 0.3293248 +0.4348222 0.3293248 0.3293248 +0.4470264 0.3293248 0.3293248 +0.4586928 0.3293248 0.3293248 +0.4698649 0.3293248 0.3293248 +0.4805811 0.3293248 0.3293248 +0.490876 0.3293248 0.3293248 +0.5007803 0.3293248 0.3293248 +0.510322 0.3293248 0.3293248 +0.5195258 0.3293248 0.3293248 +0.5284142 0.3293248 0.3293248 +0.5370079 0.3293248 0.3293248 +0.5453253 0.3293248 0.3293248 +0.5533834 0.3293248 0.3293248 +0.5611974 0.3293248 0.3293248 +0.5687816 0.3293248 0.3293248 +0.092819 0.3470774 0.3293248 +0.1056428 0.3470774 0.3293248 +0.1201537 0.3470774 0.3293248 +0.1409607 0.3470774 0.3293248 +0.1678172 0.3470774 0.3293248 +0.1950164 0.3470774 0.3293248 +0.2210581 0.3470774 0.3293248 +0.245636 0.3470774 0.3293248 +0.2686816 0.3470774 0.3293248 +0.2902431 0.3470774 0.3293248 +0.3104189 0.3470774 0.3293248 +0.3293248 0.3470774 0.3293248 +0.3470774 0.3470774 0.3293248 +0.3637862 0.3470774 0.3293248 +0.3795513 0.3470774 0.3293248 +0.3944623 0.3470774 0.3293248 +0.4085988 0.3470774 0.3293248 +0.4220313 0.3470774 0.3293248 +0.4348222 0.3470774 0.3293248 +0.4470264 0.3470774 0.3293248 +0.4586928 0.3470774 0.3293248 +0.4698649 0.3470774 0.3293248 +0.4805811 0.3470774 0.3293248 +0.490876 0.3470774 0.3293248 +0.5007803 0.3470774 0.3293248 +0.510322 0.3470774 0.3293248 +0.5195258 0.3470774 0.3293248 +0.5284142 0.3470774 0.3293248 +0.5370079 0.3470774 0.3293248 +0.5453253 0.3470774 0.3293248 +0.5533834 0.3470774 0.3293248 +0.5611974 0.3470774 0.3293248 +0.5687816 0.3470774 0.3293248 +0.092819 0.3637862 0.3293248 +0.1056428 0.3637862 0.3293248 +0.1201537 0.3637862 0.3293248 +0.1409607 0.3637862 0.3293248 +0.1678172 0.3637862 0.3293248 +0.1950164 0.3637862 0.3293248 +0.2210581 0.3637862 0.3293248 +0.245636 0.3637862 0.3293248 +0.2686816 0.3637862 0.3293248 +0.2902431 0.3637862 0.3293248 +0.3104189 0.3637862 0.3293248 +0.3293248 0.3637862 0.3293248 +0.3470774 0.3637862 0.3293248 +0.3637862 0.3637862 0.3293248 +0.3795513 0.3637862 0.3293248 +0.3944623 0.3637862 0.3293248 +0.4085988 0.3637862 0.3293248 +0.4220313 0.3637862 0.3293248 +0.4348222 0.3637862 0.3293248 +0.4470264 0.3637862 0.3293248 +0.4586928 0.3637862 0.3293248 +0.4698649 0.3637862 0.3293248 +0.4805811 0.3637862 0.3293248 +0.490876 0.3637862 0.3293248 +0.5007803 0.3637862 0.3293248 +0.510322 0.3637862 0.3293248 +0.5195258 0.3637862 0.3293248 +0.5284142 0.3637862 0.3293248 +0.5370079 0.3637862 0.3293248 +0.5453253 0.3637862 0.3293248 +0.5533834 0.3637862 0.3293248 +0.5611974 0.3637862 0.3293248 +0.5687816 0.3637862 0.3293248 +0.092819 0.3795513 0.3293248 +0.1056428 0.3795513 0.3293248 +0.1201537 0.3795513 0.3293248 +0.1409607 0.3795513 0.3293248 +0.1678172 0.3795513 0.3293248 +0.1950164 0.3795513 0.3293248 +0.2210581 0.3795513 0.3293248 +0.245636 0.3795513 0.3293248 +0.2686816 0.3795513 0.3293248 +0.2902431 0.3795513 0.3293248 +0.3104189 0.3795513 0.3293248 +0.3293248 0.3795513 0.3293248 +0.3470774 0.3795513 0.3293248 +0.3637862 0.3795513 0.3293248 +0.3795513 0.3795513 0.3293248 +0.3944623 0.3795513 0.3293248 +0.4085988 0.3795513 0.3293248 +0.4220313 0.3795513 0.3293248 +0.4348222 0.3795513 0.3293248 +0.4470264 0.3795513 0.3293248 +0.4586928 0.3795513 0.3293248 +0.4698649 0.3795513 0.3293248 +0.4805811 0.3795513 0.3293248 +0.490876 0.3795513 0.3293248 +0.5007803 0.3795513 0.3293248 +0.510322 0.3795513 0.3293248 +0.5195258 0.3795513 0.3293248 +0.5284142 0.3795513 0.3293248 +0.5370079 0.3795513 0.3293248 +0.5453253 0.3795513 0.3293248 +0.5533834 0.3795513 0.3293248 +0.5611974 0.3795513 0.3293248 +0.5687816 0.3795513 0.3293248 +0.092819 0.3944623 0.3293248 +0.1056428 0.3944623 0.3293248 +0.1201537 0.3944623 0.3293248 +0.1409607 0.3944623 0.3293248 +0.1678172 0.3944623 0.3293248 +0.1950164 0.3944623 0.3293248 +0.2210581 0.3944623 0.3293248 +0.245636 0.3944623 0.3293248 +0.2686816 0.3944623 0.3293248 +0.2902431 0.3944623 0.3293248 +0.3104189 0.3944623 0.3293248 +0.3293248 0.3944623 0.3293248 +0.3470774 0.3944623 0.3293248 +0.3637862 0.3944623 0.3293248 +0.3795513 0.3944623 0.3293248 +0.3944623 0.3944623 0.3293248 +0.4085988 0.3944623 0.3293248 +0.4220313 0.3944623 0.3293248 +0.4348222 0.3944623 0.3293248 +0.4470264 0.3944623 0.3293248 +0.4586928 0.3944623 0.3293248 +0.4698649 0.3944623 0.3293248 +0.4805811 0.3944623 0.3293248 +0.490876 0.3944623 0.3293248 +0.5007803 0.3944623 0.3293248 +0.510322 0.3944623 0.3293248 +0.5195258 0.3944623 0.3293248 +0.5284142 0.3944623 0.3293248 +0.5370079 0.3944623 0.3293248 +0.5453253 0.3944623 0.3293248 +0.5533834 0.3944623 0.3293248 +0.5611974 0.3944623 0.3293248 +0.5687816 0.3944623 0.3293248 +0.092819 0.4085988 0.3293248 +0.1056428 0.4085988 0.3293248 +0.1201537 0.4085988 0.3293248 +0.1409607 0.4085988 0.3293248 +0.1678172 0.4085988 0.3293248 +0.1950164 0.4085988 0.3293248 +0.2210581 0.4085988 0.3293248 +0.245636 0.4085988 0.3293248 +0.2686816 0.4085988 0.3293248 +0.2902431 0.4085988 0.3293248 +0.3104189 0.4085988 0.3293248 +0.3293248 0.4085988 0.3293248 +0.3470774 0.4085988 0.3293248 +0.3637862 0.4085988 0.3293248 +0.3795513 0.4085988 0.3293248 +0.3944623 0.4085988 0.3293248 +0.4085988 0.4085988 0.3293248 +0.4220313 0.4085988 0.3293248 +0.4348222 0.4085988 0.3293248 +0.4470264 0.4085988 0.3293248 +0.4586928 0.4085988 0.3293248 +0.4698649 0.4085988 0.3293248 +0.4805811 0.4085988 0.3293248 +0.490876 0.4085988 0.3293248 +0.5007803 0.4085988 0.3293248 +0.510322 0.4085988 0.3293248 +0.5195258 0.4085988 0.3293248 +0.5284142 0.4085988 0.3293248 +0.5370079 0.4085988 0.3293248 +0.5453253 0.4085988 0.3293248 +0.5533834 0.4085988 0.3293248 +0.5611974 0.4085988 0.3293248 +0.5687816 0.4085988 0.3293248 +0.092819 0.4220313 0.3293248 +0.1056428 0.4220313 0.3293248 +0.1201537 0.4220313 0.3293248 +0.1409607 0.4220313 0.3293248 +0.1678172 0.4220313 0.3293248 +0.1950164 0.4220313 0.3293248 +0.2210581 0.4220313 0.3293248 +0.245636 0.4220313 0.3293248 +0.2686816 0.4220313 0.3293248 +0.2902431 0.4220313 0.3293248 +0.3104189 0.4220313 0.3293248 +0.3293248 0.4220313 0.3293248 +0.3470774 0.4220313 0.3293248 +0.3637862 0.4220313 0.3293248 +0.3795513 0.4220313 0.3293248 +0.3944623 0.4220313 0.3293248 +0.4085988 0.4220313 0.3293248 +0.4220313 0.4220313 0.3293248 +0.4348222 0.4220313 0.3293248 +0.4470264 0.4220313 0.3293248 +0.4586928 0.4220313 0.3293248 +0.4698649 0.4220313 0.3293248 +0.4805811 0.4220313 0.3293248 +0.490876 0.4220313 0.3293248 +0.5007803 0.4220313 0.3293248 +0.510322 0.4220313 0.3293248 +0.5195258 0.4220313 0.3293248 +0.5284142 0.4220313 0.3293248 +0.5370079 0.4220313 0.3293248 +0.5453253 0.4220313 0.3293248 +0.5533834 0.4220313 0.3293248 +0.5611974 0.4220313 0.3293248 +0.5687816 0.4220313 0.3293248 +0.092819 0.4348222 0.3293248 +0.1056428 0.4348222 0.3293248 +0.1201537 0.4348222 0.3293248 +0.1409607 0.4348222 0.3293248 +0.1678172 0.4348222 0.3293248 +0.1950164 0.4348222 0.3293248 +0.2210581 0.4348222 0.3293248 +0.245636 0.4348222 0.3293248 +0.2686816 0.4348222 0.3293248 +0.2902431 0.4348222 0.3293248 +0.3104189 0.4348222 0.3293248 +0.3293248 0.4348222 0.3293248 +0.3470774 0.4348222 0.3293248 +0.3637862 0.4348222 0.3293248 +0.3795513 0.4348222 0.3293248 +0.3944623 0.4348222 0.3293248 +0.4085988 0.4348222 0.3293248 +0.4220313 0.4348222 0.3293248 +0.4348222 0.4348222 0.3293248 +0.4470264 0.4348222 0.3293248 +0.4586928 0.4348222 0.3293248 +0.4698649 0.4348222 0.3293248 +0.4805811 0.4348222 0.3293248 +0.490876 0.4348222 0.3293248 +0.5007803 0.4348222 0.3293248 +0.510322 0.4348222 0.3293248 +0.5195258 0.4348222 0.3293248 +0.5284142 0.4348222 0.3293248 +0.5370079 0.4348222 0.3293248 +0.5453253 0.4348222 0.3293248 +0.5533834 0.4348222 0.3293248 +0.5611974 0.4348222 0.3293248 +0.5687816 0.4348222 0.3293248 +0.092819 0.4470264 0.3293248 +0.1056428 0.4470264 0.3293248 +0.1201537 0.4470264 0.3293248 +0.1409607 0.4470264 0.3293248 +0.1678172 0.4470264 0.3293248 +0.1950164 0.4470264 0.3293248 +0.2210581 0.4470264 0.3293248 +0.245636 0.4470264 0.3293248 +0.2686816 0.4470264 0.3293248 +0.2902431 0.4470264 0.3293248 +0.3104189 0.4470264 0.3293248 +0.3293248 0.4470264 0.3293248 +0.3470774 0.4470264 0.3293248 +0.3637862 0.4470264 0.3293248 +0.3795513 0.4470264 0.3293248 +0.3944623 0.4470264 0.3293248 +0.4085988 0.4470264 0.3293248 +0.4220313 0.4470264 0.3293248 +0.4348222 0.4470264 0.3293248 +0.4470264 0.4470264 0.3293248 +0.4586928 0.4470264 0.3293248 +0.4698649 0.4470264 0.3293248 +0.4805811 0.4470264 0.3293248 +0.490876 0.4470264 0.3293248 +0.5007803 0.4470264 0.3293248 +0.510322 0.4470264 0.3293248 +0.5195258 0.4470264 0.3293248 +0.5284142 0.4470264 0.3293248 +0.5370079 0.4470264 0.3293248 +0.5453253 0.4470264 0.3293248 +0.5533834 0.4470264 0.3293248 +0.5611974 0.4470264 0.3293248 +0.5687816 0.4470264 0.3293248 +0.092819 0.4586928 0.3293248 +0.1056428 0.4586928 0.3293248 +0.1201537 0.4586928 0.3293248 +0.1409607 0.4586928 0.3293248 +0.1678172 0.4586928 0.3293248 +0.1950164 0.4586928 0.3293248 +0.2210581 0.4586928 0.3293248 +0.245636 0.4586928 0.3293248 +0.2686816 0.4586928 0.3293248 +0.2902431 0.4586928 0.3293248 +0.3104189 0.4586928 0.3293248 +0.3293248 0.4586928 0.3293248 +0.3470774 0.4586928 0.3293248 +0.3637862 0.4586928 0.3293248 +0.3795513 0.4586928 0.3293248 +0.3944623 0.4586928 0.3293248 +0.4085988 0.4586928 0.3293248 +0.4220313 0.4586928 0.3293248 +0.4348222 0.4586928 0.3293248 +0.4470264 0.4586928 0.3293248 +0.4586928 0.4586928 0.3293248 +0.4698649 0.4586928 0.3293248 +0.4805811 0.4586928 0.3293248 +0.490876 0.4586928 0.3293248 +0.5007803 0.4586928 0.3293248 +0.510322 0.4586928 0.3293248 +0.5195258 0.4586928 0.3293248 +0.5284142 0.4586928 0.3293248 +0.5370079 0.4586928 0.3293248 +0.5453253 0.4586928 0.3293248 +0.5533834 0.4586928 0.3293248 +0.5611974 0.4586928 0.3293248 +0.5687816 0.4586928 0.3293248 +0.092819 0.4698649 0.3293248 +0.1056428 0.4698649 0.3293248 +0.1201537 0.4698649 0.3293248 +0.1409607 0.4698649 0.3293248 +0.1678172 0.4698649 0.3293248 +0.1950164 0.4698649 0.3293248 +0.2210581 0.4698649 0.3293248 +0.245636 0.4698649 0.3293248 +0.2686816 0.4698649 0.3293248 +0.2902431 0.4698649 0.3293248 +0.3104189 0.4698649 0.3293248 +0.3293248 0.4698649 0.3293248 +0.3470774 0.4698649 0.3293248 +0.3637862 0.4698649 0.3293248 +0.3795513 0.4698649 0.3293248 +0.3944623 0.4698649 0.3293248 +0.4085988 0.4698649 0.3293248 +0.4220313 0.4698649 0.3293248 +0.4348222 0.4698649 0.3293248 +0.4470264 0.4698649 0.3293248 +0.4586928 0.4698649 0.3293248 +0.4698649 0.4698649 0.3293248 +0.4805811 0.4698649 0.3293248 +0.490876 0.4698649 0.3293248 +0.5007803 0.4698649 0.3293248 +0.510322 0.4698649 0.3293248 +0.5195258 0.4698649 0.3293248 +0.5284142 0.4698649 0.3293248 +0.5370079 0.4698649 0.3293248 +0.5453253 0.4698649 0.3293248 +0.5533834 0.4698649 0.3293248 +0.5611974 0.4698649 0.3293248 +0.5687816 0.4698649 0.3293248 +0.092819 0.4805811 0.3293248 +0.1056428 0.4805811 0.3293248 +0.1201537 0.4805811 0.3293248 +0.1409607 0.4805811 0.3293248 +0.1678172 0.4805811 0.3293248 +0.1950164 0.4805811 0.3293248 +0.2210581 0.4805811 0.3293248 +0.245636 0.4805811 0.3293248 +0.2686816 0.4805811 0.3293248 +0.2902431 0.4805811 0.3293248 +0.3104189 0.4805811 0.3293248 +0.3293248 0.4805811 0.3293248 +0.3470774 0.4805811 0.3293248 +0.3637862 0.4805811 0.3293248 +0.3795513 0.4805811 0.3293248 +0.3944623 0.4805811 0.3293248 +0.4085988 0.4805811 0.3293248 +0.4220313 0.4805811 0.3293248 +0.4348222 0.4805811 0.3293248 +0.4470264 0.4805811 0.3293248 +0.4586928 0.4805811 0.3293248 +0.4698649 0.4805811 0.3293248 +0.4805811 0.4805811 0.3293248 +0.490876 0.4805811 0.3293248 +0.5007803 0.4805811 0.3293248 +0.510322 0.4805811 0.3293248 +0.5195258 0.4805811 0.3293248 +0.5284142 0.4805811 0.3293248 +0.5370079 0.4805811 0.3293248 +0.5453253 0.4805811 0.3293248 +0.5533834 0.4805811 0.3293248 +0.5611974 0.4805811 0.3293248 +0.5687816 0.4805811 0.3293248 +0.092819 0.490876 0.3293248 +0.1056428 0.490876 0.3293248 +0.1201537 0.490876 0.3293248 +0.1409607 0.490876 0.3293248 +0.1678172 0.490876 0.3293248 +0.1950164 0.490876 0.3293248 +0.2210581 0.490876 0.3293248 +0.245636 0.490876 0.3293248 +0.2686816 0.490876 0.3293248 +0.2902431 0.490876 0.3293248 +0.3104189 0.490876 0.3293248 +0.3293248 0.490876 0.3293248 +0.3470774 0.490876 0.3293248 +0.3637862 0.490876 0.3293248 +0.3795513 0.490876 0.3293248 +0.3944623 0.490876 0.3293248 +0.4085988 0.490876 0.3293248 +0.4220313 0.490876 0.3293248 +0.4348222 0.490876 0.3293248 +0.4470264 0.490876 0.3293248 +0.4586928 0.490876 0.3293248 +0.4698649 0.490876 0.3293248 +0.4805811 0.490876 0.3293248 +0.490876 0.490876 0.3293248 +0.5007803 0.490876 0.3293248 +0.510322 0.490876 0.3293248 +0.5195258 0.490876 0.3293248 +0.5284142 0.490876 0.3293248 +0.5370079 0.490876 0.3293248 +0.5453253 0.490876 0.3293248 +0.5533834 0.490876 0.3293248 +0.5611974 0.490876 0.3293248 +0.5687816 0.490876 0.3293248 +0.092819 0.5007803 0.3293248 +0.1056428 0.5007803 0.3293248 +0.1201537 0.5007803 0.3293248 +0.1409607 0.5007803 0.3293248 +0.1678172 0.5007803 0.3293248 +0.1950164 0.5007803 0.3293248 +0.2210581 0.5007803 0.3293248 +0.245636 0.5007803 0.3293248 +0.2686816 0.5007803 0.3293248 +0.2902431 0.5007803 0.3293248 +0.3104189 0.5007803 0.3293248 +0.3293248 0.5007803 0.3293248 +0.3470774 0.5007803 0.3293248 +0.3637862 0.5007803 0.3293248 +0.3795513 0.5007803 0.3293248 +0.3944623 0.5007803 0.3293248 +0.4085988 0.5007803 0.3293248 +0.4220313 0.5007803 0.3293248 +0.4348222 0.5007803 0.3293248 +0.4470264 0.5007803 0.3293248 +0.4586928 0.5007803 0.3293248 +0.4698649 0.5007803 0.3293248 +0.4805811 0.5007803 0.3293248 +0.490876 0.5007803 0.3293248 +0.5007803 0.5007803 0.3293248 +0.510322 0.5007803 0.3293248 +0.5195258 0.5007803 0.3293248 +0.5284142 0.5007803 0.3293248 +0.5370079 0.5007803 0.3293248 +0.5453253 0.5007803 0.3293248 +0.5533834 0.5007803 0.3293248 +0.5611974 0.5007803 0.3293248 +0.5687816 0.5007803 0.3293248 +0.092819 0.510322 0.3293248 +0.1056428 0.510322 0.3293248 +0.1201537 0.510322 0.3293248 +0.1409607 0.510322 0.3293248 +0.1678172 0.510322 0.3293248 +0.1950164 0.510322 0.3293248 +0.2210581 0.510322 0.3293248 +0.245636 0.510322 0.3293248 +0.2686816 0.510322 0.3293248 +0.2902431 0.510322 0.3293248 +0.3104189 0.510322 0.3293248 +0.3293248 0.510322 0.3293248 +0.3470774 0.510322 0.3293248 +0.3637862 0.510322 0.3293248 +0.3795513 0.510322 0.3293248 +0.3944623 0.510322 0.3293248 +0.4085988 0.510322 0.3293248 +0.4220313 0.510322 0.3293248 +0.4348222 0.510322 0.3293248 +0.4470264 0.510322 0.3293248 +0.4586928 0.510322 0.3293248 +0.4698649 0.510322 0.3293248 +0.4805811 0.510322 0.3293248 +0.490876 0.510322 0.3293248 +0.5007803 0.510322 0.3293248 +0.510322 0.510322 0.3293248 +0.5195258 0.510322 0.3293248 +0.5284142 0.510322 0.3293248 +0.5370079 0.510322 0.3293248 +0.5453253 0.510322 0.3293248 +0.5533834 0.510322 0.3293248 +0.5611974 0.510322 0.3293248 +0.5687816 0.510322 0.3293248 +0.092819 0.5195258 0.3293248 +0.1056428 0.5195258 0.3293248 +0.1201537 0.5195258 0.3293248 +0.1409607 0.5195258 0.3293248 +0.1678172 0.5195258 0.3293248 +0.1950164 0.5195258 0.3293248 +0.2210581 0.5195258 0.3293248 +0.245636 0.5195258 0.3293248 +0.2686816 0.5195258 0.3293248 +0.2902431 0.5195258 0.3293248 +0.3104189 0.5195258 0.3293248 +0.3293248 0.5195258 0.3293248 +0.3470774 0.5195258 0.3293248 +0.3637862 0.5195258 0.3293248 +0.3795513 0.5195258 0.3293248 +0.3944623 0.5195258 0.3293248 +0.4085988 0.5195258 0.3293248 +0.4220313 0.5195258 0.3293248 +0.4348222 0.5195258 0.3293248 +0.4470264 0.5195258 0.3293248 +0.4586928 0.5195258 0.3293248 +0.4698649 0.5195258 0.3293248 +0.4805811 0.5195258 0.3293248 +0.490876 0.5195258 0.3293248 +0.5007803 0.5195258 0.3293248 +0.510322 0.5195258 0.3293248 +0.5195258 0.5195258 0.3293248 +0.5284142 0.5195258 0.3293248 +0.5370079 0.5195258 0.3293248 +0.5453253 0.5195258 0.3293248 +0.5533834 0.5195258 0.3293248 +0.5611974 0.5195258 0.3293248 +0.5687816 0.5195258 0.3293248 +0.092819 0.5284142 0.3293248 +0.1056428 0.5284142 0.3293248 +0.1201537 0.5284142 0.3293248 +0.1409607 0.5284142 0.3293248 +0.1678172 0.5284142 0.3293248 +0.1950164 0.5284142 0.3293248 +0.2210581 0.5284142 0.3293248 +0.245636 0.5284142 0.3293248 +0.2686816 0.5284142 0.3293248 +0.2902431 0.5284142 0.3293248 +0.3104189 0.5284142 0.3293248 +0.3293248 0.5284142 0.3293248 +0.3470774 0.5284142 0.3293248 +0.3637862 0.5284142 0.3293248 +0.3795513 0.5284142 0.3293248 +0.3944623 0.5284142 0.3293248 +0.4085988 0.5284142 0.3293248 +0.4220313 0.5284142 0.3293248 +0.4348222 0.5284142 0.3293248 +0.4470264 0.5284142 0.3293248 +0.4586928 0.5284142 0.3293248 +0.4698649 0.5284142 0.3293248 +0.4805811 0.5284142 0.3293248 +0.490876 0.5284142 0.3293248 +0.5007803 0.5284142 0.3293248 +0.510322 0.5284142 0.3293248 +0.5195258 0.5284142 0.3293248 +0.5284142 0.5284142 0.3293248 +0.5370079 0.5284142 0.3293248 +0.5453253 0.5284142 0.3293248 +0.5533834 0.5284142 0.3293248 +0.5611974 0.5284142 0.3293248 +0.5687816 0.5284142 0.3293248 +0.092819 0.5370079 0.3293248 +0.1056428 0.5370079 0.3293248 +0.1201537 0.5370079 0.3293248 +0.1409607 0.5370079 0.3293248 +0.1678172 0.5370079 0.3293248 +0.1950164 0.5370079 0.3293248 +0.2210581 0.5370079 0.3293248 +0.245636 0.5370079 0.3293248 +0.2686816 0.5370079 0.3293248 +0.2902431 0.5370079 0.3293248 +0.3104189 0.5370079 0.3293248 +0.3293248 0.5370079 0.3293248 +0.3470774 0.5370079 0.3293248 +0.3637862 0.5370079 0.3293248 +0.3795513 0.5370079 0.3293248 +0.3944623 0.5370079 0.3293248 +0.4085988 0.5370079 0.3293248 +0.4220313 0.5370079 0.3293248 +0.4348222 0.5370079 0.3293248 +0.4470264 0.5370079 0.3293248 +0.4586928 0.5370079 0.3293248 +0.4698649 0.5370079 0.3293248 +0.4805811 0.5370079 0.3293248 +0.490876 0.5370079 0.3293248 +0.5007803 0.5370079 0.3293248 +0.510322 0.5370079 0.3293248 +0.5195258 0.5370079 0.3293248 +0.5284142 0.5370079 0.3293248 +0.5370079 0.5370079 0.3293248 +0.5453253 0.5370079 0.3293248 +0.5533834 0.5370079 0.3293248 +0.5611974 0.5370079 0.3293248 +0.5687816 0.5370079 0.3293248 +0.092819 0.5453253 0.3293248 +0.1056428 0.5453253 0.3293248 +0.1201537 0.5453253 0.3293248 +0.1409607 0.5453253 0.3293248 +0.1678172 0.5453253 0.3293248 +0.1950164 0.5453253 0.3293248 +0.2210581 0.5453253 0.3293248 +0.245636 0.5453253 0.3293248 +0.2686816 0.5453253 0.3293248 +0.2902431 0.5453253 0.3293248 +0.3104189 0.5453253 0.3293248 +0.3293248 0.5453253 0.3293248 +0.3470774 0.5453253 0.3293248 +0.3637862 0.5453253 0.3293248 +0.3795513 0.5453253 0.3293248 +0.3944623 0.5453253 0.3293248 +0.4085988 0.5453253 0.3293248 +0.4220313 0.5453253 0.3293248 +0.4348222 0.5453253 0.3293248 +0.4470264 0.5453253 0.3293248 +0.4586928 0.5453253 0.3293248 +0.4698649 0.5453253 0.3293248 +0.4805811 0.5453253 0.3293248 +0.490876 0.5453253 0.3293248 +0.5007803 0.5453253 0.3293248 +0.510322 0.5453253 0.3293248 +0.5195258 0.5453253 0.3293248 +0.5284142 0.5453253 0.3293248 +0.5370079 0.5453253 0.3293248 +0.5453253 0.5453253 0.3293248 +0.5533834 0.5453253 0.3293248 +0.5611974 0.5453253 0.3293248 +0.5687816 0.5453253 0.3293248 +0.092819 0.5533834 0.3293248 +0.1056428 0.5533834 0.3293248 +0.1201537 0.5533834 0.3293248 +0.1409607 0.5533834 0.3293248 +0.1678172 0.5533834 0.3293248 +0.1950164 0.5533834 0.3293248 +0.2210581 0.5533834 0.3293248 +0.245636 0.5533834 0.3293248 +0.2686816 0.5533834 0.3293248 +0.2902431 0.5533834 0.3293248 +0.3104189 0.5533834 0.3293248 +0.3293248 0.5533834 0.3293248 +0.3470774 0.5533834 0.3293248 +0.3637862 0.5533834 0.3293248 +0.3795513 0.5533834 0.3293248 +0.3944623 0.5533834 0.3293248 +0.4085988 0.5533834 0.3293248 +0.4220313 0.5533834 0.3293248 +0.4348222 0.5533834 0.3293248 +0.4470264 0.5533834 0.3293248 +0.4586928 0.5533834 0.3293248 +0.4698649 0.5533834 0.3293248 +0.4805811 0.5533834 0.3293248 +0.490876 0.5533834 0.3293248 +0.5007803 0.5533834 0.3293248 +0.510322 0.5533834 0.3293248 +0.5195258 0.5533834 0.3293248 +0.5284142 0.5533834 0.3293248 +0.5370079 0.5533834 0.3293248 +0.5453253 0.5533834 0.3293248 +0.5533834 0.5533834 0.3293248 +0.5611974 0.5533834 0.3293248 +0.5687816 0.5533834 0.3293248 +0.092819 0.5611974 0.3293248 +0.1056428 0.5611974 0.3293248 +0.1201537 0.5611974 0.3293248 +0.1409607 0.5611974 0.3293248 +0.1678172 0.5611974 0.3293248 +0.1950164 0.5611974 0.3293248 +0.2210581 0.5611974 0.3293248 +0.245636 0.5611974 0.3293248 +0.2686816 0.5611974 0.3293248 +0.2902431 0.5611974 0.3293248 +0.3104189 0.5611974 0.3293248 +0.3293248 0.5611974 0.3293248 +0.3470774 0.5611974 0.3293248 +0.3637862 0.5611974 0.3293248 +0.3795513 0.5611974 0.3293248 +0.3944623 0.5611974 0.3293248 +0.4085988 0.5611974 0.3293248 +0.4220313 0.5611974 0.3293248 +0.4348222 0.5611974 0.3293248 +0.4470264 0.5611974 0.3293248 +0.4586928 0.5611974 0.3293248 +0.4698649 0.5611974 0.3293248 +0.4805811 0.5611974 0.3293248 +0.490876 0.5611974 0.3293248 +0.5007803 0.5611974 0.3293248 +0.510322 0.5611974 0.3293248 +0.5195258 0.5611974 0.3293248 +0.5284142 0.5611974 0.3293248 +0.5370079 0.5611974 0.3293248 +0.5453253 0.5611974 0.3293248 +0.5533834 0.5611974 0.3293248 +0.5611974 0.5611974 0.3293248 +0.5687816 0.5611974 0.3293248 +0.092819 0.5687816 0.3293248 +0.1056428 0.5687816 0.3293248 +0.1201537 0.5687816 0.3293248 +0.1409607 0.5687816 0.3293248 +0.1678172 0.5687816 0.3293248 +0.1950164 0.5687816 0.3293248 +0.2210581 0.5687816 0.3293248 +0.245636 0.5687816 0.3293248 +0.2686816 0.5687816 0.3293248 +0.2902431 0.5687816 0.3293248 +0.3104189 0.5687816 0.3293248 +0.3293248 0.5687816 0.3293248 +0.3470774 0.5687816 0.3293248 +0.3637862 0.5687816 0.3293248 +0.3795513 0.5687816 0.3293248 +0.3944623 0.5687816 0.3293248 +0.4085988 0.5687816 0.3293248 +0.4220313 0.5687816 0.3293248 +0.4348222 0.5687816 0.3293248 +0.4470264 0.5687816 0.3293248 +0.4586928 0.5687816 0.3293248 +0.4698649 0.5687816 0.3293248 +0.4805811 0.5687816 0.3293248 +0.490876 0.5687816 0.3293248 +0.5007803 0.5687816 0.3293248 +0.510322 0.5687816 0.3293248 +0.5195258 0.5687816 0.3293248 +0.5284142 0.5687816 0.3293248 +0.5370079 0.5687816 0.3293248 +0.5453253 0.5687816 0.3293248 +0.5533834 0.5687816 0.3293248 +0.5611974 0.5687816 0.3293248 +0.5687816 0.5687816 0.3293248 +0.092819 0.092819 0.3470774 +0.1056428 0.092819 0.3470774 +0.1201537 0.092819 0.3470774 +0.1409607 0.092819 0.3470774 +0.1678172 0.092819 0.3470774 +0.1950164 0.092819 0.3470774 +0.2210581 0.092819 0.3470774 +0.245636 0.092819 0.3470774 +0.2686816 0.092819 0.3470774 +0.2902431 0.092819 0.3470774 +0.3104189 0.092819 0.3470774 +0.3293248 0.092819 0.3470774 +0.3470774 0.092819 0.3470774 +0.3637862 0.092819 0.3470774 +0.3795513 0.092819 0.3470774 +0.3944623 0.092819 0.3470774 +0.4085988 0.092819 0.3470774 +0.4220313 0.092819 0.3470774 +0.4348222 0.092819 0.3470774 +0.4470264 0.092819 0.3470774 +0.4586928 0.092819 0.3470774 +0.4698649 0.092819 0.3470774 +0.4805811 0.092819 0.3470774 +0.490876 0.092819 0.3470774 +0.5007803 0.092819 0.3470774 +0.510322 0.092819 0.3470774 +0.5195258 0.092819 0.3470774 +0.5284142 0.092819 0.3470774 +0.5370079 0.092819 0.3470774 +0.5453253 0.092819 0.3470774 +0.5533834 0.092819 0.3470774 +0.5611974 0.092819 0.3470774 +0.5687816 0.092819 0.3470774 +0.092819 0.1056428 0.3470774 +0.1056428 0.1056428 0.3470774 +0.1201537 0.1056428 0.3470774 +0.1409607 0.1056428 0.3470774 +0.1678172 0.1056428 0.3470774 +0.1950164 0.1056428 0.3470774 +0.2210581 0.1056428 0.3470774 +0.245636 0.1056428 0.3470774 +0.2686816 0.1056428 0.3470774 +0.2902431 0.1056428 0.3470774 +0.3104189 0.1056428 0.3470774 +0.3293248 0.1056428 0.3470774 +0.3470774 0.1056428 0.3470774 +0.3637862 0.1056428 0.3470774 +0.3795513 0.1056428 0.3470774 +0.3944623 0.1056428 0.3470774 +0.4085988 0.1056428 0.3470774 +0.4220313 0.1056428 0.3470774 +0.4348222 0.1056428 0.3470774 +0.4470264 0.1056428 0.3470774 +0.4586928 0.1056428 0.3470774 +0.4698649 0.1056428 0.3470774 +0.4805811 0.1056428 0.3470774 +0.490876 0.1056428 0.3470774 +0.5007803 0.1056428 0.3470774 +0.510322 0.1056428 0.3470774 +0.5195258 0.1056428 0.3470774 +0.5284142 0.1056428 0.3470774 +0.5370079 0.1056428 0.3470774 +0.5453253 0.1056428 0.3470774 +0.5533834 0.1056428 0.3470774 +0.5611974 0.1056428 0.3470774 +0.5687816 0.1056428 0.3470774 +0.092819 0.1201537 0.3470774 +0.1056428 0.1201537 0.3470774 +0.1201537 0.1201537 0.3470774 +0.1409607 0.1201537 0.3470774 +0.1678172 0.1201537 0.3470774 +0.1950164 0.1201537 0.3470774 +0.2210581 0.1201537 0.3470774 +0.245636 0.1201537 0.3470774 +0.2686816 0.1201537 0.3470774 +0.2902431 0.1201537 0.3470774 +0.3104189 0.1201537 0.3470774 +0.3293248 0.1201537 0.3470774 +0.3470774 0.1201537 0.3470774 +0.3637862 0.1201537 0.3470774 +0.3795513 0.1201537 0.3470774 +0.3944623 0.1201537 0.3470774 +0.4085988 0.1201537 0.3470774 +0.4220313 0.1201537 0.3470774 +0.4348222 0.1201537 0.3470774 +0.4470264 0.1201537 0.3470774 +0.4586928 0.1201537 0.3470774 +0.4698649 0.1201537 0.3470774 +0.4805811 0.1201537 0.3470774 +0.490876 0.1201537 0.3470774 +0.5007803 0.1201537 0.3470774 +0.510322 0.1201537 0.3470774 +0.5195258 0.1201537 0.3470774 +0.5284142 0.1201537 0.3470774 +0.5370079 0.1201537 0.3470774 +0.5453253 0.1201537 0.3470774 +0.5533834 0.1201537 0.3470774 +0.5611974 0.1201537 0.3470774 +0.5687816 0.1201537 0.3470774 +0.092819 0.1409607 0.3470774 +0.1056428 0.1409607 0.3470774 +0.1201537 0.1409607 0.3470774 +0.1409607 0.1409607 0.3470774 +0.1678172 0.1409607 0.3470774 +0.1950164 0.1409607 0.3470774 +0.2210581 0.1409607 0.3470774 +0.245636 0.1409607 0.3470774 +0.2686816 0.1409607 0.3470774 +0.2902431 0.1409607 0.3470774 +0.3104189 0.1409607 0.3470774 +0.3293248 0.1409607 0.3470774 +0.3470774 0.1409607 0.3470774 +0.3637862 0.1409607 0.3470774 +0.3795513 0.1409607 0.3470774 +0.3944623 0.1409607 0.3470774 +0.4085988 0.1409607 0.3470774 +0.4220313 0.1409607 0.3470774 +0.4348222 0.1409607 0.3470774 +0.4470264 0.1409607 0.3470774 +0.4586928 0.1409607 0.3470774 +0.4698649 0.1409607 0.3470774 +0.4805811 0.1409607 0.3470774 +0.490876 0.1409607 0.3470774 +0.5007803 0.1409607 0.3470774 +0.510322 0.1409607 0.3470774 +0.5195258 0.1409607 0.3470774 +0.5284142 0.1409607 0.3470774 +0.5370079 0.1409607 0.3470774 +0.5453253 0.1409607 0.3470774 +0.5533834 0.1409607 0.3470774 +0.5611974 0.1409607 0.3470774 +0.5687816 0.1409607 0.3470774 +0.092819 0.1678172 0.3470774 +0.1056428 0.1678172 0.3470774 +0.1201537 0.1678172 0.3470774 +0.1409607 0.1678172 0.3470774 +0.1678172 0.1678172 0.3470774 +0.1950164 0.1678172 0.3470774 +0.2210581 0.1678172 0.3470774 +0.245636 0.1678172 0.3470774 +0.2686816 0.1678172 0.3470774 +0.2902431 0.1678172 0.3470774 +0.3104189 0.1678172 0.3470774 +0.3293248 0.1678172 0.3470774 +0.3470774 0.1678172 0.3470774 +0.3637862 0.1678172 0.3470774 +0.3795513 0.1678172 0.3470774 +0.3944623 0.1678172 0.3470774 +0.4085988 0.1678172 0.3470774 +0.4220313 0.1678172 0.3470774 +0.4348222 0.1678172 0.3470774 +0.4470264 0.1678172 0.3470774 +0.4586928 0.1678172 0.3470774 +0.4698649 0.1678172 0.3470774 +0.4805811 0.1678172 0.3470774 +0.490876 0.1678172 0.3470774 +0.5007803 0.1678172 0.3470774 +0.510322 0.1678172 0.3470774 +0.5195258 0.1678172 0.3470774 +0.5284142 0.1678172 0.3470774 +0.5370079 0.1678172 0.3470774 +0.5453253 0.1678172 0.3470774 +0.5533834 0.1678172 0.3470774 +0.5611974 0.1678172 0.3470774 +0.5687816 0.1678172 0.3470774 +0.092819 0.1950164 0.3470774 +0.1056428 0.1950164 0.3470774 +0.1201537 0.1950164 0.3470774 +0.1409607 0.1950164 0.3470774 +0.1678172 0.1950164 0.3470774 +0.1950164 0.1950164 0.3470774 +0.2210581 0.1950164 0.3470774 +0.245636 0.1950164 0.3470774 +0.2686816 0.1950164 0.3470774 +0.2902431 0.1950164 0.3470774 +0.3104189 0.1950164 0.3470774 +0.3293248 0.1950164 0.3470774 +0.3470774 0.1950164 0.3470774 +0.3637862 0.1950164 0.3470774 +0.3795513 0.1950164 0.3470774 +0.3944623 0.1950164 0.3470774 +0.4085988 0.1950164 0.3470774 +0.4220313 0.1950164 0.3470774 +0.4348222 0.1950164 0.3470774 +0.4470264 0.1950164 0.3470774 +0.4586928 0.1950164 0.3470774 +0.4698649 0.1950164 0.3470774 +0.4805811 0.1950164 0.3470774 +0.490876 0.1950164 0.3470774 +0.5007803 0.1950164 0.3470774 +0.510322 0.1950164 0.3470774 +0.5195258 0.1950164 0.3470774 +0.5284142 0.1950164 0.3470774 +0.5370079 0.1950164 0.3470774 +0.5453253 0.1950164 0.3470774 +0.5533834 0.1950164 0.3470774 +0.5611974 0.1950164 0.3470774 +0.5687816 0.1950164 0.3470774 +0.092819 0.2210581 0.3470774 +0.1056428 0.2210581 0.3470774 +0.1201537 0.2210581 0.3470774 +0.1409607 0.2210581 0.3470774 +0.1678172 0.2210581 0.3470774 +0.1950164 0.2210581 0.3470774 +0.2210581 0.2210581 0.3470774 +0.245636 0.2210581 0.3470774 +0.2686816 0.2210581 0.3470774 +0.2902431 0.2210581 0.3470774 +0.3104189 0.2210581 0.3470774 +0.3293248 0.2210581 0.3470774 +0.3470774 0.2210581 0.3470774 +0.3637862 0.2210581 0.3470774 +0.3795513 0.2210581 0.3470774 +0.3944623 0.2210581 0.3470774 +0.4085988 0.2210581 0.3470774 +0.4220313 0.2210581 0.3470774 +0.4348222 0.2210581 0.3470774 +0.4470264 0.2210581 0.3470774 +0.4586928 0.2210581 0.3470774 +0.4698649 0.2210581 0.3470774 +0.4805811 0.2210581 0.3470774 +0.490876 0.2210581 0.3470774 +0.5007803 0.2210581 0.3470774 +0.510322 0.2210581 0.3470774 +0.5195258 0.2210581 0.3470774 +0.5284142 0.2210581 0.3470774 +0.5370079 0.2210581 0.3470774 +0.5453253 0.2210581 0.3470774 +0.5533834 0.2210581 0.3470774 +0.5611974 0.2210581 0.3470774 +0.5687816 0.2210581 0.3470774 +0.092819 0.245636 0.3470774 +0.1056428 0.245636 0.3470774 +0.1201537 0.245636 0.3470774 +0.1409607 0.245636 0.3470774 +0.1678172 0.245636 0.3470774 +0.1950164 0.245636 0.3470774 +0.2210581 0.245636 0.3470774 +0.245636 0.245636 0.3470774 +0.2686816 0.245636 0.3470774 +0.2902431 0.245636 0.3470774 +0.3104189 0.245636 0.3470774 +0.3293248 0.245636 0.3470774 +0.3470774 0.245636 0.3470774 +0.3637862 0.245636 0.3470774 +0.3795513 0.245636 0.3470774 +0.3944623 0.245636 0.3470774 +0.4085988 0.245636 0.3470774 +0.4220313 0.245636 0.3470774 +0.4348222 0.245636 0.3470774 +0.4470264 0.245636 0.3470774 +0.4586928 0.245636 0.3470774 +0.4698649 0.245636 0.3470774 +0.4805811 0.245636 0.3470774 +0.490876 0.245636 0.3470774 +0.5007803 0.245636 0.3470774 +0.510322 0.245636 0.3470774 +0.5195258 0.245636 0.3470774 +0.5284142 0.245636 0.3470774 +0.5370079 0.245636 0.3470774 +0.5453253 0.245636 0.3470774 +0.5533834 0.245636 0.3470774 +0.5611974 0.245636 0.3470774 +0.5687816 0.245636 0.3470774 +0.092819 0.2686816 0.3470774 +0.1056428 0.2686816 0.3470774 +0.1201537 0.2686816 0.3470774 +0.1409607 0.2686816 0.3470774 +0.1678172 0.2686816 0.3470774 +0.1950164 0.2686816 0.3470774 +0.2210581 0.2686816 0.3470774 +0.245636 0.2686816 0.3470774 +0.2686816 0.2686816 0.3470774 +0.2902431 0.2686816 0.3470774 +0.3104189 0.2686816 0.3470774 +0.3293248 0.2686816 0.3470774 +0.3470774 0.2686816 0.3470774 +0.3637862 0.2686816 0.3470774 +0.3795513 0.2686816 0.3470774 +0.3944623 0.2686816 0.3470774 +0.4085988 0.2686816 0.3470774 +0.4220313 0.2686816 0.3470774 +0.4348222 0.2686816 0.3470774 +0.4470264 0.2686816 0.3470774 +0.4586928 0.2686816 0.3470774 +0.4698649 0.2686816 0.3470774 +0.4805811 0.2686816 0.3470774 +0.490876 0.2686816 0.3470774 +0.5007803 0.2686816 0.3470774 +0.510322 0.2686816 0.3470774 +0.5195258 0.2686816 0.3470774 +0.5284142 0.2686816 0.3470774 +0.5370079 0.2686816 0.3470774 +0.5453253 0.2686816 0.3470774 +0.5533834 0.2686816 0.3470774 +0.5611974 0.2686816 0.3470774 +0.5687816 0.2686816 0.3470774 +0.092819 0.2902431 0.3470774 +0.1056428 0.2902431 0.3470774 +0.1201537 0.2902431 0.3470774 +0.1409607 0.2902431 0.3470774 +0.1678172 0.2902431 0.3470774 +0.1950164 0.2902431 0.3470774 +0.2210581 0.2902431 0.3470774 +0.245636 0.2902431 0.3470774 +0.2686816 0.2902431 0.3470774 +0.2902431 0.2902431 0.3470774 +0.3104189 0.2902431 0.3470774 +0.3293248 0.2902431 0.3470774 +0.3470774 0.2902431 0.3470774 +0.3637862 0.2902431 0.3470774 +0.3795513 0.2902431 0.3470774 +0.3944623 0.2902431 0.3470774 +0.4085988 0.2902431 0.3470774 +0.4220313 0.2902431 0.3470774 +0.4348222 0.2902431 0.3470774 +0.4470264 0.2902431 0.3470774 +0.4586928 0.2902431 0.3470774 +0.4698649 0.2902431 0.3470774 +0.4805811 0.2902431 0.3470774 +0.490876 0.2902431 0.3470774 +0.5007803 0.2902431 0.3470774 +0.510322 0.2902431 0.3470774 +0.5195258 0.2902431 0.3470774 +0.5284142 0.2902431 0.3470774 +0.5370079 0.2902431 0.3470774 +0.5453253 0.2902431 0.3470774 +0.5533834 0.2902431 0.3470774 +0.5611974 0.2902431 0.3470774 +0.5687816 0.2902431 0.3470774 +0.092819 0.3104189 0.3470774 +0.1056428 0.3104189 0.3470774 +0.1201537 0.3104189 0.3470774 +0.1409607 0.3104189 0.3470774 +0.1678172 0.3104189 0.3470774 +0.1950164 0.3104189 0.3470774 +0.2210581 0.3104189 0.3470774 +0.245636 0.3104189 0.3470774 +0.2686816 0.3104189 0.3470774 +0.2902431 0.3104189 0.3470774 +0.3104189 0.3104189 0.3470774 +0.3293248 0.3104189 0.3470774 +0.3470774 0.3104189 0.3470774 +0.3637862 0.3104189 0.3470774 +0.3795513 0.3104189 0.3470774 +0.3944623 0.3104189 0.3470774 +0.4085988 0.3104189 0.3470774 +0.4220313 0.3104189 0.3470774 +0.4348222 0.3104189 0.3470774 +0.4470264 0.3104189 0.3470774 +0.4586928 0.3104189 0.3470774 +0.4698649 0.3104189 0.3470774 +0.4805811 0.3104189 0.3470774 +0.490876 0.3104189 0.3470774 +0.5007803 0.3104189 0.3470774 +0.510322 0.3104189 0.3470774 +0.5195258 0.3104189 0.3470774 +0.5284142 0.3104189 0.3470774 +0.5370079 0.3104189 0.3470774 +0.5453253 0.3104189 0.3470774 +0.5533834 0.3104189 0.3470774 +0.5611974 0.3104189 0.3470774 +0.5687816 0.3104189 0.3470774 +0.092819 0.3293248 0.3470774 +0.1056428 0.3293248 0.3470774 +0.1201537 0.3293248 0.3470774 +0.1409607 0.3293248 0.3470774 +0.1678172 0.3293248 0.3470774 +0.1950164 0.3293248 0.3470774 +0.2210581 0.3293248 0.3470774 +0.245636 0.3293248 0.3470774 +0.2686816 0.3293248 0.3470774 +0.2902431 0.3293248 0.3470774 +0.3104189 0.3293248 0.3470774 +0.3293248 0.3293248 0.3470774 +0.3470774 0.3293248 0.3470774 +0.3637862 0.3293248 0.3470774 +0.3795513 0.3293248 0.3470774 +0.3944623 0.3293248 0.3470774 +0.4085988 0.3293248 0.3470774 +0.4220313 0.3293248 0.3470774 +0.4348222 0.3293248 0.3470774 +0.4470264 0.3293248 0.3470774 +0.4586928 0.3293248 0.3470774 +0.4698649 0.3293248 0.3470774 +0.4805811 0.3293248 0.3470774 +0.490876 0.3293248 0.3470774 +0.5007803 0.3293248 0.3470774 +0.510322 0.3293248 0.3470774 +0.5195258 0.3293248 0.3470774 +0.5284142 0.3293248 0.3470774 +0.5370079 0.3293248 0.3470774 +0.5453253 0.3293248 0.3470774 +0.5533834 0.3293248 0.3470774 +0.5611974 0.3293248 0.3470774 +0.5687816 0.3293248 0.3470774 +0.092819 0.3470774 0.3470774 +0.1056428 0.3470774 0.3470774 +0.1201537 0.3470774 0.3470774 +0.1409607 0.3470774 0.3470774 +0.1678172 0.3470774 0.3470774 +0.1950164 0.3470774 0.3470774 +0.2210581 0.3470774 0.3470774 +0.245636 0.3470774 0.3470774 +0.2686816 0.3470774 0.3470774 +0.2902431 0.3470774 0.3470774 +0.3104189 0.3470774 0.3470774 +0.3293248 0.3470774 0.3470774 +0.3470774 0.3470774 0.3470774 +0.3637862 0.3470774 0.3470774 +0.3795513 0.3470774 0.3470774 +0.3944623 0.3470774 0.3470774 +0.4085988 0.3470774 0.3470774 +0.4220313 0.3470774 0.3470774 +0.4348222 0.3470774 0.3470774 +0.4470264 0.3470774 0.3470774 +0.4586928 0.3470774 0.3470774 +0.4698649 0.3470774 0.3470774 +0.4805811 0.3470774 0.3470774 +0.490876 0.3470774 0.3470774 +0.5007803 0.3470774 0.3470774 +0.510322 0.3470774 0.3470774 +0.5195258 0.3470774 0.3470774 +0.5284142 0.3470774 0.3470774 +0.5370079 0.3470774 0.3470774 +0.5453253 0.3470774 0.3470774 +0.5533834 0.3470774 0.3470774 +0.5611974 0.3470774 0.3470774 +0.5687816 0.3470774 0.3470774 +0.092819 0.3637862 0.3470774 +0.1056428 0.3637862 0.3470774 +0.1201537 0.3637862 0.3470774 +0.1409607 0.3637862 0.3470774 +0.1678172 0.3637862 0.3470774 +0.1950164 0.3637862 0.3470774 +0.2210581 0.3637862 0.3470774 +0.245636 0.3637862 0.3470774 +0.2686816 0.3637862 0.3470774 +0.2902431 0.3637862 0.3470774 +0.3104189 0.3637862 0.3470774 +0.3293248 0.3637862 0.3470774 +0.3470774 0.3637862 0.3470774 +0.3637862 0.3637862 0.3470774 +0.3795513 0.3637862 0.3470774 +0.3944623 0.3637862 0.3470774 +0.4085988 0.3637862 0.3470774 +0.4220313 0.3637862 0.3470774 +0.4348222 0.3637862 0.3470774 +0.4470264 0.3637862 0.3470774 +0.4586928 0.3637862 0.3470774 +0.4698649 0.3637862 0.3470774 +0.4805811 0.3637862 0.3470774 +0.490876 0.3637862 0.3470774 +0.5007803 0.3637862 0.3470774 +0.510322 0.3637862 0.3470774 +0.5195258 0.3637862 0.3470774 +0.5284142 0.3637862 0.3470774 +0.5370079 0.3637862 0.3470774 +0.5453253 0.3637862 0.3470774 +0.5533834 0.3637862 0.3470774 +0.5611974 0.3637862 0.3470774 +0.5687816 0.3637862 0.3470774 +0.092819 0.3795513 0.3470774 +0.1056428 0.3795513 0.3470774 +0.1201537 0.3795513 0.3470774 +0.1409607 0.3795513 0.3470774 +0.1678172 0.3795513 0.3470774 +0.1950164 0.3795513 0.3470774 +0.2210581 0.3795513 0.3470774 +0.245636 0.3795513 0.3470774 +0.2686816 0.3795513 0.3470774 +0.2902431 0.3795513 0.3470774 +0.3104189 0.3795513 0.3470774 +0.3293248 0.3795513 0.3470774 +0.3470774 0.3795513 0.3470774 +0.3637862 0.3795513 0.3470774 +0.3795513 0.3795513 0.3470774 +0.3944623 0.3795513 0.3470774 +0.4085988 0.3795513 0.3470774 +0.4220313 0.3795513 0.3470774 +0.4348222 0.3795513 0.3470774 +0.4470264 0.3795513 0.3470774 +0.4586928 0.3795513 0.3470774 +0.4698649 0.3795513 0.3470774 +0.4805811 0.3795513 0.3470774 +0.490876 0.3795513 0.3470774 +0.5007803 0.3795513 0.3470774 +0.510322 0.3795513 0.3470774 +0.5195258 0.3795513 0.3470774 +0.5284142 0.3795513 0.3470774 +0.5370079 0.3795513 0.3470774 +0.5453253 0.3795513 0.3470774 +0.5533834 0.3795513 0.3470774 +0.5611974 0.3795513 0.3470774 +0.5687816 0.3795513 0.3470774 +0.092819 0.3944623 0.3470774 +0.1056428 0.3944623 0.3470774 +0.1201537 0.3944623 0.3470774 +0.1409607 0.3944623 0.3470774 +0.1678172 0.3944623 0.3470774 +0.1950164 0.3944623 0.3470774 +0.2210581 0.3944623 0.3470774 +0.245636 0.3944623 0.3470774 +0.2686816 0.3944623 0.3470774 +0.2902431 0.3944623 0.3470774 +0.3104189 0.3944623 0.3470774 +0.3293248 0.3944623 0.3470774 +0.3470774 0.3944623 0.3470774 +0.3637862 0.3944623 0.3470774 +0.3795513 0.3944623 0.3470774 +0.3944623 0.3944623 0.3470774 +0.4085988 0.3944623 0.3470774 +0.4220313 0.3944623 0.3470774 +0.4348222 0.3944623 0.3470774 +0.4470264 0.3944623 0.3470774 +0.4586928 0.3944623 0.3470774 +0.4698649 0.3944623 0.3470774 +0.4805811 0.3944623 0.3470774 +0.490876 0.3944623 0.3470774 +0.5007803 0.3944623 0.3470774 +0.510322 0.3944623 0.3470774 +0.5195258 0.3944623 0.3470774 +0.5284142 0.3944623 0.3470774 +0.5370079 0.3944623 0.3470774 +0.5453253 0.3944623 0.3470774 +0.5533834 0.3944623 0.3470774 +0.5611974 0.3944623 0.3470774 +0.5687816 0.3944623 0.3470774 +0.092819 0.4085988 0.3470774 +0.1056428 0.4085988 0.3470774 +0.1201537 0.4085988 0.3470774 +0.1409607 0.4085988 0.3470774 +0.1678172 0.4085988 0.3470774 +0.1950164 0.4085988 0.3470774 +0.2210581 0.4085988 0.3470774 +0.245636 0.4085988 0.3470774 +0.2686816 0.4085988 0.3470774 +0.2902431 0.4085988 0.3470774 +0.3104189 0.4085988 0.3470774 +0.3293248 0.4085988 0.3470774 +0.3470774 0.4085988 0.3470774 +0.3637862 0.4085988 0.3470774 +0.3795513 0.4085988 0.3470774 +0.3944623 0.4085988 0.3470774 +0.4085988 0.4085988 0.3470774 +0.4220313 0.4085988 0.3470774 +0.4348222 0.4085988 0.3470774 +0.4470264 0.4085988 0.3470774 +0.4586928 0.4085988 0.3470774 +0.4698649 0.4085988 0.3470774 +0.4805811 0.4085988 0.3470774 +0.490876 0.4085988 0.3470774 +0.5007803 0.4085988 0.3470774 +0.510322 0.4085988 0.3470774 +0.5195258 0.4085988 0.3470774 +0.5284142 0.4085988 0.3470774 +0.5370079 0.4085988 0.3470774 +0.5453253 0.4085988 0.3470774 +0.5533834 0.4085988 0.3470774 +0.5611974 0.4085988 0.3470774 +0.5687816 0.4085988 0.3470774 +0.092819 0.4220313 0.3470774 +0.1056428 0.4220313 0.3470774 +0.1201537 0.4220313 0.3470774 +0.1409607 0.4220313 0.3470774 +0.1678172 0.4220313 0.3470774 +0.1950164 0.4220313 0.3470774 +0.2210581 0.4220313 0.3470774 +0.245636 0.4220313 0.3470774 +0.2686816 0.4220313 0.3470774 +0.2902431 0.4220313 0.3470774 +0.3104189 0.4220313 0.3470774 +0.3293248 0.4220313 0.3470774 +0.3470774 0.4220313 0.3470774 +0.3637862 0.4220313 0.3470774 +0.3795513 0.4220313 0.3470774 +0.3944623 0.4220313 0.3470774 +0.4085988 0.4220313 0.3470774 +0.4220313 0.4220313 0.3470774 +0.4348222 0.4220313 0.3470774 +0.4470264 0.4220313 0.3470774 +0.4586928 0.4220313 0.3470774 +0.4698649 0.4220313 0.3470774 +0.4805811 0.4220313 0.3470774 +0.490876 0.4220313 0.3470774 +0.5007803 0.4220313 0.3470774 +0.510322 0.4220313 0.3470774 +0.5195258 0.4220313 0.3470774 +0.5284142 0.4220313 0.3470774 +0.5370079 0.4220313 0.3470774 +0.5453253 0.4220313 0.3470774 +0.5533834 0.4220313 0.3470774 +0.5611974 0.4220313 0.3470774 +0.5687816 0.4220313 0.3470774 +0.092819 0.4348222 0.3470774 +0.1056428 0.4348222 0.3470774 +0.1201537 0.4348222 0.3470774 +0.1409607 0.4348222 0.3470774 +0.1678172 0.4348222 0.3470774 +0.1950164 0.4348222 0.3470774 +0.2210581 0.4348222 0.3470774 +0.245636 0.4348222 0.3470774 +0.2686816 0.4348222 0.3470774 +0.2902431 0.4348222 0.3470774 +0.3104189 0.4348222 0.3470774 +0.3293248 0.4348222 0.3470774 +0.3470774 0.4348222 0.3470774 +0.3637862 0.4348222 0.3470774 +0.3795513 0.4348222 0.3470774 +0.3944623 0.4348222 0.3470774 +0.4085988 0.4348222 0.3470774 +0.4220313 0.4348222 0.3470774 +0.4348222 0.4348222 0.3470774 +0.4470264 0.4348222 0.3470774 +0.4586928 0.4348222 0.3470774 +0.4698649 0.4348222 0.3470774 +0.4805811 0.4348222 0.3470774 +0.490876 0.4348222 0.3470774 +0.5007803 0.4348222 0.3470774 +0.510322 0.4348222 0.3470774 +0.5195258 0.4348222 0.3470774 +0.5284142 0.4348222 0.3470774 +0.5370079 0.4348222 0.3470774 +0.5453253 0.4348222 0.3470774 +0.5533834 0.4348222 0.3470774 +0.5611974 0.4348222 0.3470774 +0.5687816 0.4348222 0.3470774 +0.092819 0.4470264 0.3470774 +0.1056428 0.4470264 0.3470774 +0.1201537 0.4470264 0.3470774 +0.1409607 0.4470264 0.3470774 +0.1678172 0.4470264 0.3470774 +0.1950164 0.4470264 0.3470774 +0.2210581 0.4470264 0.3470774 +0.245636 0.4470264 0.3470774 +0.2686816 0.4470264 0.3470774 +0.2902431 0.4470264 0.3470774 +0.3104189 0.4470264 0.3470774 +0.3293248 0.4470264 0.3470774 +0.3470774 0.4470264 0.3470774 +0.3637862 0.4470264 0.3470774 +0.3795513 0.4470264 0.3470774 +0.3944623 0.4470264 0.3470774 +0.4085988 0.4470264 0.3470774 +0.4220313 0.4470264 0.3470774 +0.4348222 0.4470264 0.3470774 +0.4470264 0.4470264 0.3470774 +0.4586928 0.4470264 0.3470774 +0.4698649 0.4470264 0.3470774 +0.4805811 0.4470264 0.3470774 +0.490876 0.4470264 0.3470774 +0.5007803 0.4470264 0.3470774 +0.510322 0.4470264 0.3470774 +0.5195258 0.4470264 0.3470774 +0.5284142 0.4470264 0.3470774 +0.5370079 0.4470264 0.3470774 +0.5453253 0.4470264 0.3470774 +0.5533834 0.4470264 0.3470774 +0.5611974 0.4470264 0.3470774 +0.5687816 0.4470264 0.3470774 +0.092819 0.4586928 0.3470774 +0.1056428 0.4586928 0.3470774 +0.1201537 0.4586928 0.3470774 +0.1409607 0.4586928 0.3470774 +0.1678172 0.4586928 0.3470774 +0.1950164 0.4586928 0.3470774 +0.2210581 0.4586928 0.3470774 +0.245636 0.4586928 0.3470774 +0.2686816 0.4586928 0.3470774 +0.2902431 0.4586928 0.3470774 +0.3104189 0.4586928 0.3470774 +0.3293248 0.4586928 0.3470774 +0.3470774 0.4586928 0.3470774 +0.3637862 0.4586928 0.3470774 +0.3795513 0.4586928 0.3470774 +0.3944623 0.4586928 0.3470774 +0.4085988 0.4586928 0.3470774 +0.4220313 0.4586928 0.3470774 +0.4348222 0.4586928 0.3470774 +0.4470264 0.4586928 0.3470774 +0.4586928 0.4586928 0.3470774 +0.4698649 0.4586928 0.3470774 +0.4805811 0.4586928 0.3470774 +0.490876 0.4586928 0.3470774 +0.5007803 0.4586928 0.3470774 +0.510322 0.4586928 0.3470774 +0.5195258 0.4586928 0.3470774 +0.5284142 0.4586928 0.3470774 +0.5370079 0.4586928 0.3470774 +0.5453253 0.4586928 0.3470774 +0.5533834 0.4586928 0.3470774 +0.5611974 0.4586928 0.3470774 +0.5687816 0.4586928 0.3470774 +0.092819 0.4698649 0.3470774 +0.1056428 0.4698649 0.3470774 +0.1201537 0.4698649 0.3470774 +0.1409607 0.4698649 0.3470774 +0.1678172 0.4698649 0.3470774 +0.1950164 0.4698649 0.3470774 +0.2210581 0.4698649 0.3470774 +0.245636 0.4698649 0.3470774 +0.2686816 0.4698649 0.3470774 +0.2902431 0.4698649 0.3470774 +0.3104189 0.4698649 0.3470774 +0.3293248 0.4698649 0.3470774 +0.3470774 0.4698649 0.3470774 +0.3637862 0.4698649 0.3470774 +0.3795513 0.4698649 0.3470774 +0.3944623 0.4698649 0.3470774 +0.4085988 0.4698649 0.3470774 +0.4220313 0.4698649 0.3470774 +0.4348222 0.4698649 0.3470774 +0.4470264 0.4698649 0.3470774 +0.4586928 0.4698649 0.3470774 +0.4698649 0.4698649 0.3470774 +0.4805811 0.4698649 0.3470774 +0.490876 0.4698649 0.3470774 +0.5007803 0.4698649 0.3470774 +0.510322 0.4698649 0.3470774 +0.5195258 0.4698649 0.3470774 +0.5284142 0.4698649 0.3470774 +0.5370079 0.4698649 0.3470774 +0.5453253 0.4698649 0.3470774 +0.5533834 0.4698649 0.3470774 +0.5611974 0.4698649 0.3470774 +0.5687816 0.4698649 0.3470774 +0.092819 0.4805811 0.3470774 +0.1056428 0.4805811 0.3470774 +0.1201537 0.4805811 0.3470774 +0.1409607 0.4805811 0.3470774 +0.1678172 0.4805811 0.3470774 +0.1950164 0.4805811 0.3470774 +0.2210581 0.4805811 0.3470774 +0.245636 0.4805811 0.3470774 +0.2686816 0.4805811 0.3470774 +0.2902431 0.4805811 0.3470774 +0.3104189 0.4805811 0.3470774 +0.3293248 0.4805811 0.3470774 +0.3470774 0.4805811 0.3470774 +0.3637862 0.4805811 0.3470774 +0.3795513 0.4805811 0.3470774 +0.3944623 0.4805811 0.3470774 +0.4085988 0.4805811 0.3470774 +0.4220313 0.4805811 0.3470774 +0.4348222 0.4805811 0.3470774 +0.4470264 0.4805811 0.3470774 +0.4586928 0.4805811 0.3470774 +0.4698649 0.4805811 0.3470774 +0.4805811 0.4805811 0.3470774 +0.490876 0.4805811 0.3470774 +0.5007803 0.4805811 0.3470774 +0.510322 0.4805811 0.3470774 +0.5195258 0.4805811 0.3470774 +0.5284142 0.4805811 0.3470774 +0.5370079 0.4805811 0.3470774 +0.5453253 0.4805811 0.3470774 +0.5533834 0.4805811 0.3470774 +0.5611974 0.4805811 0.3470774 +0.5687816 0.4805811 0.3470774 +0.092819 0.490876 0.3470774 +0.1056428 0.490876 0.3470774 +0.1201537 0.490876 0.3470774 +0.1409607 0.490876 0.3470774 +0.1678172 0.490876 0.3470774 +0.1950164 0.490876 0.3470774 +0.2210581 0.490876 0.3470774 +0.245636 0.490876 0.3470774 +0.2686816 0.490876 0.3470774 +0.2902431 0.490876 0.3470774 +0.3104189 0.490876 0.3470774 +0.3293248 0.490876 0.3470774 +0.3470774 0.490876 0.3470774 +0.3637862 0.490876 0.3470774 +0.3795513 0.490876 0.3470774 +0.3944623 0.490876 0.3470774 +0.4085988 0.490876 0.3470774 +0.4220313 0.490876 0.3470774 +0.4348222 0.490876 0.3470774 +0.4470264 0.490876 0.3470774 +0.4586928 0.490876 0.3470774 +0.4698649 0.490876 0.3470774 +0.4805811 0.490876 0.3470774 +0.490876 0.490876 0.3470774 +0.5007803 0.490876 0.3470774 +0.510322 0.490876 0.3470774 +0.5195258 0.490876 0.3470774 +0.5284142 0.490876 0.3470774 +0.5370079 0.490876 0.3470774 +0.5453253 0.490876 0.3470774 +0.5533834 0.490876 0.3470774 +0.5611974 0.490876 0.3470774 +0.5687816 0.490876 0.3470774 +0.092819 0.5007803 0.3470774 +0.1056428 0.5007803 0.3470774 +0.1201537 0.5007803 0.3470774 +0.1409607 0.5007803 0.3470774 +0.1678172 0.5007803 0.3470774 +0.1950164 0.5007803 0.3470774 +0.2210581 0.5007803 0.3470774 +0.245636 0.5007803 0.3470774 +0.2686816 0.5007803 0.3470774 +0.2902431 0.5007803 0.3470774 +0.3104189 0.5007803 0.3470774 +0.3293248 0.5007803 0.3470774 +0.3470774 0.5007803 0.3470774 +0.3637862 0.5007803 0.3470774 +0.3795513 0.5007803 0.3470774 +0.3944623 0.5007803 0.3470774 +0.4085988 0.5007803 0.3470774 +0.4220313 0.5007803 0.3470774 +0.4348222 0.5007803 0.3470774 +0.4470264 0.5007803 0.3470774 +0.4586928 0.5007803 0.3470774 +0.4698649 0.5007803 0.3470774 +0.4805811 0.5007803 0.3470774 +0.490876 0.5007803 0.3470774 +0.5007803 0.5007803 0.3470774 +0.510322 0.5007803 0.3470774 +0.5195258 0.5007803 0.3470774 +0.5284142 0.5007803 0.3470774 +0.5370079 0.5007803 0.3470774 +0.5453253 0.5007803 0.3470774 +0.5533834 0.5007803 0.3470774 +0.5611974 0.5007803 0.3470774 +0.5687816 0.5007803 0.3470774 +0.092819 0.510322 0.3470774 +0.1056428 0.510322 0.3470774 +0.1201537 0.510322 0.3470774 +0.1409607 0.510322 0.3470774 +0.1678172 0.510322 0.3470774 +0.1950164 0.510322 0.3470774 +0.2210581 0.510322 0.3470774 +0.245636 0.510322 0.3470774 +0.2686816 0.510322 0.3470774 +0.2902431 0.510322 0.3470774 +0.3104189 0.510322 0.3470774 +0.3293248 0.510322 0.3470774 +0.3470774 0.510322 0.3470774 +0.3637862 0.510322 0.3470774 +0.3795513 0.510322 0.3470774 +0.3944623 0.510322 0.3470774 +0.4085988 0.510322 0.3470774 +0.4220313 0.510322 0.3470774 +0.4348222 0.510322 0.3470774 +0.4470264 0.510322 0.3470774 +0.4586928 0.510322 0.3470774 +0.4698649 0.510322 0.3470774 +0.4805811 0.510322 0.3470774 +0.490876 0.510322 0.3470774 +0.5007803 0.510322 0.3470774 +0.510322 0.510322 0.3470774 +0.5195258 0.510322 0.3470774 +0.5284142 0.510322 0.3470774 +0.5370079 0.510322 0.3470774 +0.5453253 0.510322 0.3470774 +0.5533834 0.510322 0.3470774 +0.5611974 0.510322 0.3470774 +0.5687816 0.510322 0.3470774 +0.092819 0.5195258 0.3470774 +0.1056428 0.5195258 0.3470774 +0.1201537 0.5195258 0.3470774 +0.1409607 0.5195258 0.3470774 +0.1678172 0.5195258 0.3470774 +0.1950164 0.5195258 0.3470774 +0.2210581 0.5195258 0.3470774 +0.245636 0.5195258 0.3470774 +0.2686816 0.5195258 0.3470774 +0.2902431 0.5195258 0.3470774 +0.3104189 0.5195258 0.3470774 +0.3293248 0.5195258 0.3470774 +0.3470774 0.5195258 0.3470774 +0.3637862 0.5195258 0.3470774 +0.3795513 0.5195258 0.3470774 +0.3944623 0.5195258 0.3470774 +0.4085988 0.5195258 0.3470774 +0.4220313 0.5195258 0.3470774 +0.4348222 0.5195258 0.3470774 +0.4470264 0.5195258 0.3470774 +0.4586928 0.5195258 0.3470774 +0.4698649 0.5195258 0.3470774 +0.4805811 0.5195258 0.3470774 +0.490876 0.5195258 0.3470774 +0.5007803 0.5195258 0.3470774 +0.510322 0.5195258 0.3470774 +0.5195258 0.5195258 0.3470774 +0.5284142 0.5195258 0.3470774 +0.5370079 0.5195258 0.3470774 +0.5453253 0.5195258 0.3470774 +0.5533834 0.5195258 0.3470774 +0.5611974 0.5195258 0.3470774 +0.5687816 0.5195258 0.3470774 +0.092819 0.5284142 0.3470774 +0.1056428 0.5284142 0.3470774 +0.1201537 0.5284142 0.3470774 +0.1409607 0.5284142 0.3470774 +0.1678172 0.5284142 0.3470774 +0.1950164 0.5284142 0.3470774 +0.2210581 0.5284142 0.3470774 +0.245636 0.5284142 0.3470774 +0.2686816 0.5284142 0.3470774 +0.2902431 0.5284142 0.3470774 +0.3104189 0.5284142 0.3470774 +0.3293248 0.5284142 0.3470774 +0.3470774 0.5284142 0.3470774 +0.3637862 0.5284142 0.3470774 +0.3795513 0.5284142 0.3470774 +0.3944623 0.5284142 0.3470774 +0.4085988 0.5284142 0.3470774 +0.4220313 0.5284142 0.3470774 +0.4348222 0.5284142 0.3470774 +0.4470264 0.5284142 0.3470774 +0.4586928 0.5284142 0.3470774 +0.4698649 0.5284142 0.3470774 +0.4805811 0.5284142 0.3470774 +0.490876 0.5284142 0.3470774 +0.5007803 0.5284142 0.3470774 +0.510322 0.5284142 0.3470774 +0.5195258 0.5284142 0.3470774 +0.5284142 0.5284142 0.3470774 +0.5370079 0.5284142 0.3470774 +0.5453253 0.5284142 0.3470774 +0.5533834 0.5284142 0.3470774 +0.5611974 0.5284142 0.3470774 +0.5687816 0.5284142 0.3470774 +0.092819 0.5370079 0.3470774 +0.1056428 0.5370079 0.3470774 +0.1201537 0.5370079 0.3470774 +0.1409607 0.5370079 0.3470774 +0.1678172 0.5370079 0.3470774 +0.1950164 0.5370079 0.3470774 +0.2210581 0.5370079 0.3470774 +0.245636 0.5370079 0.3470774 +0.2686816 0.5370079 0.3470774 +0.2902431 0.5370079 0.3470774 +0.3104189 0.5370079 0.3470774 +0.3293248 0.5370079 0.3470774 +0.3470774 0.5370079 0.3470774 +0.3637862 0.5370079 0.3470774 +0.3795513 0.5370079 0.3470774 +0.3944623 0.5370079 0.3470774 +0.4085988 0.5370079 0.3470774 +0.4220313 0.5370079 0.3470774 +0.4348222 0.5370079 0.3470774 +0.4470264 0.5370079 0.3470774 +0.4586928 0.5370079 0.3470774 +0.4698649 0.5370079 0.3470774 +0.4805811 0.5370079 0.3470774 +0.490876 0.5370079 0.3470774 +0.5007803 0.5370079 0.3470774 +0.510322 0.5370079 0.3470774 +0.5195258 0.5370079 0.3470774 +0.5284142 0.5370079 0.3470774 +0.5370079 0.5370079 0.3470774 +0.5453253 0.5370079 0.3470774 +0.5533834 0.5370079 0.3470774 +0.5611974 0.5370079 0.3470774 +0.5687816 0.5370079 0.3470774 +0.092819 0.5453253 0.3470774 +0.1056428 0.5453253 0.3470774 +0.1201537 0.5453253 0.3470774 +0.1409607 0.5453253 0.3470774 +0.1678172 0.5453253 0.3470774 +0.1950164 0.5453253 0.3470774 +0.2210581 0.5453253 0.3470774 +0.245636 0.5453253 0.3470774 +0.2686816 0.5453253 0.3470774 +0.2902431 0.5453253 0.3470774 +0.3104189 0.5453253 0.3470774 +0.3293248 0.5453253 0.3470774 +0.3470774 0.5453253 0.3470774 +0.3637862 0.5453253 0.3470774 +0.3795513 0.5453253 0.3470774 +0.3944623 0.5453253 0.3470774 +0.4085988 0.5453253 0.3470774 +0.4220313 0.5453253 0.3470774 +0.4348222 0.5453253 0.3470774 +0.4470264 0.5453253 0.3470774 +0.4586928 0.5453253 0.3470774 +0.4698649 0.5453253 0.3470774 +0.4805811 0.5453253 0.3470774 +0.490876 0.5453253 0.3470774 +0.5007803 0.5453253 0.3470774 +0.510322 0.5453253 0.3470774 +0.5195258 0.5453253 0.3470774 +0.5284142 0.5453253 0.3470774 +0.5370079 0.5453253 0.3470774 +0.5453253 0.5453253 0.3470774 +0.5533834 0.5453253 0.3470774 +0.5611974 0.5453253 0.3470774 +0.5687816 0.5453253 0.3470774 +0.092819 0.5533834 0.3470774 +0.1056428 0.5533834 0.3470774 +0.1201537 0.5533834 0.3470774 +0.1409607 0.5533834 0.3470774 +0.1678172 0.5533834 0.3470774 +0.1950164 0.5533834 0.3470774 +0.2210581 0.5533834 0.3470774 +0.245636 0.5533834 0.3470774 +0.2686816 0.5533834 0.3470774 +0.2902431 0.5533834 0.3470774 +0.3104189 0.5533834 0.3470774 +0.3293248 0.5533834 0.3470774 +0.3470774 0.5533834 0.3470774 +0.3637862 0.5533834 0.3470774 +0.3795513 0.5533834 0.3470774 +0.3944623 0.5533834 0.3470774 +0.4085988 0.5533834 0.3470774 +0.4220313 0.5533834 0.3470774 +0.4348222 0.5533834 0.3470774 +0.4470264 0.5533834 0.3470774 +0.4586928 0.5533834 0.3470774 +0.4698649 0.5533834 0.3470774 +0.4805811 0.5533834 0.3470774 +0.490876 0.5533834 0.3470774 +0.5007803 0.5533834 0.3470774 +0.510322 0.5533834 0.3470774 +0.5195258 0.5533834 0.3470774 +0.5284142 0.5533834 0.3470774 +0.5370079 0.5533834 0.3470774 +0.5453253 0.5533834 0.3470774 +0.5533834 0.5533834 0.3470774 +0.5611974 0.5533834 0.3470774 +0.5687816 0.5533834 0.3470774 +0.092819 0.5611974 0.3470774 +0.1056428 0.5611974 0.3470774 +0.1201537 0.5611974 0.3470774 +0.1409607 0.5611974 0.3470774 +0.1678172 0.5611974 0.3470774 +0.1950164 0.5611974 0.3470774 +0.2210581 0.5611974 0.3470774 +0.245636 0.5611974 0.3470774 +0.2686816 0.5611974 0.3470774 +0.2902431 0.5611974 0.3470774 +0.3104189 0.5611974 0.3470774 +0.3293248 0.5611974 0.3470774 +0.3470774 0.5611974 0.3470774 +0.3637862 0.5611974 0.3470774 +0.3795513 0.5611974 0.3470774 +0.3944623 0.5611974 0.3470774 +0.4085988 0.5611974 0.3470774 +0.4220313 0.5611974 0.3470774 +0.4348222 0.5611974 0.3470774 +0.4470264 0.5611974 0.3470774 +0.4586928 0.5611974 0.3470774 +0.4698649 0.5611974 0.3470774 +0.4805811 0.5611974 0.3470774 +0.490876 0.5611974 0.3470774 +0.5007803 0.5611974 0.3470774 +0.510322 0.5611974 0.3470774 +0.5195258 0.5611974 0.3470774 +0.5284142 0.5611974 0.3470774 +0.5370079 0.5611974 0.3470774 +0.5453253 0.5611974 0.3470774 +0.5533834 0.5611974 0.3470774 +0.5611974 0.5611974 0.3470774 +0.5687816 0.5611974 0.3470774 +0.092819 0.5687816 0.3470774 +0.1056428 0.5687816 0.3470774 +0.1201537 0.5687816 0.3470774 +0.1409607 0.5687816 0.3470774 +0.1678172 0.5687816 0.3470774 +0.1950164 0.5687816 0.3470774 +0.2210581 0.5687816 0.3470774 +0.245636 0.5687816 0.3470774 +0.2686816 0.5687816 0.3470774 +0.2902431 0.5687816 0.3470774 +0.3104189 0.5687816 0.3470774 +0.3293248 0.5687816 0.3470774 +0.3470774 0.5687816 0.3470774 +0.3637862 0.5687816 0.3470774 +0.3795513 0.5687816 0.3470774 +0.3944623 0.5687816 0.3470774 +0.4085988 0.5687816 0.3470774 +0.4220313 0.5687816 0.3470774 +0.4348222 0.5687816 0.3470774 +0.4470264 0.5687816 0.3470774 +0.4586928 0.5687816 0.3470774 +0.4698649 0.5687816 0.3470774 +0.4805811 0.5687816 0.3470774 +0.490876 0.5687816 0.3470774 +0.5007803 0.5687816 0.3470774 +0.510322 0.5687816 0.3470774 +0.5195258 0.5687816 0.3470774 +0.5284142 0.5687816 0.3470774 +0.5370079 0.5687816 0.3470774 +0.5453253 0.5687816 0.3470774 +0.5533834 0.5687816 0.3470774 +0.5611974 0.5687816 0.3470774 +0.5687816 0.5687816 0.3470774 +0.092819 0.092819 0.3637862 +0.1056428 0.092819 0.3637862 +0.1201537 0.092819 0.3637862 +0.1409607 0.092819 0.3637862 +0.1678172 0.092819 0.3637862 +0.1950164 0.092819 0.3637862 +0.2210581 0.092819 0.3637862 +0.245636 0.092819 0.3637862 +0.2686816 0.092819 0.3637862 +0.2902431 0.092819 0.3637862 +0.3104189 0.092819 0.3637862 +0.3293248 0.092819 0.3637862 +0.3470774 0.092819 0.3637862 +0.3637862 0.092819 0.3637862 +0.3795513 0.092819 0.3637862 +0.3944623 0.092819 0.3637862 +0.4085988 0.092819 0.3637862 +0.4220313 0.092819 0.3637862 +0.4348222 0.092819 0.3637862 +0.4470264 0.092819 0.3637862 +0.4586928 0.092819 0.3637862 +0.4698649 0.092819 0.3637862 +0.4805811 0.092819 0.3637862 +0.490876 0.092819 0.3637862 +0.5007803 0.092819 0.3637862 +0.510322 0.092819 0.3637862 +0.5195258 0.092819 0.3637862 +0.5284142 0.092819 0.3637862 +0.5370079 0.092819 0.3637862 +0.5453253 0.092819 0.3637862 +0.5533834 0.092819 0.3637862 +0.5611974 0.092819 0.3637862 +0.5687816 0.092819 0.3637862 +0.092819 0.1056428 0.3637862 +0.1056428 0.1056428 0.3637862 +0.1201537 0.1056428 0.3637862 +0.1409607 0.1056428 0.3637862 +0.1678172 0.1056428 0.3637862 +0.1950164 0.1056428 0.3637862 +0.2210581 0.1056428 0.3637862 +0.245636 0.1056428 0.3637862 +0.2686816 0.1056428 0.3637862 +0.2902431 0.1056428 0.3637862 +0.3104189 0.1056428 0.3637862 +0.3293248 0.1056428 0.3637862 +0.3470774 0.1056428 0.3637862 +0.3637862 0.1056428 0.3637862 +0.3795513 0.1056428 0.3637862 +0.3944623 0.1056428 0.3637862 +0.4085988 0.1056428 0.3637862 +0.4220313 0.1056428 0.3637862 +0.4348222 0.1056428 0.3637862 +0.4470264 0.1056428 0.3637862 +0.4586928 0.1056428 0.3637862 +0.4698649 0.1056428 0.3637862 +0.4805811 0.1056428 0.3637862 +0.490876 0.1056428 0.3637862 +0.5007803 0.1056428 0.3637862 +0.510322 0.1056428 0.3637862 +0.5195258 0.1056428 0.3637862 +0.5284142 0.1056428 0.3637862 +0.5370079 0.1056428 0.3637862 +0.5453253 0.1056428 0.3637862 +0.5533834 0.1056428 0.3637862 +0.5611974 0.1056428 0.3637862 +0.5687816 0.1056428 0.3637862 +0.092819 0.1201537 0.3637862 +0.1056428 0.1201537 0.3637862 +0.1201537 0.1201537 0.3637862 +0.1409607 0.1201537 0.3637862 +0.1678172 0.1201537 0.3637862 +0.1950164 0.1201537 0.3637862 +0.2210581 0.1201537 0.3637862 +0.245636 0.1201537 0.3637862 +0.2686816 0.1201537 0.3637862 +0.2902431 0.1201537 0.3637862 +0.3104189 0.1201537 0.3637862 +0.3293248 0.1201537 0.3637862 +0.3470774 0.1201537 0.3637862 +0.3637862 0.1201537 0.3637862 +0.3795513 0.1201537 0.3637862 +0.3944623 0.1201537 0.3637862 +0.4085988 0.1201537 0.3637862 +0.4220313 0.1201537 0.3637862 +0.4348222 0.1201537 0.3637862 +0.4470264 0.1201537 0.3637862 +0.4586928 0.1201537 0.3637862 +0.4698649 0.1201537 0.3637862 +0.4805811 0.1201537 0.3637862 +0.490876 0.1201537 0.3637862 +0.5007803 0.1201537 0.3637862 +0.510322 0.1201537 0.3637862 +0.5195258 0.1201537 0.3637862 +0.5284142 0.1201537 0.3637862 +0.5370079 0.1201537 0.3637862 +0.5453253 0.1201537 0.3637862 +0.5533834 0.1201537 0.3637862 +0.5611974 0.1201537 0.3637862 +0.5687816 0.1201537 0.3637862 +0.092819 0.1409607 0.3637862 +0.1056428 0.1409607 0.3637862 +0.1201537 0.1409607 0.3637862 +0.1409607 0.1409607 0.3637862 +0.1678172 0.1409607 0.3637862 +0.1950164 0.1409607 0.3637862 +0.2210581 0.1409607 0.3637862 +0.245636 0.1409607 0.3637862 +0.2686816 0.1409607 0.3637862 +0.2902431 0.1409607 0.3637862 +0.3104189 0.1409607 0.3637862 +0.3293248 0.1409607 0.3637862 +0.3470774 0.1409607 0.3637862 +0.3637862 0.1409607 0.3637862 +0.3795513 0.1409607 0.3637862 +0.3944623 0.1409607 0.3637862 +0.4085988 0.1409607 0.3637862 +0.4220313 0.1409607 0.3637862 +0.4348222 0.1409607 0.3637862 +0.4470264 0.1409607 0.3637862 +0.4586928 0.1409607 0.3637862 +0.4698649 0.1409607 0.3637862 +0.4805811 0.1409607 0.3637862 +0.490876 0.1409607 0.3637862 +0.5007803 0.1409607 0.3637862 +0.510322 0.1409607 0.3637862 +0.5195258 0.1409607 0.3637862 +0.5284142 0.1409607 0.3637862 +0.5370079 0.1409607 0.3637862 +0.5453253 0.1409607 0.3637862 +0.5533834 0.1409607 0.3637862 +0.5611974 0.1409607 0.3637862 +0.5687816 0.1409607 0.3637862 +0.092819 0.1678172 0.3637862 +0.1056428 0.1678172 0.3637862 +0.1201537 0.1678172 0.3637862 +0.1409607 0.1678172 0.3637862 +0.1678172 0.1678172 0.3637862 +0.1950164 0.1678172 0.3637862 +0.2210581 0.1678172 0.3637862 +0.245636 0.1678172 0.3637862 +0.2686816 0.1678172 0.3637862 +0.2902431 0.1678172 0.3637862 +0.3104189 0.1678172 0.3637862 +0.3293248 0.1678172 0.3637862 +0.3470774 0.1678172 0.3637862 +0.3637862 0.1678172 0.3637862 +0.3795513 0.1678172 0.3637862 +0.3944623 0.1678172 0.3637862 +0.4085988 0.1678172 0.3637862 +0.4220313 0.1678172 0.3637862 +0.4348222 0.1678172 0.3637862 +0.4470264 0.1678172 0.3637862 +0.4586928 0.1678172 0.3637862 +0.4698649 0.1678172 0.3637862 +0.4805811 0.1678172 0.3637862 +0.490876 0.1678172 0.3637862 +0.5007803 0.1678172 0.3637862 +0.510322 0.1678172 0.3637862 +0.5195258 0.1678172 0.3637862 +0.5284142 0.1678172 0.3637862 +0.5370079 0.1678172 0.3637862 +0.5453253 0.1678172 0.3637862 +0.5533834 0.1678172 0.3637862 +0.5611974 0.1678172 0.3637862 +0.5687816 0.1678172 0.3637862 +0.092819 0.1950164 0.3637862 +0.1056428 0.1950164 0.3637862 +0.1201537 0.1950164 0.3637862 +0.1409607 0.1950164 0.3637862 +0.1678172 0.1950164 0.3637862 +0.1950164 0.1950164 0.3637862 +0.2210581 0.1950164 0.3637862 +0.245636 0.1950164 0.3637862 +0.2686816 0.1950164 0.3637862 +0.2902431 0.1950164 0.3637862 +0.3104189 0.1950164 0.3637862 +0.3293248 0.1950164 0.3637862 +0.3470774 0.1950164 0.3637862 +0.3637862 0.1950164 0.3637862 +0.3795513 0.1950164 0.3637862 +0.3944623 0.1950164 0.3637862 +0.4085988 0.1950164 0.3637862 +0.4220313 0.1950164 0.3637862 +0.4348222 0.1950164 0.3637862 +0.4470264 0.1950164 0.3637862 +0.4586928 0.1950164 0.3637862 +0.4698649 0.1950164 0.3637862 +0.4805811 0.1950164 0.3637862 +0.490876 0.1950164 0.3637862 +0.5007803 0.1950164 0.3637862 +0.510322 0.1950164 0.3637862 +0.5195258 0.1950164 0.3637862 +0.5284142 0.1950164 0.3637862 +0.5370079 0.1950164 0.3637862 +0.5453253 0.1950164 0.3637862 +0.5533834 0.1950164 0.3637862 +0.5611974 0.1950164 0.3637862 +0.5687816 0.1950164 0.3637862 +0.092819 0.2210581 0.3637862 +0.1056428 0.2210581 0.3637862 +0.1201537 0.2210581 0.3637862 +0.1409607 0.2210581 0.3637862 +0.1678172 0.2210581 0.3637862 +0.1950164 0.2210581 0.3637862 +0.2210581 0.2210581 0.3637862 +0.245636 0.2210581 0.3637862 +0.2686816 0.2210581 0.3637862 +0.2902431 0.2210581 0.3637862 +0.3104189 0.2210581 0.3637862 +0.3293248 0.2210581 0.3637862 +0.3470774 0.2210581 0.3637862 +0.3637862 0.2210581 0.3637862 +0.3795513 0.2210581 0.3637862 +0.3944623 0.2210581 0.3637862 +0.4085988 0.2210581 0.3637862 +0.4220313 0.2210581 0.3637862 +0.4348222 0.2210581 0.3637862 +0.4470264 0.2210581 0.3637862 +0.4586928 0.2210581 0.3637862 +0.4698649 0.2210581 0.3637862 +0.4805811 0.2210581 0.3637862 +0.490876 0.2210581 0.3637862 +0.5007803 0.2210581 0.3637862 +0.510322 0.2210581 0.3637862 +0.5195258 0.2210581 0.3637862 +0.5284142 0.2210581 0.3637862 +0.5370079 0.2210581 0.3637862 +0.5453253 0.2210581 0.3637862 +0.5533834 0.2210581 0.3637862 +0.5611974 0.2210581 0.3637862 +0.5687816 0.2210581 0.3637862 +0.092819 0.245636 0.3637862 +0.1056428 0.245636 0.3637862 +0.1201537 0.245636 0.3637862 +0.1409607 0.245636 0.3637862 +0.1678172 0.245636 0.3637862 +0.1950164 0.245636 0.3637862 +0.2210581 0.245636 0.3637862 +0.245636 0.245636 0.3637862 +0.2686816 0.245636 0.3637862 +0.2902431 0.245636 0.3637862 +0.3104189 0.245636 0.3637862 +0.3293248 0.245636 0.3637862 +0.3470774 0.245636 0.3637862 +0.3637862 0.245636 0.3637862 +0.3795513 0.245636 0.3637862 +0.3944623 0.245636 0.3637862 +0.4085988 0.245636 0.3637862 +0.4220313 0.245636 0.3637862 +0.4348222 0.245636 0.3637862 +0.4470264 0.245636 0.3637862 +0.4586928 0.245636 0.3637862 +0.4698649 0.245636 0.3637862 +0.4805811 0.245636 0.3637862 +0.490876 0.245636 0.3637862 +0.5007803 0.245636 0.3637862 +0.510322 0.245636 0.3637862 +0.5195258 0.245636 0.3637862 +0.5284142 0.245636 0.3637862 +0.5370079 0.245636 0.3637862 +0.5453253 0.245636 0.3637862 +0.5533834 0.245636 0.3637862 +0.5611974 0.245636 0.3637862 +0.5687816 0.245636 0.3637862 +0.092819 0.2686816 0.3637862 +0.1056428 0.2686816 0.3637862 +0.1201537 0.2686816 0.3637862 +0.1409607 0.2686816 0.3637862 +0.1678172 0.2686816 0.3637862 +0.1950164 0.2686816 0.3637862 +0.2210581 0.2686816 0.3637862 +0.245636 0.2686816 0.3637862 +0.2686816 0.2686816 0.3637862 +0.2902431 0.2686816 0.3637862 +0.3104189 0.2686816 0.3637862 +0.3293248 0.2686816 0.3637862 +0.3470774 0.2686816 0.3637862 +0.3637862 0.2686816 0.3637862 +0.3795513 0.2686816 0.3637862 +0.3944623 0.2686816 0.3637862 +0.4085988 0.2686816 0.3637862 +0.4220313 0.2686816 0.3637862 +0.4348222 0.2686816 0.3637862 +0.4470264 0.2686816 0.3637862 +0.4586928 0.2686816 0.3637862 +0.4698649 0.2686816 0.3637862 +0.4805811 0.2686816 0.3637862 +0.490876 0.2686816 0.3637862 +0.5007803 0.2686816 0.3637862 +0.510322 0.2686816 0.3637862 +0.5195258 0.2686816 0.3637862 +0.5284142 0.2686816 0.3637862 +0.5370079 0.2686816 0.3637862 +0.5453253 0.2686816 0.3637862 +0.5533834 0.2686816 0.3637862 +0.5611974 0.2686816 0.3637862 +0.5687816 0.2686816 0.3637862 +0.092819 0.2902431 0.3637862 +0.1056428 0.2902431 0.3637862 +0.1201537 0.2902431 0.3637862 +0.1409607 0.2902431 0.3637862 +0.1678172 0.2902431 0.3637862 +0.1950164 0.2902431 0.3637862 +0.2210581 0.2902431 0.3637862 +0.245636 0.2902431 0.3637862 +0.2686816 0.2902431 0.3637862 +0.2902431 0.2902431 0.3637862 +0.3104189 0.2902431 0.3637862 +0.3293248 0.2902431 0.3637862 +0.3470774 0.2902431 0.3637862 +0.3637862 0.2902431 0.3637862 +0.3795513 0.2902431 0.3637862 +0.3944623 0.2902431 0.3637862 +0.4085988 0.2902431 0.3637862 +0.4220313 0.2902431 0.3637862 +0.4348222 0.2902431 0.3637862 +0.4470264 0.2902431 0.3637862 +0.4586928 0.2902431 0.3637862 +0.4698649 0.2902431 0.3637862 +0.4805811 0.2902431 0.3637862 +0.490876 0.2902431 0.3637862 +0.5007803 0.2902431 0.3637862 +0.510322 0.2902431 0.3637862 +0.5195258 0.2902431 0.3637862 +0.5284142 0.2902431 0.3637862 +0.5370079 0.2902431 0.3637862 +0.5453253 0.2902431 0.3637862 +0.5533834 0.2902431 0.3637862 +0.5611974 0.2902431 0.3637862 +0.5687816 0.2902431 0.3637862 +0.092819 0.3104189 0.3637862 +0.1056428 0.3104189 0.3637862 +0.1201537 0.3104189 0.3637862 +0.1409607 0.3104189 0.3637862 +0.1678172 0.3104189 0.3637862 +0.1950164 0.3104189 0.3637862 +0.2210581 0.3104189 0.3637862 +0.245636 0.3104189 0.3637862 +0.2686816 0.3104189 0.3637862 +0.2902431 0.3104189 0.3637862 +0.3104189 0.3104189 0.3637862 +0.3293248 0.3104189 0.3637862 +0.3470774 0.3104189 0.3637862 +0.3637862 0.3104189 0.3637862 +0.3795513 0.3104189 0.3637862 +0.3944623 0.3104189 0.3637862 +0.4085988 0.3104189 0.3637862 +0.4220313 0.3104189 0.3637862 +0.4348222 0.3104189 0.3637862 +0.4470264 0.3104189 0.3637862 +0.4586928 0.3104189 0.3637862 +0.4698649 0.3104189 0.3637862 +0.4805811 0.3104189 0.3637862 +0.490876 0.3104189 0.3637862 +0.5007803 0.3104189 0.3637862 +0.510322 0.3104189 0.3637862 +0.5195258 0.3104189 0.3637862 +0.5284142 0.3104189 0.3637862 +0.5370079 0.3104189 0.3637862 +0.5453253 0.3104189 0.3637862 +0.5533834 0.3104189 0.3637862 +0.5611974 0.3104189 0.3637862 +0.5687816 0.3104189 0.3637862 +0.092819 0.3293248 0.3637862 +0.1056428 0.3293248 0.3637862 +0.1201537 0.3293248 0.3637862 +0.1409607 0.3293248 0.3637862 +0.1678172 0.3293248 0.3637862 +0.1950164 0.3293248 0.3637862 +0.2210581 0.3293248 0.3637862 +0.245636 0.3293248 0.3637862 +0.2686816 0.3293248 0.3637862 +0.2902431 0.3293248 0.3637862 +0.3104189 0.3293248 0.3637862 +0.3293248 0.3293248 0.3637862 +0.3470774 0.3293248 0.3637862 +0.3637862 0.3293248 0.3637862 +0.3795513 0.3293248 0.3637862 +0.3944623 0.3293248 0.3637862 +0.4085988 0.3293248 0.3637862 +0.4220313 0.3293248 0.3637862 +0.4348222 0.3293248 0.3637862 +0.4470264 0.3293248 0.3637862 +0.4586928 0.3293248 0.3637862 +0.4698649 0.3293248 0.3637862 +0.4805811 0.3293248 0.3637862 +0.490876 0.3293248 0.3637862 +0.5007803 0.3293248 0.3637862 +0.510322 0.3293248 0.3637862 +0.5195258 0.3293248 0.3637862 +0.5284142 0.3293248 0.3637862 +0.5370079 0.3293248 0.3637862 +0.5453253 0.3293248 0.3637862 +0.5533834 0.3293248 0.3637862 +0.5611974 0.3293248 0.3637862 +0.5687816 0.3293248 0.3637862 +0.092819 0.3470774 0.3637862 +0.1056428 0.3470774 0.3637862 +0.1201537 0.3470774 0.3637862 +0.1409607 0.3470774 0.3637862 +0.1678172 0.3470774 0.3637862 +0.1950164 0.3470774 0.3637862 +0.2210581 0.3470774 0.3637862 +0.245636 0.3470774 0.3637862 +0.2686816 0.3470774 0.3637862 +0.2902431 0.3470774 0.3637862 +0.3104189 0.3470774 0.3637862 +0.3293248 0.3470774 0.3637862 +0.3470774 0.3470774 0.3637862 +0.3637862 0.3470774 0.3637862 +0.3795513 0.3470774 0.3637862 +0.3944623 0.3470774 0.3637862 +0.4085988 0.3470774 0.3637862 +0.4220313 0.3470774 0.3637862 +0.4348222 0.3470774 0.3637862 +0.4470264 0.3470774 0.3637862 +0.4586928 0.3470774 0.3637862 +0.4698649 0.3470774 0.3637862 +0.4805811 0.3470774 0.3637862 +0.490876 0.3470774 0.3637862 +0.5007803 0.3470774 0.3637862 +0.510322 0.3470774 0.3637862 +0.5195258 0.3470774 0.3637862 +0.5284142 0.3470774 0.3637862 +0.5370079 0.3470774 0.3637862 +0.5453253 0.3470774 0.3637862 +0.5533834 0.3470774 0.3637862 +0.5611974 0.3470774 0.3637862 +0.5687816 0.3470774 0.3637862 +0.092819 0.3637862 0.3637862 +0.1056428 0.3637862 0.3637862 +0.1201537 0.3637862 0.3637862 +0.1409607 0.3637862 0.3637862 +0.1678172 0.3637862 0.3637862 +0.1950164 0.3637862 0.3637862 +0.2210581 0.3637862 0.3637862 +0.245636 0.3637862 0.3637862 +0.2686816 0.3637862 0.3637862 +0.2902431 0.3637862 0.3637862 +0.3104189 0.3637862 0.3637862 +0.3293248 0.3637862 0.3637862 +0.3470774 0.3637862 0.3637862 +0.3637862 0.3637862 0.3637862 +0.3795513 0.3637862 0.3637862 +0.3944623 0.3637862 0.3637862 +0.4085988 0.3637862 0.3637862 +0.4220313 0.3637862 0.3637862 +0.4348222 0.3637862 0.3637862 +0.4470264 0.3637862 0.3637862 +0.4586928 0.3637862 0.3637862 +0.4698649 0.3637862 0.3637862 +0.4805811 0.3637862 0.3637862 +0.490876 0.3637862 0.3637862 +0.5007803 0.3637862 0.3637862 +0.510322 0.3637862 0.3637862 +0.5195258 0.3637862 0.3637862 +0.5284142 0.3637862 0.3637862 +0.5370079 0.3637862 0.3637862 +0.5453253 0.3637862 0.3637862 +0.5533834 0.3637862 0.3637862 +0.5611974 0.3637862 0.3637862 +0.5687816 0.3637862 0.3637862 +0.092819 0.3795513 0.3637862 +0.1056428 0.3795513 0.3637862 +0.1201537 0.3795513 0.3637862 +0.1409607 0.3795513 0.3637862 +0.1678172 0.3795513 0.3637862 +0.1950164 0.3795513 0.3637862 +0.2210581 0.3795513 0.3637862 +0.245636 0.3795513 0.3637862 +0.2686816 0.3795513 0.3637862 +0.2902431 0.3795513 0.3637862 +0.3104189 0.3795513 0.3637862 +0.3293248 0.3795513 0.3637862 +0.3470774 0.3795513 0.3637862 +0.3637862 0.3795513 0.3637862 +0.3795513 0.3795513 0.3637862 +0.3944623 0.3795513 0.3637862 +0.4085988 0.3795513 0.3637862 +0.4220313 0.3795513 0.3637862 +0.4348222 0.3795513 0.3637862 +0.4470264 0.3795513 0.3637862 +0.4586928 0.3795513 0.3637862 +0.4698649 0.3795513 0.3637862 +0.4805811 0.3795513 0.3637862 +0.490876 0.3795513 0.3637862 +0.5007803 0.3795513 0.3637862 +0.510322 0.3795513 0.3637862 +0.5195258 0.3795513 0.3637862 +0.5284142 0.3795513 0.3637862 +0.5370079 0.3795513 0.3637862 +0.5453253 0.3795513 0.3637862 +0.5533834 0.3795513 0.3637862 +0.5611974 0.3795513 0.3637862 +0.5687816 0.3795513 0.3637862 +0.092819 0.3944623 0.3637862 +0.1056428 0.3944623 0.3637862 +0.1201537 0.3944623 0.3637862 +0.1409607 0.3944623 0.3637862 +0.1678172 0.3944623 0.3637862 +0.1950164 0.3944623 0.3637862 +0.2210581 0.3944623 0.3637862 +0.245636 0.3944623 0.3637862 +0.2686816 0.3944623 0.3637862 +0.2902431 0.3944623 0.3637862 +0.3104189 0.3944623 0.3637862 +0.3293248 0.3944623 0.3637862 +0.3470774 0.3944623 0.3637862 +0.3637862 0.3944623 0.3637862 +0.3795513 0.3944623 0.3637862 +0.3944623 0.3944623 0.3637862 +0.4085988 0.3944623 0.3637862 +0.4220313 0.3944623 0.3637862 +0.4348222 0.3944623 0.3637862 +0.4470264 0.3944623 0.3637862 +0.4586928 0.3944623 0.3637862 +0.4698649 0.3944623 0.3637862 +0.4805811 0.3944623 0.3637862 +0.490876 0.3944623 0.3637862 +0.5007803 0.3944623 0.3637862 +0.510322 0.3944623 0.3637862 +0.5195258 0.3944623 0.3637862 +0.5284142 0.3944623 0.3637862 +0.5370079 0.3944623 0.3637862 +0.5453253 0.3944623 0.3637862 +0.5533834 0.3944623 0.3637862 +0.5611974 0.3944623 0.3637862 +0.5687816 0.3944623 0.3637862 +0.092819 0.4085988 0.3637862 +0.1056428 0.4085988 0.3637862 +0.1201537 0.4085988 0.3637862 +0.1409607 0.4085988 0.3637862 +0.1678172 0.4085988 0.3637862 +0.1950164 0.4085988 0.3637862 +0.2210581 0.4085988 0.3637862 +0.245636 0.4085988 0.3637862 +0.2686816 0.4085988 0.3637862 +0.2902431 0.4085988 0.3637862 +0.3104189 0.4085988 0.3637862 +0.3293248 0.4085988 0.3637862 +0.3470774 0.4085988 0.3637862 +0.3637862 0.4085988 0.3637862 +0.3795513 0.4085988 0.3637862 +0.3944623 0.4085988 0.3637862 +0.4085988 0.4085988 0.3637862 +0.4220313 0.4085988 0.3637862 +0.4348222 0.4085988 0.3637862 +0.4470264 0.4085988 0.3637862 +0.4586928 0.4085988 0.3637862 +0.4698649 0.4085988 0.3637862 +0.4805811 0.4085988 0.3637862 +0.490876 0.4085988 0.3637862 +0.5007803 0.4085988 0.3637862 +0.510322 0.4085988 0.3637862 +0.5195258 0.4085988 0.3637862 +0.5284142 0.4085988 0.3637862 +0.5370079 0.4085988 0.3637862 +0.5453253 0.4085988 0.3637862 +0.5533834 0.4085988 0.3637862 +0.5611974 0.4085988 0.3637862 +0.5687816 0.4085988 0.3637862 +0.092819 0.4220313 0.3637862 +0.1056428 0.4220313 0.3637862 +0.1201537 0.4220313 0.3637862 +0.1409607 0.4220313 0.3637862 +0.1678172 0.4220313 0.3637862 +0.1950164 0.4220313 0.3637862 +0.2210581 0.4220313 0.3637862 +0.245636 0.4220313 0.3637862 +0.2686816 0.4220313 0.3637862 +0.2902431 0.4220313 0.3637862 +0.3104189 0.4220313 0.3637862 +0.3293248 0.4220313 0.3637862 +0.3470774 0.4220313 0.3637862 +0.3637862 0.4220313 0.3637862 +0.3795513 0.4220313 0.3637862 +0.3944623 0.4220313 0.3637862 +0.4085988 0.4220313 0.3637862 +0.4220313 0.4220313 0.3637862 +0.4348222 0.4220313 0.3637862 +0.4470264 0.4220313 0.3637862 +0.4586928 0.4220313 0.3637862 +0.4698649 0.4220313 0.3637862 +0.4805811 0.4220313 0.3637862 +0.490876 0.4220313 0.3637862 +0.5007803 0.4220313 0.3637862 +0.510322 0.4220313 0.3637862 +0.5195258 0.4220313 0.3637862 +0.5284142 0.4220313 0.3637862 +0.5370079 0.4220313 0.3637862 +0.5453253 0.4220313 0.3637862 +0.5533834 0.4220313 0.3637862 +0.5611974 0.4220313 0.3637862 +0.5687816 0.4220313 0.3637862 +0.092819 0.4348222 0.3637862 +0.1056428 0.4348222 0.3637862 +0.1201537 0.4348222 0.3637862 +0.1409607 0.4348222 0.3637862 +0.1678172 0.4348222 0.3637862 +0.1950164 0.4348222 0.3637862 +0.2210581 0.4348222 0.3637862 +0.245636 0.4348222 0.3637862 +0.2686816 0.4348222 0.3637862 +0.2902431 0.4348222 0.3637862 +0.3104189 0.4348222 0.3637862 +0.3293248 0.4348222 0.3637862 +0.3470774 0.4348222 0.3637862 +0.3637862 0.4348222 0.3637862 +0.3795513 0.4348222 0.3637862 +0.3944623 0.4348222 0.3637862 +0.4085988 0.4348222 0.3637862 +0.4220313 0.4348222 0.3637862 +0.4348222 0.4348222 0.3637862 +0.4470264 0.4348222 0.3637862 +0.4586928 0.4348222 0.3637862 +0.4698649 0.4348222 0.3637862 +0.4805811 0.4348222 0.3637862 +0.490876 0.4348222 0.3637862 +0.5007803 0.4348222 0.3637862 +0.510322 0.4348222 0.3637862 +0.5195258 0.4348222 0.3637862 +0.5284142 0.4348222 0.3637862 +0.5370079 0.4348222 0.3637862 +0.5453253 0.4348222 0.3637862 +0.5533834 0.4348222 0.3637862 +0.5611974 0.4348222 0.3637862 +0.5687816 0.4348222 0.3637862 +0.092819 0.4470264 0.3637862 +0.1056428 0.4470264 0.3637862 +0.1201537 0.4470264 0.3637862 +0.1409607 0.4470264 0.3637862 +0.1678172 0.4470264 0.3637862 +0.1950164 0.4470264 0.3637862 +0.2210581 0.4470264 0.3637862 +0.245636 0.4470264 0.3637862 +0.2686816 0.4470264 0.3637862 +0.2902431 0.4470264 0.3637862 +0.3104189 0.4470264 0.3637862 +0.3293248 0.4470264 0.3637862 +0.3470774 0.4470264 0.3637862 +0.3637862 0.4470264 0.3637862 +0.3795513 0.4470264 0.3637862 +0.3944623 0.4470264 0.3637862 +0.4085988 0.4470264 0.3637862 +0.4220313 0.4470264 0.3637862 +0.4348222 0.4470264 0.3637862 +0.4470264 0.4470264 0.3637862 +0.4586928 0.4470264 0.3637862 +0.4698649 0.4470264 0.3637862 +0.4805811 0.4470264 0.3637862 +0.490876 0.4470264 0.3637862 +0.5007803 0.4470264 0.3637862 +0.510322 0.4470264 0.3637862 +0.5195258 0.4470264 0.3637862 +0.5284142 0.4470264 0.3637862 +0.5370079 0.4470264 0.3637862 +0.5453253 0.4470264 0.3637862 +0.5533834 0.4470264 0.3637862 +0.5611974 0.4470264 0.3637862 +0.5687816 0.4470264 0.3637862 +0.092819 0.4586928 0.3637862 +0.1056428 0.4586928 0.3637862 +0.1201537 0.4586928 0.3637862 +0.1409607 0.4586928 0.3637862 +0.1678172 0.4586928 0.3637862 +0.1950164 0.4586928 0.3637862 +0.2210581 0.4586928 0.3637862 +0.245636 0.4586928 0.3637862 +0.2686816 0.4586928 0.3637862 +0.2902431 0.4586928 0.3637862 +0.3104189 0.4586928 0.3637862 +0.3293248 0.4586928 0.3637862 +0.3470774 0.4586928 0.3637862 +0.3637862 0.4586928 0.3637862 +0.3795513 0.4586928 0.3637862 +0.3944623 0.4586928 0.3637862 +0.4085988 0.4586928 0.3637862 +0.4220313 0.4586928 0.3637862 +0.4348222 0.4586928 0.3637862 +0.4470264 0.4586928 0.3637862 +0.4586928 0.4586928 0.3637862 +0.4698649 0.4586928 0.3637862 +0.4805811 0.4586928 0.3637862 +0.490876 0.4586928 0.3637862 +0.5007803 0.4586928 0.3637862 +0.510322 0.4586928 0.3637862 +0.5195258 0.4586928 0.3637862 +0.5284142 0.4586928 0.3637862 +0.5370079 0.4586928 0.3637862 +0.5453253 0.4586928 0.3637862 +0.5533834 0.4586928 0.3637862 +0.5611974 0.4586928 0.3637862 +0.5687816 0.4586928 0.3637862 +0.092819 0.4698649 0.3637862 +0.1056428 0.4698649 0.3637862 +0.1201537 0.4698649 0.3637862 +0.1409607 0.4698649 0.3637862 +0.1678172 0.4698649 0.3637862 +0.1950164 0.4698649 0.3637862 +0.2210581 0.4698649 0.3637862 +0.245636 0.4698649 0.3637862 +0.2686816 0.4698649 0.3637862 +0.2902431 0.4698649 0.3637862 +0.3104189 0.4698649 0.3637862 +0.3293248 0.4698649 0.3637862 +0.3470774 0.4698649 0.3637862 +0.3637862 0.4698649 0.3637862 +0.3795513 0.4698649 0.3637862 +0.3944623 0.4698649 0.3637862 +0.4085988 0.4698649 0.3637862 +0.4220313 0.4698649 0.3637862 +0.4348222 0.4698649 0.3637862 +0.4470264 0.4698649 0.3637862 +0.4586928 0.4698649 0.3637862 +0.4698649 0.4698649 0.3637862 +0.4805811 0.4698649 0.3637862 +0.490876 0.4698649 0.3637862 +0.5007803 0.4698649 0.3637862 +0.510322 0.4698649 0.3637862 +0.5195258 0.4698649 0.3637862 +0.5284142 0.4698649 0.3637862 +0.5370079 0.4698649 0.3637862 +0.5453253 0.4698649 0.3637862 +0.5533834 0.4698649 0.3637862 +0.5611974 0.4698649 0.3637862 +0.5687816 0.4698649 0.3637862 +0.092819 0.4805811 0.3637862 +0.1056428 0.4805811 0.3637862 +0.1201537 0.4805811 0.3637862 +0.1409607 0.4805811 0.3637862 +0.1678172 0.4805811 0.3637862 +0.1950164 0.4805811 0.3637862 +0.2210581 0.4805811 0.3637862 +0.245636 0.4805811 0.3637862 +0.2686816 0.4805811 0.3637862 +0.2902431 0.4805811 0.3637862 +0.3104189 0.4805811 0.3637862 +0.3293248 0.4805811 0.3637862 +0.3470774 0.4805811 0.3637862 +0.3637862 0.4805811 0.3637862 +0.3795513 0.4805811 0.3637862 +0.3944623 0.4805811 0.3637862 +0.4085988 0.4805811 0.3637862 +0.4220313 0.4805811 0.3637862 +0.4348222 0.4805811 0.3637862 +0.4470264 0.4805811 0.3637862 +0.4586928 0.4805811 0.3637862 +0.4698649 0.4805811 0.3637862 +0.4805811 0.4805811 0.3637862 +0.490876 0.4805811 0.3637862 +0.5007803 0.4805811 0.3637862 +0.510322 0.4805811 0.3637862 +0.5195258 0.4805811 0.3637862 +0.5284142 0.4805811 0.3637862 +0.5370079 0.4805811 0.3637862 +0.5453253 0.4805811 0.3637862 +0.5533834 0.4805811 0.3637862 +0.5611974 0.4805811 0.3637862 +0.5687816 0.4805811 0.3637862 +0.092819 0.490876 0.3637862 +0.1056428 0.490876 0.3637862 +0.1201537 0.490876 0.3637862 +0.1409607 0.490876 0.3637862 +0.1678172 0.490876 0.3637862 +0.1950164 0.490876 0.3637862 +0.2210581 0.490876 0.3637862 +0.245636 0.490876 0.3637862 +0.2686816 0.490876 0.3637862 +0.2902431 0.490876 0.3637862 +0.3104189 0.490876 0.3637862 +0.3293248 0.490876 0.3637862 +0.3470774 0.490876 0.3637862 +0.3637862 0.490876 0.3637862 +0.3795513 0.490876 0.3637862 +0.3944623 0.490876 0.3637862 +0.4085988 0.490876 0.3637862 +0.4220313 0.490876 0.3637862 +0.4348222 0.490876 0.3637862 +0.4470264 0.490876 0.3637862 +0.4586928 0.490876 0.3637862 +0.4698649 0.490876 0.3637862 +0.4805811 0.490876 0.3637862 +0.490876 0.490876 0.3637862 +0.5007803 0.490876 0.3637862 +0.510322 0.490876 0.3637862 +0.5195258 0.490876 0.3637862 +0.5284142 0.490876 0.3637862 +0.5370079 0.490876 0.3637862 +0.5453253 0.490876 0.3637862 +0.5533834 0.490876 0.3637862 +0.5611974 0.490876 0.3637862 +0.5687816 0.490876 0.3637862 +0.092819 0.5007803 0.3637862 +0.1056428 0.5007803 0.3637862 +0.1201537 0.5007803 0.3637862 +0.1409607 0.5007803 0.3637862 +0.1678172 0.5007803 0.3637862 +0.1950164 0.5007803 0.3637862 +0.2210581 0.5007803 0.3637862 +0.245636 0.5007803 0.3637862 +0.2686816 0.5007803 0.3637862 +0.2902431 0.5007803 0.3637862 +0.3104189 0.5007803 0.3637862 +0.3293248 0.5007803 0.3637862 +0.3470774 0.5007803 0.3637862 +0.3637862 0.5007803 0.3637862 +0.3795513 0.5007803 0.3637862 +0.3944623 0.5007803 0.3637862 +0.4085988 0.5007803 0.3637862 +0.4220313 0.5007803 0.3637862 +0.4348222 0.5007803 0.3637862 +0.4470264 0.5007803 0.3637862 +0.4586928 0.5007803 0.3637862 +0.4698649 0.5007803 0.3637862 +0.4805811 0.5007803 0.3637862 +0.490876 0.5007803 0.3637862 +0.5007803 0.5007803 0.3637862 +0.510322 0.5007803 0.3637862 +0.5195258 0.5007803 0.3637862 +0.5284142 0.5007803 0.3637862 +0.5370079 0.5007803 0.3637862 +0.5453253 0.5007803 0.3637862 +0.5533834 0.5007803 0.3637862 +0.5611974 0.5007803 0.3637862 +0.5687816 0.5007803 0.3637862 +0.092819 0.510322 0.3637862 +0.1056428 0.510322 0.3637862 +0.1201537 0.510322 0.3637862 +0.1409607 0.510322 0.3637862 +0.1678172 0.510322 0.3637862 +0.1950164 0.510322 0.3637862 +0.2210581 0.510322 0.3637862 +0.245636 0.510322 0.3637862 +0.2686816 0.510322 0.3637862 +0.2902431 0.510322 0.3637862 +0.3104189 0.510322 0.3637862 +0.3293248 0.510322 0.3637862 +0.3470774 0.510322 0.3637862 +0.3637862 0.510322 0.3637862 +0.3795513 0.510322 0.3637862 +0.3944623 0.510322 0.3637862 +0.4085988 0.510322 0.3637862 +0.4220313 0.510322 0.3637862 +0.4348222 0.510322 0.3637862 +0.4470264 0.510322 0.3637862 +0.4586928 0.510322 0.3637862 +0.4698649 0.510322 0.3637862 +0.4805811 0.510322 0.3637862 +0.490876 0.510322 0.3637862 +0.5007803 0.510322 0.3637862 +0.510322 0.510322 0.3637862 +0.5195258 0.510322 0.3637862 +0.5284142 0.510322 0.3637862 +0.5370079 0.510322 0.3637862 +0.5453253 0.510322 0.3637862 +0.5533834 0.510322 0.3637862 +0.5611974 0.510322 0.3637862 +0.5687816 0.510322 0.3637862 +0.092819 0.5195258 0.3637862 +0.1056428 0.5195258 0.3637862 +0.1201537 0.5195258 0.3637862 +0.1409607 0.5195258 0.3637862 +0.1678172 0.5195258 0.3637862 +0.1950164 0.5195258 0.3637862 +0.2210581 0.5195258 0.3637862 +0.245636 0.5195258 0.3637862 +0.2686816 0.5195258 0.3637862 +0.2902431 0.5195258 0.3637862 +0.3104189 0.5195258 0.3637862 +0.3293248 0.5195258 0.3637862 +0.3470774 0.5195258 0.3637862 +0.3637862 0.5195258 0.3637862 +0.3795513 0.5195258 0.3637862 +0.3944623 0.5195258 0.3637862 +0.4085988 0.5195258 0.3637862 +0.4220313 0.5195258 0.3637862 +0.4348222 0.5195258 0.3637862 +0.4470264 0.5195258 0.3637862 +0.4586928 0.5195258 0.3637862 +0.4698649 0.5195258 0.3637862 +0.4805811 0.5195258 0.3637862 +0.490876 0.5195258 0.3637862 +0.5007803 0.5195258 0.3637862 +0.510322 0.5195258 0.3637862 +0.5195258 0.5195258 0.3637862 +0.5284142 0.5195258 0.3637862 +0.5370079 0.5195258 0.3637862 +0.5453253 0.5195258 0.3637862 +0.5533834 0.5195258 0.3637862 +0.5611974 0.5195258 0.3637862 +0.5687816 0.5195258 0.3637862 +0.092819 0.5284142 0.3637862 +0.1056428 0.5284142 0.3637862 +0.1201537 0.5284142 0.3637862 +0.1409607 0.5284142 0.3637862 +0.1678172 0.5284142 0.3637862 +0.1950164 0.5284142 0.3637862 +0.2210581 0.5284142 0.3637862 +0.245636 0.5284142 0.3637862 +0.2686816 0.5284142 0.3637862 +0.2902431 0.5284142 0.3637862 +0.3104189 0.5284142 0.3637862 +0.3293248 0.5284142 0.3637862 +0.3470774 0.5284142 0.3637862 +0.3637862 0.5284142 0.3637862 +0.3795513 0.5284142 0.3637862 +0.3944623 0.5284142 0.3637862 +0.4085988 0.5284142 0.3637862 +0.4220313 0.5284142 0.3637862 +0.4348222 0.5284142 0.3637862 +0.4470264 0.5284142 0.3637862 +0.4586928 0.5284142 0.3637862 +0.4698649 0.5284142 0.3637862 +0.4805811 0.5284142 0.3637862 +0.490876 0.5284142 0.3637862 +0.5007803 0.5284142 0.3637862 +0.510322 0.5284142 0.3637862 +0.5195258 0.5284142 0.3637862 +0.5284142 0.5284142 0.3637862 +0.5370079 0.5284142 0.3637862 +0.5453253 0.5284142 0.3637862 +0.5533834 0.5284142 0.3637862 +0.5611974 0.5284142 0.3637862 +0.5687816 0.5284142 0.3637862 +0.092819 0.5370079 0.3637862 +0.1056428 0.5370079 0.3637862 +0.1201537 0.5370079 0.3637862 +0.1409607 0.5370079 0.3637862 +0.1678172 0.5370079 0.3637862 +0.1950164 0.5370079 0.3637862 +0.2210581 0.5370079 0.3637862 +0.245636 0.5370079 0.3637862 +0.2686816 0.5370079 0.3637862 +0.2902431 0.5370079 0.3637862 +0.3104189 0.5370079 0.3637862 +0.3293248 0.5370079 0.3637862 +0.3470774 0.5370079 0.3637862 +0.3637862 0.5370079 0.3637862 +0.3795513 0.5370079 0.3637862 +0.3944623 0.5370079 0.3637862 +0.4085988 0.5370079 0.3637862 +0.4220313 0.5370079 0.3637862 +0.4348222 0.5370079 0.3637862 +0.4470264 0.5370079 0.3637862 +0.4586928 0.5370079 0.3637862 +0.4698649 0.5370079 0.3637862 +0.4805811 0.5370079 0.3637862 +0.490876 0.5370079 0.3637862 +0.5007803 0.5370079 0.3637862 +0.510322 0.5370079 0.3637862 +0.5195258 0.5370079 0.3637862 +0.5284142 0.5370079 0.3637862 +0.5370079 0.5370079 0.3637862 +0.5453253 0.5370079 0.3637862 +0.5533834 0.5370079 0.3637862 +0.5611974 0.5370079 0.3637862 +0.5687816 0.5370079 0.3637862 +0.092819 0.5453253 0.3637862 +0.1056428 0.5453253 0.3637862 +0.1201537 0.5453253 0.3637862 +0.1409607 0.5453253 0.3637862 +0.1678172 0.5453253 0.3637862 +0.1950164 0.5453253 0.3637862 +0.2210581 0.5453253 0.3637862 +0.245636 0.5453253 0.3637862 +0.2686816 0.5453253 0.3637862 +0.2902431 0.5453253 0.3637862 +0.3104189 0.5453253 0.3637862 +0.3293248 0.5453253 0.3637862 +0.3470774 0.5453253 0.3637862 +0.3637862 0.5453253 0.3637862 +0.3795513 0.5453253 0.3637862 +0.3944623 0.5453253 0.3637862 +0.4085988 0.5453253 0.3637862 +0.4220313 0.5453253 0.3637862 +0.4348222 0.5453253 0.3637862 +0.4470264 0.5453253 0.3637862 +0.4586928 0.5453253 0.3637862 +0.4698649 0.5453253 0.3637862 +0.4805811 0.5453253 0.3637862 +0.490876 0.5453253 0.3637862 +0.5007803 0.5453253 0.3637862 +0.510322 0.5453253 0.3637862 +0.5195258 0.5453253 0.3637862 +0.5284142 0.5453253 0.3637862 +0.5370079 0.5453253 0.3637862 +0.5453253 0.5453253 0.3637862 +0.5533834 0.5453253 0.3637862 +0.5611974 0.5453253 0.3637862 +0.5687816 0.5453253 0.3637862 +0.092819 0.5533834 0.3637862 +0.1056428 0.5533834 0.3637862 +0.1201537 0.5533834 0.3637862 +0.1409607 0.5533834 0.3637862 +0.1678172 0.5533834 0.3637862 +0.1950164 0.5533834 0.3637862 +0.2210581 0.5533834 0.3637862 +0.245636 0.5533834 0.3637862 +0.2686816 0.5533834 0.3637862 +0.2902431 0.5533834 0.3637862 +0.3104189 0.5533834 0.3637862 +0.3293248 0.5533834 0.3637862 +0.3470774 0.5533834 0.3637862 +0.3637862 0.5533834 0.3637862 +0.3795513 0.5533834 0.3637862 +0.3944623 0.5533834 0.3637862 +0.4085988 0.5533834 0.3637862 +0.4220313 0.5533834 0.3637862 +0.4348222 0.5533834 0.3637862 +0.4470264 0.5533834 0.3637862 +0.4586928 0.5533834 0.3637862 +0.4698649 0.5533834 0.3637862 +0.4805811 0.5533834 0.3637862 +0.490876 0.5533834 0.3637862 +0.5007803 0.5533834 0.3637862 +0.510322 0.5533834 0.3637862 +0.5195258 0.5533834 0.3637862 +0.5284142 0.5533834 0.3637862 +0.5370079 0.5533834 0.3637862 +0.5453253 0.5533834 0.3637862 +0.5533834 0.5533834 0.3637862 +0.5611974 0.5533834 0.3637862 +0.5687816 0.5533834 0.3637862 +0.092819 0.5611974 0.3637862 +0.1056428 0.5611974 0.3637862 +0.1201537 0.5611974 0.3637862 +0.1409607 0.5611974 0.3637862 +0.1678172 0.5611974 0.3637862 +0.1950164 0.5611974 0.3637862 +0.2210581 0.5611974 0.3637862 +0.245636 0.5611974 0.3637862 +0.2686816 0.5611974 0.3637862 +0.2902431 0.5611974 0.3637862 +0.3104189 0.5611974 0.3637862 +0.3293248 0.5611974 0.3637862 +0.3470774 0.5611974 0.3637862 +0.3637862 0.5611974 0.3637862 +0.3795513 0.5611974 0.3637862 +0.3944623 0.5611974 0.3637862 +0.4085988 0.5611974 0.3637862 +0.4220313 0.5611974 0.3637862 +0.4348222 0.5611974 0.3637862 +0.4470264 0.5611974 0.3637862 +0.4586928 0.5611974 0.3637862 +0.4698649 0.5611974 0.3637862 +0.4805811 0.5611974 0.3637862 +0.490876 0.5611974 0.3637862 +0.5007803 0.5611974 0.3637862 +0.510322 0.5611974 0.3637862 +0.5195258 0.5611974 0.3637862 +0.5284142 0.5611974 0.3637862 +0.5370079 0.5611974 0.3637862 +0.5453253 0.5611974 0.3637862 +0.5533834 0.5611974 0.3637862 +0.5611974 0.5611974 0.3637862 +0.5687816 0.5611974 0.3637862 +0.092819 0.5687816 0.3637862 +0.1056428 0.5687816 0.3637862 +0.1201537 0.5687816 0.3637862 +0.1409607 0.5687816 0.3637862 +0.1678172 0.5687816 0.3637862 +0.1950164 0.5687816 0.3637862 +0.2210581 0.5687816 0.3637862 +0.245636 0.5687816 0.3637862 +0.2686816 0.5687816 0.3637862 +0.2902431 0.5687816 0.3637862 +0.3104189 0.5687816 0.3637862 +0.3293248 0.5687816 0.3637862 +0.3470774 0.5687816 0.3637862 +0.3637862 0.5687816 0.3637862 +0.3795513 0.5687816 0.3637862 +0.3944623 0.5687816 0.3637862 +0.4085988 0.5687816 0.3637862 +0.4220313 0.5687816 0.3637862 +0.4348222 0.5687816 0.3637862 +0.4470264 0.5687816 0.3637862 +0.4586928 0.5687816 0.3637862 +0.4698649 0.5687816 0.3637862 +0.4805811 0.5687816 0.3637862 +0.490876 0.5687816 0.3637862 +0.5007803 0.5687816 0.3637862 +0.510322 0.5687816 0.3637862 +0.5195258 0.5687816 0.3637862 +0.5284142 0.5687816 0.3637862 +0.5370079 0.5687816 0.3637862 +0.5453253 0.5687816 0.3637862 +0.5533834 0.5687816 0.3637862 +0.5611974 0.5687816 0.3637862 +0.5687816 0.5687816 0.3637862 +0.092819 0.092819 0.3795513 +0.1056428 0.092819 0.3795513 +0.1201537 0.092819 0.3795513 +0.1409607 0.092819 0.3795513 +0.1678172 0.092819 0.3795513 +0.1950164 0.092819 0.3795513 +0.2210581 0.092819 0.3795513 +0.245636 0.092819 0.3795513 +0.2686816 0.092819 0.3795513 +0.2902431 0.092819 0.3795513 +0.3104189 0.092819 0.3795513 +0.3293248 0.092819 0.3795513 +0.3470774 0.092819 0.3795513 +0.3637862 0.092819 0.3795513 +0.3795513 0.092819 0.3795513 +0.3944623 0.092819 0.3795513 +0.4085988 0.092819 0.3795513 +0.4220313 0.092819 0.3795513 +0.4348222 0.092819 0.3795513 +0.4470264 0.092819 0.3795513 +0.4586928 0.092819 0.3795513 +0.4698649 0.092819 0.3795513 +0.4805811 0.092819 0.3795513 +0.490876 0.092819 0.3795513 +0.5007803 0.092819 0.3795513 +0.510322 0.092819 0.3795513 +0.5195258 0.092819 0.3795513 +0.5284142 0.092819 0.3795513 +0.5370079 0.092819 0.3795513 +0.5453253 0.092819 0.3795513 +0.5533834 0.092819 0.3795513 +0.5611974 0.092819 0.3795513 +0.5687816 0.092819 0.3795513 +0.092819 0.1056428 0.3795513 +0.1056428 0.1056428 0.3795513 +0.1201537 0.1056428 0.3795513 +0.1409607 0.1056428 0.3795513 +0.1678172 0.1056428 0.3795513 +0.1950164 0.1056428 0.3795513 +0.2210581 0.1056428 0.3795513 +0.245636 0.1056428 0.3795513 +0.2686816 0.1056428 0.3795513 +0.2902431 0.1056428 0.3795513 +0.3104189 0.1056428 0.3795513 +0.3293248 0.1056428 0.3795513 +0.3470774 0.1056428 0.3795513 +0.3637862 0.1056428 0.3795513 +0.3795513 0.1056428 0.3795513 +0.3944623 0.1056428 0.3795513 +0.4085988 0.1056428 0.3795513 +0.4220313 0.1056428 0.3795513 +0.4348222 0.1056428 0.3795513 +0.4470264 0.1056428 0.3795513 +0.4586928 0.1056428 0.3795513 +0.4698649 0.1056428 0.3795513 +0.4805811 0.1056428 0.3795513 +0.490876 0.1056428 0.3795513 +0.5007803 0.1056428 0.3795513 +0.510322 0.1056428 0.3795513 +0.5195258 0.1056428 0.3795513 +0.5284142 0.1056428 0.3795513 +0.5370079 0.1056428 0.3795513 +0.5453253 0.1056428 0.3795513 +0.5533834 0.1056428 0.3795513 +0.5611974 0.1056428 0.3795513 +0.5687816 0.1056428 0.3795513 +0.092819 0.1201537 0.3795513 +0.1056428 0.1201537 0.3795513 +0.1201537 0.1201537 0.3795513 +0.1409607 0.1201537 0.3795513 +0.1678172 0.1201537 0.3795513 +0.1950164 0.1201537 0.3795513 +0.2210581 0.1201537 0.3795513 +0.245636 0.1201537 0.3795513 +0.2686816 0.1201537 0.3795513 +0.2902431 0.1201537 0.3795513 +0.3104189 0.1201537 0.3795513 +0.3293248 0.1201537 0.3795513 +0.3470774 0.1201537 0.3795513 +0.3637862 0.1201537 0.3795513 +0.3795513 0.1201537 0.3795513 +0.3944623 0.1201537 0.3795513 +0.4085988 0.1201537 0.3795513 +0.4220313 0.1201537 0.3795513 +0.4348222 0.1201537 0.3795513 +0.4470264 0.1201537 0.3795513 +0.4586928 0.1201537 0.3795513 +0.4698649 0.1201537 0.3795513 +0.4805811 0.1201537 0.3795513 +0.490876 0.1201537 0.3795513 +0.5007803 0.1201537 0.3795513 +0.510322 0.1201537 0.3795513 +0.5195258 0.1201537 0.3795513 +0.5284142 0.1201537 0.3795513 +0.5370079 0.1201537 0.3795513 +0.5453253 0.1201537 0.3795513 +0.5533834 0.1201537 0.3795513 +0.5611974 0.1201537 0.3795513 +0.5687816 0.1201537 0.3795513 +0.092819 0.1409607 0.3795513 +0.1056428 0.1409607 0.3795513 +0.1201537 0.1409607 0.3795513 +0.1409607 0.1409607 0.3795513 +0.1678172 0.1409607 0.3795513 +0.1950164 0.1409607 0.3795513 +0.2210581 0.1409607 0.3795513 +0.245636 0.1409607 0.3795513 +0.2686816 0.1409607 0.3795513 +0.2902431 0.1409607 0.3795513 +0.3104189 0.1409607 0.3795513 +0.3293248 0.1409607 0.3795513 +0.3470774 0.1409607 0.3795513 +0.3637862 0.1409607 0.3795513 +0.3795513 0.1409607 0.3795513 +0.3944623 0.1409607 0.3795513 +0.4085988 0.1409607 0.3795513 +0.4220313 0.1409607 0.3795513 +0.4348222 0.1409607 0.3795513 +0.4470264 0.1409607 0.3795513 +0.4586928 0.1409607 0.3795513 +0.4698649 0.1409607 0.3795513 +0.4805811 0.1409607 0.3795513 +0.490876 0.1409607 0.3795513 +0.5007803 0.1409607 0.3795513 +0.510322 0.1409607 0.3795513 +0.5195258 0.1409607 0.3795513 +0.5284142 0.1409607 0.3795513 +0.5370079 0.1409607 0.3795513 +0.5453253 0.1409607 0.3795513 +0.5533834 0.1409607 0.3795513 +0.5611974 0.1409607 0.3795513 +0.5687816 0.1409607 0.3795513 +0.092819 0.1678172 0.3795513 +0.1056428 0.1678172 0.3795513 +0.1201537 0.1678172 0.3795513 +0.1409607 0.1678172 0.3795513 +0.1678172 0.1678172 0.3795513 +0.1950164 0.1678172 0.3795513 +0.2210581 0.1678172 0.3795513 +0.245636 0.1678172 0.3795513 +0.2686816 0.1678172 0.3795513 +0.2902431 0.1678172 0.3795513 +0.3104189 0.1678172 0.3795513 +0.3293248 0.1678172 0.3795513 +0.3470774 0.1678172 0.3795513 +0.3637862 0.1678172 0.3795513 +0.3795513 0.1678172 0.3795513 +0.3944623 0.1678172 0.3795513 +0.4085988 0.1678172 0.3795513 +0.4220313 0.1678172 0.3795513 +0.4348222 0.1678172 0.3795513 +0.4470264 0.1678172 0.3795513 +0.4586928 0.1678172 0.3795513 +0.4698649 0.1678172 0.3795513 +0.4805811 0.1678172 0.3795513 +0.490876 0.1678172 0.3795513 +0.5007803 0.1678172 0.3795513 +0.510322 0.1678172 0.3795513 +0.5195258 0.1678172 0.3795513 +0.5284142 0.1678172 0.3795513 +0.5370079 0.1678172 0.3795513 +0.5453253 0.1678172 0.3795513 +0.5533834 0.1678172 0.3795513 +0.5611974 0.1678172 0.3795513 +0.5687816 0.1678172 0.3795513 +0.092819 0.1950164 0.3795513 +0.1056428 0.1950164 0.3795513 +0.1201537 0.1950164 0.3795513 +0.1409607 0.1950164 0.3795513 +0.1678172 0.1950164 0.3795513 +0.1950164 0.1950164 0.3795513 +0.2210581 0.1950164 0.3795513 +0.245636 0.1950164 0.3795513 +0.2686816 0.1950164 0.3795513 +0.2902431 0.1950164 0.3795513 +0.3104189 0.1950164 0.3795513 +0.3293248 0.1950164 0.3795513 +0.3470774 0.1950164 0.3795513 +0.3637862 0.1950164 0.3795513 +0.3795513 0.1950164 0.3795513 +0.3944623 0.1950164 0.3795513 +0.4085988 0.1950164 0.3795513 +0.4220313 0.1950164 0.3795513 +0.4348222 0.1950164 0.3795513 +0.4470264 0.1950164 0.3795513 +0.4586928 0.1950164 0.3795513 +0.4698649 0.1950164 0.3795513 +0.4805811 0.1950164 0.3795513 +0.490876 0.1950164 0.3795513 +0.5007803 0.1950164 0.3795513 +0.510322 0.1950164 0.3795513 +0.5195258 0.1950164 0.3795513 +0.5284142 0.1950164 0.3795513 +0.5370079 0.1950164 0.3795513 +0.5453253 0.1950164 0.3795513 +0.5533834 0.1950164 0.3795513 +0.5611974 0.1950164 0.3795513 +0.5687816 0.1950164 0.3795513 +0.092819 0.2210581 0.3795513 +0.1056428 0.2210581 0.3795513 +0.1201537 0.2210581 0.3795513 +0.1409607 0.2210581 0.3795513 +0.1678172 0.2210581 0.3795513 +0.1950164 0.2210581 0.3795513 +0.2210581 0.2210581 0.3795513 +0.245636 0.2210581 0.3795513 +0.2686816 0.2210581 0.3795513 +0.2902431 0.2210581 0.3795513 +0.3104189 0.2210581 0.3795513 +0.3293248 0.2210581 0.3795513 +0.3470774 0.2210581 0.3795513 +0.3637862 0.2210581 0.3795513 +0.3795513 0.2210581 0.3795513 +0.3944623 0.2210581 0.3795513 +0.4085988 0.2210581 0.3795513 +0.4220313 0.2210581 0.3795513 +0.4348222 0.2210581 0.3795513 +0.4470264 0.2210581 0.3795513 +0.4586928 0.2210581 0.3795513 +0.4698649 0.2210581 0.3795513 +0.4805811 0.2210581 0.3795513 +0.490876 0.2210581 0.3795513 +0.5007803 0.2210581 0.3795513 +0.510322 0.2210581 0.3795513 +0.5195258 0.2210581 0.3795513 +0.5284142 0.2210581 0.3795513 +0.5370079 0.2210581 0.3795513 +0.5453253 0.2210581 0.3795513 +0.5533834 0.2210581 0.3795513 +0.5611974 0.2210581 0.3795513 +0.5687816 0.2210581 0.3795513 +0.092819 0.245636 0.3795513 +0.1056428 0.245636 0.3795513 +0.1201537 0.245636 0.3795513 +0.1409607 0.245636 0.3795513 +0.1678172 0.245636 0.3795513 +0.1950164 0.245636 0.3795513 +0.2210581 0.245636 0.3795513 +0.245636 0.245636 0.3795513 +0.2686816 0.245636 0.3795513 +0.2902431 0.245636 0.3795513 +0.3104189 0.245636 0.3795513 +0.3293248 0.245636 0.3795513 +0.3470774 0.245636 0.3795513 +0.3637862 0.245636 0.3795513 +0.3795513 0.245636 0.3795513 +0.3944623 0.245636 0.3795513 +0.4085988 0.245636 0.3795513 +0.4220313 0.245636 0.3795513 +0.4348222 0.245636 0.3795513 +0.4470264 0.245636 0.3795513 +0.4586928 0.245636 0.3795513 +0.4698649 0.245636 0.3795513 +0.4805811 0.245636 0.3795513 +0.490876 0.245636 0.3795513 +0.5007803 0.245636 0.3795513 +0.510322 0.245636 0.3795513 +0.5195258 0.245636 0.3795513 +0.5284142 0.245636 0.3795513 +0.5370079 0.245636 0.3795513 +0.5453253 0.245636 0.3795513 +0.5533834 0.245636 0.3795513 +0.5611974 0.245636 0.3795513 +0.5687816 0.245636 0.3795513 +0.092819 0.2686816 0.3795513 +0.1056428 0.2686816 0.3795513 +0.1201537 0.2686816 0.3795513 +0.1409607 0.2686816 0.3795513 +0.1678172 0.2686816 0.3795513 +0.1950164 0.2686816 0.3795513 +0.2210581 0.2686816 0.3795513 +0.245636 0.2686816 0.3795513 +0.2686816 0.2686816 0.3795513 +0.2902431 0.2686816 0.3795513 +0.3104189 0.2686816 0.3795513 +0.3293248 0.2686816 0.3795513 +0.3470774 0.2686816 0.3795513 +0.3637862 0.2686816 0.3795513 +0.3795513 0.2686816 0.3795513 +0.3944623 0.2686816 0.3795513 +0.4085988 0.2686816 0.3795513 +0.4220313 0.2686816 0.3795513 +0.4348222 0.2686816 0.3795513 +0.4470264 0.2686816 0.3795513 +0.4586928 0.2686816 0.3795513 +0.4698649 0.2686816 0.3795513 +0.4805811 0.2686816 0.3795513 +0.490876 0.2686816 0.3795513 +0.5007803 0.2686816 0.3795513 +0.510322 0.2686816 0.3795513 +0.5195258 0.2686816 0.3795513 +0.5284142 0.2686816 0.3795513 +0.5370079 0.2686816 0.3795513 +0.5453253 0.2686816 0.3795513 +0.5533834 0.2686816 0.3795513 +0.5611974 0.2686816 0.3795513 +0.5687816 0.2686816 0.3795513 +0.092819 0.2902431 0.3795513 +0.1056428 0.2902431 0.3795513 +0.1201537 0.2902431 0.3795513 +0.1409607 0.2902431 0.3795513 +0.1678172 0.2902431 0.3795513 +0.1950164 0.2902431 0.3795513 +0.2210581 0.2902431 0.3795513 +0.245636 0.2902431 0.3795513 +0.2686816 0.2902431 0.3795513 +0.2902431 0.2902431 0.3795513 +0.3104189 0.2902431 0.3795513 +0.3293248 0.2902431 0.3795513 +0.3470774 0.2902431 0.3795513 +0.3637862 0.2902431 0.3795513 +0.3795513 0.2902431 0.3795513 +0.3944623 0.2902431 0.3795513 +0.4085988 0.2902431 0.3795513 +0.4220313 0.2902431 0.3795513 +0.4348222 0.2902431 0.3795513 +0.4470264 0.2902431 0.3795513 +0.4586928 0.2902431 0.3795513 +0.4698649 0.2902431 0.3795513 +0.4805811 0.2902431 0.3795513 +0.490876 0.2902431 0.3795513 +0.5007803 0.2902431 0.3795513 +0.510322 0.2902431 0.3795513 +0.5195258 0.2902431 0.3795513 +0.5284142 0.2902431 0.3795513 +0.5370079 0.2902431 0.3795513 +0.5453253 0.2902431 0.3795513 +0.5533834 0.2902431 0.3795513 +0.5611974 0.2902431 0.3795513 +0.5687816 0.2902431 0.3795513 +0.092819 0.3104189 0.3795513 +0.1056428 0.3104189 0.3795513 +0.1201537 0.3104189 0.3795513 +0.1409607 0.3104189 0.3795513 +0.1678172 0.3104189 0.3795513 +0.1950164 0.3104189 0.3795513 +0.2210581 0.3104189 0.3795513 +0.245636 0.3104189 0.3795513 +0.2686816 0.3104189 0.3795513 +0.2902431 0.3104189 0.3795513 +0.3104189 0.3104189 0.3795513 +0.3293248 0.3104189 0.3795513 +0.3470774 0.3104189 0.3795513 +0.3637862 0.3104189 0.3795513 +0.3795513 0.3104189 0.3795513 +0.3944623 0.3104189 0.3795513 +0.4085988 0.3104189 0.3795513 +0.4220313 0.3104189 0.3795513 +0.4348222 0.3104189 0.3795513 +0.4470264 0.3104189 0.3795513 +0.4586928 0.3104189 0.3795513 +0.4698649 0.3104189 0.3795513 +0.4805811 0.3104189 0.3795513 +0.490876 0.3104189 0.3795513 +0.5007803 0.3104189 0.3795513 +0.510322 0.3104189 0.3795513 +0.5195258 0.3104189 0.3795513 +0.5284142 0.3104189 0.3795513 +0.5370079 0.3104189 0.3795513 +0.5453253 0.3104189 0.3795513 +0.5533834 0.3104189 0.3795513 +0.5611974 0.3104189 0.3795513 +0.5687816 0.3104189 0.3795513 +0.092819 0.3293248 0.3795513 +0.1056428 0.3293248 0.3795513 +0.1201537 0.3293248 0.3795513 +0.1409607 0.3293248 0.3795513 +0.1678172 0.3293248 0.3795513 +0.1950164 0.3293248 0.3795513 +0.2210581 0.3293248 0.3795513 +0.245636 0.3293248 0.3795513 +0.2686816 0.3293248 0.3795513 +0.2902431 0.3293248 0.3795513 +0.3104189 0.3293248 0.3795513 +0.3293248 0.3293248 0.3795513 +0.3470774 0.3293248 0.3795513 +0.3637862 0.3293248 0.3795513 +0.3795513 0.3293248 0.3795513 +0.3944623 0.3293248 0.3795513 +0.4085988 0.3293248 0.3795513 +0.4220313 0.3293248 0.3795513 +0.4348222 0.3293248 0.3795513 +0.4470264 0.3293248 0.3795513 +0.4586928 0.3293248 0.3795513 +0.4698649 0.3293248 0.3795513 +0.4805811 0.3293248 0.3795513 +0.490876 0.3293248 0.3795513 +0.5007803 0.3293248 0.3795513 +0.510322 0.3293248 0.3795513 +0.5195258 0.3293248 0.3795513 +0.5284142 0.3293248 0.3795513 +0.5370079 0.3293248 0.3795513 +0.5453253 0.3293248 0.3795513 +0.5533834 0.3293248 0.3795513 +0.5611974 0.3293248 0.3795513 +0.5687816 0.3293248 0.3795513 +0.092819 0.3470774 0.3795513 +0.1056428 0.3470774 0.3795513 +0.1201537 0.3470774 0.3795513 +0.1409607 0.3470774 0.3795513 +0.1678172 0.3470774 0.3795513 +0.1950164 0.3470774 0.3795513 +0.2210581 0.3470774 0.3795513 +0.245636 0.3470774 0.3795513 +0.2686816 0.3470774 0.3795513 +0.2902431 0.3470774 0.3795513 +0.3104189 0.3470774 0.3795513 +0.3293248 0.3470774 0.3795513 +0.3470774 0.3470774 0.3795513 +0.3637862 0.3470774 0.3795513 +0.3795513 0.3470774 0.3795513 +0.3944623 0.3470774 0.3795513 +0.4085988 0.3470774 0.3795513 +0.4220313 0.3470774 0.3795513 +0.4348222 0.3470774 0.3795513 +0.4470264 0.3470774 0.3795513 +0.4586928 0.3470774 0.3795513 +0.4698649 0.3470774 0.3795513 +0.4805811 0.3470774 0.3795513 +0.490876 0.3470774 0.3795513 +0.5007803 0.3470774 0.3795513 +0.510322 0.3470774 0.3795513 +0.5195258 0.3470774 0.3795513 +0.5284142 0.3470774 0.3795513 +0.5370079 0.3470774 0.3795513 +0.5453253 0.3470774 0.3795513 +0.5533834 0.3470774 0.3795513 +0.5611974 0.3470774 0.3795513 +0.5687816 0.3470774 0.3795513 +0.092819 0.3637862 0.3795513 +0.1056428 0.3637862 0.3795513 +0.1201537 0.3637862 0.3795513 +0.1409607 0.3637862 0.3795513 +0.1678172 0.3637862 0.3795513 +0.1950164 0.3637862 0.3795513 +0.2210581 0.3637862 0.3795513 +0.245636 0.3637862 0.3795513 +0.2686816 0.3637862 0.3795513 +0.2902431 0.3637862 0.3795513 +0.3104189 0.3637862 0.3795513 +0.3293248 0.3637862 0.3795513 +0.3470774 0.3637862 0.3795513 +0.3637862 0.3637862 0.3795513 +0.3795513 0.3637862 0.3795513 +0.3944623 0.3637862 0.3795513 +0.4085988 0.3637862 0.3795513 +0.4220313 0.3637862 0.3795513 +0.4348222 0.3637862 0.3795513 +0.4470264 0.3637862 0.3795513 +0.4586928 0.3637862 0.3795513 +0.4698649 0.3637862 0.3795513 +0.4805811 0.3637862 0.3795513 +0.490876 0.3637862 0.3795513 +0.5007803 0.3637862 0.3795513 +0.510322 0.3637862 0.3795513 +0.5195258 0.3637862 0.3795513 +0.5284142 0.3637862 0.3795513 +0.5370079 0.3637862 0.3795513 +0.5453253 0.3637862 0.3795513 +0.5533834 0.3637862 0.3795513 +0.5611974 0.3637862 0.3795513 +0.5687816 0.3637862 0.3795513 +0.092819 0.3795513 0.3795513 +0.1056428 0.3795513 0.3795513 +0.1201537 0.3795513 0.3795513 +0.1409607 0.3795513 0.3795513 +0.1678172 0.3795513 0.3795513 +0.1950164 0.3795513 0.3795513 +0.2210581 0.3795513 0.3795513 +0.245636 0.3795513 0.3795513 +0.2686816 0.3795513 0.3795513 +0.2902431 0.3795513 0.3795513 +0.3104189 0.3795513 0.3795513 +0.3293248 0.3795513 0.3795513 +0.3470774 0.3795513 0.3795513 +0.3637862 0.3795513 0.3795513 +0.3795513 0.3795513 0.3795513 +0.3944623 0.3795513 0.3795513 +0.4085988 0.3795513 0.3795513 +0.4220313 0.3795513 0.3795513 +0.4348222 0.3795513 0.3795513 +0.4470264 0.3795513 0.3795513 +0.4586928 0.3795513 0.3795513 +0.4698649 0.3795513 0.3795513 +0.4805811 0.3795513 0.3795513 +0.490876 0.3795513 0.3795513 +0.5007803 0.3795513 0.3795513 +0.510322 0.3795513 0.3795513 +0.5195258 0.3795513 0.3795513 +0.5284142 0.3795513 0.3795513 +0.5370079 0.3795513 0.3795513 +0.5453253 0.3795513 0.3795513 +0.5533834 0.3795513 0.3795513 +0.5611974 0.3795513 0.3795513 +0.5687816 0.3795513 0.3795513 +0.092819 0.3944623 0.3795513 +0.1056428 0.3944623 0.3795513 +0.1201537 0.3944623 0.3795513 +0.1409607 0.3944623 0.3795513 +0.1678172 0.3944623 0.3795513 +0.1950164 0.3944623 0.3795513 +0.2210581 0.3944623 0.3795513 +0.245636 0.3944623 0.3795513 +0.2686816 0.3944623 0.3795513 +0.2902431 0.3944623 0.3795513 +0.3104189 0.3944623 0.3795513 +0.3293248 0.3944623 0.3795513 +0.3470774 0.3944623 0.3795513 +0.3637862 0.3944623 0.3795513 +0.3795513 0.3944623 0.3795513 +0.3944623 0.3944623 0.3795513 +0.4085988 0.3944623 0.3795513 +0.4220313 0.3944623 0.3795513 +0.4348222 0.3944623 0.3795513 +0.4470264 0.3944623 0.3795513 +0.4586928 0.3944623 0.3795513 +0.4698649 0.3944623 0.3795513 +0.4805811 0.3944623 0.3795513 +0.490876 0.3944623 0.3795513 +0.5007803 0.3944623 0.3795513 +0.510322 0.3944623 0.3795513 +0.5195258 0.3944623 0.3795513 +0.5284142 0.3944623 0.3795513 +0.5370079 0.3944623 0.3795513 +0.5453253 0.3944623 0.3795513 +0.5533834 0.3944623 0.3795513 +0.5611974 0.3944623 0.3795513 +0.5687816 0.3944623 0.3795513 +0.092819 0.4085988 0.3795513 +0.1056428 0.4085988 0.3795513 +0.1201537 0.4085988 0.3795513 +0.1409607 0.4085988 0.3795513 +0.1678172 0.4085988 0.3795513 +0.1950164 0.4085988 0.3795513 +0.2210581 0.4085988 0.3795513 +0.245636 0.4085988 0.3795513 +0.2686816 0.4085988 0.3795513 +0.2902431 0.4085988 0.3795513 +0.3104189 0.4085988 0.3795513 +0.3293248 0.4085988 0.3795513 +0.3470774 0.4085988 0.3795513 +0.3637862 0.4085988 0.3795513 +0.3795513 0.4085988 0.3795513 +0.3944623 0.4085988 0.3795513 +0.4085988 0.4085988 0.3795513 +0.4220313 0.4085988 0.3795513 +0.4348222 0.4085988 0.3795513 +0.4470264 0.4085988 0.3795513 +0.4586928 0.4085988 0.3795513 +0.4698649 0.4085988 0.3795513 +0.4805811 0.4085988 0.3795513 +0.490876 0.4085988 0.3795513 +0.5007803 0.4085988 0.3795513 +0.510322 0.4085988 0.3795513 +0.5195258 0.4085988 0.3795513 +0.5284142 0.4085988 0.3795513 +0.5370079 0.4085988 0.3795513 +0.5453253 0.4085988 0.3795513 +0.5533834 0.4085988 0.3795513 +0.5611974 0.4085988 0.3795513 +0.5687816 0.4085988 0.3795513 +0.092819 0.4220313 0.3795513 +0.1056428 0.4220313 0.3795513 +0.1201537 0.4220313 0.3795513 +0.1409607 0.4220313 0.3795513 +0.1678172 0.4220313 0.3795513 +0.1950164 0.4220313 0.3795513 +0.2210581 0.4220313 0.3795513 +0.245636 0.4220313 0.3795513 +0.2686816 0.4220313 0.3795513 +0.2902431 0.4220313 0.3795513 +0.3104189 0.4220313 0.3795513 +0.3293248 0.4220313 0.3795513 +0.3470774 0.4220313 0.3795513 +0.3637862 0.4220313 0.3795513 +0.3795513 0.4220313 0.3795513 +0.3944623 0.4220313 0.3795513 +0.4085988 0.4220313 0.3795513 +0.4220313 0.4220313 0.3795513 +0.4348222 0.4220313 0.3795513 +0.4470264 0.4220313 0.3795513 +0.4586928 0.4220313 0.3795513 +0.4698649 0.4220313 0.3795513 +0.4805811 0.4220313 0.3795513 +0.490876 0.4220313 0.3795513 +0.5007803 0.4220313 0.3795513 +0.510322 0.4220313 0.3795513 +0.5195258 0.4220313 0.3795513 +0.5284142 0.4220313 0.3795513 +0.5370079 0.4220313 0.3795513 +0.5453253 0.4220313 0.3795513 +0.5533834 0.4220313 0.3795513 +0.5611974 0.4220313 0.3795513 +0.5687816 0.4220313 0.3795513 +0.092819 0.4348222 0.3795513 +0.1056428 0.4348222 0.3795513 +0.1201537 0.4348222 0.3795513 +0.1409607 0.4348222 0.3795513 +0.1678172 0.4348222 0.3795513 +0.1950164 0.4348222 0.3795513 +0.2210581 0.4348222 0.3795513 +0.245636 0.4348222 0.3795513 +0.2686816 0.4348222 0.3795513 +0.2902431 0.4348222 0.3795513 +0.3104189 0.4348222 0.3795513 +0.3293248 0.4348222 0.3795513 +0.3470774 0.4348222 0.3795513 +0.3637862 0.4348222 0.3795513 +0.3795513 0.4348222 0.3795513 +0.3944623 0.4348222 0.3795513 +0.4085988 0.4348222 0.3795513 +0.4220313 0.4348222 0.3795513 +0.4348222 0.4348222 0.3795513 +0.4470264 0.4348222 0.3795513 +0.4586928 0.4348222 0.3795513 +0.4698649 0.4348222 0.3795513 +0.4805811 0.4348222 0.3795513 +0.490876 0.4348222 0.3795513 +0.5007803 0.4348222 0.3795513 +0.510322 0.4348222 0.3795513 +0.5195258 0.4348222 0.3795513 +0.5284142 0.4348222 0.3795513 +0.5370079 0.4348222 0.3795513 +0.5453253 0.4348222 0.3795513 +0.5533834 0.4348222 0.3795513 +0.5611974 0.4348222 0.3795513 +0.5687816 0.4348222 0.3795513 +0.092819 0.4470264 0.3795513 +0.1056428 0.4470264 0.3795513 +0.1201537 0.4470264 0.3795513 +0.1409607 0.4470264 0.3795513 +0.1678172 0.4470264 0.3795513 +0.1950164 0.4470264 0.3795513 +0.2210581 0.4470264 0.3795513 +0.245636 0.4470264 0.3795513 +0.2686816 0.4470264 0.3795513 +0.2902431 0.4470264 0.3795513 +0.3104189 0.4470264 0.3795513 +0.3293248 0.4470264 0.3795513 +0.3470774 0.4470264 0.3795513 +0.3637862 0.4470264 0.3795513 +0.3795513 0.4470264 0.3795513 +0.3944623 0.4470264 0.3795513 +0.4085988 0.4470264 0.3795513 +0.4220313 0.4470264 0.3795513 +0.4348222 0.4470264 0.3795513 +0.4470264 0.4470264 0.3795513 +0.4586928 0.4470264 0.3795513 +0.4698649 0.4470264 0.3795513 +0.4805811 0.4470264 0.3795513 +0.490876 0.4470264 0.3795513 +0.5007803 0.4470264 0.3795513 +0.510322 0.4470264 0.3795513 +0.5195258 0.4470264 0.3795513 +0.5284142 0.4470264 0.3795513 +0.5370079 0.4470264 0.3795513 +0.5453253 0.4470264 0.3795513 +0.5533834 0.4470264 0.3795513 +0.5611974 0.4470264 0.3795513 +0.5687816 0.4470264 0.3795513 +0.092819 0.4586928 0.3795513 +0.1056428 0.4586928 0.3795513 +0.1201537 0.4586928 0.3795513 +0.1409607 0.4586928 0.3795513 +0.1678172 0.4586928 0.3795513 +0.1950164 0.4586928 0.3795513 +0.2210581 0.4586928 0.3795513 +0.245636 0.4586928 0.3795513 +0.2686816 0.4586928 0.3795513 +0.2902431 0.4586928 0.3795513 +0.3104189 0.4586928 0.3795513 +0.3293248 0.4586928 0.3795513 +0.3470774 0.4586928 0.3795513 +0.3637862 0.4586928 0.3795513 +0.3795513 0.4586928 0.3795513 +0.3944623 0.4586928 0.3795513 +0.4085988 0.4586928 0.3795513 +0.4220313 0.4586928 0.3795513 +0.4348222 0.4586928 0.3795513 +0.4470264 0.4586928 0.3795513 +0.4586928 0.4586928 0.3795513 +0.4698649 0.4586928 0.3795513 +0.4805811 0.4586928 0.3795513 +0.490876 0.4586928 0.3795513 +0.5007803 0.4586928 0.3795513 +0.510322 0.4586928 0.3795513 +0.5195258 0.4586928 0.3795513 +0.5284142 0.4586928 0.3795513 +0.5370079 0.4586928 0.3795513 +0.5453253 0.4586928 0.3795513 +0.5533834 0.4586928 0.3795513 +0.5611974 0.4586928 0.3795513 +0.5687816 0.4586928 0.3795513 +0.092819 0.4698649 0.3795513 +0.1056428 0.4698649 0.3795513 +0.1201537 0.4698649 0.3795513 +0.1409607 0.4698649 0.3795513 +0.1678172 0.4698649 0.3795513 +0.1950164 0.4698649 0.3795513 +0.2210581 0.4698649 0.3795513 +0.245636 0.4698649 0.3795513 +0.2686816 0.4698649 0.3795513 +0.2902431 0.4698649 0.3795513 +0.3104189 0.4698649 0.3795513 +0.3293248 0.4698649 0.3795513 +0.3470774 0.4698649 0.3795513 +0.3637862 0.4698649 0.3795513 +0.3795513 0.4698649 0.3795513 +0.3944623 0.4698649 0.3795513 +0.4085988 0.4698649 0.3795513 +0.4220313 0.4698649 0.3795513 +0.4348222 0.4698649 0.3795513 +0.4470264 0.4698649 0.3795513 +0.4586928 0.4698649 0.3795513 +0.4698649 0.4698649 0.3795513 +0.4805811 0.4698649 0.3795513 +0.490876 0.4698649 0.3795513 +0.5007803 0.4698649 0.3795513 +0.510322 0.4698649 0.3795513 +0.5195258 0.4698649 0.3795513 +0.5284142 0.4698649 0.3795513 +0.5370079 0.4698649 0.3795513 +0.5453253 0.4698649 0.3795513 +0.5533834 0.4698649 0.3795513 +0.5611974 0.4698649 0.3795513 +0.5687816 0.4698649 0.3795513 +0.092819 0.4805811 0.3795513 +0.1056428 0.4805811 0.3795513 +0.1201537 0.4805811 0.3795513 +0.1409607 0.4805811 0.3795513 +0.1678172 0.4805811 0.3795513 +0.1950164 0.4805811 0.3795513 +0.2210581 0.4805811 0.3795513 +0.245636 0.4805811 0.3795513 +0.2686816 0.4805811 0.3795513 +0.2902431 0.4805811 0.3795513 +0.3104189 0.4805811 0.3795513 +0.3293248 0.4805811 0.3795513 +0.3470774 0.4805811 0.3795513 +0.3637862 0.4805811 0.3795513 +0.3795513 0.4805811 0.3795513 +0.3944623 0.4805811 0.3795513 +0.4085988 0.4805811 0.3795513 +0.4220313 0.4805811 0.3795513 +0.4348222 0.4805811 0.3795513 +0.4470264 0.4805811 0.3795513 +0.4586928 0.4805811 0.3795513 +0.4698649 0.4805811 0.3795513 +0.4805811 0.4805811 0.3795513 +0.490876 0.4805811 0.3795513 +0.5007803 0.4805811 0.3795513 +0.510322 0.4805811 0.3795513 +0.5195258 0.4805811 0.3795513 +0.5284142 0.4805811 0.3795513 +0.5370079 0.4805811 0.3795513 +0.5453253 0.4805811 0.3795513 +0.5533834 0.4805811 0.3795513 +0.5611974 0.4805811 0.3795513 +0.5687816 0.4805811 0.3795513 +0.092819 0.490876 0.3795513 +0.1056428 0.490876 0.3795513 +0.1201537 0.490876 0.3795513 +0.1409607 0.490876 0.3795513 +0.1678172 0.490876 0.3795513 +0.1950164 0.490876 0.3795513 +0.2210581 0.490876 0.3795513 +0.245636 0.490876 0.3795513 +0.2686816 0.490876 0.3795513 +0.2902431 0.490876 0.3795513 +0.3104189 0.490876 0.3795513 +0.3293248 0.490876 0.3795513 +0.3470774 0.490876 0.3795513 +0.3637862 0.490876 0.3795513 +0.3795513 0.490876 0.3795513 +0.3944623 0.490876 0.3795513 +0.4085988 0.490876 0.3795513 +0.4220313 0.490876 0.3795513 +0.4348222 0.490876 0.3795513 +0.4470264 0.490876 0.3795513 +0.4586928 0.490876 0.3795513 +0.4698649 0.490876 0.3795513 +0.4805811 0.490876 0.3795513 +0.490876 0.490876 0.3795513 +0.5007803 0.490876 0.3795513 +0.510322 0.490876 0.3795513 +0.5195258 0.490876 0.3795513 +0.5284142 0.490876 0.3795513 +0.5370079 0.490876 0.3795513 +0.5453253 0.490876 0.3795513 +0.5533834 0.490876 0.3795513 +0.5611974 0.490876 0.3795513 +0.5687816 0.490876 0.3795513 +0.092819 0.5007803 0.3795513 +0.1056428 0.5007803 0.3795513 +0.1201537 0.5007803 0.3795513 +0.1409607 0.5007803 0.3795513 +0.1678172 0.5007803 0.3795513 +0.1950164 0.5007803 0.3795513 +0.2210581 0.5007803 0.3795513 +0.245636 0.5007803 0.3795513 +0.2686816 0.5007803 0.3795513 +0.2902431 0.5007803 0.3795513 +0.3104189 0.5007803 0.3795513 +0.3293248 0.5007803 0.3795513 +0.3470774 0.5007803 0.3795513 +0.3637862 0.5007803 0.3795513 +0.3795513 0.5007803 0.3795513 +0.3944623 0.5007803 0.3795513 +0.4085988 0.5007803 0.3795513 +0.4220313 0.5007803 0.3795513 +0.4348222 0.5007803 0.3795513 +0.4470264 0.5007803 0.3795513 +0.4586928 0.5007803 0.3795513 +0.4698649 0.5007803 0.3795513 +0.4805811 0.5007803 0.3795513 +0.490876 0.5007803 0.3795513 +0.5007803 0.5007803 0.3795513 +0.510322 0.5007803 0.3795513 +0.5195258 0.5007803 0.3795513 +0.5284142 0.5007803 0.3795513 +0.5370079 0.5007803 0.3795513 +0.5453253 0.5007803 0.3795513 +0.5533834 0.5007803 0.3795513 +0.5611974 0.5007803 0.3795513 +0.5687816 0.5007803 0.3795513 +0.092819 0.510322 0.3795513 +0.1056428 0.510322 0.3795513 +0.1201537 0.510322 0.3795513 +0.1409607 0.510322 0.3795513 +0.1678172 0.510322 0.3795513 +0.1950164 0.510322 0.3795513 +0.2210581 0.510322 0.3795513 +0.245636 0.510322 0.3795513 +0.2686816 0.510322 0.3795513 +0.2902431 0.510322 0.3795513 +0.3104189 0.510322 0.3795513 +0.3293248 0.510322 0.3795513 +0.3470774 0.510322 0.3795513 +0.3637862 0.510322 0.3795513 +0.3795513 0.510322 0.3795513 +0.3944623 0.510322 0.3795513 +0.4085988 0.510322 0.3795513 +0.4220313 0.510322 0.3795513 +0.4348222 0.510322 0.3795513 +0.4470264 0.510322 0.3795513 +0.4586928 0.510322 0.3795513 +0.4698649 0.510322 0.3795513 +0.4805811 0.510322 0.3795513 +0.490876 0.510322 0.3795513 +0.5007803 0.510322 0.3795513 +0.510322 0.510322 0.3795513 +0.5195258 0.510322 0.3795513 +0.5284142 0.510322 0.3795513 +0.5370079 0.510322 0.3795513 +0.5453253 0.510322 0.3795513 +0.5533834 0.510322 0.3795513 +0.5611974 0.510322 0.3795513 +0.5687816 0.510322 0.3795513 +0.092819 0.5195258 0.3795513 +0.1056428 0.5195258 0.3795513 +0.1201537 0.5195258 0.3795513 +0.1409607 0.5195258 0.3795513 +0.1678172 0.5195258 0.3795513 +0.1950164 0.5195258 0.3795513 +0.2210581 0.5195258 0.3795513 +0.245636 0.5195258 0.3795513 +0.2686816 0.5195258 0.3795513 +0.2902431 0.5195258 0.3795513 +0.3104189 0.5195258 0.3795513 +0.3293248 0.5195258 0.3795513 +0.3470774 0.5195258 0.3795513 +0.3637862 0.5195258 0.3795513 +0.3795513 0.5195258 0.3795513 +0.3944623 0.5195258 0.3795513 +0.4085988 0.5195258 0.3795513 +0.4220313 0.5195258 0.3795513 +0.4348222 0.5195258 0.3795513 +0.4470264 0.5195258 0.3795513 +0.4586928 0.5195258 0.3795513 +0.4698649 0.5195258 0.3795513 +0.4805811 0.5195258 0.3795513 +0.490876 0.5195258 0.3795513 +0.5007803 0.5195258 0.3795513 +0.510322 0.5195258 0.3795513 +0.5195258 0.5195258 0.3795513 +0.5284142 0.5195258 0.3795513 +0.5370079 0.5195258 0.3795513 +0.5453253 0.5195258 0.3795513 +0.5533834 0.5195258 0.3795513 +0.5611974 0.5195258 0.3795513 +0.5687816 0.5195258 0.3795513 +0.092819 0.5284142 0.3795513 +0.1056428 0.5284142 0.3795513 +0.1201537 0.5284142 0.3795513 +0.1409607 0.5284142 0.3795513 +0.1678172 0.5284142 0.3795513 +0.1950164 0.5284142 0.3795513 +0.2210581 0.5284142 0.3795513 +0.245636 0.5284142 0.3795513 +0.2686816 0.5284142 0.3795513 +0.2902431 0.5284142 0.3795513 +0.3104189 0.5284142 0.3795513 +0.3293248 0.5284142 0.3795513 +0.3470774 0.5284142 0.3795513 +0.3637862 0.5284142 0.3795513 +0.3795513 0.5284142 0.3795513 +0.3944623 0.5284142 0.3795513 +0.4085988 0.5284142 0.3795513 +0.4220313 0.5284142 0.3795513 +0.4348222 0.5284142 0.3795513 +0.4470264 0.5284142 0.3795513 +0.4586928 0.5284142 0.3795513 +0.4698649 0.5284142 0.3795513 +0.4805811 0.5284142 0.3795513 +0.490876 0.5284142 0.3795513 +0.5007803 0.5284142 0.3795513 +0.510322 0.5284142 0.3795513 +0.5195258 0.5284142 0.3795513 +0.5284142 0.5284142 0.3795513 +0.5370079 0.5284142 0.3795513 +0.5453253 0.5284142 0.3795513 +0.5533834 0.5284142 0.3795513 +0.5611974 0.5284142 0.3795513 +0.5687816 0.5284142 0.3795513 +0.092819 0.5370079 0.3795513 +0.1056428 0.5370079 0.3795513 +0.1201537 0.5370079 0.3795513 +0.1409607 0.5370079 0.3795513 +0.1678172 0.5370079 0.3795513 +0.1950164 0.5370079 0.3795513 +0.2210581 0.5370079 0.3795513 +0.245636 0.5370079 0.3795513 +0.2686816 0.5370079 0.3795513 +0.2902431 0.5370079 0.3795513 +0.3104189 0.5370079 0.3795513 +0.3293248 0.5370079 0.3795513 +0.3470774 0.5370079 0.3795513 +0.3637862 0.5370079 0.3795513 +0.3795513 0.5370079 0.3795513 +0.3944623 0.5370079 0.3795513 +0.4085988 0.5370079 0.3795513 +0.4220313 0.5370079 0.3795513 +0.4348222 0.5370079 0.3795513 +0.4470264 0.5370079 0.3795513 +0.4586928 0.5370079 0.3795513 +0.4698649 0.5370079 0.3795513 +0.4805811 0.5370079 0.3795513 +0.490876 0.5370079 0.3795513 +0.5007803 0.5370079 0.3795513 +0.510322 0.5370079 0.3795513 +0.5195258 0.5370079 0.3795513 +0.5284142 0.5370079 0.3795513 +0.5370079 0.5370079 0.3795513 +0.5453253 0.5370079 0.3795513 +0.5533834 0.5370079 0.3795513 +0.5611974 0.5370079 0.3795513 +0.5687816 0.5370079 0.3795513 +0.092819 0.5453253 0.3795513 +0.1056428 0.5453253 0.3795513 +0.1201537 0.5453253 0.3795513 +0.1409607 0.5453253 0.3795513 +0.1678172 0.5453253 0.3795513 +0.1950164 0.5453253 0.3795513 +0.2210581 0.5453253 0.3795513 +0.245636 0.5453253 0.3795513 +0.2686816 0.5453253 0.3795513 +0.2902431 0.5453253 0.3795513 +0.3104189 0.5453253 0.3795513 +0.3293248 0.5453253 0.3795513 +0.3470774 0.5453253 0.3795513 +0.3637862 0.5453253 0.3795513 +0.3795513 0.5453253 0.3795513 +0.3944623 0.5453253 0.3795513 +0.4085988 0.5453253 0.3795513 +0.4220313 0.5453253 0.3795513 +0.4348222 0.5453253 0.3795513 +0.4470264 0.5453253 0.3795513 +0.4586928 0.5453253 0.3795513 +0.4698649 0.5453253 0.3795513 +0.4805811 0.5453253 0.3795513 +0.490876 0.5453253 0.3795513 +0.5007803 0.5453253 0.3795513 +0.510322 0.5453253 0.3795513 +0.5195258 0.5453253 0.3795513 +0.5284142 0.5453253 0.3795513 +0.5370079 0.5453253 0.3795513 +0.5453253 0.5453253 0.3795513 +0.5533834 0.5453253 0.3795513 +0.5611974 0.5453253 0.3795513 +0.5687816 0.5453253 0.3795513 +0.092819 0.5533834 0.3795513 +0.1056428 0.5533834 0.3795513 +0.1201537 0.5533834 0.3795513 +0.1409607 0.5533834 0.3795513 +0.1678172 0.5533834 0.3795513 +0.1950164 0.5533834 0.3795513 +0.2210581 0.5533834 0.3795513 +0.245636 0.5533834 0.3795513 +0.2686816 0.5533834 0.3795513 +0.2902431 0.5533834 0.3795513 +0.3104189 0.5533834 0.3795513 +0.3293248 0.5533834 0.3795513 +0.3470774 0.5533834 0.3795513 +0.3637862 0.5533834 0.3795513 +0.3795513 0.5533834 0.3795513 +0.3944623 0.5533834 0.3795513 +0.4085988 0.5533834 0.3795513 +0.4220313 0.5533834 0.3795513 +0.4348222 0.5533834 0.3795513 +0.4470264 0.5533834 0.3795513 +0.4586928 0.5533834 0.3795513 +0.4698649 0.5533834 0.3795513 +0.4805811 0.5533834 0.3795513 +0.490876 0.5533834 0.3795513 +0.5007803 0.5533834 0.3795513 +0.510322 0.5533834 0.3795513 +0.5195258 0.5533834 0.3795513 +0.5284142 0.5533834 0.3795513 +0.5370079 0.5533834 0.3795513 +0.5453253 0.5533834 0.3795513 +0.5533834 0.5533834 0.3795513 +0.5611974 0.5533834 0.3795513 +0.5687816 0.5533834 0.3795513 +0.092819 0.5611974 0.3795513 +0.1056428 0.5611974 0.3795513 +0.1201537 0.5611974 0.3795513 +0.1409607 0.5611974 0.3795513 +0.1678172 0.5611974 0.3795513 +0.1950164 0.5611974 0.3795513 +0.2210581 0.5611974 0.3795513 +0.245636 0.5611974 0.3795513 +0.2686816 0.5611974 0.3795513 +0.2902431 0.5611974 0.3795513 +0.3104189 0.5611974 0.3795513 +0.3293248 0.5611974 0.3795513 +0.3470774 0.5611974 0.3795513 +0.3637862 0.5611974 0.3795513 +0.3795513 0.5611974 0.3795513 +0.3944623 0.5611974 0.3795513 +0.4085988 0.5611974 0.3795513 +0.4220313 0.5611974 0.3795513 +0.4348222 0.5611974 0.3795513 +0.4470264 0.5611974 0.3795513 +0.4586928 0.5611974 0.3795513 +0.4698649 0.5611974 0.3795513 +0.4805811 0.5611974 0.3795513 +0.490876 0.5611974 0.3795513 +0.5007803 0.5611974 0.3795513 +0.510322 0.5611974 0.3795513 +0.5195258 0.5611974 0.3795513 +0.5284142 0.5611974 0.3795513 +0.5370079 0.5611974 0.3795513 +0.5453253 0.5611974 0.3795513 +0.5533834 0.5611974 0.3795513 +0.5611974 0.5611974 0.3795513 +0.5687816 0.5611974 0.3795513 +0.092819 0.5687816 0.3795513 +0.1056428 0.5687816 0.3795513 +0.1201537 0.5687816 0.3795513 +0.1409607 0.5687816 0.3795513 +0.1678172 0.5687816 0.3795513 +0.1950164 0.5687816 0.3795513 +0.2210581 0.5687816 0.3795513 +0.245636 0.5687816 0.3795513 +0.2686816 0.5687816 0.3795513 +0.2902431 0.5687816 0.3795513 +0.3104189 0.5687816 0.3795513 +0.3293248 0.5687816 0.3795513 +0.3470774 0.5687816 0.3795513 +0.3637862 0.5687816 0.3795513 +0.3795513 0.5687816 0.3795513 +0.3944623 0.5687816 0.3795513 +0.4085988 0.5687816 0.3795513 +0.4220313 0.5687816 0.3795513 +0.4348222 0.5687816 0.3795513 +0.4470264 0.5687816 0.3795513 +0.4586928 0.5687816 0.3795513 +0.4698649 0.5687816 0.3795513 +0.4805811 0.5687816 0.3795513 +0.490876 0.5687816 0.3795513 +0.5007803 0.5687816 0.3795513 +0.510322 0.5687816 0.3795513 +0.5195258 0.5687816 0.3795513 +0.5284142 0.5687816 0.3795513 +0.5370079 0.5687816 0.3795513 +0.5453253 0.5687816 0.3795513 +0.5533834 0.5687816 0.3795513 +0.5611974 0.5687816 0.3795513 +0.5687816 0.5687816 0.3795513 +0.092819 0.092819 0.3944623 +0.1056428 0.092819 0.3944623 +0.1201537 0.092819 0.3944623 +0.1409607 0.092819 0.3944623 +0.1678172 0.092819 0.3944623 +0.1950164 0.092819 0.3944623 +0.2210581 0.092819 0.3944623 +0.245636 0.092819 0.3944623 +0.2686816 0.092819 0.3944623 +0.2902431 0.092819 0.3944623 +0.3104189 0.092819 0.3944623 +0.3293248 0.092819 0.3944623 +0.3470774 0.092819 0.3944623 +0.3637862 0.092819 0.3944623 +0.3795513 0.092819 0.3944623 +0.3944623 0.092819 0.3944623 +0.4085988 0.092819 0.3944623 +0.4220313 0.092819 0.3944623 +0.4348222 0.092819 0.3944623 +0.4470264 0.092819 0.3944623 +0.4586928 0.092819 0.3944623 +0.4698649 0.092819 0.3944623 +0.4805811 0.092819 0.3944623 +0.490876 0.092819 0.3944623 +0.5007803 0.092819 0.3944623 +0.510322 0.092819 0.3944623 +0.5195258 0.092819 0.3944623 +0.5284142 0.092819 0.3944623 +0.5370079 0.092819 0.3944623 +0.5453253 0.092819 0.3944623 +0.5533834 0.092819 0.3944623 +0.5611974 0.092819 0.3944623 +0.5687816 0.092819 0.3944623 +0.092819 0.1056428 0.3944623 +0.1056428 0.1056428 0.3944623 +0.1201537 0.1056428 0.3944623 +0.1409607 0.1056428 0.3944623 +0.1678172 0.1056428 0.3944623 +0.1950164 0.1056428 0.3944623 +0.2210581 0.1056428 0.3944623 +0.245636 0.1056428 0.3944623 +0.2686816 0.1056428 0.3944623 +0.2902431 0.1056428 0.3944623 +0.3104189 0.1056428 0.3944623 +0.3293248 0.1056428 0.3944623 +0.3470774 0.1056428 0.3944623 +0.3637862 0.1056428 0.3944623 +0.3795513 0.1056428 0.3944623 +0.3944623 0.1056428 0.3944623 +0.4085988 0.1056428 0.3944623 +0.4220313 0.1056428 0.3944623 +0.4348222 0.1056428 0.3944623 +0.4470264 0.1056428 0.3944623 +0.4586928 0.1056428 0.3944623 +0.4698649 0.1056428 0.3944623 +0.4805811 0.1056428 0.3944623 +0.490876 0.1056428 0.3944623 +0.5007803 0.1056428 0.3944623 +0.510322 0.1056428 0.3944623 +0.5195258 0.1056428 0.3944623 +0.5284142 0.1056428 0.3944623 +0.5370079 0.1056428 0.3944623 +0.5453253 0.1056428 0.3944623 +0.5533834 0.1056428 0.3944623 +0.5611974 0.1056428 0.3944623 +0.5687816 0.1056428 0.3944623 +0.092819 0.1201537 0.3944623 +0.1056428 0.1201537 0.3944623 +0.1201537 0.1201537 0.3944623 +0.1409607 0.1201537 0.3944623 +0.1678172 0.1201537 0.3944623 +0.1950164 0.1201537 0.3944623 +0.2210581 0.1201537 0.3944623 +0.245636 0.1201537 0.3944623 +0.2686816 0.1201537 0.3944623 +0.2902431 0.1201537 0.3944623 +0.3104189 0.1201537 0.3944623 +0.3293248 0.1201537 0.3944623 +0.3470774 0.1201537 0.3944623 +0.3637862 0.1201537 0.3944623 +0.3795513 0.1201537 0.3944623 +0.3944623 0.1201537 0.3944623 +0.4085988 0.1201537 0.3944623 +0.4220313 0.1201537 0.3944623 +0.4348222 0.1201537 0.3944623 +0.4470264 0.1201537 0.3944623 +0.4586928 0.1201537 0.3944623 +0.4698649 0.1201537 0.3944623 +0.4805811 0.1201537 0.3944623 +0.490876 0.1201537 0.3944623 +0.5007803 0.1201537 0.3944623 +0.510322 0.1201537 0.3944623 +0.5195258 0.1201537 0.3944623 +0.5284142 0.1201537 0.3944623 +0.5370079 0.1201537 0.3944623 +0.5453253 0.1201537 0.3944623 +0.5533834 0.1201537 0.3944623 +0.5611974 0.1201537 0.3944623 +0.5687816 0.1201537 0.3944623 +0.092819 0.1409607 0.3944623 +0.1056428 0.1409607 0.3944623 +0.1201537 0.1409607 0.3944623 +0.1409607 0.1409607 0.3944623 +0.1678172 0.1409607 0.3944623 +0.1950164 0.1409607 0.3944623 +0.2210581 0.1409607 0.3944623 +0.245636 0.1409607 0.3944623 +0.2686816 0.1409607 0.3944623 +0.2902431 0.1409607 0.3944623 +0.3104189 0.1409607 0.3944623 +0.3293248 0.1409607 0.3944623 +0.3470774 0.1409607 0.3944623 +0.3637862 0.1409607 0.3944623 +0.3795513 0.1409607 0.3944623 +0.3944623 0.1409607 0.3944623 +0.4085988 0.1409607 0.3944623 +0.4220313 0.1409607 0.3944623 +0.4348222 0.1409607 0.3944623 +0.4470264 0.1409607 0.3944623 +0.4586928 0.1409607 0.3944623 +0.4698649 0.1409607 0.3944623 +0.4805811 0.1409607 0.3944623 +0.490876 0.1409607 0.3944623 +0.5007803 0.1409607 0.3944623 +0.510322 0.1409607 0.3944623 +0.5195258 0.1409607 0.3944623 +0.5284142 0.1409607 0.3944623 +0.5370079 0.1409607 0.3944623 +0.5453253 0.1409607 0.3944623 +0.5533834 0.1409607 0.3944623 +0.5611974 0.1409607 0.3944623 +0.5687816 0.1409607 0.3944623 +0.092819 0.1678172 0.3944623 +0.1056428 0.1678172 0.3944623 +0.1201537 0.1678172 0.3944623 +0.1409607 0.1678172 0.3944623 +0.1678172 0.1678172 0.3944623 +0.1950164 0.1678172 0.3944623 +0.2210581 0.1678172 0.3944623 +0.245636 0.1678172 0.3944623 +0.2686816 0.1678172 0.3944623 +0.2902431 0.1678172 0.3944623 +0.3104189 0.1678172 0.3944623 +0.3293248 0.1678172 0.3944623 +0.3470774 0.1678172 0.3944623 +0.3637862 0.1678172 0.3944623 +0.3795513 0.1678172 0.3944623 +0.3944623 0.1678172 0.3944623 +0.4085988 0.1678172 0.3944623 +0.4220313 0.1678172 0.3944623 +0.4348222 0.1678172 0.3944623 +0.4470264 0.1678172 0.3944623 +0.4586928 0.1678172 0.3944623 +0.4698649 0.1678172 0.3944623 +0.4805811 0.1678172 0.3944623 +0.490876 0.1678172 0.3944623 +0.5007803 0.1678172 0.3944623 +0.510322 0.1678172 0.3944623 +0.5195258 0.1678172 0.3944623 +0.5284142 0.1678172 0.3944623 +0.5370079 0.1678172 0.3944623 +0.5453253 0.1678172 0.3944623 +0.5533834 0.1678172 0.3944623 +0.5611974 0.1678172 0.3944623 +0.5687816 0.1678172 0.3944623 +0.092819 0.1950164 0.3944623 +0.1056428 0.1950164 0.3944623 +0.1201537 0.1950164 0.3944623 +0.1409607 0.1950164 0.3944623 +0.1678172 0.1950164 0.3944623 +0.1950164 0.1950164 0.3944623 +0.2210581 0.1950164 0.3944623 +0.245636 0.1950164 0.3944623 +0.2686816 0.1950164 0.3944623 +0.2902431 0.1950164 0.3944623 +0.3104189 0.1950164 0.3944623 +0.3293248 0.1950164 0.3944623 +0.3470774 0.1950164 0.3944623 +0.3637862 0.1950164 0.3944623 +0.3795513 0.1950164 0.3944623 +0.3944623 0.1950164 0.3944623 +0.4085988 0.1950164 0.3944623 +0.4220313 0.1950164 0.3944623 +0.4348222 0.1950164 0.3944623 +0.4470264 0.1950164 0.3944623 +0.4586928 0.1950164 0.3944623 +0.4698649 0.1950164 0.3944623 +0.4805811 0.1950164 0.3944623 +0.490876 0.1950164 0.3944623 +0.5007803 0.1950164 0.3944623 +0.510322 0.1950164 0.3944623 +0.5195258 0.1950164 0.3944623 +0.5284142 0.1950164 0.3944623 +0.5370079 0.1950164 0.3944623 +0.5453253 0.1950164 0.3944623 +0.5533834 0.1950164 0.3944623 +0.5611974 0.1950164 0.3944623 +0.5687816 0.1950164 0.3944623 +0.092819 0.2210581 0.3944623 +0.1056428 0.2210581 0.3944623 +0.1201537 0.2210581 0.3944623 +0.1409607 0.2210581 0.3944623 +0.1678172 0.2210581 0.3944623 +0.1950164 0.2210581 0.3944623 +0.2210581 0.2210581 0.3944623 +0.245636 0.2210581 0.3944623 +0.2686816 0.2210581 0.3944623 +0.2902431 0.2210581 0.3944623 +0.3104189 0.2210581 0.3944623 +0.3293248 0.2210581 0.3944623 +0.3470774 0.2210581 0.3944623 +0.3637862 0.2210581 0.3944623 +0.3795513 0.2210581 0.3944623 +0.3944623 0.2210581 0.3944623 +0.4085988 0.2210581 0.3944623 +0.4220313 0.2210581 0.3944623 +0.4348222 0.2210581 0.3944623 +0.4470264 0.2210581 0.3944623 +0.4586928 0.2210581 0.3944623 +0.4698649 0.2210581 0.3944623 +0.4805811 0.2210581 0.3944623 +0.490876 0.2210581 0.3944623 +0.5007803 0.2210581 0.3944623 +0.510322 0.2210581 0.3944623 +0.5195258 0.2210581 0.3944623 +0.5284142 0.2210581 0.3944623 +0.5370079 0.2210581 0.3944623 +0.5453253 0.2210581 0.3944623 +0.5533834 0.2210581 0.3944623 +0.5611974 0.2210581 0.3944623 +0.5687816 0.2210581 0.3944623 +0.092819 0.245636 0.3944623 +0.1056428 0.245636 0.3944623 +0.1201537 0.245636 0.3944623 +0.1409607 0.245636 0.3944623 +0.1678172 0.245636 0.3944623 +0.1950164 0.245636 0.3944623 +0.2210581 0.245636 0.3944623 +0.245636 0.245636 0.3944623 +0.2686816 0.245636 0.3944623 +0.2902431 0.245636 0.3944623 +0.3104189 0.245636 0.3944623 +0.3293248 0.245636 0.3944623 +0.3470774 0.245636 0.3944623 +0.3637862 0.245636 0.3944623 +0.3795513 0.245636 0.3944623 +0.3944623 0.245636 0.3944623 +0.4085988 0.245636 0.3944623 +0.4220313 0.245636 0.3944623 +0.4348222 0.245636 0.3944623 +0.4470264 0.245636 0.3944623 +0.4586928 0.245636 0.3944623 +0.4698649 0.245636 0.3944623 +0.4805811 0.245636 0.3944623 +0.490876 0.245636 0.3944623 +0.5007803 0.245636 0.3944623 +0.510322 0.245636 0.3944623 +0.5195258 0.245636 0.3944623 +0.5284142 0.245636 0.3944623 +0.5370079 0.245636 0.3944623 +0.5453253 0.245636 0.3944623 +0.5533834 0.245636 0.3944623 +0.5611974 0.245636 0.3944623 +0.5687816 0.245636 0.3944623 +0.092819 0.2686816 0.3944623 +0.1056428 0.2686816 0.3944623 +0.1201537 0.2686816 0.3944623 +0.1409607 0.2686816 0.3944623 +0.1678172 0.2686816 0.3944623 +0.1950164 0.2686816 0.3944623 +0.2210581 0.2686816 0.3944623 +0.245636 0.2686816 0.3944623 +0.2686816 0.2686816 0.3944623 +0.2902431 0.2686816 0.3944623 +0.3104189 0.2686816 0.3944623 +0.3293248 0.2686816 0.3944623 +0.3470774 0.2686816 0.3944623 +0.3637862 0.2686816 0.3944623 +0.3795513 0.2686816 0.3944623 +0.3944623 0.2686816 0.3944623 +0.4085988 0.2686816 0.3944623 +0.4220313 0.2686816 0.3944623 +0.4348222 0.2686816 0.3944623 +0.4470264 0.2686816 0.3944623 +0.4586928 0.2686816 0.3944623 +0.4698649 0.2686816 0.3944623 +0.4805811 0.2686816 0.3944623 +0.490876 0.2686816 0.3944623 +0.5007803 0.2686816 0.3944623 +0.510322 0.2686816 0.3944623 +0.5195258 0.2686816 0.3944623 +0.5284142 0.2686816 0.3944623 +0.5370079 0.2686816 0.3944623 +0.5453253 0.2686816 0.3944623 +0.5533834 0.2686816 0.3944623 +0.5611974 0.2686816 0.3944623 +0.5687816 0.2686816 0.3944623 +0.092819 0.2902431 0.3944623 +0.1056428 0.2902431 0.3944623 +0.1201537 0.2902431 0.3944623 +0.1409607 0.2902431 0.3944623 +0.1678172 0.2902431 0.3944623 +0.1950164 0.2902431 0.3944623 +0.2210581 0.2902431 0.3944623 +0.245636 0.2902431 0.3944623 +0.2686816 0.2902431 0.3944623 +0.2902431 0.2902431 0.3944623 +0.3104189 0.2902431 0.3944623 +0.3293248 0.2902431 0.3944623 +0.3470774 0.2902431 0.3944623 +0.3637862 0.2902431 0.3944623 +0.3795513 0.2902431 0.3944623 +0.3944623 0.2902431 0.3944623 +0.4085988 0.2902431 0.3944623 +0.4220313 0.2902431 0.3944623 +0.4348222 0.2902431 0.3944623 +0.4470264 0.2902431 0.3944623 +0.4586928 0.2902431 0.3944623 +0.4698649 0.2902431 0.3944623 +0.4805811 0.2902431 0.3944623 +0.490876 0.2902431 0.3944623 +0.5007803 0.2902431 0.3944623 +0.510322 0.2902431 0.3944623 +0.5195258 0.2902431 0.3944623 +0.5284142 0.2902431 0.3944623 +0.5370079 0.2902431 0.3944623 +0.5453253 0.2902431 0.3944623 +0.5533834 0.2902431 0.3944623 +0.5611974 0.2902431 0.3944623 +0.5687816 0.2902431 0.3944623 +0.092819 0.3104189 0.3944623 +0.1056428 0.3104189 0.3944623 +0.1201537 0.3104189 0.3944623 +0.1409607 0.3104189 0.3944623 +0.1678172 0.3104189 0.3944623 +0.1950164 0.3104189 0.3944623 +0.2210581 0.3104189 0.3944623 +0.245636 0.3104189 0.3944623 +0.2686816 0.3104189 0.3944623 +0.2902431 0.3104189 0.3944623 +0.3104189 0.3104189 0.3944623 +0.3293248 0.3104189 0.3944623 +0.3470774 0.3104189 0.3944623 +0.3637862 0.3104189 0.3944623 +0.3795513 0.3104189 0.3944623 +0.3944623 0.3104189 0.3944623 +0.4085988 0.3104189 0.3944623 +0.4220313 0.3104189 0.3944623 +0.4348222 0.3104189 0.3944623 +0.4470264 0.3104189 0.3944623 +0.4586928 0.3104189 0.3944623 +0.4698649 0.3104189 0.3944623 +0.4805811 0.3104189 0.3944623 +0.490876 0.3104189 0.3944623 +0.5007803 0.3104189 0.3944623 +0.510322 0.3104189 0.3944623 +0.5195258 0.3104189 0.3944623 +0.5284142 0.3104189 0.3944623 +0.5370079 0.3104189 0.3944623 +0.5453253 0.3104189 0.3944623 +0.5533834 0.3104189 0.3944623 +0.5611974 0.3104189 0.3944623 +0.5687816 0.3104189 0.3944623 +0.092819 0.3293248 0.3944623 +0.1056428 0.3293248 0.3944623 +0.1201537 0.3293248 0.3944623 +0.1409607 0.3293248 0.3944623 +0.1678172 0.3293248 0.3944623 +0.1950164 0.3293248 0.3944623 +0.2210581 0.3293248 0.3944623 +0.245636 0.3293248 0.3944623 +0.2686816 0.3293248 0.3944623 +0.2902431 0.3293248 0.3944623 +0.3104189 0.3293248 0.3944623 +0.3293248 0.3293248 0.3944623 +0.3470774 0.3293248 0.3944623 +0.3637862 0.3293248 0.3944623 +0.3795513 0.3293248 0.3944623 +0.3944623 0.3293248 0.3944623 +0.4085988 0.3293248 0.3944623 +0.4220313 0.3293248 0.3944623 +0.4348222 0.3293248 0.3944623 +0.4470264 0.3293248 0.3944623 +0.4586928 0.3293248 0.3944623 +0.4698649 0.3293248 0.3944623 +0.4805811 0.3293248 0.3944623 +0.490876 0.3293248 0.3944623 +0.5007803 0.3293248 0.3944623 +0.510322 0.3293248 0.3944623 +0.5195258 0.3293248 0.3944623 +0.5284142 0.3293248 0.3944623 +0.5370079 0.3293248 0.3944623 +0.5453253 0.3293248 0.3944623 +0.5533834 0.3293248 0.3944623 +0.5611974 0.3293248 0.3944623 +0.5687816 0.3293248 0.3944623 +0.092819 0.3470774 0.3944623 +0.1056428 0.3470774 0.3944623 +0.1201537 0.3470774 0.3944623 +0.1409607 0.3470774 0.3944623 +0.1678172 0.3470774 0.3944623 +0.1950164 0.3470774 0.3944623 +0.2210581 0.3470774 0.3944623 +0.245636 0.3470774 0.3944623 +0.2686816 0.3470774 0.3944623 +0.2902431 0.3470774 0.3944623 +0.3104189 0.3470774 0.3944623 +0.3293248 0.3470774 0.3944623 +0.3470774 0.3470774 0.3944623 +0.3637862 0.3470774 0.3944623 +0.3795513 0.3470774 0.3944623 +0.3944623 0.3470774 0.3944623 +0.4085988 0.3470774 0.3944623 +0.4220313 0.3470774 0.3944623 +0.4348222 0.3470774 0.3944623 +0.4470264 0.3470774 0.3944623 +0.4586928 0.3470774 0.3944623 +0.4698649 0.3470774 0.3944623 +0.4805811 0.3470774 0.3944623 +0.490876 0.3470774 0.3944623 +0.5007803 0.3470774 0.3944623 +0.510322 0.3470774 0.3944623 +0.5195258 0.3470774 0.3944623 +0.5284142 0.3470774 0.3944623 +0.5370079 0.3470774 0.3944623 +0.5453253 0.3470774 0.3944623 +0.5533834 0.3470774 0.3944623 +0.5611974 0.3470774 0.3944623 +0.5687816 0.3470774 0.3944623 +0.092819 0.3637862 0.3944623 +0.1056428 0.3637862 0.3944623 +0.1201537 0.3637862 0.3944623 +0.1409607 0.3637862 0.3944623 +0.1678172 0.3637862 0.3944623 +0.1950164 0.3637862 0.3944623 +0.2210581 0.3637862 0.3944623 +0.245636 0.3637862 0.3944623 +0.2686816 0.3637862 0.3944623 +0.2902431 0.3637862 0.3944623 +0.3104189 0.3637862 0.3944623 +0.3293248 0.3637862 0.3944623 +0.3470774 0.3637862 0.3944623 +0.3637862 0.3637862 0.3944623 +0.3795513 0.3637862 0.3944623 +0.3944623 0.3637862 0.3944623 +0.4085988 0.3637862 0.3944623 +0.4220313 0.3637862 0.3944623 +0.4348222 0.3637862 0.3944623 +0.4470264 0.3637862 0.3944623 +0.4586928 0.3637862 0.3944623 +0.4698649 0.3637862 0.3944623 +0.4805811 0.3637862 0.3944623 +0.490876 0.3637862 0.3944623 +0.5007803 0.3637862 0.3944623 +0.510322 0.3637862 0.3944623 +0.5195258 0.3637862 0.3944623 +0.5284142 0.3637862 0.3944623 +0.5370079 0.3637862 0.3944623 +0.5453253 0.3637862 0.3944623 +0.5533834 0.3637862 0.3944623 +0.5611974 0.3637862 0.3944623 +0.5687816 0.3637862 0.3944623 +0.092819 0.3795513 0.3944623 +0.1056428 0.3795513 0.3944623 +0.1201537 0.3795513 0.3944623 +0.1409607 0.3795513 0.3944623 +0.1678172 0.3795513 0.3944623 +0.1950164 0.3795513 0.3944623 +0.2210581 0.3795513 0.3944623 +0.245636 0.3795513 0.3944623 +0.2686816 0.3795513 0.3944623 +0.2902431 0.3795513 0.3944623 +0.3104189 0.3795513 0.3944623 +0.3293248 0.3795513 0.3944623 +0.3470774 0.3795513 0.3944623 +0.3637862 0.3795513 0.3944623 +0.3795513 0.3795513 0.3944623 +0.3944623 0.3795513 0.3944623 +0.4085988 0.3795513 0.3944623 +0.4220313 0.3795513 0.3944623 +0.4348222 0.3795513 0.3944623 +0.4470264 0.3795513 0.3944623 +0.4586928 0.3795513 0.3944623 +0.4698649 0.3795513 0.3944623 +0.4805811 0.3795513 0.3944623 +0.490876 0.3795513 0.3944623 +0.5007803 0.3795513 0.3944623 +0.510322 0.3795513 0.3944623 +0.5195258 0.3795513 0.3944623 +0.5284142 0.3795513 0.3944623 +0.5370079 0.3795513 0.3944623 +0.5453253 0.3795513 0.3944623 +0.5533834 0.3795513 0.3944623 +0.5611974 0.3795513 0.3944623 +0.5687816 0.3795513 0.3944623 +0.092819 0.3944623 0.3944623 +0.1056428 0.3944623 0.3944623 +0.1201537 0.3944623 0.3944623 +0.1409607 0.3944623 0.3944623 +0.1678172 0.3944623 0.3944623 +0.1950164 0.3944623 0.3944623 +0.2210581 0.3944623 0.3944623 +0.245636 0.3944623 0.3944623 +0.2686816 0.3944623 0.3944623 +0.2902431 0.3944623 0.3944623 +0.3104189 0.3944623 0.3944623 +0.3293248 0.3944623 0.3944623 +0.3470774 0.3944623 0.3944623 +0.3637862 0.3944623 0.3944623 +0.3795513 0.3944623 0.3944623 +0.3944623 0.3944623 0.3944623 +0.4085988 0.3944623 0.3944623 +0.4220313 0.3944623 0.3944623 +0.4348222 0.3944623 0.3944623 +0.4470264 0.3944623 0.3944623 +0.4586928 0.3944623 0.3944623 +0.4698649 0.3944623 0.3944623 +0.4805811 0.3944623 0.3944623 +0.490876 0.3944623 0.3944623 +0.5007803 0.3944623 0.3944623 +0.510322 0.3944623 0.3944623 +0.5195258 0.3944623 0.3944623 +0.5284142 0.3944623 0.3944623 +0.5370079 0.3944623 0.3944623 +0.5453253 0.3944623 0.3944623 +0.5533834 0.3944623 0.3944623 +0.5611974 0.3944623 0.3944623 +0.5687816 0.3944623 0.3944623 +0.092819 0.4085988 0.3944623 +0.1056428 0.4085988 0.3944623 +0.1201537 0.4085988 0.3944623 +0.1409607 0.4085988 0.3944623 +0.1678172 0.4085988 0.3944623 +0.1950164 0.4085988 0.3944623 +0.2210581 0.4085988 0.3944623 +0.245636 0.4085988 0.3944623 +0.2686816 0.4085988 0.3944623 +0.2902431 0.4085988 0.3944623 +0.3104189 0.4085988 0.3944623 +0.3293248 0.4085988 0.3944623 +0.3470774 0.4085988 0.3944623 +0.3637862 0.4085988 0.3944623 +0.3795513 0.4085988 0.3944623 +0.3944623 0.4085988 0.3944623 +0.4085988 0.4085988 0.3944623 +0.4220313 0.4085988 0.3944623 +0.4348222 0.4085988 0.3944623 +0.4470264 0.4085988 0.3944623 +0.4586928 0.4085988 0.3944623 +0.4698649 0.4085988 0.3944623 +0.4805811 0.4085988 0.3944623 +0.490876 0.4085988 0.3944623 +0.5007803 0.4085988 0.3944623 +0.510322 0.4085988 0.3944623 +0.5195258 0.4085988 0.3944623 +0.5284142 0.4085988 0.3944623 +0.5370079 0.4085988 0.3944623 +0.5453253 0.4085988 0.3944623 +0.5533834 0.4085988 0.3944623 +0.5611974 0.4085988 0.3944623 +0.5687816 0.4085988 0.3944623 +0.092819 0.4220313 0.3944623 +0.1056428 0.4220313 0.3944623 +0.1201537 0.4220313 0.3944623 +0.1409607 0.4220313 0.3944623 +0.1678172 0.4220313 0.3944623 +0.1950164 0.4220313 0.3944623 +0.2210581 0.4220313 0.3944623 +0.245636 0.4220313 0.3944623 +0.2686816 0.4220313 0.3944623 +0.2902431 0.4220313 0.3944623 +0.3104189 0.4220313 0.3944623 +0.3293248 0.4220313 0.3944623 +0.3470774 0.4220313 0.3944623 +0.3637862 0.4220313 0.3944623 +0.3795513 0.4220313 0.3944623 +0.3944623 0.4220313 0.3944623 +0.4085988 0.4220313 0.3944623 +0.4220313 0.4220313 0.3944623 +0.4348222 0.4220313 0.3944623 +0.4470264 0.4220313 0.3944623 +0.4586928 0.4220313 0.3944623 +0.4698649 0.4220313 0.3944623 +0.4805811 0.4220313 0.3944623 +0.490876 0.4220313 0.3944623 +0.5007803 0.4220313 0.3944623 +0.510322 0.4220313 0.3944623 +0.5195258 0.4220313 0.3944623 +0.5284142 0.4220313 0.3944623 +0.5370079 0.4220313 0.3944623 +0.5453253 0.4220313 0.3944623 +0.5533834 0.4220313 0.3944623 +0.5611974 0.4220313 0.3944623 +0.5687816 0.4220313 0.3944623 +0.092819 0.4348222 0.3944623 +0.1056428 0.4348222 0.3944623 +0.1201537 0.4348222 0.3944623 +0.1409607 0.4348222 0.3944623 +0.1678172 0.4348222 0.3944623 +0.1950164 0.4348222 0.3944623 +0.2210581 0.4348222 0.3944623 +0.245636 0.4348222 0.3944623 +0.2686816 0.4348222 0.3944623 +0.2902431 0.4348222 0.3944623 +0.3104189 0.4348222 0.3944623 +0.3293248 0.4348222 0.3944623 +0.3470774 0.4348222 0.3944623 +0.3637862 0.4348222 0.3944623 +0.3795513 0.4348222 0.3944623 +0.3944623 0.4348222 0.3944623 +0.4085988 0.4348222 0.3944623 +0.4220313 0.4348222 0.3944623 +0.4348222 0.4348222 0.3944623 +0.4470264 0.4348222 0.3944623 +0.4586928 0.4348222 0.3944623 +0.4698649 0.4348222 0.3944623 +0.4805811 0.4348222 0.3944623 +0.490876 0.4348222 0.3944623 +0.5007803 0.4348222 0.3944623 +0.510322 0.4348222 0.3944623 +0.5195258 0.4348222 0.3944623 +0.5284142 0.4348222 0.3944623 +0.5370079 0.4348222 0.3944623 +0.5453253 0.4348222 0.3944623 +0.5533834 0.4348222 0.3944623 +0.5611974 0.4348222 0.3944623 +0.5687816 0.4348222 0.3944623 +0.092819 0.4470264 0.3944623 +0.1056428 0.4470264 0.3944623 +0.1201537 0.4470264 0.3944623 +0.1409607 0.4470264 0.3944623 +0.1678172 0.4470264 0.3944623 +0.1950164 0.4470264 0.3944623 +0.2210581 0.4470264 0.3944623 +0.245636 0.4470264 0.3944623 +0.2686816 0.4470264 0.3944623 +0.2902431 0.4470264 0.3944623 +0.3104189 0.4470264 0.3944623 +0.3293248 0.4470264 0.3944623 +0.3470774 0.4470264 0.3944623 +0.3637862 0.4470264 0.3944623 +0.3795513 0.4470264 0.3944623 +0.3944623 0.4470264 0.3944623 +0.4085988 0.4470264 0.3944623 +0.4220313 0.4470264 0.3944623 +0.4348222 0.4470264 0.3944623 +0.4470264 0.4470264 0.3944623 +0.4586928 0.4470264 0.3944623 +0.4698649 0.4470264 0.3944623 +0.4805811 0.4470264 0.3944623 +0.490876 0.4470264 0.3944623 +0.5007803 0.4470264 0.3944623 +0.510322 0.4470264 0.3944623 +0.5195258 0.4470264 0.3944623 +0.5284142 0.4470264 0.3944623 +0.5370079 0.4470264 0.3944623 +0.5453253 0.4470264 0.3944623 +0.5533834 0.4470264 0.3944623 +0.5611974 0.4470264 0.3944623 +0.5687816 0.4470264 0.3944623 +0.092819 0.4586928 0.3944623 +0.1056428 0.4586928 0.3944623 +0.1201537 0.4586928 0.3944623 +0.1409607 0.4586928 0.3944623 +0.1678172 0.4586928 0.3944623 +0.1950164 0.4586928 0.3944623 +0.2210581 0.4586928 0.3944623 +0.245636 0.4586928 0.3944623 +0.2686816 0.4586928 0.3944623 +0.2902431 0.4586928 0.3944623 +0.3104189 0.4586928 0.3944623 +0.3293248 0.4586928 0.3944623 +0.3470774 0.4586928 0.3944623 +0.3637862 0.4586928 0.3944623 +0.3795513 0.4586928 0.3944623 +0.3944623 0.4586928 0.3944623 +0.4085988 0.4586928 0.3944623 +0.4220313 0.4586928 0.3944623 +0.4348222 0.4586928 0.3944623 +0.4470264 0.4586928 0.3944623 +0.4586928 0.4586928 0.3944623 +0.4698649 0.4586928 0.3944623 +0.4805811 0.4586928 0.3944623 +0.490876 0.4586928 0.3944623 +0.5007803 0.4586928 0.3944623 +0.510322 0.4586928 0.3944623 +0.5195258 0.4586928 0.3944623 +0.5284142 0.4586928 0.3944623 +0.5370079 0.4586928 0.3944623 +0.5453253 0.4586928 0.3944623 +0.5533834 0.4586928 0.3944623 +0.5611974 0.4586928 0.3944623 +0.5687816 0.4586928 0.3944623 +0.092819 0.4698649 0.3944623 +0.1056428 0.4698649 0.3944623 +0.1201537 0.4698649 0.3944623 +0.1409607 0.4698649 0.3944623 +0.1678172 0.4698649 0.3944623 +0.1950164 0.4698649 0.3944623 +0.2210581 0.4698649 0.3944623 +0.245636 0.4698649 0.3944623 +0.2686816 0.4698649 0.3944623 +0.2902431 0.4698649 0.3944623 +0.3104189 0.4698649 0.3944623 +0.3293248 0.4698649 0.3944623 +0.3470774 0.4698649 0.3944623 +0.3637862 0.4698649 0.3944623 +0.3795513 0.4698649 0.3944623 +0.3944623 0.4698649 0.3944623 +0.4085988 0.4698649 0.3944623 +0.4220313 0.4698649 0.3944623 +0.4348222 0.4698649 0.3944623 +0.4470264 0.4698649 0.3944623 +0.4586928 0.4698649 0.3944623 +0.4698649 0.4698649 0.3944623 +0.4805811 0.4698649 0.3944623 +0.490876 0.4698649 0.3944623 +0.5007803 0.4698649 0.3944623 +0.510322 0.4698649 0.3944623 +0.5195258 0.4698649 0.3944623 +0.5284142 0.4698649 0.3944623 +0.5370079 0.4698649 0.3944623 +0.5453253 0.4698649 0.3944623 +0.5533834 0.4698649 0.3944623 +0.5611974 0.4698649 0.3944623 +0.5687816 0.4698649 0.3944623 +0.092819 0.4805811 0.3944623 +0.1056428 0.4805811 0.3944623 +0.1201537 0.4805811 0.3944623 +0.1409607 0.4805811 0.3944623 +0.1678172 0.4805811 0.3944623 +0.1950164 0.4805811 0.3944623 +0.2210581 0.4805811 0.3944623 +0.245636 0.4805811 0.3944623 +0.2686816 0.4805811 0.3944623 +0.2902431 0.4805811 0.3944623 +0.3104189 0.4805811 0.3944623 +0.3293248 0.4805811 0.3944623 +0.3470774 0.4805811 0.3944623 +0.3637862 0.4805811 0.3944623 +0.3795513 0.4805811 0.3944623 +0.3944623 0.4805811 0.3944623 +0.4085988 0.4805811 0.3944623 +0.4220313 0.4805811 0.3944623 +0.4348222 0.4805811 0.3944623 +0.4470264 0.4805811 0.3944623 +0.4586928 0.4805811 0.3944623 +0.4698649 0.4805811 0.3944623 +0.4805811 0.4805811 0.3944623 +0.490876 0.4805811 0.3944623 +0.5007803 0.4805811 0.3944623 +0.510322 0.4805811 0.3944623 +0.5195258 0.4805811 0.3944623 +0.5284142 0.4805811 0.3944623 +0.5370079 0.4805811 0.3944623 +0.5453253 0.4805811 0.3944623 +0.5533834 0.4805811 0.3944623 +0.5611974 0.4805811 0.3944623 +0.5687816 0.4805811 0.3944623 +0.092819 0.490876 0.3944623 +0.1056428 0.490876 0.3944623 +0.1201537 0.490876 0.3944623 +0.1409607 0.490876 0.3944623 +0.1678172 0.490876 0.3944623 +0.1950164 0.490876 0.3944623 +0.2210581 0.490876 0.3944623 +0.245636 0.490876 0.3944623 +0.2686816 0.490876 0.3944623 +0.2902431 0.490876 0.3944623 +0.3104189 0.490876 0.3944623 +0.3293248 0.490876 0.3944623 +0.3470774 0.490876 0.3944623 +0.3637862 0.490876 0.3944623 +0.3795513 0.490876 0.3944623 +0.3944623 0.490876 0.3944623 +0.4085988 0.490876 0.3944623 +0.4220313 0.490876 0.3944623 +0.4348222 0.490876 0.3944623 +0.4470264 0.490876 0.3944623 +0.4586928 0.490876 0.3944623 +0.4698649 0.490876 0.3944623 +0.4805811 0.490876 0.3944623 +0.490876 0.490876 0.3944623 +0.5007803 0.490876 0.3944623 +0.510322 0.490876 0.3944623 +0.5195258 0.490876 0.3944623 +0.5284142 0.490876 0.3944623 +0.5370079 0.490876 0.3944623 +0.5453253 0.490876 0.3944623 +0.5533834 0.490876 0.3944623 +0.5611974 0.490876 0.3944623 +0.5687816 0.490876 0.3944623 +0.092819 0.5007803 0.3944623 +0.1056428 0.5007803 0.3944623 +0.1201537 0.5007803 0.3944623 +0.1409607 0.5007803 0.3944623 +0.1678172 0.5007803 0.3944623 +0.1950164 0.5007803 0.3944623 +0.2210581 0.5007803 0.3944623 +0.245636 0.5007803 0.3944623 +0.2686816 0.5007803 0.3944623 +0.2902431 0.5007803 0.3944623 +0.3104189 0.5007803 0.3944623 +0.3293248 0.5007803 0.3944623 +0.3470774 0.5007803 0.3944623 +0.3637862 0.5007803 0.3944623 +0.3795513 0.5007803 0.3944623 +0.3944623 0.5007803 0.3944623 +0.4085988 0.5007803 0.3944623 +0.4220313 0.5007803 0.3944623 +0.4348222 0.5007803 0.3944623 +0.4470264 0.5007803 0.3944623 +0.4586928 0.5007803 0.3944623 +0.4698649 0.5007803 0.3944623 +0.4805811 0.5007803 0.3944623 +0.490876 0.5007803 0.3944623 +0.5007803 0.5007803 0.3944623 +0.510322 0.5007803 0.3944623 +0.5195258 0.5007803 0.3944623 +0.5284142 0.5007803 0.3944623 +0.5370079 0.5007803 0.3944623 +0.5453253 0.5007803 0.3944623 +0.5533834 0.5007803 0.3944623 +0.5611974 0.5007803 0.3944623 +0.5687816 0.5007803 0.3944623 +0.092819 0.510322 0.3944623 +0.1056428 0.510322 0.3944623 +0.1201537 0.510322 0.3944623 +0.1409607 0.510322 0.3944623 +0.1678172 0.510322 0.3944623 +0.1950164 0.510322 0.3944623 +0.2210581 0.510322 0.3944623 +0.245636 0.510322 0.3944623 +0.2686816 0.510322 0.3944623 +0.2902431 0.510322 0.3944623 +0.3104189 0.510322 0.3944623 +0.3293248 0.510322 0.3944623 +0.3470774 0.510322 0.3944623 +0.3637862 0.510322 0.3944623 +0.3795513 0.510322 0.3944623 +0.3944623 0.510322 0.3944623 +0.4085988 0.510322 0.3944623 +0.4220313 0.510322 0.3944623 +0.4348222 0.510322 0.3944623 +0.4470264 0.510322 0.3944623 +0.4586928 0.510322 0.3944623 +0.4698649 0.510322 0.3944623 +0.4805811 0.510322 0.3944623 +0.490876 0.510322 0.3944623 +0.5007803 0.510322 0.3944623 +0.510322 0.510322 0.3944623 +0.5195258 0.510322 0.3944623 +0.5284142 0.510322 0.3944623 +0.5370079 0.510322 0.3944623 +0.5453253 0.510322 0.3944623 +0.5533834 0.510322 0.3944623 +0.5611974 0.510322 0.3944623 +0.5687816 0.510322 0.3944623 +0.092819 0.5195258 0.3944623 +0.1056428 0.5195258 0.3944623 +0.1201537 0.5195258 0.3944623 +0.1409607 0.5195258 0.3944623 +0.1678172 0.5195258 0.3944623 +0.1950164 0.5195258 0.3944623 +0.2210581 0.5195258 0.3944623 +0.245636 0.5195258 0.3944623 +0.2686816 0.5195258 0.3944623 +0.2902431 0.5195258 0.3944623 +0.3104189 0.5195258 0.3944623 +0.3293248 0.5195258 0.3944623 +0.3470774 0.5195258 0.3944623 +0.3637862 0.5195258 0.3944623 +0.3795513 0.5195258 0.3944623 +0.3944623 0.5195258 0.3944623 +0.4085988 0.5195258 0.3944623 +0.4220313 0.5195258 0.3944623 +0.4348222 0.5195258 0.3944623 +0.4470264 0.5195258 0.3944623 +0.4586928 0.5195258 0.3944623 +0.4698649 0.5195258 0.3944623 +0.4805811 0.5195258 0.3944623 +0.490876 0.5195258 0.3944623 +0.5007803 0.5195258 0.3944623 +0.510322 0.5195258 0.3944623 +0.5195258 0.5195258 0.3944623 +0.5284142 0.5195258 0.3944623 +0.5370079 0.5195258 0.3944623 +0.5453253 0.5195258 0.3944623 +0.5533834 0.5195258 0.3944623 +0.5611974 0.5195258 0.3944623 +0.5687816 0.5195258 0.3944623 +0.092819 0.5284142 0.3944623 +0.1056428 0.5284142 0.3944623 +0.1201537 0.5284142 0.3944623 +0.1409607 0.5284142 0.3944623 +0.1678172 0.5284142 0.3944623 +0.1950164 0.5284142 0.3944623 +0.2210581 0.5284142 0.3944623 +0.245636 0.5284142 0.3944623 +0.2686816 0.5284142 0.3944623 +0.2902431 0.5284142 0.3944623 +0.3104189 0.5284142 0.3944623 +0.3293248 0.5284142 0.3944623 +0.3470774 0.5284142 0.3944623 +0.3637862 0.5284142 0.3944623 +0.3795513 0.5284142 0.3944623 +0.3944623 0.5284142 0.3944623 +0.4085988 0.5284142 0.3944623 +0.4220313 0.5284142 0.3944623 +0.4348222 0.5284142 0.3944623 +0.4470264 0.5284142 0.3944623 +0.4586928 0.5284142 0.3944623 +0.4698649 0.5284142 0.3944623 +0.4805811 0.5284142 0.3944623 +0.490876 0.5284142 0.3944623 +0.5007803 0.5284142 0.3944623 +0.510322 0.5284142 0.3944623 +0.5195258 0.5284142 0.3944623 +0.5284142 0.5284142 0.3944623 +0.5370079 0.5284142 0.3944623 +0.5453253 0.5284142 0.3944623 +0.5533834 0.5284142 0.3944623 +0.5611974 0.5284142 0.3944623 +0.5687816 0.5284142 0.3944623 +0.092819 0.5370079 0.3944623 +0.1056428 0.5370079 0.3944623 +0.1201537 0.5370079 0.3944623 +0.1409607 0.5370079 0.3944623 +0.1678172 0.5370079 0.3944623 +0.1950164 0.5370079 0.3944623 +0.2210581 0.5370079 0.3944623 +0.245636 0.5370079 0.3944623 +0.2686816 0.5370079 0.3944623 +0.2902431 0.5370079 0.3944623 +0.3104189 0.5370079 0.3944623 +0.3293248 0.5370079 0.3944623 +0.3470774 0.5370079 0.3944623 +0.3637862 0.5370079 0.3944623 +0.3795513 0.5370079 0.3944623 +0.3944623 0.5370079 0.3944623 +0.4085988 0.5370079 0.3944623 +0.4220313 0.5370079 0.3944623 +0.4348222 0.5370079 0.3944623 +0.4470264 0.5370079 0.3944623 +0.4586928 0.5370079 0.3944623 +0.4698649 0.5370079 0.3944623 +0.4805811 0.5370079 0.3944623 +0.490876 0.5370079 0.3944623 +0.5007803 0.5370079 0.3944623 +0.510322 0.5370079 0.3944623 +0.5195258 0.5370079 0.3944623 +0.5284142 0.5370079 0.3944623 +0.5370079 0.5370079 0.3944623 +0.5453253 0.5370079 0.3944623 +0.5533834 0.5370079 0.3944623 +0.5611974 0.5370079 0.3944623 +0.5687816 0.5370079 0.3944623 +0.092819 0.5453253 0.3944623 +0.1056428 0.5453253 0.3944623 +0.1201537 0.5453253 0.3944623 +0.1409607 0.5453253 0.3944623 +0.1678172 0.5453253 0.3944623 +0.1950164 0.5453253 0.3944623 +0.2210581 0.5453253 0.3944623 +0.245636 0.5453253 0.3944623 +0.2686816 0.5453253 0.3944623 +0.2902431 0.5453253 0.3944623 +0.3104189 0.5453253 0.3944623 +0.3293248 0.5453253 0.3944623 +0.3470774 0.5453253 0.3944623 +0.3637862 0.5453253 0.3944623 +0.3795513 0.5453253 0.3944623 +0.3944623 0.5453253 0.3944623 +0.4085988 0.5453253 0.3944623 +0.4220313 0.5453253 0.3944623 +0.4348222 0.5453253 0.3944623 +0.4470264 0.5453253 0.3944623 +0.4586928 0.5453253 0.3944623 +0.4698649 0.5453253 0.3944623 +0.4805811 0.5453253 0.3944623 +0.490876 0.5453253 0.3944623 +0.5007803 0.5453253 0.3944623 +0.510322 0.5453253 0.3944623 +0.5195258 0.5453253 0.3944623 +0.5284142 0.5453253 0.3944623 +0.5370079 0.5453253 0.3944623 +0.5453253 0.5453253 0.3944623 +0.5533834 0.5453253 0.3944623 +0.5611974 0.5453253 0.3944623 +0.5687816 0.5453253 0.3944623 +0.092819 0.5533834 0.3944623 +0.1056428 0.5533834 0.3944623 +0.1201537 0.5533834 0.3944623 +0.1409607 0.5533834 0.3944623 +0.1678172 0.5533834 0.3944623 +0.1950164 0.5533834 0.3944623 +0.2210581 0.5533834 0.3944623 +0.245636 0.5533834 0.3944623 +0.2686816 0.5533834 0.3944623 +0.2902431 0.5533834 0.3944623 +0.3104189 0.5533834 0.3944623 +0.3293248 0.5533834 0.3944623 +0.3470774 0.5533834 0.3944623 +0.3637862 0.5533834 0.3944623 +0.3795513 0.5533834 0.3944623 +0.3944623 0.5533834 0.3944623 +0.4085988 0.5533834 0.3944623 +0.4220313 0.5533834 0.3944623 +0.4348222 0.5533834 0.3944623 +0.4470264 0.5533834 0.3944623 +0.4586928 0.5533834 0.3944623 +0.4698649 0.5533834 0.3944623 +0.4805811 0.5533834 0.3944623 +0.490876 0.5533834 0.3944623 +0.5007803 0.5533834 0.3944623 +0.510322 0.5533834 0.3944623 +0.5195258 0.5533834 0.3944623 +0.5284142 0.5533834 0.3944623 +0.5370079 0.5533834 0.3944623 +0.5453253 0.5533834 0.3944623 +0.5533834 0.5533834 0.3944623 +0.5611974 0.5533834 0.3944623 +0.5687816 0.5533834 0.3944623 +0.092819 0.5611974 0.3944623 +0.1056428 0.5611974 0.3944623 +0.1201537 0.5611974 0.3944623 +0.1409607 0.5611974 0.3944623 +0.1678172 0.5611974 0.3944623 +0.1950164 0.5611974 0.3944623 +0.2210581 0.5611974 0.3944623 +0.245636 0.5611974 0.3944623 +0.2686816 0.5611974 0.3944623 +0.2902431 0.5611974 0.3944623 +0.3104189 0.5611974 0.3944623 +0.3293248 0.5611974 0.3944623 +0.3470774 0.5611974 0.3944623 +0.3637862 0.5611974 0.3944623 +0.3795513 0.5611974 0.3944623 +0.3944623 0.5611974 0.3944623 +0.4085988 0.5611974 0.3944623 +0.4220313 0.5611974 0.3944623 +0.4348222 0.5611974 0.3944623 +0.4470264 0.5611974 0.3944623 +0.4586928 0.5611974 0.3944623 +0.4698649 0.5611974 0.3944623 +0.4805811 0.5611974 0.3944623 +0.490876 0.5611974 0.3944623 +0.5007803 0.5611974 0.3944623 +0.510322 0.5611974 0.3944623 +0.5195258 0.5611974 0.3944623 +0.5284142 0.5611974 0.3944623 +0.5370079 0.5611974 0.3944623 +0.5453253 0.5611974 0.3944623 +0.5533834 0.5611974 0.3944623 +0.5611974 0.5611974 0.3944623 +0.5687816 0.5611974 0.3944623 +0.092819 0.5687816 0.3944623 +0.1056428 0.5687816 0.3944623 +0.1201537 0.5687816 0.3944623 +0.1409607 0.5687816 0.3944623 +0.1678172 0.5687816 0.3944623 +0.1950164 0.5687816 0.3944623 +0.2210581 0.5687816 0.3944623 +0.245636 0.5687816 0.3944623 +0.2686816 0.5687816 0.3944623 +0.2902431 0.5687816 0.3944623 +0.3104189 0.5687816 0.3944623 +0.3293248 0.5687816 0.3944623 +0.3470774 0.5687816 0.3944623 +0.3637862 0.5687816 0.3944623 +0.3795513 0.5687816 0.3944623 +0.3944623 0.5687816 0.3944623 +0.4085988 0.5687816 0.3944623 +0.4220313 0.5687816 0.3944623 +0.4348222 0.5687816 0.3944623 +0.4470264 0.5687816 0.3944623 +0.4586928 0.5687816 0.3944623 +0.4698649 0.5687816 0.3944623 +0.4805811 0.5687816 0.3944623 +0.490876 0.5687816 0.3944623 +0.5007803 0.5687816 0.3944623 +0.510322 0.5687816 0.3944623 +0.5195258 0.5687816 0.3944623 +0.5284142 0.5687816 0.3944623 +0.5370079 0.5687816 0.3944623 +0.5453253 0.5687816 0.3944623 +0.5533834 0.5687816 0.3944623 +0.5611974 0.5687816 0.3944623 +0.5687816 0.5687816 0.3944623 +0.092819 0.092819 0.4085988 +0.1056428 0.092819 0.4085988 +0.1201537 0.092819 0.4085988 +0.1409607 0.092819 0.4085988 +0.1678172 0.092819 0.4085988 +0.1950164 0.092819 0.4085988 +0.2210581 0.092819 0.4085988 +0.245636 0.092819 0.4085988 +0.2686816 0.092819 0.4085988 +0.2902431 0.092819 0.4085988 +0.3104189 0.092819 0.4085988 +0.3293248 0.092819 0.4085988 +0.3470774 0.092819 0.4085988 +0.3637862 0.092819 0.4085988 +0.3795513 0.092819 0.4085988 +0.3944623 0.092819 0.4085988 +0.4085988 0.092819 0.4085988 +0.4220313 0.092819 0.4085988 +0.4348222 0.092819 0.4085988 +0.4470264 0.092819 0.4085988 +0.4586928 0.092819 0.4085988 +0.4698649 0.092819 0.4085988 +0.4805811 0.092819 0.4085988 +0.490876 0.092819 0.4085988 +0.5007803 0.092819 0.4085988 +0.510322 0.092819 0.4085988 +0.5195258 0.092819 0.4085988 +0.5284142 0.092819 0.4085988 +0.5370079 0.092819 0.4085988 +0.5453253 0.092819 0.4085988 +0.5533834 0.092819 0.4085988 +0.5611974 0.092819 0.4085988 +0.5687816 0.092819 0.4085988 +0.092819 0.1056428 0.4085988 +0.1056428 0.1056428 0.4085988 +0.1201537 0.1056428 0.4085988 +0.1409607 0.1056428 0.4085988 +0.1678172 0.1056428 0.4085988 +0.1950164 0.1056428 0.4085988 +0.2210581 0.1056428 0.4085988 +0.245636 0.1056428 0.4085988 +0.2686816 0.1056428 0.4085988 +0.2902431 0.1056428 0.4085988 +0.3104189 0.1056428 0.4085988 +0.3293248 0.1056428 0.4085988 +0.3470774 0.1056428 0.4085988 +0.3637862 0.1056428 0.4085988 +0.3795513 0.1056428 0.4085988 +0.3944623 0.1056428 0.4085988 +0.4085988 0.1056428 0.4085988 +0.4220313 0.1056428 0.4085988 +0.4348222 0.1056428 0.4085988 +0.4470264 0.1056428 0.4085988 +0.4586928 0.1056428 0.4085988 +0.4698649 0.1056428 0.4085988 +0.4805811 0.1056428 0.4085988 +0.490876 0.1056428 0.4085988 +0.5007803 0.1056428 0.4085988 +0.510322 0.1056428 0.4085988 +0.5195258 0.1056428 0.4085988 +0.5284142 0.1056428 0.4085988 +0.5370079 0.1056428 0.4085988 +0.5453253 0.1056428 0.4085988 +0.5533834 0.1056428 0.4085988 +0.5611974 0.1056428 0.4085988 +0.5687816 0.1056428 0.4085988 +0.092819 0.1201537 0.4085988 +0.1056428 0.1201537 0.4085988 +0.1201537 0.1201537 0.4085988 +0.1409607 0.1201537 0.4085988 +0.1678172 0.1201537 0.4085988 +0.1950164 0.1201537 0.4085988 +0.2210581 0.1201537 0.4085988 +0.245636 0.1201537 0.4085988 +0.2686816 0.1201537 0.4085988 +0.2902431 0.1201537 0.4085988 +0.3104189 0.1201537 0.4085988 +0.3293248 0.1201537 0.4085988 +0.3470774 0.1201537 0.4085988 +0.3637862 0.1201537 0.4085988 +0.3795513 0.1201537 0.4085988 +0.3944623 0.1201537 0.4085988 +0.4085988 0.1201537 0.4085988 +0.4220313 0.1201537 0.4085988 +0.4348222 0.1201537 0.4085988 +0.4470264 0.1201537 0.4085988 +0.4586928 0.1201537 0.4085988 +0.4698649 0.1201537 0.4085988 +0.4805811 0.1201537 0.4085988 +0.490876 0.1201537 0.4085988 +0.5007803 0.1201537 0.4085988 +0.510322 0.1201537 0.4085988 +0.5195258 0.1201537 0.4085988 +0.5284142 0.1201537 0.4085988 +0.5370079 0.1201537 0.4085988 +0.5453253 0.1201537 0.4085988 +0.5533834 0.1201537 0.4085988 +0.5611974 0.1201537 0.4085988 +0.5687816 0.1201537 0.4085988 +0.092819 0.1409607 0.4085988 +0.1056428 0.1409607 0.4085988 +0.1201537 0.1409607 0.4085988 +0.1409607 0.1409607 0.4085988 +0.1678172 0.1409607 0.4085988 +0.1950164 0.1409607 0.4085988 +0.2210581 0.1409607 0.4085988 +0.245636 0.1409607 0.4085988 +0.2686816 0.1409607 0.4085988 +0.2902431 0.1409607 0.4085988 +0.3104189 0.1409607 0.4085988 +0.3293248 0.1409607 0.4085988 +0.3470774 0.1409607 0.4085988 +0.3637862 0.1409607 0.4085988 +0.3795513 0.1409607 0.4085988 +0.3944623 0.1409607 0.4085988 +0.4085988 0.1409607 0.4085988 +0.4220313 0.1409607 0.4085988 +0.4348222 0.1409607 0.4085988 +0.4470264 0.1409607 0.4085988 +0.4586928 0.1409607 0.4085988 +0.4698649 0.1409607 0.4085988 +0.4805811 0.1409607 0.4085988 +0.490876 0.1409607 0.4085988 +0.5007803 0.1409607 0.4085988 +0.510322 0.1409607 0.4085988 +0.5195258 0.1409607 0.4085988 +0.5284142 0.1409607 0.4085988 +0.5370079 0.1409607 0.4085988 +0.5453253 0.1409607 0.4085988 +0.5533834 0.1409607 0.4085988 +0.5611974 0.1409607 0.4085988 +0.5687816 0.1409607 0.4085988 +0.092819 0.1678172 0.4085988 +0.1056428 0.1678172 0.4085988 +0.1201537 0.1678172 0.4085988 +0.1409607 0.1678172 0.4085988 +0.1678172 0.1678172 0.4085988 +0.1950164 0.1678172 0.4085988 +0.2210581 0.1678172 0.4085988 +0.245636 0.1678172 0.4085988 +0.2686816 0.1678172 0.4085988 +0.2902431 0.1678172 0.4085988 +0.3104189 0.1678172 0.4085988 +0.3293248 0.1678172 0.4085988 +0.3470774 0.1678172 0.4085988 +0.3637862 0.1678172 0.4085988 +0.3795513 0.1678172 0.4085988 +0.3944623 0.1678172 0.4085988 +0.4085988 0.1678172 0.4085988 +0.4220313 0.1678172 0.4085988 +0.4348222 0.1678172 0.4085988 +0.4470264 0.1678172 0.4085988 +0.4586928 0.1678172 0.4085988 +0.4698649 0.1678172 0.4085988 +0.4805811 0.1678172 0.4085988 +0.490876 0.1678172 0.4085988 +0.5007803 0.1678172 0.4085988 +0.510322 0.1678172 0.4085988 +0.5195258 0.1678172 0.4085988 +0.5284142 0.1678172 0.4085988 +0.5370079 0.1678172 0.4085988 +0.5453253 0.1678172 0.4085988 +0.5533834 0.1678172 0.4085988 +0.5611974 0.1678172 0.4085988 +0.5687816 0.1678172 0.4085988 +0.092819 0.1950164 0.4085988 +0.1056428 0.1950164 0.4085988 +0.1201537 0.1950164 0.4085988 +0.1409607 0.1950164 0.4085988 +0.1678172 0.1950164 0.4085988 +0.1950164 0.1950164 0.4085988 +0.2210581 0.1950164 0.4085988 +0.245636 0.1950164 0.4085988 +0.2686816 0.1950164 0.4085988 +0.2902431 0.1950164 0.4085988 +0.3104189 0.1950164 0.4085988 +0.3293248 0.1950164 0.4085988 +0.3470774 0.1950164 0.4085988 +0.3637862 0.1950164 0.4085988 +0.3795513 0.1950164 0.4085988 +0.3944623 0.1950164 0.4085988 +0.4085988 0.1950164 0.4085988 +0.4220313 0.1950164 0.4085988 +0.4348222 0.1950164 0.4085988 +0.4470264 0.1950164 0.4085988 +0.4586928 0.1950164 0.4085988 +0.4698649 0.1950164 0.4085988 +0.4805811 0.1950164 0.4085988 +0.490876 0.1950164 0.4085988 +0.5007803 0.1950164 0.4085988 +0.510322 0.1950164 0.4085988 +0.5195258 0.1950164 0.4085988 +0.5284142 0.1950164 0.4085988 +0.5370079 0.1950164 0.4085988 +0.5453253 0.1950164 0.4085988 +0.5533834 0.1950164 0.4085988 +0.5611974 0.1950164 0.4085988 +0.5687816 0.1950164 0.4085988 +0.092819 0.2210581 0.4085988 +0.1056428 0.2210581 0.4085988 +0.1201537 0.2210581 0.4085988 +0.1409607 0.2210581 0.4085988 +0.1678172 0.2210581 0.4085988 +0.1950164 0.2210581 0.4085988 +0.2210581 0.2210581 0.4085988 +0.245636 0.2210581 0.4085988 +0.2686816 0.2210581 0.4085988 +0.2902431 0.2210581 0.4085988 +0.3104189 0.2210581 0.4085988 +0.3293248 0.2210581 0.4085988 +0.3470774 0.2210581 0.4085988 +0.3637862 0.2210581 0.4085988 +0.3795513 0.2210581 0.4085988 +0.3944623 0.2210581 0.4085988 +0.4085988 0.2210581 0.4085988 +0.4220313 0.2210581 0.4085988 +0.4348222 0.2210581 0.4085988 +0.4470264 0.2210581 0.4085988 +0.4586928 0.2210581 0.4085988 +0.4698649 0.2210581 0.4085988 +0.4805811 0.2210581 0.4085988 +0.490876 0.2210581 0.4085988 +0.5007803 0.2210581 0.4085988 +0.510322 0.2210581 0.4085988 +0.5195258 0.2210581 0.4085988 +0.5284142 0.2210581 0.4085988 +0.5370079 0.2210581 0.4085988 +0.5453253 0.2210581 0.4085988 +0.5533834 0.2210581 0.4085988 +0.5611974 0.2210581 0.4085988 +0.5687816 0.2210581 0.4085988 +0.092819 0.245636 0.4085988 +0.1056428 0.245636 0.4085988 +0.1201537 0.245636 0.4085988 +0.1409607 0.245636 0.4085988 +0.1678172 0.245636 0.4085988 +0.1950164 0.245636 0.4085988 +0.2210581 0.245636 0.4085988 +0.245636 0.245636 0.4085988 +0.2686816 0.245636 0.4085988 +0.2902431 0.245636 0.4085988 +0.3104189 0.245636 0.4085988 +0.3293248 0.245636 0.4085988 +0.3470774 0.245636 0.4085988 +0.3637862 0.245636 0.4085988 +0.3795513 0.245636 0.4085988 +0.3944623 0.245636 0.4085988 +0.4085988 0.245636 0.4085988 +0.4220313 0.245636 0.4085988 +0.4348222 0.245636 0.4085988 +0.4470264 0.245636 0.4085988 +0.4586928 0.245636 0.4085988 +0.4698649 0.245636 0.4085988 +0.4805811 0.245636 0.4085988 +0.490876 0.245636 0.4085988 +0.5007803 0.245636 0.4085988 +0.510322 0.245636 0.4085988 +0.5195258 0.245636 0.4085988 +0.5284142 0.245636 0.4085988 +0.5370079 0.245636 0.4085988 +0.5453253 0.245636 0.4085988 +0.5533834 0.245636 0.4085988 +0.5611974 0.245636 0.4085988 +0.5687816 0.245636 0.4085988 +0.092819 0.2686816 0.4085988 +0.1056428 0.2686816 0.4085988 +0.1201537 0.2686816 0.4085988 +0.1409607 0.2686816 0.4085988 +0.1678172 0.2686816 0.4085988 +0.1950164 0.2686816 0.4085988 +0.2210581 0.2686816 0.4085988 +0.245636 0.2686816 0.4085988 +0.2686816 0.2686816 0.4085988 +0.2902431 0.2686816 0.4085988 +0.3104189 0.2686816 0.4085988 +0.3293248 0.2686816 0.4085988 +0.3470774 0.2686816 0.4085988 +0.3637862 0.2686816 0.4085988 +0.3795513 0.2686816 0.4085988 +0.3944623 0.2686816 0.4085988 +0.4085988 0.2686816 0.4085988 +0.4220313 0.2686816 0.4085988 +0.4348222 0.2686816 0.4085988 +0.4470264 0.2686816 0.4085988 +0.4586928 0.2686816 0.4085988 +0.4698649 0.2686816 0.4085988 +0.4805811 0.2686816 0.4085988 +0.490876 0.2686816 0.4085988 +0.5007803 0.2686816 0.4085988 +0.510322 0.2686816 0.4085988 +0.5195258 0.2686816 0.4085988 +0.5284142 0.2686816 0.4085988 +0.5370079 0.2686816 0.4085988 +0.5453253 0.2686816 0.4085988 +0.5533834 0.2686816 0.4085988 +0.5611974 0.2686816 0.4085988 +0.5687816 0.2686816 0.4085988 +0.092819 0.2902431 0.4085988 +0.1056428 0.2902431 0.4085988 +0.1201537 0.2902431 0.4085988 +0.1409607 0.2902431 0.4085988 +0.1678172 0.2902431 0.4085988 +0.1950164 0.2902431 0.4085988 +0.2210581 0.2902431 0.4085988 +0.245636 0.2902431 0.4085988 +0.2686816 0.2902431 0.4085988 +0.2902431 0.2902431 0.4085988 +0.3104189 0.2902431 0.4085988 +0.3293248 0.2902431 0.4085988 +0.3470774 0.2902431 0.4085988 +0.3637862 0.2902431 0.4085988 +0.3795513 0.2902431 0.4085988 +0.3944623 0.2902431 0.4085988 +0.4085988 0.2902431 0.4085988 +0.4220313 0.2902431 0.4085988 +0.4348222 0.2902431 0.4085988 +0.4470264 0.2902431 0.4085988 +0.4586928 0.2902431 0.4085988 +0.4698649 0.2902431 0.4085988 +0.4805811 0.2902431 0.4085988 +0.490876 0.2902431 0.4085988 +0.5007803 0.2902431 0.4085988 +0.510322 0.2902431 0.4085988 +0.5195258 0.2902431 0.4085988 +0.5284142 0.2902431 0.4085988 +0.5370079 0.2902431 0.4085988 +0.5453253 0.2902431 0.4085988 +0.5533834 0.2902431 0.4085988 +0.5611974 0.2902431 0.4085988 +0.5687816 0.2902431 0.4085988 +0.092819 0.3104189 0.4085988 +0.1056428 0.3104189 0.4085988 +0.1201537 0.3104189 0.4085988 +0.1409607 0.3104189 0.4085988 +0.1678172 0.3104189 0.4085988 +0.1950164 0.3104189 0.4085988 +0.2210581 0.3104189 0.4085988 +0.245636 0.3104189 0.4085988 +0.2686816 0.3104189 0.4085988 +0.2902431 0.3104189 0.4085988 +0.3104189 0.3104189 0.4085988 +0.3293248 0.3104189 0.4085988 +0.3470774 0.3104189 0.4085988 +0.3637862 0.3104189 0.4085988 +0.3795513 0.3104189 0.4085988 +0.3944623 0.3104189 0.4085988 +0.4085988 0.3104189 0.4085988 +0.4220313 0.3104189 0.4085988 +0.4348222 0.3104189 0.4085988 +0.4470264 0.3104189 0.4085988 +0.4586928 0.3104189 0.4085988 +0.4698649 0.3104189 0.4085988 +0.4805811 0.3104189 0.4085988 +0.490876 0.3104189 0.4085988 +0.5007803 0.3104189 0.4085988 +0.510322 0.3104189 0.4085988 +0.5195258 0.3104189 0.4085988 +0.5284142 0.3104189 0.4085988 +0.5370079 0.3104189 0.4085988 +0.5453253 0.3104189 0.4085988 +0.5533834 0.3104189 0.4085988 +0.5611974 0.3104189 0.4085988 +0.5687816 0.3104189 0.4085988 +0.092819 0.3293248 0.4085988 +0.1056428 0.3293248 0.4085988 +0.1201537 0.3293248 0.4085988 +0.1409607 0.3293248 0.4085988 +0.1678172 0.3293248 0.4085988 +0.1950164 0.3293248 0.4085988 +0.2210581 0.3293248 0.4085988 +0.245636 0.3293248 0.4085988 +0.2686816 0.3293248 0.4085988 +0.2902431 0.3293248 0.4085988 +0.3104189 0.3293248 0.4085988 +0.3293248 0.3293248 0.4085988 +0.3470774 0.3293248 0.4085988 +0.3637862 0.3293248 0.4085988 +0.3795513 0.3293248 0.4085988 +0.3944623 0.3293248 0.4085988 +0.4085988 0.3293248 0.4085988 +0.4220313 0.3293248 0.4085988 +0.4348222 0.3293248 0.4085988 +0.4470264 0.3293248 0.4085988 +0.4586928 0.3293248 0.4085988 +0.4698649 0.3293248 0.4085988 +0.4805811 0.3293248 0.4085988 +0.490876 0.3293248 0.4085988 +0.5007803 0.3293248 0.4085988 +0.510322 0.3293248 0.4085988 +0.5195258 0.3293248 0.4085988 +0.5284142 0.3293248 0.4085988 +0.5370079 0.3293248 0.4085988 +0.5453253 0.3293248 0.4085988 +0.5533834 0.3293248 0.4085988 +0.5611974 0.3293248 0.4085988 +0.5687816 0.3293248 0.4085988 +0.092819 0.3470774 0.4085988 +0.1056428 0.3470774 0.4085988 +0.1201537 0.3470774 0.4085988 +0.1409607 0.3470774 0.4085988 +0.1678172 0.3470774 0.4085988 +0.1950164 0.3470774 0.4085988 +0.2210581 0.3470774 0.4085988 +0.245636 0.3470774 0.4085988 +0.2686816 0.3470774 0.4085988 +0.2902431 0.3470774 0.4085988 +0.3104189 0.3470774 0.4085988 +0.3293248 0.3470774 0.4085988 +0.3470774 0.3470774 0.4085988 +0.3637862 0.3470774 0.4085988 +0.3795513 0.3470774 0.4085988 +0.3944623 0.3470774 0.4085988 +0.4085988 0.3470774 0.4085988 +0.4220313 0.3470774 0.4085988 +0.4348222 0.3470774 0.4085988 +0.4470264 0.3470774 0.4085988 +0.4586928 0.3470774 0.4085988 +0.4698649 0.3470774 0.4085988 +0.4805811 0.3470774 0.4085988 +0.490876 0.3470774 0.4085988 +0.5007803 0.3470774 0.4085988 +0.510322 0.3470774 0.4085988 +0.5195258 0.3470774 0.4085988 +0.5284142 0.3470774 0.4085988 +0.5370079 0.3470774 0.4085988 +0.5453253 0.3470774 0.4085988 +0.5533834 0.3470774 0.4085988 +0.5611974 0.3470774 0.4085988 +0.5687816 0.3470774 0.4085988 +0.092819 0.3637862 0.4085988 +0.1056428 0.3637862 0.4085988 +0.1201537 0.3637862 0.4085988 +0.1409607 0.3637862 0.4085988 +0.1678172 0.3637862 0.4085988 +0.1950164 0.3637862 0.4085988 +0.2210581 0.3637862 0.4085988 +0.245636 0.3637862 0.4085988 +0.2686816 0.3637862 0.4085988 +0.2902431 0.3637862 0.4085988 +0.3104189 0.3637862 0.4085988 +0.3293248 0.3637862 0.4085988 +0.3470774 0.3637862 0.4085988 +0.3637862 0.3637862 0.4085988 +0.3795513 0.3637862 0.4085988 +0.3944623 0.3637862 0.4085988 +0.4085988 0.3637862 0.4085988 +0.4220313 0.3637862 0.4085988 +0.4348222 0.3637862 0.4085988 +0.4470264 0.3637862 0.4085988 +0.4586928 0.3637862 0.4085988 +0.4698649 0.3637862 0.4085988 +0.4805811 0.3637862 0.4085988 +0.490876 0.3637862 0.4085988 +0.5007803 0.3637862 0.4085988 +0.510322 0.3637862 0.4085988 +0.5195258 0.3637862 0.4085988 +0.5284142 0.3637862 0.4085988 +0.5370079 0.3637862 0.4085988 +0.5453253 0.3637862 0.4085988 +0.5533834 0.3637862 0.4085988 +0.5611974 0.3637862 0.4085988 +0.5687816 0.3637862 0.4085988 +0.092819 0.3795513 0.4085988 +0.1056428 0.3795513 0.4085988 +0.1201537 0.3795513 0.4085988 +0.1409607 0.3795513 0.4085988 +0.1678172 0.3795513 0.4085988 +0.1950164 0.3795513 0.4085988 +0.2210581 0.3795513 0.4085988 +0.245636 0.3795513 0.4085988 +0.2686816 0.3795513 0.4085988 +0.2902431 0.3795513 0.4085988 +0.3104189 0.3795513 0.4085988 +0.3293248 0.3795513 0.4085988 +0.3470774 0.3795513 0.4085988 +0.3637862 0.3795513 0.4085988 +0.3795513 0.3795513 0.4085988 +0.3944623 0.3795513 0.4085988 +0.4085988 0.3795513 0.4085988 +0.4220313 0.3795513 0.4085988 +0.4348222 0.3795513 0.4085988 +0.4470264 0.3795513 0.4085988 +0.4586928 0.3795513 0.4085988 +0.4698649 0.3795513 0.4085988 +0.4805811 0.3795513 0.4085988 +0.490876 0.3795513 0.4085988 +0.5007803 0.3795513 0.4085988 +0.510322 0.3795513 0.4085988 +0.5195258 0.3795513 0.4085988 +0.5284142 0.3795513 0.4085988 +0.5370079 0.3795513 0.4085988 +0.5453253 0.3795513 0.4085988 +0.5533834 0.3795513 0.4085988 +0.5611974 0.3795513 0.4085988 +0.5687816 0.3795513 0.4085988 +0.092819 0.3944623 0.4085988 +0.1056428 0.3944623 0.4085988 +0.1201537 0.3944623 0.4085988 +0.1409607 0.3944623 0.4085988 +0.1678172 0.3944623 0.4085988 +0.1950164 0.3944623 0.4085988 +0.2210581 0.3944623 0.4085988 +0.245636 0.3944623 0.4085988 +0.2686816 0.3944623 0.4085988 +0.2902431 0.3944623 0.4085988 +0.3104189 0.3944623 0.4085988 +0.3293248 0.3944623 0.4085988 +0.3470774 0.3944623 0.4085988 +0.3637862 0.3944623 0.4085988 +0.3795513 0.3944623 0.4085988 +0.3944623 0.3944623 0.4085988 +0.4085988 0.3944623 0.4085988 +0.4220313 0.3944623 0.4085988 +0.4348222 0.3944623 0.4085988 +0.4470264 0.3944623 0.4085988 +0.4586928 0.3944623 0.4085988 +0.4698649 0.3944623 0.4085988 +0.4805811 0.3944623 0.4085988 +0.490876 0.3944623 0.4085988 +0.5007803 0.3944623 0.4085988 +0.510322 0.3944623 0.4085988 +0.5195258 0.3944623 0.4085988 +0.5284142 0.3944623 0.4085988 +0.5370079 0.3944623 0.4085988 +0.5453253 0.3944623 0.4085988 +0.5533834 0.3944623 0.4085988 +0.5611974 0.3944623 0.4085988 +0.5687816 0.3944623 0.4085988 +0.092819 0.4085988 0.4085988 +0.1056428 0.4085988 0.4085988 +0.1201537 0.4085988 0.4085988 +0.1409607 0.4085988 0.4085988 +0.1678172 0.4085988 0.4085988 +0.1950164 0.4085988 0.4085988 +0.2210581 0.4085988 0.4085988 +0.245636 0.4085988 0.4085988 +0.2686816 0.4085988 0.4085988 +0.2902431 0.4085988 0.4085988 +0.3104189 0.4085988 0.4085988 +0.3293248 0.4085988 0.4085988 +0.3470774 0.4085988 0.4085988 +0.3637862 0.4085988 0.4085988 +0.3795513 0.4085988 0.4085988 +0.3944623 0.4085988 0.4085988 +0.4085988 0.4085988 0.4085988 +0.4220313 0.4085988 0.4085988 +0.4348222 0.4085988 0.4085988 +0.4470264 0.4085988 0.4085988 +0.4586928 0.4085988 0.4085988 +0.4698649 0.4085988 0.4085988 +0.4805811 0.4085988 0.4085988 +0.490876 0.4085988 0.4085988 +0.5007803 0.4085988 0.4085988 +0.510322 0.4085988 0.4085988 +0.5195258 0.4085988 0.4085988 +0.5284142 0.4085988 0.4085988 +0.5370079 0.4085988 0.4085988 +0.5453253 0.4085988 0.4085988 +0.5533834 0.4085988 0.4085988 +0.5611974 0.4085988 0.4085988 +0.5687816 0.4085988 0.4085988 +0.092819 0.4220313 0.4085988 +0.1056428 0.4220313 0.4085988 +0.1201537 0.4220313 0.4085988 +0.1409607 0.4220313 0.4085988 +0.1678172 0.4220313 0.4085988 +0.1950164 0.4220313 0.4085988 +0.2210581 0.4220313 0.4085988 +0.245636 0.4220313 0.4085988 +0.2686816 0.4220313 0.4085988 +0.2902431 0.4220313 0.4085988 +0.3104189 0.4220313 0.4085988 +0.3293248 0.4220313 0.4085988 +0.3470774 0.4220313 0.4085988 +0.3637862 0.4220313 0.4085988 +0.3795513 0.4220313 0.4085988 +0.3944623 0.4220313 0.4085988 +0.4085988 0.4220313 0.4085988 +0.4220313 0.4220313 0.4085988 +0.4348222 0.4220313 0.4085988 +0.4470264 0.4220313 0.4085988 +0.4586928 0.4220313 0.4085988 +0.4698649 0.4220313 0.4085988 +0.4805811 0.4220313 0.4085988 +0.490876 0.4220313 0.4085988 +0.5007803 0.4220313 0.4085988 +0.510322 0.4220313 0.4085988 +0.5195258 0.4220313 0.4085988 +0.5284142 0.4220313 0.4085988 +0.5370079 0.4220313 0.4085988 +0.5453253 0.4220313 0.4085988 +0.5533834 0.4220313 0.4085988 +0.5611974 0.4220313 0.4085988 +0.5687816 0.4220313 0.4085988 +0.092819 0.4348222 0.4085988 +0.1056428 0.4348222 0.4085988 +0.1201537 0.4348222 0.4085988 +0.1409607 0.4348222 0.4085988 +0.1678172 0.4348222 0.4085988 +0.1950164 0.4348222 0.4085988 +0.2210581 0.4348222 0.4085988 +0.245636 0.4348222 0.4085988 +0.2686816 0.4348222 0.4085988 +0.2902431 0.4348222 0.4085988 +0.3104189 0.4348222 0.4085988 +0.3293248 0.4348222 0.4085988 +0.3470774 0.4348222 0.4085988 +0.3637862 0.4348222 0.4085988 +0.3795513 0.4348222 0.4085988 +0.3944623 0.4348222 0.4085988 +0.4085988 0.4348222 0.4085988 +0.4220313 0.4348222 0.4085988 +0.4348222 0.4348222 0.4085988 +0.4470264 0.4348222 0.4085988 +0.4586928 0.4348222 0.4085988 +0.4698649 0.4348222 0.4085988 +0.4805811 0.4348222 0.4085988 +0.490876 0.4348222 0.4085988 +0.5007803 0.4348222 0.4085988 +0.510322 0.4348222 0.4085988 +0.5195258 0.4348222 0.4085988 +0.5284142 0.4348222 0.4085988 +0.5370079 0.4348222 0.4085988 +0.5453253 0.4348222 0.4085988 +0.5533834 0.4348222 0.4085988 +0.5611974 0.4348222 0.4085988 +0.5687816 0.4348222 0.4085988 +0.092819 0.4470264 0.4085988 +0.1056428 0.4470264 0.4085988 +0.1201537 0.4470264 0.4085988 +0.1409607 0.4470264 0.4085988 +0.1678172 0.4470264 0.4085988 +0.1950164 0.4470264 0.4085988 +0.2210581 0.4470264 0.4085988 +0.245636 0.4470264 0.4085988 +0.2686816 0.4470264 0.4085988 +0.2902431 0.4470264 0.4085988 +0.3104189 0.4470264 0.4085988 +0.3293248 0.4470264 0.4085988 +0.3470774 0.4470264 0.4085988 +0.3637862 0.4470264 0.4085988 +0.3795513 0.4470264 0.4085988 +0.3944623 0.4470264 0.4085988 +0.4085988 0.4470264 0.4085988 +0.4220313 0.4470264 0.4085988 +0.4348222 0.4470264 0.4085988 +0.4470264 0.4470264 0.4085988 +0.4586928 0.4470264 0.4085988 +0.4698649 0.4470264 0.4085988 +0.4805811 0.4470264 0.4085988 +0.490876 0.4470264 0.4085988 +0.5007803 0.4470264 0.4085988 +0.510322 0.4470264 0.4085988 +0.5195258 0.4470264 0.4085988 +0.5284142 0.4470264 0.4085988 +0.5370079 0.4470264 0.4085988 +0.5453253 0.4470264 0.4085988 +0.5533834 0.4470264 0.4085988 +0.5611974 0.4470264 0.4085988 +0.5687816 0.4470264 0.4085988 +0.092819 0.4586928 0.4085988 +0.1056428 0.4586928 0.4085988 +0.1201537 0.4586928 0.4085988 +0.1409607 0.4586928 0.4085988 +0.1678172 0.4586928 0.4085988 +0.1950164 0.4586928 0.4085988 +0.2210581 0.4586928 0.4085988 +0.245636 0.4586928 0.4085988 +0.2686816 0.4586928 0.4085988 +0.2902431 0.4586928 0.4085988 +0.3104189 0.4586928 0.4085988 +0.3293248 0.4586928 0.4085988 +0.3470774 0.4586928 0.4085988 +0.3637862 0.4586928 0.4085988 +0.3795513 0.4586928 0.4085988 +0.3944623 0.4586928 0.4085988 +0.4085988 0.4586928 0.4085988 +0.4220313 0.4586928 0.4085988 +0.4348222 0.4586928 0.4085988 +0.4470264 0.4586928 0.4085988 +0.4586928 0.4586928 0.4085988 +0.4698649 0.4586928 0.4085988 +0.4805811 0.4586928 0.4085988 +0.490876 0.4586928 0.4085988 +0.5007803 0.4586928 0.4085988 +0.510322 0.4586928 0.4085988 +0.5195258 0.4586928 0.4085988 +0.5284142 0.4586928 0.4085988 +0.5370079 0.4586928 0.4085988 +0.5453253 0.4586928 0.4085988 +0.5533834 0.4586928 0.4085988 +0.5611974 0.4586928 0.4085988 +0.5687816 0.4586928 0.4085988 +0.092819 0.4698649 0.4085988 +0.1056428 0.4698649 0.4085988 +0.1201537 0.4698649 0.4085988 +0.1409607 0.4698649 0.4085988 +0.1678172 0.4698649 0.4085988 +0.1950164 0.4698649 0.4085988 +0.2210581 0.4698649 0.4085988 +0.245636 0.4698649 0.4085988 +0.2686816 0.4698649 0.4085988 +0.2902431 0.4698649 0.4085988 +0.3104189 0.4698649 0.4085988 +0.3293248 0.4698649 0.4085988 +0.3470774 0.4698649 0.4085988 +0.3637862 0.4698649 0.4085988 +0.3795513 0.4698649 0.4085988 +0.3944623 0.4698649 0.4085988 +0.4085988 0.4698649 0.4085988 +0.4220313 0.4698649 0.4085988 +0.4348222 0.4698649 0.4085988 +0.4470264 0.4698649 0.4085988 +0.4586928 0.4698649 0.4085988 +0.4698649 0.4698649 0.4085988 +0.4805811 0.4698649 0.4085988 +0.490876 0.4698649 0.4085988 +0.5007803 0.4698649 0.4085988 +0.510322 0.4698649 0.4085988 +0.5195258 0.4698649 0.4085988 +0.5284142 0.4698649 0.4085988 +0.5370079 0.4698649 0.4085988 +0.5453253 0.4698649 0.4085988 +0.5533834 0.4698649 0.4085988 +0.5611974 0.4698649 0.4085988 +0.5687816 0.4698649 0.4085988 +0.092819 0.4805811 0.4085988 +0.1056428 0.4805811 0.4085988 +0.1201537 0.4805811 0.4085988 +0.1409607 0.4805811 0.4085988 +0.1678172 0.4805811 0.4085988 +0.1950164 0.4805811 0.4085988 +0.2210581 0.4805811 0.4085988 +0.245636 0.4805811 0.4085988 +0.2686816 0.4805811 0.4085988 +0.2902431 0.4805811 0.4085988 +0.3104189 0.4805811 0.4085988 +0.3293248 0.4805811 0.4085988 +0.3470774 0.4805811 0.4085988 +0.3637862 0.4805811 0.4085988 +0.3795513 0.4805811 0.4085988 +0.3944623 0.4805811 0.4085988 +0.4085988 0.4805811 0.4085988 +0.4220313 0.4805811 0.4085988 +0.4348222 0.4805811 0.4085988 +0.4470264 0.4805811 0.4085988 +0.4586928 0.4805811 0.4085988 +0.4698649 0.4805811 0.4085988 +0.4805811 0.4805811 0.4085988 +0.490876 0.4805811 0.4085988 +0.5007803 0.4805811 0.4085988 +0.510322 0.4805811 0.4085988 +0.5195258 0.4805811 0.4085988 +0.5284142 0.4805811 0.4085988 +0.5370079 0.4805811 0.4085988 +0.5453253 0.4805811 0.4085988 +0.5533834 0.4805811 0.4085988 +0.5611974 0.4805811 0.4085988 +0.5687816 0.4805811 0.4085988 +0.092819 0.490876 0.4085988 +0.1056428 0.490876 0.4085988 +0.1201537 0.490876 0.4085988 +0.1409607 0.490876 0.4085988 +0.1678172 0.490876 0.4085988 +0.1950164 0.490876 0.4085988 +0.2210581 0.490876 0.4085988 +0.245636 0.490876 0.4085988 +0.2686816 0.490876 0.4085988 +0.2902431 0.490876 0.4085988 +0.3104189 0.490876 0.4085988 +0.3293248 0.490876 0.4085988 +0.3470774 0.490876 0.4085988 +0.3637862 0.490876 0.4085988 +0.3795513 0.490876 0.4085988 +0.3944623 0.490876 0.4085988 +0.4085988 0.490876 0.4085988 +0.4220313 0.490876 0.4085988 +0.4348222 0.490876 0.4085988 +0.4470264 0.490876 0.4085988 +0.4586928 0.490876 0.4085988 +0.4698649 0.490876 0.4085988 +0.4805811 0.490876 0.4085988 +0.490876 0.490876 0.4085988 +0.5007803 0.490876 0.4085988 +0.510322 0.490876 0.4085988 +0.5195258 0.490876 0.4085988 +0.5284142 0.490876 0.4085988 +0.5370079 0.490876 0.4085988 +0.5453253 0.490876 0.4085988 +0.5533834 0.490876 0.4085988 +0.5611974 0.490876 0.4085988 +0.5687816 0.490876 0.4085988 +0.092819 0.5007803 0.4085988 +0.1056428 0.5007803 0.4085988 +0.1201537 0.5007803 0.4085988 +0.1409607 0.5007803 0.4085988 +0.1678172 0.5007803 0.4085988 +0.1950164 0.5007803 0.4085988 +0.2210581 0.5007803 0.4085988 +0.245636 0.5007803 0.4085988 +0.2686816 0.5007803 0.4085988 +0.2902431 0.5007803 0.4085988 +0.3104189 0.5007803 0.4085988 +0.3293248 0.5007803 0.4085988 +0.3470774 0.5007803 0.4085988 +0.3637862 0.5007803 0.4085988 +0.3795513 0.5007803 0.4085988 +0.3944623 0.5007803 0.4085988 +0.4085988 0.5007803 0.4085988 +0.4220313 0.5007803 0.4085988 +0.4348222 0.5007803 0.4085988 +0.4470264 0.5007803 0.4085988 +0.4586928 0.5007803 0.4085988 +0.4698649 0.5007803 0.4085988 +0.4805811 0.5007803 0.4085988 +0.490876 0.5007803 0.4085988 +0.5007803 0.5007803 0.4085988 +0.510322 0.5007803 0.4085988 +0.5195258 0.5007803 0.4085988 +0.5284142 0.5007803 0.4085988 +0.5370079 0.5007803 0.4085988 +0.5453253 0.5007803 0.4085988 +0.5533834 0.5007803 0.4085988 +0.5611974 0.5007803 0.4085988 +0.5687816 0.5007803 0.4085988 +0.092819 0.510322 0.4085988 +0.1056428 0.510322 0.4085988 +0.1201537 0.510322 0.4085988 +0.1409607 0.510322 0.4085988 +0.1678172 0.510322 0.4085988 +0.1950164 0.510322 0.4085988 +0.2210581 0.510322 0.4085988 +0.245636 0.510322 0.4085988 +0.2686816 0.510322 0.4085988 +0.2902431 0.510322 0.4085988 +0.3104189 0.510322 0.4085988 +0.3293248 0.510322 0.4085988 +0.3470774 0.510322 0.4085988 +0.3637862 0.510322 0.4085988 +0.3795513 0.510322 0.4085988 +0.3944623 0.510322 0.4085988 +0.4085988 0.510322 0.4085988 +0.4220313 0.510322 0.4085988 +0.4348222 0.510322 0.4085988 +0.4470264 0.510322 0.4085988 +0.4586928 0.510322 0.4085988 +0.4698649 0.510322 0.4085988 +0.4805811 0.510322 0.4085988 +0.490876 0.510322 0.4085988 +0.5007803 0.510322 0.4085988 +0.510322 0.510322 0.4085988 +0.5195258 0.510322 0.4085988 +0.5284142 0.510322 0.4085988 +0.5370079 0.510322 0.4085988 +0.5453253 0.510322 0.4085988 +0.5533834 0.510322 0.4085988 +0.5611974 0.510322 0.4085988 +0.5687816 0.510322 0.4085988 +0.092819 0.5195258 0.4085988 +0.1056428 0.5195258 0.4085988 +0.1201537 0.5195258 0.4085988 +0.1409607 0.5195258 0.4085988 +0.1678172 0.5195258 0.4085988 +0.1950164 0.5195258 0.4085988 +0.2210581 0.5195258 0.4085988 +0.245636 0.5195258 0.4085988 +0.2686816 0.5195258 0.4085988 +0.2902431 0.5195258 0.4085988 +0.3104189 0.5195258 0.4085988 +0.3293248 0.5195258 0.4085988 +0.3470774 0.5195258 0.4085988 +0.3637862 0.5195258 0.4085988 +0.3795513 0.5195258 0.4085988 +0.3944623 0.5195258 0.4085988 +0.4085988 0.5195258 0.4085988 +0.4220313 0.5195258 0.4085988 +0.4348222 0.5195258 0.4085988 +0.4470264 0.5195258 0.4085988 +0.4586928 0.5195258 0.4085988 +0.4698649 0.5195258 0.4085988 +0.4805811 0.5195258 0.4085988 +0.490876 0.5195258 0.4085988 +0.5007803 0.5195258 0.4085988 +0.510322 0.5195258 0.4085988 +0.5195258 0.5195258 0.4085988 +0.5284142 0.5195258 0.4085988 +0.5370079 0.5195258 0.4085988 +0.5453253 0.5195258 0.4085988 +0.5533834 0.5195258 0.4085988 +0.5611974 0.5195258 0.4085988 +0.5687816 0.5195258 0.4085988 +0.092819 0.5284142 0.4085988 +0.1056428 0.5284142 0.4085988 +0.1201537 0.5284142 0.4085988 +0.1409607 0.5284142 0.4085988 +0.1678172 0.5284142 0.4085988 +0.1950164 0.5284142 0.4085988 +0.2210581 0.5284142 0.4085988 +0.245636 0.5284142 0.4085988 +0.2686816 0.5284142 0.4085988 +0.2902431 0.5284142 0.4085988 +0.3104189 0.5284142 0.4085988 +0.3293248 0.5284142 0.4085988 +0.3470774 0.5284142 0.4085988 +0.3637862 0.5284142 0.4085988 +0.3795513 0.5284142 0.4085988 +0.3944623 0.5284142 0.4085988 +0.4085988 0.5284142 0.4085988 +0.4220313 0.5284142 0.4085988 +0.4348222 0.5284142 0.4085988 +0.4470264 0.5284142 0.4085988 +0.4586928 0.5284142 0.4085988 +0.4698649 0.5284142 0.4085988 +0.4805811 0.5284142 0.4085988 +0.490876 0.5284142 0.4085988 +0.5007803 0.5284142 0.4085988 +0.510322 0.5284142 0.4085988 +0.5195258 0.5284142 0.4085988 +0.5284142 0.5284142 0.4085988 +0.5370079 0.5284142 0.4085988 +0.5453253 0.5284142 0.4085988 +0.5533834 0.5284142 0.4085988 +0.5611974 0.5284142 0.4085988 +0.5687816 0.5284142 0.4085988 +0.092819 0.5370079 0.4085988 +0.1056428 0.5370079 0.4085988 +0.1201537 0.5370079 0.4085988 +0.1409607 0.5370079 0.4085988 +0.1678172 0.5370079 0.4085988 +0.1950164 0.5370079 0.4085988 +0.2210581 0.5370079 0.4085988 +0.245636 0.5370079 0.4085988 +0.2686816 0.5370079 0.4085988 +0.2902431 0.5370079 0.4085988 +0.3104189 0.5370079 0.4085988 +0.3293248 0.5370079 0.4085988 +0.3470774 0.5370079 0.4085988 +0.3637862 0.5370079 0.4085988 +0.3795513 0.5370079 0.4085988 +0.3944623 0.5370079 0.4085988 +0.4085988 0.5370079 0.4085988 +0.4220313 0.5370079 0.4085988 +0.4348222 0.5370079 0.4085988 +0.4470264 0.5370079 0.4085988 +0.4586928 0.5370079 0.4085988 +0.4698649 0.5370079 0.4085988 +0.4805811 0.5370079 0.4085988 +0.490876 0.5370079 0.4085988 +0.5007803 0.5370079 0.4085988 +0.510322 0.5370079 0.4085988 +0.5195258 0.5370079 0.4085988 +0.5284142 0.5370079 0.4085988 +0.5370079 0.5370079 0.4085988 +0.5453253 0.5370079 0.4085988 +0.5533834 0.5370079 0.4085988 +0.5611974 0.5370079 0.4085988 +0.5687816 0.5370079 0.4085988 +0.092819 0.5453253 0.4085988 +0.1056428 0.5453253 0.4085988 +0.1201537 0.5453253 0.4085988 +0.1409607 0.5453253 0.4085988 +0.1678172 0.5453253 0.4085988 +0.1950164 0.5453253 0.4085988 +0.2210581 0.5453253 0.4085988 +0.245636 0.5453253 0.4085988 +0.2686816 0.5453253 0.4085988 +0.2902431 0.5453253 0.4085988 +0.3104189 0.5453253 0.4085988 +0.3293248 0.5453253 0.4085988 +0.3470774 0.5453253 0.4085988 +0.3637862 0.5453253 0.4085988 +0.3795513 0.5453253 0.4085988 +0.3944623 0.5453253 0.4085988 +0.4085988 0.5453253 0.4085988 +0.4220313 0.5453253 0.4085988 +0.4348222 0.5453253 0.4085988 +0.4470264 0.5453253 0.4085988 +0.4586928 0.5453253 0.4085988 +0.4698649 0.5453253 0.4085988 +0.4805811 0.5453253 0.4085988 +0.490876 0.5453253 0.4085988 +0.5007803 0.5453253 0.4085988 +0.510322 0.5453253 0.4085988 +0.5195258 0.5453253 0.4085988 +0.5284142 0.5453253 0.4085988 +0.5370079 0.5453253 0.4085988 +0.5453253 0.5453253 0.4085988 +0.5533834 0.5453253 0.4085988 +0.5611974 0.5453253 0.4085988 +0.5687816 0.5453253 0.4085988 +0.092819 0.5533834 0.4085988 +0.1056428 0.5533834 0.4085988 +0.1201537 0.5533834 0.4085988 +0.1409607 0.5533834 0.4085988 +0.1678172 0.5533834 0.4085988 +0.1950164 0.5533834 0.4085988 +0.2210581 0.5533834 0.4085988 +0.245636 0.5533834 0.4085988 +0.2686816 0.5533834 0.4085988 +0.2902431 0.5533834 0.4085988 +0.3104189 0.5533834 0.4085988 +0.3293248 0.5533834 0.4085988 +0.3470774 0.5533834 0.4085988 +0.3637862 0.5533834 0.4085988 +0.3795513 0.5533834 0.4085988 +0.3944623 0.5533834 0.4085988 +0.4085988 0.5533834 0.4085988 +0.4220313 0.5533834 0.4085988 +0.4348222 0.5533834 0.4085988 +0.4470264 0.5533834 0.4085988 +0.4586928 0.5533834 0.4085988 +0.4698649 0.5533834 0.4085988 +0.4805811 0.5533834 0.4085988 +0.490876 0.5533834 0.4085988 +0.5007803 0.5533834 0.4085988 +0.510322 0.5533834 0.4085988 +0.5195258 0.5533834 0.4085988 +0.5284142 0.5533834 0.4085988 +0.5370079 0.5533834 0.4085988 +0.5453253 0.5533834 0.4085988 +0.5533834 0.5533834 0.4085988 +0.5611974 0.5533834 0.4085988 +0.5687816 0.5533834 0.4085988 +0.092819 0.5611974 0.4085988 +0.1056428 0.5611974 0.4085988 +0.1201537 0.5611974 0.4085988 +0.1409607 0.5611974 0.4085988 +0.1678172 0.5611974 0.4085988 +0.1950164 0.5611974 0.4085988 +0.2210581 0.5611974 0.4085988 +0.245636 0.5611974 0.4085988 +0.2686816 0.5611974 0.4085988 +0.2902431 0.5611974 0.4085988 +0.3104189 0.5611974 0.4085988 +0.3293248 0.5611974 0.4085988 +0.3470774 0.5611974 0.4085988 +0.3637862 0.5611974 0.4085988 +0.3795513 0.5611974 0.4085988 +0.3944623 0.5611974 0.4085988 +0.4085988 0.5611974 0.4085988 +0.4220313 0.5611974 0.4085988 +0.4348222 0.5611974 0.4085988 +0.4470264 0.5611974 0.4085988 +0.4586928 0.5611974 0.4085988 +0.4698649 0.5611974 0.4085988 +0.4805811 0.5611974 0.4085988 +0.490876 0.5611974 0.4085988 +0.5007803 0.5611974 0.4085988 +0.510322 0.5611974 0.4085988 +0.5195258 0.5611974 0.4085988 +0.5284142 0.5611974 0.4085988 +0.5370079 0.5611974 0.4085988 +0.5453253 0.5611974 0.4085988 +0.5533834 0.5611974 0.4085988 +0.5611974 0.5611974 0.4085988 +0.5687816 0.5611974 0.4085988 +0.092819 0.5687816 0.4085988 +0.1056428 0.5687816 0.4085988 +0.1201537 0.5687816 0.4085988 +0.1409607 0.5687816 0.4085988 +0.1678172 0.5687816 0.4085988 +0.1950164 0.5687816 0.4085988 +0.2210581 0.5687816 0.4085988 +0.245636 0.5687816 0.4085988 +0.2686816 0.5687816 0.4085988 +0.2902431 0.5687816 0.4085988 +0.3104189 0.5687816 0.4085988 +0.3293248 0.5687816 0.4085988 +0.3470774 0.5687816 0.4085988 +0.3637862 0.5687816 0.4085988 +0.3795513 0.5687816 0.4085988 +0.3944623 0.5687816 0.4085988 +0.4085988 0.5687816 0.4085988 +0.4220313 0.5687816 0.4085988 +0.4348222 0.5687816 0.4085988 +0.4470264 0.5687816 0.4085988 +0.4586928 0.5687816 0.4085988 +0.4698649 0.5687816 0.4085988 +0.4805811 0.5687816 0.4085988 +0.490876 0.5687816 0.4085988 +0.5007803 0.5687816 0.4085988 +0.510322 0.5687816 0.4085988 +0.5195258 0.5687816 0.4085988 +0.5284142 0.5687816 0.4085988 +0.5370079 0.5687816 0.4085988 +0.5453253 0.5687816 0.4085988 +0.5533834 0.5687816 0.4085988 +0.5611974 0.5687816 0.4085988 +0.5687816 0.5687816 0.4085988 +0.092819 0.092819 0.4220313 +0.1056428 0.092819 0.4220313 +0.1201537 0.092819 0.4220313 +0.1409607 0.092819 0.4220313 +0.1678172 0.092819 0.4220313 +0.1950164 0.092819 0.4220313 +0.2210581 0.092819 0.4220313 +0.245636 0.092819 0.4220313 +0.2686816 0.092819 0.4220313 +0.2902431 0.092819 0.4220313 +0.3104189 0.092819 0.4220313 +0.3293248 0.092819 0.4220313 +0.3470774 0.092819 0.4220313 +0.3637862 0.092819 0.4220313 +0.3795513 0.092819 0.4220313 +0.3944623 0.092819 0.4220313 +0.4085988 0.092819 0.4220313 +0.4220313 0.092819 0.4220313 +0.4348222 0.092819 0.4220313 +0.4470264 0.092819 0.4220313 +0.4586928 0.092819 0.4220313 +0.4698649 0.092819 0.4220313 +0.4805811 0.092819 0.4220313 +0.490876 0.092819 0.4220313 +0.5007803 0.092819 0.4220313 +0.510322 0.092819 0.4220313 +0.5195258 0.092819 0.4220313 +0.5284142 0.092819 0.4220313 +0.5370079 0.092819 0.4220313 +0.5453253 0.092819 0.4220313 +0.5533834 0.092819 0.4220313 +0.5611974 0.092819 0.4220313 +0.5687816 0.092819 0.4220313 +0.092819 0.1056428 0.4220313 +0.1056428 0.1056428 0.4220313 +0.1201537 0.1056428 0.4220313 +0.1409607 0.1056428 0.4220313 +0.1678172 0.1056428 0.4220313 +0.1950164 0.1056428 0.4220313 +0.2210581 0.1056428 0.4220313 +0.245636 0.1056428 0.4220313 +0.2686816 0.1056428 0.4220313 +0.2902431 0.1056428 0.4220313 +0.3104189 0.1056428 0.4220313 +0.3293248 0.1056428 0.4220313 +0.3470774 0.1056428 0.4220313 +0.3637862 0.1056428 0.4220313 +0.3795513 0.1056428 0.4220313 +0.3944623 0.1056428 0.4220313 +0.4085988 0.1056428 0.4220313 +0.4220313 0.1056428 0.4220313 +0.4348222 0.1056428 0.4220313 +0.4470264 0.1056428 0.4220313 +0.4586928 0.1056428 0.4220313 +0.4698649 0.1056428 0.4220313 +0.4805811 0.1056428 0.4220313 +0.490876 0.1056428 0.4220313 +0.5007803 0.1056428 0.4220313 +0.510322 0.1056428 0.4220313 +0.5195258 0.1056428 0.4220313 +0.5284142 0.1056428 0.4220313 +0.5370079 0.1056428 0.4220313 +0.5453253 0.1056428 0.4220313 +0.5533834 0.1056428 0.4220313 +0.5611974 0.1056428 0.4220313 +0.5687816 0.1056428 0.4220313 +0.092819 0.1201537 0.4220313 +0.1056428 0.1201537 0.4220313 +0.1201537 0.1201537 0.4220313 +0.1409607 0.1201537 0.4220313 +0.1678172 0.1201537 0.4220313 +0.1950164 0.1201537 0.4220313 +0.2210581 0.1201537 0.4220313 +0.245636 0.1201537 0.4220313 +0.2686816 0.1201537 0.4220313 +0.2902431 0.1201537 0.4220313 +0.3104189 0.1201537 0.4220313 +0.3293248 0.1201537 0.4220313 +0.3470774 0.1201537 0.4220313 +0.3637862 0.1201537 0.4220313 +0.3795513 0.1201537 0.4220313 +0.3944623 0.1201537 0.4220313 +0.4085988 0.1201537 0.4220313 +0.4220313 0.1201537 0.4220313 +0.4348222 0.1201537 0.4220313 +0.4470264 0.1201537 0.4220313 +0.4586928 0.1201537 0.4220313 +0.4698649 0.1201537 0.4220313 +0.4805811 0.1201537 0.4220313 +0.490876 0.1201537 0.4220313 +0.5007803 0.1201537 0.4220313 +0.510322 0.1201537 0.4220313 +0.5195258 0.1201537 0.4220313 +0.5284142 0.1201537 0.4220313 +0.5370079 0.1201537 0.4220313 +0.5453253 0.1201537 0.4220313 +0.5533834 0.1201537 0.4220313 +0.5611974 0.1201537 0.4220313 +0.5687816 0.1201537 0.4220313 +0.092819 0.1409607 0.4220313 +0.1056428 0.1409607 0.4220313 +0.1201537 0.1409607 0.4220313 +0.1409607 0.1409607 0.4220313 +0.1678172 0.1409607 0.4220313 +0.1950164 0.1409607 0.4220313 +0.2210581 0.1409607 0.4220313 +0.245636 0.1409607 0.4220313 +0.2686816 0.1409607 0.4220313 +0.2902431 0.1409607 0.4220313 +0.3104189 0.1409607 0.4220313 +0.3293248 0.1409607 0.4220313 +0.3470774 0.1409607 0.4220313 +0.3637862 0.1409607 0.4220313 +0.3795513 0.1409607 0.4220313 +0.3944623 0.1409607 0.4220313 +0.4085988 0.1409607 0.4220313 +0.4220313 0.1409607 0.4220313 +0.4348222 0.1409607 0.4220313 +0.4470264 0.1409607 0.4220313 +0.4586928 0.1409607 0.4220313 +0.4698649 0.1409607 0.4220313 +0.4805811 0.1409607 0.4220313 +0.490876 0.1409607 0.4220313 +0.5007803 0.1409607 0.4220313 +0.510322 0.1409607 0.4220313 +0.5195258 0.1409607 0.4220313 +0.5284142 0.1409607 0.4220313 +0.5370079 0.1409607 0.4220313 +0.5453253 0.1409607 0.4220313 +0.5533834 0.1409607 0.4220313 +0.5611974 0.1409607 0.4220313 +0.5687816 0.1409607 0.4220313 +0.092819 0.1678172 0.4220313 +0.1056428 0.1678172 0.4220313 +0.1201537 0.1678172 0.4220313 +0.1409607 0.1678172 0.4220313 +0.1678172 0.1678172 0.4220313 +0.1950164 0.1678172 0.4220313 +0.2210581 0.1678172 0.4220313 +0.245636 0.1678172 0.4220313 +0.2686816 0.1678172 0.4220313 +0.2902431 0.1678172 0.4220313 +0.3104189 0.1678172 0.4220313 +0.3293248 0.1678172 0.4220313 +0.3470774 0.1678172 0.4220313 +0.3637862 0.1678172 0.4220313 +0.3795513 0.1678172 0.4220313 +0.3944623 0.1678172 0.4220313 +0.4085988 0.1678172 0.4220313 +0.4220313 0.1678172 0.4220313 +0.4348222 0.1678172 0.4220313 +0.4470264 0.1678172 0.4220313 +0.4586928 0.1678172 0.4220313 +0.4698649 0.1678172 0.4220313 +0.4805811 0.1678172 0.4220313 +0.490876 0.1678172 0.4220313 +0.5007803 0.1678172 0.4220313 +0.510322 0.1678172 0.4220313 +0.5195258 0.1678172 0.4220313 +0.5284142 0.1678172 0.4220313 +0.5370079 0.1678172 0.4220313 +0.5453253 0.1678172 0.4220313 +0.5533834 0.1678172 0.4220313 +0.5611974 0.1678172 0.4220313 +0.5687816 0.1678172 0.4220313 +0.092819 0.1950164 0.4220313 +0.1056428 0.1950164 0.4220313 +0.1201537 0.1950164 0.4220313 +0.1409607 0.1950164 0.4220313 +0.1678172 0.1950164 0.4220313 +0.1950164 0.1950164 0.4220313 +0.2210581 0.1950164 0.4220313 +0.245636 0.1950164 0.4220313 +0.2686816 0.1950164 0.4220313 +0.2902431 0.1950164 0.4220313 +0.3104189 0.1950164 0.4220313 +0.3293248 0.1950164 0.4220313 +0.3470774 0.1950164 0.4220313 +0.3637862 0.1950164 0.4220313 +0.3795513 0.1950164 0.4220313 +0.3944623 0.1950164 0.4220313 +0.4085988 0.1950164 0.4220313 +0.4220313 0.1950164 0.4220313 +0.4348222 0.1950164 0.4220313 +0.4470264 0.1950164 0.4220313 +0.4586928 0.1950164 0.4220313 +0.4698649 0.1950164 0.4220313 +0.4805811 0.1950164 0.4220313 +0.490876 0.1950164 0.4220313 +0.5007803 0.1950164 0.4220313 +0.510322 0.1950164 0.4220313 +0.5195258 0.1950164 0.4220313 +0.5284142 0.1950164 0.4220313 +0.5370079 0.1950164 0.4220313 +0.5453253 0.1950164 0.4220313 +0.5533834 0.1950164 0.4220313 +0.5611974 0.1950164 0.4220313 +0.5687816 0.1950164 0.4220313 +0.092819 0.2210581 0.4220313 +0.1056428 0.2210581 0.4220313 +0.1201537 0.2210581 0.4220313 +0.1409607 0.2210581 0.4220313 +0.1678172 0.2210581 0.4220313 +0.1950164 0.2210581 0.4220313 +0.2210581 0.2210581 0.4220313 +0.245636 0.2210581 0.4220313 +0.2686816 0.2210581 0.4220313 +0.2902431 0.2210581 0.4220313 +0.3104189 0.2210581 0.4220313 +0.3293248 0.2210581 0.4220313 +0.3470774 0.2210581 0.4220313 +0.3637862 0.2210581 0.4220313 +0.3795513 0.2210581 0.4220313 +0.3944623 0.2210581 0.4220313 +0.4085988 0.2210581 0.4220313 +0.4220313 0.2210581 0.4220313 +0.4348222 0.2210581 0.4220313 +0.4470264 0.2210581 0.4220313 +0.4586928 0.2210581 0.4220313 +0.4698649 0.2210581 0.4220313 +0.4805811 0.2210581 0.4220313 +0.490876 0.2210581 0.4220313 +0.5007803 0.2210581 0.4220313 +0.510322 0.2210581 0.4220313 +0.5195258 0.2210581 0.4220313 +0.5284142 0.2210581 0.4220313 +0.5370079 0.2210581 0.4220313 +0.5453253 0.2210581 0.4220313 +0.5533834 0.2210581 0.4220313 +0.5611974 0.2210581 0.4220313 +0.5687816 0.2210581 0.4220313 +0.092819 0.245636 0.4220313 +0.1056428 0.245636 0.4220313 +0.1201537 0.245636 0.4220313 +0.1409607 0.245636 0.4220313 +0.1678172 0.245636 0.4220313 +0.1950164 0.245636 0.4220313 +0.2210581 0.245636 0.4220313 +0.245636 0.245636 0.4220313 +0.2686816 0.245636 0.4220313 +0.2902431 0.245636 0.4220313 +0.3104189 0.245636 0.4220313 +0.3293248 0.245636 0.4220313 +0.3470774 0.245636 0.4220313 +0.3637862 0.245636 0.4220313 +0.3795513 0.245636 0.4220313 +0.3944623 0.245636 0.4220313 +0.4085988 0.245636 0.4220313 +0.4220313 0.245636 0.4220313 +0.4348222 0.245636 0.4220313 +0.4470264 0.245636 0.4220313 +0.4586928 0.245636 0.4220313 +0.4698649 0.245636 0.4220313 +0.4805811 0.245636 0.4220313 +0.490876 0.245636 0.4220313 +0.5007803 0.245636 0.4220313 +0.510322 0.245636 0.4220313 +0.5195258 0.245636 0.4220313 +0.5284142 0.245636 0.4220313 +0.5370079 0.245636 0.4220313 +0.5453253 0.245636 0.4220313 +0.5533834 0.245636 0.4220313 +0.5611974 0.245636 0.4220313 +0.5687816 0.245636 0.4220313 +0.092819 0.2686816 0.4220313 +0.1056428 0.2686816 0.4220313 +0.1201537 0.2686816 0.4220313 +0.1409607 0.2686816 0.4220313 +0.1678172 0.2686816 0.4220313 +0.1950164 0.2686816 0.4220313 +0.2210581 0.2686816 0.4220313 +0.245636 0.2686816 0.4220313 +0.2686816 0.2686816 0.4220313 +0.2902431 0.2686816 0.4220313 +0.3104189 0.2686816 0.4220313 +0.3293248 0.2686816 0.4220313 +0.3470774 0.2686816 0.4220313 +0.3637862 0.2686816 0.4220313 +0.3795513 0.2686816 0.4220313 +0.3944623 0.2686816 0.4220313 +0.4085988 0.2686816 0.4220313 +0.4220313 0.2686816 0.4220313 +0.4348222 0.2686816 0.4220313 +0.4470264 0.2686816 0.4220313 +0.4586928 0.2686816 0.4220313 +0.4698649 0.2686816 0.4220313 +0.4805811 0.2686816 0.4220313 +0.490876 0.2686816 0.4220313 +0.5007803 0.2686816 0.4220313 +0.510322 0.2686816 0.4220313 +0.5195258 0.2686816 0.4220313 +0.5284142 0.2686816 0.4220313 +0.5370079 0.2686816 0.4220313 +0.5453253 0.2686816 0.4220313 +0.5533834 0.2686816 0.4220313 +0.5611974 0.2686816 0.4220313 +0.5687816 0.2686816 0.4220313 +0.092819 0.2902431 0.4220313 +0.1056428 0.2902431 0.4220313 +0.1201537 0.2902431 0.4220313 +0.1409607 0.2902431 0.4220313 +0.1678172 0.2902431 0.4220313 +0.1950164 0.2902431 0.4220313 +0.2210581 0.2902431 0.4220313 +0.245636 0.2902431 0.4220313 +0.2686816 0.2902431 0.4220313 +0.2902431 0.2902431 0.4220313 +0.3104189 0.2902431 0.4220313 +0.3293248 0.2902431 0.4220313 +0.3470774 0.2902431 0.4220313 +0.3637862 0.2902431 0.4220313 +0.3795513 0.2902431 0.4220313 +0.3944623 0.2902431 0.4220313 +0.4085988 0.2902431 0.4220313 +0.4220313 0.2902431 0.4220313 +0.4348222 0.2902431 0.4220313 +0.4470264 0.2902431 0.4220313 +0.4586928 0.2902431 0.4220313 +0.4698649 0.2902431 0.4220313 +0.4805811 0.2902431 0.4220313 +0.490876 0.2902431 0.4220313 +0.5007803 0.2902431 0.4220313 +0.510322 0.2902431 0.4220313 +0.5195258 0.2902431 0.4220313 +0.5284142 0.2902431 0.4220313 +0.5370079 0.2902431 0.4220313 +0.5453253 0.2902431 0.4220313 +0.5533834 0.2902431 0.4220313 +0.5611974 0.2902431 0.4220313 +0.5687816 0.2902431 0.4220313 +0.092819 0.3104189 0.4220313 +0.1056428 0.3104189 0.4220313 +0.1201537 0.3104189 0.4220313 +0.1409607 0.3104189 0.4220313 +0.1678172 0.3104189 0.4220313 +0.1950164 0.3104189 0.4220313 +0.2210581 0.3104189 0.4220313 +0.245636 0.3104189 0.4220313 +0.2686816 0.3104189 0.4220313 +0.2902431 0.3104189 0.4220313 +0.3104189 0.3104189 0.4220313 +0.3293248 0.3104189 0.4220313 +0.3470774 0.3104189 0.4220313 +0.3637862 0.3104189 0.4220313 +0.3795513 0.3104189 0.4220313 +0.3944623 0.3104189 0.4220313 +0.4085988 0.3104189 0.4220313 +0.4220313 0.3104189 0.4220313 +0.4348222 0.3104189 0.4220313 +0.4470264 0.3104189 0.4220313 +0.4586928 0.3104189 0.4220313 +0.4698649 0.3104189 0.4220313 +0.4805811 0.3104189 0.4220313 +0.490876 0.3104189 0.4220313 +0.5007803 0.3104189 0.4220313 +0.510322 0.3104189 0.4220313 +0.5195258 0.3104189 0.4220313 +0.5284142 0.3104189 0.4220313 +0.5370079 0.3104189 0.4220313 +0.5453253 0.3104189 0.4220313 +0.5533834 0.3104189 0.4220313 +0.5611974 0.3104189 0.4220313 +0.5687816 0.3104189 0.4220313 +0.092819 0.3293248 0.4220313 +0.1056428 0.3293248 0.4220313 +0.1201537 0.3293248 0.4220313 +0.1409607 0.3293248 0.4220313 +0.1678172 0.3293248 0.4220313 +0.1950164 0.3293248 0.4220313 +0.2210581 0.3293248 0.4220313 +0.245636 0.3293248 0.4220313 +0.2686816 0.3293248 0.4220313 +0.2902431 0.3293248 0.4220313 +0.3104189 0.3293248 0.4220313 +0.3293248 0.3293248 0.4220313 +0.3470774 0.3293248 0.4220313 +0.3637862 0.3293248 0.4220313 +0.3795513 0.3293248 0.4220313 +0.3944623 0.3293248 0.4220313 +0.4085988 0.3293248 0.4220313 +0.4220313 0.3293248 0.4220313 +0.4348222 0.3293248 0.4220313 +0.4470264 0.3293248 0.4220313 +0.4586928 0.3293248 0.4220313 +0.4698649 0.3293248 0.4220313 +0.4805811 0.3293248 0.4220313 +0.490876 0.3293248 0.4220313 +0.5007803 0.3293248 0.4220313 +0.510322 0.3293248 0.4220313 +0.5195258 0.3293248 0.4220313 +0.5284142 0.3293248 0.4220313 +0.5370079 0.3293248 0.4220313 +0.5453253 0.3293248 0.4220313 +0.5533834 0.3293248 0.4220313 +0.5611974 0.3293248 0.4220313 +0.5687816 0.3293248 0.4220313 +0.092819 0.3470774 0.4220313 +0.1056428 0.3470774 0.4220313 +0.1201537 0.3470774 0.4220313 +0.1409607 0.3470774 0.4220313 +0.1678172 0.3470774 0.4220313 +0.1950164 0.3470774 0.4220313 +0.2210581 0.3470774 0.4220313 +0.245636 0.3470774 0.4220313 +0.2686816 0.3470774 0.4220313 +0.2902431 0.3470774 0.4220313 +0.3104189 0.3470774 0.4220313 +0.3293248 0.3470774 0.4220313 +0.3470774 0.3470774 0.4220313 +0.3637862 0.3470774 0.4220313 +0.3795513 0.3470774 0.4220313 +0.3944623 0.3470774 0.4220313 +0.4085988 0.3470774 0.4220313 +0.4220313 0.3470774 0.4220313 +0.4348222 0.3470774 0.4220313 +0.4470264 0.3470774 0.4220313 +0.4586928 0.3470774 0.4220313 +0.4698649 0.3470774 0.4220313 +0.4805811 0.3470774 0.4220313 +0.490876 0.3470774 0.4220313 +0.5007803 0.3470774 0.4220313 +0.510322 0.3470774 0.4220313 +0.5195258 0.3470774 0.4220313 +0.5284142 0.3470774 0.4220313 +0.5370079 0.3470774 0.4220313 +0.5453253 0.3470774 0.4220313 +0.5533834 0.3470774 0.4220313 +0.5611974 0.3470774 0.4220313 +0.5687816 0.3470774 0.4220313 +0.092819 0.3637862 0.4220313 +0.1056428 0.3637862 0.4220313 +0.1201537 0.3637862 0.4220313 +0.1409607 0.3637862 0.4220313 +0.1678172 0.3637862 0.4220313 +0.1950164 0.3637862 0.4220313 +0.2210581 0.3637862 0.4220313 +0.245636 0.3637862 0.4220313 +0.2686816 0.3637862 0.4220313 +0.2902431 0.3637862 0.4220313 +0.3104189 0.3637862 0.4220313 +0.3293248 0.3637862 0.4220313 +0.3470774 0.3637862 0.4220313 +0.3637862 0.3637862 0.4220313 +0.3795513 0.3637862 0.4220313 +0.3944623 0.3637862 0.4220313 +0.4085988 0.3637862 0.4220313 +0.4220313 0.3637862 0.4220313 +0.4348222 0.3637862 0.4220313 +0.4470264 0.3637862 0.4220313 +0.4586928 0.3637862 0.4220313 +0.4698649 0.3637862 0.4220313 +0.4805811 0.3637862 0.4220313 +0.490876 0.3637862 0.4220313 +0.5007803 0.3637862 0.4220313 +0.510322 0.3637862 0.4220313 +0.5195258 0.3637862 0.4220313 +0.5284142 0.3637862 0.4220313 +0.5370079 0.3637862 0.4220313 +0.5453253 0.3637862 0.4220313 +0.5533834 0.3637862 0.4220313 +0.5611974 0.3637862 0.4220313 +0.5687816 0.3637862 0.4220313 +0.092819 0.3795513 0.4220313 +0.1056428 0.3795513 0.4220313 +0.1201537 0.3795513 0.4220313 +0.1409607 0.3795513 0.4220313 +0.1678172 0.3795513 0.4220313 +0.1950164 0.3795513 0.4220313 +0.2210581 0.3795513 0.4220313 +0.245636 0.3795513 0.4220313 +0.2686816 0.3795513 0.4220313 +0.2902431 0.3795513 0.4220313 +0.3104189 0.3795513 0.4220313 +0.3293248 0.3795513 0.4220313 +0.3470774 0.3795513 0.4220313 +0.3637862 0.3795513 0.4220313 +0.3795513 0.3795513 0.4220313 +0.3944623 0.3795513 0.4220313 +0.4085988 0.3795513 0.4220313 +0.4220313 0.3795513 0.4220313 +0.4348222 0.3795513 0.4220313 +0.4470264 0.3795513 0.4220313 +0.4586928 0.3795513 0.4220313 +0.4698649 0.3795513 0.4220313 +0.4805811 0.3795513 0.4220313 +0.490876 0.3795513 0.4220313 +0.5007803 0.3795513 0.4220313 +0.510322 0.3795513 0.4220313 +0.5195258 0.3795513 0.4220313 +0.5284142 0.3795513 0.4220313 +0.5370079 0.3795513 0.4220313 +0.5453253 0.3795513 0.4220313 +0.5533834 0.3795513 0.4220313 +0.5611974 0.3795513 0.4220313 +0.5687816 0.3795513 0.4220313 +0.092819 0.3944623 0.4220313 +0.1056428 0.3944623 0.4220313 +0.1201537 0.3944623 0.4220313 +0.1409607 0.3944623 0.4220313 +0.1678172 0.3944623 0.4220313 +0.1950164 0.3944623 0.4220313 +0.2210581 0.3944623 0.4220313 +0.245636 0.3944623 0.4220313 +0.2686816 0.3944623 0.4220313 +0.2902431 0.3944623 0.4220313 +0.3104189 0.3944623 0.4220313 +0.3293248 0.3944623 0.4220313 +0.3470774 0.3944623 0.4220313 +0.3637862 0.3944623 0.4220313 +0.3795513 0.3944623 0.4220313 +0.3944623 0.3944623 0.4220313 +0.4085988 0.3944623 0.4220313 +0.4220313 0.3944623 0.4220313 +0.4348222 0.3944623 0.4220313 +0.4470264 0.3944623 0.4220313 +0.4586928 0.3944623 0.4220313 +0.4698649 0.3944623 0.4220313 +0.4805811 0.3944623 0.4220313 +0.490876 0.3944623 0.4220313 +0.5007803 0.3944623 0.4220313 +0.510322 0.3944623 0.4220313 +0.5195258 0.3944623 0.4220313 +0.5284142 0.3944623 0.4220313 +0.5370079 0.3944623 0.4220313 +0.5453253 0.3944623 0.4220313 +0.5533834 0.3944623 0.4220313 +0.5611974 0.3944623 0.4220313 +0.5687816 0.3944623 0.4220313 +0.092819 0.4085988 0.4220313 +0.1056428 0.4085988 0.4220313 +0.1201537 0.4085988 0.4220313 +0.1409607 0.4085988 0.4220313 +0.1678172 0.4085988 0.4220313 +0.1950164 0.4085988 0.4220313 +0.2210581 0.4085988 0.4220313 +0.245636 0.4085988 0.4220313 +0.2686816 0.4085988 0.4220313 +0.2902431 0.4085988 0.4220313 +0.3104189 0.4085988 0.4220313 +0.3293248 0.4085988 0.4220313 +0.3470774 0.4085988 0.4220313 +0.3637862 0.4085988 0.4220313 +0.3795513 0.4085988 0.4220313 +0.3944623 0.4085988 0.4220313 +0.4085988 0.4085988 0.4220313 +0.4220313 0.4085988 0.4220313 +0.4348222 0.4085988 0.4220313 +0.4470264 0.4085988 0.4220313 +0.4586928 0.4085988 0.4220313 +0.4698649 0.4085988 0.4220313 +0.4805811 0.4085988 0.4220313 +0.490876 0.4085988 0.4220313 +0.5007803 0.4085988 0.4220313 +0.510322 0.4085988 0.4220313 +0.5195258 0.4085988 0.4220313 +0.5284142 0.4085988 0.4220313 +0.5370079 0.4085988 0.4220313 +0.5453253 0.4085988 0.4220313 +0.5533834 0.4085988 0.4220313 +0.5611974 0.4085988 0.4220313 +0.5687816 0.4085988 0.4220313 +0.092819 0.4220313 0.4220313 +0.1056428 0.4220313 0.4220313 +0.1201537 0.4220313 0.4220313 +0.1409607 0.4220313 0.4220313 +0.1678172 0.4220313 0.4220313 +0.1950164 0.4220313 0.4220313 +0.2210581 0.4220313 0.4220313 +0.245636 0.4220313 0.4220313 +0.2686816 0.4220313 0.4220313 +0.2902431 0.4220313 0.4220313 +0.3104189 0.4220313 0.4220313 +0.3293248 0.4220313 0.4220313 +0.3470774 0.4220313 0.4220313 +0.3637862 0.4220313 0.4220313 +0.3795513 0.4220313 0.4220313 +0.3944623 0.4220313 0.4220313 +0.4085988 0.4220313 0.4220313 +0.4220313 0.4220313 0.4220313 +0.4348222 0.4220313 0.4220313 +0.4470264 0.4220313 0.4220313 +0.4586928 0.4220313 0.4220313 +0.4698649 0.4220313 0.4220313 +0.4805811 0.4220313 0.4220313 +0.490876 0.4220313 0.4220313 +0.5007803 0.4220313 0.4220313 +0.510322 0.4220313 0.4220313 +0.5195258 0.4220313 0.4220313 +0.5284142 0.4220313 0.4220313 +0.5370079 0.4220313 0.4220313 +0.5453253 0.4220313 0.4220313 +0.5533834 0.4220313 0.4220313 +0.5611974 0.4220313 0.4220313 +0.5687816 0.4220313 0.4220313 +0.092819 0.4348222 0.4220313 +0.1056428 0.4348222 0.4220313 +0.1201537 0.4348222 0.4220313 +0.1409607 0.4348222 0.4220313 +0.1678172 0.4348222 0.4220313 +0.1950164 0.4348222 0.4220313 +0.2210581 0.4348222 0.4220313 +0.245636 0.4348222 0.4220313 +0.2686816 0.4348222 0.4220313 +0.2902431 0.4348222 0.4220313 +0.3104189 0.4348222 0.4220313 +0.3293248 0.4348222 0.4220313 +0.3470774 0.4348222 0.4220313 +0.3637862 0.4348222 0.4220313 +0.3795513 0.4348222 0.4220313 +0.3944623 0.4348222 0.4220313 +0.4085988 0.4348222 0.4220313 +0.4220313 0.4348222 0.4220313 +0.4348222 0.4348222 0.4220313 +0.4470264 0.4348222 0.4220313 +0.4586928 0.4348222 0.4220313 +0.4698649 0.4348222 0.4220313 +0.4805811 0.4348222 0.4220313 +0.490876 0.4348222 0.4220313 +0.5007803 0.4348222 0.4220313 +0.510322 0.4348222 0.4220313 +0.5195258 0.4348222 0.4220313 +0.5284142 0.4348222 0.4220313 +0.5370079 0.4348222 0.4220313 +0.5453253 0.4348222 0.4220313 +0.5533834 0.4348222 0.4220313 +0.5611974 0.4348222 0.4220313 +0.5687816 0.4348222 0.4220313 +0.092819 0.4470264 0.4220313 +0.1056428 0.4470264 0.4220313 +0.1201537 0.4470264 0.4220313 +0.1409607 0.4470264 0.4220313 +0.1678172 0.4470264 0.4220313 +0.1950164 0.4470264 0.4220313 +0.2210581 0.4470264 0.4220313 +0.245636 0.4470264 0.4220313 +0.2686816 0.4470264 0.4220313 +0.2902431 0.4470264 0.4220313 +0.3104189 0.4470264 0.4220313 +0.3293248 0.4470264 0.4220313 +0.3470774 0.4470264 0.4220313 +0.3637862 0.4470264 0.4220313 +0.3795513 0.4470264 0.4220313 +0.3944623 0.4470264 0.4220313 +0.4085988 0.4470264 0.4220313 +0.4220313 0.4470264 0.4220313 +0.4348222 0.4470264 0.4220313 +0.4470264 0.4470264 0.4220313 +0.4586928 0.4470264 0.4220313 +0.4698649 0.4470264 0.4220313 +0.4805811 0.4470264 0.4220313 +0.490876 0.4470264 0.4220313 +0.5007803 0.4470264 0.4220313 +0.510322 0.4470264 0.4220313 +0.5195258 0.4470264 0.4220313 +0.5284142 0.4470264 0.4220313 +0.5370079 0.4470264 0.4220313 +0.5453253 0.4470264 0.4220313 +0.5533834 0.4470264 0.4220313 +0.5611974 0.4470264 0.4220313 +0.5687816 0.4470264 0.4220313 +0.092819 0.4586928 0.4220313 +0.1056428 0.4586928 0.4220313 +0.1201537 0.4586928 0.4220313 +0.1409607 0.4586928 0.4220313 +0.1678172 0.4586928 0.4220313 +0.1950164 0.4586928 0.4220313 +0.2210581 0.4586928 0.4220313 +0.245636 0.4586928 0.4220313 +0.2686816 0.4586928 0.4220313 +0.2902431 0.4586928 0.4220313 +0.3104189 0.4586928 0.4220313 +0.3293248 0.4586928 0.4220313 +0.3470774 0.4586928 0.4220313 +0.3637862 0.4586928 0.4220313 +0.3795513 0.4586928 0.4220313 +0.3944623 0.4586928 0.4220313 +0.4085988 0.4586928 0.4220313 +0.4220313 0.4586928 0.4220313 +0.4348222 0.4586928 0.4220313 +0.4470264 0.4586928 0.4220313 +0.4586928 0.4586928 0.4220313 +0.4698649 0.4586928 0.4220313 +0.4805811 0.4586928 0.4220313 +0.490876 0.4586928 0.4220313 +0.5007803 0.4586928 0.4220313 +0.510322 0.4586928 0.4220313 +0.5195258 0.4586928 0.4220313 +0.5284142 0.4586928 0.4220313 +0.5370079 0.4586928 0.4220313 +0.5453253 0.4586928 0.4220313 +0.5533834 0.4586928 0.4220313 +0.5611974 0.4586928 0.4220313 +0.5687816 0.4586928 0.4220313 +0.092819 0.4698649 0.4220313 +0.1056428 0.4698649 0.4220313 +0.1201537 0.4698649 0.4220313 +0.1409607 0.4698649 0.4220313 +0.1678172 0.4698649 0.4220313 +0.1950164 0.4698649 0.4220313 +0.2210581 0.4698649 0.4220313 +0.245636 0.4698649 0.4220313 +0.2686816 0.4698649 0.4220313 +0.2902431 0.4698649 0.4220313 +0.3104189 0.4698649 0.4220313 +0.3293248 0.4698649 0.4220313 +0.3470774 0.4698649 0.4220313 +0.3637862 0.4698649 0.4220313 +0.3795513 0.4698649 0.4220313 +0.3944623 0.4698649 0.4220313 +0.4085988 0.4698649 0.4220313 +0.4220313 0.4698649 0.4220313 +0.4348222 0.4698649 0.4220313 +0.4470264 0.4698649 0.4220313 +0.4586928 0.4698649 0.4220313 +0.4698649 0.4698649 0.4220313 +0.4805811 0.4698649 0.4220313 +0.490876 0.4698649 0.4220313 +0.5007803 0.4698649 0.4220313 +0.510322 0.4698649 0.4220313 +0.5195258 0.4698649 0.4220313 +0.5284142 0.4698649 0.4220313 +0.5370079 0.4698649 0.4220313 +0.5453253 0.4698649 0.4220313 +0.5533834 0.4698649 0.4220313 +0.5611974 0.4698649 0.4220313 +0.5687816 0.4698649 0.4220313 +0.092819 0.4805811 0.4220313 +0.1056428 0.4805811 0.4220313 +0.1201537 0.4805811 0.4220313 +0.1409607 0.4805811 0.4220313 +0.1678172 0.4805811 0.4220313 +0.1950164 0.4805811 0.4220313 +0.2210581 0.4805811 0.4220313 +0.245636 0.4805811 0.4220313 +0.2686816 0.4805811 0.4220313 +0.2902431 0.4805811 0.4220313 +0.3104189 0.4805811 0.4220313 +0.3293248 0.4805811 0.4220313 +0.3470774 0.4805811 0.4220313 +0.3637862 0.4805811 0.4220313 +0.3795513 0.4805811 0.4220313 +0.3944623 0.4805811 0.4220313 +0.4085988 0.4805811 0.4220313 +0.4220313 0.4805811 0.4220313 +0.4348222 0.4805811 0.4220313 +0.4470264 0.4805811 0.4220313 +0.4586928 0.4805811 0.4220313 +0.4698649 0.4805811 0.4220313 +0.4805811 0.4805811 0.4220313 +0.490876 0.4805811 0.4220313 +0.5007803 0.4805811 0.4220313 +0.510322 0.4805811 0.4220313 +0.5195258 0.4805811 0.4220313 +0.5284142 0.4805811 0.4220313 +0.5370079 0.4805811 0.4220313 +0.5453253 0.4805811 0.4220313 +0.5533834 0.4805811 0.4220313 +0.5611974 0.4805811 0.4220313 +0.5687816 0.4805811 0.4220313 +0.092819 0.490876 0.4220313 +0.1056428 0.490876 0.4220313 +0.1201537 0.490876 0.4220313 +0.1409607 0.490876 0.4220313 +0.1678172 0.490876 0.4220313 +0.1950164 0.490876 0.4220313 +0.2210581 0.490876 0.4220313 +0.245636 0.490876 0.4220313 +0.2686816 0.490876 0.4220313 +0.2902431 0.490876 0.4220313 +0.3104189 0.490876 0.4220313 +0.3293248 0.490876 0.4220313 +0.3470774 0.490876 0.4220313 +0.3637862 0.490876 0.4220313 +0.3795513 0.490876 0.4220313 +0.3944623 0.490876 0.4220313 +0.4085988 0.490876 0.4220313 +0.4220313 0.490876 0.4220313 +0.4348222 0.490876 0.4220313 +0.4470264 0.490876 0.4220313 +0.4586928 0.490876 0.4220313 +0.4698649 0.490876 0.4220313 +0.4805811 0.490876 0.4220313 +0.490876 0.490876 0.4220313 +0.5007803 0.490876 0.4220313 +0.510322 0.490876 0.4220313 +0.5195258 0.490876 0.4220313 +0.5284142 0.490876 0.4220313 +0.5370079 0.490876 0.4220313 +0.5453253 0.490876 0.4220313 +0.5533834 0.490876 0.4220313 +0.5611974 0.490876 0.4220313 +0.5687816 0.490876 0.4220313 +0.092819 0.5007803 0.4220313 +0.1056428 0.5007803 0.4220313 +0.1201537 0.5007803 0.4220313 +0.1409607 0.5007803 0.4220313 +0.1678172 0.5007803 0.4220313 +0.1950164 0.5007803 0.4220313 +0.2210581 0.5007803 0.4220313 +0.245636 0.5007803 0.4220313 +0.2686816 0.5007803 0.4220313 +0.2902431 0.5007803 0.4220313 +0.3104189 0.5007803 0.4220313 +0.3293248 0.5007803 0.4220313 +0.3470774 0.5007803 0.4220313 +0.3637862 0.5007803 0.4220313 +0.3795513 0.5007803 0.4220313 +0.3944623 0.5007803 0.4220313 +0.4085988 0.5007803 0.4220313 +0.4220313 0.5007803 0.4220313 +0.4348222 0.5007803 0.4220313 +0.4470264 0.5007803 0.4220313 +0.4586928 0.5007803 0.4220313 +0.4698649 0.5007803 0.4220313 +0.4805811 0.5007803 0.4220313 +0.490876 0.5007803 0.4220313 +0.5007803 0.5007803 0.4220313 +0.510322 0.5007803 0.4220313 +0.5195258 0.5007803 0.4220313 +0.5284142 0.5007803 0.4220313 +0.5370079 0.5007803 0.4220313 +0.5453253 0.5007803 0.4220313 +0.5533834 0.5007803 0.4220313 +0.5611974 0.5007803 0.4220313 +0.5687816 0.5007803 0.4220313 +0.092819 0.510322 0.4220313 +0.1056428 0.510322 0.4220313 +0.1201537 0.510322 0.4220313 +0.1409607 0.510322 0.4220313 +0.1678172 0.510322 0.4220313 +0.1950164 0.510322 0.4220313 +0.2210581 0.510322 0.4220313 +0.245636 0.510322 0.4220313 +0.2686816 0.510322 0.4220313 +0.2902431 0.510322 0.4220313 +0.3104189 0.510322 0.4220313 +0.3293248 0.510322 0.4220313 +0.3470774 0.510322 0.4220313 +0.3637862 0.510322 0.4220313 +0.3795513 0.510322 0.4220313 +0.3944623 0.510322 0.4220313 +0.4085988 0.510322 0.4220313 +0.4220313 0.510322 0.4220313 +0.4348222 0.510322 0.4220313 +0.4470264 0.510322 0.4220313 +0.4586928 0.510322 0.4220313 +0.4698649 0.510322 0.4220313 +0.4805811 0.510322 0.4220313 +0.490876 0.510322 0.4220313 +0.5007803 0.510322 0.4220313 +0.510322 0.510322 0.4220313 +0.5195258 0.510322 0.4220313 +0.5284142 0.510322 0.4220313 +0.5370079 0.510322 0.4220313 +0.5453253 0.510322 0.4220313 +0.5533834 0.510322 0.4220313 +0.5611974 0.510322 0.4220313 +0.5687816 0.510322 0.4220313 +0.092819 0.5195258 0.4220313 +0.1056428 0.5195258 0.4220313 +0.1201537 0.5195258 0.4220313 +0.1409607 0.5195258 0.4220313 +0.1678172 0.5195258 0.4220313 +0.1950164 0.5195258 0.4220313 +0.2210581 0.5195258 0.4220313 +0.245636 0.5195258 0.4220313 +0.2686816 0.5195258 0.4220313 +0.2902431 0.5195258 0.4220313 +0.3104189 0.5195258 0.4220313 +0.3293248 0.5195258 0.4220313 +0.3470774 0.5195258 0.4220313 +0.3637862 0.5195258 0.4220313 +0.3795513 0.5195258 0.4220313 +0.3944623 0.5195258 0.4220313 +0.4085988 0.5195258 0.4220313 +0.4220313 0.5195258 0.4220313 +0.4348222 0.5195258 0.4220313 +0.4470264 0.5195258 0.4220313 +0.4586928 0.5195258 0.4220313 +0.4698649 0.5195258 0.4220313 +0.4805811 0.5195258 0.4220313 +0.490876 0.5195258 0.4220313 +0.5007803 0.5195258 0.4220313 +0.510322 0.5195258 0.4220313 +0.5195258 0.5195258 0.4220313 +0.5284142 0.5195258 0.4220313 +0.5370079 0.5195258 0.4220313 +0.5453253 0.5195258 0.4220313 +0.5533834 0.5195258 0.4220313 +0.5611974 0.5195258 0.4220313 +0.5687816 0.5195258 0.4220313 +0.092819 0.5284142 0.4220313 +0.1056428 0.5284142 0.4220313 +0.1201537 0.5284142 0.4220313 +0.1409607 0.5284142 0.4220313 +0.1678172 0.5284142 0.4220313 +0.1950164 0.5284142 0.4220313 +0.2210581 0.5284142 0.4220313 +0.245636 0.5284142 0.4220313 +0.2686816 0.5284142 0.4220313 +0.2902431 0.5284142 0.4220313 +0.3104189 0.5284142 0.4220313 +0.3293248 0.5284142 0.4220313 +0.3470774 0.5284142 0.4220313 +0.3637862 0.5284142 0.4220313 +0.3795513 0.5284142 0.4220313 +0.3944623 0.5284142 0.4220313 +0.4085988 0.5284142 0.4220313 +0.4220313 0.5284142 0.4220313 +0.4348222 0.5284142 0.4220313 +0.4470264 0.5284142 0.4220313 +0.4586928 0.5284142 0.4220313 +0.4698649 0.5284142 0.4220313 +0.4805811 0.5284142 0.4220313 +0.490876 0.5284142 0.4220313 +0.5007803 0.5284142 0.4220313 +0.510322 0.5284142 0.4220313 +0.5195258 0.5284142 0.4220313 +0.5284142 0.5284142 0.4220313 +0.5370079 0.5284142 0.4220313 +0.5453253 0.5284142 0.4220313 +0.5533834 0.5284142 0.4220313 +0.5611974 0.5284142 0.4220313 +0.5687816 0.5284142 0.4220313 +0.092819 0.5370079 0.4220313 +0.1056428 0.5370079 0.4220313 +0.1201537 0.5370079 0.4220313 +0.1409607 0.5370079 0.4220313 +0.1678172 0.5370079 0.4220313 +0.1950164 0.5370079 0.4220313 +0.2210581 0.5370079 0.4220313 +0.245636 0.5370079 0.4220313 +0.2686816 0.5370079 0.4220313 +0.2902431 0.5370079 0.4220313 +0.3104189 0.5370079 0.4220313 +0.3293248 0.5370079 0.4220313 +0.3470774 0.5370079 0.4220313 +0.3637862 0.5370079 0.4220313 +0.3795513 0.5370079 0.4220313 +0.3944623 0.5370079 0.4220313 +0.4085988 0.5370079 0.4220313 +0.4220313 0.5370079 0.4220313 +0.4348222 0.5370079 0.4220313 +0.4470264 0.5370079 0.4220313 +0.4586928 0.5370079 0.4220313 +0.4698649 0.5370079 0.4220313 +0.4805811 0.5370079 0.4220313 +0.490876 0.5370079 0.4220313 +0.5007803 0.5370079 0.4220313 +0.510322 0.5370079 0.4220313 +0.5195258 0.5370079 0.4220313 +0.5284142 0.5370079 0.4220313 +0.5370079 0.5370079 0.4220313 +0.5453253 0.5370079 0.4220313 +0.5533834 0.5370079 0.4220313 +0.5611974 0.5370079 0.4220313 +0.5687816 0.5370079 0.4220313 +0.092819 0.5453253 0.4220313 +0.1056428 0.5453253 0.4220313 +0.1201537 0.5453253 0.4220313 +0.1409607 0.5453253 0.4220313 +0.1678172 0.5453253 0.4220313 +0.1950164 0.5453253 0.4220313 +0.2210581 0.5453253 0.4220313 +0.245636 0.5453253 0.4220313 +0.2686816 0.5453253 0.4220313 +0.2902431 0.5453253 0.4220313 +0.3104189 0.5453253 0.4220313 +0.3293248 0.5453253 0.4220313 +0.3470774 0.5453253 0.4220313 +0.3637862 0.5453253 0.4220313 +0.3795513 0.5453253 0.4220313 +0.3944623 0.5453253 0.4220313 +0.4085988 0.5453253 0.4220313 +0.4220313 0.5453253 0.4220313 +0.4348222 0.5453253 0.4220313 +0.4470264 0.5453253 0.4220313 +0.4586928 0.5453253 0.4220313 +0.4698649 0.5453253 0.4220313 +0.4805811 0.5453253 0.4220313 +0.490876 0.5453253 0.4220313 +0.5007803 0.5453253 0.4220313 +0.510322 0.5453253 0.4220313 +0.5195258 0.5453253 0.4220313 +0.5284142 0.5453253 0.4220313 +0.5370079 0.5453253 0.4220313 +0.5453253 0.5453253 0.4220313 +0.5533834 0.5453253 0.4220313 +0.5611974 0.5453253 0.4220313 +0.5687816 0.5453253 0.4220313 +0.092819 0.5533834 0.4220313 +0.1056428 0.5533834 0.4220313 +0.1201537 0.5533834 0.4220313 +0.1409607 0.5533834 0.4220313 +0.1678172 0.5533834 0.4220313 +0.1950164 0.5533834 0.4220313 +0.2210581 0.5533834 0.4220313 +0.245636 0.5533834 0.4220313 +0.2686816 0.5533834 0.4220313 +0.2902431 0.5533834 0.4220313 +0.3104189 0.5533834 0.4220313 +0.3293248 0.5533834 0.4220313 +0.3470774 0.5533834 0.4220313 +0.3637862 0.5533834 0.4220313 +0.3795513 0.5533834 0.4220313 +0.3944623 0.5533834 0.4220313 +0.4085988 0.5533834 0.4220313 +0.4220313 0.5533834 0.4220313 +0.4348222 0.5533834 0.4220313 +0.4470264 0.5533834 0.4220313 +0.4586928 0.5533834 0.4220313 +0.4698649 0.5533834 0.4220313 +0.4805811 0.5533834 0.4220313 +0.490876 0.5533834 0.4220313 +0.5007803 0.5533834 0.4220313 +0.510322 0.5533834 0.4220313 +0.5195258 0.5533834 0.4220313 +0.5284142 0.5533834 0.4220313 +0.5370079 0.5533834 0.4220313 +0.5453253 0.5533834 0.4220313 +0.5533834 0.5533834 0.4220313 +0.5611974 0.5533834 0.4220313 +0.5687816 0.5533834 0.4220313 +0.092819 0.5611974 0.4220313 +0.1056428 0.5611974 0.4220313 +0.1201537 0.5611974 0.4220313 +0.1409607 0.5611974 0.4220313 +0.1678172 0.5611974 0.4220313 +0.1950164 0.5611974 0.4220313 +0.2210581 0.5611974 0.4220313 +0.245636 0.5611974 0.4220313 +0.2686816 0.5611974 0.4220313 +0.2902431 0.5611974 0.4220313 +0.3104189 0.5611974 0.4220313 +0.3293248 0.5611974 0.4220313 +0.3470774 0.5611974 0.4220313 +0.3637862 0.5611974 0.4220313 +0.3795513 0.5611974 0.4220313 +0.3944623 0.5611974 0.4220313 +0.4085988 0.5611974 0.4220313 +0.4220313 0.5611974 0.4220313 +0.4348222 0.5611974 0.4220313 +0.4470264 0.5611974 0.4220313 +0.4586928 0.5611974 0.4220313 +0.4698649 0.5611974 0.4220313 +0.4805811 0.5611974 0.4220313 +0.490876 0.5611974 0.4220313 +0.5007803 0.5611974 0.4220313 +0.510322 0.5611974 0.4220313 +0.5195258 0.5611974 0.4220313 +0.5284142 0.5611974 0.4220313 +0.5370079 0.5611974 0.4220313 +0.5453253 0.5611974 0.4220313 +0.5533834 0.5611974 0.4220313 +0.5611974 0.5611974 0.4220313 +0.5687816 0.5611974 0.4220313 +0.092819 0.5687816 0.4220313 +0.1056428 0.5687816 0.4220313 +0.1201537 0.5687816 0.4220313 +0.1409607 0.5687816 0.4220313 +0.1678172 0.5687816 0.4220313 +0.1950164 0.5687816 0.4220313 +0.2210581 0.5687816 0.4220313 +0.245636 0.5687816 0.4220313 +0.2686816 0.5687816 0.4220313 +0.2902431 0.5687816 0.4220313 +0.3104189 0.5687816 0.4220313 +0.3293248 0.5687816 0.4220313 +0.3470774 0.5687816 0.4220313 +0.3637862 0.5687816 0.4220313 +0.3795513 0.5687816 0.4220313 +0.3944623 0.5687816 0.4220313 +0.4085988 0.5687816 0.4220313 +0.4220313 0.5687816 0.4220313 +0.4348222 0.5687816 0.4220313 +0.4470264 0.5687816 0.4220313 +0.4586928 0.5687816 0.4220313 +0.4698649 0.5687816 0.4220313 +0.4805811 0.5687816 0.4220313 +0.490876 0.5687816 0.4220313 +0.5007803 0.5687816 0.4220313 +0.510322 0.5687816 0.4220313 +0.5195258 0.5687816 0.4220313 +0.5284142 0.5687816 0.4220313 +0.5370079 0.5687816 0.4220313 +0.5453253 0.5687816 0.4220313 +0.5533834 0.5687816 0.4220313 +0.5611974 0.5687816 0.4220313 +0.5687816 0.5687816 0.4220313 +0.092819 0.092819 0.4348222 +0.1056428 0.092819 0.4348222 +0.1201537 0.092819 0.4348222 +0.1409607 0.092819 0.4348222 +0.1678172 0.092819 0.4348222 +0.1950164 0.092819 0.4348222 +0.2210581 0.092819 0.4348222 +0.245636 0.092819 0.4348222 +0.2686816 0.092819 0.4348222 +0.2902431 0.092819 0.4348222 +0.3104189 0.092819 0.4348222 +0.3293248 0.092819 0.4348222 +0.3470774 0.092819 0.4348222 +0.3637862 0.092819 0.4348222 +0.3795513 0.092819 0.4348222 +0.3944623 0.092819 0.4348222 +0.4085988 0.092819 0.4348222 +0.4220313 0.092819 0.4348222 +0.4348222 0.092819 0.4348222 +0.4470264 0.092819 0.4348222 +0.4586928 0.092819 0.4348222 +0.4698649 0.092819 0.4348222 +0.4805811 0.092819 0.4348222 +0.490876 0.092819 0.4348222 +0.5007803 0.092819 0.4348222 +0.510322 0.092819 0.4348222 +0.5195258 0.092819 0.4348222 +0.5284142 0.092819 0.4348222 +0.5370079 0.092819 0.4348222 +0.5453253 0.092819 0.4348222 +0.5533834 0.092819 0.4348222 +0.5611974 0.092819 0.4348222 +0.5687816 0.092819 0.4348222 +0.092819 0.1056428 0.4348222 +0.1056428 0.1056428 0.4348222 +0.1201537 0.1056428 0.4348222 +0.1409607 0.1056428 0.4348222 +0.1678172 0.1056428 0.4348222 +0.1950164 0.1056428 0.4348222 +0.2210581 0.1056428 0.4348222 +0.245636 0.1056428 0.4348222 +0.2686816 0.1056428 0.4348222 +0.2902431 0.1056428 0.4348222 +0.3104189 0.1056428 0.4348222 +0.3293248 0.1056428 0.4348222 +0.3470774 0.1056428 0.4348222 +0.3637862 0.1056428 0.4348222 +0.3795513 0.1056428 0.4348222 +0.3944623 0.1056428 0.4348222 +0.4085988 0.1056428 0.4348222 +0.4220313 0.1056428 0.4348222 +0.4348222 0.1056428 0.4348222 +0.4470264 0.1056428 0.4348222 +0.4586928 0.1056428 0.4348222 +0.4698649 0.1056428 0.4348222 +0.4805811 0.1056428 0.4348222 +0.490876 0.1056428 0.4348222 +0.5007803 0.1056428 0.4348222 +0.510322 0.1056428 0.4348222 +0.5195258 0.1056428 0.4348222 +0.5284142 0.1056428 0.4348222 +0.5370079 0.1056428 0.4348222 +0.5453253 0.1056428 0.4348222 +0.5533834 0.1056428 0.4348222 +0.5611974 0.1056428 0.4348222 +0.5687816 0.1056428 0.4348222 +0.092819 0.1201537 0.4348222 +0.1056428 0.1201537 0.4348222 +0.1201537 0.1201537 0.4348222 +0.1409607 0.1201537 0.4348222 +0.1678172 0.1201537 0.4348222 +0.1950164 0.1201537 0.4348222 +0.2210581 0.1201537 0.4348222 +0.245636 0.1201537 0.4348222 +0.2686816 0.1201537 0.4348222 +0.2902431 0.1201537 0.4348222 +0.3104189 0.1201537 0.4348222 +0.3293248 0.1201537 0.4348222 +0.3470774 0.1201537 0.4348222 +0.3637862 0.1201537 0.4348222 +0.3795513 0.1201537 0.4348222 +0.3944623 0.1201537 0.4348222 +0.4085988 0.1201537 0.4348222 +0.4220313 0.1201537 0.4348222 +0.4348222 0.1201537 0.4348222 +0.4470264 0.1201537 0.4348222 +0.4586928 0.1201537 0.4348222 +0.4698649 0.1201537 0.4348222 +0.4805811 0.1201537 0.4348222 +0.490876 0.1201537 0.4348222 +0.5007803 0.1201537 0.4348222 +0.510322 0.1201537 0.4348222 +0.5195258 0.1201537 0.4348222 +0.5284142 0.1201537 0.4348222 +0.5370079 0.1201537 0.4348222 +0.5453253 0.1201537 0.4348222 +0.5533834 0.1201537 0.4348222 +0.5611974 0.1201537 0.4348222 +0.5687816 0.1201537 0.4348222 +0.092819 0.1409607 0.4348222 +0.1056428 0.1409607 0.4348222 +0.1201537 0.1409607 0.4348222 +0.1409607 0.1409607 0.4348222 +0.1678172 0.1409607 0.4348222 +0.1950164 0.1409607 0.4348222 +0.2210581 0.1409607 0.4348222 +0.245636 0.1409607 0.4348222 +0.2686816 0.1409607 0.4348222 +0.2902431 0.1409607 0.4348222 +0.3104189 0.1409607 0.4348222 +0.3293248 0.1409607 0.4348222 +0.3470774 0.1409607 0.4348222 +0.3637862 0.1409607 0.4348222 +0.3795513 0.1409607 0.4348222 +0.3944623 0.1409607 0.4348222 +0.4085988 0.1409607 0.4348222 +0.4220313 0.1409607 0.4348222 +0.4348222 0.1409607 0.4348222 +0.4470264 0.1409607 0.4348222 +0.4586928 0.1409607 0.4348222 +0.4698649 0.1409607 0.4348222 +0.4805811 0.1409607 0.4348222 +0.490876 0.1409607 0.4348222 +0.5007803 0.1409607 0.4348222 +0.510322 0.1409607 0.4348222 +0.5195258 0.1409607 0.4348222 +0.5284142 0.1409607 0.4348222 +0.5370079 0.1409607 0.4348222 +0.5453253 0.1409607 0.4348222 +0.5533834 0.1409607 0.4348222 +0.5611974 0.1409607 0.4348222 +0.5687816 0.1409607 0.4348222 +0.092819 0.1678172 0.4348222 +0.1056428 0.1678172 0.4348222 +0.1201537 0.1678172 0.4348222 +0.1409607 0.1678172 0.4348222 +0.1678172 0.1678172 0.4348222 +0.1950164 0.1678172 0.4348222 +0.2210581 0.1678172 0.4348222 +0.245636 0.1678172 0.4348222 +0.2686816 0.1678172 0.4348222 +0.2902431 0.1678172 0.4348222 +0.3104189 0.1678172 0.4348222 +0.3293248 0.1678172 0.4348222 +0.3470774 0.1678172 0.4348222 +0.3637862 0.1678172 0.4348222 +0.3795513 0.1678172 0.4348222 +0.3944623 0.1678172 0.4348222 +0.4085988 0.1678172 0.4348222 +0.4220313 0.1678172 0.4348222 +0.4348222 0.1678172 0.4348222 +0.4470264 0.1678172 0.4348222 +0.4586928 0.1678172 0.4348222 +0.4698649 0.1678172 0.4348222 +0.4805811 0.1678172 0.4348222 +0.490876 0.1678172 0.4348222 +0.5007803 0.1678172 0.4348222 +0.510322 0.1678172 0.4348222 +0.5195258 0.1678172 0.4348222 +0.5284142 0.1678172 0.4348222 +0.5370079 0.1678172 0.4348222 +0.5453253 0.1678172 0.4348222 +0.5533834 0.1678172 0.4348222 +0.5611974 0.1678172 0.4348222 +0.5687816 0.1678172 0.4348222 +0.092819 0.1950164 0.4348222 +0.1056428 0.1950164 0.4348222 +0.1201537 0.1950164 0.4348222 +0.1409607 0.1950164 0.4348222 +0.1678172 0.1950164 0.4348222 +0.1950164 0.1950164 0.4348222 +0.2210581 0.1950164 0.4348222 +0.245636 0.1950164 0.4348222 +0.2686816 0.1950164 0.4348222 +0.2902431 0.1950164 0.4348222 +0.3104189 0.1950164 0.4348222 +0.3293248 0.1950164 0.4348222 +0.3470774 0.1950164 0.4348222 +0.3637862 0.1950164 0.4348222 +0.3795513 0.1950164 0.4348222 +0.3944623 0.1950164 0.4348222 +0.4085988 0.1950164 0.4348222 +0.4220313 0.1950164 0.4348222 +0.4348222 0.1950164 0.4348222 +0.4470264 0.1950164 0.4348222 +0.4586928 0.1950164 0.4348222 +0.4698649 0.1950164 0.4348222 +0.4805811 0.1950164 0.4348222 +0.490876 0.1950164 0.4348222 +0.5007803 0.1950164 0.4348222 +0.510322 0.1950164 0.4348222 +0.5195258 0.1950164 0.4348222 +0.5284142 0.1950164 0.4348222 +0.5370079 0.1950164 0.4348222 +0.5453253 0.1950164 0.4348222 +0.5533834 0.1950164 0.4348222 +0.5611974 0.1950164 0.4348222 +0.5687816 0.1950164 0.4348222 +0.092819 0.2210581 0.4348222 +0.1056428 0.2210581 0.4348222 +0.1201537 0.2210581 0.4348222 +0.1409607 0.2210581 0.4348222 +0.1678172 0.2210581 0.4348222 +0.1950164 0.2210581 0.4348222 +0.2210581 0.2210581 0.4348222 +0.245636 0.2210581 0.4348222 +0.2686816 0.2210581 0.4348222 +0.2902431 0.2210581 0.4348222 +0.3104189 0.2210581 0.4348222 +0.3293248 0.2210581 0.4348222 +0.3470774 0.2210581 0.4348222 +0.3637862 0.2210581 0.4348222 +0.3795513 0.2210581 0.4348222 +0.3944623 0.2210581 0.4348222 +0.4085988 0.2210581 0.4348222 +0.4220313 0.2210581 0.4348222 +0.4348222 0.2210581 0.4348222 +0.4470264 0.2210581 0.4348222 +0.4586928 0.2210581 0.4348222 +0.4698649 0.2210581 0.4348222 +0.4805811 0.2210581 0.4348222 +0.490876 0.2210581 0.4348222 +0.5007803 0.2210581 0.4348222 +0.510322 0.2210581 0.4348222 +0.5195258 0.2210581 0.4348222 +0.5284142 0.2210581 0.4348222 +0.5370079 0.2210581 0.4348222 +0.5453253 0.2210581 0.4348222 +0.5533834 0.2210581 0.4348222 +0.5611974 0.2210581 0.4348222 +0.5687816 0.2210581 0.4348222 +0.092819 0.245636 0.4348222 +0.1056428 0.245636 0.4348222 +0.1201537 0.245636 0.4348222 +0.1409607 0.245636 0.4348222 +0.1678172 0.245636 0.4348222 +0.1950164 0.245636 0.4348222 +0.2210581 0.245636 0.4348222 +0.245636 0.245636 0.4348222 +0.2686816 0.245636 0.4348222 +0.2902431 0.245636 0.4348222 +0.3104189 0.245636 0.4348222 +0.3293248 0.245636 0.4348222 +0.3470774 0.245636 0.4348222 +0.3637862 0.245636 0.4348222 +0.3795513 0.245636 0.4348222 +0.3944623 0.245636 0.4348222 +0.4085988 0.245636 0.4348222 +0.4220313 0.245636 0.4348222 +0.4348222 0.245636 0.4348222 +0.4470264 0.245636 0.4348222 +0.4586928 0.245636 0.4348222 +0.4698649 0.245636 0.4348222 +0.4805811 0.245636 0.4348222 +0.490876 0.245636 0.4348222 +0.5007803 0.245636 0.4348222 +0.510322 0.245636 0.4348222 +0.5195258 0.245636 0.4348222 +0.5284142 0.245636 0.4348222 +0.5370079 0.245636 0.4348222 +0.5453253 0.245636 0.4348222 +0.5533834 0.245636 0.4348222 +0.5611974 0.245636 0.4348222 +0.5687816 0.245636 0.4348222 +0.092819 0.2686816 0.4348222 +0.1056428 0.2686816 0.4348222 +0.1201537 0.2686816 0.4348222 +0.1409607 0.2686816 0.4348222 +0.1678172 0.2686816 0.4348222 +0.1950164 0.2686816 0.4348222 +0.2210581 0.2686816 0.4348222 +0.245636 0.2686816 0.4348222 +0.2686816 0.2686816 0.4348222 +0.2902431 0.2686816 0.4348222 +0.3104189 0.2686816 0.4348222 +0.3293248 0.2686816 0.4348222 +0.3470774 0.2686816 0.4348222 +0.3637862 0.2686816 0.4348222 +0.3795513 0.2686816 0.4348222 +0.3944623 0.2686816 0.4348222 +0.4085988 0.2686816 0.4348222 +0.4220313 0.2686816 0.4348222 +0.4348222 0.2686816 0.4348222 +0.4470264 0.2686816 0.4348222 +0.4586928 0.2686816 0.4348222 +0.4698649 0.2686816 0.4348222 +0.4805811 0.2686816 0.4348222 +0.490876 0.2686816 0.4348222 +0.5007803 0.2686816 0.4348222 +0.510322 0.2686816 0.4348222 +0.5195258 0.2686816 0.4348222 +0.5284142 0.2686816 0.4348222 +0.5370079 0.2686816 0.4348222 +0.5453253 0.2686816 0.4348222 +0.5533834 0.2686816 0.4348222 +0.5611974 0.2686816 0.4348222 +0.5687816 0.2686816 0.4348222 +0.092819 0.2902431 0.4348222 +0.1056428 0.2902431 0.4348222 +0.1201537 0.2902431 0.4348222 +0.1409607 0.2902431 0.4348222 +0.1678172 0.2902431 0.4348222 +0.1950164 0.2902431 0.4348222 +0.2210581 0.2902431 0.4348222 +0.245636 0.2902431 0.4348222 +0.2686816 0.2902431 0.4348222 +0.2902431 0.2902431 0.4348222 +0.3104189 0.2902431 0.4348222 +0.3293248 0.2902431 0.4348222 +0.3470774 0.2902431 0.4348222 +0.3637862 0.2902431 0.4348222 +0.3795513 0.2902431 0.4348222 +0.3944623 0.2902431 0.4348222 +0.4085988 0.2902431 0.4348222 +0.4220313 0.2902431 0.4348222 +0.4348222 0.2902431 0.4348222 +0.4470264 0.2902431 0.4348222 +0.4586928 0.2902431 0.4348222 +0.4698649 0.2902431 0.4348222 +0.4805811 0.2902431 0.4348222 +0.490876 0.2902431 0.4348222 +0.5007803 0.2902431 0.4348222 +0.510322 0.2902431 0.4348222 +0.5195258 0.2902431 0.4348222 +0.5284142 0.2902431 0.4348222 +0.5370079 0.2902431 0.4348222 +0.5453253 0.2902431 0.4348222 +0.5533834 0.2902431 0.4348222 +0.5611974 0.2902431 0.4348222 +0.5687816 0.2902431 0.4348222 +0.092819 0.3104189 0.4348222 +0.1056428 0.3104189 0.4348222 +0.1201537 0.3104189 0.4348222 +0.1409607 0.3104189 0.4348222 +0.1678172 0.3104189 0.4348222 +0.1950164 0.3104189 0.4348222 +0.2210581 0.3104189 0.4348222 +0.245636 0.3104189 0.4348222 +0.2686816 0.3104189 0.4348222 +0.2902431 0.3104189 0.4348222 +0.3104189 0.3104189 0.4348222 +0.3293248 0.3104189 0.4348222 +0.3470774 0.3104189 0.4348222 +0.3637862 0.3104189 0.4348222 +0.3795513 0.3104189 0.4348222 +0.3944623 0.3104189 0.4348222 +0.4085988 0.3104189 0.4348222 +0.4220313 0.3104189 0.4348222 +0.4348222 0.3104189 0.4348222 +0.4470264 0.3104189 0.4348222 +0.4586928 0.3104189 0.4348222 +0.4698649 0.3104189 0.4348222 +0.4805811 0.3104189 0.4348222 +0.490876 0.3104189 0.4348222 +0.5007803 0.3104189 0.4348222 +0.510322 0.3104189 0.4348222 +0.5195258 0.3104189 0.4348222 +0.5284142 0.3104189 0.4348222 +0.5370079 0.3104189 0.4348222 +0.5453253 0.3104189 0.4348222 +0.5533834 0.3104189 0.4348222 +0.5611974 0.3104189 0.4348222 +0.5687816 0.3104189 0.4348222 +0.092819 0.3293248 0.4348222 +0.1056428 0.3293248 0.4348222 +0.1201537 0.3293248 0.4348222 +0.1409607 0.3293248 0.4348222 +0.1678172 0.3293248 0.4348222 +0.1950164 0.3293248 0.4348222 +0.2210581 0.3293248 0.4348222 +0.245636 0.3293248 0.4348222 +0.2686816 0.3293248 0.4348222 +0.2902431 0.3293248 0.4348222 +0.3104189 0.3293248 0.4348222 +0.3293248 0.3293248 0.4348222 +0.3470774 0.3293248 0.4348222 +0.3637862 0.3293248 0.4348222 +0.3795513 0.3293248 0.4348222 +0.3944623 0.3293248 0.4348222 +0.4085988 0.3293248 0.4348222 +0.4220313 0.3293248 0.4348222 +0.4348222 0.3293248 0.4348222 +0.4470264 0.3293248 0.4348222 +0.4586928 0.3293248 0.4348222 +0.4698649 0.3293248 0.4348222 +0.4805811 0.3293248 0.4348222 +0.490876 0.3293248 0.4348222 +0.5007803 0.3293248 0.4348222 +0.510322 0.3293248 0.4348222 +0.5195258 0.3293248 0.4348222 +0.5284142 0.3293248 0.4348222 +0.5370079 0.3293248 0.4348222 +0.5453253 0.3293248 0.4348222 +0.5533834 0.3293248 0.4348222 +0.5611974 0.3293248 0.4348222 +0.5687816 0.3293248 0.4348222 +0.092819 0.3470774 0.4348222 +0.1056428 0.3470774 0.4348222 +0.1201537 0.3470774 0.4348222 +0.1409607 0.3470774 0.4348222 +0.1678172 0.3470774 0.4348222 +0.1950164 0.3470774 0.4348222 +0.2210581 0.3470774 0.4348222 +0.245636 0.3470774 0.4348222 +0.2686816 0.3470774 0.4348222 +0.2902431 0.3470774 0.4348222 +0.3104189 0.3470774 0.4348222 +0.3293248 0.3470774 0.4348222 +0.3470774 0.3470774 0.4348222 +0.3637862 0.3470774 0.4348222 +0.3795513 0.3470774 0.4348222 +0.3944623 0.3470774 0.4348222 +0.4085988 0.3470774 0.4348222 +0.4220313 0.3470774 0.4348222 +0.4348222 0.3470774 0.4348222 +0.4470264 0.3470774 0.4348222 +0.4586928 0.3470774 0.4348222 +0.4698649 0.3470774 0.4348222 +0.4805811 0.3470774 0.4348222 +0.490876 0.3470774 0.4348222 +0.5007803 0.3470774 0.4348222 +0.510322 0.3470774 0.4348222 +0.5195258 0.3470774 0.4348222 +0.5284142 0.3470774 0.4348222 +0.5370079 0.3470774 0.4348222 +0.5453253 0.3470774 0.4348222 +0.5533834 0.3470774 0.4348222 +0.5611974 0.3470774 0.4348222 +0.5687816 0.3470774 0.4348222 +0.092819 0.3637862 0.4348222 +0.1056428 0.3637862 0.4348222 +0.1201537 0.3637862 0.4348222 +0.1409607 0.3637862 0.4348222 +0.1678172 0.3637862 0.4348222 +0.1950164 0.3637862 0.4348222 +0.2210581 0.3637862 0.4348222 +0.245636 0.3637862 0.4348222 +0.2686816 0.3637862 0.4348222 +0.2902431 0.3637862 0.4348222 +0.3104189 0.3637862 0.4348222 +0.3293248 0.3637862 0.4348222 +0.3470774 0.3637862 0.4348222 +0.3637862 0.3637862 0.4348222 +0.3795513 0.3637862 0.4348222 +0.3944623 0.3637862 0.4348222 +0.4085988 0.3637862 0.4348222 +0.4220313 0.3637862 0.4348222 +0.4348222 0.3637862 0.4348222 +0.4470264 0.3637862 0.4348222 +0.4586928 0.3637862 0.4348222 +0.4698649 0.3637862 0.4348222 +0.4805811 0.3637862 0.4348222 +0.490876 0.3637862 0.4348222 +0.5007803 0.3637862 0.4348222 +0.510322 0.3637862 0.4348222 +0.5195258 0.3637862 0.4348222 +0.5284142 0.3637862 0.4348222 +0.5370079 0.3637862 0.4348222 +0.5453253 0.3637862 0.4348222 +0.5533834 0.3637862 0.4348222 +0.5611974 0.3637862 0.4348222 +0.5687816 0.3637862 0.4348222 +0.092819 0.3795513 0.4348222 +0.1056428 0.3795513 0.4348222 +0.1201537 0.3795513 0.4348222 +0.1409607 0.3795513 0.4348222 +0.1678172 0.3795513 0.4348222 +0.1950164 0.3795513 0.4348222 +0.2210581 0.3795513 0.4348222 +0.245636 0.3795513 0.4348222 +0.2686816 0.3795513 0.4348222 +0.2902431 0.3795513 0.4348222 +0.3104189 0.3795513 0.4348222 +0.3293248 0.3795513 0.4348222 +0.3470774 0.3795513 0.4348222 +0.3637862 0.3795513 0.4348222 +0.3795513 0.3795513 0.4348222 +0.3944623 0.3795513 0.4348222 +0.4085988 0.3795513 0.4348222 +0.4220313 0.3795513 0.4348222 +0.4348222 0.3795513 0.4348222 +0.4470264 0.3795513 0.4348222 +0.4586928 0.3795513 0.4348222 +0.4698649 0.3795513 0.4348222 +0.4805811 0.3795513 0.4348222 +0.490876 0.3795513 0.4348222 +0.5007803 0.3795513 0.4348222 +0.510322 0.3795513 0.4348222 +0.5195258 0.3795513 0.4348222 +0.5284142 0.3795513 0.4348222 +0.5370079 0.3795513 0.4348222 +0.5453253 0.3795513 0.4348222 +0.5533834 0.3795513 0.4348222 +0.5611974 0.3795513 0.4348222 +0.5687816 0.3795513 0.4348222 +0.092819 0.3944623 0.4348222 +0.1056428 0.3944623 0.4348222 +0.1201537 0.3944623 0.4348222 +0.1409607 0.3944623 0.4348222 +0.1678172 0.3944623 0.4348222 +0.1950164 0.3944623 0.4348222 +0.2210581 0.3944623 0.4348222 +0.245636 0.3944623 0.4348222 +0.2686816 0.3944623 0.4348222 +0.2902431 0.3944623 0.4348222 +0.3104189 0.3944623 0.4348222 +0.3293248 0.3944623 0.4348222 +0.3470774 0.3944623 0.4348222 +0.3637862 0.3944623 0.4348222 +0.3795513 0.3944623 0.4348222 +0.3944623 0.3944623 0.4348222 +0.4085988 0.3944623 0.4348222 +0.4220313 0.3944623 0.4348222 +0.4348222 0.3944623 0.4348222 +0.4470264 0.3944623 0.4348222 +0.4586928 0.3944623 0.4348222 +0.4698649 0.3944623 0.4348222 +0.4805811 0.3944623 0.4348222 +0.490876 0.3944623 0.4348222 +0.5007803 0.3944623 0.4348222 +0.510322 0.3944623 0.4348222 +0.5195258 0.3944623 0.4348222 +0.5284142 0.3944623 0.4348222 +0.5370079 0.3944623 0.4348222 +0.5453253 0.3944623 0.4348222 +0.5533834 0.3944623 0.4348222 +0.5611974 0.3944623 0.4348222 +0.5687816 0.3944623 0.4348222 +0.092819 0.4085988 0.4348222 +0.1056428 0.4085988 0.4348222 +0.1201537 0.4085988 0.4348222 +0.1409607 0.4085988 0.4348222 +0.1678172 0.4085988 0.4348222 +0.1950164 0.4085988 0.4348222 +0.2210581 0.4085988 0.4348222 +0.245636 0.4085988 0.4348222 +0.2686816 0.4085988 0.4348222 +0.2902431 0.4085988 0.4348222 +0.3104189 0.4085988 0.4348222 +0.3293248 0.4085988 0.4348222 +0.3470774 0.4085988 0.4348222 +0.3637862 0.4085988 0.4348222 +0.3795513 0.4085988 0.4348222 +0.3944623 0.4085988 0.4348222 +0.4085988 0.4085988 0.4348222 +0.4220313 0.4085988 0.4348222 +0.4348222 0.4085988 0.4348222 +0.4470264 0.4085988 0.4348222 +0.4586928 0.4085988 0.4348222 +0.4698649 0.4085988 0.4348222 +0.4805811 0.4085988 0.4348222 +0.490876 0.4085988 0.4348222 +0.5007803 0.4085988 0.4348222 +0.510322 0.4085988 0.4348222 +0.5195258 0.4085988 0.4348222 +0.5284142 0.4085988 0.4348222 +0.5370079 0.4085988 0.4348222 +0.5453253 0.4085988 0.4348222 +0.5533834 0.4085988 0.4348222 +0.5611974 0.4085988 0.4348222 +0.5687816 0.4085988 0.4348222 +0.092819 0.4220313 0.4348222 +0.1056428 0.4220313 0.4348222 +0.1201537 0.4220313 0.4348222 +0.1409607 0.4220313 0.4348222 +0.1678172 0.4220313 0.4348222 +0.1950164 0.4220313 0.4348222 +0.2210581 0.4220313 0.4348222 +0.245636 0.4220313 0.4348222 +0.2686816 0.4220313 0.4348222 +0.2902431 0.4220313 0.4348222 +0.3104189 0.4220313 0.4348222 +0.3293248 0.4220313 0.4348222 +0.3470774 0.4220313 0.4348222 +0.3637862 0.4220313 0.4348222 +0.3795513 0.4220313 0.4348222 +0.3944623 0.4220313 0.4348222 +0.4085988 0.4220313 0.4348222 +0.4220313 0.4220313 0.4348222 +0.4348222 0.4220313 0.4348222 +0.4470264 0.4220313 0.4348222 +0.4586928 0.4220313 0.4348222 +0.4698649 0.4220313 0.4348222 +0.4805811 0.4220313 0.4348222 +0.490876 0.4220313 0.4348222 +0.5007803 0.4220313 0.4348222 +0.510322 0.4220313 0.4348222 +0.5195258 0.4220313 0.4348222 +0.5284142 0.4220313 0.4348222 +0.5370079 0.4220313 0.4348222 +0.5453253 0.4220313 0.4348222 +0.5533834 0.4220313 0.4348222 +0.5611974 0.4220313 0.4348222 +0.5687816 0.4220313 0.4348222 +0.092819 0.4348222 0.4348222 +0.1056428 0.4348222 0.4348222 +0.1201537 0.4348222 0.4348222 +0.1409607 0.4348222 0.4348222 +0.1678172 0.4348222 0.4348222 +0.1950164 0.4348222 0.4348222 +0.2210581 0.4348222 0.4348222 +0.245636 0.4348222 0.4348222 +0.2686816 0.4348222 0.4348222 +0.2902431 0.4348222 0.4348222 +0.3104189 0.4348222 0.4348222 +0.3293248 0.4348222 0.4348222 +0.3470774 0.4348222 0.4348222 +0.3637862 0.4348222 0.4348222 +0.3795513 0.4348222 0.4348222 +0.3944623 0.4348222 0.4348222 +0.4085988 0.4348222 0.4348222 +0.4220313 0.4348222 0.4348222 +0.4348222 0.4348222 0.4348222 +0.4470264 0.4348222 0.4348222 +0.4586928 0.4348222 0.4348222 +0.4698649 0.4348222 0.4348222 +0.4805811 0.4348222 0.4348222 +0.490876 0.4348222 0.4348222 +0.5007803 0.4348222 0.4348222 +0.510322 0.4348222 0.4348222 +0.5195258 0.4348222 0.4348222 +0.5284142 0.4348222 0.4348222 +0.5370079 0.4348222 0.4348222 +0.5453253 0.4348222 0.4348222 +0.5533834 0.4348222 0.4348222 +0.5611974 0.4348222 0.4348222 +0.5687816 0.4348222 0.4348222 +0.092819 0.4470264 0.4348222 +0.1056428 0.4470264 0.4348222 +0.1201537 0.4470264 0.4348222 +0.1409607 0.4470264 0.4348222 +0.1678172 0.4470264 0.4348222 +0.1950164 0.4470264 0.4348222 +0.2210581 0.4470264 0.4348222 +0.245636 0.4470264 0.4348222 +0.2686816 0.4470264 0.4348222 +0.2902431 0.4470264 0.4348222 +0.3104189 0.4470264 0.4348222 +0.3293248 0.4470264 0.4348222 +0.3470774 0.4470264 0.4348222 +0.3637862 0.4470264 0.4348222 +0.3795513 0.4470264 0.4348222 +0.3944623 0.4470264 0.4348222 +0.4085988 0.4470264 0.4348222 +0.4220313 0.4470264 0.4348222 +0.4348222 0.4470264 0.4348222 +0.4470264 0.4470264 0.4348222 +0.4586928 0.4470264 0.4348222 +0.4698649 0.4470264 0.4348222 +0.4805811 0.4470264 0.4348222 +0.490876 0.4470264 0.4348222 +0.5007803 0.4470264 0.4348222 +0.510322 0.4470264 0.4348222 +0.5195258 0.4470264 0.4348222 +0.5284142 0.4470264 0.4348222 +0.5370079 0.4470264 0.4348222 +0.5453253 0.4470264 0.4348222 +0.5533834 0.4470264 0.4348222 +0.5611974 0.4470264 0.4348222 +0.5687816 0.4470264 0.4348222 +0.092819 0.4586928 0.4348222 +0.1056428 0.4586928 0.4348222 +0.1201537 0.4586928 0.4348222 +0.1409607 0.4586928 0.4348222 +0.1678172 0.4586928 0.4348222 +0.1950164 0.4586928 0.4348222 +0.2210581 0.4586928 0.4348222 +0.245636 0.4586928 0.4348222 +0.2686816 0.4586928 0.4348222 +0.2902431 0.4586928 0.4348222 +0.3104189 0.4586928 0.4348222 +0.3293248 0.4586928 0.4348222 +0.3470774 0.4586928 0.4348222 +0.3637862 0.4586928 0.4348222 +0.3795513 0.4586928 0.4348222 +0.3944623 0.4586928 0.4348222 +0.4085988 0.4586928 0.4348222 +0.4220313 0.4586928 0.4348222 +0.4348222 0.4586928 0.4348222 +0.4470264 0.4586928 0.4348222 +0.4586928 0.4586928 0.4348222 +0.4698649 0.4586928 0.4348222 +0.4805811 0.4586928 0.4348222 +0.490876 0.4586928 0.4348222 +0.5007803 0.4586928 0.4348222 +0.510322 0.4586928 0.4348222 +0.5195258 0.4586928 0.4348222 +0.5284142 0.4586928 0.4348222 +0.5370079 0.4586928 0.4348222 +0.5453253 0.4586928 0.4348222 +0.5533834 0.4586928 0.4348222 +0.5611974 0.4586928 0.4348222 +0.5687816 0.4586928 0.4348222 +0.092819 0.4698649 0.4348222 +0.1056428 0.4698649 0.4348222 +0.1201537 0.4698649 0.4348222 +0.1409607 0.4698649 0.4348222 +0.1678172 0.4698649 0.4348222 +0.1950164 0.4698649 0.4348222 +0.2210581 0.4698649 0.4348222 +0.245636 0.4698649 0.4348222 +0.2686816 0.4698649 0.4348222 +0.2902431 0.4698649 0.4348222 +0.3104189 0.4698649 0.4348222 +0.3293248 0.4698649 0.4348222 +0.3470774 0.4698649 0.4348222 +0.3637862 0.4698649 0.4348222 +0.3795513 0.4698649 0.4348222 +0.3944623 0.4698649 0.4348222 +0.4085988 0.4698649 0.4348222 +0.4220313 0.4698649 0.4348222 +0.4348222 0.4698649 0.4348222 +0.4470264 0.4698649 0.4348222 +0.4586928 0.4698649 0.4348222 +0.4698649 0.4698649 0.4348222 +0.4805811 0.4698649 0.4348222 +0.490876 0.4698649 0.4348222 +0.5007803 0.4698649 0.4348222 +0.510322 0.4698649 0.4348222 +0.5195258 0.4698649 0.4348222 +0.5284142 0.4698649 0.4348222 +0.5370079 0.4698649 0.4348222 +0.5453253 0.4698649 0.4348222 +0.5533834 0.4698649 0.4348222 +0.5611974 0.4698649 0.4348222 +0.5687816 0.4698649 0.4348222 +0.092819 0.4805811 0.4348222 +0.1056428 0.4805811 0.4348222 +0.1201537 0.4805811 0.4348222 +0.1409607 0.4805811 0.4348222 +0.1678172 0.4805811 0.4348222 +0.1950164 0.4805811 0.4348222 +0.2210581 0.4805811 0.4348222 +0.245636 0.4805811 0.4348222 +0.2686816 0.4805811 0.4348222 +0.2902431 0.4805811 0.4348222 +0.3104189 0.4805811 0.4348222 +0.3293248 0.4805811 0.4348222 +0.3470774 0.4805811 0.4348222 +0.3637862 0.4805811 0.4348222 +0.3795513 0.4805811 0.4348222 +0.3944623 0.4805811 0.4348222 +0.4085988 0.4805811 0.4348222 +0.4220313 0.4805811 0.4348222 +0.4348222 0.4805811 0.4348222 +0.4470264 0.4805811 0.4348222 +0.4586928 0.4805811 0.4348222 +0.4698649 0.4805811 0.4348222 +0.4805811 0.4805811 0.4348222 +0.490876 0.4805811 0.4348222 +0.5007803 0.4805811 0.4348222 +0.510322 0.4805811 0.4348222 +0.5195258 0.4805811 0.4348222 +0.5284142 0.4805811 0.4348222 +0.5370079 0.4805811 0.4348222 +0.5453253 0.4805811 0.4348222 +0.5533834 0.4805811 0.4348222 +0.5611974 0.4805811 0.4348222 +0.5687816 0.4805811 0.4348222 +0.092819 0.490876 0.4348222 +0.1056428 0.490876 0.4348222 +0.1201537 0.490876 0.4348222 +0.1409607 0.490876 0.4348222 +0.1678172 0.490876 0.4348222 +0.1950164 0.490876 0.4348222 +0.2210581 0.490876 0.4348222 +0.245636 0.490876 0.4348222 +0.2686816 0.490876 0.4348222 +0.2902431 0.490876 0.4348222 +0.3104189 0.490876 0.4348222 +0.3293248 0.490876 0.4348222 +0.3470774 0.490876 0.4348222 +0.3637862 0.490876 0.4348222 +0.3795513 0.490876 0.4348222 +0.3944623 0.490876 0.4348222 +0.4085988 0.490876 0.4348222 +0.4220313 0.490876 0.4348222 +0.4348222 0.490876 0.4348222 +0.4470264 0.490876 0.4348222 +0.4586928 0.490876 0.4348222 +0.4698649 0.490876 0.4348222 +0.4805811 0.490876 0.4348222 +0.490876 0.490876 0.4348222 +0.5007803 0.490876 0.4348222 +0.510322 0.490876 0.4348222 +0.5195258 0.490876 0.4348222 +0.5284142 0.490876 0.4348222 +0.5370079 0.490876 0.4348222 +0.5453253 0.490876 0.4348222 +0.5533834 0.490876 0.4348222 +0.5611974 0.490876 0.4348222 +0.5687816 0.490876 0.4348222 +0.092819 0.5007803 0.4348222 +0.1056428 0.5007803 0.4348222 +0.1201537 0.5007803 0.4348222 +0.1409607 0.5007803 0.4348222 +0.1678172 0.5007803 0.4348222 +0.1950164 0.5007803 0.4348222 +0.2210581 0.5007803 0.4348222 +0.245636 0.5007803 0.4348222 +0.2686816 0.5007803 0.4348222 +0.2902431 0.5007803 0.4348222 +0.3104189 0.5007803 0.4348222 +0.3293248 0.5007803 0.4348222 +0.3470774 0.5007803 0.4348222 +0.3637862 0.5007803 0.4348222 +0.3795513 0.5007803 0.4348222 +0.3944623 0.5007803 0.4348222 +0.4085988 0.5007803 0.4348222 +0.4220313 0.5007803 0.4348222 +0.4348222 0.5007803 0.4348222 +0.4470264 0.5007803 0.4348222 +0.4586928 0.5007803 0.4348222 +0.4698649 0.5007803 0.4348222 +0.4805811 0.5007803 0.4348222 +0.490876 0.5007803 0.4348222 +0.5007803 0.5007803 0.4348222 +0.510322 0.5007803 0.4348222 +0.5195258 0.5007803 0.4348222 +0.5284142 0.5007803 0.4348222 +0.5370079 0.5007803 0.4348222 +0.5453253 0.5007803 0.4348222 +0.5533834 0.5007803 0.4348222 +0.5611974 0.5007803 0.4348222 +0.5687816 0.5007803 0.4348222 +0.092819 0.510322 0.4348222 +0.1056428 0.510322 0.4348222 +0.1201537 0.510322 0.4348222 +0.1409607 0.510322 0.4348222 +0.1678172 0.510322 0.4348222 +0.1950164 0.510322 0.4348222 +0.2210581 0.510322 0.4348222 +0.245636 0.510322 0.4348222 +0.2686816 0.510322 0.4348222 +0.2902431 0.510322 0.4348222 +0.3104189 0.510322 0.4348222 +0.3293248 0.510322 0.4348222 +0.3470774 0.510322 0.4348222 +0.3637862 0.510322 0.4348222 +0.3795513 0.510322 0.4348222 +0.3944623 0.510322 0.4348222 +0.4085988 0.510322 0.4348222 +0.4220313 0.510322 0.4348222 +0.4348222 0.510322 0.4348222 +0.4470264 0.510322 0.4348222 +0.4586928 0.510322 0.4348222 +0.4698649 0.510322 0.4348222 +0.4805811 0.510322 0.4348222 +0.490876 0.510322 0.4348222 +0.5007803 0.510322 0.4348222 +0.510322 0.510322 0.4348222 +0.5195258 0.510322 0.4348222 +0.5284142 0.510322 0.4348222 +0.5370079 0.510322 0.4348222 +0.5453253 0.510322 0.4348222 +0.5533834 0.510322 0.4348222 +0.5611974 0.510322 0.4348222 +0.5687816 0.510322 0.4348222 +0.092819 0.5195258 0.4348222 +0.1056428 0.5195258 0.4348222 +0.1201537 0.5195258 0.4348222 +0.1409607 0.5195258 0.4348222 +0.1678172 0.5195258 0.4348222 +0.1950164 0.5195258 0.4348222 +0.2210581 0.5195258 0.4348222 +0.245636 0.5195258 0.4348222 +0.2686816 0.5195258 0.4348222 +0.2902431 0.5195258 0.4348222 +0.3104189 0.5195258 0.4348222 +0.3293248 0.5195258 0.4348222 +0.3470774 0.5195258 0.4348222 +0.3637862 0.5195258 0.4348222 +0.3795513 0.5195258 0.4348222 +0.3944623 0.5195258 0.4348222 +0.4085988 0.5195258 0.4348222 +0.4220313 0.5195258 0.4348222 +0.4348222 0.5195258 0.4348222 +0.4470264 0.5195258 0.4348222 +0.4586928 0.5195258 0.4348222 +0.4698649 0.5195258 0.4348222 +0.4805811 0.5195258 0.4348222 +0.490876 0.5195258 0.4348222 +0.5007803 0.5195258 0.4348222 +0.510322 0.5195258 0.4348222 +0.5195258 0.5195258 0.4348222 +0.5284142 0.5195258 0.4348222 +0.5370079 0.5195258 0.4348222 +0.5453253 0.5195258 0.4348222 +0.5533834 0.5195258 0.4348222 +0.5611974 0.5195258 0.4348222 +0.5687816 0.5195258 0.4348222 +0.092819 0.5284142 0.4348222 +0.1056428 0.5284142 0.4348222 +0.1201537 0.5284142 0.4348222 +0.1409607 0.5284142 0.4348222 +0.1678172 0.5284142 0.4348222 +0.1950164 0.5284142 0.4348222 +0.2210581 0.5284142 0.4348222 +0.245636 0.5284142 0.4348222 +0.2686816 0.5284142 0.4348222 +0.2902431 0.5284142 0.4348222 +0.3104189 0.5284142 0.4348222 +0.3293248 0.5284142 0.4348222 +0.3470774 0.5284142 0.4348222 +0.3637862 0.5284142 0.4348222 +0.3795513 0.5284142 0.4348222 +0.3944623 0.5284142 0.4348222 +0.4085988 0.5284142 0.4348222 +0.4220313 0.5284142 0.4348222 +0.4348222 0.5284142 0.4348222 +0.4470264 0.5284142 0.4348222 +0.4586928 0.5284142 0.4348222 +0.4698649 0.5284142 0.4348222 +0.4805811 0.5284142 0.4348222 +0.490876 0.5284142 0.4348222 +0.5007803 0.5284142 0.4348222 +0.510322 0.5284142 0.4348222 +0.5195258 0.5284142 0.4348222 +0.5284142 0.5284142 0.4348222 +0.5370079 0.5284142 0.4348222 +0.5453253 0.5284142 0.4348222 +0.5533834 0.5284142 0.4348222 +0.5611974 0.5284142 0.4348222 +0.5687816 0.5284142 0.4348222 +0.092819 0.5370079 0.4348222 +0.1056428 0.5370079 0.4348222 +0.1201537 0.5370079 0.4348222 +0.1409607 0.5370079 0.4348222 +0.1678172 0.5370079 0.4348222 +0.1950164 0.5370079 0.4348222 +0.2210581 0.5370079 0.4348222 +0.245636 0.5370079 0.4348222 +0.2686816 0.5370079 0.4348222 +0.2902431 0.5370079 0.4348222 +0.3104189 0.5370079 0.4348222 +0.3293248 0.5370079 0.4348222 +0.3470774 0.5370079 0.4348222 +0.3637862 0.5370079 0.4348222 +0.3795513 0.5370079 0.4348222 +0.3944623 0.5370079 0.4348222 +0.4085988 0.5370079 0.4348222 +0.4220313 0.5370079 0.4348222 +0.4348222 0.5370079 0.4348222 +0.4470264 0.5370079 0.4348222 +0.4586928 0.5370079 0.4348222 +0.4698649 0.5370079 0.4348222 +0.4805811 0.5370079 0.4348222 +0.490876 0.5370079 0.4348222 +0.5007803 0.5370079 0.4348222 +0.510322 0.5370079 0.4348222 +0.5195258 0.5370079 0.4348222 +0.5284142 0.5370079 0.4348222 +0.5370079 0.5370079 0.4348222 +0.5453253 0.5370079 0.4348222 +0.5533834 0.5370079 0.4348222 +0.5611974 0.5370079 0.4348222 +0.5687816 0.5370079 0.4348222 +0.092819 0.5453253 0.4348222 +0.1056428 0.5453253 0.4348222 +0.1201537 0.5453253 0.4348222 +0.1409607 0.5453253 0.4348222 +0.1678172 0.5453253 0.4348222 +0.1950164 0.5453253 0.4348222 +0.2210581 0.5453253 0.4348222 +0.245636 0.5453253 0.4348222 +0.2686816 0.5453253 0.4348222 +0.2902431 0.5453253 0.4348222 +0.3104189 0.5453253 0.4348222 +0.3293248 0.5453253 0.4348222 +0.3470774 0.5453253 0.4348222 +0.3637862 0.5453253 0.4348222 +0.3795513 0.5453253 0.4348222 +0.3944623 0.5453253 0.4348222 +0.4085988 0.5453253 0.4348222 +0.4220313 0.5453253 0.4348222 +0.4348222 0.5453253 0.4348222 +0.4470264 0.5453253 0.4348222 +0.4586928 0.5453253 0.4348222 +0.4698649 0.5453253 0.4348222 +0.4805811 0.5453253 0.4348222 +0.490876 0.5453253 0.4348222 +0.5007803 0.5453253 0.4348222 +0.510322 0.5453253 0.4348222 +0.5195258 0.5453253 0.4348222 +0.5284142 0.5453253 0.4348222 +0.5370079 0.5453253 0.4348222 +0.5453253 0.5453253 0.4348222 +0.5533834 0.5453253 0.4348222 +0.5611974 0.5453253 0.4348222 +0.5687816 0.5453253 0.4348222 +0.092819 0.5533834 0.4348222 +0.1056428 0.5533834 0.4348222 +0.1201537 0.5533834 0.4348222 +0.1409607 0.5533834 0.4348222 +0.1678172 0.5533834 0.4348222 +0.1950164 0.5533834 0.4348222 +0.2210581 0.5533834 0.4348222 +0.245636 0.5533834 0.4348222 +0.2686816 0.5533834 0.4348222 +0.2902431 0.5533834 0.4348222 +0.3104189 0.5533834 0.4348222 +0.3293248 0.5533834 0.4348222 +0.3470774 0.5533834 0.4348222 +0.3637862 0.5533834 0.4348222 +0.3795513 0.5533834 0.4348222 +0.3944623 0.5533834 0.4348222 +0.4085988 0.5533834 0.4348222 +0.4220313 0.5533834 0.4348222 +0.4348222 0.5533834 0.4348222 +0.4470264 0.5533834 0.4348222 +0.4586928 0.5533834 0.4348222 +0.4698649 0.5533834 0.4348222 +0.4805811 0.5533834 0.4348222 +0.490876 0.5533834 0.4348222 +0.5007803 0.5533834 0.4348222 +0.510322 0.5533834 0.4348222 +0.5195258 0.5533834 0.4348222 +0.5284142 0.5533834 0.4348222 +0.5370079 0.5533834 0.4348222 +0.5453253 0.5533834 0.4348222 +0.5533834 0.5533834 0.4348222 +0.5611974 0.5533834 0.4348222 +0.5687816 0.5533834 0.4348222 +0.092819 0.5611974 0.4348222 +0.1056428 0.5611974 0.4348222 +0.1201537 0.5611974 0.4348222 +0.1409607 0.5611974 0.4348222 +0.1678172 0.5611974 0.4348222 +0.1950164 0.5611974 0.4348222 +0.2210581 0.5611974 0.4348222 +0.245636 0.5611974 0.4348222 +0.2686816 0.5611974 0.4348222 +0.2902431 0.5611974 0.4348222 +0.3104189 0.5611974 0.4348222 +0.3293248 0.5611974 0.4348222 +0.3470774 0.5611974 0.4348222 +0.3637862 0.5611974 0.4348222 +0.3795513 0.5611974 0.4348222 +0.3944623 0.5611974 0.4348222 +0.4085988 0.5611974 0.4348222 +0.4220313 0.5611974 0.4348222 +0.4348222 0.5611974 0.4348222 +0.4470264 0.5611974 0.4348222 +0.4586928 0.5611974 0.4348222 +0.4698649 0.5611974 0.4348222 +0.4805811 0.5611974 0.4348222 +0.490876 0.5611974 0.4348222 +0.5007803 0.5611974 0.4348222 +0.510322 0.5611974 0.4348222 +0.5195258 0.5611974 0.4348222 +0.5284142 0.5611974 0.4348222 +0.5370079 0.5611974 0.4348222 +0.5453253 0.5611974 0.4348222 +0.5533834 0.5611974 0.4348222 +0.5611974 0.5611974 0.4348222 +0.5687816 0.5611974 0.4348222 +0.092819 0.5687816 0.4348222 +0.1056428 0.5687816 0.4348222 +0.1201537 0.5687816 0.4348222 +0.1409607 0.5687816 0.4348222 +0.1678172 0.5687816 0.4348222 +0.1950164 0.5687816 0.4348222 +0.2210581 0.5687816 0.4348222 +0.245636 0.5687816 0.4348222 +0.2686816 0.5687816 0.4348222 +0.2902431 0.5687816 0.4348222 +0.3104189 0.5687816 0.4348222 +0.3293248 0.5687816 0.4348222 +0.3470774 0.5687816 0.4348222 +0.3637862 0.5687816 0.4348222 +0.3795513 0.5687816 0.4348222 +0.3944623 0.5687816 0.4348222 +0.4085988 0.5687816 0.4348222 +0.4220313 0.5687816 0.4348222 +0.4348222 0.5687816 0.4348222 +0.4470264 0.5687816 0.4348222 +0.4586928 0.5687816 0.4348222 +0.4698649 0.5687816 0.4348222 +0.4805811 0.5687816 0.4348222 +0.490876 0.5687816 0.4348222 +0.5007803 0.5687816 0.4348222 +0.510322 0.5687816 0.4348222 +0.5195258 0.5687816 0.4348222 +0.5284142 0.5687816 0.4348222 +0.5370079 0.5687816 0.4348222 +0.5453253 0.5687816 0.4348222 +0.5533834 0.5687816 0.4348222 +0.5611974 0.5687816 0.4348222 +0.5687816 0.5687816 0.4348222 +0.092819 0.092819 0.4470264 +0.1056428 0.092819 0.4470264 +0.1201537 0.092819 0.4470264 +0.1409607 0.092819 0.4470264 +0.1678172 0.092819 0.4470264 +0.1950164 0.092819 0.4470264 +0.2210581 0.092819 0.4470264 +0.245636 0.092819 0.4470264 +0.2686816 0.092819 0.4470264 +0.2902431 0.092819 0.4470264 +0.3104189 0.092819 0.4470264 +0.3293248 0.092819 0.4470264 +0.3470774 0.092819 0.4470264 +0.3637862 0.092819 0.4470264 +0.3795513 0.092819 0.4470264 +0.3944623 0.092819 0.4470264 +0.4085988 0.092819 0.4470264 +0.4220313 0.092819 0.4470264 +0.4348222 0.092819 0.4470264 +0.4470264 0.092819 0.4470264 +0.4586928 0.092819 0.4470264 +0.4698649 0.092819 0.4470264 +0.4805811 0.092819 0.4470264 +0.490876 0.092819 0.4470264 +0.5007803 0.092819 0.4470264 +0.510322 0.092819 0.4470264 +0.5195258 0.092819 0.4470264 +0.5284142 0.092819 0.4470264 +0.5370079 0.092819 0.4470264 +0.5453253 0.092819 0.4470264 +0.5533834 0.092819 0.4470264 +0.5611974 0.092819 0.4470264 +0.5687816 0.092819 0.4470264 +0.092819 0.1056428 0.4470264 +0.1056428 0.1056428 0.4470264 +0.1201537 0.1056428 0.4470264 +0.1409607 0.1056428 0.4470264 +0.1678172 0.1056428 0.4470264 +0.1950164 0.1056428 0.4470264 +0.2210581 0.1056428 0.4470264 +0.245636 0.1056428 0.4470264 +0.2686816 0.1056428 0.4470264 +0.2902431 0.1056428 0.4470264 +0.3104189 0.1056428 0.4470264 +0.3293248 0.1056428 0.4470264 +0.3470774 0.1056428 0.4470264 +0.3637862 0.1056428 0.4470264 +0.3795513 0.1056428 0.4470264 +0.3944623 0.1056428 0.4470264 +0.4085988 0.1056428 0.4470264 +0.4220313 0.1056428 0.4470264 +0.4348222 0.1056428 0.4470264 +0.4470264 0.1056428 0.4470264 +0.4586928 0.1056428 0.4470264 +0.4698649 0.1056428 0.4470264 +0.4805811 0.1056428 0.4470264 +0.490876 0.1056428 0.4470264 +0.5007803 0.1056428 0.4470264 +0.510322 0.1056428 0.4470264 +0.5195258 0.1056428 0.4470264 +0.5284142 0.1056428 0.4470264 +0.5370079 0.1056428 0.4470264 +0.5453253 0.1056428 0.4470264 +0.5533834 0.1056428 0.4470264 +0.5611974 0.1056428 0.4470264 +0.5687816 0.1056428 0.4470264 +0.092819 0.1201537 0.4470264 +0.1056428 0.1201537 0.4470264 +0.1201537 0.1201537 0.4470264 +0.1409607 0.1201537 0.4470264 +0.1678172 0.1201537 0.4470264 +0.1950164 0.1201537 0.4470264 +0.2210581 0.1201537 0.4470264 +0.245636 0.1201537 0.4470264 +0.2686816 0.1201537 0.4470264 +0.2902431 0.1201537 0.4470264 +0.3104189 0.1201537 0.4470264 +0.3293248 0.1201537 0.4470264 +0.3470774 0.1201537 0.4470264 +0.3637862 0.1201537 0.4470264 +0.3795513 0.1201537 0.4470264 +0.3944623 0.1201537 0.4470264 +0.4085988 0.1201537 0.4470264 +0.4220313 0.1201537 0.4470264 +0.4348222 0.1201537 0.4470264 +0.4470264 0.1201537 0.4470264 +0.4586928 0.1201537 0.4470264 +0.4698649 0.1201537 0.4470264 +0.4805811 0.1201537 0.4470264 +0.490876 0.1201537 0.4470264 +0.5007803 0.1201537 0.4470264 +0.510322 0.1201537 0.4470264 +0.5195258 0.1201537 0.4470264 +0.5284142 0.1201537 0.4470264 +0.5370079 0.1201537 0.4470264 +0.5453253 0.1201537 0.4470264 +0.5533834 0.1201537 0.4470264 +0.5611974 0.1201537 0.4470264 +0.5687816 0.1201537 0.4470264 +0.092819 0.1409607 0.4470264 +0.1056428 0.1409607 0.4470264 +0.1201537 0.1409607 0.4470264 +0.1409607 0.1409607 0.4470264 +0.1678172 0.1409607 0.4470264 +0.1950164 0.1409607 0.4470264 +0.2210581 0.1409607 0.4470264 +0.245636 0.1409607 0.4470264 +0.2686816 0.1409607 0.4470264 +0.2902431 0.1409607 0.4470264 +0.3104189 0.1409607 0.4470264 +0.3293248 0.1409607 0.4470264 +0.3470774 0.1409607 0.4470264 +0.3637862 0.1409607 0.4470264 +0.3795513 0.1409607 0.4470264 +0.3944623 0.1409607 0.4470264 +0.4085988 0.1409607 0.4470264 +0.4220313 0.1409607 0.4470264 +0.4348222 0.1409607 0.4470264 +0.4470264 0.1409607 0.4470264 +0.4586928 0.1409607 0.4470264 +0.4698649 0.1409607 0.4470264 +0.4805811 0.1409607 0.4470264 +0.490876 0.1409607 0.4470264 +0.5007803 0.1409607 0.4470264 +0.510322 0.1409607 0.4470264 +0.5195258 0.1409607 0.4470264 +0.5284142 0.1409607 0.4470264 +0.5370079 0.1409607 0.4470264 +0.5453253 0.1409607 0.4470264 +0.5533834 0.1409607 0.4470264 +0.5611974 0.1409607 0.4470264 +0.5687816 0.1409607 0.4470264 +0.092819 0.1678172 0.4470264 +0.1056428 0.1678172 0.4470264 +0.1201537 0.1678172 0.4470264 +0.1409607 0.1678172 0.4470264 +0.1678172 0.1678172 0.4470264 +0.1950164 0.1678172 0.4470264 +0.2210581 0.1678172 0.4470264 +0.245636 0.1678172 0.4470264 +0.2686816 0.1678172 0.4470264 +0.2902431 0.1678172 0.4470264 +0.3104189 0.1678172 0.4470264 +0.3293248 0.1678172 0.4470264 +0.3470774 0.1678172 0.4470264 +0.3637862 0.1678172 0.4470264 +0.3795513 0.1678172 0.4470264 +0.3944623 0.1678172 0.4470264 +0.4085988 0.1678172 0.4470264 +0.4220313 0.1678172 0.4470264 +0.4348222 0.1678172 0.4470264 +0.4470264 0.1678172 0.4470264 +0.4586928 0.1678172 0.4470264 +0.4698649 0.1678172 0.4470264 +0.4805811 0.1678172 0.4470264 +0.490876 0.1678172 0.4470264 +0.5007803 0.1678172 0.4470264 +0.510322 0.1678172 0.4470264 +0.5195258 0.1678172 0.4470264 +0.5284142 0.1678172 0.4470264 +0.5370079 0.1678172 0.4470264 +0.5453253 0.1678172 0.4470264 +0.5533834 0.1678172 0.4470264 +0.5611974 0.1678172 0.4470264 +0.5687816 0.1678172 0.4470264 +0.092819 0.1950164 0.4470264 +0.1056428 0.1950164 0.4470264 +0.1201537 0.1950164 0.4470264 +0.1409607 0.1950164 0.4470264 +0.1678172 0.1950164 0.4470264 +0.1950164 0.1950164 0.4470264 +0.2210581 0.1950164 0.4470264 +0.245636 0.1950164 0.4470264 +0.2686816 0.1950164 0.4470264 +0.2902431 0.1950164 0.4470264 +0.3104189 0.1950164 0.4470264 +0.3293248 0.1950164 0.4470264 +0.3470774 0.1950164 0.4470264 +0.3637862 0.1950164 0.4470264 +0.3795513 0.1950164 0.4470264 +0.3944623 0.1950164 0.4470264 +0.4085988 0.1950164 0.4470264 +0.4220313 0.1950164 0.4470264 +0.4348222 0.1950164 0.4470264 +0.4470264 0.1950164 0.4470264 +0.4586928 0.1950164 0.4470264 +0.4698649 0.1950164 0.4470264 +0.4805811 0.1950164 0.4470264 +0.490876 0.1950164 0.4470264 +0.5007803 0.1950164 0.4470264 +0.510322 0.1950164 0.4470264 +0.5195258 0.1950164 0.4470264 +0.5284142 0.1950164 0.4470264 +0.5370079 0.1950164 0.4470264 +0.5453253 0.1950164 0.4470264 +0.5533834 0.1950164 0.4470264 +0.5611974 0.1950164 0.4470264 +0.5687816 0.1950164 0.4470264 +0.092819 0.2210581 0.4470264 +0.1056428 0.2210581 0.4470264 +0.1201537 0.2210581 0.4470264 +0.1409607 0.2210581 0.4470264 +0.1678172 0.2210581 0.4470264 +0.1950164 0.2210581 0.4470264 +0.2210581 0.2210581 0.4470264 +0.245636 0.2210581 0.4470264 +0.2686816 0.2210581 0.4470264 +0.2902431 0.2210581 0.4470264 +0.3104189 0.2210581 0.4470264 +0.3293248 0.2210581 0.4470264 +0.3470774 0.2210581 0.4470264 +0.3637862 0.2210581 0.4470264 +0.3795513 0.2210581 0.4470264 +0.3944623 0.2210581 0.4470264 +0.4085988 0.2210581 0.4470264 +0.4220313 0.2210581 0.4470264 +0.4348222 0.2210581 0.4470264 +0.4470264 0.2210581 0.4470264 +0.4586928 0.2210581 0.4470264 +0.4698649 0.2210581 0.4470264 +0.4805811 0.2210581 0.4470264 +0.490876 0.2210581 0.4470264 +0.5007803 0.2210581 0.4470264 +0.510322 0.2210581 0.4470264 +0.5195258 0.2210581 0.4470264 +0.5284142 0.2210581 0.4470264 +0.5370079 0.2210581 0.4470264 +0.5453253 0.2210581 0.4470264 +0.5533834 0.2210581 0.4470264 +0.5611974 0.2210581 0.4470264 +0.5687816 0.2210581 0.4470264 +0.092819 0.245636 0.4470264 +0.1056428 0.245636 0.4470264 +0.1201537 0.245636 0.4470264 +0.1409607 0.245636 0.4470264 +0.1678172 0.245636 0.4470264 +0.1950164 0.245636 0.4470264 +0.2210581 0.245636 0.4470264 +0.245636 0.245636 0.4470264 +0.2686816 0.245636 0.4470264 +0.2902431 0.245636 0.4470264 +0.3104189 0.245636 0.4470264 +0.3293248 0.245636 0.4470264 +0.3470774 0.245636 0.4470264 +0.3637862 0.245636 0.4470264 +0.3795513 0.245636 0.4470264 +0.3944623 0.245636 0.4470264 +0.4085988 0.245636 0.4470264 +0.4220313 0.245636 0.4470264 +0.4348222 0.245636 0.4470264 +0.4470264 0.245636 0.4470264 +0.4586928 0.245636 0.4470264 +0.4698649 0.245636 0.4470264 +0.4805811 0.245636 0.4470264 +0.490876 0.245636 0.4470264 +0.5007803 0.245636 0.4470264 +0.510322 0.245636 0.4470264 +0.5195258 0.245636 0.4470264 +0.5284142 0.245636 0.4470264 +0.5370079 0.245636 0.4470264 +0.5453253 0.245636 0.4470264 +0.5533834 0.245636 0.4470264 +0.5611974 0.245636 0.4470264 +0.5687816 0.245636 0.4470264 +0.092819 0.2686816 0.4470264 +0.1056428 0.2686816 0.4470264 +0.1201537 0.2686816 0.4470264 +0.1409607 0.2686816 0.4470264 +0.1678172 0.2686816 0.4470264 +0.1950164 0.2686816 0.4470264 +0.2210581 0.2686816 0.4470264 +0.245636 0.2686816 0.4470264 +0.2686816 0.2686816 0.4470264 +0.2902431 0.2686816 0.4470264 +0.3104189 0.2686816 0.4470264 +0.3293248 0.2686816 0.4470264 +0.3470774 0.2686816 0.4470264 +0.3637862 0.2686816 0.4470264 +0.3795513 0.2686816 0.4470264 +0.3944623 0.2686816 0.4470264 +0.4085988 0.2686816 0.4470264 +0.4220313 0.2686816 0.4470264 +0.4348222 0.2686816 0.4470264 +0.4470264 0.2686816 0.4470264 +0.4586928 0.2686816 0.4470264 +0.4698649 0.2686816 0.4470264 +0.4805811 0.2686816 0.4470264 +0.490876 0.2686816 0.4470264 +0.5007803 0.2686816 0.4470264 +0.510322 0.2686816 0.4470264 +0.5195258 0.2686816 0.4470264 +0.5284142 0.2686816 0.4470264 +0.5370079 0.2686816 0.4470264 +0.5453253 0.2686816 0.4470264 +0.5533834 0.2686816 0.4470264 +0.5611974 0.2686816 0.4470264 +0.5687816 0.2686816 0.4470264 +0.092819 0.2902431 0.4470264 +0.1056428 0.2902431 0.4470264 +0.1201537 0.2902431 0.4470264 +0.1409607 0.2902431 0.4470264 +0.1678172 0.2902431 0.4470264 +0.1950164 0.2902431 0.4470264 +0.2210581 0.2902431 0.4470264 +0.245636 0.2902431 0.4470264 +0.2686816 0.2902431 0.4470264 +0.2902431 0.2902431 0.4470264 +0.3104189 0.2902431 0.4470264 +0.3293248 0.2902431 0.4470264 +0.3470774 0.2902431 0.4470264 +0.3637862 0.2902431 0.4470264 +0.3795513 0.2902431 0.4470264 +0.3944623 0.2902431 0.4470264 +0.4085988 0.2902431 0.4470264 +0.4220313 0.2902431 0.4470264 +0.4348222 0.2902431 0.4470264 +0.4470264 0.2902431 0.4470264 +0.4586928 0.2902431 0.4470264 +0.4698649 0.2902431 0.4470264 +0.4805811 0.2902431 0.4470264 +0.490876 0.2902431 0.4470264 +0.5007803 0.2902431 0.4470264 +0.510322 0.2902431 0.4470264 +0.5195258 0.2902431 0.4470264 +0.5284142 0.2902431 0.4470264 +0.5370079 0.2902431 0.4470264 +0.5453253 0.2902431 0.4470264 +0.5533834 0.2902431 0.4470264 +0.5611974 0.2902431 0.4470264 +0.5687816 0.2902431 0.4470264 +0.092819 0.3104189 0.4470264 +0.1056428 0.3104189 0.4470264 +0.1201537 0.3104189 0.4470264 +0.1409607 0.3104189 0.4470264 +0.1678172 0.3104189 0.4470264 +0.1950164 0.3104189 0.4470264 +0.2210581 0.3104189 0.4470264 +0.245636 0.3104189 0.4470264 +0.2686816 0.3104189 0.4470264 +0.2902431 0.3104189 0.4470264 +0.3104189 0.3104189 0.4470264 +0.3293248 0.3104189 0.4470264 +0.3470774 0.3104189 0.4470264 +0.3637862 0.3104189 0.4470264 +0.3795513 0.3104189 0.4470264 +0.3944623 0.3104189 0.4470264 +0.4085988 0.3104189 0.4470264 +0.4220313 0.3104189 0.4470264 +0.4348222 0.3104189 0.4470264 +0.4470264 0.3104189 0.4470264 +0.4586928 0.3104189 0.4470264 +0.4698649 0.3104189 0.4470264 +0.4805811 0.3104189 0.4470264 +0.490876 0.3104189 0.4470264 +0.5007803 0.3104189 0.4470264 +0.510322 0.3104189 0.4470264 +0.5195258 0.3104189 0.4470264 +0.5284142 0.3104189 0.4470264 +0.5370079 0.3104189 0.4470264 +0.5453253 0.3104189 0.4470264 +0.5533834 0.3104189 0.4470264 +0.5611974 0.3104189 0.4470264 +0.5687816 0.3104189 0.4470264 +0.092819 0.3293248 0.4470264 +0.1056428 0.3293248 0.4470264 +0.1201537 0.3293248 0.4470264 +0.1409607 0.3293248 0.4470264 +0.1678172 0.3293248 0.4470264 +0.1950164 0.3293248 0.4470264 +0.2210581 0.3293248 0.4470264 +0.245636 0.3293248 0.4470264 +0.2686816 0.3293248 0.4470264 +0.2902431 0.3293248 0.4470264 +0.3104189 0.3293248 0.4470264 +0.3293248 0.3293248 0.4470264 +0.3470774 0.3293248 0.4470264 +0.3637862 0.3293248 0.4470264 +0.3795513 0.3293248 0.4470264 +0.3944623 0.3293248 0.4470264 +0.4085988 0.3293248 0.4470264 +0.4220313 0.3293248 0.4470264 +0.4348222 0.3293248 0.4470264 +0.4470264 0.3293248 0.4470264 +0.4586928 0.3293248 0.4470264 +0.4698649 0.3293248 0.4470264 +0.4805811 0.3293248 0.4470264 +0.490876 0.3293248 0.4470264 +0.5007803 0.3293248 0.4470264 +0.510322 0.3293248 0.4470264 +0.5195258 0.3293248 0.4470264 +0.5284142 0.3293248 0.4470264 +0.5370079 0.3293248 0.4470264 +0.5453253 0.3293248 0.4470264 +0.5533834 0.3293248 0.4470264 +0.5611974 0.3293248 0.4470264 +0.5687816 0.3293248 0.4470264 +0.092819 0.3470774 0.4470264 +0.1056428 0.3470774 0.4470264 +0.1201537 0.3470774 0.4470264 +0.1409607 0.3470774 0.4470264 +0.1678172 0.3470774 0.4470264 +0.1950164 0.3470774 0.4470264 +0.2210581 0.3470774 0.4470264 +0.245636 0.3470774 0.4470264 +0.2686816 0.3470774 0.4470264 +0.2902431 0.3470774 0.4470264 +0.3104189 0.3470774 0.4470264 +0.3293248 0.3470774 0.4470264 +0.3470774 0.3470774 0.4470264 +0.3637862 0.3470774 0.4470264 +0.3795513 0.3470774 0.4470264 +0.3944623 0.3470774 0.4470264 +0.4085988 0.3470774 0.4470264 +0.4220313 0.3470774 0.4470264 +0.4348222 0.3470774 0.4470264 +0.4470264 0.3470774 0.4470264 +0.4586928 0.3470774 0.4470264 +0.4698649 0.3470774 0.4470264 +0.4805811 0.3470774 0.4470264 +0.490876 0.3470774 0.4470264 +0.5007803 0.3470774 0.4470264 +0.510322 0.3470774 0.4470264 +0.5195258 0.3470774 0.4470264 +0.5284142 0.3470774 0.4470264 +0.5370079 0.3470774 0.4470264 +0.5453253 0.3470774 0.4470264 +0.5533834 0.3470774 0.4470264 +0.5611974 0.3470774 0.4470264 +0.5687816 0.3470774 0.4470264 +0.092819 0.3637862 0.4470264 +0.1056428 0.3637862 0.4470264 +0.1201537 0.3637862 0.4470264 +0.1409607 0.3637862 0.4470264 +0.1678172 0.3637862 0.4470264 +0.1950164 0.3637862 0.4470264 +0.2210581 0.3637862 0.4470264 +0.245636 0.3637862 0.4470264 +0.2686816 0.3637862 0.4470264 +0.2902431 0.3637862 0.4470264 +0.3104189 0.3637862 0.4470264 +0.3293248 0.3637862 0.4470264 +0.3470774 0.3637862 0.4470264 +0.3637862 0.3637862 0.4470264 +0.3795513 0.3637862 0.4470264 +0.3944623 0.3637862 0.4470264 +0.4085988 0.3637862 0.4470264 +0.4220313 0.3637862 0.4470264 +0.4348222 0.3637862 0.4470264 +0.4470264 0.3637862 0.4470264 +0.4586928 0.3637862 0.4470264 +0.4698649 0.3637862 0.4470264 +0.4805811 0.3637862 0.4470264 +0.490876 0.3637862 0.4470264 +0.5007803 0.3637862 0.4470264 +0.510322 0.3637862 0.4470264 +0.5195258 0.3637862 0.4470264 +0.5284142 0.3637862 0.4470264 +0.5370079 0.3637862 0.4470264 +0.5453253 0.3637862 0.4470264 +0.5533834 0.3637862 0.4470264 +0.5611974 0.3637862 0.4470264 +0.5687816 0.3637862 0.4470264 +0.092819 0.3795513 0.4470264 +0.1056428 0.3795513 0.4470264 +0.1201537 0.3795513 0.4470264 +0.1409607 0.3795513 0.4470264 +0.1678172 0.3795513 0.4470264 +0.1950164 0.3795513 0.4470264 +0.2210581 0.3795513 0.4470264 +0.245636 0.3795513 0.4470264 +0.2686816 0.3795513 0.4470264 +0.2902431 0.3795513 0.4470264 +0.3104189 0.3795513 0.4470264 +0.3293248 0.3795513 0.4470264 +0.3470774 0.3795513 0.4470264 +0.3637862 0.3795513 0.4470264 +0.3795513 0.3795513 0.4470264 +0.3944623 0.3795513 0.4470264 +0.4085988 0.3795513 0.4470264 +0.4220313 0.3795513 0.4470264 +0.4348222 0.3795513 0.4470264 +0.4470264 0.3795513 0.4470264 +0.4586928 0.3795513 0.4470264 +0.4698649 0.3795513 0.4470264 +0.4805811 0.3795513 0.4470264 +0.490876 0.3795513 0.4470264 +0.5007803 0.3795513 0.4470264 +0.510322 0.3795513 0.4470264 +0.5195258 0.3795513 0.4470264 +0.5284142 0.3795513 0.4470264 +0.5370079 0.3795513 0.4470264 +0.5453253 0.3795513 0.4470264 +0.5533834 0.3795513 0.4470264 +0.5611974 0.3795513 0.4470264 +0.5687816 0.3795513 0.4470264 +0.092819 0.3944623 0.4470264 +0.1056428 0.3944623 0.4470264 +0.1201537 0.3944623 0.4470264 +0.1409607 0.3944623 0.4470264 +0.1678172 0.3944623 0.4470264 +0.1950164 0.3944623 0.4470264 +0.2210581 0.3944623 0.4470264 +0.245636 0.3944623 0.4470264 +0.2686816 0.3944623 0.4470264 +0.2902431 0.3944623 0.4470264 +0.3104189 0.3944623 0.4470264 +0.3293248 0.3944623 0.4470264 +0.3470774 0.3944623 0.4470264 +0.3637862 0.3944623 0.4470264 +0.3795513 0.3944623 0.4470264 +0.3944623 0.3944623 0.4470264 +0.4085988 0.3944623 0.4470264 +0.4220313 0.3944623 0.4470264 +0.4348222 0.3944623 0.4470264 +0.4470264 0.3944623 0.4470264 +0.4586928 0.3944623 0.4470264 +0.4698649 0.3944623 0.4470264 +0.4805811 0.3944623 0.4470264 +0.490876 0.3944623 0.4470264 +0.5007803 0.3944623 0.4470264 +0.510322 0.3944623 0.4470264 +0.5195258 0.3944623 0.4470264 +0.5284142 0.3944623 0.4470264 +0.5370079 0.3944623 0.4470264 +0.5453253 0.3944623 0.4470264 +0.5533834 0.3944623 0.4470264 +0.5611974 0.3944623 0.4470264 +0.5687816 0.3944623 0.4470264 +0.092819 0.4085988 0.4470264 +0.1056428 0.4085988 0.4470264 +0.1201537 0.4085988 0.4470264 +0.1409607 0.4085988 0.4470264 +0.1678172 0.4085988 0.4470264 +0.1950164 0.4085988 0.4470264 +0.2210581 0.4085988 0.4470264 +0.245636 0.4085988 0.4470264 +0.2686816 0.4085988 0.4470264 +0.2902431 0.4085988 0.4470264 +0.3104189 0.4085988 0.4470264 +0.3293248 0.4085988 0.4470264 +0.3470774 0.4085988 0.4470264 +0.3637862 0.4085988 0.4470264 +0.3795513 0.4085988 0.4470264 +0.3944623 0.4085988 0.4470264 +0.4085988 0.4085988 0.4470264 +0.4220313 0.4085988 0.4470264 +0.4348222 0.4085988 0.4470264 +0.4470264 0.4085988 0.4470264 +0.4586928 0.4085988 0.4470264 +0.4698649 0.4085988 0.4470264 +0.4805811 0.4085988 0.4470264 +0.490876 0.4085988 0.4470264 +0.5007803 0.4085988 0.4470264 +0.510322 0.4085988 0.4470264 +0.5195258 0.4085988 0.4470264 +0.5284142 0.4085988 0.4470264 +0.5370079 0.4085988 0.4470264 +0.5453253 0.4085988 0.4470264 +0.5533834 0.4085988 0.4470264 +0.5611974 0.4085988 0.4470264 +0.5687816 0.4085988 0.4470264 +0.092819 0.4220313 0.4470264 +0.1056428 0.4220313 0.4470264 +0.1201537 0.4220313 0.4470264 +0.1409607 0.4220313 0.4470264 +0.1678172 0.4220313 0.4470264 +0.1950164 0.4220313 0.4470264 +0.2210581 0.4220313 0.4470264 +0.245636 0.4220313 0.4470264 +0.2686816 0.4220313 0.4470264 +0.2902431 0.4220313 0.4470264 +0.3104189 0.4220313 0.4470264 +0.3293248 0.4220313 0.4470264 +0.3470774 0.4220313 0.4470264 +0.3637862 0.4220313 0.4470264 +0.3795513 0.4220313 0.4470264 +0.3944623 0.4220313 0.4470264 +0.4085988 0.4220313 0.4470264 +0.4220313 0.4220313 0.4470264 +0.4348222 0.4220313 0.4470264 +0.4470264 0.4220313 0.4470264 +0.4586928 0.4220313 0.4470264 +0.4698649 0.4220313 0.4470264 +0.4805811 0.4220313 0.4470264 +0.490876 0.4220313 0.4470264 +0.5007803 0.4220313 0.4470264 +0.510322 0.4220313 0.4470264 +0.5195258 0.4220313 0.4470264 +0.5284142 0.4220313 0.4470264 +0.5370079 0.4220313 0.4470264 +0.5453253 0.4220313 0.4470264 +0.5533834 0.4220313 0.4470264 +0.5611974 0.4220313 0.4470264 +0.5687816 0.4220313 0.4470264 +0.092819 0.4348222 0.4470264 +0.1056428 0.4348222 0.4470264 +0.1201537 0.4348222 0.4470264 +0.1409607 0.4348222 0.4470264 +0.1678172 0.4348222 0.4470264 +0.1950164 0.4348222 0.4470264 +0.2210581 0.4348222 0.4470264 +0.245636 0.4348222 0.4470264 +0.2686816 0.4348222 0.4470264 +0.2902431 0.4348222 0.4470264 +0.3104189 0.4348222 0.4470264 +0.3293248 0.4348222 0.4470264 +0.3470774 0.4348222 0.4470264 +0.3637862 0.4348222 0.4470264 +0.3795513 0.4348222 0.4470264 +0.3944623 0.4348222 0.4470264 +0.4085988 0.4348222 0.4470264 +0.4220313 0.4348222 0.4470264 +0.4348222 0.4348222 0.4470264 +0.4470264 0.4348222 0.4470264 +0.4586928 0.4348222 0.4470264 +0.4698649 0.4348222 0.4470264 +0.4805811 0.4348222 0.4470264 +0.490876 0.4348222 0.4470264 +0.5007803 0.4348222 0.4470264 +0.510322 0.4348222 0.4470264 +0.5195258 0.4348222 0.4470264 +0.5284142 0.4348222 0.4470264 +0.5370079 0.4348222 0.4470264 +0.5453253 0.4348222 0.4470264 +0.5533834 0.4348222 0.4470264 +0.5611974 0.4348222 0.4470264 +0.5687816 0.4348222 0.4470264 +0.092819 0.4470264 0.4470264 +0.1056428 0.4470264 0.4470264 +0.1201537 0.4470264 0.4470264 +0.1409607 0.4470264 0.4470264 +0.1678172 0.4470264 0.4470264 +0.1950164 0.4470264 0.4470264 +0.2210581 0.4470264 0.4470264 +0.245636 0.4470264 0.4470264 +0.2686816 0.4470264 0.4470264 +0.2902431 0.4470264 0.4470264 +0.3104189 0.4470264 0.4470264 +0.3293248 0.4470264 0.4470264 +0.3470774 0.4470264 0.4470264 +0.3637862 0.4470264 0.4470264 +0.3795513 0.4470264 0.4470264 +0.3944623 0.4470264 0.4470264 +0.4085988 0.4470264 0.4470264 +0.4220313 0.4470264 0.4470264 +0.4348222 0.4470264 0.4470264 +0.4470264 0.4470264 0.4470264 +0.4586928 0.4470264 0.4470264 +0.4698649 0.4470264 0.4470264 +0.4805811 0.4470264 0.4470264 +0.490876 0.4470264 0.4470264 +0.5007803 0.4470264 0.4470264 +0.510322 0.4470264 0.4470264 +0.5195258 0.4470264 0.4470264 +0.5284142 0.4470264 0.4470264 +0.5370079 0.4470264 0.4470264 +0.5453253 0.4470264 0.4470264 +0.5533834 0.4470264 0.4470264 +0.5611974 0.4470264 0.4470264 +0.5687816 0.4470264 0.4470264 +0.092819 0.4586928 0.4470264 +0.1056428 0.4586928 0.4470264 +0.1201537 0.4586928 0.4470264 +0.1409607 0.4586928 0.4470264 +0.1678172 0.4586928 0.4470264 +0.1950164 0.4586928 0.4470264 +0.2210581 0.4586928 0.4470264 +0.245636 0.4586928 0.4470264 +0.2686816 0.4586928 0.4470264 +0.2902431 0.4586928 0.4470264 +0.3104189 0.4586928 0.4470264 +0.3293248 0.4586928 0.4470264 +0.3470774 0.4586928 0.4470264 +0.3637862 0.4586928 0.4470264 +0.3795513 0.4586928 0.4470264 +0.3944623 0.4586928 0.4470264 +0.4085988 0.4586928 0.4470264 +0.4220313 0.4586928 0.4470264 +0.4348222 0.4586928 0.4470264 +0.4470264 0.4586928 0.4470264 +0.4586928 0.4586928 0.4470264 +0.4698649 0.4586928 0.4470264 +0.4805811 0.4586928 0.4470264 +0.490876 0.4586928 0.4470264 +0.5007803 0.4586928 0.4470264 +0.510322 0.4586928 0.4470264 +0.5195258 0.4586928 0.4470264 +0.5284142 0.4586928 0.4470264 +0.5370079 0.4586928 0.4470264 +0.5453253 0.4586928 0.4470264 +0.5533834 0.4586928 0.4470264 +0.5611974 0.4586928 0.4470264 +0.5687816 0.4586928 0.4470264 +0.092819 0.4698649 0.4470264 +0.1056428 0.4698649 0.4470264 +0.1201537 0.4698649 0.4470264 +0.1409607 0.4698649 0.4470264 +0.1678172 0.4698649 0.4470264 +0.1950164 0.4698649 0.4470264 +0.2210581 0.4698649 0.4470264 +0.245636 0.4698649 0.4470264 +0.2686816 0.4698649 0.4470264 +0.2902431 0.4698649 0.4470264 +0.3104189 0.4698649 0.4470264 +0.3293248 0.4698649 0.4470264 +0.3470774 0.4698649 0.4470264 +0.3637862 0.4698649 0.4470264 +0.3795513 0.4698649 0.4470264 +0.3944623 0.4698649 0.4470264 +0.4085988 0.4698649 0.4470264 +0.4220313 0.4698649 0.4470264 +0.4348222 0.4698649 0.4470264 +0.4470264 0.4698649 0.4470264 +0.4586928 0.4698649 0.4470264 +0.4698649 0.4698649 0.4470264 +0.4805811 0.4698649 0.4470264 +0.490876 0.4698649 0.4470264 +0.5007803 0.4698649 0.4470264 +0.510322 0.4698649 0.4470264 +0.5195258 0.4698649 0.4470264 +0.5284142 0.4698649 0.4470264 +0.5370079 0.4698649 0.4470264 +0.5453253 0.4698649 0.4470264 +0.5533834 0.4698649 0.4470264 +0.5611974 0.4698649 0.4470264 +0.5687816 0.4698649 0.4470264 +0.092819 0.4805811 0.4470264 +0.1056428 0.4805811 0.4470264 +0.1201537 0.4805811 0.4470264 +0.1409607 0.4805811 0.4470264 +0.1678172 0.4805811 0.4470264 +0.1950164 0.4805811 0.4470264 +0.2210581 0.4805811 0.4470264 +0.245636 0.4805811 0.4470264 +0.2686816 0.4805811 0.4470264 +0.2902431 0.4805811 0.4470264 +0.3104189 0.4805811 0.4470264 +0.3293248 0.4805811 0.4470264 +0.3470774 0.4805811 0.4470264 +0.3637862 0.4805811 0.4470264 +0.3795513 0.4805811 0.4470264 +0.3944623 0.4805811 0.4470264 +0.4085988 0.4805811 0.4470264 +0.4220313 0.4805811 0.4470264 +0.4348222 0.4805811 0.4470264 +0.4470264 0.4805811 0.4470264 +0.4586928 0.4805811 0.4470264 +0.4698649 0.4805811 0.4470264 +0.4805811 0.4805811 0.4470264 +0.490876 0.4805811 0.4470264 +0.5007803 0.4805811 0.4470264 +0.510322 0.4805811 0.4470264 +0.5195258 0.4805811 0.4470264 +0.5284142 0.4805811 0.4470264 +0.5370079 0.4805811 0.4470264 +0.5453253 0.4805811 0.4470264 +0.5533834 0.4805811 0.4470264 +0.5611974 0.4805811 0.4470264 +0.5687816 0.4805811 0.4470264 +0.092819 0.490876 0.4470264 +0.1056428 0.490876 0.4470264 +0.1201537 0.490876 0.4470264 +0.1409607 0.490876 0.4470264 +0.1678172 0.490876 0.4470264 +0.1950164 0.490876 0.4470264 +0.2210581 0.490876 0.4470264 +0.245636 0.490876 0.4470264 +0.2686816 0.490876 0.4470264 +0.2902431 0.490876 0.4470264 +0.3104189 0.490876 0.4470264 +0.3293248 0.490876 0.4470264 +0.3470774 0.490876 0.4470264 +0.3637862 0.490876 0.4470264 +0.3795513 0.490876 0.4470264 +0.3944623 0.490876 0.4470264 +0.4085988 0.490876 0.4470264 +0.4220313 0.490876 0.4470264 +0.4348222 0.490876 0.4470264 +0.4470264 0.490876 0.4470264 +0.4586928 0.490876 0.4470264 +0.4698649 0.490876 0.4470264 +0.4805811 0.490876 0.4470264 +0.490876 0.490876 0.4470264 +0.5007803 0.490876 0.4470264 +0.510322 0.490876 0.4470264 +0.5195258 0.490876 0.4470264 +0.5284142 0.490876 0.4470264 +0.5370079 0.490876 0.4470264 +0.5453253 0.490876 0.4470264 +0.5533834 0.490876 0.4470264 +0.5611974 0.490876 0.4470264 +0.5687816 0.490876 0.4470264 +0.092819 0.5007803 0.4470264 +0.1056428 0.5007803 0.4470264 +0.1201537 0.5007803 0.4470264 +0.1409607 0.5007803 0.4470264 +0.1678172 0.5007803 0.4470264 +0.1950164 0.5007803 0.4470264 +0.2210581 0.5007803 0.4470264 +0.245636 0.5007803 0.4470264 +0.2686816 0.5007803 0.4470264 +0.2902431 0.5007803 0.4470264 +0.3104189 0.5007803 0.4470264 +0.3293248 0.5007803 0.4470264 +0.3470774 0.5007803 0.4470264 +0.3637862 0.5007803 0.4470264 +0.3795513 0.5007803 0.4470264 +0.3944623 0.5007803 0.4470264 +0.4085988 0.5007803 0.4470264 +0.4220313 0.5007803 0.4470264 +0.4348222 0.5007803 0.4470264 +0.4470264 0.5007803 0.4470264 +0.4586928 0.5007803 0.4470264 +0.4698649 0.5007803 0.4470264 +0.4805811 0.5007803 0.4470264 +0.490876 0.5007803 0.4470264 +0.5007803 0.5007803 0.4470264 +0.510322 0.5007803 0.4470264 +0.5195258 0.5007803 0.4470264 +0.5284142 0.5007803 0.4470264 +0.5370079 0.5007803 0.4470264 +0.5453253 0.5007803 0.4470264 +0.5533834 0.5007803 0.4470264 +0.5611974 0.5007803 0.4470264 +0.5687816 0.5007803 0.4470264 +0.092819 0.510322 0.4470264 +0.1056428 0.510322 0.4470264 +0.1201537 0.510322 0.4470264 +0.1409607 0.510322 0.4470264 +0.1678172 0.510322 0.4470264 +0.1950164 0.510322 0.4470264 +0.2210581 0.510322 0.4470264 +0.245636 0.510322 0.4470264 +0.2686816 0.510322 0.4470264 +0.2902431 0.510322 0.4470264 +0.3104189 0.510322 0.4470264 +0.3293248 0.510322 0.4470264 +0.3470774 0.510322 0.4470264 +0.3637862 0.510322 0.4470264 +0.3795513 0.510322 0.4470264 +0.3944623 0.510322 0.4470264 +0.4085988 0.510322 0.4470264 +0.4220313 0.510322 0.4470264 +0.4348222 0.510322 0.4470264 +0.4470264 0.510322 0.4470264 +0.4586928 0.510322 0.4470264 +0.4698649 0.510322 0.4470264 +0.4805811 0.510322 0.4470264 +0.490876 0.510322 0.4470264 +0.5007803 0.510322 0.4470264 +0.510322 0.510322 0.4470264 +0.5195258 0.510322 0.4470264 +0.5284142 0.510322 0.4470264 +0.5370079 0.510322 0.4470264 +0.5453253 0.510322 0.4470264 +0.5533834 0.510322 0.4470264 +0.5611974 0.510322 0.4470264 +0.5687816 0.510322 0.4470264 +0.092819 0.5195258 0.4470264 +0.1056428 0.5195258 0.4470264 +0.1201537 0.5195258 0.4470264 +0.1409607 0.5195258 0.4470264 +0.1678172 0.5195258 0.4470264 +0.1950164 0.5195258 0.4470264 +0.2210581 0.5195258 0.4470264 +0.245636 0.5195258 0.4470264 +0.2686816 0.5195258 0.4470264 +0.2902431 0.5195258 0.4470264 +0.3104189 0.5195258 0.4470264 +0.3293248 0.5195258 0.4470264 +0.3470774 0.5195258 0.4470264 +0.3637862 0.5195258 0.4470264 +0.3795513 0.5195258 0.4470264 +0.3944623 0.5195258 0.4470264 +0.4085988 0.5195258 0.4470264 +0.4220313 0.5195258 0.4470264 +0.4348222 0.5195258 0.4470264 +0.4470264 0.5195258 0.4470264 +0.4586928 0.5195258 0.4470264 +0.4698649 0.5195258 0.4470264 +0.4805811 0.5195258 0.4470264 +0.490876 0.5195258 0.4470264 +0.5007803 0.5195258 0.4470264 +0.510322 0.5195258 0.4470264 +0.5195258 0.5195258 0.4470264 +0.5284142 0.5195258 0.4470264 +0.5370079 0.5195258 0.4470264 +0.5453253 0.5195258 0.4470264 +0.5533834 0.5195258 0.4470264 +0.5611974 0.5195258 0.4470264 +0.5687816 0.5195258 0.4470264 +0.092819 0.5284142 0.4470264 +0.1056428 0.5284142 0.4470264 +0.1201537 0.5284142 0.4470264 +0.1409607 0.5284142 0.4470264 +0.1678172 0.5284142 0.4470264 +0.1950164 0.5284142 0.4470264 +0.2210581 0.5284142 0.4470264 +0.245636 0.5284142 0.4470264 +0.2686816 0.5284142 0.4470264 +0.2902431 0.5284142 0.4470264 +0.3104189 0.5284142 0.4470264 +0.3293248 0.5284142 0.4470264 +0.3470774 0.5284142 0.4470264 +0.3637862 0.5284142 0.4470264 +0.3795513 0.5284142 0.4470264 +0.3944623 0.5284142 0.4470264 +0.4085988 0.5284142 0.4470264 +0.4220313 0.5284142 0.4470264 +0.4348222 0.5284142 0.4470264 +0.4470264 0.5284142 0.4470264 +0.4586928 0.5284142 0.4470264 +0.4698649 0.5284142 0.4470264 +0.4805811 0.5284142 0.4470264 +0.490876 0.5284142 0.4470264 +0.5007803 0.5284142 0.4470264 +0.510322 0.5284142 0.4470264 +0.5195258 0.5284142 0.4470264 +0.5284142 0.5284142 0.4470264 +0.5370079 0.5284142 0.4470264 +0.5453253 0.5284142 0.4470264 +0.5533834 0.5284142 0.4470264 +0.5611974 0.5284142 0.4470264 +0.5687816 0.5284142 0.4470264 +0.092819 0.5370079 0.4470264 +0.1056428 0.5370079 0.4470264 +0.1201537 0.5370079 0.4470264 +0.1409607 0.5370079 0.4470264 +0.1678172 0.5370079 0.4470264 +0.1950164 0.5370079 0.4470264 +0.2210581 0.5370079 0.4470264 +0.245636 0.5370079 0.4470264 +0.2686816 0.5370079 0.4470264 +0.2902431 0.5370079 0.4470264 +0.3104189 0.5370079 0.4470264 +0.3293248 0.5370079 0.4470264 +0.3470774 0.5370079 0.4470264 +0.3637862 0.5370079 0.4470264 +0.3795513 0.5370079 0.4470264 +0.3944623 0.5370079 0.4470264 +0.4085988 0.5370079 0.4470264 +0.4220313 0.5370079 0.4470264 +0.4348222 0.5370079 0.4470264 +0.4470264 0.5370079 0.4470264 +0.4586928 0.5370079 0.4470264 +0.4698649 0.5370079 0.4470264 +0.4805811 0.5370079 0.4470264 +0.490876 0.5370079 0.4470264 +0.5007803 0.5370079 0.4470264 +0.510322 0.5370079 0.4470264 +0.5195258 0.5370079 0.4470264 +0.5284142 0.5370079 0.4470264 +0.5370079 0.5370079 0.4470264 +0.5453253 0.5370079 0.4470264 +0.5533834 0.5370079 0.4470264 +0.5611974 0.5370079 0.4470264 +0.5687816 0.5370079 0.4470264 +0.092819 0.5453253 0.4470264 +0.1056428 0.5453253 0.4470264 +0.1201537 0.5453253 0.4470264 +0.1409607 0.5453253 0.4470264 +0.1678172 0.5453253 0.4470264 +0.1950164 0.5453253 0.4470264 +0.2210581 0.5453253 0.4470264 +0.245636 0.5453253 0.4470264 +0.2686816 0.5453253 0.4470264 +0.2902431 0.5453253 0.4470264 +0.3104189 0.5453253 0.4470264 +0.3293248 0.5453253 0.4470264 +0.3470774 0.5453253 0.4470264 +0.3637862 0.5453253 0.4470264 +0.3795513 0.5453253 0.4470264 +0.3944623 0.5453253 0.4470264 +0.4085988 0.5453253 0.4470264 +0.4220313 0.5453253 0.4470264 +0.4348222 0.5453253 0.4470264 +0.4470264 0.5453253 0.4470264 +0.4586928 0.5453253 0.4470264 +0.4698649 0.5453253 0.4470264 +0.4805811 0.5453253 0.4470264 +0.490876 0.5453253 0.4470264 +0.5007803 0.5453253 0.4470264 +0.510322 0.5453253 0.4470264 +0.5195258 0.5453253 0.4470264 +0.5284142 0.5453253 0.4470264 +0.5370079 0.5453253 0.4470264 +0.5453253 0.5453253 0.4470264 +0.5533834 0.5453253 0.4470264 +0.5611974 0.5453253 0.4470264 +0.5687816 0.5453253 0.4470264 +0.092819 0.5533834 0.4470264 +0.1056428 0.5533834 0.4470264 +0.1201537 0.5533834 0.4470264 +0.1409607 0.5533834 0.4470264 +0.1678172 0.5533834 0.4470264 +0.1950164 0.5533834 0.4470264 +0.2210581 0.5533834 0.4470264 +0.245636 0.5533834 0.4470264 +0.2686816 0.5533834 0.4470264 +0.2902431 0.5533834 0.4470264 +0.3104189 0.5533834 0.4470264 +0.3293248 0.5533834 0.4470264 +0.3470774 0.5533834 0.4470264 +0.3637862 0.5533834 0.4470264 +0.3795513 0.5533834 0.4470264 +0.3944623 0.5533834 0.4470264 +0.4085988 0.5533834 0.4470264 +0.4220313 0.5533834 0.4470264 +0.4348222 0.5533834 0.4470264 +0.4470264 0.5533834 0.4470264 +0.4586928 0.5533834 0.4470264 +0.4698649 0.5533834 0.4470264 +0.4805811 0.5533834 0.4470264 +0.490876 0.5533834 0.4470264 +0.5007803 0.5533834 0.4470264 +0.510322 0.5533834 0.4470264 +0.5195258 0.5533834 0.4470264 +0.5284142 0.5533834 0.4470264 +0.5370079 0.5533834 0.4470264 +0.5453253 0.5533834 0.4470264 +0.5533834 0.5533834 0.4470264 +0.5611974 0.5533834 0.4470264 +0.5687816 0.5533834 0.4470264 +0.092819 0.5611974 0.4470264 +0.1056428 0.5611974 0.4470264 +0.1201537 0.5611974 0.4470264 +0.1409607 0.5611974 0.4470264 +0.1678172 0.5611974 0.4470264 +0.1950164 0.5611974 0.4470264 +0.2210581 0.5611974 0.4470264 +0.245636 0.5611974 0.4470264 +0.2686816 0.5611974 0.4470264 +0.2902431 0.5611974 0.4470264 +0.3104189 0.5611974 0.4470264 +0.3293248 0.5611974 0.4470264 +0.3470774 0.5611974 0.4470264 +0.3637862 0.5611974 0.4470264 +0.3795513 0.5611974 0.4470264 +0.3944623 0.5611974 0.4470264 +0.4085988 0.5611974 0.4470264 +0.4220313 0.5611974 0.4470264 +0.4348222 0.5611974 0.4470264 +0.4470264 0.5611974 0.4470264 +0.4586928 0.5611974 0.4470264 +0.4698649 0.5611974 0.4470264 +0.4805811 0.5611974 0.4470264 +0.490876 0.5611974 0.4470264 +0.5007803 0.5611974 0.4470264 +0.510322 0.5611974 0.4470264 +0.5195258 0.5611974 0.4470264 +0.5284142 0.5611974 0.4470264 +0.5370079 0.5611974 0.4470264 +0.5453253 0.5611974 0.4470264 +0.5533834 0.5611974 0.4470264 +0.5611974 0.5611974 0.4470264 +0.5687816 0.5611974 0.4470264 +0.092819 0.5687816 0.4470264 +0.1056428 0.5687816 0.4470264 +0.1201537 0.5687816 0.4470264 +0.1409607 0.5687816 0.4470264 +0.1678172 0.5687816 0.4470264 +0.1950164 0.5687816 0.4470264 +0.2210581 0.5687816 0.4470264 +0.245636 0.5687816 0.4470264 +0.2686816 0.5687816 0.4470264 +0.2902431 0.5687816 0.4470264 +0.3104189 0.5687816 0.4470264 +0.3293248 0.5687816 0.4470264 +0.3470774 0.5687816 0.4470264 +0.3637862 0.5687816 0.4470264 +0.3795513 0.5687816 0.4470264 +0.3944623 0.5687816 0.4470264 +0.4085988 0.5687816 0.4470264 +0.4220313 0.5687816 0.4470264 +0.4348222 0.5687816 0.4470264 +0.4470264 0.5687816 0.4470264 +0.4586928 0.5687816 0.4470264 +0.4698649 0.5687816 0.4470264 +0.4805811 0.5687816 0.4470264 +0.490876 0.5687816 0.4470264 +0.5007803 0.5687816 0.4470264 +0.510322 0.5687816 0.4470264 +0.5195258 0.5687816 0.4470264 +0.5284142 0.5687816 0.4470264 +0.5370079 0.5687816 0.4470264 +0.5453253 0.5687816 0.4470264 +0.5533834 0.5687816 0.4470264 +0.5611974 0.5687816 0.4470264 +0.5687816 0.5687816 0.4470264 +0.092819 0.092819 0.4586928 +0.1056428 0.092819 0.4586928 +0.1201537 0.092819 0.4586928 +0.1409607 0.092819 0.4586928 +0.1678172 0.092819 0.4586928 +0.1950164 0.092819 0.4586928 +0.2210581 0.092819 0.4586928 +0.245636 0.092819 0.4586928 +0.2686816 0.092819 0.4586928 +0.2902431 0.092819 0.4586928 +0.3104189 0.092819 0.4586928 +0.3293248 0.092819 0.4586928 +0.3470774 0.092819 0.4586928 +0.3637862 0.092819 0.4586928 +0.3795513 0.092819 0.4586928 +0.3944623 0.092819 0.4586928 +0.4085988 0.092819 0.4586928 +0.4220313 0.092819 0.4586928 +0.4348222 0.092819 0.4586928 +0.4470264 0.092819 0.4586928 +0.4586928 0.092819 0.4586928 +0.4698649 0.092819 0.4586928 +0.4805811 0.092819 0.4586928 +0.490876 0.092819 0.4586928 +0.5007803 0.092819 0.4586928 +0.510322 0.092819 0.4586928 +0.5195258 0.092819 0.4586928 +0.5284142 0.092819 0.4586928 +0.5370079 0.092819 0.4586928 +0.5453253 0.092819 0.4586928 +0.5533834 0.092819 0.4586928 +0.5611974 0.092819 0.4586928 +0.5687816 0.092819 0.4586928 +0.092819 0.1056428 0.4586928 +0.1056428 0.1056428 0.4586928 +0.1201537 0.1056428 0.4586928 +0.1409607 0.1056428 0.4586928 +0.1678172 0.1056428 0.4586928 +0.1950164 0.1056428 0.4586928 +0.2210581 0.1056428 0.4586928 +0.245636 0.1056428 0.4586928 +0.2686816 0.1056428 0.4586928 +0.2902431 0.1056428 0.4586928 +0.3104189 0.1056428 0.4586928 +0.3293248 0.1056428 0.4586928 +0.3470774 0.1056428 0.4586928 +0.3637862 0.1056428 0.4586928 +0.3795513 0.1056428 0.4586928 +0.3944623 0.1056428 0.4586928 +0.4085988 0.1056428 0.4586928 +0.4220313 0.1056428 0.4586928 +0.4348222 0.1056428 0.4586928 +0.4470264 0.1056428 0.4586928 +0.4586928 0.1056428 0.4586928 +0.4698649 0.1056428 0.4586928 +0.4805811 0.1056428 0.4586928 +0.490876 0.1056428 0.4586928 +0.5007803 0.1056428 0.4586928 +0.510322 0.1056428 0.4586928 +0.5195258 0.1056428 0.4586928 +0.5284142 0.1056428 0.4586928 +0.5370079 0.1056428 0.4586928 +0.5453253 0.1056428 0.4586928 +0.5533834 0.1056428 0.4586928 +0.5611974 0.1056428 0.4586928 +0.5687816 0.1056428 0.4586928 +0.092819 0.1201537 0.4586928 +0.1056428 0.1201537 0.4586928 +0.1201537 0.1201537 0.4586928 +0.1409607 0.1201537 0.4586928 +0.1678172 0.1201537 0.4586928 +0.1950164 0.1201537 0.4586928 +0.2210581 0.1201537 0.4586928 +0.245636 0.1201537 0.4586928 +0.2686816 0.1201537 0.4586928 +0.2902431 0.1201537 0.4586928 +0.3104189 0.1201537 0.4586928 +0.3293248 0.1201537 0.4586928 +0.3470774 0.1201537 0.4586928 +0.3637862 0.1201537 0.4586928 +0.3795513 0.1201537 0.4586928 +0.3944623 0.1201537 0.4586928 +0.4085988 0.1201537 0.4586928 +0.4220313 0.1201537 0.4586928 +0.4348222 0.1201537 0.4586928 +0.4470264 0.1201537 0.4586928 +0.4586928 0.1201537 0.4586928 +0.4698649 0.1201537 0.4586928 +0.4805811 0.1201537 0.4586928 +0.490876 0.1201537 0.4586928 +0.5007803 0.1201537 0.4586928 +0.510322 0.1201537 0.4586928 +0.5195258 0.1201537 0.4586928 +0.5284142 0.1201537 0.4586928 +0.5370079 0.1201537 0.4586928 +0.5453253 0.1201537 0.4586928 +0.5533834 0.1201537 0.4586928 +0.5611974 0.1201537 0.4586928 +0.5687816 0.1201537 0.4586928 +0.092819 0.1409607 0.4586928 +0.1056428 0.1409607 0.4586928 +0.1201537 0.1409607 0.4586928 +0.1409607 0.1409607 0.4586928 +0.1678172 0.1409607 0.4586928 +0.1950164 0.1409607 0.4586928 +0.2210581 0.1409607 0.4586928 +0.245636 0.1409607 0.4586928 +0.2686816 0.1409607 0.4586928 +0.2902431 0.1409607 0.4586928 +0.3104189 0.1409607 0.4586928 +0.3293248 0.1409607 0.4586928 +0.3470774 0.1409607 0.4586928 +0.3637862 0.1409607 0.4586928 +0.3795513 0.1409607 0.4586928 +0.3944623 0.1409607 0.4586928 +0.4085988 0.1409607 0.4586928 +0.4220313 0.1409607 0.4586928 +0.4348222 0.1409607 0.4586928 +0.4470264 0.1409607 0.4586928 +0.4586928 0.1409607 0.4586928 +0.4698649 0.1409607 0.4586928 +0.4805811 0.1409607 0.4586928 +0.490876 0.1409607 0.4586928 +0.5007803 0.1409607 0.4586928 +0.510322 0.1409607 0.4586928 +0.5195258 0.1409607 0.4586928 +0.5284142 0.1409607 0.4586928 +0.5370079 0.1409607 0.4586928 +0.5453253 0.1409607 0.4586928 +0.5533834 0.1409607 0.4586928 +0.5611974 0.1409607 0.4586928 +0.5687816 0.1409607 0.4586928 +0.092819 0.1678172 0.4586928 +0.1056428 0.1678172 0.4586928 +0.1201537 0.1678172 0.4586928 +0.1409607 0.1678172 0.4586928 +0.1678172 0.1678172 0.4586928 +0.1950164 0.1678172 0.4586928 +0.2210581 0.1678172 0.4586928 +0.245636 0.1678172 0.4586928 +0.2686816 0.1678172 0.4586928 +0.2902431 0.1678172 0.4586928 +0.3104189 0.1678172 0.4586928 +0.3293248 0.1678172 0.4586928 +0.3470774 0.1678172 0.4586928 +0.3637862 0.1678172 0.4586928 +0.3795513 0.1678172 0.4586928 +0.3944623 0.1678172 0.4586928 +0.4085988 0.1678172 0.4586928 +0.4220313 0.1678172 0.4586928 +0.4348222 0.1678172 0.4586928 +0.4470264 0.1678172 0.4586928 +0.4586928 0.1678172 0.4586928 +0.4698649 0.1678172 0.4586928 +0.4805811 0.1678172 0.4586928 +0.490876 0.1678172 0.4586928 +0.5007803 0.1678172 0.4586928 +0.510322 0.1678172 0.4586928 +0.5195258 0.1678172 0.4586928 +0.5284142 0.1678172 0.4586928 +0.5370079 0.1678172 0.4586928 +0.5453253 0.1678172 0.4586928 +0.5533834 0.1678172 0.4586928 +0.5611974 0.1678172 0.4586928 +0.5687816 0.1678172 0.4586928 +0.092819 0.1950164 0.4586928 +0.1056428 0.1950164 0.4586928 +0.1201537 0.1950164 0.4586928 +0.1409607 0.1950164 0.4586928 +0.1678172 0.1950164 0.4586928 +0.1950164 0.1950164 0.4586928 +0.2210581 0.1950164 0.4586928 +0.245636 0.1950164 0.4586928 +0.2686816 0.1950164 0.4586928 +0.2902431 0.1950164 0.4586928 +0.3104189 0.1950164 0.4586928 +0.3293248 0.1950164 0.4586928 +0.3470774 0.1950164 0.4586928 +0.3637862 0.1950164 0.4586928 +0.3795513 0.1950164 0.4586928 +0.3944623 0.1950164 0.4586928 +0.4085988 0.1950164 0.4586928 +0.4220313 0.1950164 0.4586928 +0.4348222 0.1950164 0.4586928 +0.4470264 0.1950164 0.4586928 +0.4586928 0.1950164 0.4586928 +0.4698649 0.1950164 0.4586928 +0.4805811 0.1950164 0.4586928 +0.490876 0.1950164 0.4586928 +0.5007803 0.1950164 0.4586928 +0.510322 0.1950164 0.4586928 +0.5195258 0.1950164 0.4586928 +0.5284142 0.1950164 0.4586928 +0.5370079 0.1950164 0.4586928 +0.5453253 0.1950164 0.4586928 +0.5533834 0.1950164 0.4586928 +0.5611974 0.1950164 0.4586928 +0.5687816 0.1950164 0.4586928 +0.092819 0.2210581 0.4586928 +0.1056428 0.2210581 0.4586928 +0.1201537 0.2210581 0.4586928 +0.1409607 0.2210581 0.4586928 +0.1678172 0.2210581 0.4586928 +0.1950164 0.2210581 0.4586928 +0.2210581 0.2210581 0.4586928 +0.245636 0.2210581 0.4586928 +0.2686816 0.2210581 0.4586928 +0.2902431 0.2210581 0.4586928 +0.3104189 0.2210581 0.4586928 +0.3293248 0.2210581 0.4586928 +0.3470774 0.2210581 0.4586928 +0.3637862 0.2210581 0.4586928 +0.3795513 0.2210581 0.4586928 +0.3944623 0.2210581 0.4586928 +0.4085988 0.2210581 0.4586928 +0.4220313 0.2210581 0.4586928 +0.4348222 0.2210581 0.4586928 +0.4470264 0.2210581 0.4586928 +0.4586928 0.2210581 0.4586928 +0.4698649 0.2210581 0.4586928 +0.4805811 0.2210581 0.4586928 +0.490876 0.2210581 0.4586928 +0.5007803 0.2210581 0.4586928 +0.510322 0.2210581 0.4586928 +0.5195258 0.2210581 0.4586928 +0.5284142 0.2210581 0.4586928 +0.5370079 0.2210581 0.4586928 +0.5453253 0.2210581 0.4586928 +0.5533834 0.2210581 0.4586928 +0.5611974 0.2210581 0.4586928 +0.5687816 0.2210581 0.4586928 +0.092819 0.245636 0.4586928 +0.1056428 0.245636 0.4586928 +0.1201537 0.245636 0.4586928 +0.1409607 0.245636 0.4586928 +0.1678172 0.245636 0.4586928 +0.1950164 0.245636 0.4586928 +0.2210581 0.245636 0.4586928 +0.245636 0.245636 0.4586928 +0.2686816 0.245636 0.4586928 +0.2902431 0.245636 0.4586928 +0.3104189 0.245636 0.4586928 +0.3293248 0.245636 0.4586928 +0.3470774 0.245636 0.4586928 +0.3637862 0.245636 0.4586928 +0.3795513 0.245636 0.4586928 +0.3944623 0.245636 0.4586928 +0.4085988 0.245636 0.4586928 +0.4220313 0.245636 0.4586928 +0.4348222 0.245636 0.4586928 +0.4470264 0.245636 0.4586928 +0.4586928 0.245636 0.4586928 +0.4698649 0.245636 0.4586928 +0.4805811 0.245636 0.4586928 +0.490876 0.245636 0.4586928 +0.5007803 0.245636 0.4586928 +0.510322 0.245636 0.4586928 +0.5195258 0.245636 0.4586928 +0.5284142 0.245636 0.4586928 +0.5370079 0.245636 0.4586928 +0.5453253 0.245636 0.4586928 +0.5533834 0.245636 0.4586928 +0.5611974 0.245636 0.4586928 +0.5687816 0.245636 0.4586928 +0.092819 0.2686816 0.4586928 +0.1056428 0.2686816 0.4586928 +0.1201537 0.2686816 0.4586928 +0.1409607 0.2686816 0.4586928 +0.1678172 0.2686816 0.4586928 +0.1950164 0.2686816 0.4586928 +0.2210581 0.2686816 0.4586928 +0.245636 0.2686816 0.4586928 +0.2686816 0.2686816 0.4586928 +0.2902431 0.2686816 0.4586928 +0.3104189 0.2686816 0.4586928 +0.3293248 0.2686816 0.4586928 +0.3470774 0.2686816 0.4586928 +0.3637862 0.2686816 0.4586928 +0.3795513 0.2686816 0.4586928 +0.3944623 0.2686816 0.4586928 +0.4085988 0.2686816 0.4586928 +0.4220313 0.2686816 0.4586928 +0.4348222 0.2686816 0.4586928 +0.4470264 0.2686816 0.4586928 +0.4586928 0.2686816 0.4586928 +0.4698649 0.2686816 0.4586928 +0.4805811 0.2686816 0.4586928 +0.490876 0.2686816 0.4586928 +0.5007803 0.2686816 0.4586928 +0.510322 0.2686816 0.4586928 +0.5195258 0.2686816 0.4586928 +0.5284142 0.2686816 0.4586928 +0.5370079 0.2686816 0.4586928 +0.5453253 0.2686816 0.4586928 +0.5533834 0.2686816 0.4586928 +0.5611974 0.2686816 0.4586928 +0.5687816 0.2686816 0.4586928 +0.092819 0.2902431 0.4586928 +0.1056428 0.2902431 0.4586928 +0.1201537 0.2902431 0.4586928 +0.1409607 0.2902431 0.4586928 +0.1678172 0.2902431 0.4586928 +0.1950164 0.2902431 0.4586928 +0.2210581 0.2902431 0.4586928 +0.245636 0.2902431 0.4586928 +0.2686816 0.2902431 0.4586928 +0.2902431 0.2902431 0.4586928 +0.3104189 0.2902431 0.4586928 +0.3293248 0.2902431 0.4586928 +0.3470774 0.2902431 0.4586928 +0.3637862 0.2902431 0.4586928 +0.3795513 0.2902431 0.4586928 +0.3944623 0.2902431 0.4586928 +0.4085988 0.2902431 0.4586928 +0.4220313 0.2902431 0.4586928 +0.4348222 0.2902431 0.4586928 +0.4470264 0.2902431 0.4586928 +0.4586928 0.2902431 0.4586928 +0.4698649 0.2902431 0.4586928 +0.4805811 0.2902431 0.4586928 +0.490876 0.2902431 0.4586928 +0.5007803 0.2902431 0.4586928 +0.510322 0.2902431 0.4586928 +0.5195258 0.2902431 0.4586928 +0.5284142 0.2902431 0.4586928 +0.5370079 0.2902431 0.4586928 +0.5453253 0.2902431 0.4586928 +0.5533834 0.2902431 0.4586928 +0.5611974 0.2902431 0.4586928 +0.5687816 0.2902431 0.4586928 +0.092819 0.3104189 0.4586928 +0.1056428 0.3104189 0.4586928 +0.1201537 0.3104189 0.4586928 +0.1409607 0.3104189 0.4586928 +0.1678172 0.3104189 0.4586928 +0.1950164 0.3104189 0.4586928 +0.2210581 0.3104189 0.4586928 +0.245636 0.3104189 0.4586928 +0.2686816 0.3104189 0.4586928 +0.2902431 0.3104189 0.4586928 +0.3104189 0.3104189 0.4586928 +0.3293248 0.3104189 0.4586928 +0.3470774 0.3104189 0.4586928 +0.3637862 0.3104189 0.4586928 +0.3795513 0.3104189 0.4586928 +0.3944623 0.3104189 0.4586928 +0.4085988 0.3104189 0.4586928 +0.4220313 0.3104189 0.4586928 +0.4348222 0.3104189 0.4586928 +0.4470264 0.3104189 0.4586928 +0.4586928 0.3104189 0.4586928 +0.4698649 0.3104189 0.4586928 +0.4805811 0.3104189 0.4586928 +0.490876 0.3104189 0.4586928 +0.5007803 0.3104189 0.4586928 +0.510322 0.3104189 0.4586928 +0.5195258 0.3104189 0.4586928 +0.5284142 0.3104189 0.4586928 +0.5370079 0.3104189 0.4586928 +0.5453253 0.3104189 0.4586928 +0.5533834 0.3104189 0.4586928 +0.5611974 0.3104189 0.4586928 +0.5687816 0.3104189 0.4586928 +0.092819 0.3293248 0.4586928 +0.1056428 0.3293248 0.4586928 +0.1201537 0.3293248 0.4586928 +0.1409607 0.3293248 0.4586928 +0.1678172 0.3293248 0.4586928 +0.1950164 0.3293248 0.4586928 +0.2210581 0.3293248 0.4586928 +0.245636 0.3293248 0.4586928 +0.2686816 0.3293248 0.4586928 +0.2902431 0.3293248 0.4586928 +0.3104189 0.3293248 0.4586928 +0.3293248 0.3293248 0.4586928 +0.3470774 0.3293248 0.4586928 +0.3637862 0.3293248 0.4586928 +0.3795513 0.3293248 0.4586928 +0.3944623 0.3293248 0.4586928 +0.4085988 0.3293248 0.4586928 +0.4220313 0.3293248 0.4586928 +0.4348222 0.3293248 0.4586928 +0.4470264 0.3293248 0.4586928 +0.4586928 0.3293248 0.4586928 +0.4698649 0.3293248 0.4586928 +0.4805811 0.3293248 0.4586928 +0.490876 0.3293248 0.4586928 +0.5007803 0.3293248 0.4586928 +0.510322 0.3293248 0.4586928 +0.5195258 0.3293248 0.4586928 +0.5284142 0.3293248 0.4586928 +0.5370079 0.3293248 0.4586928 +0.5453253 0.3293248 0.4586928 +0.5533834 0.3293248 0.4586928 +0.5611974 0.3293248 0.4586928 +0.5687816 0.3293248 0.4586928 +0.092819 0.3470774 0.4586928 +0.1056428 0.3470774 0.4586928 +0.1201537 0.3470774 0.4586928 +0.1409607 0.3470774 0.4586928 +0.1678172 0.3470774 0.4586928 +0.1950164 0.3470774 0.4586928 +0.2210581 0.3470774 0.4586928 +0.245636 0.3470774 0.4586928 +0.2686816 0.3470774 0.4586928 +0.2902431 0.3470774 0.4586928 +0.3104189 0.3470774 0.4586928 +0.3293248 0.3470774 0.4586928 +0.3470774 0.3470774 0.4586928 +0.3637862 0.3470774 0.4586928 +0.3795513 0.3470774 0.4586928 +0.3944623 0.3470774 0.4586928 +0.4085988 0.3470774 0.4586928 +0.4220313 0.3470774 0.4586928 +0.4348222 0.3470774 0.4586928 +0.4470264 0.3470774 0.4586928 +0.4586928 0.3470774 0.4586928 +0.4698649 0.3470774 0.4586928 +0.4805811 0.3470774 0.4586928 +0.490876 0.3470774 0.4586928 +0.5007803 0.3470774 0.4586928 +0.510322 0.3470774 0.4586928 +0.5195258 0.3470774 0.4586928 +0.5284142 0.3470774 0.4586928 +0.5370079 0.3470774 0.4586928 +0.5453253 0.3470774 0.4586928 +0.5533834 0.3470774 0.4586928 +0.5611974 0.3470774 0.4586928 +0.5687816 0.3470774 0.4586928 +0.092819 0.3637862 0.4586928 +0.1056428 0.3637862 0.4586928 +0.1201537 0.3637862 0.4586928 +0.1409607 0.3637862 0.4586928 +0.1678172 0.3637862 0.4586928 +0.1950164 0.3637862 0.4586928 +0.2210581 0.3637862 0.4586928 +0.245636 0.3637862 0.4586928 +0.2686816 0.3637862 0.4586928 +0.2902431 0.3637862 0.4586928 +0.3104189 0.3637862 0.4586928 +0.3293248 0.3637862 0.4586928 +0.3470774 0.3637862 0.4586928 +0.3637862 0.3637862 0.4586928 +0.3795513 0.3637862 0.4586928 +0.3944623 0.3637862 0.4586928 +0.4085988 0.3637862 0.4586928 +0.4220313 0.3637862 0.4586928 +0.4348222 0.3637862 0.4586928 +0.4470264 0.3637862 0.4586928 +0.4586928 0.3637862 0.4586928 +0.4698649 0.3637862 0.4586928 +0.4805811 0.3637862 0.4586928 +0.490876 0.3637862 0.4586928 +0.5007803 0.3637862 0.4586928 +0.510322 0.3637862 0.4586928 +0.5195258 0.3637862 0.4586928 +0.5284142 0.3637862 0.4586928 +0.5370079 0.3637862 0.4586928 +0.5453253 0.3637862 0.4586928 +0.5533834 0.3637862 0.4586928 +0.5611974 0.3637862 0.4586928 +0.5687816 0.3637862 0.4586928 +0.092819 0.3795513 0.4586928 +0.1056428 0.3795513 0.4586928 +0.1201537 0.3795513 0.4586928 +0.1409607 0.3795513 0.4586928 +0.1678172 0.3795513 0.4586928 +0.1950164 0.3795513 0.4586928 +0.2210581 0.3795513 0.4586928 +0.245636 0.3795513 0.4586928 +0.2686816 0.3795513 0.4586928 +0.2902431 0.3795513 0.4586928 +0.3104189 0.3795513 0.4586928 +0.3293248 0.3795513 0.4586928 +0.3470774 0.3795513 0.4586928 +0.3637862 0.3795513 0.4586928 +0.3795513 0.3795513 0.4586928 +0.3944623 0.3795513 0.4586928 +0.4085988 0.3795513 0.4586928 +0.4220313 0.3795513 0.4586928 +0.4348222 0.3795513 0.4586928 +0.4470264 0.3795513 0.4586928 +0.4586928 0.3795513 0.4586928 +0.4698649 0.3795513 0.4586928 +0.4805811 0.3795513 0.4586928 +0.490876 0.3795513 0.4586928 +0.5007803 0.3795513 0.4586928 +0.510322 0.3795513 0.4586928 +0.5195258 0.3795513 0.4586928 +0.5284142 0.3795513 0.4586928 +0.5370079 0.3795513 0.4586928 +0.5453253 0.3795513 0.4586928 +0.5533834 0.3795513 0.4586928 +0.5611974 0.3795513 0.4586928 +0.5687816 0.3795513 0.4586928 +0.092819 0.3944623 0.4586928 +0.1056428 0.3944623 0.4586928 +0.1201537 0.3944623 0.4586928 +0.1409607 0.3944623 0.4586928 +0.1678172 0.3944623 0.4586928 +0.1950164 0.3944623 0.4586928 +0.2210581 0.3944623 0.4586928 +0.245636 0.3944623 0.4586928 +0.2686816 0.3944623 0.4586928 +0.2902431 0.3944623 0.4586928 +0.3104189 0.3944623 0.4586928 +0.3293248 0.3944623 0.4586928 +0.3470774 0.3944623 0.4586928 +0.3637862 0.3944623 0.4586928 +0.3795513 0.3944623 0.4586928 +0.3944623 0.3944623 0.4586928 +0.4085988 0.3944623 0.4586928 +0.4220313 0.3944623 0.4586928 +0.4348222 0.3944623 0.4586928 +0.4470264 0.3944623 0.4586928 +0.4586928 0.3944623 0.4586928 +0.4698649 0.3944623 0.4586928 +0.4805811 0.3944623 0.4586928 +0.490876 0.3944623 0.4586928 +0.5007803 0.3944623 0.4586928 +0.510322 0.3944623 0.4586928 +0.5195258 0.3944623 0.4586928 +0.5284142 0.3944623 0.4586928 +0.5370079 0.3944623 0.4586928 +0.5453253 0.3944623 0.4586928 +0.5533834 0.3944623 0.4586928 +0.5611974 0.3944623 0.4586928 +0.5687816 0.3944623 0.4586928 +0.092819 0.4085988 0.4586928 +0.1056428 0.4085988 0.4586928 +0.1201537 0.4085988 0.4586928 +0.1409607 0.4085988 0.4586928 +0.1678172 0.4085988 0.4586928 +0.1950164 0.4085988 0.4586928 +0.2210581 0.4085988 0.4586928 +0.245636 0.4085988 0.4586928 +0.2686816 0.4085988 0.4586928 +0.2902431 0.4085988 0.4586928 +0.3104189 0.4085988 0.4586928 +0.3293248 0.4085988 0.4586928 +0.3470774 0.4085988 0.4586928 +0.3637862 0.4085988 0.4586928 +0.3795513 0.4085988 0.4586928 +0.3944623 0.4085988 0.4586928 +0.4085988 0.4085988 0.4586928 +0.4220313 0.4085988 0.4586928 +0.4348222 0.4085988 0.4586928 +0.4470264 0.4085988 0.4586928 +0.4586928 0.4085988 0.4586928 +0.4698649 0.4085988 0.4586928 +0.4805811 0.4085988 0.4586928 +0.490876 0.4085988 0.4586928 +0.5007803 0.4085988 0.4586928 +0.510322 0.4085988 0.4586928 +0.5195258 0.4085988 0.4586928 +0.5284142 0.4085988 0.4586928 +0.5370079 0.4085988 0.4586928 +0.5453253 0.4085988 0.4586928 +0.5533834 0.4085988 0.4586928 +0.5611974 0.4085988 0.4586928 +0.5687816 0.4085988 0.4586928 +0.092819 0.4220313 0.4586928 +0.1056428 0.4220313 0.4586928 +0.1201537 0.4220313 0.4586928 +0.1409607 0.4220313 0.4586928 +0.1678172 0.4220313 0.4586928 +0.1950164 0.4220313 0.4586928 +0.2210581 0.4220313 0.4586928 +0.245636 0.4220313 0.4586928 +0.2686816 0.4220313 0.4586928 +0.2902431 0.4220313 0.4586928 +0.3104189 0.4220313 0.4586928 +0.3293248 0.4220313 0.4586928 +0.3470774 0.4220313 0.4586928 +0.3637862 0.4220313 0.4586928 +0.3795513 0.4220313 0.4586928 +0.3944623 0.4220313 0.4586928 +0.4085988 0.4220313 0.4586928 +0.4220313 0.4220313 0.4586928 +0.4348222 0.4220313 0.4586928 +0.4470264 0.4220313 0.4586928 +0.4586928 0.4220313 0.4586928 +0.4698649 0.4220313 0.4586928 +0.4805811 0.4220313 0.4586928 +0.490876 0.4220313 0.4586928 +0.5007803 0.4220313 0.4586928 +0.510322 0.4220313 0.4586928 +0.5195258 0.4220313 0.4586928 +0.5284142 0.4220313 0.4586928 +0.5370079 0.4220313 0.4586928 +0.5453253 0.4220313 0.4586928 +0.5533834 0.4220313 0.4586928 +0.5611974 0.4220313 0.4586928 +0.5687816 0.4220313 0.4586928 +0.092819 0.4348222 0.4586928 +0.1056428 0.4348222 0.4586928 +0.1201537 0.4348222 0.4586928 +0.1409607 0.4348222 0.4586928 +0.1678172 0.4348222 0.4586928 +0.1950164 0.4348222 0.4586928 +0.2210581 0.4348222 0.4586928 +0.245636 0.4348222 0.4586928 +0.2686816 0.4348222 0.4586928 +0.2902431 0.4348222 0.4586928 +0.3104189 0.4348222 0.4586928 +0.3293248 0.4348222 0.4586928 +0.3470774 0.4348222 0.4586928 +0.3637862 0.4348222 0.4586928 +0.3795513 0.4348222 0.4586928 +0.3944623 0.4348222 0.4586928 +0.4085988 0.4348222 0.4586928 +0.4220313 0.4348222 0.4586928 +0.4348222 0.4348222 0.4586928 +0.4470264 0.4348222 0.4586928 +0.4586928 0.4348222 0.4586928 +0.4698649 0.4348222 0.4586928 +0.4805811 0.4348222 0.4586928 +0.490876 0.4348222 0.4586928 +0.5007803 0.4348222 0.4586928 +0.510322 0.4348222 0.4586928 +0.5195258 0.4348222 0.4586928 +0.5284142 0.4348222 0.4586928 +0.5370079 0.4348222 0.4586928 +0.5453253 0.4348222 0.4586928 +0.5533834 0.4348222 0.4586928 +0.5611974 0.4348222 0.4586928 +0.5687816 0.4348222 0.4586928 +0.092819 0.4470264 0.4586928 +0.1056428 0.4470264 0.4586928 +0.1201537 0.4470264 0.4586928 +0.1409607 0.4470264 0.4586928 +0.1678172 0.4470264 0.4586928 +0.1950164 0.4470264 0.4586928 +0.2210581 0.4470264 0.4586928 +0.245636 0.4470264 0.4586928 +0.2686816 0.4470264 0.4586928 +0.2902431 0.4470264 0.4586928 +0.3104189 0.4470264 0.4586928 +0.3293248 0.4470264 0.4586928 +0.3470774 0.4470264 0.4586928 +0.3637862 0.4470264 0.4586928 +0.3795513 0.4470264 0.4586928 +0.3944623 0.4470264 0.4586928 +0.4085988 0.4470264 0.4586928 +0.4220313 0.4470264 0.4586928 +0.4348222 0.4470264 0.4586928 +0.4470264 0.4470264 0.4586928 +0.4586928 0.4470264 0.4586928 +0.4698649 0.4470264 0.4586928 +0.4805811 0.4470264 0.4586928 +0.490876 0.4470264 0.4586928 +0.5007803 0.4470264 0.4586928 +0.510322 0.4470264 0.4586928 +0.5195258 0.4470264 0.4586928 +0.5284142 0.4470264 0.4586928 +0.5370079 0.4470264 0.4586928 +0.5453253 0.4470264 0.4586928 +0.5533834 0.4470264 0.4586928 +0.5611974 0.4470264 0.4586928 +0.5687816 0.4470264 0.4586928 +0.092819 0.4586928 0.4586928 +0.1056428 0.4586928 0.4586928 +0.1201537 0.4586928 0.4586928 +0.1409607 0.4586928 0.4586928 +0.1678172 0.4586928 0.4586928 +0.1950164 0.4586928 0.4586928 +0.2210581 0.4586928 0.4586928 +0.245636 0.4586928 0.4586928 +0.2686816 0.4586928 0.4586928 +0.2902431 0.4586928 0.4586928 +0.3104189 0.4586928 0.4586928 +0.3293248 0.4586928 0.4586928 +0.3470774 0.4586928 0.4586928 +0.3637862 0.4586928 0.4586928 +0.3795513 0.4586928 0.4586928 +0.3944623 0.4586928 0.4586928 +0.4085988 0.4586928 0.4586928 +0.4220313 0.4586928 0.4586928 +0.4348222 0.4586928 0.4586928 +0.4470264 0.4586928 0.4586928 +0.4586928 0.4586928 0.4586928 +0.4698649 0.4586928 0.4586928 +0.4805811 0.4586928 0.4586928 +0.490876 0.4586928 0.4586928 +0.5007803 0.4586928 0.4586928 +0.510322 0.4586928 0.4586928 +0.5195258 0.4586928 0.4586928 +0.5284142 0.4586928 0.4586928 +0.5370079 0.4586928 0.4586928 +0.5453253 0.4586928 0.4586928 +0.5533834 0.4586928 0.4586928 +0.5611974 0.4586928 0.4586928 +0.5687816 0.4586928 0.4586928 +0.092819 0.4698649 0.4586928 +0.1056428 0.4698649 0.4586928 +0.1201537 0.4698649 0.4586928 +0.1409607 0.4698649 0.4586928 +0.1678172 0.4698649 0.4586928 +0.1950164 0.4698649 0.4586928 +0.2210581 0.4698649 0.4586928 +0.245636 0.4698649 0.4586928 +0.2686816 0.4698649 0.4586928 +0.2902431 0.4698649 0.4586928 +0.3104189 0.4698649 0.4586928 +0.3293248 0.4698649 0.4586928 +0.3470774 0.4698649 0.4586928 +0.3637862 0.4698649 0.4586928 +0.3795513 0.4698649 0.4586928 +0.3944623 0.4698649 0.4586928 +0.4085988 0.4698649 0.4586928 +0.4220313 0.4698649 0.4586928 +0.4348222 0.4698649 0.4586928 +0.4470264 0.4698649 0.4586928 +0.4586928 0.4698649 0.4586928 +0.4698649 0.4698649 0.4586928 +0.4805811 0.4698649 0.4586928 +0.490876 0.4698649 0.4586928 +0.5007803 0.4698649 0.4586928 +0.510322 0.4698649 0.4586928 +0.5195258 0.4698649 0.4586928 +0.5284142 0.4698649 0.4586928 +0.5370079 0.4698649 0.4586928 +0.5453253 0.4698649 0.4586928 +0.5533834 0.4698649 0.4586928 +0.5611974 0.4698649 0.4586928 +0.5687816 0.4698649 0.4586928 +0.092819 0.4805811 0.4586928 +0.1056428 0.4805811 0.4586928 +0.1201537 0.4805811 0.4586928 +0.1409607 0.4805811 0.4586928 +0.1678172 0.4805811 0.4586928 +0.1950164 0.4805811 0.4586928 +0.2210581 0.4805811 0.4586928 +0.245636 0.4805811 0.4586928 +0.2686816 0.4805811 0.4586928 +0.2902431 0.4805811 0.4586928 +0.3104189 0.4805811 0.4586928 +0.3293248 0.4805811 0.4586928 +0.3470774 0.4805811 0.4586928 +0.3637862 0.4805811 0.4586928 +0.3795513 0.4805811 0.4586928 +0.3944623 0.4805811 0.4586928 +0.4085988 0.4805811 0.4586928 +0.4220313 0.4805811 0.4586928 +0.4348222 0.4805811 0.4586928 +0.4470264 0.4805811 0.4586928 +0.4586928 0.4805811 0.4586928 +0.4698649 0.4805811 0.4586928 +0.4805811 0.4805811 0.4586928 +0.490876 0.4805811 0.4586928 +0.5007803 0.4805811 0.4586928 +0.510322 0.4805811 0.4586928 +0.5195258 0.4805811 0.4586928 +0.5284142 0.4805811 0.4586928 +0.5370079 0.4805811 0.4586928 +0.5453253 0.4805811 0.4586928 +0.5533834 0.4805811 0.4586928 +0.5611974 0.4805811 0.4586928 +0.5687816 0.4805811 0.4586928 +0.092819 0.490876 0.4586928 +0.1056428 0.490876 0.4586928 +0.1201537 0.490876 0.4586928 +0.1409607 0.490876 0.4586928 +0.1678172 0.490876 0.4586928 +0.1950164 0.490876 0.4586928 +0.2210581 0.490876 0.4586928 +0.245636 0.490876 0.4586928 +0.2686816 0.490876 0.4586928 +0.2902431 0.490876 0.4586928 +0.3104189 0.490876 0.4586928 +0.3293248 0.490876 0.4586928 +0.3470774 0.490876 0.4586928 +0.3637862 0.490876 0.4586928 +0.3795513 0.490876 0.4586928 +0.3944623 0.490876 0.4586928 +0.4085988 0.490876 0.4586928 +0.4220313 0.490876 0.4586928 +0.4348222 0.490876 0.4586928 +0.4470264 0.490876 0.4586928 +0.4586928 0.490876 0.4586928 +0.4698649 0.490876 0.4586928 +0.4805811 0.490876 0.4586928 +0.490876 0.490876 0.4586928 +0.5007803 0.490876 0.4586928 +0.510322 0.490876 0.4586928 +0.5195258 0.490876 0.4586928 +0.5284142 0.490876 0.4586928 +0.5370079 0.490876 0.4586928 +0.5453253 0.490876 0.4586928 +0.5533834 0.490876 0.4586928 +0.5611974 0.490876 0.4586928 +0.5687816 0.490876 0.4586928 +0.092819 0.5007803 0.4586928 +0.1056428 0.5007803 0.4586928 +0.1201537 0.5007803 0.4586928 +0.1409607 0.5007803 0.4586928 +0.1678172 0.5007803 0.4586928 +0.1950164 0.5007803 0.4586928 +0.2210581 0.5007803 0.4586928 +0.245636 0.5007803 0.4586928 +0.2686816 0.5007803 0.4586928 +0.2902431 0.5007803 0.4586928 +0.3104189 0.5007803 0.4586928 +0.3293248 0.5007803 0.4586928 +0.3470774 0.5007803 0.4586928 +0.3637862 0.5007803 0.4586928 +0.3795513 0.5007803 0.4586928 +0.3944623 0.5007803 0.4586928 +0.4085988 0.5007803 0.4586928 +0.4220313 0.5007803 0.4586928 +0.4348222 0.5007803 0.4586928 +0.4470264 0.5007803 0.4586928 +0.4586928 0.5007803 0.4586928 +0.4698649 0.5007803 0.4586928 +0.4805811 0.5007803 0.4586928 +0.490876 0.5007803 0.4586928 +0.5007803 0.5007803 0.4586928 +0.510322 0.5007803 0.4586928 +0.5195258 0.5007803 0.4586928 +0.5284142 0.5007803 0.4586928 +0.5370079 0.5007803 0.4586928 +0.5453253 0.5007803 0.4586928 +0.5533834 0.5007803 0.4586928 +0.5611974 0.5007803 0.4586928 +0.5687816 0.5007803 0.4586928 +0.092819 0.510322 0.4586928 +0.1056428 0.510322 0.4586928 +0.1201537 0.510322 0.4586928 +0.1409607 0.510322 0.4586928 +0.1678172 0.510322 0.4586928 +0.1950164 0.510322 0.4586928 +0.2210581 0.510322 0.4586928 +0.245636 0.510322 0.4586928 +0.2686816 0.510322 0.4586928 +0.2902431 0.510322 0.4586928 +0.3104189 0.510322 0.4586928 +0.3293248 0.510322 0.4586928 +0.3470774 0.510322 0.4586928 +0.3637862 0.510322 0.4586928 +0.3795513 0.510322 0.4586928 +0.3944623 0.510322 0.4586928 +0.4085988 0.510322 0.4586928 +0.4220313 0.510322 0.4586928 +0.4348222 0.510322 0.4586928 +0.4470264 0.510322 0.4586928 +0.4586928 0.510322 0.4586928 +0.4698649 0.510322 0.4586928 +0.4805811 0.510322 0.4586928 +0.490876 0.510322 0.4586928 +0.5007803 0.510322 0.4586928 +0.510322 0.510322 0.4586928 +0.5195258 0.510322 0.4586928 +0.5284142 0.510322 0.4586928 +0.5370079 0.510322 0.4586928 +0.5453253 0.510322 0.4586928 +0.5533834 0.510322 0.4586928 +0.5611974 0.510322 0.4586928 +0.5687816 0.510322 0.4586928 +0.092819 0.5195258 0.4586928 +0.1056428 0.5195258 0.4586928 +0.1201537 0.5195258 0.4586928 +0.1409607 0.5195258 0.4586928 +0.1678172 0.5195258 0.4586928 +0.1950164 0.5195258 0.4586928 +0.2210581 0.5195258 0.4586928 +0.245636 0.5195258 0.4586928 +0.2686816 0.5195258 0.4586928 +0.2902431 0.5195258 0.4586928 +0.3104189 0.5195258 0.4586928 +0.3293248 0.5195258 0.4586928 +0.3470774 0.5195258 0.4586928 +0.3637862 0.5195258 0.4586928 +0.3795513 0.5195258 0.4586928 +0.3944623 0.5195258 0.4586928 +0.4085988 0.5195258 0.4586928 +0.4220313 0.5195258 0.4586928 +0.4348222 0.5195258 0.4586928 +0.4470264 0.5195258 0.4586928 +0.4586928 0.5195258 0.4586928 +0.4698649 0.5195258 0.4586928 +0.4805811 0.5195258 0.4586928 +0.490876 0.5195258 0.4586928 +0.5007803 0.5195258 0.4586928 +0.510322 0.5195258 0.4586928 +0.5195258 0.5195258 0.4586928 +0.5284142 0.5195258 0.4586928 +0.5370079 0.5195258 0.4586928 +0.5453253 0.5195258 0.4586928 +0.5533834 0.5195258 0.4586928 +0.5611974 0.5195258 0.4586928 +0.5687816 0.5195258 0.4586928 +0.092819 0.5284142 0.4586928 +0.1056428 0.5284142 0.4586928 +0.1201537 0.5284142 0.4586928 +0.1409607 0.5284142 0.4586928 +0.1678172 0.5284142 0.4586928 +0.1950164 0.5284142 0.4586928 +0.2210581 0.5284142 0.4586928 +0.245636 0.5284142 0.4586928 +0.2686816 0.5284142 0.4586928 +0.2902431 0.5284142 0.4586928 +0.3104189 0.5284142 0.4586928 +0.3293248 0.5284142 0.4586928 +0.3470774 0.5284142 0.4586928 +0.3637862 0.5284142 0.4586928 +0.3795513 0.5284142 0.4586928 +0.3944623 0.5284142 0.4586928 +0.4085988 0.5284142 0.4586928 +0.4220313 0.5284142 0.4586928 +0.4348222 0.5284142 0.4586928 +0.4470264 0.5284142 0.4586928 +0.4586928 0.5284142 0.4586928 +0.4698649 0.5284142 0.4586928 +0.4805811 0.5284142 0.4586928 +0.490876 0.5284142 0.4586928 +0.5007803 0.5284142 0.4586928 +0.510322 0.5284142 0.4586928 +0.5195258 0.5284142 0.4586928 +0.5284142 0.5284142 0.4586928 +0.5370079 0.5284142 0.4586928 +0.5453253 0.5284142 0.4586928 +0.5533834 0.5284142 0.4586928 +0.5611974 0.5284142 0.4586928 +0.5687816 0.5284142 0.4586928 +0.092819 0.5370079 0.4586928 +0.1056428 0.5370079 0.4586928 +0.1201537 0.5370079 0.4586928 +0.1409607 0.5370079 0.4586928 +0.1678172 0.5370079 0.4586928 +0.1950164 0.5370079 0.4586928 +0.2210581 0.5370079 0.4586928 +0.245636 0.5370079 0.4586928 +0.2686816 0.5370079 0.4586928 +0.2902431 0.5370079 0.4586928 +0.3104189 0.5370079 0.4586928 +0.3293248 0.5370079 0.4586928 +0.3470774 0.5370079 0.4586928 +0.3637862 0.5370079 0.4586928 +0.3795513 0.5370079 0.4586928 +0.3944623 0.5370079 0.4586928 +0.4085988 0.5370079 0.4586928 +0.4220313 0.5370079 0.4586928 +0.4348222 0.5370079 0.4586928 +0.4470264 0.5370079 0.4586928 +0.4586928 0.5370079 0.4586928 +0.4698649 0.5370079 0.4586928 +0.4805811 0.5370079 0.4586928 +0.490876 0.5370079 0.4586928 +0.5007803 0.5370079 0.4586928 +0.510322 0.5370079 0.4586928 +0.5195258 0.5370079 0.4586928 +0.5284142 0.5370079 0.4586928 +0.5370079 0.5370079 0.4586928 +0.5453253 0.5370079 0.4586928 +0.5533834 0.5370079 0.4586928 +0.5611974 0.5370079 0.4586928 +0.5687816 0.5370079 0.4586928 +0.092819 0.5453253 0.4586928 +0.1056428 0.5453253 0.4586928 +0.1201537 0.5453253 0.4586928 +0.1409607 0.5453253 0.4586928 +0.1678172 0.5453253 0.4586928 +0.1950164 0.5453253 0.4586928 +0.2210581 0.5453253 0.4586928 +0.245636 0.5453253 0.4586928 +0.2686816 0.5453253 0.4586928 +0.2902431 0.5453253 0.4586928 +0.3104189 0.5453253 0.4586928 +0.3293248 0.5453253 0.4586928 +0.3470774 0.5453253 0.4586928 +0.3637862 0.5453253 0.4586928 +0.3795513 0.5453253 0.4586928 +0.3944623 0.5453253 0.4586928 +0.4085988 0.5453253 0.4586928 +0.4220313 0.5453253 0.4586928 +0.4348222 0.5453253 0.4586928 +0.4470264 0.5453253 0.4586928 +0.4586928 0.5453253 0.4586928 +0.4698649 0.5453253 0.4586928 +0.4805811 0.5453253 0.4586928 +0.490876 0.5453253 0.4586928 +0.5007803 0.5453253 0.4586928 +0.510322 0.5453253 0.4586928 +0.5195258 0.5453253 0.4586928 +0.5284142 0.5453253 0.4586928 +0.5370079 0.5453253 0.4586928 +0.5453253 0.5453253 0.4586928 +0.5533834 0.5453253 0.4586928 +0.5611974 0.5453253 0.4586928 +0.5687816 0.5453253 0.4586928 +0.092819 0.5533834 0.4586928 +0.1056428 0.5533834 0.4586928 +0.1201537 0.5533834 0.4586928 +0.1409607 0.5533834 0.4586928 +0.1678172 0.5533834 0.4586928 +0.1950164 0.5533834 0.4586928 +0.2210581 0.5533834 0.4586928 +0.245636 0.5533834 0.4586928 +0.2686816 0.5533834 0.4586928 +0.2902431 0.5533834 0.4586928 +0.3104189 0.5533834 0.4586928 +0.3293248 0.5533834 0.4586928 +0.3470774 0.5533834 0.4586928 +0.3637862 0.5533834 0.4586928 +0.3795513 0.5533834 0.4586928 +0.3944623 0.5533834 0.4586928 +0.4085988 0.5533834 0.4586928 +0.4220313 0.5533834 0.4586928 +0.4348222 0.5533834 0.4586928 +0.4470264 0.5533834 0.4586928 +0.4586928 0.5533834 0.4586928 +0.4698649 0.5533834 0.4586928 +0.4805811 0.5533834 0.4586928 +0.490876 0.5533834 0.4586928 +0.5007803 0.5533834 0.4586928 +0.510322 0.5533834 0.4586928 +0.5195258 0.5533834 0.4586928 +0.5284142 0.5533834 0.4586928 +0.5370079 0.5533834 0.4586928 +0.5453253 0.5533834 0.4586928 +0.5533834 0.5533834 0.4586928 +0.5611974 0.5533834 0.4586928 +0.5687816 0.5533834 0.4586928 +0.092819 0.5611974 0.4586928 +0.1056428 0.5611974 0.4586928 +0.1201537 0.5611974 0.4586928 +0.1409607 0.5611974 0.4586928 +0.1678172 0.5611974 0.4586928 +0.1950164 0.5611974 0.4586928 +0.2210581 0.5611974 0.4586928 +0.245636 0.5611974 0.4586928 +0.2686816 0.5611974 0.4586928 +0.2902431 0.5611974 0.4586928 +0.3104189 0.5611974 0.4586928 +0.3293248 0.5611974 0.4586928 +0.3470774 0.5611974 0.4586928 +0.3637862 0.5611974 0.4586928 +0.3795513 0.5611974 0.4586928 +0.3944623 0.5611974 0.4586928 +0.4085988 0.5611974 0.4586928 +0.4220313 0.5611974 0.4586928 +0.4348222 0.5611974 0.4586928 +0.4470264 0.5611974 0.4586928 +0.4586928 0.5611974 0.4586928 +0.4698649 0.5611974 0.4586928 +0.4805811 0.5611974 0.4586928 +0.490876 0.5611974 0.4586928 +0.5007803 0.5611974 0.4586928 +0.510322 0.5611974 0.4586928 +0.5195258 0.5611974 0.4586928 +0.5284142 0.5611974 0.4586928 +0.5370079 0.5611974 0.4586928 +0.5453253 0.5611974 0.4586928 +0.5533834 0.5611974 0.4586928 +0.5611974 0.5611974 0.4586928 +0.5687816 0.5611974 0.4586928 +0.092819 0.5687816 0.4586928 +0.1056428 0.5687816 0.4586928 +0.1201537 0.5687816 0.4586928 +0.1409607 0.5687816 0.4586928 +0.1678172 0.5687816 0.4586928 +0.1950164 0.5687816 0.4586928 +0.2210581 0.5687816 0.4586928 +0.245636 0.5687816 0.4586928 +0.2686816 0.5687816 0.4586928 +0.2902431 0.5687816 0.4586928 +0.3104189 0.5687816 0.4586928 +0.3293248 0.5687816 0.4586928 +0.3470774 0.5687816 0.4586928 +0.3637862 0.5687816 0.4586928 +0.3795513 0.5687816 0.4586928 +0.3944623 0.5687816 0.4586928 +0.4085988 0.5687816 0.4586928 +0.4220313 0.5687816 0.4586928 +0.4348222 0.5687816 0.4586928 +0.4470264 0.5687816 0.4586928 +0.4586928 0.5687816 0.4586928 +0.4698649 0.5687816 0.4586928 +0.4805811 0.5687816 0.4586928 +0.490876 0.5687816 0.4586928 +0.5007803 0.5687816 0.4586928 +0.510322 0.5687816 0.4586928 +0.5195258 0.5687816 0.4586928 +0.5284142 0.5687816 0.4586928 +0.5370079 0.5687816 0.4586928 +0.5453253 0.5687816 0.4586928 +0.5533834 0.5687816 0.4586928 +0.5611974 0.5687816 0.4586928 +0.5687816 0.5687816 0.4586928 +0.092819 0.092819 0.4698649 +0.1056428 0.092819 0.4698649 +0.1201537 0.092819 0.4698649 +0.1409607 0.092819 0.4698649 +0.1678172 0.092819 0.4698649 +0.1950164 0.092819 0.4698649 +0.2210581 0.092819 0.4698649 +0.245636 0.092819 0.4698649 +0.2686816 0.092819 0.4698649 +0.2902431 0.092819 0.4698649 +0.3104189 0.092819 0.4698649 +0.3293248 0.092819 0.4698649 +0.3470774 0.092819 0.4698649 +0.3637862 0.092819 0.4698649 +0.3795513 0.092819 0.4698649 +0.3944623 0.092819 0.4698649 +0.4085988 0.092819 0.4698649 +0.4220313 0.092819 0.4698649 +0.4348222 0.092819 0.4698649 +0.4470264 0.092819 0.4698649 +0.4586928 0.092819 0.4698649 +0.4698649 0.092819 0.4698649 +0.4805811 0.092819 0.4698649 +0.490876 0.092819 0.4698649 +0.5007803 0.092819 0.4698649 +0.510322 0.092819 0.4698649 +0.5195258 0.092819 0.4698649 +0.5284142 0.092819 0.4698649 +0.5370079 0.092819 0.4698649 +0.5453253 0.092819 0.4698649 +0.5533834 0.092819 0.4698649 +0.5611974 0.092819 0.4698649 +0.5687816 0.092819 0.4698649 +0.092819 0.1056428 0.4698649 +0.1056428 0.1056428 0.4698649 +0.1201537 0.1056428 0.4698649 +0.1409607 0.1056428 0.4698649 +0.1678172 0.1056428 0.4698649 +0.1950164 0.1056428 0.4698649 +0.2210581 0.1056428 0.4698649 +0.245636 0.1056428 0.4698649 +0.2686816 0.1056428 0.4698649 +0.2902431 0.1056428 0.4698649 +0.3104189 0.1056428 0.4698649 +0.3293248 0.1056428 0.4698649 +0.3470774 0.1056428 0.4698649 +0.3637862 0.1056428 0.4698649 +0.3795513 0.1056428 0.4698649 +0.3944623 0.1056428 0.4698649 +0.4085988 0.1056428 0.4698649 +0.4220313 0.1056428 0.4698649 +0.4348222 0.1056428 0.4698649 +0.4470264 0.1056428 0.4698649 +0.4586928 0.1056428 0.4698649 +0.4698649 0.1056428 0.4698649 +0.4805811 0.1056428 0.4698649 +0.490876 0.1056428 0.4698649 +0.5007803 0.1056428 0.4698649 +0.510322 0.1056428 0.4698649 +0.5195258 0.1056428 0.4698649 +0.5284142 0.1056428 0.4698649 +0.5370079 0.1056428 0.4698649 +0.5453253 0.1056428 0.4698649 +0.5533834 0.1056428 0.4698649 +0.5611974 0.1056428 0.4698649 +0.5687816 0.1056428 0.4698649 +0.092819 0.1201537 0.4698649 +0.1056428 0.1201537 0.4698649 +0.1201537 0.1201537 0.4698649 +0.1409607 0.1201537 0.4698649 +0.1678172 0.1201537 0.4698649 +0.1950164 0.1201537 0.4698649 +0.2210581 0.1201537 0.4698649 +0.245636 0.1201537 0.4698649 +0.2686816 0.1201537 0.4698649 +0.2902431 0.1201537 0.4698649 +0.3104189 0.1201537 0.4698649 +0.3293248 0.1201537 0.4698649 +0.3470774 0.1201537 0.4698649 +0.3637862 0.1201537 0.4698649 +0.3795513 0.1201537 0.4698649 +0.3944623 0.1201537 0.4698649 +0.4085988 0.1201537 0.4698649 +0.4220313 0.1201537 0.4698649 +0.4348222 0.1201537 0.4698649 +0.4470264 0.1201537 0.4698649 +0.4586928 0.1201537 0.4698649 +0.4698649 0.1201537 0.4698649 +0.4805811 0.1201537 0.4698649 +0.490876 0.1201537 0.4698649 +0.5007803 0.1201537 0.4698649 +0.510322 0.1201537 0.4698649 +0.5195258 0.1201537 0.4698649 +0.5284142 0.1201537 0.4698649 +0.5370079 0.1201537 0.4698649 +0.5453253 0.1201537 0.4698649 +0.5533834 0.1201537 0.4698649 +0.5611974 0.1201537 0.4698649 +0.5687816 0.1201537 0.4698649 +0.092819 0.1409607 0.4698649 +0.1056428 0.1409607 0.4698649 +0.1201537 0.1409607 0.4698649 +0.1409607 0.1409607 0.4698649 +0.1678172 0.1409607 0.4698649 +0.1950164 0.1409607 0.4698649 +0.2210581 0.1409607 0.4698649 +0.245636 0.1409607 0.4698649 +0.2686816 0.1409607 0.4698649 +0.2902431 0.1409607 0.4698649 +0.3104189 0.1409607 0.4698649 +0.3293248 0.1409607 0.4698649 +0.3470774 0.1409607 0.4698649 +0.3637862 0.1409607 0.4698649 +0.3795513 0.1409607 0.4698649 +0.3944623 0.1409607 0.4698649 +0.4085988 0.1409607 0.4698649 +0.4220313 0.1409607 0.4698649 +0.4348222 0.1409607 0.4698649 +0.4470264 0.1409607 0.4698649 +0.4586928 0.1409607 0.4698649 +0.4698649 0.1409607 0.4698649 +0.4805811 0.1409607 0.4698649 +0.490876 0.1409607 0.4698649 +0.5007803 0.1409607 0.4698649 +0.510322 0.1409607 0.4698649 +0.5195258 0.1409607 0.4698649 +0.5284142 0.1409607 0.4698649 +0.5370079 0.1409607 0.4698649 +0.5453253 0.1409607 0.4698649 +0.5533834 0.1409607 0.4698649 +0.5611974 0.1409607 0.4698649 +0.5687816 0.1409607 0.4698649 +0.092819 0.1678172 0.4698649 +0.1056428 0.1678172 0.4698649 +0.1201537 0.1678172 0.4698649 +0.1409607 0.1678172 0.4698649 +0.1678172 0.1678172 0.4698649 +0.1950164 0.1678172 0.4698649 +0.2210581 0.1678172 0.4698649 +0.245636 0.1678172 0.4698649 +0.2686816 0.1678172 0.4698649 +0.2902431 0.1678172 0.4698649 +0.3104189 0.1678172 0.4698649 +0.3293248 0.1678172 0.4698649 +0.3470774 0.1678172 0.4698649 +0.3637862 0.1678172 0.4698649 +0.3795513 0.1678172 0.4698649 +0.3944623 0.1678172 0.4698649 +0.4085988 0.1678172 0.4698649 +0.4220313 0.1678172 0.4698649 +0.4348222 0.1678172 0.4698649 +0.4470264 0.1678172 0.4698649 +0.4586928 0.1678172 0.4698649 +0.4698649 0.1678172 0.4698649 +0.4805811 0.1678172 0.4698649 +0.490876 0.1678172 0.4698649 +0.5007803 0.1678172 0.4698649 +0.510322 0.1678172 0.4698649 +0.5195258 0.1678172 0.4698649 +0.5284142 0.1678172 0.4698649 +0.5370079 0.1678172 0.4698649 +0.5453253 0.1678172 0.4698649 +0.5533834 0.1678172 0.4698649 +0.5611974 0.1678172 0.4698649 +0.5687816 0.1678172 0.4698649 +0.092819 0.1950164 0.4698649 +0.1056428 0.1950164 0.4698649 +0.1201537 0.1950164 0.4698649 +0.1409607 0.1950164 0.4698649 +0.1678172 0.1950164 0.4698649 +0.1950164 0.1950164 0.4698649 +0.2210581 0.1950164 0.4698649 +0.245636 0.1950164 0.4698649 +0.2686816 0.1950164 0.4698649 +0.2902431 0.1950164 0.4698649 +0.3104189 0.1950164 0.4698649 +0.3293248 0.1950164 0.4698649 +0.3470774 0.1950164 0.4698649 +0.3637862 0.1950164 0.4698649 +0.3795513 0.1950164 0.4698649 +0.3944623 0.1950164 0.4698649 +0.4085988 0.1950164 0.4698649 +0.4220313 0.1950164 0.4698649 +0.4348222 0.1950164 0.4698649 +0.4470264 0.1950164 0.4698649 +0.4586928 0.1950164 0.4698649 +0.4698649 0.1950164 0.4698649 +0.4805811 0.1950164 0.4698649 +0.490876 0.1950164 0.4698649 +0.5007803 0.1950164 0.4698649 +0.510322 0.1950164 0.4698649 +0.5195258 0.1950164 0.4698649 +0.5284142 0.1950164 0.4698649 +0.5370079 0.1950164 0.4698649 +0.5453253 0.1950164 0.4698649 +0.5533834 0.1950164 0.4698649 +0.5611974 0.1950164 0.4698649 +0.5687816 0.1950164 0.4698649 +0.092819 0.2210581 0.4698649 +0.1056428 0.2210581 0.4698649 +0.1201537 0.2210581 0.4698649 +0.1409607 0.2210581 0.4698649 +0.1678172 0.2210581 0.4698649 +0.1950164 0.2210581 0.4698649 +0.2210581 0.2210581 0.4698649 +0.245636 0.2210581 0.4698649 +0.2686816 0.2210581 0.4698649 +0.2902431 0.2210581 0.4698649 +0.3104189 0.2210581 0.4698649 +0.3293248 0.2210581 0.4698649 +0.3470774 0.2210581 0.4698649 +0.3637862 0.2210581 0.4698649 +0.3795513 0.2210581 0.4698649 +0.3944623 0.2210581 0.4698649 +0.4085988 0.2210581 0.4698649 +0.4220313 0.2210581 0.4698649 +0.4348222 0.2210581 0.4698649 +0.4470264 0.2210581 0.4698649 +0.4586928 0.2210581 0.4698649 +0.4698649 0.2210581 0.4698649 +0.4805811 0.2210581 0.4698649 +0.490876 0.2210581 0.4698649 +0.5007803 0.2210581 0.4698649 +0.510322 0.2210581 0.4698649 +0.5195258 0.2210581 0.4698649 +0.5284142 0.2210581 0.4698649 +0.5370079 0.2210581 0.4698649 +0.5453253 0.2210581 0.4698649 +0.5533834 0.2210581 0.4698649 +0.5611974 0.2210581 0.4698649 +0.5687816 0.2210581 0.4698649 +0.092819 0.245636 0.4698649 +0.1056428 0.245636 0.4698649 +0.1201537 0.245636 0.4698649 +0.1409607 0.245636 0.4698649 +0.1678172 0.245636 0.4698649 +0.1950164 0.245636 0.4698649 +0.2210581 0.245636 0.4698649 +0.245636 0.245636 0.4698649 +0.2686816 0.245636 0.4698649 +0.2902431 0.245636 0.4698649 +0.3104189 0.245636 0.4698649 +0.3293248 0.245636 0.4698649 +0.3470774 0.245636 0.4698649 +0.3637862 0.245636 0.4698649 +0.3795513 0.245636 0.4698649 +0.3944623 0.245636 0.4698649 +0.4085988 0.245636 0.4698649 +0.4220313 0.245636 0.4698649 +0.4348222 0.245636 0.4698649 +0.4470264 0.245636 0.4698649 +0.4586928 0.245636 0.4698649 +0.4698649 0.245636 0.4698649 +0.4805811 0.245636 0.4698649 +0.490876 0.245636 0.4698649 +0.5007803 0.245636 0.4698649 +0.510322 0.245636 0.4698649 +0.5195258 0.245636 0.4698649 +0.5284142 0.245636 0.4698649 +0.5370079 0.245636 0.4698649 +0.5453253 0.245636 0.4698649 +0.5533834 0.245636 0.4698649 +0.5611974 0.245636 0.4698649 +0.5687816 0.245636 0.4698649 +0.092819 0.2686816 0.4698649 +0.1056428 0.2686816 0.4698649 +0.1201537 0.2686816 0.4698649 +0.1409607 0.2686816 0.4698649 +0.1678172 0.2686816 0.4698649 +0.1950164 0.2686816 0.4698649 +0.2210581 0.2686816 0.4698649 +0.245636 0.2686816 0.4698649 +0.2686816 0.2686816 0.4698649 +0.2902431 0.2686816 0.4698649 +0.3104189 0.2686816 0.4698649 +0.3293248 0.2686816 0.4698649 +0.3470774 0.2686816 0.4698649 +0.3637862 0.2686816 0.4698649 +0.3795513 0.2686816 0.4698649 +0.3944623 0.2686816 0.4698649 +0.4085988 0.2686816 0.4698649 +0.4220313 0.2686816 0.4698649 +0.4348222 0.2686816 0.4698649 +0.4470264 0.2686816 0.4698649 +0.4586928 0.2686816 0.4698649 +0.4698649 0.2686816 0.4698649 +0.4805811 0.2686816 0.4698649 +0.490876 0.2686816 0.4698649 +0.5007803 0.2686816 0.4698649 +0.510322 0.2686816 0.4698649 +0.5195258 0.2686816 0.4698649 +0.5284142 0.2686816 0.4698649 +0.5370079 0.2686816 0.4698649 +0.5453253 0.2686816 0.4698649 +0.5533834 0.2686816 0.4698649 +0.5611974 0.2686816 0.4698649 +0.5687816 0.2686816 0.4698649 +0.092819 0.2902431 0.4698649 +0.1056428 0.2902431 0.4698649 +0.1201537 0.2902431 0.4698649 +0.1409607 0.2902431 0.4698649 +0.1678172 0.2902431 0.4698649 +0.1950164 0.2902431 0.4698649 +0.2210581 0.2902431 0.4698649 +0.245636 0.2902431 0.4698649 +0.2686816 0.2902431 0.4698649 +0.2902431 0.2902431 0.4698649 +0.3104189 0.2902431 0.4698649 +0.3293248 0.2902431 0.4698649 +0.3470774 0.2902431 0.4698649 +0.3637862 0.2902431 0.4698649 +0.3795513 0.2902431 0.4698649 +0.3944623 0.2902431 0.4698649 +0.4085988 0.2902431 0.4698649 +0.4220313 0.2902431 0.4698649 +0.4348222 0.2902431 0.4698649 +0.4470264 0.2902431 0.4698649 +0.4586928 0.2902431 0.4698649 +0.4698649 0.2902431 0.4698649 +0.4805811 0.2902431 0.4698649 +0.490876 0.2902431 0.4698649 +0.5007803 0.2902431 0.4698649 +0.510322 0.2902431 0.4698649 +0.5195258 0.2902431 0.4698649 +0.5284142 0.2902431 0.4698649 +0.5370079 0.2902431 0.4698649 +0.5453253 0.2902431 0.4698649 +0.5533834 0.2902431 0.4698649 +0.5611974 0.2902431 0.4698649 +0.5687816 0.2902431 0.4698649 +0.092819 0.3104189 0.4698649 +0.1056428 0.3104189 0.4698649 +0.1201537 0.3104189 0.4698649 +0.1409607 0.3104189 0.4698649 +0.1678172 0.3104189 0.4698649 +0.1950164 0.3104189 0.4698649 +0.2210581 0.3104189 0.4698649 +0.245636 0.3104189 0.4698649 +0.2686816 0.3104189 0.4698649 +0.2902431 0.3104189 0.4698649 +0.3104189 0.3104189 0.4698649 +0.3293248 0.3104189 0.4698649 +0.3470774 0.3104189 0.4698649 +0.3637862 0.3104189 0.4698649 +0.3795513 0.3104189 0.4698649 +0.3944623 0.3104189 0.4698649 +0.4085988 0.3104189 0.4698649 +0.4220313 0.3104189 0.4698649 +0.4348222 0.3104189 0.4698649 +0.4470264 0.3104189 0.4698649 +0.4586928 0.3104189 0.4698649 +0.4698649 0.3104189 0.4698649 +0.4805811 0.3104189 0.4698649 +0.490876 0.3104189 0.4698649 +0.5007803 0.3104189 0.4698649 +0.510322 0.3104189 0.4698649 +0.5195258 0.3104189 0.4698649 +0.5284142 0.3104189 0.4698649 +0.5370079 0.3104189 0.4698649 +0.5453253 0.3104189 0.4698649 +0.5533834 0.3104189 0.4698649 +0.5611974 0.3104189 0.4698649 +0.5687816 0.3104189 0.4698649 +0.092819 0.3293248 0.4698649 +0.1056428 0.3293248 0.4698649 +0.1201537 0.3293248 0.4698649 +0.1409607 0.3293248 0.4698649 +0.1678172 0.3293248 0.4698649 +0.1950164 0.3293248 0.4698649 +0.2210581 0.3293248 0.4698649 +0.245636 0.3293248 0.4698649 +0.2686816 0.3293248 0.4698649 +0.2902431 0.3293248 0.4698649 +0.3104189 0.3293248 0.4698649 +0.3293248 0.3293248 0.4698649 +0.3470774 0.3293248 0.4698649 +0.3637862 0.3293248 0.4698649 +0.3795513 0.3293248 0.4698649 +0.3944623 0.3293248 0.4698649 +0.4085988 0.3293248 0.4698649 +0.4220313 0.3293248 0.4698649 +0.4348222 0.3293248 0.4698649 +0.4470264 0.3293248 0.4698649 +0.4586928 0.3293248 0.4698649 +0.4698649 0.3293248 0.4698649 +0.4805811 0.3293248 0.4698649 +0.490876 0.3293248 0.4698649 +0.5007803 0.3293248 0.4698649 +0.510322 0.3293248 0.4698649 +0.5195258 0.3293248 0.4698649 +0.5284142 0.3293248 0.4698649 +0.5370079 0.3293248 0.4698649 +0.5453253 0.3293248 0.4698649 +0.5533834 0.3293248 0.4698649 +0.5611974 0.3293248 0.4698649 +0.5687816 0.3293248 0.4698649 +0.092819 0.3470774 0.4698649 +0.1056428 0.3470774 0.4698649 +0.1201537 0.3470774 0.4698649 +0.1409607 0.3470774 0.4698649 +0.1678172 0.3470774 0.4698649 +0.1950164 0.3470774 0.4698649 +0.2210581 0.3470774 0.4698649 +0.245636 0.3470774 0.4698649 +0.2686816 0.3470774 0.4698649 +0.2902431 0.3470774 0.4698649 +0.3104189 0.3470774 0.4698649 +0.3293248 0.3470774 0.4698649 +0.3470774 0.3470774 0.4698649 +0.3637862 0.3470774 0.4698649 +0.3795513 0.3470774 0.4698649 +0.3944623 0.3470774 0.4698649 +0.4085988 0.3470774 0.4698649 +0.4220313 0.3470774 0.4698649 +0.4348222 0.3470774 0.4698649 +0.4470264 0.3470774 0.4698649 +0.4586928 0.3470774 0.4698649 +0.4698649 0.3470774 0.4698649 +0.4805811 0.3470774 0.4698649 +0.490876 0.3470774 0.4698649 +0.5007803 0.3470774 0.4698649 +0.510322 0.3470774 0.4698649 +0.5195258 0.3470774 0.4698649 +0.5284142 0.3470774 0.4698649 +0.5370079 0.3470774 0.4698649 +0.5453253 0.3470774 0.4698649 +0.5533834 0.3470774 0.4698649 +0.5611974 0.3470774 0.4698649 +0.5687816 0.3470774 0.4698649 +0.092819 0.3637862 0.4698649 +0.1056428 0.3637862 0.4698649 +0.1201537 0.3637862 0.4698649 +0.1409607 0.3637862 0.4698649 +0.1678172 0.3637862 0.4698649 +0.1950164 0.3637862 0.4698649 +0.2210581 0.3637862 0.4698649 +0.245636 0.3637862 0.4698649 +0.2686816 0.3637862 0.4698649 +0.2902431 0.3637862 0.4698649 +0.3104189 0.3637862 0.4698649 +0.3293248 0.3637862 0.4698649 +0.3470774 0.3637862 0.4698649 +0.3637862 0.3637862 0.4698649 +0.3795513 0.3637862 0.4698649 +0.3944623 0.3637862 0.4698649 +0.4085988 0.3637862 0.4698649 +0.4220313 0.3637862 0.4698649 +0.4348222 0.3637862 0.4698649 +0.4470264 0.3637862 0.4698649 +0.4586928 0.3637862 0.4698649 +0.4698649 0.3637862 0.4698649 +0.4805811 0.3637862 0.4698649 +0.490876 0.3637862 0.4698649 +0.5007803 0.3637862 0.4698649 +0.510322 0.3637862 0.4698649 +0.5195258 0.3637862 0.4698649 +0.5284142 0.3637862 0.4698649 +0.5370079 0.3637862 0.4698649 +0.5453253 0.3637862 0.4698649 +0.5533834 0.3637862 0.4698649 +0.5611974 0.3637862 0.4698649 +0.5687816 0.3637862 0.4698649 +0.092819 0.3795513 0.4698649 +0.1056428 0.3795513 0.4698649 +0.1201537 0.3795513 0.4698649 +0.1409607 0.3795513 0.4698649 +0.1678172 0.3795513 0.4698649 +0.1950164 0.3795513 0.4698649 +0.2210581 0.3795513 0.4698649 +0.245636 0.3795513 0.4698649 +0.2686816 0.3795513 0.4698649 +0.2902431 0.3795513 0.4698649 +0.3104189 0.3795513 0.4698649 +0.3293248 0.3795513 0.4698649 +0.3470774 0.3795513 0.4698649 +0.3637862 0.3795513 0.4698649 +0.3795513 0.3795513 0.4698649 +0.3944623 0.3795513 0.4698649 +0.4085988 0.3795513 0.4698649 +0.4220313 0.3795513 0.4698649 +0.4348222 0.3795513 0.4698649 +0.4470264 0.3795513 0.4698649 +0.4586928 0.3795513 0.4698649 +0.4698649 0.3795513 0.4698649 +0.4805811 0.3795513 0.4698649 +0.490876 0.3795513 0.4698649 +0.5007803 0.3795513 0.4698649 +0.510322 0.3795513 0.4698649 +0.5195258 0.3795513 0.4698649 +0.5284142 0.3795513 0.4698649 +0.5370079 0.3795513 0.4698649 +0.5453253 0.3795513 0.4698649 +0.5533834 0.3795513 0.4698649 +0.5611974 0.3795513 0.4698649 +0.5687816 0.3795513 0.4698649 +0.092819 0.3944623 0.4698649 +0.1056428 0.3944623 0.4698649 +0.1201537 0.3944623 0.4698649 +0.1409607 0.3944623 0.4698649 +0.1678172 0.3944623 0.4698649 +0.1950164 0.3944623 0.4698649 +0.2210581 0.3944623 0.4698649 +0.245636 0.3944623 0.4698649 +0.2686816 0.3944623 0.4698649 +0.2902431 0.3944623 0.4698649 +0.3104189 0.3944623 0.4698649 +0.3293248 0.3944623 0.4698649 +0.3470774 0.3944623 0.4698649 +0.3637862 0.3944623 0.4698649 +0.3795513 0.3944623 0.4698649 +0.3944623 0.3944623 0.4698649 +0.4085988 0.3944623 0.4698649 +0.4220313 0.3944623 0.4698649 +0.4348222 0.3944623 0.4698649 +0.4470264 0.3944623 0.4698649 +0.4586928 0.3944623 0.4698649 +0.4698649 0.3944623 0.4698649 +0.4805811 0.3944623 0.4698649 +0.490876 0.3944623 0.4698649 +0.5007803 0.3944623 0.4698649 +0.510322 0.3944623 0.4698649 +0.5195258 0.3944623 0.4698649 +0.5284142 0.3944623 0.4698649 +0.5370079 0.3944623 0.4698649 +0.5453253 0.3944623 0.4698649 +0.5533834 0.3944623 0.4698649 +0.5611974 0.3944623 0.4698649 +0.5687816 0.3944623 0.4698649 +0.092819 0.4085988 0.4698649 +0.1056428 0.4085988 0.4698649 +0.1201537 0.4085988 0.4698649 +0.1409607 0.4085988 0.4698649 +0.1678172 0.4085988 0.4698649 +0.1950164 0.4085988 0.4698649 +0.2210581 0.4085988 0.4698649 +0.245636 0.4085988 0.4698649 +0.2686816 0.4085988 0.4698649 +0.2902431 0.4085988 0.4698649 +0.3104189 0.4085988 0.4698649 +0.3293248 0.4085988 0.4698649 +0.3470774 0.4085988 0.4698649 +0.3637862 0.4085988 0.4698649 +0.3795513 0.4085988 0.4698649 +0.3944623 0.4085988 0.4698649 +0.4085988 0.4085988 0.4698649 +0.4220313 0.4085988 0.4698649 +0.4348222 0.4085988 0.4698649 +0.4470264 0.4085988 0.4698649 +0.4586928 0.4085988 0.4698649 +0.4698649 0.4085988 0.4698649 +0.4805811 0.4085988 0.4698649 +0.490876 0.4085988 0.4698649 +0.5007803 0.4085988 0.4698649 +0.510322 0.4085988 0.4698649 +0.5195258 0.4085988 0.4698649 +0.5284142 0.4085988 0.4698649 +0.5370079 0.4085988 0.4698649 +0.5453253 0.4085988 0.4698649 +0.5533834 0.4085988 0.4698649 +0.5611974 0.4085988 0.4698649 +0.5687816 0.4085988 0.4698649 +0.092819 0.4220313 0.4698649 +0.1056428 0.4220313 0.4698649 +0.1201537 0.4220313 0.4698649 +0.1409607 0.4220313 0.4698649 +0.1678172 0.4220313 0.4698649 +0.1950164 0.4220313 0.4698649 +0.2210581 0.4220313 0.4698649 +0.245636 0.4220313 0.4698649 +0.2686816 0.4220313 0.4698649 +0.2902431 0.4220313 0.4698649 +0.3104189 0.4220313 0.4698649 +0.3293248 0.4220313 0.4698649 +0.3470774 0.4220313 0.4698649 +0.3637862 0.4220313 0.4698649 +0.3795513 0.4220313 0.4698649 +0.3944623 0.4220313 0.4698649 +0.4085988 0.4220313 0.4698649 +0.4220313 0.4220313 0.4698649 +0.4348222 0.4220313 0.4698649 +0.4470264 0.4220313 0.4698649 +0.4586928 0.4220313 0.4698649 +0.4698649 0.4220313 0.4698649 +0.4805811 0.4220313 0.4698649 +0.490876 0.4220313 0.4698649 +0.5007803 0.4220313 0.4698649 +0.510322 0.4220313 0.4698649 +0.5195258 0.4220313 0.4698649 +0.5284142 0.4220313 0.4698649 +0.5370079 0.4220313 0.4698649 +0.5453253 0.4220313 0.4698649 +0.5533834 0.4220313 0.4698649 +0.5611974 0.4220313 0.4698649 +0.5687816 0.4220313 0.4698649 +0.092819 0.4348222 0.4698649 +0.1056428 0.4348222 0.4698649 +0.1201537 0.4348222 0.4698649 +0.1409607 0.4348222 0.4698649 +0.1678172 0.4348222 0.4698649 +0.1950164 0.4348222 0.4698649 +0.2210581 0.4348222 0.4698649 +0.245636 0.4348222 0.4698649 +0.2686816 0.4348222 0.4698649 +0.2902431 0.4348222 0.4698649 +0.3104189 0.4348222 0.4698649 +0.3293248 0.4348222 0.4698649 +0.3470774 0.4348222 0.4698649 +0.3637862 0.4348222 0.4698649 +0.3795513 0.4348222 0.4698649 +0.3944623 0.4348222 0.4698649 +0.4085988 0.4348222 0.4698649 +0.4220313 0.4348222 0.4698649 +0.4348222 0.4348222 0.4698649 +0.4470264 0.4348222 0.4698649 +0.4586928 0.4348222 0.4698649 +0.4698649 0.4348222 0.4698649 +0.4805811 0.4348222 0.4698649 +0.490876 0.4348222 0.4698649 +0.5007803 0.4348222 0.4698649 +0.510322 0.4348222 0.4698649 +0.5195258 0.4348222 0.4698649 +0.5284142 0.4348222 0.4698649 +0.5370079 0.4348222 0.4698649 +0.5453253 0.4348222 0.4698649 +0.5533834 0.4348222 0.4698649 +0.5611974 0.4348222 0.4698649 +0.5687816 0.4348222 0.4698649 +0.092819 0.4470264 0.4698649 +0.1056428 0.4470264 0.4698649 +0.1201537 0.4470264 0.4698649 +0.1409607 0.4470264 0.4698649 +0.1678172 0.4470264 0.4698649 +0.1950164 0.4470264 0.4698649 +0.2210581 0.4470264 0.4698649 +0.245636 0.4470264 0.4698649 +0.2686816 0.4470264 0.4698649 +0.2902431 0.4470264 0.4698649 +0.3104189 0.4470264 0.4698649 +0.3293248 0.4470264 0.4698649 +0.3470774 0.4470264 0.4698649 +0.3637862 0.4470264 0.4698649 +0.3795513 0.4470264 0.4698649 +0.3944623 0.4470264 0.4698649 +0.4085988 0.4470264 0.4698649 +0.4220313 0.4470264 0.4698649 +0.4348222 0.4470264 0.4698649 +0.4470264 0.4470264 0.4698649 +0.4586928 0.4470264 0.4698649 +0.4698649 0.4470264 0.4698649 +0.4805811 0.4470264 0.4698649 +0.490876 0.4470264 0.4698649 +0.5007803 0.4470264 0.4698649 +0.510322 0.4470264 0.4698649 +0.5195258 0.4470264 0.4698649 +0.5284142 0.4470264 0.4698649 +0.5370079 0.4470264 0.4698649 +0.5453253 0.4470264 0.4698649 +0.5533834 0.4470264 0.4698649 +0.5611974 0.4470264 0.4698649 +0.5687816 0.4470264 0.4698649 +0.092819 0.4586928 0.4698649 +0.1056428 0.4586928 0.4698649 +0.1201537 0.4586928 0.4698649 +0.1409607 0.4586928 0.4698649 +0.1678172 0.4586928 0.4698649 +0.1950164 0.4586928 0.4698649 +0.2210581 0.4586928 0.4698649 +0.245636 0.4586928 0.4698649 +0.2686816 0.4586928 0.4698649 +0.2902431 0.4586928 0.4698649 +0.3104189 0.4586928 0.4698649 +0.3293248 0.4586928 0.4698649 +0.3470774 0.4586928 0.4698649 +0.3637862 0.4586928 0.4698649 +0.3795513 0.4586928 0.4698649 +0.3944623 0.4586928 0.4698649 +0.4085988 0.4586928 0.4698649 +0.4220313 0.4586928 0.4698649 +0.4348222 0.4586928 0.4698649 +0.4470264 0.4586928 0.4698649 +0.4586928 0.4586928 0.4698649 +0.4698649 0.4586928 0.4698649 +0.4805811 0.4586928 0.4698649 +0.490876 0.4586928 0.4698649 +0.5007803 0.4586928 0.4698649 +0.510322 0.4586928 0.4698649 +0.5195258 0.4586928 0.4698649 +0.5284142 0.4586928 0.4698649 +0.5370079 0.4586928 0.4698649 +0.5453253 0.4586928 0.4698649 +0.5533834 0.4586928 0.4698649 +0.5611974 0.4586928 0.4698649 +0.5687816 0.4586928 0.4698649 +0.092819 0.4698649 0.4698649 +0.1056428 0.4698649 0.4698649 +0.1201537 0.4698649 0.4698649 +0.1409607 0.4698649 0.4698649 +0.1678172 0.4698649 0.4698649 +0.1950164 0.4698649 0.4698649 +0.2210581 0.4698649 0.4698649 +0.245636 0.4698649 0.4698649 +0.2686816 0.4698649 0.4698649 +0.2902431 0.4698649 0.4698649 +0.3104189 0.4698649 0.4698649 +0.3293248 0.4698649 0.4698649 +0.3470774 0.4698649 0.4698649 +0.3637862 0.4698649 0.4698649 +0.3795513 0.4698649 0.4698649 +0.3944623 0.4698649 0.4698649 +0.4085988 0.4698649 0.4698649 +0.4220313 0.4698649 0.4698649 +0.4348222 0.4698649 0.4698649 +0.4470264 0.4698649 0.4698649 +0.4586928 0.4698649 0.4698649 +0.4698649 0.4698649 0.4698649 +0.4805811 0.4698649 0.4698649 +0.490876 0.4698649 0.4698649 +0.5007803 0.4698649 0.4698649 +0.510322 0.4698649 0.4698649 +0.5195258 0.4698649 0.4698649 +0.5284142 0.4698649 0.4698649 +0.5370079 0.4698649 0.4698649 +0.5453253 0.4698649 0.4698649 +0.5533834 0.4698649 0.4698649 +0.5611974 0.4698649 0.4698649 +0.5687816 0.4698649 0.4698649 +0.092819 0.4805811 0.4698649 +0.1056428 0.4805811 0.4698649 +0.1201537 0.4805811 0.4698649 +0.1409607 0.4805811 0.4698649 +0.1678172 0.4805811 0.4698649 +0.1950164 0.4805811 0.4698649 +0.2210581 0.4805811 0.4698649 +0.245636 0.4805811 0.4698649 +0.2686816 0.4805811 0.4698649 +0.2902431 0.4805811 0.4698649 +0.3104189 0.4805811 0.4698649 +0.3293248 0.4805811 0.4698649 +0.3470774 0.4805811 0.4698649 +0.3637862 0.4805811 0.4698649 +0.3795513 0.4805811 0.4698649 +0.3944623 0.4805811 0.4698649 +0.4085988 0.4805811 0.4698649 +0.4220313 0.4805811 0.4698649 +0.4348222 0.4805811 0.4698649 +0.4470264 0.4805811 0.4698649 +0.4586928 0.4805811 0.4698649 +0.4698649 0.4805811 0.4698649 +0.4805811 0.4805811 0.4698649 +0.490876 0.4805811 0.4698649 +0.5007803 0.4805811 0.4698649 +0.510322 0.4805811 0.4698649 +0.5195258 0.4805811 0.4698649 +0.5284142 0.4805811 0.4698649 +0.5370079 0.4805811 0.4698649 +0.5453253 0.4805811 0.4698649 +0.5533834 0.4805811 0.4698649 +0.5611974 0.4805811 0.4698649 +0.5687816 0.4805811 0.4698649 +0.092819 0.490876 0.4698649 +0.1056428 0.490876 0.4698649 +0.1201537 0.490876 0.4698649 +0.1409607 0.490876 0.4698649 +0.1678172 0.490876 0.4698649 +0.1950164 0.490876 0.4698649 +0.2210581 0.490876 0.4698649 +0.245636 0.490876 0.4698649 +0.2686816 0.490876 0.4698649 +0.2902431 0.490876 0.4698649 +0.3104189 0.490876 0.4698649 +0.3293248 0.490876 0.4698649 +0.3470774 0.490876 0.4698649 +0.3637862 0.490876 0.4698649 +0.3795513 0.490876 0.4698649 +0.3944623 0.490876 0.4698649 +0.4085988 0.490876 0.4698649 +0.4220313 0.490876 0.4698649 +0.4348222 0.490876 0.4698649 +0.4470264 0.490876 0.4698649 +0.4586928 0.490876 0.4698649 +0.4698649 0.490876 0.4698649 +0.4805811 0.490876 0.4698649 +0.490876 0.490876 0.4698649 +0.5007803 0.490876 0.4698649 +0.510322 0.490876 0.4698649 +0.5195258 0.490876 0.4698649 +0.5284142 0.490876 0.4698649 +0.5370079 0.490876 0.4698649 +0.5453253 0.490876 0.4698649 +0.5533834 0.490876 0.4698649 +0.5611974 0.490876 0.4698649 +0.5687816 0.490876 0.4698649 +0.092819 0.5007803 0.4698649 +0.1056428 0.5007803 0.4698649 +0.1201537 0.5007803 0.4698649 +0.1409607 0.5007803 0.4698649 +0.1678172 0.5007803 0.4698649 +0.1950164 0.5007803 0.4698649 +0.2210581 0.5007803 0.4698649 +0.245636 0.5007803 0.4698649 +0.2686816 0.5007803 0.4698649 +0.2902431 0.5007803 0.4698649 +0.3104189 0.5007803 0.4698649 +0.3293248 0.5007803 0.4698649 +0.3470774 0.5007803 0.4698649 +0.3637862 0.5007803 0.4698649 +0.3795513 0.5007803 0.4698649 +0.3944623 0.5007803 0.4698649 +0.4085988 0.5007803 0.4698649 +0.4220313 0.5007803 0.4698649 +0.4348222 0.5007803 0.4698649 +0.4470264 0.5007803 0.4698649 +0.4586928 0.5007803 0.4698649 +0.4698649 0.5007803 0.4698649 +0.4805811 0.5007803 0.4698649 +0.490876 0.5007803 0.4698649 +0.5007803 0.5007803 0.4698649 +0.510322 0.5007803 0.4698649 +0.5195258 0.5007803 0.4698649 +0.5284142 0.5007803 0.4698649 +0.5370079 0.5007803 0.4698649 +0.5453253 0.5007803 0.4698649 +0.5533834 0.5007803 0.4698649 +0.5611974 0.5007803 0.4698649 +0.5687816 0.5007803 0.4698649 +0.092819 0.510322 0.4698649 +0.1056428 0.510322 0.4698649 +0.1201537 0.510322 0.4698649 +0.1409607 0.510322 0.4698649 +0.1678172 0.510322 0.4698649 +0.1950164 0.510322 0.4698649 +0.2210581 0.510322 0.4698649 +0.245636 0.510322 0.4698649 +0.2686816 0.510322 0.4698649 +0.2902431 0.510322 0.4698649 +0.3104189 0.510322 0.4698649 +0.3293248 0.510322 0.4698649 +0.3470774 0.510322 0.4698649 +0.3637862 0.510322 0.4698649 +0.3795513 0.510322 0.4698649 +0.3944623 0.510322 0.4698649 +0.4085988 0.510322 0.4698649 +0.4220313 0.510322 0.4698649 +0.4348222 0.510322 0.4698649 +0.4470264 0.510322 0.4698649 +0.4586928 0.510322 0.4698649 +0.4698649 0.510322 0.4698649 +0.4805811 0.510322 0.4698649 +0.490876 0.510322 0.4698649 +0.5007803 0.510322 0.4698649 +0.510322 0.510322 0.4698649 +0.5195258 0.510322 0.4698649 +0.5284142 0.510322 0.4698649 +0.5370079 0.510322 0.4698649 +0.5453253 0.510322 0.4698649 +0.5533834 0.510322 0.4698649 +0.5611974 0.510322 0.4698649 +0.5687816 0.510322 0.4698649 +0.092819 0.5195258 0.4698649 +0.1056428 0.5195258 0.4698649 +0.1201537 0.5195258 0.4698649 +0.1409607 0.5195258 0.4698649 +0.1678172 0.5195258 0.4698649 +0.1950164 0.5195258 0.4698649 +0.2210581 0.5195258 0.4698649 +0.245636 0.5195258 0.4698649 +0.2686816 0.5195258 0.4698649 +0.2902431 0.5195258 0.4698649 +0.3104189 0.5195258 0.4698649 +0.3293248 0.5195258 0.4698649 +0.3470774 0.5195258 0.4698649 +0.3637862 0.5195258 0.4698649 +0.3795513 0.5195258 0.4698649 +0.3944623 0.5195258 0.4698649 +0.4085988 0.5195258 0.4698649 +0.4220313 0.5195258 0.4698649 +0.4348222 0.5195258 0.4698649 +0.4470264 0.5195258 0.4698649 +0.4586928 0.5195258 0.4698649 +0.4698649 0.5195258 0.4698649 +0.4805811 0.5195258 0.4698649 +0.490876 0.5195258 0.4698649 +0.5007803 0.5195258 0.4698649 +0.510322 0.5195258 0.4698649 +0.5195258 0.5195258 0.4698649 +0.5284142 0.5195258 0.4698649 +0.5370079 0.5195258 0.4698649 +0.5453253 0.5195258 0.4698649 +0.5533834 0.5195258 0.4698649 +0.5611974 0.5195258 0.4698649 +0.5687816 0.5195258 0.4698649 +0.092819 0.5284142 0.4698649 +0.1056428 0.5284142 0.4698649 +0.1201537 0.5284142 0.4698649 +0.1409607 0.5284142 0.4698649 +0.1678172 0.5284142 0.4698649 +0.1950164 0.5284142 0.4698649 +0.2210581 0.5284142 0.4698649 +0.245636 0.5284142 0.4698649 +0.2686816 0.5284142 0.4698649 +0.2902431 0.5284142 0.4698649 +0.3104189 0.5284142 0.4698649 +0.3293248 0.5284142 0.4698649 +0.3470774 0.5284142 0.4698649 +0.3637862 0.5284142 0.4698649 +0.3795513 0.5284142 0.4698649 +0.3944623 0.5284142 0.4698649 +0.4085988 0.5284142 0.4698649 +0.4220313 0.5284142 0.4698649 +0.4348222 0.5284142 0.4698649 +0.4470264 0.5284142 0.4698649 +0.4586928 0.5284142 0.4698649 +0.4698649 0.5284142 0.4698649 +0.4805811 0.5284142 0.4698649 +0.490876 0.5284142 0.4698649 +0.5007803 0.5284142 0.4698649 +0.510322 0.5284142 0.4698649 +0.5195258 0.5284142 0.4698649 +0.5284142 0.5284142 0.4698649 +0.5370079 0.5284142 0.4698649 +0.5453253 0.5284142 0.4698649 +0.5533834 0.5284142 0.4698649 +0.5611974 0.5284142 0.4698649 +0.5687816 0.5284142 0.4698649 +0.092819 0.5370079 0.4698649 +0.1056428 0.5370079 0.4698649 +0.1201537 0.5370079 0.4698649 +0.1409607 0.5370079 0.4698649 +0.1678172 0.5370079 0.4698649 +0.1950164 0.5370079 0.4698649 +0.2210581 0.5370079 0.4698649 +0.245636 0.5370079 0.4698649 +0.2686816 0.5370079 0.4698649 +0.2902431 0.5370079 0.4698649 +0.3104189 0.5370079 0.4698649 +0.3293248 0.5370079 0.4698649 +0.3470774 0.5370079 0.4698649 +0.3637862 0.5370079 0.4698649 +0.3795513 0.5370079 0.4698649 +0.3944623 0.5370079 0.4698649 +0.4085988 0.5370079 0.4698649 +0.4220313 0.5370079 0.4698649 +0.4348222 0.5370079 0.4698649 +0.4470264 0.5370079 0.4698649 +0.4586928 0.5370079 0.4698649 +0.4698649 0.5370079 0.4698649 +0.4805811 0.5370079 0.4698649 +0.490876 0.5370079 0.4698649 +0.5007803 0.5370079 0.4698649 +0.510322 0.5370079 0.4698649 +0.5195258 0.5370079 0.4698649 +0.5284142 0.5370079 0.4698649 +0.5370079 0.5370079 0.4698649 +0.5453253 0.5370079 0.4698649 +0.5533834 0.5370079 0.4698649 +0.5611974 0.5370079 0.4698649 +0.5687816 0.5370079 0.4698649 +0.092819 0.5453253 0.4698649 +0.1056428 0.5453253 0.4698649 +0.1201537 0.5453253 0.4698649 +0.1409607 0.5453253 0.4698649 +0.1678172 0.5453253 0.4698649 +0.1950164 0.5453253 0.4698649 +0.2210581 0.5453253 0.4698649 +0.245636 0.5453253 0.4698649 +0.2686816 0.5453253 0.4698649 +0.2902431 0.5453253 0.4698649 +0.3104189 0.5453253 0.4698649 +0.3293248 0.5453253 0.4698649 +0.3470774 0.5453253 0.4698649 +0.3637862 0.5453253 0.4698649 +0.3795513 0.5453253 0.4698649 +0.3944623 0.5453253 0.4698649 +0.4085988 0.5453253 0.4698649 +0.4220313 0.5453253 0.4698649 +0.4348222 0.5453253 0.4698649 +0.4470264 0.5453253 0.4698649 +0.4586928 0.5453253 0.4698649 +0.4698649 0.5453253 0.4698649 +0.4805811 0.5453253 0.4698649 +0.490876 0.5453253 0.4698649 +0.5007803 0.5453253 0.4698649 +0.510322 0.5453253 0.4698649 +0.5195258 0.5453253 0.4698649 +0.5284142 0.5453253 0.4698649 +0.5370079 0.5453253 0.4698649 +0.5453253 0.5453253 0.4698649 +0.5533834 0.5453253 0.4698649 +0.5611974 0.5453253 0.4698649 +0.5687816 0.5453253 0.4698649 +0.092819 0.5533834 0.4698649 +0.1056428 0.5533834 0.4698649 +0.1201537 0.5533834 0.4698649 +0.1409607 0.5533834 0.4698649 +0.1678172 0.5533834 0.4698649 +0.1950164 0.5533834 0.4698649 +0.2210581 0.5533834 0.4698649 +0.245636 0.5533834 0.4698649 +0.2686816 0.5533834 0.4698649 +0.2902431 0.5533834 0.4698649 +0.3104189 0.5533834 0.4698649 +0.3293248 0.5533834 0.4698649 +0.3470774 0.5533834 0.4698649 +0.3637862 0.5533834 0.4698649 +0.3795513 0.5533834 0.4698649 +0.3944623 0.5533834 0.4698649 +0.4085988 0.5533834 0.4698649 +0.4220313 0.5533834 0.4698649 +0.4348222 0.5533834 0.4698649 +0.4470264 0.5533834 0.4698649 +0.4586928 0.5533834 0.4698649 +0.4698649 0.5533834 0.4698649 +0.4805811 0.5533834 0.4698649 +0.490876 0.5533834 0.4698649 +0.5007803 0.5533834 0.4698649 +0.510322 0.5533834 0.4698649 +0.5195258 0.5533834 0.4698649 +0.5284142 0.5533834 0.4698649 +0.5370079 0.5533834 0.4698649 +0.5453253 0.5533834 0.4698649 +0.5533834 0.5533834 0.4698649 +0.5611974 0.5533834 0.4698649 +0.5687816 0.5533834 0.4698649 +0.092819 0.5611974 0.4698649 +0.1056428 0.5611974 0.4698649 +0.1201537 0.5611974 0.4698649 +0.1409607 0.5611974 0.4698649 +0.1678172 0.5611974 0.4698649 +0.1950164 0.5611974 0.4698649 +0.2210581 0.5611974 0.4698649 +0.245636 0.5611974 0.4698649 +0.2686816 0.5611974 0.4698649 +0.2902431 0.5611974 0.4698649 +0.3104189 0.5611974 0.4698649 +0.3293248 0.5611974 0.4698649 +0.3470774 0.5611974 0.4698649 +0.3637862 0.5611974 0.4698649 +0.3795513 0.5611974 0.4698649 +0.3944623 0.5611974 0.4698649 +0.4085988 0.5611974 0.4698649 +0.4220313 0.5611974 0.4698649 +0.4348222 0.5611974 0.4698649 +0.4470264 0.5611974 0.4698649 +0.4586928 0.5611974 0.4698649 +0.4698649 0.5611974 0.4698649 +0.4805811 0.5611974 0.4698649 +0.490876 0.5611974 0.4698649 +0.5007803 0.5611974 0.4698649 +0.510322 0.5611974 0.4698649 +0.5195258 0.5611974 0.4698649 +0.5284142 0.5611974 0.4698649 +0.5370079 0.5611974 0.4698649 +0.5453253 0.5611974 0.4698649 +0.5533834 0.5611974 0.4698649 +0.5611974 0.5611974 0.4698649 +0.5687816 0.5611974 0.4698649 +0.092819 0.5687816 0.4698649 +0.1056428 0.5687816 0.4698649 +0.1201537 0.5687816 0.4698649 +0.1409607 0.5687816 0.4698649 +0.1678172 0.5687816 0.4698649 +0.1950164 0.5687816 0.4698649 +0.2210581 0.5687816 0.4698649 +0.245636 0.5687816 0.4698649 +0.2686816 0.5687816 0.4698649 +0.2902431 0.5687816 0.4698649 +0.3104189 0.5687816 0.4698649 +0.3293248 0.5687816 0.4698649 +0.3470774 0.5687816 0.4698649 +0.3637862 0.5687816 0.4698649 +0.3795513 0.5687816 0.4698649 +0.3944623 0.5687816 0.4698649 +0.4085988 0.5687816 0.4698649 +0.4220313 0.5687816 0.4698649 +0.4348222 0.5687816 0.4698649 +0.4470264 0.5687816 0.4698649 +0.4586928 0.5687816 0.4698649 +0.4698649 0.5687816 0.4698649 +0.4805811 0.5687816 0.4698649 +0.490876 0.5687816 0.4698649 +0.5007803 0.5687816 0.4698649 +0.510322 0.5687816 0.4698649 +0.5195258 0.5687816 0.4698649 +0.5284142 0.5687816 0.4698649 +0.5370079 0.5687816 0.4698649 +0.5453253 0.5687816 0.4698649 +0.5533834 0.5687816 0.4698649 +0.5611974 0.5687816 0.4698649 +0.5687816 0.5687816 0.4698649 +0.092819 0.092819 0.4805811 +0.1056428 0.092819 0.4805811 +0.1201537 0.092819 0.4805811 +0.1409607 0.092819 0.4805811 +0.1678172 0.092819 0.4805811 +0.1950164 0.092819 0.4805811 +0.2210581 0.092819 0.4805811 +0.245636 0.092819 0.4805811 +0.2686816 0.092819 0.4805811 +0.2902431 0.092819 0.4805811 +0.3104189 0.092819 0.4805811 +0.3293248 0.092819 0.4805811 +0.3470774 0.092819 0.4805811 +0.3637862 0.092819 0.4805811 +0.3795513 0.092819 0.4805811 +0.3944623 0.092819 0.4805811 +0.4085988 0.092819 0.4805811 +0.4220313 0.092819 0.4805811 +0.4348222 0.092819 0.4805811 +0.4470264 0.092819 0.4805811 +0.4586928 0.092819 0.4805811 +0.4698649 0.092819 0.4805811 +0.4805811 0.092819 0.4805811 +0.490876 0.092819 0.4805811 +0.5007803 0.092819 0.4805811 +0.510322 0.092819 0.4805811 +0.5195258 0.092819 0.4805811 +0.5284142 0.092819 0.4805811 +0.5370079 0.092819 0.4805811 +0.5453253 0.092819 0.4805811 +0.5533834 0.092819 0.4805811 +0.5611974 0.092819 0.4805811 +0.5687816 0.092819 0.4805811 +0.092819 0.1056428 0.4805811 +0.1056428 0.1056428 0.4805811 +0.1201537 0.1056428 0.4805811 +0.1409607 0.1056428 0.4805811 +0.1678172 0.1056428 0.4805811 +0.1950164 0.1056428 0.4805811 +0.2210581 0.1056428 0.4805811 +0.245636 0.1056428 0.4805811 +0.2686816 0.1056428 0.4805811 +0.2902431 0.1056428 0.4805811 +0.3104189 0.1056428 0.4805811 +0.3293248 0.1056428 0.4805811 +0.3470774 0.1056428 0.4805811 +0.3637862 0.1056428 0.4805811 +0.3795513 0.1056428 0.4805811 +0.3944623 0.1056428 0.4805811 +0.4085988 0.1056428 0.4805811 +0.4220313 0.1056428 0.4805811 +0.4348222 0.1056428 0.4805811 +0.4470264 0.1056428 0.4805811 +0.4586928 0.1056428 0.4805811 +0.4698649 0.1056428 0.4805811 +0.4805811 0.1056428 0.4805811 +0.490876 0.1056428 0.4805811 +0.5007803 0.1056428 0.4805811 +0.510322 0.1056428 0.4805811 +0.5195258 0.1056428 0.4805811 +0.5284142 0.1056428 0.4805811 +0.5370079 0.1056428 0.4805811 +0.5453253 0.1056428 0.4805811 +0.5533834 0.1056428 0.4805811 +0.5611974 0.1056428 0.4805811 +0.5687816 0.1056428 0.4805811 +0.092819 0.1201537 0.4805811 +0.1056428 0.1201537 0.4805811 +0.1201537 0.1201537 0.4805811 +0.1409607 0.1201537 0.4805811 +0.1678172 0.1201537 0.4805811 +0.1950164 0.1201537 0.4805811 +0.2210581 0.1201537 0.4805811 +0.245636 0.1201537 0.4805811 +0.2686816 0.1201537 0.4805811 +0.2902431 0.1201537 0.4805811 +0.3104189 0.1201537 0.4805811 +0.3293248 0.1201537 0.4805811 +0.3470774 0.1201537 0.4805811 +0.3637862 0.1201537 0.4805811 +0.3795513 0.1201537 0.4805811 +0.3944623 0.1201537 0.4805811 +0.4085988 0.1201537 0.4805811 +0.4220313 0.1201537 0.4805811 +0.4348222 0.1201537 0.4805811 +0.4470264 0.1201537 0.4805811 +0.4586928 0.1201537 0.4805811 +0.4698649 0.1201537 0.4805811 +0.4805811 0.1201537 0.4805811 +0.490876 0.1201537 0.4805811 +0.5007803 0.1201537 0.4805811 +0.510322 0.1201537 0.4805811 +0.5195258 0.1201537 0.4805811 +0.5284142 0.1201537 0.4805811 +0.5370079 0.1201537 0.4805811 +0.5453253 0.1201537 0.4805811 +0.5533834 0.1201537 0.4805811 +0.5611974 0.1201537 0.4805811 +0.5687816 0.1201537 0.4805811 +0.092819 0.1409607 0.4805811 +0.1056428 0.1409607 0.4805811 +0.1201537 0.1409607 0.4805811 +0.1409607 0.1409607 0.4805811 +0.1678172 0.1409607 0.4805811 +0.1950164 0.1409607 0.4805811 +0.2210581 0.1409607 0.4805811 +0.245636 0.1409607 0.4805811 +0.2686816 0.1409607 0.4805811 +0.2902431 0.1409607 0.4805811 +0.3104189 0.1409607 0.4805811 +0.3293248 0.1409607 0.4805811 +0.3470774 0.1409607 0.4805811 +0.3637862 0.1409607 0.4805811 +0.3795513 0.1409607 0.4805811 +0.3944623 0.1409607 0.4805811 +0.4085988 0.1409607 0.4805811 +0.4220313 0.1409607 0.4805811 +0.4348222 0.1409607 0.4805811 +0.4470264 0.1409607 0.4805811 +0.4586928 0.1409607 0.4805811 +0.4698649 0.1409607 0.4805811 +0.4805811 0.1409607 0.4805811 +0.490876 0.1409607 0.4805811 +0.5007803 0.1409607 0.4805811 +0.510322 0.1409607 0.4805811 +0.5195258 0.1409607 0.4805811 +0.5284142 0.1409607 0.4805811 +0.5370079 0.1409607 0.4805811 +0.5453253 0.1409607 0.4805811 +0.5533834 0.1409607 0.4805811 +0.5611974 0.1409607 0.4805811 +0.5687816 0.1409607 0.4805811 +0.092819 0.1678172 0.4805811 +0.1056428 0.1678172 0.4805811 +0.1201537 0.1678172 0.4805811 +0.1409607 0.1678172 0.4805811 +0.1678172 0.1678172 0.4805811 +0.1950164 0.1678172 0.4805811 +0.2210581 0.1678172 0.4805811 +0.245636 0.1678172 0.4805811 +0.2686816 0.1678172 0.4805811 +0.2902431 0.1678172 0.4805811 +0.3104189 0.1678172 0.4805811 +0.3293248 0.1678172 0.4805811 +0.3470774 0.1678172 0.4805811 +0.3637862 0.1678172 0.4805811 +0.3795513 0.1678172 0.4805811 +0.3944623 0.1678172 0.4805811 +0.4085988 0.1678172 0.4805811 +0.4220313 0.1678172 0.4805811 +0.4348222 0.1678172 0.4805811 +0.4470264 0.1678172 0.4805811 +0.4586928 0.1678172 0.4805811 +0.4698649 0.1678172 0.4805811 +0.4805811 0.1678172 0.4805811 +0.490876 0.1678172 0.4805811 +0.5007803 0.1678172 0.4805811 +0.510322 0.1678172 0.4805811 +0.5195258 0.1678172 0.4805811 +0.5284142 0.1678172 0.4805811 +0.5370079 0.1678172 0.4805811 +0.5453253 0.1678172 0.4805811 +0.5533834 0.1678172 0.4805811 +0.5611974 0.1678172 0.4805811 +0.5687816 0.1678172 0.4805811 +0.092819 0.1950164 0.4805811 +0.1056428 0.1950164 0.4805811 +0.1201537 0.1950164 0.4805811 +0.1409607 0.1950164 0.4805811 +0.1678172 0.1950164 0.4805811 +0.1950164 0.1950164 0.4805811 +0.2210581 0.1950164 0.4805811 +0.245636 0.1950164 0.4805811 +0.2686816 0.1950164 0.4805811 +0.2902431 0.1950164 0.4805811 +0.3104189 0.1950164 0.4805811 +0.3293248 0.1950164 0.4805811 +0.3470774 0.1950164 0.4805811 +0.3637862 0.1950164 0.4805811 +0.3795513 0.1950164 0.4805811 +0.3944623 0.1950164 0.4805811 +0.4085988 0.1950164 0.4805811 +0.4220313 0.1950164 0.4805811 +0.4348222 0.1950164 0.4805811 +0.4470264 0.1950164 0.4805811 +0.4586928 0.1950164 0.4805811 +0.4698649 0.1950164 0.4805811 +0.4805811 0.1950164 0.4805811 +0.490876 0.1950164 0.4805811 +0.5007803 0.1950164 0.4805811 +0.510322 0.1950164 0.4805811 +0.5195258 0.1950164 0.4805811 +0.5284142 0.1950164 0.4805811 +0.5370079 0.1950164 0.4805811 +0.5453253 0.1950164 0.4805811 +0.5533834 0.1950164 0.4805811 +0.5611974 0.1950164 0.4805811 +0.5687816 0.1950164 0.4805811 +0.092819 0.2210581 0.4805811 +0.1056428 0.2210581 0.4805811 +0.1201537 0.2210581 0.4805811 +0.1409607 0.2210581 0.4805811 +0.1678172 0.2210581 0.4805811 +0.1950164 0.2210581 0.4805811 +0.2210581 0.2210581 0.4805811 +0.245636 0.2210581 0.4805811 +0.2686816 0.2210581 0.4805811 +0.2902431 0.2210581 0.4805811 +0.3104189 0.2210581 0.4805811 +0.3293248 0.2210581 0.4805811 +0.3470774 0.2210581 0.4805811 +0.3637862 0.2210581 0.4805811 +0.3795513 0.2210581 0.4805811 +0.3944623 0.2210581 0.4805811 +0.4085988 0.2210581 0.4805811 +0.4220313 0.2210581 0.4805811 +0.4348222 0.2210581 0.4805811 +0.4470264 0.2210581 0.4805811 +0.4586928 0.2210581 0.4805811 +0.4698649 0.2210581 0.4805811 +0.4805811 0.2210581 0.4805811 +0.490876 0.2210581 0.4805811 +0.5007803 0.2210581 0.4805811 +0.510322 0.2210581 0.4805811 +0.5195258 0.2210581 0.4805811 +0.5284142 0.2210581 0.4805811 +0.5370079 0.2210581 0.4805811 +0.5453253 0.2210581 0.4805811 +0.5533834 0.2210581 0.4805811 +0.5611974 0.2210581 0.4805811 +0.5687816 0.2210581 0.4805811 +0.092819 0.245636 0.4805811 +0.1056428 0.245636 0.4805811 +0.1201537 0.245636 0.4805811 +0.1409607 0.245636 0.4805811 +0.1678172 0.245636 0.4805811 +0.1950164 0.245636 0.4805811 +0.2210581 0.245636 0.4805811 +0.245636 0.245636 0.4805811 +0.2686816 0.245636 0.4805811 +0.2902431 0.245636 0.4805811 +0.3104189 0.245636 0.4805811 +0.3293248 0.245636 0.4805811 +0.3470774 0.245636 0.4805811 +0.3637862 0.245636 0.4805811 +0.3795513 0.245636 0.4805811 +0.3944623 0.245636 0.4805811 +0.4085988 0.245636 0.4805811 +0.4220313 0.245636 0.4805811 +0.4348222 0.245636 0.4805811 +0.4470264 0.245636 0.4805811 +0.4586928 0.245636 0.4805811 +0.4698649 0.245636 0.4805811 +0.4805811 0.245636 0.4805811 +0.490876 0.245636 0.4805811 +0.5007803 0.245636 0.4805811 +0.510322 0.245636 0.4805811 +0.5195258 0.245636 0.4805811 +0.5284142 0.245636 0.4805811 +0.5370079 0.245636 0.4805811 +0.5453253 0.245636 0.4805811 +0.5533834 0.245636 0.4805811 +0.5611974 0.245636 0.4805811 +0.5687816 0.245636 0.4805811 +0.092819 0.2686816 0.4805811 +0.1056428 0.2686816 0.4805811 +0.1201537 0.2686816 0.4805811 +0.1409607 0.2686816 0.4805811 +0.1678172 0.2686816 0.4805811 +0.1950164 0.2686816 0.4805811 +0.2210581 0.2686816 0.4805811 +0.245636 0.2686816 0.4805811 +0.2686816 0.2686816 0.4805811 +0.2902431 0.2686816 0.4805811 +0.3104189 0.2686816 0.4805811 +0.3293248 0.2686816 0.4805811 +0.3470774 0.2686816 0.4805811 +0.3637862 0.2686816 0.4805811 +0.3795513 0.2686816 0.4805811 +0.3944623 0.2686816 0.4805811 +0.4085988 0.2686816 0.4805811 +0.4220313 0.2686816 0.4805811 +0.4348222 0.2686816 0.4805811 +0.4470264 0.2686816 0.4805811 +0.4586928 0.2686816 0.4805811 +0.4698649 0.2686816 0.4805811 +0.4805811 0.2686816 0.4805811 +0.490876 0.2686816 0.4805811 +0.5007803 0.2686816 0.4805811 +0.510322 0.2686816 0.4805811 +0.5195258 0.2686816 0.4805811 +0.5284142 0.2686816 0.4805811 +0.5370079 0.2686816 0.4805811 +0.5453253 0.2686816 0.4805811 +0.5533834 0.2686816 0.4805811 +0.5611974 0.2686816 0.4805811 +0.5687816 0.2686816 0.4805811 +0.092819 0.2902431 0.4805811 +0.1056428 0.2902431 0.4805811 +0.1201537 0.2902431 0.4805811 +0.1409607 0.2902431 0.4805811 +0.1678172 0.2902431 0.4805811 +0.1950164 0.2902431 0.4805811 +0.2210581 0.2902431 0.4805811 +0.245636 0.2902431 0.4805811 +0.2686816 0.2902431 0.4805811 +0.2902431 0.2902431 0.4805811 +0.3104189 0.2902431 0.4805811 +0.3293248 0.2902431 0.4805811 +0.3470774 0.2902431 0.4805811 +0.3637862 0.2902431 0.4805811 +0.3795513 0.2902431 0.4805811 +0.3944623 0.2902431 0.4805811 +0.4085988 0.2902431 0.4805811 +0.4220313 0.2902431 0.4805811 +0.4348222 0.2902431 0.4805811 +0.4470264 0.2902431 0.4805811 +0.4586928 0.2902431 0.4805811 +0.4698649 0.2902431 0.4805811 +0.4805811 0.2902431 0.4805811 +0.490876 0.2902431 0.4805811 +0.5007803 0.2902431 0.4805811 +0.510322 0.2902431 0.4805811 +0.5195258 0.2902431 0.4805811 +0.5284142 0.2902431 0.4805811 +0.5370079 0.2902431 0.4805811 +0.5453253 0.2902431 0.4805811 +0.5533834 0.2902431 0.4805811 +0.5611974 0.2902431 0.4805811 +0.5687816 0.2902431 0.4805811 +0.092819 0.3104189 0.4805811 +0.1056428 0.3104189 0.4805811 +0.1201537 0.3104189 0.4805811 +0.1409607 0.3104189 0.4805811 +0.1678172 0.3104189 0.4805811 +0.1950164 0.3104189 0.4805811 +0.2210581 0.3104189 0.4805811 +0.245636 0.3104189 0.4805811 +0.2686816 0.3104189 0.4805811 +0.2902431 0.3104189 0.4805811 +0.3104189 0.3104189 0.4805811 +0.3293248 0.3104189 0.4805811 +0.3470774 0.3104189 0.4805811 +0.3637862 0.3104189 0.4805811 +0.3795513 0.3104189 0.4805811 +0.3944623 0.3104189 0.4805811 +0.4085988 0.3104189 0.4805811 +0.4220313 0.3104189 0.4805811 +0.4348222 0.3104189 0.4805811 +0.4470264 0.3104189 0.4805811 +0.4586928 0.3104189 0.4805811 +0.4698649 0.3104189 0.4805811 +0.4805811 0.3104189 0.4805811 +0.490876 0.3104189 0.4805811 +0.5007803 0.3104189 0.4805811 +0.510322 0.3104189 0.4805811 +0.5195258 0.3104189 0.4805811 +0.5284142 0.3104189 0.4805811 +0.5370079 0.3104189 0.4805811 +0.5453253 0.3104189 0.4805811 +0.5533834 0.3104189 0.4805811 +0.5611974 0.3104189 0.4805811 +0.5687816 0.3104189 0.4805811 +0.092819 0.3293248 0.4805811 +0.1056428 0.3293248 0.4805811 +0.1201537 0.3293248 0.4805811 +0.1409607 0.3293248 0.4805811 +0.1678172 0.3293248 0.4805811 +0.1950164 0.3293248 0.4805811 +0.2210581 0.3293248 0.4805811 +0.245636 0.3293248 0.4805811 +0.2686816 0.3293248 0.4805811 +0.2902431 0.3293248 0.4805811 +0.3104189 0.3293248 0.4805811 +0.3293248 0.3293248 0.4805811 +0.3470774 0.3293248 0.4805811 +0.3637862 0.3293248 0.4805811 +0.3795513 0.3293248 0.4805811 +0.3944623 0.3293248 0.4805811 +0.4085988 0.3293248 0.4805811 +0.4220313 0.3293248 0.4805811 +0.4348222 0.3293248 0.4805811 +0.4470264 0.3293248 0.4805811 +0.4586928 0.3293248 0.4805811 +0.4698649 0.3293248 0.4805811 +0.4805811 0.3293248 0.4805811 +0.490876 0.3293248 0.4805811 +0.5007803 0.3293248 0.4805811 +0.510322 0.3293248 0.4805811 +0.5195258 0.3293248 0.4805811 +0.5284142 0.3293248 0.4805811 +0.5370079 0.3293248 0.4805811 +0.5453253 0.3293248 0.4805811 +0.5533834 0.3293248 0.4805811 +0.5611974 0.3293248 0.4805811 +0.5687816 0.3293248 0.4805811 +0.092819 0.3470774 0.4805811 +0.1056428 0.3470774 0.4805811 +0.1201537 0.3470774 0.4805811 +0.1409607 0.3470774 0.4805811 +0.1678172 0.3470774 0.4805811 +0.1950164 0.3470774 0.4805811 +0.2210581 0.3470774 0.4805811 +0.245636 0.3470774 0.4805811 +0.2686816 0.3470774 0.4805811 +0.2902431 0.3470774 0.4805811 +0.3104189 0.3470774 0.4805811 +0.3293248 0.3470774 0.4805811 +0.3470774 0.3470774 0.4805811 +0.3637862 0.3470774 0.4805811 +0.3795513 0.3470774 0.4805811 +0.3944623 0.3470774 0.4805811 +0.4085988 0.3470774 0.4805811 +0.4220313 0.3470774 0.4805811 +0.4348222 0.3470774 0.4805811 +0.4470264 0.3470774 0.4805811 +0.4586928 0.3470774 0.4805811 +0.4698649 0.3470774 0.4805811 +0.4805811 0.3470774 0.4805811 +0.490876 0.3470774 0.4805811 +0.5007803 0.3470774 0.4805811 +0.510322 0.3470774 0.4805811 +0.5195258 0.3470774 0.4805811 +0.5284142 0.3470774 0.4805811 +0.5370079 0.3470774 0.4805811 +0.5453253 0.3470774 0.4805811 +0.5533834 0.3470774 0.4805811 +0.5611974 0.3470774 0.4805811 +0.5687816 0.3470774 0.4805811 +0.092819 0.3637862 0.4805811 +0.1056428 0.3637862 0.4805811 +0.1201537 0.3637862 0.4805811 +0.1409607 0.3637862 0.4805811 +0.1678172 0.3637862 0.4805811 +0.1950164 0.3637862 0.4805811 +0.2210581 0.3637862 0.4805811 +0.245636 0.3637862 0.4805811 +0.2686816 0.3637862 0.4805811 +0.2902431 0.3637862 0.4805811 +0.3104189 0.3637862 0.4805811 +0.3293248 0.3637862 0.4805811 +0.3470774 0.3637862 0.4805811 +0.3637862 0.3637862 0.4805811 +0.3795513 0.3637862 0.4805811 +0.3944623 0.3637862 0.4805811 +0.4085988 0.3637862 0.4805811 +0.4220313 0.3637862 0.4805811 +0.4348222 0.3637862 0.4805811 +0.4470264 0.3637862 0.4805811 +0.4586928 0.3637862 0.4805811 +0.4698649 0.3637862 0.4805811 +0.4805811 0.3637862 0.4805811 +0.490876 0.3637862 0.4805811 +0.5007803 0.3637862 0.4805811 +0.510322 0.3637862 0.4805811 +0.5195258 0.3637862 0.4805811 +0.5284142 0.3637862 0.4805811 +0.5370079 0.3637862 0.4805811 +0.5453253 0.3637862 0.4805811 +0.5533834 0.3637862 0.4805811 +0.5611974 0.3637862 0.4805811 +0.5687816 0.3637862 0.4805811 +0.092819 0.3795513 0.4805811 +0.1056428 0.3795513 0.4805811 +0.1201537 0.3795513 0.4805811 +0.1409607 0.3795513 0.4805811 +0.1678172 0.3795513 0.4805811 +0.1950164 0.3795513 0.4805811 +0.2210581 0.3795513 0.4805811 +0.245636 0.3795513 0.4805811 +0.2686816 0.3795513 0.4805811 +0.2902431 0.3795513 0.4805811 +0.3104189 0.3795513 0.4805811 +0.3293248 0.3795513 0.4805811 +0.3470774 0.3795513 0.4805811 +0.3637862 0.3795513 0.4805811 +0.3795513 0.3795513 0.4805811 +0.3944623 0.3795513 0.4805811 +0.4085988 0.3795513 0.4805811 +0.4220313 0.3795513 0.4805811 +0.4348222 0.3795513 0.4805811 +0.4470264 0.3795513 0.4805811 +0.4586928 0.3795513 0.4805811 +0.4698649 0.3795513 0.4805811 +0.4805811 0.3795513 0.4805811 +0.490876 0.3795513 0.4805811 +0.5007803 0.3795513 0.4805811 +0.510322 0.3795513 0.4805811 +0.5195258 0.3795513 0.4805811 +0.5284142 0.3795513 0.4805811 +0.5370079 0.3795513 0.4805811 +0.5453253 0.3795513 0.4805811 +0.5533834 0.3795513 0.4805811 +0.5611974 0.3795513 0.4805811 +0.5687816 0.3795513 0.4805811 +0.092819 0.3944623 0.4805811 +0.1056428 0.3944623 0.4805811 +0.1201537 0.3944623 0.4805811 +0.1409607 0.3944623 0.4805811 +0.1678172 0.3944623 0.4805811 +0.1950164 0.3944623 0.4805811 +0.2210581 0.3944623 0.4805811 +0.245636 0.3944623 0.4805811 +0.2686816 0.3944623 0.4805811 +0.2902431 0.3944623 0.4805811 +0.3104189 0.3944623 0.4805811 +0.3293248 0.3944623 0.4805811 +0.3470774 0.3944623 0.4805811 +0.3637862 0.3944623 0.4805811 +0.3795513 0.3944623 0.4805811 +0.3944623 0.3944623 0.4805811 +0.4085988 0.3944623 0.4805811 +0.4220313 0.3944623 0.4805811 +0.4348222 0.3944623 0.4805811 +0.4470264 0.3944623 0.4805811 +0.4586928 0.3944623 0.4805811 +0.4698649 0.3944623 0.4805811 +0.4805811 0.3944623 0.4805811 +0.490876 0.3944623 0.4805811 +0.5007803 0.3944623 0.4805811 +0.510322 0.3944623 0.4805811 +0.5195258 0.3944623 0.4805811 +0.5284142 0.3944623 0.4805811 +0.5370079 0.3944623 0.4805811 +0.5453253 0.3944623 0.4805811 +0.5533834 0.3944623 0.4805811 +0.5611974 0.3944623 0.4805811 +0.5687816 0.3944623 0.4805811 +0.092819 0.4085988 0.4805811 +0.1056428 0.4085988 0.4805811 +0.1201537 0.4085988 0.4805811 +0.1409607 0.4085988 0.4805811 +0.1678172 0.4085988 0.4805811 +0.1950164 0.4085988 0.4805811 +0.2210581 0.4085988 0.4805811 +0.245636 0.4085988 0.4805811 +0.2686816 0.4085988 0.4805811 +0.2902431 0.4085988 0.4805811 +0.3104189 0.4085988 0.4805811 +0.3293248 0.4085988 0.4805811 +0.3470774 0.4085988 0.4805811 +0.3637862 0.4085988 0.4805811 +0.3795513 0.4085988 0.4805811 +0.3944623 0.4085988 0.4805811 +0.4085988 0.4085988 0.4805811 +0.4220313 0.4085988 0.4805811 +0.4348222 0.4085988 0.4805811 +0.4470264 0.4085988 0.4805811 +0.4586928 0.4085988 0.4805811 +0.4698649 0.4085988 0.4805811 +0.4805811 0.4085988 0.4805811 +0.490876 0.4085988 0.4805811 +0.5007803 0.4085988 0.4805811 +0.510322 0.4085988 0.4805811 +0.5195258 0.4085988 0.4805811 +0.5284142 0.4085988 0.4805811 +0.5370079 0.4085988 0.4805811 +0.5453253 0.4085988 0.4805811 +0.5533834 0.4085988 0.4805811 +0.5611974 0.4085988 0.4805811 +0.5687816 0.4085988 0.4805811 +0.092819 0.4220313 0.4805811 +0.1056428 0.4220313 0.4805811 +0.1201537 0.4220313 0.4805811 +0.1409607 0.4220313 0.4805811 +0.1678172 0.4220313 0.4805811 +0.1950164 0.4220313 0.4805811 +0.2210581 0.4220313 0.4805811 +0.245636 0.4220313 0.4805811 +0.2686816 0.4220313 0.4805811 +0.2902431 0.4220313 0.4805811 +0.3104189 0.4220313 0.4805811 +0.3293248 0.4220313 0.4805811 +0.3470774 0.4220313 0.4805811 +0.3637862 0.4220313 0.4805811 +0.3795513 0.4220313 0.4805811 +0.3944623 0.4220313 0.4805811 +0.4085988 0.4220313 0.4805811 +0.4220313 0.4220313 0.4805811 +0.4348222 0.4220313 0.4805811 +0.4470264 0.4220313 0.4805811 +0.4586928 0.4220313 0.4805811 +0.4698649 0.4220313 0.4805811 +0.4805811 0.4220313 0.4805811 +0.490876 0.4220313 0.4805811 +0.5007803 0.4220313 0.4805811 +0.510322 0.4220313 0.4805811 +0.5195258 0.4220313 0.4805811 +0.5284142 0.4220313 0.4805811 +0.5370079 0.4220313 0.4805811 +0.5453253 0.4220313 0.4805811 +0.5533834 0.4220313 0.4805811 +0.5611974 0.4220313 0.4805811 +0.5687816 0.4220313 0.4805811 +0.092819 0.4348222 0.4805811 +0.1056428 0.4348222 0.4805811 +0.1201537 0.4348222 0.4805811 +0.1409607 0.4348222 0.4805811 +0.1678172 0.4348222 0.4805811 +0.1950164 0.4348222 0.4805811 +0.2210581 0.4348222 0.4805811 +0.245636 0.4348222 0.4805811 +0.2686816 0.4348222 0.4805811 +0.2902431 0.4348222 0.4805811 +0.3104189 0.4348222 0.4805811 +0.3293248 0.4348222 0.4805811 +0.3470774 0.4348222 0.4805811 +0.3637862 0.4348222 0.4805811 +0.3795513 0.4348222 0.4805811 +0.3944623 0.4348222 0.4805811 +0.4085988 0.4348222 0.4805811 +0.4220313 0.4348222 0.4805811 +0.4348222 0.4348222 0.4805811 +0.4470264 0.4348222 0.4805811 +0.4586928 0.4348222 0.4805811 +0.4698649 0.4348222 0.4805811 +0.4805811 0.4348222 0.4805811 +0.490876 0.4348222 0.4805811 +0.5007803 0.4348222 0.4805811 +0.510322 0.4348222 0.4805811 +0.5195258 0.4348222 0.4805811 +0.5284142 0.4348222 0.4805811 +0.5370079 0.4348222 0.4805811 +0.5453253 0.4348222 0.4805811 +0.5533834 0.4348222 0.4805811 +0.5611974 0.4348222 0.4805811 +0.5687816 0.4348222 0.4805811 +0.092819 0.4470264 0.4805811 +0.1056428 0.4470264 0.4805811 +0.1201537 0.4470264 0.4805811 +0.1409607 0.4470264 0.4805811 +0.1678172 0.4470264 0.4805811 +0.1950164 0.4470264 0.4805811 +0.2210581 0.4470264 0.4805811 +0.245636 0.4470264 0.4805811 +0.2686816 0.4470264 0.4805811 +0.2902431 0.4470264 0.4805811 +0.3104189 0.4470264 0.4805811 +0.3293248 0.4470264 0.4805811 +0.3470774 0.4470264 0.4805811 +0.3637862 0.4470264 0.4805811 +0.3795513 0.4470264 0.4805811 +0.3944623 0.4470264 0.4805811 +0.4085988 0.4470264 0.4805811 +0.4220313 0.4470264 0.4805811 +0.4348222 0.4470264 0.4805811 +0.4470264 0.4470264 0.4805811 +0.4586928 0.4470264 0.4805811 +0.4698649 0.4470264 0.4805811 +0.4805811 0.4470264 0.4805811 +0.490876 0.4470264 0.4805811 +0.5007803 0.4470264 0.4805811 +0.510322 0.4470264 0.4805811 +0.5195258 0.4470264 0.4805811 +0.5284142 0.4470264 0.4805811 +0.5370079 0.4470264 0.4805811 +0.5453253 0.4470264 0.4805811 +0.5533834 0.4470264 0.4805811 +0.5611974 0.4470264 0.4805811 +0.5687816 0.4470264 0.4805811 +0.092819 0.4586928 0.4805811 +0.1056428 0.4586928 0.4805811 +0.1201537 0.4586928 0.4805811 +0.1409607 0.4586928 0.4805811 +0.1678172 0.4586928 0.4805811 +0.1950164 0.4586928 0.4805811 +0.2210581 0.4586928 0.4805811 +0.245636 0.4586928 0.4805811 +0.2686816 0.4586928 0.4805811 +0.2902431 0.4586928 0.4805811 +0.3104189 0.4586928 0.4805811 +0.3293248 0.4586928 0.4805811 +0.3470774 0.4586928 0.4805811 +0.3637862 0.4586928 0.4805811 +0.3795513 0.4586928 0.4805811 +0.3944623 0.4586928 0.4805811 +0.4085988 0.4586928 0.4805811 +0.4220313 0.4586928 0.4805811 +0.4348222 0.4586928 0.4805811 +0.4470264 0.4586928 0.4805811 +0.4586928 0.4586928 0.4805811 +0.4698649 0.4586928 0.4805811 +0.4805811 0.4586928 0.4805811 +0.490876 0.4586928 0.4805811 +0.5007803 0.4586928 0.4805811 +0.510322 0.4586928 0.4805811 +0.5195258 0.4586928 0.4805811 +0.5284142 0.4586928 0.4805811 +0.5370079 0.4586928 0.4805811 +0.5453253 0.4586928 0.4805811 +0.5533834 0.4586928 0.4805811 +0.5611974 0.4586928 0.4805811 +0.5687816 0.4586928 0.4805811 +0.092819 0.4698649 0.4805811 +0.1056428 0.4698649 0.4805811 +0.1201537 0.4698649 0.4805811 +0.1409607 0.4698649 0.4805811 +0.1678172 0.4698649 0.4805811 +0.1950164 0.4698649 0.4805811 +0.2210581 0.4698649 0.4805811 +0.245636 0.4698649 0.4805811 +0.2686816 0.4698649 0.4805811 +0.2902431 0.4698649 0.4805811 +0.3104189 0.4698649 0.4805811 +0.3293248 0.4698649 0.4805811 +0.3470774 0.4698649 0.4805811 +0.3637862 0.4698649 0.4805811 +0.3795513 0.4698649 0.4805811 +0.3944623 0.4698649 0.4805811 +0.4085988 0.4698649 0.4805811 +0.4220313 0.4698649 0.4805811 +0.4348222 0.4698649 0.4805811 +0.4470264 0.4698649 0.4805811 +0.4586928 0.4698649 0.4805811 +0.4698649 0.4698649 0.4805811 +0.4805811 0.4698649 0.4805811 +0.490876 0.4698649 0.4805811 +0.5007803 0.4698649 0.4805811 +0.510322 0.4698649 0.4805811 +0.5195258 0.4698649 0.4805811 +0.5284142 0.4698649 0.4805811 +0.5370079 0.4698649 0.4805811 +0.5453253 0.4698649 0.4805811 +0.5533834 0.4698649 0.4805811 +0.5611974 0.4698649 0.4805811 +0.5687816 0.4698649 0.4805811 +0.092819 0.4805811 0.4805811 +0.1056428 0.4805811 0.4805811 +0.1201537 0.4805811 0.4805811 +0.1409607 0.4805811 0.4805811 +0.1678172 0.4805811 0.4805811 +0.1950164 0.4805811 0.4805811 +0.2210581 0.4805811 0.4805811 +0.245636 0.4805811 0.4805811 +0.2686816 0.4805811 0.4805811 +0.2902431 0.4805811 0.4805811 +0.3104189 0.4805811 0.4805811 +0.3293248 0.4805811 0.4805811 +0.3470774 0.4805811 0.4805811 +0.3637862 0.4805811 0.4805811 +0.3795513 0.4805811 0.4805811 +0.3944623 0.4805811 0.4805811 +0.4085988 0.4805811 0.4805811 +0.4220313 0.4805811 0.4805811 +0.4348222 0.4805811 0.4805811 +0.4470264 0.4805811 0.4805811 +0.4586928 0.4805811 0.4805811 +0.4698649 0.4805811 0.4805811 +0.4805811 0.4805811 0.4805811 +0.490876 0.4805811 0.4805811 +0.5007803 0.4805811 0.4805811 +0.510322 0.4805811 0.4805811 +0.5195258 0.4805811 0.4805811 +0.5284142 0.4805811 0.4805811 +0.5370079 0.4805811 0.4805811 +0.5453253 0.4805811 0.4805811 +0.5533834 0.4805811 0.4805811 +0.5611974 0.4805811 0.4805811 +0.5687816 0.4805811 0.4805811 +0.092819 0.490876 0.4805811 +0.1056428 0.490876 0.4805811 +0.1201537 0.490876 0.4805811 +0.1409607 0.490876 0.4805811 +0.1678172 0.490876 0.4805811 +0.1950164 0.490876 0.4805811 +0.2210581 0.490876 0.4805811 +0.245636 0.490876 0.4805811 +0.2686816 0.490876 0.4805811 +0.2902431 0.490876 0.4805811 +0.3104189 0.490876 0.4805811 +0.3293248 0.490876 0.4805811 +0.3470774 0.490876 0.4805811 +0.3637862 0.490876 0.4805811 +0.3795513 0.490876 0.4805811 +0.3944623 0.490876 0.4805811 +0.4085988 0.490876 0.4805811 +0.4220313 0.490876 0.4805811 +0.4348222 0.490876 0.4805811 +0.4470264 0.490876 0.4805811 +0.4586928 0.490876 0.4805811 +0.4698649 0.490876 0.4805811 +0.4805811 0.490876 0.4805811 +0.490876 0.490876 0.4805811 +0.5007803 0.490876 0.4805811 +0.510322 0.490876 0.4805811 +0.5195258 0.490876 0.4805811 +0.5284142 0.490876 0.4805811 +0.5370079 0.490876 0.4805811 +0.5453253 0.490876 0.4805811 +0.5533834 0.490876 0.4805811 +0.5611974 0.490876 0.4805811 +0.5687816 0.490876 0.4805811 +0.092819 0.5007803 0.4805811 +0.1056428 0.5007803 0.4805811 +0.1201537 0.5007803 0.4805811 +0.1409607 0.5007803 0.4805811 +0.1678172 0.5007803 0.4805811 +0.1950164 0.5007803 0.4805811 +0.2210581 0.5007803 0.4805811 +0.245636 0.5007803 0.4805811 +0.2686816 0.5007803 0.4805811 +0.2902431 0.5007803 0.4805811 +0.3104189 0.5007803 0.4805811 +0.3293248 0.5007803 0.4805811 +0.3470774 0.5007803 0.4805811 +0.3637862 0.5007803 0.4805811 +0.3795513 0.5007803 0.4805811 +0.3944623 0.5007803 0.4805811 +0.4085988 0.5007803 0.4805811 +0.4220313 0.5007803 0.4805811 +0.4348222 0.5007803 0.4805811 +0.4470264 0.5007803 0.4805811 +0.4586928 0.5007803 0.4805811 +0.4698649 0.5007803 0.4805811 +0.4805811 0.5007803 0.4805811 +0.490876 0.5007803 0.4805811 +0.5007803 0.5007803 0.4805811 +0.510322 0.5007803 0.4805811 +0.5195258 0.5007803 0.4805811 +0.5284142 0.5007803 0.4805811 +0.5370079 0.5007803 0.4805811 +0.5453253 0.5007803 0.4805811 +0.5533834 0.5007803 0.4805811 +0.5611974 0.5007803 0.4805811 +0.5687816 0.5007803 0.4805811 +0.092819 0.510322 0.4805811 +0.1056428 0.510322 0.4805811 +0.1201537 0.510322 0.4805811 +0.1409607 0.510322 0.4805811 +0.1678172 0.510322 0.4805811 +0.1950164 0.510322 0.4805811 +0.2210581 0.510322 0.4805811 +0.245636 0.510322 0.4805811 +0.2686816 0.510322 0.4805811 +0.2902431 0.510322 0.4805811 +0.3104189 0.510322 0.4805811 +0.3293248 0.510322 0.4805811 +0.3470774 0.510322 0.4805811 +0.3637862 0.510322 0.4805811 +0.3795513 0.510322 0.4805811 +0.3944623 0.510322 0.4805811 +0.4085988 0.510322 0.4805811 +0.4220313 0.510322 0.4805811 +0.4348222 0.510322 0.4805811 +0.4470264 0.510322 0.4805811 +0.4586928 0.510322 0.4805811 +0.4698649 0.510322 0.4805811 +0.4805811 0.510322 0.4805811 +0.490876 0.510322 0.4805811 +0.5007803 0.510322 0.4805811 +0.510322 0.510322 0.4805811 +0.5195258 0.510322 0.4805811 +0.5284142 0.510322 0.4805811 +0.5370079 0.510322 0.4805811 +0.5453253 0.510322 0.4805811 +0.5533834 0.510322 0.4805811 +0.5611974 0.510322 0.4805811 +0.5687816 0.510322 0.4805811 +0.092819 0.5195258 0.4805811 +0.1056428 0.5195258 0.4805811 +0.1201537 0.5195258 0.4805811 +0.1409607 0.5195258 0.4805811 +0.1678172 0.5195258 0.4805811 +0.1950164 0.5195258 0.4805811 +0.2210581 0.5195258 0.4805811 +0.245636 0.5195258 0.4805811 +0.2686816 0.5195258 0.4805811 +0.2902431 0.5195258 0.4805811 +0.3104189 0.5195258 0.4805811 +0.3293248 0.5195258 0.4805811 +0.3470774 0.5195258 0.4805811 +0.3637862 0.5195258 0.4805811 +0.3795513 0.5195258 0.4805811 +0.3944623 0.5195258 0.4805811 +0.4085988 0.5195258 0.4805811 +0.4220313 0.5195258 0.4805811 +0.4348222 0.5195258 0.4805811 +0.4470264 0.5195258 0.4805811 +0.4586928 0.5195258 0.4805811 +0.4698649 0.5195258 0.4805811 +0.4805811 0.5195258 0.4805811 +0.490876 0.5195258 0.4805811 +0.5007803 0.5195258 0.4805811 +0.510322 0.5195258 0.4805811 +0.5195258 0.5195258 0.4805811 +0.5284142 0.5195258 0.4805811 +0.5370079 0.5195258 0.4805811 +0.5453253 0.5195258 0.4805811 +0.5533834 0.5195258 0.4805811 +0.5611974 0.5195258 0.4805811 +0.5687816 0.5195258 0.4805811 +0.092819 0.5284142 0.4805811 +0.1056428 0.5284142 0.4805811 +0.1201537 0.5284142 0.4805811 +0.1409607 0.5284142 0.4805811 +0.1678172 0.5284142 0.4805811 +0.1950164 0.5284142 0.4805811 +0.2210581 0.5284142 0.4805811 +0.245636 0.5284142 0.4805811 +0.2686816 0.5284142 0.4805811 +0.2902431 0.5284142 0.4805811 +0.3104189 0.5284142 0.4805811 +0.3293248 0.5284142 0.4805811 +0.3470774 0.5284142 0.4805811 +0.3637862 0.5284142 0.4805811 +0.3795513 0.5284142 0.4805811 +0.3944623 0.5284142 0.4805811 +0.4085988 0.5284142 0.4805811 +0.4220313 0.5284142 0.4805811 +0.4348222 0.5284142 0.4805811 +0.4470264 0.5284142 0.4805811 +0.4586928 0.5284142 0.4805811 +0.4698649 0.5284142 0.4805811 +0.4805811 0.5284142 0.4805811 +0.490876 0.5284142 0.4805811 +0.5007803 0.5284142 0.4805811 +0.510322 0.5284142 0.4805811 +0.5195258 0.5284142 0.4805811 +0.5284142 0.5284142 0.4805811 +0.5370079 0.5284142 0.4805811 +0.5453253 0.5284142 0.4805811 +0.5533834 0.5284142 0.4805811 +0.5611974 0.5284142 0.4805811 +0.5687816 0.5284142 0.4805811 +0.092819 0.5370079 0.4805811 +0.1056428 0.5370079 0.4805811 +0.1201537 0.5370079 0.4805811 +0.1409607 0.5370079 0.4805811 +0.1678172 0.5370079 0.4805811 +0.1950164 0.5370079 0.4805811 +0.2210581 0.5370079 0.4805811 +0.245636 0.5370079 0.4805811 +0.2686816 0.5370079 0.4805811 +0.2902431 0.5370079 0.4805811 +0.3104189 0.5370079 0.4805811 +0.3293248 0.5370079 0.4805811 +0.3470774 0.5370079 0.4805811 +0.3637862 0.5370079 0.4805811 +0.3795513 0.5370079 0.4805811 +0.3944623 0.5370079 0.4805811 +0.4085988 0.5370079 0.4805811 +0.4220313 0.5370079 0.4805811 +0.4348222 0.5370079 0.4805811 +0.4470264 0.5370079 0.4805811 +0.4586928 0.5370079 0.4805811 +0.4698649 0.5370079 0.4805811 +0.4805811 0.5370079 0.4805811 +0.490876 0.5370079 0.4805811 +0.5007803 0.5370079 0.4805811 +0.510322 0.5370079 0.4805811 +0.5195258 0.5370079 0.4805811 +0.5284142 0.5370079 0.4805811 +0.5370079 0.5370079 0.4805811 +0.5453253 0.5370079 0.4805811 +0.5533834 0.5370079 0.4805811 +0.5611974 0.5370079 0.4805811 +0.5687816 0.5370079 0.4805811 +0.092819 0.5453253 0.4805811 +0.1056428 0.5453253 0.4805811 +0.1201537 0.5453253 0.4805811 +0.1409607 0.5453253 0.4805811 +0.1678172 0.5453253 0.4805811 +0.1950164 0.5453253 0.4805811 +0.2210581 0.5453253 0.4805811 +0.245636 0.5453253 0.4805811 +0.2686816 0.5453253 0.4805811 +0.2902431 0.5453253 0.4805811 +0.3104189 0.5453253 0.4805811 +0.3293248 0.5453253 0.4805811 +0.3470774 0.5453253 0.4805811 +0.3637862 0.5453253 0.4805811 +0.3795513 0.5453253 0.4805811 +0.3944623 0.5453253 0.4805811 +0.4085988 0.5453253 0.4805811 +0.4220313 0.5453253 0.4805811 +0.4348222 0.5453253 0.4805811 +0.4470264 0.5453253 0.4805811 +0.4586928 0.5453253 0.4805811 +0.4698649 0.5453253 0.4805811 +0.4805811 0.5453253 0.4805811 +0.490876 0.5453253 0.4805811 +0.5007803 0.5453253 0.4805811 +0.510322 0.5453253 0.4805811 +0.5195258 0.5453253 0.4805811 +0.5284142 0.5453253 0.4805811 +0.5370079 0.5453253 0.4805811 +0.5453253 0.5453253 0.4805811 +0.5533834 0.5453253 0.4805811 +0.5611974 0.5453253 0.4805811 +0.5687816 0.5453253 0.4805811 +0.092819 0.5533834 0.4805811 +0.1056428 0.5533834 0.4805811 +0.1201537 0.5533834 0.4805811 +0.1409607 0.5533834 0.4805811 +0.1678172 0.5533834 0.4805811 +0.1950164 0.5533834 0.4805811 +0.2210581 0.5533834 0.4805811 +0.245636 0.5533834 0.4805811 +0.2686816 0.5533834 0.4805811 +0.2902431 0.5533834 0.4805811 +0.3104189 0.5533834 0.4805811 +0.3293248 0.5533834 0.4805811 +0.3470774 0.5533834 0.4805811 +0.3637862 0.5533834 0.4805811 +0.3795513 0.5533834 0.4805811 +0.3944623 0.5533834 0.4805811 +0.4085988 0.5533834 0.4805811 +0.4220313 0.5533834 0.4805811 +0.4348222 0.5533834 0.4805811 +0.4470264 0.5533834 0.4805811 +0.4586928 0.5533834 0.4805811 +0.4698649 0.5533834 0.4805811 +0.4805811 0.5533834 0.4805811 +0.490876 0.5533834 0.4805811 +0.5007803 0.5533834 0.4805811 +0.510322 0.5533834 0.4805811 +0.5195258 0.5533834 0.4805811 +0.5284142 0.5533834 0.4805811 +0.5370079 0.5533834 0.4805811 +0.5453253 0.5533834 0.4805811 +0.5533834 0.5533834 0.4805811 +0.5611974 0.5533834 0.4805811 +0.5687816 0.5533834 0.4805811 +0.092819 0.5611974 0.4805811 +0.1056428 0.5611974 0.4805811 +0.1201537 0.5611974 0.4805811 +0.1409607 0.5611974 0.4805811 +0.1678172 0.5611974 0.4805811 +0.1950164 0.5611974 0.4805811 +0.2210581 0.5611974 0.4805811 +0.245636 0.5611974 0.4805811 +0.2686816 0.5611974 0.4805811 +0.2902431 0.5611974 0.4805811 +0.3104189 0.5611974 0.4805811 +0.3293248 0.5611974 0.4805811 +0.3470774 0.5611974 0.4805811 +0.3637862 0.5611974 0.4805811 +0.3795513 0.5611974 0.4805811 +0.3944623 0.5611974 0.4805811 +0.4085988 0.5611974 0.4805811 +0.4220313 0.5611974 0.4805811 +0.4348222 0.5611974 0.4805811 +0.4470264 0.5611974 0.4805811 +0.4586928 0.5611974 0.4805811 +0.4698649 0.5611974 0.4805811 +0.4805811 0.5611974 0.4805811 +0.490876 0.5611974 0.4805811 +0.5007803 0.5611974 0.4805811 +0.510322 0.5611974 0.4805811 +0.5195258 0.5611974 0.4805811 +0.5284142 0.5611974 0.4805811 +0.5370079 0.5611974 0.4805811 +0.5453253 0.5611974 0.4805811 +0.5533834 0.5611974 0.4805811 +0.5611974 0.5611974 0.4805811 +0.5687816 0.5611974 0.4805811 +0.092819 0.5687816 0.4805811 +0.1056428 0.5687816 0.4805811 +0.1201537 0.5687816 0.4805811 +0.1409607 0.5687816 0.4805811 +0.1678172 0.5687816 0.4805811 +0.1950164 0.5687816 0.4805811 +0.2210581 0.5687816 0.4805811 +0.245636 0.5687816 0.4805811 +0.2686816 0.5687816 0.4805811 +0.2902431 0.5687816 0.4805811 +0.3104189 0.5687816 0.4805811 +0.3293248 0.5687816 0.4805811 +0.3470774 0.5687816 0.4805811 +0.3637862 0.5687816 0.4805811 +0.3795513 0.5687816 0.4805811 +0.3944623 0.5687816 0.4805811 +0.4085988 0.5687816 0.4805811 +0.4220313 0.5687816 0.4805811 +0.4348222 0.5687816 0.4805811 +0.4470264 0.5687816 0.4805811 +0.4586928 0.5687816 0.4805811 +0.4698649 0.5687816 0.4805811 +0.4805811 0.5687816 0.4805811 +0.490876 0.5687816 0.4805811 +0.5007803 0.5687816 0.4805811 +0.510322 0.5687816 0.4805811 +0.5195258 0.5687816 0.4805811 +0.5284142 0.5687816 0.4805811 +0.5370079 0.5687816 0.4805811 +0.5453253 0.5687816 0.4805811 +0.5533834 0.5687816 0.4805811 +0.5611974 0.5687816 0.4805811 +0.5687816 0.5687816 0.4805811 +0.092819 0.092819 0.490876 +0.1056428 0.092819 0.490876 +0.1201537 0.092819 0.490876 +0.1409607 0.092819 0.490876 +0.1678172 0.092819 0.490876 +0.1950164 0.092819 0.490876 +0.2210581 0.092819 0.490876 +0.245636 0.092819 0.490876 +0.2686816 0.092819 0.490876 +0.2902431 0.092819 0.490876 +0.3104189 0.092819 0.490876 +0.3293248 0.092819 0.490876 +0.3470774 0.092819 0.490876 +0.3637862 0.092819 0.490876 +0.3795513 0.092819 0.490876 +0.3944623 0.092819 0.490876 +0.4085988 0.092819 0.490876 +0.4220313 0.092819 0.490876 +0.4348222 0.092819 0.490876 +0.4470264 0.092819 0.490876 +0.4586928 0.092819 0.490876 +0.4698649 0.092819 0.490876 +0.4805811 0.092819 0.490876 +0.490876 0.092819 0.490876 +0.5007803 0.092819 0.490876 +0.510322 0.092819 0.490876 +0.5195258 0.092819 0.490876 +0.5284142 0.092819 0.490876 +0.5370079 0.092819 0.490876 +0.5453253 0.092819 0.490876 +0.5533834 0.092819 0.490876 +0.5611974 0.092819 0.490876 +0.5687816 0.092819 0.490876 +0.092819 0.1056428 0.490876 +0.1056428 0.1056428 0.490876 +0.1201537 0.1056428 0.490876 +0.1409607 0.1056428 0.490876 +0.1678172 0.1056428 0.490876 +0.1950164 0.1056428 0.490876 +0.2210581 0.1056428 0.490876 +0.245636 0.1056428 0.490876 +0.2686816 0.1056428 0.490876 +0.2902431 0.1056428 0.490876 +0.3104189 0.1056428 0.490876 +0.3293248 0.1056428 0.490876 +0.3470774 0.1056428 0.490876 +0.3637862 0.1056428 0.490876 +0.3795513 0.1056428 0.490876 +0.3944623 0.1056428 0.490876 +0.4085988 0.1056428 0.490876 +0.4220313 0.1056428 0.490876 +0.4348222 0.1056428 0.490876 +0.4470264 0.1056428 0.490876 +0.4586928 0.1056428 0.490876 +0.4698649 0.1056428 0.490876 +0.4805811 0.1056428 0.490876 +0.490876 0.1056428 0.490876 +0.5007803 0.1056428 0.490876 +0.510322 0.1056428 0.490876 +0.5195258 0.1056428 0.490876 +0.5284142 0.1056428 0.490876 +0.5370079 0.1056428 0.490876 +0.5453253 0.1056428 0.490876 +0.5533834 0.1056428 0.490876 +0.5611974 0.1056428 0.490876 +0.5687816 0.1056428 0.490876 +0.092819 0.1201537 0.490876 +0.1056428 0.1201537 0.490876 +0.1201537 0.1201537 0.490876 +0.1409607 0.1201537 0.490876 +0.1678172 0.1201537 0.490876 +0.1950164 0.1201537 0.490876 +0.2210581 0.1201537 0.490876 +0.245636 0.1201537 0.490876 +0.2686816 0.1201537 0.490876 +0.2902431 0.1201537 0.490876 +0.3104189 0.1201537 0.490876 +0.3293248 0.1201537 0.490876 +0.3470774 0.1201537 0.490876 +0.3637862 0.1201537 0.490876 +0.3795513 0.1201537 0.490876 +0.3944623 0.1201537 0.490876 +0.4085988 0.1201537 0.490876 +0.4220313 0.1201537 0.490876 +0.4348222 0.1201537 0.490876 +0.4470264 0.1201537 0.490876 +0.4586928 0.1201537 0.490876 +0.4698649 0.1201537 0.490876 +0.4805811 0.1201537 0.490876 +0.490876 0.1201537 0.490876 +0.5007803 0.1201537 0.490876 +0.510322 0.1201537 0.490876 +0.5195258 0.1201537 0.490876 +0.5284142 0.1201537 0.490876 +0.5370079 0.1201537 0.490876 +0.5453253 0.1201537 0.490876 +0.5533834 0.1201537 0.490876 +0.5611974 0.1201537 0.490876 +0.5687816 0.1201537 0.490876 +0.092819 0.1409607 0.490876 +0.1056428 0.1409607 0.490876 +0.1201537 0.1409607 0.490876 +0.1409607 0.1409607 0.490876 +0.1678172 0.1409607 0.490876 +0.1950164 0.1409607 0.490876 +0.2210581 0.1409607 0.490876 +0.245636 0.1409607 0.490876 +0.2686816 0.1409607 0.490876 +0.2902431 0.1409607 0.490876 +0.3104189 0.1409607 0.490876 +0.3293248 0.1409607 0.490876 +0.3470774 0.1409607 0.490876 +0.3637862 0.1409607 0.490876 +0.3795513 0.1409607 0.490876 +0.3944623 0.1409607 0.490876 +0.4085988 0.1409607 0.490876 +0.4220313 0.1409607 0.490876 +0.4348222 0.1409607 0.490876 +0.4470264 0.1409607 0.490876 +0.4586928 0.1409607 0.490876 +0.4698649 0.1409607 0.490876 +0.4805811 0.1409607 0.490876 +0.490876 0.1409607 0.490876 +0.5007803 0.1409607 0.490876 +0.510322 0.1409607 0.490876 +0.5195258 0.1409607 0.490876 +0.5284142 0.1409607 0.490876 +0.5370079 0.1409607 0.490876 +0.5453253 0.1409607 0.490876 +0.5533834 0.1409607 0.490876 +0.5611974 0.1409607 0.490876 +0.5687816 0.1409607 0.490876 +0.092819 0.1678172 0.490876 +0.1056428 0.1678172 0.490876 +0.1201537 0.1678172 0.490876 +0.1409607 0.1678172 0.490876 +0.1678172 0.1678172 0.490876 +0.1950164 0.1678172 0.490876 +0.2210581 0.1678172 0.490876 +0.245636 0.1678172 0.490876 +0.2686816 0.1678172 0.490876 +0.2902431 0.1678172 0.490876 +0.3104189 0.1678172 0.490876 +0.3293248 0.1678172 0.490876 +0.3470774 0.1678172 0.490876 +0.3637862 0.1678172 0.490876 +0.3795513 0.1678172 0.490876 +0.3944623 0.1678172 0.490876 +0.4085988 0.1678172 0.490876 +0.4220313 0.1678172 0.490876 +0.4348222 0.1678172 0.490876 +0.4470264 0.1678172 0.490876 +0.4586928 0.1678172 0.490876 +0.4698649 0.1678172 0.490876 +0.4805811 0.1678172 0.490876 +0.490876 0.1678172 0.490876 +0.5007803 0.1678172 0.490876 +0.510322 0.1678172 0.490876 +0.5195258 0.1678172 0.490876 +0.5284142 0.1678172 0.490876 +0.5370079 0.1678172 0.490876 +0.5453253 0.1678172 0.490876 +0.5533834 0.1678172 0.490876 +0.5611974 0.1678172 0.490876 +0.5687816 0.1678172 0.490876 +0.092819 0.1950164 0.490876 +0.1056428 0.1950164 0.490876 +0.1201537 0.1950164 0.490876 +0.1409607 0.1950164 0.490876 +0.1678172 0.1950164 0.490876 +0.1950164 0.1950164 0.490876 +0.2210581 0.1950164 0.490876 +0.245636 0.1950164 0.490876 +0.2686816 0.1950164 0.490876 +0.2902431 0.1950164 0.490876 +0.3104189 0.1950164 0.490876 +0.3293248 0.1950164 0.490876 +0.3470774 0.1950164 0.490876 +0.3637862 0.1950164 0.490876 +0.3795513 0.1950164 0.490876 +0.3944623 0.1950164 0.490876 +0.4085988 0.1950164 0.490876 +0.4220313 0.1950164 0.490876 +0.4348222 0.1950164 0.490876 +0.4470264 0.1950164 0.490876 +0.4586928 0.1950164 0.490876 +0.4698649 0.1950164 0.490876 +0.4805811 0.1950164 0.490876 +0.490876 0.1950164 0.490876 +0.5007803 0.1950164 0.490876 +0.510322 0.1950164 0.490876 +0.5195258 0.1950164 0.490876 +0.5284142 0.1950164 0.490876 +0.5370079 0.1950164 0.490876 +0.5453253 0.1950164 0.490876 +0.5533834 0.1950164 0.490876 +0.5611974 0.1950164 0.490876 +0.5687816 0.1950164 0.490876 +0.092819 0.2210581 0.490876 +0.1056428 0.2210581 0.490876 +0.1201537 0.2210581 0.490876 +0.1409607 0.2210581 0.490876 +0.1678172 0.2210581 0.490876 +0.1950164 0.2210581 0.490876 +0.2210581 0.2210581 0.490876 +0.245636 0.2210581 0.490876 +0.2686816 0.2210581 0.490876 +0.2902431 0.2210581 0.490876 +0.3104189 0.2210581 0.490876 +0.3293248 0.2210581 0.490876 +0.3470774 0.2210581 0.490876 +0.3637862 0.2210581 0.490876 +0.3795513 0.2210581 0.490876 +0.3944623 0.2210581 0.490876 +0.4085988 0.2210581 0.490876 +0.4220313 0.2210581 0.490876 +0.4348222 0.2210581 0.490876 +0.4470264 0.2210581 0.490876 +0.4586928 0.2210581 0.490876 +0.4698649 0.2210581 0.490876 +0.4805811 0.2210581 0.490876 +0.490876 0.2210581 0.490876 +0.5007803 0.2210581 0.490876 +0.510322 0.2210581 0.490876 +0.5195258 0.2210581 0.490876 +0.5284142 0.2210581 0.490876 +0.5370079 0.2210581 0.490876 +0.5453253 0.2210581 0.490876 +0.5533834 0.2210581 0.490876 +0.5611974 0.2210581 0.490876 +0.5687816 0.2210581 0.490876 +0.092819 0.245636 0.490876 +0.1056428 0.245636 0.490876 +0.1201537 0.245636 0.490876 +0.1409607 0.245636 0.490876 +0.1678172 0.245636 0.490876 +0.1950164 0.245636 0.490876 +0.2210581 0.245636 0.490876 +0.245636 0.245636 0.490876 +0.2686816 0.245636 0.490876 +0.2902431 0.245636 0.490876 +0.3104189 0.245636 0.490876 +0.3293248 0.245636 0.490876 +0.3470774 0.245636 0.490876 +0.3637862 0.245636 0.490876 +0.3795513 0.245636 0.490876 +0.3944623 0.245636 0.490876 +0.4085988 0.245636 0.490876 +0.4220313 0.245636 0.490876 +0.4348222 0.245636 0.490876 +0.4470264 0.245636 0.490876 +0.4586928 0.245636 0.490876 +0.4698649 0.245636 0.490876 +0.4805811 0.245636 0.490876 +0.490876 0.245636 0.490876 +0.5007803 0.245636 0.490876 +0.510322 0.245636 0.490876 +0.5195258 0.245636 0.490876 +0.5284142 0.245636 0.490876 +0.5370079 0.245636 0.490876 +0.5453253 0.245636 0.490876 +0.5533834 0.245636 0.490876 +0.5611974 0.245636 0.490876 +0.5687816 0.245636 0.490876 +0.092819 0.2686816 0.490876 +0.1056428 0.2686816 0.490876 +0.1201537 0.2686816 0.490876 +0.1409607 0.2686816 0.490876 +0.1678172 0.2686816 0.490876 +0.1950164 0.2686816 0.490876 +0.2210581 0.2686816 0.490876 +0.245636 0.2686816 0.490876 +0.2686816 0.2686816 0.490876 +0.2902431 0.2686816 0.490876 +0.3104189 0.2686816 0.490876 +0.3293248 0.2686816 0.490876 +0.3470774 0.2686816 0.490876 +0.3637862 0.2686816 0.490876 +0.3795513 0.2686816 0.490876 +0.3944623 0.2686816 0.490876 +0.4085988 0.2686816 0.490876 +0.4220313 0.2686816 0.490876 +0.4348222 0.2686816 0.490876 +0.4470264 0.2686816 0.490876 +0.4586928 0.2686816 0.490876 +0.4698649 0.2686816 0.490876 +0.4805811 0.2686816 0.490876 +0.490876 0.2686816 0.490876 +0.5007803 0.2686816 0.490876 +0.510322 0.2686816 0.490876 +0.5195258 0.2686816 0.490876 +0.5284142 0.2686816 0.490876 +0.5370079 0.2686816 0.490876 +0.5453253 0.2686816 0.490876 +0.5533834 0.2686816 0.490876 +0.5611974 0.2686816 0.490876 +0.5687816 0.2686816 0.490876 +0.092819 0.2902431 0.490876 +0.1056428 0.2902431 0.490876 +0.1201537 0.2902431 0.490876 +0.1409607 0.2902431 0.490876 +0.1678172 0.2902431 0.490876 +0.1950164 0.2902431 0.490876 +0.2210581 0.2902431 0.490876 +0.245636 0.2902431 0.490876 +0.2686816 0.2902431 0.490876 +0.2902431 0.2902431 0.490876 +0.3104189 0.2902431 0.490876 +0.3293248 0.2902431 0.490876 +0.3470774 0.2902431 0.490876 +0.3637862 0.2902431 0.490876 +0.3795513 0.2902431 0.490876 +0.3944623 0.2902431 0.490876 +0.4085988 0.2902431 0.490876 +0.4220313 0.2902431 0.490876 +0.4348222 0.2902431 0.490876 +0.4470264 0.2902431 0.490876 +0.4586928 0.2902431 0.490876 +0.4698649 0.2902431 0.490876 +0.4805811 0.2902431 0.490876 +0.490876 0.2902431 0.490876 +0.5007803 0.2902431 0.490876 +0.510322 0.2902431 0.490876 +0.5195258 0.2902431 0.490876 +0.5284142 0.2902431 0.490876 +0.5370079 0.2902431 0.490876 +0.5453253 0.2902431 0.490876 +0.5533834 0.2902431 0.490876 +0.5611974 0.2902431 0.490876 +0.5687816 0.2902431 0.490876 +0.092819 0.3104189 0.490876 +0.1056428 0.3104189 0.490876 +0.1201537 0.3104189 0.490876 +0.1409607 0.3104189 0.490876 +0.1678172 0.3104189 0.490876 +0.1950164 0.3104189 0.490876 +0.2210581 0.3104189 0.490876 +0.245636 0.3104189 0.490876 +0.2686816 0.3104189 0.490876 +0.2902431 0.3104189 0.490876 +0.3104189 0.3104189 0.490876 +0.3293248 0.3104189 0.490876 +0.3470774 0.3104189 0.490876 +0.3637862 0.3104189 0.490876 +0.3795513 0.3104189 0.490876 +0.3944623 0.3104189 0.490876 +0.4085988 0.3104189 0.490876 +0.4220313 0.3104189 0.490876 +0.4348222 0.3104189 0.490876 +0.4470264 0.3104189 0.490876 +0.4586928 0.3104189 0.490876 +0.4698649 0.3104189 0.490876 +0.4805811 0.3104189 0.490876 +0.490876 0.3104189 0.490876 +0.5007803 0.3104189 0.490876 +0.510322 0.3104189 0.490876 +0.5195258 0.3104189 0.490876 +0.5284142 0.3104189 0.490876 +0.5370079 0.3104189 0.490876 +0.5453253 0.3104189 0.490876 +0.5533834 0.3104189 0.490876 +0.5611974 0.3104189 0.490876 +0.5687816 0.3104189 0.490876 +0.092819 0.3293248 0.490876 +0.1056428 0.3293248 0.490876 +0.1201537 0.3293248 0.490876 +0.1409607 0.3293248 0.490876 +0.1678172 0.3293248 0.490876 +0.1950164 0.3293248 0.490876 +0.2210581 0.3293248 0.490876 +0.245636 0.3293248 0.490876 +0.2686816 0.3293248 0.490876 +0.2902431 0.3293248 0.490876 +0.3104189 0.3293248 0.490876 +0.3293248 0.3293248 0.490876 +0.3470774 0.3293248 0.490876 +0.3637862 0.3293248 0.490876 +0.3795513 0.3293248 0.490876 +0.3944623 0.3293248 0.490876 +0.4085988 0.3293248 0.490876 +0.4220313 0.3293248 0.490876 +0.4348222 0.3293248 0.490876 +0.4470264 0.3293248 0.490876 +0.4586928 0.3293248 0.490876 +0.4698649 0.3293248 0.490876 +0.4805811 0.3293248 0.490876 +0.490876 0.3293248 0.490876 +0.5007803 0.3293248 0.490876 +0.510322 0.3293248 0.490876 +0.5195258 0.3293248 0.490876 +0.5284142 0.3293248 0.490876 +0.5370079 0.3293248 0.490876 +0.5453253 0.3293248 0.490876 +0.5533834 0.3293248 0.490876 +0.5611974 0.3293248 0.490876 +0.5687816 0.3293248 0.490876 +0.092819 0.3470774 0.490876 +0.1056428 0.3470774 0.490876 +0.1201537 0.3470774 0.490876 +0.1409607 0.3470774 0.490876 +0.1678172 0.3470774 0.490876 +0.1950164 0.3470774 0.490876 +0.2210581 0.3470774 0.490876 +0.245636 0.3470774 0.490876 +0.2686816 0.3470774 0.490876 +0.2902431 0.3470774 0.490876 +0.3104189 0.3470774 0.490876 +0.3293248 0.3470774 0.490876 +0.3470774 0.3470774 0.490876 +0.3637862 0.3470774 0.490876 +0.3795513 0.3470774 0.490876 +0.3944623 0.3470774 0.490876 +0.4085988 0.3470774 0.490876 +0.4220313 0.3470774 0.490876 +0.4348222 0.3470774 0.490876 +0.4470264 0.3470774 0.490876 +0.4586928 0.3470774 0.490876 +0.4698649 0.3470774 0.490876 +0.4805811 0.3470774 0.490876 +0.490876 0.3470774 0.490876 +0.5007803 0.3470774 0.490876 +0.510322 0.3470774 0.490876 +0.5195258 0.3470774 0.490876 +0.5284142 0.3470774 0.490876 +0.5370079 0.3470774 0.490876 +0.5453253 0.3470774 0.490876 +0.5533834 0.3470774 0.490876 +0.5611974 0.3470774 0.490876 +0.5687816 0.3470774 0.490876 +0.092819 0.3637862 0.490876 +0.1056428 0.3637862 0.490876 +0.1201537 0.3637862 0.490876 +0.1409607 0.3637862 0.490876 +0.1678172 0.3637862 0.490876 +0.1950164 0.3637862 0.490876 +0.2210581 0.3637862 0.490876 +0.245636 0.3637862 0.490876 +0.2686816 0.3637862 0.490876 +0.2902431 0.3637862 0.490876 +0.3104189 0.3637862 0.490876 +0.3293248 0.3637862 0.490876 +0.3470774 0.3637862 0.490876 +0.3637862 0.3637862 0.490876 +0.3795513 0.3637862 0.490876 +0.3944623 0.3637862 0.490876 +0.4085988 0.3637862 0.490876 +0.4220313 0.3637862 0.490876 +0.4348222 0.3637862 0.490876 +0.4470264 0.3637862 0.490876 +0.4586928 0.3637862 0.490876 +0.4698649 0.3637862 0.490876 +0.4805811 0.3637862 0.490876 +0.490876 0.3637862 0.490876 +0.5007803 0.3637862 0.490876 +0.510322 0.3637862 0.490876 +0.5195258 0.3637862 0.490876 +0.5284142 0.3637862 0.490876 +0.5370079 0.3637862 0.490876 +0.5453253 0.3637862 0.490876 +0.5533834 0.3637862 0.490876 +0.5611974 0.3637862 0.490876 +0.5687816 0.3637862 0.490876 +0.092819 0.3795513 0.490876 +0.1056428 0.3795513 0.490876 +0.1201537 0.3795513 0.490876 +0.1409607 0.3795513 0.490876 +0.1678172 0.3795513 0.490876 +0.1950164 0.3795513 0.490876 +0.2210581 0.3795513 0.490876 +0.245636 0.3795513 0.490876 +0.2686816 0.3795513 0.490876 +0.2902431 0.3795513 0.490876 +0.3104189 0.3795513 0.490876 +0.3293248 0.3795513 0.490876 +0.3470774 0.3795513 0.490876 +0.3637862 0.3795513 0.490876 +0.3795513 0.3795513 0.490876 +0.3944623 0.3795513 0.490876 +0.4085988 0.3795513 0.490876 +0.4220313 0.3795513 0.490876 +0.4348222 0.3795513 0.490876 +0.4470264 0.3795513 0.490876 +0.4586928 0.3795513 0.490876 +0.4698649 0.3795513 0.490876 +0.4805811 0.3795513 0.490876 +0.490876 0.3795513 0.490876 +0.5007803 0.3795513 0.490876 +0.510322 0.3795513 0.490876 +0.5195258 0.3795513 0.490876 +0.5284142 0.3795513 0.490876 +0.5370079 0.3795513 0.490876 +0.5453253 0.3795513 0.490876 +0.5533834 0.3795513 0.490876 +0.5611974 0.3795513 0.490876 +0.5687816 0.3795513 0.490876 +0.092819 0.3944623 0.490876 +0.1056428 0.3944623 0.490876 +0.1201537 0.3944623 0.490876 +0.1409607 0.3944623 0.490876 +0.1678172 0.3944623 0.490876 +0.1950164 0.3944623 0.490876 +0.2210581 0.3944623 0.490876 +0.245636 0.3944623 0.490876 +0.2686816 0.3944623 0.490876 +0.2902431 0.3944623 0.490876 +0.3104189 0.3944623 0.490876 +0.3293248 0.3944623 0.490876 +0.3470774 0.3944623 0.490876 +0.3637862 0.3944623 0.490876 +0.3795513 0.3944623 0.490876 +0.3944623 0.3944623 0.490876 +0.4085988 0.3944623 0.490876 +0.4220313 0.3944623 0.490876 +0.4348222 0.3944623 0.490876 +0.4470264 0.3944623 0.490876 +0.4586928 0.3944623 0.490876 +0.4698649 0.3944623 0.490876 +0.4805811 0.3944623 0.490876 +0.490876 0.3944623 0.490876 +0.5007803 0.3944623 0.490876 +0.510322 0.3944623 0.490876 +0.5195258 0.3944623 0.490876 +0.5284142 0.3944623 0.490876 +0.5370079 0.3944623 0.490876 +0.5453253 0.3944623 0.490876 +0.5533834 0.3944623 0.490876 +0.5611974 0.3944623 0.490876 +0.5687816 0.3944623 0.490876 +0.092819 0.4085988 0.490876 +0.1056428 0.4085988 0.490876 +0.1201537 0.4085988 0.490876 +0.1409607 0.4085988 0.490876 +0.1678172 0.4085988 0.490876 +0.1950164 0.4085988 0.490876 +0.2210581 0.4085988 0.490876 +0.245636 0.4085988 0.490876 +0.2686816 0.4085988 0.490876 +0.2902431 0.4085988 0.490876 +0.3104189 0.4085988 0.490876 +0.3293248 0.4085988 0.490876 +0.3470774 0.4085988 0.490876 +0.3637862 0.4085988 0.490876 +0.3795513 0.4085988 0.490876 +0.3944623 0.4085988 0.490876 +0.4085988 0.4085988 0.490876 +0.4220313 0.4085988 0.490876 +0.4348222 0.4085988 0.490876 +0.4470264 0.4085988 0.490876 +0.4586928 0.4085988 0.490876 +0.4698649 0.4085988 0.490876 +0.4805811 0.4085988 0.490876 +0.490876 0.4085988 0.490876 +0.5007803 0.4085988 0.490876 +0.510322 0.4085988 0.490876 +0.5195258 0.4085988 0.490876 +0.5284142 0.4085988 0.490876 +0.5370079 0.4085988 0.490876 +0.5453253 0.4085988 0.490876 +0.5533834 0.4085988 0.490876 +0.5611974 0.4085988 0.490876 +0.5687816 0.4085988 0.490876 +0.092819 0.4220313 0.490876 +0.1056428 0.4220313 0.490876 +0.1201537 0.4220313 0.490876 +0.1409607 0.4220313 0.490876 +0.1678172 0.4220313 0.490876 +0.1950164 0.4220313 0.490876 +0.2210581 0.4220313 0.490876 +0.245636 0.4220313 0.490876 +0.2686816 0.4220313 0.490876 +0.2902431 0.4220313 0.490876 +0.3104189 0.4220313 0.490876 +0.3293248 0.4220313 0.490876 +0.3470774 0.4220313 0.490876 +0.3637862 0.4220313 0.490876 +0.3795513 0.4220313 0.490876 +0.3944623 0.4220313 0.490876 +0.4085988 0.4220313 0.490876 +0.4220313 0.4220313 0.490876 +0.4348222 0.4220313 0.490876 +0.4470264 0.4220313 0.490876 +0.4586928 0.4220313 0.490876 +0.4698649 0.4220313 0.490876 +0.4805811 0.4220313 0.490876 +0.490876 0.4220313 0.490876 +0.5007803 0.4220313 0.490876 +0.510322 0.4220313 0.490876 +0.5195258 0.4220313 0.490876 +0.5284142 0.4220313 0.490876 +0.5370079 0.4220313 0.490876 +0.5453253 0.4220313 0.490876 +0.5533834 0.4220313 0.490876 +0.5611974 0.4220313 0.490876 +0.5687816 0.4220313 0.490876 +0.092819 0.4348222 0.490876 +0.1056428 0.4348222 0.490876 +0.1201537 0.4348222 0.490876 +0.1409607 0.4348222 0.490876 +0.1678172 0.4348222 0.490876 +0.1950164 0.4348222 0.490876 +0.2210581 0.4348222 0.490876 +0.245636 0.4348222 0.490876 +0.2686816 0.4348222 0.490876 +0.2902431 0.4348222 0.490876 +0.3104189 0.4348222 0.490876 +0.3293248 0.4348222 0.490876 +0.3470774 0.4348222 0.490876 +0.3637862 0.4348222 0.490876 +0.3795513 0.4348222 0.490876 +0.3944623 0.4348222 0.490876 +0.4085988 0.4348222 0.490876 +0.4220313 0.4348222 0.490876 +0.4348222 0.4348222 0.490876 +0.4470264 0.4348222 0.490876 +0.4586928 0.4348222 0.490876 +0.4698649 0.4348222 0.490876 +0.4805811 0.4348222 0.490876 +0.490876 0.4348222 0.490876 +0.5007803 0.4348222 0.490876 +0.510322 0.4348222 0.490876 +0.5195258 0.4348222 0.490876 +0.5284142 0.4348222 0.490876 +0.5370079 0.4348222 0.490876 +0.5453253 0.4348222 0.490876 +0.5533834 0.4348222 0.490876 +0.5611974 0.4348222 0.490876 +0.5687816 0.4348222 0.490876 +0.092819 0.4470264 0.490876 +0.1056428 0.4470264 0.490876 +0.1201537 0.4470264 0.490876 +0.1409607 0.4470264 0.490876 +0.1678172 0.4470264 0.490876 +0.1950164 0.4470264 0.490876 +0.2210581 0.4470264 0.490876 +0.245636 0.4470264 0.490876 +0.2686816 0.4470264 0.490876 +0.2902431 0.4470264 0.490876 +0.3104189 0.4470264 0.490876 +0.3293248 0.4470264 0.490876 +0.3470774 0.4470264 0.490876 +0.3637862 0.4470264 0.490876 +0.3795513 0.4470264 0.490876 +0.3944623 0.4470264 0.490876 +0.4085988 0.4470264 0.490876 +0.4220313 0.4470264 0.490876 +0.4348222 0.4470264 0.490876 +0.4470264 0.4470264 0.490876 +0.4586928 0.4470264 0.490876 +0.4698649 0.4470264 0.490876 +0.4805811 0.4470264 0.490876 +0.490876 0.4470264 0.490876 +0.5007803 0.4470264 0.490876 +0.510322 0.4470264 0.490876 +0.5195258 0.4470264 0.490876 +0.5284142 0.4470264 0.490876 +0.5370079 0.4470264 0.490876 +0.5453253 0.4470264 0.490876 +0.5533834 0.4470264 0.490876 +0.5611974 0.4470264 0.490876 +0.5687816 0.4470264 0.490876 +0.092819 0.4586928 0.490876 +0.1056428 0.4586928 0.490876 +0.1201537 0.4586928 0.490876 +0.1409607 0.4586928 0.490876 +0.1678172 0.4586928 0.490876 +0.1950164 0.4586928 0.490876 +0.2210581 0.4586928 0.490876 +0.245636 0.4586928 0.490876 +0.2686816 0.4586928 0.490876 +0.2902431 0.4586928 0.490876 +0.3104189 0.4586928 0.490876 +0.3293248 0.4586928 0.490876 +0.3470774 0.4586928 0.490876 +0.3637862 0.4586928 0.490876 +0.3795513 0.4586928 0.490876 +0.3944623 0.4586928 0.490876 +0.4085988 0.4586928 0.490876 +0.4220313 0.4586928 0.490876 +0.4348222 0.4586928 0.490876 +0.4470264 0.4586928 0.490876 +0.4586928 0.4586928 0.490876 +0.4698649 0.4586928 0.490876 +0.4805811 0.4586928 0.490876 +0.490876 0.4586928 0.490876 +0.5007803 0.4586928 0.490876 +0.510322 0.4586928 0.490876 +0.5195258 0.4586928 0.490876 +0.5284142 0.4586928 0.490876 +0.5370079 0.4586928 0.490876 +0.5453253 0.4586928 0.490876 +0.5533834 0.4586928 0.490876 +0.5611974 0.4586928 0.490876 +0.5687816 0.4586928 0.490876 +0.092819 0.4698649 0.490876 +0.1056428 0.4698649 0.490876 +0.1201537 0.4698649 0.490876 +0.1409607 0.4698649 0.490876 +0.1678172 0.4698649 0.490876 +0.1950164 0.4698649 0.490876 +0.2210581 0.4698649 0.490876 +0.245636 0.4698649 0.490876 +0.2686816 0.4698649 0.490876 +0.2902431 0.4698649 0.490876 +0.3104189 0.4698649 0.490876 +0.3293248 0.4698649 0.490876 +0.3470774 0.4698649 0.490876 +0.3637862 0.4698649 0.490876 +0.3795513 0.4698649 0.490876 +0.3944623 0.4698649 0.490876 +0.4085988 0.4698649 0.490876 +0.4220313 0.4698649 0.490876 +0.4348222 0.4698649 0.490876 +0.4470264 0.4698649 0.490876 +0.4586928 0.4698649 0.490876 +0.4698649 0.4698649 0.490876 +0.4805811 0.4698649 0.490876 +0.490876 0.4698649 0.490876 +0.5007803 0.4698649 0.490876 +0.510322 0.4698649 0.490876 +0.5195258 0.4698649 0.490876 +0.5284142 0.4698649 0.490876 +0.5370079 0.4698649 0.490876 +0.5453253 0.4698649 0.490876 +0.5533834 0.4698649 0.490876 +0.5611974 0.4698649 0.490876 +0.5687816 0.4698649 0.490876 +0.092819 0.4805811 0.490876 +0.1056428 0.4805811 0.490876 +0.1201537 0.4805811 0.490876 +0.1409607 0.4805811 0.490876 +0.1678172 0.4805811 0.490876 +0.1950164 0.4805811 0.490876 +0.2210581 0.4805811 0.490876 +0.245636 0.4805811 0.490876 +0.2686816 0.4805811 0.490876 +0.2902431 0.4805811 0.490876 +0.3104189 0.4805811 0.490876 +0.3293248 0.4805811 0.490876 +0.3470774 0.4805811 0.490876 +0.3637862 0.4805811 0.490876 +0.3795513 0.4805811 0.490876 +0.3944623 0.4805811 0.490876 +0.4085988 0.4805811 0.490876 +0.4220313 0.4805811 0.490876 +0.4348222 0.4805811 0.490876 +0.4470264 0.4805811 0.490876 +0.4586928 0.4805811 0.490876 +0.4698649 0.4805811 0.490876 +0.4805811 0.4805811 0.490876 +0.490876 0.4805811 0.490876 +0.5007803 0.4805811 0.490876 +0.510322 0.4805811 0.490876 +0.5195258 0.4805811 0.490876 +0.5284142 0.4805811 0.490876 +0.5370079 0.4805811 0.490876 +0.5453253 0.4805811 0.490876 +0.5533834 0.4805811 0.490876 +0.5611974 0.4805811 0.490876 +0.5687816 0.4805811 0.490876 +0.092819 0.490876 0.490876 +0.1056428 0.490876 0.490876 +0.1201537 0.490876 0.490876 +0.1409607 0.490876 0.490876 +0.1678172 0.490876 0.490876 +0.1950164 0.490876 0.490876 +0.2210581 0.490876 0.490876 +0.245636 0.490876 0.490876 +0.2686816 0.490876 0.490876 +0.2902431 0.490876 0.490876 +0.3104189 0.490876 0.490876 +0.3293248 0.490876 0.490876 +0.3470774 0.490876 0.490876 +0.3637862 0.490876 0.490876 +0.3795513 0.490876 0.490876 +0.3944623 0.490876 0.490876 +0.4085988 0.490876 0.490876 +0.4220313 0.490876 0.490876 +0.4348222 0.490876 0.490876 +0.4470264 0.490876 0.490876 +0.4586928 0.490876 0.490876 +0.4698649 0.490876 0.490876 +0.4805811 0.490876 0.490876 +0.490876 0.490876 0.490876 +0.5007803 0.490876 0.490876 +0.510322 0.490876 0.490876 +0.5195258 0.490876 0.490876 +0.5284142 0.490876 0.490876 +0.5370079 0.490876 0.490876 +0.5453253 0.490876 0.490876 +0.5533834 0.490876 0.490876 +0.5611974 0.490876 0.490876 +0.5687816 0.490876 0.490876 +0.092819 0.5007803 0.490876 +0.1056428 0.5007803 0.490876 +0.1201537 0.5007803 0.490876 +0.1409607 0.5007803 0.490876 +0.1678172 0.5007803 0.490876 +0.1950164 0.5007803 0.490876 +0.2210581 0.5007803 0.490876 +0.245636 0.5007803 0.490876 +0.2686816 0.5007803 0.490876 +0.2902431 0.5007803 0.490876 +0.3104189 0.5007803 0.490876 +0.3293248 0.5007803 0.490876 +0.3470774 0.5007803 0.490876 +0.3637862 0.5007803 0.490876 +0.3795513 0.5007803 0.490876 +0.3944623 0.5007803 0.490876 +0.4085988 0.5007803 0.490876 +0.4220313 0.5007803 0.490876 +0.4348222 0.5007803 0.490876 +0.4470264 0.5007803 0.490876 +0.4586928 0.5007803 0.490876 +0.4698649 0.5007803 0.490876 +0.4805811 0.5007803 0.490876 +0.490876 0.5007803 0.490876 +0.5007803 0.5007803 0.490876 +0.510322 0.5007803 0.490876 +0.5195258 0.5007803 0.490876 +0.5284142 0.5007803 0.490876 +0.5370079 0.5007803 0.490876 +0.5453253 0.5007803 0.490876 +0.5533834 0.5007803 0.490876 +0.5611974 0.5007803 0.490876 +0.5687816 0.5007803 0.490876 +0.092819 0.510322 0.490876 +0.1056428 0.510322 0.490876 +0.1201537 0.510322 0.490876 +0.1409607 0.510322 0.490876 +0.1678172 0.510322 0.490876 +0.1950164 0.510322 0.490876 +0.2210581 0.510322 0.490876 +0.245636 0.510322 0.490876 +0.2686816 0.510322 0.490876 +0.2902431 0.510322 0.490876 +0.3104189 0.510322 0.490876 +0.3293248 0.510322 0.490876 +0.3470774 0.510322 0.490876 +0.3637862 0.510322 0.490876 +0.3795513 0.510322 0.490876 +0.3944623 0.510322 0.490876 +0.4085988 0.510322 0.490876 +0.4220313 0.510322 0.490876 +0.4348222 0.510322 0.490876 +0.4470264 0.510322 0.490876 +0.4586928 0.510322 0.490876 +0.4698649 0.510322 0.490876 +0.4805811 0.510322 0.490876 +0.490876 0.510322 0.490876 +0.5007803 0.510322 0.490876 +0.510322 0.510322 0.490876 +0.5195258 0.510322 0.490876 +0.5284142 0.510322 0.490876 +0.5370079 0.510322 0.490876 +0.5453253 0.510322 0.490876 +0.5533834 0.510322 0.490876 +0.5611974 0.510322 0.490876 +0.5687816 0.510322 0.490876 +0.092819 0.5195258 0.490876 +0.1056428 0.5195258 0.490876 +0.1201537 0.5195258 0.490876 +0.1409607 0.5195258 0.490876 +0.1678172 0.5195258 0.490876 +0.1950164 0.5195258 0.490876 +0.2210581 0.5195258 0.490876 +0.245636 0.5195258 0.490876 +0.2686816 0.5195258 0.490876 +0.2902431 0.5195258 0.490876 +0.3104189 0.5195258 0.490876 +0.3293248 0.5195258 0.490876 +0.3470774 0.5195258 0.490876 +0.3637862 0.5195258 0.490876 +0.3795513 0.5195258 0.490876 +0.3944623 0.5195258 0.490876 +0.4085988 0.5195258 0.490876 +0.4220313 0.5195258 0.490876 +0.4348222 0.5195258 0.490876 +0.4470264 0.5195258 0.490876 +0.4586928 0.5195258 0.490876 +0.4698649 0.5195258 0.490876 +0.4805811 0.5195258 0.490876 +0.490876 0.5195258 0.490876 +0.5007803 0.5195258 0.490876 +0.510322 0.5195258 0.490876 +0.5195258 0.5195258 0.490876 +0.5284142 0.5195258 0.490876 +0.5370079 0.5195258 0.490876 +0.5453253 0.5195258 0.490876 +0.5533834 0.5195258 0.490876 +0.5611974 0.5195258 0.490876 +0.5687816 0.5195258 0.490876 +0.092819 0.5284142 0.490876 +0.1056428 0.5284142 0.490876 +0.1201537 0.5284142 0.490876 +0.1409607 0.5284142 0.490876 +0.1678172 0.5284142 0.490876 +0.1950164 0.5284142 0.490876 +0.2210581 0.5284142 0.490876 +0.245636 0.5284142 0.490876 +0.2686816 0.5284142 0.490876 +0.2902431 0.5284142 0.490876 +0.3104189 0.5284142 0.490876 +0.3293248 0.5284142 0.490876 +0.3470774 0.5284142 0.490876 +0.3637862 0.5284142 0.490876 +0.3795513 0.5284142 0.490876 +0.3944623 0.5284142 0.490876 +0.4085988 0.5284142 0.490876 +0.4220313 0.5284142 0.490876 +0.4348222 0.5284142 0.490876 +0.4470264 0.5284142 0.490876 +0.4586928 0.5284142 0.490876 +0.4698649 0.5284142 0.490876 +0.4805811 0.5284142 0.490876 +0.490876 0.5284142 0.490876 +0.5007803 0.5284142 0.490876 +0.510322 0.5284142 0.490876 +0.5195258 0.5284142 0.490876 +0.5284142 0.5284142 0.490876 +0.5370079 0.5284142 0.490876 +0.5453253 0.5284142 0.490876 +0.5533834 0.5284142 0.490876 +0.5611974 0.5284142 0.490876 +0.5687816 0.5284142 0.490876 +0.092819 0.5370079 0.490876 +0.1056428 0.5370079 0.490876 +0.1201537 0.5370079 0.490876 +0.1409607 0.5370079 0.490876 +0.1678172 0.5370079 0.490876 +0.1950164 0.5370079 0.490876 +0.2210581 0.5370079 0.490876 +0.245636 0.5370079 0.490876 +0.2686816 0.5370079 0.490876 +0.2902431 0.5370079 0.490876 +0.3104189 0.5370079 0.490876 +0.3293248 0.5370079 0.490876 +0.3470774 0.5370079 0.490876 +0.3637862 0.5370079 0.490876 +0.3795513 0.5370079 0.490876 +0.3944623 0.5370079 0.490876 +0.4085988 0.5370079 0.490876 +0.4220313 0.5370079 0.490876 +0.4348222 0.5370079 0.490876 +0.4470264 0.5370079 0.490876 +0.4586928 0.5370079 0.490876 +0.4698649 0.5370079 0.490876 +0.4805811 0.5370079 0.490876 +0.490876 0.5370079 0.490876 +0.5007803 0.5370079 0.490876 +0.510322 0.5370079 0.490876 +0.5195258 0.5370079 0.490876 +0.5284142 0.5370079 0.490876 +0.5370079 0.5370079 0.490876 +0.5453253 0.5370079 0.490876 +0.5533834 0.5370079 0.490876 +0.5611974 0.5370079 0.490876 +0.5687816 0.5370079 0.490876 +0.092819 0.5453253 0.490876 +0.1056428 0.5453253 0.490876 +0.1201537 0.5453253 0.490876 +0.1409607 0.5453253 0.490876 +0.1678172 0.5453253 0.490876 +0.1950164 0.5453253 0.490876 +0.2210581 0.5453253 0.490876 +0.245636 0.5453253 0.490876 +0.2686816 0.5453253 0.490876 +0.2902431 0.5453253 0.490876 +0.3104189 0.5453253 0.490876 +0.3293248 0.5453253 0.490876 +0.3470774 0.5453253 0.490876 +0.3637862 0.5453253 0.490876 +0.3795513 0.5453253 0.490876 +0.3944623 0.5453253 0.490876 +0.4085988 0.5453253 0.490876 +0.4220313 0.5453253 0.490876 +0.4348222 0.5453253 0.490876 +0.4470264 0.5453253 0.490876 +0.4586928 0.5453253 0.490876 +0.4698649 0.5453253 0.490876 +0.4805811 0.5453253 0.490876 +0.490876 0.5453253 0.490876 +0.5007803 0.5453253 0.490876 +0.510322 0.5453253 0.490876 +0.5195258 0.5453253 0.490876 +0.5284142 0.5453253 0.490876 +0.5370079 0.5453253 0.490876 +0.5453253 0.5453253 0.490876 +0.5533834 0.5453253 0.490876 +0.5611974 0.5453253 0.490876 +0.5687816 0.5453253 0.490876 +0.092819 0.5533834 0.490876 +0.1056428 0.5533834 0.490876 +0.1201537 0.5533834 0.490876 +0.1409607 0.5533834 0.490876 +0.1678172 0.5533834 0.490876 +0.1950164 0.5533834 0.490876 +0.2210581 0.5533834 0.490876 +0.245636 0.5533834 0.490876 +0.2686816 0.5533834 0.490876 +0.2902431 0.5533834 0.490876 +0.3104189 0.5533834 0.490876 +0.3293248 0.5533834 0.490876 +0.3470774 0.5533834 0.490876 +0.3637862 0.5533834 0.490876 +0.3795513 0.5533834 0.490876 +0.3944623 0.5533834 0.490876 +0.4085988 0.5533834 0.490876 +0.4220313 0.5533834 0.490876 +0.4348222 0.5533834 0.490876 +0.4470264 0.5533834 0.490876 +0.4586928 0.5533834 0.490876 +0.4698649 0.5533834 0.490876 +0.4805811 0.5533834 0.490876 +0.490876 0.5533834 0.490876 +0.5007803 0.5533834 0.490876 +0.510322 0.5533834 0.490876 +0.5195258 0.5533834 0.490876 +0.5284142 0.5533834 0.490876 +0.5370079 0.5533834 0.490876 +0.5453253 0.5533834 0.490876 +0.5533834 0.5533834 0.490876 +0.5611974 0.5533834 0.490876 +0.5687816 0.5533834 0.490876 +0.092819 0.5611974 0.490876 +0.1056428 0.5611974 0.490876 +0.1201537 0.5611974 0.490876 +0.1409607 0.5611974 0.490876 +0.1678172 0.5611974 0.490876 +0.1950164 0.5611974 0.490876 +0.2210581 0.5611974 0.490876 +0.245636 0.5611974 0.490876 +0.2686816 0.5611974 0.490876 +0.2902431 0.5611974 0.490876 +0.3104189 0.5611974 0.490876 +0.3293248 0.5611974 0.490876 +0.3470774 0.5611974 0.490876 +0.3637862 0.5611974 0.490876 +0.3795513 0.5611974 0.490876 +0.3944623 0.5611974 0.490876 +0.4085988 0.5611974 0.490876 +0.4220313 0.5611974 0.490876 +0.4348222 0.5611974 0.490876 +0.4470264 0.5611974 0.490876 +0.4586928 0.5611974 0.490876 +0.4698649 0.5611974 0.490876 +0.4805811 0.5611974 0.490876 +0.490876 0.5611974 0.490876 +0.5007803 0.5611974 0.490876 +0.510322 0.5611974 0.490876 +0.5195258 0.5611974 0.490876 +0.5284142 0.5611974 0.490876 +0.5370079 0.5611974 0.490876 +0.5453253 0.5611974 0.490876 +0.5533834 0.5611974 0.490876 +0.5611974 0.5611974 0.490876 +0.5687816 0.5611974 0.490876 +0.092819 0.5687816 0.490876 +0.1056428 0.5687816 0.490876 +0.1201537 0.5687816 0.490876 +0.1409607 0.5687816 0.490876 +0.1678172 0.5687816 0.490876 +0.1950164 0.5687816 0.490876 +0.2210581 0.5687816 0.490876 +0.245636 0.5687816 0.490876 +0.2686816 0.5687816 0.490876 +0.2902431 0.5687816 0.490876 +0.3104189 0.5687816 0.490876 +0.3293248 0.5687816 0.490876 +0.3470774 0.5687816 0.490876 +0.3637862 0.5687816 0.490876 +0.3795513 0.5687816 0.490876 +0.3944623 0.5687816 0.490876 +0.4085988 0.5687816 0.490876 +0.4220313 0.5687816 0.490876 +0.4348222 0.5687816 0.490876 +0.4470264 0.5687816 0.490876 +0.4586928 0.5687816 0.490876 +0.4698649 0.5687816 0.490876 +0.4805811 0.5687816 0.490876 +0.490876 0.5687816 0.490876 +0.5007803 0.5687816 0.490876 +0.510322 0.5687816 0.490876 +0.5195258 0.5687816 0.490876 +0.5284142 0.5687816 0.490876 +0.5370079 0.5687816 0.490876 +0.5453253 0.5687816 0.490876 +0.5533834 0.5687816 0.490876 +0.5611974 0.5687816 0.490876 +0.5687816 0.5687816 0.490876 +0.092819 0.092819 0.5007803 +0.1056428 0.092819 0.5007803 +0.1201537 0.092819 0.5007803 +0.1409607 0.092819 0.5007803 +0.1678172 0.092819 0.5007803 +0.1950164 0.092819 0.5007803 +0.2210581 0.092819 0.5007803 +0.245636 0.092819 0.5007803 +0.2686816 0.092819 0.5007803 +0.2902431 0.092819 0.5007803 +0.3104189 0.092819 0.5007803 +0.3293248 0.092819 0.5007803 +0.3470774 0.092819 0.5007803 +0.3637862 0.092819 0.5007803 +0.3795513 0.092819 0.5007803 +0.3944623 0.092819 0.5007803 +0.4085988 0.092819 0.5007803 +0.4220313 0.092819 0.5007803 +0.4348222 0.092819 0.5007803 +0.4470264 0.092819 0.5007803 +0.4586928 0.092819 0.5007803 +0.4698649 0.092819 0.5007803 +0.4805811 0.092819 0.5007803 +0.490876 0.092819 0.5007803 +0.5007803 0.092819 0.5007803 +0.510322 0.092819 0.5007803 +0.5195258 0.092819 0.5007803 +0.5284142 0.092819 0.5007803 +0.5370079 0.092819 0.5007803 +0.5453253 0.092819 0.5007803 +0.5533834 0.092819 0.5007803 +0.5611974 0.092819 0.5007803 +0.5687816 0.092819 0.5007803 +0.092819 0.1056428 0.5007803 +0.1056428 0.1056428 0.5007803 +0.1201537 0.1056428 0.5007803 +0.1409607 0.1056428 0.5007803 +0.1678172 0.1056428 0.5007803 +0.1950164 0.1056428 0.5007803 +0.2210581 0.1056428 0.5007803 +0.245636 0.1056428 0.5007803 +0.2686816 0.1056428 0.5007803 +0.2902431 0.1056428 0.5007803 +0.3104189 0.1056428 0.5007803 +0.3293248 0.1056428 0.5007803 +0.3470774 0.1056428 0.5007803 +0.3637862 0.1056428 0.5007803 +0.3795513 0.1056428 0.5007803 +0.3944623 0.1056428 0.5007803 +0.4085988 0.1056428 0.5007803 +0.4220313 0.1056428 0.5007803 +0.4348222 0.1056428 0.5007803 +0.4470264 0.1056428 0.5007803 +0.4586928 0.1056428 0.5007803 +0.4698649 0.1056428 0.5007803 +0.4805811 0.1056428 0.5007803 +0.490876 0.1056428 0.5007803 +0.5007803 0.1056428 0.5007803 +0.510322 0.1056428 0.5007803 +0.5195258 0.1056428 0.5007803 +0.5284142 0.1056428 0.5007803 +0.5370079 0.1056428 0.5007803 +0.5453253 0.1056428 0.5007803 +0.5533834 0.1056428 0.5007803 +0.5611974 0.1056428 0.5007803 +0.5687816 0.1056428 0.5007803 +0.092819 0.1201537 0.5007803 +0.1056428 0.1201537 0.5007803 +0.1201537 0.1201537 0.5007803 +0.1409607 0.1201537 0.5007803 +0.1678172 0.1201537 0.5007803 +0.1950164 0.1201537 0.5007803 +0.2210581 0.1201537 0.5007803 +0.245636 0.1201537 0.5007803 +0.2686816 0.1201537 0.5007803 +0.2902431 0.1201537 0.5007803 +0.3104189 0.1201537 0.5007803 +0.3293248 0.1201537 0.5007803 +0.3470774 0.1201537 0.5007803 +0.3637862 0.1201537 0.5007803 +0.3795513 0.1201537 0.5007803 +0.3944623 0.1201537 0.5007803 +0.4085988 0.1201537 0.5007803 +0.4220313 0.1201537 0.5007803 +0.4348222 0.1201537 0.5007803 +0.4470264 0.1201537 0.5007803 +0.4586928 0.1201537 0.5007803 +0.4698649 0.1201537 0.5007803 +0.4805811 0.1201537 0.5007803 +0.490876 0.1201537 0.5007803 +0.5007803 0.1201537 0.5007803 +0.510322 0.1201537 0.5007803 +0.5195258 0.1201537 0.5007803 +0.5284142 0.1201537 0.5007803 +0.5370079 0.1201537 0.5007803 +0.5453253 0.1201537 0.5007803 +0.5533834 0.1201537 0.5007803 +0.5611974 0.1201537 0.5007803 +0.5687816 0.1201537 0.5007803 +0.092819 0.1409607 0.5007803 +0.1056428 0.1409607 0.5007803 +0.1201537 0.1409607 0.5007803 +0.1409607 0.1409607 0.5007803 +0.1678172 0.1409607 0.5007803 +0.1950164 0.1409607 0.5007803 +0.2210581 0.1409607 0.5007803 +0.245636 0.1409607 0.5007803 +0.2686816 0.1409607 0.5007803 +0.2902431 0.1409607 0.5007803 +0.3104189 0.1409607 0.5007803 +0.3293248 0.1409607 0.5007803 +0.3470774 0.1409607 0.5007803 +0.3637862 0.1409607 0.5007803 +0.3795513 0.1409607 0.5007803 +0.3944623 0.1409607 0.5007803 +0.4085988 0.1409607 0.5007803 +0.4220313 0.1409607 0.5007803 +0.4348222 0.1409607 0.5007803 +0.4470264 0.1409607 0.5007803 +0.4586928 0.1409607 0.5007803 +0.4698649 0.1409607 0.5007803 +0.4805811 0.1409607 0.5007803 +0.490876 0.1409607 0.5007803 +0.5007803 0.1409607 0.5007803 +0.510322 0.1409607 0.5007803 +0.5195258 0.1409607 0.5007803 +0.5284142 0.1409607 0.5007803 +0.5370079 0.1409607 0.5007803 +0.5453253 0.1409607 0.5007803 +0.5533834 0.1409607 0.5007803 +0.5611974 0.1409607 0.5007803 +0.5687816 0.1409607 0.5007803 +0.092819 0.1678172 0.5007803 +0.1056428 0.1678172 0.5007803 +0.1201537 0.1678172 0.5007803 +0.1409607 0.1678172 0.5007803 +0.1678172 0.1678172 0.5007803 +0.1950164 0.1678172 0.5007803 +0.2210581 0.1678172 0.5007803 +0.245636 0.1678172 0.5007803 +0.2686816 0.1678172 0.5007803 +0.2902431 0.1678172 0.5007803 +0.3104189 0.1678172 0.5007803 +0.3293248 0.1678172 0.5007803 +0.3470774 0.1678172 0.5007803 +0.3637862 0.1678172 0.5007803 +0.3795513 0.1678172 0.5007803 +0.3944623 0.1678172 0.5007803 +0.4085988 0.1678172 0.5007803 +0.4220313 0.1678172 0.5007803 +0.4348222 0.1678172 0.5007803 +0.4470264 0.1678172 0.5007803 +0.4586928 0.1678172 0.5007803 +0.4698649 0.1678172 0.5007803 +0.4805811 0.1678172 0.5007803 +0.490876 0.1678172 0.5007803 +0.5007803 0.1678172 0.5007803 +0.510322 0.1678172 0.5007803 +0.5195258 0.1678172 0.5007803 +0.5284142 0.1678172 0.5007803 +0.5370079 0.1678172 0.5007803 +0.5453253 0.1678172 0.5007803 +0.5533834 0.1678172 0.5007803 +0.5611974 0.1678172 0.5007803 +0.5687816 0.1678172 0.5007803 +0.092819 0.1950164 0.5007803 +0.1056428 0.1950164 0.5007803 +0.1201537 0.1950164 0.5007803 +0.1409607 0.1950164 0.5007803 +0.1678172 0.1950164 0.5007803 +0.1950164 0.1950164 0.5007803 +0.2210581 0.1950164 0.5007803 +0.245636 0.1950164 0.5007803 +0.2686816 0.1950164 0.5007803 +0.2902431 0.1950164 0.5007803 +0.3104189 0.1950164 0.5007803 +0.3293248 0.1950164 0.5007803 +0.3470774 0.1950164 0.5007803 +0.3637862 0.1950164 0.5007803 +0.3795513 0.1950164 0.5007803 +0.3944623 0.1950164 0.5007803 +0.4085988 0.1950164 0.5007803 +0.4220313 0.1950164 0.5007803 +0.4348222 0.1950164 0.5007803 +0.4470264 0.1950164 0.5007803 +0.4586928 0.1950164 0.5007803 +0.4698649 0.1950164 0.5007803 +0.4805811 0.1950164 0.5007803 +0.490876 0.1950164 0.5007803 +0.5007803 0.1950164 0.5007803 +0.510322 0.1950164 0.5007803 +0.5195258 0.1950164 0.5007803 +0.5284142 0.1950164 0.5007803 +0.5370079 0.1950164 0.5007803 +0.5453253 0.1950164 0.5007803 +0.5533834 0.1950164 0.5007803 +0.5611974 0.1950164 0.5007803 +0.5687816 0.1950164 0.5007803 +0.092819 0.2210581 0.5007803 +0.1056428 0.2210581 0.5007803 +0.1201537 0.2210581 0.5007803 +0.1409607 0.2210581 0.5007803 +0.1678172 0.2210581 0.5007803 +0.1950164 0.2210581 0.5007803 +0.2210581 0.2210581 0.5007803 +0.245636 0.2210581 0.5007803 +0.2686816 0.2210581 0.5007803 +0.2902431 0.2210581 0.5007803 +0.3104189 0.2210581 0.5007803 +0.3293248 0.2210581 0.5007803 +0.3470774 0.2210581 0.5007803 +0.3637862 0.2210581 0.5007803 +0.3795513 0.2210581 0.5007803 +0.3944623 0.2210581 0.5007803 +0.4085988 0.2210581 0.5007803 +0.4220313 0.2210581 0.5007803 +0.4348222 0.2210581 0.5007803 +0.4470264 0.2210581 0.5007803 +0.4586928 0.2210581 0.5007803 +0.4698649 0.2210581 0.5007803 +0.4805811 0.2210581 0.5007803 +0.490876 0.2210581 0.5007803 +0.5007803 0.2210581 0.5007803 +0.510322 0.2210581 0.5007803 +0.5195258 0.2210581 0.5007803 +0.5284142 0.2210581 0.5007803 +0.5370079 0.2210581 0.5007803 +0.5453253 0.2210581 0.5007803 +0.5533834 0.2210581 0.5007803 +0.5611974 0.2210581 0.5007803 +0.5687816 0.2210581 0.5007803 +0.092819 0.245636 0.5007803 +0.1056428 0.245636 0.5007803 +0.1201537 0.245636 0.5007803 +0.1409607 0.245636 0.5007803 +0.1678172 0.245636 0.5007803 +0.1950164 0.245636 0.5007803 +0.2210581 0.245636 0.5007803 +0.245636 0.245636 0.5007803 +0.2686816 0.245636 0.5007803 +0.2902431 0.245636 0.5007803 +0.3104189 0.245636 0.5007803 +0.3293248 0.245636 0.5007803 +0.3470774 0.245636 0.5007803 +0.3637862 0.245636 0.5007803 +0.3795513 0.245636 0.5007803 +0.3944623 0.245636 0.5007803 +0.4085988 0.245636 0.5007803 +0.4220313 0.245636 0.5007803 +0.4348222 0.245636 0.5007803 +0.4470264 0.245636 0.5007803 +0.4586928 0.245636 0.5007803 +0.4698649 0.245636 0.5007803 +0.4805811 0.245636 0.5007803 +0.490876 0.245636 0.5007803 +0.5007803 0.245636 0.5007803 +0.510322 0.245636 0.5007803 +0.5195258 0.245636 0.5007803 +0.5284142 0.245636 0.5007803 +0.5370079 0.245636 0.5007803 +0.5453253 0.245636 0.5007803 +0.5533834 0.245636 0.5007803 +0.5611974 0.245636 0.5007803 +0.5687816 0.245636 0.5007803 +0.092819 0.2686816 0.5007803 +0.1056428 0.2686816 0.5007803 +0.1201537 0.2686816 0.5007803 +0.1409607 0.2686816 0.5007803 +0.1678172 0.2686816 0.5007803 +0.1950164 0.2686816 0.5007803 +0.2210581 0.2686816 0.5007803 +0.245636 0.2686816 0.5007803 +0.2686816 0.2686816 0.5007803 +0.2902431 0.2686816 0.5007803 +0.3104189 0.2686816 0.5007803 +0.3293248 0.2686816 0.5007803 +0.3470774 0.2686816 0.5007803 +0.3637862 0.2686816 0.5007803 +0.3795513 0.2686816 0.5007803 +0.3944623 0.2686816 0.5007803 +0.4085988 0.2686816 0.5007803 +0.4220313 0.2686816 0.5007803 +0.4348222 0.2686816 0.5007803 +0.4470264 0.2686816 0.5007803 +0.4586928 0.2686816 0.5007803 +0.4698649 0.2686816 0.5007803 +0.4805811 0.2686816 0.5007803 +0.490876 0.2686816 0.5007803 +0.5007803 0.2686816 0.5007803 +0.510322 0.2686816 0.5007803 +0.5195258 0.2686816 0.5007803 +0.5284142 0.2686816 0.5007803 +0.5370079 0.2686816 0.5007803 +0.5453253 0.2686816 0.5007803 +0.5533834 0.2686816 0.5007803 +0.5611974 0.2686816 0.5007803 +0.5687816 0.2686816 0.5007803 +0.092819 0.2902431 0.5007803 +0.1056428 0.2902431 0.5007803 +0.1201537 0.2902431 0.5007803 +0.1409607 0.2902431 0.5007803 +0.1678172 0.2902431 0.5007803 +0.1950164 0.2902431 0.5007803 +0.2210581 0.2902431 0.5007803 +0.245636 0.2902431 0.5007803 +0.2686816 0.2902431 0.5007803 +0.2902431 0.2902431 0.5007803 +0.3104189 0.2902431 0.5007803 +0.3293248 0.2902431 0.5007803 +0.3470774 0.2902431 0.5007803 +0.3637862 0.2902431 0.5007803 +0.3795513 0.2902431 0.5007803 +0.3944623 0.2902431 0.5007803 +0.4085988 0.2902431 0.5007803 +0.4220313 0.2902431 0.5007803 +0.4348222 0.2902431 0.5007803 +0.4470264 0.2902431 0.5007803 +0.4586928 0.2902431 0.5007803 +0.4698649 0.2902431 0.5007803 +0.4805811 0.2902431 0.5007803 +0.490876 0.2902431 0.5007803 +0.5007803 0.2902431 0.5007803 +0.510322 0.2902431 0.5007803 +0.5195258 0.2902431 0.5007803 +0.5284142 0.2902431 0.5007803 +0.5370079 0.2902431 0.5007803 +0.5453253 0.2902431 0.5007803 +0.5533834 0.2902431 0.5007803 +0.5611974 0.2902431 0.5007803 +0.5687816 0.2902431 0.5007803 +0.092819 0.3104189 0.5007803 +0.1056428 0.3104189 0.5007803 +0.1201537 0.3104189 0.5007803 +0.1409607 0.3104189 0.5007803 +0.1678172 0.3104189 0.5007803 +0.1950164 0.3104189 0.5007803 +0.2210581 0.3104189 0.5007803 +0.245636 0.3104189 0.5007803 +0.2686816 0.3104189 0.5007803 +0.2902431 0.3104189 0.5007803 +0.3104189 0.3104189 0.5007803 +0.3293248 0.3104189 0.5007803 +0.3470774 0.3104189 0.5007803 +0.3637862 0.3104189 0.5007803 +0.3795513 0.3104189 0.5007803 +0.3944623 0.3104189 0.5007803 +0.4085988 0.3104189 0.5007803 +0.4220313 0.3104189 0.5007803 +0.4348222 0.3104189 0.5007803 +0.4470264 0.3104189 0.5007803 +0.4586928 0.3104189 0.5007803 +0.4698649 0.3104189 0.5007803 +0.4805811 0.3104189 0.5007803 +0.490876 0.3104189 0.5007803 +0.5007803 0.3104189 0.5007803 +0.510322 0.3104189 0.5007803 +0.5195258 0.3104189 0.5007803 +0.5284142 0.3104189 0.5007803 +0.5370079 0.3104189 0.5007803 +0.5453253 0.3104189 0.5007803 +0.5533834 0.3104189 0.5007803 +0.5611974 0.3104189 0.5007803 +0.5687816 0.3104189 0.5007803 +0.092819 0.3293248 0.5007803 +0.1056428 0.3293248 0.5007803 +0.1201537 0.3293248 0.5007803 +0.1409607 0.3293248 0.5007803 +0.1678172 0.3293248 0.5007803 +0.1950164 0.3293248 0.5007803 +0.2210581 0.3293248 0.5007803 +0.245636 0.3293248 0.5007803 +0.2686816 0.3293248 0.5007803 +0.2902431 0.3293248 0.5007803 +0.3104189 0.3293248 0.5007803 +0.3293248 0.3293248 0.5007803 +0.3470774 0.3293248 0.5007803 +0.3637862 0.3293248 0.5007803 +0.3795513 0.3293248 0.5007803 +0.3944623 0.3293248 0.5007803 +0.4085988 0.3293248 0.5007803 +0.4220313 0.3293248 0.5007803 +0.4348222 0.3293248 0.5007803 +0.4470264 0.3293248 0.5007803 +0.4586928 0.3293248 0.5007803 +0.4698649 0.3293248 0.5007803 +0.4805811 0.3293248 0.5007803 +0.490876 0.3293248 0.5007803 +0.5007803 0.3293248 0.5007803 +0.510322 0.3293248 0.5007803 +0.5195258 0.3293248 0.5007803 +0.5284142 0.3293248 0.5007803 +0.5370079 0.3293248 0.5007803 +0.5453253 0.3293248 0.5007803 +0.5533834 0.3293248 0.5007803 +0.5611974 0.3293248 0.5007803 +0.5687816 0.3293248 0.5007803 +0.092819 0.3470774 0.5007803 +0.1056428 0.3470774 0.5007803 +0.1201537 0.3470774 0.5007803 +0.1409607 0.3470774 0.5007803 +0.1678172 0.3470774 0.5007803 +0.1950164 0.3470774 0.5007803 +0.2210581 0.3470774 0.5007803 +0.245636 0.3470774 0.5007803 +0.2686816 0.3470774 0.5007803 +0.2902431 0.3470774 0.5007803 +0.3104189 0.3470774 0.5007803 +0.3293248 0.3470774 0.5007803 +0.3470774 0.3470774 0.5007803 +0.3637862 0.3470774 0.5007803 +0.3795513 0.3470774 0.5007803 +0.3944623 0.3470774 0.5007803 +0.4085988 0.3470774 0.5007803 +0.4220313 0.3470774 0.5007803 +0.4348222 0.3470774 0.5007803 +0.4470264 0.3470774 0.5007803 +0.4586928 0.3470774 0.5007803 +0.4698649 0.3470774 0.5007803 +0.4805811 0.3470774 0.5007803 +0.490876 0.3470774 0.5007803 +0.5007803 0.3470774 0.5007803 +0.510322 0.3470774 0.5007803 +0.5195258 0.3470774 0.5007803 +0.5284142 0.3470774 0.5007803 +0.5370079 0.3470774 0.5007803 +0.5453253 0.3470774 0.5007803 +0.5533834 0.3470774 0.5007803 +0.5611974 0.3470774 0.5007803 +0.5687816 0.3470774 0.5007803 +0.092819 0.3637862 0.5007803 +0.1056428 0.3637862 0.5007803 +0.1201537 0.3637862 0.5007803 +0.1409607 0.3637862 0.5007803 +0.1678172 0.3637862 0.5007803 +0.1950164 0.3637862 0.5007803 +0.2210581 0.3637862 0.5007803 +0.245636 0.3637862 0.5007803 +0.2686816 0.3637862 0.5007803 +0.2902431 0.3637862 0.5007803 +0.3104189 0.3637862 0.5007803 +0.3293248 0.3637862 0.5007803 +0.3470774 0.3637862 0.5007803 +0.3637862 0.3637862 0.5007803 +0.3795513 0.3637862 0.5007803 +0.3944623 0.3637862 0.5007803 +0.4085988 0.3637862 0.5007803 +0.4220313 0.3637862 0.5007803 +0.4348222 0.3637862 0.5007803 +0.4470264 0.3637862 0.5007803 +0.4586928 0.3637862 0.5007803 +0.4698649 0.3637862 0.5007803 +0.4805811 0.3637862 0.5007803 +0.490876 0.3637862 0.5007803 +0.5007803 0.3637862 0.5007803 +0.510322 0.3637862 0.5007803 +0.5195258 0.3637862 0.5007803 +0.5284142 0.3637862 0.5007803 +0.5370079 0.3637862 0.5007803 +0.5453253 0.3637862 0.5007803 +0.5533834 0.3637862 0.5007803 +0.5611974 0.3637862 0.5007803 +0.5687816 0.3637862 0.5007803 +0.092819 0.3795513 0.5007803 +0.1056428 0.3795513 0.5007803 +0.1201537 0.3795513 0.5007803 +0.1409607 0.3795513 0.5007803 +0.1678172 0.3795513 0.5007803 +0.1950164 0.3795513 0.5007803 +0.2210581 0.3795513 0.5007803 +0.245636 0.3795513 0.5007803 +0.2686816 0.3795513 0.5007803 +0.2902431 0.3795513 0.5007803 +0.3104189 0.3795513 0.5007803 +0.3293248 0.3795513 0.5007803 +0.3470774 0.3795513 0.5007803 +0.3637862 0.3795513 0.5007803 +0.3795513 0.3795513 0.5007803 +0.3944623 0.3795513 0.5007803 +0.4085988 0.3795513 0.5007803 +0.4220313 0.3795513 0.5007803 +0.4348222 0.3795513 0.5007803 +0.4470264 0.3795513 0.5007803 +0.4586928 0.3795513 0.5007803 +0.4698649 0.3795513 0.5007803 +0.4805811 0.3795513 0.5007803 +0.490876 0.3795513 0.5007803 +0.5007803 0.3795513 0.5007803 +0.510322 0.3795513 0.5007803 +0.5195258 0.3795513 0.5007803 +0.5284142 0.3795513 0.5007803 +0.5370079 0.3795513 0.5007803 +0.5453253 0.3795513 0.5007803 +0.5533834 0.3795513 0.5007803 +0.5611974 0.3795513 0.5007803 +0.5687816 0.3795513 0.5007803 +0.092819 0.3944623 0.5007803 +0.1056428 0.3944623 0.5007803 +0.1201537 0.3944623 0.5007803 +0.1409607 0.3944623 0.5007803 +0.1678172 0.3944623 0.5007803 +0.1950164 0.3944623 0.5007803 +0.2210581 0.3944623 0.5007803 +0.245636 0.3944623 0.5007803 +0.2686816 0.3944623 0.5007803 +0.2902431 0.3944623 0.5007803 +0.3104189 0.3944623 0.5007803 +0.3293248 0.3944623 0.5007803 +0.3470774 0.3944623 0.5007803 +0.3637862 0.3944623 0.5007803 +0.3795513 0.3944623 0.5007803 +0.3944623 0.3944623 0.5007803 +0.4085988 0.3944623 0.5007803 +0.4220313 0.3944623 0.5007803 +0.4348222 0.3944623 0.5007803 +0.4470264 0.3944623 0.5007803 +0.4586928 0.3944623 0.5007803 +0.4698649 0.3944623 0.5007803 +0.4805811 0.3944623 0.5007803 +0.490876 0.3944623 0.5007803 +0.5007803 0.3944623 0.5007803 +0.510322 0.3944623 0.5007803 +0.5195258 0.3944623 0.5007803 +0.5284142 0.3944623 0.5007803 +0.5370079 0.3944623 0.5007803 +0.5453253 0.3944623 0.5007803 +0.5533834 0.3944623 0.5007803 +0.5611974 0.3944623 0.5007803 +0.5687816 0.3944623 0.5007803 +0.092819 0.4085988 0.5007803 +0.1056428 0.4085988 0.5007803 +0.1201537 0.4085988 0.5007803 +0.1409607 0.4085988 0.5007803 +0.1678172 0.4085988 0.5007803 +0.1950164 0.4085988 0.5007803 +0.2210581 0.4085988 0.5007803 +0.245636 0.4085988 0.5007803 +0.2686816 0.4085988 0.5007803 +0.2902431 0.4085988 0.5007803 +0.3104189 0.4085988 0.5007803 +0.3293248 0.4085988 0.5007803 +0.3470774 0.4085988 0.5007803 +0.3637862 0.4085988 0.5007803 +0.3795513 0.4085988 0.5007803 +0.3944623 0.4085988 0.5007803 +0.4085988 0.4085988 0.5007803 +0.4220313 0.4085988 0.5007803 +0.4348222 0.4085988 0.5007803 +0.4470264 0.4085988 0.5007803 +0.4586928 0.4085988 0.5007803 +0.4698649 0.4085988 0.5007803 +0.4805811 0.4085988 0.5007803 +0.490876 0.4085988 0.5007803 +0.5007803 0.4085988 0.5007803 +0.510322 0.4085988 0.5007803 +0.5195258 0.4085988 0.5007803 +0.5284142 0.4085988 0.5007803 +0.5370079 0.4085988 0.5007803 +0.5453253 0.4085988 0.5007803 +0.5533834 0.4085988 0.5007803 +0.5611974 0.4085988 0.5007803 +0.5687816 0.4085988 0.5007803 +0.092819 0.4220313 0.5007803 +0.1056428 0.4220313 0.5007803 +0.1201537 0.4220313 0.5007803 +0.1409607 0.4220313 0.5007803 +0.1678172 0.4220313 0.5007803 +0.1950164 0.4220313 0.5007803 +0.2210581 0.4220313 0.5007803 +0.245636 0.4220313 0.5007803 +0.2686816 0.4220313 0.5007803 +0.2902431 0.4220313 0.5007803 +0.3104189 0.4220313 0.5007803 +0.3293248 0.4220313 0.5007803 +0.3470774 0.4220313 0.5007803 +0.3637862 0.4220313 0.5007803 +0.3795513 0.4220313 0.5007803 +0.3944623 0.4220313 0.5007803 +0.4085988 0.4220313 0.5007803 +0.4220313 0.4220313 0.5007803 +0.4348222 0.4220313 0.5007803 +0.4470264 0.4220313 0.5007803 +0.4586928 0.4220313 0.5007803 +0.4698649 0.4220313 0.5007803 +0.4805811 0.4220313 0.5007803 +0.490876 0.4220313 0.5007803 +0.5007803 0.4220313 0.5007803 +0.510322 0.4220313 0.5007803 +0.5195258 0.4220313 0.5007803 +0.5284142 0.4220313 0.5007803 +0.5370079 0.4220313 0.5007803 +0.5453253 0.4220313 0.5007803 +0.5533834 0.4220313 0.5007803 +0.5611974 0.4220313 0.5007803 +0.5687816 0.4220313 0.5007803 +0.092819 0.4348222 0.5007803 +0.1056428 0.4348222 0.5007803 +0.1201537 0.4348222 0.5007803 +0.1409607 0.4348222 0.5007803 +0.1678172 0.4348222 0.5007803 +0.1950164 0.4348222 0.5007803 +0.2210581 0.4348222 0.5007803 +0.245636 0.4348222 0.5007803 +0.2686816 0.4348222 0.5007803 +0.2902431 0.4348222 0.5007803 +0.3104189 0.4348222 0.5007803 +0.3293248 0.4348222 0.5007803 +0.3470774 0.4348222 0.5007803 +0.3637862 0.4348222 0.5007803 +0.3795513 0.4348222 0.5007803 +0.3944623 0.4348222 0.5007803 +0.4085988 0.4348222 0.5007803 +0.4220313 0.4348222 0.5007803 +0.4348222 0.4348222 0.5007803 +0.4470264 0.4348222 0.5007803 +0.4586928 0.4348222 0.5007803 +0.4698649 0.4348222 0.5007803 +0.4805811 0.4348222 0.5007803 +0.490876 0.4348222 0.5007803 +0.5007803 0.4348222 0.5007803 +0.510322 0.4348222 0.5007803 +0.5195258 0.4348222 0.5007803 +0.5284142 0.4348222 0.5007803 +0.5370079 0.4348222 0.5007803 +0.5453253 0.4348222 0.5007803 +0.5533834 0.4348222 0.5007803 +0.5611974 0.4348222 0.5007803 +0.5687816 0.4348222 0.5007803 +0.092819 0.4470264 0.5007803 +0.1056428 0.4470264 0.5007803 +0.1201537 0.4470264 0.5007803 +0.1409607 0.4470264 0.5007803 +0.1678172 0.4470264 0.5007803 +0.1950164 0.4470264 0.5007803 +0.2210581 0.4470264 0.5007803 +0.245636 0.4470264 0.5007803 +0.2686816 0.4470264 0.5007803 +0.2902431 0.4470264 0.5007803 +0.3104189 0.4470264 0.5007803 +0.3293248 0.4470264 0.5007803 +0.3470774 0.4470264 0.5007803 +0.3637862 0.4470264 0.5007803 +0.3795513 0.4470264 0.5007803 +0.3944623 0.4470264 0.5007803 +0.4085988 0.4470264 0.5007803 +0.4220313 0.4470264 0.5007803 +0.4348222 0.4470264 0.5007803 +0.4470264 0.4470264 0.5007803 +0.4586928 0.4470264 0.5007803 +0.4698649 0.4470264 0.5007803 +0.4805811 0.4470264 0.5007803 +0.490876 0.4470264 0.5007803 +0.5007803 0.4470264 0.5007803 +0.510322 0.4470264 0.5007803 +0.5195258 0.4470264 0.5007803 +0.5284142 0.4470264 0.5007803 +0.5370079 0.4470264 0.5007803 +0.5453253 0.4470264 0.5007803 +0.5533834 0.4470264 0.5007803 +0.5611974 0.4470264 0.5007803 +0.5687816 0.4470264 0.5007803 +0.092819 0.4586928 0.5007803 +0.1056428 0.4586928 0.5007803 +0.1201537 0.4586928 0.5007803 +0.1409607 0.4586928 0.5007803 +0.1678172 0.4586928 0.5007803 +0.1950164 0.4586928 0.5007803 +0.2210581 0.4586928 0.5007803 +0.245636 0.4586928 0.5007803 +0.2686816 0.4586928 0.5007803 +0.2902431 0.4586928 0.5007803 +0.3104189 0.4586928 0.5007803 +0.3293248 0.4586928 0.5007803 +0.3470774 0.4586928 0.5007803 +0.3637862 0.4586928 0.5007803 +0.3795513 0.4586928 0.5007803 +0.3944623 0.4586928 0.5007803 +0.4085988 0.4586928 0.5007803 +0.4220313 0.4586928 0.5007803 +0.4348222 0.4586928 0.5007803 +0.4470264 0.4586928 0.5007803 +0.4586928 0.4586928 0.5007803 +0.4698649 0.4586928 0.5007803 +0.4805811 0.4586928 0.5007803 +0.490876 0.4586928 0.5007803 +0.5007803 0.4586928 0.5007803 +0.510322 0.4586928 0.5007803 +0.5195258 0.4586928 0.5007803 +0.5284142 0.4586928 0.5007803 +0.5370079 0.4586928 0.5007803 +0.5453253 0.4586928 0.5007803 +0.5533834 0.4586928 0.5007803 +0.5611974 0.4586928 0.5007803 +0.5687816 0.4586928 0.5007803 +0.092819 0.4698649 0.5007803 +0.1056428 0.4698649 0.5007803 +0.1201537 0.4698649 0.5007803 +0.1409607 0.4698649 0.5007803 +0.1678172 0.4698649 0.5007803 +0.1950164 0.4698649 0.5007803 +0.2210581 0.4698649 0.5007803 +0.245636 0.4698649 0.5007803 +0.2686816 0.4698649 0.5007803 +0.2902431 0.4698649 0.5007803 +0.3104189 0.4698649 0.5007803 +0.3293248 0.4698649 0.5007803 +0.3470774 0.4698649 0.5007803 +0.3637862 0.4698649 0.5007803 +0.3795513 0.4698649 0.5007803 +0.3944623 0.4698649 0.5007803 +0.4085988 0.4698649 0.5007803 +0.4220313 0.4698649 0.5007803 +0.4348222 0.4698649 0.5007803 +0.4470264 0.4698649 0.5007803 +0.4586928 0.4698649 0.5007803 +0.4698649 0.4698649 0.5007803 +0.4805811 0.4698649 0.5007803 +0.490876 0.4698649 0.5007803 +0.5007803 0.4698649 0.5007803 +0.510322 0.4698649 0.5007803 +0.5195258 0.4698649 0.5007803 +0.5284142 0.4698649 0.5007803 +0.5370079 0.4698649 0.5007803 +0.5453253 0.4698649 0.5007803 +0.5533834 0.4698649 0.5007803 +0.5611974 0.4698649 0.5007803 +0.5687816 0.4698649 0.5007803 +0.092819 0.4805811 0.5007803 +0.1056428 0.4805811 0.5007803 +0.1201537 0.4805811 0.5007803 +0.1409607 0.4805811 0.5007803 +0.1678172 0.4805811 0.5007803 +0.1950164 0.4805811 0.5007803 +0.2210581 0.4805811 0.5007803 +0.245636 0.4805811 0.5007803 +0.2686816 0.4805811 0.5007803 +0.2902431 0.4805811 0.5007803 +0.3104189 0.4805811 0.5007803 +0.3293248 0.4805811 0.5007803 +0.3470774 0.4805811 0.5007803 +0.3637862 0.4805811 0.5007803 +0.3795513 0.4805811 0.5007803 +0.3944623 0.4805811 0.5007803 +0.4085988 0.4805811 0.5007803 +0.4220313 0.4805811 0.5007803 +0.4348222 0.4805811 0.5007803 +0.4470264 0.4805811 0.5007803 +0.4586928 0.4805811 0.5007803 +0.4698649 0.4805811 0.5007803 +0.4805811 0.4805811 0.5007803 +0.490876 0.4805811 0.5007803 +0.5007803 0.4805811 0.5007803 +0.510322 0.4805811 0.5007803 +0.5195258 0.4805811 0.5007803 +0.5284142 0.4805811 0.5007803 +0.5370079 0.4805811 0.5007803 +0.5453253 0.4805811 0.5007803 +0.5533834 0.4805811 0.5007803 +0.5611974 0.4805811 0.5007803 +0.5687816 0.4805811 0.5007803 +0.092819 0.490876 0.5007803 +0.1056428 0.490876 0.5007803 +0.1201537 0.490876 0.5007803 +0.1409607 0.490876 0.5007803 +0.1678172 0.490876 0.5007803 +0.1950164 0.490876 0.5007803 +0.2210581 0.490876 0.5007803 +0.245636 0.490876 0.5007803 +0.2686816 0.490876 0.5007803 +0.2902431 0.490876 0.5007803 +0.3104189 0.490876 0.5007803 +0.3293248 0.490876 0.5007803 +0.3470774 0.490876 0.5007803 +0.3637862 0.490876 0.5007803 +0.3795513 0.490876 0.5007803 +0.3944623 0.490876 0.5007803 +0.4085988 0.490876 0.5007803 +0.4220313 0.490876 0.5007803 +0.4348222 0.490876 0.5007803 +0.4470264 0.490876 0.5007803 +0.4586928 0.490876 0.5007803 +0.4698649 0.490876 0.5007803 +0.4805811 0.490876 0.5007803 +0.490876 0.490876 0.5007803 +0.5007803 0.490876 0.5007803 +0.510322 0.490876 0.5007803 +0.5195258 0.490876 0.5007803 +0.5284142 0.490876 0.5007803 +0.5370079 0.490876 0.5007803 +0.5453253 0.490876 0.5007803 +0.5533834 0.490876 0.5007803 +0.5611974 0.490876 0.5007803 +0.5687816 0.490876 0.5007803 +0.092819 0.5007803 0.5007803 +0.1056428 0.5007803 0.5007803 +0.1201537 0.5007803 0.5007803 +0.1409607 0.5007803 0.5007803 +0.1678172 0.5007803 0.5007803 +0.1950164 0.5007803 0.5007803 +0.2210581 0.5007803 0.5007803 +0.245636 0.5007803 0.5007803 +0.2686816 0.5007803 0.5007803 +0.2902431 0.5007803 0.5007803 +0.3104189 0.5007803 0.5007803 +0.3293248 0.5007803 0.5007803 +0.3470774 0.5007803 0.5007803 +0.3637862 0.5007803 0.5007803 +0.3795513 0.5007803 0.5007803 +0.3944623 0.5007803 0.5007803 +0.4085988 0.5007803 0.5007803 +0.4220313 0.5007803 0.5007803 +0.4348222 0.5007803 0.5007803 +0.4470264 0.5007803 0.5007803 +0.4586928 0.5007803 0.5007803 +0.4698649 0.5007803 0.5007803 +0.4805811 0.5007803 0.5007803 +0.490876 0.5007803 0.5007803 +0.5007803 0.5007803 0.5007803 +0.510322 0.5007803 0.5007803 +0.5195258 0.5007803 0.5007803 +0.5284142 0.5007803 0.5007803 +0.5370079 0.5007803 0.5007803 +0.5453253 0.5007803 0.5007803 +0.5533834 0.5007803 0.5007803 +0.5611974 0.5007803 0.5007803 +0.5687816 0.5007803 0.5007803 +0.092819 0.510322 0.5007803 +0.1056428 0.510322 0.5007803 +0.1201537 0.510322 0.5007803 +0.1409607 0.510322 0.5007803 +0.1678172 0.510322 0.5007803 +0.1950164 0.510322 0.5007803 +0.2210581 0.510322 0.5007803 +0.245636 0.510322 0.5007803 +0.2686816 0.510322 0.5007803 +0.2902431 0.510322 0.5007803 +0.3104189 0.510322 0.5007803 +0.3293248 0.510322 0.5007803 +0.3470774 0.510322 0.5007803 +0.3637862 0.510322 0.5007803 +0.3795513 0.510322 0.5007803 +0.3944623 0.510322 0.5007803 +0.4085988 0.510322 0.5007803 +0.4220313 0.510322 0.5007803 +0.4348222 0.510322 0.5007803 +0.4470264 0.510322 0.5007803 +0.4586928 0.510322 0.5007803 +0.4698649 0.510322 0.5007803 +0.4805811 0.510322 0.5007803 +0.490876 0.510322 0.5007803 +0.5007803 0.510322 0.5007803 +0.510322 0.510322 0.5007803 +0.5195258 0.510322 0.5007803 +0.5284142 0.510322 0.5007803 +0.5370079 0.510322 0.5007803 +0.5453253 0.510322 0.5007803 +0.5533834 0.510322 0.5007803 +0.5611974 0.510322 0.5007803 +0.5687816 0.510322 0.5007803 +0.092819 0.5195258 0.5007803 +0.1056428 0.5195258 0.5007803 +0.1201537 0.5195258 0.5007803 +0.1409607 0.5195258 0.5007803 +0.1678172 0.5195258 0.5007803 +0.1950164 0.5195258 0.5007803 +0.2210581 0.5195258 0.5007803 +0.245636 0.5195258 0.5007803 +0.2686816 0.5195258 0.5007803 +0.2902431 0.5195258 0.5007803 +0.3104189 0.5195258 0.5007803 +0.3293248 0.5195258 0.5007803 +0.3470774 0.5195258 0.5007803 +0.3637862 0.5195258 0.5007803 +0.3795513 0.5195258 0.5007803 +0.3944623 0.5195258 0.5007803 +0.4085988 0.5195258 0.5007803 +0.4220313 0.5195258 0.5007803 +0.4348222 0.5195258 0.5007803 +0.4470264 0.5195258 0.5007803 +0.4586928 0.5195258 0.5007803 +0.4698649 0.5195258 0.5007803 +0.4805811 0.5195258 0.5007803 +0.490876 0.5195258 0.5007803 +0.5007803 0.5195258 0.5007803 +0.510322 0.5195258 0.5007803 +0.5195258 0.5195258 0.5007803 +0.5284142 0.5195258 0.5007803 +0.5370079 0.5195258 0.5007803 +0.5453253 0.5195258 0.5007803 +0.5533834 0.5195258 0.5007803 +0.5611974 0.5195258 0.5007803 +0.5687816 0.5195258 0.5007803 +0.092819 0.5284142 0.5007803 +0.1056428 0.5284142 0.5007803 +0.1201537 0.5284142 0.5007803 +0.1409607 0.5284142 0.5007803 +0.1678172 0.5284142 0.5007803 +0.1950164 0.5284142 0.5007803 +0.2210581 0.5284142 0.5007803 +0.245636 0.5284142 0.5007803 +0.2686816 0.5284142 0.5007803 +0.2902431 0.5284142 0.5007803 +0.3104189 0.5284142 0.5007803 +0.3293248 0.5284142 0.5007803 +0.3470774 0.5284142 0.5007803 +0.3637862 0.5284142 0.5007803 +0.3795513 0.5284142 0.5007803 +0.3944623 0.5284142 0.5007803 +0.4085988 0.5284142 0.5007803 +0.4220313 0.5284142 0.5007803 +0.4348222 0.5284142 0.5007803 +0.4470264 0.5284142 0.5007803 +0.4586928 0.5284142 0.5007803 +0.4698649 0.5284142 0.5007803 +0.4805811 0.5284142 0.5007803 +0.490876 0.5284142 0.5007803 +0.5007803 0.5284142 0.5007803 +0.510322 0.5284142 0.5007803 +0.5195258 0.5284142 0.5007803 +0.5284142 0.5284142 0.5007803 +0.5370079 0.5284142 0.5007803 +0.5453253 0.5284142 0.5007803 +0.5533834 0.5284142 0.5007803 +0.5611974 0.5284142 0.5007803 +0.5687816 0.5284142 0.5007803 +0.092819 0.5370079 0.5007803 +0.1056428 0.5370079 0.5007803 +0.1201537 0.5370079 0.5007803 +0.1409607 0.5370079 0.5007803 +0.1678172 0.5370079 0.5007803 +0.1950164 0.5370079 0.5007803 +0.2210581 0.5370079 0.5007803 +0.245636 0.5370079 0.5007803 +0.2686816 0.5370079 0.5007803 +0.2902431 0.5370079 0.5007803 +0.3104189 0.5370079 0.5007803 +0.3293248 0.5370079 0.5007803 +0.3470774 0.5370079 0.5007803 +0.3637862 0.5370079 0.5007803 +0.3795513 0.5370079 0.5007803 +0.3944623 0.5370079 0.5007803 +0.4085988 0.5370079 0.5007803 +0.4220313 0.5370079 0.5007803 +0.4348222 0.5370079 0.5007803 +0.4470264 0.5370079 0.5007803 +0.4586928 0.5370079 0.5007803 +0.4698649 0.5370079 0.5007803 +0.4805811 0.5370079 0.5007803 +0.490876 0.5370079 0.5007803 +0.5007803 0.5370079 0.5007803 +0.510322 0.5370079 0.5007803 +0.5195258 0.5370079 0.5007803 +0.5284142 0.5370079 0.5007803 +0.5370079 0.5370079 0.5007803 +0.5453253 0.5370079 0.5007803 +0.5533834 0.5370079 0.5007803 +0.5611974 0.5370079 0.5007803 +0.5687816 0.5370079 0.5007803 +0.092819 0.5453253 0.5007803 +0.1056428 0.5453253 0.5007803 +0.1201537 0.5453253 0.5007803 +0.1409607 0.5453253 0.5007803 +0.1678172 0.5453253 0.5007803 +0.1950164 0.5453253 0.5007803 +0.2210581 0.5453253 0.5007803 +0.245636 0.5453253 0.5007803 +0.2686816 0.5453253 0.5007803 +0.2902431 0.5453253 0.5007803 +0.3104189 0.5453253 0.5007803 +0.3293248 0.5453253 0.5007803 +0.3470774 0.5453253 0.5007803 +0.3637862 0.5453253 0.5007803 +0.3795513 0.5453253 0.5007803 +0.3944623 0.5453253 0.5007803 +0.4085988 0.5453253 0.5007803 +0.4220313 0.5453253 0.5007803 +0.4348222 0.5453253 0.5007803 +0.4470264 0.5453253 0.5007803 +0.4586928 0.5453253 0.5007803 +0.4698649 0.5453253 0.5007803 +0.4805811 0.5453253 0.5007803 +0.490876 0.5453253 0.5007803 +0.5007803 0.5453253 0.5007803 +0.510322 0.5453253 0.5007803 +0.5195258 0.5453253 0.5007803 +0.5284142 0.5453253 0.5007803 +0.5370079 0.5453253 0.5007803 +0.5453253 0.5453253 0.5007803 +0.5533834 0.5453253 0.5007803 +0.5611974 0.5453253 0.5007803 +0.5687816 0.5453253 0.5007803 +0.092819 0.5533834 0.5007803 +0.1056428 0.5533834 0.5007803 +0.1201537 0.5533834 0.5007803 +0.1409607 0.5533834 0.5007803 +0.1678172 0.5533834 0.5007803 +0.1950164 0.5533834 0.5007803 +0.2210581 0.5533834 0.5007803 +0.245636 0.5533834 0.5007803 +0.2686816 0.5533834 0.5007803 +0.2902431 0.5533834 0.5007803 +0.3104189 0.5533834 0.5007803 +0.3293248 0.5533834 0.5007803 +0.3470774 0.5533834 0.5007803 +0.3637862 0.5533834 0.5007803 +0.3795513 0.5533834 0.5007803 +0.3944623 0.5533834 0.5007803 +0.4085988 0.5533834 0.5007803 +0.4220313 0.5533834 0.5007803 +0.4348222 0.5533834 0.5007803 +0.4470264 0.5533834 0.5007803 +0.4586928 0.5533834 0.5007803 +0.4698649 0.5533834 0.5007803 +0.4805811 0.5533834 0.5007803 +0.490876 0.5533834 0.5007803 +0.5007803 0.5533834 0.5007803 +0.510322 0.5533834 0.5007803 +0.5195258 0.5533834 0.5007803 +0.5284142 0.5533834 0.5007803 +0.5370079 0.5533834 0.5007803 +0.5453253 0.5533834 0.5007803 +0.5533834 0.5533834 0.5007803 +0.5611974 0.5533834 0.5007803 +0.5687816 0.5533834 0.5007803 +0.092819 0.5611974 0.5007803 +0.1056428 0.5611974 0.5007803 +0.1201537 0.5611974 0.5007803 +0.1409607 0.5611974 0.5007803 +0.1678172 0.5611974 0.5007803 +0.1950164 0.5611974 0.5007803 +0.2210581 0.5611974 0.5007803 +0.245636 0.5611974 0.5007803 +0.2686816 0.5611974 0.5007803 +0.2902431 0.5611974 0.5007803 +0.3104189 0.5611974 0.5007803 +0.3293248 0.5611974 0.5007803 +0.3470774 0.5611974 0.5007803 +0.3637862 0.5611974 0.5007803 +0.3795513 0.5611974 0.5007803 +0.3944623 0.5611974 0.5007803 +0.4085988 0.5611974 0.5007803 +0.4220313 0.5611974 0.5007803 +0.4348222 0.5611974 0.5007803 +0.4470264 0.5611974 0.5007803 +0.4586928 0.5611974 0.5007803 +0.4698649 0.5611974 0.5007803 +0.4805811 0.5611974 0.5007803 +0.490876 0.5611974 0.5007803 +0.5007803 0.5611974 0.5007803 +0.510322 0.5611974 0.5007803 +0.5195258 0.5611974 0.5007803 +0.5284142 0.5611974 0.5007803 +0.5370079 0.5611974 0.5007803 +0.5453253 0.5611974 0.5007803 +0.5533834 0.5611974 0.5007803 +0.5611974 0.5611974 0.5007803 +0.5687816 0.5611974 0.5007803 +0.092819 0.5687816 0.5007803 +0.1056428 0.5687816 0.5007803 +0.1201537 0.5687816 0.5007803 +0.1409607 0.5687816 0.5007803 +0.1678172 0.5687816 0.5007803 +0.1950164 0.5687816 0.5007803 +0.2210581 0.5687816 0.5007803 +0.245636 0.5687816 0.5007803 +0.2686816 0.5687816 0.5007803 +0.2902431 0.5687816 0.5007803 +0.3104189 0.5687816 0.5007803 +0.3293248 0.5687816 0.5007803 +0.3470774 0.5687816 0.5007803 +0.3637862 0.5687816 0.5007803 +0.3795513 0.5687816 0.5007803 +0.3944623 0.5687816 0.5007803 +0.4085988 0.5687816 0.5007803 +0.4220313 0.5687816 0.5007803 +0.4348222 0.5687816 0.5007803 +0.4470264 0.5687816 0.5007803 +0.4586928 0.5687816 0.5007803 +0.4698649 0.5687816 0.5007803 +0.4805811 0.5687816 0.5007803 +0.490876 0.5687816 0.5007803 +0.5007803 0.5687816 0.5007803 +0.510322 0.5687816 0.5007803 +0.5195258 0.5687816 0.5007803 +0.5284142 0.5687816 0.5007803 +0.5370079 0.5687816 0.5007803 +0.5453253 0.5687816 0.5007803 +0.5533834 0.5687816 0.5007803 +0.5611974 0.5687816 0.5007803 +0.5687816 0.5687816 0.5007803 +0.092819 0.092819 0.510322 +0.1056428 0.092819 0.510322 +0.1201537 0.092819 0.510322 +0.1409607 0.092819 0.510322 +0.1678172 0.092819 0.510322 +0.1950164 0.092819 0.510322 +0.2210581 0.092819 0.510322 +0.245636 0.092819 0.510322 +0.2686816 0.092819 0.510322 +0.2902431 0.092819 0.510322 +0.3104189 0.092819 0.510322 +0.3293248 0.092819 0.510322 +0.3470774 0.092819 0.510322 +0.3637862 0.092819 0.510322 +0.3795513 0.092819 0.510322 +0.3944623 0.092819 0.510322 +0.4085988 0.092819 0.510322 +0.4220313 0.092819 0.510322 +0.4348222 0.092819 0.510322 +0.4470264 0.092819 0.510322 +0.4586928 0.092819 0.510322 +0.4698649 0.092819 0.510322 +0.4805811 0.092819 0.510322 +0.490876 0.092819 0.510322 +0.5007803 0.092819 0.510322 +0.510322 0.092819 0.510322 +0.5195258 0.092819 0.510322 +0.5284142 0.092819 0.510322 +0.5370079 0.092819 0.510322 +0.5453253 0.092819 0.510322 +0.5533834 0.092819 0.510322 +0.5611974 0.092819 0.510322 +0.5687816 0.092819 0.510322 +0.092819 0.1056428 0.510322 +0.1056428 0.1056428 0.510322 +0.1201537 0.1056428 0.510322 +0.1409607 0.1056428 0.510322 +0.1678172 0.1056428 0.510322 +0.1950164 0.1056428 0.510322 +0.2210581 0.1056428 0.510322 +0.245636 0.1056428 0.510322 +0.2686816 0.1056428 0.510322 +0.2902431 0.1056428 0.510322 +0.3104189 0.1056428 0.510322 +0.3293248 0.1056428 0.510322 +0.3470774 0.1056428 0.510322 +0.3637862 0.1056428 0.510322 +0.3795513 0.1056428 0.510322 +0.3944623 0.1056428 0.510322 +0.4085988 0.1056428 0.510322 +0.4220313 0.1056428 0.510322 +0.4348222 0.1056428 0.510322 +0.4470264 0.1056428 0.510322 +0.4586928 0.1056428 0.510322 +0.4698649 0.1056428 0.510322 +0.4805811 0.1056428 0.510322 +0.490876 0.1056428 0.510322 +0.5007803 0.1056428 0.510322 +0.510322 0.1056428 0.510322 +0.5195258 0.1056428 0.510322 +0.5284142 0.1056428 0.510322 +0.5370079 0.1056428 0.510322 +0.5453253 0.1056428 0.510322 +0.5533834 0.1056428 0.510322 +0.5611974 0.1056428 0.510322 +0.5687816 0.1056428 0.510322 +0.092819 0.1201537 0.510322 +0.1056428 0.1201537 0.510322 +0.1201537 0.1201537 0.510322 +0.1409607 0.1201537 0.510322 +0.1678172 0.1201537 0.510322 +0.1950164 0.1201537 0.510322 +0.2210581 0.1201537 0.510322 +0.245636 0.1201537 0.510322 +0.2686816 0.1201537 0.510322 +0.2902431 0.1201537 0.510322 +0.3104189 0.1201537 0.510322 +0.3293248 0.1201537 0.510322 +0.3470774 0.1201537 0.510322 +0.3637862 0.1201537 0.510322 +0.3795513 0.1201537 0.510322 +0.3944623 0.1201537 0.510322 +0.4085988 0.1201537 0.510322 +0.4220313 0.1201537 0.510322 +0.4348222 0.1201537 0.510322 +0.4470264 0.1201537 0.510322 +0.4586928 0.1201537 0.510322 +0.4698649 0.1201537 0.510322 +0.4805811 0.1201537 0.510322 +0.490876 0.1201537 0.510322 +0.5007803 0.1201537 0.510322 +0.510322 0.1201537 0.510322 +0.5195258 0.1201537 0.510322 +0.5284142 0.1201537 0.510322 +0.5370079 0.1201537 0.510322 +0.5453253 0.1201537 0.510322 +0.5533834 0.1201537 0.510322 +0.5611974 0.1201537 0.510322 +0.5687816 0.1201537 0.510322 +0.092819 0.1409607 0.510322 +0.1056428 0.1409607 0.510322 +0.1201537 0.1409607 0.510322 +0.1409607 0.1409607 0.510322 +0.1678172 0.1409607 0.510322 +0.1950164 0.1409607 0.510322 +0.2210581 0.1409607 0.510322 +0.245636 0.1409607 0.510322 +0.2686816 0.1409607 0.510322 +0.2902431 0.1409607 0.510322 +0.3104189 0.1409607 0.510322 +0.3293248 0.1409607 0.510322 +0.3470774 0.1409607 0.510322 +0.3637862 0.1409607 0.510322 +0.3795513 0.1409607 0.510322 +0.3944623 0.1409607 0.510322 +0.4085988 0.1409607 0.510322 +0.4220313 0.1409607 0.510322 +0.4348222 0.1409607 0.510322 +0.4470264 0.1409607 0.510322 +0.4586928 0.1409607 0.510322 +0.4698649 0.1409607 0.510322 +0.4805811 0.1409607 0.510322 +0.490876 0.1409607 0.510322 +0.5007803 0.1409607 0.510322 +0.510322 0.1409607 0.510322 +0.5195258 0.1409607 0.510322 +0.5284142 0.1409607 0.510322 +0.5370079 0.1409607 0.510322 +0.5453253 0.1409607 0.510322 +0.5533834 0.1409607 0.510322 +0.5611974 0.1409607 0.510322 +0.5687816 0.1409607 0.510322 +0.092819 0.1678172 0.510322 +0.1056428 0.1678172 0.510322 +0.1201537 0.1678172 0.510322 +0.1409607 0.1678172 0.510322 +0.1678172 0.1678172 0.510322 +0.1950164 0.1678172 0.510322 +0.2210581 0.1678172 0.510322 +0.245636 0.1678172 0.510322 +0.2686816 0.1678172 0.510322 +0.2902431 0.1678172 0.510322 +0.3104189 0.1678172 0.510322 +0.3293248 0.1678172 0.510322 +0.3470774 0.1678172 0.510322 +0.3637862 0.1678172 0.510322 +0.3795513 0.1678172 0.510322 +0.3944623 0.1678172 0.510322 +0.4085988 0.1678172 0.510322 +0.4220313 0.1678172 0.510322 +0.4348222 0.1678172 0.510322 +0.4470264 0.1678172 0.510322 +0.4586928 0.1678172 0.510322 +0.4698649 0.1678172 0.510322 +0.4805811 0.1678172 0.510322 +0.490876 0.1678172 0.510322 +0.5007803 0.1678172 0.510322 +0.510322 0.1678172 0.510322 +0.5195258 0.1678172 0.510322 +0.5284142 0.1678172 0.510322 +0.5370079 0.1678172 0.510322 +0.5453253 0.1678172 0.510322 +0.5533834 0.1678172 0.510322 +0.5611974 0.1678172 0.510322 +0.5687816 0.1678172 0.510322 +0.092819 0.1950164 0.510322 +0.1056428 0.1950164 0.510322 +0.1201537 0.1950164 0.510322 +0.1409607 0.1950164 0.510322 +0.1678172 0.1950164 0.510322 +0.1950164 0.1950164 0.510322 +0.2210581 0.1950164 0.510322 +0.245636 0.1950164 0.510322 +0.2686816 0.1950164 0.510322 +0.2902431 0.1950164 0.510322 +0.3104189 0.1950164 0.510322 +0.3293248 0.1950164 0.510322 +0.3470774 0.1950164 0.510322 +0.3637862 0.1950164 0.510322 +0.3795513 0.1950164 0.510322 +0.3944623 0.1950164 0.510322 +0.4085988 0.1950164 0.510322 +0.4220313 0.1950164 0.510322 +0.4348222 0.1950164 0.510322 +0.4470264 0.1950164 0.510322 +0.4586928 0.1950164 0.510322 +0.4698649 0.1950164 0.510322 +0.4805811 0.1950164 0.510322 +0.490876 0.1950164 0.510322 +0.5007803 0.1950164 0.510322 +0.510322 0.1950164 0.510322 +0.5195258 0.1950164 0.510322 +0.5284142 0.1950164 0.510322 +0.5370079 0.1950164 0.510322 +0.5453253 0.1950164 0.510322 +0.5533834 0.1950164 0.510322 +0.5611974 0.1950164 0.510322 +0.5687816 0.1950164 0.510322 +0.092819 0.2210581 0.510322 +0.1056428 0.2210581 0.510322 +0.1201537 0.2210581 0.510322 +0.1409607 0.2210581 0.510322 +0.1678172 0.2210581 0.510322 +0.1950164 0.2210581 0.510322 +0.2210581 0.2210581 0.510322 +0.245636 0.2210581 0.510322 +0.2686816 0.2210581 0.510322 +0.2902431 0.2210581 0.510322 +0.3104189 0.2210581 0.510322 +0.3293248 0.2210581 0.510322 +0.3470774 0.2210581 0.510322 +0.3637862 0.2210581 0.510322 +0.3795513 0.2210581 0.510322 +0.3944623 0.2210581 0.510322 +0.4085988 0.2210581 0.510322 +0.4220313 0.2210581 0.510322 +0.4348222 0.2210581 0.510322 +0.4470264 0.2210581 0.510322 +0.4586928 0.2210581 0.510322 +0.4698649 0.2210581 0.510322 +0.4805811 0.2210581 0.510322 +0.490876 0.2210581 0.510322 +0.5007803 0.2210581 0.510322 +0.510322 0.2210581 0.510322 +0.5195258 0.2210581 0.510322 +0.5284142 0.2210581 0.510322 +0.5370079 0.2210581 0.510322 +0.5453253 0.2210581 0.510322 +0.5533834 0.2210581 0.510322 +0.5611974 0.2210581 0.510322 +0.5687816 0.2210581 0.510322 +0.092819 0.245636 0.510322 +0.1056428 0.245636 0.510322 +0.1201537 0.245636 0.510322 +0.1409607 0.245636 0.510322 +0.1678172 0.245636 0.510322 +0.1950164 0.245636 0.510322 +0.2210581 0.245636 0.510322 +0.245636 0.245636 0.510322 +0.2686816 0.245636 0.510322 +0.2902431 0.245636 0.510322 +0.3104189 0.245636 0.510322 +0.3293248 0.245636 0.510322 +0.3470774 0.245636 0.510322 +0.3637862 0.245636 0.510322 +0.3795513 0.245636 0.510322 +0.3944623 0.245636 0.510322 +0.4085988 0.245636 0.510322 +0.4220313 0.245636 0.510322 +0.4348222 0.245636 0.510322 +0.4470264 0.245636 0.510322 +0.4586928 0.245636 0.510322 +0.4698649 0.245636 0.510322 +0.4805811 0.245636 0.510322 +0.490876 0.245636 0.510322 +0.5007803 0.245636 0.510322 +0.510322 0.245636 0.510322 +0.5195258 0.245636 0.510322 +0.5284142 0.245636 0.510322 +0.5370079 0.245636 0.510322 +0.5453253 0.245636 0.510322 +0.5533834 0.245636 0.510322 +0.5611974 0.245636 0.510322 +0.5687816 0.245636 0.510322 +0.092819 0.2686816 0.510322 +0.1056428 0.2686816 0.510322 +0.1201537 0.2686816 0.510322 +0.1409607 0.2686816 0.510322 +0.1678172 0.2686816 0.510322 +0.1950164 0.2686816 0.510322 +0.2210581 0.2686816 0.510322 +0.245636 0.2686816 0.510322 +0.2686816 0.2686816 0.510322 +0.2902431 0.2686816 0.510322 +0.3104189 0.2686816 0.510322 +0.3293248 0.2686816 0.510322 +0.3470774 0.2686816 0.510322 +0.3637862 0.2686816 0.510322 +0.3795513 0.2686816 0.510322 +0.3944623 0.2686816 0.510322 +0.4085988 0.2686816 0.510322 +0.4220313 0.2686816 0.510322 +0.4348222 0.2686816 0.510322 +0.4470264 0.2686816 0.510322 +0.4586928 0.2686816 0.510322 +0.4698649 0.2686816 0.510322 +0.4805811 0.2686816 0.510322 +0.490876 0.2686816 0.510322 +0.5007803 0.2686816 0.510322 +0.510322 0.2686816 0.510322 +0.5195258 0.2686816 0.510322 +0.5284142 0.2686816 0.510322 +0.5370079 0.2686816 0.510322 +0.5453253 0.2686816 0.510322 +0.5533834 0.2686816 0.510322 +0.5611974 0.2686816 0.510322 +0.5687816 0.2686816 0.510322 +0.092819 0.2902431 0.510322 +0.1056428 0.2902431 0.510322 +0.1201537 0.2902431 0.510322 +0.1409607 0.2902431 0.510322 +0.1678172 0.2902431 0.510322 +0.1950164 0.2902431 0.510322 +0.2210581 0.2902431 0.510322 +0.245636 0.2902431 0.510322 +0.2686816 0.2902431 0.510322 +0.2902431 0.2902431 0.510322 +0.3104189 0.2902431 0.510322 +0.3293248 0.2902431 0.510322 +0.3470774 0.2902431 0.510322 +0.3637862 0.2902431 0.510322 +0.3795513 0.2902431 0.510322 +0.3944623 0.2902431 0.510322 +0.4085988 0.2902431 0.510322 +0.4220313 0.2902431 0.510322 +0.4348222 0.2902431 0.510322 +0.4470264 0.2902431 0.510322 +0.4586928 0.2902431 0.510322 +0.4698649 0.2902431 0.510322 +0.4805811 0.2902431 0.510322 +0.490876 0.2902431 0.510322 +0.5007803 0.2902431 0.510322 +0.510322 0.2902431 0.510322 +0.5195258 0.2902431 0.510322 +0.5284142 0.2902431 0.510322 +0.5370079 0.2902431 0.510322 +0.5453253 0.2902431 0.510322 +0.5533834 0.2902431 0.510322 +0.5611974 0.2902431 0.510322 +0.5687816 0.2902431 0.510322 +0.092819 0.3104189 0.510322 +0.1056428 0.3104189 0.510322 +0.1201537 0.3104189 0.510322 +0.1409607 0.3104189 0.510322 +0.1678172 0.3104189 0.510322 +0.1950164 0.3104189 0.510322 +0.2210581 0.3104189 0.510322 +0.245636 0.3104189 0.510322 +0.2686816 0.3104189 0.510322 +0.2902431 0.3104189 0.510322 +0.3104189 0.3104189 0.510322 +0.3293248 0.3104189 0.510322 +0.3470774 0.3104189 0.510322 +0.3637862 0.3104189 0.510322 +0.3795513 0.3104189 0.510322 +0.3944623 0.3104189 0.510322 +0.4085988 0.3104189 0.510322 +0.4220313 0.3104189 0.510322 +0.4348222 0.3104189 0.510322 +0.4470264 0.3104189 0.510322 +0.4586928 0.3104189 0.510322 +0.4698649 0.3104189 0.510322 +0.4805811 0.3104189 0.510322 +0.490876 0.3104189 0.510322 +0.5007803 0.3104189 0.510322 +0.510322 0.3104189 0.510322 +0.5195258 0.3104189 0.510322 +0.5284142 0.3104189 0.510322 +0.5370079 0.3104189 0.510322 +0.5453253 0.3104189 0.510322 +0.5533834 0.3104189 0.510322 +0.5611974 0.3104189 0.510322 +0.5687816 0.3104189 0.510322 +0.092819 0.3293248 0.510322 +0.1056428 0.3293248 0.510322 +0.1201537 0.3293248 0.510322 +0.1409607 0.3293248 0.510322 +0.1678172 0.3293248 0.510322 +0.1950164 0.3293248 0.510322 +0.2210581 0.3293248 0.510322 +0.245636 0.3293248 0.510322 +0.2686816 0.3293248 0.510322 +0.2902431 0.3293248 0.510322 +0.3104189 0.3293248 0.510322 +0.3293248 0.3293248 0.510322 +0.3470774 0.3293248 0.510322 +0.3637862 0.3293248 0.510322 +0.3795513 0.3293248 0.510322 +0.3944623 0.3293248 0.510322 +0.4085988 0.3293248 0.510322 +0.4220313 0.3293248 0.510322 +0.4348222 0.3293248 0.510322 +0.4470264 0.3293248 0.510322 +0.4586928 0.3293248 0.510322 +0.4698649 0.3293248 0.510322 +0.4805811 0.3293248 0.510322 +0.490876 0.3293248 0.510322 +0.5007803 0.3293248 0.510322 +0.510322 0.3293248 0.510322 +0.5195258 0.3293248 0.510322 +0.5284142 0.3293248 0.510322 +0.5370079 0.3293248 0.510322 +0.5453253 0.3293248 0.510322 +0.5533834 0.3293248 0.510322 +0.5611974 0.3293248 0.510322 +0.5687816 0.3293248 0.510322 +0.092819 0.3470774 0.510322 +0.1056428 0.3470774 0.510322 +0.1201537 0.3470774 0.510322 +0.1409607 0.3470774 0.510322 +0.1678172 0.3470774 0.510322 +0.1950164 0.3470774 0.510322 +0.2210581 0.3470774 0.510322 +0.245636 0.3470774 0.510322 +0.2686816 0.3470774 0.510322 +0.2902431 0.3470774 0.510322 +0.3104189 0.3470774 0.510322 +0.3293248 0.3470774 0.510322 +0.3470774 0.3470774 0.510322 +0.3637862 0.3470774 0.510322 +0.3795513 0.3470774 0.510322 +0.3944623 0.3470774 0.510322 +0.4085988 0.3470774 0.510322 +0.4220313 0.3470774 0.510322 +0.4348222 0.3470774 0.510322 +0.4470264 0.3470774 0.510322 +0.4586928 0.3470774 0.510322 +0.4698649 0.3470774 0.510322 +0.4805811 0.3470774 0.510322 +0.490876 0.3470774 0.510322 +0.5007803 0.3470774 0.510322 +0.510322 0.3470774 0.510322 +0.5195258 0.3470774 0.510322 +0.5284142 0.3470774 0.510322 +0.5370079 0.3470774 0.510322 +0.5453253 0.3470774 0.510322 +0.5533834 0.3470774 0.510322 +0.5611974 0.3470774 0.510322 +0.5687816 0.3470774 0.510322 +0.092819 0.3637862 0.510322 +0.1056428 0.3637862 0.510322 +0.1201537 0.3637862 0.510322 +0.1409607 0.3637862 0.510322 +0.1678172 0.3637862 0.510322 +0.1950164 0.3637862 0.510322 +0.2210581 0.3637862 0.510322 +0.245636 0.3637862 0.510322 +0.2686816 0.3637862 0.510322 +0.2902431 0.3637862 0.510322 +0.3104189 0.3637862 0.510322 +0.3293248 0.3637862 0.510322 +0.3470774 0.3637862 0.510322 +0.3637862 0.3637862 0.510322 +0.3795513 0.3637862 0.510322 +0.3944623 0.3637862 0.510322 +0.4085988 0.3637862 0.510322 +0.4220313 0.3637862 0.510322 +0.4348222 0.3637862 0.510322 +0.4470264 0.3637862 0.510322 +0.4586928 0.3637862 0.510322 +0.4698649 0.3637862 0.510322 +0.4805811 0.3637862 0.510322 +0.490876 0.3637862 0.510322 +0.5007803 0.3637862 0.510322 +0.510322 0.3637862 0.510322 +0.5195258 0.3637862 0.510322 +0.5284142 0.3637862 0.510322 +0.5370079 0.3637862 0.510322 +0.5453253 0.3637862 0.510322 +0.5533834 0.3637862 0.510322 +0.5611974 0.3637862 0.510322 +0.5687816 0.3637862 0.510322 +0.092819 0.3795513 0.510322 +0.1056428 0.3795513 0.510322 +0.1201537 0.3795513 0.510322 +0.1409607 0.3795513 0.510322 +0.1678172 0.3795513 0.510322 +0.1950164 0.3795513 0.510322 +0.2210581 0.3795513 0.510322 +0.245636 0.3795513 0.510322 +0.2686816 0.3795513 0.510322 +0.2902431 0.3795513 0.510322 +0.3104189 0.3795513 0.510322 +0.3293248 0.3795513 0.510322 +0.3470774 0.3795513 0.510322 +0.3637862 0.3795513 0.510322 +0.3795513 0.3795513 0.510322 +0.3944623 0.3795513 0.510322 +0.4085988 0.3795513 0.510322 +0.4220313 0.3795513 0.510322 +0.4348222 0.3795513 0.510322 +0.4470264 0.3795513 0.510322 +0.4586928 0.3795513 0.510322 +0.4698649 0.3795513 0.510322 +0.4805811 0.3795513 0.510322 +0.490876 0.3795513 0.510322 +0.5007803 0.3795513 0.510322 +0.510322 0.3795513 0.510322 +0.5195258 0.3795513 0.510322 +0.5284142 0.3795513 0.510322 +0.5370079 0.3795513 0.510322 +0.5453253 0.3795513 0.510322 +0.5533834 0.3795513 0.510322 +0.5611974 0.3795513 0.510322 +0.5687816 0.3795513 0.510322 +0.092819 0.3944623 0.510322 +0.1056428 0.3944623 0.510322 +0.1201537 0.3944623 0.510322 +0.1409607 0.3944623 0.510322 +0.1678172 0.3944623 0.510322 +0.1950164 0.3944623 0.510322 +0.2210581 0.3944623 0.510322 +0.245636 0.3944623 0.510322 +0.2686816 0.3944623 0.510322 +0.2902431 0.3944623 0.510322 +0.3104189 0.3944623 0.510322 +0.3293248 0.3944623 0.510322 +0.3470774 0.3944623 0.510322 +0.3637862 0.3944623 0.510322 +0.3795513 0.3944623 0.510322 +0.3944623 0.3944623 0.510322 +0.4085988 0.3944623 0.510322 +0.4220313 0.3944623 0.510322 +0.4348222 0.3944623 0.510322 +0.4470264 0.3944623 0.510322 +0.4586928 0.3944623 0.510322 +0.4698649 0.3944623 0.510322 +0.4805811 0.3944623 0.510322 +0.490876 0.3944623 0.510322 +0.5007803 0.3944623 0.510322 +0.510322 0.3944623 0.510322 +0.5195258 0.3944623 0.510322 +0.5284142 0.3944623 0.510322 +0.5370079 0.3944623 0.510322 +0.5453253 0.3944623 0.510322 +0.5533834 0.3944623 0.510322 +0.5611974 0.3944623 0.510322 +0.5687816 0.3944623 0.510322 +0.092819 0.4085988 0.510322 +0.1056428 0.4085988 0.510322 +0.1201537 0.4085988 0.510322 +0.1409607 0.4085988 0.510322 +0.1678172 0.4085988 0.510322 +0.1950164 0.4085988 0.510322 +0.2210581 0.4085988 0.510322 +0.245636 0.4085988 0.510322 +0.2686816 0.4085988 0.510322 +0.2902431 0.4085988 0.510322 +0.3104189 0.4085988 0.510322 +0.3293248 0.4085988 0.510322 +0.3470774 0.4085988 0.510322 +0.3637862 0.4085988 0.510322 +0.3795513 0.4085988 0.510322 +0.3944623 0.4085988 0.510322 +0.4085988 0.4085988 0.510322 +0.4220313 0.4085988 0.510322 +0.4348222 0.4085988 0.510322 +0.4470264 0.4085988 0.510322 +0.4586928 0.4085988 0.510322 +0.4698649 0.4085988 0.510322 +0.4805811 0.4085988 0.510322 +0.490876 0.4085988 0.510322 +0.5007803 0.4085988 0.510322 +0.510322 0.4085988 0.510322 +0.5195258 0.4085988 0.510322 +0.5284142 0.4085988 0.510322 +0.5370079 0.4085988 0.510322 +0.5453253 0.4085988 0.510322 +0.5533834 0.4085988 0.510322 +0.5611974 0.4085988 0.510322 +0.5687816 0.4085988 0.510322 +0.092819 0.4220313 0.510322 +0.1056428 0.4220313 0.510322 +0.1201537 0.4220313 0.510322 +0.1409607 0.4220313 0.510322 +0.1678172 0.4220313 0.510322 +0.1950164 0.4220313 0.510322 +0.2210581 0.4220313 0.510322 +0.245636 0.4220313 0.510322 +0.2686816 0.4220313 0.510322 +0.2902431 0.4220313 0.510322 +0.3104189 0.4220313 0.510322 +0.3293248 0.4220313 0.510322 +0.3470774 0.4220313 0.510322 +0.3637862 0.4220313 0.510322 +0.3795513 0.4220313 0.510322 +0.3944623 0.4220313 0.510322 +0.4085988 0.4220313 0.510322 +0.4220313 0.4220313 0.510322 +0.4348222 0.4220313 0.510322 +0.4470264 0.4220313 0.510322 +0.4586928 0.4220313 0.510322 +0.4698649 0.4220313 0.510322 +0.4805811 0.4220313 0.510322 +0.490876 0.4220313 0.510322 +0.5007803 0.4220313 0.510322 +0.510322 0.4220313 0.510322 +0.5195258 0.4220313 0.510322 +0.5284142 0.4220313 0.510322 +0.5370079 0.4220313 0.510322 +0.5453253 0.4220313 0.510322 +0.5533834 0.4220313 0.510322 +0.5611974 0.4220313 0.510322 +0.5687816 0.4220313 0.510322 +0.092819 0.4348222 0.510322 +0.1056428 0.4348222 0.510322 +0.1201537 0.4348222 0.510322 +0.1409607 0.4348222 0.510322 +0.1678172 0.4348222 0.510322 +0.1950164 0.4348222 0.510322 +0.2210581 0.4348222 0.510322 +0.245636 0.4348222 0.510322 +0.2686816 0.4348222 0.510322 +0.2902431 0.4348222 0.510322 +0.3104189 0.4348222 0.510322 +0.3293248 0.4348222 0.510322 +0.3470774 0.4348222 0.510322 +0.3637862 0.4348222 0.510322 +0.3795513 0.4348222 0.510322 +0.3944623 0.4348222 0.510322 +0.4085988 0.4348222 0.510322 +0.4220313 0.4348222 0.510322 +0.4348222 0.4348222 0.510322 +0.4470264 0.4348222 0.510322 +0.4586928 0.4348222 0.510322 +0.4698649 0.4348222 0.510322 +0.4805811 0.4348222 0.510322 +0.490876 0.4348222 0.510322 +0.5007803 0.4348222 0.510322 +0.510322 0.4348222 0.510322 +0.5195258 0.4348222 0.510322 +0.5284142 0.4348222 0.510322 +0.5370079 0.4348222 0.510322 +0.5453253 0.4348222 0.510322 +0.5533834 0.4348222 0.510322 +0.5611974 0.4348222 0.510322 +0.5687816 0.4348222 0.510322 +0.092819 0.4470264 0.510322 +0.1056428 0.4470264 0.510322 +0.1201537 0.4470264 0.510322 +0.1409607 0.4470264 0.510322 +0.1678172 0.4470264 0.510322 +0.1950164 0.4470264 0.510322 +0.2210581 0.4470264 0.510322 +0.245636 0.4470264 0.510322 +0.2686816 0.4470264 0.510322 +0.2902431 0.4470264 0.510322 +0.3104189 0.4470264 0.510322 +0.3293248 0.4470264 0.510322 +0.3470774 0.4470264 0.510322 +0.3637862 0.4470264 0.510322 +0.3795513 0.4470264 0.510322 +0.3944623 0.4470264 0.510322 +0.4085988 0.4470264 0.510322 +0.4220313 0.4470264 0.510322 +0.4348222 0.4470264 0.510322 +0.4470264 0.4470264 0.510322 +0.4586928 0.4470264 0.510322 +0.4698649 0.4470264 0.510322 +0.4805811 0.4470264 0.510322 +0.490876 0.4470264 0.510322 +0.5007803 0.4470264 0.510322 +0.510322 0.4470264 0.510322 +0.5195258 0.4470264 0.510322 +0.5284142 0.4470264 0.510322 +0.5370079 0.4470264 0.510322 +0.5453253 0.4470264 0.510322 +0.5533834 0.4470264 0.510322 +0.5611974 0.4470264 0.510322 +0.5687816 0.4470264 0.510322 +0.092819 0.4586928 0.510322 +0.1056428 0.4586928 0.510322 +0.1201537 0.4586928 0.510322 +0.1409607 0.4586928 0.510322 +0.1678172 0.4586928 0.510322 +0.1950164 0.4586928 0.510322 +0.2210581 0.4586928 0.510322 +0.245636 0.4586928 0.510322 +0.2686816 0.4586928 0.510322 +0.2902431 0.4586928 0.510322 +0.3104189 0.4586928 0.510322 +0.3293248 0.4586928 0.510322 +0.3470774 0.4586928 0.510322 +0.3637862 0.4586928 0.510322 +0.3795513 0.4586928 0.510322 +0.3944623 0.4586928 0.510322 +0.4085988 0.4586928 0.510322 +0.4220313 0.4586928 0.510322 +0.4348222 0.4586928 0.510322 +0.4470264 0.4586928 0.510322 +0.4586928 0.4586928 0.510322 +0.4698649 0.4586928 0.510322 +0.4805811 0.4586928 0.510322 +0.490876 0.4586928 0.510322 +0.5007803 0.4586928 0.510322 +0.510322 0.4586928 0.510322 +0.5195258 0.4586928 0.510322 +0.5284142 0.4586928 0.510322 +0.5370079 0.4586928 0.510322 +0.5453253 0.4586928 0.510322 +0.5533834 0.4586928 0.510322 +0.5611974 0.4586928 0.510322 +0.5687816 0.4586928 0.510322 +0.092819 0.4698649 0.510322 +0.1056428 0.4698649 0.510322 +0.1201537 0.4698649 0.510322 +0.1409607 0.4698649 0.510322 +0.1678172 0.4698649 0.510322 +0.1950164 0.4698649 0.510322 +0.2210581 0.4698649 0.510322 +0.245636 0.4698649 0.510322 +0.2686816 0.4698649 0.510322 +0.2902431 0.4698649 0.510322 +0.3104189 0.4698649 0.510322 +0.3293248 0.4698649 0.510322 +0.3470774 0.4698649 0.510322 +0.3637862 0.4698649 0.510322 +0.3795513 0.4698649 0.510322 +0.3944623 0.4698649 0.510322 +0.4085988 0.4698649 0.510322 +0.4220313 0.4698649 0.510322 +0.4348222 0.4698649 0.510322 +0.4470264 0.4698649 0.510322 +0.4586928 0.4698649 0.510322 +0.4698649 0.4698649 0.510322 +0.4805811 0.4698649 0.510322 +0.490876 0.4698649 0.510322 +0.5007803 0.4698649 0.510322 +0.510322 0.4698649 0.510322 +0.5195258 0.4698649 0.510322 +0.5284142 0.4698649 0.510322 +0.5370079 0.4698649 0.510322 +0.5453253 0.4698649 0.510322 +0.5533834 0.4698649 0.510322 +0.5611974 0.4698649 0.510322 +0.5687816 0.4698649 0.510322 +0.092819 0.4805811 0.510322 +0.1056428 0.4805811 0.510322 +0.1201537 0.4805811 0.510322 +0.1409607 0.4805811 0.510322 +0.1678172 0.4805811 0.510322 +0.1950164 0.4805811 0.510322 +0.2210581 0.4805811 0.510322 +0.245636 0.4805811 0.510322 +0.2686816 0.4805811 0.510322 +0.2902431 0.4805811 0.510322 +0.3104189 0.4805811 0.510322 +0.3293248 0.4805811 0.510322 +0.3470774 0.4805811 0.510322 +0.3637862 0.4805811 0.510322 +0.3795513 0.4805811 0.510322 +0.3944623 0.4805811 0.510322 +0.4085988 0.4805811 0.510322 +0.4220313 0.4805811 0.510322 +0.4348222 0.4805811 0.510322 +0.4470264 0.4805811 0.510322 +0.4586928 0.4805811 0.510322 +0.4698649 0.4805811 0.510322 +0.4805811 0.4805811 0.510322 +0.490876 0.4805811 0.510322 +0.5007803 0.4805811 0.510322 +0.510322 0.4805811 0.510322 +0.5195258 0.4805811 0.510322 +0.5284142 0.4805811 0.510322 +0.5370079 0.4805811 0.510322 +0.5453253 0.4805811 0.510322 +0.5533834 0.4805811 0.510322 +0.5611974 0.4805811 0.510322 +0.5687816 0.4805811 0.510322 +0.092819 0.490876 0.510322 +0.1056428 0.490876 0.510322 +0.1201537 0.490876 0.510322 +0.1409607 0.490876 0.510322 +0.1678172 0.490876 0.510322 +0.1950164 0.490876 0.510322 +0.2210581 0.490876 0.510322 +0.245636 0.490876 0.510322 +0.2686816 0.490876 0.510322 +0.2902431 0.490876 0.510322 +0.3104189 0.490876 0.510322 +0.3293248 0.490876 0.510322 +0.3470774 0.490876 0.510322 +0.3637862 0.490876 0.510322 +0.3795513 0.490876 0.510322 +0.3944623 0.490876 0.510322 +0.4085988 0.490876 0.510322 +0.4220313 0.490876 0.510322 +0.4348222 0.490876 0.510322 +0.4470264 0.490876 0.510322 +0.4586928 0.490876 0.510322 +0.4698649 0.490876 0.510322 +0.4805811 0.490876 0.510322 +0.490876 0.490876 0.510322 +0.5007803 0.490876 0.510322 +0.510322 0.490876 0.510322 +0.5195258 0.490876 0.510322 +0.5284142 0.490876 0.510322 +0.5370079 0.490876 0.510322 +0.5453253 0.490876 0.510322 +0.5533834 0.490876 0.510322 +0.5611974 0.490876 0.510322 +0.5687816 0.490876 0.510322 +0.092819 0.5007803 0.510322 +0.1056428 0.5007803 0.510322 +0.1201537 0.5007803 0.510322 +0.1409607 0.5007803 0.510322 +0.1678172 0.5007803 0.510322 +0.1950164 0.5007803 0.510322 +0.2210581 0.5007803 0.510322 +0.245636 0.5007803 0.510322 +0.2686816 0.5007803 0.510322 +0.2902431 0.5007803 0.510322 +0.3104189 0.5007803 0.510322 +0.3293248 0.5007803 0.510322 +0.3470774 0.5007803 0.510322 +0.3637862 0.5007803 0.510322 +0.3795513 0.5007803 0.510322 +0.3944623 0.5007803 0.510322 +0.4085988 0.5007803 0.510322 +0.4220313 0.5007803 0.510322 +0.4348222 0.5007803 0.510322 +0.4470264 0.5007803 0.510322 +0.4586928 0.5007803 0.510322 +0.4698649 0.5007803 0.510322 +0.4805811 0.5007803 0.510322 +0.490876 0.5007803 0.510322 +0.5007803 0.5007803 0.510322 +0.510322 0.5007803 0.510322 +0.5195258 0.5007803 0.510322 +0.5284142 0.5007803 0.510322 +0.5370079 0.5007803 0.510322 +0.5453253 0.5007803 0.510322 +0.5533834 0.5007803 0.510322 +0.5611974 0.5007803 0.510322 +0.5687816 0.5007803 0.510322 +0.092819 0.510322 0.510322 +0.1056428 0.510322 0.510322 +0.1201537 0.510322 0.510322 +0.1409607 0.510322 0.510322 +0.1678172 0.510322 0.510322 +0.1950164 0.510322 0.510322 +0.2210581 0.510322 0.510322 +0.245636 0.510322 0.510322 +0.2686816 0.510322 0.510322 +0.2902431 0.510322 0.510322 +0.3104189 0.510322 0.510322 +0.3293248 0.510322 0.510322 +0.3470774 0.510322 0.510322 +0.3637862 0.510322 0.510322 +0.3795513 0.510322 0.510322 +0.3944623 0.510322 0.510322 +0.4085988 0.510322 0.510322 +0.4220313 0.510322 0.510322 +0.4348222 0.510322 0.510322 +0.4470264 0.510322 0.510322 +0.4586928 0.510322 0.510322 +0.4698649 0.510322 0.510322 +0.4805811 0.510322 0.510322 +0.490876 0.510322 0.510322 +0.5007803 0.510322 0.510322 +0.510322 0.510322 0.510322 +0.5195258 0.510322 0.510322 +0.5284142 0.510322 0.510322 +0.5370079 0.510322 0.510322 +0.5453253 0.510322 0.510322 +0.5533834 0.510322 0.510322 +0.5611974 0.510322 0.510322 +0.5687816 0.510322 0.510322 +0.092819 0.5195258 0.510322 +0.1056428 0.5195258 0.510322 +0.1201537 0.5195258 0.510322 +0.1409607 0.5195258 0.510322 +0.1678172 0.5195258 0.510322 +0.1950164 0.5195258 0.510322 +0.2210581 0.5195258 0.510322 +0.245636 0.5195258 0.510322 +0.2686816 0.5195258 0.510322 +0.2902431 0.5195258 0.510322 +0.3104189 0.5195258 0.510322 +0.3293248 0.5195258 0.510322 +0.3470774 0.5195258 0.510322 +0.3637862 0.5195258 0.510322 +0.3795513 0.5195258 0.510322 +0.3944623 0.5195258 0.510322 +0.4085988 0.5195258 0.510322 +0.4220313 0.5195258 0.510322 +0.4348222 0.5195258 0.510322 +0.4470264 0.5195258 0.510322 +0.4586928 0.5195258 0.510322 +0.4698649 0.5195258 0.510322 +0.4805811 0.5195258 0.510322 +0.490876 0.5195258 0.510322 +0.5007803 0.5195258 0.510322 +0.510322 0.5195258 0.510322 +0.5195258 0.5195258 0.510322 +0.5284142 0.5195258 0.510322 +0.5370079 0.5195258 0.510322 +0.5453253 0.5195258 0.510322 +0.5533834 0.5195258 0.510322 +0.5611974 0.5195258 0.510322 +0.5687816 0.5195258 0.510322 +0.092819 0.5284142 0.510322 +0.1056428 0.5284142 0.510322 +0.1201537 0.5284142 0.510322 +0.1409607 0.5284142 0.510322 +0.1678172 0.5284142 0.510322 +0.1950164 0.5284142 0.510322 +0.2210581 0.5284142 0.510322 +0.245636 0.5284142 0.510322 +0.2686816 0.5284142 0.510322 +0.2902431 0.5284142 0.510322 +0.3104189 0.5284142 0.510322 +0.3293248 0.5284142 0.510322 +0.3470774 0.5284142 0.510322 +0.3637862 0.5284142 0.510322 +0.3795513 0.5284142 0.510322 +0.3944623 0.5284142 0.510322 +0.4085988 0.5284142 0.510322 +0.4220313 0.5284142 0.510322 +0.4348222 0.5284142 0.510322 +0.4470264 0.5284142 0.510322 +0.4586928 0.5284142 0.510322 +0.4698649 0.5284142 0.510322 +0.4805811 0.5284142 0.510322 +0.490876 0.5284142 0.510322 +0.5007803 0.5284142 0.510322 +0.510322 0.5284142 0.510322 +0.5195258 0.5284142 0.510322 +0.5284142 0.5284142 0.510322 +0.5370079 0.5284142 0.510322 +0.5453253 0.5284142 0.510322 +0.5533834 0.5284142 0.510322 +0.5611974 0.5284142 0.510322 +0.5687816 0.5284142 0.510322 +0.092819 0.5370079 0.510322 +0.1056428 0.5370079 0.510322 +0.1201537 0.5370079 0.510322 +0.1409607 0.5370079 0.510322 +0.1678172 0.5370079 0.510322 +0.1950164 0.5370079 0.510322 +0.2210581 0.5370079 0.510322 +0.245636 0.5370079 0.510322 +0.2686816 0.5370079 0.510322 +0.2902431 0.5370079 0.510322 +0.3104189 0.5370079 0.510322 +0.3293248 0.5370079 0.510322 +0.3470774 0.5370079 0.510322 +0.3637862 0.5370079 0.510322 +0.3795513 0.5370079 0.510322 +0.3944623 0.5370079 0.510322 +0.4085988 0.5370079 0.510322 +0.4220313 0.5370079 0.510322 +0.4348222 0.5370079 0.510322 +0.4470264 0.5370079 0.510322 +0.4586928 0.5370079 0.510322 +0.4698649 0.5370079 0.510322 +0.4805811 0.5370079 0.510322 +0.490876 0.5370079 0.510322 +0.5007803 0.5370079 0.510322 +0.510322 0.5370079 0.510322 +0.5195258 0.5370079 0.510322 +0.5284142 0.5370079 0.510322 +0.5370079 0.5370079 0.510322 +0.5453253 0.5370079 0.510322 +0.5533834 0.5370079 0.510322 +0.5611974 0.5370079 0.510322 +0.5687816 0.5370079 0.510322 +0.092819 0.5453253 0.510322 +0.1056428 0.5453253 0.510322 +0.1201537 0.5453253 0.510322 +0.1409607 0.5453253 0.510322 +0.1678172 0.5453253 0.510322 +0.1950164 0.5453253 0.510322 +0.2210581 0.5453253 0.510322 +0.245636 0.5453253 0.510322 +0.2686816 0.5453253 0.510322 +0.2902431 0.5453253 0.510322 +0.3104189 0.5453253 0.510322 +0.3293248 0.5453253 0.510322 +0.3470774 0.5453253 0.510322 +0.3637862 0.5453253 0.510322 +0.3795513 0.5453253 0.510322 +0.3944623 0.5453253 0.510322 +0.4085988 0.5453253 0.510322 +0.4220313 0.5453253 0.510322 +0.4348222 0.5453253 0.510322 +0.4470264 0.5453253 0.510322 +0.4586928 0.5453253 0.510322 +0.4698649 0.5453253 0.510322 +0.4805811 0.5453253 0.510322 +0.490876 0.5453253 0.510322 +0.5007803 0.5453253 0.510322 +0.510322 0.5453253 0.510322 +0.5195258 0.5453253 0.510322 +0.5284142 0.5453253 0.510322 +0.5370079 0.5453253 0.510322 +0.5453253 0.5453253 0.510322 +0.5533834 0.5453253 0.510322 +0.5611974 0.5453253 0.510322 +0.5687816 0.5453253 0.510322 +0.092819 0.5533834 0.510322 +0.1056428 0.5533834 0.510322 +0.1201537 0.5533834 0.510322 +0.1409607 0.5533834 0.510322 +0.1678172 0.5533834 0.510322 +0.1950164 0.5533834 0.510322 +0.2210581 0.5533834 0.510322 +0.245636 0.5533834 0.510322 +0.2686816 0.5533834 0.510322 +0.2902431 0.5533834 0.510322 +0.3104189 0.5533834 0.510322 +0.3293248 0.5533834 0.510322 +0.3470774 0.5533834 0.510322 +0.3637862 0.5533834 0.510322 +0.3795513 0.5533834 0.510322 +0.3944623 0.5533834 0.510322 +0.4085988 0.5533834 0.510322 +0.4220313 0.5533834 0.510322 +0.4348222 0.5533834 0.510322 +0.4470264 0.5533834 0.510322 +0.4586928 0.5533834 0.510322 +0.4698649 0.5533834 0.510322 +0.4805811 0.5533834 0.510322 +0.490876 0.5533834 0.510322 +0.5007803 0.5533834 0.510322 +0.510322 0.5533834 0.510322 +0.5195258 0.5533834 0.510322 +0.5284142 0.5533834 0.510322 +0.5370079 0.5533834 0.510322 +0.5453253 0.5533834 0.510322 +0.5533834 0.5533834 0.510322 +0.5611974 0.5533834 0.510322 +0.5687816 0.5533834 0.510322 +0.092819 0.5611974 0.510322 +0.1056428 0.5611974 0.510322 +0.1201537 0.5611974 0.510322 +0.1409607 0.5611974 0.510322 +0.1678172 0.5611974 0.510322 +0.1950164 0.5611974 0.510322 +0.2210581 0.5611974 0.510322 +0.245636 0.5611974 0.510322 +0.2686816 0.5611974 0.510322 +0.2902431 0.5611974 0.510322 +0.3104189 0.5611974 0.510322 +0.3293248 0.5611974 0.510322 +0.3470774 0.5611974 0.510322 +0.3637862 0.5611974 0.510322 +0.3795513 0.5611974 0.510322 +0.3944623 0.5611974 0.510322 +0.4085988 0.5611974 0.510322 +0.4220313 0.5611974 0.510322 +0.4348222 0.5611974 0.510322 +0.4470264 0.5611974 0.510322 +0.4586928 0.5611974 0.510322 +0.4698649 0.5611974 0.510322 +0.4805811 0.5611974 0.510322 +0.490876 0.5611974 0.510322 +0.5007803 0.5611974 0.510322 +0.510322 0.5611974 0.510322 +0.5195258 0.5611974 0.510322 +0.5284142 0.5611974 0.510322 +0.5370079 0.5611974 0.510322 +0.5453253 0.5611974 0.510322 +0.5533834 0.5611974 0.510322 +0.5611974 0.5611974 0.510322 +0.5687816 0.5611974 0.510322 +0.092819 0.5687816 0.510322 +0.1056428 0.5687816 0.510322 +0.1201537 0.5687816 0.510322 +0.1409607 0.5687816 0.510322 +0.1678172 0.5687816 0.510322 +0.1950164 0.5687816 0.510322 +0.2210581 0.5687816 0.510322 +0.245636 0.5687816 0.510322 +0.2686816 0.5687816 0.510322 +0.2902431 0.5687816 0.510322 +0.3104189 0.5687816 0.510322 +0.3293248 0.5687816 0.510322 +0.3470774 0.5687816 0.510322 +0.3637862 0.5687816 0.510322 +0.3795513 0.5687816 0.510322 +0.3944623 0.5687816 0.510322 +0.4085988 0.5687816 0.510322 +0.4220313 0.5687816 0.510322 +0.4348222 0.5687816 0.510322 +0.4470264 0.5687816 0.510322 +0.4586928 0.5687816 0.510322 +0.4698649 0.5687816 0.510322 +0.4805811 0.5687816 0.510322 +0.490876 0.5687816 0.510322 +0.5007803 0.5687816 0.510322 +0.510322 0.5687816 0.510322 +0.5195258 0.5687816 0.510322 +0.5284142 0.5687816 0.510322 +0.5370079 0.5687816 0.510322 +0.5453253 0.5687816 0.510322 +0.5533834 0.5687816 0.510322 +0.5611974 0.5687816 0.510322 +0.5687816 0.5687816 0.510322 +0.092819 0.092819 0.5195258 +0.1056428 0.092819 0.5195258 +0.1201537 0.092819 0.5195258 +0.1409607 0.092819 0.5195258 +0.1678172 0.092819 0.5195258 +0.1950164 0.092819 0.5195258 +0.2210581 0.092819 0.5195258 +0.245636 0.092819 0.5195258 +0.2686816 0.092819 0.5195258 +0.2902431 0.092819 0.5195258 +0.3104189 0.092819 0.5195258 +0.3293248 0.092819 0.5195258 +0.3470774 0.092819 0.5195258 +0.3637862 0.092819 0.5195258 +0.3795513 0.092819 0.5195258 +0.3944623 0.092819 0.5195258 +0.4085988 0.092819 0.5195258 +0.4220313 0.092819 0.5195258 +0.4348222 0.092819 0.5195258 +0.4470264 0.092819 0.5195258 +0.4586928 0.092819 0.5195258 +0.4698649 0.092819 0.5195258 +0.4805811 0.092819 0.5195258 +0.490876 0.092819 0.5195258 +0.5007803 0.092819 0.5195258 +0.510322 0.092819 0.5195258 +0.5195258 0.092819 0.5195258 +0.5284142 0.092819 0.5195258 +0.5370079 0.092819 0.5195258 +0.5453253 0.092819 0.5195258 +0.5533834 0.092819 0.5195258 +0.5611974 0.092819 0.5195258 +0.5687816 0.092819 0.5195258 +0.092819 0.1056428 0.5195258 +0.1056428 0.1056428 0.5195258 +0.1201537 0.1056428 0.5195258 +0.1409607 0.1056428 0.5195258 +0.1678172 0.1056428 0.5195258 +0.1950164 0.1056428 0.5195258 +0.2210581 0.1056428 0.5195258 +0.245636 0.1056428 0.5195258 +0.2686816 0.1056428 0.5195258 +0.2902431 0.1056428 0.5195258 +0.3104189 0.1056428 0.5195258 +0.3293248 0.1056428 0.5195258 +0.3470774 0.1056428 0.5195258 +0.3637862 0.1056428 0.5195258 +0.3795513 0.1056428 0.5195258 +0.3944623 0.1056428 0.5195258 +0.4085988 0.1056428 0.5195258 +0.4220313 0.1056428 0.5195258 +0.4348222 0.1056428 0.5195258 +0.4470264 0.1056428 0.5195258 +0.4586928 0.1056428 0.5195258 +0.4698649 0.1056428 0.5195258 +0.4805811 0.1056428 0.5195258 +0.490876 0.1056428 0.5195258 +0.5007803 0.1056428 0.5195258 +0.510322 0.1056428 0.5195258 +0.5195258 0.1056428 0.5195258 +0.5284142 0.1056428 0.5195258 +0.5370079 0.1056428 0.5195258 +0.5453253 0.1056428 0.5195258 +0.5533834 0.1056428 0.5195258 +0.5611974 0.1056428 0.5195258 +0.5687816 0.1056428 0.5195258 +0.092819 0.1201537 0.5195258 +0.1056428 0.1201537 0.5195258 +0.1201537 0.1201537 0.5195258 +0.1409607 0.1201537 0.5195258 +0.1678172 0.1201537 0.5195258 +0.1950164 0.1201537 0.5195258 +0.2210581 0.1201537 0.5195258 +0.245636 0.1201537 0.5195258 +0.2686816 0.1201537 0.5195258 +0.2902431 0.1201537 0.5195258 +0.3104189 0.1201537 0.5195258 +0.3293248 0.1201537 0.5195258 +0.3470774 0.1201537 0.5195258 +0.3637862 0.1201537 0.5195258 +0.3795513 0.1201537 0.5195258 +0.3944623 0.1201537 0.5195258 +0.4085988 0.1201537 0.5195258 +0.4220313 0.1201537 0.5195258 +0.4348222 0.1201537 0.5195258 +0.4470264 0.1201537 0.5195258 +0.4586928 0.1201537 0.5195258 +0.4698649 0.1201537 0.5195258 +0.4805811 0.1201537 0.5195258 +0.490876 0.1201537 0.5195258 +0.5007803 0.1201537 0.5195258 +0.510322 0.1201537 0.5195258 +0.5195258 0.1201537 0.5195258 +0.5284142 0.1201537 0.5195258 +0.5370079 0.1201537 0.5195258 +0.5453253 0.1201537 0.5195258 +0.5533834 0.1201537 0.5195258 +0.5611974 0.1201537 0.5195258 +0.5687816 0.1201537 0.5195258 +0.092819 0.1409607 0.5195258 +0.1056428 0.1409607 0.5195258 +0.1201537 0.1409607 0.5195258 +0.1409607 0.1409607 0.5195258 +0.1678172 0.1409607 0.5195258 +0.1950164 0.1409607 0.5195258 +0.2210581 0.1409607 0.5195258 +0.245636 0.1409607 0.5195258 +0.2686816 0.1409607 0.5195258 +0.2902431 0.1409607 0.5195258 +0.3104189 0.1409607 0.5195258 +0.3293248 0.1409607 0.5195258 +0.3470774 0.1409607 0.5195258 +0.3637862 0.1409607 0.5195258 +0.3795513 0.1409607 0.5195258 +0.3944623 0.1409607 0.5195258 +0.4085988 0.1409607 0.5195258 +0.4220313 0.1409607 0.5195258 +0.4348222 0.1409607 0.5195258 +0.4470264 0.1409607 0.5195258 +0.4586928 0.1409607 0.5195258 +0.4698649 0.1409607 0.5195258 +0.4805811 0.1409607 0.5195258 +0.490876 0.1409607 0.5195258 +0.5007803 0.1409607 0.5195258 +0.510322 0.1409607 0.5195258 +0.5195258 0.1409607 0.5195258 +0.5284142 0.1409607 0.5195258 +0.5370079 0.1409607 0.5195258 +0.5453253 0.1409607 0.5195258 +0.5533834 0.1409607 0.5195258 +0.5611974 0.1409607 0.5195258 +0.5687816 0.1409607 0.5195258 +0.092819 0.1678172 0.5195258 +0.1056428 0.1678172 0.5195258 +0.1201537 0.1678172 0.5195258 +0.1409607 0.1678172 0.5195258 +0.1678172 0.1678172 0.5195258 +0.1950164 0.1678172 0.5195258 +0.2210581 0.1678172 0.5195258 +0.245636 0.1678172 0.5195258 +0.2686816 0.1678172 0.5195258 +0.2902431 0.1678172 0.5195258 +0.3104189 0.1678172 0.5195258 +0.3293248 0.1678172 0.5195258 +0.3470774 0.1678172 0.5195258 +0.3637862 0.1678172 0.5195258 +0.3795513 0.1678172 0.5195258 +0.3944623 0.1678172 0.5195258 +0.4085988 0.1678172 0.5195258 +0.4220313 0.1678172 0.5195258 +0.4348222 0.1678172 0.5195258 +0.4470264 0.1678172 0.5195258 +0.4586928 0.1678172 0.5195258 +0.4698649 0.1678172 0.5195258 +0.4805811 0.1678172 0.5195258 +0.490876 0.1678172 0.5195258 +0.5007803 0.1678172 0.5195258 +0.510322 0.1678172 0.5195258 +0.5195258 0.1678172 0.5195258 +0.5284142 0.1678172 0.5195258 +0.5370079 0.1678172 0.5195258 +0.5453253 0.1678172 0.5195258 +0.5533834 0.1678172 0.5195258 +0.5611974 0.1678172 0.5195258 +0.5687816 0.1678172 0.5195258 +0.092819 0.1950164 0.5195258 +0.1056428 0.1950164 0.5195258 +0.1201537 0.1950164 0.5195258 +0.1409607 0.1950164 0.5195258 +0.1678172 0.1950164 0.5195258 +0.1950164 0.1950164 0.5195258 +0.2210581 0.1950164 0.5195258 +0.245636 0.1950164 0.5195258 +0.2686816 0.1950164 0.5195258 +0.2902431 0.1950164 0.5195258 +0.3104189 0.1950164 0.5195258 +0.3293248 0.1950164 0.5195258 +0.3470774 0.1950164 0.5195258 +0.3637862 0.1950164 0.5195258 +0.3795513 0.1950164 0.5195258 +0.3944623 0.1950164 0.5195258 +0.4085988 0.1950164 0.5195258 +0.4220313 0.1950164 0.5195258 +0.4348222 0.1950164 0.5195258 +0.4470264 0.1950164 0.5195258 +0.4586928 0.1950164 0.5195258 +0.4698649 0.1950164 0.5195258 +0.4805811 0.1950164 0.5195258 +0.490876 0.1950164 0.5195258 +0.5007803 0.1950164 0.5195258 +0.510322 0.1950164 0.5195258 +0.5195258 0.1950164 0.5195258 +0.5284142 0.1950164 0.5195258 +0.5370079 0.1950164 0.5195258 +0.5453253 0.1950164 0.5195258 +0.5533834 0.1950164 0.5195258 +0.5611974 0.1950164 0.5195258 +0.5687816 0.1950164 0.5195258 +0.092819 0.2210581 0.5195258 +0.1056428 0.2210581 0.5195258 +0.1201537 0.2210581 0.5195258 +0.1409607 0.2210581 0.5195258 +0.1678172 0.2210581 0.5195258 +0.1950164 0.2210581 0.5195258 +0.2210581 0.2210581 0.5195258 +0.245636 0.2210581 0.5195258 +0.2686816 0.2210581 0.5195258 +0.2902431 0.2210581 0.5195258 +0.3104189 0.2210581 0.5195258 +0.3293248 0.2210581 0.5195258 +0.3470774 0.2210581 0.5195258 +0.3637862 0.2210581 0.5195258 +0.3795513 0.2210581 0.5195258 +0.3944623 0.2210581 0.5195258 +0.4085988 0.2210581 0.5195258 +0.4220313 0.2210581 0.5195258 +0.4348222 0.2210581 0.5195258 +0.4470264 0.2210581 0.5195258 +0.4586928 0.2210581 0.5195258 +0.4698649 0.2210581 0.5195258 +0.4805811 0.2210581 0.5195258 +0.490876 0.2210581 0.5195258 +0.5007803 0.2210581 0.5195258 +0.510322 0.2210581 0.5195258 +0.5195258 0.2210581 0.5195258 +0.5284142 0.2210581 0.5195258 +0.5370079 0.2210581 0.5195258 +0.5453253 0.2210581 0.5195258 +0.5533834 0.2210581 0.5195258 +0.5611974 0.2210581 0.5195258 +0.5687816 0.2210581 0.5195258 +0.092819 0.245636 0.5195258 +0.1056428 0.245636 0.5195258 +0.1201537 0.245636 0.5195258 +0.1409607 0.245636 0.5195258 +0.1678172 0.245636 0.5195258 +0.1950164 0.245636 0.5195258 +0.2210581 0.245636 0.5195258 +0.245636 0.245636 0.5195258 +0.2686816 0.245636 0.5195258 +0.2902431 0.245636 0.5195258 +0.3104189 0.245636 0.5195258 +0.3293248 0.245636 0.5195258 +0.3470774 0.245636 0.5195258 +0.3637862 0.245636 0.5195258 +0.3795513 0.245636 0.5195258 +0.3944623 0.245636 0.5195258 +0.4085988 0.245636 0.5195258 +0.4220313 0.245636 0.5195258 +0.4348222 0.245636 0.5195258 +0.4470264 0.245636 0.5195258 +0.4586928 0.245636 0.5195258 +0.4698649 0.245636 0.5195258 +0.4805811 0.245636 0.5195258 +0.490876 0.245636 0.5195258 +0.5007803 0.245636 0.5195258 +0.510322 0.245636 0.5195258 +0.5195258 0.245636 0.5195258 +0.5284142 0.245636 0.5195258 +0.5370079 0.245636 0.5195258 +0.5453253 0.245636 0.5195258 +0.5533834 0.245636 0.5195258 +0.5611974 0.245636 0.5195258 +0.5687816 0.245636 0.5195258 +0.092819 0.2686816 0.5195258 +0.1056428 0.2686816 0.5195258 +0.1201537 0.2686816 0.5195258 +0.1409607 0.2686816 0.5195258 +0.1678172 0.2686816 0.5195258 +0.1950164 0.2686816 0.5195258 +0.2210581 0.2686816 0.5195258 +0.245636 0.2686816 0.5195258 +0.2686816 0.2686816 0.5195258 +0.2902431 0.2686816 0.5195258 +0.3104189 0.2686816 0.5195258 +0.3293248 0.2686816 0.5195258 +0.3470774 0.2686816 0.5195258 +0.3637862 0.2686816 0.5195258 +0.3795513 0.2686816 0.5195258 +0.3944623 0.2686816 0.5195258 +0.4085988 0.2686816 0.5195258 +0.4220313 0.2686816 0.5195258 +0.4348222 0.2686816 0.5195258 +0.4470264 0.2686816 0.5195258 +0.4586928 0.2686816 0.5195258 +0.4698649 0.2686816 0.5195258 +0.4805811 0.2686816 0.5195258 +0.490876 0.2686816 0.5195258 +0.5007803 0.2686816 0.5195258 +0.510322 0.2686816 0.5195258 +0.5195258 0.2686816 0.5195258 +0.5284142 0.2686816 0.5195258 +0.5370079 0.2686816 0.5195258 +0.5453253 0.2686816 0.5195258 +0.5533834 0.2686816 0.5195258 +0.5611974 0.2686816 0.5195258 +0.5687816 0.2686816 0.5195258 +0.092819 0.2902431 0.5195258 +0.1056428 0.2902431 0.5195258 +0.1201537 0.2902431 0.5195258 +0.1409607 0.2902431 0.5195258 +0.1678172 0.2902431 0.5195258 +0.1950164 0.2902431 0.5195258 +0.2210581 0.2902431 0.5195258 +0.245636 0.2902431 0.5195258 +0.2686816 0.2902431 0.5195258 +0.2902431 0.2902431 0.5195258 +0.3104189 0.2902431 0.5195258 +0.3293248 0.2902431 0.5195258 +0.3470774 0.2902431 0.5195258 +0.3637862 0.2902431 0.5195258 +0.3795513 0.2902431 0.5195258 +0.3944623 0.2902431 0.5195258 +0.4085988 0.2902431 0.5195258 +0.4220313 0.2902431 0.5195258 +0.4348222 0.2902431 0.5195258 +0.4470264 0.2902431 0.5195258 +0.4586928 0.2902431 0.5195258 +0.4698649 0.2902431 0.5195258 +0.4805811 0.2902431 0.5195258 +0.490876 0.2902431 0.5195258 +0.5007803 0.2902431 0.5195258 +0.510322 0.2902431 0.5195258 +0.5195258 0.2902431 0.5195258 +0.5284142 0.2902431 0.5195258 +0.5370079 0.2902431 0.5195258 +0.5453253 0.2902431 0.5195258 +0.5533834 0.2902431 0.5195258 +0.5611974 0.2902431 0.5195258 +0.5687816 0.2902431 0.5195258 +0.092819 0.3104189 0.5195258 +0.1056428 0.3104189 0.5195258 +0.1201537 0.3104189 0.5195258 +0.1409607 0.3104189 0.5195258 +0.1678172 0.3104189 0.5195258 +0.1950164 0.3104189 0.5195258 +0.2210581 0.3104189 0.5195258 +0.245636 0.3104189 0.5195258 +0.2686816 0.3104189 0.5195258 +0.2902431 0.3104189 0.5195258 +0.3104189 0.3104189 0.5195258 +0.3293248 0.3104189 0.5195258 +0.3470774 0.3104189 0.5195258 +0.3637862 0.3104189 0.5195258 +0.3795513 0.3104189 0.5195258 +0.3944623 0.3104189 0.5195258 +0.4085988 0.3104189 0.5195258 +0.4220313 0.3104189 0.5195258 +0.4348222 0.3104189 0.5195258 +0.4470264 0.3104189 0.5195258 +0.4586928 0.3104189 0.5195258 +0.4698649 0.3104189 0.5195258 +0.4805811 0.3104189 0.5195258 +0.490876 0.3104189 0.5195258 +0.5007803 0.3104189 0.5195258 +0.510322 0.3104189 0.5195258 +0.5195258 0.3104189 0.5195258 +0.5284142 0.3104189 0.5195258 +0.5370079 0.3104189 0.5195258 +0.5453253 0.3104189 0.5195258 +0.5533834 0.3104189 0.5195258 +0.5611974 0.3104189 0.5195258 +0.5687816 0.3104189 0.5195258 +0.092819 0.3293248 0.5195258 +0.1056428 0.3293248 0.5195258 +0.1201537 0.3293248 0.5195258 +0.1409607 0.3293248 0.5195258 +0.1678172 0.3293248 0.5195258 +0.1950164 0.3293248 0.5195258 +0.2210581 0.3293248 0.5195258 +0.245636 0.3293248 0.5195258 +0.2686816 0.3293248 0.5195258 +0.2902431 0.3293248 0.5195258 +0.3104189 0.3293248 0.5195258 +0.3293248 0.3293248 0.5195258 +0.3470774 0.3293248 0.5195258 +0.3637862 0.3293248 0.5195258 +0.3795513 0.3293248 0.5195258 +0.3944623 0.3293248 0.5195258 +0.4085988 0.3293248 0.5195258 +0.4220313 0.3293248 0.5195258 +0.4348222 0.3293248 0.5195258 +0.4470264 0.3293248 0.5195258 +0.4586928 0.3293248 0.5195258 +0.4698649 0.3293248 0.5195258 +0.4805811 0.3293248 0.5195258 +0.490876 0.3293248 0.5195258 +0.5007803 0.3293248 0.5195258 +0.510322 0.3293248 0.5195258 +0.5195258 0.3293248 0.5195258 +0.5284142 0.3293248 0.5195258 +0.5370079 0.3293248 0.5195258 +0.5453253 0.3293248 0.5195258 +0.5533834 0.3293248 0.5195258 +0.5611974 0.3293248 0.5195258 +0.5687816 0.3293248 0.5195258 +0.092819 0.3470774 0.5195258 +0.1056428 0.3470774 0.5195258 +0.1201537 0.3470774 0.5195258 +0.1409607 0.3470774 0.5195258 +0.1678172 0.3470774 0.5195258 +0.1950164 0.3470774 0.5195258 +0.2210581 0.3470774 0.5195258 +0.245636 0.3470774 0.5195258 +0.2686816 0.3470774 0.5195258 +0.2902431 0.3470774 0.5195258 +0.3104189 0.3470774 0.5195258 +0.3293248 0.3470774 0.5195258 +0.3470774 0.3470774 0.5195258 +0.3637862 0.3470774 0.5195258 +0.3795513 0.3470774 0.5195258 +0.3944623 0.3470774 0.5195258 +0.4085988 0.3470774 0.5195258 +0.4220313 0.3470774 0.5195258 +0.4348222 0.3470774 0.5195258 +0.4470264 0.3470774 0.5195258 +0.4586928 0.3470774 0.5195258 +0.4698649 0.3470774 0.5195258 +0.4805811 0.3470774 0.5195258 +0.490876 0.3470774 0.5195258 +0.5007803 0.3470774 0.5195258 +0.510322 0.3470774 0.5195258 +0.5195258 0.3470774 0.5195258 +0.5284142 0.3470774 0.5195258 +0.5370079 0.3470774 0.5195258 +0.5453253 0.3470774 0.5195258 +0.5533834 0.3470774 0.5195258 +0.5611974 0.3470774 0.5195258 +0.5687816 0.3470774 0.5195258 +0.092819 0.3637862 0.5195258 +0.1056428 0.3637862 0.5195258 +0.1201537 0.3637862 0.5195258 +0.1409607 0.3637862 0.5195258 +0.1678172 0.3637862 0.5195258 +0.1950164 0.3637862 0.5195258 +0.2210581 0.3637862 0.5195258 +0.245636 0.3637862 0.5195258 +0.2686816 0.3637862 0.5195258 +0.2902431 0.3637862 0.5195258 +0.3104189 0.3637862 0.5195258 +0.3293248 0.3637862 0.5195258 +0.3470774 0.3637862 0.5195258 +0.3637862 0.3637862 0.5195258 +0.3795513 0.3637862 0.5195258 +0.3944623 0.3637862 0.5195258 +0.4085988 0.3637862 0.5195258 +0.4220313 0.3637862 0.5195258 +0.4348222 0.3637862 0.5195258 +0.4470264 0.3637862 0.5195258 +0.4586928 0.3637862 0.5195258 +0.4698649 0.3637862 0.5195258 +0.4805811 0.3637862 0.5195258 +0.490876 0.3637862 0.5195258 +0.5007803 0.3637862 0.5195258 +0.510322 0.3637862 0.5195258 +0.5195258 0.3637862 0.5195258 +0.5284142 0.3637862 0.5195258 +0.5370079 0.3637862 0.5195258 +0.5453253 0.3637862 0.5195258 +0.5533834 0.3637862 0.5195258 +0.5611974 0.3637862 0.5195258 +0.5687816 0.3637862 0.5195258 +0.092819 0.3795513 0.5195258 +0.1056428 0.3795513 0.5195258 +0.1201537 0.3795513 0.5195258 +0.1409607 0.3795513 0.5195258 +0.1678172 0.3795513 0.5195258 +0.1950164 0.3795513 0.5195258 +0.2210581 0.3795513 0.5195258 +0.245636 0.3795513 0.5195258 +0.2686816 0.3795513 0.5195258 +0.2902431 0.3795513 0.5195258 +0.3104189 0.3795513 0.5195258 +0.3293248 0.3795513 0.5195258 +0.3470774 0.3795513 0.5195258 +0.3637862 0.3795513 0.5195258 +0.3795513 0.3795513 0.5195258 +0.3944623 0.3795513 0.5195258 +0.4085988 0.3795513 0.5195258 +0.4220313 0.3795513 0.5195258 +0.4348222 0.3795513 0.5195258 +0.4470264 0.3795513 0.5195258 +0.4586928 0.3795513 0.5195258 +0.4698649 0.3795513 0.5195258 +0.4805811 0.3795513 0.5195258 +0.490876 0.3795513 0.5195258 +0.5007803 0.3795513 0.5195258 +0.510322 0.3795513 0.5195258 +0.5195258 0.3795513 0.5195258 +0.5284142 0.3795513 0.5195258 +0.5370079 0.3795513 0.5195258 +0.5453253 0.3795513 0.5195258 +0.5533834 0.3795513 0.5195258 +0.5611974 0.3795513 0.5195258 +0.5687816 0.3795513 0.5195258 +0.092819 0.3944623 0.5195258 +0.1056428 0.3944623 0.5195258 +0.1201537 0.3944623 0.5195258 +0.1409607 0.3944623 0.5195258 +0.1678172 0.3944623 0.5195258 +0.1950164 0.3944623 0.5195258 +0.2210581 0.3944623 0.5195258 +0.245636 0.3944623 0.5195258 +0.2686816 0.3944623 0.5195258 +0.2902431 0.3944623 0.5195258 +0.3104189 0.3944623 0.5195258 +0.3293248 0.3944623 0.5195258 +0.3470774 0.3944623 0.5195258 +0.3637862 0.3944623 0.5195258 +0.3795513 0.3944623 0.5195258 +0.3944623 0.3944623 0.5195258 +0.4085988 0.3944623 0.5195258 +0.4220313 0.3944623 0.5195258 +0.4348222 0.3944623 0.5195258 +0.4470264 0.3944623 0.5195258 +0.4586928 0.3944623 0.5195258 +0.4698649 0.3944623 0.5195258 +0.4805811 0.3944623 0.5195258 +0.490876 0.3944623 0.5195258 +0.5007803 0.3944623 0.5195258 +0.510322 0.3944623 0.5195258 +0.5195258 0.3944623 0.5195258 +0.5284142 0.3944623 0.5195258 +0.5370079 0.3944623 0.5195258 +0.5453253 0.3944623 0.5195258 +0.5533834 0.3944623 0.5195258 +0.5611974 0.3944623 0.5195258 +0.5687816 0.3944623 0.5195258 +0.092819 0.4085988 0.5195258 +0.1056428 0.4085988 0.5195258 +0.1201537 0.4085988 0.5195258 +0.1409607 0.4085988 0.5195258 +0.1678172 0.4085988 0.5195258 +0.1950164 0.4085988 0.5195258 +0.2210581 0.4085988 0.5195258 +0.245636 0.4085988 0.5195258 +0.2686816 0.4085988 0.5195258 +0.2902431 0.4085988 0.5195258 +0.3104189 0.4085988 0.5195258 +0.3293248 0.4085988 0.5195258 +0.3470774 0.4085988 0.5195258 +0.3637862 0.4085988 0.5195258 +0.3795513 0.4085988 0.5195258 +0.3944623 0.4085988 0.5195258 +0.4085988 0.4085988 0.5195258 +0.4220313 0.4085988 0.5195258 +0.4348222 0.4085988 0.5195258 +0.4470264 0.4085988 0.5195258 +0.4586928 0.4085988 0.5195258 +0.4698649 0.4085988 0.5195258 +0.4805811 0.4085988 0.5195258 +0.490876 0.4085988 0.5195258 +0.5007803 0.4085988 0.5195258 +0.510322 0.4085988 0.5195258 +0.5195258 0.4085988 0.5195258 +0.5284142 0.4085988 0.5195258 +0.5370079 0.4085988 0.5195258 +0.5453253 0.4085988 0.5195258 +0.5533834 0.4085988 0.5195258 +0.5611974 0.4085988 0.5195258 +0.5687816 0.4085988 0.5195258 +0.092819 0.4220313 0.5195258 +0.1056428 0.4220313 0.5195258 +0.1201537 0.4220313 0.5195258 +0.1409607 0.4220313 0.5195258 +0.1678172 0.4220313 0.5195258 +0.1950164 0.4220313 0.5195258 +0.2210581 0.4220313 0.5195258 +0.245636 0.4220313 0.5195258 +0.2686816 0.4220313 0.5195258 +0.2902431 0.4220313 0.5195258 +0.3104189 0.4220313 0.5195258 +0.3293248 0.4220313 0.5195258 +0.3470774 0.4220313 0.5195258 +0.3637862 0.4220313 0.5195258 +0.3795513 0.4220313 0.5195258 +0.3944623 0.4220313 0.5195258 +0.4085988 0.4220313 0.5195258 +0.4220313 0.4220313 0.5195258 +0.4348222 0.4220313 0.5195258 +0.4470264 0.4220313 0.5195258 +0.4586928 0.4220313 0.5195258 +0.4698649 0.4220313 0.5195258 +0.4805811 0.4220313 0.5195258 +0.490876 0.4220313 0.5195258 +0.5007803 0.4220313 0.5195258 +0.510322 0.4220313 0.5195258 +0.5195258 0.4220313 0.5195258 +0.5284142 0.4220313 0.5195258 +0.5370079 0.4220313 0.5195258 +0.5453253 0.4220313 0.5195258 +0.5533834 0.4220313 0.5195258 +0.5611974 0.4220313 0.5195258 +0.5687816 0.4220313 0.5195258 +0.092819 0.4348222 0.5195258 +0.1056428 0.4348222 0.5195258 +0.1201537 0.4348222 0.5195258 +0.1409607 0.4348222 0.5195258 +0.1678172 0.4348222 0.5195258 +0.1950164 0.4348222 0.5195258 +0.2210581 0.4348222 0.5195258 +0.245636 0.4348222 0.5195258 +0.2686816 0.4348222 0.5195258 +0.2902431 0.4348222 0.5195258 +0.3104189 0.4348222 0.5195258 +0.3293248 0.4348222 0.5195258 +0.3470774 0.4348222 0.5195258 +0.3637862 0.4348222 0.5195258 +0.3795513 0.4348222 0.5195258 +0.3944623 0.4348222 0.5195258 +0.4085988 0.4348222 0.5195258 +0.4220313 0.4348222 0.5195258 +0.4348222 0.4348222 0.5195258 +0.4470264 0.4348222 0.5195258 +0.4586928 0.4348222 0.5195258 +0.4698649 0.4348222 0.5195258 +0.4805811 0.4348222 0.5195258 +0.490876 0.4348222 0.5195258 +0.5007803 0.4348222 0.5195258 +0.510322 0.4348222 0.5195258 +0.5195258 0.4348222 0.5195258 +0.5284142 0.4348222 0.5195258 +0.5370079 0.4348222 0.5195258 +0.5453253 0.4348222 0.5195258 +0.5533834 0.4348222 0.5195258 +0.5611974 0.4348222 0.5195258 +0.5687816 0.4348222 0.5195258 +0.092819 0.4470264 0.5195258 +0.1056428 0.4470264 0.5195258 +0.1201537 0.4470264 0.5195258 +0.1409607 0.4470264 0.5195258 +0.1678172 0.4470264 0.5195258 +0.1950164 0.4470264 0.5195258 +0.2210581 0.4470264 0.5195258 +0.245636 0.4470264 0.5195258 +0.2686816 0.4470264 0.5195258 +0.2902431 0.4470264 0.5195258 +0.3104189 0.4470264 0.5195258 +0.3293248 0.4470264 0.5195258 +0.3470774 0.4470264 0.5195258 +0.3637862 0.4470264 0.5195258 +0.3795513 0.4470264 0.5195258 +0.3944623 0.4470264 0.5195258 +0.4085988 0.4470264 0.5195258 +0.4220313 0.4470264 0.5195258 +0.4348222 0.4470264 0.5195258 +0.4470264 0.4470264 0.5195258 +0.4586928 0.4470264 0.5195258 +0.4698649 0.4470264 0.5195258 +0.4805811 0.4470264 0.5195258 +0.490876 0.4470264 0.5195258 +0.5007803 0.4470264 0.5195258 +0.510322 0.4470264 0.5195258 +0.5195258 0.4470264 0.5195258 +0.5284142 0.4470264 0.5195258 +0.5370079 0.4470264 0.5195258 +0.5453253 0.4470264 0.5195258 +0.5533834 0.4470264 0.5195258 +0.5611974 0.4470264 0.5195258 +0.5687816 0.4470264 0.5195258 +0.092819 0.4586928 0.5195258 +0.1056428 0.4586928 0.5195258 +0.1201537 0.4586928 0.5195258 +0.1409607 0.4586928 0.5195258 +0.1678172 0.4586928 0.5195258 +0.1950164 0.4586928 0.5195258 +0.2210581 0.4586928 0.5195258 +0.245636 0.4586928 0.5195258 +0.2686816 0.4586928 0.5195258 +0.2902431 0.4586928 0.5195258 +0.3104189 0.4586928 0.5195258 +0.3293248 0.4586928 0.5195258 +0.3470774 0.4586928 0.5195258 +0.3637862 0.4586928 0.5195258 +0.3795513 0.4586928 0.5195258 +0.3944623 0.4586928 0.5195258 +0.4085988 0.4586928 0.5195258 +0.4220313 0.4586928 0.5195258 +0.4348222 0.4586928 0.5195258 +0.4470264 0.4586928 0.5195258 +0.4586928 0.4586928 0.5195258 +0.4698649 0.4586928 0.5195258 +0.4805811 0.4586928 0.5195258 +0.490876 0.4586928 0.5195258 +0.5007803 0.4586928 0.5195258 +0.510322 0.4586928 0.5195258 +0.5195258 0.4586928 0.5195258 +0.5284142 0.4586928 0.5195258 +0.5370079 0.4586928 0.5195258 +0.5453253 0.4586928 0.5195258 +0.5533834 0.4586928 0.5195258 +0.5611974 0.4586928 0.5195258 +0.5687816 0.4586928 0.5195258 +0.092819 0.4698649 0.5195258 +0.1056428 0.4698649 0.5195258 +0.1201537 0.4698649 0.5195258 +0.1409607 0.4698649 0.5195258 +0.1678172 0.4698649 0.5195258 +0.1950164 0.4698649 0.5195258 +0.2210581 0.4698649 0.5195258 +0.245636 0.4698649 0.5195258 +0.2686816 0.4698649 0.5195258 +0.2902431 0.4698649 0.5195258 +0.3104189 0.4698649 0.5195258 +0.3293248 0.4698649 0.5195258 +0.3470774 0.4698649 0.5195258 +0.3637862 0.4698649 0.5195258 +0.3795513 0.4698649 0.5195258 +0.3944623 0.4698649 0.5195258 +0.4085988 0.4698649 0.5195258 +0.4220313 0.4698649 0.5195258 +0.4348222 0.4698649 0.5195258 +0.4470264 0.4698649 0.5195258 +0.4586928 0.4698649 0.5195258 +0.4698649 0.4698649 0.5195258 +0.4805811 0.4698649 0.5195258 +0.490876 0.4698649 0.5195258 +0.5007803 0.4698649 0.5195258 +0.510322 0.4698649 0.5195258 +0.5195258 0.4698649 0.5195258 +0.5284142 0.4698649 0.5195258 +0.5370079 0.4698649 0.5195258 +0.5453253 0.4698649 0.5195258 +0.5533834 0.4698649 0.5195258 +0.5611974 0.4698649 0.5195258 +0.5687816 0.4698649 0.5195258 +0.092819 0.4805811 0.5195258 +0.1056428 0.4805811 0.5195258 +0.1201537 0.4805811 0.5195258 +0.1409607 0.4805811 0.5195258 +0.1678172 0.4805811 0.5195258 +0.1950164 0.4805811 0.5195258 +0.2210581 0.4805811 0.5195258 +0.245636 0.4805811 0.5195258 +0.2686816 0.4805811 0.5195258 +0.2902431 0.4805811 0.5195258 +0.3104189 0.4805811 0.5195258 +0.3293248 0.4805811 0.5195258 +0.3470774 0.4805811 0.5195258 +0.3637862 0.4805811 0.5195258 +0.3795513 0.4805811 0.5195258 +0.3944623 0.4805811 0.5195258 +0.4085988 0.4805811 0.5195258 +0.4220313 0.4805811 0.5195258 +0.4348222 0.4805811 0.5195258 +0.4470264 0.4805811 0.5195258 +0.4586928 0.4805811 0.5195258 +0.4698649 0.4805811 0.5195258 +0.4805811 0.4805811 0.5195258 +0.490876 0.4805811 0.5195258 +0.5007803 0.4805811 0.5195258 +0.510322 0.4805811 0.5195258 +0.5195258 0.4805811 0.5195258 +0.5284142 0.4805811 0.5195258 +0.5370079 0.4805811 0.5195258 +0.5453253 0.4805811 0.5195258 +0.5533834 0.4805811 0.5195258 +0.5611974 0.4805811 0.5195258 +0.5687816 0.4805811 0.5195258 +0.092819 0.490876 0.5195258 +0.1056428 0.490876 0.5195258 +0.1201537 0.490876 0.5195258 +0.1409607 0.490876 0.5195258 +0.1678172 0.490876 0.5195258 +0.1950164 0.490876 0.5195258 +0.2210581 0.490876 0.5195258 +0.245636 0.490876 0.5195258 +0.2686816 0.490876 0.5195258 +0.2902431 0.490876 0.5195258 +0.3104189 0.490876 0.5195258 +0.3293248 0.490876 0.5195258 +0.3470774 0.490876 0.5195258 +0.3637862 0.490876 0.5195258 +0.3795513 0.490876 0.5195258 +0.3944623 0.490876 0.5195258 +0.4085988 0.490876 0.5195258 +0.4220313 0.490876 0.5195258 +0.4348222 0.490876 0.5195258 +0.4470264 0.490876 0.5195258 +0.4586928 0.490876 0.5195258 +0.4698649 0.490876 0.5195258 +0.4805811 0.490876 0.5195258 +0.490876 0.490876 0.5195258 +0.5007803 0.490876 0.5195258 +0.510322 0.490876 0.5195258 +0.5195258 0.490876 0.5195258 +0.5284142 0.490876 0.5195258 +0.5370079 0.490876 0.5195258 +0.5453253 0.490876 0.5195258 +0.5533834 0.490876 0.5195258 +0.5611974 0.490876 0.5195258 +0.5687816 0.490876 0.5195258 +0.092819 0.5007803 0.5195258 +0.1056428 0.5007803 0.5195258 +0.1201537 0.5007803 0.5195258 +0.1409607 0.5007803 0.5195258 +0.1678172 0.5007803 0.5195258 +0.1950164 0.5007803 0.5195258 +0.2210581 0.5007803 0.5195258 +0.245636 0.5007803 0.5195258 +0.2686816 0.5007803 0.5195258 +0.2902431 0.5007803 0.5195258 +0.3104189 0.5007803 0.5195258 +0.3293248 0.5007803 0.5195258 +0.3470774 0.5007803 0.5195258 +0.3637862 0.5007803 0.5195258 +0.3795513 0.5007803 0.5195258 +0.3944623 0.5007803 0.5195258 +0.4085988 0.5007803 0.5195258 +0.4220313 0.5007803 0.5195258 +0.4348222 0.5007803 0.5195258 +0.4470264 0.5007803 0.5195258 +0.4586928 0.5007803 0.5195258 +0.4698649 0.5007803 0.5195258 +0.4805811 0.5007803 0.5195258 +0.490876 0.5007803 0.5195258 +0.5007803 0.5007803 0.5195258 +0.510322 0.5007803 0.5195258 +0.5195258 0.5007803 0.5195258 +0.5284142 0.5007803 0.5195258 +0.5370079 0.5007803 0.5195258 +0.5453253 0.5007803 0.5195258 +0.5533834 0.5007803 0.5195258 +0.5611974 0.5007803 0.5195258 +0.5687816 0.5007803 0.5195258 +0.092819 0.510322 0.5195258 +0.1056428 0.510322 0.5195258 +0.1201537 0.510322 0.5195258 +0.1409607 0.510322 0.5195258 +0.1678172 0.510322 0.5195258 +0.1950164 0.510322 0.5195258 +0.2210581 0.510322 0.5195258 +0.245636 0.510322 0.5195258 +0.2686816 0.510322 0.5195258 +0.2902431 0.510322 0.5195258 +0.3104189 0.510322 0.5195258 +0.3293248 0.510322 0.5195258 +0.3470774 0.510322 0.5195258 +0.3637862 0.510322 0.5195258 +0.3795513 0.510322 0.5195258 +0.3944623 0.510322 0.5195258 +0.4085988 0.510322 0.5195258 +0.4220313 0.510322 0.5195258 +0.4348222 0.510322 0.5195258 +0.4470264 0.510322 0.5195258 +0.4586928 0.510322 0.5195258 +0.4698649 0.510322 0.5195258 +0.4805811 0.510322 0.5195258 +0.490876 0.510322 0.5195258 +0.5007803 0.510322 0.5195258 +0.510322 0.510322 0.5195258 +0.5195258 0.510322 0.5195258 +0.5284142 0.510322 0.5195258 +0.5370079 0.510322 0.5195258 +0.5453253 0.510322 0.5195258 +0.5533834 0.510322 0.5195258 +0.5611974 0.510322 0.5195258 +0.5687816 0.510322 0.5195258 +0.092819 0.5195258 0.5195258 +0.1056428 0.5195258 0.5195258 +0.1201537 0.5195258 0.5195258 +0.1409607 0.5195258 0.5195258 +0.1678172 0.5195258 0.5195258 +0.1950164 0.5195258 0.5195258 +0.2210581 0.5195258 0.5195258 +0.245636 0.5195258 0.5195258 +0.2686816 0.5195258 0.5195258 +0.2902431 0.5195258 0.5195258 +0.3104189 0.5195258 0.5195258 +0.3293248 0.5195258 0.5195258 +0.3470774 0.5195258 0.5195258 +0.3637862 0.5195258 0.5195258 +0.3795513 0.5195258 0.5195258 +0.3944623 0.5195258 0.5195258 +0.4085988 0.5195258 0.5195258 +0.4220313 0.5195258 0.5195258 +0.4348222 0.5195258 0.5195258 +0.4470264 0.5195258 0.5195258 +0.4586928 0.5195258 0.5195258 +0.4698649 0.5195258 0.5195258 +0.4805811 0.5195258 0.5195258 +0.490876 0.5195258 0.5195258 +0.5007803 0.5195258 0.5195258 +0.510322 0.5195258 0.5195258 +0.5195258 0.5195258 0.5195258 +0.5284142 0.5195258 0.5195258 +0.5370079 0.5195258 0.5195258 +0.5453253 0.5195258 0.5195258 +0.5533834 0.5195258 0.5195258 +0.5611974 0.5195258 0.5195258 +0.5687816 0.5195258 0.5195258 +0.092819 0.5284142 0.5195258 +0.1056428 0.5284142 0.5195258 +0.1201537 0.5284142 0.5195258 +0.1409607 0.5284142 0.5195258 +0.1678172 0.5284142 0.5195258 +0.1950164 0.5284142 0.5195258 +0.2210581 0.5284142 0.5195258 +0.245636 0.5284142 0.5195258 +0.2686816 0.5284142 0.5195258 +0.2902431 0.5284142 0.5195258 +0.3104189 0.5284142 0.5195258 +0.3293248 0.5284142 0.5195258 +0.3470774 0.5284142 0.5195258 +0.3637862 0.5284142 0.5195258 +0.3795513 0.5284142 0.5195258 +0.3944623 0.5284142 0.5195258 +0.4085988 0.5284142 0.5195258 +0.4220313 0.5284142 0.5195258 +0.4348222 0.5284142 0.5195258 +0.4470264 0.5284142 0.5195258 +0.4586928 0.5284142 0.5195258 +0.4698649 0.5284142 0.5195258 +0.4805811 0.5284142 0.5195258 +0.490876 0.5284142 0.5195258 +0.5007803 0.5284142 0.5195258 +0.510322 0.5284142 0.5195258 +0.5195258 0.5284142 0.5195258 +0.5284142 0.5284142 0.5195258 +0.5370079 0.5284142 0.5195258 +0.5453253 0.5284142 0.5195258 +0.5533834 0.5284142 0.5195258 +0.5611974 0.5284142 0.5195258 +0.5687816 0.5284142 0.5195258 +0.092819 0.5370079 0.5195258 +0.1056428 0.5370079 0.5195258 +0.1201537 0.5370079 0.5195258 +0.1409607 0.5370079 0.5195258 +0.1678172 0.5370079 0.5195258 +0.1950164 0.5370079 0.5195258 +0.2210581 0.5370079 0.5195258 +0.245636 0.5370079 0.5195258 +0.2686816 0.5370079 0.5195258 +0.2902431 0.5370079 0.5195258 +0.3104189 0.5370079 0.5195258 +0.3293248 0.5370079 0.5195258 +0.3470774 0.5370079 0.5195258 +0.3637862 0.5370079 0.5195258 +0.3795513 0.5370079 0.5195258 +0.3944623 0.5370079 0.5195258 +0.4085988 0.5370079 0.5195258 +0.4220313 0.5370079 0.5195258 +0.4348222 0.5370079 0.5195258 +0.4470264 0.5370079 0.5195258 +0.4586928 0.5370079 0.5195258 +0.4698649 0.5370079 0.5195258 +0.4805811 0.5370079 0.5195258 +0.490876 0.5370079 0.5195258 +0.5007803 0.5370079 0.5195258 +0.510322 0.5370079 0.5195258 +0.5195258 0.5370079 0.5195258 +0.5284142 0.5370079 0.5195258 +0.5370079 0.5370079 0.5195258 +0.5453253 0.5370079 0.5195258 +0.5533834 0.5370079 0.5195258 +0.5611974 0.5370079 0.5195258 +0.5687816 0.5370079 0.5195258 +0.092819 0.5453253 0.5195258 +0.1056428 0.5453253 0.5195258 +0.1201537 0.5453253 0.5195258 +0.1409607 0.5453253 0.5195258 +0.1678172 0.5453253 0.5195258 +0.1950164 0.5453253 0.5195258 +0.2210581 0.5453253 0.5195258 +0.245636 0.5453253 0.5195258 +0.2686816 0.5453253 0.5195258 +0.2902431 0.5453253 0.5195258 +0.3104189 0.5453253 0.5195258 +0.3293248 0.5453253 0.5195258 +0.3470774 0.5453253 0.5195258 +0.3637862 0.5453253 0.5195258 +0.3795513 0.5453253 0.5195258 +0.3944623 0.5453253 0.5195258 +0.4085988 0.5453253 0.5195258 +0.4220313 0.5453253 0.5195258 +0.4348222 0.5453253 0.5195258 +0.4470264 0.5453253 0.5195258 +0.4586928 0.5453253 0.5195258 +0.4698649 0.5453253 0.5195258 +0.4805811 0.5453253 0.5195258 +0.490876 0.5453253 0.5195258 +0.5007803 0.5453253 0.5195258 +0.510322 0.5453253 0.5195258 +0.5195258 0.5453253 0.5195258 +0.5284142 0.5453253 0.5195258 +0.5370079 0.5453253 0.5195258 +0.5453253 0.5453253 0.5195258 +0.5533834 0.5453253 0.5195258 +0.5611974 0.5453253 0.5195258 +0.5687816 0.5453253 0.5195258 +0.092819 0.5533834 0.5195258 +0.1056428 0.5533834 0.5195258 +0.1201537 0.5533834 0.5195258 +0.1409607 0.5533834 0.5195258 +0.1678172 0.5533834 0.5195258 +0.1950164 0.5533834 0.5195258 +0.2210581 0.5533834 0.5195258 +0.245636 0.5533834 0.5195258 +0.2686816 0.5533834 0.5195258 +0.2902431 0.5533834 0.5195258 +0.3104189 0.5533834 0.5195258 +0.3293248 0.5533834 0.5195258 +0.3470774 0.5533834 0.5195258 +0.3637862 0.5533834 0.5195258 +0.3795513 0.5533834 0.5195258 +0.3944623 0.5533834 0.5195258 +0.4085988 0.5533834 0.5195258 +0.4220313 0.5533834 0.5195258 +0.4348222 0.5533834 0.5195258 +0.4470264 0.5533834 0.5195258 +0.4586928 0.5533834 0.5195258 +0.4698649 0.5533834 0.5195258 +0.4805811 0.5533834 0.5195258 +0.490876 0.5533834 0.5195258 +0.5007803 0.5533834 0.5195258 +0.510322 0.5533834 0.5195258 +0.5195258 0.5533834 0.5195258 +0.5284142 0.5533834 0.5195258 +0.5370079 0.5533834 0.5195258 +0.5453253 0.5533834 0.5195258 +0.5533834 0.5533834 0.5195258 +0.5611974 0.5533834 0.5195258 +0.5687816 0.5533834 0.5195258 +0.092819 0.5611974 0.5195258 +0.1056428 0.5611974 0.5195258 +0.1201537 0.5611974 0.5195258 +0.1409607 0.5611974 0.5195258 +0.1678172 0.5611974 0.5195258 +0.1950164 0.5611974 0.5195258 +0.2210581 0.5611974 0.5195258 +0.245636 0.5611974 0.5195258 +0.2686816 0.5611974 0.5195258 +0.2902431 0.5611974 0.5195258 +0.3104189 0.5611974 0.5195258 +0.3293248 0.5611974 0.5195258 +0.3470774 0.5611974 0.5195258 +0.3637862 0.5611974 0.5195258 +0.3795513 0.5611974 0.5195258 +0.3944623 0.5611974 0.5195258 +0.4085988 0.5611974 0.5195258 +0.4220313 0.5611974 0.5195258 +0.4348222 0.5611974 0.5195258 +0.4470264 0.5611974 0.5195258 +0.4586928 0.5611974 0.5195258 +0.4698649 0.5611974 0.5195258 +0.4805811 0.5611974 0.5195258 +0.490876 0.5611974 0.5195258 +0.5007803 0.5611974 0.5195258 +0.510322 0.5611974 0.5195258 +0.5195258 0.5611974 0.5195258 +0.5284142 0.5611974 0.5195258 +0.5370079 0.5611974 0.5195258 +0.5453253 0.5611974 0.5195258 +0.5533834 0.5611974 0.5195258 +0.5611974 0.5611974 0.5195258 +0.5687816 0.5611974 0.5195258 +0.092819 0.5687816 0.5195258 +0.1056428 0.5687816 0.5195258 +0.1201537 0.5687816 0.5195258 +0.1409607 0.5687816 0.5195258 +0.1678172 0.5687816 0.5195258 +0.1950164 0.5687816 0.5195258 +0.2210581 0.5687816 0.5195258 +0.245636 0.5687816 0.5195258 +0.2686816 0.5687816 0.5195258 +0.2902431 0.5687816 0.5195258 +0.3104189 0.5687816 0.5195258 +0.3293248 0.5687816 0.5195258 +0.3470774 0.5687816 0.5195258 +0.3637862 0.5687816 0.5195258 +0.3795513 0.5687816 0.5195258 +0.3944623 0.5687816 0.5195258 +0.4085988 0.5687816 0.5195258 +0.4220313 0.5687816 0.5195258 +0.4348222 0.5687816 0.5195258 +0.4470264 0.5687816 0.5195258 +0.4586928 0.5687816 0.5195258 +0.4698649 0.5687816 0.5195258 +0.4805811 0.5687816 0.5195258 +0.490876 0.5687816 0.5195258 +0.5007803 0.5687816 0.5195258 +0.510322 0.5687816 0.5195258 +0.5195258 0.5687816 0.5195258 +0.5284142 0.5687816 0.5195258 +0.5370079 0.5687816 0.5195258 +0.5453253 0.5687816 0.5195258 +0.5533834 0.5687816 0.5195258 +0.5611974 0.5687816 0.5195258 +0.5687816 0.5687816 0.5195258 +0.092819 0.092819 0.5284142 +0.1056428 0.092819 0.5284142 +0.1201537 0.092819 0.5284142 +0.1409607 0.092819 0.5284142 +0.1678172 0.092819 0.5284142 +0.1950164 0.092819 0.5284142 +0.2210581 0.092819 0.5284142 +0.245636 0.092819 0.5284142 +0.2686816 0.092819 0.5284142 +0.2902431 0.092819 0.5284142 +0.3104189 0.092819 0.5284142 +0.3293248 0.092819 0.5284142 +0.3470774 0.092819 0.5284142 +0.3637862 0.092819 0.5284142 +0.3795513 0.092819 0.5284142 +0.3944623 0.092819 0.5284142 +0.4085988 0.092819 0.5284142 +0.4220313 0.092819 0.5284142 +0.4348222 0.092819 0.5284142 +0.4470264 0.092819 0.5284142 +0.4586928 0.092819 0.5284142 +0.4698649 0.092819 0.5284142 +0.4805811 0.092819 0.5284142 +0.490876 0.092819 0.5284142 +0.5007803 0.092819 0.5284142 +0.510322 0.092819 0.5284142 +0.5195258 0.092819 0.5284142 +0.5284142 0.092819 0.5284142 +0.5370079 0.092819 0.5284142 +0.5453253 0.092819 0.5284142 +0.5533834 0.092819 0.5284142 +0.5611974 0.092819 0.5284142 +0.5687816 0.092819 0.5284142 +0.092819 0.1056428 0.5284142 +0.1056428 0.1056428 0.5284142 +0.1201537 0.1056428 0.5284142 +0.1409607 0.1056428 0.5284142 +0.1678172 0.1056428 0.5284142 +0.1950164 0.1056428 0.5284142 +0.2210581 0.1056428 0.5284142 +0.245636 0.1056428 0.5284142 +0.2686816 0.1056428 0.5284142 +0.2902431 0.1056428 0.5284142 +0.3104189 0.1056428 0.5284142 +0.3293248 0.1056428 0.5284142 +0.3470774 0.1056428 0.5284142 +0.3637862 0.1056428 0.5284142 +0.3795513 0.1056428 0.5284142 +0.3944623 0.1056428 0.5284142 +0.4085988 0.1056428 0.5284142 +0.4220313 0.1056428 0.5284142 +0.4348222 0.1056428 0.5284142 +0.4470264 0.1056428 0.5284142 +0.4586928 0.1056428 0.5284142 +0.4698649 0.1056428 0.5284142 +0.4805811 0.1056428 0.5284142 +0.490876 0.1056428 0.5284142 +0.5007803 0.1056428 0.5284142 +0.510322 0.1056428 0.5284142 +0.5195258 0.1056428 0.5284142 +0.5284142 0.1056428 0.5284142 +0.5370079 0.1056428 0.5284142 +0.5453253 0.1056428 0.5284142 +0.5533834 0.1056428 0.5284142 +0.5611974 0.1056428 0.5284142 +0.5687816 0.1056428 0.5284142 +0.092819 0.1201537 0.5284142 +0.1056428 0.1201537 0.5284142 +0.1201537 0.1201537 0.5284142 +0.1409607 0.1201537 0.5284142 +0.1678172 0.1201537 0.5284142 +0.1950164 0.1201537 0.5284142 +0.2210581 0.1201537 0.5284142 +0.245636 0.1201537 0.5284142 +0.2686816 0.1201537 0.5284142 +0.2902431 0.1201537 0.5284142 +0.3104189 0.1201537 0.5284142 +0.3293248 0.1201537 0.5284142 +0.3470774 0.1201537 0.5284142 +0.3637862 0.1201537 0.5284142 +0.3795513 0.1201537 0.5284142 +0.3944623 0.1201537 0.5284142 +0.4085988 0.1201537 0.5284142 +0.4220313 0.1201537 0.5284142 +0.4348222 0.1201537 0.5284142 +0.4470264 0.1201537 0.5284142 +0.4586928 0.1201537 0.5284142 +0.4698649 0.1201537 0.5284142 +0.4805811 0.1201537 0.5284142 +0.490876 0.1201537 0.5284142 +0.5007803 0.1201537 0.5284142 +0.510322 0.1201537 0.5284142 +0.5195258 0.1201537 0.5284142 +0.5284142 0.1201537 0.5284142 +0.5370079 0.1201537 0.5284142 +0.5453253 0.1201537 0.5284142 +0.5533834 0.1201537 0.5284142 +0.5611974 0.1201537 0.5284142 +0.5687816 0.1201537 0.5284142 +0.092819 0.1409607 0.5284142 +0.1056428 0.1409607 0.5284142 +0.1201537 0.1409607 0.5284142 +0.1409607 0.1409607 0.5284142 +0.1678172 0.1409607 0.5284142 +0.1950164 0.1409607 0.5284142 +0.2210581 0.1409607 0.5284142 +0.245636 0.1409607 0.5284142 +0.2686816 0.1409607 0.5284142 +0.2902431 0.1409607 0.5284142 +0.3104189 0.1409607 0.5284142 +0.3293248 0.1409607 0.5284142 +0.3470774 0.1409607 0.5284142 +0.3637862 0.1409607 0.5284142 +0.3795513 0.1409607 0.5284142 +0.3944623 0.1409607 0.5284142 +0.4085988 0.1409607 0.5284142 +0.4220313 0.1409607 0.5284142 +0.4348222 0.1409607 0.5284142 +0.4470264 0.1409607 0.5284142 +0.4586928 0.1409607 0.5284142 +0.4698649 0.1409607 0.5284142 +0.4805811 0.1409607 0.5284142 +0.490876 0.1409607 0.5284142 +0.5007803 0.1409607 0.5284142 +0.510322 0.1409607 0.5284142 +0.5195258 0.1409607 0.5284142 +0.5284142 0.1409607 0.5284142 +0.5370079 0.1409607 0.5284142 +0.5453253 0.1409607 0.5284142 +0.5533834 0.1409607 0.5284142 +0.5611974 0.1409607 0.5284142 +0.5687816 0.1409607 0.5284142 +0.092819 0.1678172 0.5284142 +0.1056428 0.1678172 0.5284142 +0.1201537 0.1678172 0.5284142 +0.1409607 0.1678172 0.5284142 +0.1678172 0.1678172 0.5284142 +0.1950164 0.1678172 0.5284142 +0.2210581 0.1678172 0.5284142 +0.245636 0.1678172 0.5284142 +0.2686816 0.1678172 0.5284142 +0.2902431 0.1678172 0.5284142 +0.3104189 0.1678172 0.5284142 +0.3293248 0.1678172 0.5284142 +0.3470774 0.1678172 0.5284142 +0.3637862 0.1678172 0.5284142 +0.3795513 0.1678172 0.5284142 +0.3944623 0.1678172 0.5284142 +0.4085988 0.1678172 0.5284142 +0.4220313 0.1678172 0.5284142 +0.4348222 0.1678172 0.5284142 +0.4470264 0.1678172 0.5284142 +0.4586928 0.1678172 0.5284142 +0.4698649 0.1678172 0.5284142 +0.4805811 0.1678172 0.5284142 +0.490876 0.1678172 0.5284142 +0.5007803 0.1678172 0.5284142 +0.510322 0.1678172 0.5284142 +0.5195258 0.1678172 0.5284142 +0.5284142 0.1678172 0.5284142 +0.5370079 0.1678172 0.5284142 +0.5453253 0.1678172 0.5284142 +0.5533834 0.1678172 0.5284142 +0.5611974 0.1678172 0.5284142 +0.5687816 0.1678172 0.5284142 +0.092819 0.1950164 0.5284142 +0.1056428 0.1950164 0.5284142 +0.1201537 0.1950164 0.5284142 +0.1409607 0.1950164 0.5284142 +0.1678172 0.1950164 0.5284142 +0.1950164 0.1950164 0.5284142 +0.2210581 0.1950164 0.5284142 +0.245636 0.1950164 0.5284142 +0.2686816 0.1950164 0.5284142 +0.2902431 0.1950164 0.5284142 +0.3104189 0.1950164 0.5284142 +0.3293248 0.1950164 0.5284142 +0.3470774 0.1950164 0.5284142 +0.3637862 0.1950164 0.5284142 +0.3795513 0.1950164 0.5284142 +0.3944623 0.1950164 0.5284142 +0.4085988 0.1950164 0.5284142 +0.4220313 0.1950164 0.5284142 +0.4348222 0.1950164 0.5284142 +0.4470264 0.1950164 0.5284142 +0.4586928 0.1950164 0.5284142 +0.4698649 0.1950164 0.5284142 +0.4805811 0.1950164 0.5284142 +0.490876 0.1950164 0.5284142 +0.5007803 0.1950164 0.5284142 +0.510322 0.1950164 0.5284142 +0.5195258 0.1950164 0.5284142 +0.5284142 0.1950164 0.5284142 +0.5370079 0.1950164 0.5284142 +0.5453253 0.1950164 0.5284142 +0.5533834 0.1950164 0.5284142 +0.5611974 0.1950164 0.5284142 +0.5687816 0.1950164 0.5284142 +0.092819 0.2210581 0.5284142 +0.1056428 0.2210581 0.5284142 +0.1201537 0.2210581 0.5284142 +0.1409607 0.2210581 0.5284142 +0.1678172 0.2210581 0.5284142 +0.1950164 0.2210581 0.5284142 +0.2210581 0.2210581 0.5284142 +0.245636 0.2210581 0.5284142 +0.2686816 0.2210581 0.5284142 +0.2902431 0.2210581 0.5284142 +0.3104189 0.2210581 0.5284142 +0.3293248 0.2210581 0.5284142 +0.3470774 0.2210581 0.5284142 +0.3637862 0.2210581 0.5284142 +0.3795513 0.2210581 0.5284142 +0.3944623 0.2210581 0.5284142 +0.4085988 0.2210581 0.5284142 +0.4220313 0.2210581 0.5284142 +0.4348222 0.2210581 0.5284142 +0.4470264 0.2210581 0.5284142 +0.4586928 0.2210581 0.5284142 +0.4698649 0.2210581 0.5284142 +0.4805811 0.2210581 0.5284142 +0.490876 0.2210581 0.5284142 +0.5007803 0.2210581 0.5284142 +0.510322 0.2210581 0.5284142 +0.5195258 0.2210581 0.5284142 +0.5284142 0.2210581 0.5284142 +0.5370079 0.2210581 0.5284142 +0.5453253 0.2210581 0.5284142 +0.5533834 0.2210581 0.5284142 +0.5611974 0.2210581 0.5284142 +0.5687816 0.2210581 0.5284142 +0.092819 0.245636 0.5284142 +0.1056428 0.245636 0.5284142 +0.1201537 0.245636 0.5284142 +0.1409607 0.245636 0.5284142 +0.1678172 0.245636 0.5284142 +0.1950164 0.245636 0.5284142 +0.2210581 0.245636 0.5284142 +0.245636 0.245636 0.5284142 +0.2686816 0.245636 0.5284142 +0.2902431 0.245636 0.5284142 +0.3104189 0.245636 0.5284142 +0.3293248 0.245636 0.5284142 +0.3470774 0.245636 0.5284142 +0.3637862 0.245636 0.5284142 +0.3795513 0.245636 0.5284142 +0.3944623 0.245636 0.5284142 +0.4085988 0.245636 0.5284142 +0.4220313 0.245636 0.5284142 +0.4348222 0.245636 0.5284142 +0.4470264 0.245636 0.5284142 +0.4586928 0.245636 0.5284142 +0.4698649 0.245636 0.5284142 +0.4805811 0.245636 0.5284142 +0.490876 0.245636 0.5284142 +0.5007803 0.245636 0.5284142 +0.510322 0.245636 0.5284142 +0.5195258 0.245636 0.5284142 +0.5284142 0.245636 0.5284142 +0.5370079 0.245636 0.5284142 +0.5453253 0.245636 0.5284142 +0.5533834 0.245636 0.5284142 +0.5611974 0.245636 0.5284142 +0.5687816 0.245636 0.5284142 +0.092819 0.2686816 0.5284142 +0.1056428 0.2686816 0.5284142 +0.1201537 0.2686816 0.5284142 +0.1409607 0.2686816 0.5284142 +0.1678172 0.2686816 0.5284142 +0.1950164 0.2686816 0.5284142 +0.2210581 0.2686816 0.5284142 +0.245636 0.2686816 0.5284142 +0.2686816 0.2686816 0.5284142 +0.2902431 0.2686816 0.5284142 +0.3104189 0.2686816 0.5284142 +0.3293248 0.2686816 0.5284142 +0.3470774 0.2686816 0.5284142 +0.3637862 0.2686816 0.5284142 +0.3795513 0.2686816 0.5284142 +0.3944623 0.2686816 0.5284142 +0.4085988 0.2686816 0.5284142 +0.4220313 0.2686816 0.5284142 +0.4348222 0.2686816 0.5284142 +0.4470264 0.2686816 0.5284142 +0.4586928 0.2686816 0.5284142 +0.4698649 0.2686816 0.5284142 +0.4805811 0.2686816 0.5284142 +0.490876 0.2686816 0.5284142 +0.5007803 0.2686816 0.5284142 +0.510322 0.2686816 0.5284142 +0.5195258 0.2686816 0.5284142 +0.5284142 0.2686816 0.5284142 +0.5370079 0.2686816 0.5284142 +0.5453253 0.2686816 0.5284142 +0.5533834 0.2686816 0.5284142 +0.5611974 0.2686816 0.5284142 +0.5687816 0.2686816 0.5284142 +0.092819 0.2902431 0.5284142 +0.1056428 0.2902431 0.5284142 +0.1201537 0.2902431 0.5284142 +0.1409607 0.2902431 0.5284142 +0.1678172 0.2902431 0.5284142 +0.1950164 0.2902431 0.5284142 +0.2210581 0.2902431 0.5284142 +0.245636 0.2902431 0.5284142 +0.2686816 0.2902431 0.5284142 +0.2902431 0.2902431 0.5284142 +0.3104189 0.2902431 0.5284142 +0.3293248 0.2902431 0.5284142 +0.3470774 0.2902431 0.5284142 +0.3637862 0.2902431 0.5284142 +0.3795513 0.2902431 0.5284142 +0.3944623 0.2902431 0.5284142 +0.4085988 0.2902431 0.5284142 +0.4220313 0.2902431 0.5284142 +0.4348222 0.2902431 0.5284142 +0.4470264 0.2902431 0.5284142 +0.4586928 0.2902431 0.5284142 +0.4698649 0.2902431 0.5284142 +0.4805811 0.2902431 0.5284142 +0.490876 0.2902431 0.5284142 +0.5007803 0.2902431 0.5284142 +0.510322 0.2902431 0.5284142 +0.5195258 0.2902431 0.5284142 +0.5284142 0.2902431 0.5284142 +0.5370079 0.2902431 0.5284142 +0.5453253 0.2902431 0.5284142 +0.5533834 0.2902431 0.5284142 +0.5611974 0.2902431 0.5284142 +0.5687816 0.2902431 0.5284142 +0.092819 0.3104189 0.5284142 +0.1056428 0.3104189 0.5284142 +0.1201537 0.3104189 0.5284142 +0.1409607 0.3104189 0.5284142 +0.1678172 0.3104189 0.5284142 +0.1950164 0.3104189 0.5284142 +0.2210581 0.3104189 0.5284142 +0.245636 0.3104189 0.5284142 +0.2686816 0.3104189 0.5284142 +0.2902431 0.3104189 0.5284142 +0.3104189 0.3104189 0.5284142 +0.3293248 0.3104189 0.5284142 +0.3470774 0.3104189 0.5284142 +0.3637862 0.3104189 0.5284142 +0.3795513 0.3104189 0.5284142 +0.3944623 0.3104189 0.5284142 +0.4085988 0.3104189 0.5284142 +0.4220313 0.3104189 0.5284142 +0.4348222 0.3104189 0.5284142 +0.4470264 0.3104189 0.5284142 +0.4586928 0.3104189 0.5284142 +0.4698649 0.3104189 0.5284142 +0.4805811 0.3104189 0.5284142 +0.490876 0.3104189 0.5284142 +0.5007803 0.3104189 0.5284142 +0.510322 0.3104189 0.5284142 +0.5195258 0.3104189 0.5284142 +0.5284142 0.3104189 0.5284142 +0.5370079 0.3104189 0.5284142 +0.5453253 0.3104189 0.5284142 +0.5533834 0.3104189 0.5284142 +0.5611974 0.3104189 0.5284142 +0.5687816 0.3104189 0.5284142 +0.092819 0.3293248 0.5284142 +0.1056428 0.3293248 0.5284142 +0.1201537 0.3293248 0.5284142 +0.1409607 0.3293248 0.5284142 +0.1678172 0.3293248 0.5284142 +0.1950164 0.3293248 0.5284142 +0.2210581 0.3293248 0.5284142 +0.245636 0.3293248 0.5284142 +0.2686816 0.3293248 0.5284142 +0.2902431 0.3293248 0.5284142 +0.3104189 0.3293248 0.5284142 +0.3293248 0.3293248 0.5284142 +0.3470774 0.3293248 0.5284142 +0.3637862 0.3293248 0.5284142 +0.3795513 0.3293248 0.5284142 +0.3944623 0.3293248 0.5284142 +0.4085988 0.3293248 0.5284142 +0.4220313 0.3293248 0.5284142 +0.4348222 0.3293248 0.5284142 +0.4470264 0.3293248 0.5284142 +0.4586928 0.3293248 0.5284142 +0.4698649 0.3293248 0.5284142 +0.4805811 0.3293248 0.5284142 +0.490876 0.3293248 0.5284142 +0.5007803 0.3293248 0.5284142 +0.510322 0.3293248 0.5284142 +0.5195258 0.3293248 0.5284142 +0.5284142 0.3293248 0.5284142 +0.5370079 0.3293248 0.5284142 +0.5453253 0.3293248 0.5284142 +0.5533834 0.3293248 0.5284142 +0.5611974 0.3293248 0.5284142 +0.5687816 0.3293248 0.5284142 +0.092819 0.3470774 0.5284142 +0.1056428 0.3470774 0.5284142 +0.1201537 0.3470774 0.5284142 +0.1409607 0.3470774 0.5284142 +0.1678172 0.3470774 0.5284142 +0.1950164 0.3470774 0.5284142 +0.2210581 0.3470774 0.5284142 +0.245636 0.3470774 0.5284142 +0.2686816 0.3470774 0.5284142 +0.2902431 0.3470774 0.5284142 +0.3104189 0.3470774 0.5284142 +0.3293248 0.3470774 0.5284142 +0.3470774 0.3470774 0.5284142 +0.3637862 0.3470774 0.5284142 +0.3795513 0.3470774 0.5284142 +0.3944623 0.3470774 0.5284142 +0.4085988 0.3470774 0.5284142 +0.4220313 0.3470774 0.5284142 +0.4348222 0.3470774 0.5284142 +0.4470264 0.3470774 0.5284142 +0.4586928 0.3470774 0.5284142 +0.4698649 0.3470774 0.5284142 +0.4805811 0.3470774 0.5284142 +0.490876 0.3470774 0.5284142 +0.5007803 0.3470774 0.5284142 +0.510322 0.3470774 0.5284142 +0.5195258 0.3470774 0.5284142 +0.5284142 0.3470774 0.5284142 +0.5370079 0.3470774 0.5284142 +0.5453253 0.3470774 0.5284142 +0.5533834 0.3470774 0.5284142 +0.5611974 0.3470774 0.5284142 +0.5687816 0.3470774 0.5284142 +0.092819 0.3637862 0.5284142 +0.1056428 0.3637862 0.5284142 +0.1201537 0.3637862 0.5284142 +0.1409607 0.3637862 0.5284142 +0.1678172 0.3637862 0.5284142 +0.1950164 0.3637862 0.5284142 +0.2210581 0.3637862 0.5284142 +0.245636 0.3637862 0.5284142 +0.2686816 0.3637862 0.5284142 +0.2902431 0.3637862 0.5284142 +0.3104189 0.3637862 0.5284142 +0.3293248 0.3637862 0.5284142 +0.3470774 0.3637862 0.5284142 +0.3637862 0.3637862 0.5284142 +0.3795513 0.3637862 0.5284142 +0.3944623 0.3637862 0.5284142 +0.4085988 0.3637862 0.5284142 +0.4220313 0.3637862 0.5284142 +0.4348222 0.3637862 0.5284142 +0.4470264 0.3637862 0.5284142 +0.4586928 0.3637862 0.5284142 +0.4698649 0.3637862 0.5284142 +0.4805811 0.3637862 0.5284142 +0.490876 0.3637862 0.5284142 +0.5007803 0.3637862 0.5284142 +0.510322 0.3637862 0.5284142 +0.5195258 0.3637862 0.5284142 +0.5284142 0.3637862 0.5284142 +0.5370079 0.3637862 0.5284142 +0.5453253 0.3637862 0.5284142 +0.5533834 0.3637862 0.5284142 +0.5611974 0.3637862 0.5284142 +0.5687816 0.3637862 0.5284142 +0.092819 0.3795513 0.5284142 +0.1056428 0.3795513 0.5284142 +0.1201537 0.3795513 0.5284142 +0.1409607 0.3795513 0.5284142 +0.1678172 0.3795513 0.5284142 +0.1950164 0.3795513 0.5284142 +0.2210581 0.3795513 0.5284142 +0.245636 0.3795513 0.5284142 +0.2686816 0.3795513 0.5284142 +0.2902431 0.3795513 0.5284142 +0.3104189 0.3795513 0.5284142 +0.3293248 0.3795513 0.5284142 +0.3470774 0.3795513 0.5284142 +0.3637862 0.3795513 0.5284142 +0.3795513 0.3795513 0.5284142 +0.3944623 0.3795513 0.5284142 +0.4085988 0.3795513 0.5284142 +0.4220313 0.3795513 0.5284142 +0.4348222 0.3795513 0.5284142 +0.4470264 0.3795513 0.5284142 +0.4586928 0.3795513 0.5284142 +0.4698649 0.3795513 0.5284142 +0.4805811 0.3795513 0.5284142 +0.490876 0.3795513 0.5284142 +0.5007803 0.3795513 0.5284142 +0.510322 0.3795513 0.5284142 +0.5195258 0.3795513 0.5284142 +0.5284142 0.3795513 0.5284142 +0.5370079 0.3795513 0.5284142 +0.5453253 0.3795513 0.5284142 +0.5533834 0.3795513 0.5284142 +0.5611974 0.3795513 0.5284142 +0.5687816 0.3795513 0.5284142 +0.092819 0.3944623 0.5284142 +0.1056428 0.3944623 0.5284142 +0.1201537 0.3944623 0.5284142 +0.1409607 0.3944623 0.5284142 +0.1678172 0.3944623 0.5284142 +0.1950164 0.3944623 0.5284142 +0.2210581 0.3944623 0.5284142 +0.245636 0.3944623 0.5284142 +0.2686816 0.3944623 0.5284142 +0.2902431 0.3944623 0.5284142 +0.3104189 0.3944623 0.5284142 +0.3293248 0.3944623 0.5284142 +0.3470774 0.3944623 0.5284142 +0.3637862 0.3944623 0.5284142 +0.3795513 0.3944623 0.5284142 +0.3944623 0.3944623 0.5284142 +0.4085988 0.3944623 0.5284142 +0.4220313 0.3944623 0.5284142 +0.4348222 0.3944623 0.5284142 +0.4470264 0.3944623 0.5284142 +0.4586928 0.3944623 0.5284142 +0.4698649 0.3944623 0.5284142 +0.4805811 0.3944623 0.5284142 +0.490876 0.3944623 0.5284142 +0.5007803 0.3944623 0.5284142 +0.510322 0.3944623 0.5284142 +0.5195258 0.3944623 0.5284142 +0.5284142 0.3944623 0.5284142 +0.5370079 0.3944623 0.5284142 +0.5453253 0.3944623 0.5284142 +0.5533834 0.3944623 0.5284142 +0.5611974 0.3944623 0.5284142 +0.5687816 0.3944623 0.5284142 +0.092819 0.4085988 0.5284142 +0.1056428 0.4085988 0.5284142 +0.1201537 0.4085988 0.5284142 +0.1409607 0.4085988 0.5284142 +0.1678172 0.4085988 0.5284142 +0.1950164 0.4085988 0.5284142 +0.2210581 0.4085988 0.5284142 +0.245636 0.4085988 0.5284142 +0.2686816 0.4085988 0.5284142 +0.2902431 0.4085988 0.5284142 +0.3104189 0.4085988 0.5284142 +0.3293248 0.4085988 0.5284142 +0.3470774 0.4085988 0.5284142 +0.3637862 0.4085988 0.5284142 +0.3795513 0.4085988 0.5284142 +0.3944623 0.4085988 0.5284142 +0.4085988 0.4085988 0.5284142 +0.4220313 0.4085988 0.5284142 +0.4348222 0.4085988 0.5284142 +0.4470264 0.4085988 0.5284142 +0.4586928 0.4085988 0.5284142 +0.4698649 0.4085988 0.5284142 +0.4805811 0.4085988 0.5284142 +0.490876 0.4085988 0.5284142 +0.5007803 0.4085988 0.5284142 +0.510322 0.4085988 0.5284142 +0.5195258 0.4085988 0.5284142 +0.5284142 0.4085988 0.5284142 +0.5370079 0.4085988 0.5284142 +0.5453253 0.4085988 0.5284142 +0.5533834 0.4085988 0.5284142 +0.5611974 0.4085988 0.5284142 +0.5687816 0.4085988 0.5284142 +0.092819 0.4220313 0.5284142 +0.1056428 0.4220313 0.5284142 +0.1201537 0.4220313 0.5284142 +0.1409607 0.4220313 0.5284142 +0.1678172 0.4220313 0.5284142 +0.1950164 0.4220313 0.5284142 +0.2210581 0.4220313 0.5284142 +0.245636 0.4220313 0.5284142 +0.2686816 0.4220313 0.5284142 +0.2902431 0.4220313 0.5284142 +0.3104189 0.4220313 0.5284142 +0.3293248 0.4220313 0.5284142 +0.3470774 0.4220313 0.5284142 +0.3637862 0.4220313 0.5284142 +0.3795513 0.4220313 0.5284142 +0.3944623 0.4220313 0.5284142 +0.4085988 0.4220313 0.5284142 +0.4220313 0.4220313 0.5284142 +0.4348222 0.4220313 0.5284142 +0.4470264 0.4220313 0.5284142 +0.4586928 0.4220313 0.5284142 +0.4698649 0.4220313 0.5284142 +0.4805811 0.4220313 0.5284142 +0.490876 0.4220313 0.5284142 +0.5007803 0.4220313 0.5284142 +0.510322 0.4220313 0.5284142 +0.5195258 0.4220313 0.5284142 +0.5284142 0.4220313 0.5284142 +0.5370079 0.4220313 0.5284142 +0.5453253 0.4220313 0.5284142 +0.5533834 0.4220313 0.5284142 +0.5611974 0.4220313 0.5284142 +0.5687816 0.4220313 0.5284142 +0.092819 0.4348222 0.5284142 +0.1056428 0.4348222 0.5284142 +0.1201537 0.4348222 0.5284142 +0.1409607 0.4348222 0.5284142 +0.1678172 0.4348222 0.5284142 +0.1950164 0.4348222 0.5284142 +0.2210581 0.4348222 0.5284142 +0.245636 0.4348222 0.5284142 +0.2686816 0.4348222 0.5284142 +0.2902431 0.4348222 0.5284142 +0.3104189 0.4348222 0.5284142 +0.3293248 0.4348222 0.5284142 +0.3470774 0.4348222 0.5284142 +0.3637862 0.4348222 0.5284142 +0.3795513 0.4348222 0.5284142 +0.3944623 0.4348222 0.5284142 +0.4085988 0.4348222 0.5284142 +0.4220313 0.4348222 0.5284142 +0.4348222 0.4348222 0.5284142 +0.4470264 0.4348222 0.5284142 +0.4586928 0.4348222 0.5284142 +0.4698649 0.4348222 0.5284142 +0.4805811 0.4348222 0.5284142 +0.490876 0.4348222 0.5284142 +0.5007803 0.4348222 0.5284142 +0.510322 0.4348222 0.5284142 +0.5195258 0.4348222 0.5284142 +0.5284142 0.4348222 0.5284142 +0.5370079 0.4348222 0.5284142 +0.5453253 0.4348222 0.5284142 +0.5533834 0.4348222 0.5284142 +0.5611974 0.4348222 0.5284142 +0.5687816 0.4348222 0.5284142 +0.092819 0.4470264 0.5284142 +0.1056428 0.4470264 0.5284142 +0.1201537 0.4470264 0.5284142 +0.1409607 0.4470264 0.5284142 +0.1678172 0.4470264 0.5284142 +0.1950164 0.4470264 0.5284142 +0.2210581 0.4470264 0.5284142 +0.245636 0.4470264 0.5284142 +0.2686816 0.4470264 0.5284142 +0.2902431 0.4470264 0.5284142 +0.3104189 0.4470264 0.5284142 +0.3293248 0.4470264 0.5284142 +0.3470774 0.4470264 0.5284142 +0.3637862 0.4470264 0.5284142 +0.3795513 0.4470264 0.5284142 +0.3944623 0.4470264 0.5284142 +0.4085988 0.4470264 0.5284142 +0.4220313 0.4470264 0.5284142 +0.4348222 0.4470264 0.5284142 +0.4470264 0.4470264 0.5284142 +0.4586928 0.4470264 0.5284142 +0.4698649 0.4470264 0.5284142 +0.4805811 0.4470264 0.5284142 +0.490876 0.4470264 0.5284142 +0.5007803 0.4470264 0.5284142 +0.510322 0.4470264 0.5284142 +0.5195258 0.4470264 0.5284142 +0.5284142 0.4470264 0.5284142 +0.5370079 0.4470264 0.5284142 +0.5453253 0.4470264 0.5284142 +0.5533834 0.4470264 0.5284142 +0.5611974 0.4470264 0.5284142 +0.5687816 0.4470264 0.5284142 +0.092819 0.4586928 0.5284142 +0.1056428 0.4586928 0.5284142 +0.1201537 0.4586928 0.5284142 +0.1409607 0.4586928 0.5284142 +0.1678172 0.4586928 0.5284142 +0.1950164 0.4586928 0.5284142 +0.2210581 0.4586928 0.5284142 +0.245636 0.4586928 0.5284142 +0.2686816 0.4586928 0.5284142 +0.2902431 0.4586928 0.5284142 +0.3104189 0.4586928 0.5284142 +0.3293248 0.4586928 0.5284142 +0.3470774 0.4586928 0.5284142 +0.3637862 0.4586928 0.5284142 +0.3795513 0.4586928 0.5284142 +0.3944623 0.4586928 0.5284142 +0.4085988 0.4586928 0.5284142 +0.4220313 0.4586928 0.5284142 +0.4348222 0.4586928 0.5284142 +0.4470264 0.4586928 0.5284142 +0.4586928 0.4586928 0.5284142 +0.4698649 0.4586928 0.5284142 +0.4805811 0.4586928 0.5284142 +0.490876 0.4586928 0.5284142 +0.5007803 0.4586928 0.5284142 +0.510322 0.4586928 0.5284142 +0.5195258 0.4586928 0.5284142 +0.5284142 0.4586928 0.5284142 +0.5370079 0.4586928 0.5284142 +0.5453253 0.4586928 0.5284142 +0.5533834 0.4586928 0.5284142 +0.5611974 0.4586928 0.5284142 +0.5687816 0.4586928 0.5284142 +0.092819 0.4698649 0.5284142 +0.1056428 0.4698649 0.5284142 +0.1201537 0.4698649 0.5284142 +0.1409607 0.4698649 0.5284142 +0.1678172 0.4698649 0.5284142 +0.1950164 0.4698649 0.5284142 +0.2210581 0.4698649 0.5284142 +0.245636 0.4698649 0.5284142 +0.2686816 0.4698649 0.5284142 +0.2902431 0.4698649 0.5284142 +0.3104189 0.4698649 0.5284142 +0.3293248 0.4698649 0.5284142 +0.3470774 0.4698649 0.5284142 +0.3637862 0.4698649 0.5284142 +0.3795513 0.4698649 0.5284142 +0.3944623 0.4698649 0.5284142 +0.4085988 0.4698649 0.5284142 +0.4220313 0.4698649 0.5284142 +0.4348222 0.4698649 0.5284142 +0.4470264 0.4698649 0.5284142 +0.4586928 0.4698649 0.5284142 +0.4698649 0.4698649 0.5284142 +0.4805811 0.4698649 0.5284142 +0.490876 0.4698649 0.5284142 +0.5007803 0.4698649 0.5284142 +0.510322 0.4698649 0.5284142 +0.5195258 0.4698649 0.5284142 +0.5284142 0.4698649 0.5284142 +0.5370079 0.4698649 0.5284142 +0.5453253 0.4698649 0.5284142 +0.5533834 0.4698649 0.5284142 +0.5611974 0.4698649 0.5284142 +0.5687816 0.4698649 0.5284142 +0.092819 0.4805811 0.5284142 +0.1056428 0.4805811 0.5284142 +0.1201537 0.4805811 0.5284142 +0.1409607 0.4805811 0.5284142 +0.1678172 0.4805811 0.5284142 +0.1950164 0.4805811 0.5284142 +0.2210581 0.4805811 0.5284142 +0.245636 0.4805811 0.5284142 +0.2686816 0.4805811 0.5284142 +0.2902431 0.4805811 0.5284142 +0.3104189 0.4805811 0.5284142 +0.3293248 0.4805811 0.5284142 +0.3470774 0.4805811 0.5284142 +0.3637862 0.4805811 0.5284142 +0.3795513 0.4805811 0.5284142 +0.3944623 0.4805811 0.5284142 +0.4085988 0.4805811 0.5284142 +0.4220313 0.4805811 0.5284142 +0.4348222 0.4805811 0.5284142 +0.4470264 0.4805811 0.5284142 +0.4586928 0.4805811 0.5284142 +0.4698649 0.4805811 0.5284142 +0.4805811 0.4805811 0.5284142 +0.490876 0.4805811 0.5284142 +0.5007803 0.4805811 0.5284142 +0.510322 0.4805811 0.5284142 +0.5195258 0.4805811 0.5284142 +0.5284142 0.4805811 0.5284142 +0.5370079 0.4805811 0.5284142 +0.5453253 0.4805811 0.5284142 +0.5533834 0.4805811 0.5284142 +0.5611974 0.4805811 0.5284142 +0.5687816 0.4805811 0.5284142 +0.092819 0.490876 0.5284142 +0.1056428 0.490876 0.5284142 +0.1201537 0.490876 0.5284142 +0.1409607 0.490876 0.5284142 +0.1678172 0.490876 0.5284142 +0.1950164 0.490876 0.5284142 +0.2210581 0.490876 0.5284142 +0.245636 0.490876 0.5284142 +0.2686816 0.490876 0.5284142 +0.2902431 0.490876 0.5284142 +0.3104189 0.490876 0.5284142 +0.3293248 0.490876 0.5284142 +0.3470774 0.490876 0.5284142 +0.3637862 0.490876 0.5284142 +0.3795513 0.490876 0.5284142 +0.3944623 0.490876 0.5284142 +0.4085988 0.490876 0.5284142 +0.4220313 0.490876 0.5284142 +0.4348222 0.490876 0.5284142 +0.4470264 0.490876 0.5284142 +0.4586928 0.490876 0.5284142 +0.4698649 0.490876 0.5284142 +0.4805811 0.490876 0.5284142 +0.490876 0.490876 0.5284142 +0.5007803 0.490876 0.5284142 +0.510322 0.490876 0.5284142 +0.5195258 0.490876 0.5284142 +0.5284142 0.490876 0.5284142 +0.5370079 0.490876 0.5284142 +0.5453253 0.490876 0.5284142 +0.5533834 0.490876 0.5284142 +0.5611974 0.490876 0.5284142 +0.5687816 0.490876 0.5284142 +0.092819 0.5007803 0.5284142 +0.1056428 0.5007803 0.5284142 +0.1201537 0.5007803 0.5284142 +0.1409607 0.5007803 0.5284142 +0.1678172 0.5007803 0.5284142 +0.1950164 0.5007803 0.5284142 +0.2210581 0.5007803 0.5284142 +0.245636 0.5007803 0.5284142 +0.2686816 0.5007803 0.5284142 +0.2902431 0.5007803 0.5284142 +0.3104189 0.5007803 0.5284142 +0.3293248 0.5007803 0.5284142 +0.3470774 0.5007803 0.5284142 +0.3637862 0.5007803 0.5284142 +0.3795513 0.5007803 0.5284142 +0.3944623 0.5007803 0.5284142 +0.4085988 0.5007803 0.5284142 +0.4220313 0.5007803 0.5284142 +0.4348222 0.5007803 0.5284142 +0.4470264 0.5007803 0.5284142 +0.4586928 0.5007803 0.5284142 +0.4698649 0.5007803 0.5284142 +0.4805811 0.5007803 0.5284142 +0.490876 0.5007803 0.5284142 +0.5007803 0.5007803 0.5284142 +0.510322 0.5007803 0.5284142 +0.5195258 0.5007803 0.5284142 +0.5284142 0.5007803 0.5284142 +0.5370079 0.5007803 0.5284142 +0.5453253 0.5007803 0.5284142 +0.5533834 0.5007803 0.5284142 +0.5611974 0.5007803 0.5284142 +0.5687816 0.5007803 0.5284142 +0.092819 0.510322 0.5284142 +0.1056428 0.510322 0.5284142 +0.1201537 0.510322 0.5284142 +0.1409607 0.510322 0.5284142 +0.1678172 0.510322 0.5284142 +0.1950164 0.510322 0.5284142 +0.2210581 0.510322 0.5284142 +0.245636 0.510322 0.5284142 +0.2686816 0.510322 0.5284142 +0.2902431 0.510322 0.5284142 +0.3104189 0.510322 0.5284142 +0.3293248 0.510322 0.5284142 +0.3470774 0.510322 0.5284142 +0.3637862 0.510322 0.5284142 +0.3795513 0.510322 0.5284142 +0.3944623 0.510322 0.5284142 +0.4085988 0.510322 0.5284142 +0.4220313 0.510322 0.5284142 +0.4348222 0.510322 0.5284142 +0.4470264 0.510322 0.5284142 +0.4586928 0.510322 0.5284142 +0.4698649 0.510322 0.5284142 +0.4805811 0.510322 0.5284142 +0.490876 0.510322 0.5284142 +0.5007803 0.510322 0.5284142 +0.510322 0.510322 0.5284142 +0.5195258 0.510322 0.5284142 +0.5284142 0.510322 0.5284142 +0.5370079 0.510322 0.5284142 +0.5453253 0.510322 0.5284142 +0.5533834 0.510322 0.5284142 +0.5611974 0.510322 0.5284142 +0.5687816 0.510322 0.5284142 +0.092819 0.5195258 0.5284142 +0.1056428 0.5195258 0.5284142 +0.1201537 0.5195258 0.5284142 +0.1409607 0.5195258 0.5284142 +0.1678172 0.5195258 0.5284142 +0.1950164 0.5195258 0.5284142 +0.2210581 0.5195258 0.5284142 +0.245636 0.5195258 0.5284142 +0.2686816 0.5195258 0.5284142 +0.2902431 0.5195258 0.5284142 +0.3104189 0.5195258 0.5284142 +0.3293248 0.5195258 0.5284142 +0.3470774 0.5195258 0.5284142 +0.3637862 0.5195258 0.5284142 +0.3795513 0.5195258 0.5284142 +0.3944623 0.5195258 0.5284142 +0.4085988 0.5195258 0.5284142 +0.4220313 0.5195258 0.5284142 +0.4348222 0.5195258 0.5284142 +0.4470264 0.5195258 0.5284142 +0.4586928 0.5195258 0.5284142 +0.4698649 0.5195258 0.5284142 +0.4805811 0.5195258 0.5284142 +0.490876 0.5195258 0.5284142 +0.5007803 0.5195258 0.5284142 +0.510322 0.5195258 0.5284142 +0.5195258 0.5195258 0.5284142 +0.5284142 0.5195258 0.5284142 +0.5370079 0.5195258 0.5284142 +0.5453253 0.5195258 0.5284142 +0.5533834 0.5195258 0.5284142 +0.5611974 0.5195258 0.5284142 +0.5687816 0.5195258 0.5284142 +0.092819 0.5284142 0.5284142 +0.1056428 0.5284142 0.5284142 +0.1201537 0.5284142 0.5284142 +0.1409607 0.5284142 0.5284142 +0.1678172 0.5284142 0.5284142 +0.1950164 0.5284142 0.5284142 +0.2210581 0.5284142 0.5284142 +0.245636 0.5284142 0.5284142 +0.2686816 0.5284142 0.5284142 +0.2902431 0.5284142 0.5284142 +0.3104189 0.5284142 0.5284142 +0.3293248 0.5284142 0.5284142 +0.3470774 0.5284142 0.5284142 +0.3637862 0.5284142 0.5284142 +0.3795513 0.5284142 0.5284142 +0.3944623 0.5284142 0.5284142 +0.4085988 0.5284142 0.5284142 +0.4220313 0.5284142 0.5284142 +0.4348222 0.5284142 0.5284142 +0.4470264 0.5284142 0.5284142 +0.4586928 0.5284142 0.5284142 +0.4698649 0.5284142 0.5284142 +0.4805811 0.5284142 0.5284142 +0.490876 0.5284142 0.5284142 +0.5007803 0.5284142 0.5284142 +0.510322 0.5284142 0.5284142 +0.5195258 0.5284142 0.5284142 +0.5284142 0.5284142 0.5284142 +0.5370079 0.5284142 0.5284142 +0.5453253 0.5284142 0.5284142 +0.5533834 0.5284142 0.5284142 +0.5611974 0.5284142 0.5284142 +0.5687816 0.5284142 0.5284142 +0.092819 0.5370079 0.5284142 +0.1056428 0.5370079 0.5284142 +0.1201537 0.5370079 0.5284142 +0.1409607 0.5370079 0.5284142 +0.1678172 0.5370079 0.5284142 +0.1950164 0.5370079 0.5284142 +0.2210581 0.5370079 0.5284142 +0.245636 0.5370079 0.5284142 +0.2686816 0.5370079 0.5284142 +0.2902431 0.5370079 0.5284142 +0.3104189 0.5370079 0.5284142 +0.3293248 0.5370079 0.5284142 +0.3470774 0.5370079 0.5284142 +0.3637862 0.5370079 0.5284142 +0.3795513 0.5370079 0.5284142 +0.3944623 0.5370079 0.5284142 +0.4085988 0.5370079 0.5284142 +0.4220313 0.5370079 0.5284142 +0.4348222 0.5370079 0.5284142 +0.4470264 0.5370079 0.5284142 +0.4586928 0.5370079 0.5284142 +0.4698649 0.5370079 0.5284142 +0.4805811 0.5370079 0.5284142 +0.490876 0.5370079 0.5284142 +0.5007803 0.5370079 0.5284142 +0.510322 0.5370079 0.5284142 +0.5195258 0.5370079 0.5284142 +0.5284142 0.5370079 0.5284142 +0.5370079 0.5370079 0.5284142 +0.5453253 0.5370079 0.5284142 +0.5533834 0.5370079 0.5284142 +0.5611974 0.5370079 0.5284142 +0.5687816 0.5370079 0.5284142 +0.092819 0.5453253 0.5284142 +0.1056428 0.5453253 0.5284142 +0.1201537 0.5453253 0.5284142 +0.1409607 0.5453253 0.5284142 +0.1678172 0.5453253 0.5284142 +0.1950164 0.5453253 0.5284142 +0.2210581 0.5453253 0.5284142 +0.245636 0.5453253 0.5284142 +0.2686816 0.5453253 0.5284142 +0.2902431 0.5453253 0.5284142 +0.3104189 0.5453253 0.5284142 +0.3293248 0.5453253 0.5284142 +0.3470774 0.5453253 0.5284142 +0.3637862 0.5453253 0.5284142 +0.3795513 0.5453253 0.5284142 +0.3944623 0.5453253 0.5284142 +0.4085988 0.5453253 0.5284142 +0.4220313 0.5453253 0.5284142 +0.4348222 0.5453253 0.5284142 +0.4470264 0.5453253 0.5284142 +0.4586928 0.5453253 0.5284142 +0.4698649 0.5453253 0.5284142 +0.4805811 0.5453253 0.5284142 +0.490876 0.5453253 0.5284142 +0.5007803 0.5453253 0.5284142 +0.510322 0.5453253 0.5284142 +0.5195258 0.5453253 0.5284142 +0.5284142 0.5453253 0.5284142 +0.5370079 0.5453253 0.5284142 +0.5453253 0.5453253 0.5284142 +0.5533834 0.5453253 0.5284142 +0.5611974 0.5453253 0.5284142 +0.5687816 0.5453253 0.5284142 +0.092819 0.5533834 0.5284142 +0.1056428 0.5533834 0.5284142 +0.1201537 0.5533834 0.5284142 +0.1409607 0.5533834 0.5284142 +0.1678172 0.5533834 0.5284142 +0.1950164 0.5533834 0.5284142 +0.2210581 0.5533834 0.5284142 +0.245636 0.5533834 0.5284142 +0.2686816 0.5533834 0.5284142 +0.2902431 0.5533834 0.5284142 +0.3104189 0.5533834 0.5284142 +0.3293248 0.5533834 0.5284142 +0.3470774 0.5533834 0.5284142 +0.3637862 0.5533834 0.5284142 +0.3795513 0.5533834 0.5284142 +0.3944623 0.5533834 0.5284142 +0.4085988 0.5533834 0.5284142 +0.4220313 0.5533834 0.5284142 +0.4348222 0.5533834 0.5284142 +0.4470264 0.5533834 0.5284142 +0.4586928 0.5533834 0.5284142 +0.4698649 0.5533834 0.5284142 +0.4805811 0.5533834 0.5284142 +0.490876 0.5533834 0.5284142 +0.5007803 0.5533834 0.5284142 +0.510322 0.5533834 0.5284142 +0.5195258 0.5533834 0.5284142 +0.5284142 0.5533834 0.5284142 +0.5370079 0.5533834 0.5284142 +0.5453253 0.5533834 0.5284142 +0.5533834 0.5533834 0.5284142 +0.5611974 0.5533834 0.5284142 +0.5687816 0.5533834 0.5284142 +0.092819 0.5611974 0.5284142 +0.1056428 0.5611974 0.5284142 +0.1201537 0.5611974 0.5284142 +0.1409607 0.5611974 0.5284142 +0.1678172 0.5611974 0.5284142 +0.1950164 0.5611974 0.5284142 +0.2210581 0.5611974 0.5284142 +0.245636 0.5611974 0.5284142 +0.2686816 0.5611974 0.5284142 +0.2902431 0.5611974 0.5284142 +0.3104189 0.5611974 0.5284142 +0.3293248 0.5611974 0.5284142 +0.3470774 0.5611974 0.5284142 +0.3637862 0.5611974 0.5284142 +0.3795513 0.5611974 0.5284142 +0.3944623 0.5611974 0.5284142 +0.4085988 0.5611974 0.5284142 +0.4220313 0.5611974 0.5284142 +0.4348222 0.5611974 0.5284142 +0.4470264 0.5611974 0.5284142 +0.4586928 0.5611974 0.5284142 +0.4698649 0.5611974 0.5284142 +0.4805811 0.5611974 0.5284142 +0.490876 0.5611974 0.5284142 +0.5007803 0.5611974 0.5284142 +0.510322 0.5611974 0.5284142 +0.5195258 0.5611974 0.5284142 +0.5284142 0.5611974 0.5284142 +0.5370079 0.5611974 0.5284142 +0.5453253 0.5611974 0.5284142 +0.5533834 0.5611974 0.5284142 +0.5611974 0.5611974 0.5284142 +0.5687816 0.5611974 0.5284142 +0.092819 0.5687816 0.5284142 +0.1056428 0.5687816 0.5284142 +0.1201537 0.5687816 0.5284142 +0.1409607 0.5687816 0.5284142 +0.1678172 0.5687816 0.5284142 +0.1950164 0.5687816 0.5284142 +0.2210581 0.5687816 0.5284142 +0.245636 0.5687816 0.5284142 +0.2686816 0.5687816 0.5284142 +0.2902431 0.5687816 0.5284142 +0.3104189 0.5687816 0.5284142 +0.3293248 0.5687816 0.5284142 +0.3470774 0.5687816 0.5284142 +0.3637862 0.5687816 0.5284142 +0.3795513 0.5687816 0.5284142 +0.3944623 0.5687816 0.5284142 +0.4085988 0.5687816 0.5284142 +0.4220313 0.5687816 0.5284142 +0.4348222 0.5687816 0.5284142 +0.4470264 0.5687816 0.5284142 +0.4586928 0.5687816 0.5284142 +0.4698649 0.5687816 0.5284142 +0.4805811 0.5687816 0.5284142 +0.490876 0.5687816 0.5284142 +0.5007803 0.5687816 0.5284142 +0.510322 0.5687816 0.5284142 +0.5195258 0.5687816 0.5284142 +0.5284142 0.5687816 0.5284142 +0.5370079 0.5687816 0.5284142 +0.5453253 0.5687816 0.5284142 +0.5533834 0.5687816 0.5284142 +0.5611974 0.5687816 0.5284142 +0.5687816 0.5687816 0.5284142 +0.092819 0.092819 0.5370079 +0.1056428 0.092819 0.5370079 +0.1201537 0.092819 0.5370079 +0.1409607 0.092819 0.5370079 +0.1678172 0.092819 0.5370079 +0.1950164 0.092819 0.5370079 +0.2210581 0.092819 0.5370079 +0.245636 0.092819 0.5370079 +0.2686816 0.092819 0.5370079 +0.2902431 0.092819 0.5370079 +0.3104189 0.092819 0.5370079 +0.3293248 0.092819 0.5370079 +0.3470774 0.092819 0.5370079 +0.3637862 0.092819 0.5370079 +0.3795513 0.092819 0.5370079 +0.3944623 0.092819 0.5370079 +0.4085988 0.092819 0.5370079 +0.4220313 0.092819 0.5370079 +0.4348222 0.092819 0.5370079 +0.4470264 0.092819 0.5370079 +0.4586928 0.092819 0.5370079 +0.4698649 0.092819 0.5370079 +0.4805811 0.092819 0.5370079 +0.490876 0.092819 0.5370079 +0.5007803 0.092819 0.5370079 +0.510322 0.092819 0.5370079 +0.5195258 0.092819 0.5370079 +0.5284142 0.092819 0.5370079 +0.5370079 0.092819 0.5370079 +0.5453253 0.092819 0.5370079 +0.5533834 0.092819 0.5370079 +0.5611974 0.092819 0.5370079 +0.5687816 0.092819 0.5370079 +0.092819 0.1056428 0.5370079 +0.1056428 0.1056428 0.5370079 +0.1201537 0.1056428 0.5370079 +0.1409607 0.1056428 0.5370079 +0.1678172 0.1056428 0.5370079 +0.1950164 0.1056428 0.5370079 +0.2210581 0.1056428 0.5370079 +0.245636 0.1056428 0.5370079 +0.2686816 0.1056428 0.5370079 +0.2902431 0.1056428 0.5370079 +0.3104189 0.1056428 0.5370079 +0.3293248 0.1056428 0.5370079 +0.3470774 0.1056428 0.5370079 +0.3637862 0.1056428 0.5370079 +0.3795513 0.1056428 0.5370079 +0.3944623 0.1056428 0.5370079 +0.4085988 0.1056428 0.5370079 +0.4220313 0.1056428 0.5370079 +0.4348222 0.1056428 0.5370079 +0.4470264 0.1056428 0.5370079 +0.4586928 0.1056428 0.5370079 +0.4698649 0.1056428 0.5370079 +0.4805811 0.1056428 0.5370079 +0.490876 0.1056428 0.5370079 +0.5007803 0.1056428 0.5370079 +0.510322 0.1056428 0.5370079 +0.5195258 0.1056428 0.5370079 +0.5284142 0.1056428 0.5370079 +0.5370079 0.1056428 0.5370079 +0.5453253 0.1056428 0.5370079 +0.5533834 0.1056428 0.5370079 +0.5611974 0.1056428 0.5370079 +0.5687816 0.1056428 0.5370079 +0.092819 0.1201537 0.5370079 +0.1056428 0.1201537 0.5370079 +0.1201537 0.1201537 0.5370079 +0.1409607 0.1201537 0.5370079 +0.1678172 0.1201537 0.5370079 +0.1950164 0.1201537 0.5370079 +0.2210581 0.1201537 0.5370079 +0.245636 0.1201537 0.5370079 +0.2686816 0.1201537 0.5370079 +0.2902431 0.1201537 0.5370079 +0.3104189 0.1201537 0.5370079 +0.3293248 0.1201537 0.5370079 +0.3470774 0.1201537 0.5370079 +0.3637862 0.1201537 0.5370079 +0.3795513 0.1201537 0.5370079 +0.3944623 0.1201537 0.5370079 +0.4085988 0.1201537 0.5370079 +0.4220313 0.1201537 0.5370079 +0.4348222 0.1201537 0.5370079 +0.4470264 0.1201537 0.5370079 +0.4586928 0.1201537 0.5370079 +0.4698649 0.1201537 0.5370079 +0.4805811 0.1201537 0.5370079 +0.490876 0.1201537 0.5370079 +0.5007803 0.1201537 0.5370079 +0.510322 0.1201537 0.5370079 +0.5195258 0.1201537 0.5370079 +0.5284142 0.1201537 0.5370079 +0.5370079 0.1201537 0.5370079 +0.5453253 0.1201537 0.5370079 +0.5533834 0.1201537 0.5370079 +0.5611974 0.1201537 0.5370079 +0.5687816 0.1201537 0.5370079 +0.092819 0.1409607 0.5370079 +0.1056428 0.1409607 0.5370079 +0.1201537 0.1409607 0.5370079 +0.1409607 0.1409607 0.5370079 +0.1678172 0.1409607 0.5370079 +0.1950164 0.1409607 0.5370079 +0.2210581 0.1409607 0.5370079 +0.245636 0.1409607 0.5370079 +0.2686816 0.1409607 0.5370079 +0.2902431 0.1409607 0.5370079 +0.3104189 0.1409607 0.5370079 +0.3293248 0.1409607 0.5370079 +0.3470774 0.1409607 0.5370079 +0.3637862 0.1409607 0.5370079 +0.3795513 0.1409607 0.5370079 +0.3944623 0.1409607 0.5370079 +0.4085988 0.1409607 0.5370079 +0.4220313 0.1409607 0.5370079 +0.4348222 0.1409607 0.5370079 +0.4470264 0.1409607 0.5370079 +0.4586928 0.1409607 0.5370079 +0.4698649 0.1409607 0.5370079 +0.4805811 0.1409607 0.5370079 +0.490876 0.1409607 0.5370079 +0.5007803 0.1409607 0.5370079 +0.510322 0.1409607 0.5370079 +0.5195258 0.1409607 0.5370079 +0.5284142 0.1409607 0.5370079 +0.5370079 0.1409607 0.5370079 +0.5453253 0.1409607 0.5370079 +0.5533834 0.1409607 0.5370079 +0.5611974 0.1409607 0.5370079 +0.5687816 0.1409607 0.5370079 +0.092819 0.1678172 0.5370079 +0.1056428 0.1678172 0.5370079 +0.1201537 0.1678172 0.5370079 +0.1409607 0.1678172 0.5370079 +0.1678172 0.1678172 0.5370079 +0.1950164 0.1678172 0.5370079 +0.2210581 0.1678172 0.5370079 +0.245636 0.1678172 0.5370079 +0.2686816 0.1678172 0.5370079 +0.2902431 0.1678172 0.5370079 +0.3104189 0.1678172 0.5370079 +0.3293248 0.1678172 0.5370079 +0.3470774 0.1678172 0.5370079 +0.3637862 0.1678172 0.5370079 +0.3795513 0.1678172 0.5370079 +0.3944623 0.1678172 0.5370079 +0.4085988 0.1678172 0.5370079 +0.4220313 0.1678172 0.5370079 +0.4348222 0.1678172 0.5370079 +0.4470264 0.1678172 0.5370079 +0.4586928 0.1678172 0.5370079 +0.4698649 0.1678172 0.5370079 +0.4805811 0.1678172 0.5370079 +0.490876 0.1678172 0.5370079 +0.5007803 0.1678172 0.5370079 +0.510322 0.1678172 0.5370079 +0.5195258 0.1678172 0.5370079 +0.5284142 0.1678172 0.5370079 +0.5370079 0.1678172 0.5370079 +0.5453253 0.1678172 0.5370079 +0.5533834 0.1678172 0.5370079 +0.5611974 0.1678172 0.5370079 +0.5687816 0.1678172 0.5370079 +0.092819 0.1950164 0.5370079 +0.1056428 0.1950164 0.5370079 +0.1201537 0.1950164 0.5370079 +0.1409607 0.1950164 0.5370079 +0.1678172 0.1950164 0.5370079 +0.1950164 0.1950164 0.5370079 +0.2210581 0.1950164 0.5370079 +0.245636 0.1950164 0.5370079 +0.2686816 0.1950164 0.5370079 +0.2902431 0.1950164 0.5370079 +0.3104189 0.1950164 0.5370079 +0.3293248 0.1950164 0.5370079 +0.3470774 0.1950164 0.5370079 +0.3637862 0.1950164 0.5370079 +0.3795513 0.1950164 0.5370079 +0.3944623 0.1950164 0.5370079 +0.4085988 0.1950164 0.5370079 +0.4220313 0.1950164 0.5370079 +0.4348222 0.1950164 0.5370079 +0.4470264 0.1950164 0.5370079 +0.4586928 0.1950164 0.5370079 +0.4698649 0.1950164 0.5370079 +0.4805811 0.1950164 0.5370079 +0.490876 0.1950164 0.5370079 +0.5007803 0.1950164 0.5370079 +0.510322 0.1950164 0.5370079 +0.5195258 0.1950164 0.5370079 +0.5284142 0.1950164 0.5370079 +0.5370079 0.1950164 0.5370079 +0.5453253 0.1950164 0.5370079 +0.5533834 0.1950164 0.5370079 +0.5611974 0.1950164 0.5370079 +0.5687816 0.1950164 0.5370079 +0.092819 0.2210581 0.5370079 +0.1056428 0.2210581 0.5370079 +0.1201537 0.2210581 0.5370079 +0.1409607 0.2210581 0.5370079 +0.1678172 0.2210581 0.5370079 +0.1950164 0.2210581 0.5370079 +0.2210581 0.2210581 0.5370079 +0.245636 0.2210581 0.5370079 +0.2686816 0.2210581 0.5370079 +0.2902431 0.2210581 0.5370079 +0.3104189 0.2210581 0.5370079 +0.3293248 0.2210581 0.5370079 +0.3470774 0.2210581 0.5370079 +0.3637862 0.2210581 0.5370079 +0.3795513 0.2210581 0.5370079 +0.3944623 0.2210581 0.5370079 +0.4085988 0.2210581 0.5370079 +0.4220313 0.2210581 0.5370079 +0.4348222 0.2210581 0.5370079 +0.4470264 0.2210581 0.5370079 +0.4586928 0.2210581 0.5370079 +0.4698649 0.2210581 0.5370079 +0.4805811 0.2210581 0.5370079 +0.490876 0.2210581 0.5370079 +0.5007803 0.2210581 0.5370079 +0.510322 0.2210581 0.5370079 +0.5195258 0.2210581 0.5370079 +0.5284142 0.2210581 0.5370079 +0.5370079 0.2210581 0.5370079 +0.5453253 0.2210581 0.5370079 +0.5533834 0.2210581 0.5370079 +0.5611974 0.2210581 0.5370079 +0.5687816 0.2210581 0.5370079 +0.092819 0.245636 0.5370079 +0.1056428 0.245636 0.5370079 +0.1201537 0.245636 0.5370079 +0.1409607 0.245636 0.5370079 +0.1678172 0.245636 0.5370079 +0.1950164 0.245636 0.5370079 +0.2210581 0.245636 0.5370079 +0.245636 0.245636 0.5370079 +0.2686816 0.245636 0.5370079 +0.2902431 0.245636 0.5370079 +0.3104189 0.245636 0.5370079 +0.3293248 0.245636 0.5370079 +0.3470774 0.245636 0.5370079 +0.3637862 0.245636 0.5370079 +0.3795513 0.245636 0.5370079 +0.3944623 0.245636 0.5370079 +0.4085988 0.245636 0.5370079 +0.4220313 0.245636 0.5370079 +0.4348222 0.245636 0.5370079 +0.4470264 0.245636 0.5370079 +0.4586928 0.245636 0.5370079 +0.4698649 0.245636 0.5370079 +0.4805811 0.245636 0.5370079 +0.490876 0.245636 0.5370079 +0.5007803 0.245636 0.5370079 +0.510322 0.245636 0.5370079 +0.5195258 0.245636 0.5370079 +0.5284142 0.245636 0.5370079 +0.5370079 0.245636 0.5370079 +0.5453253 0.245636 0.5370079 +0.5533834 0.245636 0.5370079 +0.5611974 0.245636 0.5370079 +0.5687816 0.245636 0.5370079 +0.092819 0.2686816 0.5370079 +0.1056428 0.2686816 0.5370079 +0.1201537 0.2686816 0.5370079 +0.1409607 0.2686816 0.5370079 +0.1678172 0.2686816 0.5370079 +0.1950164 0.2686816 0.5370079 +0.2210581 0.2686816 0.5370079 +0.245636 0.2686816 0.5370079 +0.2686816 0.2686816 0.5370079 +0.2902431 0.2686816 0.5370079 +0.3104189 0.2686816 0.5370079 +0.3293248 0.2686816 0.5370079 +0.3470774 0.2686816 0.5370079 +0.3637862 0.2686816 0.5370079 +0.3795513 0.2686816 0.5370079 +0.3944623 0.2686816 0.5370079 +0.4085988 0.2686816 0.5370079 +0.4220313 0.2686816 0.5370079 +0.4348222 0.2686816 0.5370079 +0.4470264 0.2686816 0.5370079 +0.4586928 0.2686816 0.5370079 +0.4698649 0.2686816 0.5370079 +0.4805811 0.2686816 0.5370079 +0.490876 0.2686816 0.5370079 +0.5007803 0.2686816 0.5370079 +0.510322 0.2686816 0.5370079 +0.5195258 0.2686816 0.5370079 +0.5284142 0.2686816 0.5370079 +0.5370079 0.2686816 0.5370079 +0.5453253 0.2686816 0.5370079 +0.5533834 0.2686816 0.5370079 +0.5611974 0.2686816 0.5370079 +0.5687816 0.2686816 0.5370079 +0.092819 0.2902431 0.5370079 +0.1056428 0.2902431 0.5370079 +0.1201537 0.2902431 0.5370079 +0.1409607 0.2902431 0.5370079 +0.1678172 0.2902431 0.5370079 +0.1950164 0.2902431 0.5370079 +0.2210581 0.2902431 0.5370079 +0.245636 0.2902431 0.5370079 +0.2686816 0.2902431 0.5370079 +0.2902431 0.2902431 0.5370079 +0.3104189 0.2902431 0.5370079 +0.3293248 0.2902431 0.5370079 +0.3470774 0.2902431 0.5370079 +0.3637862 0.2902431 0.5370079 +0.3795513 0.2902431 0.5370079 +0.3944623 0.2902431 0.5370079 +0.4085988 0.2902431 0.5370079 +0.4220313 0.2902431 0.5370079 +0.4348222 0.2902431 0.5370079 +0.4470264 0.2902431 0.5370079 +0.4586928 0.2902431 0.5370079 +0.4698649 0.2902431 0.5370079 +0.4805811 0.2902431 0.5370079 +0.490876 0.2902431 0.5370079 +0.5007803 0.2902431 0.5370079 +0.510322 0.2902431 0.5370079 +0.5195258 0.2902431 0.5370079 +0.5284142 0.2902431 0.5370079 +0.5370079 0.2902431 0.5370079 +0.5453253 0.2902431 0.5370079 +0.5533834 0.2902431 0.5370079 +0.5611974 0.2902431 0.5370079 +0.5687816 0.2902431 0.5370079 +0.092819 0.3104189 0.5370079 +0.1056428 0.3104189 0.5370079 +0.1201537 0.3104189 0.5370079 +0.1409607 0.3104189 0.5370079 +0.1678172 0.3104189 0.5370079 +0.1950164 0.3104189 0.5370079 +0.2210581 0.3104189 0.5370079 +0.245636 0.3104189 0.5370079 +0.2686816 0.3104189 0.5370079 +0.2902431 0.3104189 0.5370079 +0.3104189 0.3104189 0.5370079 +0.3293248 0.3104189 0.5370079 +0.3470774 0.3104189 0.5370079 +0.3637862 0.3104189 0.5370079 +0.3795513 0.3104189 0.5370079 +0.3944623 0.3104189 0.5370079 +0.4085988 0.3104189 0.5370079 +0.4220313 0.3104189 0.5370079 +0.4348222 0.3104189 0.5370079 +0.4470264 0.3104189 0.5370079 +0.4586928 0.3104189 0.5370079 +0.4698649 0.3104189 0.5370079 +0.4805811 0.3104189 0.5370079 +0.490876 0.3104189 0.5370079 +0.5007803 0.3104189 0.5370079 +0.510322 0.3104189 0.5370079 +0.5195258 0.3104189 0.5370079 +0.5284142 0.3104189 0.5370079 +0.5370079 0.3104189 0.5370079 +0.5453253 0.3104189 0.5370079 +0.5533834 0.3104189 0.5370079 +0.5611974 0.3104189 0.5370079 +0.5687816 0.3104189 0.5370079 +0.092819 0.3293248 0.5370079 +0.1056428 0.3293248 0.5370079 +0.1201537 0.3293248 0.5370079 +0.1409607 0.3293248 0.5370079 +0.1678172 0.3293248 0.5370079 +0.1950164 0.3293248 0.5370079 +0.2210581 0.3293248 0.5370079 +0.245636 0.3293248 0.5370079 +0.2686816 0.3293248 0.5370079 +0.2902431 0.3293248 0.5370079 +0.3104189 0.3293248 0.5370079 +0.3293248 0.3293248 0.5370079 +0.3470774 0.3293248 0.5370079 +0.3637862 0.3293248 0.5370079 +0.3795513 0.3293248 0.5370079 +0.3944623 0.3293248 0.5370079 +0.4085988 0.3293248 0.5370079 +0.4220313 0.3293248 0.5370079 +0.4348222 0.3293248 0.5370079 +0.4470264 0.3293248 0.5370079 +0.4586928 0.3293248 0.5370079 +0.4698649 0.3293248 0.5370079 +0.4805811 0.3293248 0.5370079 +0.490876 0.3293248 0.5370079 +0.5007803 0.3293248 0.5370079 +0.510322 0.3293248 0.5370079 +0.5195258 0.3293248 0.5370079 +0.5284142 0.3293248 0.5370079 +0.5370079 0.3293248 0.5370079 +0.5453253 0.3293248 0.5370079 +0.5533834 0.3293248 0.5370079 +0.5611974 0.3293248 0.5370079 +0.5687816 0.3293248 0.5370079 +0.092819 0.3470774 0.5370079 +0.1056428 0.3470774 0.5370079 +0.1201537 0.3470774 0.5370079 +0.1409607 0.3470774 0.5370079 +0.1678172 0.3470774 0.5370079 +0.1950164 0.3470774 0.5370079 +0.2210581 0.3470774 0.5370079 +0.245636 0.3470774 0.5370079 +0.2686816 0.3470774 0.5370079 +0.2902431 0.3470774 0.5370079 +0.3104189 0.3470774 0.5370079 +0.3293248 0.3470774 0.5370079 +0.3470774 0.3470774 0.5370079 +0.3637862 0.3470774 0.5370079 +0.3795513 0.3470774 0.5370079 +0.3944623 0.3470774 0.5370079 +0.4085988 0.3470774 0.5370079 +0.4220313 0.3470774 0.5370079 +0.4348222 0.3470774 0.5370079 +0.4470264 0.3470774 0.5370079 +0.4586928 0.3470774 0.5370079 +0.4698649 0.3470774 0.5370079 +0.4805811 0.3470774 0.5370079 +0.490876 0.3470774 0.5370079 +0.5007803 0.3470774 0.5370079 +0.510322 0.3470774 0.5370079 +0.5195258 0.3470774 0.5370079 +0.5284142 0.3470774 0.5370079 +0.5370079 0.3470774 0.5370079 +0.5453253 0.3470774 0.5370079 +0.5533834 0.3470774 0.5370079 +0.5611974 0.3470774 0.5370079 +0.5687816 0.3470774 0.5370079 +0.092819 0.3637862 0.5370079 +0.1056428 0.3637862 0.5370079 +0.1201537 0.3637862 0.5370079 +0.1409607 0.3637862 0.5370079 +0.1678172 0.3637862 0.5370079 +0.1950164 0.3637862 0.5370079 +0.2210581 0.3637862 0.5370079 +0.245636 0.3637862 0.5370079 +0.2686816 0.3637862 0.5370079 +0.2902431 0.3637862 0.5370079 +0.3104189 0.3637862 0.5370079 +0.3293248 0.3637862 0.5370079 +0.3470774 0.3637862 0.5370079 +0.3637862 0.3637862 0.5370079 +0.3795513 0.3637862 0.5370079 +0.3944623 0.3637862 0.5370079 +0.4085988 0.3637862 0.5370079 +0.4220313 0.3637862 0.5370079 +0.4348222 0.3637862 0.5370079 +0.4470264 0.3637862 0.5370079 +0.4586928 0.3637862 0.5370079 +0.4698649 0.3637862 0.5370079 +0.4805811 0.3637862 0.5370079 +0.490876 0.3637862 0.5370079 +0.5007803 0.3637862 0.5370079 +0.510322 0.3637862 0.5370079 +0.5195258 0.3637862 0.5370079 +0.5284142 0.3637862 0.5370079 +0.5370079 0.3637862 0.5370079 +0.5453253 0.3637862 0.5370079 +0.5533834 0.3637862 0.5370079 +0.5611974 0.3637862 0.5370079 +0.5687816 0.3637862 0.5370079 +0.092819 0.3795513 0.5370079 +0.1056428 0.3795513 0.5370079 +0.1201537 0.3795513 0.5370079 +0.1409607 0.3795513 0.5370079 +0.1678172 0.3795513 0.5370079 +0.1950164 0.3795513 0.5370079 +0.2210581 0.3795513 0.5370079 +0.245636 0.3795513 0.5370079 +0.2686816 0.3795513 0.5370079 +0.2902431 0.3795513 0.5370079 +0.3104189 0.3795513 0.5370079 +0.3293248 0.3795513 0.5370079 +0.3470774 0.3795513 0.5370079 +0.3637862 0.3795513 0.5370079 +0.3795513 0.3795513 0.5370079 +0.3944623 0.3795513 0.5370079 +0.4085988 0.3795513 0.5370079 +0.4220313 0.3795513 0.5370079 +0.4348222 0.3795513 0.5370079 +0.4470264 0.3795513 0.5370079 +0.4586928 0.3795513 0.5370079 +0.4698649 0.3795513 0.5370079 +0.4805811 0.3795513 0.5370079 +0.490876 0.3795513 0.5370079 +0.5007803 0.3795513 0.5370079 +0.510322 0.3795513 0.5370079 +0.5195258 0.3795513 0.5370079 +0.5284142 0.3795513 0.5370079 +0.5370079 0.3795513 0.5370079 +0.5453253 0.3795513 0.5370079 +0.5533834 0.3795513 0.5370079 +0.5611974 0.3795513 0.5370079 +0.5687816 0.3795513 0.5370079 +0.092819 0.3944623 0.5370079 +0.1056428 0.3944623 0.5370079 +0.1201537 0.3944623 0.5370079 +0.1409607 0.3944623 0.5370079 +0.1678172 0.3944623 0.5370079 +0.1950164 0.3944623 0.5370079 +0.2210581 0.3944623 0.5370079 +0.245636 0.3944623 0.5370079 +0.2686816 0.3944623 0.5370079 +0.2902431 0.3944623 0.5370079 +0.3104189 0.3944623 0.5370079 +0.3293248 0.3944623 0.5370079 +0.3470774 0.3944623 0.5370079 +0.3637862 0.3944623 0.5370079 +0.3795513 0.3944623 0.5370079 +0.3944623 0.3944623 0.5370079 +0.4085988 0.3944623 0.5370079 +0.4220313 0.3944623 0.5370079 +0.4348222 0.3944623 0.5370079 +0.4470264 0.3944623 0.5370079 +0.4586928 0.3944623 0.5370079 +0.4698649 0.3944623 0.5370079 +0.4805811 0.3944623 0.5370079 +0.490876 0.3944623 0.5370079 +0.5007803 0.3944623 0.5370079 +0.510322 0.3944623 0.5370079 +0.5195258 0.3944623 0.5370079 +0.5284142 0.3944623 0.5370079 +0.5370079 0.3944623 0.5370079 +0.5453253 0.3944623 0.5370079 +0.5533834 0.3944623 0.5370079 +0.5611974 0.3944623 0.5370079 +0.5687816 0.3944623 0.5370079 +0.092819 0.4085988 0.5370079 +0.1056428 0.4085988 0.5370079 +0.1201537 0.4085988 0.5370079 +0.1409607 0.4085988 0.5370079 +0.1678172 0.4085988 0.5370079 +0.1950164 0.4085988 0.5370079 +0.2210581 0.4085988 0.5370079 +0.245636 0.4085988 0.5370079 +0.2686816 0.4085988 0.5370079 +0.2902431 0.4085988 0.5370079 +0.3104189 0.4085988 0.5370079 +0.3293248 0.4085988 0.5370079 +0.3470774 0.4085988 0.5370079 +0.3637862 0.4085988 0.5370079 +0.3795513 0.4085988 0.5370079 +0.3944623 0.4085988 0.5370079 +0.4085988 0.4085988 0.5370079 +0.4220313 0.4085988 0.5370079 +0.4348222 0.4085988 0.5370079 +0.4470264 0.4085988 0.5370079 +0.4586928 0.4085988 0.5370079 +0.4698649 0.4085988 0.5370079 +0.4805811 0.4085988 0.5370079 +0.490876 0.4085988 0.5370079 +0.5007803 0.4085988 0.5370079 +0.510322 0.4085988 0.5370079 +0.5195258 0.4085988 0.5370079 +0.5284142 0.4085988 0.5370079 +0.5370079 0.4085988 0.5370079 +0.5453253 0.4085988 0.5370079 +0.5533834 0.4085988 0.5370079 +0.5611974 0.4085988 0.5370079 +0.5687816 0.4085988 0.5370079 +0.092819 0.4220313 0.5370079 +0.1056428 0.4220313 0.5370079 +0.1201537 0.4220313 0.5370079 +0.1409607 0.4220313 0.5370079 +0.1678172 0.4220313 0.5370079 +0.1950164 0.4220313 0.5370079 +0.2210581 0.4220313 0.5370079 +0.245636 0.4220313 0.5370079 +0.2686816 0.4220313 0.5370079 +0.2902431 0.4220313 0.5370079 +0.3104189 0.4220313 0.5370079 +0.3293248 0.4220313 0.5370079 +0.3470774 0.4220313 0.5370079 +0.3637862 0.4220313 0.5370079 +0.3795513 0.4220313 0.5370079 +0.3944623 0.4220313 0.5370079 +0.4085988 0.4220313 0.5370079 +0.4220313 0.4220313 0.5370079 +0.4348222 0.4220313 0.5370079 +0.4470264 0.4220313 0.5370079 +0.4586928 0.4220313 0.5370079 +0.4698649 0.4220313 0.5370079 +0.4805811 0.4220313 0.5370079 +0.490876 0.4220313 0.5370079 +0.5007803 0.4220313 0.5370079 +0.510322 0.4220313 0.5370079 +0.5195258 0.4220313 0.5370079 +0.5284142 0.4220313 0.5370079 +0.5370079 0.4220313 0.5370079 +0.5453253 0.4220313 0.5370079 +0.5533834 0.4220313 0.5370079 +0.5611974 0.4220313 0.5370079 +0.5687816 0.4220313 0.5370079 +0.092819 0.4348222 0.5370079 +0.1056428 0.4348222 0.5370079 +0.1201537 0.4348222 0.5370079 +0.1409607 0.4348222 0.5370079 +0.1678172 0.4348222 0.5370079 +0.1950164 0.4348222 0.5370079 +0.2210581 0.4348222 0.5370079 +0.245636 0.4348222 0.5370079 +0.2686816 0.4348222 0.5370079 +0.2902431 0.4348222 0.5370079 +0.3104189 0.4348222 0.5370079 +0.3293248 0.4348222 0.5370079 +0.3470774 0.4348222 0.5370079 +0.3637862 0.4348222 0.5370079 +0.3795513 0.4348222 0.5370079 +0.3944623 0.4348222 0.5370079 +0.4085988 0.4348222 0.5370079 +0.4220313 0.4348222 0.5370079 +0.4348222 0.4348222 0.5370079 +0.4470264 0.4348222 0.5370079 +0.4586928 0.4348222 0.5370079 +0.4698649 0.4348222 0.5370079 +0.4805811 0.4348222 0.5370079 +0.490876 0.4348222 0.5370079 +0.5007803 0.4348222 0.5370079 +0.510322 0.4348222 0.5370079 +0.5195258 0.4348222 0.5370079 +0.5284142 0.4348222 0.5370079 +0.5370079 0.4348222 0.5370079 +0.5453253 0.4348222 0.5370079 +0.5533834 0.4348222 0.5370079 +0.5611974 0.4348222 0.5370079 +0.5687816 0.4348222 0.5370079 +0.092819 0.4470264 0.5370079 +0.1056428 0.4470264 0.5370079 +0.1201537 0.4470264 0.5370079 +0.1409607 0.4470264 0.5370079 +0.1678172 0.4470264 0.5370079 +0.1950164 0.4470264 0.5370079 +0.2210581 0.4470264 0.5370079 +0.245636 0.4470264 0.5370079 +0.2686816 0.4470264 0.5370079 +0.2902431 0.4470264 0.5370079 +0.3104189 0.4470264 0.5370079 +0.3293248 0.4470264 0.5370079 +0.3470774 0.4470264 0.5370079 +0.3637862 0.4470264 0.5370079 +0.3795513 0.4470264 0.5370079 +0.3944623 0.4470264 0.5370079 +0.4085988 0.4470264 0.5370079 +0.4220313 0.4470264 0.5370079 +0.4348222 0.4470264 0.5370079 +0.4470264 0.4470264 0.5370079 +0.4586928 0.4470264 0.5370079 +0.4698649 0.4470264 0.5370079 +0.4805811 0.4470264 0.5370079 +0.490876 0.4470264 0.5370079 +0.5007803 0.4470264 0.5370079 +0.510322 0.4470264 0.5370079 +0.5195258 0.4470264 0.5370079 +0.5284142 0.4470264 0.5370079 +0.5370079 0.4470264 0.5370079 +0.5453253 0.4470264 0.5370079 +0.5533834 0.4470264 0.5370079 +0.5611974 0.4470264 0.5370079 +0.5687816 0.4470264 0.5370079 +0.092819 0.4586928 0.5370079 +0.1056428 0.4586928 0.5370079 +0.1201537 0.4586928 0.5370079 +0.1409607 0.4586928 0.5370079 +0.1678172 0.4586928 0.5370079 +0.1950164 0.4586928 0.5370079 +0.2210581 0.4586928 0.5370079 +0.245636 0.4586928 0.5370079 +0.2686816 0.4586928 0.5370079 +0.2902431 0.4586928 0.5370079 +0.3104189 0.4586928 0.5370079 +0.3293248 0.4586928 0.5370079 +0.3470774 0.4586928 0.5370079 +0.3637862 0.4586928 0.5370079 +0.3795513 0.4586928 0.5370079 +0.3944623 0.4586928 0.5370079 +0.4085988 0.4586928 0.5370079 +0.4220313 0.4586928 0.5370079 +0.4348222 0.4586928 0.5370079 +0.4470264 0.4586928 0.5370079 +0.4586928 0.4586928 0.5370079 +0.4698649 0.4586928 0.5370079 +0.4805811 0.4586928 0.5370079 +0.490876 0.4586928 0.5370079 +0.5007803 0.4586928 0.5370079 +0.510322 0.4586928 0.5370079 +0.5195258 0.4586928 0.5370079 +0.5284142 0.4586928 0.5370079 +0.5370079 0.4586928 0.5370079 +0.5453253 0.4586928 0.5370079 +0.5533834 0.4586928 0.5370079 +0.5611974 0.4586928 0.5370079 +0.5687816 0.4586928 0.5370079 +0.092819 0.4698649 0.5370079 +0.1056428 0.4698649 0.5370079 +0.1201537 0.4698649 0.5370079 +0.1409607 0.4698649 0.5370079 +0.1678172 0.4698649 0.5370079 +0.1950164 0.4698649 0.5370079 +0.2210581 0.4698649 0.5370079 +0.245636 0.4698649 0.5370079 +0.2686816 0.4698649 0.5370079 +0.2902431 0.4698649 0.5370079 +0.3104189 0.4698649 0.5370079 +0.3293248 0.4698649 0.5370079 +0.3470774 0.4698649 0.5370079 +0.3637862 0.4698649 0.5370079 +0.3795513 0.4698649 0.5370079 +0.3944623 0.4698649 0.5370079 +0.4085988 0.4698649 0.5370079 +0.4220313 0.4698649 0.5370079 +0.4348222 0.4698649 0.5370079 +0.4470264 0.4698649 0.5370079 +0.4586928 0.4698649 0.5370079 +0.4698649 0.4698649 0.5370079 +0.4805811 0.4698649 0.5370079 +0.490876 0.4698649 0.5370079 +0.5007803 0.4698649 0.5370079 +0.510322 0.4698649 0.5370079 +0.5195258 0.4698649 0.5370079 +0.5284142 0.4698649 0.5370079 +0.5370079 0.4698649 0.5370079 +0.5453253 0.4698649 0.5370079 +0.5533834 0.4698649 0.5370079 +0.5611974 0.4698649 0.5370079 +0.5687816 0.4698649 0.5370079 +0.092819 0.4805811 0.5370079 +0.1056428 0.4805811 0.5370079 +0.1201537 0.4805811 0.5370079 +0.1409607 0.4805811 0.5370079 +0.1678172 0.4805811 0.5370079 +0.1950164 0.4805811 0.5370079 +0.2210581 0.4805811 0.5370079 +0.245636 0.4805811 0.5370079 +0.2686816 0.4805811 0.5370079 +0.2902431 0.4805811 0.5370079 +0.3104189 0.4805811 0.5370079 +0.3293248 0.4805811 0.5370079 +0.3470774 0.4805811 0.5370079 +0.3637862 0.4805811 0.5370079 +0.3795513 0.4805811 0.5370079 +0.3944623 0.4805811 0.5370079 +0.4085988 0.4805811 0.5370079 +0.4220313 0.4805811 0.5370079 +0.4348222 0.4805811 0.5370079 +0.4470264 0.4805811 0.5370079 +0.4586928 0.4805811 0.5370079 +0.4698649 0.4805811 0.5370079 +0.4805811 0.4805811 0.5370079 +0.490876 0.4805811 0.5370079 +0.5007803 0.4805811 0.5370079 +0.510322 0.4805811 0.5370079 +0.5195258 0.4805811 0.5370079 +0.5284142 0.4805811 0.5370079 +0.5370079 0.4805811 0.5370079 +0.5453253 0.4805811 0.5370079 +0.5533834 0.4805811 0.5370079 +0.5611974 0.4805811 0.5370079 +0.5687816 0.4805811 0.5370079 +0.092819 0.490876 0.5370079 +0.1056428 0.490876 0.5370079 +0.1201537 0.490876 0.5370079 +0.1409607 0.490876 0.5370079 +0.1678172 0.490876 0.5370079 +0.1950164 0.490876 0.5370079 +0.2210581 0.490876 0.5370079 +0.245636 0.490876 0.5370079 +0.2686816 0.490876 0.5370079 +0.2902431 0.490876 0.5370079 +0.3104189 0.490876 0.5370079 +0.3293248 0.490876 0.5370079 +0.3470774 0.490876 0.5370079 +0.3637862 0.490876 0.5370079 +0.3795513 0.490876 0.5370079 +0.3944623 0.490876 0.5370079 +0.4085988 0.490876 0.5370079 +0.4220313 0.490876 0.5370079 +0.4348222 0.490876 0.5370079 +0.4470264 0.490876 0.5370079 +0.4586928 0.490876 0.5370079 +0.4698649 0.490876 0.5370079 +0.4805811 0.490876 0.5370079 +0.490876 0.490876 0.5370079 +0.5007803 0.490876 0.5370079 +0.510322 0.490876 0.5370079 +0.5195258 0.490876 0.5370079 +0.5284142 0.490876 0.5370079 +0.5370079 0.490876 0.5370079 +0.5453253 0.490876 0.5370079 +0.5533834 0.490876 0.5370079 +0.5611974 0.490876 0.5370079 +0.5687816 0.490876 0.5370079 +0.092819 0.5007803 0.5370079 +0.1056428 0.5007803 0.5370079 +0.1201537 0.5007803 0.5370079 +0.1409607 0.5007803 0.5370079 +0.1678172 0.5007803 0.5370079 +0.1950164 0.5007803 0.5370079 +0.2210581 0.5007803 0.5370079 +0.245636 0.5007803 0.5370079 +0.2686816 0.5007803 0.5370079 +0.2902431 0.5007803 0.5370079 +0.3104189 0.5007803 0.5370079 +0.3293248 0.5007803 0.5370079 +0.3470774 0.5007803 0.5370079 +0.3637862 0.5007803 0.5370079 +0.3795513 0.5007803 0.5370079 +0.3944623 0.5007803 0.5370079 +0.4085988 0.5007803 0.5370079 +0.4220313 0.5007803 0.5370079 +0.4348222 0.5007803 0.5370079 +0.4470264 0.5007803 0.5370079 +0.4586928 0.5007803 0.5370079 +0.4698649 0.5007803 0.5370079 +0.4805811 0.5007803 0.5370079 +0.490876 0.5007803 0.5370079 +0.5007803 0.5007803 0.5370079 +0.510322 0.5007803 0.5370079 +0.5195258 0.5007803 0.5370079 +0.5284142 0.5007803 0.5370079 +0.5370079 0.5007803 0.5370079 +0.5453253 0.5007803 0.5370079 +0.5533834 0.5007803 0.5370079 +0.5611974 0.5007803 0.5370079 +0.5687816 0.5007803 0.5370079 +0.092819 0.510322 0.5370079 +0.1056428 0.510322 0.5370079 +0.1201537 0.510322 0.5370079 +0.1409607 0.510322 0.5370079 +0.1678172 0.510322 0.5370079 +0.1950164 0.510322 0.5370079 +0.2210581 0.510322 0.5370079 +0.245636 0.510322 0.5370079 +0.2686816 0.510322 0.5370079 +0.2902431 0.510322 0.5370079 +0.3104189 0.510322 0.5370079 +0.3293248 0.510322 0.5370079 +0.3470774 0.510322 0.5370079 +0.3637862 0.510322 0.5370079 +0.3795513 0.510322 0.5370079 +0.3944623 0.510322 0.5370079 +0.4085988 0.510322 0.5370079 +0.4220313 0.510322 0.5370079 +0.4348222 0.510322 0.5370079 +0.4470264 0.510322 0.5370079 +0.4586928 0.510322 0.5370079 +0.4698649 0.510322 0.5370079 +0.4805811 0.510322 0.5370079 +0.490876 0.510322 0.5370079 +0.5007803 0.510322 0.5370079 +0.510322 0.510322 0.5370079 +0.5195258 0.510322 0.5370079 +0.5284142 0.510322 0.5370079 +0.5370079 0.510322 0.5370079 +0.5453253 0.510322 0.5370079 +0.5533834 0.510322 0.5370079 +0.5611974 0.510322 0.5370079 +0.5687816 0.510322 0.5370079 +0.092819 0.5195258 0.5370079 +0.1056428 0.5195258 0.5370079 +0.1201537 0.5195258 0.5370079 +0.1409607 0.5195258 0.5370079 +0.1678172 0.5195258 0.5370079 +0.1950164 0.5195258 0.5370079 +0.2210581 0.5195258 0.5370079 +0.245636 0.5195258 0.5370079 +0.2686816 0.5195258 0.5370079 +0.2902431 0.5195258 0.5370079 +0.3104189 0.5195258 0.5370079 +0.3293248 0.5195258 0.5370079 +0.3470774 0.5195258 0.5370079 +0.3637862 0.5195258 0.5370079 +0.3795513 0.5195258 0.5370079 +0.3944623 0.5195258 0.5370079 +0.4085988 0.5195258 0.5370079 +0.4220313 0.5195258 0.5370079 +0.4348222 0.5195258 0.5370079 +0.4470264 0.5195258 0.5370079 +0.4586928 0.5195258 0.5370079 +0.4698649 0.5195258 0.5370079 +0.4805811 0.5195258 0.5370079 +0.490876 0.5195258 0.5370079 +0.5007803 0.5195258 0.5370079 +0.510322 0.5195258 0.5370079 +0.5195258 0.5195258 0.5370079 +0.5284142 0.5195258 0.5370079 +0.5370079 0.5195258 0.5370079 +0.5453253 0.5195258 0.5370079 +0.5533834 0.5195258 0.5370079 +0.5611974 0.5195258 0.5370079 +0.5687816 0.5195258 0.5370079 +0.092819 0.5284142 0.5370079 +0.1056428 0.5284142 0.5370079 +0.1201537 0.5284142 0.5370079 +0.1409607 0.5284142 0.5370079 +0.1678172 0.5284142 0.5370079 +0.1950164 0.5284142 0.5370079 +0.2210581 0.5284142 0.5370079 +0.245636 0.5284142 0.5370079 +0.2686816 0.5284142 0.5370079 +0.2902431 0.5284142 0.5370079 +0.3104189 0.5284142 0.5370079 +0.3293248 0.5284142 0.5370079 +0.3470774 0.5284142 0.5370079 +0.3637862 0.5284142 0.5370079 +0.3795513 0.5284142 0.5370079 +0.3944623 0.5284142 0.5370079 +0.4085988 0.5284142 0.5370079 +0.4220313 0.5284142 0.5370079 +0.4348222 0.5284142 0.5370079 +0.4470264 0.5284142 0.5370079 +0.4586928 0.5284142 0.5370079 +0.4698649 0.5284142 0.5370079 +0.4805811 0.5284142 0.5370079 +0.490876 0.5284142 0.5370079 +0.5007803 0.5284142 0.5370079 +0.510322 0.5284142 0.5370079 +0.5195258 0.5284142 0.5370079 +0.5284142 0.5284142 0.5370079 +0.5370079 0.5284142 0.5370079 +0.5453253 0.5284142 0.5370079 +0.5533834 0.5284142 0.5370079 +0.5611974 0.5284142 0.5370079 +0.5687816 0.5284142 0.5370079 +0.092819 0.5370079 0.5370079 +0.1056428 0.5370079 0.5370079 +0.1201537 0.5370079 0.5370079 +0.1409607 0.5370079 0.5370079 +0.1678172 0.5370079 0.5370079 +0.1950164 0.5370079 0.5370079 +0.2210581 0.5370079 0.5370079 +0.245636 0.5370079 0.5370079 +0.2686816 0.5370079 0.5370079 +0.2902431 0.5370079 0.5370079 +0.3104189 0.5370079 0.5370079 +0.3293248 0.5370079 0.5370079 +0.3470774 0.5370079 0.5370079 +0.3637862 0.5370079 0.5370079 +0.3795513 0.5370079 0.5370079 +0.3944623 0.5370079 0.5370079 +0.4085988 0.5370079 0.5370079 +0.4220313 0.5370079 0.5370079 +0.4348222 0.5370079 0.5370079 +0.4470264 0.5370079 0.5370079 +0.4586928 0.5370079 0.5370079 +0.4698649 0.5370079 0.5370079 +0.4805811 0.5370079 0.5370079 +0.490876 0.5370079 0.5370079 +0.5007803 0.5370079 0.5370079 +0.510322 0.5370079 0.5370079 +0.5195258 0.5370079 0.5370079 +0.5284142 0.5370079 0.5370079 +0.5370079 0.5370079 0.5370079 +0.5453253 0.5370079 0.5370079 +0.5533834 0.5370079 0.5370079 +0.5611974 0.5370079 0.5370079 +0.5687816 0.5370079 0.5370079 +0.092819 0.5453253 0.5370079 +0.1056428 0.5453253 0.5370079 +0.1201537 0.5453253 0.5370079 +0.1409607 0.5453253 0.5370079 +0.1678172 0.5453253 0.5370079 +0.1950164 0.5453253 0.5370079 +0.2210581 0.5453253 0.5370079 +0.245636 0.5453253 0.5370079 +0.2686816 0.5453253 0.5370079 +0.2902431 0.5453253 0.5370079 +0.3104189 0.5453253 0.5370079 +0.3293248 0.5453253 0.5370079 +0.3470774 0.5453253 0.5370079 +0.3637862 0.5453253 0.5370079 +0.3795513 0.5453253 0.5370079 +0.3944623 0.5453253 0.5370079 +0.4085988 0.5453253 0.5370079 +0.4220313 0.5453253 0.5370079 +0.4348222 0.5453253 0.5370079 +0.4470264 0.5453253 0.5370079 +0.4586928 0.5453253 0.5370079 +0.4698649 0.5453253 0.5370079 +0.4805811 0.5453253 0.5370079 +0.490876 0.5453253 0.5370079 +0.5007803 0.5453253 0.5370079 +0.510322 0.5453253 0.5370079 +0.5195258 0.5453253 0.5370079 +0.5284142 0.5453253 0.5370079 +0.5370079 0.5453253 0.5370079 +0.5453253 0.5453253 0.5370079 +0.5533834 0.5453253 0.5370079 +0.5611974 0.5453253 0.5370079 +0.5687816 0.5453253 0.5370079 +0.092819 0.5533834 0.5370079 +0.1056428 0.5533834 0.5370079 +0.1201537 0.5533834 0.5370079 +0.1409607 0.5533834 0.5370079 +0.1678172 0.5533834 0.5370079 +0.1950164 0.5533834 0.5370079 +0.2210581 0.5533834 0.5370079 +0.245636 0.5533834 0.5370079 +0.2686816 0.5533834 0.5370079 +0.2902431 0.5533834 0.5370079 +0.3104189 0.5533834 0.5370079 +0.3293248 0.5533834 0.5370079 +0.3470774 0.5533834 0.5370079 +0.3637862 0.5533834 0.5370079 +0.3795513 0.5533834 0.5370079 +0.3944623 0.5533834 0.5370079 +0.4085988 0.5533834 0.5370079 +0.4220313 0.5533834 0.5370079 +0.4348222 0.5533834 0.5370079 +0.4470264 0.5533834 0.5370079 +0.4586928 0.5533834 0.5370079 +0.4698649 0.5533834 0.5370079 +0.4805811 0.5533834 0.5370079 +0.490876 0.5533834 0.5370079 +0.5007803 0.5533834 0.5370079 +0.510322 0.5533834 0.5370079 +0.5195258 0.5533834 0.5370079 +0.5284142 0.5533834 0.5370079 +0.5370079 0.5533834 0.5370079 +0.5453253 0.5533834 0.5370079 +0.5533834 0.5533834 0.5370079 +0.5611974 0.5533834 0.5370079 +0.5687816 0.5533834 0.5370079 +0.092819 0.5611974 0.5370079 +0.1056428 0.5611974 0.5370079 +0.1201537 0.5611974 0.5370079 +0.1409607 0.5611974 0.5370079 +0.1678172 0.5611974 0.5370079 +0.1950164 0.5611974 0.5370079 +0.2210581 0.5611974 0.5370079 +0.245636 0.5611974 0.5370079 +0.2686816 0.5611974 0.5370079 +0.2902431 0.5611974 0.5370079 +0.3104189 0.5611974 0.5370079 +0.3293248 0.5611974 0.5370079 +0.3470774 0.5611974 0.5370079 +0.3637862 0.5611974 0.5370079 +0.3795513 0.5611974 0.5370079 +0.3944623 0.5611974 0.5370079 +0.4085988 0.5611974 0.5370079 +0.4220313 0.5611974 0.5370079 +0.4348222 0.5611974 0.5370079 +0.4470264 0.5611974 0.5370079 +0.4586928 0.5611974 0.5370079 +0.4698649 0.5611974 0.5370079 +0.4805811 0.5611974 0.5370079 +0.490876 0.5611974 0.5370079 +0.5007803 0.5611974 0.5370079 +0.510322 0.5611974 0.5370079 +0.5195258 0.5611974 0.5370079 +0.5284142 0.5611974 0.5370079 +0.5370079 0.5611974 0.5370079 +0.5453253 0.5611974 0.5370079 +0.5533834 0.5611974 0.5370079 +0.5611974 0.5611974 0.5370079 +0.5687816 0.5611974 0.5370079 +0.092819 0.5687816 0.5370079 +0.1056428 0.5687816 0.5370079 +0.1201537 0.5687816 0.5370079 +0.1409607 0.5687816 0.5370079 +0.1678172 0.5687816 0.5370079 +0.1950164 0.5687816 0.5370079 +0.2210581 0.5687816 0.5370079 +0.245636 0.5687816 0.5370079 +0.2686816 0.5687816 0.5370079 +0.2902431 0.5687816 0.5370079 +0.3104189 0.5687816 0.5370079 +0.3293248 0.5687816 0.5370079 +0.3470774 0.5687816 0.5370079 +0.3637862 0.5687816 0.5370079 +0.3795513 0.5687816 0.5370079 +0.3944623 0.5687816 0.5370079 +0.4085988 0.5687816 0.5370079 +0.4220313 0.5687816 0.5370079 +0.4348222 0.5687816 0.5370079 +0.4470264 0.5687816 0.5370079 +0.4586928 0.5687816 0.5370079 +0.4698649 0.5687816 0.5370079 +0.4805811 0.5687816 0.5370079 +0.490876 0.5687816 0.5370079 +0.5007803 0.5687816 0.5370079 +0.510322 0.5687816 0.5370079 +0.5195258 0.5687816 0.5370079 +0.5284142 0.5687816 0.5370079 +0.5370079 0.5687816 0.5370079 +0.5453253 0.5687816 0.5370079 +0.5533834 0.5687816 0.5370079 +0.5611974 0.5687816 0.5370079 +0.5687816 0.5687816 0.5370079 +0.092819 0.092819 0.5453253 +0.1056428 0.092819 0.5453253 +0.1201537 0.092819 0.5453253 +0.1409607 0.092819 0.5453253 +0.1678172 0.092819 0.5453253 +0.1950164 0.092819 0.5453253 +0.2210581 0.092819 0.5453253 +0.245636 0.092819 0.5453253 +0.2686816 0.092819 0.5453253 +0.2902431 0.092819 0.5453253 +0.3104189 0.092819 0.5453253 +0.3293248 0.092819 0.5453253 +0.3470774 0.092819 0.5453253 +0.3637862 0.092819 0.5453253 +0.3795513 0.092819 0.5453253 +0.3944623 0.092819 0.5453253 +0.4085988 0.092819 0.5453253 +0.4220313 0.092819 0.5453253 +0.4348222 0.092819 0.5453253 +0.4470264 0.092819 0.5453253 +0.4586928 0.092819 0.5453253 +0.4698649 0.092819 0.5453253 +0.4805811 0.092819 0.5453253 +0.490876 0.092819 0.5453253 +0.5007803 0.092819 0.5453253 +0.510322 0.092819 0.5453253 +0.5195258 0.092819 0.5453253 +0.5284142 0.092819 0.5453253 +0.5370079 0.092819 0.5453253 +0.5453253 0.092819 0.5453253 +0.5533834 0.092819 0.5453253 +0.5611974 0.092819 0.5453253 +0.5687816 0.092819 0.5453253 +0.092819 0.1056428 0.5453253 +0.1056428 0.1056428 0.5453253 +0.1201537 0.1056428 0.5453253 +0.1409607 0.1056428 0.5453253 +0.1678172 0.1056428 0.5453253 +0.1950164 0.1056428 0.5453253 +0.2210581 0.1056428 0.5453253 +0.245636 0.1056428 0.5453253 +0.2686816 0.1056428 0.5453253 +0.2902431 0.1056428 0.5453253 +0.3104189 0.1056428 0.5453253 +0.3293248 0.1056428 0.5453253 +0.3470774 0.1056428 0.5453253 +0.3637862 0.1056428 0.5453253 +0.3795513 0.1056428 0.5453253 +0.3944623 0.1056428 0.5453253 +0.4085988 0.1056428 0.5453253 +0.4220313 0.1056428 0.5453253 +0.4348222 0.1056428 0.5453253 +0.4470264 0.1056428 0.5453253 +0.4586928 0.1056428 0.5453253 +0.4698649 0.1056428 0.5453253 +0.4805811 0.1056428 0.5453253 +0.490876 0.1056428 0.5453253 +0.5007803 0.1056428 0.5453253 +0.510322 0.1056428 0.5453253 +0.5195258 0.1056428 0.5453253 +0.5284142 0.1056428 0.5453253 +0.5370079 0.1056428 0.5453253 +0.5453253 0.1056428 0.5453253 +0.5533834 0.1056428 0.5453253 +0.5611974 0.1056428 0.5453253 +0.5687816 0.1056428 0.5453253 +0.092819 0.1201537 0.5453253 +0.1056428 0.1201537 0.5453253 +0.1201537 0.1201537 0.5453253 +0.1409607 0.1201537 0.5453253 +0.1678172 0.1201537 0.5453253 +0.1950164 0.1201537 0.5453253 +0.2210581 0.1201537 0.5453253 +0.245636 0.1201537 0.5453253 +0.2686816 0.1201537 0.5453253 +0.2902431 0.1201537 0.5453253 +0.3104189 0.1201537 0.5453253 +0.3293248 0.1201537 0.5453253 +0.3470774 0.1201537 0.5453253 +0.3637862 0.1201537 0.5453253 +0.3795513 0.1201537 0.5453253 +0.3944623 0.1201537 0.5453253 +0.4085988 0.1201537 0.5453253 +0.4220313 0.1201537 0.5453253 +0.4348222 0.1201537 0.5453253 +0.4470264 0.1201537 0.5453253 +0.4586928 0.1201537 0.5453253 +0.4698649 0.1201537 0.5453253 +0.4805811 0.1201537 0.5453253 +0.490876 0.1201537 0.5453253 +0.5007803 0.1201537 0.5453253 +0.510322 0.1201537 0.5453253 +0.5195258 0.1201537 0.5453253 +0.5284142 0.1201537 0.5453253 +0.5370079 0.1201537 0.5453253 +0.5453253 0.1201537 0.5453253 +0.5533834 0.1201537 0.5453253 +0.5611974 0.1201537 0.5453253 +0.5687816 0.1201537 0.5453253 +0.092819 0.1409607 0.5453253 +0.1056428 0.1409607 0.5453253 +0.1201537 0.1409607 0.5453253 +0.1409607 0.1409607 0.5453253 +0.1678172 0.1409607 0.5453253 +0.1950164 0.1409607 0.5453253 +0.2210581 0.1409607 0.5453253 +0.245636 0.1409607 0.5453253 +0.2686816 0.1409607 0.5453253 +0.2902431 0.1409607 0.5453253 +0.3104189 0.1409607 0.5453253 +0.3293248 0.1409607 0.5453253 +0.3470774 0.1409607 0.5453253 +0.3637862 0.1409607 0.5453253 +0.3795513 0.1409607 0.5453253 +0.3944623 0.1409607 0.5453253 +0.4085988 0.1409607 0.5453253 +0.4220313 0.1409607 0.5453253 +0.4348222 0.1409607 0.5453253 +0.4470264 0.1409607 0.5453253 +0.4586928 0.1409607 0.5453253 +0.4698649 0.1409607 0.5453253 +0.4805811 0.1409607 0.5453253 +0.490876 0.1409607 0.5453253 +0.5007803 0.1409607 0.5453253 +0.510322 0.1409607 0.5453253 +0.5195258 0.1409607 0.5453253 +0.5284142 0.1409607 0.5453253 +0.5370079 0.1409607 0.5453253 +0.5453253 0.1409607 0.5453253 +0.5533834 0.1409607 0.5453253 +0.5611974 0.1409607 0.5453253 +0.5687816 0.1409607 0.5453253 +0.092819 0.1678172 0.5453253 +0.1056428 0.1678172 0.5453253 +0.1201537 0.1678172 0.5453253 +0.1409607 0.1678172 0.5453253 +0.1678172 0.1678172 0.5453253 +0.1950164 0.1678172 0.5453253 +0.2210581 0.1678172 0.5453253 +0.245636 0.1678172 0.5453253 +0.2686816 0.1678172 0.5453253 +0.2902431 0.1678172 0.5453253 +0.3104189 0.1678172 0.5453253 +0.3293248 0.1678172 0.5453253 +0.3470774 0.1678172 0.5453253 +0.3637862 0.1678172 0.5453253 +0.3795513 0.1678172 0.5453253 +0.3944623 0.1678172 0.5453253 +0.4085988 0.1678172 0.5453253 +0.4220313 0.1678172 0.5453253 +0.4348222 0.1678172 0.5453253 +0.4470264 0.1678172 0.5453253 +0.4586928 0.1678172 0.5453253 +0.4698649 0.1678172 0.5453253 +0.4805811 0.1678172 0.5453253 +0.490876 0.1678172 0.5453253 +0.5007803 0.1678172 0.5453253 +0.510322 0.1678172 0.5453253 +0.5195258 0.1678172 0.5453253 +0.5284142 0.1678172 0.5453253 +0.5370079 0.1678172 0.5453253 +0.5453253 0.1678172 0.5453253 +0.5533834 0.1678172 0.5453253 +0.5611974 0.1678172 0.5453253 +0.5687816 0.1678172 0.5453253 +0.092819 0.1950164 0.5453253 +0.1056428 0.1950164 0.5453253 +0.1201537 0.1950164 0.5453253 +0.1409607 0.1950164 0.5453253 +0.1678172 0.1950164 0.5453253 +0.1950164 0.1950164 0.5453253 +0.2210581 0.1950164 0.5453253 +0.245636 0.1950164 0.5453253 +0.2686816 0.1950164 0.5453253 +0.2902431 0.1950164 0.5453253 +0.3104189 0.1950164 0.5453253 +0.3293248 0.1950164 0.5453253 +0.3470774 0.1950164 0.5453253 +0.3637862 0.1950164 0.5453253 +0.3795513 0.1950164 0.5453253 +0.3944623 0.1950164 0.5453253 +0.4085988 0.1950164 0.5453253 +0.4220313 0.1950164 0.5453253 +0.4348222 0.1950164 0.5453253 +0.4470264 0.1950164 0.5453253 +0.4586928 0.1950164 0.5453253 +0.4698649 0.1950164 0.5453253 +0.4805811 0.1950164 0.5453253 +0.490876 0.1950164 0.5453253 +0.5007803 0.1950164 0.5453253 +0.510322 0.1950164 0.5453253 +0.5195258 0.1950164 0.5453253 +0.5284142 0.1950164 0.5453253 +0.5370079 0.1950164 0.5453253 +0.5453253 0.1950164 0.5453253 +0.5533834 0.1950164 0.5453253 +0.5611974 0.1950164 0.5453253 +0.5687816 0.1950164 0.5453253 +0.092819 0.2210581 0.5453253 +0.1056428 0.2210581 0.5453253 +0.1201537 0.2210581 0.5453253 +0.1409607 0.2210581 0.5453253 +0.1678172 0.2210581 0.5453253 +0.1950164 0.2210581 0.5453253 +0.2210581 0.2210581 0.5453253 +0.245636 0.2210581 0.5453253 +0.2686816 0.2210581 0.5453253 +0.2902431 0.2210581 0.5453253 +0.3104189 0.2210581 0.5453253 +0.3293248 0.2210581 0.5453253 +0.3470774 0.2210581 0.5453253 +0.3637862 0.2210581 0.5453253 +0.3795513 0.2210581 0.5453253 +0.3944623 0.2210581 0.5453253 +0.4085988 0.2210581 0.5453253 +0.4220313 0.2210581 0.5453253 +0.4348222 0.2210581 0.5453253 +0.4470264 0.2210581 0.5453253 +0.4586928 0.2210581 0.5453253 +0.4698649 0.2210581 0.5453253 +0.4805811 0.2210581 0.5453253 +0.490876 0.2210581 0.5453253 +0.5007803 0.2210581 0.5453253 +0.510322 0.2210581 0.5453253 +0.5195258 0.2210581 0.5453253 +0.5284142 0.2210581 0.5453253 +0.5370079 0.2210581 0.5453253 +0.5453253 0.2210581 0.5453253 +0.5533834 0.2210581 0.5453253 +0.5611974 0.2210581 0.5453253 +0.5687816 0.2210581 0.5453253 +0.092819 0.245636 0.5453253 +0.1056428 0.245636 0.5453253 +0.1201537 0.245636 0.5453253 +0.1409607 0.245636 0.5453253 +0.1678172 0.245636 0.5453253 +0.1950164 0.245636 0.5453253 +0.2210581 0.245636 0.5453253 +0.245636 0.245636 0.5453253 +0.2686816 0.245636 0.5453253 +0.2902431 0.245636 0.5453253 +0.3104189 0.245636 0.5453253 +0.3293248 0.245636 0.5453253 +0.3470774 0.245636 0.5453253 +0.3637862 0.245636 0.5453253 +0.3795513 0.245636 0.5453253 +0.3944623 0.245636 0.5453253 +0.4085988 0.245636 0.5453253 +0.4220313 0.245636 0.5453253 +0.4348222 0.245636 0.5453253 +0.4470264 0.245636 0.5453253 +0.4586928 0.245636 0.5453253 +0.4698649 0.245636 0.5453253 +0.4805811 0.245636 0.5453253 +0.490876 0.245636 0.5453253 +0.5007803 0.245636 0.5453253 +0.510322 0.245636 0.5453253 +0.5195258 0.245636 0.5453253 +0.5284142 0.245636 0.5453253 +0.5370079 0.245636 0.5453253 +0.5453253 0.245636 0.5453253 +0.5533834 0.245636 0.5453253 +0.5611974 0.245636 0.5453253 +0.5687816 0.245636 0.5453253 +0.092819 0.2686816 0.5453253 +0.1056428 0.2686816 0.5453253 +0.1201537 0.2686816 0.5453253 +0.1409607 0.2686816 0.5453253 +0.1678172 0.2686816 0.5453253 +0.1950164 0.2686816 0.5453253 +0.2210581 0.2686816 0.5453253 +0.245636 0.2686816 0.5453253 +0.2686816 0.2686816 0.5453253 +0.2902431 0.2686816 0.5453253 +0.3104189 0.2686816 0.5453253 +0.3293248 0.2686816 0.5453253 +0.3470774 0.2686816 0.5453253 +0.3637862 0.2686816 0.5453253 +0.3795513 0.2686816 0.5453253 +0.3944623 0.2686816 0.5453253 +0.4085988 0.2686816 0.5453253 +0.4220313 0.2686816 0.5453253 +0.4348222 0.2686816 0.5453253 +0.4470264 0.2686816 0.5453253 +0.4586928 0.2686816 0.5453253 +0.4698649 0.2686816 0.5453253 +0.4805811 0.2686816 0.5453253 +0.490876 0.2686816 0.5453253 +0.5007803 0.2686816 0.5453253 +0.510322 0.2686816 0.5453253 +0.5195258 0.2686816 0.5453253 +0.5284142 0.2686816 0.5453253 +0.5370079 0.2686816 0.5453253 +0.5453253 0.2686816 0.5453253 +0.5533834 0.2686816 0.5453253 +0.5611974 0.2686816 0.5453253 +0.5687816 0.2686816 0.5453253 +0.092819 0.2902431 0.5453253 +0.1056428 0.2902431 0.5453253 +0.1201537 0.2902431 0.5453253 +0.1409607 0.2902431 0.5453253 +0.1678172 0.2902431 0.5453253 +0.1950164 0.2902431 0.5453253 +0.2210581 0.2902431 0.5453253 +0.245636 0.2902431 0.5453253 +0.2686816 0.2902431 0.5453253 +0.2902431 0.2902431 0.5453253 +0.3104189 0.2902431 0.5453253 +0.3293248 0.2902431 0.5453253 +0.3470774 0.2902431 0.5453253 +0.3637862 0.2902431 0.5453253 +0.3795513 0.2902431 0.5453253 +0.3944623 0.2902431 0.5453253 +0.4085988 0.2902431 0.5453253 +0.4220313 0.2902431 0.5453253 +0.4348222 0.2902431 0.5453253 +0.4470264 0.2902431 0.5453253 +0.4586928 0.2902431 0.5453253 +0.4698649 0.2902431 0.5453253 +0.4805811 0.2902431 0.5453253 +0.490876 0.2902431 0.5453253 +0.5007803 0.2902431 0.5453253 +0.510322 0.2902431 0.5453253 +0.5195258 0.2902431 0.5453253 +0.5284142 0.2902431 0.5453253 +0.5370079 0.2902431 0.5453253 +0.5453253 0.2902431 0.5453253 +0.5533834 0.2902431 0.5453253 +0.5611974 0.2902431 0.5453253 +0.5687816 0.2902431 0.5453253 +0.092819 0.3104189 0.5453253 +0.1056428 0.3104189 0.5453253 +0.1201537 0.3104189 0.5453253 +0.1409607 0.3104189 0.5453253 +0.1678172 0.3104189 0.5453253 +0.1950164 0.3104189 0.5453253 +0.2210581 0.3104189 0.5453253 +0.245636 0.3104189 0.5453253 +0.2686816 0.3104189 0.5453253 +0.2902431 0.3104189 0.5453253 +0.3104189 0.3104189 0.5453253 +0.3293248 0.3104189 0.5453253 +0.3470774 0.3104189 0.5453253 +0.3637862 0.3104189 0.5453253 +0.3795513 0.3104189 0.5453253 +0.3944623 0.3104189 0.5453253 +0.4085988 0.3104189 0.5453253 +0.4220313 0.3104189 0.5453253 +0.4348222 0.3104189 0.5453253 +0.4470264 0.3104189 0.5453253 +0.4586928 0.3104189 0.5453253 +0.4698649 0.3104189 0.5453253 +0.4805811 0.3104189 0.5453253 +0.490876 0.3104189 0.5453253 +0.5007803 0.3104189 0.5453253 +0.510322 0.3104189 0.5453253 +0.5195258 0.3104189 0.5453253 +0.5284142 0.3104189 0.5453253 +0.5370079 0.3104189 0.5453253 +0.5453253 0.3104189 0.5453253 +0.5533834 0.3104189 0.5453253 +0.5611974 0.3104189 0.5453253 +0.5687816 0.3104189 0.5453253 +0.092819 0.3293248 0.5453253 +0.1056428 0.3293248 0.5453253 +0.1201537 0.3293248 0.5453253 +0.1409607 0.3293248 0.5453253 +0.1678172 0.3293248 0.5453253 +0.1950164 0.3293248 0.5453253 +0.2210581 0.3293248 0.5453253 +0.245636 0.3293248 0.5453253 +0.2686816 0.3293248 0.5453253 +0.2902431 0.3293248 0.5453253 +0.3104189 0.3293248 0.5453253 +0.3293248 0.3293248 0.5453253 +0.3470774 0.3293248 0.5453253 +0.3637862 0.3293248 0.5453253 +0.3795513 0.3293248 0.5453253 +0.3944623 0.3293248 0.5453253 +0.4085988 0.3293248 0.5453253 +0.4220313 0.3293248 0.5453253 +0.4348222 0.3293248 0.5453253 +0.4470264 0.3293248 0.5453253 +0.4586928 0.3293248 0.5453253 +0.4698649 0.3293248 0.5453253 +0.4805811 0.3293248 0.5453253 +0.490876 0.3293248 0.5453253 +0.5007803 0.3293248 0.5453253 +0.510322 0.3293248 0.5453253 +0.5195258 0.3293248 0.5453253 +0.5284142 0.3293248 0.5453253 +0.5370079 0.3293248 0.5453253 +0.5453253 0.3293248 0.5453253 +0.5533834 0.3293248 0.5453253 +0.5611974 0.3293248 0.5453253 +0.5687816 0.3293248 0.5453253 +0.092819 0.3470774 0.5453253 +0.1056428 0.3470774 0.5453253 +0.1201537 0.3470774 0.5453253 +0.1409607 0.3470774 0.5453253 +0.1678172 0.3470774 0.5453253 +0.1950164 0.3470774 0.5453253 +0.2210581 0.3470774 0.5453253 +0.245636 0.3470774 0.5453253 +0.2686816 0.3470774 0.5453253 +0.2902431 0.3470774 0.5453253 +0.3104189 0.3470774 0.5453253 +0.3293248 0.3470774 0.5453253 +0.3470774 0.3470774 0.5453253 +0.3637862 0.3470774 0.5453253 +0.3795513 0.3470774 0.5453253 +0.3944623 0.3470774 0.5453253 +0.4085988 0.3470774 0.5453253 +0.4220313 0.3470774 0.5453253 +0.4348222 0.3470774 0.5453253 +0.4470264 0.3470774 0.5453253 +0.4586928 0.3470774 0.5453253 +0.4698649 0.3470774 0.5453253 +0.4805811 0.3470774 0.5453253 +0.490876 0.3470774 0.5453253 +0.5007803 0.3470774 0.5453253 +0.510322 0.3470774 0.5453253 +0.5195258 0.3470774 0.5453253 +0.5284142 0.3470774 0.5453253 +0.5370079 0.3470774 0.5453253 +0.5453253 0.3470774 0.5453253 +0.5533834 0.3470774 0.5453253 +0.5611974 0.3470774 0.5453253 +0.5687816 0.3470774 0.5453253 +0.092819 0.3637862 0.5453253 +0.1056428 0.3637862 0.5453253 +0.1201537 0.3637862 0.5453253 +0.1409607 0.3637862 0.5453253 +0.1678172 0.3637862 0.5453253 +0.1950164 0.3637862 0.5453253 +0.2210581 0.3637862 0.5453253 +0.245636 0.3637862 0.5453253 +0.2686816 0.3637862 0.5453253 +0.2902431 0.3637862 0.5453253 +0.3104189 0.3637862 0.5453253 +0.3293248 0.3637862 0.5453253 +0.3470774 0.3637862 0.5453253 +0.3637862 0.3637862 0.5453253 +0.3795513 0.3637862 0.5453253 +0.3944623 0.3637862 0.5453253 +0.4085988 0.3637862 0.5453253 +0.4220313 0.3637862 0.5453253 +0.4348222 0.3637862 0.5453253 +0.4470264 0.3637862 0.5453253 +0.4586928 0.3637862 0.5453253 +0.4698649 0.3637862 0.5453253 +0.4805811 0.3637862 0.5453253 +0.490876 0.3637862 0.5453253 +0.5007803 0.3637862 0.5453253 +0.510322 0.3637862 0.5453253 +0.5195258 0.3637862 0.5453253 +0.5284142 0.3637862 0.5453253 +0.5370079 0.3637862 0.5453253 +0.5453253 0.3637862 0.5453253 +0.5533834 0.3637862 0.5453253 +0.5611974 0.3637862 0.5453253 +0.5687816 0.3637862 0.5453253 +0.092819 0.3795513 0.5453253 +0.1056428 0.3795513 0.5453253 +0.1201537 0.3795513 0.5453253 +0.1409607 0.3795513 0.5453253 +0.1678172 0.3795513 0.5453253 +0.1950164 0.3795513 0.5453253 +0.2210581 0.3795513 0.5453253 +0.245636 0.3795513 0.5453253 +0.2686816 0.3795513 0.5453253 +0.2902431 0.3795513 0.5453253 +0.3104189 0.3795513 0.5453253 +0.3293248 0.3795513 0.5453253 +0.3470774 0.3795513 0.5453253 +0.3637862 0.3795513 0.5453253 +0.3795513 0.3795513 0.5453253 +0.3944623 0.3795513 0.5453253 +0.4085988 0.3795513 0.5453253 +0.4220313 0.3795513 0.5453253 +0.4348222 0.3795513 0.5453253 +0.4470264 0.3795513 0.5453253 +0.4586928 0.3795513 0.5453253 +0.4698649 0.3795513 0.5453253 +0.4805811 0.3795513 0.5453253 +0.490876 0.3795513 0.5453253 +0.5007803 0.3795513 0.5453253 +0.510322 0.3795513 0.5453253 +0.5195258 0.3795513 0.5453253 +0.5284142 0.3795513 0.5453253 +0.5370079 0.3795513 0.5453253 +0.5453253 0.3795513 0.5453253 +0.5533834 0.3795513 0.5453253 +0.5611974 0.3795513 0.5453253 +0.5687816 0.3795513 0.5453253 +0.092819 0.3944623 0.5453253 +0.1056428 0.3944623 0.5453253 +0.1201537 0.3944623 0.5453253 +0.1409607 0.3944623 0.5453253 +0.1678172 0.3944623 0.5453253 +0.1950164 0.3944623 0.5453253 +0.2210581 0.3944623 0.5453253 +0.245636 0.3944623 0.5453253 +0.2686816 0.3944623 0.5453253 +0.2902431 0.3944623 0.5453253 +0.3104189 0.3944623 0.5453253 +0.3293248 0.3944623 0.5453253 +0.3470774 0.3944623 0.5453253 +0.3637862 0.3944623 0.5453253 +0.3795513 0.3944623 0.5453253 +0.3944623 0.3944623 0.5453253 +0.4085988 0.3944623 0.5453253 +0.4220313 0.3944623 0.5453253 +0.4348222 0.3944623 0.5453253 +0.4470264 0.3944623 0.5453253 +0.4586928 0.3944623 0.5453253 +0.4698649 0.3944623 0.5453253 +0.4805811 0.3944623 0.5453253 +0.490876 0.3944623 0.5453253 +0.5007803 0.3944623 0.5453253 +0.510322 0.3944623 0.5453253 +0.5195258 0.3944623 0.5453253 +0.5284142 0.3944623 0.5453253 +0.5370079 0.3944623 0.5453253 +0.5453253 0.3944623 0.5453253 +0.5533834 0.3944623 0.5453253 +0.5611974 0.3944623 0.5453253 +0.5687816 0.3944623 0.5453253 +0.092819 0.4085988 0.5453253 +0.1056428 0.4085988 0.5453253 +0.1201537 0.4085988 0.5453253 +0.1409607 0.4085988 0.5453253 +0.1678172 0.4085988 0.5453253 +0.1950164 0.4085988 0.5453253 +0.2210581 0.4085988 0.5453253 +0.245636 0.4085988 0.5453253 +0.2686816 0.4085988 0.5453253 +0.2902431 0.4085988 0.5453253 +0.3104189 0.4085988 0.5453253 +0.3293248 0.4085988 0.5453253 +0.3470774 0.4085988 0.5453253 +0.3637862 0.4085988 0.5453253 +0.3795513 0.4085988 0.5453253 +0.3944623 0.4085988 0.5453253 +0.4085988 0.4085988 0.5453253 +0.4220313 0.4085988 0.5453253 +0.4348222 0.4085988 0.5453253 +0.4470264 0.4085988 0.5453253 +0.4586928 0.4085988 0.5453253 +0.4698649 0.4085988 0.5453253 +0.4805811 0.4085988 0.5453253 +0.490876 0.4085988 0.5453253 +0.5007803 0.4085988 0.5453253 +0.510322 0.4085988 0.5453253 +0.5195258 0.4085988 0.5453253 +0.5284142 0.4085988 0.5453253 +0.5370079 0.4085988 0.5453253 +0.5453253 0.4085988 0.5453253 +0.5533834 0.4085988 0.5453253 +0.5611974 0.4085988 0.5453253 +0.5687816 0.4085988 0.5453253 +0.092819 0.4220313 0.5453253 +0.1056428 0.4220313 0.5453253 +0.1201537 0.4220313 0.5453253 +0.1409607 0.4220313 0.5453253 +0.1678172 0.4220313 0.5453253 +0.1950164 0.4220313 0.5453253 +0.2210581 0.4220313 0.5453253 +0.245636 0.4220313 0.5453253 +0.2686816 0.4220313 0.5453253 +0.2902431 0.4220313 0.5453253 +0.3104189 0.4220313 0.5453253 +0.3293248 0.4220313 0.5453253 +0.3470774 0.4220313 0.5453253 +0.3637862 0.4220313 0.5453253 +0.3795513 0.4220313 0.5453253 +0.3944623 0.4220313 0.5453253 +0.4085988 0.4220313 0.5453253 +0.4220313 0.4220313 0.5453253 +0.4348222 0.4220313 0.5453253 +0.4470264 0.4220313 0.5453253 +0.4586928 0.4220313 0.5453253 +0.4698649 0.4220313 0.5453253 +0.4805811 0.4220313 0.5453253 +0.490876 0.4220313 0.5453253 +0.5007803 0.4220313 0.5453253 +0.510322 0.4220313 0.5453253 +0.5195258 0.4220313 0.5453253 +0.5284142 0.4220313 0.5453253 +0.5370079 0.4220313 0.5453253 +0.5453253 0.4220313 0.5453253 +0.5533834 0.4220313 0.5453253 +0.5611974 0.4220313 0.5453253 +0.5687816 0.4220313 0.5453253 +0.092819 0.4348222 0.5453253 +0.1056428 0.4348222 0.5453253 +0.1201537 0.4348222 0.5453253 +0.1409607 0.4348222 0.5453253 +0.1678172 0.4348222 0.5453253 +0.1950164 0.4348222 0.5453253 +0.2210581 0.4348222 0.5453253 +0.245636 0.4348222 0.5453253 +0.2686816 0.4348222 0.5453253 +0.2902431 0.4348222 0.5453253 +0.3104189 0.4348222 0.5453253 +0.3293248 0.4348222 0.5453253 +0.3470774 0.4348222 0.5453253 +0.3637862 0.4348222 0.5453253 +0.3795513 0.4348222 0.5453253 +0.3944623 0.4348222 0.5453253 +0.4085988 0.4348222 0.5453253 +0.4220313 0.4348222 0.5453253 +0.4348222 0.4348222 0.5453253 +0.4470264 0.4348222 0.5453253 +0.4586928 0.4348222 0.5453253 +0.4698649 0.4348222 0.5453253 +0.4805811 0.4348222 0.5453253 +0.490876 0.4348222 0.5453253 +0.5007803 0.4348222 0.5453253 +0.510322 0.4348222 0.5453253 +0.5195258 0.4348222 0.5453253 +0.5284142 0.4348222 0.5453253 +0.5370079 0.4348222 0.5453253 +0.5453253 0.4348222 0.5453253 +0.5533834 0.4348222 0.5453253 +0.5611974 0.4348222 0.5453253 +0.5687816 0.4348222 0.5453253 +0.092819 0.4470264 0.5453253 +0.1056428 0.4470264 0.5453253 +0.1201537 0.4470264 0.5453253 +0.1409607 0.4470264 0.5453253 +0.1678172 0.4470264 0.5453253 +0.1950164 0.4470264 0.5453253 +0.2210581 0.4470264 0.5453253 +0.245636 0.4470264 0.5453253 +0.2686816 0.4470264 0.5453253 +0.2902431 0.4470264 0.5453253 +0.3104189 0.4470264 0.5453253 +0.3293248 0.4470264 0.5453253 +0.3470774 0.4470264 0.5453253 +0.3637862 0.4470264 0.5453253 +0.3795513 0.4470264 0.5453253 +0.3944623 0.4470264 0.5453253 +0.4085988 0.4470264 0.5453253 +0.4220313 0.4470264 0.5453253 +0.4348222 0.4470264 0.5453253 +0.4470264 0.4470264 0.5453253 +0.4586928 0.4470264 0.5453253 +0.4698649 0.4470264 0.5453253 +0.4805811 0.4470264 0.5453253 +0.490876 0.4470264 0.5453253 +0.5007803 0.4470264 0.5453253 +0.510322 0.4470264 0.5453253 +0.5195258 0.4470264 0.5453253 +0.5284142 0.4470264 0.5453253 +0.5370079 0.4470264 0.5453253 +0.5453253 0.4470264 0.5453253 +0.5533834 0.4470264 0.5453253 +0.5611974 0.4470264 0.5453253 +0.5687816 0.4470264 0.5453253 +0.092819 0.4586928 0.5453253 +0.1056428 0.4586928 0.5453253 +0.1201537 0.4586928 0.5453253 +0.1409607 0.4586928 0.5453253 +0.1678172 0.4586928 0.5453253 +0.1950164 0.4586928 0.5453253 +0.2210581 0.4586928 0.5453253 +0.245636 0.4586928 0.5453253 +0.2686816 0.4586928 0.5453253 +0.2902431 0.4586928 0.5453253 +0.3104189 0.4586928 0.5453253 +0.3293248 0.4586928 0.5453253 +0.3470774 0.4586928 0.5453253 +0.3637862 0.4586928 0.5453253 +0.3795513 0.4586928 0.5453253 +0.3944623 0.4586928 0.5453253 +0.4085988 0.4586928 0.5453253 +0.4220313 0.4586928 0.5453253 +0.4348222 0.4586928 0.5453253 +0.4470264 0.4586928 0.5453253 +0.4586928 0.4586928 0.5453253 +0.4698649 0.4586928 0.5453253 +0.4805811 0.4586928 0.5453253 +0.490876 0.4586928 0.5453253 +0.5007803 0.4586928 0.5453253 +0.510322 0.4586928 0.5453253 +0.5195258 0.4586928 0.5453253 +0.5284142 0.4586928 0.5453253 +0.5370079 0.4586928 0.5453253 +0.5453253 0.4586928 0.5453253 +0.5533834 0.4586928 0.5453253 +0.5611974 0.4586928 0.5453253 +0.5687816 0.4586928 0.5453253 +0.092819 0.4698649 0.5453253 +0.1056428 0.4698649 0.5453253 +0.1201537 0.4698649 0.5453253 +0.1409607 0.4698649 0.5453253 +0.1678172 0.4698649 0.5453253 +0.1950164 0.4698649 0.5453253 +0.2210581 0.4698649 0.5453253 +0.245636 0.4698649 0.5453253 +0.2686816 0.4698649 0.5453253 +0.2902431 0.4698649 0.5453253 +0.3104189 0.4698649 0.5453253 +0.3293248 0.4698649 0.5453253 +0.3470774 0.4698649 0.5453253 +0.3637862 0.4698649 0.5453253 +0.3795513 0.4698649 0.5453253 +0.3944623 0.4698649 0.5453253 +0.4085988 0.4698649 0.5453253 +0.4220313 0.4698649 0.5453253 +0.4348222 0.4698649 0.5453253 +0.4470264 0.4698649 0.5453253 +0.4586928 0.4698649 0.5453253 +0.4698649 0.4698649 0.5453253 +0.4805811 0.4698649 0.5453253 +0.490876 0.4698649 0.5453253 +0.5007803 0.4698649 0.5453253 +0.510322 0.4698649 0.5453253 +0.5195258 0.4698649 0.5453253 +0.5284142 0.4698649 0.5453253 +0.5370079 0.4698649 0.5453253 +0.5453253 0.4698649 0.5453253 +0.5533834 0.4698649 0.5453253 +0.5611974 0.4698649 0.5453253 +0.5687816 0.4698649 0.5453253 +0.092819 0.4805811 0.5453253 +0.1056428 0.4805811 0.5453253 +0.1201537 0.4805811 0.5453253 +0.1409607 0.4805811 0.5453253 +0.1678172 0.4805811 0.5453253 +0.1950164 0.4805811 0.5453253 +0.2210581 0.4805811 0.5453253 +0.245636 0.4805811 0.5453253 +0.2686816 0.4805811 0.5453253 +0.2902431 0.4805811 0.5453253 +0.3104189 0.4805811 0.5453253 +0.3293248 0.4805811 0.5453253 +0.3470774 0.4805811 0.5453253 +0.3637862 0.4805811 0.5453253 +0.3795513 0.4805811 0.5453253 +0.3944623 0.4805811 0.5453253 +0.4085988 0.4805811 0.5453253 +0.4220313 0.4805811 0.5453253 +0.4348222 0.4805811 0.5453253 +0.4470264 0.4805811 0.5453253 +0.4586928 0.4805811 0.5453253 +0.4698649 0.4805811 0.5453253 +0.4805811 0.4805811 0.5453253 +0.490876 0.4805811 0.5453253 +0.5007803 0.4805811 0.5453253 +0.510322 0.4805811 0.5453253 +0.5195258 0.4805811 0.5453253 +0.5284142 0.4805811 0.5453253 +0.5370079 0.4805811 0.5453253 +0.5453253 0.4805811 0.5453253 +0.5533834 0.4805811 0.5453253 +0.5611974 0.4805811 0.5453253 +0.5687816 0.4805811 0.5453253 +0.092819 0.490876 0.5453253 +0.1056428 0.490876 0.5453253 +0.1201537 0.490876 0.5453253 +0.1409607 0.490876 0.5453253 +0.1678172 0.490876 0.5453253 +0.1950164 0.490876 0.5453253 +0.2210581 0.490876 0.5453253 +0.245636 0.490876 0.5453253 +0.2686816 0.490876 0.5453253 +0.2902431 0.490876 0.5453253 +0.3104189 0.490876 0.5453253 +0.3293248 0.490876 0.5453253 +0.3470774 0.490876 0.5453253 +0.3637862 0.490876 0.5453253 +0.3795513 0.490876 0.5453253 +0.3944623 0.490876 0.5453253 +0.4085988 0.490876 0.5453253 +0.4220313 0.490876 0.5453253 +0.4348222 0.490876 0.5453253 +0.4470264 0.490876 0.5453253 +0.4586928 0.490876 0.5453253 +0.4698649 0.490876 0.5453253 +0.4805811 0.490876 0.5453253 +0.490876 0.490876 0.5453253 +0.5007803 0.490876 0.5453253 +0.510322 0.490876 0.5453253 +0.5195258 0.490876 0.5453253 +0.5284142 0.490876 0.5453253 +0.5370079 0.490876 0.5453253 +0.5453253 0.490876 0.5453253 +0.5533834 0.490876 0.5453253 +0.5611974 0.490876 0.5453253 +0.5687816 0.490876 0.5453253 +0.092819 0.5007803 0.5453253 +0.1056428 0.5007803 0.5453253 +0.1201537 0.5007803 0.5453253 +0.1409607 0.5007803 0.5453253 +0.1678172 0.5007803 0.5453253 +0.1950164 0.5007803 0.5453253 +0.2210581 0.5007803 0.5453253 +0.245636 0.5007803 0.5453253 +0.2686816 0.5007803 0.5453253 +0.2902431 0.5007803 0.5453253 +0.3104189 0.5007803 0.5453253 +0.3293248 0.5007803 0.5453253 +0.3470774 0.5007803 0.5453253 +0.3637862 0.5007803 0.5453253 +0.3795513 0.5007803 0.5453253 +0.3944623 0.5007803 0.5453253 +0.4085988 0.5007803 0.5453253 +0.4220313 0.5007803 0.5453253 +0.4348222 0.5007803 0.5453253 +0.4470264 0.5007803 0.5453253 +0.4586928 0.5007803 0.5453253 +0.4698649 0.5007803 0.5453253 +0.4805811 0.5007803 0.5453253 +0.490876 0.5007803 0.5453253 +0.5007803 0.5007803 0.5453253 +0.510322 0.5007803 0.5453253 +0.5195258 0.5007803 0.5453253 +0.5284142 0.5007803 0.5453253 +0.5370079 0.5007803 0.5453253 +0.5453253 0.5007803 0.5453253 +0.5533834 0.5007803 0.5453253 +0.5611974 0.5007803 0.5453253 +0.5687816 0.5007803 0.5453253 +0.092819 0.510322 0.5453253 +0.1056428 0.510322 0.5453253 +0.1201537 0.510322 0.5453253 +0.1409607 0.510322 0.5453253 +0.1678172 0.510322 0.5453253 +0.1950164 0.510322 0.5453253 +0.2210581 0.510322 0.5453253 +0.245636 0.510322 0.5453253 +0.2686816 0.510322 0.5453253 +0.2902431 0.510322 0.5453253 +0.3104189 0.510322 0.5453253 +0.3293248 0.510322 0.5453253 +0.3470774 0.510322 0.5453253 +0.3637862 0.510322 0.5453253 +0.3795513 0.510322 0.5453253 +0.3944623 0.510322 0.5453253 +0.4085988 0.510322 0.5453253 +0.4220313 0.510322 0.5453253 +0.4348222 0.510322 0.5453253 +0.4470264 0.510322 0.5453253 +0.4586928 0.510322 0.5453253 +0.4698649 0.510322 0.5453253 +0.4805811 0.510322 0.5453253 +0.490876 0.510322 0.5453253 +0.5007803 0.510322 0.5453253 +0.510322 0.510322 0.5453253 +0.5195258 0.510322 0.5453253 +0.5284142 0.510322 0.5453253 +0.5370079 0.510322 0.5453253 +0.5453253 0.510322 0.5453253 +0.5533834 0.510322 0.5453253 +0.5611974 0.510322 0.5453253 +0.5687816 0.510322 0.5453253 +0.092819 0.5195258 0.5453253 +0.1056428 0.5195258 0.5453253 +0.1201537 0.5195258 0.5453253 +0.1409607 0.5195258 0.5453253 +0.1678172 0.5195258 0.5453253 +0.1950164 0.5195258 0.5453253 +0.2210581 0.5195258 0.5453253 +0.245636 0.5195258 0.5453253 +0.2686816 0.5195258 0.5453253 +0.2902431 0.5195258 0.5453253 +0.3104189 0.5195258 0.5453253 +0.3293248 0.5195258 0.5453253 +0.3470774 0.5195258 0.5453253 +0.3637862 0.5195258 0.5453253 +0.3795513 0.5195258 0.5453253 +0.3944623 0.5195258 0.5453253 +0.4085988 0.5195258 0.5453253 +0.4220313 0.5195258 0.5453253 +0.4348222 0.5195258 0.5453253 +0.4470264 0.5195258 0.5453253 +0.4586928 0.5195258 0.5453253 +0.4698649 0.5195258 0.5453253 +0.4805811 0.5195258 0.5453253 +0.490876 0.5195258 0.5453253 +0.5007803 0.5195258 0.5453253 +0.510322 0.5195258 0.5453253 +0.5195258 0.5195258 0.5453253 +0.5284142 0.5195258 0.5453253 +0.5370079 0.5195258 0.5453253 +0.5453253 0.5195258 0.5453253 +0.5533834 0.5195258 0.5453253 +0.5611974 0.5195258 0.5453253 +0.5687816 0.5195258 0.5453253 +0.092819 0.5284142 0.5453253 +0.1056428 0.5284142 0.5453253 +0.1201537 0.5284142 0.5453253 +0.1409607 0.5284142 0.5453253 +0.1678172 0.5284142 0.5453253 +0.1950164 0.5284142 0.5453253 +0.2210581 0.5284142 0.5453253 +0.245636 0.5284142 0.5453253 +0.2686816 0.5284142 0.5453253 +0.2902431 0.5284142 0.5453253 +0.3104189 0.5284142 0.5453253 +0.3293248 0.5284142 0.5453253 +0.3470774 0.5284142 0.5453253 +0.3637862 0.5284142 0.5453253 +0.3795513 0.5284142 0.5453253 +0.3944623 0.5284142 0.5453253 +0.4085988 0.5284142 0.5453253 +0.4220313 0.5284142 0.5453253 +0.4348222 0.5284142 0.5453253 +0.4470264 0.5284142 0.5453253 +0.4586928 0.5284142 0.5453253 +0.4698649 0.5284142 0.5453253 +0.4805811 0.5284142 0.5453253 +0.490876 0.5284142 0.5453253 +0.5007803 0.5284142 0.5453253 +0.510322 0.5284142 0.5453253 +0.5195258 0.5284142 0.5453253 +0.5284142 0.5284142 0.5453253 +0.5370079 0.5284142 0.5453253 +0.5453253 0.5284142 0.5453253 +0.5533834 0.5284142 0.5453253 +0.5611974 0.5284142 0.5453253 +0.5687816 0.5284142 0.5453253 +0.092819 0.5370079 0.5453253 +0.1056428 0.5370079 0.5453253 +0.1201537 0.5370079 0.5453253 +0.1409607 0.5370079 0.5453253 +0.1678172 0.5370079 0.5453253 +0.1950164 0.5370079 0.5453253 +0.2210581 0.5370079 0.5453253 +0.245636 0.5370079 0.5453253 +0.2686816 0.5370079 0.5453253 +0.2902431 0.5370079 0.5453253 +0.3104189 0.5370079 0.5453253 +0.3293248 0.5370079 0.5453253 +0.3470774 0.5370079 0.5453253 +0.3637862 0.5370079 0.5453253 +0.3795513 0.5370079 0.5453253 +0.3944623 0.5370079 0.5453253 +0.4085988 0.5370079 0.5453253 +0.4220313 0.5370079 0.5453253 +0.4348222 0.5370079 0.5453253 +0.4470264 0.5370079 0.5453253 +0.4586928 0.5370079 0.5453253 +0.4698649 0.5370079 0.5453253 +0.4805811 0.5370079 0.5453253 +0.490876 0.5370079 0.5453253 +0.5007803 0.5370079 0.5453253 +0.510322 0.5370079 0.5453253 +0.5195258 0.5370079 0.5453253 +0.5284142 0.5370079 0.5453253 +0.5370079 0.5370079 0.5453253 +0.5453253 0.5370079 0.5453253 +0.5533834 0.5370079 0.5453253 +0.5611974 0.5370079 0.5453253 +0.5687816 0.5370079 0.5453253 +0.092819 0.5453253 0.5453253 +0.1056428 0.5453253 0.5453253 +0.1201537 0.5453253 0.5453253 +0.1409607 0.5453253 0.5453253 +0.1678172 0.5453253 0.5453253 +0.1950164 0.5453253 0.5453253 +0.2210581 0.5453253 0.5453253 +0.245636 0.5453253 0.5453253 +0.2686816 0.5453253 0.5453253 +0.2902431 0.5453253 0.5453253 +0.3104189 0.5453253 0.5453253 +0.3293248 0.5453253 0.5453253 +0.3470774 0.5453253 0.5453253 +0.3637862 0.5453253 0.5453253 +0.3795513 0.5453253 0.5453253 +0.3944623 0.5453253 0.5453253 +0.4085988 0.5453253 0.5453253 +0.4220313 0.5453253 0.5453253 +0.4348222 0.5453253 0.5453253 +0.4470264 0.5453253 0.5453253 +0.4586928 0.5453253 0.5453253 +0.4698649 0.5453253 0.5453253 +0.4805811 0.5453253 0.5453253 +0.490876 0.5453253 0.5453253 +0.5007803 0.5453253 0.5453253 +0.510322 0.5453253 0.5453253 +0.5195258 0.5453253 0.5453253 +0.5284142 0.5453253 0.5453253 +0.5370079 0.5453253 0.5453253 +0.5453253 0.5453253 0.5453253 +0.5533834 0.5453253 0.5453253 +0.5611974 0.5453253 0.5453253 +0.5687816 0.5453253 0.5453253 +0.092819 0.5533834 0.5453253 +0.1056428 0.5533834 0.5453253 +0.1201537 0.5533834 0.5453253 +0.1409607 0.5533834 0.5453253 +0.1678172 0.5533834 0.5453253 +0.1950164 0.5533834 0.5453253 +0.2210581 0.5533834 0.5453253 +0.245636 0.5533834 0.5453253 +0.2686816 0.5533834 0.5453253 +0.2902431 0.5533834 0.5453253 +0.3104189 0.5533834 0.5453253 +0.3293248 0.5533834 0.5453253 +0.3470774 0.5533834 0.5453253 +0.3637862 0.5533834 0.5453253 +0.3795513 0.5533834 0.5453253 +0.3944623 0.5533834 0.5453253 +0.4085988 0.5533834 0.5453253 +0.4220313 0.5533834 0.5453253 +0.4348222 0.5533834 0.5453253 +0.4470264 0.5533834 0.5453253 +0.4586928 0.5533834 0.5453253 +0.4698649 0.5533834 0.5453253 +0.4805811 0.5533834 0.5453253 +0.490876 0.5533834 0.5453253 +0.5007803 0.5533834 0.5453253 +0.510322 0.5533834 0.5453253 +0.5195258 0.5533834 0.5453253 +0.5284142 0.5533834 0.5453253 +0.5370079 0.5533834 0.5453253 +0.5453253 0.5533834 0.5453253 +0.5533834 0.5533834 0.5453253 +0.5611974 0.5533834 0.5453253 +0.5687816 0.5533834 0.5453253 +0.092819 0.5611974 0.5453253 +0.1056428 0.5611974 0.5453253 +0.1201537 0.5611974 0.5453253 +0.1409607 0.5611974 0.5453253 +0.1678172 0.5611974 0.5453253 +0.1950164 0.5611974 0.5453253 +0.2210581 0.5611974 0.5453253 +0.245636 0.5611974 0.5453253 +0.2686816 0.5611974 0.5453253 +0.2902431 0.5611974 0.5453253 +0.3104189 0.5611974 0.5453253 +0.3293248 0.5611974 0.5453253 +0.3470774 0.5611974 0.5453253 +0.3637862 0.5611974 0.5453253 +0.3795513 0.5611974 0.5453253 +0.3944623 0.5611974 0.5453253 +0.4085988 0.5611974 0.5453253 +0.4220313 0.5611974 0.5453253 +0.4348222 0.5611974 0.5453253 +0.4470264 0.5611974 0.5453253 +0.4586928 0.5611974 0.5453253 +0.4698649 0.5611974 0.5453253 +0.4805811 0.5611974 0.5453253 +0.490876 0.5611974 0.5453253 +0.5007803 0.5611974 0.5453253 +0.510322 0.5611974 0.5453253 +0.5195258 0.5611974 0.5453253 +0.5284142 0.5611974 0.5453253 +0.5370079 0.5611974 0.5453253 +0.5453253 0.5611974 0.5453253 +0.5533834 0.5611974 0.5453253 +0.5611974 0.5611974 0.5453253 +0.5687816 0.5611974 0.5453253 +0.092819 0.5687816 0.5453253 +0.1056428 0.5687816 0.5453253 +0.1201537 0.5687816 0.5453253 +0.1409607 0.5687816 0.5453253 +0.1678172 0.5687816 0.5453253 +0.1950164 0.5687816 0.5453253 +0.2210581 0.5687816 0.5453253 +0.245636 0.5687816 0.5453253 +0.2686816 0.5687816 0.5453253 +0.2902431 0.5687816 0.5453253 +0.3104189 0.5687816 0.5453253 +0.3293248 0.5687816 0.5453253 +0.3470774 0.5687816 0.5453253 +0.3637862 0.5687816 0.5453253 +0.3795513 0.5687816 0.5453253 +0.3944623 0.5687816 0.5453253 +0.4085988 0.5687816 0.5453253 +0.4220313 0.5687816 0.5453253 +0.4348222 0.5687816 0.5453253 +0.4470264 0.5687816 0.5453253 +0.4586928 0.5687816 0.5453253 +0.4698649 0.5687816 0.5453253 +0.4805811 0.5687816 0.5453253 +0.490876 0.5687816 0.5453253 +0.5007803 0.5687816 0.5453253 +0.510322 0.5687816 0.5453253 +0.5195258 0.5687816 0.5453253 +0.5284142 0.5687816 0.5453253 +0.5370079 0.5687816 0.5453253 +0.5453253 0.5687816 0.5453253 +0.5533834 0.5687816 0.5453253 +0.5611974 0.5687816 0.5453253 +0.5687816 0.5687816 0.5453253 +0.092819 0.092819 0.5533834 +0.1056428 0.092819 0.5533834 +0.1201537 0.092819 0.5533834 +0.1409607 0.092819 0.5533834 +0.1678172 0.092819 0.5533834 +0.1950164 0.092819 0.5533834 +0.2210581 0.092819 0.5533834 +0.245636 0.092819 0.5533834 +0.2686816 0.092819 0.5533834 +0.2902431 0.092819 0.5533834 +0.3104189 0.092819 0.5533834 +0.3293248 0.092819 0.5533834 +0.3470774 0.092819 0.5533834 +0.3637862 0.092819 0.5533834 +0.3795513 0.092819 0.5533834 +0.3944623 0.092819 0.5533834 +0.4085988 0.092819 0.5533834 +0.4220313 0.092819 0.5533834 +0.4348222 0.092819 0.5533834 +0.4470264 0.092819 0.5533834 +0.4586928 0.092819 0.5533834 +0.4698649 0.092819 0.5533834 +0.4805811 0.092819 0.5533834 +0.490876 0.092819 0.5533834 +0.5007803 0.092819 0.5533834 +0.510322 0.092819 0.5533834 +0.5195258 0.092819 0.5533834 +0.5284142 0.092819 0.5533834 +0.5370079 0.092819 0.5533834 +0.5453253 0.092819 0.5533834 +0.5533834 0.092819 0.5533834 +0.5611974 0.092819 0.5533834 +0.5687816 0.092819 0.5533834 +0.092819 0.1056428 0.5533834 +0.1056428 0.1056428 0.5533834 +0.1201537 0.1056428 0.5533834 +0.1409607 0.1056428 0.5533834 +0.1678172 0.1056428 0.5533834 +0.1950164 0.1056428 0.5533834 +0.2210581 0.1056428 0.5533834 +0.245636 0.1056428 0.5533834 +0.2686816 0.1056428 0.5533834 +0.2902431 0.1056428 0.5533834 +0.3104189 0.1056428 0.5533834 +0.3293248 0.1056428 0.5533834 +0.3470774 0.1056428 0.5533834 +0.3637862 0.1056428 0.5533834 +0.3795513 0.1056428 0.5533834 +0.3944623 0.1056428 0.5533834 +0.4085988 0.1056428 0.5533834 +0.4220313 0.1056428 0.5533834 +0.4348222 0.1056428 0.5533834 +0.4470264 0.1056428 0.5533834 +0.4586928 0.1056428 0.5533834 +0.4698649 0.1056428 0.5533834 +0.4805811 0.1056428 0.5533834 +0.490876 0.1056428 0.5533834 +0.5007803 0.1056428 0.5533834 +0.510322 0.1056428 0.5533834 +0.5195258 0.1056428 0.5533834 +0.5284142 0.1056428 0.5533834 +0.5370079 0.1056428 0.5533834 +0.5453253 0.1056428 0.5533834 +0.5533834 0.1056428 0.5533834 +0.5611974 0.1056428 0.5533834 +0.5687816 0.1056428 0.5533834 +0.092819 0.1201537 0.5533834 +0.1056428 0.1201537 0.5533834 +0.1201537 0.1201537 0.5533834 +0.1409607 0.1201537 0.5533834 +0.1678172 0.1201537 0.5533834 +0.1950164 0.1201537 0.5533834 +0.2210581 0.1201537 0.5533834 +0.245636 0.1201537 0.5533834 +0.2686816 0.1201537 0.5533834 +0.2902431 0.1201537 0.5533834 +0.3104189 0.1201537 0.5533834 +0.3293248 0.1201537 0.5533834 +0.3470774 0.1201537 0.5533834 +0.3637862 0.1201537 0.5533834 +0.3795513 0.1201537 0.5533834 +0.3944623 0.1201537 0.5533834 +0.4085988 0.1201537 0.5533834 +0.4220313 0.1201537 0.5533834 +0.4348222 0.1201537 0.5533834 +0.4470264 0.1201537 0.5533834 +0.4586928 0.1201537 0.5533834 +0.4698649 0.1201537 0.5533834 +0.4805811 0.1201537 0.5533834 +0.490876 0.1201537 0.5533834 +0.5007803 0.1201537 0.5533834 +0.510322 0.1201537 0.5533834 +0.5195258 0.1201537 0.5533834 +0.5284142 0.1201537 0.5533834 +0.5370079 0.1201537 0.5533834 +0.5453253 0.1201537 0.5533834 +0.5533834 0.1201537 0.5533834 +0.5611974 0.1201537 0.5533834 +0.5687816 0.1201537 0.5533834 +0.092819 0.1409607 0.5533834 +0.1056428 0.1409607 0.5533834 +0.1201537 0.1409607 0.5533834 +0.1409607 0.1409607 0.5533834 +0.1678172 0.1409607 0.5533834 +0.1950164 0.1409607 0.5533834 +0.2210581 0.1409607 0.5533834 +0.245636 0.1409607 0.5533834 +0.2686816 0.1409607 0.5533834 +0.2902431 0.1409607 0.5533834 +0.3104189 0.1409607 0.5533834 +0.3293248 0.1409607 0.5533834 +0.3470774 0.1409607 0.5533834 +0.3637862 0.1409607 0.5533834 +0.3795513 0.1409607 0.5533834 +0.3944623 0.1409607 0.5533834 +0.4085988 0.1409607 0.5533834 +0.4220313 0.1409607 0.5533834 +0.4348222 0.1409607 0.5533834 +0.4470264 0.1409607 0.5533834 +0.4586928 0.1409607 0.5533834 +0.4698649 0.1409607 0.5533834 +0.4805811 0.1409607 0.5533834 +0.490876 0.1409607 0.5533834 +0.5007803 0.1409607 0.5533834 +0.510322 0.1409607 0.5533834 +0.5195258 0.1409607 0.5533834 +0.5284142 0.1409607 0.5533834 +0.5370079 0.1409607 0.5533834 +0.5453253 0.1409607 0.5533834 +0.5533834 0.1409607 0.5533834 +0.5611974 0.1409607 0.5533834 +0.5687816 0.1409607 0.5533834 +0.092819 0.1678172 0.5533834 +0.1056428 0.1678172 0.5533834 +0.1201537 0.1678172 0.5533834 +0.1409607 0.1678172 0.5533834 +0.1678172 0.1678172 0.5533834 +0.1950164 0.1678172 0.5533834 +0.2210581 0.1678172 0.5533834 +0.245636 0.1678172 0.5533834 +0.2686816 0.1678172 0.5533834 +0.2902431 0.1678172 0.5533834 +0.3104189 0.1678172 0.5533834 +0.3293248 0.1678172 0.5533834 +0.3470774 0.1678172 0.5533834 +0.3637862 0.1678172 0.5533834 +0.3795513 0.1678172 0.5533834 +0.3944623 0.1678172 0.5533834 +0.4085988 0.1678172 0.5533834 +0.4220313 0.1678172 0.5533834 +0.4348222 0.1678172 0.5533834 +0.4470264 0.1678172 0.5533834 +0.4586928 0.1678172 0.5533834 +0.4698649 0.1678172 0.5533834 +0.4805811 0.1678172 0.5533834 +0.490876 0.1678172 0.5533834 +0.5007803 0.1678172 0.5533834 +0.510322 0.1678172 0.5533834 +0.5195258 0.1678172 0.5533834 +0.5284142 0.1678172 0.5533834 +0.5370079 0.1678172 0.5533834 +0.5453253 0.1678172 0.5533834 +0.5533834 0.1678172 0.5533834 +0.5611974 0.1678172 0.5533834 +0.5687816 0.1678172 0.5533834 +0.092819 0.1950164 0.5533834 +0.1056428 0.1950164 0.5533834 +0.1201537 0.1950164 0.5533834 +0.1409607 0.1950164 0.5533834 +0.1678172 0.1950164 0.5533834 +0.1950164 0.1950164 0.5533834 +0.2210581 0.1950164 0.5533834 +0.245636 0.1950164 0.5533834 +0.2686816 0.1950164 0.5533834 +0.2902431 0.1950164 0.5533834 +0.3104189 0.1950164 0.5533834 +0.3293248 0.1950164 0.5533834 +0.3470774 0.1950164 0.5533834 +0.3637862 0.1950164 0.5533834 +0.3795513 0.1950164 0.5533834 +0.3944623 0.1950164 0.5533834 +0.4085988 0.1950164 0.5533834 +0.4220313 0.1950164 0.5533834 +0.4348222 0.1950164 0.5533834 +0.4470264 0.1950164 0.5533834 +0.4586928 0.1950164 0.5533834 +0.4698649 0.1950164 0.5533834 +0.4805811 0.1950164 0.5533834 +0.490876 0.1950164 0.5533834 +0.5007803 0.1950164 0.5533834 +0.510322 0.1950164 0.5533834 +0.5195258 0.1950164 0.5533834 +0.5284142 0.1950164 0.5533834 +0.5370079 0.1950164 0.5533834 +0.5453253 0.1950164 0.5533834 +0.5533834 0.1950164 0.5533834 +0.5611974 0.1950164 0.5533834 +0.5687816 0.1950164 0.5533834 +0.092819 0.2210581 0.5533834 +0.1056428 0.2210581 0.5533834 +0.1201537 0.2210581 0.5533834 +0.1409607 0.2210581 0.5533834 +0.1678172 0.2210581 0.5533834 +0.1950164 0.2210581 0.5533834 +0.2210581 0.2210581 0.5533834 +0.245636 0.2210581 0.5533834 +0.2686816 0.2210581 0.5533834 +0.2902431 0.2210581 0.5533834 +0.3104189 0.2210581 0.5533834 +0.3293248 0.2210581 0.5533834 +0.3470774 0.2210581 0.5533834 +0.3637862 0.2210581 0.5533834 +0.3795513 0.2210581 0.5533834 +0.3944623 0.2210581 0.5533834 +0.4085988 0.2210581 0.5533834 +0.4220313 0.2210581 0.5533834 +0.4348222 0.2210581 0.5533834 +0.4470264 0.2210581 0.5533834 +0.4586928 0.2210581 0.5533834 +0.4698649 0.2210581 0.5533834 +0.4805811 0.2210581 0.5533834 +0.490876 0.2210581 0.5533834 +0.5007803 0.2210581 0.5533834 +0.510322 0.2210581 0.5533834 +0.5195258 0.2210581 0.5533834 +0.5284142 0.2210581 0.5533834 +0.5370079 0.2210581 0.5533834 +0.5453253 0.2210581 0.5533834 +0.5533834 0.2210581 0.5533834 +0.5611974 0.2210581 0.5533834 +0.5687816 0.2210581 0.5533834 +0.092819 0.245636 0.5533834 +0.1056428 0.245636 0.5533834 +0.1201537 0.245636 0.5533834 +0.1409607 0.245636 0.5533834 +0.1678172 0.245636 0.5533834 +0.1950164 0.245636 0.5533834 +0.2210581 0.245636 0.5533834 +0.245636 0.245636 0.5533834 +0.2686816 0.245636 0.5533834 +0.2902431 0.245636 0.5533834 +0.3104189 0.245636 0.5533834 +0.3293248 0.245636 0.5533834 +0.3470774 0.245636 0.5533834 +0.3637862 0.245636 0.5533834 +0.3795513 0.245636 0.5533834 +0.3944623 0.245636 0.5533834 +0.4085988 0.245636 0.5533834 +0.4220313 0.245636 0.5533834 +0.4348222 0.245636 0.5533834 +0.4470264 0.245636 0.5533834 +0.4586928 0.245636 0.5533834 +0.4698649 0.245636 0.5533834 +0.4805811 0.245636 0.5533834 +0.490876 0.245636 0.5533834 +0.5007803 0.245636 0.5533834 +0.510322 0.245636 0.5533834 +0.5195258 0.245636 0.5533834 +0.5284142 0.245636 0.5533834 +0.5370079 0.245636 0.5533834 +0.5453253 0.245636 0.5533834 +0.5533834 0.245636 0.5533834 +0.5611974 0.245636 0.5533834 +0.5687816 0.245636 0.5533834 +0.092819 0.2686816 0.5533834 +0.1056428 0.2686816 0.5533834 +0.1201537 0.2686816 0.5533834 +0.1409607 0.2686816 0.5533834 +0.1678172 0.2686816 0.5533834 +0.1950164 0.2686816 0.5533834 +0.2210581 0.2686816 0.5533834 +0.245636 0.2686816 0.5533834 +0.2686816 0.2686816 0.5533834 +0.2902431 0.2686816 0.5533834 +0.3104189 0.2686816 0.5533834 +0.3293248 0.2686816 0.5533834 +0.3470774 0.2686816 0.5533834 +0.3637862 0.2686816 0.5533834 +0.3795513 0.2686816 0.5533834 +0.3944623 0.2686816 0.5533834 +0.4085988 0.2686816 0.5533834 +0.4220313 0.2686816 0.5533834 +0.4348222 0.2686816 0.5533834 +0.4470264 0.2686816 0.5533834 +0.4586928 0.2686816 0.5533834 +0.4698649 0.2686816 0.5533834 +0.4805811 0.2686816 0.5533834 +0.490876 0.2686816 0.5533834 +0.5007803 0.2686816 0.5533834 +0.510322 0.2686816 0.5533834 +0.5195258 0.2686816 0.5533834 +0.5284142 0.2686816 0.5533834 +0.5370079 0.2686816 0.5533834 +0.5453253 0.2686816 0.5533834 +0.5533834 0.2686816 0.5533834 +0.5611974 0.2686816 0.5533834 +0.5687816 0.2686816 0.5533834 +0.092819 0.2902431 0.5533834 +0.1056428 0.2902431 0.5533834 +0.1201537 0.2902431 0.5533834 +0.1409607 0.2902431 0.5533834 +0.1678172 0.2902431 0.5533834 +0.1950164 0.2902431 0.5533834 +0.2210581 0.2902431 0.5533834 +0.245636 0.2902431 0.5533834 +0.2686816 0.2902431 0.5533834 +0.2902431 0.2902431 0.5533834 +0.3104189 0.2902431 0.5533834 +0.3293248 0.2902431 0.5533834 +0.3470774 0.2902431 0.5533834 +0.3637862 0.2902431 0.5533834 +0.3795513 0.2902431 0.5533834 +0.3944623 0.2902431 0.5533834 +0.4085988 0.2902431 0.5533834 +0.4220313 0.2902431 0.5533834 +0.4348222 0.2902431 0.5533834 +0.4470264 0.2902431 0.5533834 +0.4586928 0.2902431 0.5533834 +0.4698649 0.2902431 0.5533834 +0.4805811 0.2902431 0.5533834 +0.490876 0.2902431 0.5533834 +0.5007803 0.2902431 0.5533834 +0.510322 0.2902431 0.5533834 +0.5195258 0.2902431 0.5533834 +0.5284142 0.2902431 0.5533834 +0.5370079 0.2902431 0.5533834 +0.5453253 0.2902431 0.5533834 +0.5533834 0.2902431 0.5533834 +0.5611974 0.2902431 0.5533834 +0.5687816 0.2902431 0.5533834 +0.092819 0.3104189 0.5533834 +0.1056428 0.3104189 0.5533834 +0.1201537 0.3104189 0.5533834 +0.1409607 0.3104189 0.5533834 +0.1678172 0.3104189 0.5533834 +0.1950164 0.3104189 0.5533834 +0.2210581 0.3104189 0.5533834 +0.245636 0.3104189 0.5533834 +0.2686816 0.3104189 0.5533834 +0.2902431 0.3104189 0.5533834 +0.3104189 0.3104189 0.5533834 +0.3293248 0.3104189 0.5533834 +0.3470774 0.3104189 0.5533834 +0.3637862 0.3104189 0.5533834 +0.3795513 0.3104189 0.5533834 +0.3944623 0.3104189 0.5533834 +0.4085988 0.3104189 0.5533834 +0.4220313 0.3104189 0.5533834 +0.4348222 0.3104189 0.5533834 +0.4470264 0.3104189 0.5533834 +0.4586928 0.3104189 0.5533834 +0.4698649 0.3104189 0.5533834 +0.4805811 0.3104189 0.5533834 +0.490876 0.3104189 0.5533834 +0.5007803 0.3104189 0.5533834 +0.510322 0.3104189 0.5533834 +0.5195258 0.3104189 0.5533834 +0.5284142 0.3104189 0.5533834 +0.5370079 0.3104189 0.5533834 +0.5453253 0.3104189 0.5533834 +0.5533834 0.3104189 0.5533834 +0.5611974 0.3104189 0.5533834 +0.5687816 0.3104189 0.5533834 +0.092819 0.3293248 0.5533834 +0.1056428 0.3293248 0.5533834 +0.1201537 0.3293248 0.5533834 +0.1409607 0.3293248 0.5533834 +0.1678172 0.3293248 0.5533834 +0.1950164 0.3293248 0.5533834 +0.2210581 0.3293248 0.5533834 +0.245636 0.3293248 0.5533834 +0.2686816 0.3293248 0.5533834 +0.2902431 0.3293248 0.5533834 +0.3104189 0.3293248 0.5533834 +0.3293248 0.3293248 0.5533834 +0.3470774 0.3293248 0.5533834 +0.3637862 0.3293248 0.5533834 +0.3795513 0.3293248 0.5533834 +0.3944623 0.3293248 0.5533834 +0.4085988 0.3293248 0.5533834 +0.4220313 0.3293248 0.5533834 +0.4348222 0.3293248 0.5533834 +0.4470264 0.3293248 0.5533834 +0.4586928 0.3293248 0.5533834 +0.4698649 0.3293248 0.5533834 +0.4805811 0.3293248 0.5533834 +0.490876 0.3293248 0.5533834 +0.5007803 0.3293248 0.5533834 +0.510322 0.3293248 0.5533834 +0.5195258 0.3293248 0.5533834 +0.5284142 0.3293248 0.5533834 +0.5370079 0.3293248 0.5533834 +0.5453253 0.3293248 0.5533834 +0.5533834 0.3293248 0.5533834 +0.5611974 0.3293248 0.5533834 +0.5687816 0.3293248 0.5533834 +0.092819 0.3470774 0.5533834 +0.1056428 0.3470774 0.5533834 +0.1201537 0.3470774 0.5533834 +0.1409607 0.3470774 0.5533834 +0.1678172 0.3470774 0.5533834 +0.1950164 0.3470774 0.5533834 +0.2210581 0.3470774 0.5533834 +0.245636 0.3470774 0.5533834 +0.2686816 0.3470774 0.5533834 +0.2902431 0.3470774 0.5533834 +0.3104189 0.3470774 0.5533834 +0.3293248 0.3470774 0.5533834 +0.3470774 0.3470774 0.5533834 +0.3637862 0.3470774 0.5533834 +0.3795513 0.3470774 0.5533834 +0.3944623 0.3470774 0.5533834 +0.4085988 0.3470774 0.5533834 +0.4220313 0.3470774 0.5533834 +0.4348222 0.3470774 0.5533834 +0.4470264 0.3470774 0.5533834 +0.4586928 0.3470774 0.5533834 +0.4698649 0.3470774 0.5533834 +0.4805811 0.3470774 0.5533834 +0.490876 0.3470774 0.5533834 +0.5007803 0.3470774 0.5533834 +0.510322 0.3470774 0.5533834 +0.5195258 0.3470774 0.5533834 +0.5284142 0.3470774 0.5533834 +0.5370079 0.3470774 0.5533834 +0.5453253 0.3470774 0.5533834 +0.5533834 0.3470774 0.5533834 +0.5611974 0.3470774 0.5533834 +0.5687816 0.3470774 0.5533834 +0.092819 0.3637862 0.5533834 +0.1056428 0.3637862 0.5533834 +0.1201537 0.3637862 0.5533834 +0.1409607 0.3637862 0.5533834 +0.1678172 0.3637862 0.5533834 +0.1950164 0.3637862 0.5533834 +0.2210581 0.3637862 0.5533834 +0.245636 0.3637862 0.5533834 +0.2686816 0.3637862 0.5533834 +0.2902431 0.3637862 0.5533834 +0.3104189 0.3637862 0.5533834 +0.3293248 0.3637862 0.5533834 +0.3470774 0.3637862 0.5533834 +0.3637862 0.3637862 0.5533834 +0.3795513 0.3637862 0.5533834 +0.3944623 0.3637862 0.5533834 +0.4085988 0.3637862 0.5533834 +0.4220313 0.3637862 0.5533834 +0.4348222 0.3637862 0.5533834 +0.4470264 0.3637862 0.5533834 +0.4586928 0.3637862 0.5533834 +0.4698649 0.3637862 0.5533834 +0.4805811 0.3637862 0.5533834 +0.490876 0.3637862 0.5533834 +0.5007803 0.3637862 0.5533834 +0.510322 0.3637862 0.5533834 +0.5195258 0.3637862 0.5533834 +0.5284142 0.3637862 0.5533834 +0.5370079 0.3637862 0.5533834 +0.5453253 0.3637862 0.5533834 +0.5533834 0.3637862 0.5533834 +0.5611974 0.3637862 0.5533834 +0.5687816 0.3637862 0.5533834 +0.092819 0.3795513 0.5533834 +0.1056428 0.3795513 0.5533834 +0.1201537 0.3795513 0.5533834 +0.1409607 0.3795513 0.5533834 +0.1678172 0.3795513 0.5533834 +0.1950164 0.3795513 0.5533834 +0.2210581 0.3795513 0.5533834 +0.245636 0.3795513 0.5533834 +0.2686816 0.3795513 0.5533834 +0.2902431 0.3795513 0.5533834 +0.3104189 0.3795513 0.5533834 +0.3293248 0.3795513 0.5533834 +0.3470774 0.3795513 0.5533834 +0.3637862 0.3795513 0.5533834 +0.3795513 0.3795513 0.5533834 +0.3944623 0.3795513 0.5533834 +0.4085988 0.3795513 0.5533834 +0.4220313 0.3795513 0.5533834 +0.4348222 0.3795513 0.5533834 +0.4470264 0.3795513 0.5533834 +0.4586928 0.3795513 0.5533834 +0.4698649 0.3795513 0.5533834 +0.4805811 0.3795513 0.5533834 +0.490876 0.3795513 0.5533834 +0.5007803 0.3795513 0.5533834 +0.510322 0.3795513 0.5533834 +0.5195258 0.3795513 0.5533834 +0.5284142 0.3795513 0.5533834 +0.5370079 0.3795513 0.5533834 +0.5453253 0.3795513 0.5533834 +0.5533834 0.3795513 0.5533834 +0.5611974 0.3795513 0.5533834 +0.5687816 0.3795513 0.5533834 +0.092819 0.3944623 0.5533834 +0.1056428 0.3944623 0.5533834 +0.1201537 0.3944623 0.5533834 +0.1409607 0.3944623 0.5533834 +0.1678172 0.3944623 0.5533834 +0.1950164 0.3944623 0.5533834 +0.2210581 0.3944623 0.5533834 +0.245636 0.3944623 0.5533834 +0.2686816 0.3944623 0.5533834 +0.2902431 0.3944623 0.5533834 +0.3104189 0.3944623 0.5533834 +0.3293248 0.3944623 0.5533834 +0.3470774 0.3944623 0.5533834 +0.3637862 0.3944623 0.5533834 +0.3795513 0.3944623 0.5533834 +0.3944623 0.3944623 0.5533834 +0.4085988 0.3944623 0.5533834 +0.4220313 0.3944623 0.5533834 +0.4348222 0.3944623 0.5533834 +0.4470264 0.3944623 0.5533834 +0.4586928 0.3944623 0.5533834 +0.4698649 0.3944623 0.5533834 +0.4805811 0.3944623 0.5533834 +0.490876 0.3944623 0.5533834 +0.5007803 0.3944623 0.5533834 +0.510322 0.3944623 0.5533834 +0.5195258 0.3944623 0.5533834 +0.5284142 0.3944623 0.5533834 +0.5370079 0.3944623 0.5533834 +0.5453253 0.3944623 0.5533834 +0.5533834 0.3944623 0.5533834 +0.5611974 0.3944623 0.5533834 +0.5687816 0.3944623 0.5533834 +0.092819 0.4085988 0.5533834 +0.1056428 0.4085988 0.5533834 +0.1201537 0.4085988 0.5533834 +0.1409607 0.4085988 0.5533834 +0.1678172 0.4085988 0.5533834 +0.1950164 0.4085988 0.5533834 +0.2210581 0.4085988 0.5533834 +0.245636 0.4085988 0.5533834 +0.2686816 0.4085988 0.5533834 +0.2902431 0.4085988 0.5533834 +0.3104189 0.4085988 0.5533834 +0.3293248 0.4085988 0.5533834 +0.3470774 0.4085988 0.5533834 +0.3637862 0.4085988 0.5533834 +0.3795513 0.4085988 0.5533834 +0.3944623 0.4085988 0.5533834 +0.4085988 0.4085988 0.5533834 +0.4220313 0.4085988 0.5533834 +0.4348222 0.4085988 0.5533834 +0.4470264 0.4085988 0.5533834 +0.4586928 0.4085988 0.5533834 +0.4698649 0.4085988 0.5533834 +0.4805811 0.4085988 0.5533834 +0.490876 0.4085988 0.5533834 +0.5007803 0.4085988 0.5533834 +0.510322 0.4085988 0.5533834 +0.5195258 0.4085988 0.5533834 +0.5284142 0.4085988 0.5533834 +0.5370079 0.4085988 0.5533834 +0.5453253 0.4085988 0.5533834 +0.5533834 0.4085988 0.5533834 +0.5611974 0.4085988 0.5533834 +0.5687816 0.4085988 0.5533834 +0.092819 0.4220313 0.5533834 +0.1056428 0.4220313 0.5533834 +0.1201537 0.4220313 0.5533834 +0.1409607 0.4220313 0.5533834 +0.1678172 0.4220313 0.5533834 +0.1950164 0.4220313 0.5533834 +0.2210581 0.4220313 0.5533834 +0.245636 0.4220313 0.5533834 +0.2686816 0.4220313 0.5533834 +0.2902431 0.4220313 0.5533834 +0.3104189 0.4220313 0.5533834 +0.3293248 0.4220313 0.5533834 +0.3470774 0.4220313 0.5533834 +0.3637862 0.4220313 0.5533834 +0.3795513 0.4220313 0.5533834 +0.3944623 0.4220313 0.5533834 +0.4085988 0.4220313 0.5533834 +0.4220313 0.4220313 0.5533834 +0.4348222 0.4220313 0.5533834 +0.4470264 0.4220313 0.5533834 +0.4586928 0.4220313 0.5533834 +0.4698649 0.4220313 0.5533834 +0.4805811 0.4220313 0.5533834 +0.490876 0.4220313 0.5533834 +0.5007803 0.4220313 0.5533834 +0.510322 0.4220313 0.5533834 +0.5195258 0.4220313 0.5533834 +0.5284142 0.4220313 0.5533834 +0.5370079 0.4220313 0.5533834 +0.5453253 0.4220313 0.5533834 +0.5533834 0.4220313 0.5533834 +0.5611974 0.4220313 0.5533834 +0.5687816 0.4220313 0.5533834 +0.092819 0.4348222 0.5533834 +0.1056428 0.4348222 0.5533834 +0.1201537 0.4348222 0.5533834 +0.1409607 0.4348222 0.5533834 +0.1678172 0.4348222 0.5533834 +0.1950164 0.4348222 0.5533834 +0.2210581 0.4348222 0.5533834 +0.245636 0.4348222 0.5533834 +0.2686816 0.4348222 0.5533834 +0.2902431 0.4348222 0.5533834 +0.3104189 0.4348222 0.5533834 +0.3293248 0.4348222 0.5533834 +0.3470774 0.4348222 0.5533834 +0.3637862 0.4348222 0.5533834 +0.3795513 0.4348222 0.5533834 +0.3944623 0.4348222 0.5533834 +0.4085988 0.4348222 0.5533834 +0.4220313 0.4348222 0.5533834 +0.4348222 0.4348222 0.5533834 +0.4470264 0.4348222 0.5533834 +0.4586928 0.4348222 0.5533834 +0.4698649 0.4348222 0.5533834 +0.4805811 0.4348222 0.5533834 +0.490876 0.4348222 0.5533834 +0.5007803 0.4348222 0.5533834 +0.510322 0.4348222 0.5533834 +0.5195258 0.4348222 0.5533834 +0.5284142 0.4348222 0.5533834 +0.5370079 0.4348222 0.5533834 +0.5453253 0.4348222 0.5533834 +0.5533834 0.4348222 0.5533834 +0.5611974 0.4348222 0.5533834 +0.5687816 0.4348222 0.5533834 +0.092819 0.4470264 0.5533834 +0.1056428 0.4470264 0.5533834 +0.1201537 0.4470264 0.5533834 +0.1409607 0.4470264 0.5533834 +0.1678172 0.4470264 0.5533834 +0.1950164 0.4470264 0.5533834 +0.2210581 0.4470264 0.5533834 +0.245636 0.4470264 0.5533834 +0.2686816 0.4470264 0.5533834 +0.2902431 0.4470264 0.5533834 +0.3104189 0.4470264 0.5533834 +0.3293248 0.4470264 0.5533834 +0.3470774 0.4470264 0.5533834 +0.3637862 0.4470264 0.5533834 +0.3795513 0.4470264 0.5533834 +0.3944623 0.4470264 0.5533834 +0.4085988 0.4470264 0.5533834 +0.4220313 0.4470264 0.5533834 +0.4348222 0.4470264 0.5533834 +0.4470264 0.4470264 0.5533834 +0.4586928 0.4470264 0.5533834 +0.4698649 0.4470264 0.5533834 +0.4805811 0.4470264 0.5533834 +0.490876 0.4470264 0.5533834 +0.5007803 0.4470264 0.5533834 +0.510322 0.4470264 0.5533834 +0.5195258 0.4470264 0.5533834 +0.5284142 0.4470264 0.5533834 +0.5370079 0.4470264 0.5533834 +0.5453253 0.4470264 0.5533834 +0.5533834 0.4470264 0.5533834 +0.5611974 0.4470264 0.5533834 +0.5687816 0.4470264 0.5533834 +0.092819 0.4586928 0.5533834 +0.1056428 0.4586928 0.5533834 +0.1201537 0.4586928 0.5533834 +0.1409607 0.4586928 0.5533834 +0.1678172 0.4586928 0.5533834 +0.1950164 0.4586928 0.5533834 +0.2210581 0.4586928 0.5533834 +0.245636 0.4586928 0.5533834 +0.2686816 0.4586928 0.5533834 +0.2902431 0.4586928 0.5533834 +0.3104189 0.4586928 0.5533834 +0.3293248 0.4586928 0.5533834 +0.3470774 0.4586928 0.5533834 +0.3637862 0.4586928 0.5533834 +0.3795513 0.4586928 0.5533834 +0.3944623 0.4586928 0.5533834 +0.4085988 0.4586928 0.5533834 +0.4220313 0.4586928 0.5533834 +0.4348222 0.4586928 0.5533834 +0.4470264 0.4586928 0.5533834 +0.4586928 0.4586928 0.5533834 +0.4698649 0.4586928 0.5533834 +0.4805811 0.4586928 0.5533834 +0.490876 0.4586928 0.5533834 +0.5007803 0.4586928 0.5533834 +0.510322 0.4586928 0.5533834 +0.5195258 0.4586928 0.5533834 +0.5284142 0.4586928 0.5533834 +0.5370079 0.4586928 0.5533834 +0.5453253 0.4586928 0.5533834 +0.5533834 0.4586928 0.5533834 +0.5611974 0.4586928 0.5533834 +0.5687816 0.4586928 0.5533834 +0.092819 0.4698649 0.5533834 +0.1056428 0.4698649 0.5533834 +0.1201537 0.4698649 0.5533834 +0.1409607 0.4698649 0.5533834 +0.1678172 0.4698649 0.5533834 +0.1950164 0.4698649 0.5533834 +0.2210581 0.4698649 0.5533834 +0.245636 0.4698649 0.5533834 +0.2686816 0.4698649 0.5533834 +0.2902431 0.4698649 0.5533834 +0.3104189 0.4698649 0.5533834 +0.3293248 0.4698649 0.5533834 +0.3470774 0.4698649 0.5533834 +0.3637862 0.4698649 0.5533834 +0.3795513 0.4698649 0.5533834 +0.3944623 0.4698649 0.5533834 +0.4085988 0.4698649 0.5533834 +0.4220313 0.4698649 0.5533834 +0.4348222 0.4698649 0.5533834 +0.4470264 0.4698649 0.5533834 +0.4586928 0.4698649 0.5533834 +0.4698649 0.4698649 0.5533834 +0.4805811 0.4698649 0.5533834 +0.490876 0.4698649 0.5533834 +0.5007803 0.4698649 0.5533834 +0.510322 0.4698649 0.5533834 +0.5195258 0.4698649 0.5533834 +0.5284142 0.4698649 0.5533834 +0.5370079 0.4698649 0.5533834 +0.5453253 0.4698649 0.5533834 +0.5533834 0.4698649 0.5533834 +0.5611974 0.4698649 0.5533834 +0.5687816 0.4698649 0.5533834 +0.092819 0.4805811 0.5533834 +0.1056428 0.4805811 0.5533834 +0.1201537 0.4805811 0.5533834 +0.1409607 0.4805811 0.5533834 +0.1678172 0.4805811 0.5533834 +0.1950164 0.4805811 0.5533834 +0.2210581 0.4805811 0.5533834 +0.245636 0.4805811 0.5533834 +0.2686816 0.4805811 0.5533834 +0.2902431 0.4805811 0.5533834 +0.3104189 0.4805811 0.5533834 +0.3293248 0.4805811 0.5533834 +0.3470774 0.4805811 0.5533834 +0.3637862 0.4805811 0.5533834 +0.3795513 0.4805811 0.5533834 +0.3944623 0.4805811 0.5533834 +0.4085988 0.4805811 0.5533834 +0.4220313 0.4805811 0.5533834 +0.4348222 0.4805811 0.5533834 +0.4470264 0.4805811 0.5533834 +0.4586928 0.4805811 0.5533834 +0.4698649 0.4805811 0.5533834 +0.4805811 0.4805811 0.5533834 +0.490876 0.4805811 0.5533834 +0.5007803 0.4805811 0.5533834 +0.510322 0.4805811 0.5533834 +0.5195258 0.4805811 0.5533834 +0.5284142 0.4805811 0.5533834 +0.5370079 0.4805811 0.5533834 +0.5453253 0.4805811 0.5533834 +0.5533834 0.4805811 0.5533834 +0.5611974 0.4805811 0.5533834 +0.5687816 0.4805811 0.5533834 +0.092819 0.490876 0.5533834 +0.1056428 0.490876 0.5533834 +0.1201537 0.490876 0.5533834 +0.1409607 0.490876 0.5533834 +0.1678172 0.490876 0.5533834 +0.1950164 0.490876 0.5533834 +0.2210581 0.490876 0.5533834 +0.245636 0.490876 0.5533834 +0.2686816 0.490876 0.5533834 +0.2902431 0.490876 0.5533834 +0.3104189 0.490876 0.5533834 +0.3293248 0.490876 0.5533834 +0.3470774 0.490876 0.5533834 +0.3637862 0.490876 0.5533834 +0.3795513 0.490876 0.5533834 +0.3944623 0.490876 0.5533834 +0.4085988 0.490876 0.5533834 +0.4220313 0.490876 0.5533834 +0.4348222 0.490876 0.5533834 +0.4470264 0.490876 0.5533834 +0.4586928 0.490876 0.5533834 +0.4698649 0.490876 0.5533834 +0.4805811 0.490876 0.5533834 +0.490876 0.490876 0.5533834 +0.5007803 0.490876 0.5533834 +0.510322 0.490876 0.5533834 +0.5195258 0.490876 0.5533834 +0.5284142 0.490876 0.5533834 +0.5370079 0.490876 0.5533834 +0.5453253 0.490876 0.5533834 +0.5533834 0.490876 0.5533834 +0.5611974 0.490876 0.5533834 +0.5687816 0.490876 0.5533834 +0.092819 0.5007803 0.5533834 +0.1056428 0.5007803 0.5533834 +0.1201537 0.5007803 0.5533834 +0.1409607 0.5007803 0.5533834 +0.1678172 0.5007803 0.5533834 +0.1950164 0.5007803 0.5533834 +0.2210581 0.5007803 0.5533834 +0.245636 0.5007803 0.5533834 +0.2686816 0.5007803 0.5533834 +0.2902431 0.5007803 0.5533834 +0.3104189 0.5007803 0.5533834 +0.3293248 0.5007803 0.5533834 +0.3470774 0.5007803 0.5533834 +0.3637862 0.5007803 0.5533834 +0.3795513 0.5007803 0.5533834 +0.3944623 0.5007803 0.5533834 +0.4085988 0.5007803 0.5533834 +0.4220313 0.5007803 0.5533834 +0.4348222 0.5007803 0.5533834 +0.4470264 0.5007803 0.5533834 +0.4586928 0.5007803 0.5533834 +0.4698649 0.5007803 0.5533834 +0.4805811 0.5007803 0.5533834 +0.490876 0.5007803 0.5533834 +0.5007803 0.5007803 0.5533834 +0.510322 0.5007803 0.5533834 +0.5195258 0.5007803 0.5533834 +0.5284142 0.5007803 0.5533834 +0.5370079 0.5007803 0.5533834 +0.5453253 0.5007803 0.5533834 +0.5533834 0.5007803 0.5533834 +0.5611974 0.5007803 0.5533834 +0.5687816 0.5007803 0.5533834 +0.092819 0.510322 0.5533834 +0.1056428 0.510322 0.5533834 +0.1201537 0.510322 0.5533834 +0.1409607 0.510322 0.5533834 +0.1678172 0.510322 0.5533834 +0.1950164 0.510322 0.5533834 +0.2210581 0.510322 0.5533834 +0.245636 0.510322 0.5533834 +0.2686816 0.510322 0.5533834 +0.2902431 0.510322 0.5533834 +0.3104189 0.510322 0.5533834 +0.3293248 0.510322 0.5533834 +0.3470774 0.510322 0.5533834 +0.3637862 0.510322 0.5533834 +0.3795513 0.510322 0.5533834 +0.3944623 0.510322 0.5533834 +0.4085988 0.510322 0.5533834 +0.4220313 0.510322 0.5533834 +0.4348222 0.510322 0.5533834 +0.4470264 0.510322 0.5533834 +0.4586928 0.510322 0.5533834 +0.4698649 0.510322 0.5533834 +0.4805811 0.510322 0.5533834 +0.490876 0.510322 0.5533834 +0.5007803 0.510322 0.5533834 +0.510322 0.510322 0.5533834 +0.5195258 0.510322 0.5533834 +0.5284142 0.510322 0.5533834 +0.5370079 0.510322 0.5533834 +0.5453253 0.510322 0.5533834 +0.5533834 0.510322 0.5533834 +0.5611974 0.510322 0.5533834 +0.5687816 0.510322 0.5533834 +0.092819 0.5195258 0.5533834 +0.1056428 0.5195258 0.5533834 +0.1201537 0.5195258 0.5533834 +0.1409607 0.5195258 0.5533834 +0.1678172 0.5195258 0.5533834 +0.1950164 0.5195258 0.5533834 +0.2210581 0.5195258 0.5533834 +0.245636 0.5195258 0.5533834 +0.2686816 0.5195258 0.5533834 +0.2902431 0.5195258 0.5533834 +0.3104189 0.5195258 0.5533834 +0.3293248 0.5195258 0.5533834 +0.3470774 0.5195258 0.5533834 +0.3637862 0.5195258 0.5533834 +0.3795513 0.5195258 0.5533834 +0.3944623 0.5195258 0.5533834 +0.4085988 0.5195258 0.5533834 +0.4220313 0.5195258 0.5533834 +0.4348222 0.5195258 0.5533834 +0.4470264 0.5195258 0.5533834 +0.4586928 0.5195258 0.5533834 +0.4698649 0.5195258 0.5533834 +0.4805811 0.5195258 0.5533834 +0.490876 0.5195258 0.5533834 +0.5007803 0.5195258 0.5533834 +0.510322 0.5195258 0.5533834 +0.5195258 0.5195258 0.5533834 +0.5284142 0.5195258 0.5533834 +0.5370079 0.5195258 0.5533834 +0.5453253 0.5195258 0.5533834 +0.5533834 0.5195258 0.5533834 +0.5611974 0.5195258 0.5533834 +0.5687816 0.5195258 0.5533834 +0.092819 0.5284142 0.5533834 +0.1056428 0.5284142 0.5533834 +0.1201537 0.5284142 0.5533834 +0.1409607 0.5284142 0.5533834 +0.1678172 0.5284142 0.5533834 +0.1950164 0.5284142 0.5533834 +0.2210581 0.5284142 0.5533834 +0.245636 0.5284142 0.5533834 +0.2686816 0.5284142 0.5533834 +0.2902431 0.5284142 0.5533834 +0.3104189 0.5284142 0.5533834 +0.3293248 0.5284142 0.5533834 +0.3470774 0.5284142 0.5533834 +0.3637862 0.5284142 0.5533834 +0.3795513 0.5284142 0.5533834 +0.3944623 0.5284142 0.5533834 +0.4085988 0.5284142 0.5533834 +0.4220313 0.5284142 0.5533834 +0.4348222 0.5284142 0.5533834 +0.4470264 0.5284142 0.5533834 +0.4586928 0.5284142 0.5533834 +0.4698649 0.5284142 0.5533834 +0.4805811 0.5284142 0.5533834 +0.490876 0.5284142 0.5533834 +0.5007803 0.5284142 0.5533834 +0.510322 0.5284142 0.5533834 +0.5195258 0.5284142 0.5533834 +0.5284142 0.5284142 0.5533834 +0.5370079 0.5284142 0.5533834 +0.5453253 0.5284142 0.5533834 +0.5533834 0.5284142 0.5533834 +0.5611974 0.5284142 0.5533834 +0.5687816 0.5284142 0.5533834 +0.092819 0.5370079 0.5533834 +0.1056428 0.5370079 0.5533834 +0.1201537 0.5370079 0.5533834 +0.1409607 0.5370079 0.5533834 +0.1678172 0.5370079 0.5533834 +0.1950164 0.5370079 0.5533834 +0.2210581 0.5370079 0.5533834 +0.245636 0.5370079 0.5533834 +0.2686816 0.5370079 0.5533834 +0.2902431 0.5370079 0.5533834 +0.3104189 0.5370079 0.5533834 +0.3293248 0.5370079 0.5533834 +0.3470774 0.5370079 0.5533834 +0.3637862 0.5370079 0.5533834 +0.3795513 0.5370079 0.5533834 +0.3944623 0.5370079 0.5533834 +0.4085988 0.5370079 0.5533834 +0.4220313 0.5370079 0.5533834 +0.4348222 0.5370079 0.5533834 +0.4470264 0.5370079 0.5533834 +0.4586928 0.5370079 0.5533834 +0.4698649 0.5370079 0.5533834 +0.4805811 0.5370079 0.5533834 +0.490876 0.5370079 0.5533834 +0.5007803 0.5370079 0.5533834 +0.510322 0.5370079 0.5533834 +0.5195258 0.5370079 0.5533834 +0.5284142 0.5370079 0.5533834 +0.5370079 0.5370079 0.5533834 +0.5453253 0.5370079 0.5533834 +0.5533834 0.5370079 0.5533834 +0.5611974 0.5370079 0.5533834 +0.5687816 0.5370079 0.5533834 +0.092819 0.5453253 0.5533834 +0.1056428 0.5453253 0.5533834 +0.1201537 0.5453253 0.5533834 +0.1409607 0.5453253 0.5533834 +0.1678172 0.5453253 0.5533834 +0.1950164 0.5453253 0.5533834 +0.2210581 0.5453253 0.5533834 +0.245636 0.5453253 0.5533834 +0.2686816 0.5453253 0.5533834 +0.2902431 0.5453253 0.5533834 +0.3104189 0.5453253 0.5533834 +0.3293248 0.5453253 0.5533834 +0.3470774 0.5453253 0.5533834 +0.3637862 0.5453253 0.5533834 +0.3795513 0.5453253 0.5533834 +0.3944623 0.5453253 0.5533834 +0.4085988 0.5453253 0.5533834 +0.4220313 0.5453253 0.5533834 +0.4348222 0.5453253 0.5533834 +0.4470264 0.5453253 0.5533834 +0.4586928 0.5453253 0.5533834 +0.4698649 0.5453253 0.5533834 +0.4805811 0.5453253 0.5533834 +0.490876 0.5453253 0.5533834 +0.5007803 0.5453253 0.5533834 +0.510322 0.5453253 0.5533834 +0.5195258 0.5453253 0.5533834 +0.5284142 0.5453253 0.5533834 +0.5370079 0.5453253 0.5533834 +0.5453253 0.5453253 0.5533834 +0.5533834 0.5453253 0.5533834 +0.5611974 0.5453253 0.5533834 +0.5687816 0.5453253 0.5533834 +0.092819 0.5533834 0.5533834 +0.1056428 0.5533834 0.5533834 +0.1201537 0.5533834 0.5533834 +0.1409607 0.5533834 0.5533834 +0.1678172 0.5533834 0.5533834 +0.1950164 0.5533834 0.5533834 +0.2210581 0.5533834 0.5533834 +0.245636 0.5533834 0.5533834 +0.2686816 0.5533834 0.5533834 +0.2902431 0.5533834 0.5533834 +0.3104189 0.5533834 0.5533834 +0.3293248 0.5533834 0.5533834 +0.3470774 0.5533834 0.5533834 +0.3637862 0.5533834 0.5533834 +0.3795513 0.5533834 0.5533834 +0.3944623 0.5533834 0.5533834 +0.4085988 0.5533834 0.5533834 +0.4220313 0.5533834 0.5533834 +0.4348222 0.5533834 0.5533834 +0.4470264 0.5533834 0.5533834 +0.4586928 0.5533834 0.5533834 +0.4698649 0.5533834 0.5533834 +0.4805811 0.5533834 0.5533834 +0.490876 0.5533834 0.5533834 +0.5007803 0.5533834 0.5533834 +0.510322 0.5533834 0.5533834 +0.5195258 0.5533834 0.5533834 +0.5284142 0.5533834 0.5533834 +0.5370079 0.5533834 0.5533834 +0.5453253 0.5533834 0.5533834 +0.5533834 0.5533834 0.5533834 +0.5611974 0.5533834 0.5533834 +0.5687816 0.5533834 0.5533834 +0.092819 0.5611974 0.5533834 +0.1056428 0.5611974 0.5533834 +0.1201537 0.5611974 0.5533834 +0.1409607 0.5611974 0.5533834 +0.1678172 0.5611974 0.5533834 +0.1950164 0.5611974 0.5533834 +0.2210581 0.5611974 0.5533834 +0.245636 0.5611974 0.5533834 +0.2686816 0.5611974 0.5533834 +0.2902431 0.5611974 0.5533834 +0.3104189 0.5611974 0.5533834 +0.3293248 0.5611974 0.5533834 +0.3470774 0.5611974 0.5533834 +0.3637862 0.5611974 0.5533834 +0.3795513 0.5611974 0.5533834 +0.3944623 0.5611974 0.5533834 +0.4085988 0.5611974 0.5533834 +0.4220313 0.5611974 0.5533834 +0.4348222 0.5611974 0.5533834 +0.4470264 0.5611974 0.5533834 +0.4586928 0.5611974 0.5533834 +0.4698649 0.5611974 0.5533834 +0.4805811 0.5611974 0.5533834 +0.490876 0.5611974 0.5533834 +0.5007803 0.5611974 0.5533834 +0.510322 0.5611974 0.5533834 +0.5195258 0.5611974 0.5533834 +0.5284142 0.5611974 0.5533834 +0.5370079 0.5611974 0.5533834 +0.5453253 0.5611974 0.5533834 +0.5533834 0.5611974 0.5533834 +0.5611974 0.5611974 0.5533834 +0.5687816 0.5611974 0.5533834 +0.092819 0.5687816 0.5533834 +0.1056428 0.5687816 0.5533834 +0.1201537 0.5687816 0.5533834 +0.1409607 0.5687816 0.5533834 +0.1678172 0.5687816 0.5533834 +0.1950164 0.5687816 0.5533834 +0.2210581 0.5687816 0.5533834 +0.245636 0.5687816 0.5533834 +0.2686816 0.5687816 0.5533834 +0.2902431 0.5687816 0.5533834 +0.3104189 0.5687816 0.5533834 +0.3293248 0.5687816 0.5533834 +0.3470774 0.5687816 0.5533834 +0.3637862 0.5687816 0.5533834 +0.3795513 0.5687816 0.5533834 +0.3944623 0.5687816 0.5533834 +0.4085988 0.5687816 0.5533834 +0.4220313 0.5687816 0.5533834 +0.4348222 0.5687816 0.5533834 +0.4470264 0.5687816 0.5533834 +0.4586928 0.5687816 0.5533834 +0.4698649 0.5687816 0.5533834 +0.4805811 0.5687816 0.5533834 +0.490876 0.5687816 0.5533834 +0.5007803 0.5687816 0.5533834 +0.510322 0.5687816 0.5533834 +0.5195258 0.5687816 0.5533834 +0.5284142 0.5687816 0.5533834 +0.5370079 0.5687816 0.5533834 +0.5453253 0.5687816 0.5533834 +0.5533834 0.5687816 0.5533834 +0.5611974 0.5687816 0.5533834 +0.5687816 0.5687816 0.5533834 +0.092819 0.092819 0.5611974 +0.1056428 0.092819 0.5611974 +0.1201537 0.092819 0.5611974 +0.1409607 0.092819 0.5611974 +0.1678172 0.092819 0.5611974 +0.1950164 0.092819 0.5611974 +0.2210581 0.092819 0.5611974 +0.245636 0.092819 0.5611974 +0.2686816 0.092819 0.5611974 +0.2902431 0.092819 0.5611974 +0.3104189 0.092819 0.5611974 +0.3293248 0.092819 0.5611974 +0.3470774 0.092819 0.5611974 +0.3637862 0.092819 0.5611974 +0.3795513 0.092819 0.5611974 +0.3944623 0.092819 0.5611974 +0.4085988 0.092819 0.5611974 +0.4220313 0.092819 0.5611974 +0.4348222 0.092819 0.5611974 +0.4470264 0.092819 0.5611974 +0.4586928 0.092819 0.5611974 +0.4698649 0.092819 0.5611974 +0.4805811 0.092819 0.5611974 +0.490876 0.092819 0.5611974 +0.5007803 0.092819 0.5611974 +0.510322 0.092819 0.5611974 +0.5195258 0.092819 0.5611974 +0.5284142 0.092819 0.5611974 +0.5370079 0.092819 0.5611974 +0.5453253 0.092819 0.5611974 +0.5533834 0.092819 0.5611974 +0.5611974 0.092819 0.5611974 +0.5687816 0.092819 0.5611974 +0.092819 0.1056428 0.5611974 +0.1056428 0.1056428 0.5611974 +0.1201537 0.1056428 0.5611974 +0.1409607 0.1056428 0.5611974 +0.1678172 0.1056428 0.5611974 +0.1950164 0.1056428 0.5611974 +0.2210581 0.1056428 0.5611974 +0.245636 0.1056428 0.5611974 +0.2686816 0.1056428 0.5611974 +0.2902431 0.1056428 0.5611974 +0.3104189 0.1056428 0.5611974 +0.3293248 0.1056428 0.5611974 +0.3470774 0.1056428 0.5611974 +0.3637862 0.1056428 0.5611974 +0.3795513 0.1056428 0.5611974 +0.3944623 0.1056428 0.5611974 +0.4085988 0.1056428 0.5611974 +0.4220313 0.1056428 0.5611974 +0.4348222 0.1056428 0.5611974 +0.4470264 0.1056428 0.5611974 +0.4586928 0.1056428 0.5611974 +0.4698649 0.1056428 0.5611974 +0.4805811 0.1056428 0.5611974 +0.490876 0.1056428 0.5611974 +0.5007803 0.1056428 0.5611974 +0.510322 0.1056428 0.5611974 +0.5195258 0.1056428 0.5611974 +0.5284142 0.1056428 0.5611974 +0.5370079 0.1056428 0.5611974 +0.5453253 0.1056428 0.5611974 +0.5533834 0.1056428 0.5611974 +0.5611974 0.1056428 0.5611974 +0.5687816 0.1056428 0.5611974 +0.092819 0.1201537 0.5611974 +0.1056428 0.1201537 0.5611974 +0.1201537 0.1201537 0.5611974 +0.1409607 0.1201537 0.5611974 +0.1678172 0.1201537 0.5611974 +0.1950164 0.1201537 0.5611974 +0.2210581 0.1201537 0.5611974 +0.245636 0.1201537 0.5611974 +0.2686816 0.1201537 0.5611974 +0.2902431 0.1201537 0.5611974 +0.3104189 0.1201537 0.5611974 +0.3293248 0.1201537 0.5611974 +0.3470774 0.1201537 0.5611974 +0.3637862 0.1201537 0.5611974 +0.3795513 0.1201537 0.5611974 +0.3944623 0.1201537 0.5611974 +0.4085988 0.1201537 0.5611974 +0.4220313 0.1201537 0.5611974 +0.4348222 0.1201537 0.5611974 +0.4470264 0.1201537 0.5611974 +0.4586928 0.1201537 0.5611974 +0.4698649 0.1201537 0.5611974 +0.4805811 0.1201537 0.5611974 +0.490876 0.1201537 0.5611974 +0.5007803 0.1201537 0.5611974 +0.510322 0.1201537 0.5611974 +0.5195258 0.1201537 0.5611974 +0.5284142 0.1201537 0.5611974 +0.5370079 0.1201537 0.5611974 +0.5453253 0.1201537 0.5611974 +0.5533834 0.1201537 0.5611974 +0.5611974 0.1201537 0.5611974 +0.5687816 0.1201537 0.5611974 +0.092819 0.1409607 0.5611974 +0.1056428 0.1409607 0.5611974 +0.1201537 0.1409607 0.5611974 +0.1409607 0.1409607 0.5611974 +0.1678172 0.1409607 0.5611974 +0.1950164 0.1409607 0.5611974 +0.2210581 0.1409607 0.5611974 +0.245636 0.1409607 0.5611974 +0.2686816 0.1409607 0.5611974 +0.2902431 0.1409607 0.5611974 +0.3104189 0.1409607 0.5611974 +0.3293248 0.1409607 0.5611974 +0.3470774 0.1409607 0.5611974 +0.3637862 0.1409607 0.5611974 +0.3795513 0.1409607 0.5611974 +0.3944623 0.1409607 0.5611974 +0.4085988 0.1409607 0.5611974 +0.4220313 0.1409607 0.5611974 +0.4348222 0.1409607 0.5611974 +0.4470264 0.1409607 0.5611974 +0.4586928 0.1409607 0.5611974 +0.4698649 0.1409607 0.5611974 +0.4805811 0.1409607 0.5611974 +0.490876 0.1409607 0.5611974 +0.5007803 0.1409607 0.5611974 +0.510322 0.1409607 0.5611974 +0.5195258 0.1409607 0.5611974 +0.5284142 0.1409607 0.5611974 +0.5370079 0.1409607 0.5611974 +0.5453253 0.1409607 0.5611974 +0.5533834 0.1409607 0.5611974 +0.5611974 0.1409607 0.5611974 +0.5687816 0.1409607 0.5611974 +0.092819 0.1678172 0.5611974 +0.1056428 0.1678172 0.5611974 +0.1201537 0.1678172 0.5611974 +0.1409607 0.1678172 0.5611974 +0.1678172 0.1678172 0.5611974 +0.1950164 0.1678172 0.5611974 +0.2210581 0.1678172 0.5611974 +0.245636 0.1678172 0.5611974 +0.2686816 0.1678172 0.5611974 +0.2902431 0.1678172 0.5611974 +0.3104189 0.1678172 0.5611974 +0.3293248 0.1678172 0.5611974 +0.3470774 0.1678172 0.5611974 +0.3637862 0.1678172 0.5611974 +0.3795513 0.1678172 0.5611974 +0.3944623 0.1678172 0.5611974 +0.4085988 0.1678172 0.5611974 +0.4220313 0.1678172 0.5611974 +0.4348222 0.1678172 0.5611974 +0.4470264 0.1678172 0.5611974 +0.4586928 0.1678172 0.5611974 +0.4698649 0.1678172 0.5611974 +0.4805811 0.1678172 0.5611974 +0.490876 0.1678172 0.5611974 +0.5007803 0.1678172 0.5611974 +0.510322 0.1678172 0.5611974 +0.5195258 0.1678172 0.5611974 +0.5284142 0.1678172 0.5611974 +0.5370079 0.1678172 0.5611974 +0.5453253 0.1678172 0.5611974 +0.5533834 0.1678172 0.5611974 +0.5611974 0.1678172 0.5611974 +0.5687816 0.1678172 0.5611974 +0.092819 0.1950164 0.5611974 +0.1056428 0.1950164 0.5611974 +0.1201537 0.1950164 0.5611974 +0.1409607 0.1950164 0.5611974 +0.1678172 0.1950164 0.5611974 +0.1950164 0.1950164 0.5611974 +0.2210581 0.1950164 0.5611974 +0.245636 0.1950164 0.5611974 +0.2686816 0.1950164 0.5611974 +0.2902431 0.1950164 0.5611974 +0.3104189 0.1950164 0.5611974 +0.3293248 0.1950164 0.5611974 +0.3470774 0.1950164 0.5611974 +0.3637862 0.1950164 0.5611974 +0.3795513 0.1950164 0.5611974 +0.3944623 0.1950164 0.5611974 +0.4085988 0.1950164 0.5611974 +0.4220313 0.1950164 0.5611974 +0.4348222 0.1950164 0.5611974 +0.4470264 0.1950164 0.5611974 +0.4586928 0.1950164 0.5611974 +0.4698649 0.1950164 0.5611974 +0.4805811 0.1950164 0.5611974 +0.490876 0.1950164 0.5611974 +0.5007803 0.1950164 0.5611974 +0.510322 0.1950164 0.5611974 +0.5195258 0.1950164 0.5611974 +0.5284142 0.1950164 0.5611974 +0.5370079 0.1950164 0.5611974 +0.5453253 0.1950164 0.5611974 +0.5533834 0.1950164 0.5611974 +0.5611974 0.1950164 0.5611974 +0.5687816 0.1950164 0.5611974 +0.092819 0.2210581 0.5611974 +0.1056428 0.2210581 0.5611974 +0.1201537 0.2210581 0.5611974 +0.1409607 0.2210581 0.5611974 +0.1678172 0.2210581 0.5611974 +0.1950164 0.2210581 0.5611974 +0.2210581 0.2210581 0.5611974 +0.245636 0.2210581 0.5611974 +0.2686816 0.2210581 0.5611974 +0.2902431 0.2210581 0.5611974 +0.3104189 0.2210581 0.5611974 +0.3293248 0.2210581 0.5611974 +0.3470774 0.2210581 0.5611974 +0.3637862 0.2210581 0.5611974 +0.3795513 0.2210581 0.5611974 +0.3944623 0.2210581 0.5611974 +0.4085988 0.2210581 0.5611974 +0.4220313 0.2210581 0.5611974 +0.4348222 0.2210581 0.5611974 +0.4470264 0.2210581 0.5611974 +0.4586928 0.2210581 0.5611974 +0.4698649 0.2210581 0.5611974 +0.4805811 0.2210581 0.5611974 +0.490876 0.2210581 0.5611974 +0.5007803 0.2210581 0.5611974 +0.510322 0.2210581 0.5611974 +0.5195258 0.2210581 0.5611974 +0.5284142 0.2210581 0.5611974 +0.5370079 0.2210581 0.5611974 +0.5453253 0.2210581 0.5611974 +0.5533834 0.2210581 0.5611974 +0.5611974 0.2210581 0.5611974 +0.5687816 0.2210581 0.5611974 +0.092819 0.245636 0.5611974 +0.1056428 0.245636 0.5611974 +0.1201537 0.245636 0.5611974 +0.1409607 0.245636 0.5611974 +0.1678172 0.245636 0.5611974 +0.1950164 0.245636 0.5611974 +0.2210581 0.245636 0.5611974 +0.245636 0.245636 0.5611974 +0.2686816 0.245636 0.5611974 +0.2902431 0.245636 0.5611974 +0.3104189 0.245636 0.5611974 +0.3293248 0.245636 0.5611974 +0.3470774 0.245636 0.5611974 +0.3637862 0.245636 0.5611974 +0.3795513 0.245636 0.5611974 +0.3944623 0.245636 0.5611974 +0.4085988 0.245636 0.5611974 +0.4220313 0.245636 0.5611974 +0.4348222 0.245636 0.5611974 +0.4470264 0.245636 0.5611974 +0.4586928 0.245636 0.5611974 +0.4698649 0.245636 0.5611974 +0.4805811 0.245636 0.5611974 +0.490876 0.245636 0.5611974 +0.5007803 0.245636 0.5611974 +0.510322 0.245636 0.5611974 +0.5195258 0.245636 0.5611974 +0.5284142 0.245636 0.5611974 +0.5370079 0.245636 0.5611974 +0.5453253 0.245636 0.5611974 +0.5533834 0.245636 0.5611974 +0.5611974 0.245636 0.5611974 +0.5687816 0.245636 0.5611974 +0.092819 0.2686816 0.5611974 +0.1056428 0.2686816 0.5611974 +0.1201537 0.2686816 0.5611974 +0.1409607 0.2686816 0.5611974 +0.1678172 0.2686816 0.5611974 +0.1950164 0.2686816 0.5611974 +0.2210581 0.2686816 0.5611974 +0.245636 0.2686816 0.5611974 +0.2686816 0.2686816 0.5611974 +0.2902431 0.2686816 0.5611974 +0.3104189 0.2686816 0.5611974 +0.3293248 0.2686816 0.5611974 +0.3470774 0.2686816 0.5611974 +0.3637862 0.2686816 0.5611974 +0.3795513 0.2686816 0.5611974 +0.3944623 0.2686816 0.5611974 +0.4085988 0.2686816 0.5611974 +0.4220313 0.2686816 0.5611974 +0.4348222 0.2686816 0.5611974 +0.4470264 0.2686816 0.5611974 +0.4586928 0.2686816 0.5611974 +0.4698649 0.2686816 0.5611974 +0.4805811 0.2686816 0.5611974 +0.490876 0.2686816 0.5611974 +0.5007803 0.2686816 0.5611974 +0.510322 0.2686816 0.5611974 +0.5195258 0.2686816 0.5611974 +0.5284142 0.2686816 0.5611974 +0.5370079 0.2686816 0.5611974 +0.5453253 0.2686816 0.5611974 +0.5533834 0.2686816 0.5611974 +0.5611974 0.2686816 0.5611974 +0.5687816 0.2686816 0.5611974 +0.092819 0.2902431 0.5611974 +0.1056428 0.2902431 0.5611974 +0.1201537 0.2902431 0.5611974 +0.1409607 0.2902431 0.5611974 +0.1678172 0.2902431 0.5611974 +0.1950164 0.2902431 0.5611974 +0.2210581 0.2902431 0.5611974 +0.245636 0.2902431 0.5611974 +0.2686816 0.2902431 0.5611974 +0.2902431 0.2902431 0.5611974 +0.3104189 0.2902431 0.5611974 +0.3293248 0.2902431 0.5611974 +0.3470774 0.2902431 0.5611974 +0.3637862 0.2902431 0.5611974 +0.3795513 0.2902431 0.5611974 +0.3944623 0.2902431 0.5611974 +0.4085988 0.2902431 0.5611974 +0.4220313 0.2902431 0.5611974 +0.4348222 0.2902431 0.5611974 +0.4470264 0.2902431 0.5611974 +0.4586928 0.2902431 0.5611974 +0.4698649 0.2902431 0.5611974 +0.4805811 0.2902431 0.5611974 +0.490876 0.2902431 0.5611974 +0.5007803 0.2902431 0.5611974 +0.510322 0.2902431 0.5611974 +0.5195258 0.2902431 0.5611974 +0.5284142 0.2902431 0.5611974 +0.5370079 0.2902431 0.5611974 +0.5453253 0.2902431 0.5611974 +0.5533834 0.2902431 0.5611974 +0.5611974 0.2902431 0.5611974 +0.5687816 0.2902431 0.5611974 +0.092819 0.3104189 0.5611974 +0.1056428 0.3104189 0.5611974 +0.1201537 0.3104189 0.5611974 +0.1409607 0.3104189 0.5611974 +0.1678172 0.3104189 0.5611974 +0.1950164 0.3104189 0.5611974 +0.2210581 0.3104189 0.5611974 +0.245636 0.3104189 0.5611974 +0.2686816 0.3104189 0.5611974 +0.2902431 0.3104189 0.5611974 +0.3104189 0.3104189 0.5611974 +0.3293248 0.3104189 0.5611974 +0.3470774 0.3104189 0.5611974 +0.3637862 0.3104189 0.5611974 +0.3795513 0.3104189 0.5611974 +0.3944623 0.3104189 0.5611974 +0.4085988 0.3104189 0.5611974 +0.4220313 0.3104189 0.5611974 +0.4348222 0.3104189 0.5611974 +0.4470264 0.3104189 0.5611974 +0.4586928 0.3104189 0.5611974 +0.4698649 0.3104189 0.5611974 +0.4805811 0.3104189 0.5611974 +0.490876 0.3104189 0.5611974 +0.5007803 0.3104189 0.5611974 +0.510322 0.3104189 0.5611974 +0.5195258 0.3104189 0.5611974 +0.5284142 0.3104189 0.5611974 +0.5370079 0.3104189 0.5611974 +0.5453253 0.3104189 0.5611974 +0.5533834 0.3104189 0.5611974 +0.5611974 0.3104189 0.5611974 +0.5687816 0.3104189 0.5611974 +0.092819 0.3293248 0.5611974 +0.1056428 0.3293248 0.5611974 +0.1201537 0.3293248 0.5611974 +0.1409607 0.3293248 0.5611974 +0.1678172 0.3293248 0.5611974 +0.1950164 0.3293248 0.5611974 +0.2210581 0.3293248 0.5611974 +0.245636 0.3293248 0.5611974 +0.2686816 0.3293248 0.5611974 +0.2902431 0.3293248 0.5611974 +0.3104189 0.3293248 0.5611974 +0.3293248 0.3293248 0.5611974 +0.3470774 0.3293248 0.5611974 +0.3637862 0.3293248 0.5611974 +0.3795513 0.3293248 0.5611974 +0.3944623 0.3293248 0.5611974 +0.4085988 0.3293248 0.5611974 +0.4220313 0.3293248 0.5611974 +0.4348222 0.3293248 0.5611974 +0.4470264 0.3293248 0.5611974 +0.4586928 0.3293248 0.5611974 +0.4698649 0.3293248 0.5611974 +0.4805811 0.3293248 0.5611974 +0.490876 0.3293248 0.5611974 +0.5007803 0.3293248 0.5611974 +0.510322 0.3293248 0.5611974 +0.5195258 0.3293248 0.5611974 +0.5284142 0.3293248 0.5611974 +0.5370079 0.3293248 0.5611974 +0.5453253 0.3293248 0.5611974 +0.5533834 0.3293248 0.5611974 +0.5611974 0.3293248 0.5611974 +0.5687816 0.3293248 0.5611974 +0.092819 0.3470774 0.5611974 +0.1056428 0.3470774 0.5611974 +0.1201537 0.3470774 0.5611974 +0.1409607 0.3470774 0.5611974 +0.1678172 0.3470774 0.5611974 +0.1950164 0.3470774 0.5611974 +0.2210581 0.3470774 0.5611974 +0.245636 0.3470774 0.5611974 +0.2686816 0.3470774 0.5611974 +0.2902431 0.3470774 0.5611974 +0.3104189 0.3470774 0.5611974 +0.3293248 0.3470774 0.5611974 +0.3470774 0.3470774 0.5611974 +0.3637862 0.3470774 0.5611974 +0.3795513 0.3470774 0.5611974 +0.3944623 0.3470774 0.5611974 +0.4085988 0.3470774 0.5611974 +0.4220313 0.3470774 0.5611974 +0.4348222 0.3470774 0.5611974 +0.4470264 0.3470774 0.5611974 +0.4586928 0.3470774 0.5611974 +0.4698649 0.3470774 0.5611974 +0.4805811 0.3470774 0.5611974 +0.490876 0.3470774 0.5611974 +0.5007803 0.3470774 0.5611974 +0.510322 0.3470774 0.5611974 +0.5195258 0.3470774 0.5611974 +0.5284142 0.3470774 0.5611974 +0.5370079 0.3470774 0.5611974 +0.5453253 0.3470774 0.5611974 +0.5533834 0.3470774 0.5611974 +0.5611974 0.3470774 0.5611974 +0.5687816 0.3470774 0.5611974 +0.092819 0.3637862 0.5611974 +0.1056428 0.3637862 0.5611974 +0.1201537 0.3637862 0.5611974 +0.1409607 0.3637862 0.5611974 +0.1678172 0.3637862 0.5611974 +0.1950164 0.3637862 0.5611974 +0.2210581 0.3637862 0.5611974 +0.245636 0.3637862 0.5611974 +0.2686816 0.3637862 0.5611974 +0.2902431 0.3637862 0.5611974 +0.3104189 0.3637862 0.5611974 +0.3293248 0.3637862 0.5611974 +0.3470774 0.3637862 0.5611974 +0.3637862 0.3637862 0.5611974 +0.3795513 0.3637862 0.5611974 +0.3944623 0.3637862 0.5611974 +0.4085988 0.3637862 0.5611974 +0.4220313 0.3637862 0.5611974 +0.4348222 0.3637862 0.5611974 +0.4470264 0.3637862 0.5611974 +0.4586928 0.3637862 0.5611974 +0.4698649 0.3637862 0.5611974 +0.4805811 0.3637862 0.5611974 +0.490876 0.3637862 0.5611974 +0.5007803 0.3637862 0.5611974 +0.510322 0.3637862 0.5611974 +0.5195258 0.3637862 0.5611974 +0.5284142 0.3637862 0.5611974 +0.5370079 0.3637862 0.5611974 +0.5453253 0.3637862 0.5611974 +0.5533834 0.3637862 0.5611974 +0.5611974 0.3637862 0.5611974 +0.5687816 0.3637862 0.5611974 +0.092819 0.3795513 0.5611974 +0.1056428 0.3795513 0.5611974 +0.1201537 0.3795513 0.5611974 +0.1409607 0.3795513 0.5611974 +0.1678172 0.3795513 0.5611974 +0.1950164 0.3795513 0.5611974 +0.2210581 0.3795513 0.5611974 +0.245636 0.3795513 0.5611974 +0.2686816 0.3795513 0.5611974 +0.2902431 0.3795513 0.5611974 +0.3104189 0.3795513 0.5611974 +0.3293248 0.3795513 0.5611974 +0.3470774 0.3795513 0.5611974 +0.3637862 0.3795513 0.5611974 +0.3795513 0.3795513 0.5611974 +0.3944623 0.3795513 0.5611974 +0.4085988 0.3795513 0.5611974 +0.4220313 0.3795513 0.5611974 +0.4348222 0.3795513 0.5611974 +0.4470264 0.3795513 0.5611974 +0.4586928 0.3795513 0.5611974 +0.4698649 0.3795513 0.5611974 +0.4805811 0.3795513 0.5611974 +0.490876 0.3795513 0.5611974 +0.5007803 0.3795513 0.5611974 +0.510322 0.3795513 0.5611974 +0.5195258 0.3795513 0.5611974 +0.5284142 0.3795513 0.5611974 +0.5370079 0.3795513 0.5611974 +0.5453253 0.3795513 0.5611974 +0.5533834 0.3795513 0.5611974 +0.5611974 0.3795513 0.5611974 +0.5687816 0.3795513 0.5611974 +0.092819 0.3944623 0.5611974 +0.1056428 0.3944623 0.5611974 +0.1201537 0.3944623 0.5611974 +0.1409607 0.3944623 0.5611974 +0.1678172 0.3944623 0.5611974 +0.1950164 0.3944623 0.5611974 +0.2210581 0.3944623 0.5611974 +0.245636 0.3944623 0.5611974 +0.2686816 0.3944623 0.5611974 +0.2902431 0.3944623 0.5611974 +0.3104189 0.3944623 0.5611974 +0.3293248 0.3944623 0.5611974 +0.3470774 0.3944623 0.5611974 +0.3637862 0.3944623 0.5611974 +0.3795513 0.3944623 0.5611974 +0.3944623 0.3944623 0.5611974 +0.4085988 0.3944623 0.5611974 +0.4220313 0.3944623 0.5611974 +0.4348222 0.3944623 0.5611974 +0.4470264 0.3944623 0.5611974 +0.4586928 0.3944623 0.5611974 +0.4698649 0.3944623 0.5611974 +0.4805811 0.3944623 0.5611974 +0.490876 0.3944623 0.5611974 +0.5007803 0.3944623 0.5611974 +0.510322 0.3944623 0.5611974 +0.5195258 0.3944623 0.5611974 +0.5284142 0.3944623 0.5611974 +0.5370079 0.3944623 0.5611974 +0.5453253 0.3944623 0.5611974 +0.5533834 0.3944623 0.5611974 +0.5611974 0.3944623 0.5611974 +0.5687816 0.3944623 0.5611974 +0.092819 0.4085988 0.5611974 +0.1056428 0.4085988 0.5611974 +0.1201537 0.4085988 0.5611974 +0.1409607 0.4085988 0.5611974 +0.1678172 0.4085988 0.5611974 +0.1950164 0.4085988 0.5611974 +0.2210581 0.4085988 0.5611974 +0.245636 0.4085988 0.5611974 +0.2686816 0.4085988 0.5611974 +0.2902431 0.4085988 0.5611974 +0.3104189 0.4085988 0.5611974 +0.3293248 0.4085988 0.5611974 +0.3470774 0.4085988 0.5611974 +0.3637862 0.4085988 0.5611974 +0.3795513 0.4085988 0.5611974 +0.3944623 0.4085988 0.5611974 +0.4085988 0.4085988 0.5611974 +0.4220313 0.4085988 0.5611974 +0.4348222 0.4085988 0.5611974 +0.4470264 0.4085988 0.5611974 +0.4586928 0.4085988 0.5611974 +0.4698649 0.4085988 0.5611974 +0.4805811 0.4085988 0.5611974 +0.490876 0.4085988 0.5611974 +0.5007803 0.4085988 0.5611974 +0.510322 0.4085988 0.5611974 +0.5195258 0.4085988 0.5611974 +0.5284142 0.4085988 0.5611974 +0.5370079 0.4085988 0.5611974 +0.5453253 0.4085988 0.5611974 +0.5533834 0.4085988 0.5611974 +0.5611974 0.4085988 0.5611974 +0.5687816 0.4085988 0.5611974 +0.092819 0.4220313 0.5611974 +0.1056428 0.4220313 0.5611974 +0.1201537 0.4220313 0.5611974 +0.1409607 0.4220313 0.5611974 +0.1678172 0.4220313 0.5611974 +0.1950164 0.4220313 0.5611974 +0.2210581 0.4220313 0.5611974 +0.245636 0.4220313 0.5611974 +0.2686816 0.4220313 0.5611974 +0.2902431 0.4220313 0.5611974 +0.3104189 0.4220313 0.5611974 +0.3293248 0.4220313 0.5611974 +0.3470774 0.4220313 0.5611974 +0.3637862 0.4220313 0.5611974 +0.3795513 0.4220313 0.5611974 +0.3944623 0.4220313 0.5611974 +0.4085988 0.4220313 0.5611974 +0.4220313 0.4220313 0.5611974 +0.4348222 0.4220313 0.5611974 +0.4470264 0.4220313 0.5611974 +0.4586928 0.4220313 0.5611974 +0.4698649 0.4220313 0.5611974 +0.4805811 0.4220313 0.5611974 +0.490876 0.4220313 0.5611974 +0.5007803 0.4220313 0.5611974 +0.510322 0.4220313 0.5611974 +0.5195258 0.4220313 0.5611974 +0.5284142 0.4220313 0.5611974 +0.5370079 0.4220313 0.5611974 +0.5453253 0.4220313 0.5611974 +0.5533834 0.4220313 0.5611974 +0.5611974 0.4220313 0.5611974 +0.5687816 0.4220313 0.5611974 +0.092819 0.4348222 0.5611974 +0.1056428 0.4348222 0.5611974 +0.1201537 0.4348222 0.5611974 +0.1409607 0.4348222 0.5611974 +0.1678172 0.4348222 0.5611974 +0.1950164 0.4348222 0.5611974 +0.2210581 0.4348222 0.5611974 +0.245636 0.4348222 0.5611974 +0.2686816 0.4348222 0.5611974 +0.2902431 0.4348222 0.5611974 +0.3104189 0.4348222 0.5611974 +0.3293248 0.4348222 0.5611974 +0.3470774 0.4348222 0.5611974 +0.3637862 0.4348222 0.5611974 +0.3795513 0.4348222 0.5611974 +0.3944623 0.4348222 0.5611974 +0.4085988 0.4348222 0.5611974 +0.4220313 0.4348222 0.5611974 +0.4348222 0.4348222 0.5611974 +0.4470264 0.4348222 0.5611974 +0.4586928 0.4348222 0.5611974 +0.4698649 0.4348222 0.5611974 +0.4805811 0.4348222 0.5611974 +0.490876 0.4348222 0.5611974 +0.5007803 0.4348222 0.5611974 +0.510322 0.4348222 0.5611974 +0.5195258 0.4348222 0.5611974 +0.5284142 0.4348222 0.5611974 +0.5370079 0.4348222 0.5611974 +0.5453253 0.4348222 0.5611974 +0.5533834 0.4348222 0.5611974 +0.5611974 0.4348222 0.5611974 +0.5687816 0.4348222 0.5611974 +0.092819 0.4470264 0.5611974 +0.1056428 0.4470264 0.5611974 +0.1201537 0.4470264 0.5611974 +0.1409607 0.4470264 0.5611974 +0.1678172 0.4470264 0.5611974 +0.1950164 0.4470264 0.5611974 +0.2210581 0.4470264 0.5611974 +0.245636 0.4470264 0.5611974 +0.2686816 0.4470264 0.5611974 +0.2902431 0.4470264 0.5611974 +0.3104189 0.4470264 0.5611974 +0.3293248 0.4470264 0.5611974 +0.3470774 0.4470264 0.5611974 +0.3637862 0.4470264 0.5611974 +0.3795513 0.4470264 0.5611974 +0.3944623 0.4470264 0.5611974 +0.4085988 0.4470264 0.5611974 +0.4220313 0.4470264 0.5611974 +0.4348222 0.4470264 0.5611974 +0.4470264 0.4470264 0.5611974 +0.4586928 0.4470264 0.5611974 +0.4698649 0.4470264 0.5611974 +0.4805811 0.4470264 0.5611974 +0.490876 0.4470264 0.5611974 +0.5007803 0.4470264 0.5611974 +0.510322 0.4470264 0.5611974 +0.5195258 0.4470264 0.5611974 +0.5284142 0.4470264 0.5611974 +0.5370079 0.4470264 0.5611974 +0.5453253 0.4470264 0.5611974 +0.5533834 0.4470264 0.5611974 +0.5611974 0.4470264 0.5611974 +0.5687816 0.4470264 0.5611974 +0.092819 0.4586928 0.5611974 +0.1056428 0.4586928 0.5611974 +0.1201537 0.4586928 0.5611974 +0.1409607 0.4586928 0.5611974 +0.1678172 0.4586928 0.5611974 +0.1950164 0.4586928 0.5611974 +0.2210581 0.4586928 0.5611974 +0.245636 0.4586928 0.5611974 +0.2686816 0.4586928 0.5611974 +0.2902431 0.4586928 0.5611974 +0.3104189 0.4586928 0.5611974 +0.3293248 0.4586928 0.5611974 +0.3470774 0.4586928 0.5611974 +0.3637862 0.4586928 0.5611974 +0.3795513 0.4586928 0.5611974 +0.3944623 0.4586928 0.5611974 +0.4085988 0.4586928 0.5611974 +0.4220313 0.4586928 0.5611974 +0.4348222 0.4586928 0.5611974 +0.4470264 0.4586928 0.5611974 +0.4586928 0.4586928 0.5611974 +0.4698649 0.4586928 0.5611974 +0.4805811 0.4586928 0.5611974 +0.490876 0.4586928 0.5611974 +0.5007803 0.4586928 0.5611974 +0.510322 0.4586928 0.5611974 +0.5195258 0.4586928 0.5611974 +0.5284142 0.4586928 0.5611974 +0.5370079 0.4586928 0.5611974 +0.5453253 0.4586928 0.5611974 +0.5533834 0.4586928 0.5611974 +0.5611974 0.4586928 0.5611974 +0.5687816 0.4586928 0.5611974 +0.092819 0.4698649 0.5611974 +0.1056428 0.4698649 0.5611974 +0.1201537 0.4698649 0.5611974 +0.1409607 0.4698649 0.5611974 +0.1678172 0.4698649 0.5611974 +0.1950164 0.4698649 0.5611974 +0.2210581 0.4698649 0.5611974 +0.245636 0.4698649 0.5611974 +0.2686816 0.4698649 0.5611974 +0.2902431 0.4698649 0.5611974 +0.3104189 0.4698649 0.5611974 +0.3293248 0.4698649 0.5611974 +0.3470774 0.4698649 0.5611974 +0.3637862 0.4698649 0.5611974 +0.3795513 0.4698649 0.5611974 +0.3944623 0.4698649 0.5611974 +0.4085988 0.4698649 0.5611974 +0.4220313 0.4698649 0.5611974 +0.4348222 0.4698649 0.5611974 +0.4470264 0.4698649 0.5611974 +0.4586928 0.4698649 0.5611974 +0.4698649 0.4698649 0.5611974 +0.4805811 0.4698649 0.5611974 +0.490876 0.4698649 0.5611974 +0.5007803 0.4698649 0.5611974 +0.510322 0.4698649 0.5611974 +0.5195258 0.4698649 0.5611974 +0.5284142 0.4698649 0.5611974 +0.5370079 0.4698649 0.5611974 +0.5453253 0.4698649 0.5611974 +0.5533834 0.4698649 0.5611974 +0.5611974 0.4698649 0.5611974 +0.5687816 0.4698649 0.5611974 +0.092819 0.4805811 0.5611974 +0.1056428 0.4805811 0.5611974 +0.1201537 0.4805811 0.5611974 +0.1409607 0.4805811 0.5611974 +0.1678172 0.4805811 0.5611974 +0.1950164 0.4805811 0.5611974 +0.2210581 0.4805811 0.5611974 +0.245636 0.4805811 0.5611974 +0.2686816 0.4805811 0.5611974 +0.2902431 0.4805811 0.5611974 +0.3104189 0.4805811 0.5611974 +0.3293248 0.4805811 0.5611974 +0.3470774 0.4805811 0.5611974 +0.3637862 0.4805811 0.5611974 +0.3795513 0.4805811 0.5611974 +0.3944623 0.4805811 0.5611974 +0.4085988 0.4805811 0.5611974 +0.4220313 0.4805811 0.5611974 +0.4348222 0.4805811 0.5611974 +0.4470264 0.4805811 0.5611974 +0.4586928 0.4805811 0.5611974 +0.4698649 0.4805811 0.5611974 +0.4805811 0.4805811 0.5611974 +0.490876 0.4805811 0.5611974 +0.5007803 0.4805811 0.5611974 +0.510322 0.4805811 0.5611974 +0.5195258 0.4805811 0.5611974 +0.5284142 0.4805811 0.5611974 +0.5370079 0.4805811 0.5611974 +0.5453253 0.4805811 0.5611974 +0.5533834 0.4805811 0.5611974 +0.5611974 0.4805811 0.5611974 +0.5687816 0.4805811 0.5611974 +0.092819 0.490876 0.5611974 +0.1056428 0.490876 0.5611974 +0.1201537 0.490876 0.5611974 +0.1409607 0.490876 0.5611974 +0.1678172 0.490876 0.5611974 +0.1950164 0.490876 0.5611974 +0.2210581 0.490876 0.5611974 +0.245636 0.490876 0.5611974 +0.2686816 0.490876 0.5611974 +0.2902431 0.490876 0.5611974 +0.3104189 0.490876 0.5611974 +0.3293248 0.490876 0.5611974 +0.3470774 0.490876 0.5611974 +0.3637862 0.490876 0.5611974 +0.3795513 0.490876 0.5611974 +0.3944623 0.490876 0.5611974 +0.4085988 0.490876 0.5611974 +0.4220313 0.490876 0.5611974 +0.4348222 0.490876 0.5611974 +0.4470264 0.490876 0.5611974 +0.4586928 0.490876 0.5611974 +0.4698649 0.490876 0.5611974 +0.4805811 0.490876 0.5611974 +0.490876 0.490876 0.5611974 +0.5007803 0.490876 0.5611974 +0.510322 0.490876 0.5611974 +0.5195258 0.490876 0.5611974 +0.5284142 0.490876 0.5611974 +0.5370079 0.490876 0.5611974 +0.5453253 0.490876 0.5611974 +0.5533834 0.490876 0.5611974 +0.5611974 0.490876 0.5611974 +0.5687816 0.490876 0.5611974 +0.092819 0.5007803 0.5611974 +0.1056428 0.5007803 0.5611974 +0.1201537 0.5007803 0.5611974 +0.1409607 0.5007803 0.5611974 +0.1678172 0.5007803 0.5611974 +0.1950164 0.5007803 0.5611974 +0.2210581 0.5007803 0.5611974 +0.245636 0.5007803 0.5611974 +0.2686816 0.5007803 0.5611974 +0.2902431 0.5007803 0.5611974 +0.3104189 0.5007803 0.5611974 +0.3293248 0.5007803 0.5611974 +0.3470774 0.5007803 0.5611974 +0.3637862 0.5007803 0.5611974 +0.3795513 0.5007803 0.5611974 +0.3944623 0.5007803 0.5611974 +0.4085988 0.5007803 0.5611974 +0.4220313 0.5007803 0.5611974 +0.4348222 0.5007803 0.5611974 +0.4470264 0.5007803 0.5611974 +0.4586928 0.5007803 0.5611974 +0.4698649 0.5007803 0.5611974 +0.4805811 0.5007803 0.5611974 +0.490876 0.5007803 0.5611974 +0.5007803 0.5007803 0.5611974 +0.510322 0.5007803 0.5611974 +0.5195258 0.5007803 0.5611974 +0.5284142 0.5007803 0.5611974 +0.5370079 0.5007803 0.5611974 +0.5453253 0.5007803 0.5611974 +0.5533834 0.5007803 0.5611974 +0.5611974 0.5007803 0.5611974 +0.5687816 0.5007803 0.5611974 +0.092819 0.510322 0.5611974 +0.1056428 0.510322 0.5611974 +0.1201537 0.510322 0.5611974 +0.1409607 0.510322 0.5611974 +0.1678172 0.510322 0.5611974 +0.1950164 0.510322 0.5611974 +0.2210581 0.510322 0.5611974 +0.245636 0.510322 0.5611974 +0.2686816 0.510322 0.5611974 +0.2902431 0.510322 0.5611974 +0.3104189 0.510322 0.5611974 +0.3293248 0.510322 0.5611974 +0.3470774 0.510322 0.5611974 +0.3637862 0.510322 0.5611974 +0.3795513 0.510322 0.5611974 +0.3944623 0.510322 0.5611974 +0.4085988 0.510322 0.5611974 +0.4220313 0.510322 0.5611974 +0.4348222 0.510322 0.5611974 +0.4470264 0.510322 0.5611974 +0.4586928 0.510322 0.5611974 +0.4698649 0.510322 0.5611974 +0.4805811 0.510322 0.5611974 +0.490876 0.510322 0.5611974 +0.5007803 0.510322 0.5611974 +0.510322 0.510322 0.5611974 +0.5195258 0.510322 0.5611974 +0.5284142 0.510322 0.5611974 +0.5370079 0.510322 0.5611974 +0.5453253 0.510322 0.5611974 +0.5533834 0.510322 0.5611974 +0.5611974 0.510322 0.5611974 +0.5687816 0.510322 0.5611974 +0.092819 0.5195258 0.5611974 +0.1056428 0.5195258 0.5611974 +0.1201537 0.5195258 0.5611974 +0.1409607 0.5195258 0.5611974 +0.1678172 0.5195258 0.5611974 +0.1950164 0.5195258 0.5611974 +0.2210581 0.5195258 0.5611974 +0.245636 0.5195258 0.5611974 +0.2686816 0.5195258 0.5611974 +0.2902431 0.5195258 0.5611974 +0.3104189 0.5195258 0.5611974 +0.3293248 0.5195258 0.5611974 +0.3470774 0.5195258 0.5611974 +0.3637862 0.5195258 0.5611974 +0.3795513 0.5195258 0.5611974 +0.3944623 0.5195258 0.5611974 +0.4085988 0.5195258 0.5611974 +0.4220313 0.5195258 0.5611974 +0.4348222 0.5195258 0.5611974 +0.4470264 0.5195258 0.5611974 +0.4586928 0.5195258 0.5611974 +0.4698649 0.5195258 0.5611974 +0.4805811 0.5195258 0.5611974 +0.490876 0.5195258 0.5611974 +0.5007803 0.5195258 0.5611974 +0.510322 0.5195258 0.5611974 +0.5195258 0.5195258 0.5611974 +0.5284142 0.5195258 0.5611974 +0.5370079 0.5195258 0.5611974 +0.5453253 0.5195258 0.5611974 +0.5533834 0.5195258 0.5611974 +0.5611974 0.5195258 0.5611974 +0.5687816 0.5195258 0.5611974 +0.092819 0.5284142 0.5611974 +0.1056428 0.5284142 0.5611974 +0.1201537 0.5284142 0.5611974 +0.1409607 0.5284142 0.5611974 +0.1678172 0.5284142 0.5611974 +0.1950164 0.5284142 0.5611974 +0.2210581 0.5284142 0.5611974 +0.245636 0.5284142 0.5611974 +0.2686816 0.5284142 0.5611974 +0.2902431 0.5284142 0.5611974 +0.3104189 0.5284142 0.5611974 +0.3293248 0.5284142 0.5611974 +0.3470774 0.5284142 0.5611974 +0.3637862 0.5284142 0.5611974 +0.3795513 0.5284142 0.5611974 +0.3944623 0.5284142 0.5611974 +0.4085988 0.5284142 0.5611974 +0.4220313 0.5284142 0.5611974 +0.4348222 0.5284142 0.5611974 +0.4470264 0.5284142 0.5611974 +0.4586928 0.5284142 0.5611974 +0.4698649 0.5284142 0.5611974 +0.4805811 0.5284142 0.5611974 +0.490876 0.5284142 0.5611974 +0.5007803 0.5284142 0.5611974 +0.510322 0.5284142 0.5611974 +0.5195258 0.5284142 0.5611974 +0.5284142 0.5284142 0.5611974 +0.5370079 0.5284142 0.5611974 +0.5453253 0.5284142 0.5611974 +0.5533834 0.5284142 0.5611974 +0.5611974 0.5284142 0.5611974 +0.5687816 0.5284142 0.5611974 +0.092819 0.5370079 0.5611974 +0.1056428 0.5370079 0.5611974 +0.1201537 0.5370079 0.5611974 +0.1409607 0.5370079 0.5611974 +0.1678172 0.5370079 0.5611974 +0.1950164 0.5370079 0.5611974 +0.2210581 0.5370079 0.5611974 +0.245636 0.5370079 0.5611974 +0.2686816 0.5370079 0.5611974 +0.2902431 0.5370079 0.5611974 +0.3104189 0.5370079 0.5611974 +0.3293248 0.5370079 0.5611974 +0.3470774 0.5370079 0.5611974 +0.3637862 0.5370079 0.5611974 +0.3795513 0.5370079 0.5611974 +0.3944623 0.5370079 0.5611974 +0.4085988 0.5370079 0.5611974 +0.4220313 0.5370079 0.5611974 +0.4348222 0.5370079 0.5611974 +0.4470264 0.5370079 0.5611974 +0.4586928 0.5370079 0.5611974 +0.4698649 0.5370079 0.5611974 +0.4805811 0.5370079 0.5611974 +0.490876 0.5370079 0.5611974 +0.5007803 0.5370079 0.5611974 +0.510322 0.5370079 0.5611974 +0.5195258 0.5370079 0.5611974 +0.5284142 0.5370079 0.5611974 +0.5370079 0.5370079 0.5611974 +0.5453253 0.5370079 0.5611974 +0.5533834 0.5370079 0.5611974 +0.5611974 0.5370079 0.5611974 +0.5687816 0.5370079 0.5611974 +0.092819 0.5453253 0.5611974 +0.1056428 0.5453253 0.5611974 +0.1201537 0.5453253 0.5611974 +0.1409607 0.5453253 0.5611974 +0.1678172 0.5453253 0.5611974 +0.1950164 0.5453253 0.5611974 +0.2210581 0.5453253 0.5611974 +0.245636 0.5453253 0.5611974 +0.2686816 0.5453253 0.5611974 +0.2902431 0.5453253 0.5611974 +0.3104189 0.5453253 0.5611974 +0.3293248 0.5453253 0.5611974 +0.3470774 0.5453253 0.5611974 +0.3637862 0.5453253 0.5611974 +0.3795513 0.5453253 0.5611974 +0.3944623 0.5453253 0.5611974 +0.4085988 0.5453253 0.5611974 +0.4220313 0.5453253 0.5611974 +0.4348222 0.5453253 0.5611974 +0.4470264 0.5453253 0.5611974 +0.4586928 0.5453253 0.5611974 +0.4698649 0.5453253 0.5611974 +0.4805811 0.5453253 0.5611974 +0.490876 0.5453253 0.5611974 +0.5007803 0.5453253 0.5611974 +0.510322 0.5453253 0.5611974 +0.5195258 0.5453253 0.5611974 +0.5284142 0.5453253 0.5611974 +0.5370079 0.5453253 0.5611974 +0.5453253 0.5453253 0.5611974 +0.5533834 0.5453253 0.5611974 +0.5611974 0.5453253 0.5611974 +0.5687816 0.5453253 0.5611974 +0.092819 0.5533834 0.5611974 +0.1056428 0.5533834 0.5611974 +0.1201537 0.5533834 0.5611974 +0.1409607 0.5533834 0.5611974 +0.1678172 0.5533834 0.5611974 +0.1950164 0.5533834 0.5611974 +0.2210581 0.5533834 0.5611974 +0.245636 0.5533834 0.5611974 +0.2686816 0.5533834 0.5611974 +0.2902431 0.5533834 0.5611974 +0.3104189 0.5533834 0.5611974 +0.3293248 0.5533834 0.5611974 +0.3470774 0.5533834 0.5611974 +0.3637862 0.5533834 0.5611974 +0.3795513 0.5533834 0.5611974 +0.3944623 0.5533834 0.5611974 +0.4085988 0.5533834 0.5611974 +0.4220313 0.5533834 0.5611974 +0.4348222 0.5533834 0.5611974 +0.4470264 0.5533834 0.5611974 +0.4586928 0.5533834 0.5611974 +0.4698649 0.5533834 0.5611974 +0.4805811 0.5533834 0.5611974 +0.490876 0.5533834 0.5611974 +0.5007803 0.5533834 0.5611974 +0.510322 0.5533834 0.5611974 +0.5195258 0.5533834 0.5611974 +0.5284142 0.5533834 0.5611974 +0.5370079 0.5533834 0.5611974 +0.5453253 0.5533834 0.5611974 +0.5533834 0.5533834 0.5611974 +0.5611974 0.5533834 0.5611974 +0.5687816 0.5533834 0.5611974 +0.092819 0.5611974 0.5611974 +0.1056428 0.5611974 0.5611974 +0.1201537 0.5611974 0.5611974 +0.1409607 0.5611974 0.5611974 +0.1678172 0.5611974 0.5611974 +0.1950164 0.5611974 0.5611974 +0.2210581 0.5611974 0.5611974 +0.245636 0.5611974 0.5611974 +0.2686816 0.5611974 0.5611974 +0.2902431 0.5611974 0.5611974 +0.3104189 0.5611974 0.5611974 +0.3293248 0.5611974 0.5611974 +0.3470774 0.5611974 0.5611974 +0.3637862 0.5611974 0.5611974 +0.3795513 0.5611974 0.5611974 +0.3944623 0.5611974 0.5611974 +0.4085988 0.5611974 0.5611974 +0.4220313 0.5611974 0.5611974 +0.4348222 0.5611974 0.5611974 +0.4470264 0.5611974 0.5611974 +0.4586928 0.5611974 0.5611974 +0.4698649 0.5611974 0.5611974 +0.4805811 0.5611974 0.5611974 +0.490876 0.5611974 0.5611974 +0.5007803 0.5611974 0.5611974 +0.510322 0.5611974 0.5611974 +0.5195258 0.5611974 0.5611974 +0.5284142 0.5611974 0.5611974 +0.5370079 0.5611974 0.5611974 +0.5453253 0.5611974 0.5611974 +0.5533834 0.5611974 0.5611974 +0.5611974 0.5611974 0.5611974 +0.5687816 0.5611974 0.5611974 +0.092819 0.5687816 0.5611974 +0.1056428 0.5687816 0.5611974 +0.1201537 0.5687816 0.5611974 +0.1409607 0.5687816 0.5611974 +0.1678172 0.5687816 0.5611974 +0.1950164 0.5687816 0.5611974 +0.2210581 0.5687816 0.5611974 +0.245636 0.5687816 0.5611974 +0.2686816 0.5687816 0.5611974 +0.2902431 0.5687816 0.5611974 +0.3104189 0.5687816 0.5611974 +0.3293248 0.5687816 0.5611974 +0.3470774 0.5687816 0.5611974 +0.3637862 0.5687816 0.5611974 +0.3795513 0.5687816 0.5611974 +0.3944623 0.5687816 0.5611974 +0.4085988 0.5687816 0.5611974 +0.4220313 0.5687816 0.5611974 +0.4348222 0.5687816 0.5611974 +0.4470264 0.5687816 0.5611974 +0.4586928 0.5687816 0.5611974 +0.4698649 0.5687816 0.5611974 +0.4805811 0.5687816 0.5611974 +0.490876 0.5687816 0.5611974 +0.5007803 0.5687816 0.5611974 +0.510322 0.5687816 0.5611974 +0.5195258 0.5687816 0.5611974 +0.5284142 0.5687816 0.5611974 +0.5370079 0.5687816 0.5611974 +0.5453253 0.5687816 0.5611974 +0.5533834 0.5687816 0.5611974 +0.5611974 0.5687816 0.5611974 +0.5687816 0.5687816 0.5611974 +0.092819 0.092819 0.5687816 +0.1056428 0.092819 0.5687816 +0.1201537 0.092819 0.5687816 +0.1409607 0.092819 0.5687816 +0.1678172 0.092819 0.5687816 +0.1950164 0.092819 0.5687816 +0.2210581 0.092819 0.5687816 +0.245636 0.092819 0.5687816 +0.2686816 0.092819 0.5687816 +0.2902431 0.092819 0.5687816 +0.3104189 0.092819 0.5687816 +0.3293248 0.092819 0.5687816 +0.3470774 0.092819 0.5687816 +0.3637862 0.092819 0.5687816 +0.3795513 0.092819 0.5687816 +0.3944623 0.092819 0.5687816 +0.4085988 0.092819 0.5687816 +0.4220313 0.092819 0.5687816 +0.4348222 0.092819 0.5687816 +0.4470264 0.092819 0.5687816 +0.4586928 0.092819 0.5687816 +0.4698649 0.092819 0.5687816 +0.4805811 0.092819 0.5687816 +0.490876 0.092819 0.5687816 +0.5007803 0.092819 0.5687816 +0.510322 0.092819 0.5687816 +0.5195258 0.092819 0.5687816 +0.5284142 0.092819 0.5687816 +0.5370079 0.092819 0.5687816 +0.5453253 0.092819 0.5687816 +0.5533834 0.092819 0.5687816 +0.5611974 0.092819 0.5687816 +0.5687816 0.092819 0.5687816 +0.092819 0.1056428 0.5687816 +0.1056428 0.1056428 0.5687816 +0.1201537 0.1056428 0.5687816 +0.1409607 0.1056428 0.5687816 +0.1678172 0.1056428 0.5687816 +0.1950164 0.1056428 0.5687816 +0.2210581 0.1056428 0.5687816 +0.245636 0.1056428 0.5687816 +0.2686816 0.1056428 0.5687816 +0.2902431 0.1056428 0.5687816 +0.3104189 0.1056428 0.5687816 +0.3293248 0.1056428 0.5687816 +0.3470774 0.1056428 0.5687816 +0.3637862 0.1056428 0.5687816 +0.3795513 0.1056428 0.5687816 +0.3944623 0.1056428 0.5687816 +0.4085988 0.1056428 0.5687816 +0.4220313 0.1056428 0.5687816 +0.4348222 0.1056428 0.5687816 +0.4470264 0.1056428 0.5687816 +0.4586928 0.1056428 0.5687816 +0.4698649 0.1056428 0.5687816 +0.4805811 0.1056428 0.5687816 +0.490876 0.1056428 0.5687816 +0.5007803 0.1056428 0.5687816 +0.510322 0.1056428 0.5687816 +0.5195258 0.1056428 0.5687816 +0.5284142 0.1056428 0.5687816 +0.5370079 0.1056428 0.5687816 +0.5453253 0.1056428 0.5687816 +0.5533834 0.1056428 0.5687816 +0.5611974 0.1056428 0.5687816 +0.5687816 0.1056428 0.5687816 +0.092819 0.1201537 0.5687816 +0.1056428 0.1201537 0.5687816 +0.1201537 0.1201537 0.5687816 +0.1409607 0.1201537 0.5687816 +0.1678172 0.1201537 0.5687816 +0.1950164 0.1201537 0.5687816 +0.2210581 0.1201537 0.5687816 +0.245636 0.1201537 0.5687816 +0.2686816 0.1201537 0.5687816 +0.2902431 0.1201537 0.5687816 +0.3104189 0.1201537 0.5687816 +0.3293248 0.1201537 0.5687816 +0.3470774 0.1201537 0.5687816 +0.3637862 0.1201537 0.5687816 +0.3795513 0.1201537 0.5687816 +0.3944623 0.1201537 0.5687816 +0.4085988 0.1201537 0.5687816 +0.4220313 0.1201537 0.5687816 +0.4348222 0.1201537 0.5687816 +0.4470264 0.1201537 0.5687816 +0.4586928 0.1201537 0.5687816 +0.4698649 0.1201537 0.5687816 +0.4805811 0.1201537 0.5687816 +0.490876 0.1201537 0.5687816 +0.5007803 0.1201537 0.5687816 +0.510322 0.1201537 0.5687816 +0.5195258 0.1201537 0.5687816 +0.5284142 0.1201537 0.5687816 +0.5370079 0.1201537 0.5687816 +0.5453253 0.1201537 0.5687816 +0.5533834 0.1201537 0.5687816 +0.5611974 0.1201537 0.5687816 +0.5687816 0.1201537 0.5687816 +0.092819 0.1409607 0.5687816 +0.1056428 0.1409607 0.5687816 +0.1201537 0.1409607 0.5687816 +0.1409607 0.1409607 0.5687816 +0.1678172 0.1409607 0.5687816 +0.1950164 0.1409607 0.5687816 +0.2210581 0.1409607 0.5687816 +0.245636 0.1409607 0.5687816 +0.2686816 0.1409607 0.5687816 +0.2902431 0.1409607 0.5687816 +0.3104189 0.1409607 0.5687816 +0.3293248 0.1409607 0.5687816 +0.3470774 0.1409607 0.5687816 +0.3637862 0.1409607 0.5687816 +0.3795513 0.1409607 0.5687816 +0.3944623 0.1409607 0.5687816 +0.4085988 0.1409607 0.5687816 +0.4220313 0.1409607 0.5687816 +0.4348222 0.1409607 0.5687816 +0.4470264 0.1409607 0.5687816 +0.4586928 0.1409607 0.5687816 +0.4698649 0.1409607 0.5687816 +0.4805811 0.1409607 0.5687816 +0.490876 0.1409607 0.5687816 +0.5007803 0.1409607 0.5687816 +0.510322 0.1409607 0.5687816 +0.5195258 0.1409607 0.5687816 +0.5284142 0.1409607 0.5687816 +0.5370079 0.1409607 0.5687816 +0.5453253 0.1409607 0.5687816 +0.5533834 0.1409607 0.5687816 +0.5611974 0.1409607 0.5687816 +0.5687816 0.1409607 0.5687816 +0.092819 0.1678172 0.5687816 +0.1056428 0.1678172 0.5687816 +0.1201537 0.1678172 0.5687816 +0.1409607 0.1678172 0.5687816 +0.1678172 0.1678172 0.5687816 +0.1950164 0.1678172 0.5687816 +0.2210581 0.1678172 0.5687816 +0.245636 0.1678172 0.5687816 +0.2686816 0.1678172 0.5687816 +0.2902431 0.1678172 0.5687816 +0.3104189 0.1678172 0.5687816 +0.3293248 0.1678172 0.5687816 +0.3470774 0.1678172 0.5687816 +0.3637862 0.1678172 0.5687816 +0.3795513 0.1678172 0.5687816 +0.3944623 0.1678172 0.5687816 +0.4085988 0.1678172 0.5687816 +0.4220313 0.1678172 0.5687816 +0.4348222 0.1678172 0.5687816 +0.4470264 0.1678172 0.5687816 +0.4586928 0.1678172 0.5687816 +0.4698649 0.1678172 0.5687816 +0.4805811 0.1678172 0.5687816 +0.490876 0.1678172 0.5687816 +0.5007803 0.1678172 0.5687816 +0.510322 0.1678172 0.5687816 +0.5195258 0.1678172 0.5687816 +0.5284142 0.1678172 0.5687816 +0.5370079 0.1678172 0.5687816 +0.5453253 0.1678172 0.5687816 +0.5533834 0.1678172 0.5687816 +0.5611974 0.1678172 0.5687816 +0.5687816 0.1678172 0.5687816 +0.092819 0.1950164 0.5687816 +0.1056428 0.1950164 0.5687816 +0.1201537 0.1950164 0.5687816 +0.1409607 0.1950164 0.5687816 +0.1678172 0.1950164 0.5687816 +0.1950164 0.1950164 0.5687816 +0.2210581 0.1950164 0.5687816 +0.245636 0.1950164 0.5687816 +0.2686816 0.1950164 0.5687816 +0.2902431 0.1950164 0.5687816 +0.3104189 0.1950164 0.5687816 +0.3293248 0.1950164 0.5687816 +0.3470774 0.1950164 0.5687816 +0.3637862 0.1950164 0.5687816 +0.3795513 0.1950164 0.5687816 +0.3944623 0.1950164 0.5687816 +0.4085988 0.1950164 0.5687816 +0.4220313 0.1950164 0.5687816 +0.4348222 0.1950164 0.5687816 +0.4470264 0.1950164 0.5687816 +0.4586928 0.1950164 0.5687816 +0.4698649 0.1950164 0.5687816 +0.4805811 0.1950164 0.5687816 +0.490876 0.1950164 0.5687816 +0.5007803 0.1950164 0.5687816 +0.510322 0.1950164 0.5687816 +0.5195258 0.1950164 0.5687816 +0.5284142 0.1950164 0.5687816 +0.5370079 0.1950164 0.5687816 +0.5453253 0.1950164 0.5687816 +0.5533834 0.1950164 0.5687816 +0.5611974 0.1950164 0.5687816 +0.5687816 0.1950164 0.5687816 +0.092819 0.2210581 0.5687816 +0.1056428 0.2210581 0.5687816 +0.1201537 0.2210581 0.5687816 +0.1409607 0.2210581 0.5687816 +0.1678172 0.2210581 0.5687816 +0.1950164 0.2210581 0.5687816 +0.2210581 0.2210581 0.5687816 +0.245636 0.2210581 0.5687816 +0.2686816 0.2210581 0.5687816 +0.2902431 0.2210581 0.5687816 +0.3104189 0.2210581 0.5687816 +0.3293248 0.2210581 0.5687816 +0.3470774 0.2210581 0.5687816 +0.3637862 0.2210581 0.5687816 +0.3795513 0.2210581 0.5687816 +0.3944623 0.2210581 0.5687816 +0.4085988 0.2210581 0.5687816 +0.4220313 0.2210581 0.5687816 +0.4348222 0.2210581 0.5687816 +0.4470264 0.2210581 0.5687816 +0.4586928 0.2210581 0.5687816 +0.4698649 0.2210581 0.5687816 +0.4805811 0.2210581 0.5687816 +0.490876 0.2210581 0.5687816 +0.5007803 0.2210581 0.5687816 +0.510322 0.2210581 0.5687816 +0.5195258 0.2210581 0.5687816 +0.5284142 0.2210581 0.5687816 +0.5370079 0.2210581 0.5687816 +0.5453253 0.2210581 0.5687816 +0.5533834 0.2210581 0.5687816 +0.5611974 0.2210581 0.5687816 +0.5687816 0.2210581 0.5687816 +0.092819 0.245636 0.5687816 +0.1056428 0.245636 0.5687816 +0.1201537 0.245636 0.5687816 +0.1409607 0.245636 0.5687816 +0.1678172 0.245636 0.5687816 +0.1950164 0.245636 0.5687816 +0.2210581 0.245636 0.5687816 +0.245636 0.245636 0.5687816 +0.2686816 0.245636 0.5687816 +0.2902431 0.245636 0.5687816 +0.3104189 0.245636 0.5687816 +0.3293248 0.245636 0.5687816 +0.3470774 0.245636 0.5687816 +0.3637862 0.245636 0.5687816 +0.3795513 0.245636 0.5687816 +0.3944623 0.245636 0.5687816 +0.4085988 0.245636 0.5687816 +0.4220313 0.245636 0.5687816 +0.4348222 0.245636 0.5687816 +0.4470264 0.245636 0.5687816 +0.4586928 0.245636 0.5687816 +0.4698649 0.245636 0.5687816 +0.4805811 0.245636 0.5687816 +0.490876 0.245636 0.5687816 +0.5007803 0.245636 0.5687816 +0.510322 0.245636 0.5687816 +0.5195258 0.245636 0.5687816 +0.5284142 0.245636 0.5687816 +0.5370079 0.245636 0.5687816 +0.5453253 0.245636 0.5687816 +0.5533834 0.245636 0.5687816 +0.5611974 0.245636 0.5687816 +0.5687816 0.245636 0.5687816 +0.092819 0.2686816 0.5687816 +0.1056428 0.2686816 0.5687816 +0.1201537 0.2686816 0.5687816 +0.1409607 0.2686816 0.5687816 +0.1678172 0.2686816 0.5687816 +0.1950164 0.2686816 0.5687816 +0.2210581 0.2686816 0.5687816 +0.245636 0.2686816 0.5687816 +0.2686816 0.2686816 0.5687816 +0.2902431 0.2686816 0.5687816 +0.3104189 0.2686816 0.5687816 +0.3293248 0.2686816 0.5687816 +0.3470774 0.2686816 0.5687816 +0.3637862 0.2686816 0.5687816 +0.3795513 0.2686816 0.5687816 +0.3944623 0.2686816 0.5687816 +0.4085988 0.2686816 0.5687816 +0.4220313 0.2686816 0.5687816 +0.4348222 0.2686816 0.5687816 +0.4470264 0.2686816 0.5687816 +0.4586928 0.2686816 0.5687816 +0.4698649 0.2686816 0.5687816 +0.4805811 0.2686816 0.5687816 +0.490876 0.2686816 0.5687816 +0.5007803 0.2686816 0.5687816 +0.510322 0.2686816 0.5687816 +0.5195258 0.2686816 0.5687816 +0.5284142 0.2686816 0.5687816 +0.5370079 0.2686816 0.5687816 +0.5453253 0.2686816 0.5687816 +0.5533834 0.2686816 0.5687816 +0.5611974 0.2686816 0.5687816 +0.5687816 0.2686816 0.5687816 +0.092819 0.2902431 0.5687816 +0.1056428 0.2902431 0.5687816 +0.1201537 0.2902431 0.5687816 +0.1409607 0.2902431 0.5687816 +0.1678172 0.2902431 0.5687816 +0.1950164 0.2902431 0.5687816 +0.2210581 0.2902431 0.5687816 +0.245636 0.2902431 0.5687816 +0.2686816 0.2902431 0.5687816 +0.2902431 0.2902431 0.5687816 +0.3104189 0.2902431 0.5687816 +0.3293248 0.2902431 0.5687816 +0.3470774 0.2902431 0.5687816 +0.3637862 0.2902431 0.5687816 +0.3795513 0.2902431 0.5687816 +0.3944623 0.2902431 0.5687816 +0.4085988 0.2902431 0.5687816 +0.4220313 0.2902431 0.5687816 +0.4348222 0.2902431 0.5687816 +0.4470264 0.2902431 0.5687816 +0.4586928 0.2902431 0.5687816 +0.4698649 0.2902431 0.5687816 +0.4805811 0.2902431 0.5687816 +0.490876 0.2902431 0.5687816 +0.5007803 0.2902431 0.5687816 +0.510322 0.2902431 0.5687816 +0.5195258 0.2902431 0.5687816 +0.5284142 0.2902431 0.5687816 +0.5370079 0.2902431 0.5687816 +0.5453253 0.2902431 0.5687816 +0.5533834 0.2902431 0.5687816 +0.5611974 0.2902431 0.5687816 +0.5687816 0.2902431 0.5687816 +0.092819 0.3104189 0.5687816 +0.1056428 0.3104189 0.5687816 +0.1201537 0.3104189 0.5687816 +0.1409607 0.3104189 0.5687816 +0.1678172 0.3104189 0.5687816 +0.1950164 0.3104189 0.5687816 +0.2210581 0.3104189 0.5687816 +0.245636 0.3104189 0.5687816 +0.2686816 0.3104189 0.5687816 +0.2902431 0.3104189 0.5687816 +0.3104189 0.3104189 0.5687816 +0.3293248 0.3104189 0.5687816 +0.3470774 0.3104189 0.5687816 +0.3637862 0.3104189 0.5687816 +0.3795513 0.3104189 0.5687816 +0.3944623 0.3104189 0.5687816 +0.4085988 0.3104189 0.5687816 +0.4220313 0.3104189 0.5687816 +0.4348222 0.3104189 0.5687816 +0.4470264 0.3104189 0.5687816 +0.4586928 0.3104189 0.5687816 +0.4698649 0.3104189 0.5687816 +0.4805811 0.3104189 0.5687816 +0.490876 0.3104189 0.5687816 +0.5007803 0.3104189 0.5687816 +0.510322 0.3104189 0.5687816 +0.5195258 0.3104189 0.5687816 +0.5284142 0.3104189 0.5687816 +0.5370079 0.3104189 0.5687816 +0.5453253 0.3104189 0.5687816 +0.5533834 0.3104189 0.5687816 +0.5611974 0.3104189 0.5687816 +0.5687816 0.3104189 0.5687816 +0.092819 0.3293248 0.5687816 +0.1056428 0.3293248 0.5687816 +0.1201537 0.3293248 0.5687816 +0.1409607 0.3293248 0.5687816 +0.1678172 0.3293248 0.5687816 +0.1950164 0.3293248 0.5687816 +0.2210581 0.3293248 0.5687816 +0.245636 0.3293248 0.5687816 +0.2686816 0.3293248 0.5687816 +0.2902431 0.3293248 0.5687816 +0.3104189 0.3293248 0.5687816 +0.3293248 0.3293248 0.5687816 +0.3470774 0.3293248 0.5687816 +0.3637862 0.3293248 0.5687816 +0.3795513 0.3293248 0.5687816 +0.3944623 0.3293248 0.5687816 +0.4085988 0.3293248 0.5687816 +0.4220313 0.3293248 0.5687816 +0.4348222 0.3293248 0.5687816 +0.4470264 0.3293248 0.5687816 +0.4586928 0.3293248 0.5687816 +0.4698649 0.3293248 0.5687816 +0.4805811 0.3293248 0.5687816 +0.490876 0.3293248 0.5687816 +0.5007803 0.3293248 0.5687816 +0.510322 0.3293248 0.5687816 +0.5195258 0.3293248 0.5687816 +0.5284142 0.3293248 0.5687816 +0.5370079 0.3293248 0.5687816 +0.5453253 0.3293248 0.5687816 +0.5533834 0.3293248 0.5687816 +0.5611974 0.3293248 0.5687816 +0.5687816 0.3293248 0.5687816 +0.092819 0.3470774 0.5687816 +0.1056428 0.3470774 0.5687816 +0.1201537 0.3470774 0.5687816 +0.1409607 0.3470774 0.5687816 +0.1678172 0.3470774 0.5687816 +0.1950164 0.3470774 0.5687816 +0.2210581 0.3470774 0.5687816 +0.245636 0.3470774 0.5687816 +0.2686816 0.3470774 0.5687816 +0.2902431 0.3470774 0.5687816 +0.3104189 0.3470774 0.5687816 +0.3293248 0.3470774 0.5687816 +0.3470774 0.3470774 0.5687816 +0.3637862 0.3470774 0.5687816 +0.3795513 0.3470774 0.5687816 +0.3944623 0.3470774 0.5687816 +0.4085988 0.3470774 0.5687816 +0.4220313 0.3470774 0.5687816 +0.4348222 0.3470774 0.5687816 +0.4470264 0.3470774 0.5687816 +0.4586928 0.3470774 0.5687816 +0.4698649 0.3470774 0.5687816 +0.4805811 0.3470774 0.5687816 +0.490876 0.3470774 0.5687816 +0.5007803 0.3470774 0.5687816 +0.510322 0.3470774 0.5687816 +0.5195258 0.3470774 0.5687816 +0.5284142 0.3470774 0.5687816 +0.5370079 0.3470774 0.5687816 +0.5453253 0.3470774 0.5687816 +0.5533834 0.3470774 0.5687816 +0.5611974 0.3470774 0.5687816 +0.5687816 0.3470774 0.5687816 +0.092819 0.3637862 0.5687816 +0.1056428 0.3637862 0.5687816 +0.1201537 0.3637862 0.5687816 +0.1409607 0.3637862 0.5687816 +0.1678172 0.3637862 0.5687816 +0.1950164 0.3637862 0.5687816 +0.2210581 0.3637862 0.5687816 +0.245636 0.3637862 0.5687816 +0.2686816 0.3637862 0.5687816 +0.2902431 0.3637862 0.5687816 +0.3104189 0.3637862 0.5687816 +0.3293248 0.3637862 0.5687816 +0.3470774 0.3637862 0.5687816 +0.3637862 0.3637862 0.5687816 +0.3795513 0.3637862 0.5687816 +0.3944623 0.3637862 0.5687816 +0.4085988 0.3637862 0.5687816 +0.4220313 0.3637862 0.5687816 +0.4348222 0.3637862 0.5687816 +0.4470264 0.3637862 0.5687816 +0.4586928 0.3637862 0.5687816 +0.4698649 0.3637862 0.5687816 +0.4805811 0.3637862 0.5687816 +0.490876 0.3637862 0.5687816 +0.5007803 0.3637862 0.5687816 +0.510322 0.3637862 0.5687816 +0.5195258 0.3637862 0.5687816 +0.5284142 0.3637862 0.5687816 +0.5370079 0.3637862 0.5687816 +0.5453253 0.3637862 0.5687816 +0.5533834 0.3637862 0.5687816 +0.5611974 0.3637862 0.5687816 +0.5687816 0.3637862 0.5687816 +0.092819 0.3795513 0.5687816 +0.1056428 0.3795513 0.5687816 +0.1201537 0.3795513 0.5687816 +0.1409607 0.3795513 0.5687816 +0.1678172 0.3795513 0.5687816 +0.1950164 0.3795513 0.5687816 +0.2210581 0.3795513 0.5687816 +0.245636 0.3795513 0.5687816 +0.2686816 0.3795513 0.5687816 +0.2902431 0.3795513 0.5687816 +0.3104189 0.3795513 0.5687816 +0.3293248 0.3795513 0.5687816 +0.3470774 0.3795513 0.5687816 +0.3637862 0.3795513 0.5687816 +0.3795513 0.3795513 0.5687816 +0.3944623 0.3795513 0.5687816 +0.4085988 0.3795513 0.5687816 +0.4220313 0.3795513 0.5687816 +0.4348222 0.3795513 0.5687816 +0.4470264 0.3795513 0.5687816 +0.4586928 0.3795513 0.5687816 +0.4698649 0.3795513 0.5687816 +0.4805811 0.3795513 0.5687816 +0.490876 0.3795513 0.5687816 +0.5007803 0.3795513 0.5687816 +0.510322 0.3795513 0.5687816 +0.5195258 0.3795513 0.5687816 +0.5284142 0.3795513 0.5687816 +0.5370079 0.3795513 0.5687816 +0.5453253 0.3795513 0.5687816 +0.5533834 0.3795513 0.5687816 +0.5611974 0.3795513 0.5687816 +0.5687816 0.3795513 0.5687816 +0.092819 0.3944623 0.5687816 +0.1056428 0.3944623 0.5687816 +0.1201537 0.3944623 0.5687816 +0.1409607 0.3944623 0.5687816 +0.1678172 0.3944623 0.5687816 +0.1950164 0.3944623 0.5687816 +0.2210581 0.3944623 0.5687816 +0.245636 0.3944623 0.5687816 +0.2686816 0.3944623 0.5687816 +0.2902431 0.3944623 0.5687816 +0.3104189 0.3944623 0.5687816 +0.3293248 0.3944623 0.5687816 +0.3470774 0.3944623 0.5687816 +0.3637862 0.3944623 0.5687816 +0.3795513 0.3944623 0.5687816 +0.3944623 0.3944623 0.5687816 +0.4085988 0.3944623 0.5687816 +0.4220313 0.3944623 0.5687816 +0.4348222 0.3944623 0.5687816 +0.4470264 0.3944623 0.5687816 +0.4586928 0.3944623 0.5687816 +0.4698649 0.3944623 0.5687816 +0.4805811 0.3944623 0.5687816 +0.490876 0.3944623 0.5687816 +0.5007803 0.3944623 0.5687816 +0.510322 0.3944623 0.5687816 +0.5195258 0.3944623 0.5687816 +0.5284142 0.3944623 0.5687816 +0.5370079 0.3944623 0.5687816 +0.5453253 0.3944623 0.5687816 +0.5533834 0.3944623 0.5687816 +0.5611974 0.3944623 0.5687816 +0.5687816 0.3944623 0.5687816 +0.092819 0.4085988 0.5687816 +0.1056428 0.4085988 0.5687816 +0.1201537 0.4085988 0.5687816 +0.1409607 0.4085988 0.5687816 +0.1678172 0.4085988 0.5687816 +0.1950164 0.4085988 0.5687816 +0.2210581 0.4085988 0.5687816 +0.245636 0.4085988 0.5687816 +0.2686816 0.4085988 0.5687816 +0.2902431 0.4085988 0.5687816 +0.3104189 0.4085988 0.5687816 +0.3293248 0.4085988 0.5687816 +0.3470774 0.4085988 0.5687816 +0.3637862 0.4085988 0.5687816 +0.3795513 0.4085988 0.5687816 +0.3944623 0.4085988 0.5687816 +0.4085988 0.4085988 0.5687816 +0.4220313 0.4085988 0.5687816 +0.4348222 0.4085988 0.5687816 +0.4470264 0.4085988 0.5687816 +0.4586928 0.4085988 0.5687816 +0.4698649 0.4085988 0.5687816 +0.4805811 0.4085988 0.5687816 +0.490876 0.4085988 0.5687816 +0.5007803 0.4085988 0.5687816 +0.510322 0.4085988 0.5687816 +0.5195258 0.4085988 0.5687816 +0.5284142 0.4085988 0.5687816 +0.5370079 0.4085988 0.5687816 +0.5453253 0.4085988 0.5687816 +0.5533834 0.4085988 0.5687816 +0.5611974 0.4085988 0.5687816 +0.5687816 0.4085988 0.5687816 +0.092819 0.4220313 0.5687816 +0.1056428 0.4220313 0.5687816 +0.1201537 0.4220313 0.5687816 +0.1409607 0.4220313 0.5687816 +0.1678172 0.4220313 0.5687816 +0.1950164 0.4220313 0.5687816 +0.2210581 0.4220313 0.5687816 +0.245636 0.4220313 0.5687816 +0.2686816 0.4220313 0.5687816 +0.2902431 0.4220313 0.5687816 +0.3104189 0.4220313 0.5687816 +0.3293248 0.4220313 0.5687816 +0.3470774 0.4220313 0.5687816 +0.3637862 0.4220313 0.5687816 +0.3795513 0.4220313 0.5687816 +0.3944623 0.4220313 0.5687816 +0.4085988 0.4220313 0.5687816 +0.4220313 0.4220313 0.5687816 +0.4348222 0.4220313 0.5687816 +0.4470264 0.4220313 0.5687816 +0.4586928 0.4220313 0.5687816 +0.4698649 0.4220313 0.5687816 +0.4805811 0.4220313 0.5687816 +0.490876 0.4220313 0.5687816 +0.5007803 0.4220313 0.5687816 +0.510322 0.4220313 0.5687816 +0.5195258 0.4220313 0.5687816 +0.5284142 0.4220313 0.5687816 +0.5370079 0.4220313 0.5687816 +0.5453253 0.4220313 0.5687816 +0.5533834 0.4220313 0.5687816 +0.5611974 0.4220313 0.5687816 +0.5687816 0.4220313 0.5687816 +0.092819 0.4348222 0.5687816 +0.1056428 0.4348222 0.5687816 +0.1201537 0.4348222 0.5687816 +0.1409607 0.4348222 0.5687816 +0.1678172 0.4348222 0.5687816 +0.1950164 0.4348222 0.5687816 +0.2210581 0.4348222 0.5687816 +0.245636 0.4348222 0.5687816 +0.2686816 0.4348222 0.5687816 +0.2902431 0.4348222 0.5687816 +0.3104189 0.4348222 0.5687816 +0.3293248 0.4348222 0.5687816 +0.3470774 0.4348222 0.5687816 +0.3637862 0.4348222 0.5687816 +0.3795513 0.4348222 0.5687816 +0.3944623 0.4348222 0.5687816 +0.4085988 0.4348222 0.5687816 +0.4220313 0.4348222 0.5687816 +0.4348222 0.4348222 0.5687816 +0.4470264 0.4348222 0.5687816 +0.4586928 0.4348222 0.5687816 +0.4698649 0.4348222 0.5687816 +0.4805811 0.4348222 0.5687816 +0.490876 0.4348222 0.5687816 +0.5007803 0.4348222 0.5687816 +0.510322 0.4348222 0.5687816 +0.5195258 0.4348222 0.5687816 +0.5284142 0.4348222 0.5687816 +0.5370079 0.4348222 0.5687816 +0.5453253 0.4348222 0.5687816 +0.5533834 0.4348222 0.5687816 +0.5611974 0.4348222 0.5687816 +0.5687816 0.4348222 0.5687816 +0.092819 0.4470264 0.5687816 +0.1056428 0.4470264 0.5687816 +0.1201537 0.4470264 0.5687816 +0.1409607 0.4470264 0.5687816 +0.1678172 0.4470264 0.5687816 +0.1950164 0.4470264 0.5687816 +0.2210581 0.4470264 0.5687816 +0.245636 0.4470264 0.5687816 +0.2686816 0.4470264 0.5687816 +0.2902431 0.4470264 0.5687816 +0.3104189 0.4470264 0.5687816 +0.3293248 0.4470264 0.5687816 +0.3470774 0.4470264 0.5687816 +0.3637862 0.4470264 0.5687816 +0.3795513 0.4470264 0.5687816 +0.3944623 0.4470264 0.5687816 +0.4085988 0.4470264 0.5687816 +0.4220313 0.4470264 0.5687816 +0.4348222 0.4470264 0.5687816 +0.4470264 0.4470264 0.5687816 +0.4586928 0.4470264 0.5687816 +0.4698649 0.4470264 0.5687816 +0.4805811 0.4470264 0.5687816 +0.490876 0.4470264 0.5687816 +0.5007803 0.4470264 0.5687816 +0.510322 0.4470264 0.5687816 +0.5195258 0.4470264 0.5687816 +0.5284142 0.4470264 0.5687816 +0.5370079 0.4470264 0.5687816 +0.5453253 0.4470264 0.5687816 +0.5533834 0.4470264 0.5687816 +0.5611974 0.4470264 0.5687816 +0.5687816 0.4470264 0.5687816 +0.092819 0.4586928 0.5687816 +0.1056428 0.4586928 0.5687816 +0.1201537 0.4586928 0.5687816 +0.1409607 0.4586928 0.5687816 +0.1678172 0.4586928 0.5687816 +0.1950164 0.4586928 0.5687816 +0.2210581 0.4586928 0.5687816 +0.245636 0.4586928 0.5687816 +0.2686816 0.4586928 0.5687816 +0.2902431 0.4586928 0.5687816 +0.3104189 0.4586928 0.5687816 +0.3293248 0.4586928 0.5687816 +0.3470774 0.4586928 0.5687816 +0.3637862 0.4586928 0.5687816 +0.3795513 0.4586928 0.5687816 +0.3944623 0.4586928 0.5687816 +0.4085988 0.4586928 0.5687816 +0.4220313 0.4586928 0.5687816 +0.4348222 0.4586928 0.5687816 +0.4470264 0.4586928 0.5687816 +0.4586928 0.4586928 0.5687816 +0.4698649 0.4586928 0.5687816 +0.4805811 0.4586928 0.5687816 +0.490876 0.4586928 0.5687816 +0.5007803 0.4586928 0.5687816 +0.510322 0.4586928 0.5687816 +0.5195258 0.4586928 0.5687816 +0.5284142 0.4586928 0.5687816 +0.5370079 0.4586928 0.5687816 +0.5453253 0.4586928 0.5687816 +0.5533834 0.4586928 0.5687816 +0.5611974 0.4586928 0.5687816 +0.5687816 0.4586928 0.5687816 +0.092819 0.4698649 0.5687816 +0.1056428 0.4698649 0.5687816 +0.1201537 0.4698649 0.5687816 +0.1409607 0.4698649 0.5687816 +0.1678172 0.4698649 0.5687816 +0.1950164 0.4698649 0.5687816 +0.2210581 0.4698649 0.5687816 +0.245636 0.4698649 0.5687816 +0.2686816 0.4698649 0.5687816 +0.2902431 0.4698649 0.5687816 +0.3104189 0.4698649 0.5687816 +0.3293248 0.4698649 0.5687816 +0.3470774 0.4698649 0.5687816 +0.3637862 0.4698649 0.5687816 +0.3795513 0.4698649 0.5687816 +0.3944623 0.4698649 0.5687816 +0.4085988 0.4698649 0.5687816 +0.4220313 0.4698649 0.5687816 +0.4348222 0.4698649 0.5687816 +0.4470264 0.4698649 0.5687816 +0.4586928 0.4698649 0.5687816 +0.4698649 0.4698649 0.5687816 +0.4805811 0.4698649 0.5687816 +0.490876 0.4698649 0.5687816 +0.5007803 0.4698649 0.5687816 +0.510322 0.4698649 0.5687816 +0.5195258 0.4698649 0.5687816 +0.5284142 0.4698649 0.5687816 +0.5370079 0.4698649 0.5687816 +0.5453253 0.4698649 0.5687816 +0.5533834 0.4698649 0.5687816 +0.5611974 0.4698649 0.5687816 +0.5687816 0.4698649 0.5687816 +0.092819 0.4805811 0.5687816 +0.1056428 0.4805811 0.5687816 +0.1201537 0.4805811 0.5687816 +0.1409607 0.4805811 0.5687816 +0.1678172 0.4805811 0.5687816 +0.1950164 0.4805811 0.5687816 +0.2210581 0.4805811 0.5687816 +0.245636 0.4805811 0.5687816 +0.2686816 0.4805811 0.5687816 +0.2902431 0.4805811 0.5687816 +0.3104189 0.4805811 0.5687816 +0.3293248 0.4805811 0.5687816 +0.3470774 0.4805811 0.5687816 +0.3637862 0.4805811 0.5687816 +0.3795513 0.4805811 0.5687816 +0.3944623 0.4805811 0.5687816 +0.4085988 0.4805811 0.5687816 +0.4220313 0.4805811 0.5687816 +0.4348222 0.4805811 0.5687816 +0.4470264 0.4805811 0.5687816 +0.4586928 0.4805811 0.5687816 +0.4698649 0.4805811 0.5687816 +0.4805811 0.4805811 0.5687816 +0.490876 0.4805811 0.5687816 +0.5007803 0.4805811 0.5687816 +0.510322 0.4805811 0.5687816 +0.5195258 0.4805811 0.5687816 +0.5284142 0.4805811 0.5687816 +0.5370079 0.4805811 0.5687816 +0.5453253 0.4805811 0.5687816 +0.5533834 0.4805811 0.5687816 +0.5611974 0.4805811 0.5687816 +0.5687816 0.4805811 0.5687816 +0.092819 0.490876 0.5687816 +0.1056428 0.490876 0.5687816 +0.1201537 0.490876 0.5687816 +0.1409607 0.490876 0.5687816 +0.1678172 0.490876 0.5687816 +0.1950164 0.490876 0.5687816 +0.2210581 0.490876 0.5687816 +0.245636 0.490876 0.5687816 +0.2686816 0.490876 0.5687816 +0.2902431 0.490876 0.5687816 +0.3104189 0.490876 0.5687816 +0.3293248 0.490876 0.5687816 +0.3470774 0.490876 0.5687816 +0.3637862 0.490876 0.5687816 +0.3795513 0.490876 0.5687816 +0.3944623 0.490876 0.5687816 +0.4085988 0.490876 0.5687816 +0.4220313 0.490876 0.5687816 +0.4348222 0.490876 0.5687816 +0.4470264 0.490876 0.5687816 +0.4586928 0.490876 0.5687816 +0.4698649 0.490876 0.5687816 +0.4805811 0.490876 0.5687816 +0.490876 0.490876 0.5687816 +0.5007803 0.490876 0.5687816 +0.510322 0.490876 0.5687816 +0.5195258 0.490876 0.5687816 +0.5284142 0.490876 0.5687816 +0.5370079 0.490876 0.5687816 +0.5453253 0.490876 0.5687816 +0.5533834 0.490876 0.5687816 +0.5611974 0.490876 0.5687816 +0.5687816 0.490876 0.5687816 +0.092819 0.5007803 0.5687816 +0.1056428 0.5007803 0.5687816 +0.1201537 0.5007803 0.5687816 +0.1409607 0.5007803 0.5687816 +0.1678172 0.5007803 0.5687816 +0.1950164 0.5007803 0.5687816 +0.2210581 0.5007803 0.5687816 +0.245636 0.5007803 0.5687816 +0.2686816 0.5007803 0.5687816 +0.2902431 0.5007803 0.5687816 +0.3104189 0.5007803 0.5687816 +0.3293248 0.5007803 0.5687816 +0.3470774 0.5007803 0.5687816 +0.3637862 0.5007803 0.5687816 +0.3795513 0.5007803 0.5687816 +0.3944623 0.5007803 0.5687816 +0.4085988 0.5007803 0.5687816 +0.4220313 0.5007803 0.5687816 +0.4348222 0.5007803 0.5687816 +0.4470264 0.5007803 0.5687816 +0.4586928 0.5007803 0.5687816 +0.4698649 0.5007803 0.5687816 +0.4805811 0.5007803 0.5687816 +0.490876 0.5007803 0.5687816 +0.5007803 0.5007803 0.5687816 +0.510322 0.5007803 0.5687816 +0.5195258 0.5007803 0.5687816 +0.5284142 0.5007803 0.5687816 +0.5370079 0.5007803 0.5687816 +0.5453253 0.5007803 0.5687816 +0.5533834 0.5007803 0.5687816 +0.5611974 0.5007803 0.5687816 +0.5687816 0.5007803 0.5687816 +0.092819 0.510322 0.5687816 +0.1056428 0.510322 0.5687816 +0.1201537 0.510322 0.5687816 +0.1409607 0.510322 0.5687816 +0.1678172 0.510322 0.5687816 +0.1950164 0.510322 0.5687816 +0.2210581 0.510322 0.5687816 +0.245636 0.510322 0.5687816 +0.2686816 0.510322 0.5687816 +0.2902431 0.510322 0.5687816 +0.3104189 0.510322 0.5687816 +0.3293248 0.510322 0.5687816 +0.3470774 0.510322 0.5687816 +0.3637862 0.510322 0.5687816 +0.3795513 0.510322 0.5687816 +0.3944623 0.510322 0.5687816 +0.4085988 0.510322 0.5687816 +0.4220313 0.510322 0.5687816 +0.4348222 0.510322 0.5687816 +0.4470264 0.510322 0.5687816 +0.4586928 0.510322 0.5687816 +0.4698649 0.510322 0.5687816 +0.4805811 0.510322 0.5687816 +0.490876 0.510322 0.5687816 +0.5007803 0.510322 0.5687816 +0.510322 0.510322 0.5687816 +0.5195258 0.510322 0.5687816 +0.5284142 0.510322 0.5687816 +0.5370079 0.510322 0.5687816 +0.5453253 0.510322 0.5687816 +0.5533834 0.510322 0.5687816 +0.5611974 0.510322 0.5687816 +0.5687816 0.510322 0.5687816 +0.092819 0.5195258 0.5687816 +0.1056428 0.5195258 0.5687816 +0.1201537 0.5195258 0.5687816 +0.1409607 0.5195258 0.5687816 +0.1678172 0.5195258 0.5687816 +0.1950164 0.5195258 0.5687816 +0.2210581 0.5195258 0.5687816 +0.245636 0.5195258 0.5687816 +0.2686816 0.5195258 0.5687816 +0.2902431 0.5195258 0.5687816 +0.3104189 0.5195258 0.5687816 +0.3293248 0.5195258 0.5687816 +0.3470774 0.5195258 0.5687816 +0.3637862 0.5195258 0.5687816 +0.3795513 0.5195258 0.5687816 +0.3944623 0.5195258 0.5687816 +0.4085988 0.5195258 0.5687816 +0.4220313 0.5195258 0.5687816 +0.4348222 0.5195258 0.5687816 +0.4470264 0.5195258 0.5687816 +0.4586928 0.5195258 0.5687816 +0.4698649 0.5195258 0.5687816 +0.4805811 0.5195258 0.5687816 +0.490876 0.5195258 0.5687816 +0.5007803 0.5195258 0.5687816 +0.510322 0.5195258 0.5687816 +0.5195258 0.5195258 0.5687816 +0.5284142 0.5195258 0.5687816 +0.5370079 0.5195258 0.5687816 +0.5453253 0.5195258 0.5687816 +0.5533834 0.5195258 0.5687816 +0.5611974 0.5195258 0.5687816 +0.5687816 0.5195258 0.5687816 +0.092819 0.5284142 0.5687816 +0.1056428 0.5284142 0.5687816 +0.1201537 0.5284142 0.5687816 +0.1409607 0.5284142 0.5687816 +0.1678172 0.5284142 0.5687816 +0.1950164 0.5284142 0.5687816 +0.2210581 0.5284142 0.5687816 +0.245636 0.5284142 0.5687816 +0.2686816 0.5284142 0.5687816 +0.2902431 0.5284142 0.5687816 +0.3104189 0.5284142 0.5687816 +0.3293248 0.5284142 0.5687816 +0.3470774 0.5284142 0.5687816 +0.3637862 0.5284142 0.5687816 +0.3795513 0.5284142 0.5687816 +0.3944623 0.5284142 0.5687816 +0.4085988 0.5284142 0.5687816 +0.4220313 0.5284142 0.5687816 +0.4348222 0.5284142 0.5687816 +0.4470264 0.5284142 0.5687816 +0.4586928 0.5284142 0.5687816 +0.4698649 0.5284142 0.5687816 +0.4805811 0.5284142 0.5687816 +0.490876 0.5284142 0.5687816 +0.5007803 0.5284142 0.5687816 +0.510322 0.5284142 0.5687816 +0.5195258 0.5284142 0.5687816 +0.5284142 0.5284142 0.5687816 +0.5370079 0.5284142 0.5687816 +0.5453253 0.5284142 0.5687816 +0.5533834 0.5284142 0.5687816 +0.5611974 0.5284142 0.5687816 +0.5687816 0.5284142 0.5687816 +0.092819 0.5370079 0.5687816 +0.1056428 0.5370079 0.5687816 +0.1201537 0.5370079 0.5687816 +0.1409607 0.5370079 0.5687816 +0.1678172 0.5370079 0.5687816 +0.1950164 0.5370079 0.5687816 +0.2210581 0.5370079 0.5687816 +0.245636 0.5370079 0.5687816 +0.2686816 0.5370079 0.5687816 +0.2902431 0.5370079 0.5687816 +0.3104189 0.5370079 0.5687816 +0.3293248 0.5370079 0.5687816 +0.3470774 0.5370079 0.5687816 +0.3637862 0.5370079 0.5687816 +0.3795513 0.5370079 0.5687816 +0.3944623 0.5370079 0.5687816 +0.4085988 0.5370079 0.5687816 +0.4220313 0.5370079 0.5687816 +0.4348222 0.5370079 0.5687816 +0.4470264 0.5370079 0.5687816 +0.4586928 0.5370079 0.5687816 +0.4698649 0.5370079 0.5687816 +0.4805811 0.5370079 0.5687816 +0.490876 0.5370079 0.5687816 +0.5007803 0.5370079 0.5687816 +0.510322 0.5370079 0.5687816 +0.5195258 0.5370079 0.5687816 +0.5284142 0.5370079 0.5687816 +0.5370079 0.5370079 0.5687816 +0.5453253 0.5370079 0.5687816 +0.5533834 0.5370079 0.5687816 +0.5611974 0.5370079 0.5687816 +0.5687816 0.5370079 0.5687816 +0.092819 0.5453253 0.5687816 +0.1056428 0.5453253 0.5687816 +0.1201537 0.5453253 0.5687816 +0.1409607 0.5453253 0.5687816 +0.1678172 0.5453253 0.5687816 +0.1950164 0.5453253 0.5687816 +0.2210581 0.5453253 0.5687816 +0.245636 0.5453253 0.5687816 +0.2686816 0.5453253 0.5687816 +0.2902431 0.5453253 0.5687816 +0.3104189 0.5453253 0.5687816 +0.3293248 0.5453253 0.5687816 +0.3470774 0.5453253 0.5687816 +0.3637862 0.5453253 0.5687816 +0.3795513 0.5453253 0.5687816 +0.3944623 0.5453253 0.5687816 +0.4085988 0.5453253 0.5687816 +0.4220313 0.5453253 0.5687816 +0.4348222 0.5453253 0.5687816 +0.4470264 0.5453253 0.5687816 +0.4586928 0.5453253 0.5687816 +0.4698649 0.5453253 0.5687816 +0.4805811 0.5453253 0.5687816 +0.490876 0.5453253 0.5687816 +0.5007803 0.5453253 0.5687816 +0.510322 0.5453253 0.5687816 +0.5195258 0.5453253 0.5687816 +0.5284142 0.5453253 0.5687816 +0.5370079 0.5453253 0.5687816 +0.5453253 0.5453253 0.5687816 +0.5533834 0.5453253 0.5687816 +0.5611974 0.5453253 0.5687816 +0.5687816 0.5453253 0.5687816 +0.092819 0.5533834 0.5687816 +0.1056428 0.5533834 0.5687816 +0.1201537 0.5533834 0.5687816 +0.1409607 0.5533834 0.5687816 +0.1678172 0.5533834 0.5687816 +0.1950164 0.5533834 0.5687816 +0.2210581 0.5533834 0.5687816 +0.245636 0.5533834 0.5687816 +0.2686816 0.5533834 0.5687816 +0.2902431 0.5533834 0.5687816 +0.3104189 0.5533834 0.5687816 +0.3293248 0.5533834 0.5687816 +0.3470774 0.5533834 0.5687816 +0.3637862 0.5533834 0.5687816 +0.3795513 0.5533834 0.5687816 +0.3944623 0.5533834 0.5687816 +0.4085988 0.5533834 0.5687816 +0.4220313 0.5533834 0.5687816 +0.4348222 0.5533834 0.5687816 +0.4470264 0.5533834 0.5687816 +0.4586928 0.5533834 0.5687816 +0.4698649 0.5533834 0.5687816 +0.4805811 0.5533834 0.5687816 +0.490876 0.5533834 0.5687816 +0.5007803 0.5533834 0.5687816 +0.510322 0.5533834 0.5687816 +0.5195258 0.5533834 0.5687816 +0.5284142 0.5533834 0.5687816 +0.5370079 0.5533834 0.5687816 +0.5453253 0.5533834 0.5687816 +0.5533834 0.5533834 0.5687816 +0.5611974 0.5533834 0.5687816 +0.5687816 0.5533834 0.5687816 +0.092819 0.5611974 0.5687816 +0.1056428 0.5611974 0.5687816 +0.1201537 0.5611974 0.5687816 +0.1409607 0.5611974 0.5687816 +0.1678172 0.5611974 0.5687816 +0.1950164 0.5611974 0.5687816 +0.2210581 0.5611974 0.5687816 +0.245636 0.5611974 0.5687816 +0.2686816 0.5611974 0.5687816 +0.2902431 0.5611974 0.5687816 +0.3104189 0.5611974 0.5687816 +0.3293248 0.5611974 0.5687816 +0.3470774 0.5611974 0.5687816 +0.3637862 0.5611974 0.5687816 +0.3795513 0.5611974 0.5687816 +0.3944623 0.5611974 0.5687816 +0.4085988 0.5611974 0.5687816 +0.4220313 0.5611974 0.5687816 +0.4348222 0.5611974 0.5687816 +0.4470264 0.5611974 0.5687816 +0.4586928 0.5611974 0.5687816 +0.4698649 0.5611974 0.5687816 +0.4805811 0.5611974 0.5687816 +0.490876 0.5611974 0.5687816 +0.5007803 0.5611974 0.5687816 +0.510322 0.5611974 0.5687816 +0.5195258 0.5611974 0.5687816 +0.5284142 0.5611974 0.5687816 +0.5370079 0.5611974 0.5687816 +0.5453253 0.5611974 0.5687816 +0.5533834 0.5611974 0.5687816 +0.5611974 0.5611974 0.5687816 +0.5687816 0.5611974 0.5687816 +0.092819 0.5687816 0.5687816 +0.1056428 0.5687816 0.5687816 +0.1201537 0.5687816 0.5687816 +0.1409607 0.5687816 0.5687816 +0.1678172 0.5687816 0.5687816 +0.1950164 0.5687816 0.5687816 +0.2210581 0.5687816 0.5687816 +0.245636 0.5687816 0.5687816 +0.2686816 0.5687816 0.5687816 +0.2902431 0.5687816 0.5687816 +0.3104189 0.5687816 0.5687816 +0.3293248 0.5687816 0.5687816 +0.3470774 0.5687816 0.5687816 +0.3637862 0.5687816 0.5687816 +0.3795513 0.5687816 0.5687816 +0.3944623 0.5687816 0.5687816 +0.4085988 0.5687816 0.5687816 +0.4220313 0.5687816 0.5687816 +0.4348222 0.5687816 0.5687816 +0.4470264 0.5687816 0.5687816 +0.4586928 0.5687816 0.5687816 +0.4698649 0.5687816 0.5687816 +0.4805811 0.5687816 0.5687816 +0.490876 0.5687816 0.5687816 +0.5007803 0.5687816 0.5687816 +0.510322 0.5687816 0.5687816 +0.5195258 0.5687816 0.5687816 +0.5284142 0.5687816 0.5687816 +0.5370079 0.5687816 0.5687816 +0.5453253 0.5687816 0.5687816 +0.5533834 0.5687816 0.5687816 +0.5611974 0.5687816 0.5687816 +0.5687816 0.5687816 0.5687816 diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/sRGB to Unity Log r1.cube.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/sRGB to Unity Log r1.cube.meta new file mode 100644 index 0000000..7000094 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Cubes/sRGB to Unity Log r1.cube.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0667d6b8b8bbc4241a55ac71faa5de15 +timeCreated: 1496826837 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/LUTs.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/LUTs.meta new file mode 100644 index 0000000..1f94f0c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/LUTs.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 499867e2df2e54e4aad0b9333221f875 +folderAsset: yes +timeCreated: 1473255405 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/LUTs/NeutralLdrLut.png b/UnityCaptureSample/Assets/PostProcessing/Textures/LUTs/NeutralLdrLut.png new file mode 100644 index 0000000..b8724d4 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/LUTs/NeutralLdrLut.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/LUTs/NeutralLdrLut.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/LUTs/NeutralLdrLut.png.meta new file mode 100644 index 0000000..26b8290 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/LUTs/NeutralLdrLut.png.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 4f98e9c96c8a48541b5eb704e92d99b8 +timeCreated: 1494512026 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 3 + maxTextureSize: 2048 + textureSettings: + filterMode: 1 + aniso: 0 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 0 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt.meta new file mode 100644 index 0000000..1efaa7c --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 705e7922061713741885ae52a3e0bea4 +folderAsset: yes +timeCreated: 1472737148 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt00.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt00.png new file mode 100644 index 0000000..d90b8c0 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt00.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt00.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt00.png.meta new file mode 100644 index 0000000..62af47e --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt00.png.meta @@ -0,0 +1,84 @@ +fileFormatVersion: 2 +guid: 69e847bbff1cf5449a4ee0bbd045dbc9 +timeCreated: 1472572785 +licenseType: Store +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 4096 + textureSettings: + filterMode: -1 + aniso: 0 + mipBias: -1 + wrapMode: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 0 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: PS4 + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt01.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt01.png new file mode 100644 index 0000000..eb9efb6 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt01.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt01.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt01.png.meta new file mode 100644 index 0000000..e735079 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt01.png.meta @@ -0,0 +1,84 @@ +fileFormatVersion: 2 +guid: 3884f7a2d04ffe8409ad9200b275896f +timeCreated: 1472551546 +licenseType: Store +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 4096 + textureSettings: + filterMode: -1 + aniso: 0 + mipBias: -1 + wrapMode: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 0 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: PS4 + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt02.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt02.png new file mode 100644 index 0000000..bc52c2a Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt02.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt02.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt02.png.meta new file mode 100644 index 0000000..3ccc215 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt02.png.meta @@ -0,0 +1,84 @@ +fileFormatVersion: 2 +guid: a2960ffde020f27409e070d92fb2e00b +timeCreated: 1472632371 +licenseType: Store +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 4096 + textureSettings: + filterMode: -1 + aniso: 0 + mipBias: -1 + wrapMode: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 0 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: PS4 + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt03.png b/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt03.png new file mode 100644 index 0000000..7ccd8af Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt03.png differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt03.png.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt03.png.meta new file mode 100644 index 0000000..5a8a1fa --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Lens Dirt/LensDirt03.png.meta @@ -0,0 +1,84 @@ +fileFormatVersion: 2 +guid: 7a051dbda2d7bc447bee412427cd311e +timeCreated: 1472641925 +licenseType: Store +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 4096 + textureSettings: + filterMode: -1 + aniso: 0 + mipBias: -1 + wrapMode: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 0 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: PS4 + maxTextureSize: 4096 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/SMAA.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/SMAA.meta new file mode 100644 index 0000000..6ece3b5 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/SMAA.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 38da3638e0c5cfc4cbafb133be6af039 +folderAsset: yes +timeCreated: 1497735225 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/SMAA/AreaTex.tga b/UnityCaptureSample/Assets/PostProcessing/Textures/SMAA/AreaTex.tga new file mode 100644 index 0000000..57f595e Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/SMAA/AreaTex.tga differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/SMAA/AreaTex.tga.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/SMAA/AreaTex.tga.meta new file mode 100644 index 0000000..fb232df --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/SMAA/AreaTex.tga.meta @@ -0,0 +1,108 @@ +fileFormatVersion: 2 +guid: 73ec4ae984a0a0f44a2be737e41a6f2f +timeCreated: 1497870375 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 2048 + textureSettings: + filterMode: 1 + aniso: 0 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 0 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: iPhone + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Android + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: WebGL + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: PS4 + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/SMAA/SearchTex.tga b/UnityCaptureSample/Assets/PostProcessing/Textures/SMAA/SearchTex.tga new file mode 100644 index 0000000..bda78d0 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/SMAA/SearchTex.tga differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/SMAA/SearchTex.tga.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/SMAA/SearchTex.tga.meta new file mode 100644 index 0000000..f863177 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/SMAA/SearchTex.tga.meta @@ -0,0 +1,84 @@ +fileFormatVersion: 2 +guid: d99701099481a2f489610e977df6dcbc +timeCreated: 1497870385 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 0 + linearTexture: 1 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 1 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: 0 + aniso: -1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 2 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 10 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: Standalone + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + - buildTarget: PS4 + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs.meta new file mode 100644 index 0000000..833d265 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 67d9249960fda4c41b0a23a65573a8a2 +folderAsset: yes +timeCreated: 1473255405 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_BlueRed.tga b/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_BlueRed.tga new file mode 100644 index 0000000..81828f5 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_BlueRed.tga differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_BlueRed.tga.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_BlueRed.tga.meta new file mode 100644 index 0000000..f47c5b8 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_BlueRed.tga.meta @@ -0,0 +1,59 @@ +fileFormatVersion: 2 +guid: 318cbcd94840f1d48aca4d86234dc2e7 +timeCreated: 1473255656 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 1 + aniso: 0 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 5 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_GreenPurple.tga b/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_GreenPurple.tga new file mode 100644 index 0000000..4dd4db7 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_GreenPurple.tga differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_GreenPurple.tga.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_GreenPurple.tga.meta new file mode 100644 index 0000000..1bec2a9 --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_GreenPurple.tga.meta @@ -0,0 +1,59 @@ +fileFormatVersion: 2 +guid: 4a8f054acfbd08043a931cd22760758d +timeCreated: 1473255985 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 1 + aniso: 0 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 5 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_PurpleGreen.tga b/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_PurpleGreen.tga new file mode 100644 index 0000000..d67304c Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_PurpleGreen.tga differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_PurpleGreen.tga.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_PurpleGreen.tga.meta new file mode 100644 index 0000000..1077fda --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_PurpleGreen.tga.meta @@ -0,0 +1,59 @@ +fileFormatVersion: 2 +guid: 42183971d24cfe443a346e7ec6e83bbb +timeCreated: 1473256088 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 1 + aniso: 0 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 5 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_RedBlue.tga b/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_RedBlue.tga new file mode 100644 index 0000000..43cd826 Binary files /dev/null and b/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_RedBlue.tga differ diff --git a/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_RedBlue.tga.meta b/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_RedBlue.tga.meta new file mode 100644 index 0000000..fbe39ef --- /dev/null +++ b/UnityCaptureSample/Assets/PostProcessing/Textures/Spectral LUTs/SpectralLut_RedBlue.tga.meta @@ -0,0 +1,59 @@ +fileFormatVersion: 2 +guid: ff5f3317371838d4fa16ac6c2acf2040 +timeCreated: 1473255656 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -3 + maxTextureSize: 32 + textureSettings: + filterMode: 1 + aniso: 0 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 5 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/Scripts.meta b/UnityCaptureSample/Assets/Scripts.meta new file mode 100644 index 0000000..79ac336 --- /dev/null +++ b/UnityCaptureSample/Assets/Scripts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eeac16f97f7a0624abdde9fb4d4f6d19 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/Scripts/Screenshot.cs b/UnityCaptureSample/Assets/Scripts/Screenshot.cs new file mode 100644 index 0000000..e1630c3 --- /dev/null +++ b/UnityCaptureSample/Assets/Scripts/Screenshot.cs @@ -0,0 +1,62 @@ +using System.Collections; +using System.Collections.Generic; +using System.IO; +using UnityEngine; + +[RequireComponent(typeof(Camera))] +public class Screenshot : MonoBehaviour +{ + public enum ScreenshotType + { + fromUpdate, + fromOnRender, + } + + private Camera _cam; + private bool _keyDown = false; + private Texture2D _tex; + private RenderTexture _rt; + private void Start() + { + _cam = GetComponent(); + _tex = new Texture2D(Screen.width, Screen.height, TextureFormat.RGBA32, false); + _rt = new RenderTexture(Screen.width, Screen.height, 32); + } + + private void Update() + { + _keyDown = Input.GetKeyDown(KeyCode.O); + if (Input.GetKeyDown(KeyCode.P)) + { + StartCoroutine(TakeScreenshot()); + } + } + + void OnRenderImage(RenderTexture source, RenderTexture destination) + { + Graphics.Blit(source, destination); + if (_keyDown) + { + _tex.ReadPixels(new Rect(0, 0, Screen.width, Screen.height), 0, 0); + File.WriteAllBytes("test.png", _tex.EncodeToPNG()); + } + } + + + private IEnumerator TakeScreenshot() + { + yield return new WaitForEndOfFrame(); + + + _cam.targetTexture = _rt; + _cam.Render(); + RenderTexture.active = _rt; + _tex.ReadPixels(new Rect(0, 0, Screen.width, Screen.height), 0, 0); + _cam.targetTexture = null; + RenderTexture.active = null; + + yield return 0; + + File.WriteAllBytes("test.png", _tex.EncodeToPNG()); + } +} diff --git a/UnityCaptureSample/Assets/Scripts/Screenshot.cs.meta b/UnityCaptureSample/Assets/Scripts/Screenshot.cs.meta new file mode 100644 index 0000000..6e01247 --- /dev/null +++ b/UnityCaptureSample/Assets/Scripts/Screenshot.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: db9666c473d4e444d917fce2b739026a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/UnityCapture/Plugins/x86/UnityCapturePlugin.dll b/UnityCaptureSample/Assets/UnityCapture/Plugins/x86/UnityCapturePlugin.dll index 2d32876..aa641c8 100644 Binary files a/UnityCaptureSample/Assets/UnityCapture/Plugins/x86/UnityCapturePlugin.dll and b/UnityCaptureSample/Assets/UnityCapture/Plugins/x86/UnityCapturePlugin.dll differ diff --git a/UnityCaptureSample/Assets/UnityCapture/Plugins/x86/glew32.dll.meta b/UnityCaptureSample/Assets/UnityCapture/Plugins/x86/glew32.dll.meta new file mode 100644 index 0000000..590ef44 --- /dev/null +++ b/UnityCaptureSample/Assets/UnityCapture/Plugins/x86/glew32.dll.meta @@ -0,0 +1,85 @@ +fileFormatVersion: 2 +guid: 181dfd665b0834044beed5859a277f20 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + isOverridable: 0 + platformData: + - first: + '': OSXIntel + second: + enabled: 1 + settings: + CPU: AnyCPU + - first: + '': OSXIntel64 + second: + enabled: 0 + settings: + CPU: None + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + CPU: x86 + DefaultValueInitialized: true + - first: + Facebook: Win + second: + enabled: 1 + settings: + CPU: AnyCPU + - first: + Facebook: Win64 + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Linux + second: + enabled: 1 + settings: + CPU: x86 + - first: + Standalone: Linux64 + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: LinuxUniversal + second: + enabled: 1 + settings: + CPU: x86 + - first: + Standalone: OSXUniversal + second: + enabled: 0 + settings: + CPU: x86 + - first: + Standalone: Win + second: + enabled: 1 + settings: + CPU: AnyCPU + - first: + Standalone: Win64 + second: + enabled: 0 + settings: + CPU: None + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/UnityCapture/Plugins/x86_64/UnityCapturePlugin.dll b/UnityCaptureSample/Assets/UnityCapture/Plugins/x86_64/UnityCapturePlugin.dll index 6f43280..98475d8 100644 Binary files a/UnityCaptureSample/Assets/UnityCapture/Plugins/x86_64/UnityCapturePlugin.dll and b/UnityCaptureSample/Assets/UnityCapture/Plugins/x86_64/UnityCapturePlugin.dll differ diff --git a/UnityCaptureSample/Assets/UnityCapture/Plugins/x86_64/UnityCapturePlugin.pdb.meta b/UnityCaptureSample/Assets/UnityCapture/Plugins/x86_64/UnityCapturePlugin.pdb.meta new file mode 100644 index 0000000..e073f62 --- /dev/null +++ b/UnityCaptureSample/Assets/UnityCapture/Plugins/x86_64/UnityCapturePlugin.pdb.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 743071c9bf3728242b859365ccf39e38 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/UnityCapture/Plugins/x86_64/glew32.dll.meta b/UnityCaptureSample/Assets/UnityCapture/Plugins/x86_64/glew32.dll.meta new file mode 100644 index 0000000..459f4e9 --- /dev/null +++ b/UnityCaptureSample/Assets/UnityCapture/Plugins/x86_64/glew32.dll.meta @@ -0,0 +1,76 @@ +fileFormatVersion: 2 +guid: 3e7a235366436334d8b37927adcb50a5 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + CPU: x86_64 + DefaultValueInitialized: true + - first: + Facebook: Win + second: + enabled: 0 + settings: + CPU: None + - first: + Facebook: Win64 + second: + enabled: 1 + settings: + CPU: AnyCPU + - first: + Standalone: Linux + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Linux64 + second: + enabled: 1 + settings: + CPU: x86_64 + - first: + Standalone: LinuxUniversal + second: + enabled: 1 + settings: + CPU: x86_64 + - first: + Standalone: OSXUniversal + second: + enabled: 0 + settings: + CPU: x86_64 + - first: + Standalone: Win + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Win64 + second: + enabled: 1 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/UnityCapture/UnityCapture.cs b/UnityCaptureSample/Assets/UnityCapture/UnityCapture.cs index d8cbc6e..a503334 100644 --- a/UnityCaptureSample/Assets/UnityCapture/UnityCapture.cs +++ b/UnityCaptureSample/Assets/UnityCapture/UnityCapture.cs @@ -26,6 +26,8 @@ misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. */ +using System.Collections; +using System.IO; using UnityEngine; [RequireComponent(typeof(Camera))] @@ -34,19 +36,75 @@ public class UnityCapture : MonoBehaviour public enum ECaptureDevice { CaptureDevice1 = 0, CaptureDevice2 = 1, CaptureDevice3 = 2, CaptureDevice4 = 3, CaptureDevice5 = 4, CaptureDevice6 = 5, CaptureDevice7 = 6, CaptureDevice8 = 7, CaptureDevice9 = 8, CaptureDevice10 = 9 } public enum EResizeMode { Disabled = 0, LinearResize = 1 } public enum EMirrorMode { Disabled = 0, MirrorHorizontally = 1 } - public enum ECaptureSendResult { SUCCESS = 0, WARNING_FRAMESKIP = 1, WARNING_CAPTUREINACTIVE = 2, ERROR_UNSUPPORTEDGRAPHICSDEVICE = 100, ERROR_PARAMETER = 101, ERROR_TOOLARGERESOLUTION = 102, ERROR_TEXTUREFORMAT = 103, ERROR_READTEXTURE = 104, ERROR_INVALIDCAPTUREINSTANCEPTR = 200 }; + public enum ECaptureSendResult + { + SUCCESS = 0, + WARNING_FRAMESKIP = 1, + WARNING_CAPTUREINACTIVE = 2, + ERROR_UNSUPPORTEDGRAPHICSDEVICE = 100, + ERROR_PARAMETER = 101, + ERROR_TOOLARGERESOLUTION = 102, + ERROR_TEXTUREFORMAT = 103, + ERROR_READTEXTURE = 104, + ERROR_READTEXTUREDATA = 105, + ERROR_TEXTUREHANDLE = 106, + ERROR_INVALIDCAPTUREINSTANCEPTR = 200 + }; - [SerializeField] [Tooltip("Capture device index")] public ECaptureDevice CaptureDevice = ECaptureDevice.CaptureDevice1; - [SerializeField] [Tooltip("Scale image if Unity and capture resolution don't match (can introduce frame dropping, not recommended)")] public EResizeMode ResizeMode = EResizeMode.Disabled; - [SerializeField] [Tooltip("How many milliseconds to wait for a new frame until sending is considered to be stopped")] public int Timeout = 1000; - [SerializeField] [Tooltip("Mirror captured output image")] public EMirrorMode MirrorMode = EMirrorMode.Disabled; - [SerializeField] [Tooltip("Introduce a frame of latency in favor of frame rate")] public bool DoubleBuffering = false; - [SerializeField] [Tooltip("Check to enable VSync during capturing")] public bool EnableVSync = false; - [SerializeField] [Tooltip("Set the desired render target frame rate")] public int TargetFrameRate = 60; - [SerializeField] [Tooltip("Check to disable output of warnings")] public bool HideWarnings = false; + [Tooltip("Capture device index")] public ECaptureDevice CaptureDevice = ECaptureDevice.CaptureDevice1; + [Tooltip("Scale image if Unity and capture resolution don't match (can introduce frame dropping, not recommended)")] public EResizeMode ResizeMode = EResizeMode.Disabled; + [Tooltip("How many milliseconds to wait for a new frame until sending is considered to be stopped")] public int Timeout = 1000; + [Tooltip("Mirror captured output image")] public EMirrorMode MirrorMode = EMirrorMode.Disabled; + [Tooltip("Introduce a frame of latency in favor of frame rate")] public bool DoubleBuffering = false; + [Tooltip("Check to enable VSync during capturing")] public bool EnableVSync = false; + [Tooltip("Set the desired render target frame rate")] public int TargetFrameRate = 60; + [Tooltip("Check to disable output of warnings")] public bool HideWarnings = false; Interface CaptureInterface; + [SerializeField] + private bool _runOnStart = true; + + private bool _requestScreenshot = false; + private RenderTexture _sourceTexture = null; + private string _requestedScreenshotFileName = "test.png"; + + private bool _active = false; + public bool active + { + get + { + return _active; + } + set + { + if (_active != value) + { + if (CaptureInterface != null) + { + CaptureInterface.active = value; + } + if (_active) + { + _active = false; + if (CaptureInterface != null) + { + StopCoroutine(CaptureInterface.CallPluginAtEndOfFrames()); + } + } + else + { + _active = true; + if (CaptureInterface != null) + { + StartCoroutine(CaptureInterface.CallPluginAtEndOfFrames()); + } + } + _active = value; + } + } + } + void Awake() { QualitySettings.vSyncCount = (EnableVSync ? 1 : 0); @@ -59,40 +117,100 @@ void Awake() } } + void Start() { CaptureInterface = new Interface(CaptureDevice); + if (_runOnStart) + { + active = true; + } + } + +#if UNITY_EDITOR + private void Update() + { + if (Input.GetKeyDown(KeyCode.Space)) + { + active = !active; + } + if (Input.GetKeyDown(KeyCode.T)) + { + _requestScreenshot = true; + } + } +#endif + + // Assuming that the containing directory exists.. + public void TakeScreenshot(string fileName) + { + _requestedScreenshotFileName = fileName; + _requestScreenshot = true; } void OnDestroy() { - CaptureInterface.Close(); + if (CaptureInterface != null) + { + CaptureInterface.Close(); + } } void OnRenderImage(RenderTexture source, RenderTexture destination) { Graphics.Blit(source, destination); - switch (CaptureInterface.SendTexture(source, Timeout, DoubleBuffering, ResizeMode, MirrorMode)) - { - case ECaptureSendResult.SUCCESS: break; - case ECaptureSendResult.WARNING_FRAMESKIP: if (!HideWarnings) Debug.LogWarning("[UnityCapture] Capture device did skip a frame read, capture frame rate will not match render frame rate."); break; - case ECaptureSendResult.WARNING_CAPTUREINACTIVE: if (!HideWarnings) Debug.LogWarning("[UnityCapture] Capture device is inactive"); break; - case ECaptureSendResult.ERROR_UNSUPPORTEDGRAPHICSDEVICE: Debug.LogError("[UnityCapture] Unsupported graphics device (only D3D11 supported)"); break; - case ECaptureSendResult.ERROR_PARAMETER: Debug.LogError("[UnityCapture] Input parameter error"); break; - case ECaptureSendResult.ERROR_TOOLARGERESOLUTION: Debug.LogError("[UnityCapture] Render resolution is too large to send to capture device"); break; - case ECaptureSendResult.ERROR_TEXTUREFORMAT: Debug.LogError("[UnityCapture] Render texture format is unsupported (only basic non-HDR (ARGB32) and HDR (FP16/ARGB Half) formats are supported)"); break; - case ECaptureSendResult.ERROR_READTEXTURE: Debug.LogError("[UnityCapture] Error while reading texture image data"); break; - case ECaptureSendResult.ERROR_INVALIDCAPTUREINSTANCEPTR: Debug.LogError("[UnityCapture] Invalid Capture Instance Pointer"); break; + + if (_sourceTexture == null) + { + _sourceTexture = source; // Assuming that the source texture reference will be the same... + } + + if (_requestScreenshot) + { + CaptureInterface.SetTexture(source, Timeout, DoubleBuffering, ResizeMode, MirrorMode, _requestedScreenshotFileName); + _requestScreenshot = false; + StartCoroutine(CaptureInterface.TakeScreenshot()); + } + + if (_active) + { + // This method is always called, in case of an unespected error, it may help to fall back in a working situation + // Another idea should be to start the recording process manually and call this method only one (when the result is RET_SUCCESS) and never call it again + CaptureInterface.SetTexture(source, Timeout, DoubleBuffering, ResizeMode, MirrorMode); + ECaptureSendResult result = CaptureInterface.LastResult(); // Retreiving back the result + switch (result) + { + case ECaptureSendResult.SUCCESS: break; + case ECaptureSendResult.WARNING_FRAMESKIP: if (!HideWarnings) Debug.LogWarning("[UnityCapture] Capture device did skip a frame read, capture frame rate will not match render frame rate."); break; + case ECaptureSendResult.WARNING_CAPTUREINACTIVE: if (!HideWarnings) Debug.LogWarning("[UnityCapture] Capture device is inactive"); break; + case ECaptureSendResult.ERROR_UNSUPPORTEDGRAPHICSDEVICE: Debug.LogError("[UnityCapture] Unsupported graphics device (only D3D11/GL/GLCORE/GLES supported)"); break; + case ECaptureSendResult.ERROR_PARAMETER: Debug.LogError("[UnityCapture] Input parameter error"); break; + case ECaptureSendResult.ERROR_TOOLARGERESOLUTION: Debug.LogError("[UnityCapture] Render resolution is too large to send to capture device"); break; + case ECaptureSendResult.ERROR_TEXTUREFORMAT: Debug.LogError("[UnityCapture] Render texture format is unsupported (only basic non-HDR (ARGB32) and HDR (FP16/ARGB Half) formats are supported)"); break; + case ECaptureSendResult.ERROR_READTEXTURE: Debug.LogError("[UnityCapture] Error while reading texture image data"); break; + case ECaptureSendResult.ERROR_READTEXTUREDATA: Debug.LogError("[UnityCapture] Error while reading texture buffer data"); break; + case ECaptureSendResult.ERROR_TEXTUREHANDLE: Debug.LogError("[UnityCapture] Texture handle error"); break; + case ECaptureSendResult.ERROR_INVALIDCAPTUREINSTANCEPTR: Debug.LogError("[UnityCapture] Invalid Capture Instance Pointer"); break; + default: Debug.LogErrorFormat("[UnityCapture] Another error occured: {0} (0x{1})", result, result.ToString("X")); break; + } } } public class Interface { [System.Runtime.InteropServices.DllImport("UnityCapturePlugin")] extern static System.IntPtr CaptureCreateInstance(int CapNum); + [System.Runtime.InteropServices.DllImport("UnityCapturePlugin")] extern static ECaptureSendResult GetLastResult(); [System.Runtime.InteropServices.DllImport("UnityCapturePlugin")] extern static void CaptureDeleteInstance(System.IntPtr instance); - [System.Runtime.InteropServices.DllImport("UnityCapturePlugin")] extern static ECaptureSendResult CaptureSendTexture(System.IntPtr instance, System.IntPtr nativetexture, int Timeout, bool UseDoubleBuffering, EResizeMode ResizeMode, EMirrorMode MirrorMode, bool IsLinearColorSpace); + [System.Runtime.InteropServices.DllImport("UnityCapturePlugin")] extern static void SetTextureFromUnity(System.IntPtr instance, System.IntPtr nativetexture, int Timeout, bool UseDoubleBuffering, EResizeMode ResizeMode, EMirrorMode MirrorMode, bool IsLinearColorSpace, int width, int height); + [System.Runtime.InteropServices.DllImport("UnityCapturePlugin")] extern static void PrepareScreenshot(System.IntPtr instance, System.IntPtr nativetexture, int Timeout, bool UseDoubleBuffering, EResizeMode ResizeMode, EMirrorMode MirrorMode, bool IsLinearColorSpace, int width, int height, byte[] fileName); + [System.Runtime.InteropServices.DllImport("UnityCapturePlugin")] extern static System.IntPtr GetTakeScreenshotEventFunc(); + [System.Runtime.InteropServices.DllImport("UnityCapturePlugin")] extern static System.IntPtr GetRenderEventFunc(); System.IntPtr CaptureInstance; + System.IntPtr _cachedTexturePtr; + + public bool active = false; + public Interface(ECaptureDevice CaptureDevice) { CaptureInstance = CaptureCreateInstance((int)CaptureDevice); @@ -103,16 +221,65 @@ public Interface(ECaptureDevice CaptureDevice) Close(); } + public IEnumerator CallPluginAtEndOfFrames() + { + while (active) + { + yield return new WaitForEndOfFrame(); + GL.IssuePluginEvent(GetRenderEventFunc(), 1); + } + } + + public IEnumerator TakeScreenshot() + { + yield return new WaitForEndOfFrame(); + GL.IssuePluginEvent(GetTakeScreenshotEventFunc(), 1); + } + public void Close() { - if (CaptureInstance != System.IntPtr.Zero) CaptureDeleteInstance(CaptureInstance); + if (CaptureInstance != System.IntPtr.Zero) + { + CaptureDeleteInstance(CaptureInstance); + } CaptureInstance = System.IntPtr.Zero; } - public ECaptureSendResult SendTexture(Texture Source, int Timeout = 1000, bool DoubleBuffering = false, EResizeMode ResizeMode = EResizeMode.Disabled, EMirrorMode MirrorMode = EMirrorMode.Disabled) + /// + /// Prepare the CatpureInstance to the texture sending process + /// + /// + /// + /// + /// + /// + public void SetTexture(Texture Source, int Timeout = 1000, bool DoubleBuffering = false, EResizeMode ResizeMode = EResizeMode.Disabled, EMirrorMode MirrorMode = EMirrorMode.Disabled, string fileName = null) + { + if (CaptureInstance != System.IntPtr.Zero) + { + if (_cachedTexturePtr == System.IntPtr.Zero) + { + _cachedTexturePtr = Source.GetNativeTexturePtr(); // On some configs, GetNativeTexPtr is slow (on a low end pc => 8.59ms/call !) + } + if (fileName == null) + { + SetTextureFromUnity(CaptureInstance, _cachedTexturePtr, Timeout, DoubleBuffering, ResizeMode, MirrorMode, QualitySettings.activeColorSpace == ColorSpace.Linear, Source.width, Source.height); + } + else + { + byte[] bytes = System.Text.Encoding.Unicode.GetBytes(fileName); + PrepareScreenshot(CaptureInstance, _cachedTexturePtr, Timeout, DoubleBuffering, ResizeMode, MirrorMode, QualitySettings.activeColorSpace == ColorSpace.Linear, Source.width, Source.height, bytes); + } + } + } + + /// + /// Returns the last result of the last IssuePluginEvent call + /// + /// + public ECaptureSendResult LastResult() { - if (CaptureInstance == System.IntPtr.Zero) return ECaptureSendResult.ERROR_INVALIDCAPTUREINSTANCEPTR; - return CaptureSendTexture(CaptureInstance, Source.GetNativeTexturePtr(), Timeout, DoubleBuffering, ResizeMode, MirrorMode, QualitySettings.activeColorSpace == ColorSpace.Linear); + return GetLastResult(); } } } diff --git a/UnityCaptureSample/Assets/UnityCaptureExample.unity b/UnityCaptureSample/Assets/UnityCaptureExample.unity index c7addf0..31c4747 100644 --- a/UnityCaptureSample/Assets/UnityCaptureExample.unity +++ b/UnityCaptureSample/Assets/UnityCaptureExample.unity @@ -13,7 +13,7 @@ OcclusionCullingSettings: --- !u!104 &2 RenderSettings: m_ObjectHideFlags: 0 - serializedVersion: 8 + serializedVersion: 9 m_Fog: 0 m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_FogMode: 3 @@ -38,12 +38,13 @@ RenderSettings: m_ReflectionIntensity: 1 m_CustomReflection: {fileID: 0} m_Sun: {fileID: 0} - m_IndirectSpecularColor: {r: 0.44657898, g: 0.4964133, b: 0.5748178, a: 1} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} + m_UseRadianceAmbientProbe: 0 --- !u!157 &3 LightmapSettings: m_ObjectHideFlags: 0 serializedVersion: 11 - m_GIWorkflowMode: 0 + m_GIWorkflowMode: 1 m_GISettings: serializedVersion: 2 m_BounceScale: 1 @@ -54,11 +55,10 @@ LightmapSettings: m_EnableBakedLightmaps: 1 m_EnableRealtimeLightmaps: 1 m_LightmapEditorSettings: - serializedVersion: 9 + serializedVersion: 10 m_Resolution: 2 m_BakeResolution: 40 - m_TextureWidth: 1024 - m_TextureHeight: 1024 + m_AtlasSize: 1024 m_AO: 0 m_AOMaxDistance: 1 m_CompAOExponent: 0 @@ -113,6 +113,91 @@ NavMeshSettings: debug: m_Flags: 0 m_NavMeshData: {fileID: 0} +--- !u!1 &90418487 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 90418491} + - component: {fileID: 90418490} + - component: {fileID: 90418489} + - component: {fileID: 90418488} + m_Layer: 0 + m_Name: Green + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!135 &90418488 +SphereCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 90418487} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Radius: 0.5 + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &90418489 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 90418487} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_Materials: + - {fileID: 2100000, guid: cf4b4d3ddd20b7e4e8a1fc119168cfef, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &90418490 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 90418487} + m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &90418491 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 90418487} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: -5, z: 10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1126630849 GameObject: m_ObjectHideFlags: 0 @@ -124,6 +209,7 @@ GameObject: - component: {fileID: 1126630854} - component: {fileID: 1126630853} - component: {fileID: 1126630851} + - component: {fileID: 1126630856} - component: {fileID: 1126630852} - component: {fileID: 1126630850} m_Layer: 0 @@ -144,8 +230,15 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 5f1106d3744ef824496276c8274506b2, type: 3} m_Name: m_EditorClassIdentifier: - ResizeMode: 0 + CaptureDevice: 0 + ResizeMode: 1 + Timeout: 1000 MirrorMode: 0 + DoubleBuffering: 0 + EnableVSync: 0 + TargetFrameRate: 60 + HideWarnings: 0 + _runOnStart: 0 --- !u!81 &1126630851 AudioListener: m_ObjectHideFlags: 0 @@ -164,8 +257,15 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 70cec3f0490dff14fbf273abb6a3a72d, type: 3} m_Name: m_EditorClassIdentifier: + RotationAmount: 6 + RotationSpeedX: 2.5 + RotationSpeedY: 1.75 + CubeCount: 10 CubeMaterial: {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} - EnableSyncBeeps: false + EnableSyncBeeps: 37 + BeepDuration: 0.05 + PerFrameBackgroundColors: + - {r: 0.5, g: 0.5, b: 0.5, a: 1} --- !u!124 &1126630853 Behaviour: m_ObjectHideFlags: 0 @@ -216,12 +316,23 @@ Transform: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1126630849} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: -6.91, y: -2.4, z: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 0} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1126630856 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1126630849} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: db9666c473d4e444d917fce2b739026a, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1 &1251162945 GameObject: m_ObjectHideFlags: 0 @@ -287,3 +398,598 @@ Transform: m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1280013926 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1280013930} + - component: {fileID: 1280013929} + - component: {fileID: 1280013928} + - component: {fileID: 1280013927} + m_Layer: 0 + m_Name: Red + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!65 &1280013927 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1280013926} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &1280013928 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1280013926} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_Materials: + - {fileID: 2100000, guid: 554ffb2811efb274689dd6ae41ebdb06, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &1280013929 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1280013926} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1280013930 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1280013926} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 2.5, y: 2.5, z: 10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1471610052 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1471610056} + - component: {fileID: 1471610055} + - component: {fileID: 1471610054} + - component: {fileID: 1471610053} + m_Layer: 0 + m_Name: Yellow + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!135 &1471610053 +SphereCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1471610052} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Radius: 0.5 + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &1471610054 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1471610052} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_Materials: + - {fileID: 2100000, guid: a5a8ad8c782e3d944834397ad80051fe, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &1471610055 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1471610052} + m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1471610056 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1471610052} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 5, z: 10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1592832590 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1592832594} + - component: {fileID: 1592832593} + - component: {fileID: 1592832592} + - component: {fileID: 1592832591} + m_Layer: 0 + m_Name: Green + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!65 &1592832591 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1592832590} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &1592832592 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1592832590} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_Materials: + - {fileID: 2100000, guid: cf4b4d3ddd20b7e4e8a1fc119168cfef, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &1592832593 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1592832590} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1592832594 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1592832590} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 2.5, y: -2.5, z: 10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1773606678 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1773606682} + - component: {fileID: 1773606681} + - component: {fileID: 1773606680} + - component: {fileID: 1773606679} + m_Layer: 0 + m_Name: Yellow + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!65 &1773606679 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1773606678} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &1773606680 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1773606678} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_Materials: + - {fileID: 2100000, guid: a5a8ad8c782e3d944834397ad80051fe, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &1773606681 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1773606678} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1773606682 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1773606678} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -2.5, y: 2.5, z: 10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1848321075 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1848321079} + - component: {fileID: 1848321078} + - component: {fileID: 1848321077} + - component: {fileID: 1848321076} + m_Layer: 0 + m_Name: Red + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!135 &1848321076 +SphereCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1848321075} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Radius: 0.5 + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &1848321077 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1848321075} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_Materials: + - {fileID: 2100000, guid: 554ffb2811efb274689dd6ae41ebdb06, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &1848321078 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1848321075} + m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1848321079 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1848321075} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 5, y: 0, z: 10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1967750972 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1967750976} + - component: {fileID: 1967750975} + - component: {fileID: 1967750974} + - component: {fileID: 1967750973} + m_Layer: 0 + m_Name: Blue + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!65 &1967750973 +BoxCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1967750972} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &1967750974 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1967750972} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_Materials: + - {fileID: 2100000, guid: 5795563a49ef5ed4cb92d05ac379f497, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &1967750975 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1967750972} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1967750976 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1967750972} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -2.5, y: -2.5, z: 10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2104312706 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2104312710} + - component: {fileID: 2104312709} + - component: {fileID: 2104312708} + - component: {fileID: 2104312707} + m_Layer: 0 + m_Name: Blue + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!135 &2104312707 +SphereCollider: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2104312706} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Radius: 0.5 + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &2104312708 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2104312706} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_Materials: + - {fileID: 2100000, guid: 5795563a49ef5ed4cb92d05ac379f497, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &2104312709 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2104312706} + m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &2104312710 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2104312706} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -5, y: 0, z: 10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/UnityCaptureSample/Assets/UnityCaptureExample_Processing.unity b/UnityCaptureSample/Assets/UnityCaptureExample_Processing.unity new file mode 100644 index 0000000..b5c255d --- /dev/null +++ b/UnityCaptureSample/Assets/UnityCaptureExample_Processing.unity @@ -0,0 +1,1138 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 0 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 1 + m_LightmapEditorSettings: + serializedVersion: 10 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 0 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 1024 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringMode: 0 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ShowResolutionOverlay: 1 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 0 +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &90418487 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 90418491} + - component: {fileID: 90418490} + - component: {fileID: 90418489} + - component: {fileID: 90418488} + m_Layer: 0 + m_Name: Green + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!135 &90418488 +SphereCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 90418487} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Radius: 0.5 + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &90418489 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 90418487} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: cf4b4d3ddd20b7e4e8a1fc119168cfef, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &90418490 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 90418487} + m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &90418491 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 90418487} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: -5, z: 10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1126630849 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1126630855} + - component: {fileID: 1126630854} + - component: {fileID: 1126630853} + - component: {fileID: 1126630851} + - component: {fileID: 1126630856} + - component: {fileID: 1126630852} + - component: {fileID: 1126630850} + - component: {fileID: 1126630858} + - component: {fileID: 1126630857} + m_Layer: 0 + m_Name: Camera + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1126630850 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126630849} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f1106d3744ef824496276c8274506b2, type: 3} + m_Name: + m_EditorClassIdentifier: + CaptureDevice: 0 + ResizeMode: 1 + Timeout: 1000 + MirrorMode: 0 + DoubleBuffering: 0 + EnableVSync: 0 + TargetFrameRate: 60 + HideWarnings: 0 + _runOnStart: 0 +--- !u!81 &1126630851 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126630849} + m_Enabled: 1 +--- !u!114 &1126630852 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126630849} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 70cec3f0490dff14fbf273abb6a3a72d, type: 3} + m_Name: + m_EditorClassIdentifier: + RotationAmount: 6 + RotationSpeedX: 2.5 + RotationSpeedY: 1.75 + CubeCount: 10 + CubeMaterial: {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + EnableSyncBeeps: 37 + BeepDuration: 0.05 + PerFrameBackgroundColors: + - {r: 0.5, g: 0.5, b: 0.5, a: 1} +--- !u!124 &1126630853 +Behaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126630849} + m_Enabled: 1 +--- !u!20 &1126630854 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126630849} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 2 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_GateFitMode: 2 + m_FocalLength: 50 + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 0 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 1 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!4 &1126630855 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126630849} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1126630856 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126630849} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: db9666c473d4e444d917fce2b739026a, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &1126630857 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126630849} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8b9a305e18de0c04dbd257a21cd47087, type: 3} + m_Name: + m_EditorClassIdentifier: + sharedProfile: {fileID: 11400000, guid: 037299ceb68527f4189c5b099fa115f6, type: 2} + isGlobal: 1 + blendDistance: 0 + weight: 1 + priority: 0 +--- !u!114 &1126630858 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126630849} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 948f4100a11a5c24981795d21301da5c, type: 3} + m_Name: + m_EditorClassIdentifier: + volumeTrigger: {fileID: 1126630855} + volumeLayer: + serializedVersion: 2 + m_Bits: 4294967295 + stopNaNPropagation: 1 + finalBlitToCameraTarget: 1 + antialiasingMode: 0 + temporalAntialiasing: + jitterSpread: 0.75 + sharpness: 0.25 + stationaryBlending: 0.95 + motionBlending: 0.85 + subpixelMorphologicalAntialiasing: + quality: 2 + fastApproximateAntialiasing: + fastMode: 0 + keepAlpha: 0 + fog: + enabled: 1 + excludeSkybox: 1 + debugLayer: + lightMeter: + width: 512 + height: 256 + showCurves: 1 + histogram: + width: 512 + height: 256 + channel: 3 + waveform: + exposure: 0.12 + height: 256 + vectorscope: + size: 256 + exposure: 0.12 + overlaySettings: + linearDepth: 0 + motionColorIntensity: 4 + motionGridSize: 64 + colorBlindnessType: 0 + colorBlindnessStrength: 1 + m_Resources: {fileID: 11400000, guid: d82512f9c8e5d4a4d938b575d47f88d4, type: 2} + m_ShowToolkit: 0 + m_ShowCustomSorter: 0 + breakBeforeColorGrading: 0 + m_BeforeTransparentBundles: [] + m_BeforeStackBundles: [] + m_AfterStackBundles: [] +--- !u!1 &1251162945 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1251162947} + - component: {fileID: 1251162946} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &1251162946 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1251162945} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &1251162947 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1251162945} + m_LocalRotation: {x: 0.40821797, y: -0.23456974, z: 0.10938168, w: 0.8754261} + m_LocalPosition: {x: 0, y: 3, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1280013926 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1280013930} + - component: {fileID: 1280013929} + - component: {fileID: 1280013928} + - component: {fileID: 1280013927} + m_Layer: 0 + m_Name: Red + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!65 &1280013927 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1280013926} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &1280013928 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1280013926} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 554ffb2811efb274689dd6ae41ebdb06, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &1280013929 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1280013926} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1280013930 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1280013926} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 2.5, y: 2.5, z: 10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1471610052 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1471610056} + - component: {fileID: 1471610055} + - component: {fileID: 1471610054} + - component: {fileID: 1471610053} + m_Layer: 0 + m_Name: Yellow + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!135 &1471610053 +SphereCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1471610052} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Radius: 0.5 + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &1471610054 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1471610052} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: a5a8ad8c782e3d944834397ad80051fe, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &1471610055 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1471610052} + m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1471610056 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1471610052} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 5, z: 10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1592832590 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1592832594} + - component: {fileID: 1592832593} + - component: {fileID: 1592832592} + - component: {fileID: 1592832591} + m_Layer: 0 + m_Name: Green + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!65 &1592832591 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1592832590} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &1592832592 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1592832590} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: cf4b4d3ddd20b7e4e8a1fc119168cfef, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &1592832593 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1592832590} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1592832594 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1592832590} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 2.5, y: -2.5, z: 10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1773606678 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1773606682} + - component: {fileID: 1773606681} + - component: {fileID: 1773606680} + - component: {fileID: 1773606679} + m_Layer: 0 + m_Name: Yellow + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!65 &1773606679 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1773606678} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &1773606680 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1773606678} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: a5a8ad8c782e3d944834397ad80051fe, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &1773606681 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1773606678} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1773606682 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1773606678} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -2.5, y: 2.5, z: 10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1848321075 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1848321079} + - component: {fileID: 1848321078} + - component: {fileID: 1848321077} + - component: {fileID: 1848321076} + m_Layer: 0 + m_Name: Red + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!135 &1848321076 +SphereCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1848321075} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Radius: 0.5 + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &1848321077 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1848321075} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 554ffb2811efb274689dd6ae41ebdb06, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &1848321078 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1848321075} + m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1848321079 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1848321075} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 5, y: 0, z: 10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1967750972 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1967750976} + - component: {fileID: 1967750975} + - component: {fileID: 1967750974} + - component: {fileID: 1967750973} + m_Layer: 0 + m_Name: Blue + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!65 &1967750973 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1967750972} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &1967750974 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1967750972} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5795563a49ef5ed4cb92d05ac379f497, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &1967750975 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1967750972} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1967750976 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1967750972} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -2.5, y: -2.5, z: 10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2104312706 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2104312710} + - component: {fileID: 2104312709} + - component: {fileID: 2104312708} + - component: {fileID: 2104312707} + m_Layer: 0 + m_Name: Blue + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!135 &2104312707 +SphereCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2104312706} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Radius: 0.5 + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &2104312708 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2104312706} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5795563a49ef5ed4cb92d05ac379f497, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 +--- !u!33 &2104312709 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2104312706} + m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &2104312710 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2104312706} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -5, y: 0, z: 10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/UnityCaptureSample/Assets/UnityCaptureExample_Processing.unity.meta b/UnityCaptureSample/Assets/UnityCaptureExample_Processing.unity.meta new file mode 100644 index 0000000..1ffa036 --- /dev/null +++ b/UnityCaptureSample/Assets/UnityCaptureExample_Processing.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c592c67f302cc514b9e27fb8a37573b3 +timeCreated: 1463485542 +licenseType: Free +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/UnityCaptureExample_Processing_Profiles.meta b/UnityCaptureSample/Assets/UnityCaptureExample_Processing_Profiles.meta new file mode 100644 index 0000000..91d68cd --- /dev/null +++ b/UnityCaptureSample/Assets/UnityCaptureExample_Processing_Profiles.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ace78eedd82f15b4f91fc214cc81f129 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Assets/UnityCaptureExample_Processing_Profiles/Camera Profile.asset b/UnityCaptureSample/Assets/UnityCaptureExample_Processing_Profiles/Camera Profile.asset new file mode 100644 index 0000000..d8f2da8 --- /dev/null +++ b/UnityCaptureSample/Assets/UnityCaptureExample_Processing_Profiles/Camera Profile.asset @@ -0,0 +1,1463 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8e6292b2c06870d4495f009f912b9600, type: 3} + m_Name: Camera Profile + m_EditorClassIdentifier: + settings: + - {fileID: 114453139111673378} + - {fileID: 114154621269020040} + - {fileID: 114525658197487274} + - {fileID: 114933123822923282} +--- !u!114 &114154621269020040 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b3f6f3f7c722b4544b97e3c75840aa33, type: 3} + m_Name: AutoExposure + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + filtering: + overrideState: 1 + value: {x: 50, y: 95} + minLuminance: + overrideState: 0 + value: 0 + maxLuminance: + overrideState: 0 + value: 0 + keyValue: + overrideState: 0 + value: 1 + eyeAdaptation: + overrideState: 0 + value: 0 + speedUp: + overrideState: 0 + value: 2 + speedDown: + overrideState: 0 + value: 1 +--- !u!114 &114453139111673378 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c1cb7e9e120078f43bce4f0b1be547a7, type: 3} + m_Name: AmbientOcclusion + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + mode: + overrideState: 1 + value: 1 + intensity: + overrideState: 1 + value: 2 + color: + overrideState: 1 + value: {r: 0, g: 0, b: 0, a: 1} + ambientOnly: + overrideState: 0 + value: 1 + noiseFilterTolerance: + overrideState: 0 + value: 0 + blurTolerance: + overrideState: 0 + value: -4.6 + upsampleTolerance: + overrideState: 0 + value: -12 + thicknessModifier: + overrideState: 0 + value: 1 + directLightingStrength: + overrideState: 0 + value: 0 + radius: + overrideState: 0 + value: 0.25 + quality: + overrideState: 0 + value: 2 +--- !u!114 &114525658197487274 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 48a79b01ea5641d4aa6daa2e23605641, type: 3} + m_Name: Bloom + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + intensity: + overrideState: 1 + value: 5 + threshold: + overrideState: 0 + value: 1 + softKnee: + overrideState: 0 + value: 0.5 + clamp: + overrideState: 0 + value: 65472 + diffusion: + overrideState: 0 + value: 7 + anamorphicRatio: + overrideState: 0 + value: 0 + color: + overrideState: 0 + value: {r: 1, g: 1, b: 1, a: 1} + fastMode: + overrideState: 0 + value: 0 + dirtTexture: + overrideState: 0 + value: {fileID: 0} + defaultState: 1 + dirtIntensity: + overrideState: 0 + value: 0 +--- !u!114 &114933123822923282 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: adb84e30e02715445aeb9959894e3b4d, type: 3} + m_Name: ColorGrading + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + gradingMode: + overrideState: 1 + value: 1 + externalLut: + overrideState: 0 + value: {fileID: 0} + defaultState: 1 + tonemapper: + overrideState: 0 + value: 0 + toneCurveToeStrength: + overrideState: 0 + value: 0 + toneCurveToeLength: + overrideState: 0 + value: 0.5 + toneCurveShoulderStrength: + overrideState: 0 + value: 0 + toneCurveShoulderLength: + overrideState: 0 + value: 0.5 + toneCurveShoulderAngle: + overrideState: 0 + value: 0 + toneCurveGamma: + overrideState: 0 + value: 1 + ldrLut: + overrideState: 0 + value: {fileID: 0} + defaultState: 4 + ldrLutContribution: + overrideState: 0 + value: 1 + temperature: + overrideState: 1 + value: 15 + tint: + overrideState: 0 + value: 0 + colorFilter: + overrideState: 0 + value: {r: 1, g: 1, b: 1, a: 1} + hueShift: + overrideState: 0 + value: 0 + saturation: + overrideState: 1 + value: 10 + brightness: + overrideState: 0 + value: 0 + postExposure: + overrideState: 0 + value: 0 + contrast: + overrideState: 1 + value: 5 + mixerRedOutRedIn: + overrideState: 0 + value: 100 + mixerRedOutGreenIn: + overrideState: 0 + value: 0 + mixerRedOutBlueIn: + overrideState: 0 + value: 0 + mixerGreenOutRedIn: + overrideState: 0 + value: 0 + mixerGreenOutGreenIn: + overrideState: 0 + value: 100 + mixerGreenOutBlueIn: + overrideState: 0 + value: 0 + mixerBlueOutRedIn: + overrideState: 0 + value: 0 + mixerBlueOutGreenIn: + overrideState: 0 + value: 0 + mixerBlueOutBlueIn: + overrideState: 0 + value: 100 + lift: + overrideState: 0 + value: {x: 1, y: 1, z: 1, w: 0} + gamma: + overrideState: 0 + value: {x: 1, y: 1, z: 1, w: 0} + gain: + overrideState: 0 + value: {x: 1, y: 1, z: 1, w: 0} + masterCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + cachedData: + - 0 + - 0.0078125 + - 0.015625 + - 0.0234375 + - 0.03125 + - 0.0390625 + - 0.046875 + - 0.0546875 + - 0.0625 + - 0.0703125 + - 0.078125 + - 0.0859375 + - 0.09375 + - 0.1015625 + - 0.109375 + - 0.1171875 + - 0.125 + - 0.1328125 + - 0.140625 + - 0.1484375 + - 0.15625 + - 0.1640625 + - 0.171875 + - 0.1796875 + - 0.1875 + - 0.1953125 + - 0.203125 + - 0.2109375 + - 0.21875 + - 0.2265625 + - 0.234375 + - 0.2421875 + - 0.25 + - 0.2578125 + - 0.265625 + - 0.2734375 + - 0.28125 + - 0.2890625 + - 0.296875 + - 0.3046875 + - 0.3125 + - 0.3203125 + - 0.328125 + - 0.3359375 + - 0.34375 + - 0.3515625 + - 0.359375 + - 0.3671875 + - 0.375 + - 0.3828125 + - 0.390625 + - 0.3984375 + - 0.40625 + - 0.4140625 + - 0.421875 + - 0.4296875 + - 0.4375 + - 0.4453125 + - 0.453125 + - 0.4609375 + - 0.46875 + - 0.4765625 + - 0.484375 + - 0.4921875 + - 0.5 + - 0.5078125 + - 0.515625 + - 0.5234375 + - 0.53125 + - 0.5390625 + - 0.546875 + - 0.5546875 + - 0.5625 + - 0.5703125 + - 0.578125 + - 0.5859375 + - 0.59375 + - 0.6015625 + - 0.609375 + - 0.6171875 + - 0.625 + - 0.6328125 + - 0.640625 + - 0.6484375 + - 0.65625 + - 0.6640625 + - 0.671875 + - 0.6796875 + - 0.6875 + - 0.6953125 + - 0.703125 + - 0.7109375 + - 0.71875 + - 0.7265625 + - 0.734375 + - 0.7421875 + - 0.75 + - 0.7578125 + - 0.765625 + - 0.7734375 + - 0.78125 + - 0.7890625 + - 0.796875 + - 0.8046875 + - 0.8125 + - 0.8203125 + - 0.828125 + - 0.8359375 + - 0.84375 + - 0.8515625 + - 0.859375 + - 0.8671875 + - 0.875 + - 0.8828125 + - 0.890625 + - 0.8984375 + - 0.90625 + - 0.9140625 + - 0.921875 + - 0.9296875 + - 0.9375 + - 0.9453125 + - 0.953125 + - 0.9609375 + - 0.96875 + - 0.9765625 + - 0.984375 + - 0.9921875 + redCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + cachedData: + - 0 + - 0.0078125 + - 0.015625 + - 0.0234375 + - 0.03125 + - 0.0390625 + - 0.046875 + - 0.0546875 + - 0.0625 + - 0.0703125 + - 0.078125 + - 0.0859375 + - 0.09375 + - 0.1015625 + - 0.109375 + - 0.1171875 + - 0.125 + - 0.1328125 + - 0.140625 + - 0.1484375 + - 0.15625 + - 0.1640625 + - 0.171875 + - 0.1796875 + - 0.1875 + - 0.1953125 + - 0.203125 + - 0.2109375 + - 0.21875 + - 0.2265625 + - 0.234375 + - 0.2421875 + - 0.25 + - 0.2578125 + - 0.265625 + - 0.2734375 + - 0.28125 + - 0.2890625 + - 0.296875 + - 0.3046875 + - 0.3125 + - 0.3203125 + - 0.328125 + - 0.3359375 + - 0.34375 + - 0.3515625 + - 0.359375 + - 0.3671875 + - 0.375 + - 0.3828125 + - 0.390625 + - 0.3984375 + - 0.40625 + - 0.4140625 + - 0.421875 + - 0.4296875 + - 0.4375 + - 0.4453125 + - 0.453125 + - 0.4609375 + - 0.46875 + - 0.4765625 + - 0.484375 + - 0.4921875 + - 0.5 + - 0.5078125 + - 0.515625 + - 0.5234375 + - 0.53125 + - 0.5390625 + - 0.546875 + - 0.5546875 + - 0.5625 + - 0.5703125 + - 0.578125 + - 0.5859375 + - 0.59375 + - 0.6015625 + - 0.609375 + - 0.6171875 + - 0.625 + - 0.6328125 + - 0.640625 + - 0.6484375 + - 0.65625 + - 0.6640625 + - 0.671875 + - 0.6796875 + - 0.6875 + - 0.6953125 + - 0.703125 + - 0.7109375 + - 0.71875 + - 0.7265625 + - 0.734375 + - 0.7421875 + - 0.75 + - 0.7578125 + - 0.765625 + - 0.7734375 + - 0.78125 + - 0.7890625 + - 0.796875 + - 0.8046875 + - 0.8125 + - 0.8203125 + - 0.828125 + - 0.8359375 + - 0.84375 + - 0.8515625 + - 0.859375 + - 0.8671875 + - 0.875 + - 0.8828125 + - 0.890625 + - 0.8984375 + - 0.90625 + - 0.9140625 + - 0.921875 + - 0.9296875 + - 0.9375 + - 0.9453125 + - 0.953125 + - 0.9609375 + - 0.96875 + - 0.9765625 + - 0.984375 + - 0.9921875 + greenCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + cachedData: + - 0 + - 0.0078125 + - 0.015625 + - 0.0234375 + - 0.03125 + - 0.0390625 + - 0.046875 + - 0.0546875 + - 0.0625 + - 0.0703125 + - 0.078125 + - 0.0859375 + - 0.09375 + - 0.1015625 + - 0.109375 + - 0.1171875 + - 0.125 + - 0.1328125 + - 0.140625 + - 0.1484375 + - 0.15625 + - 0.1640625 + - 0.171875 + - 0.1796875 + - 0.1875 + - 0.1953125 + - 0.203125 + - 0.2109375 + - 0.21875 + - 0.2265625 + - 0.234375 + - 0.2421875 + - 0.25 + - 0.2578125 + - 0.265625 + - 0.2734375 + - 0.28125 + - 0.2890625 + - 0.296875 + - 0.3046875 + - 0.3125 + - 0.3203125 + - 0.328125 + - 0.3359375 + - 0.34375 + - 0.3515625 + - 0.359375 + - 0.3671875 + - 0.375 + - 0.3828125 + - 0.390625 + - 0.3984375 + - 0.40625 + - 0.4140625 + - 0.421875 + - 0.4296875 + - 0.4375 + - 0.4453125 + - 0.453125 + - 0.4609375 + - 0.46875 + - 0.4765625 + - 0.484375 + - 0.4921875 + - 0.5 + - 0.5078125 + - 0.515625 + - 0.5234375 + - 0.53125 + - 0.5390625 + - 0.546875 + - 0.5546875 + - 0.5625 + - 0.5703125 + - 0.578125 + - 0.5859375 + - 0.59375 + - 0.6015625 + - 0.609375 + - 0.6171875 + - 0.625 + - 0.6328125 + - 0.640625 + - 0.6484375 + - 0.65625 + - 0.6640625 + - 0.671875 + - 0.6796875 + - 0.6875 + - 0.6953125 + - 0.703125 + - 0.7109375 + - 0.71875 + - 0.7265625 + - 0.734375 + - 0.7421875 + - 0.75 + - 0.7578125 + - 0.765625 + - 0.7734375 + - 0.78125 + - 0.7890625 + - 0.796875 + - 0.8046875 + - 0.8125 + - 0.8203125 + - 0.828125 + - 0.8359375 + - 0.84375 + - 0.8515625 + - 0.859375 + - 0.8671875 + - 0.875 + - 0.8828125 + - 0.890625 + - 0.8984375 + - 0.90625 + - 0.9140625 + - 0.921875 + - 0.9296875 + - 0.9375 + - 0.9453125 + - 0.953125 + - 0.9609375 + - 0.96875 + - 0.9765625 + - 0.984375 + - 0.9921875 + blueCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + cachedData: + - 0 + - 0.0078125 + - 0.015625 + - 0.0234375 + - 0.03125 + - 0.0390625 + - 0.046875 + - 0.0546875 + - 0.0625 + - 0.0703125 + - 0.078125 + - 0.0859375 + - 0.09375 + - 0.1015625 + - 0.109375 + - 0.1171875 + - 0.125 + - 0.1328125 + - 0.140625 + - 0.1484375 + - 0.15625 + - 0.1640625 + - 0.171875 + - 0.1796875 + - 0.1875 + - 0.1953125 + - 0.203125 + - 0.2109375 + - 0.21875 + - 0.2265625 + - 0.234375 + - 0.2421875 + - 0.25 + - 0.2578125 + - 0.265625 + - 0.2734375 + - 0.28125 + - 0.2890625 + - 0.296875 + - 0.3046875 + - 0.3125 + - 0.3203125 + - 0.328125 + - 0.3359375 + - 0.34375 + - 0.3515625 + - 0.359375 + - 0.3671875 + - 0.375 + - 0.3828125 + - 0.390625 + - 0.3984375 + - 0.40625 + - 0.4140625 + - 0.421875 + - 0.4296875 + - 0.4375 + - 0.4453125 + - 0.453125 + - 0.4609375 + - 0.46875 + - 0.4765625 + - 0.484375 + - 0.4921875 + - 0.5 + - 0.5078125 + - 0.515625 + - 0.5234375 + - 0.53125 + - 0.5390625 + - 0.546875 + - 0.5546875 + - 0.5625 + - 0.5703125 + - 0.578125 + - 0.5859375 + - 0.59375 + - 0.6015625 + - 0.609375 + - 0.6171875 + - 0.625 + - 0.6328125 + - 0.640625 + - 0.6484375 + - 0.65625 + - 0.6640625 + - 0.671875 + - 0.6796875 + - 0.6875 + - 0.6953125 + - 0.703125 + - 0.7109375 + - 0.71875 + - 0.7265625 + - 0.734375 + - 0.7421875 + - 0.75 + - 0.7578125 + - 0.765625 + - 0.7734375 + - 0.78125 + - 0.7890625 + - 0.796875 + - 0.8046875 + - 0.8125 + - 0.8203125 + - 0.828125 + - 0.8359375 + - 0.84375 + - 0.8515625 + - 0.859375 + - 0.8671875 + - 0.875 + - 0.8828125 + - 0.890625 + - 0.8984375 + - 0.90625 + - 0.9140625 + - 0.921875 + - 0.9296875 + - 0.9375 + - 0.9453125 + - 0.953125 + - 0.9609375 + - 0.96875 + - 0.9765625 + - 0.984375 + - 0.9921875 + hueVsHueCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 1 + m_ZeroValue: 0.5 + m_Range: 1 + cachedData: + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + hueVsSatCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 1 + m_ZeroValue: 0.5 + m_Range: 1 + cachedData: + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + satVsSatCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0.5 + m_Range: 1 + cachedData: + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + lumVsSatCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0.5 + m_Range: 1 + cachedData: + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 diff --git a/UnityCaptureSample/Assets/UnityCaptureExample_Processing_Profiles/Camera Profile.asset.meta b/UnityCaptureSample/Assets/UnityCaptureExample_Processing_Profiles/Camera Profile.asset.meta new file mode 100644 index 0000000..5607ab7 --- /dev/null +++ b/UnityCaptureSample/Assets/UnityCaptureExample_Processing_Profiles/Camera Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 037299ceb68527f4189c5b099fa115f6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/UnityCaptureSample/Launch_Unity.bat b/UnityCaptureSample/Launch_Unity.bat new file mode 100644 index 0000000..0f4d941 --- /dev/null +++ b/UnityCaptureSample/Launch_Unity.bat @@ -0,0 +1 @@ +start "" "C:\Program Files\Unity\Editor\Unity.exe" -projectPath "%~dp0" \ No newline at end of file diff --git a/UnityCaptureSample/ProjectSettings/PresetManager.asset b/UnityCaptureSample/ProjectSettings/PresetManager.asset new file mode 100644 index 0000000..636a595 --- /dev/null +++ b/UnityCaptureSample/ProjectSettings/PresetManager.asset @@ -0,0 +1,6 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1386491679 &1 +PresetManager: + m_ObjectHideFlags: 0 + m_DefaultList: [] diff --git a/UnityCaptureSample/ProjectSettings/ProjectSettings.asset b/UnityCaptureSample/ProjectSettings/ProjectSettings.asset index 94f84c7..90e7ffc 100644 --- a/UnityCaptureSample/ProjectSettings/ProjectSettings.asset +++ b/UnityCaptureSample/ProjectSettings/ProjectSettings.asset @@ -3,10 +3,11 @@ --- !u!129 &1 PlayerSettings: m_ObjectHideFlags: 0 - serializedVersion: 14 + serializedVersion: 15 productGUID: 25ebdaf9f91a03340a849d4e2b2c5542 AndroidProfiler: 0 AndroidFilterTouchesWhenObscured: 0 + AndroidEnableSustainedPerformanceMode: 0 defaultScreenOrientation: 4 targetDevice: 2 useOnDemandResources: 0 @@ -64,7 +65,6 @@ PlayerSettings: preserveFramebufferAlpha: 0 disableDepthAndStencilBuffers: 0 androidBlitType: 0 - defaultIsFullScreen: 1 defaultIsNativeResolution: 1 macRetinaSupport: 1 runInBackground: 1 @@ -91,8 +91,7 @@ PlayerSettings: visibleInBackground: 1 allowFullscreenSwitch: 1 graphicsJobMode: 0 - macFullscreenMode: 2 - d3d11FullscreenMode: 1 + fullscreenMode: 1 xboxSpeechDB: 0 xboxEnableHeadOrientation: 0 xboxEnableGuest: 0 @@ -108,18 +107,10 @@ PlayerSettings: xboxOneLoggingLevel: 1 xboxOneDisableEsram: 0 xboxOnePresentImmediateThreshold: 0 + switchQueueCommandMemory: 0 videoMemoryForVertexBuffers: 0 psp2PowerMode: 0 psp2AcquireBGM: 1 - wiiUTVResolution: 0 - wiiUGamePadMSAA: 1 - wiiUSupportsNunchuk: 0 - wiiUSupportsClassicController: 0 - wiiUSupportsBalanceBoard: 0 - wiiUSupportsMotionPlus: 0 - wiiUSupportsProController: 0 - wiiUAllowScreenCapture: 1 - wiiUControllerCount: 0 m_SupportedAspectRatios: 4:3: 1 5:4: 1 @@ -147,6 +138,7 @@ PlayerSettings: hololens: depthFormat: 1 depthBufferSharingEnabled: 0 + enable360StereoCapture: 0 oculus: sharedDepthBuffer: 0 dashSupport: 0 @@ -173,11 +165,9 @@ PlayerSettings: APKExpansionFiles: 0 keepLoadedShadersAlive: 0 StripUnusedMeshComponents: 0 - VertexChannelCompressionMask: - serializedVersion: 2 - m_Bits: 238 + VertexChannelCompressionMask: 214 iPhoneSdkVersion: 988 - iOSTargetOSVersionString: 7.0 + iOSTargetOSVersionString: 8.0 tvOSSdkVersion: 0 tvOSRequireExtendedGameController: 0 tvOSTargetOSVersionString: 9.0 @@ -204,6 +194,7 @@ PlayerSettings: tvOSSmallIconLayers: [] tvOSSmallIconLayers2x: [] tvOSLargeIconLayers: [] + tvOSLargeIconLayers2x: [] tvOSTopShelfImageLayers: [] tvOSTopShelfImageLayers2x: [] tvOSTopShelfImageWideLayers: [] @@ -237,9 +228,15 @@ PlayerSettings: appleDeveloperTeamID: iOSManualSigningProvisioningProfileID: tvOSManualSigningProvisioningProfileID: + iOSManualSigningProvisioningProfileType: 0 + tvOSManualSigningProvisioningProfileType: 0 appleEnableAutomaticSigning: 0 + iOSRequireARKit: 0 + appleEnableProMotion: 0 clonedFromGUID: 00000000000000000000000000000000 - AndroidTargetDevice: 0 + templatePackageId: + templateDefaultScene: + AndroidTargetArchitectures: 5 AndroidSplashScreenScale: 0 androidSplashScreen: {fileID: 0} AndroidKeystoreName: @@ -256,8 +253,12 @@ PlayerSettings: androidGamepadSupportLevel: 0 resolutionDialogBanner: {fileID: 0} m_BuildTargetIcons: [] + m_BuildTargetPlatformIcons: [] m_BuildTargetBatching: [] - m_BuildTargetGraphicsAPIs: [] + m_BuildTargetGraphicsAPIs: + - m_BuildTarget: WindowsStandaloneSupport + m_APIs: 110000000200000015000000 + m_Automatic: 0 m_BuildTargetVRSettings: [] m_BuildTargetEnableVuforiaSettings: [] openGLRequireES31: 0 @@ -267,25 +268,8 @@ PlayerSettings: iPhone: 1 tvOS: 1 m_BuildTargetGroupLightmapEncodingQuality: [] - wiiUTitleID: 0005000011000000 - wiiUGroupID: 00010000 - wiiUCommonSaveSize: 4096 - wiiUAccountSaveSize: 2048 - wiiUOlvAccessKey: 0 - wiiUTinCode: 0 - wiiUJoinGameId: 0 - wiiUJoinGameModeMask: 0000000000000000 - wiiUCommonBossSize: 0 - wiiUAccountBossSize: 0 - wiiUAddOnUniqueIDs: [] - wiiUMainThreadStackSize: 3072 - wiiULoaderThreadStackSize: 1024 - wiiUSystemHeapSize: 128 - wiiUTVStartupScreen: {fileID: 0} - wiiUGamePadStartupScreen: {fileID: 0} - wiiUDrcBufferDisabled: 0 - wiiUProfilerLibPath: playModeTestRunnerEnabled: 0 + runPlayModeTestAsEditModeTest: 0 actionOnDotNetUnhandledException: 1 enableInternalProfiler: 0 logObjCUncaughtExceptions: 1 @@ -406,6 +390,7 @@ PlayerSettings: switchAllowsRuntimeAddOnContentInstall: 0 switchDataLossConfirmation: 0 switchSupportedNpadStyles: 3 + switchNativeFsCacheSize: 32 switchSocketConfigEnabled: 0 switchTcpInitialSendBufferSize: 32 switchTcpInitialReceiveBufferSize: 64 @@ -461,6 +446,7 @@ PlayerSettings: ps4pnFriends: 1 ps4pnGameCustomData: 1 playerPrefsSupport: 0 + enableApplicationExit: 0 restrictedAudioUsageRights: 0 ps4UseResolutionFallback: 0 ps4ReprojectionSupport: 0 @@ -531,7 +517,6 @@ PlayerSettings: psp2InfoBarOnStartup: 0 psp2InfoBarColor: 0 psp2ScriptOptimizationLevel: 0 - psmSplashimage: {fileID: 0} splashScreenBackgroundSourceLandscape: {fileID: 0} splashScreenBackgroundSourcePortrait: {fileID: 0} spritePackerPolicy: @@ -545,12 +530,26 @@ PlayerSettings: webGLTemplate: APPLICATION:Default webGLAnalyzeBuildSize: 0 webGLUseEmbeddedResources: 0 - webGLUseWasm: 0 webGLCompressionFormat: 1 - scriptingDefineSymbols: {} + webGLLinkerTarget: 0 + scriptingDefineSymbols: + 1: UNITY_POST_PROCESSING_STACK_V2 + 4: UNITY_POST_PROCESSING_STACK_V2 + 7: UNITY_POST_PROCESSING_STACK_V2 + 13: UNITY_POST_PROCESSING_STACK_V2 + 17: UNITY_POST_PROCESSING_STACK_V2 + 18: UNITY_POST_PROCESSING_STACK_V2 + 19: UNITY_POST_PROCESSING_STACK_V2 + 21: UNITY_POST_PROCESSING_STACK_V2 + 23: UNITY_POST_PROCESSING_STACK_V2 + 25: UNITY_POST_PROCESSING_STACK_V2 + 26: UNITY_POST_PROCESSING_STACK_V2 + 27: UNITY_POST_PROCESSING_STACK_V2 platformArchitecture: {} scriptingBackend: {} + il2cppCompilerConfiguration: {} incrementalIl2cppBuild: {} + allowUnsafeCode: 0 additionalIl2CppArgs: scriptingRuntimeVersion: 0 apiCompatibilityLevelPerPlatform: {} @@ -623,6 +622,7 @@ PlayerSettings: XboxOneSplashScreen: {fileID: 0} XboxOneAllowedProductIds: [] XboxOnePersistentLocalStorageSize: 0 + XboxOneXTitleMemory: 8 xboxOneScriptCompiler: 0 vrEditorSettings: daydream: diff --git a/UnityCaptureSample/ProjectSettings/ProjectVersion.txt b/UnityCaptureSample/ProjectSettings/ProjectVersion.txt index fe370fd..29eae9e 100644 --- a/UnityCaptureSample/ProjectSettings/ProjectVersion.txt +++ b/UnityCaptureSample/ProjectSettings/ProjectVersion.txt @@ -1 +1 @@ -m_EditorVersion: 2017.3.1p1 +m_EditorVersion: 2018.1.6f1